rbx-trepanning 0.0.6-universal-rubinius-1.2 → 0.0.7-universal-rubinius-1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (137) hide show
  1. data/.gitignore +5 -0
  2. data/ChangeLog +161 -0
  3. data/Makefile +13 -0
  4. data/NEWS +11 -0
  5. data/Rakefile +6 -5
  6. data/app/.gitignore +2 -0
  7. data/app/breakpoint.rb +53 -36
  8. data/app/brkptmgr.rb +10 -0
  9. data/app/complete.rb +29 -2
  10. data/app/condition.rb +22 -0
  11. data/app/default.rb +1 -0
  12. data/app/eventbuffer.rb +147 -0
  13. data/app/frame.rb +3 -1
  14. data/app/options.rb +2 -2
  15. data/app/run.rb +5 -3
  16. data/bin/.gitignore +2 -0
  17. data/data/.gitignore +2 -0
  18. data/doc/.gitignore +1 -0
  19. data/doc/debugger.html +108 -0
  20. data/interface/.gitignore +2 -0
  21. data/interface/user.rb +8 -7
  22. data/io/.gitignore +3 -0
  23. data/io/input.rb +14 -8
  24. data/lib/.gitignore +2 -0
  25. data/lib/trepanning.rb +25 -33
  26. data/processor/.gitignore +3 -0
  27. data/processor/Makefile +7 -0
  28. data/processor/breakpoint.rb +4 -0
  29. data/processor/command/.gitignore +2 -0
  30. data/processor/command/backtrace.rb +5 -0
  31. data/processor/command/base/.gitignore +2 -0
  32. data/processor/command/base/subcmd.rb +2 -1
  33. data/processor/command/base/subsubcmd.rb +23 -1
  34. data/processor/command/base/subsubmgr.rb +2 -1
  35. data/processor/command/complete.rb +2 -1
  36. data/processor/command/condition.rb +62 -0
  37. data/processor/command/down.rb +4 -4
  38. data/processor/command/eval.rb +14 -6
  39. data/processor/command/exit.rb +8 -7
  40. data/processor/command/frame.rb +6 -2
  41. data/processor/command/info_subcmd/.gitignore +3 -0
  42. data/processor/command/info_subcmd/breakpoints.rb +8 -0
  43. data/processor/command/info_subcmd/files.rb +1 -1
  44. data/processor/command/info_subcmd/line.rb +1 -1
  45. data/processor/command/info_subcmd/ruby.rb +1 -1
  46. data/processor/command/kill.rb +21 -10
  47. data/processor/command/macro.rb +15 -23
  48. data/processor/command/set_subcmd/.gitignore +2 -0
  49. data/processor/command/set_subcmd/auto_subcmd/.gitignore +2 -0
  50. data/processor/command/set_subcmd/debug_subcmd/.gitignore +2 -0
  51. data/processor/command/set_subcmd/different.rb +2 -0
  52. data/processor/command/set_subcmd/max_subcmd/.gitignore +2 -0
  53. data/processor/command/set_subcmd/substitute_subcmd/.gitignore +3 -0
  54. data/processor/command/set_subcmd/trace_subcmd/.gitignore +2 -0
  55. data/processor/command/set_subcmd/trace_subcmd/buffer.rb +42 -0
  56. data/processor/command/set_subcmd/trace_subcmd/print.rb +13 -29
  57. data/processor/command/show_subcmd/.gitignore +3 -0
  58. data/processor/command/show_subcmd/alias.rb +7 -3
  59. data/processor/command/show_subcmd/auto_subcmd/.gitignore +3 -0
  60. data/processor/command/show_subcmd/auto_subcmd/irb.rb +1 -1
  61. data/processor/command/show_subcmd/debug_subcmd/.gitignore +3 -0
  62. data/processor/command/show_subcmd/macro.rb +62 -0
  63. data/processor/command/show_subcmd/max_subcmd/.gitignore +2 -0
  64. data/processor/command/show_subcmd/trace_subcmd/.gitignore +2 -0
  65. data/processor/command/show_subcmd/trace_subcmd/buffer.rb +64 -0
  66. data/processor/command/show_subcmd/trace_subcmd/print.rb +5 -20
  67. data/processor/command/source.rb +7 -0
  68. data/processor/command/up.rb +12 -8
  69. data/processor/eventbuf.rb +101 -0
  70. data/processor/frame.rb +19 -1
  71. data/processor/hook.rb +2 -2
  72. data/processor/load_cmds.rb +57 -49
  73. data/processor/location.rb +40 -0
  74. data/processor/main.rb +27 -26
  75. data/processor/msg.rb +17 -0
  76. data/processor/stepping.rb +21 -1
  77. data/processor/validate.rb +1 -0
  78. data/rbx-trepanning.gemspec +40 -0
  79. data/sample/.gitignore +2 -0
  80. data/test/data/.gitignore +1 -0
  81. data/test/example/.gitignore +2 -0
  82. data/test/functional/.gitignore +3 -0
  83. data/test/functional/test-finish.rb +2 -2
  84. data/test/integration/.gitignore +3 -0
  85. data/test/unit/.gitignore +3 -0
  86. data/test/unit/cmd-helper.rb +6 -2
  87. data/test/unit/test-app-brkpt.rb +14 -12
  88. data/test/unit/test-app-complete.rb +39 -0
  89. data/test/unit/test-app-condition.rb +18 -0
  90. data/test/unit/test-app-options.rb +8 -1
  91. data/test/unit/test-base-subsubcmd.rb +21 -0
  92. data/test/unit/test-cmd-finish.rb +4 -0
  93. data/test/unit/test-completion.rb +11 -6
  94. data/test/unit/test-proc-load_cmds.rb +2 -2
  95. metadata +295 -218
  96. data/app/breakpoint.rbc +0 -3551
  97. data/app/brkptmgr.rbc +0 -2903
  98. data/app/client.rbc +0 -1225
  99. data/app/complete.rbc +0 -1288
  100. data/app/default.rbc +0 -1132
  101. data/app/display.rbc +0 -2578
  102. data/app/frame.rbc +0 -1808
  103. data/app/irb.rbc +0 -2094
  104. data/app/iseq.rbc +0 -2192
  105. data/app/llvm.rbc +0 -2478
  106. data/app/method.rbc +0 -2492
  107. data/app/method_name.rbc +0 -2467
  108. data/app/mock.rbc +0 -398
  109. data/app/options.rbc +0 -2898
  110. data/app/rbx-llvm.rbc +0 -2478
  111. data/app/run.rbc +0 -1244
  112. data/app/util.rbc +0 -1146
  113. data/app/validate.rbc +0 -676
  114. data/bin/trepan.compiled.rbc +0 -1043
  115. data/bin/trepanx.compiled.rbc +0 -1049
  116. data/data/irbrc.compiled.rbc +0 -640
  117. data/interface/base_intf.rbc +0 -1899
  118. data/interface/client.rbc +0 -1072
  119. data/interface/comcodes.rbc +0 -385
  120. data/interface/script.rbc +0 -1642
  121. data/interface/server.rbc +0 -2213
  122. data/interface/user.rbc +0 -2867
  123. data/io/base_io.rbc +0 -2111
  124. data/io/input.rbc +0 -2528
  125. data/io/null_output.rbc +0 -730
  126. data/io/string_array.rbc +0 -2466
  127. data/io/tcpclient.rbc +0 -2419
  128. data/io/tcpfns.rbc +0 -694
  129. data/io/tcpserver.rbc +0 -2638
  130. data/lib/trepanning.rbc +0 -7705
  131. data/lib/trepanning2.rb +0 -441
  132. data/sample/list-terminal-colors.rbc +0 -2318
  133. data/sample/rocky-trepanx-colors.rbc +0 -530
  134. data/test/data/step-bug.cmd +0 -11
  135. data/test/data/step-bug.right +0 -3
  136. data/test/example/step-bug.rb +0 -14
  137. data/test/integration/skip-test-step-bug.rb +0 -17
data/app/iseq.rbc DELETED
@@ -1,2192 +0,0 @@
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