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,86 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Copyright (C) 2010 Rocky Bernstein <rockyb@rubyforge.net>
3
+ require 'rbconfig'
4
+ require 'rubygems'; require 'require_relative'
5
+ module Trepanning
6
+
7
+ :module_function # All functions below are easily publically accessible
8
+
9
+ # Given a Ruby interpreter and program we are to debug, debug it.
10
+ # The caller must ensure that ARGV is set up to remove any debugger
11
+ # arguments or things that the debugged program isn't supposed to
12
+ # see. FIXME: Should we make ARGV an explicit parameter?
13
+ def debug_program(dbgr, ruby_path, program_to_debug, start_opts={})
14
+
15
+ # Make sure Ruby script syntax checks okay.
16
+ # Otherwise we get a load message that looks like trepanning has
17
+ # a problem.
18
+ output = `#{ruby_path} -c #{program_to_debug.inspect} 2>&1`
19
+ if $?.exitstatus != 0 and RUBY_PLATFORM !~ /mswin/
20
+ puts output
21
+ exit $?.exitstatus
22
+ end
23
+ # print "\032\032starting\n" if Trepan.annotate and Trepan.annotate > 2
24
+
25
+ ## FIXME: put in fn.
26
+ m = self.method(:debug_program).executable
27
+ dbgr.processor.ignore_methods[m]='step'
28
+
29
+ # m = Kernel.method(:load).executable
30
+ # dbgr.processor.ignore_methods[m]='step'
31
+
32
+ # Any frame from us or below should be hidden by default.
33
+ hide_level = Rubinius::VM.backtrace(0, true).size+1
34
+
35
+ old_dollar_0 = $0
36
+
37
+ # Without the dance below to set $0, setting it to a signifcantly
38
+ # longer value will truncate it in some OS's. See
39
+ # http://www.ruby-forum.com/topic/187083
40
+ $progname = program_to_debug
41
+ alias $0 $progname
42
+ ## dollar_0_tracker = lambda {|val| $program_name = val}
43
+ ## trace_var(:$0, dollar_0_tracker)
44
+
45
+ ## FIXME: we gets lots of crap before we get to the real stuff.
46
+ start_opts = {
47
+ :skip_loader => true
48
+ }.merge(start_opts)
49
+ dbgr.start(start_opts)
50
+ Kernel::load program_to_debug
51
+
52
+ # The dance we have to undo to restore $0 and undo the mess created
53
+ # above.
54
+ $0 = old_dollar_0
55
+ ## untrace_var(:$0, dollar_0_tracker)
56
+ end
57
+
58
+ # Path name of Ruby interpreter we were invoked with.
59
+ def ruby_path
60
+ File.join(%w(bindir RUBY_INSTALL_NAME).map{|k| RbConfig::CONFIG[k]})
61
+ end
62
+ module_function :ruby_path
63
+
64
+ # Do a shell-like path lookup for prog_script and return the results.
65
+ # If we can't find anything return prog_script.
66
+ def whence_file(prog_script)
67
+ if prog_script.index(File::SEPARATOR)
68
+ # Don't search since this name has path separator components
69
+ return prog_script
70
+ end
71
+ for dirname in ENV['PATH'].split(File::PATH_SEPARATOR) do
72
+ prog_script_try = File.join(dirname, prog_script)
73
+ return prog_script_try if File.readable?(prog_script_try)
74
+ end
75
+ # Failure
76
+ return prog_script
77
+ end
78
+ end
79
+
80
+ if __FILE__ == $0
81
+ # Demo it.
82
+ include Trepanning
83
+ puts whence_file('irb')
84
+ puts whence_file('probably-does-not-exist')
85
+ puts ruby_path
86
+ end
@@ -0,0 +1,1244 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 120
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 5
32
+ 7
33
+ 3
34
+ 64
35
+ 47
36
+ 49
37
+ 1
38
+ 1
39
+ 15
40
+ 99
41
+ 7
42
+ 4
43
+ 65
44
+ 49
45
+ 5
46
+ 2
47
+ 13
48
+ 99
49
+ 12
50
+ 7
51
+ 6
52
+ 12
53
+ 7
54
+ 7
55
+ 12
56
+ 65
57
+ 12
58
+ 49
59
+ 8
60
+ 4
61
+ 15
62
+ 49
63
+ 6
64
+ 0
65
+ 15
66
+ 65
67
+ 49
68
+ 9
69
+ 0
70
+ 99
71
+ 43
72
+ 10
73
+ 7
74
+ 11
75
+ 49
76
+ 12
77
+ 1
78
+ 83
79
+ 13
80
+ 9
81
+ 116
82
+ 5
83
+ 45
84
+ 4
85
+ 14
86
+ 47
87
+ 49
88
+ 15
89
+ 1
90
+ 15
91
+ 5
92
+ 5
93
+ 7
94
+ 16
95
+ 64
96
+ 47
97
+ 49
98
+ 17
99
+ 1
100
+ 47
101
+ 49
102
+ 18
103
+ 1
104
+ 15
105
+ 5
106
+ 5
107
+ 7
108
+ 19
109
+ 64
110
+ 47
111
+ 49
112
+ 17
113
+ 1
114
+ 47
115
+ 49
116
+ 18
117
+ 1
118
+ 15
119
+ 5
120
+ 5
121
+ 48
122
+ 20
123
+ 47
124
+ 49
125
+ 18
126
+ 1
127
+ 8
128
+ 117
129
+ 1
130
+ 15
131
+ 2
132
+ 11
133
+ I
134
+ 6
135
+ I
136
+ 0
137
+ I
138
+ 0
139
+ I
140
+ 0
141
+ n
142
+ p
143
+ 21
144
+ s
145
+ 8
146
+ rbconfig
147
+ x
148
+ 7
149
+ require
150
+ s
151
+ 8
152
+ rubygems
153
+ s
154
+ 16
155
+ require_relative
156
+ x
157
+ 10
158
+ Trepanning
159
+ x
160
+ 11
161
+ open_module
162
+ x
163
+ 15
164
+ __module_init__
165
+ M
166
+ 1
167
+ n
168
+ n
169
+ x
170
+ 10
171
+ Trepanning
172
+ i
173
+ 52
174
+ 5
175
+ 66
176
+ 99
177
+ 7
178
+ 0
179
+ 7
180
+ 1
181
+ 65
182
+ 67
183
+ 49
184
+ 2
185
+ 0
186
+ 49
187
+ 3
188
+ 4
189
+ 15
190
+ 99
191
+ 7
192
+ 4
193
+ 7
194
+ 5
195
+ 65
196
+ 67
197
+ 49
198
+ 2
199
+ 0
200
+ 49
201
+ 3
202
+ 4
203
+ 15
204
+ 5
205
+ 7
206
+ 4
207
+ 47
208
+ 49
209
+ 6
210
+ 1
211
+ 15
212
+ 99
213
+ 7
214
+ 7
215
+ 7
216
+ 8
217
+ 65
218
+ 67
219
+ 49
220
+ 2
221
+ 0
222
+ 49
223
+ 3
224
+ 4
225
+ 11
226
+ I
227
+ 5
228
+ I
229
+ 0
230
+ I
231
+ 0
232
+ I
233
+ 0
234
+ n
235
+ p
236
+ 9
237
+ x
238
+ 13
239
+ debug_program
240
+ M
241
+ 1
242
+ n
243
+ n
244
+ x
245
+ 13
246
+ debug_program
247
+ i
248
+ 263
249
+ 23
250
+ 3
251
+ 10
252
+ 14
253
+ 44
254
+ 43
255
+ 0
256
+ 78
257
+ 49
258
+ 1
259
+ 1
260
+ 19
261
+ 3
262
+ 15
263
+ 5
264
+ 20
265
+ 1
266
+ 47
267
+ 49
268
+ 2
269
+ 0
270
+ 7
271
+ 3
272
+ 20
273
+ 2
274
+ 49
275
+ 4
276
+ 0
277
+ 47
278
+ 49
279
+ 2
280
+ 0
281
+ 7
282
+ 5
283
+ 63
284
+ 4
285
+ 47
286
+ 49
287
+ 6
288
+ 1
289
+ 19
290
+ 4
291
+ 15
292
+ 99
293
+ 43
294
+ 7
295
+ 7
296
+ 8
297
+ 49
298
+ 9
299
+ 1
300
+ 49
301
+ 10
302
+ 0
303
+ 78
304
+ 83
305
+ 11
306
+ 10
307
+ 62
308
+ 2
309
+ 8
310
+ 63
311
+ 3
312
+ 13
313
+ 9
314
+ 97
315
+ 15
316
+ 45
317
+ 12
318
+ 13
319
+ 7
320
+ 14
321
+ 13
322
+ 70
323
+ 9
324
+ 88
325
+ 15
326
+ 44
327
+ 43
328
+ 15
329
+ 7
330
+ 16
331
+ 78
332
+ 49
333
+ 17
334
+ 2
335
+ 6
336
+ 14
337
+ 49
338
+ 18
339
+ 1
340
+ 10
341
+ 96
342
+ 2
343
+ 8
344
+ 97
345
+ 3
346
+ 9
347
+ 125
348
+ 5
349
+ 20
350
+ 4
351
+ 47
352
+ 49
353
+ 19
354
+ 1
355
+ 15
356
+ 5
357
+ 99
358
+ 43
359
+ 7
360
+ 7
361
+ 8
362
+ 49
363
+ 9
364
+ 1
365
+ 49
366
+ 10
367
+ 0
368
+ 47
369
+ 49
370
+ 20
371
+ 1
372
+ 8
373
+ 126
374
+ 1
375
+ 15
376
+ 5
377
+ 7
378
+ 21
379
+ 49
380
+ 22
381
+ 1
382
+ 49
383
+ 23
384
+ 0
385
+ 19
386
+ 5
387
+ 15
388
+ 20
389
+ 0
390
+ 49
391
+ 24
392
+ 0
393
+ 49
394
+ 25
395
+ 0
396
+ 20
397
+ 5
398
+ 7
399
+ 26
400
+ 64
401
+ 13
402
+ 18
403
+ 3
404
+ 49
405
+ 27
406
+ 2
407
+ 15
408
+ 15
409
+ 45
410
+ 28
411
+ 29
412
+ 43
413
+ 30
414
+ 78
415
+ 2
416
+ 49
417
+ 31
418
+ 2
419
+ 49
420
+ 32
421
+ 0
422
+ 79
423
+ 81
424
+ 33
425
+ 19
426
+ 6
427
+ 15
428
+ 99
429
+ 43
430
+ 7
431
+ 7
432
+ 34
433
+ 49
434
+ 9
435
+ 1
436
+ 19
437
+ 7
438
+ 15
439
+ 99
440
+ 43
441
+ 7
442
+ 7
443
+ 35
444
+ 20
445
+ 2
446
+ 49
447
+ 27
448
+ 2
449
+ 15
450
+ 99
451
+ 43
452
+ 7
453
+ 7
454
+ 35
455
+ 7
456
+ 34
457
+ 49
458
+ 36
459
+ 2
460
+ 15
461
+ 44
462
+ 43
463
+ 0
464
+ 79
465
+ 49
466
+ 1
467
+ 1
468
+ 13
469
+ 7
470
+ 37
471
+ 2
472
+ 49
473
+ 27
474
+ 2
475
+ 15
476
+ 20
477
+ 3
478
+ 49
479
+ 38
480
+ 1
481
+ 19
482
+ 3
483
+ 15
484
+ 20
485
+ 0
486
+ 20
487
+ 3
488
+ 49
489
+ 39
490
+ 1
491
+ 15
492
+ 45
493
+ 40
494
+ 41
495
+ 20
496
+ 2
497
+ 49
498
+ 42
499
+ 1
500
+ 15
501
+ 99
502
+ 43
503
+ 7
504
+ 7
505
+ 34
506
+ 20
507
+ 7
508
+ 49
509
+ 27
510
+ 2
511
+ 11
512
+ I
513
+ d
514
+ I
515
+ 8
516
+ I
517
+ 3
518
+ I
519
+ 4
520
+ n
521
+ p
522
+ 43
523
+ x
524
+ 4
525
+ Hash
526
+ x
527
+ 16
528
+ new_from_literal
529
+ x
530
+ 4
531
+ to_s
532
+ s
533
+ 4
534
+ -c
535
+ x
536
+ 7
537
+ inspect
538
+ s
539
+ 5
540
+ 2>&1
541
+ x
542
+ 1
543
+ `
544
+ x
545
+ 7
546
+ Globals
547
+ x
548
+ 2
549
+ $?
550
+ x
551
+ 2
552
+ []
553
+ x
554
+ 10
555
+ exitstatus
556
+ x
557
+ 2
558
+ ==
559
+ x
560
+ 13
561
+ RUBY_PLATFORM
562
+ n
563
+ n
564
+ x
565
+ 6
566
+ Regexp
567
+ s
568
+ 5
569
+ mswin
570
+ x
571
+ 3
572
+ new
573
+ x
574
+ 2
575
+ =~
576
+ x
577
+ 4
578
+ puts
579
+ x
580
+ 4
581
+ exit
582
+ x
583
+ 13
584
+ debug_program
585
+ x
586
+ 6
587
+ method
588
+ x
589
+ 10
590
+ executable
591
+ x
592
+ 9
593
+ processor
594
+ x
595
+ 14
596
+ ignore_methods
597
+ s
598
+ 4
599
+ step
600
+ x
601
+ 3
602
+ []=
603
+ x
604
+ 8
605
+ Rubinius
606
+ n
607
+ x
608
+ 2
609
+ VM
610
+ x
611
+ 9
612
+ backtrace
613
+ x
614
+ 4
615
+ size
616
+ x
617
+ 1
618
+ +
619
+ x
620
+ 2
621
+ $0
622
+ x
623
+ 9
624
+ $progname
625
+ x
626
+ 9
627
+ add_alias
628
+ x
629
+ 11
630
+ skip_loader
631
+ x
632
+ 5
633
+ merge
634
+ x
635
+ 5
636
+ start
637
+ x
638
+ 6
639
+ Kernel
640
+ n
641
+ x
642
+ 4
643
+ load
644
+ p
645
+ 37
646
+ I
647
+ 0
648
+ I
649
+ d
650
+ I
651
+ e
652
+ I
653
+ 12
654
+ I
655
+ 2b
656
+ I
657
+ 13
658
+ I
659
+ 63
660
+ I
661
+ 14
662
+ I
663
+ 6b
664
+ I
665
+ 15
666
+ I
667
+ 7d
668
+ I
669
+ 13
670
+ I
671
+ 7f
672
+ I
673
+ 1a
674
+ I
675
+ 8b
676
+ I
677
+ 1b
678
+ I
679
+ a0
680
+ I
681
+ 21
682
+ I
683
+ b3
684
+ I
685
+ 23
686
+ I
687
+ be
688
+ I
689
+ 28
690
+ I
691
+ c9
692
+ I
693
+ 29
694
+ I
695
+ d4
696
+ I
697
+ 30
698
+ I
699
+ dc
700
+ I
701
+ 2f
702
+ I
703
+ e3
704
+ I
705
+ 30
706
+ I
707
+ eb
708
+ I
709
+ 31
710
+ I
711
+ f3
712
+ I
713
+ 32
714
+ I
715
+ fc
716
+ I
717
+ 36
718
+ I
719
+ 107
720
+ x
721
+ 50
722
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/run.rb
723
+ p
724
+ 8
725
+ x
726
+ 4
727
+ dbgr
728
+ x
729
+ 9
730
+ ruby_path
731
+ x
732
+ 16
733
+ program_to_debug
734
+ x
735
+ 10
736
+ start_opts
737
+ x
738
+ 6
739
+ output
740
+ x
741
+ 1
742
+ m
743
+ x
744
+ 10
745
+ hide_level
746
+ x
747
+ 12
748
+ old_dollar_0
749
+ x
750
+ 17
751
+ method_visibility
752
+ x
753
+ 15
754
+ add_defn_method
755
+ x
756
+ 9
757
+ ruby_path
758
+ M
759
+ 1
760
+ n
761
+ n
762
+ x
763
+ 9
764
+ ruby_path
765
+ i
766
+ 20
767
+ 45
768
+ 0
769
+ 1
770
+ 7
771
+ 2
772
+ 64
773
+ 7
774
+ 3
775
+ 64
776
+ 35
777
+ 2
778
+ 56
779
+ 4
780
+ 50
781
+ 5
782
+ 0
783
+ 49
784
+ 6
785
+ 1
786
+ 11
787
+ I
788
+ 3
789
+ I
790
+ 0
791
+ I
792
+ 0
793
+ I
794
+ 0
795
+ n
796
+ p
797
+ 7
798
+ x
799
+ 4
800
+ File
801
+ n
802
+ s
803
+ 6
804
+ bindir
805
+ s
806
+ 17
807
+ RUBY_INSTALL_NAME
808
+ M
809
+ 1
810
+ p
811
+ 2
812
+ x
813
+ 9
814
+ for_block
815
+ t
816
+ n
817
+ x
818
+ 9
819
+ ruby_path
820
+ i
821
+ 15
822
+ 57
823
+ 19
824
+ 0
825
+ 15
826
+ 45
827
+ 0
828
+ 1
829
+ 43
830
+ 2
831
+ 20
832
+ 0
833
+ 49
834
+ 3
835
+ 1
836
+ 11
837
+ I
838
+ 4
839
+ I
840
+ 1
841
+ I
842
+ 1
843
+ I
844
+ 1
845
+ n
846
+ p
847
+ 4
848
+ x
849
+ 8
850
+ RbConfig
851
+ n
852
+ x
853
+ 6
854
+ CONFIG
855
+ x
856
+ 2
857
+ []
858
+ p
859
+ 3
860
+ I
861
+ 0
862
+ I
863
+ 3c
864
+ I
865
+ f
866
+ x
867
+ 50
868
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/run.rb
869
+ p
870
+ 1
871
+ x
872
+ 1
873
+ k
874
+ x
875
+ 3
876
+ map
877
+ x
878
+ 4
879
+ join
880
+ p
881
+ 5
882
+ I
883
+ 0
884
+ I
885
+ 3b
886
+ I
887
+ 0
888
+ I
889
+ 3c
890
+ I
891
+ 14
892
+ x
893
+ 50
894
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/run.rb
895
+ p
896
+ 0
897
+ x
898
+ 15
899
+ module_function
900
+ x
901
+ 11
902
+ whence_file
903
+ M
904
+ 1
905
+ n
906
+ n
907
+ x
908
+ 11
909
+ whence_file
910
+ i
911
+ 46
912
+ 20
913
+ 0
914
+ 45
915
+ 0
916
+ 1
917
+ 43
918
+ 2
919
+ 49
920
+ 3
921
+ 1
922
+ 9
923
+ 17
924
+ 20
925
+ 0
926
+ 11
927
+ 8
928
+ 18
929
+ 1
930
+ 15
931
+ 45
932
+ 4
933
+ 5
934
+ 7
935
+ 6
936
+ 64
937
+ 49
938
+ 7
939
+ 1
940
+ 45
941
+ 0
942
+ 8
943
+ 43
944
+ 9
945
+ 49
946
+ 10
947
+ 1
948
+ 56
949
+ 11
950
+ 50
951
+ 12
952
+ 0
953
+ 15
954
+ 20
955
+ 0
956
+ 11
957
+ 11
958
+ I
959
+ 5
960
+ I
961
+ 3
962
+ I
963
+ 1
964
+ I
965
+ 1
966
+ n
967
+ p
968
+ 13
969
+ x
970
+ 4
971
+ File
972
+ n
973
+ x
974
+ 9
975
+ SEPARATOR
976
+ x
977
+ 5
978
+ index
979
+ x
980
+ 3
981
+ ENV
982
+ n
983
+ s
984
+ 4
985
+ PATH
986
+ x
987
+ 2
988
+ []
989
+ n
990
+ x
991
+ 14
992
+ PATH_SEPARATOR
993
+ x
994
+ 5
995
+ split
996
+ M
997
+ 1
998
+ p
999
+ 2
1000
+ x
1001
+ 9
1002
+ for_block
1003
+ t
1004
+ n
1005
+ x
1006
+ 11
1007
+ whence_file
1008
+ i
1009
+ 40
1010
+ 57
1011
+ 22
1012
+ 1
1013
+ 1
1014
+ 15
1015
+ 45
1016
+ 0
1017
+ 1
1018
+ 21
1019
+ 1
1020
+ 1
1021
+ 21
1022
+ 1
1023
+ 0
1024
+ 49
1025
+ 2
1026
+ 2
1027
+ 22
1028
+ 1
1029
+ 2
1030
+ 15
1031
+ 45
1032
+ 0
1033
+ 3
1034
+ 21
1035
+ 1
1036
+ 2
1037
+ 49
1038
+ 4
1039
+ 1
1040
+ 9
1041
+ 38
1042
+ 21
1043
+ 1
1044
+ 2
1045
+ 31
1046
+ 8
1047
+ 39
1048
+ 1
1049
+ 11
1050
+ I
1051
+ 4
1052
+ I
1053
+ 0
1054
+ I
1055
+ 1
1056
+ I
1057
+ 1
1058
+ n
1059
+ p
1060
+ 5
1061
+ x
1062
+ 4
1063
+ File
1064
+ n
1065
+ x
1066
+ 4
1067
+ join
1068
+ n
1069
+ x
1070
+ 9
1071
+ readable?
1072
+ p
1073
+ 7
1074
+ I
1075
+ 0
1076
+ I
1077
+ 47
1078
+ I
1079
+ 5
1080
+ I
1081
+ 48
1082
+ I
1083
+ 15
1084
+ I
1085
+ 49
1086
+ I
1087
+ 28
1088
+ x
1089
+ 50
1090
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/run.rb
1091
+ p
1092
+ 0
1093
+ x
1094
+ 4
1095
+ each
1096
+ p
1097
+ 13
1098
+ I
1099
+ 0
1100
+ I
1101
+ 42
1102
+ I
1103
+ 0
1104
+ I
1105
+ 43
1106
+ I
1107
+ c
1108
+ I
1109
+ 45
1110
+ I
1111
+ 11
1112
+ I
1113
+ 43
1114
+ I
1115
+ 13
1116
+ I
1117
+ 47
1118
+ I
1119
+ 2a
1120
+ I
1121
+ 4c
1122
+ I
1123
+ 2e
1124
+ x
1125
+ 50
1126
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/run.rb
1127
+ p
1128
+ 3
1129
+ x
1130
+ 11
1131
+ prog_script
1132
+ x
1133
+ 7
1134
+ dirname
1135
+ x
1136
+ 15
1137
+ prog_script_try
1138
+ p
1139
+ 9
1140
+ I
1141
+ 2
1142
+ I
1143
+ d
1144
+ I
1145
+ 10
1146
+ I
1147
+ 3b
1148
+ I
1149
+ 1e
1150
+ I
1151
+ 3e
1152
+ I
1153
+ 26
1154
+ I
1155
+ 42
1156
+ I
1157
+ 34
1158
+ x
1159
+ 50
1160
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/run.rb
1161
+ p
1162
+ 0
1163
+ x
1164
+ 13
1165
+ attach_method
1166
+ x
1167
+ 11
1168
+ active_path
1169
+ x
1170
+ 7
1171
+ Globals
1172
+ x
1173
+ 2
1174
+ $0
1175
+ x
1176
+ 2
1177
+ []
1178
+ x
1179
+ 2
1180
+ ==
1181
+ n
1182
+ x
1183
+ 7
1184
+ include
1185
+ s
1186
+ 3
1187
+ irb
1188
+ x
1189
+ 11
1190
+ whence_file
1191
+ x
1192
+ 4
1193
+ puts
1194
+ s
1195
+ 23
1196
+ probably-does-not-exist
1197
+ x
1198
+ 9
1199
+ ruby_path
1200
+ p
1201
+ 19
1202
+ I
1203
+ 0
1204
+ I
1205
+ 3
1206
+ I
1207
+ 9
1208
+ I
1209
+ 4
1210
+ I
1211
+ 1b
1212
+ I
1213
+ 5
1214
+ I
1215
+ 35
1216
+ I
1217
+ 50
1218
+ I
1219
+ 45
1220
+ I
1221
+ 52
1222
+ I
1223
+ 4e
1224
+ I
1225
+ 53
1226
+ I
1227
+ 5c
1228
+ I
1229
+ 54
1230
+ I
1231
+ 6a
1232
+ I
1233
+ 55
1234
+ I
1235
+ 74
1236
+ I
1237
+ 50
1238
+ I
1239
+ 78
1240
+ x
1241
+ 50
1242
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/run.rb
1243
+ p
1244
+ 0