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,71 @@
1
+ # Copyright (C) 2010, 2011 Rocky Bernstein <rockyb@rubyforge.net>
2
+ # A place for the default settings
3
+ class Trepan
4
+
5
+ # I am not sure if we need to sets of hashes, but we'll start out
6
+ # that way.
7
+
8
+ # Default settings for a Trepan class object
9
+ DEFAULT_SETTINGS = {
10
+ :cmdproc_opts => {}, # Default Trepan::CmdProcessor settings
11
+ :core_opts => {}, # Default Trepan::Core settings
12
+ :delete_restore => true, # Delete restore profile after reading?
13
+ :initial_dir => nil, # If --cd option was given, we save it here.
14
+ :nx => false, # Don't run user startup file (e.g. .trepanxrc)
15
+ :offset => 0, # skipping back +offset+ frames. This lets you start
16
+ # the debugger straight into callers method.
17
+
18
+ # Default values used only when 'server' or 'client'
19
+ # (out-of-process debugging)
20
+ :port => 1955,
21
+ :host => 'localhost',
22
+
23
+ :restart_argv => Rubinius::OS_ARGV,
24
+ # Command run when "restart" is given.
25
+ :restore_profile => nil, # Profile used to set/restore debugger state
26
+ :server => false, # Out-of-process debugging?
27
+ :skip_loader => false, # If run via -Xdebug or trepanx
28
+ # command-line we need this to skip
29
+ # over some initial Rubinius loader
30
+ # commands.
31
+ } unless defined?(DEFAULT_SETTINGS)
32
+
33
+ # Default settings for Trepan run from the command line.
34
+ DEFAULT_CMDLINE_SETTINGS = {
35
+ :cmdfiles => [], # Initialization command files to run
36
+ :client => false, # Attach to out-of-process program?
37
+ :nx => false, # Don't run user startup file (e.g. .trepanxrc)
38
+ :output => nil,
39
+ :port => DEFAULT_SETTINGS[:port],
40
+ :host => DEFAULT_SETTINGS[:host],
41
+ :server => false, # Out-of-process debugging?
42
+ # Note that at most one of :server or :client can be true.
43
+ } unless defined?(DEFAULT_CMDLINE_SETTINGS)
44
+
45
+ DEFAULT_DEBUG_STR_SETTINGS = {
46
+ :core_opts => {
47
+ :cmdproc_opts => {:different => false}},
48
+ :hide_stack => true,
49
+ } unless defined?(DEFAULT_DEBUG_STR_SETTINGS)
50
+
51
+ CMD_INITFILE_BASE =
52
+ if RUBY_PLATFORM =~ /mswin/
53
+ # Of course MS Windows has to be different
54
+ HOME_DIR = (ENV['HOME'] ||
55
+ ENV['HOMEDRIVE'].to_s + ENV['HOMEPATH'].to_s).to_s
56
+ 'trepanx.ini'
57
+ else
58
+ HOME_DIR = ENV['HOME'].to_s
59
+ '.trepanxrc'
60
+ end unless defined?(CMD_INITFILE_BASE)
61
+ CMD_INITFILE = File.join(HOME_DIR, CMD_INITFILE_BASE) unless
62
+ defined?(CMD_INITFILE)
63
+ end
64
+
65
+ if __FILE__ == $0
66
+ # Show it:
67
+ require 'pp'
68
+ PP.pp(Trepan::DEFAULT_SETTINGS)
69
+ puts '=' * 30
70
+ PP.pp(Trepan::DEFAULT_CMDLINE_SETTINGS)
71
+ end
@@ -0,0 +1,1132 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 95
13
+ 99
14
+ 7
15
+ 0
16
+ 1
17
+ 65
18
+ 49
19
+ 1
20
+ 3
21
+ 13
22
+ 99
23
+ 12
24
+ 7
25
+ 2
26
+ 12
27
+ 7
28
+ 3
29
+ 12
30
+ 65
31
+ 12
32
+ 49
33
+ 4
34
+ 4
35
+ 15
36
+ 49
37
+ 2
38
+ 0
39
+ 15
40
+ 65
41
+ 49
42
+ 5
43
+ 0
44
+ 99
45
+ 43
46
+ 6
47
+ 7
48
+ 7
49
+ 49
50
+ 8
51
+ 1
52
+ 83
53
+ 9
54
+ 9
55
+ 91
56
+ 5
57
+ 7
58
+ 10
59
+ 64
60
+ 47
61
+ 49
62
+ 11
63
+ 1
64
+ 15
65
+ 45
66
+ 12
67
+ 13
68
+ 45
69
+ 0
70
+ 14
71
+ 43
72
+ 15
73
+ 49
74
+ 16
75
+ 1
76
+ 15
77
+ 5
78
+ 7
79
+ 17
80
+ 64
81
+ 4
82
+ 30
83
+ 49
84
+ 18
85
+ 1
86
+ 47
87
+ 49
88
+ 19
89
+ 1
90
+ 15
91
+ 45
92
+ 12
93
+ 20
94
+ 45
95
+ 0
96
+ 21
97
+ 43
98
+ 22
99
+ 49
100
+ 16
101
+ 1
102
+ 8
103
+ 92
104
+ 1
105
+ 15
106
+ 2
107
+ 11
108
+ I
109
+ 6
110
+ I
111
+ 0
112
+ I
113
+ 0
114
+ I
115
+ 0
116
+ n
117
+ p
118
+ 23
119
+ x
120
+ 6
121
+ Trepan
122
+ x
123
+ 10
124
+ open_class
125
+ x
126
+ 14
127
+ __class_init__
128
+ M
129
+ 1
130
+ n
131
+ n
132
+ x
133
+ 6
134
+ Trepan
135
+ i
136
+ 564
137
+ 5
138
+ 66
139
+ 26
140
+ 93
141
+ 0
142
+ 15
143
+ 29
144
+ 17
145
+ 0
146
+ 7
147
+ 0
148
+ 98
149
+ 1
150
+ 1
151
+ 30
152
+ 8
153
+ 23
154
+ 25
155
+ 92
156
+ 0
157
+ 27
158
+ 8
159
+ 28
160
+ 15
161
+ 7
162
+ 2
163
+ 8
164
+ 29
165
+ 1
166
+ 9
167
+ 34
168
+ 1
169
+ 8
170
+ 163
171
+ 65
172
+ 7
173
+ 0
174
+ 44
175
+ 43
176
+ 3
177
+ 4
178
+ 12
179
+ 49
180
+ 4
181
+ 1
182
+ 13
183
+ 7
184
+ 5
185
+ 44
186
+ 43
187
+ 3
188
+ 78
189
+ 49
190
+ 4
191
+ 1
192
+ 49
193
+ 6
194
+ 2
195
+ 15
196
+ 13
197
+ 7
198
+ 7
199
+ 44
200
+ 43
201
+ 3
202
+ 78
203
+ 49
204
+ 4
205
+ 1
206
+ 49
207
+ 6
208
+ 2
209
+ 15
210
+ 13
211
+ 7
212
+ 8
213
+ 2
214
+ 49
215
+ 6
216
+ 2
217
+ 15
218
+ 13
219
+ 7
220
+ 9
221
+ 1
222
+ 49
223
+ 6
224
+ 2
225
+ 15
226
+ 13
227
+ 7
228
+ 10
229
+ 3
230
+ 49
231
+ 6
232
+ 2
233
+ 15
234
+ 13
235
+ 7
236
+ 11
237
+ 78
238
+ 49
239
+ 6
240
+ 2
241
+ 15
242
+ 13
243
+ 7
244
+ 12
245
+ 7
246
+ 13
247
+ 49
248
+ 6
249
+ 2
250
+ 15
251
+ 13
252
+ 7
253
+ 14
254
+ 7
255
+ 15
256
+ 64
257
+ 49
258
+ 6
259
+ 2
260
+ 15
261
+ 13
262
+ 7
263
+ 16
264
+ 45
265
+ 17
266
+ 18
267
+ 43
268
+ 19
269
+ 49
270
+ 6
271
+ 2
272
+ 15
273
+ 13
274
+ 7
275
+ 20
276
+ 1
277
+ 49
278
+ 6
279
+ 2
280
+ 15
281
+ 13
282
+ 7
283
+ 21
284
+ 3
285
+ 49
286
+ 6
287
+ 2
288
+ 15
289
+ 13
290
+ 7
291
+ 22
292
+ 3
293
+ 49
294
+ 6
295
+ 2
296
+ 15
297
+ 49
298
+ 23
299
+ 2
300
+ 15
301
+ 26
302
+ 93
303
+ 1
304
+ 15
305
+ 29
306
+ 179
307
+ 0
308
+ 7
309
+ 24
310
+ 98
311
+ 1
312
+ 1
313
+ 30
314
+ 8
315
+ 185
316
+ 25
317
+ 92
318
+ 1
319
+ 27
320
+ 8
321
+ 190
322
+ 15
323
+ 7
324
+ 2
325
+ 8
326
+ 191
327
+ 1
328
+ 9
329
+ 196
330
+ 1
331
+ 8
332
+ 281
333
+ 65
334
+ 7
335
+ 24
336
+ 44
337
+ 43
338
+ 3
339
+ 4
340
+ 7
341
+ 49
342
+ 4
343
+ 1
344
+ 13
345
+ 7
346
+ 25
347
+ 35
348
+ 0
349
+ 49
350
+ 6
351
+ 2
352
+ 15
353
+ 13
354
+ 7
355
+ 26
356
+ 3
357
+ 49
358
+ 6
359
+ 2
360
+ 15
361
+ 13
362
+ 7
363
+ 10
364
+ 3
365
+ 49
366
+ 6
367
+ 2
368
+ 15
369
+ 13
370
+ 7
371
+ 27
372
+ 1
373
+ 49
374
+ 6
375
+ 2
376
+ 15
377
+ 13
378
+ 7
379
+ 12
380
+ 45
381
+ 0
382
+ 28
383
+ 7
384
+ 12
385
+ 49
386
+ 29
387
+ 1
388
+ 49
389
+ 6
390
+ 2
391
+ 15
392
+ 13
393
+ 7
394
+ 14
395
+ 45
396
+ 0
397
+ 30
398
+ 7
399
+ 14
400
+ 49
401
+ 29
402
+ 1
403
+ 49
404
+ 6
405
+ 2
406
+ 15
407
+ 13
408
+ 7
409
+ 21
410
+ 3
411
+ 49
412
+ 6
413
+ 2
414
+ 15
415
+ 49
416
+ 23
417
+ 2
418
+ 15
419
+ 26
420
+ 93
421
+ 2
422
+ 15
423
+ 29
424
+ 297
425
+ 0
426
+ 7
427
+ 31
428
+ 98
429
+ 1
430
+ 1
431
+ 30
432
+ 8
433
+ 303
434
+ 25
435
+ 92
436
+ 2
437
+ 27
438
+ 8
439
+ 308
440
+ 15
441
+ 7
442
+ 2
443
+ 8
444
+ 309
445
+ 1
446
+ 9
447
+ 314
448
+ 1
449
+ 8
450
+ 371
451
+ 65
452
+ 7
453
+ 31
454
+ 44
455
+ 43
456
+ 3
457
+ 80
458
+ 49
459
+ 4
460
+ 1
461
+ 13
462
+ 7
463
+ 7
464
+ 44
465
+ 43
466
+ 3
467
+ 79
468
+ 49
469
+ 4
470
+ 1
471
+ 13
472
+ 7
473
+ 5
474
+ 44
475
+ 43
476
+ 3
477
+ 79
478
+ 49
479
+ 4
480
+ 1
481
+ 13
482
+ 7
483
+ 32
484
+ 3
485
+ 49
486
+ 6
487
+ 2
488
+ 15
489
+ 49
490
+ 6
491
+ 2
492
+ 15
493
+ 49
494
+ 6
495
+ 2
496
+ 15
497
+ 13
498
+ 7
499
+ 33
500
+ 2
501
+ 49
502
+ 6
503
+ 2
504
+ 15
505
+ 49
506
+ 23
507
+ 2
508
+ 15
509
+ 26
510
+ 93
511
+ 3
512
+ 15
513
+ 29
514
+ 387
515
+ 0
516
+ 7
517
+ 34
518
+ 98
519
+ 1
520
+ 1
521
+ 30
522
+ 8
523
+ 393
524
+ 25
525
+ 92
526
+ 3
527
+ 27
528
+ 8
529
+ 398
530
+ 15
531
+ 7
532
+ 2
533
+ 8
534
+ 399
535
+ 1
536
+ 9
537
+ 404
538
+ 1
539
+ 8
540
+ 512
541
+ 65
542
+ 7
543
+ 34
544
+ 45
545
+ 35
546
+ 36
547
+ 7
548
+ 37
549
+ 13
550
+ 70
551
+ 9
552
+ 428
553
+ 15
554
+ 44
555
+ 43
556
+ 38
557
+ 7
558
+ 39
559
+ 78
560
+ 49
561
+ 40
562
+ 2
563
+ 6
564
+ 37
565
+ 49
566
+ 41
567
+ 1
568
+ 9
569
+ 487
570
+ 65
571
+ 7
572
+ 42
573
+ 45
574
+ 43
575
+ 44
576
+ 7
577
+ 45
578
+ 64
579
+ 49
580
+ 29
581
+ 1
582
+ 13
583
+ 10
584
+ 475
585
+ 15
586
+ 45
587
+ 43
588
+ 46
589
+ 7
590
+ 47
591
+ 64
592
+ 49
593
+ 29
594
+ 1
595
+ 49
596
+ 48
597
+ 0
598
+ 45
599
+ 43
600
+ 49
601
+ 7
602
+ 50
603
+ 64
604
+ 49
605
+ 29
606
+ 1
607
+ 49
608
+ 48
609
+ 0
610
+ 81
611
+ 51
612
+ 49
613
+ 48
614
+ 0
615
+ 49
616
+ 23
617
+ 2
618
+ 15
619
+ 7
620
+ 52
621
+ 64
622
+ 8
623
+ 509
624
+ 65
625
+ 7
626
+ 42
627
+ 45
628
+ 43
629
+ 53
630
+ 7
631
+ 45
632
+ 64
633
+ 49
634
+ 29
635
+ 1
636
+ 49
637
+ 48
638
+ 0
639
+ 49
640
+ 23
641
+ 2
642
+ 15
643
+ 7
644
+ 54
645
+ 64
646
+ 49
647
+ 23
648
+ 2
649
+ 15
650
+ 26
651
+ 93
652
+ 4
653
+ 15
654
+ 29
655
+ 528
656
+ 0
657
+ 7
658
+ 55
659
+ 98
660
+ 1
661
+ 1
662
+ 30
663
+ 8
664
+ 534
665
+ 25
666
+ 92
667
+ 4
668
+ 27
669
+ 8
670
+ 539
671
+ 15
672
+ 7
673
+ 2
674
+ 8
675
+ 540
676
+ 1
677
+ 9
678
+ 545
679
+ 1
680
+ 8
681
+ 563
682
+ 65
683
+ 7
684
+ 55
685
+ 45
686
+ 56
687
+ 57
688
+ 45
689
+ 42
690
+ 58
691
+ 45
692
+ 34
693
+ 59
694
+ 49
695
+ 60
696
+ 2
697
+ 49
698
+ 23
699
+ 2
700
+ 11
701
+ I
702
+ 11
703
+ I
704
+ 0
705
+ I
706
+ 0
707
+ I
708
+ 0
709
+ n
710
+ p
711
+ 61
712
+ x
713
+ 16
714
+ DEFAULT_SETTINGS
715
+ x
716
+ 16
717
+ vm_const_defined
718
+ s
719
+ 8
720
+ constant
721
+ x
722
+ 4
723
+ Hash
724
+ x
725
+ 16
726
+ new_from_literal
727
+ x
728
+ 12
729
+ cmdproc_opts
730
+ x
731
+ 3
732
+ []=
733
+ x
734
+ 9
735
+ core_opts
736
+ x
737
+ 14
738
+ delete_restore
739
+ x
740
+ 11
741
+ initial_dir
742
+ x
743
+ 2
744
+ nx
745
+ x
746
+ 6
747
+ offset
748
+ x
749
+ 4
750
+ port
751
+ I
752
+ 7a3
753
+ x
754
+ 4
755
+ host
756
+ s
757
+ 9
758
+ localhost
759
+ x
760
+ 12
761
+ restart_argv
762
+ x
763
+ 8
764
+ Rubinius
765
+ n
766
+ x
767
+ 7
768
+ OS_ARGV
769
+ x
770
+ 15
771
+ restore_profile
772
+ x
773
+ 6
774
+ server
775
+ x
776
+ 11
777
+ skip_loader
778
+ x
779
+ 9
780
+ const_set
781
+ x
782
+ 24
783
+ DEFAULT_CMDLINE_SETTINGS
784
+ x
785
+ 8
786
+ cmdfiles
787
+ x
788
+ 6
789
+ client
790
+ x
791
+ 6
792
+ output
793
+ n
794
+ x
795
+ 2
796
+ []
797
+ n
798
+ x
799
+ 26
800
+ DEFAULT_DEBUG_STR_SETTINGS
801
+ x
802
+ 9
803
+ different
804
+ x
805
+ 10
806
+ hide_stack
807
+ x
808
+ 17
809
+ CMD_INITFILE_BASE
810
+ x
811
+ 13
812
+ RUBY_PLATFORM
813
+ n
814
+ n
815
+ x
816
+ 6
817
+ Regexp
818
+ s
819
+ 5
820
+ mswin
821
+ x
822
+ 3
823
+ new
824
+ x
825
+ 2
826
+ =~
827
+ x
828
+ 8
829
+ HOME_DIR
830
+ x
831
+ 3
832
+ ENV
833
+ n
834
+ s
835
+ 4
836
+ HOME
837
+ n
838
+ s
839
+ 9
840
+ HOMEDRIVE
841
+ x
842
+ 4
843
+ to_s
844
+ n
845
+ s
846
+ 8
847
+ HOMEPATH
848
+ x
849
+ 1
850
+ +
851
+ s
852
+ 11
853
+ trepanx.ini
854
+ n
855
+ s
856
+ 10
857
+ .trepanxrc
858
+ x
859
+ 12
860
+ CMD_INITFILE
861
+ x
862
+ 4
863
+ File
864
+ n
865
+ n
866
+ n
867
+ x
868
+ 4
869
+ join
870
+ p
871
+ 85
872
+ I
873
+ 2
874
+ I
875
+ 1f
876
+ I
877
+ 22
878
+ I
879
+ 9
880
+ I
881
+ 25
882
+ I
883
+ 1f
884
+ I
885
+ 2e
886
+ I
887
+ a
888
+ I
889
+ 3c
890
+ I
891
+ b
892
+ I
893
+ 4a
894
+ I
895
+ c
896
+ I
897
+ 52
898
+ I
899
+ d
900
+ I
901
+ 5a
902
+ I
903
+ e
904
+ I
905
+ 62
906
+ I
907
+ f
908
+ I
909
+ 6a
910
+ I
911
+ 14
912
+ I
913
+ 73
914
+ I
915
+ 15
916
+ I
917
+ 7d
918
+ I
919
+ 17
920
+ I
921
+ 89
922
+ I
923
+ 19
924
+ I
925
+ 91
926
+ I
927
+ 1a
928
+ I
929
+ 99
930
+ I
931
+ 1b
932
+ I
933
+ a4
934
+ I
935
+ 2b
936
+ I
937
+ c4
938
+ I
939
+ 22
940
+ I
941
+ c7
942
+ I
943
+ 2b
944
+ I
945
+ d0
946
+ I
947
+ 23
948
+ I
949
+ d9
950
+ I
951
+ 24
952
+ I
953
+ e1
954
+ I
955
+ 25
956
+ I
957
+ e9
958
+ I
959
+ 26
960
+ I
961
+ f1
962
+ I
963
+ 27
964
+ I
965
+ 100
966
+ I
967
+ 28
968
+ I
969
+ 10f
970
+ I
971
+ 29
972
+ I
973
+ 11a
974
+ I
975
+ 31
976
+ I
977
+ 13a
978
+ I
979
+ 2d
980
+ I
981
+ 13d
982
+ I
983
+ 31
984
+ I
985
+ 145
986
+ I
987
+ 2e
988
+ I
989
+ 147
990
+ I
991
+ 2f
992
+ I
993
+ 169
994
+ I
995
+ 30
996
+ I
997
+ 174
998
+ I
999
+ 3c
1000
+ I
1001
+ 194
1002
+ I
1003
+ 33
1004
+ I
1005
+ 197
1006
+ I
1007
+ 34
1008
+ I
1009
+ 1b1
1010
+ I
1011
+ 36
1012
+ I
1013
+ 1b4
1014
+ I
1015
+ 36
1016
+ I
1017
+ 1c1
1018
+ I
1019
+ 37
1020
+ I
1021
+ 1e2
1022
+ I
1023
+ 38
1024
+ I
1025
+ 1e7
1026
+ I
1027
+ 3a
1028
+ I
1029
+ 1fa
1030
+ I
1031
+ 3b
1032
+ I
1033
+ 201
1034
+ I
1035
+ 3e
1036
+ I
1037
+ 221
1038
+ I
1039
+ 3d
1040
+ I
1041
+ 234
1042
+ x
1043
+ 54
1044
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/default.rb
1045
+ p
1046
+ 0
1047
+ x
1048
+ 13
1049
+ attach_method
1050
+ x
1051
+ 11
1052
+ active_path
1053
+ x
1054
+ 7
1055
+ Globals
1056
+ x
1057
+ 2
1058
+ $0
1059
+ x
1060
+ 2
1061
+ []
1062
+ x
1063
+ 2
1064
+ ==
1065
+ s
1066
+ 2
1067
+ pp
1068
+ x
1069
+ 7
1070
+ require
1071
+ x
1072
+ 2
1073
+ PP
1074
+ n
1075
+ n
1076
+ x
1077
+ 16
1078
+ DEFAULT_SETTINGS
1079
+ x
1080
+ 2
1081
+ pp
1082
+ s
1083
+ 1
1084
+ =
1085
+ x
1086
+ 1
1087
+ *
1088
+ x
1089
+ 4
1090
+ puts
1091
+ n
1092
+ n
1093
+ x
1094
+ 24
1095
+ DEFAULT_CMDLINE_SETTINGS
1096
+ p
1097
+ 15
1098
+ I
1099
+ 0
1100
+ I
1101
+ 3
1102
+ I
1103
+ 1b
1104
+ I
1105
+ 41
1106
+ I
1107
+ 2b
1108
+ I
1109
+ 43
1110
+ I
1111
+ 34
1112
+ I
1113
+ 44
1114
+ I
1115
+ 40
1116
+ I
1117
+ 45
1118
+ I
1119
+ 4e
1120
+ I
1121
+ 46
1122
+ I
1123
+ 5b
1124
+ I
1125
+ 41
1126
+ I
1127
+ 5f
1128
+ x
1129
+ 54
1130
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/default.rb
1131
+ p
1132
+ 0