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,117 @@
1
+ # Module for working with instruction sequences.
2
+ class Trepan
3
+ module ISeq
4
+ OP_GOTO = Rubinius::InstructionSet.opcodes_map[:goto]
5
+ OP_GOTO_IF_TRUE = Rubinius::InstructionSet.opcodes_map[:goto_if_true]
6
+ OP_GOTO_IF_FALSE = Rubinius::InstructionSet.opcodes_map[:goto_if_false]
7
+ OP_RET = Rubinius::InstructionSet.opcodes_map[:ret]
8
+ OP_YIELD_STACK = Rubinius::InstructionSet.opcodes_map[:yield_stack]
9
+
10
+ module_function
11
+
12
+ # Returns prefix string to indicate whether a breakpoint has been
13
+ # set at this ip and or whether we are currently stopped at this ip.
14
+ def disasm_prefix(ip, frame_ip, cm)
15
+ prefix = cm.breakpoint?(ip) ? 'B' : ' '
16
+ prefix +=
17
+ if ip == frame_ip
18
+ '-->'
19
+ else
20
+ ' '
21
+ end
22
+ end
23
+
24
+ def goto_op?(cm, ip)
25
+ [OP_GOTO, OP_GOTO_IF_TRUE, OP_GOTO_IF_FALSE].member?(cm.iseq[ip])
26
+ end
27
+
28
+ def goto_between(cm, start, fin)
29
+
30
+ iseq = cm.iseq
31
+
32
+ i = start
33
+ while i < fin
34
+ op = iseq[i]
35
+ case op
36
+ when OP_GOTO
37
+ return next_interesting(cm, iseq[i + 1]) # goto target
38
+ when OP_RET
39
+ return -2
40
+ when OP_GOTO_IF_TRUE, OP_GOTO_IF_FALSE
41
+ return [next_interesting(cm, iseq[i + 1]),
42
+ next_interesting(cm, i + 2)] # target and next ip
43
+ when nil
44
+ return -1
45
+ else
46
+ # Rubinius is getting an error here sometimes. Need to figure
47
+ # out what's wrong.
48
+ begin
49
+ op = Rubinius::InstructionSet[op]
50
+ rescue TypeError
51
+ return -1
52
+ end
53
+ i += (op.arg_count + 1)
54
+ end
55
+ end
56
+
57
+ if fin == cm.lines.last
58
+ return -1
59
+ else
60
+ return next_interesting(cm, fin)
61
+ end
62
+ end
63
+
64
+ def next_interesting(cm, ip)
65
+ pop = Rubinius::InstructionSet.opcodes_map[:pop]
66
+
67
+ if cm.iseq[ip] == pop
68
+ return ip + 1
69
+ end
70
+
71
+ return ip
72
+ end
73
+
74
+ def yield_or_return_between(cm, start, fin)
75
+ iseq = cm.iseq
76
+ ips = []
77
+ i = start
78
+ while i < fin
79
+ op = iseq[i]
80
+ if [OP_RET, OP_YIELD_STACK].member?(op)
81
+ ips << i
82
+ end
83
+ op = Rubinius::InstructionSet[op]
84
+ i += (op.arg_count + 1)
85
+ end
86
+ return ips
87
+ end
88
+
89
+ end
90
+ end
91
+ if __FILE__ == $0
92
+ vm_locations = Rubinius::VM.backtrace(0, true)
93
+ call_loc = vm_locations[1]
94
+ cm = call_loc.method
95
+ puts cm.decode
96
+ ips = nil
97
+ puts '-' * 20
98
+ 0.upto((cm.lines.last+1)/2) do |i|
99
+ ip = cm.lines[i*2]
100
+ unless -1 == ip
101
+ ips = Trepan::ISeq.yield_or_return_between(cm, ip, cm.lines.last)
102
+ puts "return: #{ips.inspect}"
103
+ break
104
+ end
105
+ end
106
+ puts '-' * 20
107
+ 0.upto((cm.lines.last+1)/2) do |i|
108
+ ip = cm.lines[i*2]
109
+ unless -1 == ip
110
+ ips = Trepan::ISeq.goto_between(cm, ip, cm.lines.last)
111
+ puts "goto: #{ips.inspect}"
112
+ break
113
+ end
114
+ end
115
+ puts Trepan::ISeq.disasm_prefix(ips[0], ips[0], cm)
116
+ p Trepan::ISeq.disasm_prefix(10, ips[0], cm)
117
+ end
@@ -0,0 +1,2192 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 217
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
+ 213
56
+ 45
57
+ 10
58
+ 11
59
+ 43
60
+ 12
61
+ 78
62
+ 2
63
+ 49
64
+ 13
65
+ 2
66
+ 19
67
+ 0
68
+ 15
69
+ 20
70
+ 0
71
+ 79
72
+ 49
73
+ 8
74
+ 1
75
+ 19
76
+ 1
77
+ 15
78
+ 20
79
+ 1
80
+ 49
81
+ 14
82
+ 0
83
+ 19
84
+ 2
85
+ 15
86
+ 5
87
+ 20
88
+ 2
89
+ 49
90
+ 15
91
+ 0
92
+ 47
93
+ 49
94
+ 16
95
+ 1
96
+ 15
97
+ 1
98
+ 19
99
+ 3
100
+ 15
101
+ 5
102
+ 7
103
+ 17
104
+ 64
105
+ 4
106
+ 20
107
+ 49
108
+ 18
109
+ 1
110
+ 47
111
+ 49
112
+ 16
113
+ 1
114
+ 15
115
+ 78
116
+ 20
117
+ 2
118
+ 49
119
+ 19
120
+ 0
121
+ 49
122
+ 20
123
+ 0
124
+ 79
125
+ 81
126
+ 21
127
+ 80
128
+ 49
129
+ 22
130
+ 1
131
+ 56
132
+ 23
133
+ 50
134
+ 24
135
+ 1
136
+ 15
137
+ 5
138
+ 7
139
+ 17
140
+ 64
141
+ 4
142
+ 20
143
+ 49
144
+ 18
145
+ 1
146
+ 47
147
+ 49
148
+ 16
149
+ 1
150
+ 15
151
+ 78
152
+ 20
153
+ 2
154
+ 49
155
+ 19
156
+ 0
157
+ 49
158
+ 20
159
+ 0
160
+ 79
161
+ 81
162
+ 21
163
+ 80
164
+ 49
165
+ 22
166
+ 1
167
+ 56
168
+ 25
169
+ 50
170
+ 24
171
+ 1
172
+ 15
173
+ 5
174
+ 45
175
+ 0
176
+ 26
177
+ 43
178
+ 27
179
+ 20
180
+ 3
181
+ 78
182
+ 49
183
+ 8
184
+ 1
185
+ 20
186
+ 3
187
+ 78
188
+ 49
189
+ 8
190
+ 1
191
+ 20
192
+ 2
193
+ 49
194
+ 28
195
+ 3
196
+ 47
197
+ 49
198
+ 16
199
+ 1
200
+ 15
201
+ 5
202
+ 45
203
+ 0
204
+ 29
205
+ 43
206
+ 27
207
+ 4
208
+ 10
209
+ 20
210
+ 3
211
+ 78
212
+ 49
213
+ 8
214
+ 1
215
+ 20
216
+ 2
217
+ 49
218
+ 28
219
+ 3
220
+ 47
221
+ 49
222
+ 30
223
+ 1
224
+ 8
225
+ 214
226
+ 1
227
+ 15
228
+ 2
229
+ 11
230
+ I
231
+ a
232
+ I
233
+ 4
234
+ I
235
+ 0
236
+ I
237
+ 0
238
+ n
239
+ p
240
+ 31
241
+ x
242
+ 6
243
+ Trepan
244
+ x
245
+ 10
246
+ open_class
247
+ x
248
+ 14
249
+ __class_init__
250
+ M
251
+ 1
252
+ n
253
+ n
254
+ x
255
+ 6
256
+ Trepan
257
+ i
258
+ 28
259
+ 5
260
+ 66
261
+ 99
262
+ 7
263
+ 0
264
+ 65
265
+ 49
266
+ 1
267
+ 2
268
+ 13
269
+ 99
270
+ 12
271
+ 7
272
+ 2
273
+ 12
274
+ 7
275
+ 3
276
+ 12
277
+ 65
278
+ 12
279
+ 49
280
+ 4
281
+ 4
282
+ 15
283
+ 49
284
+ 2
285
+ 0
286
+ 11
287
+ I
288
+ 6
289
+ I
290
+ 0
291
+ I
292
+ 0
293
+ I
294
+ 0
295
+ n
296
+ p
297
+ 5
298
+ x
299
+ 4
300
+ ISeq
301
+ x
302
+ 11
303
+ open_module
304
+ x
305
+ 15
306
+ __module_init__
307
+ M
308
+ 1
309
+ n
310
+ n
311
+ x
312
+ 4
313
+ ISeq
314
+ i
315
+ 176
316
+ 5
317
+ 66
318
+ 65
319
+ 7
320
+ 0
321
+ 45
322
+ 1
323
+ 2
324
+ 43
325
+ 3
326
+ 49
327
+ 4
328
+ 0
329
+ 7
330
+ 5
331
+ 49
332
+ 6
333
+ 1
334
+ 49
335
+ 7
336
+ 2
337
+ 15
338
+ 65
339
+ 7
340
+ 8
341
+ 45
342
+ 1
343
+ 9
344
+ 43
345
+ 3
346
+ 49
347
+ 4
348
+ 0
349
+ 7
350
+ 10
351
+ 49
352
+ 6
353
+ 1
354
+ 49
355
+ 7
356
+ 2
357
+ 15
358
+ 65
359
+ 7
360
+ 11
361
+ 45
362
+ 1
363
+ 12
364
+ 43
365
+ 3
366
+ 49
367
+ 4
368
+ 0
369
+ 7
370
+ 13
371
+ 49
372
+ 6
373
+ 1
374
+ 49
375
+ 7
376
+ 2
377
+ 15
378
+ 65
379
+ 7
380
+ 14
381
+ 45
382
+ 1
383
+ 15
384
+ 43
385
+ 3
386
+ 49
387
+ 4
388
+ 0
389
+ 7
390
+ 16
391
+ 49
392
+ 6
393
+ 1
394
+ 49
395
+ 7
396
+ 2
397
+ 15
398
+ 65
399
+ 7
400
+ 17
401
+ 45
402
+ 1
403
+ 18
404
+ 43
405
+ 3
406
+ 49
407
+ 4
408
+ 0
409
+ 7
410
+ 19
411
+ 49
412
+ 6
413
+ 1
414
+ 49
415
+ 7
416
+ 2
417
+ 15
418
+ 5
419
+ 48
420
+ 20
421
+ 15
422
+ 99
423
+ 7
424
+ 21
425
+ 7
426
+ 22
427
+ 65
428
+ 67
429
+ 49
430
+ 23
431
+ 0
432
+ 49
433
+ 24
434
+ 4
435
+ 15
436
+ 99
437
+ 7
438
+ 25
439
+ 7
440
+ 26
441
+ 65
442
+ 67
443
+ 49
444
+ 23
445
+ 0
446
+ 49
447
+ 24
448
+ 4
449
+ 15
450
+ 99
451
+ 7
452
+ 27
453
+ 7
454
+ 28
455
+ 65
456
+ 67
457
+ 49
458
+ 23
459
+ 0
460
+ 49
461
+ 24
462
+ 4
463
+ 15
464
+ 99
465
+ 7
466
+ 29
467
+ 7
468
+ 30
469
+ 65
470
+ 67
471
+ 49
472
+ 23
473
+ 0
474
+ 49
475
+ 24
476
+ 4
477
+ 15
478
+ 99
479
+ 7
480
+ 31
481
+ 7
482
+ 32
483
+ 65
484
+ 67
485
+ 49
486
+ 23
487
+ 0
488
+ 49
489
+ 24
490
+ 4
491
+ 11
492
+ I
493
+ 5
494
+ I
495
+ 0
496
+ I
497
+ 0
498
+ I
499
+ 0
500
+ n
501
+ p
502
+ 33
503
+ x
504
+ 7
505
+ OP_GOTO
506
+ x
507
+ 8
508
+ Rubinius
509
+ n
510
+ x
511
+ 14
512
+ InstructionSet
513
+ x
514
+ 11
515
+ opcodes_map
516
+ x
517
+ 4
518
+ goto
519
+ x
520
+ 2
521
+ []
522
+ x
523
+ 9
524
+ const_set
525
+ x
526
+ 15
527
+ OP_GOTO_IF_TRUE
528
+ n
529
+ x
530
+ 12
531
+ goto_if_true
532
+ x
533
+ 16
534
+ OP_GOTO_IF_FALSE
535
+ n
536
+ x
537
+ 13
538
+ goto_if_false
539
+ x
540
+ 6
541
+ OP_RET
542
+ n
543
+ x
544
+ 3
545
+ ret
546
+ x
547
+ 14
548
+ OP_YIELD_STACK
549
+ n
550
+ x
551
+ 11
552
+ yield_stack
553
+ x
554
+ 15
555
+ module_function
556
+ x
557
+ 13
558
+ disasm_prefix
559
+ M
560
+ 1
561
+ n
562
+ n
563
+ x
564
+ 13
565
+ disasm_prefix
566
+ i
567
+ 43
568
+ 20
569
+ 2
570
+ 20
571
+ 0
572
+ 49
573
+ 0
574
+ 1
575
+ 9
576
+ 14
577
+ 7
578
+ 1
579
+ 64
580
+ 8
581
+ 17
582
+ 7
583
+ 2
584
+ 64
585
+ 19
586
+ 3
587
+ 15
588
+ 20
589
+ 3
590
+ 20
591
+ 0
592
+ 20
593
+ 1
594
+ 83
595
+ 3
596
+ 9
597
+ 35
598
+ 7
599
+ 4
600
+ 64
601
+ 8
602
+ 38
603
+ 7
604
+ 5
605
+ 64
606
+ 81
607
+ 6
608
+ 19
609
+ 3
610
+ 11
611
+ I
612
+ 7
613
+ I
614
+ 4
615
+ I
616
+ 3
617
+ I
618
+ 3
619
+ n
620
+ p
621
+ 7
622
+ x
623
+ 11
624
+ breakpoint?
625
+ s
626
+ 1
627
+ B
628
+ s
629
+ 1
630
+
631
+ x
632
+ 2
633
+ ==
634
+ s
635
+ 3
636
+ -->
637
+ s
638
+ 3
639
+
640
+ x
641
+ 1
642
+ +
643
+ p
644
+ 15
645
+ I
646
+ -1
647
+ I
648
+ e
649
+ I
650
+ 0
651
+ I
652
+ f
653
+ I
654
+ 14
655
+ I
656
+ 15
657
+ I
658
+ 16
659
+ I
660
+ 11
661
+ I
662
+ 1e
663
+ I
664
+ 12
665
+ I
666
+ 23
667
+ I
668
+ 14
669
+ I
670
+ 28
671
+ I
672
+ 10
673
+ I
674
+ 2b
675
+ x
676
+ 51
677
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
678
+ p
679
+ 4
680
+ x
681
+ 2
682
+ ip
683
+ x
684
+ 8
685
+ frame_ip
686
+ x
687
+ 2
688
+ cm
689
+ x
690
+ 6
691
+ prefix
692
+ x
693
+ 17
694
+ method_visibility
695
+ x
696
+ 15
697
+ add_defn_method
698
+ x
699
+ 8
700
+ goto_op?
701
+ M
702
+ 1
703
+ n
704
+ n
705
+ x
706
+ 8
707
+ goto_op?
708
+ i
709
+ 25
710
+ 45
711
+ 0
712
+ 1
713
+ 45
714
+ 2
715
+ 3
716
+ 45
717
+ 4
718
+ 5
719
+ 35
720
+ 3
721
+ 20
722
+ 0
723
+ 49
724
+ 6
725
+ 0
726
+ 20
727
+ 1
728
+ 49
729
+ 7
730
+ 1
731
+ 49
732
+ 8
733
+ 1
734
+ 11
735
+ I
736
+ 5
737
+ I
738
+ 2
739
+ I
740
+ 2
741
+ I
742
+ 2
743
+ n
744
+ p
745
+ 9
746
+ x
747
+ 7
748
+ OP_GOTO
749
+ n
750
+ x
751
+ 15
752
+ OP_GOTO_IF_TRUE
753
+ n
754
+ x
755
+ 16
756
+ OP_GOTO_IF_FALSE
757
+ n
758
+ x
759
+ 4
760
+ iseq
761
+ x
762
+ 2
763
+ []
764
+ x
765
+ 7
766
+ member?
767
+ p
768
+ 5
769
+ I
770
+ -1
771
+ I
772
+ 18
773
+ I
774
+ 0
775
+ I
776
+ 19
777
+ I
778
+ 19
779
+ x
780
+ 51
781
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
782
+ p
783
+ 2
784
+ x
785
+ 2
786
+ cm
787
+ x
788
+ 2
789
+ ip
790
+ x
791
+ 12
792
+ goto_between
793
+ M
794
+ 1
795
+ n
796
+ n
797
+ x
798
+ 12
799
+ goto_between
800
+ i
801
+ 257
802
+ 20
803
+ 0
804
+ 49
805
+ 0
806
+ 0
807
+ 19
808
+ 3
809
+ 15
810
+ 20
811
+ 1
812
+ 19
813
+ 4
814
+ 15
815
+ 20
816
+ 4
817
+ 20
818
+ 2
819
+ 84
820
+ 1
821
+ 9
822
+ 226
823
+ 20
824
+ 3
825
+ 20
826
+ 4
827
+ 49
828
+ 2
829
+ 1
830
+ 19
831
+ 5
832
+ 15
833
+ 20
834
+ 5
835
+ 13
836
+ 45
837
+ 3
838
+ 4
839
+ 12
840
+ 49
841
+ 5
842
+ 1
843
+ 9
844
+ 64
845
+ 15
846
+ 5
847
+ 20
848
+ 0
849
+ 20
850
+ 3
851
+ 20
852
+ 4
853
+ 79
854
+ 81
855
+ 6
856
+ 49
857
+ 2
858
+ 1
859
+ 47
860
+ 49
861
+ 7
862
+ 2
863
+ 11
864
+ 8
865
+ 222
866
+ 13
867
+ 45
868
+ 8
869
+ 9
870
+ 12
871
+ 49
872
+ 5
873
+ 1
874
+ 9
875
+ 80
876
+ 15
877
+ 7
878
+ 10
879
+ 11
880
+ 8
881
+ 222
882
+ 13
883
+ 45
884
+ 11
885
+ 12
886
+ 12
887
+ 49
888
+ 5
889
+ 1
890
+ 10
891
+ 102
892
+ 13
893
+ 45
894
+ 13
895
+ 14
896
+ 12
897
+ 49
898
+ 5
899
+ 1
900
+ 10
901
+ 102
902
+ 8
903
+ 137
904
+ 15
905
+ 5
906
+ 20
907
+ 0
908
+ 20
909
+ 3
910
+ 20
911
+ 4
912
+ 79
913
+ 81
914
+ 6
915
+ 49
916
+ 2
917
+ 1
918
+ 47
919
+ 49
920
+ 7
921
+ 2
922
+ 5
923
+ 20
924
+ 0
925
+ 20
926
+ 4
927
+ 80
928
+ 81
929
+ 6
930
+ 47
931
+ 49
932
+ 7
933
+ 2
934
+ 35
935
+ 2
936
+ 11
937
+ 8
938
+ 222
939
+ 13
940
+ 1
941
+ 12
942
+ 49
943
+ 5
944
+ 1
945
+ 9
946
+ 150
947
+ 15
948
+ 77
949
+ 11
950
+ 8
951
+ 222
952
+ 15
953
+ 26
954
+ 93
955
+ 0
956
+ 15
957
+ 29
958
+ 173
959
+ 0
960
+ 45
961
+ 15
962
+ 16
963
+ 43
964
+ 17
965
+ 20
966
+ 5
967
+ 49
968
+ 2
969
+ 1
970
+ 19
971
+ 5
972
+ 30
973
+ 8
974
+ 204
975
+ 26
976
+ 93
977
+ 1
978
+ 15
979
+ 24
980
+ 13
981
+ 45
982
+ 18
983
+ 19
984
+ 12
985
+ 49
986
+ 5
987
+ 1
988
+ 10
989
+ 190
990
+ 8
991
+ 199
992
+ 15
993
+ 77
994
+ 92
995
+ 0
996
+ 27
997
+ 11
998
+ 25
999
+ 8
1000
+ 204
1001
+ 15
1002
+ 92
1003
+ 1
1004
+ 27
1005
+ 34
1006
+ 92
1007
+ 0
1008
+ 27
1009
+ 15
1010
+ 20
1011
+ 4
1012
+ 20
1013
+ 5
1014
+ 49
1015
+ 20
1016
+ 0
1017
+ 79
1018
+ 81
1019
+ 6
1020
+ 81
1021
+ 6
1022
+ 19
1023
+ 4
1024
+ 15
1025
+ 68
1026
+ 8
1027
+ 13
1028
+ 1
1029
+ 15
1030
+ 20
1031
+ 2
1032
+ 20
1033
+ 0
1034
+ 49
1035
+ 21
1036
+ 0
1037
+ 49
1038
+ 22
1039
+ 0
1040
+ 83
1041
+ 23
1042
+ 9
1043
+ 246
1044
+ 77
1045
+ 11
1046
+ 8
1047
+ 256
1048
+ 5
1049
+ 20
1050
+ 0
1051
+ 20
1052
+ 2
1053
+ 47
1054
+ 49
1055
+ 7
1056
+ 2
1057
+ 11
1058
+ 11
1059
+ I
1060
+ d
1061
+ I
1062
+ 6
1063
+ I
1064
+ 3
1065
+ I
1066
+ 3
1067
+ n
1068
+ p
1069
+ 24
1070
+ x
1071
+ 4
1072
+ iseq
1073
+ x
1074
+ 1
1075
+ <
1076
+ x
1077
+ 2
1078
+ []
1079
+ x
1080
+ 7
1081
+ OP_GOTO
1082
+ n
1083
+ x
1084
+ 3
1085
+ ===
1086
+ x
1087
+ 1
1088
+ +
1089
+ x
1090
+ 16
1091
+ next_interesting
1092
+ x
1093
+ 6
1094
+ OP_RET
1095
+ n
1096
+ I
1097
+ -2
1098
+ x
1099
+ 15
1100
+ OP_GOTO_IF_TRUE
1101
+ n
1102
+ x
1103
+ 16
1104
+ OP_GOTO_IF_FALSE
1105
+ n
1106
+ x
1107
+ 8
1108
+ Rubinius
1109
+ n
1110
+ x
1111
+ 14
1112
+ InstructionSet
1113
+ x
1114
+ 9
1115
+ TypeError
1116
+ n
1117
+ x
1118
+ 9
1119
+ arg_count
1120
+ x
1121
+ 5
1122
+ lines
1123
+ x
1124
+ 4
1125
+ last
1126
+ x
1127
+ 2
1128
+ ==
1129
+ p
1130
+ 45
1131
+ I
1132
+ -1
1133
+ I
1134
+ 1c
1135
+ I
1136
+ 0
1137
+ I
1138
+ 1e
1139
+ I
1140
+ 8
1141
+ I
1142
+ 20
1143
+ I
1144
+ d
1145
+ I
1146
+ 21
1147
+ I
1148
+ 15
1149
+ I
1150
+ 22
1151
+ I
1152
+ 1f
1153
+ I
1154
+ 23
1155
+ I
1156
+ 22
1157
+ I
1158
+ 24
1159
+ I
1160
+ 2c
1161
+ I
1162
+ 25
1163
+ I
1164
+ 41
1165
+ I
1166
+ 26
1167
+ I
1168
+ 4b
1169
+ I
1170
+ 27
1171
+ I
1172
+ 51
1173
+ I
1174
+ 28
1175
+ I
1176
+ 67
1177
+ I
1178
+ 29
1179
+ I
1180
+ 78
1181
+ I
1182
+ 2a
1183
+ I
1184
+ 8a
1185
+ I
1186
+ 2b
1187
+ I
1188
+ 92
1189
+ I
1190
+ 2c
1191
+ I
1192
+ 97
1193
+ I
1194
+ 31
1195
+ I
1196
+ b2
1197
+ I
1198
+ 32
1199
+ I
1200
+ bf
1201
+ I
1202
+ 33
1203
+ I
1204
+ d0
1205
+ I
1206
+ 35
1207
+ I
1208
+ e4
1209
+ I
1210
+ 39
1211
+ I
1212
+ f2
1213
+ I
1214
+ 3a
1215
+ I
1216
+ f6
1217
+ I
1218
+ 3c
1219
+ I
1220
+ 101
1221
+ x
1222
+ 51
1223
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
1224
+ p
1225
+ 6
1226
+ x
1227
+ 2
1228
+ cm
1229
+ x
1230
+ 5
1231
+ start
1232
+ x
1233
+ 3
1234
+ fin
1235
+ x
1236
+ 4
1237
+ iseq
1238
+ x
1239
+ 1
1240
+ i
1241
+ x
1242
+ 2
1243
+ op
1244
+ x
1245
+ 16
1246
+ next_interesting
1247
+ M
1248
+ 1
1249
+ n
1250
+ n
1251
+ x
1252
+ 16
1253
+ next_interesting
1254
+ i
1255
+ 46
1256
+ 45
1257
+ 0
1258
+ 1
1259
+ 43
1260
+ 2
1261
+ 49
1262
+ 3
1263
+ 0
1264
+ 7
1265
+ 4
1266
+ 49
1267
+ 5
1268
+ 1
1269
+ 19
1270
+ 2
1271
+ 15
1272
+ 20
1273
+ 0
1274
+ 49
1275
+ 6
1276
+ 0
1277
+ 20
1278
+ 1
1279
+ 49
1280
+ 5
1281
+ 1
1282
+ 20
1283
+ 2
1284
+ 83
1285
+ 7
1286
+ 9
1287
+ 40
1288
+ 20
1289
+ 1
1290
+ 79
1291
+ 81
1292
+ 8
1293
+ 11
1294
+ 8
1295
+ 41
1296
+ 1
1297
+ 15
1298
+ 20
1299
+ 1
1300
+ 11
1301
+ 11
1302
+ I
1303
+ 5
1304
+ I
1305
+ 3
1306
+ I
1307
+ 2
1308
+ I
1309
+ 2
1310
+ n
1311
+ p
1312
+ 9
1313
+ x
1314
+ 8
1315
+ Rubinius
1316
+ n
1317
+ x
1318
+ 14
1319
+ InstructionSet
1320
+ x
1321
+ 11
1322
+ opcodes_map
1323
+ x
1324
+ 3
1325
+ pop
1326
+ x
1327
+ 2
1328
+ []
1329
+ x
1330
+ 4
1331
+ iseq
1332
+ x
1333
+ 2
1334
+ ==
1335
+ x
1336
+ 1
1337
+ +
1338
+ p
1339
+ 13
1340
+ I
1341
+ -1
1342
+ I
1343
+ 40
1344
+ I
1345
+ 0
1346
+ I
1347
+ 41
1348
+ I
1349
+ 10
1350
+ I
1351
+ 43
1352
+ I
1353
+ 20
1354
+ I
1355
+ 44
1356
+ I
1357
+ 28
1358
+ I
1359
+ 43
1360
+ I
1361
+ 2a
1362
+ I
1363
+ 47
1364
+ I
1365
+ 2e
1366
+ x
1367
+ 51
1368
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
1369
+ p
1370
+ 3
1371
+ x
1372
+ 2
1373
+ cm
1374
+ x
1375
+ 2
1376
+ ip
1377
+ x
1378
+ 3
1379
+ pop
1380
+ x
1381
+ 23
1382
+ yield_or_return_between
1383
+ M
1384
+ 1
1385
+ n
1386
+ n
1387
+ x
1388
+ 23
1389
+ yield_or_return_between
1390
+ i
1391
+ 99
1392
+ 20
1393
+ 0
1394
+ 49
1395
+ 0
1396
+ 0
1397
+ 19
1398
+ 3
1399
+ 15
1400
+ 35
1401
+ 0
1402
+ 19
1403
+ 4
1404
+ 15
1405
+ 20
1406
+ 1
1407
+ 19
1408
+ 5
1409
+ 15
1410
+ 20
1411
+ 5
1412
+ 20
1413
+ 2
1414
+ 84
1415
+ 1
1416
+ 9
1417
+ 93
1418
+ 20
1419
+ 3
1420
+ 20
1421
+ 5
1422
+ 49
1423
+ 2
1424
+ 1
1425
+ 19
1426
+ 6
1427
+ 15
1428
+ 45
1429
+ 3
1430
+ 4
1431
+ 45
1432
+ 5
1433
+ 6
1434
+ 35
1435
+ 2
1436
+ 20
1437
+ 6
1438
+ 49
1439
+ 7
1440
+ 1
1441
+ 9
1442
+ 60
1443
+ 20
1444
+ 4
1445
+ 20
1446
+ 5
1447
+ 49
1448
+ 8
1449
+ 1
1450
+ 8
1451
+ 61
1452
+ 1
1453
+ 15
1454
+ 45
1455
+ 9
1456
+ 10
1457
+ 43
1458
+ 11
1459
+ 20
1460
+ 6
1461
+ 49
1462
+ 2
1463
+ 1
1464
+ 19
1465
+ 6
1466
+ 15
1467
+ 20
1468
+ 5
1469
+ 20
1470
+ 6
1471
+ 49
1472
+ 12
1473
+ 0
1474
+ 79
1475
+ 81
1476
+ 13
1477
+ 81
1478
+ 13
1479
+ 19
1480
+ 5
1481
+ 15
1482
+ 68
1483
+ 8
1484
+ 18
1485
+ 1
1486
+ 15
1487
+ 20
1488
+ 4
1489
+ 11
1490
+ 11
1491
+ I
1492
+ a
1493
+ I
1494
+ 7
1495
+ I
1496
+ 3
1497
+ I
1498
+ 3
1499
+ n
1500
+ p
1501
+ 14
1502
+ x
1503
+ 4
1504
+ iseq
1505
+ x
1506
+ 1
1507
+ <
1508
+ x
1509
+ 2
1510
+ []
1511
+ x
1512
+ 6
1513
+ OP_RET
1514
+ n
1515
+ x
1516
+ 14
1517
+ OP_YIELD_STACK
1518
+ n
1519
+ x
1520
+ 7
1521
+ member?
1522
+ x
1523
+ 2
1524
+ <<
1525
+ x
1526
+ 8
1527
+ Rubinius
1528
+ n
1529
+ x
1530
+ 14
1531
+ InstructionSet
1532
+ x
1533
+ 9
1534
+ arg_count
1535
+ x
1536
+ 1
1537
+ +
1538
+ p
1539
+ 25
1540
+ I
1541
+ -1
1542
+ I
1543
+ 4a
1544
+ I
1545
+ 0
1546
+ I
1547
+ 4b
1548
+ I
1549
+ 8
1550
+ I
1551
+ 4c
1552
+ I
1553
+ d
1554
+ I
1555
+ 4d
1556
+ I
1557
+ 12
1558
+ I
1559
+ 4e
1560
+ I
1561
+ 1a
1562
+ I
1563
+ 4f
1564
+ I
1565
+ 24
1566
+ I
1567
+ 50
1568
+ I
1569
+ 33
1570
+ I
1571
+ 51
1572
+ I
1573
+ 3c
1574
+ I
1575
+ 50
1576
+ I
1577
+ 3e
1578
+ I
1579
+ 53
1580
+ I
1581
+ 4b
1582
+ I
1583
+ 54
1584
+ I
1585
+ 5f
1586
+ I
1587
+ 56
1588
+ I
1589
+ 63
1590
+ x
1591
+ 51
1592
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
1593
+ p
1594
+ 7
1595
+ x
1596
+ 2
1597
+ cm
1598
+ x
1599
+ 5
1600
+ start
1601
+ x
1602
+ 3
1603
+ fin
1604
+ x
1605
+ 4
1606
+ iseq
1607
+ x
1608
+ 3
1609
+ ips
1610
+ x
1611
+ 1
1612
+ i
1613
+ x
1614
+ 2
1615
+ op
1616
+ p
1617
+ 23
1618
+ I
1619
+ 2
1620
+ I
1621
+ 4
1622
+ I
1623
+ 16
1624
+ I
1625
+ 5
1626
+ I
1627
+ 2a
1628
+ I
1629
+ 6
1630
+ I
1631
+ 3e
1632
+ I
1633
+ 7
1634
+ I
1635
+ 52
1636
+ I
1637
+ 8
1638
+ I
1639
+ 66
1640
+ I
1641
+ a
1642
+ I
1643
+ 6a
1644
+ I
1645
+ e
1646
+ I
1647
+ 78
1648
+ I
1649
+ 18
1650
+ I
1651
+ 86
1652
+ I
1653
+ 1c
1654
+ I
1655
+ 94
1656
+ I
1657
+ 40
1658
+ I
1659
+ a2
1660
+ I
1661
+ 4a
1662
+ I
1663
+ b0
1664
+ x
1665
+ 51
1666
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
1667
+ p
1668
+ 0
1669
+ x
1670
+ 13
1671
+ attach_method
1672
+ p
1673
+ 3
1674
+ I
1675
+ 2
1676
+ I
1677
+ 3
1678
+ I
1679
+ 1c
1680
+ x
1681
+ 51
1682
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
1683
+ p
1684
+ 0
1685
+ x
1686
+ 13
1687
+ attach_method
1688
+ x
1689
+ 11
1690
+ active_path
1691
+ x
1692
+ 7
1693
+ Globals
1694
+ x
1695
+ 2
1696
+ $0
1697
+ x
1698
+ 2
1699
+ []
1700
+ x
1701
+ 2
1702
+ ==
1703
+ x
1704
+ 8
1705
+ Rubinius
1706
+ n
1707
+ x
1708
+ 2
1709
+ VM
1710
+ x
1711
+ 9
1712
+ backtrace
1713
+ x
1714
+ 6
1715
+ method
1716
+ x
1717
+ 6
1718
+ decode
1719
+ x
1720
+ 4
1721
+ puts
1722
+ s
1723
+ 1
1724
+ -
1725
+ x
1726
+ 1
1727
+ *
1728
+ x
1729
+ 5
1730
+ lines
1731
+ x
1732
+ 4
1733
+ last
1734
+ x
1735
+ 1
1736
+ +
1737
+ x
1738
+ 1
1739
+ /
1740
+ M
1741
+ 1
1742
+ p
1743
+ 2
1744
+ x
1745
+ 9
1746
+ for_block
1747
+ t
1748
+ n
1749
+ x
1750
+ 9
1751
+ __block__
1752
+ i
1753
+ 80
1754
+ 57
1755
+ 19
1756
+ 0
1757
+ 15
1758
+ 21
1759
+ 1
1760
+ 2
1761
+ 49
1762
+ 0
1763
+ 0
1764
+ 20
1765
+ 0
1766
+ 80
1767
+ 49
1768
+ 1
1769
+ 1
1770
+ 49
1771
+ 2
1772
+ 1
1773
+ 19
1774
+ 1
1775
+ 15
1776
+ 77
1777
+ 20
1778
+ 1
1779
+ 83
1780
+ 3
1781
+ 9
1782
+ 32
1783
+ 1
1784
+ 8
1785
+ 79
1786
+ 45
1787
+ 4
1788
+ 5
1789
+ 43
1790
+ 6
1791
+ 21
1792
+ 1
1793
+ 2
1794
+ 20
1795
+ 1
1796
+ 21
1797
+ 1
1798
+ 2
1799
+ 49
1800
+ 0
1801
+ 0
1802
+ 49
1803
+ 7
1804
+ 0
1805
+ 49
1806
+ 8
1807
+ 3
1808
+ 22
1809
+ 1
1810
+ 3
1811
+ 15
1812
+ 5
1813
+ 7
1814
+ 9
1815
+ 21
1816
+ 1
1817
+ 3
1818
+ 49
1819
+ 10
1820
+ 0
1821
+ 47
1822
+ 101
1823
+ 11
1824
+ 63
1825
+ 2
1826
+ 47
1827
+ 49
1828
+ 12
1829
+ 1
1830
+ 15
1831
+ 1
1832
+ 33
1833
+ 11
1834
+ I
1835
+ 7
1836
+ I
1837
+ 2
1838
+ I
1839
+ 1
1840
+ I
1841
+ 1
1842
+ n
1843
+ p
1844
+ 13
1845
+ x
1846
+ 5
1847
+ lines
1848
+ x
1849
+ 1
1850
+ *
1851
+ x
1852
+ 2
1853
+ []
1854
+ x
1855
+ 2
1856
+ ==
1857
+ x
1858
+ 6
1859
+ Trepan
1860
+ n
1861
+ x
1862
+ 4
1863
+ ISeq
1864
+ x
1865
+ 4
1866
+ last
1867
+ x
1868
+ 23
1869
+ yield_or_return_between
1870
+ s
1871
+ 8
1872
+ return:
1873
+ x
1874
+ 7
1875
+ inspect
1876
+ x
1877
+ 4
1878
+ to_s
1879
+ x
1880
+ 4
1881
+ puts
1882
+ p
1883
+ 13
1884
+ I
1885
+ 0
1886
+ I
1887
+ 62
1888
+ I
1889
+ 4
1890
+ I
1891
+ 63
1892
+ I
1893
+ 16
1894
+ I
1895
+ 64
1896
+ I
1897
+ 20
1898
+ I
1899
+ 65
1900
+ I
1901
+ 3a
1902
+ I
1903
+ 66
1904
+ I
1905
+ 4d
1906
+ I
1907
+ 67
1908
+ I
1909
+ 50
1910
+ x
1911
+ 51
1912
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
1913
+ p
1914
+ 2
1915
+ x
1916
+ 1
1917
+ i
1918
+ x
1919
+ 2
1920
+ ip
1921
+ x
1922
+ 4
1923
+ upto
1924
+ M
1925
+ 1
1926
+ p
1927
+ 2
1928
+ x
1929
+ 9
1930
+ for_block
1931
+ t
1932
+ n
1933
+ x
1934
+ 9
1935
+ __block__
1936
+ i
1937
+ 80
1938
+ 57
1939
+ 19
1940
+ 0
1941
+ 15
1942
+ 21
1943
+ 1
1944
+ 2
1945
+ 49
1946
+ 0
1947
+ 0
1948
+ 20
1949
+ 0
1950
+ 80
1951
+ 49
1952
+ 1
1953
+ 1
1954
+ 49
1955
+ 2
1956
+ 1
1957
+ 19
1958
+ 1
1959
+ 15
1960
+ 77
1961
+ 20
1962
+ 1
1963
+ 83
1964
+ 3
1965
+ 9
1966
+ 32
1967
+ 1
1968
+ 8
1969
+ 79
1970
+ 45
1971
+ 4
1972
+ 5
1973
+ 43
1974
+ 6
1975
+ 21
1976
+ 1
1977
+ 2
1978
+ 20
1979
+ 1
1980
+ 21
1981
+ 1
1982
+ 2
1983
+ 49
1984
+ 0
1985
+ 0
1986
+ 49
1987
+ 7
1988
+ 0
1989
+ 49
1990
+ 8
1991
+ 3
1992
+ 22
1993
+ 1
1994
+ 3
1995
+ 15
1996
+ 5
1997
+ 7
1998
+ 9
1999
+ 21
2000
+ 1
2001
+ 3
2002
+ 49
2003
+ 10
2004
+ 0
2005
+ 47
2006
+ 101
2007
+ 11
2008
+ 63
2009
+ 2
2010
+ 47
2011
+ 49
2012
+ 12
2013
+ 1
2014
+ 15
2015
+ 1
2016
+ 33
2017
+ 11
2018
+ I
2019
+ 7
2020
+ I
2021
+ 2
2022
+ I
2023
+ 1
2024
+ I
2025
+ 1
2026
+ n
2027
+ p
2028
+ 13
2029
+ x
2030
+ 5
2031
+ lines
2032
+ x
2033
+ 1
2034
+ *
2035
+ x
2036
+ 2
2037
+ []
2038
+ x
2039
+ 2
2040
+ ==
2041
+ x
2042
+ 6
2043
+ Trepan
2044
+ n
2045
+ x
2046
+ 4
2047
+ ISeq
2048
+ x
2049
+ 4
2050
+ last
2051
+ x
2052
+ 12
2053
+ goto_between
2054
+ s
2055
+ 6
2056
+ goto:
2057
+ x
2058
+ 7
2059
+ inspect
2060
+ x
2061
+ 4
2062
+ to_s
2063
+ x
2064
+ 4
2065
+ puts
2066
+ p
2067
+ 13
2068
+ I
2069
+ 0
2070
+ I
2071
+ 6b
2072
+ I
2073
+ 4
2074
+ I
2075
+ 6c
2076
+ I
2077
+ 16
2078
+ I
2079
+ 6d
2080
+ I
2081
+ 20
2082
+ I
2083
+ 6e
2084
+ I
2085
+ 3a
2086
+ I
2087
+ 6f
2088
+ I
2089
+ 4d
2090
+ I
2091
+ 70
2092
+ I
2093
+ 50
2094
+ x
2095
+ 51
2096
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
2097
+ p
2098
+ 2
2099
+ x
2100
+ 1
2101
+ i
2102
+ x
2103
+ 2
2104
+ ip
2105
+ n
2106
+ x
2107
+ 4
2108
+ ISeq
2109
+ x
2110
+ 13
2111
+ disasm_prefix
2112
+ n
2113
+ x
2114
+ 1
2115
+ p
2116
+ p
2117
+ 29
2118
+ I
2119
+ 0
2120
+ I
2121
+ 2
2122
+ I
2123
+ 1b
2124
+ I
2125
+ 5b
2126
+ I
2127
+ 2b
2128
+ I
2129
+ 5c
2130
+ I
2131
+ 38
2132
+ I
2133
+ 5d
2134
+ I
2135
+ 41
2136
+ I
2137
+ 5e
2138
+ I
2139
+ 49
2140
+ I
2141
+ 5f
2142
+ I
2143
+ 54
2144
+ I
2145
+ 60
2146
+ I
2147
+ 58
2148
+ I
2149
+ 61
2150
+ I
2151
+ 66
2152
+ I
2153
+ 62
2154
+ I
2155
+ 7c
2156
+ I
2157
+ 6a
2158
+ I
2159
+ 8a
2160
+ I
2161
+ 6b
2162
+ I
2163
+ a0
2164
+ I
2165
+ 73
2166
+ I
2167
+ bc
2168
+ I
2169
+ 74
2170
+ I
2171
+ d5
2172
+ I
2173
+ 5b
2174
+ I
2175
+ d9
2176
+ x
2177
+ 51
2178
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
2179
+ p
2180
+ 4
2181
+ x
2182
+ 12
2183
+ vm_locations
2184
+ x
2185
+ 8
2186
+ call_loc
2187
+ x
2188
+ 2
2189
+ cm
2190
+ x
2191
+ 3
2192
+ ips