rbx-trepanning 0.0.5-universal-rubinius-1.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (266) hide show
  1. data/ChangeLog +2002 -0
  2. data/LICENSE +25 -0
  3. data/NEWS +31 -0
  4. data/README.textile +34 -0
  5. data/Rakefile +165 -0
  6. data/THANKS +14 -0
  7. data/app/breakpoint.rb +219 -0
  8. data/app/breakpoint.rbc +3551 -0
  9. data/app/brkptmgr.rb +140 -0
  10. data/app/brkptmgr.rbc +2903 -0
  11. data/app/client.rb +61 -0
  12. data/app/client.rbc +1225 -0
  13. data/app/complete.rb +52 -0
  14. data/app/complete.rbc +1288 -0
  15. data/app/default.rb +71 -0
  16. data/app/default.rbc +1132 -0
  17. data/app/display.rb +148 -0
  18. data/app/display.rbc +2578 -0
  19. data/app/frame.rb +98 -0
  20. data/app/frame.rbc +1808 -0
  21. data/app/irb.rb +111 -0
  22. data/app/irb.rbc +2094 -0
  23. data/app/iseq.rb +117 -0
  24. data/app/iseq.rbc +2192 -0
  25. data/app/llvm.rbc +2478 -0
  26. data/app/method.rb +173 -0
  27. data/app/method.rbc +2492 -0
  28. data/app/method_name.rbc +2467 -0
  29. data/app/mock.rb +13 -0
  30. data/app/mock.rbc +398 -0
  31. data/app/options.rb +137 -0
  32. data/app/options.rbc +2898 -0
  33. data/app/rbx-llvm.rb +165 -0
  34. data/app/rbx-llvm.rbc +2478 -0
  35. data/app/run.rb +86 -0
  36. data/app/run.rbc +1244 -0
  37. data/app/util.rb +49 -0
  38. data/app/util.rbc +1146 -0
  39. data/app/validate.rb +30 -0
  40. data/app/validate.rbc +676 -0
  41. data/bin/trepan.compiled.rbc +1043 -0
  42. data/bin/trepanx +69 -0
  43. data/bin/trepanx.compiled.rbc +1049 -0
  44. data/data/irbrc +41 -0
  45. data/data/irbrc.compiled.rbc +640 -0
  46. data/interface/base_intf.rb +105 -0
  47. data/interface/base_intf.rbc +1899 -0
  48. data/interface/client.rb +80 -0
  49. data/interface/client.rbc +1072 -0
  50. data/interface/comcodes.rb +20 -0
  51. data/interface/comcodes.rbc +385 -0
  52. data/interface/script.rb +104 -0
  53. data/interface/script.rbc +1642 -0
  54. data/interface/server.rb +143 -0
  55. data/interface/server.rbc +2213 -0
  56. data/interface/user.rb +150 -0
  57. data/interface/user.rbc +2867 -0
  58. data/io/base_io.rb +148 -0
  59. data/io/base_io.rbc +2111 -0
  60. data/io/input.rb +135 -0
  61. data/io/input.rbc +2528 -0
  62. data/io/null_output.rb +42 -0
  63. data/io/null_output.rbc +730 -0
  64. data/io/string_array.rb +156 -0
  65. data/io/string_array.rbc +2466 -0
  66. data/io/tcpclient.rb +129 -0
  67. data/io/tcpclient.rbc +2419 -0
  68. data/io/tcpfns.rb +33 -0
  69. data/io/tcpfns.rbc +694 -0
  70. data/io/tcpserver.rb +141 -0
  71. data/io/tcpserver.rbc +2638 -0
  72. data/lib/trepanning.rb +474 -0
  73. data/lib/trepanning.rbc +7705 -0
  74. data/lib/trepanning2.rb +441 -0
  75. data/processor/breakpoint.rb +164 -0
  76. data/processor/command/alias.rb +55 -0
  77. data/processor/command/backtrace.rb +76 -0
  78. data/processor/command/base/cmd.rb +173 -0
  79. data/processor/command/base/subcmd.rb +229 -0
  80. data/processor/command/base/submgr.rb +182 -0
  81. data/processor/command/base/subsubcmd.rb +103 -0
  82. data/processor/command/base/subsubmgr.rb +195 -0
  83. data/processor/command/break.rb +100 -0
  84. data/processor/command/complete.rb +37 -0
  85. data/processor/command/continue.rb +91 -0
  86. data/processor/command/delete.rb +30 -0
  87. data/processor/command/directory.rb +51 -0
  88. data/processor/command/disassemble.rb +145 -0
  89. data/processor/command/display.rb +82 -0
  90. data/processor/command/down.rb +54 -0
  91. data/processor/command/eval.rb +51 -0
  92. data/processor/command/exit.rb +62 -0
  93. data/processor/command/finish.rb +80 -0
  94. data/processor/command/frame.rb +89 -0
  95. data/processor/command/help.rb +251 -0
  96. data/processor/command/info.rb +28 -0
  97. data/processor/command/info_subcmd/breakpoints.rb +73 -0
  98. data/processor/command/info_subcmd/files.rb +209 -0
  99. data/processor/command/info_subcmd/line.rb +86 -0
  100. data/processor/command/info_subcmd/method.rb +71 -0
  101. data/processor/command/info_subcmd/program.rb +49 -0
  102. data/processor/command/info_subcmd/ruby.rb +62 -0
  103. data/processor/command/info_subcmd/variables.rb +48 -0
  104. data/processor/command/irb.rb +128 -0
  105. data/processor/command/kill.rb +70 -0
  106. data/processor/command/list.rb +300 -0
  107. data/processor/command/macro.rb +76 -0
  108. data/processor/command/next.rb +66 -0
  109. data/processor/command/nexti.rb +59 -0
  110. data/processor/command/pr.rb +38 -0
  111. data/processor/command/ps.rb +40 -0
  112. data/processor/command/restart.rb +60 -0
  113. data/processor/command/server.rb +72 -0
  114. data/processor/command/set.rb +47 -0
  115. data/processor/command/set_subcmd/auto.rb +27 -0
  116. data/processor/command/set_subcmd/auto_subcmd/dis.rb +33 -0
  117. data/processor/command/set_subcmd/auto_subcmd/eval.rb +54 -0
  118. data/processor/command/set_subcmd/auto_subcmd/irb.rb +34 -0
  119. data/processor/command/set_subcmd/auto_subcmd/list.rb +34 -0
  120. data/processor/command/set_subcmd/basename.rb +25 -0
  121. data/processor/command/set_subcmd/confirm.rb +24 -0
  122. data/processor/command/set_subcmd/debug.rb +26 -0
  123. data/processor/command/set_subcmd/debug_subcmd/dbgr.rb +36 -0
  124. data/processor/command/set_subcmd/debug_subcmd/skip.rb +23 -0
  125. data/processor/command/set_subcmd/debug_subcmd/step.rb +23 -0
  126. data/processor/command/set_subcmd/different.rb +59 -0
  127. data/processor/command/set_subcmd/hidelevel.rb +62 -0
  128. data/processor/command/set_subcmd/highlight.rb +33 -0
  129. data/processor/command/set_subcmd/kernelstep.rb +60 -0
  130. data/processor/command/set_subcmd/max.rb +26 -0
  131. data/processor/command/set_subcmd/max_subcmd/list.rb +49 -0
  132. data/processor/command/set_subcmd/max_subcmd/stack.rb +50 -0
  133. data/processor/command/set_subcmd/max_subcmd/string.rb +76 -0
  134. data/processor/command/set_subcmd/max_subcmd/width.rb +49 -0
  135. data/processor/command/set_subcmd/substitute.rb +24 -0
  136. data/processor/command/set_subcmd/substitute_subcmd/path.rb +56 -0
  137. data/processor/command/set_subcmd/trace.rb +36 -0
  138. data/processor/command/set_subcmd/trace_subcmd/print.rb +57 -0
  139. data/processor/command/show.rb +38 -0
  140. data/processor/command/show_subcmd/alias.rb +42 -0
  141. data/processor/command/show_subcmd/args.rb +25 -0
  142. data/processor/command/show_subcmd/auto.rb +28 -0
  143. data/processor/command/show_subcmd/auto_subcmd/dis.rb +37 -0
  144. data/processor/command/show_subcmd/auto_subcmd/eval.rb +28 -0
  145. data/processor/command/show_subcmd/auto_subcmd/irb.rb +23 -0
  146. data/processor/command/show_subcmd/auto_subcmd/list.rb +22 -0
  147. data/processor/command/show_subcmd/basename.rb +20 -0
  148. data/processor/command/show_subcmd/confirm.rb +18 -0
  149. data/processor/command/show_subcmd/debug.rb +26 -0
  150. data/processor/command/show_subcmd/debug_subcmd/dbgr.rb +21 -0
  151. data/processor/command/show_subcmd/debug_subcmd/skip.rb +22 -0
  152. data/processor/command/show_subcmd/debug_subcmd/step.rb +22 -0
  153. data/processor/command/show_subcmd/different.rb +26 -0
  154. data/processor/command/show_subcmd/hidelevel.rb +41 -0
  155. data/processor/command/show_subcmd/highlight.rb +24 -0
  156. data/processor/command/show_subcmd/kernelstep.rb +34 -0
  157. data/processor/command/show_subcmd/max.rb +27 -0
  158. data/processor/command/show_subcmd/max_subcmd/list.rb +38 -0
  159. data/processor/command/show_subcmd/max_subcmd/stack.rb +36 -0
  160. data/processor/command/show_subcmd/max_subcmd/string.rb +42 -0
  161. data/processor/command/show_subcmd/max_subcmd/width.rb +37 -0
  162. data/processor/command/show_subcmd/trace.rb +27 -0
  163. data/processor/command/show_subcmd/trace_subcmd/print.rb +38 -0
  164. data/processor/command/show_subcmd/version.rb +23 -0
  165. data/processor/command/source.rb +126 -0
  166. data/processor/command/step.rb +84 -0
  167. data/processor/command/tbreak.rb +19 -0
  168. data/processor/command/unalias.rb +44 -0
  169. data/processor/command/undisplay.rb +59 -0
  170. data/processor/command/up.rb +86 -0
  171. data/processor/default.rb +58 -0
  172. data/processor/disassemble.rb +46 -0
  173. data/processor/display.rb +18 -0
  174. data/processor/eval.rb +96 -0
  175. data/processor/frame.rb +211 -0
  176. data/processor/help.rb +72 -0
  177. data/processor/hook.rb +133 -0
  178. data/processor/load_cmds.rb +185 -0
  179. data/processor/location.rb +137 -0
  180. data/processor/main.rb +412 -0
  181. data/processor/mock.rb +144 -0
  182. data/processor/msg.rb +43 -0
  183. data/processor/running.rb +234 -0
  184. data/processor/stepping.rb +114 -0
  185. data/processor/subcmd.rb +161 -0
  186. data/processor/validate.rb +355 -0
  187. data/sample/list-terminal-colors.rb +139 -0
  188. data/sample/list-terminal-colors.rbc +2318 -0
  189. data/sample/rocky-dot-trepanxrc +14 -0
  190. data/sample/rocky-trepanx-colors.rb +47 -0
  191. data/sample/rocky-trepanx-colors.rbc +530 -0
  192. data/test/data/enable.right +36 -0
  193. data/test/data/fname-with-blank.cmd +6 -0
  194. data/test/data/fname-with-blank.right +4 -0
  195. data/test/data/inline-call.cmd +6 -0
  196. data/test/data/inline-call.right +13 -0
  197. data/test/data/quit-Xdebug.right +3 -0
  198. data/test/data/quit.cmd +5 -0
  199. data/test/data/quit.right +2 -0
  200. data/test/data/quit2.cmd +6 -0
  201. data/test/data/quit2.right +3 -0
  202. data/test/data/step-bug.cmd +11 -0
  203. data/test/data/step-bug.right +3 -0
  204. data/test/example/fname with blank.rb +1 -0
  205. data/test/example/gcd-server.rb +22 -0
  206. data/test/example/gcd.rb +19 -0
  207. data/test/example/inline-call.rb +23 -0
  208. data/test/example/null.rb +1 -0
  209. data/test/example/step-bug.rb +14 -0
  210. data/test/example/thread1.rb +3 -0
  211. data/test/functional/fn_helper.rb +112 -0
  212. data/test/functional/test-break-name.rb +52 -0
  213. data/test/functional/test-break.rb +51 -0
  214. data/test/functional/test-finish.rb +70 -0
  215. data/test/functional/test-fn_helper.rb +43 -0
  216. data/test/functional/test-list.rb +55 -0
  217. data/test/functional/test-next-bug.rb +49 -0
  218. data/test/functional/test-next.rb +101 -0
  219. data/test/functional/test-step.rb +272 -0
  220. data/test/functional/test-step2.rb +35 -0
  221. data/test/functional/test-tbreak.rb +41 -0
  222. data/test/integration/file-diff.rb +89 -0
  223. data/test/integration/helper.rb +78 -0
  224. data/test/integration/skip-test-step-bug.rb +17 -0
  225. data/test/integration/test-fname-with-blank.rb +16 -0
  226. data/test/integration/test-inline-call.rb +20 -0
  227. data/test/integration/test-quit.rb +47 -0
  228. data/test/unit/cmd-helper.rb +50 -0
  229. data/test/unit/mock-helper.rb +10 -0
  230. data/test/unit/test-app-brkpt.rb +29 -0
  231. data/test/unit/test-app-brkptmgr.rb +51 -0
  232. data/test/unit/test-app-iseq.rb +64 -0
  233. data/test/unit/test-app-method.rb +54 -0
  234. data/test/unit/test-app-options.rb +82 -0
  235. data/test/unit/test-app-run.rb +16 -0
  236. data/test/unit/test-app-util.rb +27 -0
  237. data/test/unit/test-app-validate.rb +18 -0
  238. data/test/unit/test-base-cmd.rb +47 -0
  239. data/test/unit/test-base-subcmd.rb +61 -0
  240. data/test/unit/test-base-submgr.rb +24 -0
  241. data/test/unit/test-bin-trepanx.rb +48 -0
  242. data/test/unit/test-cmd-alias.rb +48 -0
  243. data/test/unit/test-cmd-break.rb +22 -0
  244. data/test/unit/test-cmd-exit.rb +27 -0
  245. data/test/unit/test-cmd-finish.rb +27 -0
  246. data/test/unit/test-cmd-help.rb +104 -0
  247. data/test/unit/test-cmd-kill.rb +47 -0
  248. data/test/unit/test-cmd-source.rb +34 -0
  249. data/test/unit/test-cmd-step.rb +29 -0
  250. data/test/unit/test-completion.rb +38 -0
  251. data/test/unit/test-intf-user.rb +46 -0
  252. data/test/unit/test-io-input.rb +27 -0
  253. data/test/unit/test-io-tcp.rb +33 -0
  254. data/test/unit/test-io-tcpclient.rb +54 -0
  255. data/test/unit/test-io-tcpfns.rb +17 -0
  256. data/test/unit/test-io-tcpserver.rb +50 -0
  257. data/test/unit/test-proc-eval.rb +36 -0
  258. data/test/unit/test-proc-frame.rb +79 -0
  259. data/test/unit/test-proc-help.rb +16 -0
  260. data/test/unit/test-proc-hook.rb +30 -0
  261. data/test/unit/test-proc-load_cmds.rb +50 -0
  262. data/test/unit/test-proc-location.rb +53 -0
  263. data/test/unit/test-proc-main.rb +99 -0
  264. data/test/unit/test-proc-validate.rb +91 -0
  265. data/test/unit/test-subcmd-help.rb +47 -0
  266. metadata +398 -0
@@ -0,0 +1,2002 @@
1
+ 2011-02-15 rocky <rockyb@rubyforge.org>
2
+
3
+ * .gemspec, Rakefile, app/options.rb: Get ready for 0.0.5 release
4
+
5
+ 2011-02-15 rocky <rockyb@rubyforge.org>
6
+
7
+ * app/options.rb: Clean up usage text
8
+
9
+ 2011-02-15 rocky <rockyb@rubyforge.org>
10
+
11
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
12
+
13
+ 2011-02-15 rocky <rockyb@rubyforge.org>
14
+
15
+ * bin/trepanx, processor/validate.rb: Small bugs. validate: handling
16
+ get_an_int error msg. trepanx: option name is now highlight, not
17
+ readline
18
+
19
+ 2011-02-15 rocky <rockyb@rubyforge.org>
20
+
21
+ * bin/trepanx, processor/validate.rb: Small bugs. validate: handling
22
+ get_an_int error msg. trepanx: option name is now highlight, not
23
+ readline
24
+
25
+ 2011-02-15 rocky <rockyb@rubyforge.org>
26
+
27
+ * .gemspec, ChangeLog, NEWS, app/options.rb, bin/trepanx,
28
+ interface/user.rb, io/input.rb, lib/trepanning.rb: Add --readline
29
+ and --no-readline options to trepanx .gemspec: was missing data
30
+ directory Update NEWS in preparation for a release.
31
+
32
+ 2011-02-14 rocky <rockyb@rubyforge.org>
33
+
34
+ * processor/command/macro.rb, processor/load_cmds.rb: Add macros to
35
+ list of initial completions. Better fin+ macro example
36
+
37
+ 2011-02-14 rocky <rockyb@rubyforge.org>
38
+
39
+ * .gemspec, app/method.rb, app/method_name.citrus,
40
+ app/method_name.rb, lib/trepanning.rb, processor/breakpoint.rb,
41
+ processor/command/break.rb, processor/command/disassemble.rb,
42
+ processor/stepping.rb, processor/validate.rb,
43
+ test/unit/test-proc-validate.rb: first_line_on_ip's "not found" is
44
+ now nil for next rubinius release. Remove citrus-related code and
45
+ Method name lookup. Will reinstate after a release with kpeg.
46
+ Prevent breakpoint resolve! from getting in an infinite loop.
47
+
48
+ 2011-02-14 rocky <rockyb@rubyforge.org>
49
+
50
+ * processor/command/macro.rb: Typo
51
+
52
+ 2011-02-14 rocky <rockyb@rubyforge.org>
53
+
54
+ * processor/command/help.rb, processor/command/macro.rb,
55
+ processor/main.rb: macro.rb: Macros are more useful now. An array of
56
+ strings pushes additional commands on the command queue. help.rb:
57
+ Show aliases and macros in help *. Add help for exach of these
58
+ individually. 3
59
+
60
+ 2011-02-13 rocky <rockyb@rubyforge.org>
61
+
62
+ * interface/user.rb: Remove extraneous line in saving history
63
+
64
+ 2011-02-13 rocky <rockyb@rubyforge.org>
65
+
66
+ * interface/user.rb: Remove duplicate history save
67
+
68
+ 2011-02-13 rocky <rockyb@rubyforge.org>
69
+
70
+ * .gemspec, app/method_name.citrus, app/method_name.rb,
71
+ io/tcpclient.rb, processor/command/break.rb,
72
+ processor/command/disassemble.rb, processor/validate.rb,
73
+ test/unit/test-io-tcpclient.rb, test/unit/test-proc-validate.rb: Use
74
+ citus to parse method names avoiding use of eval which is safer. Add
75
+ disconnected? to tcpclient.
76
+
77
+ 2011-02-12 rocky <rockyb@rubyforge.org>
78
+
79
+ * processor/command/continue.rb: Sync continue somewhat with
80
+ rb-trepanning
81
+
82
+ 2011-02-12 rocky <rockyb@rubyforge.org>
83
+
84
+ * processor/command/info_subcmd/files.rb: Add mtime and ctime.
85
+
86
+ 2011-02-11 rocky <rockyb@rubyforge.org>
87
+
88
+ * test/unit/test-io-tcpclient.rb, test/unit/test-subcmd-help.rb:
89
+ Subcommand HELP constant is set correcltly, so remove message and
90
+ add test.
91
+
92
+ 2011-02-11 rocky <rockyb@rubyforge.org>
93
+
94
+ * processor/command/info_subcmd/files.rb,
95
+ processor/command/info_subcmd/line.rb,
96
+ processor/command/info_subcmd/program.rb,
97
+ processor/command/info_subcmd/variables.rb, processor/mock.rb: Clean
98
+ up/DRY "info" standalone code
99
+
100
+ 2011-02-11 rocky <rockyb@rubyforge.org>
101
+
102
+ * processor/command/info_subcmd/ruby.rb: Small change
103
+
104
+ 2011-02-11 rocky <rockyb@rubyforge.org>
105
+
106
+ * processor/command/info_subcmd/rubinius.rb,
107
+ processor/command/info_subcmd/ruby.rb: info rubinius -> info ruby.
108
+ To be more compatible with rb-trepanning
109
+
110
+ 2011-02-11 rocky <rockyb@rubyforge.org>
111
+
112
+ * processor/command/info_subcmd/rubinius.rb,
113
+ processor/command/set_subcmd/confirm.rb,
114
+ processor/command/show_subcmd/confirm.rb: Ad "info rubinius" akin to
115
+ rbx -v or rbx -vv. Add gdb set/show confirm.
116
+
117
+ 2011-02-11 rocky <rockyb@rubyforge.org>
118
+
119
+ * Rakefile, test/unit/test-completion.rb: Pass --verbose option to
120
+ rake tasks properly.
121
+
122
+ 2011-02-11 rocky <rockyb@rubyforge.org>
123
+
124
+ * io/input.rb, test/unit/test-completion.rb: Make sure readline
125
+ finalize is done only once.
126
+
127
+ 2011-02-10 rocky <rockyb@rubyforge.org>
128
+
129
+ * interface/user.rb, lib/trepanning.rb,
130
+ test/integration/test-quit.rb: lib/trepanning.rb: stop-gap stop.
131
+ Reinstate save-history.
132
+
133
+ 2011-02-10 rocky <rockyb@rubyforge.org>
134
+
135
+ * test/unit/test-completion.rb: Hacky way to make sure we turn off
136
+ finalize and Readline.
137
+
138
+ 2011-02-10 rocky <rockyb@rubyforge.org>
139
+
140
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
141
+ Conflicts: interface/base_intf.rb interface/user.rb
142
+ processor/command/irb.rb processor/main.rb
143
+
144
+ 2011-02-10 rocky <rockyb@rubyforge.org>
145
+
146
+ * app/irb.rb, interface/base_intf.rb, interface/user.rb,
147
+ processor/command/irb.rb, processor/main.rb, processor/mock.rb,
148
+ test/unit/test-intf-user.rb, test/unit/test-proc-eval.rb: Work on
149
+ history reading and saving and in between irb sessions although
150
+ somewhat disabled for now.
151
+
152
+ 2011-02-09 rocky <rockyb@rubyforge.org>
153
+
154
+ * processor/command/info_subcmd/line.rb,
155
+ processor/command/info_subcmd/program.rb: Start a gdb "info line"
156
+ command.
157
+
158
+ 2011-02-09 rocky <rockyb@rubyforge.org>
159
+
160
+ * processor/command/show_subcmd/basename.rb,
161
+ processor/command/show_subcmd/max.rb, processor/default.rb,
162
+ processor/validate.rb, test/data/quit2.cmd, test/data/quit2.right,
163
+ test/integration/helper.rb, test/integration/test-quit.rb: Add
164
+ set/show confirm
165
+
166
+ 2011-02-09 rocky <rockyb@rubyforge.org>
167
+
168
+ * lib/trepanning.rb, processor/command/irb.rb: Change completion
169
+ proc on entering and leaving irb
170
+
171
+ 2011-02-09 rocky <rockyb@rubyforge.org>
172
+
173
+ * processor/command/eval.rb: Sync with rb-trepanning
174
+
175
+ 2011-02-08 rocky <rockyb@rubyforge.org>
176
+
177
+ * processor/command/eval.rb, processor/location.rb: eval without a
178
+ string eval's the current source code. Update and expand 'eval' help
179
+ text.
180
+
181
+ 2011-02-08 rocky <rockyb@rubyforge.org>
182
+
183
+ * interface/base_intf.rb, interface/user.rb, io/input.rb,
184
+ lib/trepanning.rb, processor/default.rb, processor/main.rb: Save
185
+ debugger commands in history now. Move history saving code from
186
+ debugger into user interface. Save history file on exit in
187
+ finalization routine.
188
+
189
+ 2011-02-06 rocky <rockyb@rubyforge.org>
190
+
191
+ * processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
192
+ processor/load_cmds.rb, sample/rocky-trepanx-colors.rb,
193
+ test/unit/test-base-cmd.rb, test/unit/test-completion.rb: Fix bug in
194
+ completing an initial list of commands (null string '').
195
+
196
+ 2011-02-06 rocky <rockyb@rubyforge.org>
197
+
198
+ * processor/command/info_subcmd/file.rb,
199
+ processor/command/info_subcmd/files.rb: info file -> info files to
200
+ match gdb better. Dynamic list completion in info files. Usual
201
+ cleanups
202
+
203
+ 2011-02-06 rocky <rockyb@rubyforge.org>
204
+
205
+ * processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
206
+ test/unit/test-base-subcmd.rb: Allow for more dynamic setting of
207
+ completion array. Some other minor corrections. Sync with
208
+ rb-trepanning.
209
+
210
+ 2011-02-05 rocky <rockyb@rubyforge.org>
211
+
212
+ * io/tcpfns.rb, io/tcpserver.rb, lib/trepanning.rb,
213
+ test/unit/test-completion.rb: Syn with rb-trepanning
214
+
215
+ 2011-02-05 rocky <rockyb@rubyforge.org>
216
+
217
+ * lib/trepanning.rb: Wrong default variable name in completion
218
+
219
+ 2011-02-05 rocky <rockyb@rubyforge.org>
220
+
221
+ * lib/trepanning.rb: Add comments to completion - it is a little
222
+ subtle
223
+
224
+ 2011-02-05 rocky <rockyb@rubyforge.org>
225
+
226
+ * lib/trepanning.rb, processor/load_cmds.rb,
227
+ test/unit/test-completion.rb: Add space to completion when last
228
+ token is complete. Break completion into its own routine and we now
229
+ start testing that.
230
+
231
+ 2011-02-04 rocky <rockyb@rubyforge.org>
232
+
233
+ * README.textile: Nope ```ruby does not work for README on gitub :-/
234
+
235
+
236
+ 2011-02-04 rocky <rockyb@rubyforge.org>
237
+
238
+ * README.textile: Nope ```ruby does not work for README on gitub :-/
239
+
240
+
241
+ 2011-02-04 rocky <rockyb@rubyforge.org>
242
+
243
+ * README.textile: Nope ```ruby does not work for README on gitub :-/
244
+
245
+
246
+ 2011-02-04 rocky <rockyb@rubyforge.org>
247
+
248
+ * README.textile: Nope ```ruby does not work for README on gitub :-/
249
+
250
+
251
+ 2011-02-04 rocky <rockyb@rubyforge.org>
252
+
253
+ * README.textile, io/input.rb, lib/trepanning.rb,
254
+ processor/command/complete.rb, processor/command/set_subcmd/max.rb,
255
+ processor/load_cmds.rb: Back off of trying to complete anything
256
+ other than the last token in completion. io/input.rb Remove
257
+ Readline.rl_line_buffer= READE.textile: cooler code formatting.
258
+
259
+ 2011-02-04 rocky <rockyb@rubyforge.org>
260
+
261
+ * io/input.rb, processor/command/base/subcmd.rb: input.rb: add
262
+ termination routine for readline on interrupt subcmd.rb: add
263
+ completion for set boolean (on/off).
264
+
265
+ 2011-02-04 rocky <rockyb@rubyforge.org>
266
+
267
+ * interface/user.rb, io/input.rb, processor/command/help.rb,
268
+ processor/command/set_subcmd/max.rb, processor/load_cmds.rb: More
269
+ completion work: for help and help command <complete>. Bug in not
270
+ setting prompt in readline fixed.
271
+
272
+ 2011-02-04 rocky <rockyb@rubyforge.org>
273
+
274
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
275
+ Conflicts: processor/command/base/subsubmgr.rb
276
+ processor/load_cmds.rb
277
+
278
+ 2011-02-04 rocky <rockyb@rubyforge.org>
279
+
280
+ * app/complete.rb, app/util.rb, interface/comcodes.rb,
281
+ io/tcpfns.rb, processor/command/base/cmd.rb,
282
+ processor/command/base/submgr.rb,
283
+ processor/command/base/subsubmgr.rb, processor/command/help.rb,
284
+ processor/command/info_subcmd/file.rb, processor/load_cmds.rb,
285
+ processor/subcmd.rb, test/unit/test-app-util.rb: Expand completion
286
+ one level down. Needs refactoring. Sync with rb-trepanning.
287
+
288
+ 2011-02-04 rocky <rockyb@rubyforge.org>
289
+
290
+ * processor/command/base/subsubmgr.rb,
291
+ processor/command/set_subcmd/max.rb, processor/load_cmds.rb,
292
+ processor/location.rb: Inch forward in handling sub-subcommand
293
+ completion.
294
+
295
+ 2011-02-03 rocky <rockyb@rubyforge.org>
296
+
297
+ * Rakefile, app/util.rb, processor/command/base/cmd.rb,
298
+ processor/command/base/submgr.rb, processor/command/help.rb,
299
+ processor/command/show.rb, processor/command/source.rb,
300
+ processor/load_cmds.rb, test/unit/test-app-util.rb,
301
+ test/unit/test-cmd-help.rb: Sync with rb-trepanning. Adding more
302
+ completion help. Running check: tasks. DRYing code.
303
+
304
+ 2011-02-03 rocky <rockyb@rubyforge.org>
305
+
306
+ * interface/user.rb, io/input.rb, io/tcpserver.rb,
307
+ lib/trepanning.rb, processor/command/base/submgr.rb,
308
+ processor/load_cmds.rb: Completion now using rb-readline.
309
+
310
+ 2011-02-02 rocky <rockyb@rubyforge.org>
311
+
312
+ * processor/command/base/submgr.rb,
313
+ processor/command/show_subcmd/auto.rb, processor/load_cmds.rb,
314
+ test/unit/test-base-submgr.rb, test/unit/test-proc-load_cmds.rb:
315
+ More work on completion: handle completing subcommands
316
+
317
+ 2011-02-02 rocky <rockyb@rubyforge.org>
318
+
319
+ * processor/command/disassemble.rb, processor/disassemble.rb: Allow
320
+ unlimited number of disassemble args.
321
+
322
+ 2011-02-02 rocky <rockyb@rubyforge.org>
323
+
324
+ * processor/command/base/submgr.rb, processor/load_cmds.rb: Avoid
325
+ using eval to instantiate commands and subcommands.
326
+
327
+ 2011-02-02 rocky <rockyb@rubyforge.org>
328
+
329
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
330
+
331
+ 2011-02-02 rocky <rockyb@rubyforge.org>
332
+
333
+ * interface/user.rb, io/input.rb, lib/trepanning.rb,
334
+ processor/command/complete.rb, processor/load_cmds.rb: Start tab
335
+ completion. Correct setting for line edit via Readline.
336
+
337
+ 2011-02-01 rocky <rockyb@rubyforge.org>
338
+
339
+ * app/options.rb, processor/command/disassemble.rb: Allow
340
+ disassembly of a single line.
341
+
342
+ 2011-02-01 rocky <rockyb@rubyforge.org>
343
+
344
+ * ChangeLog: Update ChangeLog of 0.0.4
345
+
346
+ 2011-02-01 rocky <rockyb@rubyforge.org>
347
+
348
+ * NEWS, app/options.rb: Get ready for 0.0.4 release
349
+
350
+ 2011-02-01 rocky <rockyb@rubyforge.org>
351
+
352
+ * processor/msg.rb, sample/list-terminal-colors.rb,
353
+ sample/rocky-trepanx-colors.rb: Change error messages from underline
354
+ to italic. Sync with rb-trepanning.
355
+
356
+ 2011-01-30 rocky <rockyb@rubyforge.org>
357
+
358
+ * processor/command/set_subcmd/hidelevel.rb,
359
+ processor/command/set_subcmd/kernelstep.rb,
360
+ processor/command/set_subcmd/trace.rb: Minor cleanup.
361
+
362
+ 2011-01-28 rocky <rockyb@rubyforge.org>
363
+
364
+ * app/options.rb, lib/trepanning.rb,
365
+ processor/command/disassemble.rb, processor/command/list.rb,
366
+ processor/command/set_subcmd/highlight.rb,
367
+ processor/command/set_subcmd/terminal.rb,
368
+ processor/command/show_subcmd/highlight.rb,
369
+ processor/command/show_subcmd/terminal.rb, processor/default.rb,
370
+ processor/disassemble.rb, processor/location.rb, processor/main.rb,
371
+ processor/msg.rb: set/show terminal -> set/show highlight
372
+
373
+ 2011-01-28 rocky <rockyb@rubyforge.org>
374
+
375
+ Add debugger command syntax help.
376
+
377
+ 2011-01-28 rocky <rockyb@rubyforge.org>
378
+
379
+ Describe debugger command syntax in help.
380
+
381
+ 2011-01-28 rocky <rockyb@rubyforge.org>
382
+
383
+ I hate conflicted merges
384
+
385
+ 2011-01-28 rocky <rockyb@rubyforge.org>
386
+
387
+ * processor/command/help.rb, processor/default.rb,
388
+ test/unit/cmd-helper.rb, test/unit/test-proc-main.rb: Sync with
389
+ trepanning.
390
+
391
+ 2011-01-24 rocky <rockyb@rubyforge.org>
392
+
393
+ * processor/msg.rb: Error messages are underlined when in term mode.
394
+
395
+
396
+ 2011-01-24 rocky <rockyb@rubyforge.org>
397
+
398
+ * interface/base_intf.rb, processor/command/help.rb,
399
+ processor/main.rb: main.rb: add command queuing and splitting via
400
+ ;;. help.rb: document complex debugger command syntax. base_intf.rb:
401
+ remove ansi_term. Not used here.
402
+
403
+ 2011-01-24 rocky <rockyb@rubyforge.org>
404
+
405
+ * processor/command/complete.rb: Rudimentary gdb "complete" commnd.
406
+
407
+
408
+ 2011-01-24 rocky <rockyb@rubyforge.org>
409
+
410
+ * app/options.rb, processor/command/help.rb,
411
+ processor/command/show_subcmd/version.rb,
412
+ processor/command/source.rb: A little more like gdb: add "show
413
+ version" and "help all".
414
+
415
+ 2011-01-23 rocky <rockyb@rubyforge.org>
416
+
417
+ * processor/command/backtrace.rb: More compatible with gdb's
418
+ backtrace. Expand help text.
419
+
420
+ 2011-01-23 rocky <rockyb@rubyforge.org>
421
+
422
+ * processor/command/list.rb: Don't truncate list output.
423
+
424
+ 2011-01-23 rocky <rockyb@rubyforge.org>
425
+
426
+ * app/display.rb, lib/trepanning.rb, processor/command/display.rb,
427
+ processor/command/undisplay.rb, processor/display.rb,
428
+ processor/main.rb: Add display expressions. It works, although the
429
+ mocks and standalone code doesn't.
430
+
431
+ 2011-01-23 rocky <rockyb@rubyforge.org>
432
+
433
+ * sample/rocky-trepanx-colors.rb: Sample file color tweaks
434
+
435
+ 2011-01-22 rocky <rockyb@rubyforge.org>
436
+
437
+ * interface/base_intf.rb, processor/command/base/cmd.rb,
438
+ processor/command/disassemble.rb, processor/command/eval.rb,
439
+ processor/command/help.rb,
440
+ processor/command/info_subcmd/breakpoints.rb,
441
+ processor/command/info_subcmd/variables.rb,
442
+ processor/command/list.rb, processor/command/pr.rb,
443
+ processor/command/ps.rb, processor/disassemble.rb,
444
+ processor/mock.rb, processor/msg.rb, sample/.gitignore,
445
+ sample/list-terminal-colors.rb, test/unit/cmd-helper.rb,
446
+ test/unit/test-base-subcmd.rb: Add section command - in terminal
447
+ mode it makes the text bold. Add option hash to msg, ermmsg, etc.
448
+ Only option right now is to allow unlimited (not truncated) text.
449
+
450
+ 2011-01-22 rocky <rockyb@rubyforge.org>
451
+
452
+ * app/llvm.rb, app/rbx-llvm.rb, processor/command/disassemble.rb,
453
+ processor/disassemble.rb: Start to DRY CodeRay scanner for rubinius
454
+ llvm.
455
+
456
+ 2011-01-22 rocky <rockyb@rubyforge.org>
457
+
458
+ * app/llvm.rb: syntax highlighting improvements for strings with
459
+ embeded ", immediates, etc.
460
+
461
+ 2011-01-22 rocky <rockyb@rubyforge.org>
462
+
463
+ * app/llvm.rb, sample/rocky-trepanx-colors.rb: More complete
464
+ Rubinius LLVM parsing.
465
+
466
+ 2011-01-22 rocky <rockyb@rubyforge.org>
467
+
468
+ * app/iseq.rb, app/llvm.rb, processor/command/disassemble.rb,
469
+ processor/disassemble.rb: Add syntax coloring of disassembly via
470
+ CodeRay. llvm.rb: our custom LLVM scanner.
471
+
472
+ 2011-01-21 rocky <rockyb@rubyforge.org>
473
+
474
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
475
+
476
+ 2011-01-21 rocky <rockyb@rubyforge.org>
477
+
478
+ * processor/command/disassemble.rb: One more Trepanning->Trepan
479
+
480
+ 2011-01-21 rocky <rockyb@rubyforge.org>
481
+
482
+ * app/breakpoint.rb, app/brkptmgr.rb,
483
+ test/unit/test-app-brkptmgr.rb: BreakpointMgr ->
484
+ Trepan::BreakpointMgr
485
+
486
+ 2011-01-21 rocky <rockyb@rubyforge.org>
487
+
488
+ * app/breakpoint.rb, app/brkptmgr.rb, lib/trepanning.rb,
489
+ processor/command/nexti.rb, processor/stepping.rb,
490
+ test/unit/test-app-brkpt.rb, test/unit/test-app-brkptmgr.rb:
491
+ Trepanning::Breakpoint -> Trepan::Breakpont
492
+
493
+ 2011-01-21 rocky <rockyb@rubyforge.org>
494
+
495
+ * app/iseq.rb: Trepan::ISeq needs only to be a module, not a class.
496
+
497
+
498
+ 2011-01-21 rocky <rockyb@rubyforge.org>
499
+
500
+ * app/default.rb: It *is* already large
501
+
502
+ 2011-01-21 rocky <rockyb@rubyforge.org>
503
+
504
+ * app/brkptmgr.rb, app/default.rb, app/options.rb, io/tcpserver.rb,
505
+ lib/trepanning.rb, processor/command/server.rb,
506
+ processor/command/source.rb, processor/default.rb,
507
+ processor/mock.rb, test/unit/mock-helper.rb,
508
+ test/unit/test-app-options.rb: Trepanning module -> Trepanning class
509
+ singleton for app/default.rb
510
+
511
+ 2011-01-21 rocky <rockyb@rubyforge.org>
512
+
513
+ * .gemspec, Rakefile, app/options.rb, bin/trepanx,
514
+ test/unit/test-app-options.rb: Trepanning module -> Trepan class
515
+ singleton methods for app/options.rb
516
+
517
+ 2011-01-21 rocky <rockyb@rubyforge.org>
518
+
519
+ * app/iseq.rb, processor/disassemble.rb, processor/stepping.rb,
520
+ test/unit/test-app-iseq.rb: Start to remove Trepanning module
521
+ replacing it with Trepan singleton methods.
522
+
523
+ 2011-01-18 rocky <rockyb@rubyforge.org>
524
+
525
+ * processor/location.rb: Don't truncate source test in
526
+ print_location
527
+
528
+ 2011-01-18 rocky <rockyb@rubyforge.org>
529
+
530
+ * processor/command/base/subcmd.rb,
531
+ processor/command/info_subcmd/breakpoints.rb,
532
+ processor/command/info_subcmd/file.rb,
533
+ processor/command/info_subcmd/method.rb,
534
+ processor/command/info_subcmd/program.rb,
535
+ processor/command/info_subcmd/variables.rb,
536
+ processor/command/set_subcmd/auto.rb,
537
+ processor/command/set_subcmd/basename.rb,
538
+ processor/command/set_subcmd/debug.rb,
539
+ processor/command/set_subcmd/different.rb,
540
+ processor/command/set_subcmd/hidelevel.rb,
541
+ processor/command/set_subcmd/kernelstep.rb,
542
+ processor/command/set_subcmd/max.rb,
543
+ processor/command/set_subcmd/substitute.rb,
544
+ processor/command/set_subcmd/terminal.rb,
545
+ processor/command/set_subcmd/trace.rb,
546
+ processor/command/show_subcmd/alias.rb,
547
+ processor/command/show_subcmd/args.rb,
548
+ processor/command/show_subcmd/auto.rb,
549
+ processor/command/show_subcmd/basename.rb,
550
+ processor/command/show_subcmd/debug.rb,
551
+ processor/command/show_subcmd/different.rb,
552
+ processor/command/show_subcmd/hidelevel.rb,
553
+ processor/command/show_subcmd/kernelstep.rb,
554
+ processor/command/show_subcmd/max.rb,
555
+ processor/command/show_subcmd/terminal.rb,
556
+ processor/command/show_subcmd/trace.rb: Use set_name_prefix to DRY
557
+ setting class NAME and PREFIX inside command class.
558
+
559
+ 2011-01-18 rocky <rockyb@rubyforge.org>
560
+
561
+ * processor/command/set_subcmd/terminal.rb: Add 'set terminal reset'
562
+ to force redoing syntax highlight.
563
+
564
+ 2011-01-18 rocky <rockyb@rubyforge.org>
565
+
566
+ * app/util.rb, processor/command/list.rb,
567
+ processor/command/set_subcmd/max_subcmd/string.rb: Allow disabling
568
+ max string which is what we do in listing. Default value is no
569
+ longer the same as the minimum value. Revise and expand "help max
570
+ string".
571
+
572
+ 2011-01-18 rocky <rockyb@rubyforge.org>
573
+
574
+ * sample/list-terminal-colors.rb: Add Ruby program to list and show
575
+ default Term::ANSIColor names, colors and values.
576
+
577
+ 2011-01-17 rocky <rockyb@rubyforge.org>
578
+
579
+ * sample/rocky-dot-trepanxrc: Until I find the bug, turn off syntax
580
+ highlighting
581
+
582
+ 2011-01-17 rocky <rockyb@rubyforge.org>
583
+
584
+ * .gemspec, sample/rocky-dot-trepanxrc,
585
+ sample/rocky-trepanx-colors.rb: Show how to customize syntax
586
+ highlighthing and give the debugger profile I use.
587
+
588
+ 2011-01-17 rocky <rockyb@rubyforge.org>
589
+
590
+ * test/unit/test-io-tcpserver.rb: Fix unit test?
591
+
592
+ 2011-01-17 rocky <rockyb@rubyforge.org>
593
+
594
+ * .gemspec: Change linecache required version number to make sure we
595
+ pick up syntax highlighting
596
+
597
+ 2011-01-17 rocky <rockyb@rubyforge.org>
598
+
599
+ * .gemspec, processor/command/set_subcmd/basename.rb,
600
+ processor/command/set_subcmd/terminal.rb,
601
+ processor/command/show_subcmd/auto.rb,
602
+ processor/command/show_subcmd/basename.rb,
603
+ processor/command/show_subcmd/hidelevel.rb,
604
+ processor/command/show_subcmd/kernelstep.rb,
605
+ processor/command/show_subcmd/terminal.rb,
606
+ processor/command/show_subcmd/trace.rb, processor/main.rb,
607
+ test/unit/test-cmd-source.rb: Add ability to turn on and off
608
+ terminal highlighting with "set/show terminal"
609
+
610
+ 2011-01-17 rocky <rockyb@rubyforge.org>
611
+
612
+ * lib/trepanning.rb, processor/command/show_subcmd/max.rb,
613
+ processor/command/show_subcmd/trace.rb, processor/default.rb:
614
+ Prepare for adding terminal command. Remove more of highlight from
615
+ reference debugger.
616
+
617
+ 2011-01-17 rocky <rockyb@rubyforge.org>
618
+
619
+ * processor/location.rb: Update copyright
620
+
621
+ 2011-01-17 rocky <rockyb@rubyforge.org>
622
+
623
+ * app/options.rb, bin/trepanx, lib/trepanning.rb,
624
+ processor/command/list.rb, processor/location.rb: Start using syntax
625
+ highlighting for source via linecache. Add --terminal option. More
626
+ work is needed.
627
+
628
+ 2011-01-16 rocky <rockyb@rubyforge.org>
629
+
630
+ * processor/command/source.rb: Add unit test source options. Fix bug
631
+ in source option processing.
632
+
633
+ 2011-01-13 rocky <rockyb@rubyforge.org>
634
+
635
+ * processor/command/server.rb: Command to set server interface
636
+
637
+ 2011-01-13 rocky <rockyb@rubyforge.org>
638
+
639
+ * processor/command/source.rb: Sync with rb-trepanning
640
+
641
+ 2011-01-13 rocky <rockyb@rubyforge.org>
642
+
643
+ * app/client.rb, app/default.rb, app/options.rb,
644
+ interface/base_intf.rb, processor/command/source.rb: server.rb: Add
645
+ command to go server mode. source.rb: use optparse to parse options.
646
+ client.rb: handle user EOF. default.rb: DRY host/port options.
647
+ base_intf.rb: close() guards against uninitialized I/O.
648
+
649
+ 2011-01-12 rocky <rockyb@rubyforge.org>
650
+
651
+ * interface/server.rb, io/tcpserver.rb: Small changes
652
+
653
+ 2011-01-11 rocky <rockyb@rubyforge.org>
654
+
655
+ * app/options.rb, bin/trepanx, io/tcpclient.rb, lib/trepanning.rb,
656
+ processor/main.rb, test/unit/test-io-tcpclient.rb: Sync with
657
+ rb-trepanning. Small changes mostly.
658
+
659
+ 2011-01-09 rocky <rockyb@rubyforge.org>
660
+
661
+ * app/client.rb, app/default.rb, bin/trepanx, interface/server.rb,
662
+ lib/trepanning.rb: Add trepanx --port and --host options and make
663
+ sure these get passed through.
664
+
665
+ 2011-01-09 rocky <rockyb@rubyforge.org>
666
+
667
+ * app/default.rb, app/options.rb, io/tcpserver.rb,
668
+ test/data/fname-with-blank.right, test/data/quit.right,
669
+ test/integration/test-fname-with-blank.rb,
670
+ test/integration/test-inline-call.rb, test/integration/test-quit.rb:
671
+ Previous change removed some bugs which changed integration-test
672
+ output. Start adding --port and --host options for remote debugging.
673
+
674
+
675
+ 2011-01-09 rocky <rockyb@rubyforge.org>
676
+
677
+ * ChangeLog, test/data/inline-call.right,
678
+ test/example/gcd-inline-call.rb, test/example/gcd-server.rb,
679
+ test/example/gcd.rb, test/example/inline-call.rb,
680
+ test/integration/helper.rb, test/integration/test-inline-call.rb:
681
+ Integration test for explict call to debugger in Ruby program.
682
+
683
+ 2011-01-09 rocky <rockyb@rubyforge.org>
684
+
685
+ * lib/trepanning.rb, processor/command/directory.rb,
686
+ test/data/inline-call.cmd, test/example/gcd-inline-call.rb,
687
+ test/example/gcd-server.rb, test/example/gcd-xx.rb,
688
+ test/example/gcd1.rb: A number of small enhancements and little bug
689
+ fixes. trepanning.rb: 1. set default input/output correctly.
690
+ 2. add debugger alias for start 3. Allow cmdfile
691
+ specification in start/debugger 4. Allow script
692
+ options in cmdfile specification via tuple directory.rb: Expand help
693
+ string example/gcd-*.rb: Start examples of above changes. No
694
+ integration tests yet :-(
695
+
696
+ 2011-01-09 rocky <rockyb@rubyforge.org>
697
+
698
+ * app/client.rb, interface/base_intf.rb, interface/client.rb,
699
+ interface/comcodes.rb, interface/server.rb, io/tcpserver.rb,
700
+ processor/command/exit.rb, processor/main.rb: Remote debugging
701
+ minimally works.
702
+
703
+ 2011-01-08 rocky <rockyb@rubyforge.org>
704
+
705
+ * app/client.rb, app/default.rb, app/options.rb, bin/trepanx,
706
+ interface/base_intf.rb, interface/client.rb, interface/comcodes.rb,
707
+ interface/server.rb, interface/user.rb, io/tcpserver.rb,
708
+ lib/trepanning.rb, processor/command/continue.rb,
709
+ processor/main.rb, test/unit/test-app-options.rb: First hint that
710
+ remote debugging will work someday. options.rb, default.rb: Add
711
+ --client and --server options client.rb: front-end client read loop
712
+ continue.rb: fix docstring
713
+
714
+ 2011-01-08 rocky <rockyb@rubyforge.org>
715
+
716
+ * .gemspec, app/default.rb, app/options.rb, lib/trepanning.rb: Add
717
+ --server option and remove duplicate version number.
718
+
719
+ 2011-01-08 rocky <rockyb@rubyforge.org>
720
+
721
+ * interface/client.rb, interface/server.rb, interface/user.rb,
722
+ io/tcpserver.rb, test/unit/test-io-tcp.rb,
723
+ test/unit/test-io-tcpclient.rb, test/unit/test-io-tcpserver.rb:
724
+ Start client interface. Test TCP server/client pair together.
725
+
726
+ 2011-01-08 rocky <rockyb@rubyforge.org>
727
+
728
+ * io/tcpclient.rb, test/unit/test-io-tcpclient.rb,
729
+ test/unit/test-io-tcpserver.rb: Add rudimentary TCP client-side I/O.
730
+ Have neither tested combo, nor higher-level interface.
731
+
732
+ 2011-01-08 rocky <rockyb@rubyforge.org>
733
+
734
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
735
+
736
+ 2011-01-08 rocky <rockyb@rubyforge.org>
737
+
738
+ * interface/comcodes.rb, interface/server.rb, io/base_io.rb,
739
+ io/tcpfns.rb, io/tcpserver.rb, test/unit/test-io-tcpfns.rb,
740
+ test/unit/test-io-tcpserver.rb: Start working on remote or
741
+ out-of-process debugging, staring with TCP connections. Server IO
742
+ started. Still need client, more of the interface and setup side.
743
+ That is, much much more work is needed.
744
+
745
+ 2011-01-01 rocky <rockyb@rubyforge.org>
746
+
747
+ * ChangeLog, NEWS, lib/trepanning.rb: Get ready for release 0.0.3
748
+
749
+ 2010-12-30 brainopia <ravwar@gmail.com>
750
+
751
+ * processor/command/up.rb: Remove unneeded require with explicit
752
+ location
753
+
754
+ 2010-12-28 rocky <rockyb@rubyforge.org>
755
+
756
+ * test/unit/cmd-helper.rb, test/unit/mock-helper.rb,
757
+ test/unit/test-cmd-alias.rb, test/unit/test-cmd-break.rb,
758
+ test/unit/test-cmd-exit.rb, test/unit/test-cmd-finish.rb,
759
+ test/unit/test-cmd-help.rb, test/unit/test-cmd-kill.rb,
760
+ test/unit/test-cmd-step.rb, test/unit/test-proc-eval.rb,
761
+ test/unit/test-proc-main.rb: DRY code just a little more.
762
+
763
+ 2010-12-27 rocky <rockyb@rubyforge.org>
764
+
765
+ * processor/command/list.rb: list.rb: help text corrections.
766
+
767
+ 2010-12-27 rocky <rockyb@rubyforge.org>
768
+
769
+ * processor/command/finish.rb, processor/command/step.rb,
770
+ processor/main.rb, processor/running.rb: Add finish+ to step one in
771
+ calling method rather than stop before method return.
772
+
773
+ 2010-12-27 rocky <rockyb@rubyforge.org>
774
+
775
+ * processor/command/finish.rb, processor/command/step.rb,
776
+ processor/stepping.rb, test/unit/test-cmd-finish.rb,
777
+ test/unit/test-cmd-step.rb, test/unit/test-proc-location.rb:
778
+ step.rb: Add "step into" "step over" and "step out" as alternates
779
+ for "step", "next", and "finish" Add standalone and unit tests for
780
+ step and finish.
781
+
782
+ 2010-12-26 rocky <rockyb@rubyforge.org>
783
+
784
+ * processor/stepping.rb, test/integration/helper.rb,
785
+ test/integration/test-quit.rb: stepping.rb: Address another bug in
786
+ stepping from the begging of a file. test-quit.rb: Simple check of
787
+ .rbxrc for calling Trepan.start helper.rb: redirect stderr to stdout
788
+
789
+
790
+ 2010-12-26 rocky <rockyb@rubyforge.org>
791
+
792
+ * .gemspec, NEWS, Rakefile, lib/trepanning.rb,
793
+ processor/command/step.rb: Repackage so gem will find on rubinius
794
+ 1.2.
795
+
796
+ 2010-12-25 rocky <rockyb@rubyforge.org>
797
+
798
+ * README.textile: Oops... wrong require
799
+
800
+ 2010-12-25 rocky <rockyb@rubyforge.org>
801
+
802
+ * NEWS, README.textile, lib/trepanning.rb: Update README.textile
803
+ which was horribly out of date for something so new.
804
+
805
+ 2010-12-24 rocky <rockyb@rubyforge.org>
806
+
807
+ * THANKS: Fix some of my usual spelling and grammar mistakes.
808
+
809
+ 2010-12-23 rocky <rockyb@rubyforge.org>
810
+
811
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
812
+
813
+ 2010-12-23 rocky <rockyb@rubyforge.org>
814
+
815
+ * .gemspec, Rakefile, THANKS: Administrivia updates.
816
+
817
+ 2010-12-23 rocky <rockyb@rubyforge.org>
818
+
819
+ * Rakefile, app/frame.rb, app/iseq.rb, lib/trepanning.rb,
820
+ processor/command/disassemble.rb, processor/command/frame.rb,
821
+ processor/command/list.rb, processor/disassemble.rb,
822
+ processor/frame.rb, processor/location.rb, processor/main.rb,
823
+ processor/mock.rb, processor/running.rb,
824
+ test/unit/test-proc-eval.rb, test/unit/test-proc-frame.rb: location
825
+ -> vm_location where location is of type Rubinius::Location.
826
+
827
+ 2010-12-19 rocky <rockyb@rubyforge.org>
828
+
829
+ * processor/command/base/submgr.rb,
830
+ processor/command/disassemble.rb, processor/command/irb.rb,
831
+ processor/command/kill.rb: Sync with rb-trepanning.
832
+
833
+ 2010-12-15 rocky <rockyb@rubyforge.org>
834
+
835
+ * test/integration/helper.rb: Check $?.exitstatus after running
836
+ debugger.
837
+
838
+ 2010-12-15 rocky <rockyb@rubyforge.org>
839
+
840
+ * test/data/quit-Xdebug.right, test/integration/helper.rb,
841
+ test/integration/test-quit.rb: Add minimal -Xdebug integration test
842
+
843
+
844
+ 2010-12-15 rocky <rockyb@rubyforge.org>
845
+
846
+ * .gemspec, Rakefile, app/options.rb, lib/trepanning.rb,
847
+ test/data/.gitignore, test/data/enable.right,
848
+ test/data/fname-with-blank.cmd, test/data/fname-with-blank.right,
849
+ test/data/quit.cmd, test/data/quit.right, test/example/.gitignore,
850
+ test/example/fname with blank.rb, test/example/gcd-xx.rb,
851
+ test/example/gcd.rb, test/example/gcd1.rb, test/example/null.rb,
852
+ test/example/thread1.rb, test/integration/.gitignore,
853
+ test/integration/file-diff.rb, test/integration/helper.rb,
854
+ test/integration/test-fname-with-blank.rb,
855
+ test/integration/test-quit.rb: Start integration tests. Wasn't
856
+ packaging test/data/. Turn on "set kernelstep off" for now.
857
+
858
+ 2010-12-15 rocky <rockyb@rubyforge.org>
859
+
860
+ * lib/trepanning.rb: Turn of kernelstep for now and leave that for
861
+ the user to turn on. When things go wrong, we need this on. So until
862
+ everything is more robust leave out.
863
+
864
+ 2010-12-14 rocky <rockyb@rubyforge.org>
865
+
866
+ * processor/stepping.rb: Give error message if we can't step to
867
+ parent.
868
+
869
+ 2010-12-14 rocky <rockyb@rubyforge.org>
870
+
871
+ * NEWS, THANKS: Cleaning up in preparation for release.
872
+
873
+ 2010-12-14 rocky <rockyb@rubyforge.org>
874
+
875
+ * .gemspec, Rakefile, app/frame.rb, app/method.rb,
876
+ lib/trepanning.rb, processor/command/disassemble.rb,
877
+ processor/command/info_subcmd/program.rb,
878
+ processor/command/nexti.rb, processor/disassemble.rb,
879
+ processor/location.rb, processor/stepping.rb: Adapt to recent ip
880
+ changes - need to use next_ip rather than ip sometimes. Rakefile:
881
+ Require newer linecache and Rubinius; make gem Rubinius specific.
882
+
883
+ 2010-12-05 rocky <rockyb@rubyforge.org>
884
+
885
+ * processor/location.rb, test/functional/fn_helper.rb: Add IP when
886
+ showing location.
887
+
888
+ 2010-12-05 rocky <rockyb@rubyforge.org>
889
+
890
+ * lib/trepanning.rb, processor/command/set_subcmd/basename.rb,
891
+ processor/command/set_subcmd/kernelstep.rb,
892
+ processor/command/show_subcmd/basename.rb,
893
+ processor/command/show_subcmd/kernelstep.rb, processor/main.rb,
894
+ processor/running.rb: "set kernelstep on/off": filter out stepping
895
+ into the kernel.
896
+
897
+ 2010-12-05 rocky <rockyb@rubyforge.org>
898
+
899
+ * processor/command/base/subcmd.rb,
900
+ processor/command/set_subcmd/different.rb,
901
+ processor/command/set_subcmd/hidelevel.rb,
902
+ processor/command/show_subcmd/alias.rb, processor/running.rb: add
903
+ subcmd#prefix to DRY demo code more. Start ignore_file_re to ignore
904
+ kernel fns.
905
+
906
+ 2010-11-28 rocky <rockyb@rubyforge.org>
907
+
908
+ * Rakefile: Add rake tasts to run standalone in bulk.
909
+
910
+ 2010-11-28 rocky <rockyb@rubyforge.org>
911
+
912
+ * processor/command/info_subcmd/breakpoints.rb,
913
+ processor/command/set_subcmd/different.rb,
914
+ processor/command/set_subcmd/hidelevel.rb,
915
+ processor/command/set_subcmd/trace.rb,
916
+ processor/command/show_subcmd/alias.rb,
917
+ processor/command/show_subcmd/args.rb,
918
+ processor/command/show_subcmd/different.rb, processor/mock.rb: DRY
919
+ subcommand standalone code.
920
+
921
+ 2010-11-28 rocky <rockyb@rubyforge.org>
922
+
923
+ * processor/breakpoint.rb, processor/validate.rb: Method parsing
924
+ from "list" and "disassemble" command reused in "breakpoint" and
925
+ "continue".
926
+
927
+ 2010-11-28 rocky <rockyb@rubyforge.org>
928
+
929
+ * processor/breakpoint.rb, processor/validate.rb: Small changes.
930
+
931
+ 2010-11-28 rocky <rockyb@rubyforge.org>
932
+
933
+ * processor/command/disassemble.rb, processor/command/list.rb,
934
+ processor/validate.rb: Allow method names in the "list" command.
935
+
936
+ 2010-11-28 rvm <rocky@gnu.org>
937
+
938
+ * processor/command/disassemble.rb, processor/eval.rb: Handle method
939
+ names with '.' in disassembly. e.g. Object.is_a? or [1,2].max
940
+
941
+ 2010-11-27 rocky <rockyb@rubyforge.org>
942
+
943
+ * processor/command/set_subcmd/auto_subcmd/dis.rb,
944
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
945
+ processor/command/set_subcmd/auto_subcmd/irb.rb,
946
+ processor/command/set_subcmd/auto_subcmd/list.rb,
947
+ processor/command/set_subcmd/debug_subcmd/dbgr.rb,
948
+ processor/command/set_subcmd/debug_subcmd/skip.rb,
949
+ processor/command/set_subcmd/debug_subcmd/step.rb,
950
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
951
+ processor/command/show_subcmd/auto_subcmd/irb.rb,
952
+ processor/command/show_subcmd/auto_subcmd/list.rb,
953
+ processor/command/show_subcmd/debug_subcmd/dbgr.rb,
954
+ processor/command/show_subcmd/debug_subcmd/skip.rb,
955
+ processor/command/show_subcmd/debug_subcmd/step.rb,
956
+ processor/mock.rb: Start much-needed DRY of subsubcommand standalone
957
+ code. Another half remain to be shortened.
958
+
959
+ 2010-11-27 rvm <rocky@gnu.org>
960
+
961
+ * processor/command/show_subcmd/debug_subcmd/skip.rb,
962
+ processor/command/show_subcmd/debug_subcmd/step.rb: Last bugfixes
963
+ before we *really* DRY this redundant code.
964
+
965
+ 2010-11-27 rvm <rocky@gnu.org>
966
+
967
+ * app/method.rb: meth->cm
968
+
969
+ 2010-11-27 rvm <rocky@gnu.org>
970
+
971
+ * app/iseq.rb, processor/command/disassemble.rb,
972
+ processor/command/nexti.rb,
973
+ processor/command/set_subcmd/debug_subcmd/skip.rb,
974
+ processor/command/set_subcmd/debug_subcmd/step.rb,
975
+ processor/command/show_subcmd/debug_subcmd/step.rb,
976
+ processor/main.rb, processor/stepping.rb: Fix bug in nexti.rb. Add
977
+ set/show debug step. More standalone code. Start great rewrite
978
+ method/meth -> cm.
979
+
980
+ 2010-11-27 rvm <rocky@gnu.org>
981
+
982
+ * app/method.rb, processor/command/disassemble.rb: Show lines
983
+ numbers in method disassembly.
984
+
985
+ 2010-11-27 rocky <rockyb@rubyforge.org>
986
+
987
+ * processor/command/set_subcmd/auto_subcmd/dis.rb,
988
+ processor/command/show_subcmd/auto_subcmd/dis.rb,
989
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
990
+ processor/command/show_subcmd/auto_subcmd/irb.rb,
991
+ processor/command/show_subcmd/auto_subcmd/list.rb,
992
+ processor/hook.rb, processor/main.rb, processor/stepping.rb: Add
993
+ "auto dis" which might be short-lived. Uncomment and fix some of the
994
+ standalone code for subcommands.
995
+
996
+ 2010-11-27 rocky <rockyb@rubyforge.org>
997
+
998
+ * lib/trepanning.rb, processor/location.rb: Small changes.
999
+
1000
+ 2010-11-21 rocky <rockyb@rubyforge.org>
1001
+
1002
+ * lib/trepanning.rb: Add Kernel.debugger
1003
+
1004
+ 2010-11-21 rocky <rockyb@rubyforge.org>
1005
+
1006
+ * test/functional/test-next-bug.rb: Code function may be less
1007
+ puzzling, not that it really matters.
1008
+
1009
+ 2010-11-21 rocky <rockyb@rubyforge.org>
1010
+
1011
+ * app/method.rb, app/run.rb, processor/command/disassemble.rb,
1012
+ processor/command/next.rb, processor/main.rb, processor/running.rb,
1013
+ processor/stepping.rb, test/functional/test-next-bug.rb: Fix bug in
1014
+ 'next' when a line has discontinuous ips. Fix broken bin/trepanx due
1015
+ to interface change in ignored_methods. Allow disassembly of methods
1016
+ in "disassemble" command.
1017
+
1018
+ 2010-11-20 rocky <rockyb@rubyforge.org>
1019
+
1020
+ * processor/command/continue.rb, processor/location.rb: continue.rb:
1021
+ forgotting to update a call for an interface change => brokenness.
1022
+
1023
+ 2010-11-20 rocky <rockyb@rubyforge.org>
1024
+
1025
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
1026
+
1027
+ 2010-11-20 rocky <rockyb@rubyforge.org>
1028
+
1029
+ * processor/frame.rb, processor/location.rb: Remap eval strings to
1030
+ temporary files. Use a better eval location indicator.
1031
+
1032
+ 2010-11-19 rvm <rocky@gnu.org>
1033
+
1034
+ * lib/trepanning.rb, processor/main.rb, processor/stepping.rb,
1035
+ test/functional/test-step2.rb: Fix bug where stepping from of a
1036
+ return doesn't stop on outside frame.
1037
+
1038
+ 2010-11-19 rocky <rockyb@rubyforge.org>
1039
+
1040
+ * app/iseq.rb, lib/trepanning.rb, processor/command/disassemble.rb,
1041
+ processor/command/up.rb, processor/disassemble.rb,
1042
+ processor/frame.rb, processor/main.rb, processor/running.rb,
1043
+ processor/stepping.rb, processor/validate.rb,
1044
+ test/functional/test-finish.rb, test/unit/test-app-iseq.rb: Towards
1045
+ handing step across return. Nicer disassembly single statements.
1046
+ Fixed method filtering iseq.c: go_between: now understands that a
1047
+ return breaks the flow too lib/trepannig.rb: add initialize routine
1048
+ to ignored list of filtered fns command/disassemble.rb: reorganize
1049
+ so we can handle disassemble of individual methods command/up.rb:
1050
+ fix comment processor/disassemble.rb: use
1051
+ Rubinius::CompiledMethod::Instruction to shorten code and get
1052
+ comments in output frame.rb: common routine to get parent frame.
1053
+ processor/running.rb: remove bug in method filter test.
1054
+ processor/stepping.rb: better generalization of related breakpoint
1055
+ handling.
1056
+
1057
+ 2010-11-17 rocky <rockyb@rubyforge.org>
1058
+
1059
+ * app/method.rb, app/validate.rb, processor/breakpoint.rb,
1060
+ processor/command/break.rb, processor/command/continue.rb,
1061
+ processor/validate.rb, test/functional/test-tbreak.rb,
1062
+ test/unit/test-app-method.rb, test/unit/test-app-validate.rb: Can
1063
+ now set breakpoints on IPs. Fix status and setting of some temporary
1064
+ breakpoints.
1065
+
1066
+ 2010-11-16 rocky <rockyb@rubyforge.org>
1067
+
1068
+ * .gemspec, processor/command/list.rb, processor/location.rb,
1069
+ processor/validate.rb, test/functional/test-break-name.rb: Use
1070
+ script caching recently added to linecache for eval-like things. As
1071
+ a result, "list" now works. validate: bug in regexp was not catching
1072
+ !,? or = at the end.
1073
+
1074
+ 2010-11-15 rvm <rocky@gnu.org>
1075
+
1076
+ * app/frame.rb, processor/location.rb: We pick up the eval_string
1077
+ now. Thanks again, evan! (More could be done to cache info as a
1078
+ file.)
1079
+
1080
+ 2010-11-14 rvm <rocky@gnu.org>
1081
+
1082
+ * processor/breakpoint.rb: Remove extraneous comment.
1083
+
1084
+ 2010-11-14 rvm <rocky@gnu.org>
1085
+
1086
+ * processor/breakpoint.rb, processor/main.rb: Delete temporary
1087
+ breakpoints after hitting them.
1088
+
1089
+ 2010-11-14 rvm <rocky@gnu.org>
1090
+
1091
+ * app/irb.rb, app/iseq.rb, processor/command/disassemble.rb,
1092
+ processor/command/info_subcmd/program.rb, processor/disassemble.rb,
1093
+ test/unit/test-app-iseq.rb: Tag disassemble output with IP location
1094
+ and breakpoints set.
1095
+
1096
+ 2010-11-13 rvm <rocky@gnu.org>
1097
+
1098
+ * app/util.rb, lib/trepanning.rb,
1099
+ processor/command/set_subcmd/hidelevel.rb, processor/frame.rb:
1100
+ Hiding levels below "main" for -Xdebug and trepanx better. util.rb:
1101
+ Don't need dollar_0 routine anymore. set_subcmd/hidelevel.rb:
1102
+ recalculate level on resetting.
1103
+
1104
+ 2010-11-12 rvm <rocky@gnu.org>
1105
+
1106
+ * app/default.rb, processor/command/restart.rb,
1107
+ processor/command/show_subcmd/args.rb, processor/mock.rb: Synch with
1108
+ rb-trepannning
1109
+
1110
+ 2010-11-11 rvm <rocky@gnu.org>
1111
+
1112
+ * app/method.rb, test/unit/test-app-method.rb: Add locate_line test.
1113
+ Some other small changes.
1114
+
1115
+ 2010-11-10 rvm <rocky@gnu.org>
1116
+
1117
+ * app/iseq.rb, processor/running.rb, processor/stepping.rb,
1118
+ test/unit/test-app-iseq.rb: "finish" should include "yield" ops in
1119
+ addition to "return" ops.
1120
+
1121
+ 2010-11-09 rvm <rocky@gnu.org>
1122
+
1123
+ * data/irbrc: One more small name change.
1124
+
1125
+ 2010-11-09 rvm <rocky@gnu.org>
1126
+
1127
+ * data/irbrc, processor/command/irb.rb: trepan -> trepanx
1128
+
1129
+ 2010-11-09 rvm <rocky@gnu.org>
1130
+
1131
+ * data/irbrc, processor/command/set_subcmd/trace_subcmd/.gitignore,
1132
+ processor/command/show_subcmd/trace_subcmd/.gitignore: Monkeypatch
1133
+ in the proper way.
1134
+
1135
+ 2010-11-09 rocky <rockyb@rubyforge.org>
1136
+
1137
+ * app/default.rb, app/run.rb, bin/trepanx, lib/trepanning.rb,
1138
+ processor/command/restart.rb,
1139
+ processor/command/show_subcmd/args.rb, processor/location.rb,
1140
+ processor/mock.rb, test/unit/test-app-run.rb: Greatly simplify
1141
+ restart code and it's now more reliable thanks to the addition of
1142
+ Rubinuis::OS_ARGV and Rubinius::OS_STARTUP_DIR. Thanks, Evan!
1143
+
1144
+ 2010-11-08 rocky <rockyb@rubyforge.org>
1145
+
1146
+ * app/default.rb, app/run.rb, lib/trepanning.rb: Generalize
1147
+ standalone hack so and include -Xdebug.
1148
+
1149
+ 2010-11-08 rocky <rockyb@rubyforge.org>
1150
+
1151
+ * processor/command/backtrace.rb: Wasn't starting from top if we had
1152
+ adjusted the frame. Add position indicator in backtrace and make it
1153
+ look more like trepan (and gdb).
1154
+
1155
+ 2010-11-08 rvm <rocky@gnu.org>
1156
+
1157
+ * app/method.rb, app/run.rb, interface/script.rb, io/base_io.rb,
1158
+ io/null_output.rb, processor/command/set_subcmd/max.rb,
1159
+ processor/command/set_subcmd/max_subcmd/list.rb,
1160
+ processor/command/set_subcmd/substitute.rb,
1161
+ processor/command/set_subcmd/trace.rb,
1162
+ processor/command/set_subcmd/trace_subcmd/.gitignore,
1163
+ processor/command/set_subcmd/trace_subcmd/print.rb,
1164
+ processor/command/show_subcmd/max.rb,
1165
+ processor/command/show_subcmd/max_subcmd/list.rb,
1166
+ processor/command/show_subcmd/trace.rb,
1167
+ processor/command/show_subcmd/trace_subcmd/.gitignore,
1168
+ processor/command/show_subcmd/trace_subcmd/print.rb,
1169
+ processor/command/source.rb, processor/frame.rb: bin/trepanx now
1170
+ stops in user script rather than the loader. It does this by rather
1171
+ hacky means, but it's the best I can find for now. Added a null
1172
+ output routine and the -q (silence) option on the source command.
1173
+
1174
+ 2010-11-08 rvm <rocky@gnu.org>
1175
+
1176
+ * processor/command/finish.rb, processor/command/list.rb: list.rb:
1177
+ make it I hope more rational. finish.rb: some cut-and-past typos.
1178
+
1179
+ 2010-11-07 rvm <rocky@gnu.org>
1180
+
1181
+ * processor/frame.rb, test/functional/fn_helper.rb,
1182
+ test/functional/test-list.rb: Fix bug in handling "list" command
1183
+ after changing frames.
1184
+
1185
+ 2010-11-07 rvm <rocky@gnu.org>
1186
+
1187
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
1188
+
1189
+ 2010-11-07 rvm <rocky@gnu.org>
1190
+
1191
+ * app/run.rb, app/util.rb, lib/trepanning.rb: Pick up $0 from
1192
+ Rubinius::Location#script when we are called via -Xdebug since it
1193
+ hasn't been defined before.
1194
+
1195
+ 2010-11-06 rocky <rockyb@rubyforge.org>
1196
+
1197
+ * app/method.rb, test/functional/test-break.rb: Work on setting
1198
+ breakpoints via line numbers.
1199
+
1200
+ 2010-11-06 rvm <rocky@gnu.org>
1201
+
1202
+ * app/breakpoint.rb, lib/trepanning.rb,
1203
+ processor/command/continue.rb, test/functional/fn_helper.rb,
1204
+ test/functional/test-tbreak.rb: Had broken temporary breakpoints.
1205
+ Add now a tbreak test.
1206
+
1207
+ 2010-11-06 rvm <rocky@gnu.org>
1208
+
1209
+ * lib/trepanning.rb, processor/command/finish.rb,
1210
+ processor/main.rb, processor/running.rb: Code clean up due to
1211
+ differen handling of stepping breakpoints.
1212
+
1213
+ 2010-11-06 rocky <rockyb@rubyforge.org>
1214
+
1215
+ * app/breakpoint.rb, app/frame.rb, lib/trepanning.rb,
1216
+ processor/command/nexti.rb, processor/stepping.rb,
1217
+ test/functional/test-finish.rb, test/functional/test-next.rb: Allow
1218
+ breakpoints to be scoped. Fixes bugs in handling recursive "next"
1219
+ and "finish". Based on Rubinius commit # 3a1c111. See issue Rubinius
1220
+ issue #558
1221
+
1222
+ 2010-11-06 rocky <rockyb@rubyforge.org>
1223
+
1224
+ * processor/breakpoint.rb, processor/command/continue.rb,
1225
+ processor/main.rb: Start "continue" with a target. Temp breakpoints
1226
+ are borked though.
1227
+
1228
+ 2010-11-05 rocky <rockyb@rubyforge.org>
1229
+
1230
+ * app/run.rb, lib/trepanning.rb, processor/command/list.rb,
1231
+ processor/running.rb: Work more on ignoring methods we don't want to
1232
+ stop in.
1233
+
1234
+ 2010-11-05 rocky <rockyb@rubyforge.org>
1235
+
1236
+ * app/run.rb, processor/mock.rb, processor/running.rb: Skip over
1237
+ debug_program method (used in standalone).
1238
+
1239
+ 2010-11-05 rocky <rockyb@rubyforge.org>
1240
+
1241
+ * processor/location.rb, test/unit/test-proc-location.rb: Fix bug in
1242
+ not picking up remapped files the first time around.
1243
+
1244
+ 2010-11-05 rocky <rockyb@rubyforge.org>
1245
+
1246
+ * processor/command/next.rb, processor/command/step.rb,
1247
+ processor/main.rb, processor/running.rb,
1248
+ test/unit/test-bin-trepan.rb, test/unit/test-bin-trepanx.rb: "set
1249
+ different" now works properly.
1250
+
1251
+ 2010-11-04 rocky <rockyb@rubyforge.org>
1252
+
1253
+ * processor/command/set_subcmd/hidelevel.rb, processor/default.rb,
1254
+ processor/frame.rb: Some small bugs and keep in sync with
1255
+ rb-trepanning.
1256
+
1257
+ 2010-11-04 rocky <rockyb@rubyforge.org>
1258
+
1259
+ * .gemspec, bin/trepan, bin/trepanx: bin/trepan -> bin/trepanx
1260
+
1261
+ 2010-11-04 rvm <rocky@gnu.org>
1262
+
1263
+ * app/run.rb, processor/command/base/subcmd.rb,
1264
+ processor/command/set_subcmd/debug_subcmd/stack.rb,
1265
+ processor/command/set_subcmd/different.rb,
1266
+ processor/command/set_subcmd/hidelevel.rb,
1267
+ processor/command/show_subcmd/debug_subcmd/stack.rb,
1268
+ processor/command/show_subcmd/different.rb,
1269
+ processor/command/show_subcmd/hidelevel.rb,
1270
+ processor/command/show_subcmd/max_subcmd/list.rb,
1271
+ processor/command/show_subcmd/max_subcmd/stack.rb,
1272
+ processor/command/show_subcmd/max_subcmd/string.rb,
1273
+ processor/command/show_subcmd/max_subcmd/width.rb,
1274
+ processor/default.rb, processor/frame.rb, processor/validate.rb:
1275
+ Replace "set debug stack" with more general "set hidelevel". Fix up
1276
+ some standalone code running. Use SubSubcommand where appropriate.
1277
+
1278
+ 2010-11-04 rvm <rocky@gnu.org>
1279
+
1280
+ * lib/trepanning.rb, processor/main.rb,
1281
+ test/functional/test-finish.rb, test/functional/test-next.rb,
1282
+ test/functional/test-step.rb: start now stops by default at
1283
+ *following* steppable statement. If you want to stop at the "start"
1284
+ location, use Trepan.start{:immediate => true}
1285
+
1286
+ 2010-11-03 rocky <rockyb@rubyforge.org>
1287
+
1288
+ * lib/trepanning.rb, processor/command/info_subcmd/program.rb,
1289
+ processor/main.rb, test/functional/test-finish.rb: Nil breakpoint
1290
+ means "stepping call" event.
1291
+
1292
+ 2010-11-01 rocky <rockyb@rubyforge.org>
1293
+
1294
+ * test/functional/test-finish.rb, test/functional/test-next.rb:
1295
+ First test of "finish" command. Todo: Looks like it's buggy when we
1296
+ have recursive functions.
1297
+
1298
+ 2010-10-21 rocky <rockyb@rubyforge.org>
1299
+
1300
+ * app/util.rb, test/unit/test-app-util.rb: Try elision of long
1301
+ strings in the middle of the string.
1302
+
1303
+ 2010-10-21 rocky <rockyb@rubyforge.org>
1304
+
1305
+ * app/brkptmgr.rb, app/method.rb, app/run.rb, lib/trepanning.rb,
1306
+ processor/breakpoint.rb, processor/command/break.rb,
1307
+ processor/command/disassemble.rb, processor/validate.rb,
1308
+ test/functional/test-next.rb: Fix bug in breakpoint numbering. Fix
1309
+ bug in restart when running bin/trepan breakpoint allows forms
1310
+ nothing (current line) line as well as previous forms.
1311
+ app/brkptmgr.rb: max should start off 0. app/method.rb: routines for
1312
+ working with compiled methods app/run.rb: use dbgr passed in. Don't
1313
+ smash restart_args, via set_restart, allow opts to be
1314
+ passed in lib/trepanning merge dbussink's fix in rbx-head to
1315
+ reference debugger command/disassemble.rb: had tropped off section
1316
+ header for "all" processor/validate.rb: common routine to parse a
1317
+ breakpoint position.
1318
+
1319
+ 2010-10-19 rvm <rocky@gnu.org>
1320
+
1321
+ * test/functional/test-next.rb: Add 'next' functional test.
1322
+
1323
+ 2010-10-19 rocky <rockyb@rubyforge.org>
1324
+
1325
+ * Rakefile, lib/trepanning.rb, processor/frame.rb,
1326
+ processor/main.rb, processor/running.rb: Rakefile: add functional
1327
+ testing lib/trepanning.rb: honor input and output interfaces when
1328
+ passed processor/frame.rb: RDoc appeasement processor/main.rb:
1329
+ Change commen so it makes more sense when viewed in RDoc
1330
+ processor/running.rb: remove debug output.
1331
+
1332
+ 2010-10-19 rocky <rockyb@rubyforge.org>
1333
+
1334
+ * test/functional/test-step.rb: First functional test of single
1335
+ stepping. WOOT!
1336
+
1337
+ 2010-10-19 rocky <rockyb@rubyforge.org>
1338
+
1339
+ * test/functional/.gitignore, test/functional/fn_helper.rb,
1340
+ test/functional/test-fn_helper.rb: Baby steps toward adding
1341
+ functional test: test the test helper. Some RDoc appeasements.
1342
+
1343
+ 2010-10-19 rocky <rockyb@rubyforge.org>
1344
+
1345
+ * app/breakpoint.rb, processor/breakpoint.rb,
1346
+ processor/command/finish.rb, processor/running.rb,
1347
+ processor/stepping.rb: Add finish (step out) command.
1348
+ app/breakpoint.rb: generalize paired breakpoints to more than two
1349
+ which is needed for finish. processor/breakpoint.rb: fix bugs caused
1350
+ by refactoring
1351
+
1352
+ 2010-10-18 rvm <rocky@gnu.org>
1353
+
1354
+ * app/iseq.rb, processor/stepping.rb, test/unit/test-app-iseq.rb:
1355
+ Extract, test, and fix more instruction sequence routines.
1356
+
1357
+ 2010-10-18 rvm <rocky@gnu.org>
1358
+
1359
+ * app/iseq.rb, processor/command/set_subcmd/debug_subcmd/skip.rb,
1360
+ processor/command/show_subcmd/debug_subcmd/skip.rb,
1361
+ processor/main.rb, processor/mock.rb, processor/stepping.rb,
1362
+ test/unit/test-cmd-alias.rb, test/unit/test-proc-eval.rb,
1363
+ test/unit/test-proc-main.rb: Add set/show debug skip. Start moving
1364
+ out instruction sequence code to module.
1365
+
1366
+ 2010-10-18 rvm <rocky@gnu.org>
1367
+
1368
+ * app/run.rb, lib/trepanning.rb, processor/command/disassemble.rb,
1369
+ processor/frame.rb, processor/main.rb, processor/running.rb,
1370
+ processor/stepping.rb: Hide level only if it makes sense. Start work
1371
+ on finish. (Not complete). Fix But in stepping test.
1372
+
1373
+ 2010-10-17 rvm <rocky@gnu.org>
1374
+
1375
+ * processor/command/next.rb, processor/command/step.rb,
1376
+ processor/main.rb, processor/running.rb: Next/step <count> now
1377
+ works.
1378
+
1379
+ 2010-10-17 rvm <rocky@gnu.org>
1380
+
1381
+ * processor/command/continue.rb, processor/command/next.rb,
1382
+ processor/command/nexti.rb, processor/command/step.rb,
1383
+ processor/main.rb, processor/running.rb, processor/stepping.rb: Move
1384
+ return-to-program control into main.rb. Facilitates handling step
1385
+ filtering.
1386
+
1387
+ 2010-10-17 rvm <rocky@gnu.org>
1388
+
1389
+ * processor/command/next.rb, processor/command/step.rb,
1390
+ processor/main.rb, processor/stepping.rb: Move stepping code to
1391
+ Trepan::CmdProcessor in file processor/stepping.rb
1392
+
1393
+ 2010-10-16 rvm <rocky@gnu.org>
1394
+
1395
+ * processor/mock.rb, test/unit/test-cmd-help.rb: Reinstate expect
1396
+ message on assert
1397
+
1398
+ 2010-10-16 rvm <rocky@gnu.org>
1399
+
1400
+ * processor/command/alias.rb, processor/command/list.rb,
1401
+ processor/command/pr.rb, processor/command/show.rb: DRY code with
1402
+ respect to Mock setup. less hard-coding of command names via #{NAME}
1403
+
1404
+
1405
+ 2010-10-16 rvm <rocky@gnu.org>
1406
+
1407
+ Merge branch 'master' of github.com:rocky/rbx-trepanning
1408
+
1409
+ 2010-10-16 rvm <rocky@gnu.org>
1410
+
1411
+ * processor/command/alias.rb, processor/command/backtrace.rb,
1412
+ processor/command/base/cmd.rb, processor/command/continue.rb,
1413
+ processor/command/directory.rb, processor/command/down.rb,
1414
+ processor/command/eval.rb, processor/command/exit.rb,
1415
+ processor/command/frame.rb, processor/command/help.rb,
1416
+ processor/command/info.rb, processor/command/irb.rb,
1417
+ processor/command/kill.rb, processor/command/list.rb,
1418
+ processor/command/next.rb, processor/command/ps.rb,
1419
+ processor/command/restart.rb, processor/command/set.rb,
1420
+ processor/command/show.rb, processor/command/source.rb,
1421
+ processor/command/unalias.rb, processor/command/up.rb: Add
1422
+ Trepan::Command#name and dry code with it.
1423
+
1424
+ 2010-10-14 rocky <rockyb@rubyforge.org>
1425
+
1426
+ * processor/command/pr.rb: Add print/eval with truncated output for
1427
+ long strings.
1428
+
1429
+ 2010-10-14 rocky <rockyb@rubyforge.org>
1430
+
1431
+ * processor/command/set_subcmd/debug_subcmd/dbgr.rb,
1432
+ processor/command/show_subcmd/debug_subcmd/dbgr.rb,
1433
+ processor/command/step.rb, processor/main.rb, processor/running.rb,
1434
+ test/unit/test-base-subcmd.rb: running.rb, step.rb: More work trying
1435
+ to put into a normal command loop. Add "set debug dbgr". Add test of
1436
+ base commands.
1437
+
1438
+ 2010-10-14 rvm <rocky@gnu.org>
1439
+
1440
+ * lib/trepanning.rb, processor/breakpoint.rb, processor/main.rb,
1441
+ processor/running.rb: Add Trepan.breakpoint instance variable. Start
1442
+ to get step count and stuff in place for step filtering.
1443
+
1444
+ 2010-10-13 rvm <rocky@gnu.org>
1445
+
1446
+ * app/irb.rb, data/.gitignore, data/irbrc,
1447
+ processor/command/irb.rb,
1448
+ processor/command/set_subcmd/auto_subcmd/irb.rb,
1449
+ processor/command/show_subcmd/auto_subcmd/irb.rb, processor/mock.rb:
1450
+ Add debugger 'irb' command and set/show autoirb.
1451
+
1452
+ 2010-10-13 rocky <rockyb@rubyforge.org>
1453
+
1454
+ * processor/hook.rb: Add set/show debug dbgr.
1455
+
1456
+ 2010-10-13 rocky <rockyb@rubyforge.org>
1457
+
1458
+ * processor/command/set_subcmd/auto.rb,
1459
+ processor/command/set_subcmd/debug.rb,
1460
+ processor/command/set_subcmd/debug_subcmd/.gitignore,
1461
+ processor/command/set_subcmd/debug_subcmd/stack.rb,
1462
+ processor/command/show_subcmd/args.rb,
1463
+ processor/command/show_subcmd/debug.rb,
1464
+ processor/command/show_subcmd/debug_subcmd/.gitignore,
1465
+ processor/command/show_subcmd/debug_subcmd/stack.rb,
1466
+ processor/command/show_subcmd/max.rb: Add set/show debug stack - to
1467
+ hide/show least-recent boilerplate frames that are generally not a
1468
+ programmer's concern.
1469
+
1470
+ 2010-10-13 rocky <rockyb@rubyforge.org>
1471
+
1472
+ * app/util.rb, processor/command/backtrace.rb, processor/frame.rb,
1473
+ test/unit/test-app-util.rb, test/unit/test-proc-frame.rb: Start
1474
+ hiding boilerplate start-up frames. set debug stack (which has not
1475
+ been put in yet) will let you see these frames.
1476
+
1477
+ 2010-10-12 rocky <rockyb@rubyforge.org>
1478
+
1479
+ * processor/mock.rb, test/unit/cmd-helper.rb,
1480
+ test/unit/test-cmd-break.rb: First breakpoint unit test. Yay!
1481
+
1482
+ 2010-10-12 rocky <rockyb@rubyforge.org>
1483
+
1484
+ * processor/frame.rb, processor/mock.rb, processor/validate.rb,
1485
+ test/unit/test-proc-frame.rb: Reinstate most of the processor/frame
1486
+ unit test from rb-trepanning.
1487
+
1488
+ 2010-10-12 rocky <rockyb@rubyforge.org>
1489
+
1490
+ * lib/trepanning.rb, processor/frame.rb, processor/main.rb: Small
1491
+ frame code cleanups.
1492
+
1493
+ 2010-10-12 rvm <rocky@gnu.org>
1494
+
1495
+ * app/brkptmgr.rb, app/frame.rb, lib/trepanning.rb,
1496
+ processor/breakpoint.rb, processor/command/break.rb: Address
1497
+ breakpoints broken in last breakpoint reorganization.
1498
+
1499
+ 2010-10-12 rvm <rocky@gnu.org>
1500
+
1501
+ * processor/command/continue.rb, processor/command/next.rb,
1502
+ processor/command/nexti.rb, processor/command/step.rb,
1503
+ processor/main.rb, processor/running.rb: Start to get control over
1504
+ what happens before and after returning to debugged program. This
1505
+ will be needed to handle filtering stops (used for example when
1506
+ running the debugger from the outset) and recording events in an
1507
+ event buffer.
1508
+
1509
+ 2010-10-11 rvm <rocky@gnu.org>
1510
+
1511
+ * lib/trepanning.rb, processor/frame.rb, processor/main.rb:
1512
+ processor/frame.rb: show location in usual format, not the backtrace
1513
+ format processor/main.rb: reinstate code with print_loatio
1514
+ lib/trepanning.rb: spelling correction in comment.
1515
+
1516
+ 2010-10-08 rocky <rockyb@rubyforge.org>
1517
+
1518
+ * lib/trepanning.rb, processor/command/disassemble.rb,
1519
+ processor/disassemble.rb, processor/frame.rb,
1520
+ processor/location.rb, processor/main.rb: Move some disassembly code
1521
+ from lib/trepanning.rb to processor/disassemble.rb
1522
+
1523
+ 2010-10-08 rocky <rockyb@rubyforge.org>
1524
+
1525
+ * Makefile, processor/Makefile: Add boilerplate Makefile's
1526
+
1527
+ 2010-10-08 rocky <rockyb@rubyforge.org>
1528
+
1529
+ * test/unit/test-unit-exit.rb: How did this get in there?
1530
+
1531
+ 2010-10-08 rocky <rockyb@rubyforge.org>
1532
+
1533
+ * processor/command/info_subcmd/breakpoints.rb,
1534
+ test/unit/test-cmd-exit.rb: Add unit test for exit. Add help for
1535
+ "info breakpoints". Copied from rb-trepanning - Not quite accurate
1536
+ yet.
1537
+
1538
+ 2010-10-08 rocky <rockyb@rubyforge.org>
1539
+
1540
+ * processor/command/source.rb: Small things to sync up with
1541
+ rb-trepanning
1542
+
1543
+ 2010-10-08 rocky <rockyb@rubyforge.org>
1544
+
1545
+ * app/breakpoint.rb, app/brkptmgr.rb, lib/trepanning.rb,
1546
+ processor/command/break.rb, processor/command/next.rb,
1547
+ processor/command/nexti.rb, processor/command/tbreak.rb,
1548
+ test/unit/test-app-brkpt.rb, test/unit/test-app-brkptmgr.rb: Small
1549
+ things to sync up with rb-trepanning
1550
+
1551
+ 2010-10-07 rocky <rockyb@rubyforge.org>
1552
+
1553
+ * processor/command/list.rb: Add current-line indicator.
1554
+
1555
+ 2010-10-07 rocky <rockyb@rubyforge.org>
1556
+
1557
+ * Rakefile, app/breakpoint.rb, app/brkptmgr.rb, lib/trepanning.rb,
1558
+ processor/command/info.rb,
1559
+ processor/command/info_subcmd/breakpoints.rb,
1560
+ processor/command/tbreak.rb, test/unit/test-app-brkptmgr.rb: More
1561
+ better tests of breakpoint manager. There is some breakage remaining
1562
+ though. info_subcmd/breakpoints.rb: work on this. Again there's some
1563
+ breakage from the bp manager merge Rakefile: add task check:app.
1564
+ Correct check:command.
1565
+
1566
+ 2010-10-07 rocky <rockyb@rubyforge.org>
1567
+
1568
+ * lib/trepanning.rb, processor/location.rb: Show location in same
1569
+ format as 1.9.2 debugger (and other gdb-like debuggers).
1570
+
1571
+ 2010-10-07 rocky <rockyb@rubyforge.org>
1572
+
1573
+ * lib/trepanning.rb, processor/command/info_subcmd/program.rb,
1574
+ processor/command/next.rb, processor/command/nexti.rb,
1575
+ processor/location.rb, processor/main.rb: lib/trepanning.rb,
1576
+ nexti.rb, next.rb: make event names match rb-trepanning. Use string
1577
+ not symbol. location.rb: Reinstate print_location.
1578
+
1579
+ 2010-10-07 rocky <rockyb@rubyforge.org>
1580
+
1581
+ * app/breakpoint.rb, lib/trepanning.rb, processor/command/break.rb,
1582
+ processor/command/info_subcmd/program.rb,
1583
+ processor/command/next.rb, processor/command/nexti.rb: Start to add
1584
+ stopped event types.
1585
+
1586
+ 2010-10-07 rocky <rockyb@rubyforge.org>
1587
+
1588
+ * app/brkptmgr.rb, lib/trepanning.rb, processor/breakpoint.rb,
1589
+ processor/command/break.rb, processor/command/next.rb: Move
1590
+ set-breakpoint_method from lib/trepanning.rb into
1591
+ processor/breakpoint.rb brktmgr.rb: add rest of demo code
1592
+ lib/trepanning.rb: Don't need @breakpoints anymore. Use
1593
+ @processor.brkpts next.rb: typo.
1594
+
1595
+ 2010-10-05 rocky <rockyb@rubyforge.org>
1596
+
1597
+ * app/breakpoint.rb, lib/trepanning.rb, test/unit/test-app-brkpt.rb:
1598
+ breakpoint.rb: respect setting id value when passed. Add some demo
1599
+ code. Add unit test for app/breakpoint.rb
1600
+
1601
+ 2010-10-04 rocky <rockyb@rubyforge.org>
1602
+
1603
+ * app/brkptmgr.rb: Start Breakpoint manager.
1604
+
1605
+ 2010-10-04 rocky <rockyb@rubyforge.org>
1606
+
1607
+ * app/breakpoint.rb, lib/trepanning.rb, processor/command/next.rb,
1608
+ processor/command/nexti.rb: Baby step towards merging breakpoint
1609
+ handling with rb-trepanning.
1610
+
1611
+ 2010-09-29 rocky <rockyb@rubyforge.org>
1612
+
1613
+ * processor/command/set_subcmd/substitute.rb,
1614
+ processor/command/set_subcmd/substitute_subcmd/.gitignore,
1615
+ processor/command/set_subcmd/substitute_subcmd/path.rb: Add "set
1616
+ substitute ppath" command.
1617
+
1618
+ 2010-09-27 rocky <rockyb@rubyforge.org>
1619
+
1620
+ * processor/command/info_subcmd/file.rb: Add "info file".
1621
+
1622
+ 2010-09-27 rocky <rockyb@rubyforge.org>
1623
+
1624
+ * ChangeLog, processor/location.rb: Track rbx-linecache change which
1625
+ was tracking a change from linecache-tf...
1626
+
1627
+ 2010-09-27 rocky <rockyb@rubyforge.org>
1628
+
1629
+ * README.textile: README tyhpo
1630
+
1631
+ 2010-09-27 rocky <rockyb@rubyforge.org>
1632
+
1633
+ * README.textile: Add rbx-require-relative to README
1634
+
1635
+ 2010-09-27 rocky <rockyb@rubyforge.org>
1636
+
1637
+ * README.textile: Readme typo
1638
+
1639
+ 2010-09-27 rocky <rockyb@rubyforge.org>
1640
+
1641
+ * README.textile: Readme typo
1642
+
1643
+ 2010-09-27 rocky <rockyb@rubyforge.org>
1644
+
1645
+ * README.textile: Small readme tweak
1646
+
1647
+ 2010-09-27 rocky <rockyb@rubyforge.org>
1648
+
1649
+ * .gemspec, README.textile: Add README
1650
+
1651
+ 2010-09-27 rocky <rockyb@rubyforge.org>
1652
+
1653
+ * test/unit/test-bin-trepan.rb: Add unit test for bin/trepan
1654
+
1655
+ 2010-09-27 rocky <rockyb@rubyforge.org>
1656
+
1657
+ * lib/trepanning.rb, processor/main.rb,
1658
+ test/unit/test-app-options.rb, test/unit/test-app-run.rb: Run
1659
+ debugger user profile and set initial directory. Add options test.
1660
+
1661
+ 2010-09-27 rocky <rockyb@rubyforge.org>
1662
+
1663
+ * processor/command/set_subcmd/max_subcmd/list.rb,
1664
+ processor/command/show_subcmd/max_subcmd/list.rb: Add "set/show max
1665
+ list"
1666
+
1667
+ 2010-09-27 rocky <rockyb@rubyforge.org>
1668
+
1669
+ * processor/command/list.rb,
1670
+ processor/command/set_subcmd/max_subcmd/stack.rb,
1671
+ processor/default.rb: Add "set/show max list"
1672
+
1673
+ 2010-09-27 rocky <rockyb@rubyforge.org>
1674
+
1675
+ * app/frame.rb, processor/command/continue.rb,
1676
+ processor/command/list.rb, processor/command/nexti.rb,
1677
+ processor/command/set_subcmd/auto_subcmd/list.rb,
1678
+ processor/command/show_subcmd/auto_subcmd/list.rb,
1679
+ processor/command/step.rb, processor/frame.rb, processor/main.rb,
1680
+ processor/mock.rb, processor/validate.rb: Add "list" and set/show
1681
+ autolist commands. Somewhat buggy.
1682
+
1683
+ 2010-09-27 rocky <rockyb@rubyforge.org>
1684
+
1685
+ * .gemspec, lib/trepanning.rb, processor/command/directory.rb,
1686
+ processor/command/kill.rb, processor/default.rb,
1687
+ processor/location.rb, processor/main.rb: Add gdb-like 'directory'
1688
+ command so we can trace into rubinius source.
1689
+
1690
+ 2010-09-26 rocky <rockyb@rubyforge.org>
1691
+
1692
+ * .gemspec, Rakefile, lib/trepanning.rb: Need require-relative
1693
+ dependency.
1694
+
1695
+ 2010-09-26 rocky <rockyb@rubyforge.org>
1696
+
1697
+ * processor/command/restart.rb: Sync with rb-trepanning
1698
+
1699
+ 2010-09-26 rocky <rockyb@rubyforge.org>
1700
+
1701
+ * Rakefile, app/default.rb, app/options.rb, app/run.rb, bin/trepan,
1702
+ lib/trepanning.rb, processor/command/restart.rb,
1703
+ processor/default.rb, processor/mock.rb, processor/validate.rb,
1704
+ test/unit/test-app-run.rb: Rbdbgr->Trepanning
1705
+
1706
+ 2010-09-26 rocky <rockyb@rubyforge.org>
1707
+
1708
+ * THANKS: Text hacking
1709
+
1710
+ 2010-09-26 rocky <rockyb@rubyforge.org>
1711
+
1712
+ * THANKS: Text hacking
1713
+
1714
+ 2010-09-26 rocky <rockyb@rubyforge.org>
1715
+
1716
+ * processor/command/down.rb, processor/command/up.rb: Add "up" and
1717
+ "down" commands - this time, for sure!
1718
+
1719
+ 2010-09-26 rocky <rockyb@rubyforge.org>
1720
+
1721
+ * doc/debugger.html, lib/trepanning.rb, processor/command/frame.rb,
1722
+ processor/frame.rb, processor/main.rb: Add "up" and "down" commands.
1723
+ Renstatate more of trepan's CmdProcessor frame routines.
1724
+
1725
+ 2010-09-25 rocky <rockyb@rubyforge.org>
1726
+
1727
+ * .gemspec, app/default.rb, app/options.rb: Add executable. Pick up
1728
+ right command init file.
1729
+
1730
+ 2010-09-25 rocky <rockyb@rubyforge.org>
1731
+
1732
+ * .gemspec, AUTHORS, Rakefile, THANKS, app/options.rb, app/run.rb,
1733
+ bin/.gitignore, bin/trepan, processor/command/break.rb: Add code to
1734
+ invoke from outset. Complete with debugger options. Needs
1735
+ improvement to skip over the crap before main.__script__ starts.
1736
+ Numerous other small changes.
1737
+
1738
+ 2010-09-25 rocky <rockyb@rubyforge.org>
1739
+
1740
+ * .gemspec, .gitignore, AUTHORS, ChangeLog, NEWS, Rakefile,
1741
+ debugger.rb, lib/.gitignore, lib/trepanning.rb, processor/eval.rb,
1742
+ processor/mock.rb: Administrivia: do things to make a gem.
1743
+ debugger.rb -> lib/trepanning.rb So you now: require 'trepanning'
1744
+
1745
+ 2010-09-25 rocky <rockyb@rubyforge.org>
1746
+
1747
+ * doc/.gitignore, doc/debugger.html: Start revised documentation.
1748
+
1749
+ 2010-09-25 rocky <rockyb@rubyforge.org>
1750
+
1751
+ * app/default.rb, debugger.rb, processor/command/restart.rb,
1752
+ processor/command/show_subcmd/args.rb, processor/mock.rb: Add
1753
+ "restart" command. YAY! Means we also have "show args".
1754
+
1755
+ 2010-09-25 rocky <rockyb@rubyforge.org>
1756
+
1757
+ * app/run.rb, debugger.rb, processor/command/break.rb,
1758
+ processor/eval.rb, processor/main.rb, test/unit/test-app-run.rb:
1759
+ Bang on eval(). I think I've got it this time. Start run/restart.
1760
+
1761
+ 2010-09-25 rocky <rockyb@rubyforge.org>
1762
+
1763
+ * app/frame.rb, test/unit/test-proc-help.rb,
1764
+ test/unit/test-proc-hook.rb, test/unit/test-subcmd-help.rb:
1765
+ Stuffthat didn't seem to get committed last time.
1766
+
1767
+ 2010-09-25 rocky <rockyb@rubyforge.org>
1768
+
1769
+ * processor/command/base/cmd.rb, processor/eval.rb,
1770
+ processor/main.rb: Add more tests back in. Attempt to disembowl eval
1771
+ code. I think some bugs were fixed.
1772
+
1773
+ 2010-09-25 rocky <rockyb@rubyforge.org>
1774
+
1775
+ * app/breakpoint.rb, app/frame.rb, debugger.rb,
1776
+ processor/breakpoint.rb, processor/command/backtrace.rb,
1777
+ processor/command/base/cmd.rb, processor/command/break.rb,
1778
+ processor/command/delete.rb, processor/command/source.rb,
1779
+ processor/frame.rb, processor/main.rb, test/unit/cmd-helper.rb,
1780
+ test/unit/test-unit-exit.rb: debugger.rb : remove show_ip option.
1781
+ Goes in processor. bang on breakpoint code. move some to
1782
+ processor/breakpoint.rb processor/breakpoint.rb: more error checking
1783
+ info app/frame.rb: describe() pass in options - add show IP
1784
+ parameter. remove duplicate ip location
1785
+ app/breakpoint.rb: change IP location indicator from + to @. Is this
1786
+ right? base/cmd.rb: run_code() was wrong. Other misc bugs fixed.
1787
+
1788
+ 2010-09-24 rocky <rockyb@rubyforge.org>
1789
+
1790
+ * processor/command/alias.rb: Reinstate showing aliases code in
1791
+ "alias" command
1792
+
1793
+ 2010-09-24 rocky <rockyb@rubyforge.org>
1794
+
1795
+ * processor/command/exit.rb: Update help for exit
1796
+
1797
+ 2010-09-24 rocky <rockyb@rubyforge.org>
1798
+
1799
+ * processor/command/exit.rb, processor/command/frame.rb: frame.rb:
1800
+ was in wrong category exit.rb: add q!
1801
+
1802
+ 2010-09-24 rocky <rockyb@rubyforge.org>
1803
+
1804
+ * LICENSE, app/breakpoint.rb, app/frame.rb, debugger.rb,
1805
+ processor/breakpoint.rb, processor/command/base/subsubcmd.rb,
1806
+ processor/command/eval.rb,
1807
+ processor/command/info_subcmd/program.rb, processor/command/ps.rb,
1808
+ processor/command/set_subcmd/max.rb,
1809
+ processor/command/set_subcmd/max_subcmd/.gitignore,
1810
+ processor/command/set_subcmd/max_subcmd/stack.rb,
1811
+ processor/command/set_subcmd/max_subcmd/string.rb,
1812
+ processor/command/set_subcmd/max_subcmd/width.rb,
1813
+ processor/command/show_subcmd/max.rb,
1814
+ processor/command/show_subcmd/max_subcmd/.gitignore,
1815
+ processor/command/show_subcmd/max_subcmd/stack.rb,
1816
+ processor/command/show_subcmd/max_subcmd/string.rb,
1817
+ processor/command/show_subcmd/max_subcmd/width.rb,
1818
+ processor/default.rb, processor/eval.rb, processor/main.rb: Add max
1819
+ set/show subcommands "info program" processor eval now sets filename
1820
+ and we now store breakpoint ids. prompt is more inline with other
1821
+ debuggers :-(
1822
+
1823
+ 2010-09-23 rocky <rockyb@rubyforge.org>
1824
+
1825
+ * debugger/.gitignore, debugger/Makefile,
1826
+ debugger/command/.gitignore, debugger/command/base/.gitignore,
1827
+ debugger/command/base/cmd.rb, debugger/command/set.rb,
1828
+ debugger/old/.gitignore, debugger/old/command.rb,
1829
+ debugger/old/debug_client.rb, debugger/old/debug_server.rb,
1830
+ debugger/old/debugger.rb, debugger/old/interface.rb,
1831
+ debugger/old/output.rb, debugger/old/standard_commands.rb,
1832
+ debugger/old/vm_commands.rb, processor/command/base/subsubcmd.rb,
1833
+ processor/command/base/subsubmgr.rb, processor/command/exit.rb,
1834
+ processor/command/set_subcmd/auto.rb,
1835
+ processor/command/set_subcmd/auto_subcmd/.gitignore,
1836
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
1837
+ processor/command/show_subcmd/auto.rb,
1838
+ processor/command/show_subcmd/auto_subcmd/.gitignore,
1839
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
1840
+ processor/main.rb, processor/running.rb: Add subsub commands. In
1841
+ particular: set/show autoeval.
1842
+
1843
+ 2010-09-23 rocky <rockyb@rubyforge.org>
1844
+
1845
+ * debugger.rb, debugger/command/info.rb, debugger/command/show.rb,
1846
+ processor/command/break.rb, processor/command/info.rb,
1847
+ processor/command/info_subcmd/.gitignore,
1848
+ processor/command/info_subcmd/breakpoints.rb,
1849
+ processor/command/info_subcmd/method.rb,
1850
+ processor/command/info_subcmd/variables.rb,
1851
+ processor/command/set.rb, processor/command/set_subcmd/.gitignore,
1852
+ processor/command/set_subcmd/different.rb,
1853
+ processor/command/show_subcmd/different.rb, processor/default.rb,
1854
+ processor/mock.rb, processor/subcmd.rb: Finish up last of commands
1855
+ to be converted from reference debugger. Add some of routines from
1856
+ trepan for 1.9.2.
1857
+
1858
+ 2010-09-23 rocky <rockyb@rubyforge.org>
1859
+
1860
+ * processor/command/base/subcmd.rb,
1861
+ processor/command/base/submgr.rb, processor/command/show.rb,
1862
+ processor/command/show_subcmd/.gitignore,
1863
+ processor/command/show_subcmd/alias.rb, processor/help.rb,
1864
+ processor/subcmd.rb: Add first subcommand: show. Take "alias" from
1865
+ trepan as the first subcommand.
1866
+
1867
+ 2010-09-23 rocky <rockyb@rubyforge.org>
1868
+
1869
+ * debugger.rb, debugger/command/nexti.rb,
1870
+ processor/command/base/cmd.rb, processor/command/disassemble.rb,
1871
+ processor/command/nexti.rb, processor/eval.rb, processor/main.rb:
1872
+ Move over "nexti" command. Figure out "disassemble" problem.
1873
+ main.rb: add traceback on internal error.
1874
+
1875
+ 2010-09-23 rocky <rockyb@rubyforge.org>
1876
+
1877
+ * debugger.rb, debugger/command/delete.rb,
1878
+ debugger/command/disassemble.rb, debugger/command/frame.rb,
1879
+ debugger/command/tb.rb, processor/command/backtrace.rb,
1880
+ processor/command/break.rb, processor/command/delete.rb,
1881
+ processor/command/disassemble.rb, processor/command/frame.rb,
1882
+ processor/command/tbreak.rb, processor/main.rb: Move over delete,
1883
+ frame, tbreak, backtrace, break and diassemble.
1884
+
1885
+ 2010-09-23 rocky <rockyb@rubyforge.org>
1886
+
1887
+ * Rakefile, processor/command/backtrace.rb: Small changes.
1888
+
1889
+ 2010-09-23 rocky <rockyb@rubyforge.org>
1890
+
1891
+ * debugger/command/break.rb, debugger/command/help.rb,
1892
+ debugger/command/step.rb, processor/command/break.rb,
1893
+ processor/command/next.rb, processor/command/step.rb: Add 'step'.
1894
+ Start 'break'.
1895
+
1896
+ 2010-09-23 rocky <rockyb@rubyforge.org>
1897
+
1898
+ * debugger/command/backtrace.rb, processor/command/backtrace.rb,
1899
+ processor/command/continue.rb, processor/command/next.rb: Add
1900
+ backtrace
1901
+
1902
+ 2010-09-23 rocky <rockyb@rubyforge.org>
1903
+
1904
+ * debugger.rb, processor/frame.rb, processor/hook.rb,
1905
+ processor/main.rb: Move process-command code from debugger.rb into
1906
+ into processor/main.rb Add hook code from 1.9.2 trepan. Not used yet
1907
+ though.
1908
+
1909
+ 2010-09-22 rocky <rockyb@rubyforge.org>
1910
+
1911
+ * debugger.rb, debugger/command/eval.rb,
1912
+ processor/command/base/cmd.rb, processor/command/eval.rb,
1913
+ processor/command/help.rb, processor/command/next.rb,
1914
+ processor/mock.rb: Add command eval. Short help working In 1.8
1915
+ class.constants are strings while in 1.9 class.constants are
1916
+ symbols.
1917
+
1918
+ 2010-09-22 rocky <rockyb@rubyforge.org>
1919
+
1920
+ * Makefile, debugger.rb, debugger/command/continue.rb,
1921
+ debugger/command/kill.rb, processor/command/alias.rb,
1922
+ processor/command/continue.rb, processor/command/next.rb,
1923
+ processor/command/unalias.rb, test/unit/test-cmd-alias.rb: Add
1924
+ 'continue', 'alias', and 'unalias' commands.
1925
+
1926
+ 2010-09-22 rocky <rockyb@rubyforge.org>
1927
+
1928
+ * Rakefile, debugger.rb, debugger/command/next.rb,
1929
+ processor/command/help.rb, processor/command/next.rb,
1930
+ processor/frame.rb, processor/main.rb, test/unit/test-cmd-help.rb:
1931
+ First stepping command, "next" now does something.
1932
+
1933
+ 2010-09-22 rocky <rockyb@rubyforge.org>
1934
+
1935
+ * test/unit/test-proc-main.rb, test/unit/test-proc-validate.rb: Unit
1936
+ tests for processor/main.rb and processor/validate.rb
1937
+
1938
+ 2010-09-22 rocky <rockyb@rubyforge.org>
1939
+
1940
+ * processor/command/kill.rb, processor/main.rb,
1941
+ processor/validate.rb: Add validation routines. Some parts are
1942
+ commented out for now.
1943
+
1944
+ 2010-09-22 rocky <rockyb@rubyforge.org>
1945
+
1946
+ * Rakefile, app/breakpoint.rb, app/display.rb, app/frame.rb,
1947
+ app/util.rb, debugger.rb, debugger/breakpoint.rb,
1948
+ debugger/display.rb, debugger/frame.rb,
1949
+ processor/command/base/cmd.rb, processor/command/kill.rb,
1950
+ processor/load_cmds.rb, processor/main.rb, processor/msg.rb,
1951
+ test/unit/test-app-util.rb, test/unit/test-intf-user.rb: Our first
1952
+ commands -- 'help' and 'kill' under the reorganization!
1953
+
1954
+ 2010-09-22 rocky <rockyb@rubyforge.org>
1955
+
1956
+ * .gitignore, Rakefile, app/.gitignore, app/default.rb,
1957
+ app/mock.rb, debugger/command/next.rb, interface/.gitignore,
1958
+ interface/base_intf.rb, interface/script.rb, interface/user.rb,
1959
+ io/.gitignore, io/base_io.rb, io/input.rb, io/string_array.rb,
1960
+ processor/.gitignore, processor/command/.gitignore,
1961
+ processor/command/base/.gitignore, processor/command/base/cmd.rb,
1962
+ processor/command/help.rb, processor/command/kill.rb,
1963
+ processor/default.rb, processor/load_cmds.rb, processor/main.rb,
1964
+ processor/mock.rb, test/unit/.gitignore, test/unit/cmd-helper.rb,
1965
+ test/unit/test-cmd-help.rb, test/unit/test-cmd-kill.rb,
1966
+ test/unit/test-io-input.rb, test/unit/test-proc-load_cmds.rb: Get
1967
+ command loading boilerplate. Help is there now. Interface added. And
1968
+ even some of the unit tests!
1969
+
1970
+ 2010-09-21 rocky <rockyb@rubyforge.org>
1971
+
1972
+ * debugger/command/base/cmd.rb: Small cleanup before big
1973
+ reorganization
1974
+
1975
+ 2010-09-21 rocky <rockyb@rubyforge.org>
1976
+
1977
+ * Makefile, Rakefile, debugger.rb, debugger/.gitignore,
1978
+ debugger/Makefile, debugger/breakpoint.rb,
1979
+ debugger/command/backtrace.rb, debugger/command/base/.gitignore,
1980
+ debugger/command/base/cmd.rb, debugger/command/break.rb,
1981
+ debugger/command/continue.rb, debugger/command/delete.rb,
1982
+ debugger/command/disassemble.rb, debugger/command/eval.rb,
1983
+ debugger/command/frame.rb, debugger/command/help.rb,
1984
+ debugger/command/info.rb, debugger/command/kill.rb,
1985
+ debugger/command/next.rb, debugger/command/nexti.rb,
1986
+ debugger/command/set.rb, debugger/command/show.rb,
1987
+ debugger/command/step.rb, debugger/command/tb.rb,
1988
+ debugger/commands.rb, debugger/display.rb, debugger/frame.rb: Put
1989
+ all commands in the 'command' directory. Add temporary hack to keep
1990
+ Command.command singleton array from growing on running each
1991
+ debugger command.
1992
+
1993
+ 2010-09-18 rvm <rocky-rvm@static-71-183-236-17.nycmny.fios.verizon.net>
1994
+
1995
+ * .gitignore, debugger.rb, debugger/command/.gitignore,
1996
+ debugger/command/eval.rb, debugger/command/kill.rb,
1997
+ debugger/commands.rb: Move commands to a 'command' directory.
1998
+
1999
+ 2010-09-17 rvm <rocky-rvm@static-71-183-236-17.nycmny.fios.verizon.net>
2000
+
2001
+ * Initial debugger import from rubinius.
2002
+