rbx-trepanning 0.0.1-universal-rubinius

Sign up to get free protection for your applications and to get access to all the features.
Files changed (205) hide show
  1. data/ChangeLog +376 -0
  2. data/LICENSE +25 -0
  3. data/NEWS +2 -0
  4. data/README.textile +28 -0
  5. data/Rakefile +165 -0
  6. data/THANKS +14 -0
  7. data/app/breakpoint.rb +218 -0
  8. data/app/breakpoint.rbc +3564 -0
  9. data/app/brkptmgr.rb +138 -0
  10. data/app/brkptmgr.rbc +2827 -0
  11. data/app/default.rb +61 -0
  12. data/app/default.rbc +1011 -0
  13. data/app/display.rb +35 -0
  14. data/app/display.rbc +968 -0
  15. data/app/frame.rb +98 -0
  16. data/app/frame.rbc +1808 -0
  17. data/app/irb.rb +112 -0
  18. data/app/irb.rbc +2111 -0
  19. data/app/iseq.rb +95 -0
  20. data/app/iseq.rbc +1801 -0
  21. data/app/method.rb +173 -0
  22. data/app/method.rbc +2492 -0
  23. data/app/mock.rb +13 -0
  24. data/app/mock.rbc +398 -0
  25. data/app/options.rb +123 -0
  26. data/app/options.rbc +2183 -0
  27. data/app/run.rb +86 -0
  28. data/app/run.rbc +1244 -0
  29. data/app/util.rb +49 -0
  30. data/app/util.rbc +1144 -0
  31. data/app/validate.rb +30 -0
  32. data/app/validate.rbc +676 -0
  33. data/bin/trepan.compiled.rbc +1043 -0
  34. data/bin/trepanx +63 -0
  35. data/bin/trepanx.compiled.rbc +985 -0
  36. data/interface/base_intf.rb +95 -0
  37. data/interface/base_intf.rbc +1742 -0
  38. data/interface/script.rb +104 -0
  39. data/interface/script.rbc +1642 -0
  40. data/interface/user.rb +91 -0
  41. data/interface/user.rbc +1418 -0
  42. data/io/base_io.rb +94 -0
  43. data/io/base_io.rbc +1404 -0
  44. data/io/input.rb +112 -0
  45. data/io/input.rbc +1979 -0
  46. data/io/null_output.rb +42 -0
  47. data/io/null_output.rbc +730 -0
  48. data/io/string_array.rb +156 -0
  49. data/io/string_array.rbc +2466 -0
  50. data/lib/trepanning.rb +398 -0
  51. data/lib/trepanning.rbc +6661 -0
  52. data/processor/breakpoint.rb +161 -0
  53. data/processor/command/alias.rb +55 -0
  54. data/processor/command/backtrace.rb +46 -0
  55. data/processor/command/base/cmd.rb +124 -0
  56. data/processor/command/base/subcmd.rb +213 -0
  57. data/processor/command/base/submgr.rb +179 -0
  58. data/processor/command/base/subsubcmd.rb +103 -0
  59. data/processor/command/base/subsubmgr.rb +184 -0
  60. data/processor/command/break.rb +100 -0
  61. data/processor/command/continue.rb +82 -0
  62. data/processor/command/delete.rb +30 -0
  63. data/processor/command/directory.rb +43 -0
  64. data/processor/command/disassemble.rb +103 -0
  65. data/processor/command/down.rb +54 -0
  66. data/processor/command/eval.rb +31 -0
  67. data/processor/command/exit.rb +58 -0
  68. data/processor/command/finish.rb +78 -0
  69. data/processor/command/frame.rb +89 -0
  70. data/processor/command/help.rb +146 -0
  71. data/processor/command/info.rb +28 -0
  72. data/processor/command/info_subcmd/breakpoints.rb +75 -0
  73. data/processor/command/info_subcmd/file.rb +153 -0
  74. data/processor/command/info_subcmd/method.rb +71 -0
  75. data/processor/command/info_subcmd/program.rb +59 -0
  76. data/processor/command/info_subcmd/variables.rb +40 -0
  77. data/processor/command/irb.rb +96 -0
  78. data/processor/command/kill.rb +70 -0
  79. data/processor/command/list.rb +296 -0
  80. data/processor/command/next.rb +66 -0
  81. data/processor/command/nexti.rb +59 -0
  82. data/processor/command/pr.rb +38 -0
  83. data/processor/command/ps.rb +40 -0
  84. data/processor/command/restart.rb +60 -0
  85. data/processor/command/set.rb +47 -0
  86. data/processor/command/set_subcmd/auto.rb +28 -0
  87. data/processor/command/set_subcmd/auto_subcmd/dis.rb +33 -0
  88. data/processor/command/set_subcmd/auto_subcmd/eval.rb +54 -0
  89. data/processor/command/set_subcmd/auto_subcmd/irb.rb +34 -0
  90. data/processor/command/set_subcmd/auto_subcmd/list.rb +34 -0
  91. data/processor/command/set_subcmd/basename.rb +26 -0
  92. data/processor/command/set_subcmd/debug.rb +27 -0
  93. data/processor/command/set_subcmd/debug_subcmd/dbgr.rb +36 -0
  94. data/processor/command/set_subcmd/debug_subcmd/skip.rb +23 -0
  95. data/processor/command/set_subcmd/debug_subcmd/step.rb +23 -0
  96. data/processor/command/set_subcmd/different.rb +60 -0
  97. data/processor/command/set_subcmd/hidelevel.rb +63 -0
  98. data/processor/command/set_subcmd/kernelstep.rb +61 -0
  99. data/processor/command/set_subcmd/max.rb +29 -0
  100. data/processor/command/set_subcmd/max_subcmd/list.rb +49 -0
  101. data/processor/command/set_subcmd/max_subcmd/stack.rb +50 -0
  102. data/processor/command/set_subcmd/max_subcmd/string.rb +54 -0
  103. data/processor/command/set_subcmd/max_subcmd/width.rb +49 -0
  104. data/processor/command/set_subcmd/substitute.rb +25 -0
  105. data/processor/command/set_subcmd/substitute_subcmd/path.rb +56 -0
  106. data/processor/command/set_subcmd/trace.rb +37 -0
  107. data/processor/command/set_subcmd/trace_subcmd/print.rb +57 -0
  108. data/processor/command/show.rb +27 -0
  109. data/processor/command/show_subcmd/alias.rb +43 -0
  110. data/processor/command/show_subcmd/args.rb +26 -0
  111. data/processor/command/show_subcmd/auto.rb +28 -0
  112. data/processor/command/show_subcmd/auto_subcmd/dis.rb +37 -0
  113. data/processor/command/show_subcmd/auto_subcmd/eval.rb +28 -0
  114. data/processor/command/show_subcmd/auto_subcmd/irb.rb +23 -0
  115. data/processor/command/show_subcmd/auto_subcmd/list.rb +22 -0
  116. data/processor/command/show_subcmd/basename.rb +22 -0
  117. data/processor/command/show_subcmd/debug.rb +27 -0
  118. data/processor/command/show_subcmd/debug_subcmd/dbgr.rb +21 -0
  119. data/processor/command/show_subcmd/debug_subcmd/skip.rb +22 -0
  120. data/processor/command/show_subcmd/debug_subcmd/step.rb +22 -0
  121. data/processor/command/show_subcmd/different.rb +27 -0
  122. data/processor/command/show_subcmd/hidelevel.rb +42 -0
  123. data/processor/command/show_subcmd/kernelstep.rb +37 -0
  124. data/processor/command/show_subcmd/max.rb +30 -0
  125. data/processor/command/show_subcmd/max_subcmd/list.rb +38 -0
  126. data/processor/command/show_subcmd/max_subcmd/stack.rb +36 -0
  127. data/processor/command/show_subcmd/max_subcmd/string.rb +42 -0
  128. data/processor/command/show_subcmd/max_subcmd/width.rb +37 -0
  129. data/processor/command/show_subcmd/trace.rb +29 -0
  130. data/processor/command/show_subcmd/trace_subcmd/print.rb +38 -0
  131. data/processor/command/source.rb +83 -0
  132. data/processor/command/step.rb +41 -0
  133. data/processor/command/tbreak.rb +19 -0
  134. data/processor/command/unalias.rb +44 -0
  135. data/processor/command/up.rb +87 -0
  136. data/processor/default.rb +56 -0
  137. data/processor/disassemble.rb +32 -0
  138. data/processor/eval.rb +96 -0
  139. data/processor/frame.rb +211 -0
  140. data/processor/help.rb +72 -0
  141. data/processor/hook.rb +133 -0
  142. data/processor/load_cmds.rb +101 -0
  143. data/processor/location.rb +128 -0
  144. data/processor/main.rb +394 -0
  145. data/processor/mock.rb +137 -0
  146. data/processor/msg.rb +28 -0
  147. data/processor/running.rb +230 -0
  148. data/processor/stepping.rb +115 -0
  149. data/processor/subcmd.rb +160 -0
  150. data/processor/validate.rb +355 -0
  151. data/test/data/enable.right +36 -0
  152. data/test/data/fname-with-blank.cmd +6 -0
  153. data/test/data/fname-with-blank.right +1 -0
  154. data/test/data/quit-Xdebug.right +3 -0
  155. data/test/data/quit.cmd +5 -0
  156. data/test/data/quit.right +0 -0
  157. data/test/example/fname with blank.rb +1 -0
  158. data/test/example/gcd-xx.rb +18 -0
  159. data/test/example/gcd.rb +19 -0
  160. data/test/example/gcd1.rb +24 -0
  161. data/test/example/null.rb +1 -0
  162. data/test/example/thread1.rb +3 -0
  163. data/test/functional/fn_helper.rb +112 -0
  164. data/test/functional/test-break-name.rb +52 -0
  165. data/test/functional/test-break.rb +51 -0
  166. data/test/functional/test-finish.rb +70 -0
  167. data/test/functional/test-fn_helper.rb +43 -0
  168. data/test/functional/test-list.rb +55 -0
  169. data/test/functional/test-next-bug.rb +49 -0
  170. data/test/functional/test-next.rb +101 -0
  171. data/test/functional/test-step.rb +272 -0
  172. data/test/functional/test-step2.rb +35 -0
  173. data/test/functional/test-tbreak.rb +41 -0
  174. data/test/integration/file-diff.rb +89 -0
  175. data/test/integration/helper.rb +78 -0
  176. data/test/integration/test-fname-with-blank.rb +12 -0
  177. data/test/integration/test-quit.rb +25 -0
  178. data/test/unit/cmd-helper.rb +46 -0
  179. data/test/unit/test-app-brkpt.rb +30 -0
  180. data/test/unit/test-app-brkptmgr.rb +51 -0
  181. data/test/unit/test-app-iseq.rb +49 -0
  182. data/test/unit/test-app-method.rb +54 -0
  183. data/test/unit/test-app-options.rb +61 -0
  184. data/test/unit/test-app-run.rb +16 -0
  185. data/test/unit/test-app-util.rb +28 -0
  186. data/test/unit/test-app-validate.rb +18 -0
  187. data/test/unit/test-base-subcmd.rb +61 -0
  188. data/test/unit/test-bin-trepanx.rb +48 -0
  189. data/test/unit/test-cmd-alias.rb +49 -0
  190. data/test/unit/test-cmd-break.rb +23 -0
  191. data/test/unit/test-cmd-exit.rb +27 -0
  192. data/test/unit/test-cmd-help.rb +101 -0
  193. data/test/unit/test-cmd-kill.rb +48 -0
  194. data/test/unit/test-intf-user.rb +46 -0
  195. data/test/unit/test-io-input.rb +27 -0
  196. data/test/unit/test-proc-eval.rb +37 -0
  197. data/test/unit/test-proc-frame.rb +79 -0
  198. data/test/unit/test-proc-help.rb +16 -0
  199. data/test/unit/test-proc-hook.rb +30 -0
  200. data/test/unit/test-proc-load_cmds.rb +41 -0
  201. data/test/unit/test-proc-location.rb +48 -0
  202. data/test/unit/test-proc-main.rb +96 -0
  203. data/test/unit/test-proc-validate.rb +91 -0
  204. data/test/unit/test-subcmd-help.rb +51 -0
  205. metadata +337 -0
data/app/iseq.rbc ADDED
@@ -0,0 +1,1801 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 239
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 65
40
+ 49
41
+ 5
42
+ 0
43
+ 99
44
+ 43
45
+ 6
46
+ 7
47
+ 7
48
+ 49
49
+ 8
50
+ 1
51
+ 83
52
+ 9
53
+ 9
54
+ 235
55
+ 5
56
+ 45
57
+ 0
58
+ 10
59
+ 43
60
+ 11
61
+ 47
62
+ 49
63
+ 12
64
+ 1
65
+ 15
66
+ 45
67
+ 13
68
+ 14
69
+ 43
70
+ 15
71
+ 78
72
+ 2
73
+ 49
74
+ 16
75
+ 2
76
+ 19
77
+ 0
78
+ 15
79
+ 20
80
+ 0
81
+ 79
82
+ 49
83
+ 8
84
+ 1
85
+ 19
86
+ 1
87
+ 15
88
+ 20
89
+ 1
90
+ 49
91
+ 17
92
+ 0
93
+ 19
94
+ 2
95
+ 15
96
+ 5
97
+ 20
98
+ 2
99
+ 49
100
+ 18
101
+ 0
102
+ 47
103
+ 49
104
+ 19
105
+ 1
106
+ 15
107
+ 5
108
+ 20
109
+ 2
110
+ 20
111
+ 2
112
+ 49
113
+ 20
114
+ 0
115
+ 49
116
+ 21
117
+ 0
118
+ 20
119
+ 2
120
+ 49
121
+ 20
122
+ 0
123
+ 49
124
+ 22
125
+ 0
126
+ 47
127
+ 49
128
+ 23
129
+ 3
130
+ 19
131
+ 3
132
+ 15
133
+ 5
134
+ 7
135
+ 24
136
+ 20
137
+ 3
138
+ 49
139
+ 25
140
+ 0
141
+ 47
142
+ 101
143
+ 26
144
+ 63
145
+ 2
146
+ 47
147
+ 49
148
+ 19
149
+ 1
150
+ 15
151
+ 5
152
+ 20
153
+ 2
154
+ 20
155
+ 2
156
+ 49
157
+ 20
158
+ 0
159
+ 49
160
+ 21
161
+ 0
162
+ 20
163
+ 2
164
+ 49
165
+ 20
166
+ 0
167
+ 49
168
+ 22
169
+ 0
170
+ 47
171
+ 49
172
+ 27
173
+ 3
174
+ 19
175
+ 3
176
+ 15
177
+ 5
178
+ 7
179
+ 28
180
+ 20
181
+ 3
182
+ 49
183
+ 25
184
+ 0
185
+ 47
186
+ 101
187
+ 26
188
+ 63
189
+ 2
190
+ 47
191
+ 49
192
+ 19
193
+ 1
194
+ 15
195
+ 5
196
+ 45
197
+ 0
198
+ 29
199
+ 43
200
+ 11
201
+ 20
202
+ 3
203
+ 78
204
+ 49
205
+ 8
206
+ 1
207
+ 20
208
+ 3
209
+ 78
210
+ 49
211
+ 8
212
+ 1
213
+ 20
214
+ 2
215
+ 49
216
+ 30
217
+ 3
218
+ 47
219
+ 49
220
+ 19
221
+ 1
222
+ 15
223
+ 5
224
+ 45
225
+ 0
226
+ 31
227
+ 43
228
+ 11
229
+ 4
230
+ 10
231
+ 20
232
+ 3
233
+ 78
234
+ 49
235
+ 8
236
+ 1
237
+ 20
238
+ 2
239
+ 49
240
+ 30
241
+ 3
242
+ 47
243
+ 49
244
+ 32
245
+ 1
246
+ 8
247
+ 236
248
+ 1
249
+ 15
250
+ 2
251
+ 11
252
+ I
253
+ a
254
+ I
255
+ 4
256
+ I
257
+ 0
258
+ I
259
+ 0
260
+ n
261
+ p
262
+ 33
263
+ x
264
+ 10
265
+ Trepanning
266
+ x
267
+ 11
268
+ open_module
269
+ x
270
+ 15
271
+ __module_init__
272
+ M
273
+ 1
274
+ n
275
+ n
276
+ x
277
+ 10
278
+ Trepanning
279
+ i
280
+ 28
281
+ 5
282
+ 66
283
+ 99
284
+ 7
285
+ 0
286
+ 65
287
+ 49
288
+ 1
289
+ 2
290
+ 13
291
+ 99
292
+ 12
293
+ 7
294
+ 2
295
+ 12
296
+ 7
297
+ 3
298
+ 12
299
+ 65
300
+ 12
301
+ 49
302
+ 4
303
+ 4
304
+ 15
305
+ 49
306
+ 2
307
+ 0
308
+ 11
309
+ I
310
+ 6
311
+ I
312
+ 0
313
+ I
314
+ 0
315
+ I
316
+ 0
317
+ n
318
+ p
319
+ 5
320
+ x
321
+ 4
322
+ ISeq
323
+ x
324
+ 11
325
+ open_module
326
+ x
327
+ 15
328
+ __module_init__
329
+ M
330
+ 1
331
+ n
332
+ n
333
+ x
334
+ 4
335
+ ISeq
336
+ i
337
+ 188
338
+ 5
339
+ 66
340
+ 65
341
+ 7
342
+ 0
343
+ 45
344
+ 1
345
+ 2
346
+ 43
347
+ 3
348
+ 49
349
+ 4
350
+ 0
351
+ 7
352
+ 5
353
+ 49
354
+ 6
355
+ 1
356
+ 49
357
+ 7
358
+ 2
359
+ 15
360
+ 65
361
+ 7
362
+ 8
363
+ 45
364
+ 1
365
+ 9
366
+ 43
367
+ 3
368
+ 49
369
+ 4
370
+ 0
371
+ 7
372
+ 10
373
+ 49
374
+ 6
375
+ 1
376
+ 49
377
+ 7
378
+ 2
379
+ 15
380
+ 65
381
+ 7
382
+ 11
383
+ 45
384
+ 1
385
+ 12
386
+ 43
387
+ 3
388
+ 49
389
+ 4
390
+ 0
391
+ 7
392
+ 13
393
+ 49
394
+ 6
395
+ 1
396
+ 49
397
+ 7
398
+ 2
399
+ 15
400
+ 65
401
+ 7
402
+ 14
403
+ 45
404
+ 1
405
+ 15
406
+ 43
407
+ 3
408
+ 49
409
+ 4
410
+ 0
411
+ 7
412
+ 16
413
+ 49
414
+ 6
415
+ 1
416
+ 49
417
+ 7
418
+ 2
419
+ 15
420
+ 65
421
+ 7
422
+ 17
423
+ 45
424
+ 1
425
+ 18
426
+ 43
427
+ 3
428
+ 49
429
+ 4
430
+ 0
431
+ 7
432
+ 19
433
+ 49
434
+ 6
435
+ 1
436
+ 49
437
+ 7
438
+ 2
439
+ 15
440
+ 99
441
+ 7
442
+ 20
443
+ 7
444
+ 21
445
+ 65
446
+ 67
447
+ 49
448
+ 22
449
+ 0
450
+ 49
451
+ 23
452
+ 4
453
+ 15
454
+ 5
455
+ 7
456
+ 20
457
+ 47
458
+ 49
459
+ 24
460
+ 1
461
+ 15
462
+ 99
463
+ 7
464
+ 25
465
+ 7
466
+ 26
467
+ 65
468
+ 67
469
+ 49
470
+ 22
471
+ 0
472
+ 49
473
+ 23
474
+ 4
475
+ 15
476
+ 5
477
+ 7
478
+ 25
479
+ 47
480
+ 49
481
+ 24
482
+ 1
483
+ 15
484
+ 99
485
+ 7
486
+ 27
487
+ 7
488
+ 28
489
+ 65
490
+ 67
491
+ 49
492
+ 22
493
+ 0
494
+ 49
495
+ 23
496
+ 4
497
+ 15
498
+ 99
499
+ 7
500
+ 29
501
+ 7
502
+ 30
503
+ 65
504
+ 67
505
+ 49
506
+ 22
507
+ 0
508
+ 49
509
+ 23
510
+ 4
511
+ 15
512
+ 99
513
+ 7
514
+ 31
515
+ 7
516
+ 32
517
+ 65
518
+ 67
519
+ 49
520
+ 22
521
+ 0
522
+ 49
523
+ 23
524
+ 4
525
+ 11
526
+ I
527
+ 5
528
+ I
529
+ 0
530
+ I
531
+ 0
532
+ I
533
+ 0
534
+ n
535
+ p
536
+ 33
537
+ x
538
+ 7
539
+ OP_GOTO
540
+ x
541
+ 8
542
+ Rubinius
543
+ n
544
+ x
545
+ 14
546
+ InstructionSet
547
+ x
548
+ 11
549
+ opcodes_map
550
+ x
551
+ 4
552
+ goto
553
+ x
554
+ 2
555
+ []
556
+ x
557
+ 9
558
+ const_set
559
+ x
560
+ 15
561
+ OP_GOTO_IF_TRUE
562
+ n
563
+ x
564
+ 12
565
+ goto_if_true
566
+ x
567
+ 16
568
+ OP_GOTO_IF_FALSE
569
+ n
570
+ x
571
+ 13
572
+ goto_if_false
573
+ x
574
+ 6
575
+ OP_RET
576
+ n
577
+ x
578
+ 3
579
+ ret
580
+ x
581
+ 14
582
+ OP_YIELD_STACK
583
+ n
584
+ x
585
+ 11
586
+ yield_stack
587
+ x
588
+ 13
589
+ disasm_prefix
590
+ M
591
+ 1
592
+ n
593
+ n
594
+ x
595
+ 13
596
+ disasm_prefix
597
+ i
598
+ 43
599
+ 20
600
+ 2
601
+ 20
602
+ 0
603
+ 49
604
+ 0
605
+ 1
606
+ 9
607
+ 14
608
+ 7
609
+ 1
610
+ 64
611
+ 8
612
+ 17
613
+ 7
614
+ 2
615
+ 64
616
+ 19
617
+ 3
618
+ 15
619
+ 20
620
+ 3
621
+ 20
622
+ 0
623
+ 20
624
+ 1
625
+ 83
626
+ 3
627
+ 9
628
+ 35
629
+ 7
630
+ 4
631
+ 64
632
+ 8
633
+ 38
634
+ 7
635
+ 5
636
+ 64
637
+ 81
638
+ 6
639
+ 19
640
+ 3
641
+ 11
642
+ I
643
+ 7
644
+ I
645
+ 4
646
+ I
647
+ 3
648
+ I
649
+ 3
650
+ n
651
+ p
652
+ 7
653
+ x
654
+ 11
655
+ breakpoint?
656
+ s
657
+ 1
658
+ B
659
+ s
660
+ 1
661
+
662
+ x
663
+ 2
664
+ ==
665
+ s
666
+ 3
667
+ -->
668
+ s
669
+ 3
670
+
671
+ x
672
+ 1
673
+ +
674
+ p
675
+ 15
676
+ I
677
+ -1
678
+ I
679
+ c
680
+ I
681
+ 0
682
+ I
683
+ d
684
+ I
685
+ 14
686
+ I
687
+ 13
688
+ I
689
+ 16
690
+ I
691
+ f
692
+ I
693
+ 1e
694
+ I
695
+ 10
696
+ I
697
+ 23
698
+ I
699
+ 12
700
+ I
701
+ 28
702
+ I
703
+ e
704
+ I
705
+ 2b
706
+ x
707
+ 51
708
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
709
+ p
710
+ 4
711
+ x
712
+ 2
713
+ ip
714
+ x
715
+ 8
716
+ frame_ip
717
+ x
718
+ 2
719
+ cm
720
+ x
721
+ 6
722
+ prefix
723
+ x
724
+ 17
725
+ method_visibility
726
+ x
727
+ 15
728
+ add_defn_method
729
+ x
730
+ 15
731
+ module_function
732
+ x
733
+ 8
734
+ goto_op?
735
+ M
736
+ 1
737
+ n
738
+ n
739
+ x
740
+ 8
741
+ goto_op?
742
+ i
743
+ 25
744
+ 45
745
+ 0
746
+ 1
747
+ 45
748
+ 2
749
+ 3
750
+ 45
751
+ 4
752
+ 5
753
+ 35
754
+ 3
755
+ 20
756
+ 0
757
+ 49
758
+ 6
759
+ 0
760
+ 20
761
+ 1
762
+ 49
763
+ 7
764
+ 1
765
+ 49
766
+ 8
767
+ 1
768
+ 11
769
+ I
770
+ 5
771
+ I
772
+ 2
773
+ I
774
+ 2
775
+ I
776
+ 2
777
+ n
778
+ p
779
+ 9
780
+ x
781
+ 7
782
+ OP_GOTO
783
+ n
784
+ x
785
+ 15
786
+ OP_GOTO_IF_TRUE
787
+ n
788
+ x
789
+ 16
790
+ OP_GOTO_IF_FALSE
791
+ n
792
+ x
793
+ 4
794
+ iseq
795
+ x
796
+ 2
797
+ []
798
+ x
799
+ 7
800
+ member?
801
+ p
802
+ 5
803
+ I
804
+ -1
805
+ I
806
+ 17
807
+ I
808
+ 0
809
+ I
810
+ 18
811
+ I
812
+ 19
813
+ x
814
+ 51
815
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
816
+ p
817
+ 2
818
+ x
819
+ 2
820
+ cm
821
+ x
822
+ 2
823
+ ip
824
+ x
825
+ 12
826
+ goto_between
827
+ M
828
+ 1
829
+ n
830
+ n
831
+ x
832
+ 12
833
+ goto_between
834
+ i
835
+ 200
836
+ 20
837
+ 0
838
+ 49
839
+ 0
840
+ 0
841
+ 19
842
+ 3
843
+ 15
844
+ 20
845
+ 1
846
+ 19
847
+ 4
848
+ 15
849
+ 20
850
+ 4
851
+ 20
852
+ 2
853
+ 84
854
+ 1
855
+ 9
856
+ 169
857
+ 20
858
+ 3
859
+ 20
860
+ 4
861
+ 49
862
+ 2
863
+ 1
864
+ 19
865
+ 5
866
+ 15
867
+ 20
868
+ 5
869
+ 13
870
+ 45
871
+ 3
872
+ 4
873
+ 12
874
+ 49
875
+ 5
876
+ 1
877
+ 9
878
+ 64
879
+ 15
880
+ 5
881
+ 20
882
+ 0
883
+ 20
884
+ 3
885
+ 20
886
+ 4
887
+ 79
888
+ 81
889
+ 6
890
+ 49
891
+ 2
892
+ 1
893
+ 47
894
+ 49
895
+ 7
896
+ 2
897
+ 11
898
+ 8
899
+ 165
900
+ 13
901
+ 45
902
+ 8
903
+ 9
904
+ 12
905
+ 49
906
+ 5
907
+ 1
908
+ 9
909
+ 80
910
+ 15
911
+ 7
912
+ 10
913
+ 11
914
+ 8
915
+ 165
916
+ 13
917
+ 45
918
+ 11
919
+ 12
920
+ 12
921
+ 49
922
+ 5
923
+ 1
924
+ 10
925
+ 102
926
+ 13
927
+ 45
928
+ 13
929
+ 14
930
+ 12
931
+ 49
932
+ 5
933
+ 1
934
+ 10
935
+ 102
936
+ 8
937
+ 137
938
+ 15
939
+ 5
940
+ 20
941
+ 0
942
+ 20
943
+ 3
944
+ 20
945
+ 4
946
+ 79
947
+ 81
948
+ 6
949
+ 49
950
+ 2
951
+ 1
952
+ 47
953
+ 49
954
+ 7
955
+ 2
956
+ 5
957
+ 20
958
+ 0
959
+ 20
960
+ 4
961
+ 80
962
+ 81
963
+ 6
964
+ 47
965
+ 49
966
+ 7
967
+ 2
968
+ 35
969
+ 2
970
+ 11
971
+ 8
972
+ 165
973
+ 15
974
+ 45
975
+ 15
976
+ 16
977
+ 43
978
+ 17
979
+ 20
980
+ 5
981
+ 49
982
+ 2
983
+ 1
984
+ 19
985
+ 5
986
+ 15
987
+ 20
988
+ 4
989
+ 20
990
+ 5
991
+ 49
992
+ 18
993
+ 0
994
+ 79
995
+ 81
996
+ 6
997
+ 81
998
+ 6
999
+ 19
1000
+ 4
1001
+ 15
1002
+ 68
1003
+ 8
1004
+ 13
1005
+ 1
1006
+ 15
1007
+ 20
1008
+ 2
1009
+ 20
1010
+ 0
1011
+ 49
1012
+ 19
1013
+ 0
1014
+ 49
1015
+ 20
1016
+ 0
1017
+ 83
1018
+ 21
1019
+ 9
1020
+ 189
1021
+ 77
1022
+ 11
1023
+ 8
1024
+ 199
1025
+ 5
1026
+ 20
1027
+ 0
1028
+ 20
1029
+ 2
1030
+ 47
1031
+ 49
1032
+ 7
1033
+ 2
1034
+ 11
1035
+ 11
1036
+ I
1037
+ b
1038
+ I
1039
+ 6
1040
+ I
1041
+ 3
1042
+ I
1043
+ 3
1044
+ n
1045
+ p
1046
+ 22
1047
+ x
1048
+ 4
1049
+ iseq
1050
+ x
1051
+ 1
1052
+ <
1053
+ x
1054
+ 2
1055
+ []
1056
+ x
1057
+ 7
1058
+ OP_GOTO
1059
+ n
1060
+ x
1061
+ 3
1062
+ ===
1063
+ x
1064
+ 1
1065
+ +
1066
+ x
1067
+ 16
1068
+ next_interesting
1069
+ x
1070
+ 6
1071
+ OP_RET
1072
+ n
1073
+ I
1074
+ -2
1075
+ x
1076
+ 15
1077
+ OP_GOTO_IF_TRUE
1078
+ n
1079
+ x
1080
+ 16
1081
+ OP_GOTO_IF_FALSE
1082
+ n
1083
+ x
1084
+ 8
1085
+ Rubinius
1086
+ n
1087
+ x
1088
+ 14
1089
+ InstructionSet
1090
+ x
1091
+ 9
1092
+ arg_count
1093
+ x
1094
+ 5
1095
+ lines
1096
+ x
1097
+ 4
1098
+ last
1099
+ x
1100
+ 2
1101
+ ==
1102
+ p
1103
+ 37
1104
+ I
1105
+ -1
1106
+ I
1107
+ 1c
1108
+ I
1109
+ 0
1110
+ I
1111
+ 1e
1112
+ I
1113
+ 8
1114
+ I
1115
+ 20
1116
+ I
1117
+ d
1118
+ I
1119
+ 21
1120
+ I
1121
+ 15
1122
+ I
1123
+ 22
1124
+ I
1125
+ 1f
1126
+ I
1127
+ 23
1128
+ I
1129
+ 22
1130
+ I
1131
+ 24
1132
+ I
1133
+ 2c
1134
+ I
1135
+ 25
1136
+ I
1137
+ 41
1138
+ I
1139
+ 26
1140
+ I
1141
+ 4b
1142
+ I
1143
+ 27
1144
+ I
1145
+ 51
1146
+ I
1147
+ 28
1148
+ I
1149
+ 67
1150
+ I
1151
+ 29
1152
+ I
1153
+ 78
1154
+ I
1155
+ 2a
1156
+ I
1157
+ 8a
1158
+ I
1159
+ 2c
1160
+ I
1161
+ 97
1162
+ I
1163
+ 2d
1164
+ I
1165
+ ab
1166
+ I
1167
+ 31
1168
+ I
1169
+ b9
1170
+ I
1171
+ 32
1172
+ I
1173
+ bd
1174
+ I
1175
+ 34
1176
+ I
1177
+ c8
1178
+ x
1179
+ 51
1180
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
1181
+ p
1182
+ 6
1183
+ x
1184
+ 2
1185
+ cm
1186
+ x
1187
+ 5
1188
+ start
1189
+ x
1190
+ 3
1191
+ fin
1192
+ x
1193
+ 4
1194
+ iseq
1195
+ x
1196
+ 1
1197
+ i
1198
+ x
1199
+ 2
1200
+ op
1201
+ x
1202
+ 16
1203
+ next_interesting
1204
+ M
1205
+ 1
1206
+ n
1207
+ n
1208
+ x
1209
+ 16
1210
+ next_interesting
1211
+ i
1212
+ 46
1213
+ 45
1214
+ 0
1215
+ 1
1216
+ 43
1217
+ 2
1218
+ 49
1219
+ 3
1220
+ 0
1221
+ 7
1222
+ 4
1223
+ 49
1224
+ 5
1225
+ 1
1226
+ 19
1227
+ 2
1228
+ 15
1229
+ 20
1230
+ 0
1231
+ 49
1232
+ 6
1233
+ 0
1234
+ 20
1235
+ 1
1236
+ 49
1237
+ 5
1238
+ 1
1239
+ 20
1240
+ 2
1241
+ 83
1242
+ 7
1243
+ 9
1244
+ 40
1245
+ 20
1246
+ 1
1247
+ 79
1248
+ 81
1249
+ 8
1250
+ 11
1251
+ 8
1252
+ 41
1253
+ 1
1254
+ 15
1255
+ 20
1256
+ 1
1257
+ 11
1258
+ 11
1259
+ I
1260
+ 5
1261
+ I
1262
+ 3
1263
+ I
1264
+ 2
1265
+ I
1266
+ 2
1267
+ n
1268
+ p
1269
+ 9
1270
+ x
1271
+ 8
1272
+ Rubinius
1273
+ n
1274
+ x
1275
+ 14
1276
+ InstructionSet
1277
+ x
1278
+ 11
1279
+ opcodes_map
1280
+ x
1281
+ 3
1282
+ pop
1283
+ x
1284
+ 2
1285
+ []
1286
+ x
1287
+ 4
1288
+ iseq
1289
+ x
1290
+ 2
1291
+ ==
1292
+ x
1293
+ 1
1294
+ +
1295
+ p
1296
+ 13
1297
+ I
1298
+ -1
1299
+ I
1300
+ 38
1301
+ I
1302
+ 0
1303
+ I
1304
+ 39
1305
+ I
1306
+ 10
1307
+ I
1308
+ 3b
1309
+ I
1310
+ 20
1311
+ I
1312
+ 3c
1313
+ I
1314
+ 28
1315
+ I
1316
+ 3b
1317
+ I
1318
+ 2a
1319
+ I
1320
+ 3f
1321
+ I
1322
+ 2e
1323
+ x
1324
+ 51
1325
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
1326
+ p
1327
+ 3
1328
+ x
1329
+ 2
1330
+ cm
1331
+ x
1332
+ 2
1333
+ ip
1334
+ x
1335
+ 3
1336
+ pop
1337
+ x
1338
+ 23
1339
+ yield_or_return_between
1340
+ M
1341
+ 1
1342
+ n
1343
+ n
1344
+ x
1345
+ 23
1346
+ yield_or_return_between
1347
+ i
1348
+ 99
1349
+ 20
1350
+ 0
1351
+ 49
1352
+ 0
1353
+ 0
1354
+ 19
1355
+ 3
1356
+ 15
1357
+ 35
1358
+ 0
1359
+ 19
1360
+ 4
1361
+ 15
1362
+ 20
1363
+ 1
1364
+ 19
1365
+ 5
1366
+ 15
1367
+ 20
1368
+ 5
1369
+ 20
1370
+ 2
1371
+ 84
1372
+ 1
1373
+ 9
1374
+ 93
1375
+ 20
1376
+ 3
1377
+ 20
1378
+ 5
1379
+ 49
1380
+ 2
1381
+ 1
1382
+ 19
1383
+ 6
1384
+ 15
1385
+ 45
1386
+ 3
1387
+ 4
1388
+ 45
1389
+ 5
1390
+ 6
1391
+ 35
1392
+ 2
1393
+ 20
1394
+ 6
1395
+ 49
1396
+ 7
1397
+ 1
1398
+ 9
1399
+ 60
1400
+ 20
1401
+ 4
1402
+ 20
1403
+ 5
1404
+ 49
1405
+ 8
1406
+ 1
1407
+ 8
1408
+ 61
1409
+ 1
1410
+ 15
1411
+ 45
1412
+ 9
1413
+ 10
1414
+ 43
1415
+ 11
1416
+ 20
1417
+ 6
1418
+ 49
1419
+ 2
1420
+ 1
1421
+ 19
1422
+ 6
1423
+ 15
1424
+ 20
1425
+ 5
1426
+ 20
1427
+ 6
1428
+ 49
1429
+ 12
1430
+ 0
1431
+ 79
1432
+ 81
1433
+ 13
1434
+ 81
1435
+ 13
1436
+ 19
1437
+ 5
1438
+ 15
1439
+ 68
1440
+ 8
1441
+ 18
1442
+ 1
1443
+ 15
1444
+ 20
1445
+ 4
1446
+ 11
1447
+ 11
1448
+ I
1449
+ a
1450
+ I
1451
+ 7
1452
+ I
1453
+ 3
1454
+ I
1455
+ 3
1456
+ n
1457
+ p
1458
+ 14
1459
+ x
1460
+ 4
1461
+ iseq
1462
+ x
1463
+ 1
1464
+ <
1465
+ x
1466
+ 2
1467
+ []
1468
+ x
1469
+ 6
1470
+ OP_RET
1471
+ n
1472
+ x
1473
+ 14
1474
+ OP_YIELD_STACK
1475
+ n
1476
+ x
1477
+ 7
1478
+ member?
1479
+ x
1480
+ 2
1481
+ <<
1482
+ x
1483
+ 8
1484
+ Rubinius
1485
+ n
1486
+ x
1487
+ 14
1488
+ InstructionSet
1489
+ x
1490
+ 9
1491
+ arg_count
1492
+ x
1493
+ 1
1494
+ +
1495
+ p
1496
+ 25
1497
+ I
1498
+ -1
1499
+ I
1500
+ 42
1501
+ I
1502
+ 0
1503
+ I
1504
+ 43
1505
+ I
1506
+ 8
1507
+ I
1508
+ 44
1509
+ I
1510
+ d
1511
+ I
1512
+ 45
1513
+ I
1514
+ 12
1515
+ I
1516
+ 46
1517
+ I
1518
+ 1a
1519
+ I
1520
+ 47
1521
+ I
1522
+ 24
1523
+ I
1524
+ 48
1525
+ I
1526
+ 33
1527
+ I
1528
+ 49
1529
+ I
1530
+ 3c
1531
+ I
1532
+ 48
1533
+ I
1534
+ 3e
1535
+ I
1536
+ 4b
1537
+ I
1538
+ 4b
1539
+ I
1540
+ 4c
1541
+ I
1542
+ 5f
1543
+ I
1544
+ 4e
1545
+ I
1546
+ 63
1547
+ x
1548
+ 51
1549
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
1550
+ p
1551
+ 7
1552
+ x
1553
+ 2
1554
+ cm
1555
+ x
1556
+ 5
1557
+ start
1558
+ x
1559
+ 3
1560
+ fin
1561
+ x
1562
+ 4
1563
+ iseq
1564
+ x
1565
+ 3
1566
+ ips
1567
+ x
1568
+ 1
1569
+ i
1570
+ x
1571
+ 2
1572
+ op
1573
+ p
1574
+ 25
1575
+ I
1576
+ 2
1577
+ I
1578
+ 4
1579
+ I
1580
+ 16
1581
+ I
1582
+ 5
1583
+ I
1584
+ 2a
1585
+ I
1586
+ 6
1587
+ I
1588
+ 3e
1589
+ I
1590
+ 7
1591
+ I
1592
+ 52
1593
+ I
1594
+ 8
1595
+ I
1596
+ 66
1597
+ I
1598
+ c
1599
+ I
1600
+ 74
1601
+ I
1602
+ 15
1603
+ I
1604
+ 7c
1605
+ I
1606
+ 17
1607
+ I
1608
+ 8a
1609
+ I
1610
+ 1a
1611
+ I
1612
+ 92
1613
+ I
1614
+ 1c
1615
+ I
1616
+ a0
1617
+ I
1618
+ 38
1619
+ I
1620
+ ae
1621
+ I
1622
+ 42
1623
+ I
1624
+ bc
1625
+ x
1626
+ 51
1627
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
1628
+ p
1629
+ 0
1630
+ x
1631
+ 13
1632
+ attach_method
1633
+ p
1634
+ 3
1635
+ I
1636
+ 2
1637
+ I
1638
+ 3
1639
+ I
1640
+ 1c
1641
+ x
1642
+ 51
1643
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
1644
+ p
1645
+ 0
1646
+ x
1647
+ 13
1648
+ attach_method
1649
+ x
1650
+ 11
1651
+ active_path
1652
+ x
1653
+ 7
1654
+ Globals
1655
+ x
1656
+ 2
1657
+ $0
1658
+ x
1659
+ 2
1660
+ []
1661
+ x
1662
+ 2
1663
+ ==
1664
+ n
1665
+ x
1666
+ 4
1667
+ ISeq
1668
+ x
1669
+ 7
1670
+ include
1671
+ x
1672
+ 8
1673
+ Rubinius
1674
+ n
1675
+ x
1676
+ 2
1677
+ VM
1678
+ x
1679
+ 9
1680
+ backtrace
1681
+ x
1682
+ 6
1683
+ method
1684
+ x
1685
+ 6
1686
+ decode
1687
+ x
1688
+ 4
1689
+ puts
1690
+ x
1691
+ 5
1692
+ lines
1693
+ x
1694
+ 5
1695
+ first
1696
+ x
1697
+ 4
1698
+ last
1699
+ x
1700
+ 23
1701
+ yield_or_return_between
1702
+ s
1703
+ 8
1704
+ return:
1705
+ x
1706
+ 7
1707
+ inspect
1708
+ x
1709
+ 4
1710
+ to_s
1711
+ x
1712
+ 12
1713
+ goto_between
1714
+ s
1715
+ 6
1716
+ goto:
1717
+ n
1718
+ x
1719
+ 13
1720
+ disasm_prefix
1721
+ n
1722
+ x
1723
+ 1
1724
+ p
1725
+ p
1726
+ 29
1727
+ I
1728
+ 0
1729
+ I
1730
+ 2
1731
+ I
1732
+ 1a
1733
+ I
1734
+ 53
1735
+ I
1736
+ 2a
1737
+ I
1738
+ 54
1739
+ I
1740
+ 35
1741
+ I
1742
+ 55
1743
+ I
1744
+ 42
1745
+ I
1746
+ 56
1747
+ I
1748
+ 4b
1749
+ I
1750
+ 57
1751
+ I
1752
+ 53
1753
+ I
1754
+ 58
1755
+ I
1756
+ 5e
1757
+ I
1758
+ 59
1759
+ I
1760
+ 78
1761
+ I
1762
+ 5a
1763
+ I
1764
+ 8a
1765
+ I
1766
+ 5b
1767
+ I
1768
+ a4
1769
+ I
1770
+ 5c
1771
+ I
1772
+ b6
1773
+ I
1774
+ 5d
1775
+ I
1776
+ d2
1777
+ I
1778
+ 5e
1779
+ I
1780
+ eb
1781
+ I
1782
+ 53
1783
+ I
1784
+ ef
1785
+ x
1786
+ 51
1787
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/iseq.rb
1788
+ p
1789
+ 4
1790
+ x
1791
+ 12
1792
+ vm_locations
1793
+ x
1794
+ 8
1795
+ call_loc
1796
+ x
1797
+ 2
1798
+ cm
1799
+ x
1800
+ 3
1801
+ ips