rbx-trepanning 0.2.0-universal-rubinius-2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +7 -0
- data/ChangeLog +2967 -0
- data/LICENSE +25 -0
- data/Makefile +13 -0
- data/NEWS +105 -0
- data/README.textile +34 -0
- data/Rakefile +244 -0
- data/THANKS +14 -0
- data/app/.gitignore +2 -0
- data/app/breakpoint.rb +242 -0
- data/app/brkptmgr.rb +153 -0
- data/app/client.rb +71 -0
- data/app/cmd_parse.kpeg +242 -0
- data/app/cmd_parse.rb +209 -0
- data/app/cmd_parser.rb +2083 -0
- data/app/complete.rb +79 -0
- data/app/condition.rb +22 -0
- data/app/default.rb +71 -0
- data/app/display.rb +186 -0
- data/app/eventbuffer.rb +147 -0
- data/app/file.rb +24 -0
- data/app/frame.rb +120 -0
- data/app/irb.rb +113 -0
- data/app/iseq.rb +188 -0
- data/app/method.rb +178 -0
- data/app/mock.rb +13 -0
- data/app/options.rb +154 -0
- data/app/rbx-llvm.rb +163 -0
- data/app/run.rb +92 -0
- data/app/util.rb +99 -0
- data/app/validate.rb +30 -0
- data/bin/.gitignore +2 -0
- data/bin/trepanx +69 -0
- data/data/.gitignore +2 -0
- data/data/irbrc +41 -0
- data/interface/.gitignore +2 -0
- data/interface/client.rb +84 -0
- data/interface/comcodes.rb +20 -0
- data/interface/script.rb +112 -0
- data/interface/server.rb +147 -0
- data/interface/user.rb +158 -0
- data/interface.rb +109 -0
- data/io/.gitignore +3 -0
- data/io/input.rb +151 -0
- data/io/null_output.rb +46 -0
- data/io/string_array.rb +155 -0
- data/io/tcpclient.rb +129 -0
- data/io/tcpfns.rb +33 -0
- data/io/tcpserver.rb +141 -0
- data/io.rb +148 -0
- data/lib/.gitignore +2 -0
- data/lib/trepanning.rb +467 -0
- data/processor/.gitignore +3 -0
- data/processor/Makefile +7 -0
- data/processor/breakpoint.rb +167 -0
- data/processor/command/.gitignore +2 -0
- data/processor/command/alias.rb +65 -0
- data/processor/command/backtrace.rb +68 -0
- data/processor/command/base/.gitignore +2 -0
- data/processor/command/base/subcmd.rb +226 -0
- data/processor/command/base/submgr.rb +185 -0
- data/processor/command/base/subsubcmd.rb +125 -0
- data/processor/command/base/subsubmgr.rb +196 -0
- data/processor/command/break.rb +78 -0
- data/processor/command/complete.rb +39 -0
- data/processor/command/condition.rb +64 -0
- data/processor/command/continue.rb +61 -0
- data/processor/command/delete.rb +44 -0
- data/processor/command/directory.rb +51 -0
- data/processor/command/disable.rb +71 -0
- data/processor/command/disassemble.rb +180 -0
- data/processor/command/display.rb +84 -0
- data/processor/command/down.rb +54 -0
- data/processor/command/edit.rb +74 -0
- data/processor/command/enable.rb +43 -0
- data/processor/command/eval.rb +93 -0
- data/processor/command/exit.rb +83 -0
- data/processor/command/finish.rb +80 -0
- data/processor/command/frame.rb +93 -0
- data/processor/command/help/.gitignore +1 -0
- data/processor/command/help/README +10 -0
- data/processor/command/help/command.txt +58 -0
- data/processor/command/help/examples.txt +16 -0
- data/processor/command/help/filename.txt +40 -0
- data/processor/command/help/location.txt +37 -0
- data/processor/command/help/suffixes.txt +17 -0
- data/processor/command/help.rb +228 -0
- data/processor/command/info.rb +30 -0
- data/processor/command/info_subcmd/.gitignore +3 -0
- data/processor/command/info_subcmd/breakpoints.rb +103 -0
- data/processor/command/info_subcmd/files.rb +219 -0
- data/processor/command/info_subcmd/frame.rb +68 -0
- data/processor/command/info_subcmd/line.rb +75 -0
- data/processor/command/info_subcmd/locals.rb +22 -0
- data/processor/command/info_subcmd/macro.rb +62 -0
- data/processor/command/info_subcmd/method.rb +71 -0
- data/processor/command/info_subcmd/program.rb +51 -0
- data/processor/command/info_subcmd/ruby.rb +64 -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 +35 -0
- 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 +79 -0
- data/processor/command/list.rb +234 -0
- data/processor/command/macro.rb +86 -0
- data/processor/command/next.rb +67 -0
- data/processor/command/nexti.rb +59 -0
- data/processor/command/parsetree.rb +51 -0
- data/processor/command/pr.rb +37 -0
- data/processor/command/ps.rb +40 -0
- data/processor/command/restart.rb +60 -0
- data/processor/command/save.rb +58 -0
- data/processor/command/server.rb +72 -0
- data/processor/command/set.rb +47 -0
- data/processor/command/set_subcmd/.gitignore +2 -0
- data/processor/command/set_subcmd/abbrev.rb +25 -0
- data/processor/command/set_subcmd/auto.rb +33 -0
- data/processor/command/set_subcmd/auto_subcmd/.gitignore +2 -0
- data/processor/command/set_subcmd/auto_subcmd/dis.rb +33 -0
- data/processor/command/set_subcmd/auto_subcmd/eval.rb +53 -0
- data/processor/command/set_subcmd/auto_subcmd/irb.rb +33 -0
- data/processor/command/set_subcmd/auto_subcmd/list.rb +33 -0
- data/processor/command/set_subcmd/basename.rb +25 -0
- data/processor/command/set_subcmd/confirm.rb +24 -0
- data/processor/command/set_subcmd/debug.rb +26 -0
- data/processor/command/set_subcmd/debug_subcmd/.gitignore +2 -0
- data/processor/command/set_subcmd/debug_subcmd/dbgr.rb +36 -0
- data/processor/command/set_subcmd/debug_subcmd/skip.rb +23 -0
- data/processor/command/set_subcmd/debug_subcmd/step.rb +23 -0
- data/processor/command/set_subcmd/different.rb +61 -0
- data/processor/command/set_subcmd/hidelevel.rb +62 -0
- data/processor/command/set_subcmd/highlight.rb +39 -0
- data/processor/command/set_subcmd/kernelstep.rb +60 -0
- data/processor/command/set_subcmd/max.rb +26 -0
- data/processor/command/set_subcmd/max_subcmd/.gitignore +2 -0
- data/processor/command/set_subcmd/max_subcmd/list.rb +49 -0
- data/processor/command/set_subcmd/max_subcmd/stack.rb +50 -0
- data/processor/command/set_subcmd/max_subcmd/string.rb +76 -0
- data/processor/command/set_subcmd/max_subcmd/width.rb +49 -0
- data/processor/command/set_subcmd/reload.rb +42 -0
- data/processor/command/set_subcmd/substitute.rb +24 -0
- data/processor/command/set_subcmd/substitute_subcmd/.gitignore +3 -0
- data/processor/command/set_subcmd/substitute_subcmd/path.rb +56 -0
- data/processor/command/set_subcmd/timer.rb +58 -0
- data/processor/command/set_subcmd/trace.rb +37 -0
- data/processor/command/set_subcmd/trace_subcmd/.gitignore +2 -0
- data/processor/command/set_subcmd/trace_subcmd/buffer.rb +42 -0
- data/processor/command/set_subcmd/trace_subcmd/print.rb +41 -0
- data/processor/command/shell.rb +131 -0
- data/processor/command/show.rb +39 -0
- data/processor/command/show_subcmd/.gitignore +3 -0
- data/processor/command/show_subcmd/abbrev.rb +20 -0
- data/processor/command/show_subcmd/aliases.rb +46 -0
- data/processor/command/show_subcmd/args.rb +25 -0
- data/processor/command/show_subcmd/auto.rb +28 -0
- data/processor/command/show_subcmd/auto_subcmd/.gitignore +3 -0
- data/processor/command/show_subcmd/auto_subcmd/dis.rb +37 -0
- data/processor/command/show_subcmd/auto_subcmd/eval.rb +24 -0
- data/processor/command/show_subcmd/auto_subcmd/irb.rb +23 -0
- data/processor/command/show_subcmd/auto_subcmd/list.rb +22 -0
- data/processor/command/show_subcmd/basename.rb +20 -0
- data/processor/command/show_subcmd/confirm.rb +18 -0
- data/processor/command/show_subcmd/debug.rb +26 -0
- data/processor/command/show_subcmd/debug_subcmd/.gitignore +3 -0
- data/processor/command/show_subcmd/debug_subcmd/dbgr.rb +21 -0
- data/processor/command/show_subcmd/debug_subcmd/skip.rb +22 -0
- data/processor/command/show_subcmd/debug_subcmd/step.rb +22 -0
- data/processor/command/show_subcmd/different.rb +26 -0
- data/processor/command/show_subcmd/directories.rb +22 -0
- data/processor/command/show_subcmd/hidelevel.rb +41 -0
- data/processor/command/show_subcmd/highlight.rb +25 -0
- data/processor/command/show_subcmd/kernelstep.rb +34 -0
- data/processor/command/show_subcmd/max.rb +27 -0
- data/processor/command/show_subcmd/max_subcmd/.gitignore +2 -0
- data/processor/command/show_subcmd/max_subcmd/list.rb +38 -0
- data/processor/command/show_subcmd/max_subcmd/stack.rb +36 -0
- data/processor/command/show_subcmd/max_subcmd/string.rb +42 -0
- data/processor/command/show_subcmd/max_subcmd/width.rb +37 -0
- data/processor/command/show_subcmd/reload.rb +18 -0
- data/processor/command/show_subcmd/timer.rb +18 -0
- data/processor/command/show_subcmd/trace.rb +27 -0
- data/processor/command/show_subcmd/trace_subcmd/.gitignore +2 -0
- data/processor/command/show_subcmd/trace_subcmd/buffer.rb +64 -0
- data/processor/command/show_subcmd/trace_subcmd/print.rb +23 -0
- data/processor/command/show_subcmd/version.rb +23 -0
- data/processor/command/source.rb +133 -0
- data/processor/command/step.rb +97 -0
- data/processor/command/tbreak.rb +20 -0
- data/processor/command/unalias.rb +49 -0
- data/processor/command/undisplay.rb +63 -0
- data/processor/command/up.rb +89 -0
- data/processor/command.rb +173 -0
- data/processor/default.rb +64 -0
- data/processor/disassemble.rb +59 -0
- data/processor/display.rb +53 -0
- data/processor/eval.rb +97 -0
- data/processor/eventbuf.rb +101 -0
- data/processor/frame.rb +265 -0
- data/processor/help.rb +94 -0
- data/processor/hook.rb +134 -0
- data/processor/list.rb +123 -0
- data/processor/load_cmds.rb +253 -0
- data/processor/location.rb +228 -0
- data/processor/mock.rb +138 -0
- data/processor/msg.rb +74 -0
- data/processor/running.rb +244 -0
- data/processor/stepping.rb +135 -0
- data/processor/subcmd.rb +136 -0
- data/processor/validate.rb +379 -0
- data/processor/virtual.rb +33 -0
- data/processor.rb +404 -0
- data/rbx-trepanning.gemspec +39 -0
- data/sample/.gitignore +2 -0
- data/sample/list-terminal-colors.rb +139 -0
- data/sample/rocky-dot-trepanxrc +14 -0
- data/sample/rocky-trepanx-colors.rb +46 -0
- data/test/data/.gitignore +1 -0
- data/test/data/enable.right +36 -0
- data/test/data/fname-with-blank.cmd +6 -0
- data/test/data/fname-with-blank.right +6 -0
- data/test/data/inline-call.cmd +6 -0
- data/test/data/inline-call.right +14 -0
- data/test/data/quit-Xdebug.right +3 -0
- data/test/data/quit.cmd +5 -0
- data/test/data/quit.right +3 -0
- data/test/data/quit2.cmd +6 -0
- data/test/data/quit2.right +3 -0
- data/test/example/.gitignore +2 -0
- data/test/example/debugger-stop.rb +16 -0
- data/test/example/factorial.rb +10 -0
- data/test/example/fname with blank.rb +1 -0
- data/test/example/gcd-server.rb +22 -0
- data/test/example/gcd.rb +19 -0
- data/test/example/goto2goto.rb +11 -0
- data/test/example/inline-call.rb +23 -0
- data/test/example/null.rb +1 -0
- data/test/example/thread1.rb +3 -0
- data/test/functional/.gitignore +3 -0
- data/test/functional/fn_helper.rb +112 -0
- data/test/functional/test-break-name.rb +52 -0
- data/test/functional/test-break.rb +85 -0
- data/test/functional/test-eval.rb +115 -0
- data/test/functional/test-finish.rb +70 -0
- data/test/functional/test-fn_helper.rb +43 -0
- data/test/functional/test-list.rb +56 -0
- data/test/functional/test-next-bug.rb +49 -0
- data/test/functional/test-next.rb +101 -0
- data/test/functional/test-recursive-bt.rb +94 -0
- data/test/functional/test-step.rb +272 -0
- data/test/functional/test-step2.rb +35 -0
- data/test/functional/test-tbreak.rb +41 -0
- data/test/integration/.gitignore +3 -0
- data/test/integration/file-diff.rb +89 -0
- data/test/integration/helper.rb +81 -0
- data/test/integration/test-fname-with-blank.rb +16 -0
- data/test/integration/test-inline-call.rb +20 -0
- data/test/integration/test-quit.rb +47 -0
- data/test/unit/.gitignore +3 -0
- data/test/unit/cmd-helper.rb +50 -0
- data/test/unit/mock-helper.rb +10 -0
- data/test/unit/test-app-brkpt.rb +31 -0
- data/test/unit/test-app-brkptmgr.rb +51 -0
- data/test/unit/test-app-cmd_parse.rb +97 -0
- data/test/unit/test-app-cmd_parser.rb +23 -0
- data/test/unit/test-app-complete.rb +39 -0
- data/test/unit/test-app-condition.rb +18 -0
- data/test/unit/test-app-display.rb +22 -0
- data/test/unit/test-app-iseq.rb +64 -0
- data/test/unit/test-app-method.rb +54 -0
- data/test/unit/test-app-options.rb +94 -0
- data/test/unit/test-app-run.rb +14 -0
- data/test/unit/test-app-util.rb +44 -0
- data/test/unit/test-app-validate.rb +18 -0
- data/test/unit/test-base-cmd.rb +45 -0
- data/test/unit/test-base-subcmd.rb +57 -0
- data/test/unit/test-base-submgr.rb +24 -0
- data/test/unit/test-base-subsubcmd.rb +17 -0
- data/test/unit/test-bin-trepanx.rb +48 -0
- data/test/unit/test-cmd-alias.rb +48 -0
- data/test/unit/test-cmd-break.rb +66 -0
- data/test/unit/test-cmd-edit.rb +34 -0
- data/test/unit/test-cmd-exit.rb +27 -0
- data/test/unit/test-cmd-finish.rb +31 -0
- data/test/unit/test-cmd-help.rb +104 -0
- data/test/unit/test-cmd-kill.rb +54 -0
- data/test/unit/test-cmd-parse_list_cmd.rb +36 -0
- data/test/unit/test-cmd-source.rb +34 -0
- data/test/unit/test-cmd-step.rb +29 -0
- data/test/unit/test-command.rb +45 -0
- data/test/unit/test-completion.rb +48 -0
- data/test/unit/test-intf-user.rb +46 -0
- data/test/unit/test-io-input.rb +27 -0
- data/test/unit/test-io-tcp.rb +33 -0
- data/test/unit/test-io-tcpclient.rb +54 -0
- data/test/unit/test-io-tcpfns.rb +17 -0
- data/test/unit/test-io-tcpserver.rb +50 -0
- data/test/unit/test-proc-eval.rb +35 -0
- data/test/unit/test-proc-frame.rb +81 -0
- data/test/unit/test-proc-help.rb +16 -0
- data/test/unit/test-proc-hook.rb +30 -0
- data/test/unit/test-proc-list.rb +55 -0
- data/test/unit/test-proc-load_cmds.rb +51 -0
- data/test/unit/test-proc-location.rb +67 -0
- data/test/unit/test-proc-main.rb +95 -0
- data/test/unit/test-proc-validate.rb +139 -0
- data/test/unit/test-subcmd-help.rb +43 -0
- metadata +545 -0
data/ChangeLog
ADDED
@@ -0,0 +1,2967 @@
|
|
1
|
+
2013-07-14 rocky <rockyb@rubyforge.org>
|
2
|
+
|
3
|
+
* app/options.rb: Get ready for release 0.2.0
|
4
|
+
|
5
|
+
2013-07-14 rocky <rockyb@rubyforge.org>
|
6
|
+
|
7
|
+
* app/method.rb, lib/trepanning.rb, processor/load_cmds.rb,
|
8
|
+
test/functional/test-break.rb, test/integration/helper.rb,
|
9
|
+
test/unit/test-completion.rb: Changes to get this to work on
|
10
|
+
rubinius 2.0.0.rc1 (1.8.7 93c75658...) app/method.rb:
|
11
|
+
top_scope.parent can be nil lib/trepanning.rb: Locations have
|
12
|
+
changed to get -Xcode start correct processor/load_cmds.rb: $0 can
|
13
|
+
be nil when -Xtrace is used
|
14
|
+
|
15
|
+
2013-03-10 rocky <rockyb@rubyforge.org>
|
16
|
+
|
17
|
+
* processor/default.rb: A more clever displaywidth default setting
|
18
|
+
|
19
|
+
2013-02-08 rocky <rockyb@rubyforge.org>
|
20
|
+
|
21
|
+
* .gitignore: Administrivia
|
22
|
+
|
23
|
+
2013-02-08 rocky <rockyb@rubyforge.org>
|
24
|
+
|
25
|
+
* app/display.rb, app/frame.rb, app/method.rb,
|
26
|
+
processor/location.rb: static_scope -> constant_scope.
|
27
|
+
compiled_method->compiled_code. Thanks brixen!
|
28
|
+
|
29
|
+
2012-11-26 R. Bernstein <rockyb@rubyforge.org>
|
30
|
+
|
31
|
+
* sample/rocky-trepanx-colors.rb: Update
|
32
|
+
sample/rocky-trepanx-colors.rb
|
33
|
+
|
34
|
+
2012-06-27 rvm <rocky@gnu.org>
|
35
|
+
|
36
|
+
* app/client.rb, interface/user.rb, io/input.rb,
|
37
|
+
sample/rocky-trepanx-colors.rb: Remote execution corrections found
|
38
|
+
in rb-trepanning' .
|
39
|
+
|
40
|
+
2011-10-29 rocky <rockyb@rubyforge.org>
|
41
|
+
|
42
|
+
* : commit a7fb8932e29a9afa95a355c0eef1f1d06783d8b1 Author: rocky
|
43
|
+
<rockyb@rubyforge.org> Date: Sat Oct 29 12:33:05 2011 -0400
|
44
|
+
|
45
|
+
2011-10-27 rvm <rocky@gnu.org>
|
46
|
+
|
47
|
+
* NEWS, app/rbx-llvm.rb, rbx-trepanning.gemspec,
|
48
|
+
sample/rocky-trepanx-colors.rb: Get ready for 0.1.0 release.
|
49
|
+
|
50
|
+
2011-10-27 rvm <rocky@gnu.org>
|
51
|
+
|
52
|
+
* ChangeLog, NEWS, app/options.rb: Preparation for 0.1.0 release
|
53
|
+
|
54
|
+
2011-10-15 rocky <rockyb@rubyforge.org>
|
55
|
+
|
56
|
+
* app/display.rb, processor/command/delete.rb,
|
57
|
+
processor/command/undisplay.rb: delete interface now more closely
|
58
|
+
follows rb-trepanning code (and gdb better). Other sync with
|
59
|
+
rb-trepanning. Undisplay completion of display numbers added.
|
60
|
+
|
61
|
+
2011-10-14 rocky <rockyb@rubyforge.org>
|
62
|
+
|
63
|
+
* app/display.rb, processor/command/disable.rb,
|
64
|
+
processor/command/display.rb, processor/command/enable.rb,
|
65
|
+
processor/display.rb, test/unit/test-app-display.rb: Add
|
66
|
+
enable/display display NUM..
|
67
|
+
|
68
|
+
2011-10-09 rvm <rocky@gnu.org>
|
69
|
+
|
70
|
+
* processor/command/macro.rb, processor/command/set_subcmd/auto.rb,
|
71
|
+
processor/command/set_subcmd/trace.rb: Regularize and improve "set"
|
72
|
+
help a little bit. Sync with rb-trepanning.
|
73
|
+
|
74
|
+
2011-10-09 rvm <rocky@gnu.org>
|
75
|
+
|
76
|
+
* app/options.rb, bin/trepanx, lib/trepanning.rb, processor.rb:
|
77
|
+
Towards making --trace -x work. (It doesn't work yet though.)
|
78
|
+
|
79
|
+
2011-09-26 rvm <rocky@gnu.org>
|
80
|
+
|
81
|
+
* processor/command/macro.rb: Sync with rb-trepanning
|
82
|
+
|
83
|
+
2011-09-25 rvm <rocky@gnu.org>
|
84
|
+
|
85
|
+
* processor/command/show_subcmd/alias.rb,
|
86
|
+
processor/command/show_subcmd/aliases.rb: show alias => show aliases
|
87
|
+
|
88
|
+
2011-09-25 rvm <rocky@gnu.org>
|
89
|
+
|
90
|
+
* processor/command/alias.rb, processor/command/disable.rb,
|
91
|
+
processor/command/finish.rb, processor/running.rb: Sync with
|
92
|
+
rb8-trepanning.
|
93
|
+
|
94
|
+
2011-09-22 rocky <rockyb@rubyforge.org>
|
95
|
+
|
96
|
+
* processor/command/kill.rb, test/unit/test-cmd-kill.rb: Add command
|
97
|
+
completion for "unalias".
|
98
|
+
|
99
|
+
2011-09-22 rocky <rockyb@rubyforge.org>
|
100
|
+
|
101
|
+
* processor/command/unalias.rb: Add command completion for
|
102
|
+
"unalias".
|
103
|
+
|
104
|
+
2011-09-17 rocky <rockyb@rubyforge.org>
|
105
|
+
|
106
|
+
* processor/command/set_subcmd/different.rb: Grammar
|
107
|
+
|
108
|
+
2011-09-15 rocky <rockyb@rubyforge.org>
|
109
|
+
|
110
|
+
* : commit 778ef9b340dd044a3024818c3d3f084cb1c790ba Author: rocky
|
111
|
+
<rockyb@rubyforge.org> Date: Thu Sep 15 06:43:18 2011 -0400
|
112
|
+
|
113
|
+
2011-09-05 rvm <rocky@gnu.org>
|
114
|
+
|
115
|
+
* app/run.rb: Sync whence file with other trepanning behavior
|
116
|
+
|
117
|
+
2011-09-04 rocky <rockyb@rubyforge.org>
|
118
|
+
|
119
|
+
* processor/command/info_subcmd/files.rb,
|
120
|
+
processor/command/info_subcmd/frame.rb: Sync with rb-trepanning
|
121
|
+
|
122
|
+
2011-09-04 rocky <rockyb@rubyforge.org>
|
123
|
+
|
124
|
+
* processor/command/help.rb: Tweak general help text and adjust
|
125
|
+
spacing around listing all categories.
|
126
|
+
|
127
|
+
2011-08-28 rocky <rockyb@rubyforge.org>
|
128
|
+
|
129
|
+
* processor/help.rb, processor/msg.rb: Sync with rb-trepanning.
|
130
|
+
|
131
|
+
2011-08-22 rvm <rocky@gnu.org>
|
132
|
+
|
133
|
+
* processor/subcmd.rb: Get rid of another unused method
|
134
|
+
|
135
|
+
2011-08-22 rvm <rocky@gnu.org>
|
136
|
+
|
137
|
+
* processor/subcmd.rb: Semi-remove an unused method
|
138
|
+
|
139
|
+
2011-08-21 rvm <rocky@gnu.org>
|
140
|
+
|
141
|
+
* Rakefile, rbx-trepanning.gemspec: Was clobberint 1.2 gemspec in
|
142
|
+
making 2.0 release.
|
143
|
+
|
144
|
+
2011-08-21 rvm <rocky@gnu.org>
|
145
|
+
|
146
|
+
* processor/command/base/subcmd.rb: Remove unused function.
|
147
|
+
|
148
|
+
2011-08-21 rocky <rockyb@rubyforge.org>
|
149
|
+
|
150
|
+
* processor/command/help.rb: Wasn't showing output in showing * form
|
151
|
+
of categories.
|
152
|
+
|
153
|
+
2011-08-21 rocky <rockyb@rubyforge.org>
|
154
|
+
|
155
|
+
* processor.rb, processor/location.rb,
|
156
|
+
test/example/debugger-stop.rb: Move EVENT2ICON to the file where it
|
157
|
+
is used
|
158
|
+
|
159
|
+
2011-08-17 rocky <rockyb@rubyforge.org>
|
160
|
+
|
161
|
+
* app/client.rb: Remove client debug output
|
162
|
+
|
163
|
+
2011-08-17 rocky <rockyb@rubyforge.org>
|
164
|
+
|
165
|
+
* ChangeLog, Rakefile, lib/trepanning.rb, rbx-trepanning.gemspec:
|
166
|
+
Rakefile: Don't disallow rbx pre-2.0.0 and build separate gem for
|
167
|
+
that. lib/trepanning.rb: was passing an incorrect client parameter
|
168
|
+
|
169
|
+
2011-08-15 rocky <rockyb@rubyforge.org>
|
170
|
+
|
171
|
+
* processor/command/exit.rb: Test for valid exit return code and
|
172
|
+
update help doc. Sync with MRI 1.9 and Perl.
|
173
|
+
|
174
|
+
2011-08-14 rocky <rockyb@rubyforge.org>
|
175
|
+
|
176
|
+
* processor.rb, processor/msg.rb, processor/validate.rb: Sync with
|
177
|
+
rb-trepanning and Perl version.
|
178
|
+
|
179
|
+
2011-08-14 rocky <rockyb@rubyforge.org>
|
180
|
+
|
181
|
+
* app/options.rb, rbx-trepanning.gemspec: Go over version numbering
|
182
|
+
yet again.
|
183
|
+
|
184
|
+
2011-08-14 rocky <rockyb@rubyforge.org>
|
185
|
+
|
186
|
+
* processor/command/kill.rb, test/unit/test-app-options.rb:
|
187
|
+
test-app-options.rb: testing help/version options was killing the
|
188
|
+
rest of the tests Speaking of killing.. add more robust kill
|
189
|
+
checking and fix an outright bug in name-to-number access. Sync
|
190
|
+
with rb-trepanning.
|
191
|
+
|
192
|
+
2011-08-11 rocky <rockyb@rubyforge.org>
|
193
|
+
|
194
|
+
* app/complete.rb, interface.rb, interface/base_intf.rb,
|
195
|
+
interface/script.rb, interface/server.rb, interface/user.rb, io.rb,
|
196
|
+
io/base_io.rb, io/input.rb, io/null_output.rb, io/string_array.rb,
|
197
|
+
io/tcpclient.rb, io/tcpserver.rb, lib/trepanning.rb, processor.rb,
|
198
|
+
processor/command.rb, processor/command/alias.rb,
|
199
|
+
processor/command/backtrace.rb, processor/command/base/cmd.rb,
|
200
|
+
processor/command/base/subcmd.rb, processor/command/base/submgr.rb,
|
201
|
+
processor/command/base/subsubcmd.rb, processor/command/break.rb,
|
202
|
+
processor/command/complete.rb, processor/command/condition.rb,
|
203
|
+
processor/command/continue.rb, processor/command/delete.rb,
|
204
|
+
processor/command/directory.rb, processor/command/disable.rb,
|
205
|
+
processor/command/disassemble.rb, processor/command/display.rb,
|
206
|
+
processor/command/edit.rb, processor/command/eval.rb,
|
207
|
+
processor/command/exit.rb, processor/command/finish.rb,
|
208
|
+
processor/command/frame.rb, processor/command/help.rb,
|
209
|
+
processor/command/kill.rb, processor/command/list.rb,
|
210
|
+
processor/command/macro.rb, processor/command/next.rb,
|
211
|
+
processor/command/nexti.rb, processor/command/parsetree.rb,
|
212
|
+
processor/command/pr.rb, processor/command/ps.rb,
|
213
|
+
processor/command/restart.rb, processor/command/save.rb,
|
214
|
+
processor/command/server.rb, processor/command/shell.rb,
|
215
|
+
processor/command/source.rb, processor/command/step.rb,
|
216
|
+
processor/command/tbreak.rb, processor/command/unalias.rb,
|
217
|
+
processor/command/undisplay.rb, processor/command/up.rb,
|
218
|
+
processor/main.rb, processor/mock.rb, processor/subcmd.rb,
|
219
|
+
test/unit/test-base-cmd.rb, test/unit/test-base-subcmd.rb,
|
220
|
+
test/unit/test-cmd-break.rb, test/unit/test-cmd-parse_list_cmd.rb,
|
221
|
+
test/unit/test-command.rb, test/unit/test-proc-eval.rb,
|
222
|
+
test/unit/test-proc-frame.rb, test/unit/test-proc-list.rb,
|
223
|
+
test/unit/test-proc-load_cmds.rb, test/unit/test-proc-main.rb,
|
224
|
+
test/unit/test-proc-validate.rb, test/unit/test-subcmd-help.rb:
|
225
|
+
Nicer file names for base classes.
|
226
|
+
|
227
|
+
2011-07-28 rocky <rockyb@rubyforge.org>
|
228
|
+
|
229
|
+
* processor/command/list.rb, processor/list.rb,
|
230
|
+
processor/validate.rb: Listing again shows breakpoints. Some bugs in
|
231
|
+
higher-level (non-kpeg) parsing fixed.
|
232
|
+
|
233
|
+
2011-07-27 rvm <rocky@gnu.org>
|
234
|
+
|
235
|
+
* processor/command/list.rb, processor/list.rb: Sync list with
|
236
|
+
trepanning. Thre are some bugs to be worked out still...
|
237
|
+
|
238
|
+
2011-07-27 rvm <rocky@gnu.org>
|
239
|
+
|
240
|
+
* app/cmd_parse.kpeg, app/cmd_parser.rb, processor/command/list.rb,
|
241
|
+
processor/list.rb, test/unit/test-proc-list.rb: Sync with
|
242
|
+
rb-trepanning - break out list validation and generalize what we
|
243
|
+
allow.
|
244
|
+
|
245
|
+
2011-06-22 rocky <rockyb@rubyforge.org>
|
246
|
+
|
247
|
+
* processor/command/info_subcmd/variables_subcmd/constant.rb,
|
248
|
+
processor/help.rb, processor/subcmd.rb, rbx-trepanning.gemspec:
|
249
|
+
rbx-trepanning.gemspec: diff-lcs dependency is only a development
|
250
|
+
dependency. Rest: small changes.
|
251
|
+
|
252
|
+
2011-06-19 rocky <rockyb@rubyforge.org>
|
253
|
+
|
254
|
+
* processor/msg.rb: Sync with rb8-trepanning
|
255
|
+
|
256
|
+
2011-06-19 rocky <rockyb@rubyforge.org>
|
257
|
+
|
258
|
+
* processor/msg.rb: Sync with rb8-trepanning
|
259
|
+
|
260
|
+
2011-06-19 rocky <rockyb@rubyforge.org>
|
261
|
+
|
262
|
+
* : commit ff816112ebb876fff2d3b34363ac00c7ee997c62 Author: rocky
|
263
|
+
<rockyb@rubyforge.org> Date: Sun Jun 19 12:19:59 2011 -0400
|
264
|
+
|
265
|
+
2011-06-16 rvm <rocky@gnu.org>
|
266
|
+
|
267
|
+
* app/irb.rb, app/options.rb, processor/command/shell.rb,
|
268
|
+
processor/hook.rb, processor/location.rb, test/unit/cmd-helper.rb,
|
269
|
+
test/unit/test-proc-location.rb: Fix bugs in "set autolist" and
|
270
|
+
"step/next" inside irb. sync with rb8-trepanning.
|
271
|
+
|
272
|
+
2011-06-12 rocky <rockyb@rubyforge.org>
|
273
|
+
|
274
|
+
* ChangeLog, app/options.rb, processor/mock.rb: Release 0.0.9
|
275
|
+
|
276
|
+
2011-06-10 rocky <rockyb@rubyforge.org>
|
277
|
+
|
278
|
+
* NEWS, processor/command/set_subcmd/reload.rb,
|
279
|
+
processor/command/show_subcmd/reload.rb: Add set/show reload. This
|
280
|
+
time, for sure!
|
281
|
+
|
282
|
+
2011-06-10 rocky <rockyb@rubyforge.org>
|
283
|
+
|
284
|
+
* NEWS, processor/command/list.rb, processor/default.rb,
|
285
|
+
processor/location.rb, processor/mock.rb, processor/virtual.rb: Add
|
286
|
+
set/show reload. Sync location better with rb8-trepanning
|
287
|
+
|
288
|
+
2011-06-09 rvm <rocky@gnu.org>
|
289
|
+
|
290
|
+
* processor/command/info_subcmd/globals.rb,
|
291
|
+
processor/command/info_subcmd/locals.rb,
|
292
|
+
processor/command/info_subcmd/source.rb,
|
293
|
+
processor/command/set_subcmd/timer.rb,
|
294
|
+
processor/command/show_subcmd/timer.rb: Add "info globals", "info
|
295
|
+
source" set/show "timer".
|
296
|
+
|
297
|
+
2011-06-09 rocky <rockyb@rubyforge.org>
|
298
|
+
|
299
|
+
* NEWS, processor/command/help/suffixes.txt: Small changes.
|
300
|
+
|
301
|
+
2011-06-09 rvm <rocky@gnu.org>
|
302
|
+
|
303
|
+
* processor/command/parsetree.rb: parsetree command bug
|
304
|
+
|
305
|
+
2011-06-09 rvm <rocky@gnu.org>
|
306
|
+
|
307
|
+
* ChangeLog, NEWS, Rakefile, processor/command/help.rb,
|
308
|
+
processor/command/help/command.txt,
|
309
|
+
processor/command/help/examples.txt,
|
310
|
+
processor/command/help/filename.txt,
|
311
|
+
processor/command/help/suffixes.txt: Add more command syntax help.
|
312
|
+
Specifically describe suffixes and break out examples.
|
313
|
+
|
314
|
+
2011-06-09 rvm <rocky@gnu.org>
|
315
|
+
|
316
|
+
* Rakefile: Better file cleanup. Sync with rb8-trepanning.
|
317
|
+
|
318
|
+
2011-06-08 rvm <rocky@gnu.org>
|
319
|
+
|
320
|
+
* processor/command/parsetree.rb,
|
321
|
+
processor/command/set_subcmd/highlight.rb: Add sectioning for parse
|
322
|
+
tree highlight "reset" sets "on". Add completion. Sync with
|
323
|
+
rb8-trepanning.
|
324
|
+
|
325
|
+
2011-06-08 rvm <rocky@gnu.org>
|
326
|
+
|
327
|
+
* : commit 256a08096a2cee3120b36097d03a7c73d53c648c Author: rvm
|
328
|
+
<rocky@gnu.org> Date: Wed Jun 8 15:00:25 2011 -0400
|
329
|
+
|
330
|
+
2011-06-07 rocky <rockyb@rubyforge.org>
|
331
|
+
|
332
|
+
* data/irbrc, processor/command/shell.rb: Sync with rb8-trepanning
|
333
|
+
|
334
|
+
2011-06-05 rocky <rockyb@rubyforge.org>
|
335
|
+
|
336
|
+
* app/options.rb, app/run.rb, interface/script.rb: In preparation
|
337
|
+
for more complete integration testing.
|
338
|
+
|
339
|
+
2011-06-05 rocky <rockyb@rubyforge.org>
|
340
|
+
|
341
|
+
* test/unit/test-cmd-edit.rb: Add an "edit" command unit test.
|
342
|
+
|
343
|
+
2011-06-05 rvm <rocky@gnu.org>
|
344
|
+
|
345
|
+
* app/options.rb: Sync options processing with rb8-trepanning. Added
|
346
|
+
option --cd --incliude --debug, and --require.
|
347
|
+
|
348
|
+
2011-06-05 rvm <rocky@gnu.org>
|
349
|
+
|
350
|
+
* : I hate conflicted merges
|
351
|
+
|
352
|
+
2011-06-04 rvm <rocky@gnu.org>
|
353
|
+
|
354
|
+
* processor/command/help/command.txt: command syntax help yet again.
|
355
|
+
|
356
|
+
2011-06-04 rocky <rockyb@rubyforge.org>
|
357
|
+
|
358
|
+
* processor/command/help/command.txt: Revise command syntax help.
|
359
|
+
|
360
|
+
2011-06-04 rocky <rockyb@rubyforge.org>
|
361
|
+
|
362
|
+
* app/util.rb, processor/command/set_subcmd/abbrev.rb,
|
363
|
+
processor/command/show_subcmd/abbrev.rb, processor/default.rb,
|
364
|
+
processor/main.rb, processor/validate.rb,
|
365
|
+
test/functional/fn_helper.rb, test/unit/test-app-util.rb: Allow
|
366
|
+
abbreviations in command names "set/show abbrev"
|
367
|
+
|
368
|
+
2011-06-04 rocky <rockyb@rubyforge.org>
|
369
|
+
|
370
|
+
* app/frame.rb, processor/breakpoint.rb,
|
371
|
+
processor/command/disassemble.rb,
|
372
|
+
processor/command/info_subcmd/locals.rb: Add 'info locals'. gdb has
|
373
|
+
it. breakpoint.rb: Fix bug in setting an IP brkpt.
|
374
|
+
|
375
|
+
2011-06-04 rvm <rocky@gnu.org>
|
376
|
+
|
377
|
+
* processor/command/info_subcmd/macro.rb,
|
378
|
+
processor/command/macro.rb: show macro -> info macro as gdb has it.
|
379
|
+
|
380
|
+
2011-06-04 rvm <rocky@gnu.org>
|
381
|
+
|
382
|
+
* processor/command/show_subcmd/macro.rb: show macro -> info macro
|
383
|
+
as gdb has i.
|
384
|
+
|
385
|
+
2011-06-04 rvm <rocky@gnu.org>
|
386
|
+
|
387
|
+
* processor/command/list.rb, processor/default.rb,
|
388
|
+
processor/location.rb: Move 'reload_on_change' to a processor
|
389
|
+
setting.
|
390
|
+
|
391
|
+
2011-06-03 rvm <rocky@gnu.org>
|
392
|
+
|
393
|
+
* interface/client.rb, interface/server.rb, interface/user.rb: Add
|
394
|
+
interface closed? to make sure input and output are closed.
|
395
|
+
|
396
|
+
2011-06-03 rvm <rocky@gnu.org>
|
397
|
+
|
398
|
+
* processor/location.rb: Make a little less Rubinius-specific.
|
399
|
+
|
400
|
+
2011-06-02 rocky <rockyb@rubyforge.org>
|
401
|
+
|
402
|
+
* processor/command/set_subcmd/auto_subcmd/eval.rb,
|
403
|
+
processor/command/set_subcmd/auto_subcmd/irb.rb,
|
404
|
+
processor/command/set_subcmd/auto_subcmd/list.rb: DRY code more
|
405
|
+
|
406
|
+
2011-06-02 rocky <rockyb@rubyforge.org>
|
407
|
+
|
408
|
+
* io/null_output.rb: class Trepan; class ... -> class Trepan::...
|
409
|
+
again.
|
410
|
+
|
411
|
+
2011-06-02 rocky <rockyb@rubyforge.org>
|
412
|
+
|
413
|
+
* processor/hook.rb: Make a tad more general - sync with
|
414
|
+
rb8-trepanning.
|
415
|
+
|
416
|
+
2011-06-02 rocky <rockyb@rubyforge.org>
|
417
|
+
|
418
|
+
* processor/command/tbreak.rb: Sync with rb-trepanning and
|
419
|
+
rb8-trepanning.
|
420
|
+
|
421
|
+
2011-06-02 rvm <rocky@gnu.org>
|
422
|
+
|
423
|
+
* processor/command/show_subcmd/hidelevel.rb,
|
424
|
+
processor/command/show_subcmd/highlight.rb,
|
425
|
+
processor/command/show_subcmd/macro.rb: Small doc change
|
426
|
+
|
427
|
+
2011-06-02 rvm <rocky@gnu.org>
|
428
|
+
|
429
|
+
* processor/command/info_subcmd/stack.rb: Add "info stack". gdb has
|
430
|
+
it.
|
431
|
+
|
432
|
+
2011-06-02 rvm <rocky@gnu.org>
|
433
|
+
|
434
|
+
* processor/virtual.rb, test/unit/test-proc-location.rb:
|
435
|
+
test-proc-location.rb: don't need to worry about order of requires
|
436
|
+
now.
|
437
|
+
|
438
|
+
2011-06-01 rvm <rocky@gnu.org>
|
439
|
+
|
440
|
+
* app/cmd_parser.rb, processor/virtual.rb, test/unit/cmd-helper.rb,
|
441
|
+
test/unit/test-base-cmd.rb, test/unit/test-base-subcmd.rb,
|
442
|
+
test/unit/test-base-subsubcmd.rb, test/unit/test-proc-main.rb,
|
443
|
+
test/unit/test-subcmd-help.rb: Liskov interface violations removed
|
444
|
+
so we can simplfy and remove some of the FIXMEs.
|
445
|
+
|
446
|
+
2011-05-31 rvm <rocky@gnu.org>
|
447
|
+
|
448
|
+
* processor/command/continue.rb, processor/mock.rb,
|
449
|
+
processor/virtual.rb: Simplify more via sync with rb8-trepanning.
|
450
|
+
|
451
|
+
2011-05-31 rvm <rocky@gnu.org>
|
452
|
+
|
453
|
+
* processor/disassemble.rb: Need to qualify ISeq now that we use
|
454
|
+
Trepan::CmpProcessor collapsing Trepan namespace.
|
455
|
+
|
456
|
+
2011-05-31 rocky <rockyb@rubyforge.org>
|
457
|
+
|
458
|
+
* processor/command/frame.rb: Small change to make less Rubinius
|
459
|
+
specific
|
460
|
+
|
461
|
+
2011-05-31 rocky <rockyb@rubyforge.org>
|
462
|
+
|
463
|
+
* processor/frame.rb, processor/validate.rb, processor/virtual.rb:
|
464
|
+
More simplifications.
|
465
|
+
|
466
|
+
2011-05-31 rocky <rockyb@rubyforge.org>
|
467
|
+
|
468
|
+
* processor/frame.rb: As before: class Trepan; class CmdProcessor ->
|
469
|
+
class Trepan::CmdProcessor
|
470
|
+
|
471
|
+
2011-05-30 rocky <rockyb@rubyforge.org>
|
472
|
+
|
473
|
+
* processor/breakpoint.rb, processor/default.rb,
|
474
|
+
processor/disassemble.rb, processor/display.rb, processor/eval.rb,
|
475
|
+
processor/eventbuf.rb, processor/virtual.rb: class Trepan; class
|
476
|
+
CmdProcessor -> class Trepan::CmdProcessor which should make things
|
477
|
+
more cross-implementation portable.
|
478
|
+
|
479
|
+
2011-05-28 rvm <rocky@gnu.org>
|
480
|
+
|
481
|
+
* processor/breakpoint.rb, processor/main.rb: Insignificant changes.
|
482
|
+
Keep code in sync.
|
483
|
+
|
484
|
+
2011-05-28 rvm <rocky@gnu.org>
|
485
|
+
|
486
|
+
* processor/breakpoint.rb, processor/default.rb,
|
487
|
+
processor/disassemble.rb, processor/display.rb, processor/eval.rb,
|
488
|
+
processor/eventbuf.rb, processor/frame.rb, processor/hook.rb,
|
489
|
+
processor/load_cmds.rb, processor/location.rb, processor/main.rb,
|
490
|
+
processor/msg.rb, processor/running.rb, processor/stepping.rb,
|
491
|
+
processor/validate.rb, processor/virtual.rb: Ensure
|
492
|
+
Trepan::CmdProcessor has a consistent initialize interface.
|
493
|
+
|
494
|
+
2011-05-28 rocky <rockyb@rubyforge.org>
|
495
|
+
|
496
|
+
* processor/command/complete.rb: Fix up standalone code for
|
497
|
+
"complete" command.
|
498
|
+
|
499
|
+
2011-05-28 rocky <rockyb@rubyforge.org>
|
500
|
+
|
501
|
+
* processor/command/exit.rb, processor/load_cmds.rb: Change $0 in
|
502
|
+
loading so as not to interfere with __FILE__ = $. Sync with
|
503
|
+
rb8-trepanning.
|
504
|
+
|
505
|
+
2011-05-27 rocky <rockyb@rubyforge.org>
|
506
|
+
|
507
|
+
* : merge in eval changes
|
508
|
+
|
509
|
+
2011-05-27 rvm <rocky@gnu.org>
|
510
|
+
|
511
|
+
* processor/command/eval.rb: completion for eval with nothing is the
|
512
|
+
current source text. More later...
|
513
|
+
|
514
|
+
2011-05-26 rocky <rockyb@rubyforge.org>
|
515
|
+
|
516
|
+
* : commit 2bbbd6bb4ffc3cd19996007649fbdb815fb38393 Author: rocky
|
517
|
+
<rockyb@rubyforge.org> Date: Thu May 26 22:18:28 2011 -0400
|
518
|
+
|
519
|
+
2011-05-22 rvm <rocky@gnu.org>
|
520
|
+
|
521
|
+
* processor/command/disassemble.rb: This time, for sure!
|
522
|
+
|
523
|
+
2011-05-22 rvm <rocky@gnu.org>
|
524
|
+
|
525
|
+
* processor/command/disassemble.rb: command completion of
|
526
|
+
disassemble opts
|
527
|
+
|
528
|
+
2011-05-22 rvm <rocky@gnu.org>
|
529
|
+
|
530
|
+
* processor/command/disassemble.rb: command completion of
|
531
|
+
disassemble opts
|
532
|
+
|
533
|
+
2011-05-22 rocky <rockyb@rubyforge.org>
|
534
|
+
|
535
|
+
* app/frame.rb, app/iseq.rb, processor/command/info_subcmd/line.rb,
|
536
|
+
processor/disassemble.rb, processor/location.rb: More changes to
|
537
|
+
handle rbx newly-created "synthesized" tail code lines, i.e lines
|
538
|
+
with line number 0.
|
539
|
+
|
540
|
+
2011-05-22 rvm <rocky@gnu.org>
|
541
|
+
|
542
|
+
* processor/breakpoint.rb: Work around for synthetic or line 0
|
543
|
+
bytcodes. Seen in "break @17" where offset 17 is synthetic.
|
544
|
+
|
545
|
+
2011-05-22 rvm <rocky@gnu.org>
|
546
|
+
|
547
|
+
* test/example/goto2goto.rb: Add example program with a "line 0"
|
548
|
+
(synthetic) line number.
|
549
|
+
|
550
|
+
2011-05-22 rvm <rocky@gnu.org>
|
551
|
+
|
552
|
+
* processor/command/disassemble.rb, processor/command/source.rb:
|
553
|
+
disassemble all => disassemble --all|-a
|
554
|
+
|
555
|
+
2011-05-21 rvm <rocky@gnu.org>
|
556
|
+
|
557
|
+
* Rakefile: Replace deprecated rake tasks rake/rdoctask and
|
558
|
+
rake/gempackagetask
|
559
|
+
|
560
|
+
2011-05-21 rocky <rockyb@rubyforge.org>
|
561
|
+
|
562
|
+
* lib/trepanning.rb, processor/command/enable.rb,
|
563
|
+
processor/command/irb.rb, processor/command/shell.rb,
|
564
|
+
processor/main.rb, test/unit/test-cmd-parse_list_cmd.rb,
|
565
|
+
test/unit/test-completion.rb: debugger command "irb" -> "shell" with
|
566
|
+
command alias "irb". With this, debugger commands can be more
|
567
|
+
uniform across all of the debuggers I work on (i.e. python, and
|
568
|
+
POSIX shell). Add more rescues to handle failed internal eval's.
|
569
|
+
|
570
|
+
2011-04-23 rocky <rockyb@rubyforge.org>
|
571
|
+
|
572
|
+
* rbx-trepanning.gemspec: Newer rubinius's needs a newer
|
573
|
+
require_relative.
|
574
|
+
|
575
|
+
2011-04-23 rocky <rockyb@rubyforge.org>
|
576
|
+
|
577
|
+
* processor/disassemble.rb: Check if we can find staring offset for
|
578
|
+
disassembly.
|
579
|
+
|
580
|
+
2011-04-23 rocky <rockyb@rubyforge.org>
|
581
|
+
|
582
|
+
* : commit d165fb163a519dfb5a47a8439d2b45aab3472e85 Author: rocky
|
583
|
+
<rockyb@rubyforge.org> Date: Sat Apr 23 21:07:20 2011 -0400
|
584
|
+
|
585
|
+
2011-04-23 rocky <rockyb@rubyforge.org>
|
586
|
+
|
587
|
+
* Rakefile, app/util.rb, lib/trepanning.rb, processor/frame.rb,
|
588
|
+
rbx-trepanning.gemspec, test/unit/test-app-cmd_parser.rb,
|
589
|
+
test/unit/test-app-util.rb: Track various internal Rubinius changes
|
590
|
+
in startup. Rakefile: fix check:unit target to run only tests.
|
591
|
+
test-appu-util.rb needs require-relative if run standalone.
|
592
|
+
|
593
|
+
2011-04-20 rocky <rockyb@rubyforge.org>
|
594
|
+
|
595
|
+
* test/integration/helper.rb: Add min/max arg checking and set it
|
596
|
+
for set bool sub(sub) commands.
|
597
|
+
|
598
|
+
2011-04-19 rocky <rockyb@rubyforge.org>
|
599
|
+
|
600
|
+
* processor/command/base/submgr.rb,
|
601
|
+
processor/command/disassemble.rb, processor/command/info.rb,
|
602
|
+
processor/command/info_subcmd/frame.rb,
|
603
|
+
processor/command/info_subcmd/program.rb,
|
604
|
+
processor/command/info_subcmd/ruby.rb: Add min/max argument checking
|
605
|
+
to subcommands. Add min/max parameters for various "info" commands.
|
606
|
+
|
607
|
+
2011-04-16 rocky <rockyb@rubyforge.org>
|
608
|
+
|
609
|
+
* app/options.rb, interface/base_intf.rb, io/null_output.rb,
|
610
|
+
processor/command/exit.rb, processor/command/kill.rb,
|
611
|
+
test/data/fname-with-blank.right: Add termination message to
|
612
|
+
interface finalization routine. Implement NullOutput closed?
|
613
|
+
|
614
|
+
2011-04-16 rocky <rockyb@rubyforge.org>
|
615
|
+
|
616
|
+
* processor/frame.rb, test/functional/test-list.rb: Get right frame
|
617
|
+
displayed in frame motion. This time, for sure!
|
618
|
+
|
619
|
+
2011-04-16 rocky <rockyb@rubyforge.org>
|
620
|
+
|
621
|
+
* app/frame.rb, processor/command/exit.rb,
|
622
|
+
processor/command/kill.rb, processor/frame.rb, processor/main.rb,
|
623
|
+
test/data/inline-call.right, test/data/quit.right,
|
624
|
+
test/functional/fn_helper.rb, test/functional/test-list.rb,
|
625
|
+
test/unit/test-proc-frame.rb: Offer termintation message. Show frame
|
626
|
+
number and indication when switching frames. Useful for front-ends.
|
627
|
+
|
628
|
+
2011-03-31 rocky <rockyb@rubyforge.org>
|
629
|
+
|
630
|
+
* processor/command/eval.rb: Add LHS assignment stripping to eval?
|
631
|
+
|
632
|
+
2011-03-31 rocky <rockyb@rubyforge.org>
|
633
|
+
|
634
|
+
* app/file.rb, lib/trepanning.rb, processor/location.rb:
|
635
|
+
app/file.rb: Make sure filenames don't end .rbc. location.rb: more
|
636
|
+
comments.
|
637
|
+
|
638
|
+
2011-03-31 rocky <rockyb@rubyforge.org>
|
639
|
+
|
640
|
+
* test/unit/test-proc-load_cmds.rb: "disable" add to test completion
|
641
|
+
list
|
642
|
+
|
643
|
+
2011-03-31 rocky <rockyb@rubyforge.org>
|
644
|
+
|
645
|
+
* : commit 8bc892de9ae1852e99ff8543994ed176701360b6 Author: rocky
|
646
|
+
<rockyb@rubyforge.org> Date: Thu Mar 31 07:06:28 2011 -0400
|
647
|
+
|
648
|
+
2011-03-31 rocky <rockyb@rubyforge.org>
|
649
|
+
|
650
|
+
* processor/command/eval.rb: eval?: def foo(a,b) -> [a,b] although
|
651
|
+
we do not stop and defs
|
652
|
+
|
653
|
+
2011-03-31 rocky <rockyb@rubyforge.org>
|
654
|
+
|
655
|
+
* lib/trepanning.rb, processor/breakpoint.rb,
|
656
|
+
processor/command/disable.rb, processor/command/enable.rb: Add
|
657
|
+
breakpoint enable and disable commands.
|
658
|
+
|
659
|
+
2011-03-30 rocky <rockyb@rubyforge.org>
|
660
|
+
|
661
|
+
* processor/command/show_subcmd/directories.rb,
|
662
|
+
test/unit/test-base-submgr.rb,
|
663
|
+
test/unit/test-cmd-parse_list_cmd.rb,
|
664
|
+
test/unit/test-proc-load_cmds.rb: "show directories" help matches
|
665
|
+
conventions now. Correct test expected output.
|
666
|
+
|
667
|
+
2011-03-30 rocky <rockyb@rubyforge.org>
|
668
|
+
|
669
|
+
* processor/command/directory.rb,
|
670
|
+
processor/command/show_subcmd/directories.rb: Add "show directories"
|
671
|
+
command
|
672
|
+
|
673
|
+
2011-03-30 rocky <rockyb@rubyforge.org>
|
674
|
+
|
675
|
+
* app/breakpoint.rb, app/brkptmgr.rb, app/cmd_parse.kpeg,
|
676
|
+
app/cmd_parse.rb, app/cmd_parser.rb, app/file.rb,
|
677
|
+
processor/command/list.rb, processor/default.rb,
|
678
|
+
processor/location.rb, processor/main.rb, processor/validate.rb,
|
679
|
+
test/data/inline-call.right, test/functional/test-list.rb,
|
680
|
+
test/unit/test-app-cmd_parser.rb,
|
681
|
+
test/unit/test-cmd-parse_list_cmd.rb,
|
682
|
+
test/unit/test-proc-location.rb, test/unit/test-proc-validate.rb:
|
683
|
+
Redo list parsing using KPEG grammar. Should be more general and
|
684
|
+
maintainable.
|
685
|
+
|
686
|
+
2011-03-23 rocky <rockyb@rubyforge.org>
|
687
|
+
|
688
|
+
* processor/command/edit.rb, processor/command/help/README: Add
|
689
|
+
first-cut at an "edit" command.
|
690
|
+
|
691
|
+
2011-03-17 rocky <rockyb@rubyforge.org>
|
692
|
+
|
693
|
+
* Rakefile, app/run.rb, bin/trepanx, test/integration/helper.rb,
|
694
|
+
test/unit/test-app-run.rb, test/unit/test-bin-trepanx.rb: ruby_path
|
695
|
+
-> RbConfig.ruby
|
696
|
+
|
697
|
+
2011-03-15 rocky <rockyb@rubyforge.org>
|
698
|
+
|
699
|
+
* app/options.rb: Update version for release.
|
700
|
+
|
701
|
+
2011-03-15 rocky <rockyb@rubyforge.org>
|
702
|
+
|
703
|
+
* NEWS: Get ready for release.
|
704
|
+
|
705
|
+
2011-03-14 rocky <rockyb@rubyforge.org>
|
706
|
+
|
707
|
+
* ChangeLog, NEWS, rbx-trepanning.gemspec: Need to get the right
|
708
|
+
linecache
|
709
|
+
|
710
|
+
2011-03-12 rocky <rockyb@rubyforge.org>
|
711
|
+
|
712
|
+
* processor/command/help.rb, processor/command/help/command.txt,
|
713
|
+
processor/command/help/filename.txt,
|
714
|
+
processor/command/help/filenames.txt,
|
715
|
+
processor/command/help/location.txt: sync with rb-trepanning.
|
716
|
+
|
717
|
+
2011-03-12 rocky <rockyb@rubyforge.org>
|
718
|
+
|
719
|
+
* processor/command/help.rb, processor/command/help/command.txt,
|
720
|
+
processor/command/help/filenames.txt,
|
721
|
+
processor/command/help/syntax.txt, processor/help.rb,
|
722
|
+
test/unit/test-completion.rb: Start multi-level "help syntax"
|
723
|
+
|
724
|
+
2011-03-12 rocky <rockyb@rubyforge.org>
|
725
|
+
|
726
|
+
* processor/command/info_subcmd/files.rb: info files: iseq -> cm.
|
727
|
+
Document it.
|
728
|
+
|
729
|
+
2011-03-12 rocky <rockyb@rubyforge.org>
|
730
|
+
|
731
|
+
* processor/command/info_subcmd/files.rb: Show compiled method
|
732
|
+
status in "info files" .
|
733
|
+
|
734
|
+
2011-03-12 rocky <rockyb@rubyforge.org>
|
735
|
+
|
736
|
+
* processor/command/info_subcmd/files.rb, processor/location.rb,
|
737
|
+
processor/main.rb, processor/validate.rb: Handle more cases of
|
738
|
+
file/line breakpoints. Improve "info files" more.
|
739
|
+
|
740
|
+
2011-03-11 rocky <rockyb@rubyforge.org>
|
741
|
+
|
742
|
+
* app/method.rb, processor/command/info_subcmd/files.rb,
|
743
|
+
processor/location.rb, processor/validate.rb: Better "info file"
|
744
|
+
display. Start to handle filenames other than current one by using
|
745
|
+
LineCache saving the top compile method.
|
746
|
+
|
747
|
+
2011-03-11 rocky <rockyb@rubyforge.org>
|
748
|
+
|
749
|
+
* app/cmd_parse.kpeg, app/cmd_parser.rb,
|
750
|
+
processor/command/help/filenames.txt,
|
751
|
+
processor/command/help/location.txt,
|
752
|
+
test/unit/test-app-cmd_parser.rb: Clean up filename parsing
|
753
|
+
somewhat.
|
754
|
+
|
755
|
+
2011-03-10 rocky <rockyb@rubyforge.org>
|
756
|
+
|
757
|
+
* app/cmd_parse.rb, app/cmd_parser.rb, processor/command/help.rb,
|
758
|
+
processor/command/help/.gitignore,
|
759
|
+
processor/command/help/location.txt,
|
760
|
+
processor/command/help/syntax.txt: Start moving text help, to text
|
761
|
+
file.
|
762
|
+
|
763
|
+
2011-03-10 rocky <rockyb@rubyforge.org>
|
764
|
+
|
765
|
+
* processor/command/save.rb, processor/validate.rb,
|
766
|
+
test/unit/test-proc-validate.rb: Cutover to KPEG for breakpoints
|
767
|
+
complete. What a relief! save.rb: save debugger settings for
|
768
|
+
restart.
|
769
|
+
|
770
|
+
2011-03-10 rocky <rockyb@rubyforge.org>
|
771
|
+
|
772
|
+
* app/breakpoint.rb, app/cmd_parse.kpeg, app/cmd_parse.rb,
|
773
|
+
app/cmd_parser.rb, lib/trepanning.rb, processor/breakpoint.rb,
|
774
|
+
processor/command/break.rb, processor/command/condition.rb,
|
775
|
+
processor/command/continue.rb,
|
776
|
+
processor/command/info_subcmd/breakpoints.rb,
|
777
|
+
processor/command/tbreak.rb, processor/mock.rb,
|
778
|
+
processor/validate.rb, test/unit/cmd-helper.rb,
|
779
|
+
test/unit/test-app-cmd_parse.rb, test/unit/test-cmd-break.rb:
|
780
|
+
Towards getting breakpoint refactoring complete.
|
781
|
+
|
782
|
+
2011-03-09 rocky <rockyb@rubyforge.org>
|
783
|
+
|
784
|
+
* : commit 4e44a6fa91fa7276bc70a612d108bc561a526079 Author: rocky
|
785
|
+
<rockyb@rubyforge.org> Date: Wed Mar 9 15:27:04 2011 -0500
|
786
|
+
|
787
|
+
2011-03-08 rocky <rockyb@rubyforge.org>
|
788
|
+
|
789
|
+
* Rakefile, processor/command/info_subcmd/frame.rb: Add "info frame"
|
790
|
+
command Revise "rake cmd_parse" to use TempDir.
|
791
|
+
|
792
|
+
2011-03-07 rocky <rockyb@rubyforge.org>
|
793
|
+
|
794
|
+
* : commit 7aece7a6607d28ae8136289818d4d7507f887953 Author: rocky
|
795
|
+
<rockyb@rubyforge.org> Date: Sun Mar 6 20:34:49 2011 -0500
|
796
|
+
|
797
|
+
2011-03-05 rvm <rocky@gnu.org>
|
798
|
+
|
799
|
+
* test/unit/test-app-options.rb: Remove tempfile in unit test
|
800
|
+
|
801
|
+
2011-03-05 rvm <rocky@gnu.org>
|
802
|
+
|
803
|
+
* app/default.rb, app/options.rb, bin/trepanx, lib/trepanning.rb,
|
804
|
+
processor/command/base/submgr.rb, processor/command/restart.rb,
|
805
|
+
processor/command/set_subcmd/trace_subcmd/buffer.rb,
|
806
|
+
processor/command/set_subcmd/trace_subcmd/print.rb,
|
807
|
+
processor/load_cmds.rb: Save/restore of debugger state across a
|
808
|
+
restart finally works!
|
809
|
+
|
810
|
+
2011-03-04 rocky <rockyb@rubyforge.org>
|
811
|
+
|
812
|
+
* Rakefile, app/cmd_parse.kpeg: Sync Rakefile with rb-trepanning
|
813
|
+
|
814
|
+
2011-03-04 rocky <rockyb@rubyforge.org>
|
815
|
+
|
816
|
+
* app/cmd_parse.citrus, app/cmd_parse.kpeg, app/cmd_parser.rb:
|
817
|
+
Citrus -> KPeg: Forgot to add new files and remove old ones
|
818
|
+
|
819
|
+
2011-03-04 rocky <rockyb@rubyforge.org>
|
820
|
+
|
821
|
+
* app/cmd_parse.rb, processor/validate.rb, rbx-trepanning.gemspec,
|
822
|
+
test/unit/test-app-cmd_parse.rb: Switch from Citrus to KPeg. Thanks
|
823
|
+
Evan!
|
824
|
+
|
825
|
+
2011-03-02 rocky <rockyb@rubyforge.org>
|
826
|
+
|
827
|
+
* : commit 7fea8fe6929ad4d7ec19c956091951e521d8a556 Author: rocky
|
828
|
+
<rockyb@rubyforge.org> Date: Wed Mar 2 18:58:06 2011 -0500
|
829
|
+
|
830
|
+
2011-03-01 rvm <rocky@gnu.org>
|
831
|
+
|
832
|
+
* Rakefile, app/cmd_parse.citrus, app/cmd_parse.rb, doc/.gitignore,
|
833
|
+
doc/debugger.html, test/unit/test-app-cmd_parse.rb: Sync with
|
834
|
+
rb-trepanning: move forward in location parsing. Rakefile: add task
|
835
|
+
to remove patch residue files.
|
836
|
+
|
837
|
+
2011-03-01 rocky <rockyb@rubyforge.org>
|
838
|
+
|
839
|
+
* : commit 2831a02ef4c8e9cfad111ea703f828f3095495f0 Author: rvm
|
840
|
+
<rocky@gnu.org> Date: Mon Feb 28 07:31:01 2011 -0500
|
841
|
+
|
842
|
+
2011-02-25 rocky <rockyb@rubyforge.org>
|
843
|
+
|
844
|
+
* app/cmd_parse.citrus, app/cmd_parse.rb,
|
845
|
+
test/unit/test-app-cmd_parse.rb: Start filling out location parsing.
|
846
|
+
|
847
|
+
2011-02-25 rocky <rockyb@rubyforge.org>
|
848
|
+
|
849
|
+
* app/cmd_parse.citrus, app/cmd_parse.rb, app/method_name.citrus,
|
850
|
+
app/method_name.rb, processor/validate.rb,
|
851
|
+
test/unit/test-app-cmd_parse.rb, test/unit/test-app-method_name.rb:
|
852
|
+
method_name -> cmd_parse to allow expansion
|
853
|
+
|
854
|
+
2011-02-25 rvm <rocky@gnu.org>
|
855
|
+
|
856
|
+
* processor/command/eval.rb, test/functional/test-eval.rb: In eval?
|
857
|
+
we now also strip a leading 'return'.
|
858
|
+
|
859
|
+
2011-02-25 rocky <rockyb@rubyforge.org>
|
860
|
+
|
861
|
+
* app/method_name.rb: Use bind instead of binding for binding
|
862
|
+
variable name. I think it is less likely to be confused with
|
863
|
+
Kernel#bind
|
864
|
+
|
865
|
+
2011-02-25 rocky <rockyb@rubyforge.org>
|
866
|
+
|
867
|
+
* app/method_name.rb, app/validate.rb, lib/trepanning.rb,
|
868
|
+
processor/breakpoint.rb, processor/command/break.rb,
|
869
|
+
processor/validate.rb, test/functional/test-break-name.rb,
|
870
|
+
test/functional/test-tbreak.rb, test/unit/test-app-validate.rb,
|
871
|
+
test/unit/test-cmd-break.rb, test/unit/test-proc-validate.rb: Get
|
872
|
+
rid of the all-to-hacky # vs . notation for breakpoints. Also,
|
873
|
+
offsets are now specified with '@' rather than 'O' or 'o'. Some
|
874
|
+
other breakpoint bugs fixed.
|
875
|
+
|
876
|
+
2011-02-24 rocky <rockyb@rubyforge.org>
|
877
|
+
|
878
|
+
* : commit 778528dae8b0f322a5788d45c48507b19d340ff9 Author: rocky
|
879
|
+
<rockyb@rubyforge.org> Date: Thu Feb 24 20:50:23 2011 -0500
|
880
|
+
|
881
|
+
2011-02-23 rocky <rockyb@rubyforge.org>
|
882
|
+
|
883
|
+
* processor/command/step.rb, processor/disassemble.rb,
|
884
|
+
processor/main.rb, processor/running.rb: Add "step until"
|
885
|
+
|
886
|
+
2011-02-23 rocky <rockyb@rubyforge.org>
|
887
|
+
|
888
|
+
* app/options.rb, processor/command/alias.rb,
|
889
|
+
processor/command/exit.rb, processor/command/kill.rb,
|
890
|
+
processor/command/restart.rb, processor/command/show.rb: Call
|
891
|
+
cmdproc finalization routine on exit and restart. Mention "show
|
892
|
+
alias" in alias help.
|
893
|
+
|
894
|
+
2011-02-22 rocky <rockyb@rubyforge.org>
|
895
|
+
|
896
|
+
* app/options.rb: Update version for release.
|
897
|
+
|
898
|
+
2011-02-22 rocky <rockyb@rubyforge.org>
|
899
|
+
|
900
|
+
* processor/command/base/subsubcmd.rb,
|
901
|
+
processor/command/show_subcmd/trace_subcmd/buffer.rb,
|
902
|
+
processor/main.rb, test/unit/test-base-subsubcmd.rb: Mark stopping
|
903
|
+
boundaries in event buffer. Test setting command CMD, NAME and
|
904
|
+
PREFIX. Make main more like rb-trepanning.
|
905
|
+
|
906
|
+
2011-02-22 rocky <rockyb@rubyforge.org>
|
907
|
+
|
908
|
+
* ChangeLog, NEWS, Rakefile,
|
909
|
+
processor/command/info_subcmd/breakpoints.rb,
|
910
|
+
processor/command/show_subcmd/trace_subcmd/buffer.rb,
|
911
|
+
processor/eventbuf.rb, processor/location.rb: Now shows trace buffer
|
912
|
+
events and locations properly. How number of breakpoint hits. Get
|
913
|
+
ready for release.
|
914
|
+
|
915
|
+
2011-02-22 rocky <rockyb@rubyforge.org>
|
916
|
+
|
917
|
+
* app/breakpoint.rb, app/brkptmgr.rb, lib/trepanning.rb,
|
918
|
+
processor/breakpoint.rb, processor/main.rb, processor/stepping.rb,
|
919
|
+
test/unit/cmd-helper.rb, test/unit/test-app-brkpt.rb,
|
920
|
+
test/unit/test-cmd-finish.rb: Add finalization routine to remove
|
921
|
+
stepping and other breakpoints. Fixes the "no debugger" messages on
|
922
|
+
rake test.
|
923
|
+
|
924
|
+
2011-02-22 rocky <rockyb@rubyforge.org>
|
925
|
+
|
926
|
+
* test/functional/test-finish.rb: Adjust test check line number. In latest rubinius release line
|
927
|
+
numbers for assignment statement are better, use LHS.
|
928
|
+
|
929
|
+
2011-02-22 rocky <rockyb@rubyforge.org>
|
930
|
+
|
931
|
+
* app/breakpoint.rb, app/condition.rb, lib/trepanning.rb,
|
932
|
+
processor/command/condition.rb,
|
933
|
+
processor/command/info_subcmd/breakpoints.rb,
|
934
|
+
processor/location.rb, processor/validate.rb,
|
935
|
+
test/unit/test-app-condition.rb: Add breakpoint conditions. Not
|
936
|
+
showing # of hits right now though.
|
937
|
+
|
938
|
+
2011-02-21 rocky <rockyb@rubyforge.org>
|
939
|
+
|
940
|
+
* processor/command/source.rb: Add first use of filename completion
|
941
|
+
on "source" command
|
942
|
+
|
943
|
+
2011-02-20 rocky <rockyb@rubyforge.org>
|
944
|
+
|
945
|
+
* processor/command/backtrace.rb, processor/command/down.rb,
|
946
|
+
processor/command/up.rb: Sync with rb-trepanning
|
947
|
+
|
948
|
+
2011-02-20 rocky <rockyb@rubyforge.org>
|
949
|
+
|
950
|
+
* processor/command/frame.rb, processor/command/up.rb,
|
951
|
+
processor/frame.rb: Improve range checking on frame, up and down
|
952
|
+
commands.
|
953
|
+
|
954
|
+
2011-02-20 rocky <rockyb@rubyforge.org>
|
955
|
+
|
956
|
+
* io/input.rb: Try two kinds of Readline includes. Possibly I got it
|
957
|
+
right this time
|
958
|
+
|
959
|
+
2011-02-19 rocky <rockyb@rubyforge.org>
|
960
|
+
|
961
|
+
* : commit 5db8e7b55bce3e3738d6bb81efb643abb0a7cf91 Author: rocky
|
962
|
+
<rockyb@rubyforge.org> Date: Sat Feb 19 12:22:00 2011 -0500
|
963
|
+
|
964
|
+
2011-02-19 rocky <rockyb@rubyforge.org>
|
965
|
+
|
966
|
+
* : commit b37051946750630746f67098416e4818e1cae8ff Author: rocky
|
967
|
+
<rockyb@rubyforge.org> Date: Sat Feb 19 10:00:53 2011 -0500
|
968
|
+
|
969
|
+
2011-02-19 rocky <rockyb@rubyforge.org>
|
970
|
+
|
971
|
+
* app/eventbuffer.rb, processor/command/base/subcmd.rb,
|
972
|
+
processor/command/info_subcmd/files.rb,
|
973
|
+
processor/command/info_subcmd/line.rb,
|
974
|
+
processor/command/info_subcmd/ruby.rb,
|
975
|
+
processor/command/set_subcmd/trace_subcmd/buffer.rb,
|
976
|
+
processor/command/set_subcmd/trace_subcmd/print.rb,
|
977
|
+
processor/command/show_subcmd/alias.rb,
|
978
|
+
processor/command/show_subcmd/auto_subcmd/irb.rb,
|
979
|
+
processor/command/show_subcmd/macro.rb,
|
980
|
+
processor/command/show_subcmd/trace_subcmd/buffer.rb,
|
981
|
+
processor/command/show_subcmd/trace_subcmd/print.rb,
|
982
|
+
processor/eventbuf.rb, processor/hook.rb, processor/main.rb: Add
|
983
|
+
rudimentary event buffer save/print. Not fully functional. CMD
|
984
|
+
constant now saved automatically in subcommands. DRY some code.
|
985
|
+
|
986
|
+
2011-02-19 rocky <rockyb@rubyforge.org>
|
987
|
+
|
988
|
+
* Rakefile, processor/command/backtrace.rb,
|
989
|
+
processor/command/frame.rb, processor/command/up.rb,
|
990
|
+
processor/frame.rb: Add frame number completion. Why not?
|
991
|
+
|
992
|
+
2011-02-19 rocky <rockyb@rubyforge.org>
|
993
|
+
|
994
|
+
* processor/command/show_subcmd/alias.rb: Add completion for "show
|
995
|
+
aliases"
|
996
|
+
|
997
|
+
2011-02-18 rocky <rockyb@rubyforge.org>
|
998
|
+
|
999
|
+
* processor/command/show_subcmd/macro.rb, processor/msg.rb: show
|
1000
|
+
macro improvements: add "show macro *" and long help. Sync with
|
1001
|
+
rb-trepanning.
|
1002
|
+
|
1003
|
+
2011-02-18 rocky <rockyb@rubyforge.org>
|
1004
|
+
|
1005
|
+
* processor/command/eval.rb, processor/command/macro.rb,
|
1006
|
+
processor/command/show_subcmd/macro.rb, processor/location.rb,
|
1007
|
+
processor/main.rb, processor/msg.rb: Add eval? alias ev? to evaluate
|
1008
|
+
current source line without leading "if", "while" "elsif" Add show
|
1009
|
+
macro to see macros. Syntax highight that if desired.
|
1010
|
+
|
1011
|
+
2011-02-18 rocky <rockyb@rubyforge.org>
|
1012
|
+
|
1013
|
+
* app/complete.rb, app/frame.rb, lib/trepanning.rb,
|
1014
|
+
processor/command/base/subsubcmd.rb,
|
1015
|
+
processor/command/base/subsubmgr.rb, processor/command/complete.rb,
|
1016
|
+
processor/command/macro.rb,
|
1017
|
+
processor/command/set_subcmd/different.rb, processor/load_cmds.rb,
|
1018
|
+
processor/main.rb, test/unit/test-completion.rb,
|
1019
|
+
test/unit/test-proc-load_cmds.rb: Sync with rb-trepanning. Had
|
1020
|
+
broken completion in code refactor.
|
1021
|
+
|
1022
|
+
2011-02-18 rocky <rockyb@rubyforge.org>
|
1023
|
+
|
1024
|
+
* test/unit/test-app-complete.rb: Redo completion somewhat to be
|
1025
|
+
more general and much input line when there are abreviations less.
|
1026
|
+
|
1027
|
+
2011-02-16 rocky <rockyb@rubyforge.org>
|
1028
|
+
|
1029
|
+
* app/run.rb, interface/user.rb: Sync with rb-trepanning
|
1030
|
+
|
1031
|
+
2011-02-16 rocky <rockyb@rubyforge.org>
|
1032
|
+
|
1033
|
+
* app/default.rb, app/run.rb, interface/user.rb, io/input.rb,
|
1034
|
+
processor/load_cmds.rb, test/unit/test-app-options.rb,
|
1035
|
+
test/unit/test-completion.rb: Completion was totally borked and so
|
1036
|
+
was handling of Readline. Fix. Fix completion of aliases and test
|
1037
|
+
for that now.
|
1038
|
+
|
1039
|
+
2011-02-16 rocky <rockyb@rubyforge.org>
|
1040
|
+
|
1041
|
+
* .gemspec, Rakefile, app/options.rb, rbx-trepanning.gemspec: Work
|
1042
|
+
on packaging yet again. Steal from kpat's for good ideas.
|
1043
|
+
options.rb: Correct usage one more time. In 0.0.7.dev now
|
1044
|
+
|
1045
|
+
2011-02-15 rocky <rockyb@rubyforge.org>
|
1046
|
+
|
1047
|
+
* .gemspec: Repackage using rubinius 1.2 rather than 1.2.1
|
1048
|
+
|
1049
|
+
2011-02-15 rocky <rockyb@rubyforge.org>
|
1050
|
+
|
1051
|
+
* .gemspec, NEWS, app/options.rb: Repackage using rubinius 1.2
|
1052
|
+
rather than 1.2.1
|
1053
|
+
|
1054
|
+
2011-02-15 rocky <rockyb@rubyforge.org>
|
1055
|
+
|
1056
|
+
* ChangeLog: Update ChangeLog for release
|
1057
|
+
|
1058
|
+
2011-02-15 rocky <rockyb@rubyforge.org>
|
1059
|
+
|
1060
|
+
* .gemspec, Rakefile, app/options.rb: Get ready for 0.0.5 release
|
1061
|
+
|
1062
|
+
2011-02-15 rocky <rockyb@rubyforge.org>
|
1063
|
+
|
1064
|
+
* app/options.rb: Clean up usage text
|
1065
|
+
|
1066
|
+
2011-02-15 rocky <rockyb@rubyforge.org>
|
1067
|
+
|
1068
|
+
* : commit ab7ded01cf22e55258b02198d7d4b2e8249fc613 Author: rocky
|
1069
|
+
<rockyb@rubyforge.org> Date: Tue Feb 15 09:34:11 2011 -0500
|
1070
|
+
|
1071
|
+
2011-02-15 rocky <rockyb@rubyforge.org>
|
1072
|
+
|
1073
|
+
* bin/trepanx, processor/validate.rb: Small bugs. validate: handling
|
1074
|
+
get_an_int error msg. trepanx: option name is now highlight, not
|
1075
|
+
readline
|
1076
|
+
|
1077
|
+
2011-02-15 rocky <rockyb@rubyforge.org>
|
1078
|
+
|
1079
|
+
* .gemspec, ChangeLog, NEWS, app/options.rb, bin/trepanx,
|
1080
|
+
interface/user.rb, io/input.rb, lib/trepanning.rb: Add --readline
|
1081
|
+
and --no-readline options to trepanx .gemspec: was missing data
|
1082
|
+
directory Update NEWS in preparation for a release.
|
1083
|
+
|
1084
|
+
2011-02-14 rocky <rockyb@rubyforge.org>
|
1085
|
+
|
1086
|
+
* processor/command/macro.rb, processor/load_cmds.rb: Add macros to
|
1087
|
+
list of initial completions. Better fin+ macro example
|
1088
|
+
|
1089
|
+
2011-02-14 rocky <rockyb@rubyforge.org>
|
1090
|
+
|
1091
|
+
* .gemspec, app/method.rb, app/method_name.citrus,
|
1092
|
+
app/method_name.rb, lib/trepanning.rb, processor/breakpoint.rb,
|
1093
|
+
processor/command/break.rb, processor/command/disassemble.rb,
|
1094
|
+
processor/stepping.rb, processor/validate.rb,
|
1095
|
+
test/unit/test-proc-validate.rb: first_line_on_ip's "not found" is
|
1096
|
+
now nil for next rubinius release. Remove citrus-related code and
|
1097
|
+
Method name lookup. Will reinstate after a release with kpeg.
|
1098
|
+
Prevent breakpoint resolve! from getting in an infinite loop.
|
1099
|
+
|
1100
|
+
2011-02-14 rocky <rockyb@rubyforge.org>
|
1101
|
+
|
1102
|
+
* processor/command/macro.rb: Typo
|
1103
|
+
|
1104
|
+
2011-02-14 rocky <rockyb@rubyforge.org>
|
1105
|
+
|
1106
|
+
* processor/command/help.rb, processor/command/macro.rb,
|
1107
|
+
processor/main.rb: macro.rb: Macros are more useful now. An array of
|
1108
|
+
strings pushes additional commands on the command queue. help.rb:
|
1109
|
+
Show aliases and macros in help *. Add help for exach of these
|
1110
|
+
individually. 3
|
1111
|
+
|
1112
|
+
2011-02-13 rocky <rockyb@rubyforge.org>
|
1113
|
+
|
1114
|
+
* interface/user.rb: Remove extraneous line in saving history
|
1115
|
+
|
1116
|
+
2011-02-13 rocky <rockyb@rubyforge.org>
|
1117
|
+
|
1118
|
+
* interface/user.rb: Remove duplicate history save
|
1119
|
+
|
1120
|
+
2011-02-13 rocky <rockyb@rubyforge.org>
|
1121
|
+
|
1122
|
+
* .gemspec, app/method_name.citrus, app/method_name.rb,
|
1123
|
+
io/tcpclient.rb, processor/command/break.rb,
|
1124
|
+
processor/command/disassemble.rb, processor/validate.rb,
|
1125
|
+
test/unit/test-io-tcpclient.rb, test/unit/test-proc-validate.rb: Use
|
1126
|
+
citus to parse method names avoiding use of eval which is safer.
|
1127
|
+
Add disconnected? to tcpclient.
|
1128
|
+
|
1129
|
+
2011-02-12 rocky <rockyb@rubyforge.org>
|
1130
|
+
|
1131
|
+
* processor/command/continue.rb: Sync continue somewhat with
|
1132
|
+
rb-trepanning
|
1133
|
+
|
1134
|
+
2011-02-12 rocky <rockyb@rubyforge.org>
|
1135
|
+
|
1136
|
+
* processor/command/info_subcmd/files.rb: Add mtime and ctime.
|
1137
|
+
|
1138
|
+
2011-02-11 rocky <rockyb@rubyforge.org>
|
1139
|
+
|
1140
|
+
* test/unit/test-io-tcpclient.rb, test/unit/test-subcmd-help.rb:
|
1141
|
+
Subcommand HELP constant is set correcltly, so remove message and
|
1142
|
+
add test.
|
1143
|
+
|
1144
|
+
2011-02-11 rocky <rockyb@rubyforge.org>
|
1145
|
+
|
1146
|
+
* processor/command/info_subcmd/files.rb,
|
1147
|
+
processor/command/info_subcmd/line.rb,
|
1148
|
+
processor/command/info_subcmd/program.rb,
|
1149
|
+
processor/command/info_subcmd/variables.rb, processor/mock.rb: Clean
|
1150
|
+
up/DRY "info" standalone code
|
1151
|
+
|
1152
|
+
2011-02-11 rocky <rockyb@rubyforge.org>
|
1153
|
+
|
1154
|
+
* processor/command/info_subcmd/ruby.rb: Small change
|
1155
|
+
|
1156
|
+
2011-02-11 rocky <rockyb@rubyforge.org>
|
1157
|
+
|
1158
|
+
* processor/command/info_subcmd/rubinius.rb,
|
1159
|
+
processor/command/info_subcmd/ruby.rb: info rubinius -> info ruby.
|
1160
|
+
To be more compatible with rb-trepanning
|
1161
|
+
|
1162
|
+
2011-02-11 rocky <rockyb@rubyforge.org>
|
1163
|
+
|
1164
|
+
* processor/command/info_subcmd/rubinius.rb,
|
1165
|
+
processor/command/set_subcmd/confirm.rb,
|
1166
|
+
processor/command/show_subcmd/confirm.rb: Ad "info rubinius" akin to
|
1167
|
+
rbx -v or rbx -vv. Add gdb set/show confirm.
|
1168
|
+
|
1169
|
+
2011-02-11 rocky <rockyb@rubyforge.org>
|
1170
|
+
|
1171
|
+
* Rakefile, test/unit/test-completion.rb: Pass --verbose option to
|
1172
|
+
rake tasks properly.
|
1173
|
+
|
1174
|
+
2011-02-11 rocky <rockyb@rubyforge.org>
|
1175
|
+
|
1176
|
+
* io/input.rb, test/unit/test-completion.rb: Make sure readline
|
1177
|
+
finalize is done only once.
|
1178
|
+
|
1179
|
+
2011-02-10 rocky <rockyb@rubyforge.org>
|
1180
|
+
|
1181
|
+
* interface/user.rb, lib/trepanning.rb,
|
1182
|
+
test/integration/test-quit.rb: lib/trepanning.rb: stop-gap stop.
|
1183
|
+
Reinstate save-history.
|
1184
|
+
|
1185
|
+
2011-02-10 rocky <rockyb@rubyforge.org>
|
1186
|
+
|
1187
|
+
* test/unit/test-completion.rb: Hacky way to make sure we turn off
|
1188
|
+
finalize and Readline.
|
1189
|
+
|
1190
|
+
2011-02-10 rocky <rockyb@rubyforge.org>
|
1191
|
+
|
1192
|
+
* : commit 715d8afd29618ccd4eac05fdb1ad7557c622a2b7 Author: rocky
|
1193
|
+
<rockyb@rubyforge.org> Date: Thu Feb 10 11:42:20 2011 -0500
|
1194
|
+
|
1195
|
+
2011-02-09 rocky <rockyb@rubyforge.org>
|
1196
|
+
|
1197
|
+
* processor/command/info_subcmd/line.rb,
|
1198
|
+
processor/command/info_subcmd/program.rb: Start a gdb "info line"
|
1199
|
+
command.
|
1200
|
+
|
1201
|
+
2011-02-09 rocky <rockyb@rubyforge.org>
|
1202
|
+
|
1203
|
+
* processor/command/show_subcmd/basename.rb,
|
1204
|
+
processor/command/show_subcmd/max.rb, processor/default.rb,
|
1205
|
+
processor/validate.rb, test/data/quit2.cmd, test/data/quit2.right,
|
1206
|
+
test/integration/helper.rb, test/integration/test-quit.rb: Add
|
1207
|
+
set/show confirm
|
1208
|
+
|
1209
|
+
2011-02-09 rocky <rockyb@rubyforge.org>
|
1210
|
+
|
1211
|
+
* lib/trepanning.rb, processor/command/irb.rb: Change completion
|
1212
|
+
proc on entering and leaving irb
|
1213
|
+
|
1214
|
+
2011-02-09 rocky <rockyb@rubyforge.org>
|
1215
|
+
|
1216
|
+
* processor/command/eval.rb: Sync with rb-trepanning
|
1217
|
+
|
1218
|
+
2011-02-08 rocky <rockyb@rubyforge.org>
|
1219
|
+
|
1220
|
+
* processor/command/eval.rb, processor/location.rb: eval without a
|
1221
|
+
string eval's the current source code. Update and expand 'eval' help
|
1222
|
+
text.
|
1223
|
+
|
1224
|
+
2011-02-08 rocky <rockyb@rubyforge.org>
|
1225
|
+
|
1226
|
+
* interface/base_intf.rb, interface/user.rb, io/input.rb,
|
1227
|
+
lib/trepanning.rb, processor/default.rb, processor/main.rb: Save
|
1228
|
+
debugger commands in history now. Move history saving code from
|
1229
|
+
debugger into user interface. Save history file on exit in
|
1230
|
+
finalization routine.
|
1231
|
+
|
1232
|
+
2011-02-06 rocky <rockyb@rubyforge.org>
|
1233
|
+
|
1234
|
+
* processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
|
1235
|
+
processor/load_cmds.rb, sample/rocky-trepanx-colors.rb,
|
1236
|
+
test/unit/test-base-cmd.rb, test/unit/test-completion.rb: Fix bug in
|
1237
|
+
completing an initial list of commands (null string '').
|
1238
|
+
|
1239
|
+
2011-02-06 rocky <rockyb@rubyforge.org>
|
1240
|
+
|
1241
|
+
* processor/command/info_subcmd/file.rb,
|
1242
|
+
processor/command/info_subcmd/files.rb: info file -> info files to
|
1243
|
+
match gdb better. Dynamic list completion in info files. Usual
|
1244
|
+
cleanups
|
1245
|
+
|
1246
|
+
2011-02-06 rocky <rockyb@rubyforge.org>
|
1247
|
+
|
1248
|
+
* processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
|
1249
|
+
test/unit/test-base-subcmd.rb: Allow for more dynamic setting of
|
1250
|
+
completion array. Some other minor corrections. Sync with
|
1251
|
+
rb-trepanning.
|
1252
|
+
|
1253
|
+
2011-02-05 rocky <rockyb@rubyforge.org>
|
1254
|
+
|
1255
|
+
* io/tcpfns.rb, io/tcpserver.rb, lib/trepanning.rb,
|
1256
|
+
test/unit/test-completion.rb: Syn with rb-trepanning
|
1257
|
+
|
1258
|
+
2011-02-05 rocky <rockyb@rubyforge.org>
|
1259
|
+
|
1260
|
+
* lib/trepanning.rb: Wrong default variable name in completion
|
1261
|
+
|
1262
|
+
2011-02-05 rocky <rockyb@rubyforge.org>
|
1263
|
+
|
1264
|
+
* lib/trepanning.rb: Add comments to completion - it is a little
|
1265
|
+
subtle
|
1266
|
+
|
1267
|
+
2011-02-05 rocky <rockyb@rubyforge.org>
|
1268
|
+
|
1269
|
+
* lib/trepanning.rb, processor/load_cmds.rb,
|
1270
|
+
test/unit/test-completion.rb: Add space to completion when last
|
1271
|
+
token is complete. Break completion into its own routine and we now
|
1272
|
+
start testing that.
|
1273
|
+
|
1274
|
+
2011-02-04 rocky <rockyb@rubyforge.org>
|
1275
|
+
|
1276
|
+
* README.textile: Nope ```ruby does not work for README on gitub :-/
|
1277
|
+
|
1278
|
+
2011-02-04 rocky <rockyb@rubyforge.org>
|
1279
|
+
|
1280
|
+
* README.textile: Nope ```ruby does not work for README on gitub :-/
|
1281
|
+
|
1282
|
+
2011-02-04 rocky <rockyb@rubyforge.org>
|
1283
|
+
|
1284
|
+
* README.textile: Nope ```ruby does not work for README on gitub :-/
|
1285
|
+
|
1286
|
+
2011-02-04 rocky <rockyb@rubyforge.org>
|
1287
|
+
|
1288
|
+
* README.textile: Nope ```ruby does not work for README on gitub :-/
|
1289
|
+
|
1290
|
+
2011-02-04 rocky <rockyb@rubyforge.org>
|
1291
|
+
|
1292
|
+
* README.textile, io/input.rb, lib/trepanning.rb,
|
1293
|
+
processor/command/complete.rb, processor/command/set_subcmd/max.rb,
|
1294
|
+
processor/load_cmds.rb: Back off of trying to complete anything
|
1295
|
+
other than the last token in completion. io/input.rb Remove
|
1296
|
+
Readline.rl_line_buffer= READE.textile: cooler code formatting.
|
1297
|
+
|
1298
|
+
2011-02-04 rocky <rockyb@rubyforge.org>
|
1299
|
+
|
1300
|
+
* io/input.rb, processor/command/base/subcmd.rb: input.rb: add
|
1301
|
+
termination routine for readline on interrupt subcmd.rb: add
|
1302
|
+
completion for set boolean (on/off).
|
1303
|
+
|
1304
|
+
2011-02-04 rocky <rockyb@rubyforge.org>
|
1305
|
+
|
1306
|
+
* interface/user.rb, io/input.rb, processor/command/help.rb,
|
1307
|
+
processor/command/set_subcmd/max.rb, processor/load_cmds.rb: More
|
1308
|
+
completion work: for help and help command <complete>. Bug in not
|
1309
|
+
setting prompt in readline fixed.
|
1310
|
+
|
1311
|
+
2011-02-04 rocky <rockyb@rubyforge.org>
|
1312
|
+
|
1313
|
+
* : commit 410583720fdef4c8156ca3f59b2007ac5cb72f31 Author: rocky
|
1314
|
+
<rockyb@rubyforge.org> Date: Fri Feb 4 12:12:18 2011 -0500
|
1315
|
+
|
1316
|
+
2011-02-04 rocky <rockyb@rubyforge.org>
|
1317
|
+
|
1318
|
+
* processor/command/base/subsubmgr.rb,
|
1319
|
+
processor/command/set_subcmd/max.rb, processor/load_cmds.rb,
|
1320
|
+
processor/location.rb: Inch forward in handling sub-subcommand
|
1321
|
+
completion.
|
1322
|
+
|
1323
|
+
2011-02-03 rocky <rockyb@rubyforge.org>
|
1324
|
+
|
1325
|
+
* Rakefile, app/util.rb, processor/command/base/cmd.rb,
|
1326
|
+
processor/command/base/submgr.rb, processor/command/help.rb,
|
1327
|
+
processor/command/show.rb, processor/command/source.rb,
|
1328
|
+
processor/load_cmds.rb, test/unit/test-app-util.rb,
|
1329
|
+
test/unit/test-cmd-help.rb: Sync with rb-trepanning. Adding more
|
1330
|
+
completion help. Running check: tasks. DRYing code.
|
1331
|
+
|
1332
|
+
2011-02-03 rocky <rockyb@rubyforge.org>
|
1333
|
+
|
1334
|
+
* interface/user.rb, io/input.rb, io/tcpserver.rb,
|
1335
|
+
lib/trepanning.rb, processor/command/base/submgr.rb,
|
1336
|
+
processor/load_cmds.rb: Completion now using rb-readline.
|
1337
|
+
|
1338
|
+
2011-02-02 rocky <rockyb@rubyforge.org>
|
1339
|
+
|
1340
|
+
* processor/command/base/submgr.rb,
|
1341
|
+
processor/command/show_subcmd/auto.rb, processor/load_cmds.rb,
|
1342
|
+
test/unit/test-base-submgr.rb, test/unit/test-proc-load_cmds.rb:
|
1343
|
+
More work on completion: handle completing subcommands
|
1344
|
+
|
1345
|
+
2011-02-02 rocky <rockyb@rubyforge.org>
|
1346
|
+
|
1347
|
+
* processor/command/disassemble.rb, processor/disassemble.rb: Allow
|
1348
|
+
unlimited number of disassemble args.
|
1349
|
+
|
1350
|
+
2011-02-02 rocky <rockyb@rubyforge.org>
|
1351
|
+
|
1352
|
+
* processor/command/base/submgr.rb, processor/load_cmds.rb: Avoid
|
1353
|
+
using eval to instantiate commands and subcommands.
|
1354
|
+
|
1355
|
+
2011-02-02 rocky <rockyb@rubyforge.org>
|
1356
|
+
|
1357
|
+
* : commit dc7e7e7d8c96d8119bf32b03a77265b305179e08 Author: rocky
|
1358
|
+
<rockyb@rubyforge.org> Date: Wed Feb 2 03:39:48 2011 -0500
|
1359
|
+
|
1360
|
+
2011-02-01 rocky <rockyb@rubyforge.org>
|
1361
|
+
|
1362
|
+
* app/options.rb, processor/command/disassemble.rb: Allow
|
1363
|
+
disassembly of a single line.
|
1364
|
+
|
1365
|
+
2011-02-01 rocky <rockyb@rubyforge.org>
|
1366
|
+
|
1367
|
+
* ChangeLog: Update ChangeLog of 0.0.4
|
1368
|
+
|
1369
|
+
2011-02-01 rocky <rockyb@rubyforge.org>
|
1370
|
+
|
1371
|
+
* NEWS, app/options.rb: Get ready for 0.0.4 release
|
1372
|
+
|
1373
|
+
2011-02-01 rocky <rockyb@rubyforge.org>
|
1374
|
+
|
1375
|
+
* processor/msg.rb, sample/list-terminal-colors.rb,
|
1376
|
+
sample/rocky-trepanx-colors.rb: Change error messages from underline
|
1377
|
+
to italic. Sync with rb-trepanning.
|
1378
|
+
|
1379
|
+
2011-01-30 rocky <rockyb@rubyforge.org>
|
1380
|
+
|
1381
|
+
* processor/command/set_subcmd/hidelevel.rb,
|
1382
|
+
processor/command/set_subcmd/kernelstep.rb,
|
1383
|
+
processor/command/set_subcmd/trace.rb: Minor cleanup.
|
1384
|
+
|
1385
|
+
2011-01-28 rocky <rockyb@rubyforge.org>
|
1386
|
+
|
1387
|
+
* app/options.rb, lib/trepanning.rb,
|
1388
|
+
processor/command/disassemble.rb, processor/command/list.rb,
|
1389
|
+
processor/command/set_subcmd/highlight.rb,
|
1390
|
+
processor/command/set_subcmd/terminal.rb,
|
1391
|
+
processor/command/show_subcmd/highlight.rb,
|
1392
|
+
processor/command/show_subcmd/terminal.rb, processor/default.rb,
|
1393
|
+
processor/disassemble.rb, processor/location.rb, processor/main.rb,
|
1394
|
+
processor/msg.rb: set/show terminal -> set/show highlight
|
1395
|
+
|
1396
|
+
2011-01-28 rocky <rockyb@rubyforge.org>
|
1397
|
+
|
1398
|
+
* : Add debugger command syntax help.
|
1399
|
+
|
1400
|
+
2011-01-28 rocky <rockyb@rubyforge.org>
|
1401
|
+
|
1402
|
+
* : I hate conflicted merges
|
1403
|
+
|
1404
|
+
2011-01-24 rocky <rockyb@rubyforge.org>
|
1405
|
+
|
1406
|
+
* processor/msg.rb: Error messages are underlined when in term mode.
|
1407
|
+
|
1408
|
+
2011-01-24 rocky <rockyb@rubyforge.org>
|
1409
|
+
|
1410
|
+
* interface/base_intf.rb, processor/command/help.rb,
|
1411
|
+
processor/main.rb: main.rb: add command queuing and splitting via
|
1412
|
+
;;. help.rb: document complex debugger command syntax. base_intf.rb:
|
1413
|
+
remove ansi_term. Not used here.
|
1414
|
+
|
1415
|
+
2011-01-24 rocky <rockyb@rubyforge.org>
|
1416
|
+
|
1417
|
+
* processor/command/complete.rb: Rudimentary gdb "complete" commnd.
|
1418
|
+
|
1419
|
+
2011-01-24 rocky <rockyb@rubyforge.org>
|
1420
|
+
|
1421
|
+
* app/options.rb, processor/command/help.rb,
|
1422
|
+
processor/command/show_subcmd/version.rb,
|
1423
|
+
processor/command/source.rb: A little more like gdb: add "show
|
1424
|
+
version" and "help all".
|
1425
|
+
|
1426
|
+
2011-01-23 rocky <rockyb@rubyforge.org>
|
1427
|
+
|
1428
|
+
* processor/command/backtrace.rb: More compatible with gdb's
|
1429
|
+
backtrace. Expand help text.
|
1430
|
+
|
1431
|
+
2011-01-23 rocky <rockyb@rubyforge.org>
|
1432
|
+
|
1433
|
+
* processor/command/list.rb: Don't truncate list output.
|
1434
|
+
|
1435
|
+
2011-01-23 rocky <rockyb@rubyforge.org>
|
1436
|
+
|
1437
|
+
* app/display.rb, lib/trepanning.rb, processor/command/display.rb,
|
1438
|
+
processor/command/undisplay.rb, processor/display.rb,
|
1439
|
+
processor/main.rb: Add display expressions. It works, although the
|
1440
|
+
mocks and standalone code doesn't.
|
1441
|
+
|
1442
|
+
2011-01-23 rocky <rockyb@rubyforge.org>
|
1443
|
+
|
1444
|
+
* sample/rocky-trepanx-colors.rb: Sample file color tweaks
|
1445
|
+
|
1446
|
+
2011-01-22 rocky <rockyb@rubyforge.org>
|
1447
|
+
|
1448
|
+
* interface/base_intf.rb, processor/command/base/cmd.rb,
|
1449
|
+
processor/command/disassemble.rb, processor/command/eval.rb,
|
1450
|
+
processor/command/help.rb,
|
1451
|
+
processor/command/info_subcmd/breakpoints.rb,
|
1452
|
+
processor/command/info_subcmd/variables.rb,
|
1453
|
+
processor/command/list.rb, processor/command/pr.rb,
|
1454
|
+
processor/command/ps.rb, processor/disassemble.rb,
|
1455
|
+
processor/mock.rb, processor/msg.rb, sample/.gitignore,
|
1456
|
+
sample/list-terminal-colors.rb, test/unit/cmd-helper.rb,
|
1457
|
+
test/unit/test-base-subcmd.rb: Add section command - in terminal
|
1458
|
+
mode it makes the text bold. Add option hash to msg, ermmsg, etc.
|
1459
|
+
Only option right now is to allow unlimited (not truncated) text.
|
1460
|
+
|
1461
|
+
2011-01-22 rocky <rockyb@rubyforge.org>
|
1462
|
+
|
1463
|
+
* app/llvm.rb, app/rbx-llvm.rb, processor/command/disassemble.rb,
|
1464
|
+
processor/disassemble.rb: Start to DRY CodeRay scanner for rubinius
|
1465
|
+
llvm.
|
1466
|
+
|
1467
|
+
2011-01-22 rocky <rockyb@rubyforge.org>
|
1468
|
+
|
1469
|
+
* app/llvm.rb: syntax highlighting improvements for strings with
|
1470
|
+
embeded ", immediates, etc.
|
1471
|
+
|
1472
|
+
2011-01-22 rocky <rockyb@rubyforge.org>
|
1473
|
+
|
1474
|
+
* app/llvm.rb, sample/rocky-trepanx-colors.rb: More complete
|
1475
|
+
Rubinius LLVM parsing.
|
1476
|
+
|
1477
|
+
2011-01-22 rocky <rockyb@rubyforge.org>
|
1478
|
+
|
1479
|
+
* app/iseq.rb, app/llvm.rb, processor/command/disassemble.rb,
|
1480
|
+
processor/disassemble.rb: Add syntax coloring of disassembly via
|
1481
|
+
CodeRay. llvm.rb: our custom LLVM scanner.
|
1482
|
+
|
1483
|
+
2011-01-21 rocky <rockyb@rubyforge.org>
|
1484
|
+
|
1485
|
+
* : commit 91a86c4e17ff787c6e2382636f68db5e7e751df4 Author: rocky
|
1486
|
+
<rockyb@rubyforge.org> Date: Fri Jan 21 20:35:51 2011 -0500
|
1487
|
+
|
1488
|
+
2011-01-21 rocky <rockyb@rubyforge.org>
|
1489
|
+
|
1490
|
+
* app/breakpoint.rb, app/brkptmgr.rb,
|
1491
|
+
test/unit/test-app-brkptmgr.rb: BreakpointMgr ->
|
1492
|
+
Trepan::BreakpointMgr
|
1493
|
+
|
1494
|
+
2011-01-21 rocky <rockyb@rubyforge.org>
|
1495
|
+
|
1496
|
+
* app/breakpoint.rb, app/brkptmgr.rb, lib/trepanning.rb,
|
1497
|
+
processor/command/nexti.rb, processor/stepping.rb,
|
1498
|
+
test/unit/test-app-brkpt.rb, test/unit/test-app-brkptmgr.rb:
|
1499
|
+
Trepanning::Breakpoint -> Trepan::Breakpont
|
1500
|
+
|
1501
|
+
2011-01-21 rocky <rockyb@rubyforge.org>
|
1502
|
+
|
1503
|
+
* app/iseq.rb: Trepan::ISeq needs only to be a module, not a class.
|
1504
|
+
|
1505
|
+
2011-01-21 rocky <rockyb@rubyforge.org>
|
1506
|
+
|
1507
|
+
* app/default.rb: It *is* already large
|
1508
|
+
|
1509
|
+
2011-01-21 rocky <rockyb@rubyforge.org>
|
1510
|
+
|
1511
|
+
* app/brkptmgr.rb, app/default.rb, app/options.rb, io/tcpserver.rb,
|
1512
|
+
lib/trepanning.rb, processor/command/server.rb,
|
1513
|
+
processor/command/source.rb, processor/default.rb,
|
1514
|
+
processor/mock.rb, test/unit/mock-helper.rb,
|
1515
|
+
test/unit/test-app-options.rb: Trepanning module -> Trepanning class
|
1516
|
+
singleton for app/default.rb
|
1517
|
+
|
1518
|
+
2011-01-21 rocky <rockyb@rubyforge.org>
|
1519
|
+
|
1520
|
+
* .gemspec, Rakefile, app/options.rb, bin/trepanx,
|
1521
|
+
test/unit/test-app-options.rb: Trepanning module -> Trepan class
|
1522
|
+
singleton methods for app/options.rb
|
1523
|
+
|
1524
|
+
2011-01-21 rocky <rockyb@rubyforge.org>
|
1525
|
+
|
1526
|
+
* app/iseq.rb, processor/disassemble.rb, processor/stepping.rb,
|
1527
|
+
test/unit/test-app-iseq.rb: Start to remove Trepanning module
|
1528
|
+
replacing it with Trepan singleton methods.
|
1529
|
+
|
1530
|
+
2011-01-18 rocky <rockyb@rubyforge.org>
|
1531
|
+
|
1532
|
+
* processor/location.rb: Don't truncate source test in
|
1533
|
+
print_location
|
1534
|
+
|
1535
|
+
2011-01-18 rocky <rockyb@rubyforge.org>
|
1536
|
+
|
1537
|
+
* processor/command/base/subcmd.rb,
|
1538
|
+
processor/command/info_subcmd/breakpoints.rb,
|
1539
|
+
processor/command/info_subcmd/file.rb,
|
1540
|
+
processor/command/info_subcmd/method.rb,
|
1541
|
+
processor/command/info_subcmd/program.rb,
|
1542
|
+
processor/command/info_subcmd/variables.rb,
|
1543
|
+
processor/command/set_subcmd/auto.rb,
|
1544
|
+
processor/command/set_subcmd/basename.rb,
|
1545
|
+
processor/command/set_subcmd/debug.rb,
|
1546
|
+
processor/command/set_subcmd/different.rb,
|
1547
|
+
processor/command/set_subcmd/hidelevel.rb,
|
1548
|
+
processor/command/set_subcmd/kernelstep.rb,
|
1549
|
+
processor/command/set_subcmd/max.rb,
|
1550
|
+
processor/command/set_subcmd/substitute.rb,
|
1551
|
+
processor/command/set_subcmd/terminal.rb,
|
1552
|
+
processor/command/set_subcmd/trace.rb,
|
1553
|
+
processor/command/show_subcmd/alias.rb,
|
1554
|
+
processor/command/show_subcmd/args.rb,
|
1555
|
+
processor/command/show_subcmd/auto.rb,
|
1556
|
+
processor/command/show_subcmd/basename.rb,
|
1557
|
+
processor/command/show_subcmd/debug.rb,
|
1558
|
+
processor/command/show_subcmd/different.rb,
|
1559
|
+
processor/command/show_subcmd/hidelevel.rb,
|
1560
|
+
processor/command/show_subcmd/kernelstep.rb,
|
1561
|
+
processor/command/show_subcmd/max.rb,
|
1562
|
+
processor/command/show_subcmd/terminal.rb,
|
1563
|
+
processor/command/show_subcmd/trace.rb: Use set_name_prefix to DRY
|
1564
|
+
setting class NAME and PREFIX inside command class.
|
1565
|
+
|
1566
|
+
2011-01-18 rocky <rockyb@rubyforge.org>
|
1567
|
+
|
1568
|
+
* processor/command/set_subcmd/terminal.rb: Add 'set terminal reset'
|
1569
|
+
to force redoing syntax highlight.
|
1570
|
+
|
1571
|
+
2011-01-18 rocky <rockyb@rubyforge.org>
|
1572
|
+
|
1573
|
+
* app/util.rb, processor/command/list.rb,
|
1574
|
+
processor/command/set_subcmd/max_subcmd/string.rb: Allow disabling
|
1575
|
+
max string which is what we do in listing. Default value is no
|
1576
|
+
longer the same as the minimum value. Revise and expand "help max
|
1577
|
+
string".
|
1578
|
+
|
1579
|
+
2011-01-18 rocky <rockyb@rubyforge.org>
|
1580
|
+
|
1581
|
+
* sample/list-terminal-colors.rb: Add Ruby program to list and show
|
1582
|
+
default Term::ANSIColor names, colors and values.
|
1583
|
+
|
1584
|
+
2011-01-17 rocky <rockyb@rubyforge.org>
|
1585
|
+
|
1586
|
+
* sample/rocky-dot-trepanxrc: Until I find the bug, turn off syntax
|
1587
|
+
highlighting
|
1588
|
+
|
1589
|
+
2011-01-17 rocky <rockyb@rubyforge.org>
|
1590
|
+
|
1591
|
+
* .gemspec, sample/rocky-dot-trepanxrc,
|
1592
|
+
sample/rocky-trepanx-colors.rb: Show how to customize syntax
|
1593
|
+
highlighthing and give the debugger profile I use.
|
1594
|
+
|
1595
|
+
2011-01-17 rocky <rockyb@rubyforge.org>
|
1596
|
+
|
1597
|
+
* test/unit/test-io-tcpserver.rb: Fix unit test?
|
1598
|
+
|
1599
|
+
2011-01-17 rocky <rockyb@rubyforge.org>
|
1600
|
+
|
1601
|
+
* .gemspec: Change linecache required version number to make sure we
|
1602
|
+
pick up syntax highlighting
|
1603
|
+
|
1604
|
+
2011-01-17 rocky <rockyb@rubyforge.org>
|
1605
|
+
|
1606
|
+
* .gemspec, processor/command/set_subcmd/basename.rb,
|
1607
|
+
processor/command/set_subcmd/terminal.rb,
|
1608
|
+
processor/command/show_subcmd/auto.rb,
|
1609
|
+
processor/command/show_subcmd/basename.rb,
|
1610
|
+
processor/command/show_subcmd/hidelevel.rb,
|
1611
|
+
processor/command/show_subcmd/kernelstep.rb,
|
1612
|
+
processor/command/show_subcmd/terminal.rb,
|
1613
|
+
processor/command/show_subcmd/trace.rb, processor/main.rb,
|
1614
|
+
test/unit/test-cmd-source.rb: Add ability to turn on and off
|
1615
|
+
terminal highlighting with "set/show terminal"
|
1616
|
+
|
1617
|
+
2011-01-17 rocky <rockyb@rubyforge.org>
|
1618
|
+
|
1619
|
+
* lib/trepanning.rb, processor/command/show_subcmd/max.rb,
|
1620
|
+
processor/command/show_subcmd/trace.rb, processor/default.rb:
|
1621
|
+
Prepare for adding terminal command. Remove more of highlight from
|
1622
|
+
reference debugger.
|
1623
|
+
|
1624
|
+
2011-01-17 rocky <rockyb@rubyforge.org>
|
1625
|
+
|
1626
|
+
* processor/location.rb: Update copyright
|
1627
|
+
|
1628
|
+
2011-01-17 rocky <rockyb@rubyforge.org>
|
1629
|
+
|
1630
|
+
* app/options.rb, bin/trepanx, lib/trepanning.rb,
|
1631
|
+
processor/command/list.rb, processor/location.rb: Start using syntax
|
1632
|
+
highlighting for source via linecache. Add --terminal option. More
|
1633
|
+
work is needed.
|
1634
|
+
|
1635
|
+
2011-01-16 rocky <rockyb@rubyforge.org>
|
1636
|
+
|
1637
|
+
* processor/command/source.rb: Add unit test source options. Fix bug
|
1638
|
+
in source option processing.
|
1639
|
+
|
1640
|
+
2011-01-13 rocky <rockyb@rubyforge.org>
|
1641
|
+
|
1642
|
+
* processor/command/server.rb: Command to set server interface
|
1643
|
+
|
1644
|
+
2011-01-13 rocky <rockyb@rubyforge.org>
|
1645
|
+
|
1646
|
+
* processor/command/source.rb: Sync with rb-trepanning
|
1647
|
+
|
1648
|
+
2011-01-13 rocky <rockyb@rubyforge.org>
|
1649
|
+
|
1650
|
+
* app/client.rb, app/default.rb, app/options.rb,
|
1651
|
+
interface/base_intf.rb, processor/command/source.rb: server.rb: Add
|
1652
|
+
command to go server mode. source.rb: use optparse to parse options.
|
1653
|
+
client.rb: handle user EOF. default.rb: DRY host/port options.
|
1654
|
+
base_intf.rb: close() guards against uninitialized I/O.
|
1655
|
+
|
1656
|
+
2011-01-12 rocky <rockyb@rubyforge.org>
|
1657
|
+
|
1658
|
+
* interface/server.rb, io/tcpserver.rb: Small changes
|
1659
|
+
|
1660
|
+
2011-01-11 rocky <rockyb@rubyforge.org>
|
1661
|
+
|
1662
|
+
* app/options.rb, bin/trepanx, io/tcpclient.rb, lib/trepanning.rb,
|
1663
|
+
processor/main.rb, test/unit/test-io-tcpclient.rb: Sync with
|
1664
|
+
rb-trepanning. Small changes mostly.
|
1665
|
+
|
1666
|
+
2011-01-09 rocky <rockyb@rubyforge.org>
|
1667
|
+
|
1668
|
+
* app/client.rb, app/default.rb, bin/trepanx, interface/server.rb,
|
1669
|
+
lib/trepanning.rb: Add trepanx --port and --host options and make
|
1670
|
+
sure these get passed through.
|
1671
|
+
|
1672
|
+
2011-01-09 rocky <rockyb@rubyforge.org>
|
1673
|
+
|
1674
|
+
* app/default.rb, app/options.rb, io/tcpserver.rb,
|
1675
|
+
test/data/fname-with-blank.right, test/data/quit.right,
|
1676
|
+
test/integration/test-fname-with-blank.rb,
|
1677
|
+
test/integration/test-inline-call.rb, test/integration/test-quit.rb:
|
1678
|
+
Previous change removed some bugs which changed integration-test
|
1679
|
+
output. Start adding --port and --host options for remote debugging.
|
1680
|
+
|
1681
|
+
2011-01-09 rocky <rockyb@rubyforge.org>
|
1682
|
+
|
1683
|
+
* ChangeLog, test/data/inline-call.right,
|
1684
|
+
test/example/gcd-inline-call.rb, test/example/gcd-server.rb,
|
1685
|
+
test/example/gcd.rb, test/example/inline-call.rb,
|
1686
|
+
test/integration/helper.rb, test/integration/test-inline-call.rb:
|
1687
|
+
Integration test for explict call to debugger in Ruby program.
|
1688
|
+
|
1689
|
+
2011-01-09 rocky <rockyb@rubyforge.org>
|
1690
|
+
|
1691
|
+
* lib/trepanning.rb, processor/command/directory.rb,
|
1692
|
+
test/data/inline-call.cmd, test/example/gcd-inline-call.rb,
|
1693
|
+
test/example/gcd-server.rb, test/example/gcd-xx.rb,
|
1694
|
+
test/example/gcd1.rb: A number of small enhancements and little bug
|
1695
|
+
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
|
1696
|
+
tuple directory.rb: Expand help string
|
1697
|
+
example/gcd-*.rb: Start examples of above changes. No integration
|
1698
|
+
tests yet :-(
|
1699
|
+
|
1700
|
+
2011-01-09 rocky <rockyb@rubyforge.org>
|
1701
|
+
|
1702
|
+
* app/client.rb, interface/base_intf.rb, interface/client.rb,
|
1703
|
+
interface/comcodes.rb, interface/server.rb, io/tcpserver.rb,
|
1704
|
+
processor/command/exit.rb, processor/main.rb: Remote debugging
|
1705
|
+
minimally works.
|
1706
|
+
|
1707
|
+
2011-01-08 rocky <rockyb@rubyforge.org>
|
1708
|
+
|
1709
|
+
* app/client.rb, app/default.rb, app/options.rb, bin/trepanx,
|
1710
|
+
interface/base_intf.rb, interface/client.rb, interface/comcodes.rb,
|
1711
|
+
interface/server.rb, interface/user.rb, io/tcpserver.rb,
|
1712
|
+
lib/trepanning.rb, processor/command/continue.rb,
|
1713
|
+
processor/main.rb, test/unit/test-app-options.rb: First hint that
|
1714
|
+
remote debugging will work someday. options.rb, default.rb: Add
|
1715
|
+
--client and --server options client.rb: front-end client read loop
|
1716
|
+
continue.rb: fix docstring
|
1717
|
+
|
1718
|
+
2011-01-08 rocky <rockyb@rubyforge.org>
|
1719
|
+
|
1720
|
+
* .gemspec, app/default.rb, app/options.rb, lib/trepanning.rb: Add
|
1721
|
+
--server option and remove duplicate version number.
|
1722
|
+
|
1723
|
+
2011-01-08 rocky <rockyb@rubyforge.org>
|
1724
|
+
|
1725
|
+
* interface/client.rb, interface/server.rb, interface/user.rb,
|
1726
|
+
io/tcpserver.rb, test/unit/test-io-tcp.rb,
|
1727
|
+
test/unit/test-io-tcpclient.rb, test/unit/test-io-tcpserver.rb:
|
1728
|
+
Start client interface. Test TCP server/client pair together.
|
1729
|
+
|
1730
|
+
2011-01-08 rocky <rockyb@rubyforge.org>
|
1731
|
+
|
1732
|
+
* io/tcpclient.rb, test/unit/test-io-tcpclient.rb,
|
1733
|
+
test/unit/test-io-tcpserver.rb: Add rudimentary TCP client-side I/O.
|
1734
|
+
Have neither tested combo, nor higher-level interface.
|
1735
|
+
|
1736
|
+
2011-01-08 rocky <rockyb@rubyforge.org>
|
1737
|
+
|
1738
|
+
* : commit 4022a1fae34aff4202f7edd7e76a85f5285dd146 Author: rocky
|
1739
|
+
<rockyb@rubyforge.org> Date: Sat Jan 8 08:23:48 2011 -0500
|
1740
|
+
|
1741
|
+
2011-01-01 rocky <rockyb@rubyforge.org>
|
1742
|
+
|
1743
|
+
* ChangeLog, NEWS, lib/trepanning.rb: Get ready for release 0.0.3
|
1744
|
+
|
1745
|
+
2010-12-30 brainopia <ravwar@gmail.com>
|
1746
|
+
|
1747
|
+
* processor/command/up.rb: Remove unneeded require with explicit
|
1748
|
+
location
|
1749
|
+
|
1750
|
+
2010-12-28 rocky <rockyb@rubyforge.org>
|
1751
|
+
|
1752
|
+
* test/unit/cmd-helper.rb, test/unit/mock-helper.rb,
|
1753
|
+
test/unit/test-cmd-alias.rb, test/unit/test-cmd-break.rb,
|
1754
|
+
test/unit/test-cmd-exit.rb, test/unit/test-cmd-finish.rb,
|
1755
|
+
test/unit/test-cmd-help.rb, test/unit/test-cmd-kill.rb,
|
1756
|
+
test/unit/test-cmd-step.rb, test/unit/test-proc-eval.rb,
|
1757
|
+
test/unit/test-proc-main.rb: DRY code just a little more.
|
1758
|
+
|
1759
|
+
2010-12-27 rocky <rockyb@rubyforge.org>
|
1760
|
+
|
1761
|
+
* processor/command/list.rb: list.rb: help text corrections.
|
1762
|
+
|
1763
|
+
2010-12-27 rocky <rockyb@rubyforge.org>
|
1764
|
+
|
1765
|
+
* processor/command/finish.rb, processor/command/step.rb,
|
1766
|
+
processor/main.rb, processor/running.rb: Add finish+ to step one in
|
1767
|
+
calling method rather than stop before method return.
|
1768
|
+
|
1769
|
+
2010-12-27 rocky <rockyb@rubyforge.org>
|
1770
|
+
|
1771
|
+
* processor/command/finish.rb, processor/command/step.rb,
|
1772
|
+
processor/stepping.rb, test/unit/test-cmd-finish.rb,
|
1773
|
+
test/unit/test-cmd-step.rb, test/unit/test-proc-location.rb:
|
1774
|
+
step.rb: Add "step into" "step over" and "step out" as alternates
|
1775
|
+
for "step", "next", and "finish" Add standalone and unit tests for
|
1776
|
+
step and finish.
|
1777
|
+
|
1778
|
+
2010-12-26 rocky <rockyb@rubyforge.org>
|
1779
|
+
|
1780
|
+
* processor/stepping.rb, test/integration/helper.rb,
|
1781
|
+
test/integration/test-quit.rb: stepping.rb: Address another bug in
|
1782
|
+
stepping from the begging of a file. test-quit.rb: Simple check of
|
1783
|
+
.rbxrc for calling Trepan.start helper.rb: redirect stderr to stdout
|
1784
|
+
|
1785
|
+
2010-12-26 rocky <rockyb@rubyforge.org>
|
1786
|
+
|
1787
|
+
* .gemspec, NEWS, Rakefile, lib/trepanning.rb,
|
1788
|
+
processor/command/step.rb: Repackage so gem will find on rubinius
|
1789
|
+
1.2.
|
1790
|
+
|
1791
|
+
2010-12-25 rocky <rockyb@rubyforge.org>
|
1792
|
+
|
1793
|
+
* README.textile: Oops... wrong require
|
1794
|
+
|
1795
|
+
2010-12-25 rocky <rockyb@rubyforge.org>
|
1796
|
+
|
1797
|
+
* NEWS, README.textile, lib/trepanning.rb: Update README.textile
|
1798
|
+
which was horribly out of date for something so new.
|
1799
|
+
|
1800
|
+
2010-12-24 rocky <rockyb@rubyforge.org>
|
1801
|
+
|
1802
|
+
* THANKS: Fix some of my usual spelling and grammar mistakes.
|
1803
|
+
|
1804
|
+
2010-12-23 rocky <rockyb@rubyforge.org>
|
1805
|
+
|
1806
|
+
* : commit b1d2605001d04ff6672c1c567fe887a2485a2b1b Author: rocky
|
1807
|
+
<rockyb@rubyforge.org> Date: Thu Dec 23 11:46:30 2010 -0500
|
1808
|
+
|
1809
|
+
2010-12-23 rocky <rockyb@rubyforge.org>
|
1810
|
+
|
1811
|
+
* Rakefile, app/frame.rb, app/iseq.rb, lib/trepanning.rb,
|
1812
|
+
processor/command/disassemble.rb, processor/command/frame.rb,
|
1813
|
+
processor/command/list.rb, processor/disassemble.rb,
|
1814
|
+
processor/frame.rb, processor/location.rb, processor/main.rb,
|
1815
|
+
processor/mock.rb, processor/running.rb,
|
1816
|
+
test/unit/test-proc-eval.rb, test/unit/test-proc-frame.rb: location
|
1817
|
+
-> vm_location where location is of type Rubinius::Location.
|
1818
|
+
|
1819
|
+
2010-12-19 rocky <rockyb@rubyforge.org>
|
1820
|
+
|
1821
|
+
* processor/command/base/submgr.rb,
|
1822
|
+
processor/command/disassemble.rb, processor/command/irb.rb,
|
1823
|
+
processor/command/kill.rb: Sync with rb-trepanning.
|
1824
|
+
|
1825
|
+
2010-12-15 rocky <rockyb@rubyforge.org>
|
1826
|
+
|
1827
|
+
* test/integration/helper.rb: Check $?.exitstatus after running
|
1828
|
+
debugger.
|
1829
|
+
|
1830
|
+
2010-12-15 rocky <rockyb@rubyforge.org>
|
1831
|
+
|
1832
|
+
* test/data/quit-Xdebug.right, test/integration/helper.rb,
|
1833
|
+
test/integration/test-quit.rb: Add minimal -Xdebug integration test
|
1834
|
+
|
1835
|
+
2010-12-15 rocky <rockyb@rubyforge.org>
|
1836
|
+
|
1837
|
+
* .gemspec, Rakefile, app/options.rb, lib/trepanning.rb,
|
1838
|
+
test/data/.gitignore, test/data/enable.right,
|
1839
|
+
test/data/fname-with-blank.cmd, test/data/fname-with-blank.right,
|
1840
|
+
test/data/quit.cmd, test/data/quit.right, test/example/.gitignore,
|
1841
|
+
test/example/fname with blank.rb, test/example/gcd-xx.rb,
|
1842
|
+
test/example/gcd.rb, test/example/gcd1.rb, test/example/null.rb,
|
1843
|
+
test/example/thread1.rb, test/integration/.gitignore,
|
1844
|
+
test/integration/file-diff.rb, test/integration/helper.rb,
|
1845
|
+
test/integration/test-fname-with-blank.rb,
|
1846
|
+
test/integration/test-quit.rb: Start integration tests. Wasn't
|
1847
|
+
packaging test/data/. Turn on "set kernelstep off" for now.
|
1848
|
+
|
1849
|
+
2010-12-15 rocky <rockyb@rubyforge.org>
|
1850
|
+
|
1851
|
+
* lib/trepanning.rb: Turn of kernelstep for now and leave that for
|
1852
|
+
the user to turn on. When things go wrong, we need this on. So
|
1853
|
+
until everything is more robust leave out.
|
1854
|
+
|
1855
|
+
2010-12-14 rocky <rockyb@rubyforge.org>
|
1856
|
+
|
1857
|
+
* processor/stepping.rb: Give error message if we can't step to
|
1858
|
+
parent.
|
1859
|
+
|
1860
|
+
2010-12-14 rocky <rockyb@rubyforge.org>
|
1861
|
+
|
1862
|
+
* NEWS, THANKS: Cleaning up in preparation for release.
|
1863
|
+
|
1864
|
+
2010-12-14 rocky <rockyb@rubyforge.org>
|
1865
|
+
|
1866
|
+
* .gemspec, Rakefile, app/frame.rb, app/method.rb,
|
1867
|
+
lib/trepanning.rb, processor/command/disassemble.rb,
|
1868
|
+
processor/command/info_subcmd/program.rb,
|
1869
|
+
processor/command/nexti.rb, processor/disassemble.rb,
|
1870
|
+
processor/location.rb, processor/stepping.rb: Adapt to recent ip
|
1871
|
+
changes - need to use next_ip rather than ip sometimes. Rakefile:
|
1872
|
+
Require newer linecache and Rubinius; make gem Rubinius specific.
|
1873
|
+
|
1874
|
+
2010-12-05 rocky <rockyb@rubyforge.org>
|
1875
|
+
|
1876
|
+
* processor/location.rb, test/functional/fn_helper.rb: Add IP when
|
1877
|
+
showing location.
|
1878
|
+
|
1879
|
+
2010-12-05 rocky <rockyb@rubyforge.org>
|
1880
|
+
|
1881
|
+
* lib/trepanning.rb, processor/command/set_subcmd/basename.rb,
|
1882
|
+
processor/command/set_subcmd/kernelstep.rb,
|
1883
|
+
processor/command/show_subcmd/basename.rb,
|
1884
|
+
processor/command/show_subcmd/kernelstep.rb, processor/main.rb,
|
1885
|
+
processor/running.rb: "set kernelstep on/off": filter out stepping
|
1886
|
+
into the kernel.
|
1887
|
+
|
1888
|
+
2010-12-05 rocky <rockyb@rubyforge.org>
|
1889
|
+
|
1890
|
+
* processor/command/base/subcmd.rb,
|
1891
|
+
processor/command/set_subcmd/different.rb,
|
1892
|
+
processor/command/set_subcmd/hidelevel.rb,
|
1893
|
+
processor/command/show_subcmd/alias.rb, processor/running.rb: add
|
1894
|
+
subcmd#prefix to DRY demo code more. Start ignore_file_re to ignore
|
1895
|
+
kernel fns.
|
1896
|
+
|
1897
|
+
2010-11-28 rocky <rockyb@rubyforge.org>
|
1898
|
+
|
1899
|
+
* Rakefile: Add rake tasts to run standalone in bulk.
|
1900
|
+
|
1901
|
+
2010-11-28 rocky <rockyb@rubyforge.org>
|
1902
|
+
|
1903
|
+
* processor/command/info_subcmd/breakpoints.rb,
|
1904
|
+
processor/command/set_subcmd/different.rb,
|
1905
|
+
processor/command/set_subcmd/hidelevel.rb,
|
1906
|
+
processor/command/set_subcmd/trace.rb,
|
1907
|
+
processor/command/show_subcmd/alias.rb,
|
1908
|
+
processor/command/show_subcmd/args.rb,
|
1909
|
+
processor/command/show_subcmd/different.rb, processor/mock.rb: DRY
|
1910
|
+
subcommand standalone code.
|
1911
|
+
|
1912
|
+
2010-11-28 rocky <rockyb@rubyforge.org>
|
1913
|
+
|
1914
|
+
* processor/breakpoint.rb, processor/validate.rb: Method parsing
|
1915
|
+
from "list" and "disassemble" command reused in "breakpoint" and
|
1916
|
+
"continue".
|
1917
|
+
|
1918
|
+
2010-11-28 rocky <rockyb@rubyforge.org>
|
1919
|
+
|
1920
|
+
* processor/breakpoint.rb, processor/validate.rb: Small changes.
|
1921
|
+
|
1922
|
+
2010-11-28 rocky <rockyb@rubyforge.org>
|
1923
|
+
|
1924
|
+
* processor/command/disassemble.rb, processor/command/list.rb,
|
1925
|
+
processor/validate.rb: Allow method names in the "list" command.
|
1926
|
+
|
1927
|
+
2010-11-28 rvm <rocky@gnu.org>
|
1928
|
+
|
1929
|
+
* processor/command/disassemble.rb, processor/eval.rb: Handle method
|
1930
|
+
names with '.' in disassembly. e.g. Object.is_a? or [1,2].max
|
1931
|
+
|
1932
|
+
2010-11-27 rocky <rockyb@rubyforge.org>
|
1933
|
+
|
1934
|
+
* processor/command/set_subcmd/auto_subcmd/dis.rb,
|
1935
|
+
processor/command/set_subcmd/auto_subcmd/eval.rb,
|
1936
|
+
processor/command/set_subcmd/auto_subcmd/irb.rb,
|
1937
|
+
processor/command/set_subcmd/auto_subcmd/list.rb,
|
1938
|
+
processor/command/set_subcmd/debug_subcmd/dbgr.rb,
|
1939
|
+
processor/command/set_subcmd/debug_subcmd/skip.rb,
|
1940
|
+
processor/command/set_subcmd/debug_subcmd/step.rb,
|
1941
|
+
processor/command/show_subcmd/auto_subcmd/eval.rb,
|
1942
|
+
processor/command/show_subcmd/auto_subcmd/irb.rb,
|
1943
|
+
processor/command/show_subcmd/auto_subcmd/list.rb,
|
1944
|
+
processor/command/show_subcmd/debug_subcmd/dbgr.rb,
|
1945
|
+
processor/command/show_subcmd/debug_subcmd/skip.rb,
|
1946
|
+
processor/command/show_subcmd/debug_subcmd/step.rb,
|
1947
|
+
processor/mock.rb: Start much-needed DRY of subsubcommand standalone
|
1948
|
+
code. Another half remain to be shortened.
|
1949
|
+
|
1950
|
+
2010-11-27 rvm <rocky@gnu.org>
|
1951
|
+
|
1952
|
+
* processor/command/show_subcmd/debug_subcmd/skip.rb,
|
1953
|
+
processor/command/show_subcmd/debug_subcmd/step.rb: Last bugfixes
|
1954
|
+
before we *really* DRY this redundant code.
|
1955
|
+
|
1956
|
+
2010-11-27 rvm <rocky@gnu.org>
|
1957
|
+
|
1958
|
+
* app/method.rb: meth->cm
|
1959
|
+
|
1960
|
+
2010-11-27 rvm <rocky@gnu.org>
|
1961
|
+
|
1962
|
+
* app/iseq.rb, processor/command/disassemble.rb,
|
1963
|
+
processor/command/nexti.rb,
|
1964
|
+
processor/command/set_subcmd/debug_subcmd/skip.rb,
|
1965
|
+
processor/command/set_subcmd/debug_subcmd/step.rb,
|
1966
|
+
processor/command/show_subcmd/debug_subcmd/step.rb,
|
1967
|
+
processor/main.rb, processor/stepping.rb: Fix bug in nexti.rb. Add
|
1968
|
+
set/show debug step. More standalone code. Start great rewrite
|
1969
|
+
method/meth -> cm.
|
1970
|
+
|
1971
|
+
2010-11-27 rvm <rocky@gnu.org>
|
1972
|
+
|
1973
|
+
* app/method.rb, processor/command/disassemble.rb: Show lines
|
1974
|
+
numbers in method disassembly.
|
1975
|
+
|
1976
|
+
2010-11-27 rocky <rockyb@rubyforge.org>
|
1977
|
+
|
1978
|
+
* processor/command/set_subcmd/auto_subcmd/dis.rb,
|
1979
|
+
processor/command/show_subcmd/auto_subcmd/dis.rb,
|
1980
|
+
processor/command/show_subcmd/auto_subcmd/eval.rb,
|
1981
|
+
processor/command/show_subcmd/auto_subcmd/irb.rb,
|
1982
|
+
processor/command/show_subcmd/auto_subcmd/list.rb,
|
1983
|
+
processor/hook.rb, processor/main.rb, processor/stepping.rb: Add
|
1984
|
+
"auto dis" which might be short-lived. Uncomment and fix some of the
|
1985
|
+
standalone code for subcommands.
|
1986
|
+
|
1987
|
+
2010-11-27 rocky <rockyb@rubyforge.org>
|
1988
|
+
|
1989
|
+
* lib/trepanning.rb, processor/location.rb: Small changes.
|
1990
|
+
|
1991
|
+
2010-11-21 rocky <rockyb@rubyforge.org>
|
1992
|
+
|
1993
|
+
* lib/trepanning.rb: Add Kernel.debugger
|
1994
|
+
|
1995
|
+
2010-11-21 rocky <rockyb@rubyforge.org>
|
1996
|
+
|
1997
|
+
* test/functional/test-next-bug.rb: Code function may be less
|
1998
|
+
puzzling, not that it really matters.
|
1999
|
+
|
2000
|
+
2010-11-21 rocky <rockyb@rubyforge.org>
|
2001
|
+
|
2002
|
+
* app/method.rb, app/run.rb, processor/command/disassemble.rb,
|
2003
|
+
processor/command/next.rb, processor/main.rb, processor/running.rb,
|
2004
|
+
processor/stepping.rb, test/functional/test-next-bug.rb: Fix bug in
|
2005
|
+
'next' when a line has discontinuous ips. Fix broken bin/trepanx due
|
2006
|
+
to interface change in ignored_methods. Allow disassembly of methods
|
2007
|
+
in "disassemble" command.
|
2008
|
+
|
2009
|
+
2010-11-20 rocky <rockyb@rubyforge.org>
|
2010
|
+
|
2011
|
+
* processor/command/continue.rb, processor/location.rb: continue.rb:
|
2012
|
+
forgotting to update a call for an interface change => brokenness.
|
2013
|
+
|
2014
|
+
2010-11-20 rocky <rockyb@rubyforge.org>
|
2015
|
+
|
2016
|
+
* : commit a8f1ffc2c3c2d3c4417ffb9c931af78ad7b6c0c8 Author: rocky
|
2017
|
+
<rockyb@rubyforge.org> Date: Sat Nov 20 21:08:40 2010 -0500
|
2018
|
+
|
2019
|
+
2010-11-19 rvm <rocky@gnu.org>
|
2020
|
+
|
2021
|
+
* lib/trepanning.rb, processor/main.rb, processor/stepping.rb,
|
2022
|
+
test/functional/test-step2.rb: Fix bug where stepping from of a
|
2023
|
+
return doesn't stop on outside frame.
|
2024
|
+
|
2025
|
+
2010-11-19 rocky <rockyb@rubyforge.org>
|
2026
|
+
|
2027
|
+
* app/iseq.rb, lib/trepanning.rb, processor/command/disassemble.rb,
|
2028
|
+
processor/command/up.rb, processor/disassemble.rb,
|
2029
|
+
processor/frame.rb, processor/main.rb, processor/running.rb,
|
2030
|
+
processor/stepping.rb, processor/validate.rb,
|
2031
|
+
test/functional/test-finish.rb, test/unit/test-app-iseq.rb: Towards
|
2032
|
+
handing step across return. Nicer disassembly single statements.
|
2033
|
+
Fixed method filtering iseq.c: go_between: now understands that a
|
2034
|
+
return breaks the flow too lib/trepannig.rb: add initialize routine
|
2035
|
+
to ignored list of filtered fns command/disassemble.rb: reorganize
|
2036
|
+
so we can handle disassemble of individual methods command/up.rb:
|
2037
|
+
fix comment processor/disassemble.rb: use
|
2038
|
+
Rubinius::CompiledMethod::Instruction to shorten code and get
|
2039
|
+
comments in output frame.rb: common routine to get parent frame.
|
2040
|
+
processor/running.rb: remove bug in method filter test.
|
2041
|
+
processor/stepping.rb: better generalization of related breakpoint
|
2042
|
+
handling.
|
2043
|
+
|
2044
|
+
2010-11-17 rocky <rockyb@rubyforge.org>
|
2045
|
+
|
2046
|
+
* app/method.rb, app/validate.rb, processor/breakpoint.rb,
|
2047
|
+
processor/command/break.rb, processor/command/continue.rb,
|
2048
|
+
processor/validate.rb, test/functional/test-tbreak.rb,
|
2049
|
+
test/unit/test-app-method.rb, test/unit/test-app-validate.rb: Can
|
2050
|
+
now set breakpoints on IPs. Fix status and setting of some temporary
|
2051
|
+
breakpoints.
|
2052
|
+
|
2053
|
+
2010-11-16 rocky <rockyb@rubyforge.org>
|
2054
|
+
|
2055
|
+
* .gemspec, processor/command/list.rb, processor/location.rb,
|
2056
|
+
processor/validate.rb, test/functional/test-break-name.rb: Use
|
2057
|
+
script caching recently added to linecache for eval-like things. As
|
2058
|
+
a result, "list" now works. validate: bug in regexp was not
|
2059
|
+
catching !,? or = at the end.
|
2060
|
+
|
2061
|
+
2010-11-15 rvm <rocky@gnu.org>
|
2062
|
+
|
2063
|
+
* app/frame.rb, processor/location.rb: We pick up the eval_string
|
2064
|
+
now. Thanks again, evan! (More could be done to cache info as a
|
2065
|
+
file.)
|
2066
|
+
|
2067
|
+
2010-11-14 rvm <rocky@gnu.org>
|
2068
|
+
|
2069
|
+
* processor/breakpoint.rb: Remove extraneous comment.
|
2070
|
+
|
2071
|
+
2010-11-14 rvm <rocky@gnu.org>
|
2072
|
+
|
2073
|
+
* processor/breakpoint.rb, processor/main.rb: Delete temporary
|
2074
|
+
breakpoints after hitting them.
|
2075
|
+
|
2076
|
+
2010-11-14 rvm <rocky@gnu.org>
|
2077
|
+
|
2078
|
+
* app/irb.rb, app/iseq.rb, processor/command/disassemble.rb,
|
2079
|
+
processor/command/info_subcmd/program.rb, processor/disassemble.rb,
|
2080
|
+
test/unit/test-app-iseq.rb: Tag disassemble output with IP location
|
2081
|
+
and breakpoints set.
|
2082
|
+
|
2083
|
+
2010-11-13 rvm <rocky@gnu.org>
|
2084
|
+
|
2085
|
+
* app/util.rb, lib/trepanning.rb,
|
2086
|
+
processor/command/set_subcmd/hidelevel.rb, processor/frame.rb:
|
2087
|
+
Hiding levels below "main" for -Xdebug and trepanx better. util.rb:
|
2088
|
+
Don't need dollar_0 routine anymore. set_subcmd/hidelevel.rb:
|
2089
|
+
recalculate level on resetting.
|
2090
|
+
|
2091
|
+
2010-11-12 rvm <rocky@gnu.org>
|
2092
|
+
|
2093
|
+
* app/default.rb, processor/command/restart.rb,
|
2094
|
+
processor/command/show_subcmd/args.rb, processor/mock.rb: Synch with
|
2095
|
+
rb-trepannning
|
2096
|
+
|
2097
|
+
2010-11-11 rvm <rocky@gnu.org>
|
2098
|
+
|
2099
|
+
* app/method.rb, test/unit/test-app-method.rb: Add locate_line test.
|
2100
|
+
Some other small changes.
|
2101
|
+
|
2102
|
+
2010-11-10 rvm <rocky@gnu.org>
|
2103
|
+
|
2104
|
+
* app/iseq.rb, processor/running.rb, processor/stepping.rb,
|
2105
|
+
test/unit/test-app-iseq.rb: "finish" should include "yield" ops in
|
2106
|
+
addition to "return" ops.
|
2107
|
+
|
2108
|
+
2010-11-09 rvm <rocky@gnu.org>
|
2109
|
+
|
2110
|
+
* data/irbrc: One more small name change.
|
2111
|
+
|
2112
|
+
2010-11-09 rvm <rocky@gnu.org>
|
2113
|
+
|
2114
|
+
* data/irbrc, processor/command/irb.rb: trepan -> trepanx
|
2115
|
+
|
2116
|
+
2010-11-09 rvm <rocky@gnu.org>
|
2117
|
+
|
2118
|
+
* data/irbrc, processor/command/set_subcmd/trace_subcmd/.gitignore,
|
2119
|
+
processor/command/show_subcmd/trace_subcmd/.gitignore: Monkeypatch
|
2120
|
+
in the proper way.
|
2121
|
+
|
2122
|
+
2010-11-09 rocky <rockyb@rubyforge.org>
|
2123
|
+
|
2124
|
+
* app/default.rb, app/run.rb, bin/trepanx, lib/trepanning.rb,
|
2125
|
+
processor/command/restart.rb,
|
2126
|
+
processor/command/show_subcmd/args.rb, processor/location.rb,
|
2127
|
+
processor/mock.rb, test/unit/test-app-run.rb: Greatly simplify
|
2128
|
+
restart code and it's now more reliable thanks to the addition of
|
2129
|
+
Rubinuis::OS_ARGV and Rubinius::OS_STARTUP_DIR. Thanks, Evan!
|
2130
|
+
|
2131
|
+
2010-11-08 rocky <rockyb@rubyforge.org>
|
2132
|
+
|
2133
|
+
* app/default.rb, app/run.rb, lib/trepanning.rb: Generalize
|
2134
|
+
standalone hack so and include -Xdebug.
|
2135
|
+
|
2136
|
+
2010-11-08 rocky <rockyb@rubyforge.org>
|
2137
|
+
|
2138
|
+
* processor/command/backtrace.rb: Wasn't starting from top if we had
|
2139
|
+
adjusted the frame. Add position indicator in backtrace and make it
|
2140
|
+
look more like trepan (and gdb).
|
2141
|
+
|
2142
|
+
2010-11-08 rvm <rocky@gnu.org>
|
2143
|
+
|
2144
|
+
* app/method.rb, app/run.rb, interface/script.rb, io/base_io.rb,
|
2145
|
+
io/null_output.rb, processor/command/set_subcmd/max.rb,
|
2146
|
+
processor/command/set_subcmd/max_subcmd/list.rb,
|
2147
|
+
processor/command/set_subcmd/substitute.rb,
|
2148
|
+
processor/command/set_subcmd/trace.rb,
|
2149
|
+
processor/command/set_subcmd/trace_subcmd/.gitignore,
|
2150
|
+
processor/command/set_subcmd/trace_subcmd/print.rb,
|
2151
|
+
processor/command/show_subcmd/max.rb,
|
2152
|
+
processor/command/show_subcmd/max_subcmd/list.rb,
|
2153
|
+
processor/command/show_subcmd/trace.rb,
|
2154
|
+
processor/command/show_subcmd/trace_subcmd/.gitignore,
|
2155
|
+
processor/command/show_subcmd/trace_subcmd/print.rb,
|
2156
|
+
processor/command/source.rb, processor/frame.rb: bin/trepanx now
|
2157
|
+
stops in user script rather than the loader. It does this by rather
|
2158
|
+
hacky means, but it's the best I can find for now. Added a null
|
2159
|
+
output routine and the -q (silence) option on the source command.
|
2160
|
+
|
2161
|
+
2010-11-08 rvm <rocky@gnu.org>
|
2162
|
+
|
2163
|
+
* processor/command/finish.rb, processor/command/list.rb: list.rb:
|
2164
|
+
make it I hope more rational. finish.rb: some cut-and-past typos.
|
2165
|
+
|
2166
|
+
2010-11-07 rvm <rocky@gnu.org>
|
2167
|
+
|
2168
|
+
* processor/frame.rb, test/functional/fn_helper.rb,
|
2169
|
+
test/functional/test-list.rb: Fix bug in handling "list" command
|
2170
|
+
after changing frames.
|
2171
|
+
|
2172
|
+
2010-11-07 rvm <rocky@gnu.org>
|
2173
|
+
|
2174
|
+
* : commit de520fc0cd97e910e70ee6db496a0fc13344a815 Author: rvm
|
2175
|
+
<rocky@gnu.org> Date: Sun Nov 7 10:09:00 2010 -0500
|
2176
|
+
|
2177
|
+
2010-11-06 rocky <rockyb@rubyforge.org>
|
2178
|
+
|
2179
|
+
* app/method.rb, test/functional/test-break.rb: Work on setting
|
2180
|
+
breakpoints via line numbers.
|
2181
|
+
|
2182
|
+
2010-11-06 rvm <rocky@gnu.org>
|
2183
|
+
|
2184
|
+
* app/breakpoint.rb, lib/trepanning.rb,
|
2185
|
+
processor/command/continue.rb, test/functional/fn_helper.rb,
|
2186
|
+
test/functional/test-tbreak.rb: Had broken temporary breakpoints.
|
2187
|
+
Add now a tbreak test.
|
2188
|
+
|
2189
|
+
2010-11-06 rvm <rocky@gnu.org>
|
2190
|
+
|
2191
|
+
* lib/trepanning.rb, processor/command/finish.rb,
|
2192
|
+
processor/main.rb, processor/running.rb: Code clean up due to
|
2193
|
+
differen handling of stepping breakpoints.
|
2194
|
+
|
2195
|
+
2010-11-06 rocky <rockyb@rubyforge.org>
|
2196
|
+
|
2197
|
+
* app/breakpoint.rb, app/frame.rb, lib/trepanning.rb,
|
2198
|
+
processor/command/nexti.rb, processor/stepping.rb,
|
2199
|
+
test/functional/test-finish.rb, test/functional/test-next.rb: Allow
|
2200
|
+
breakpoints to be scoped. Fixes bugs in handling recursive "next"
|
2201
|
+
and "finish". Based on Rubinius commit # 3a1c111. See issue
|
2202
|
+
Rubinius issue #558
|
2203
|
+
|
2204
|
+
2010-11-06 rocky <rockyb@rubyforge.org>
|
2205
|
+
|
2206
|
+
* processor/breakpoint.rb, processor/command/continue.rb,
|
2207
|
+
processor/main.rb: Start "continue" with a target. Temp breakpoints
|
2208
|
+
are borked though.
|
2209
|
+
|
2210
|
+
2010-11-05 rocky <rockyb@rubyforge.org>
|
2211
|
+
|
2212
|
+
* app/run.rb, lib/trepanning.rb, processor/command/list.rb,
|
2213
|
+
processor/running.rb: Work more on ignoring methods we don't want to
|
2214
|
+
stop in.
|
2215
|
+
|
2216
|
+
2010-11-05 rocky <rockyb@rubyforge.org>
|
2217
|
+
|
2218
|
+
* app/run.rb, processor/mock.rb, processor/running.rb: Skip over
|
2219
|
+
debug_program method (used in standalone).
|
2220
|
+
|
2221
|
+
2010-11-05 rocky <rockyb@rubyforge.org>
|
2222
|
+
|
2223
|
+
* processor/location.rb, test/unit/test-proc-location.rb: Fix bug in
|
2224
|
+
not picking up remapped files the first time around.
|
2225
|
+
|
2226
|
+
2010-11-05 rocky <rockyb@rubyforge.org>
|
2227
|
+
|
2228
|
+
* processor/command/next.rb, processor/command/step.rb,
|
2229
|
+
processor/main.rb, processor/running.rb,
|
2230
|
+
test/unit/test-bin-trepan.rb, test/unit/test-bin-trepanx.rb: "set
|
2231
|
+
different" now works properly.
|
2232
|
+
|
2233
|
+
2010-11-04 rocky <rockyb@rubyforge.org>
|
2234
|
+
|
2235
|
+
* processor/command/set_subcmd/hidelevel.rb, processor/default.rb,
|
2236
|
+
processor/frame.rb: Some small bugs and keep in sync with
|
2237
|
+
rb-trepanning.
|
2238
|
+
|
2239
|
+
2010-11-04 rocky <rockyb@rubyforge.org>
|
2240
|
+
|
2241
|
+
* .gemspec, bin/trepan, bin/trepanx: bin/trepan -> bin/trepanx
|
2242
|
+
|
2243
|
+
2010-11-04 rvm <rocky@gnu.org>
|
2244
|
+
|
2245
|
+
* app/run.rb, processor/command/base/subcmd.rb,
|
2246
|
+
processor/command/set_subcmd/debug_subcmd/stack.rb,
|
2247
|
+
processor/command/set_subcmd/different.rb,
|
2248
|
+
processor/command/set_subcmd/hidelevel.rb,
|
2249
|
+
processor/command/show_subcmd/debug_subcmd/stack.rb,
|
2250
|
+
processor/command/show_subcmd/different.rb,
|
2251
|
+
processor/command/show_subcmd/hidelevel.rb,
|
2252
|
+
processor/command/show_subcmd/max_subcmd/list.rb,
|
2253
|
+
processor/command/show_subcmd/max_subcmd/stack.rb,
|
2254
|
+
processor/command/show_subcmd/max_subcmd/string.rb,
|
2255
|
+
processor/command/show_subcmd/max_subcmd/width.rb,
|
2256
|
+
processor/default.rb, processor/frame.rb, processor/validate.rb:
|
2257
|
+
Replace "set debug stack" with more general "set hidelevel". Fix up
|
2258
|
+
some standalone code running. Use SubSubcommand where appropriate.
|
2259
|
+
|
2260
|
+
2010-11-04 rvm <rocky@gnu.org>
|
2261
|
+
|
2262
|
+
* lib/trepanning.rb, processor/main.rb,
|
2263
|
+
test/functional/test-finish.rb, test/functional/test-next.rb,
|
2264
|
+
test/functional/test-step.rb: start now stops by default at
|
2265
|
+
*following* steppable statement. If you want to stop at the "start"
|
2266
|
+
location, use Trepan.start{:immediate => true}
|
2267
|
+
|
2268
|
+
2010-11-03 rocky <rockyb@rubyforge.org>
|
2269
|
+
|
2270
|
+
* lib/trepanning.rb, processor/command/info_subcmd/program.rb,
|
2271
|
+
processor/main.rb, test/functional/test-finish.rb: Nil breakpoint
|
2272
|
+
means "stepping call" event.
|
2273
|
+
|
2274
|
+
2010-11-01 rocky <rockyb@rubyforge.org>
|
2275
|
+
|
2276
|
+
* test/functional/test-finish.rb, test/functional/test-next.rb:
|
2277
|
+
First test of "finish" command. Todo: Looks like it's buggy when we
|
2278
|
+
have recursive functions.
|
2279
|
+
|
2280
|
+
2010-10-21 rocky <rockyb@rubyforge.org>
|
2281
|
+
|
2282
|
+
* app/util.rb, test/unit/test-app-util.rb: Try elision of long
|
2283
|
+
strings in the middle of the string.
|
2284
|
+
|
2285
|
+
2010-10-21 rocky <rockyb@rubyforge.org>
|
2286
|
+
|
2287
|
+
* app/brkptmgr.rb, app/method.rb, app/run.rb, lib/trepanning.rb,
|
2288
|
+
processor/breakpoint.rb, processor/command/break.rb,
|
2289
|
+
processor/command/disassemble.rb, processor/validate.rb,
|
2290
|
+
test/functional/test-next.rb: Fix bug in breakpoint numbering. Fix
|
2291
|
+
bug in restart when running bin/trepan breakpoint allows forms
|
2292
|
+
nothing (current line) line as well as previous forms.
|
2293
|
+
app/brkptmgr.rb: max should start off 0. app/method.rb: routines
|
2294
|
+
for working with compiled methods app/run.rb: use dbgr passed in.
|
2295
|
+
Don't smash restart_args, via set_restart, allow opts to be passed
|
2296
|
+
in lib/trepanning merge dbussink's fix in rbx-head to reference
|
2297
|
+
debugger command/disassemble.rb: had tropped off section header for
|
2298
|
+
"all" processor/validate.rb: common routine to parse a breakpoint
|
2299
|
+
position.
|
2300
|
+
|
2301
|
+
2010-10-19 rvm <rocky@gnu.org>
|
2302
|
+
|
2303
|
+
* test/functional/test-next.rb: Add 'next' functional test.
|
2304
|
+
|
2305
|
+
2010-10-19 rocky <rockyb@rubyforge.org>
|
2306
|
+
|
2307
|
+
* Rakefile, lib/trepanning.rb, processor/frame.rb,
|
2308
|
+
processor/main.rb, processor/running.rb: Rakefile: add functional
|
2309
|
+
testing lib/trepanning.rb: honor input and output interfaces when
|
2310
|
+
passed processor/frame.rb: RDoc appeasement processor/main.rb:
|
2311
|
+
Change commen so it makes more sense when viewed in RDoc
|
2312
|
+
processor/running.rb: remove debug output.
|
2313
|
+
|
2314
|
+
2010-10-19 rocky <rockyb@rubyforge.org>
|
2315
|
+
|
2316
|
+
* test/functional/test-step.rb: First functional test of single
|
2317
|
+
stepping. WOOT!
|
2318
|
+
|
2319
|
+
2010-10-19 rocky <rockyb@rubyforge.org>
|
2320
|
+
|
2321
|
+
* test/functional/.gitignore, test/functional/fn_helper.rb,
|
2322
|
+
test/functional/test-fn_helper.rb: Baby steps toward adding
|
2323
|
+
functional test: test the test helper. Some RDoc appeasements.
|
2324
|
+
|
2325
|
+
2010-10-19 rocky <rockyb@rubyforge.org>
|
2326
|
+
|
2327
|
+
* app/breakpoint.rb, processor/breakpoint.rb,
|
2328
|
+
processor/command/finish.rb, processor/running.rb,
|
2329
|
+
processor/stepping.rb: Add finish (step out) command.
|
2330
|
+
app/breakpoint.rb: generalize paired breakpoints to more than two
|
2331
|
+
which is needed for finish. processor/breakpoint.rb: fix bugs
|
2332
|
+
caused by refactoring
|
2333
|
+
|
2334
|
+
2010-10-18 rvm <rocky@gnu.org>
|
2335
|
+
|
2336
|
+
* app/iseq.rb, processor/stepping.rb, test/unit/test-app-iseq.rb:
|
2337
|
+
Extract, test, and fix more instruction sequence routines.
|
2338
|
+
|
2339
|
+
2010-10-18 rvm <rocky@gnu.org>
|
2340
|
+
|
2341
|
+
* app/iseq.rb, processor/command/set_subcmd/debug_subcmd/skip.rb,
|
2342
|
+
processor/command/show_subcmd/debug_subcmd/skip.rb,
|
2343
|
+
processor/main.rb, processor/mock.rb, processor/stepping.rb,
|
2344
|
+
test/unit/test-cmd-alias.rb, test/unit/test-proc-eval.rb,
|
2345
|
+
test/unit/test-proc-main.rb: Add set/show debug skip. Start moving
|
2346
|
+
out instruction sequence code to module.
|
2347
|
+
|
2348
|
+
2010-10-18 rvm <rocky@gnu.org>
|
2349
|
+
|
2350
|
+
* app/run.rb, lib/trepanning.rb, processor/command/disassemble.rb,
|
2351
|
+
processor/frame.rb, processor/main.rb, processor/running.rb,
|
2352
|
+
processor/stepping.rb: Hide level only if it makes sense. Start work
|
2353
|
+
on finish. (Not complete). Fix But in stepping test.
|
2354
|
+
|
2355
|
+
2010-10-17 rvm <rocky@gnu.org>
|
2356
|
+
|
2357
|
+
* processor/command/next.rb, processor/command/step.rb,
|
2358
|
+
processor/main.rb, processor/running.rb: Next/step <count> now
|
2359
|
+
works.
|
2360
|
+
|
2361
|
+
2010-10-17 rvm <rocky@gnu.org>
|
2362
|
+
|
2363
|
+
* processor/command/continue.rb, processor/command/next.rb,
|
2364
|
+
processor/command/nexti.rb, processor/command/step.rb,
|
2365
|
+
processor/main.rb, processor/running.rb, processor/stepping.rb: Move
|
2366
|
+
return-to-program control into main.rb. Facilitates handling step
|
2367
|
+
filtering.
|
2368
|
+
|
2369
|
+
2010-10-17 rvm <rocky@gnu.org>
|
2370
|
+
|
2371
|
+
* processor/command/next.rb, processor/command/step.rb,
|
2372
|
+
processor/main.rb, processor/stepping.rb: Move stepping code to
|
2373
|
+
Trepan::CmdProcessor in file processor/stepping.rb
|
2374
|
+
|
2375
|
+
2010-10-16 rvm <rocky@gnu.org>
|
2376
|
+
|
2377
|
+
* processor/mock.rb, test/unit/test-cmd-help.rb: Reinstate expect
|
2378
|
+
message on assert
|
2379
|
+
|
2380
|
+
2010-10-16 rvm <rocky@gnu.org>
|
2381
|
+
|
2382
|
+
* processor/command/alias.rb, processor/command/list.rb,
|
2383
|
+
processor/command/pr.rb, processor/command/show.rb: DRY code with
|
2384
|
+
respect to Mock setup. less hard-coding of command names via #{NAME}
|
2385
|
+
|
2386
|
+
2010-10-16 rvm <rocky@gnu.org>
|
2387
|
+
|
2388
|
+
* : commit 3309874e7bfd623ce4c93e08812ee343f4f98d16 Author: rvm
|
2389
|
+
<rocky@gnu.org> Date: Sat Oct 16 10:16:11 2010 -0400
|
2390
|
+
|
2391
|
+
2010-10-14 rocky <rockyb@rubyforge.org>
|
2392
|
+
|
2393
|
+
* processor/command/pr.rb: Add print/eval with truncated output for
|
2394
|
+
long strings.
|
2395
|
+
|
2396
|
+
2010-10-14 rocky <rockyb@rubyforge.org>
|
2397
|
+
|
2398
|
+
* processor/command/set_subcmd/debug_subcmd/dbgr.rb,
|
2399
|
+
processor/command/show_subcmd/debug_subcmd/dbgr.rb,
|
2400
|
+
processor/command/step.rb, processor/main.rb, processor/running.rb,
|
2401
|
+
test/unit/test-base-subcmd.rb: running.rb, step.rb: More work trying
|
2402
|
+
to put into a normal command loop. Add "set debug dbgr". Add test
|
2403
|
+
of base commands.
|
2404
|
+
|
2405
|
+
2010-10-14 rvm <rocky@gnu.org>
|
2406
|
+
|
2407
|
+
* lib/trepanning.rb, processor/breakpoint.rb, processor/main.rb,
|
2408
|
+
processor/running.rb: Add Trepan.breakpoint instance variable. Start
|
2409
|
+
to get step count and stuff in place for step filtering.
|
2410
|
+
|
2411
|
+
2010-10-13 rvm <rocky@gnu.org>
|
2412
|
+
|
2413
|
+
* app/irb.rb, data/.gitignore, data/irbrc,
|
2414
|
+
processor/command/irb.rb,
|
2415
|
+
processor/command/set_subcmd/auto_subcmd/irb.rb,
|
2416
|
+
processor/command/show_subcmd/auto_subcmd/irb.rb, processor/mock.rb:
|
2417
|
+
Add debugger 'irb' command and set/show autoirb.
|
2418
|
+
|
2419
|
+
2010-10-13 rocky <rockyb@rubyforge.org>
|
2420
|
+
|
2421
|
+
* processor/hook.rb: Add set/show debug dbgr.
|
2422
|
+
|
2423
|
+
2010-10-13 rocky <rockyb@rubyforge.org>
|
2424
|
+
|
2425
|
+
* processor/command/set_subcmd/auto.rb,
|
2426
|
+
processor/command/set_subcmd/debug.rb,
|
2427
|
+
processor/command/set_subcmd/debug_subcmd/.gitignore,
|
2428
|
+
processor/command/set_subcmd/debug_subcmd/stack.rb,
|
2429
|
+
processor/command/show_subcmd/args.rb,
|
2430
|
+
processor/command/show_subcmd/debug.rb,
|
2431
|
+
processor/command/show_subcmd/debug_subcmd/.gitignore,
|
2432
|
+
processor/command/show_subcmd/debug_subcmd/stack.rb,
|
2433
|
+
processor/command/show_subcmd/max.rb: Add set/show debug stack - to
|
2434
|
+
hide/show least-recent boilerplate frames that are generally not a
|
2435
|
+
programmer's concern.
|
2436
|
+
|
2437
|
+
2010-10-13 rocky <rockyb@rubyforge.org>
|
2438
|
+
|
2439
|
+
* app/util.rb, processor/command/backtrace.rb, processor/frame.rb,
|
2440
|
+
test/unit/test-app-util.rb, test/unit/test-proc-frame.rb: Start
|
2441
|
+
hiding boilerplate start-up frames. set debug stack (which has not
|
2442
|
+
been put in yet) will let you see these frames.
|
2443
|
+
|
2444
|
+
2010-10-12 rocky <rockyb@rubyforge.org>
|
2445
|
+
|
2446
|
+
* processor/mock.rb, test/unit/cmd-helper.rb,
|
2447
|
+
test/unit/test-cmd-break.rb: First breakpoint unit test. Yay!
|
2448
|
+
|
2449
|
+
2010-10-12 rocky <rockyb@rubyforge.org>
|
2450
|
+
|
2451
|
+
* processor/frame.rb, processor/mock.rb, processor/validate.rb,
|
2452
|
+
test/unit/test-proc-frame.rb: Reinstate most of the processor/frame
|
2453
|
+
unit test from rb-trepanning.
|
2454
|
+
|
2455
|
+
2010-10-12 rocky <rockyb@rubyforge.org>
|
2456
|
+
|
2457
|
+
* lib/trepanning.rb, processor/frame.rb, processor/main.rb: Small
|
2458
|
+
frame code cleanups.
|
2459
|
+
|
2460
|
+
2010-10-12 rvm <rocky@gnu.org>
|
2461
|
+
|
2462
|
+
* app/brkptmgr.rb, app/frame.rb, lib/trepanning.rb,
|
2463
|
+
processor/breakpoint.rb, processor/command/break.rb: Address
|
2464
|
+
breakpoints broken in last breakpoint reorganization.
|
2465
|
+
|
2466
|
+
2010-10-12 rvm <rocky@gnu.org>
|
2467
|
+
|
2468
|
+
* processor/command/continue.rb, processor/command/next.rb,
|
2469
|
+
processor/command/nexti.rb, processor/command/step.rb,
|
2470
|
+
processor/main.rb, processor/running.rb: Start to get control over
|
2471
|
+
what happens before and after returning to debugged program. This
|
2472
|
+
will be needed to handle filtering stops (used for example when
|
2473
|
+
running the debugger from the outset) and recording events in an
|
2474
|
+
event buffer.
|
2475
|
+
|
2476
|
+
2010-10-11 rvm <rocky@gnu.org>
|
2477
|
+
|
2478
|
+
* lib/trepanning.rb, processor/frame.rb, processor/main.rb:
|
2479
|
+
processor/frame.rb: show location in usual format, not the backtrace
|
2480
|
+
format processor/main.rb: reinstate code with print_loatio
|
2481
|
+
lib/trepanning.rb: spelling correction in comment.
|
2482
|
+
|
2483
|
+
2010-10-08 rocky <rockyb@rubyforge.org>
|
2484
|
+
|
2485
|
+
* lib/trepanning.rb, processor/command/disassemble.rb,
|
2486
|
+
processor/disassemble.rb, processor/frame.rb,
|
2487
|
+
processor/location.rb, processor/main.rb: Move some disassembly code
|
2488
|
+
from lib/trepanning.rb to processor/disassemble.rb
|
2489
|
+
|
2490
|
+
2010-10-08 rocky <rockyb@rubyforge.org>
|
2491
|
+
|
2492
|
+
* Makefile, processor/Makefile: Add boilerplate Makefile's
|
2493
|
+
|
2494
|
+
2010-10-08 rocky <rockyb@rubyforge.org>
|
2495
|
+
|
2496
|
+
* test/unit/test-unit-exit.rb: How did this get in there?
|
2497
|
+
|
2498
|
+
2010-10-08 rocky <rockyb@rubyforge.org>
|
2499
|
+
|
2500
|
+
* processor/command/info_subcmd/breakpoints.rb,
|
2501
|
+
test/unit/test-cmd-exit.rb: Add unit test for exit. Add help for
|
2502
|
+
"info breakpoints". Copied from rb-trepanning - Not quite accurate
|
2503
|
+
yet.
|
2504
|
+
|
2505
|
+
2010-10-08 rocky <rockyb@rubyforge.org>
|
2506
|
+
|
2507
|
+
* processor/command/source.rb: Small things to sync up with
|
2508
|
+
rb-trepanning
|
2509
|
+
|
2510
|
+
2010-10-08 rocky <rockyb@rubyforge.org>
|
2511
|
+
|
2512
|
+
* app/breakpoint.rb, app/brkptmgr.rb, lib/trepanning.rb,
|
2513
|
+
processor/command/break.rb, processor/command/next.rb,
|
2514
|
+
processor/command/nexti.rb, processor/command/tbreak.rb,
|
2515
|
+
test/unit/test-app-brkpt.rb, test/unit/test-app-brkptmgr.rb: Small
|
2516
|
+
things to sync up with rb-trepanning
|
2517
|
+
|
2518
|
+
2010-10-07 rocky <rockyb@rubyforge.org>
|
2519
|
+
|
2520
|
+
* processor/command/list.rb: Add current-line indicator.
|
2521
|
+
|
2522
|
+
2010-10-07 rocky <rockyb@rubyforge.org>
|
2523
|
+
|
2524
|
+
* Rakefile, app/breakpoint.rb, app/brkptmgr.rb, lib/trepanning.rb,
|
2525
|
+
processor/command/info.rb,
|
2526
|
+
processor/command/info_subcmd/breakpoints.rb,
|
2527
|
+
processor/command/tbreak.rb, test/unit/test-app-brkptmgr.rb: More
|
2528
|
+
better tests of breakpoint manager. There is some breakage remaining
|
2529
|
+
though. info_subcmd/breakpoints.rb: work on this. Again there's
|
2530
|
+
some breakage from the bp manager merge Rakefile: add task
|
2531
|
+
check:app. Correct check:command.
|
2532
|
+
|
2533
|
+
2010-10-07 rocky <rockyb@rubyforge.org>
|
2534
|
+
|
2535
|
+
* lib/trepanning.rb, processor/location.rb: Show location in same
|
2536
|
+
format as 1.9.2 debugger (and other gdb-like debuggers).
|
2537
|
+
|
2538
|
+
2010-10-07 rocky <rockyb@rubyforge.org>
|
2539
|
+
|
2540
|
+
* lib/trepanning.rb, processor/command/info_subcmd/program.rb,
|
2541
|
+
processor/command/next.rb, processor/command/nexti.rb,
|
2542
|
+
processor/location.rb, processor/main.rb: lib/trepanning.rb,
|
2543
|
+
nexti.rb, next.rb: make event names match rb-trepanning. Use string
|
2544
|
+
not symbol. location.rb: Reinstate print_location.
|
2545
|
+
|
2546
|
+
2010-10-07 rocky <rockyb@rubyforge.org>
|
2547
|
+
|
2548
|
+
* app/breakpoint.rb, lib/trepanning.rb, processor/command/break.rb,
|
2549
|
+
processor/command/info_subcmd/program.rb,
|
2550
|
+
processor/command/next.rb, processor/command/nexti.rb: Start to add
|
2551
|
+
stopped event types.
|
2552
|
+
|
2553
|
+
2010-10-07 rocky <rockyb@rubyforge.org>
|
2554
|
+
|
2555
|
+
* app/brkptmgr.rb, lib/trepanning.rb, processor/breakpoint.rb,
|
2556
|
+
processor/command/break.rb, processor/command/next.rb: Move
|
2557
|
+
set-breakpoint_method from lib/trepanning.rb into
|
2558
|
+
processor/breakpoint.rb brktmgr.rb: add rest of demo code
|
2559
|
+
lib/trepanning.rb: Don't need @breakpoints anymore. Use
|
2560
|
+
@processor.brkpts next.rb: typo.
|
2561
|
+
|
2562
|
+
2010-10-05 rocky <rockyb@rubyforge.org>
|
2563
|
+
|
2564
|
+
* app/breakpoint.rb, lib/trepanning.rb, test/unit/test-app-brkpt.rb:
|
2565
|
+
breakpoint.rb: respect setting id value when passed. Add some demo
|
2566
|
+
code. Add unit test for app/breakpoint.rb
|
2567
|
+
|
2568
|
+
2010-10-04 rocky <rockyb@rubyforge.org>
|
2569
|
+
|
2570
|
+
* app/brkptmgr.rb: Start Breakpoint manager.
|
2571
|
+
|
2572
|
+
2010-10-04 rocky <rockyb@rubyforge.org>
|
2573
|
+
|
2574
|
+
* app/breakpoint.rb, lib/trepanning.rb, processor/command/next.rb,
|
2575
|
+
processor/command/nexti.rb: Baby step towards merging breakpoint
|
2576
|
+
handling with rb-trepanning.
|
2577
|
+
|
2578
|
+
2010-09-29 rocky <rockyb@rubyforge.org>
|
2579
|
+
|
2580
|
+
* processor/command/set_subcmd/substitute.rb,
|
2581
|
+
processor/command/set_subcmd/substitute_subcmd/.gitignore,
|
2582
|
+
processor/command/set_subcmd/substitute_subcmd/path.rb: Add "set
|
2583
|
+
substitute ppath" command.
|
2584
|
+
|
2585
|
+
2010-09-27 rocky <rockyb@rubyforge.org>
|
2586
|
+
|
2587
|
+
* processor/command/info_subcmd/file.rb: Add "info file".
|
2588
|
+
|
2589
|
+
2010-09-27 rocky <rockyb@rubyforge.org>
|
2590
|
+
|
2591
|
+
* ChangeLog, processor/location.rb: Track rbx-linecache change which
|
2592
|
+
was tracking a change from linecache-tf...
|
2593
|
+
|
2594
|
+
2010-09-27 rocky <rockyb@rubyforge.org>
|
2595
|
+
|
2596
|
+
* README.textile: README tyhpo
|
2597
|
+
|
2598
|
+
2010-09-27 rocky <rockyb@rubyforge.org>
|
2599
|
+
|
2600
|
+
* README.textile: Add rbx-require-relative to README
|
2601
|
+
|
2602
|
+
2010-09-27 rocky <rockyb@rubyforge.org>
|
2603
|
+
|
2604
|
+
* README.textile: Readme typo
|
2605
|
+
|
2606
|
+
2010-09-27 rocky <rockyb@rubyforge.org>
|
2607
|
+
|
2608
|
+
* README.textile: Readme typo
|
2609
|
+
|
2610
|
+
2010-09-27 rocky <rockyb@rubyforge.org>
|
2611
|
+
|
2612
|
+
* README.textile: Small readme tweak
|
2613
|
+
|
2614
|
+
2010-09-27 rocky <rockyb@rubyforge.org>
|
2615
|
+
|
2616
|
+
* .gemspec, README.textile: Add README
|
2617
|
+
|
2618
|
+
2010-09-27 rocky <rockyb@rubyforge.org>
|
2619
|
+
|
2620
|
+
* test/unit/test-bin-trepan.rb: Add unit test for bin/trepan
|
2621
|
+
|
2622
|
+
2010-09-27 rocky <rockyb@rubyforge.org>
|
2623
|
+
|
2624
|
+
* lib/trepanning.rb, processor/main.rb,
|
2625
|
+
test/unit/test-app-options.rb, test/unit/test-app-run.rb: Run
|
2626
|
+
debugger user profile and set initial directory. Add options test.
|
2627
|
+
|
2628
|
+
2010-09-27 rocky <rockyb@rubyforge.org>
|
2629
|
+
|
2630
|
+
* processor/command/set_subcmd/max_subcmd/list.rb,
|
2631
|
+
processor/command/show_subcmd/max_subcmd/list.rb: Add "set/show max
|
2632
|
+
list"
|
2633
|
+
|
2634
|
+
2010-09-27 rocky <rockyb@rubyforge.org>
|
2635
|
+
|
2636
|
+
* processor/command/list.rb,
|
2637
|
+
processor/command/set_subcmd/max_subcmd/stack.rb,
|
2638
|
+
processor/default.rb: Add "set/show max list"
|
2639
|
+
|
2640
|
+
2010-09-27 rocky <rockyb@rubyforge.org>
|
2641
|
+
|
2642
|
+
* app/frame.rb, processor/command/continue.rb,
|
2643
|
+
processor/command/list.rb, processor/command/nexti.rb,
|
2644
|
+
processor/command/set_subcmd/auto_subcmd/list.rb,
|
2645
|
+
processor/command/show_subcmd/auto_subcmd/list.rb,
|
2646
|
+
processor/command/step.rb, processor/frame.rb, processor/main.rb,
|
2647
|
+
processor/mock.rb, processor/validate.rb: Add "list" and set/show
|
2648
|
+
autolist commands. Somewhat buggy.
|
2649
|
+
|
2650
|
+
2010-09-27 rocky <rockyb@rubyforge.org>
|
2651
|
+
|
2652
|
+
* .gemspec, lib/trepanning.rb, processor/command/directory.rb,
|
2653
|
+
processor/command/kill.rb, processor/default.rb,
|
2654
|
+
processor/location.rb, processor/main.rb: Add gdb-like 'directory'
|
2655
|
+
command so we can trace into rubinius source.
|
2656
|
+
|
2657
|
+
2010-09-26 rocky <rockyb@rubyforge.org>
|
2658
|
+
|
2659
|
+
* .gemspec, Rakefile, lib/trepanning.rb: Need require-relative
|
2660
|
+
dependency.
|
2661
|
+
|
2662
|
+
2010-09-26 rocky <rockyb@rubyforge.org>
|
2663
|
+
|
2664
|
+
* processor/command/restart.rb: Sync with rb-trepanning
|
2665
|
+
|
2666
|
+
2010-09-26 rocky <rockyb@rubyforge.org>
|
2667
|
+
|
2668
|
+
* Rakefile, app/default.rb, app/options.rb, app/run.rb, bin/trepan,
|
2669
|
+
lib/trepanning.rb, processor/command/restart.rb,
|
2670
|
+
processor/default.rb, processor/mock.rb, processor/validate.rb,
|
2671
|
+
test/unit/test-app-run.rb: Rbdbgr->Trepanning
|
2672
|
+
|
2673
|
+
2010-09-26 rocky <rockyb@rubyforge.org>
|
2674
|
+
|
2675
|
+
* THANKS: Text hacking
|
2676
|
+
|
2677
|
+
2010-09-26 rocky <rockyb@rubyforge.org>
|
2678
|
+
|
2679
|
+
* THANKS: Text hacking
|
2680
|
+
|
2681
|
+
2010-09-26 rocky <rockyb@rubyforge.org>
|
2682
|
+
|
2683
|
+
* processor/command/down.rb, processor/command/up.rb: Add "up" and
|
2684
|
+
"down" commands - this time, for sure!
|
2685
|
+
|
2686
|
+
2010-09-26 rocky <rockyb@rubyforge.org>
|
2687
|
+
|
2688
|
+
* doc/debugger.html, lib/trepanning.rb, processor/command/frame.rb,
|
2689
|
+
processor/frame.rb, processor/main.rb: Add "up" and "down" commands.
|
2690
|
+
Renstatate more of trepan's CmdProcessor frame routines.
|
2691
|
+
|
2692
|
+
2010-09-25 rocky <rockyb@rubyforge.org>
|
2693
|
+
|
2694
|
+
* .gemspec, app/default.rb, app/options.rb: Add executable. Pick up
|
2695
|
+
right command init file.
|
2696
|
+
|
2697
|
+
2010-09-25 rocky <rockyb@rubyforge.org>
|
2698
|
+
|
2699
|
+
* .gemspec, AUTHORS, Rakefile, THANKS, app/options.rb, app/run.rb,
|
2700
|
+
bin/.gitignore, bin/trepan, processor/command/break.rb: Add code to
|
2701
|
+
invoke from outset. Complete with debugger options. Needs
|
2702
|
+
improvement to skip over the crap before main.__script__ starts. Numerous other small changes.
|
2703
|
+
|
2704
|
+
2010-09-25 rocky <rockyb@rubyforge.org>
|
2705
|
+
|
2706
|
+
* .gemspec, .gitignore, AUTHORS, ChangeLog, NEWS, Rakefile,
|
2707
|
+
debugger.rb, lib/.gitignore, lib/trepanning.rb, processor/eval.rb,
|
2708
|
+
processor/mock.rb: Administrivia: do things to make a gem.
|
2709
|
+
debugger.rb -> lib/trepanning.rb So you now: require 'trepanning'
|
2710
|
+
|
2711
|
+
2010-09-25 rocky <rockyb@rubyforge.org>
|
2712
|
+
|
2713
|
+
* doc/.gitignore, doc/debugger.html: Start revised documentation.
|
2714
|
+
|
2715
|
+
2010-09-25 rocky <rockyb@rubyforge.org>
|
2716
|
+
|
2717
|
+
* app/default.rb, debugger.rb, processor/command/restart.rb,
|
2718
|
+
processor/command/show_subcmd/args.rb, processor/mock.rb: Add
|
2719
|
+
"restart" command. YAY! Means we also have "show args".
|
2720
|
+
|
2721
|
+
2010-09-25 rocky <rockyb@rubyforge.org>
|
2722
|
+
|
2723
|
+
* app/run.rb, debugger.rb, processor/command/break.rb,
|
2724
|
+
processor/eval.rb, processor/main.rb, test/unit/test-app-run.rb:
|
2725
|
+
Bang on eval(). I think I've got it this time. Start run/restart.
|
2726
|
+
|
2727
|
+
2010-09-25 rocky <rockyb@rubyforge.org>
|
2728
|
+
|
2729
|
+
* app/frame.rb, test/unit/test-proc-help.rb,
|
2730
|
+
test/unit/test-proc-hook.rb, test/unit/test-subcmd-help.rb:
|
2731
|
+
Stuffthat didn't seem to get committed last time.
|
2732
|
+
|
2733
|
+
2010-09-25 rocky <rockyb@rubyforge.org>
|
2734
|
+
|
2735
|
+
* processor/command/base/cmd.rb, processor/eval.rb,
|
2736
|
+
processor/main.rb: Add more tests back in. Attempt to disembowl eval
|
2737
|
+
code. I think some bugs were fixed.
|
2738
|
+
|
2739
|
+
2010-09-25 rocky <rockyb@rubyforge.org>
|
2740
|
+
|
2741
|
+
* app/breakpoint.rb, app/frame.rb, debugger.rb,
|
2742
|
+
processor/breakpoint.rb, processor/command/backtrace.rb,
|
2743
|
+
processor/command/base/cmd.rb, processor/command/break.rb,
|
2744
|
+
processor/command/delete.rb, processor/command/source.rb,
|
2745
|
+
processor/frame.rb, processor/main.rb, test/unit/cmd-helper.rb,
|
2746
|
+
test/unit/test-unit-exit.rb: debugger.rb : remove show_ip option.
|
2747
|
+
Goes in processor. bang on breakpoint code. move some to
|
2748
|
+
processor/breakpoint.rb processor/breakpoint.rb: more error checking
|
2749
|
+
info app/frame.rb: describe() pass in options - add show IP parameter. remove duplicate ip location app/breakpoint.rb: change
|
2750
|
+
IP location indicator from + to @. Is this right? base/cmd.rb:
|
2751
|
+
run_code() was wrong. Other misc bugs fixed.
|
2752
|
+
|
2753
|
+
2010-09-24 rocky <rockyb@rubyforge.org>
|
2754
|
+
|
2755
|
+
* processor/command/alias.rb: Reinstate showing aliases code in
|
2756
|
+
"alias" command
|
2757
|
+
|
2758
|
+
2010-09-24 rocky <rockyb@rubyforge.org>
|
2759
|
+
|
2760
|
+
* processor/command/exit.rb: Update help for exit
|
2761
|
+
|
2762
|
+
2010-09-24 rocky <rockyb@rubyforge.org>
|
2763
|
+
|
2764
|
+
* processor/command/exit.rb, processor/command/frame.rb: frame.rb:
|
2765
|
+
was in wrong category exit.rb: add q!
|
2766
|
+
|
2767
|
+
2010-09-24 rocky <rockyb@rubyforge.org>
|
2768
|
+
|
2769
|
+
* LICENSE, app/breakpoint.rb, app/frame.rb, debugger.rb,
|
2770
|
+
processor/breakpoint.rb, processor/command/base/subsubcmd.rb,
|
2771
|
+
processor/command/eval.rb,
|
2772
|
+
processor/command/info_subcmd/program.rb, processor/command/ps.rb,
|
2773
|
+
processor/command/set_subcmd/max.rb,
|
2774
|
+
processor/command/set_subcmd/max_subcmd/.gitignore,
|
2775
|
+
processor/command/set_subcmd/max_subcmd/stack.rb,
|
2776
|
+
processor/command/set_subcmd/max_subcmd/string.rb,
|
2777
|
+
processor/command/set_subcmd/max_subcmd/width.rb,
|
2778
|
+
processor/command/show_subcmd/max.rb,
|
2779
|
+
processor/command/show_subcmd/max_subcmd/.gitignore,
|
2780
|
+
processor/command/show_subcmd/max_subcmd/stack.rb,
|
2781
|
+
processor/command/show_subcmd/max_subcmd/string.rb,
|
2782
|
+
processor/command/show_subcmd/max_subcmd/width.rb,
|
2783
|
+
processor/default.rb, processor/eval.rb, processor/main.rb: Add max
|
2784
|
+
set/show subcommands "info program" processor eval now sets filename
|
2785
|
+
and we now store breakpoint ids. prompt is more inline with other
|
2786
|
+
debuggers :-(
|
2787
|
+
|
2788
|
+
2010-09-23 rocky <rockyb@rubyforge.org>
|
2789
|
+
|
2790
|
+
* debugger/.gitignore, debugger/Makefile,
|
2791
|
+
debugger/command/.gitignore, debugger/command/base/.gitignore,
|
2792
|
+
debugger/command/base/cmd.rb, debugger/command/set.rb,
|
2793
|
+
debugger/old/.gitignore, debugger/old/command.rb,
|
2794
|
+
debugger/old/debug_client.rb, debugger/old/debug_server.rb,
|
2795
|
+
debugger/old/debugger.rb, debugger/old/interface.rb,
|
2796
|
+
debugger/old/output.rb, debugger/old/standard_commands.rb,
|
2797
|
+
debugger/old/vm_commands.rb, processor/command/base/subsubcmd.rb,
|
2798
|
+
processor/command/base/subsubmgr.rb, processor/command/exit.rb,
|
2799
|
+
processor/command/set_subcmd/auto.rb,
|
2800
|
+
processor/command/set_subcmd/auto_subcmd/.gitignore,
|
2801
|
+
processor/command/set_subcmd/auto_subcmd/eval.rb,
|
2802
|
+
processor/command/show_subcmd/auto.rb,
|
2803
|
+
processor/command/show_subcmd/auto_subcmd/.gitignore,
|
2804
|
+
processor/command/show_subcmd/auto_subcmd/eval.rb,
|
2805
|
+
processor/main.rb, processor/running.rb: Add subsub commands. In
|
2806
|
+
particular: set/show autoeval.
|
2807
|
+
|
2808
|
+
2010-09-23 rocky <rockyb@rubyforge.org>
|
2809
|
+
|
2810
|
+
* debugger.rb, debugger/command/info.rb, debugger/command/show.rb,
|
2811
|
+
processor/command/break.rb, processor/command/info.rb,
|
2812
|
+
processor/command/info_subcmd/.gitignore,
|
2813
|
+
processor/command/info_subcmd/breakpoints.rb,
|
2814
|
+
processor/command/info_subcmd/method.rb,
|
2815
|
+
processor/command/info_subcmd/variables.rb,
|
2816
|
+
processor/command/set.rb, processor/command/set_subcmd/.gitignore,
|
2817
|
+
processor/command/set_subcmd/different.rb,
|
2818
|
+
processor/command/show_subcmd/different.rb, processor/default.rb,
|
2819
|
+
processor/mock.rb, processor/subcmd.rb: Finish up last of commands
|
2820
|
+
to be converted from reference debugger. Add some of routines from
|
2821
|
+
trepan for 1.9.2.
|
2822
|
+
|
2823
|
+
2010-09-23 rocky <rockyb@rubyforge.org>
|
2824
|
+
|
2825
|
+
* processor/command/base/subcmd.rb,
|
2826
|
+
processor/command/base/submgr.rb, processor/command/show.rb,
|
2827
|
+
processor/command/show_subcmd/.gitignore,
|
2828
|
+
processor/command/show_subcmd/alias.rb, processor/help.rb,
|
2829
|
+
processor/subcmd.rb: Add first subcommand: show. Take "alias" from
|
2830
|
+
trepan as the first subcommand.
|
2831
|
+
|
2832
|
+
2010-09-23 rocky <rockyb@rubyforge.org>
|
2833
|
+
|
2834
|
+
* debugger.rb, debugger/command/nexti.rb,
|
2835
|
+
processor/command/base/cmd.rb, processor/command/disassemble.rb,
|
2836
|
+
processor/command/nexti.rb, processor/eval.rb, processor/main.rb:
|
2837
|
+
Move over "nexti" command. Figure out "disassemble" problem.
|
2838
|
+
main.rb: add traceback on internal error.
|
2839
|
+
|
2840
|
+
2010-09-23 rocky <rockyb@rubyforge.org>
|
2841
|
+
|
2842
|
+
* debugger.rb, debugger/command/delete.rb,
|
2843
|
+
debugger/command/disassemble.rb, debugger/command/frame.rb,
|
2844
|
+
debugger/command/tb.rb, processor/command/backtrace.rb,
|
2845
|
+
processor/command/break.rb, processor/command/delete.rb,
|
2846
|
+
processor/command/disassemble.rb, processor/command/frame.rb,
|
2847
|
+
processor/command/tbreak.rb, processor/main.rb: Move over delete,
|
2848
|
+
frame, tbreak, backtrace, break and diassemble.
|
2849
|
+
|
2850
|
+
2010-09-23 rocky <rockyb@rubyforge.org>
|
2851
|
+
|
2852
|
+
* Rakefile, processor/command/backtrace.rb: Small changes.
|
2853
|
+
|
2854
|
+
2010-09-23 rocky <rockyb@rubyforge.org>
|
2855
|
+
|
2856
|
+
* debugger/command/break.rb, debugger/command/help.rb,
|
2857
|
+
debugger/command/step.rb, processor/command/break.rb,
|
2858
|
+
processor/command/next.rb, processor/command/step.rb: Add 'step'.
|
2859
|
+
Start 'break'.
|
2860
|
+
|
2861
|
+
2010-09-23 rocky <rockyb@rubyforge.org>
|
2862
|
+
|
2863
|
+
* debugger/command/backtrace.rb, processor/command/backtrace.rb,
|
2864
|
+
processor/command/continue.rb, processor/command/next.rb: Add
|
2865
|
+
backtrace
|
2866
|
+
|
2867
|
+
2010-09-23 rocky <rockyb@rubyforge.org>
|
2868
|
+
|
2869
|
+
* debugger.rb, processor/frame.rb, processor/hook.rb,
|
2870
|
+
processor/main.rb: Move process-command code from debugger.rb into
|
2871
|
+
into processor/main.rb Add hook code from 1.9.2 trepan. Not used yet
|
2872
|
+
though.
|
2873
|
+
|
2874
|
+
2010-09-22 rocky <rockyb@rubyforge.org>
|
2875
|
+
|
2876
|
+
* debugger.rb, debugger/command/eval.rb,
|
2877
|
+
processor/command/base/cmd.rb, processor/command/eval.rb,
|
2878
|
+
processor/command/help.rb, processor/command/next.rb,
|
2879
|
+
processor/mock.rb: Add command eval. Short help working In 1.8
|
2880
|
+
class.constants are strings while in 1.9 class.constants are
|
2881
|
+
symbols.
|
2882
|
+
|
2883
|
+
2010-09-22 rocky <rockyb@rubyforge.org>
|
2884
|
+
|
2885
|
+
* Makefile, debugger.rb, debugger/command/continue.rb,
|
2886
|
+
debugger/command/kill.rb, processor/command/alias.rb,
|
2887
|
+
processor/command/continue.rb, processor/command/next.rb,
|
2888
|
+
processor/command/unalias.rb, test/unit/test-cmd-alias.rb: Add
|
2889
|
+
'continue', 'alias', and 'unalias' commands.
|
2890
|
+
|
2891
|
+
2010-09-22 rocky <rockyb@rubyforge.org>
|
2892
|
+
|
2893
|
+
* Rakefile, debugger.rb, debugger/command/next.rb,
|
2894
|
+
processor/command/help.rb, processor/command/next.rb,
|
2895
|
+
processor/frame.rb, processor/main.rb, test/unit/test-cmd-help.rb:
|
2896
|
+
First stepping command, "next" now does something.
|
2897
|
+
|
2898
|
+
2010-09-22 rocky <rockyb@rubyforge.org>
|
2899
|
+
|
2900
|
+
* test/unit/test-proc-main.rb, test/unit/test-proc-validate.rb: Unit
|
2901
|
+
tests for processor/main.rb and processor/validate.rb
|
2902
|
+
|
2903
|
+
2010-09-22 rocky <rockyb@rubyforge.org>
|
2904
|
+
|
2905
|
+
* processor/command/kill.rb, processor/main.rb,
|
2906
|
+
processor/validate.rb: Add validation routines. Some parts are
|
2907
|
+
commented out for now.
|
2908
|
+
|
2909
|
+
2010-09-22 rocky <rockyb@rubyforge.org>
|
2910
|
+
|
2911
|
+
* Rakefile, app/breakpoint.rb, app/display.rb, app/frame.rb,
|
2912
|
+
app/util.rb, debugger.rb, debugger/breakpoint.rb,
|
2913
|
+
debugger/display.rb, debugger/frame.rb,
|
2914
|
+
processor/command/base/cmd.rb, processor/command/kill.rb,
|
2915
|
+
processor/load_cmds.rb, processor/main.rb, processor/msg.rb,
|
2916
|
+
test/unit/test-app-util.rb, test/unit/test-intf-user.rb: Our first
|
2917
|
+
commands -- 'help' and 'kill' under the reorganization!
|
2918
|
+
|
2919
|
+
2010-09-22 rocky <rockyb@rubyforge.org>
|
2920
|
+
|
2921
|
+
* .gitignore, Rakefile, app/.gitignore, app/default.rb,
|
2922
|
+
app/mock.rb, debugger/command/next.rb, interface/.gitignore,
|
2923
|
+
interface/base_intf.rb, interface/script.rb, interface/user.rb,
|
2924
|
+
io/.gitignore, io/base_io.rb, io/input.rb, io/string_array.rb,
|
2925
|
+
processor/.gitignore, processor/command/.gitignore,
|
2926
|
+
processor/command/base/.gitignore, processor/command/base/cmd.rb,
|
2927
|
+
processor/command/help.rb, processor/command/kill.rb,
|
2928
|
+
processor/default.rb, processor/load_cmds.rb, processor/main.rb,
|
2929
|
+
processor/mock.rb, test/unit/.gitignore, test/unit/cmd-helper.rb,
|
2930
|
+
test/unit/test-cmd-help.rb, test/unit/test-cmd-kill.rb,
|
2931
|
+
test/unit/test-io-input.rb, test/unit/test-proc-load_cmds.rb: Get
|
2932
|
+
command loading boilerplate. Help is there now. Interface added.
|
2933
|
+
And even some of the unit tests!
|
2934
|
+
|
2935
|
+
2010-09-21 rocky <rockyb@rubyforge.org>
|
2936
|
+
|
2937
|
+
* debugger/command/base/cmd.rb: Small cleanup before big
|
2938
|
+
reorganization
|
2939
|
+
|
2940
|
+
2010-09-21 rocky <rockyb@rubyforge.org>
|
2941
|
+
|
2942
|
+
* Makefile, Rakefile, debugger.rb, debugger/.gitignore,
|
2943
|
+
debugger/Makefile, debugger/breakpoint.rb,
|
2944
|
+
debugger/command/backtrace.rb, debugger/command/base/.gitignore,
|
2945
|
+
debugger/command/base/cmd.rb, debugger/command/break.rb,
|
2946
|
+
debugger/command/continue.rb, debugger/command/delete.rb,
|
2947
|
+
debugger/command/disassemble.rb, debugger/command/eval.rb,
|
2948
|
+
debugger/command/frame.rb, debugger/command/help.rb,
|
2949
|
+
debugger/command/info.rb, debugger/command/kill.rb,
|
2950
|
+
debugger/command/next.rb, debugger/command/nexti.rb,
|
2951
|
+
debugger/command/set.rb, debugger/command/show.rb,
|
2952
|
+
debugger/command/step.rb, debugger/command/tb.rb,
|
2953
|
+
debugger/commands.rb, debugger/display.rb, debugger/frame.rb: Put
|
2954
|
+
all commands in the 'command' directory. Add temporary hack to keep
|
2955
|
+
Command.command singleton array from growing on running each
|
2956
|
+
debugger command.
|
2957
|
+
|
2958
|
+
2010-09-18 rvm <rocky-rvm@static-71-183-236-17.nycmny.fios.verizon.net>
|
2959
|
+
|
2960
|
+
* .gitignore, debugger.rb, debugger/command/.gitignore,
|
2961
|
+
debugger/command/eval.rb, debugger/command/kill.rb,
|
2962
|
+
debugger/commands.rb: Move commands to a 'command' directory.
|
2963
|
+
|
2964
|
+
2010-09-17 rvm <rocky-rvm@static-71-183-236-17.nycmny.fios.verizon.net>
|
2965
|
+
|
2966
|
+
* Initial debugger import from rubinius.
|
2967
|
+
|