rbx-trepanning 0.0.8-universal-rubinius-1.2 → 0.1.0-universal-rubinius-1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +762 -238
- data/NEWS +44 -0
- data/Rakefile +61 -32
- data/app/breakpoint.rb +2 -0
- data/app/brkptmgr.rb +9 -11
- data/app/client.rb +0 -1
- data/app/cmd_parse.kpeg +21 -4
- data/app/cmd_parse.rb +10 -10
- data/app/cmd_parser.rb +1029 -840
- data/app/complete.rb +1 -1
- data/app/display.rb +38 -0
- data/app/file.rb +24 -0
- data/app/frame.rb +11 -4
- data/app/irb.rb +41 -39
- data/app/iseq.rb +71 -0
- data/app/options.rb +55 -30
- data/app/rbx-llvm.rb +0 -2
- data/app/run.rb +13 -9
- data/app/util.rb +55 -5
- data/bin/trepanx +3 -3
- data/data/irbrc +13 -13
- data/{interface/base_intf.rb → interface.rb} +5 -1
- data/interface/client.rb +4 -0
- data/interface/script.rb +13 -5
- data/interface/server.rb +5 -1
- data/interface/user.rb +8 -1
- data/{io/base_io.rb → io.rb} +0 -0
- data/io/input.rb +1 -1
- data/io/null_output.rb +28 -24
- data/io/string_array.rb +2 -3
- data/io/tcpclient.rb +1 -1
- data/io/tcpserver.rb +1 -1
- data/lib/trepanning.rb +11 -13
- data/{processor/main.rb → processor.rb} +50 -54
- data/processor/breakpoint.rb +150 -137
- data/processor/{command/base/cmd.rb → command.rb} +1 -1
- data/processor/command/alias.rb +14 -3
- data/processor/command/backtrace.rb +2 -1
- data/processor/command/base/subcmd.rb +1 -5
- data/processor/command/base/submgr.rb +5 -2
- data/processor/command/base/subsubcmd.rb +1 -1
- data/processor/command/base/subsubmgr.rb +4 -4
- data/processor/command/break.rb +1 -1
- data/processor/command/complete.rb +2 -1
- data/processor/command/condition.rb +2 -2
- data/processor/command/continue.rb +4 -4
- data/processor/command/delete.rb +34 -20
- data/processor/command/directory.rb +4 -4
- data/processor/command/disable.rb +71 -0
- data/processor/command/disassemble.rb +55 -22
- data/processor/command/display.rb +3 -1
- data/processor/command/down.rb +8 -8
- data/processor/command/edit.rb +74 -0
- data/processor/command/enable.rb +43 -0
- data/processor/command/eval.rb +37 -15
- data/processor/command/exit.rb +25 -6
- data/processor/command/finish.rb +5 -5
- data/processor/command/frame.rb +2 -2
- data/processor/command/help.rb +7 -9
- data/processor/command/help/README +10 -0
- data/processor/command/help/command.txt +37 -27
- data/processor/command/help/examples.txt +16 -0
- data/processor/command/help/filename.txt +1 -1
- data/processor/command/help/suffixes.txt +17 -0
- data/processor/command/info.rb +3 -1
- data/processor/command/info_subcmd/files.rb +3 -2
- data/processor/command/info_subcmd/frame.rb +2 -1
- data/processor/command/info_subcmd/line.rb +17 -28
- data/processor/command/info_subcmd/locals.rb +22 -0
- data/processor/command/{show_subcmd → info_subcmd}/macro.rb +4 -4
- data/processor/command/info_subcmd/program.rb +2 -0
- data/processor/command/info_subcmd/ruby.rb +2 -0
- data/processor/command/info_subcmd/source.rb +75 -0
- data/processor/command/info_subcmd/stack.rb +25 -0
- data/processor/command/info_subcmd/variables.rb +23 -36
- data/processor/command/info_subcmd/variables_subcmd/.gitignore +2 -0
- data/processor/command/info_subcmd/variables_subcmd/class.rb +42 -0
- data/processor/command/info_subcmd/variables_subcmd/constant.rb +42 -0
- data/processor/command/info_subcmd/variables_subcmd/globals.rb +69 -0
- data/processor/command/info_subcmd/variables_subcmd/instance.rb +42 -0
- data/processor/command/info_subcmd/variables_subcmd/locals.rb +80 -0
- data/processor/command/kill.rb +8 -9
- data/processor/command/list.rb +101 -167
- data/processor/command/macro.rb +28 -10
- data/processor/command/next.rb +2 -1
- data/processor/command/nexti.rb +1 -1
- data/processor/command/parsetree.rb +51 -0
- data/processor/command/pr.rb +1 -2
- data/processor/command/ps.rb +1 -1
- data/processor/command/restart.rb +2 -2
- data/processor/command/save.rb +1 -1
- data/processor/command/server.rb +1 -1
- data/processor/command/set_subcmd/abbrev.rb +25 -0
- data/processor/command/set_subcmd/auto.rb +7 -1
- data/processor/command/set_subcmd/auto_subcmd/eval.rb +1 -2
- data/processor/command/set_subcmd/auto_subcmd/irb.rb +2 -3
- data/processor/command/set_subcmd/auto_subcmd/list.rb +2 -3
- data/processor/command/set_subcmd/different.rb +1 -1
- data/processor/command/set_subcmd/highlight.rb +7 -1
- data/processor/command/set_subcmd/reload.rb +42 -0
- data/processor/command/set_subcmd/timer.rb +58 -0
- data/processor/command/set_subcmd/trace.rb +4 -3
- data/processor/command/{irb.rb → shell.rb} +22 -19
- data/processor/command/show_subcmd/abbrev.rb +20 -0
- data/processor/command/show_subcmd/{alias.rb → aliases.rb} +2 -2
- data/processor/command/show_subcmd/auto_subcmd/eval.rb +2 -6
- data/processor/command/show_subcmd/directories.rb +22 -0
- data/processor/command/show_subcmd/hidelevel.rb +1 -1
- data/processor/command/show_subcmd/highlight.rb +2 -1
- data/processor/command/show_subcmd/reload.rb +18 -0
- data/processor/command/show_subcmd/timer.rb +18 -0
- data/processor/command/source.rb +9 -9
- data/processor/command/step.rb +1 -1
- data/processor/command/tbreak.rb +3 -2
- data/processor/command/unalias.rb +11 -6
- data/processor/command/undisplay.rb +13 -9
- data/processor/command/up.rb +13 -14
- data/processor/default.rb +47 -44
- data/processor/disassemble.rb +48 -35
- data/processor/display.rb +38 -3
- data/processor/eval.rb +54 -53
- data/processor/eventbuf.rb +69 -69
- data/processor/frame.rb +186 -187
- data/processor/help.rb +6 -4
- data/processor/hook.rb +103 -102
- data/processor/list.rb +123 -0
- data/processor/load_cmds.rb +9 -1
- data/processor/location.rb +193 -188
- data/processor/mock.rb +1 -7
- data/processor/msg.rb +56 -42
- data/processor/running.rb +26 -15
- data/processor/stepping.rb +2 -1
- data/processor/subcmd.rb +18 -43
- data/processor/validate.rb +41 -30
- data/processor/virtual.rb +33 -0
- data/rbx-trepanning.gemspec +7 -8
- data/sample/rocky-trepanx-colors.rb +0 -1
- data/test/data/fname-with-blank.right +2 -0
- data/test/data/inline-call.right +11 -10
- data/test/data/quit.right +1 -0
- data/test/example/debugger-stop.rb +1 -1
- data/test/example/goto2goto.rb +11 -0
- data/test/functional/fn_helper.rb +2 -2
- data/test/functional/test-list.rb +7 -6
- data/test/integration/helper.rb +5 -5
- data/test/unit/cmd-helper.rb +2 -6
- data/test/unit/test-app-cmd_parser.rb +3 -2
- data/test/unit/test-app-display.rb +22 -0
- data/test/unit/test-app-options.rb +14 -10
- data/test/unit/test-app-run.rb +0 -2
- data/test/unit/test-app-util.rb +21 -4
- data/test/unit/test-base-cmd.rb +5 -7
- data/test/unit/test-base-subcmd.rb +1 -5
- data/test/unit/test-base-submgr.rb +1 -1
- data/test/unit/test-base-subsubcmd.rb +0 -4
- data/test/unit/test-bin-trepanx.rb +2 -2
- data/test/unit/test-cmd-break.rb +2 -0
- data/test/unit/test-cmd-edit.rb +34 -0
- data/test/unit/test-cmd-kill.rb +11 -4
- data/test/unit/test-cmd-parse_list_cmd.rb +36 -0
- data/test/unit/test-command.rb +45 -0
- data/test/unit/test-completion.rb +1 -1
- data/test/unit/test-proc-eval.rb +1 -2
- data/test/unit/test-proc-frame.rb +5 -3
- data/test/unit/test-proc-list.rb +55 -0
- data/test/unit/test-proc-load_cmds.rb +4 -3
- data/test/unit/test-proc-location.rb +32 -29
- data/test/unit/test-proc-main.rb +1 -5
- data/test/unit/test-proc-validate.rb +14 -4
- data/test/unit/test-subcmd-help.rb +1 -5
- metadata +73 -107
data/ChangeLog
CHANGED
@@ -1,3 +1,668 @@
|
|
1
|
+
2011-10-27 rvm <rocky@gnu.org>
|
2
|
+
|
3
|
+
* NEWS, app/rbx-llvm.rb, rbx-trepanning.gemspec,
|
4
|
+
sample/rocky-trepanx-colors.rb: Get ready for 0.1.0 release.
|
5
|
+
|
6
|
+
2011-10-27 rvm <rocky@gnu.org>
|
7
|
+
|
8
|
+
* ChangeLog, NEWS, app/options.rb: Preparation for 0.1.0 release
|
9
|
+
|
10
|
+
2011-10-15 rocky <rockyb@rubyforge.org>
|
11
|
+
|
12
|
+
* app/display.rb, processor/command/delete.rb,
|
13
|
+
processor/command/undisplay.rb: delete interface now more closely
|
14
|
+
follows rb-trepanning code (and gdb better). Other sync with
|
15
|
+
rb-trepanning. Undisplay completion of display numbers added.
|
16
|
+
|
17
|
+
2011-10-14 rocky <rockyb@rubyforge.org>
|
18
|
+
|
19
|
+
* app/display.rb, processor/command/disable.rb,
|
20
|
+
processor/command/display.rb, processor/command/enable.rb,
|
21
|
+
processor/display.rb, test/unit/test-app-display.rb: Add
|
22
|
+
enable/display display NUM..
|
23
|
+
|
24
|
+
2011-10-09 rvm <rocky@gnu.org>
|
25
|
+
|
26
|
+
* processor/command/macro.rb, processor/command/set_subcmd/auto.rb,
|
27
|
+
processor/command/set_subcmd/trace.rb: Regularize and improve "set"
|
28
|
+
help a little bit. Sync with rb-trepanning.
|
29
|
+
|
30
|
+
2011-10-09 rvm <rocky@gnu.org>
|
31
|
+
|
32
|
+
* app/options.rb, bin/trepanx, lib/trepanning.rb, processor.rb:
|
33
|
+
Towards making --trace -x work. (It doesn't work yet though.)
|
34
|
+
|
35
|
+
2011-09-26 rvm <rocky@gnu.org>
|
36
|
+
|
37
|
+
* processor/command/macro.rb: Sync with rb-trepanning
|
38
|
+
|
39
|
+
2011-09-25 rvm <rocky@gnu.org>
|
40
|
+
|
41
|
+
* processor/command/show_subcmd/alias.rb,
|
42
|
+
processor/command/show_subcmd/aliases.rb: show alias => show aliases
|
43
|
+
|
44
|
+
2011-09-25 rvm <rocky@gnu.org>
|
45
|
+
|
46
|
+
* processor/command/alias.rb, processor/command/disable.rb,
|
47
|
+
processor/command/finish.rb, processor/running.rb: Sync with
|
48
|
+
rb8-trepanning.
|
49
|
+
|
50
|
+
2011-09-22 rocky <rockyb@rubyforge.org>
|
51
|
+
|
52
|
+
* processor/command/kill.rb, test/unit/test-cmd-kill.rb: Add command
|
53
|
+
completion for "unalias".
|
54
|
+
|
55
|
+
2011-09-22 rocky <rockyb@rubyforge.org>
|
56
|
+
|
57
|
+
* processor/command/unalias.rb: Add command completion for
|
58
|
+
"unalias".
|
59
|
+
|
60
|
+
2011-09-17 rocky <rockyb@rubyforge.org>
|
61
|
+
|
62
|
+
* processor/command/set_subcmd/different.rb: Grammar
|
63
|
+
|
64
|
+
2011-09-15 rocky <rockyb@rubyforge.org>
|
65
|
+
|
66
|
+
* : commit 778ef9b340dd044a3024818c3d3f084cb1c790ba Author: rocky
|
67
|
+
<rockyb@rubyforge.org> Date: Thu Sep 15 06:43:18 2011 -0400
|
68
|
+
|
69
|
+
2011-09-05 rvm <rocky@gnu.org>
|
70
|
+
|
71
|
+
* app/run.rb: Sync whence file with other trepanning behavior
|
72
|
+
|
73
|
+
2011-09-04 rocky <rockyb@rubyforge.org>
|
74
|
+
|
75
|
+
* processor/command/info_subcmd/files.rb,
|
76
|
+
processor/command/info_subcmd/frame.rb: Sync with rb-trepanning
|
77
|
+
|
78
|
+
2011-09-04 rocky <rockyb@rubyforge.org>
|
79
|
+
|
80
|
+
* processor/command/help.rb: Tweak general help text and adjust
|
81
|
+
spacing around listing all categories.
|
82
|
+
|
83
|
+
2011-08-28 rocky <rockyb@rubyforge.org>
|
84
|
+
|
85
|
+
* processor/help.rb, processor/msg.rb: Sync with rb-trepanning.
|
86
|
+
|
87
|
+
2011-08-22 rvm <rocky@gnu.org>
|
88
|
+
|
89
|
+
* processor/subcmd.rb: Get rid of another unused method
|
90
|
+
|
91
|
+
2011-08-22 rvm <rocky@gnu.org>
|
92
|
+
|
93
|
+
* processor/subcmd.rb: Semi-remove an unused method
|
94
|
+
|
95
|
+
2011-08-21 rvm <rocky@gnu.org>
|
96
|
+
|
97
|
+
* Rakefile, rbx-trepanning.gemspec: Was clobberint 1.2 gemspec in
|
98
|
+
making 2.0 release.
|
99
|
+
|
100
|
+
2011-08-21 rvm <rocky@gnu.org>
|
101
|
+
|
102
|
+
* processor/command/base/subcmd.rb: Remove unused function.
|
103
|
+
|
104
|
+
2011-08-21 rocky <rockyb@rubyforge.org>
|
105
|
+
|
106
|
+
* processor/command/help.rb: Wasn't showing output in showing * form
|
107
|
+
of categories.
|
108
|
+
|
109
|
+
2011-08-21 rocky <rockyb@rubyforge.org>
|
110
|
+
|
111
|
+
* processor.rb, processor/location.rb,
|
112
|
+
test/example/debugger-stop.rb: Move EVENT2ICON to the file where it
|
113
|
+
is used
|
114
|
+
|
115
|
+
2011-08-17 rocky <rockyb@rubyforge.org>
|
116
|
+
|
117
|
+
* app/client.rb: Remove client debug output
|
118
|
+
|
119
|
+
2011-08-17 rocky <rockyb@rubyforge.org>
|
120
|
+
|
121
|
+
* ChangeLog, Rakefile, lib/trepanning.rb, rbx-trepanning.gemspec:
|
122
|
+
Rakefile: Don't disallow rbx pre-2.0.0 and build separate gem for
|
123
|
+
that. lib/trepanning.rb: was passing an incorrect client parameter
|
124
|
+
|
125
|
+
2011-08-15 rocky <rockyb@rubyforge.org>
|
126
|
+
|
127
|
+
* processor/command/exit.rb: Test for valid exit return code and
|
128
|
+
update help doc. Sync with MRI 1.9 and Perl.
|
129
|
+
|
130
|
+
2011-08-14 rocky <rockyb@rubyforge.org>
|
131
|
+
|
132
|
+
* processor.rb, processor/msg.rb, processor/validate.rb: Sync with
|
133
|
+
rb-trepanning and Perl version.
|
134
|
+
|
135
|
+
2011-08-14 rocky <rockyb@rubyforge.org>
|
136
|
+
|
137
|
+
* app/options.rb, rbx-trepanning.gemspec: Go over version numbering
|
138
|
+
yet again.
|
139
|
+
|
140
|
+
2011-08-14 rocky <rockyb@rubyforge.org>
|
141
|
+
|
142
|
+
* processor/command/kill.rb, test/unit/test-app-options.rb:
|
143
|
+
test-app-options.rb: testing help/version options was killing the
|
144
|
+
rest of the tests Speaking of killing.. add more robust kill
|
145
|
+
checking and fix an outright bug in name-to-number access. Sync
|
146
|
+
with rb-trepanning.
|
147
|
+
|
148
|
+
2011-08-11 rocky <rockyb@rubyforge.org>
|
149
|
+
|
150
|
+
* app/complete.rb, interface.rb, interface/base_intf.rb,
|
151
|
+
interface/script.rb, interface/server.rb, interface/user.rb, io.rb,
|
152
|
+
io/base_io.rb, io/input.rb, io/null_output.rb, io/string_array.rb,
|
153
|
+
io/tcpclient.rb, io/tcpserver.rb, lib/trepanning.rb, processor.rb,
|
154
|
+
processor/command.rb, processor/command/alias.rb,
|
155
|
+
processor/command/backtrace.rb, processor/command/base/cmd.rb,
|
156
|
+
processor/command/base/subcmd.rb, processor/command/base/submgr.rb,
|
157
|
+
processor/command/base/subsubcmd.rb, processor/command/break.rb,
|
158
|
+
processor/command/complete.rb, processor/command/condition.rb,
|
159
|
+
processor/command/continue.rb, processor/command/delete.rb,
|
160
|
+
processor/command/directory.rb, processor/command/disable.rb,
|
161
|
+
processor/command/disassemble.rb, processor/command/display.rb,
|
162
|
+
processor/command/edit.rb, processor/command/eval.rb,
|
163
|
+
processor/command/exit.rb, processor/command/finish.rb,
|
164
|
+
processor/command/frame.rb, processor/command/help.rb,
|
165
|
+
processor/command/kill.rb, processor/command/list.rb,
|
166
|
+
processor/command/macro.rb, processor/command/next.rb,
|
167
|
+
processor/command/nexti.rb, processor/command/parsetree.rb,
|
168
|
+
processor/command/pr.rb, processor/command/ps.rb,
|
169
|
+
processor/command/restart.rb, processor/command/save.rb,
|
170
|
+
processor/command/server.rb, processor/command/shell.rb,
|
171
|
+
processor/command/source.rb, processor/command/step.rb,
|
172
|
+
processor/command/tbreak.rb, processor/command/unalias.rb,
|
173
|
+
processor/command/undisplay.rb, processor/command/up.rb,
|
174
|
+
processor/main.rb, processor/mock.rb, processor/subcmd.rb,
|
175
|
+
test/unit/test-base-cmd.rb, test/unit/test-base-subcmd.rb,
|
176
|
+
test/unit/test-cmd-break.rb, test/unit/test-cmd-parse_list_cmd.rb,
|
177
|
+
test/unit/test-command.rb, test/unit/test-proc-eval.rb,
|
178
|
+
test/unit/test-proc-frame.rb, test/unit/test-proc-list.rb,
|
179
|
+
test/unit/test-proc-load_cmds.rb, test/unit/test-proc-main.rb,
|
180
|
+
test/unit/test-proc-validate.rb, test/unit/test-subcmd-help.rb:
|
181
|
+
Nicer file names for base classes.
|
182
|
+
|
183
|
+
2011-07-28 rocky <rockyb@rubyforge.org>
|
184
|
+
|
185
|
+
* processor/command/list.rb, processor/list.rb,
|
186
|
+
processor/validate.rb: Listing again shows breakpoints. Some bugs in
|
187
|
+
higher-level (non-kpeg) parsing fixed.
|
188
|
+
|
189
|
+
2011-07-27 rvm <rocky@gnu.org>
|
190
|
+
|
191
|
+
* processor/command/list.rb, processor/list.rb: Sync list with
|
192
|
+
trepanning. Thre are some bugs to be worked out still...
|
193
|
+
|
194
|
+
2011-07-27 rvm <rocky@gnu.org>
|
195
|
+
|
196
|
+
* app/cmd_parse.kpeg, app/cmd_parser.rb, processor/command/list.rb,
|
197
|
+
processor/list.rb, test/unit/test-proc-list.rb: Sync with
|
198
|
+
rb-trepanning - break out list validation and generalize what we
|
199
|
+
allow.
|
200
|
+
|
201
|
+
2011-06-22 rocky <rockyb@rubyforge.org>
|
202
|
+
|
203
|
+
* processor/command/info_subcmd/variables_subcmd/constant.rb,
|
204
|
+
processor/help.rb, processor/subcmd.rb, rbx-trepanning.gemspec:
|
205
|
+
rbx-trepanning.gemspec: diff-lcs dependency is only a development
|
206
|
+
dependency. Rest: small changes.
|
207
|
+
|
208
|
+
2011-06-19 rocky <rockyb@rubyforge.org>
|
209
|
+
|
210
|
+
* processor/msg.rb: Sync with rb8-trepanning
|
211
|
+
|
212
|
+
2011-06-19 rocky <rockyb@rubyforge.org>
|
213
|
+
|
214
|
+
* processor/msg.rb: Sync with rb8-trepanning
|
215
|
+
|
216
|
+
2011-06-19 rocky <rockyb@rubyforge.org>
|
217
|
+
|
218
|
+
* : commit ff816112ebb876fff2d3b34363ac00c7ee997c62 Author: rocky
|
219
|
+
<rockyb@rubyforge.org> Date: Sun Jun 19 12:19:59 2011 -0400
|
220
|
+
|
221
|
+
2011-06-16 rvm <rocky@gnu.org>
|
222
|
+
|
223
|
+
* app/irb.rb, app/options.rb, processor/command/shell.rb,
|
224
|
+
processor/hook.rb, processor/location.rb, test/unit/cmd-helper.rb,
|
225
|
+
test/unit/test-proc-location.rb: Fix bugs in "set autolist" and
|
226
|
+
"step/next" inside irb. sync with rb8-trepanning.
|
227
|
+
|
228
|
+
2011-06-12 rocky <rockyb@rubyforge.org>
|
229
|
+
|
230
|
+
* ChangeLog, app/options.rb, processor/mock.rb: Release 0.0.9
|
231
|
+
|
232
|
+
2011-06-10 rocky <rockyb@rubyforge.org>
|
233
|
+
|
234
|
+
* NEWS, processor/command/set_subcmd/reload.rb,
|
235
|
+
processor/command/show_subcmd/reload.rb: Add set/show reload. This
|
236
|
+
time, for sure!
|
237
|
+
|
238
|
+
2011-06-10 rocky <rockyb@rubyforge.org>
|
239
|
+
|
240
|
+
* NEWS, processor/command/list.rb, processor/default.rb,
|
241
|
+
processor/location.rb, processor/mock.rb, processor/virtual.rb: Add
|
242
|
+
set/show reload. Sync location better with rb8-trepanning
|
243
|
+
|
244
|
+
2011-06-09 rvm <rocky@gnu.org>
|
245
|
+
|
246
|
+
* processor/command/info_subcmd/globals.rb,
|
247
|
+
processor/command/info_subcmd/locals.rb,
|
248
|
+
processor/command/info_subcmd/source.rb,
|
249
|
+
processor/command/set_subcmd/timer.rb,
|
250
|
+
processor/command/show_subcmd/timer.rb: Add "info globals", "info
|
251
|
+
source" set/show "timer".
|
252
|
+
|
253
|
+
2011-06-09 rocky <rockyb@rubyforge.org>
|
254
|
+
|
255
|
+
* NEWS, processor/command/help/suffixes.txt: Small changes.
|
256
|
+
|
257
|
+
2011-06-09 rvm <rocky@gnu.org>
|
258
|
+
|
259
|
+
* processor/command/parsetree.rb: parsetree command bug
|
260
|
+
|
261
|
+
2011-06-09 rvm <rocky@gnu.org>
|
262
|
+
|
263
|
+
* ChangeLog, NEWS, Rakefile, processor/command/help.rb,
|
264
|
+
processor/command/help/command.txt,
|
265
|
+
processor/command/help/examples.txt,
|
266
|
+
processor/command/help/filename.txt,
|
267
|
+
processor/command/help/suffixes.txt: Add more command syntax help.
|
268
|
+
Specifically describe suffixes and break out examples.
|
269
|
+
|
270
|
+
2011-06-09 rvm <rocky@gnu.org>
|
271
|
+
|
272
|
+
* Rakefile: Better file cleanup. Sync with rb8-trepanning.
|
273
|
+
|
274
|
+
2011-06-08 rvm <rocky@gnu.org>
|
275
|
+
|
276
|
+
* processor/command/parsetree.rb,
|
277
|
+
processor/command/set_subcmd/highlight.rb: Add sectioning for parse
|
278
|
+
tree highlight "reset" sets "on". Add completion. Sync with
|
279
|
+
rb8-trepanning.
|
280
|
+
|
281
|
+
2011-06-08 rvm <rocky@gnu.org>
|
282
|
+
|
283
|
+
* : commit 256a08096a2cee3120b36097d03a7c73d53c648c Author: rvm
|
284
|
+
<rocky@gnu.org> Date: Wed Jun 8 15:00:25 2011 -0400
|
285
|
+
|
286
|
+
2011-06-07 rocky <rockyb@rubyforge.org>
|
287
|
+
|
288
|
+
* data/irbrc, processor/command/shell.rb: Sync with rb8-trepanning
|
289
|
+
|
290
|
+
2011-06-05 rocky <rockyb@rubyforge.org>
|
291
|
+
|
292
|
+
* app/options.rb, app/run.rb, interface/script.rb: In preparation
|
293
|
+
for more complete integration testing.
|
294
|
+
|
295
|
+
2011-06-05 rocky <rockyb@rubyforge.org>
|
296
|
+
|
297
|
+
* test/unit/test-cmd-edit.rb: Add an "edit" command unit test.
|
298
|
+
|
299
|
+
2011-06-05 rvm <rocky@gnu.org>
|
300
|
+
|
301
|
+
* app/options.rb: Sync options processing with rb8-trepanning. Added
|
302
|
+
option --cd --incliude --debug, and --require.
|
303
|
+
|
304
|
+
2011-06-05 rvm <rocky@gnu.org>
|
305
|
+
|
306
|
+
* : I hate conflicted merges
|
307
|
+
|
308
|
+
2011-06-04 rvm <rocky@gnu.org>
|
309
|
+
|
310
|
+
* processor/command/help/command.txt: command syntax help yet again.
|
311
|
+
|
312
|
+
2011-06-04 rocky <rockyb@rubyforge.org>
|
313
|
+
|
314
|
+
* processor/command/help/command.txt: Revise command syntax help.
|
315
|
+
|
316
|
+
2011-06-04 rocky <rockyb@rubyforge.org>
|
317
|
+
|
318
|
+
* app/util.rb, processor/command/set_subcmd/abbrev.rb,
|
319
|
+
processor/command/show_subcmd/abbrev.rb, processor/default.rb,
|
320
|
+
processor/main.rb, processor/validate.rb,
|
321
|
+
test/functional/fn_helper.rb, test/unit/test-app-util.rb: Allow
|
322
|
+
abbreviations in command names "set/show abbrev"
|
323
|
+
|
324
|
+
2011-06-04 rocky <rockyb@rubyforge.org>
|
325
|
+
|
326
|
+
* app/frame.rb, processor/breakpoint.rb,
|
327
|
+
processor/command/disassemble.rb,
|
328
|
+
processor/command/info_subcmd/locals.rb: Add 'info locals'. gdb has
|
329
|
+
it. breakpoint.rb: Fix bug in setting an IP brkpt.
|
330
|
+
|
331
|
+
2011-06-04 rvm <rocky@gnu.org>
|
332
|
+
|
333
|
+
* processor/command/info_subcmd/macro.rb,
|
334
|
+
processor/command/macro.rb: show macro -> info macro as gdb has it.
|
335
|
+
|
336
|
+
2011-06-04 rvm <rocky@gnu.org>
|
337
|
+
|
338
|
+
* processor/command/show_subcmd/macro.rb: show macro -> info macro
|
339
|
+
as gdb has i.
|
340
|
+
|
341
|
+
2011-06-04 rvm <rocky@gnu.org>
|
342
|
+
|
343
|
+
* processor/command/list.rb, processor/default.rb,
|
344
|
+
processor/location.rb: Move 'reload_on_change' to a processor
|
345
|
+
setting.
|
346
|
+
|
347
|
+
2011-06-03 rvm <rocky@gnu.org>
|
348
|
+
|
349
|
+
* interface/client.rb, interface/server.rb, interface/user.rb: Add
|
350
|
+
interface closed? to make sure input and output are closed.
|
351
|
+
|
352
|
+
2011-06-03 rvm <rocky@gnu.org>
|
353
|
+
|
354
|
+
* processor/location.rb: Make a little less Rubinius-specific.
|
355
|
+
|
356
|
+
2011-06-02 rocky <rockyb@rubyforge.org>
|
357
|
+
|
358
|
+
* processor/command/set_subcmd/auto_subcmd/eval.rb,
|
359
|
+
processor/command/set_subcmd/auto_subcmd/irb.rb,
|
360
|
+
processor/command/set_subcmd/auto_subcmd/list.rb: DRY code more
|
361
|
+
|
362
|
+
2011-06-02 rocky <rockyb@rubyforge.org>
|
363
|
+
|
364
|
+
* io/null_output.rb: class Trepan; class ... -> class Trepan::...
|
365
|
+
again.
|
366
|
+
|
367
|
+
2011-06-02 rocky <rockyb@rubyforge.org>
|
368
|
+
|
369
|
+
* processor/hook.rb: Make a tad more general - sync with
|
370
|
+
rb8-trepanning.
|
371
|
+
|
372
|
+
2011-06-02 rocky <rockyb@rubyforge.org>
|
373
|
+
|
374
|
+
* processor/command/tbreak.rb: Sync with rb-trepanning and
|
375
|
+
rb8-trepanning.
|
376
|
+
|
377
|
+
2011-06-02 rvm <rocky@gnu.org>
|
378
|
+
|
379
|
+
* processor/command/show_subcmd/hidelevel.rb,
|
380
|
+
processor/command/show_subcmd/highlight.rb,
|
381
|
+
processor/command/show_subcmd/macro.rb: Small doc change
|
382
|
+
|
383
|
+
2011-06-02 rvm <rocky@gnu.org>
|
384
|
+
|
385
|
+
* processor/command/info_subcmd/stack.rb: Add "info stack". gdb has
|
386
|
+
it.
|
387
|
+
|
388
|
+
2011-06-02 rvm <rocky@gnu.org>
|
389
|
+
|
390
|
+
* processor/virtual.rb, test/unit/test-proc-location.rb:
|
391
|
+
test-proc-location.rb: don't need to worry about order of requires
|
392
|
+
now.
|
393
|
+
|
394
|
+
2011-06-01 rvm <rocky@gnu.org>
|
395
|
+
|
396
|
+
* app/cmd_parser.rb, processor/virtual.rb, test/unit/cmd-helper.rb,
|
397
|
+
test/unit/test-base-cmd.rb, test/unit/test-base-subcmd.rb,
|
398
|
+
test/unit/test-base-subsubcmd.rb, test/unit/test-proc-main.rb,
|
399
|
+
test/unit/test-subcmd-help.rb: Liskov interface violations removed
|
400
|
+
so we can simplfy and remove some of the FIXMEs.
|
401
|
+
|
402
|
+
2011-05-31 rvm <rocky@gnu.org>
|
403
|
+
|
404
|
+
* processor/command/continue.rb, processor/mock.rb,
|
405
|
+
processor/virtual.rb: Simplify more via sync with rb8-trepanning.
|
406
|
+
|
407
|
+
2011-05-31 rvm <rocky@gnu.org>
|
408
|
+
|
409
|
+
* processor/disassemble.rb: Need to qualify ISeq now that we use
|
410
|
+
Trepan::CmpProcessor collapsing Trepan namespace.
|
411
|
+
|
412
|
+
2011-05-31 rocky <rockyb@rubyforge.org>
|
413
|
+
|
414
|
+
* processor/command/frame.rb: Small change to make less Rubinius
|
415
|
+
specific
|
416
|
+
|
417
|
+
2011-05-31 rocky <rockyb@rubyforge.org>
|
418
|
+
|
419
|
+
* processor/frame.rb, processor/validate.rb, processor/virtual.rb:
|
420
|
+
More simplifications.
|
421
|
+
|
422
|
+
2011-05-31 rocky <rockyb@rubyforge.org>
|
423
|
+
|
424
|
+
* processor/frame.rb: As before: class Trepan; class CmdProcessor ->
|
425
|
+
class Trepan::CmdProcessor
|
426
|
+
|
427
|
+
2011-05-30 rocky <rockyb@rubyforge.org>
|
428
|
+
|
429
|
+
* processor/breakpoint.rb, processor/default.rb,
|
430
|
+
processor/disassemble.rb, processor/display.rb, processor/eval.rb,
|
431
|
+
processor/eventbuf.rb, processor/virtual.rb: class Trepan; class
|
432
|
+
CmdProcessor -> class Trepan::CmdProcessor which should make things
|
433
|
+
more cross-implementation portable.
|
434
|
+
|
435
|
+
2011-05-28 rvm <rocky@gnu.org>
|
436
|
+
|
437
|
+
* processor/breakpoint.rb, processor/main.rb: Insignificant changes.
|
438
|
+
Keep code in sync.
|
439
|
+
|
440
|
+
2011-05-28 rvm <rocky@gnu.org>
|
441
|
+
|
442
|
+
* processor/breakpoint.rb, processor/default.rb,
|
443
|
+
processor/disassemble.rb, processor/display.rb, processor/eval.rb,
|
444
|
+
processor/eventbuf.rb, processor/frame.rb, processor/hook.rb,
|
445
|
+
processor/load_cmds.rb, processor/location.rb, processor/main.rb,
|
446
|
+
processor/msg.rb, processor/running.rb, processor/stepping.rb,
|
447
|
+
processor/validate.rb, processor/virtual.rb: Ensure
|
448
|
+
Trepan::CmdProcessor has a consistent initialize interface.
|
449
|
+
|
450
|
+
2011-05-28 rocky <rockyb@rubyforge.org>
|
451
|
+
|
452
|
+
* processor/command/complete.rb: Fix up standalone code for
|
453
|
+
"complete" command.
|
454
|
+
|
455
|
+
2011-05-28 rocky <rockyb@rubyforge.org>
|
456
|
+
|
457
|
+
* processor/command/exit.rb, processor/load_cmds.rb: Change $0 in
|
458
|
+
loading so as not to interfere with __FILE__ = $. Sync with
|
459
|
+
rb8-trepanning.
|
460
|
+
|
461
|
+
2011-05-27 rocky <rockyb@rubyforge.org>
|
462
|
+
|
463
|
+
* : merge in eval changes
|
464
|
+
|
465
|
+
2011-05-27 rvm <rocky@gnu.org>
|
466
|
+
|
467
|
+
* processor/command/eval.rb: completion for eval with nothing is the
|
468
|
+
current source text. More later...
|
469
|
+
|
470
|
+
2011-05-26 rocky <rockyb@rubyforge.org>
|
471
|
+
|
472
|
+
* : commit 2bbbd6bb4ffc3cd19996007649fbdb815fb38393 Author: rocky
|
473
|
+
<rockyb@rubyforge.org> Date: Thu May 26 22:18:28 2011 -0400
|
474
|
+
|
475
|
+
2011-05-22 rvm <rocky@gnu.org>
|
476
|
+
|
477
|
+
* processor/command/disassemble.rb: This time, for sure!
|
478
|
+
|
479
|
+
2011-05-22 rvm <rocky@gnu.org>
|
480
|
+
|
481
|
+
* processor/command/disassemble.rb: command completion of
|
482
|
+
disassemble opts
|
483
|
+
|
484
|
+
2011-05-22 rvm <rocky@gnu.org>
|
485
|
+
|
486
|
+
* processor/command/disassemble.rb: command completion of
|
487
|
+
disassemble opts
|
488
|
+
|
489
|
+
2011-05-22 rocky <rockyb@rubyforge.org>
|
490
|
+
|
491
|
+
* app/frame.rb, app/iseq.rb, processor/command/info_subcmd/line.rb,
|
492
|
+
processor/disassemble.rb, processor/location.rb: More changes to
|
493
|
+
handle rbx newly-created "synthesized" tail code lines, i.e lines
|
494
|
+
with line number 0.
|
495
|
+
|
496
|
+
2011-05-22 rvm <rocky@gnu.org>
|
497
|
+
|
498
|
+
* processor/breakpoint.rb: Work around for synthetic or line 0
|
499
|
+
bytcodes. Seen in "break @17" where offset 17 is synthetic.
|
500
|
+
|
501
|
+
2011-05-22 rvm <rocky@gnu.org>
|
502
|
+
|
503
|
+
* test/example/goto2goto.rb: Add example program with a "line 0"
|
504
|
+
(synthetic) line number.
|
505
|
+
|
506
|
+
2011-05-22 rvm <rocky@gnu.org>
|
507
|
+
|
508
|
+
* processor/command/disassemble.rb, processor/command/source.rb:
|
509
|
+
disassemble all => disassemble --all|-a
|
510
|
+
|
511
|
+
2011-05-21 rvm <rocky@gnu.org>
|
512
|
+
|
513
|
+
* Rakefile: Replace deprecated rake tasks rake/rdoctask and
|
514
|
+
rake/gempackagetask
|
515
|
+
|
516
|
+
2011-05-21 rocky <rockyb@rubyforge.org>
|
517
|
+
|
518
|
+
* lib/trepanning.rb, processor/command/enable.rb,
|
519
|
+
processor/command/irb.rb, processor/command/shell.rb,
|
520
|
+
processor/main.rb, test/unit/test-cmd-parse_list_cmd.rb,
|
521
|
+
test/unit/test-completion.rb: debugger command "irb" -> "shell" with
|
522
|
+
command alias "irb". With this, debugger commands can be more
|
523
|
+
uniform across all of the debuggers I work on (i.e. python, and
|
524
|
+
POSIX shell). Add more rescues to handle failed internal eval's.
|
525
|
+
|
526
|
+
2011-04-23 rocky <rockyb@rubyforge.org>
|
527
|
+
|
528
|
+
* rbx-trepanning.gemspec: Newer rubinius's needs a newer
|
529
|
+
require_relative.
|
530
|
+
|
531
|
+
2011-04-23 rocky <rockyb@rubyforge.org>
|
532
|
+
|
533
|
+
* processor/disassemble.rb: Check if we can find staring offset for
|
534
|
+
disassembly.
|
535
|
+
|
536
|
+
2011-04-23 rocky <rockyb@rubyforge.org>
|
537
|
+
|
538
|
+
* : commit d165fb163a519dfb5a47a8439d2b45aab3472e85 Author: rocky
|
539
|
+
<rockyb@rubyforge.org> Date: Sat Apr 23 21:07:20 2011 -0400
|
540
|
+
|
541
|
+
2011-04-23 rocky <rockyb@rubyforge.org>
|
542
|
+
|
543
|
+
* Rakefile, app/util.rb, lib/trepanning.rb, processor/frame.rb,
|
544
|
+
rbx-trepanning.gemspec, test/unit/test-app-cmd_parser.rb,
|
545
|
+
test/unit/test-app-util.rb: Track various internal Rubinius changes
|
546
|
+
in startup. Rakefile: fix check:unit target to run only tests.
|
547
|
+
test-appu-util.rb needs require-relative if run standalone.
|
548
|
+
|
549
|
+
2011-04-20 rocky <rockyb@rubyforge.org>
|
550
|
+
|
551
|
+
* test/integration/helper.rb: Add min/max arg checking and set it
|
552
|
+
for set bool sub(sub) commands.
|
553
|
+
|
554
|
+
2011-04-19 rocky <rockyb@rubyforge.org>
|
555
|
+
|
556
|
+
* processor/command/base/submgr.rb,
|
557
|
+
processor/command/disassemble.rb, processor/command/info.rb,
|
558
|
+
processor/command/info_subcmd/frame.rb,
|
559
|
+
processor/command/info_subcmd/program.rb,
|
560
|
+
processor/command/info_subcmd/ruby.rb: Add min/max argument checking
|
561
|
+
to subcommands. Add min/max parameters for various "info" commands.
|
562
|
+
|
563
|
+
2011-04-16 rocky <rockyb@rubyforge.org>
|
564
|
+
|
565
|
+
* app/options.rb, interface/base_intf.rb, io/null_output.rb,
|
566
|
+
processor/command/exit.rb, processor/command/kill.rb,
|
567
|
+
test/data/fname-with-blank.right: Add termination message to
|
568
|
+
interface finalization routine. Implement NullOutput closed?
|
569
|
+
|
570
|
+
2011-04-16 rocky <rockyb@rubyforge.org>
|
571
|
+
|
572
|
+
* processor/frame.rb, test/functional/test-list.rb: Get right frame
|
573
|
+
displayed in frame motion. This time, for sure!
|
574
|
+
|
575
|
+
2011-04-16 rocky <rockyb@rubyforge.org>
|
576
|
+
|
577
|
+
* app/frame.rb, processor/command/exit.rb,
|
578
|
+
processor/command/kill.rb, processor/frame.rb, processor/main.rb,
|
579
|
+
test/data/inline-call.right, test/data/quit.right,
|
580
|
+
test/functional/fn_helper.rb, test/functional/test-list.rb,
|
581
|
+
test/unit/test-proc-frame.rb: Offer termintation message. Show frame
|
582
|
+
number and indication when switching frames. Useful for front-ends.
|
583
|
+
|
584
|
+
2011-03-31 rocky <rockyb@rubyforge.org>
|
585
|
+
|
586
|
+
* processor/command/eval.rb: Add LHS assignment stripping to eval?
|
587
|
+
|
588
|
+
2011-03-31 rocky <rockyb@rubyforge.org>
|
589
|
+
|
590
|
+
* app/file.rb, lib/trepanning.rb, processor/location.rb:
|
591
|
+
app/file.rb: Make sure filenames don't end .rbc. location.rb: more
|
592
|
+
comments.
|
593
|
+
|
594
|
+
2011-03-31 rocky <rockyb@rubyforge.org>
|
595
|
+
|
596
|
+
* test/unit/test-proc-load_cmds.rb: "disable" add to test completion
|
597
|
+
list
|
598
|
+
|
599
|
+
2011-03-31 rocky <rockyb@rubyforge.org>
|
600
|
+
|
601
|
+
* : commit 8bc892de9ae1852e99ff8543994ed176701360b6 Author: rocky
|
602
|
+
<rockyb@rubyforge.org> Date: Thu Mar 31 07:06:28 2011 -0400
|
603
|
+
|
604
|
+
2011-03-31 rocky <rockyb@rubyforge.org>
|
605
|
+
|
606
|
+
* processor/command/eval.rb: eval?: def foo(a,b) -> [a,b] although
|
607
|
+
we do not stop and defs
|
608
|
+
|
609
|
+
2011-03-31 rocky <rockyb@rubyforge.org>
|
610
|
+
|
611
|
+
* lib/trepanning.rb, processor/breakpoint.rb,
|
612
|
+
processor/command/disable.rb, processor/command/enable.rb: Add
|
613
|
+
breakpoint enable and disable commands.
|
614
|
+
|
615
|
+
2011-03-30 rocky <rockyb@rubyforge.org>
|
616
|
+
|
617
|
+
* processor/command/show_subcmd/directories.rb,
|
618
|
+
test/unit/test-base-submgr.rb,
|
619
|
+
test/unit/test-cmd-parse_list_cmd.rb,
|
620
|
+
test/unit/test-proc-load_cmds.rb: "show directories" help matches
|
621
|
+
conventions now. Correct test expected output.
|
622
|
+
|
623
|
+
2011-03-30 rocky <rockyb@rubyforge.org>
|
624
|
+
|
625
|
+
* processor/command/directory.rb,
|
626
|
+
processor/command/show_subcmd/directories.rb: Add "show directories"
|
627
|
+
command
|
628
|
+
|
629
|
+
2011-03-30 rocky <rockyb@rubyforge.org>
|
630
|
+
|
631
|
+
* app/breakpoint.rb, app/brkptmgr.rb, app/cmd_parse.kpeg,
|
632
|
+
app/cmd_parse.rb, app/cmd_parser.rb, app/file.rb,
|
633
|
+
processor/command/list.rb, processor/default.rb,
|
634
|
+
processor/location.rb, processor/main.rb, processor/validate.rb,
|
635
|
+
test/data/inline-call.right, test/functional/test-list.rb,
|
636
|
+
test/unit/test-app-cmd_parser.rb,
|
637
|
+
test/unit/test-cmd-parse_list_cmd.rb,
|
638
|
+
test/unit/test-proc-location.rb, test/unit/test-proc-validate.rb:
|
639
|
+
Redo list parsing using KPEG grammar. Should be more general and
|
640
|
+
maintainable.
|
641
|
+
|
642
|
+
2011-03-23 rocky <rockyb@rubyforge.org>
|
643
|
+
|
644
|
+
* processor/command/edit.rb, processor/command/help/README: Add
|
645
|
+
first-cut at an "edit" command.
|
646
|
+
|
647
|
+
2011-03-17 rocky <rockyb@rubyforge.org>
|
648
|
+
|
649
|
+
* Rakefile, app/run.rb, bin/trepanx, test/integration/helper.rb,
|
650
|
+
test/unit/test-app-run.rb, test/unit/test-bin-trepanx.rb: ruby_path
|
651
|
+
-> RbConfig.ruby
|
652
|
+
|
653
|
+
2011-03-15 rocky <rockyb@rubyforge.org>
|
654
|
+
|
655
|
+
* app/options.rb: Update version for release.
|
656
|
+
|
657
|
+
2011-03-15 rocky <rockyb@rubyforge.org>
|
658
|
+
|
659
|
+
* NEWS: Get ready for release.
|
660
|
+
|
661
|
+
2011-03-14 rocky <rockyb@rubyforge.org>
|
662
|
+
|
663
|
+
* ChangeLog, NEWS, rbx-trepanning.gemspec: Need to get the right
|
664
|
+
linecache
|
665
|
+
|
1
666
|
2011-03-12 rocky <rockyb@rubyforge.org>
|
2
667
|
|
3
668
|
* processor/command/help.rb, processor/command/help/command.txt,
|
@@ -72,11 +737,8 @@
|
|
72
737
|
|
73
738
|
2011-03-09 rocky <rockyb@rubyforge.org>
|
74
739
|
|
75
|
-
|
76
|
-
|
77
|
-
2011-03-09 rocky <rockyb@rubyforge.org>
|
78
|
-
|
79
|
-
* processor/load_cmds.rb, processor/main.rb: Small changes.
|
740
|
+
* : commit 4e44a6fa91fa7276bc70a612d108bc561a526079 Author: rocky
|
741
|
+
<rockyb@rubyforge.org> Date: Wed Mar 9 15:27:04 2011 -0500
|
80
742
|
|
81
743
|
2011-03-08 rocky <rockyb@rubyforge.org>
|
82
744
|
|
@@ -85,18 +747,8 @@
|
|
85
747
|
|
86
748
|
2011-03-07 rocky <rockyb@rubyforge.org>
|
87
749
|
|
88
|
-
|
89
|
-
|
90
|
-
2011-03-06 rocky <rockyb@rubyforge.org>
|
91
|
-
|
92
|
-
* Rakefile, app/cmd_parse.kpeg, app/cmd_parser.rb,
|
93
|
-
processor/location.rb, processor/main.rb,
|
94
|
-
test/example/debugger-stop.rb, test/integration/helper.rb,
|
95
|
-
test/unit/test-proc-location.rb: Largely sync with rb-trepanning -
|
96
|
-
no bug fixes or completed enhancements cmd_parse.kpeg: fill out for
|
97
|
-
location. More complete. Rakefile: add descriptions to some tasks
|
98
|
-
helper.rb: add feed_input option test: test some bugs that were in
|
99
|
-
rb-trepanning but here.
|
750
|
+
* : commit 7aece7a6607d28ae8136289818d4d7507f887953 Author: rocky
|
751
|
+
<rockyb@rubyforge.org> Date: Sun Mar 6 20:34:49 2011 -0500
|
100
752
|
|
101
753
|
2011-03-05 rvm <rocky@gnu.org>
|
102
754
|
|
@@ -128,35 +780,26 @@
|
|
128
780
|
|
129
781
|
2011-03-02 rocky <rockyb@rubyforge.org>
|
130
782
|
|
131
|
-
|
132
|
-
|
133
|
-
2011-03-02 rocky <rockyb@rubyforge.org>
|
134
|
-
|
135
|
-
* processor/command/eval.rb, test/functional/test-eval.rb: Add to
|
136
|
-
eval? stripping "unless" and optional "then".
|
783
|
+
* : commit 7fea8fe6929ad4d7ec19c956091951e521d8a556 Author: rocky
|
784
|
+
<rockyb@rubyforge.org> Date: Wed Mar 2 18:58:06 2011 -0500
|
137
785
|
|
138
786
|
2011-03-01 rvm <rocky@gnu.org>
|
139
787
|
|
140
788
|
* Rakefile, app/cmd_parse.citrus, app/cmd_parse.rb, doc/.gitignore,
|
141
789
|
doc/debugger.html, test/unit/test-app-cmd_parse.rb: Sync with
|
142
|
-
rb-trepanning: move forward in location parsing.
|
790
|
+
rb-trepanning: move forward in location parsing. Rakefile: add task
|
143
791
|
to remove patch residue files.
|
144
792
|
|
145
793
|
2011-03-01 rocky <rockyb@rubyforge.org>
|
146
794
|
|
147
|
-
|
148
|
-
|
149
|
-
2011-02-28 rvm <rocky@gnu.org>
|
150
|
-
|
151
|
-
* app/brkptmgr.rb, processor/command/eval.rb: In "eval?" extract
|
152
|
-
expression in "case", and echo that.
|
795
|
+
* : commit 2831a02ef4c8e9cfad111ea703f828f3095495f0 Author: rvm
|
796
|
+
<rocky@gnu.org> Date: Mon Feb 28 07:31:01 2011 -0500
|
153
797
|
|
154
798
|
2011-02-25 rocky <rockyb@rubyforge.org>
|
155
799
|
|
156
800
|
* app/cmd_parse.citrus, app/cmd_parse.rb,
|
157
801
|
test/unit/test-app-cmd_parse.rb: Start filling out location parsing.
|
158
802
|
|
159
|
-
|
160
803
|
2011-02-25 rocky <rockyb@rubyforge.org>
|
161
804
|
|
162
805
|
* app/cmd_parse.citrus, app/cmd_parse.rb, app/method_name.citrus,
|
@@ -188,17 +831,8 @@
|
|
188
831
|
|
189
832
|
2011-02-24 rocky <rockyb@rubyforge.org>
|
190
833
|
|
191
|
-
|
192
|
-
|
193
|
-
2011-02-24 rocky <rockyb@rubyforge.org>
|
194
|
-
|
195
|
-
* app/method_name.citrus, app/method_name.rb,
|
196
|
-
processor/command/break.rb, processor/command/disassemble.rb,
|
197
|
-
processor/validate.rb, rbx-trepanning.gemspec,
|
198
|
-
test/unit/test-app-method_name.rb, test/unit/test-proc-validate.rb:
|
199
|
-
Use a PEG parser (citrus) to parse method names. This weay we can
|
200
|
-
get the method in a controlled way without having to eval and hope
|
201
|
-
we didn't do any damage.
|
834
|
+
* : commit 778528dae8b0f322a5788d45c48507b19d340ff9 Author: rocky
|
835
|
+
<rockyb@rubyforge.org> Date: Thu Feb 24 20:50:23 2011 -0500
|
202
836
|
|
203
837
|
2011-02-23 rocky <rockyb@rubyforge.org>
|
204
838
|
|
@@ -280,31 +914,13 @@
|
|
280
914
|
|
281
915
|
2011-02-19 rocky <rockyb@rubyforge.org>
|
282
916
|
|
283
|
-
|
284
|
-
|
285
|
-
2011-02-19 rocky <rockyb@rubyforge.org>
|
286
|
-
|
287
|
-
* processor/command/exit.rb, processor/command/kill.rb,
|
288
|
-
processor/command/show_subcmd/alias.rb: Add kill! alias and update
|
289
|
-
help
|
917
|
+
* : commit 5db8e7b55bce3e3738d6bb81efb643abb0a7cf91 Author: rocky
|
918
|
+
<rockyb@rubyforge.org> Date: Sat Feb 19 12:22:00 2011 -0500
|
290
919
|
|
291
920
|
2011-02-19 rocky <rockyb@rubyforge.org>
|
292
921
|
|
293
|
-
|
294
|
-
|
295
|
-
2011-02-19 rocky <rockyb@rubyforge.org>
|
296
|
-
|
297
|
-
* app/eventbuffer.rb, processor/command/base/subcmd.rb,
|
298
|
-
processor/command/info_subcmd/files.rb,
|
299
|
-
processor/command/info_subcmd/line.rb,
|
300
|
-
processor/command/info_subcmd/ruby.rb,
|
301
|
-
processor/command/set_subcmd/trace_subcmd/print.rb,
|
302
|
-
processor/command/show_subcmd/alias.rb,
|
303
|
-
processor/command/show_subcmd/auto_subcmd/irb.rb,
|
304
|
-
processor/command/show_subcmd/macro.rb,
|
305
|
-
processor/command/show_subcmd/trace_subcmd/print.rb,
|
306
|
-
processor/eventbuf.rb, processor/hook.rb, processor/main.rb:
|
307
|
-
Basically same as what in HEAD
|
922
|
+
* : commit b37051946750630746f67098416e4818e1cae8ff Author: rocky
|
923
|
+
<rockyb@rubyforge.org> Date: Sat Feb 19 10:00:53 2011 -0500
|
308
924
|
|
309
925
|
2011-02-19 rocky <rockyb@rubyforge.org>
|
310
926
|
|
@@ -405,13 +1021,8 @@
|
|
405
1021
|
|
406
1022
|
2011-02-15 rocky <rockyb@rubyforge.org>
|
407
1023
|
|
408
|
-
|
409
|
-
|
410
|
-
2011-02-15 rocky <rockyb@rubyforge.org>
|
411
|
-
|
412
|
-
* bin/trepanx, processor/validate.rb: Small bugs. validate: handling
|
413
|
-
get_an_int error msg. trepanx: option name is now highlight, not
|
414
|
-
readline
|
1024
|
+
* : commit ab7ded01cf22e55258b02198d7d4b2e8249fc613 Author: rocky
|
1025
|
+
<rockyb@rubyforge.org> Date: Tue Feb 15 09:34:11 2011 -0500
|
415
1026
|
|
416
1027
|
2011-02-15 rocky <rockyb@rubyforge.org>
|
417
1028
|
|
@@ -438,8 +1049,8 @@
|
|
438
1049
|
processor/command/break.rb, processor/command/disassemble.rb,
|
439
1050
|
processor/stepping.rb, processor/validate.rb,
|
440
1051
|
test/unit/test-proc-validate.rb: first_line_on_ip's "not found" is
|
441
|
-
now nil for next rubinius release.
|
442
|
-
Method name lookup.
|
1052
|
+
now nil for next rubinius release. Remove citrus-related code and
|
1053
|
+
Method name lookup. Will reinstate after a release with kpeg.
|
443
1054
|
Prevent breakpoint resolve! from getting in an infinite loop.
|
444
1055
|
|
445
1056
|
2011-02-14 rocky <rockyb@rubyforge.org>
|
@@ -450,9 +1061,9 @@
|
|
450
1061
|
|
451
1062
|
* processor/command/help.rb, processor/command/macro.rb,
|
452
1063
|
processor/main.rb: macro.rb: Macros are more useful now. An array of
|
453
|
-
strings pushes additional commands on the command queue.
|
1064
|
+
strings pushes additional commands on the command queue. help.rb:
|
454
1065
|
Show aliases and macros in help *. Add help for exach of these
|
455
|
-
individually.
|
1066
|
+
individually. 3
|
456
1067
|
|
457
1068
|
2011-02-13 rocky <rockyb@rubyforge.org>
|
458
1069
|
|
@@ -468,8 +1079,8 @@
|
|
468
1079
|
io/tcpclient.rb, processor/command/break.rb,
|
469
1080
|
processor/command/disassemble.rb, processor/validate.rb,
|
470
1081
|
test/unit/test-io-tcpclient.rb, test/unit/test-proc-validate.rb: Use
|
471
|
-
citus to parse method names avoiding use of eval which is safer.
|
472
|
-
disconnected? to tcpclient.
|
1082
|
+
citus to parse method names avoiding use of eval which is safer.
|
1083
|
+
Add disconnected? to tcpclient.
|
473
1084
|
|
474
1085
|
2011-02-12 rocky <rockyb@rubyforge.org>
|
475
1086
|
|
@@ -534,17 +1145,8 @@
|
|
534
1145
|
|
535
1146
|
2011-02-10 rocky <rockyb@rubyforge.org>
|
536
1147
|
|
537
|
-
|
538
|
-
|
539
|
-
processor/command/irb.rb processor/main.rb
|
540
|
-
|
541
|
-
2011-02-10 rocky <rockyb@rubyforge.org>
|
542
|
-
|
543
|
-
* app/irb.rb, interface/base_intf.rb, interface/user.rb,
|
544
|
-
processor/command/irb.rb, processor/main.rb, processor/mock.rb,
|
545
|
-
test/unit/test-intf-user.rb, test/unit/test-proc-eval.rb: Work on
|
546
|
-
history reading and saving and in between irb sessions although
|
547
|
-
somewhat disabled for now.
|
1148
|
+
* : commit 715d8afd29618ccd4eac05fdb1ad7557c622a2b7 Author: rocky
|
1149
|
+
<rockyb@rubyforge.org> Date: Thu Feb 10 11:42:20 2011 -0500
|
548
1150
|
|
549
1151
|
2011-02-09 rocky <rockyb@rubyforge.org>
|
550
1152
|
|
@@ -629,28 +1231,24 @@
|
|
629
1231
|
|
630
1232
|
* README.textile: Nope ```ruby does not work for README on gitub :-/
|
631
1233
|
|
632
|
-
|
633
1234
|
2011-02-04 rocky <rockyb@rubyforge.org>
|
634
1235
|
|
635
1236
|
* README.textile: Nope ```ruby does not work for README on gitub :-/
|
636
1237
|
|
637
|
-
|
638
1238
|
2011-02-04 rocky <rockyb@rubyforge.org>
|
639
1239
|
|
640
1240
|
* README.textile: Nope ```ruby does not work for README on gitub :-/
|
641
1241
|
|
642
|
-
|
643
1242
|
2011-02-04 rocky <rockyb@rubyforge.org>
|
644
1243
|
|
645
1244
|
* README.textile: Nope ```ruby does not work for README on gitub :-/
|
646
1245
|
|
647
|
-
|
648
1246
|
2011-02-04 rocky <rockyb@rubyforge.org>
|
649
1247
|
|
650
1248
|
* README.textile, io/input.rb, lib/trepanning.rb,
|
651
1249
|
processor/command/complete.rb, processor/command/set_subcmd/max.rb,
|
652
1250
|
processor/load_cmds.rb: Back off of trying to complete anything
|
653
|
-
other than the last token in completion.
|
1251
|
+
other than the last token in completion. io/input.rb Remove
|
654
1252
|
Readline.rl_line_buffer= READE.textile: cooler code formatting.
|
655
1253
|
|
656
1254
|
2011-02-04 rocky <rockyb@rubyforge.org>
|
@@ -663,24 +1261,13 @@
|
|
663
1261
|
|
664
1262
|
* interface/user.rb, io/input.rb, processor/command/help.rb,
|
665
1263
|
processor/command/set_subcmd/max.rb, processor/load_cmds.rb: More
|
666
|
-
completion work: for help and help command <complete>.
|
1264
|
+
completion work: for help and help command <complete>. Bug in not
|
667
1265
|
setting prompt in readline fixed.
|
668
1266
|
|
669
1267
|
2011-02-04 rocky <rockyb@rubyforge.org>
|
670
1268
|
|
671
|
-
|
672
|
-
|
673
|
-
processor/load_cmds.rb
|
674
|
-
|
675
|
-
2011-02-04 rocky <rockyb@rubyforge.org>
|
676
|
-
|
677
|
-
* app/complete.rb, app/util.rb, interface/comcodes.rb,
|
678
|
-
io/tcpfns.rb, processor/command/base/cmd.rb,
|
679
|
-
processor/command/base/submgr.rb,
|
680
|
-
processor/command/base/subsubmgr.rb, processor/command/help.rb,
|
681
|
-
processor/command/info_subcmd/file.rb, processor/load_cmds.rb,
|
682
|
-
processor/subcmd.rb, test/unit/test-app-util.rb: Expand completion
|
683
|
-
one level down. Needs refactoring. Sync with rb-trepanning.
|
1269
|
+
* : commit 410583720fdef4c8156ca3f59b2007ac5cb72f31 Author: rocky
|
1270
|
+
<rockyb@rubyforge.org> Date: Fri Feb 4 12:12:18 2011 -0500
|
684
1271
|
|
685
1272
|
2011-02-04 rocky <rockyb@rubyforge.org>
|
686
1273
|
|
@@ -723,13 +1310,8 @@
|
|
723
1310
|
|
724
1311
|
2011-02-02 rocky <rockyb@rubyforge.org>
|
725
1312
|
|
726
|
-
|
727
|
-
|
728
|
-
2011-02-02 rocky <rockyb@rubyforge.org>
|
729
|
-
|
730
|
-
* interface/user.rb, io/input.rb, lib/trepanning.rb,
|
731
|
-
processor/command/complete.rb, processor/load_cmds.rb: Start tab
|
732
|
-
completion. Correct setting for line edit via Readline.
|
1313
|
+
* : commit dc7e7e7d8c96d8119bf32b03a77265b305179e08 Author: rocky
|
1314
|
+
<rockyb@rubyforge.org> Date: Wed Feb 2 03:39:48 2011 -0500
|
733
1315
|
|
734
1316
|
2011-02-01 rocky <rockyb@rubyforge.org>
|
735
1317
|
|
@@ -769,27 +1351,16 @@
|
|
769
1351
|
|
770
1352
|
2011-01-28 rocky <rockyb@rubyforge.org>
|
771
1353
|
|
772
|
-
Add debugger command syntax help.
|
773
|
-
|
774
|
-
2011-01-28 rocky <rockyb@rubyforge.org>
|
775
|
-
|
776
|
-
Describe debugger command syntax in help.
|
777
|
-
|
778
|
-
2011-01-28 rocky <rockyb@rubyforge.org>
|
779
|
-
|
780
|
-
I hate conflicted merges
|
1354
|
+
* : Add debugger command syntax help.
|
781
1355
|
|
782
1356
|
2011-01-28 rocky <rockyb@rubyforge.org>
|
783
1357
|
|
784
|
-
*
|
785
|
-
test/unit/cmd-helper.rb, test/unit/test-proc-main.rb: Sync with
|
786
|
-
trepanning.
|
1358
|
+
* : I hate conflicted merges
|
787
1359
|
|
788
1360
|
2011-01-24 rocky <rockyb@rubyforge.org>
|
789
1361
|
|
790
1362
|
* processor/msg.rb: Error messages are underlined when in term mode.
|
791
1363
|
|
792
|
-
|
793
1364
|
2011-01-24 rocky <rockyb@rubyforge.org>
|
794
1365
|
|
795
1366
|
* interface/base_intf.rb, processor/command/help.rb,
|
@@ -801,7 +1372,6 @@
|
|
801
1372
|
|
802
1373
|
* processor/command/complete.rb: Rudimentary gdb "complete" commnd.
|
803
1374
|
|
804
|
-
|
805
1375
|
2011-01-24 rocky <rockyb@rubyforge.org>
|
806
1376
|
|
807
1377
|
* app/options.rb, processor/command/help.rb,
|
@@ -868,11 +1438,8 @@
|
|
868
1438
|
|
869
1439
|
2011-01-21 rocky <rockyb@rubyforge.org>
|
870
1440
|
|
871
|
-
|
872
|
-
|
873
|
-
2011-01-21 rocky <rockyb@rubyforge.org>
|
874
|
-
|
875
|
-
* processor/command/disassemble.rb: One more Trepanning->Trepan
|
1441
|
+
* : commit 91a86c4e17ff787c6e2382636f68db5e7e751df4 Author: rocky
|
1442
|
+
<rockyb@rubyforge.org> Date: Fri Jan 21 20:35:51 2011 -0500
|
876
1443
|
|
877
1444
|
2011-01-21 rocky <rockyb@rubyforge.org>
|
878
1445
|
|
@@ -891,7 +1458,6 @@
|
|
891
1458
|
|
892
1459
|
* app/iseq.rb: Trepan::ISeq needs only to be a module, not a class.
|
893
1460
|
|
894
|
-
|
895
1461
|
2011-01-21 rocky <rockyb@rubyforge.org>
|
896
1462
|
|
897
1463
|
* app/default.rb: It *is* already large
|
@@ -1068,7 +1634,6 @@
|
|
1068
1634
|
Previous change removed some bugs which changed integration-test
|
1069
1635
|
output. Start adding --port and --host options for remote debugging.
|
1070
1636
|
|
1071
|
-
|
1072
1637
|
2011-01-09 rocky <rockyb@rubyforge.org>
|
1073
1638
|
|
1074
1639
|
* ChangeLog, test/data/inline-call.right,
|
@@ -1083,12 +1648,10 @@
|
|
1083
1648
|
test/data/inline-call.cmd, test/example/gcd-inline-call.rb,
|
1084
1649
|
test/example/gcd-server.rb, test/example/gcd-xx.rb,
|
1085
1650
|
test/example/gcd1.rb: A number of small enhancements and little bug
|
1086
|
-
fixes.
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
string example/gcd-*.rb: Start examples of above changes. No
|
1091
|
-
integration tests yet :-(
|
1651
|
+
fixes. trepanning.rb: 1. set default input/output correctly. 2. add debugger alias for start 3. Allow cmdfile specification in start/debugger 4. Allow script options in cmdfile specification via
|
1652
|
+
tuple directory.rb: Expand help string
|
1653
|
+
example/gcd-*.rb: Start examples of above changes. No integration
|
1654
|
+
tests yet :-(
|
1092
1655
|
|
1093
1656
|
2011-01-09 rocky <rockyb@rubyforge.org>
|
1094
1657
|
|
@@ -1104,7 +1667,7 @@
|
|
1104
1667
|
interface/server.rb, interface/user.rb, io/tcpserver.rb,
|
1105
1668
|
lib/trepanning.rb, processor/command/continue.rb,
|
1106
1669
|
processor/main.rb, test/unit/test-app-options.rb: First hint that
|
1107
|
-
remote debugging will work someday.
|
1670
|
+
remote debugging will work someday. options.rb, default.rb: Add
|
1108
1671
|
--client and --server options client.rb: front-end client read loop
|
1109
1672
|
continue.rb: fix docstring
|
1110
1673
|
|
@@ -1128,16 +1691,8 @@
|
|
1128
1691
|
|
1129
1692
|
2011-01-08 rocky <rockyb@rubyforge.org>
|
1130
1693
|
|
1131
|
-
|
1132
|
-
|
1133
|
-
2011-01-08 rocky <rockyb@rubyforge.org>
|
1134
|
-
|
1135
|
-
* interface/comcodes.rb, interface/server.rb, io/base_io.rb,
|
1136
|
-
io/tcpfns.rb, io/tcpserver.rb, test/unit/test-io-tcpfns.rb,
|
1137
|
-
test/unit/test-io-tcpserver.rb: Start working on remote or
|
1138
|
-
out-of-process debugging, staring with TCP connections. Server IO
|
1139
|
-
started. Still need client, more of the interface and setup side.
|
1140
|
-
That is, much much more work is needed.
|
1694
|
+
* : commit 4022a1fae34aff4202f7edd7e76a85f5285dd146 Author: rocky
|
1695
|
+
<rockyb@rubyforge.org> Date: Sat Jan 8 08:23:48 2011 -0500
|
1141
1696
|
|
1142
1697
|
2011-01-01 rocky <rockyb@rubyforge.org>
|
1143
1698
|
|
@@ -1180,10 +1735,9 @@
|
|
1180
1735
|
|
1181
1736
|
* processor/stepping.rb, test/integration/helper.rb,
|
1182
1737
|
test/integration/test-quit.rb: stepping.rb: Address another bug in
|
1183
|
-
stepping from the begging of a file.
|
1738
|
+
stepping from the begging of a file. test-quit.rb: Simple check of
|
1184
1739
|
.rbxrc for calling Trepan.start helper.rb: redirect stderr to stdout
|
1185
1740
|
|
1186
|
-
|
1187
1741
|
2010-12-26 rocky <rockyb@rubyforge.org>
|
1188
1742
|
|
1189
1743
|
* .gemspec, NEWS, Rakefile, lib/trepanning.rb,
|
@@ -1205,11 +1759,8 @@
|
|
1205
1759
|
|
1206
1760
|
2010-12-23 rocky <rockyb@rubyforge.org>
|
1207
1761
|
|
1208
|
-
|
1209
|
-
|
1210
|
-
2010-12-23 rocky <rockyb@rubyforge.org>
|
1211
|
-
|
1212
|
-
* .gemspec, Rakefile, THANKS: Administrivia updates.
|
1762
|
+
* : commit b1d2605001d04ff6672c1c567fe887a2485a2b1b Author: rocky
|
1763
|
+
<rockyb@rubyforge.org> Date: Thu Dec 23 11:46:30 2010 -0500
|
1213
1764
|
|
1214
1765
|
2010-12-23 rocky <rockyb@rubyforge.org>
|
1215
1766
|
|
@@ -1237,7 +1788,6 @@
|
|
1237
1788
|
* test/data/quit-Xdebug.right, test/integration/helper.rb,
|
1238
1789
|
test/integration/test-quit.rb: Add minimal -Xdebug integration test
|
1239
1790
|
|
1240
|
-
|
1241
1791
|
2010-12-15 rocky <rockyb@rubyforge.org>
|
1242
1792
|
|
1243
1793
|
* .gemspec, Rakefile, app/options.rb, lib/trepanning.rb,
|
@@ -1255,8 +1805,8 @@
|
|
1255
1805
|
2010-12-15 rocky <rockyb@rubyforge.org>
|
1256
1806
|
|
1257
1807
|
* lib/trepanning.rb: Turn of kernelstep for now and leave that for
|
1258
|
-
the user to turn on.
|
1259
|
-
everything is more robust leave out.
|
1808
|
+
the user to turn on. When things go wrong, we need this on. So
|
1809
|
+
until everything is more robust leave out.
|
1260
1810
|
|
1261
1811
|
2010-12-14 rocky <rockyb@rubyforge.org>
|
1262
1812
|
|
@@ -1274,7 +1824,7 @@
|
|
1274
1824
|
processor/command/info_subcmd/program.rb,
|
1275
1825
|
processor/command/nexti.rb, processor/disassemble.rb,
|
1276
1826
|
processor/location.rb, processor/stepping.rb: Adapt to recent ip
|
1277
|
-
changes - need to use next_ip rather than ip sometimes.
|
1827
|
+
changes - need to use next_ip rather than ip sometimes. Rakefile:
|
1278
1828
|
Require newer linecache and Rubinius; make gem Rubinius specific.
|
1279
1829
|
|
1280
1830
|
2010-12-05 rocky <rockyb@rubyforge.org>
|
@@ -1419,12 +1969,8 @@
|
|
1419
1969
|
|
1420
1970
|
2010-11-20 rocky <rockyb@rubyforge.org>
|
1421
1971
|
|
1422
|
-
|
1423
|
-
|
1424
|
-
2010-11-20 rocky <rockyb@rubyforge.org>
|
1425
|
-
|
1426
|
-
* processor/frame.rb, processor/location.rb: Remap eval strings to
|
1427
|
-
temporary files. Use a better eval location indicator.
|
1972
|
+
* : commit a8f1ffc2c3c2d3c4417ffb9c931af78ad7b6c0c8 Author: rocky
|
1973
|
+
<rockyb@rubyforge.org> Date: Sat Nov 20 21:08:40 2010 -0500
|
1428
1974
|
|
1429
1975
|
2010-11-19 rvm <rocky@gnu.org>
|
1430
1976
|
|
@@ -1445,7 +1991,7 @@
|
|
1445
1991
|
to ignored list of filtered fns command/disassemble.rb: reorganize
|
1446
1992
|
so we can handle disassemble of individual methods command/up.rb:
|
1447
1993
|
fix comment processor/disassemble.rb: use
|
1448
|
-
|
1994
|
+
Rubinius::CompiledMethod::Instruction to shorten code and get
|
1449
1995
|
comments in output frame.rb: common routine to get parent frame.
|
1450
1996
|
processor/running.rb: remove bug in method filter test.
|
1451
1997
|
processor/stepping.rb: better generalization of related breakpoint
|
@@ -1464,9 +2010,9 @@
|
|
1464
2010
|
|
1465
2011
|
* .gemspec, processor/command/list.rb, processor/location.rb,
|
1466
2012
|
processor/validate.rb, test/functional/test-break-name.rb: Use
|
1467
|
-
script caching recently added to linecache for eval-like things.
|
1468
|
-
a result, "list" now works.
|
1469
|
-
!,? or = at the end.
|
2013
|
+
script caching recently added to linecache for eval-like things. As
|
2014
|
+
a result, "list" now works. validate: bug in regexp was not
|
2015
|
+
catching !,? or = at the end.
|
1470
2016
|
|
1471
2017
|
2010-11-15 rvm <rocky@gnu.org>
|
1472
2018
|
|
@@ -1494,8 +2040,8 @@
|
|
1494
2040
|
|
1495
2041
|
* app/util.rb, lib/trepanning.rb,
|
1496
2042
|
processor/command/set_subcmd/hidelevel.rb, processor/frame.rb:
|
1497
|
-
Hiding levels below "main" for -Xdebug and trepanx better.
|
1498
|
-
Don't need dollar_0 routine anymore.
|
2043
|
+
Hiding levels below "main" for -Xdebug and trepanx better. util.rb:
|
2044
|
+
Don't need dollar_0 routine anymore. set_subcmd/hidelevel.rb:
|
1499
2045
|
recalculate level on resetting.
|
1500
2046
|
|
1501
2047
|
2010-11-12 rvm <rocky@gnu.org>
|
@@ -1546,7 +2092,7 @@
|
|
1546
2092
|
2010-11-08 rocky <rockyb@rubyforge.org>
|
1547
2093
|
|
1548
2094
|
* processor/command/backtrace.rb: Wasn't starting from top if we had
|
1549
|
-
adjusted the frame.
|
2095
|
+
adjusted the frame. Add position indicator in backtrace and make it
|
1550
2096
|
look more like trepan (and gdb).
|
1551
2097
|
|
1552
2098
|
2010-11-08 rvm <rocky@gnu.org>
|
@@ -1564,14 +2110,14 @@
|
|
1564
2110
|
processor/command/show_subcmd/trace_subcmd/.gitignore,
|
1565
2111
|
processor/command/show_subcmd/trace_subcmd/print.rb,
|
1566
2112
|
processor/command/source.rb, processor/frame.rb: bin/trepanx now
|
1567
|
-
stops in user script rather than the loader.
|
1568
|
-
hacky means, but it's the best I can find for now.
|
2113
|
+
stops in user script rather than the loader. It does this by rather
|
2114
|
+
hacky means, but it's the best I can find for now. Added a null
|
1569
2115
|
output routine and the -q (silence) option on the source command.
|
1570
2116
|
|
1571
2117
|
2010-11-08 rvm <rocky@gnu.org>
|
1572
2118
|
|
1573
2119
|
* processor/command/finish.rb, processor/command/list.rb: list.rb:
|
1574
|
-
make it I hope more rational.
|
2120
|
+
make it I hope more rational. finish.rb: some cut-and-past typos.
|
1575
2121
|
|
1576
2122
|
2010-11-07 rvm <rocky@gnu.org>
|
1577
2123
|
|
@@ -1581,13 +2127,8 @@
|
|
1581
2127
|
|
1582
2128
|
2010-11-07 rvm <rocky@gnu.org>
|
1583
2129
|
|
1584
|
-
|
1585
|
-
|
1586
|
-
2010-11-07 rvm <rocky@gnu.org>
|
1587
|
-
|
1588
|
-
* app/run.rb, app/util.rb, lib/trepanning.rb: Pick up $0 from
|
1589
|
-
Rubinius::Location#script when we are called via -Xdebug since it
|
1590
|
-
hasn't been defined before.
|
2130
|
+
* : commit de520fc0cd97e910e70ee6db496a0fc13344a815 Author: rvm
|
2131
|
+
<rocky@gnu.org> Date: Sun Nov 7 10:09:00 2010 -0500
|
1591
2132
|
|
1592
2133
|
2010-11-06 rocky <rockyb@rubyforge.org>
|
1593
2134
|
|
@@ -1613,8 +2154,8 @@
|
|
1613
2154
|
processor/command/nexti.rb, processor/stepping.rb,
|
1614
2155
|
test/functional/test-finish.rb, test/functional/test-next.rb: Allow
|
1615
2156
|
breakpoints to be scoped. Fixes bugs in handling recursive "next"
|
1616
|
-
and "finish".
|
1617
|
-
issue #558
|
2157
|
+
and "finish". Based on Rubinius commit # 3a1c111. See issue
|
2158
|
+
Rubinius issue #558
|
1618
2159
|
|
1619
2160
|
2010-11-06 rocky <rockyb@rubyforge.org>
|
1620
2161
|
|
@@ -1669,7 +2210,7 @@
|
|
1669
2210
|
processor/command/show_subcmd/max_subcmd/string.rb,
|
1670
2211
|
processor/command/show_subcmd/max_subcmd/width.rb,
|
1671
2212
|
processor/default.rb, processor/frame.rb, processor/validate.rb:
|
1672
|
-
Replace "set debug stack" with more general "set hidelevel".
|
2213
|
+
Replace "set debug stack" with more general "set hidelevel". Fix up
|
1673
2214
|
some standalone code running. Use SubSubcommand where appropriate.
|
1674
2215
|
|
1675
2216
|
2010-11-04 rvm <rocky@gnu.org>
|
@@ -1705,13 +2246,13 @@
|
|
1705
2246
|
test/functional/test-next.rb: Fix bug in breakpoint numbering. Fix
|
1706
2247
|
bug in restart when running bin/trepan breakpoint allows forms
|
1707
2248
|
nothing (current line) line as well as previous forms.
|
1708
|
-
app/brkptmgr.rb: max should start off 0.
|
1709
|
-
working with compiled methods app/run.rb: use dbgr passed in.
|
1710
|
-
|
1711
|
-
|
1712
|
-
|
1713
|
-
|
1714
|
-
|
2249
|
+
app/brkptmgr.rb: max should start off 0. app/method.rb: routines
|
2250
|
+
for working with compiled methods app/run.rb: use dbgr passed in.
|
2251
|
+
Don't smash restart_args, via set_restart, allow opts to be passed
|
2252
|
+
in lib/trepanning merge dbussink's fix in rbx-head to reference
|
2253
|
+
debugger command/disassemble.rb: had tropped off section header for
|
2254
|
+
"all" processor/validate.rb: common routine to parse a breakpoint
|
2255
|
+
position.
|
1715
2256
|
|
1716
2257
|
2010-10-19 rvm <rocky@gnu.org>
|
1717
2258
|
|
@@ -1735,7 +2276,7 @@
|
|
1735
2276
|
|
1736
2277
|
* test/functional/.gitignore, test/functional/fn_helper.rb,
|
1737
2278
|
test/functional/test-fn_helper.rb: Baby steps toward adding
|
1738
|
-
functional test: test the test helper.
|
2279
|
+
functional test: test the test helper. Some RDoc appeasements.
|
1739
2280
|
|
1740
2281
|
2010-10-19 rocky <rockyb@rubyforge.org>
|
1741
2282
|
|
@@ -1743,8 +2284,8 @@
|
|
1743
2284
|
processor/command/finish.rb, processor/running.rb,
|
1744
2285
|
processor/stepping.rb: Add finish (step out) command.
|
1745
2286
|
app/breakpoint.rb: generalize paired breakpoints to more than two
|
1746
|
-
which is needed for finish.
|
1747
|
-
by refactoring
|
2287
|
+
which is needed for finish. processor/breakpoint.rb: fix bugs
|
2288
|
+
caused by refactoring
|
1748
2289
|
|
1749
2290
|
2010-10-18 rvm <rocky@gnu.org>
|
1750
2291
|
|
@@ -1765,7 +2306,7 @@
|
|
1765
2306
|
* app/run.rb, lib/trepanning.rb, processor/command/disassemble.rb,
|
1766
2307
|
processor/frame.rb, processor/main.rb, processor/running.rb,
|
1767
2308
|
processor/stepping.rb: Hide level only if it makes sense. Start work
|
1768
|
-
on finish. (Not complete).
|
2309
|
+
on finish. (Not complete). Fix But in stepping test.
|
1769
2310
|
|
1770
2311
|
2010-10-17 rvm <rocky@gnu.org>
|
1771
2312
|
|
@@ -1798,25 +2339,10 @@
|
|
1798
2339
|
processor/command/pr.rb, processor/command/show.rb: DRY code with
|
1799
2340
|
respect to Mock setup. less hard-coding of command names via #{NAME}
|
1800
2341
|
|
1801
|
-
|
1802
|
-
2010-10-16 rvm <rocky@gnu.org>
|
1803
|
-
|
1804
|
-
Merge branch 'master' of github.com:rocky/rbx-trepanning
|
1805
|
-
|
1806
2342
|
2010-10-16 rvm <rocky@gnu.org>
|
1807
2343
|
|
1808
|
-
*
|
1809
|
-
|
1810
|
-
processor/command/directory.rb, processor/command/down.rb,
|
1811
|
-
processor/command/eval.rb, processor/command/exit.rb,
|
1812
|
-
processor/command/frame.rb, processor/command/help.rb,
|
1813
|
-
processor/command/info.rb, processor/command/irb.rb,
|
1814
|
-
processor/command/kill.rb, processor/command/list.rb,
|
1815
|
-
processor/command/next.rb, processor/command/ps.rb,
|
1816
|
-
processor/command/restart.rb, processor/command/set.rb,
|
1817
|
-
processor/command/show.rb, processor/command/source.rb,
|
1818
|
-
processor/command/unalias.rb, processor/command/up.rb: Add
|
1819
|
-
Trepan::Command#name and dry code with it.
|
2344
|
+
* : commit 3309874e7bfd623ce4c93e08812ee343f4f98d16 Author: rvm
|
2345
|
+
<rocky@gnu.org> Date: Sat Oct 16 10:16:11 2010 -0400
|
1820
2346
|
|
1821
2347
|
2010-10-14 rocky <rockyb@rubyforge.org>
|
1822
2348
|
|
@@ -1829,8 +2355,8 @@
|
|
1829
2355
|
processor/command/show_subcmd/debug_subcmd/dbgr.rb,
|
1830
2356
|
processor/command/step.rb, processor/main.rb, processor/running.rb,
|
1831
2357
|
test/unit/test-base-subcmd.rb: running.rb, step.rb: More work trying
|
1832
|
-
to put into a normal command loop.
|
1833
|
-
base commands.
|
2358
|
+
to put into a normal command loop. Add "set debug dbgr". Add test
|
2359
|
+
of base commands.
|
1834
2360
|
|
1835
2361
|
2010-10-14 rvm <rocky@gnu.org>
|
1836
2362
|
|
@@ -1928,7 +2454,7 @@
|
|
1928
2454
|
2010-10-08 rocky <rockyb@rubyforge.org>
|
1929
2455
|
|
1930
2456
|
* processor/command/info_subcmd/breakpoints.rb,
|
1931
|
-
test/unit/test-cmd-exit.rb: Add unit test for exit.
|
2457
|
+
test/unit/test-cmd-exit.rb: Add unit test for exit. Add help for
|
1932
2458
|
"info breakpoints". Copied from rb-trepanning - Not quite accurate
|
1933
2459
|
yet.
|
1934
2460
|
|
@@ -1956,9 +2482,9 @@
|
|
1956
2482
|
processor/command/info_subcmd/breakpoints.rb,
|
1957
2483
|
processor/command/tbreak.rb, test/unit/test-app-brkptmgr.rb: More
|
1958
2484
|
better tests of breakpoint manager. There is some breakage remaining
|
1959
|
-
though.
|
1960
|
-
breakage from the bp manager merge Rakefile: add task
|
1961
|
-
Correct check:command.
|
2485
|
+
though. info_subcmd/breakpoints.rb: work on this. Again there's
|
2486
|
+
some breakage from the bp manager merge Rakefile: add task
|
2487
|
+
check:app. Correct check:command.
|
1962
2488
|
|
1963
2489
|
2010-10-07 rocky <rockyb@rubyforge.org>
|
1964
2490
|
|
@@ -1971,7 +2497,7 @@
|
|
1971
2497
|
processor/command/next.rb, processor/command/nexti.rb,
|
1972
2498
|
processor/location.rb, processor/main.rb: lib/trepanning.rb,
|
1973
2499
|
nexti.rb, next.rb: make event names match rb-trepanning. Use string
|
1974
|
-
not symbol.
|
2500
|
+
not symbol. location.rb: Reinstate print_location.
|
1975
2501
|
|
1976
2502
|
2010-10-07 rocky <rockyb@rubyforge.org>
|
1977
2503
|
|
@@ -1993,7 +2519,7 @@
|
|
1993
2519
|
|
1994
2520
|
* app/breakpoint.rb, lib/trepanning.rb, test/unit/test-app-brkpt.rb:
|
1995
2521
|
breakpoint.rb: respect setting id value when passed. Add some demo
|
1996
|
-
code.
|
2522
|
+
code. Add unit test for app/breakpoint.rb
|
1997
2523
|
|
1998
2524
|
2010-10-04 rocky <rockyb@rubyforge.org>
|
1999
2525
|
|
@@ -2128,9 +2654,8 @@
|
|
2128
2654
|
|
2129
2655
|
* .gemspec, AUTHORS, Rakefile, THANKS, app/options.rb, app/run.rb,
|
2130
2656
|
bin/.gitignore, bin/trepan, processor/command/break.rb: Add code to
|
2131
|
-
invoke from outset. Complete with debugger options.
|
2132
|
-
improvement to skip over the crap before main.__script__ starts.
|
2133
|
-
Numerous other small changes.
|
2657
|
+
invoke from outset. Complete with debugger options. Needs
|
2658
|
+
improvement to skip over the crap before main.__script__ starts. Numerous other small changes.
|
2134
2659
|
|
2135
2660
|
2010-09-25 rocky <rockyb@rubyforge.org>
|
2136
2661
|
|
@@ -2175,12 +2700,11 @@
|
|
2175
2700
|
processor/command/delete.rb, processor/command/source.rb,
|
2176
2701
|
processor/frame.rb, processor/main.rb, test/unit/cmd-helper.rb,
|
2177
2702
|
test/unit/test-unit-exit.rb: debugger.rb : remove show_ip option.
|
2178
|
-
|
2703
|
+
Goes in processor. bang on breakpoint code. move some to
|
2179
2704
|
processor/breakpoint.rb processor/breakpoint.rb: more error checking
|
2180
|
-
info
|
2181
|
-
|
2182
|
-
|
2183
|
-
right? base/cmd.rb: run_code() was wrong. Other misc bugs fixed.
|
2705
|
+
info app/frame.rb: describe() pass in options - add show IP parameter. remove duplicate ip location app/breakpoint.rb: change
|
2706
|
+
IP location indicator from + to @. Is this right? base/cmd.rb:
|
2707
|
+
run_code() was wrong. Other misc bugs fixed.
|
2184
2708
|
|
2185
2709
|
2010-09-24 rocky <rockyb@rubyforge.org>
|
2186
2710
|
|
@@ -2214,7 +2738,7 @@
|
|
2214
2738
|
processor/command/show_subcmd/max_subcmd/width.rb,
|
2215
2739
|
processor/default.rb, processor/eval.rb, processor/main.rb: Add max
|
2216
2740
|
set/show subcommands "info program" processor eval now sets filename
|
2217
|
-
and we now store breakpoint ids.
|
2741
|
+
and we now store breakpoint ids. prompt is more inline with other
|
2218
2742
|
debuggers :-(
|
2219
2743
|
|
2220
2744
|
2010-09-23 rocky <rockyb@rubyforge.org>
|
@@ -2249,7 +2773,7 @@
|
|
2249
2773
|
processor/command/set_subcmd/different.rb,
|
2250
2774
|
processor/command/show_subcmd/different.rb, processor/default.rb,
|
2251
2775
|
processor/mock.rb, processor/subcmd.rb: Finish up last of commands
|
2252
|
-
to be converted from reference debugger.
|
2776
|
+
to be converted from reference debugger. Add some of routines from
|
2253
2777
|
trepan for 1.9.2.
|
2254
2778
|
|
2255
2779
|
2010-09-23 rocky <rockyb@rubyforge.org>
|
@@ -2361,8 +2885,8 @@
|
|
2361
2885
|
processor/mock.rb, test/unit/.gitignore, test/unit/cmd-helper.rb,
|
2362
2886
|
test/unit/test-cmd-help.rb, test/unit/test-cmd-kill.rb,
|
2363
2887
|
test/unit/test-io-input.rb, test/unit/test-proc-load_cmds.rb: Get
|
2364
|
-
command loading boilerplate. Help is there now. Interface added.
|
2365
|
-
even some of the unit tests!
|
2888
|
+
command loading boilerplate. Help is there now. Interface added.
|
2889
|
+
And even some of the unit tests!
|
2366
2890
|
|
2367
2891
|
2010-09-21 rocky <rockyb@rubyforge.org>
|
2368
2892
|
|
@@ -2383,7 +2907,7 @@
|
|
2383
2907
|
debugger/command/set.rb, debugger/command/show.rb,
|
2384
2908
|
debugger/command/step.rb, debugger/command/tb.rb,
|
2385
2909
|
debugger/commands.rb, debugger/display.rb, debugger/frame.rb: Put
|
2386
|
-
all commands in the 'command' directory.
|
2910
|
+
all commands in the 'command' directory. Add temporary hack to keep
|
2387
2911
|
Command.command singleton array from growing on running each
|
2388
2912
|
debugger command.
|
2389
2913
|
|