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

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. data/ChangeLog +682 -0
  2. data/NEWS +19 -0
  3. data/README.textile +8 -9
  4. data/Rakefile +8 -8
  5. data/app/complete.rb +52 -0
  6. data/app/complete.rbc +1288 -0
  7. data/app/irb.rb +1 -2
  8. data/app/irb.rbc +55 -72
  9. data/app/llvm.rbc +780 -878
  10. data/app/method.rb +1 -1
  11. data/app/method.rbc +31 -35
  12. data/app/method_name.rbc +2467 -0
  13. data/app/options.rb +7 -24
  14. data/app/options.rbc +238 -132
  15. data/app/rbx-llvm.rbc +2478 -0
  16. data/app/util.rb +3 -3
  17. data/app/util.rbc +23 -27
  18. data/bin/trepanx +4 -3
  19. data/bin/trepanx.compiled.rbc +42 -32
  20. data/data/irbrc +41 -0
  21. data/data/irbrc.compiled.rbc +640 -0
  22. data/interface/base_intf.rb +9 -5
  23. data/interface/base_intf.rbc +200 -146
  24. data/interface/comcodes.rb +10 -8
  25. data/interface/comcodes.rbc +68 -26
  26. data/interface/script.rbc +21 -9
  27. data/interface/user.rb +74 -8
  28. data/interface/user.rbc +1702 -156
  29. data/io/input.rb +37 -14
  30. data/io/input.rbc +869 -320
  31. data/io/tcpclient.rb +7 -1
  32. data/io/tcpclient.rbc +205 -113
  33. data/io/tcpfns.rb +5 -3
  34. data/io/tcpfns.rbc +82 -40
  35. data/io/tcpserver.rb +13 -10
  36. data/io/tcpserver.rbc +236 -183
  37. data/lib/trepanning.rb +62 -21
  38. data/lib/trepanning.rbc +1304 -874
  39. data/lib/{trepanning.rb.orig → trepanning2.rb} +12 -4
  40. data/processor/breakpoint.rb +4 -1
  41. data/processor/command/base/cmd.rb +48 -3
  42. data/processor/command/base/subcmd.rb +2 -1
  43. data/processor/command/base/submgr.rb +23 -20
  44. data/processor/command/base/subsubmgr.rb +13 -2
  45. data/processor/command/complete.rb +7 -17
  46. data/processor/command/continue.rb +19 -11
  47. data/processor/command/disassemble.rb +39 -12
  48. data/processor/command/eval.rb +23 -5
  49. data/processor/command/help.rb +60 -6
  50. data/processor/command/info_subcmd/{file.rb → files.rb} +76 -18
  51. data/processor/command/info_subcmd/line.rb +86 -0
  52. data/processor/command/info_subcmd/program.rb +2 -11
  53. data/processor/command/info_subcmd/ruby.rb +62 -0
  54. data/processor/command/info_subcmd/variables.rb +7 -0
  55. data/processor/command/irb.rb +39 -7
  56. data/processor/command/macro.rb +76 -0
  57. data/processor/command/set_subcmd/confirm.rb +24 -0
  58. data/processor/command/set_subcmd/max.rb +4 -5
  59. data/processor/command/show.rb +11 -0
  60. data/processor/command/show_subcmd/auto.rb +1 -0
  61. data/processor/command/show_subcmd/basename.rb +1 -2
  62. data/processor/command/show_subcmd/confirm.rb +18 -0
  63. data/processor/command/show_subcmd/max.rb +0 -2
  64. data/processor/command/source.rb +0 -1
  65. data/processor/default.rb +2 -0
  66. data/processor/disassemble.rb +1 -0
  67. data/processor/load_cmds.rb +104 -20
  68. data/processor/location.rb +11 -12
  69. data/processor/main.rb +10 -6
  70. data/processor/mock.rb +6 -2
  71. data/processor/stepping.rb +1 -4
  72. data/processor/subcmd.rb +3 -2
  73. data/processor/validate.rb +3 -3
  74. data/sample/list-terminal-colors.rbc +158 -4
  75. data/sample/rocky-trepanx-colors.rb +15 -7
  76. data/sample/rocky-trepanx-colors.rbc +530 -0
  77. data/test/data/quit2.cmd +6 -0
  78. data/test/data/quit2.right +3 -0
  79. data/test/data/step-bug.cmd +11 -0
  80. data/test/data/step-bug.right +3 -0
  81. data/test/example/step-bug.rb +14 -0
  82. data/test/integration/helper.rb +1 -1
  83. data/test/integration/skip-test-step-bug.rb +17 -0
  84. data/test/integration/test-quit.rb +11 -0
  85. data/test/unit/test-app-util.rb +0 -1
  86. data/test/unit/test-base-cmd.rb +47 -0
  87. data/test/unit/test-base-subcmd.rb +2 -2
  88. data/test/unit/test-base-submgr.rb +24 -0
  89. data/test/unit/test-cmd-help.rb +4 -0
  90. data/test/unit/test-completion.rb +38 -0
  91. data/test/unit/test-intf-user.rb +2 -2
  92. data/test/unit/test-io-tcpclient.rb +3 -2
  93. data/test/unit/test-proc-eval.rb +1 -1
  94. data/test/unit/test-proc-load_cmds.rb +9 -0
  95. data/test/unit/test-subcmd-help.rb +1 -5
  96. metadata +182 -167
  97. data/app/options.rb.orig +0 -154
  98. data/bin/trepan.orig +0 -0
  99. data/bin/trepan.rej +0 -11
  100. data/lib/trepanning.rb.rej +0 -11
  101. data/sample/rocky-dot-trepanrc.orig +0 -0
  102. data/sample/rocky-dot-trepanrc.rej +0 -11
data/app/rbx-llvm.rbc ADDED
@@ -0,0 +1,2478 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 148
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
+ 99
32
+ 7
33
+ 3
34
+ 65
35
+ 49
36
+ 4
37
+ 2
38
+ 13
39
+ 99
40
+ 12
41
+ 7
42
+ 5
43
+ 12
44
+ 7
45
+ 6
46
+ 12
47
+ 65
48
+ 12
49
+ 49
50
+ 7
51
+ 4
52
+ 15
53
+ 49
54
+ 5
55
+ 0
56
+ 15
57
+ 65
58
+ 49
59
+ 8
60
+ 0
61
+ 99
62
+ 43
63
+ 9
64
+ 7
65
+ 10
66
+ 49
67
+ 11
68
+ 1
69
+ 83
70
+ 12
71
+ 9
72
+ 144
73
+ 5
74
+ 7
75
+ 13
76
+ 64
77
+ 47
78
+ 49
79
+ 1
80
+ 1
81
+ 15
82
+ 45
83
+ 3
84
+ 14
85
+ 7
86
+ 15
87
+ 49
88
+ 16
89
+ 1
90
+ 19
91
+ 0
92
+ 15
93
+ 7
94
+ 17
95
+ 64
96
+ 19
97
+ 1
98
+ 15
99
+ 45
100
+ 3
101
+ 18
102
+ 7
103
+ 15
104
+ 49
105
+ 16
106
+ 1
107
+ 19
108
+ 2
109
+ 15
110
+ 20
111
+ 2
112
+ 20
113
+ 1
114
+ 49
115
+ 19
116
+ 1
117
+ 19
118
+ 3
119
+ 15
120
+ 5
121
+ 20
122
+ 3
123
+ 47
124
+ 49
125
+ 20
126
+ 1
127
+ 15
128
+ 45
129
+ 3
130
+ 21
131
+ 43
132
+ 22
133
+ 7
134
+ 15
135
+ 7
136
+ 23
137
+ 49
138
+ 11
139
+ 2
140
+ 19
141
+ 4
142
+ 15
143
+ 5
144
+ 20
145
+ 4
146
+ 20
147
+ 1
148
+ 49
149
+ 24
150
+ 1
151
+ 47
152
+ 49
153
+ 25
154
+ 1
155
+ 8
156
+ 145
157
+ 1
158
+ 15
159
+ 2
160
+ 11
161
+ I
162
+ b
163
+ I
164
+ 5
165
+ I
166
+ 0
167
+ I
168
+ 0
169
+ n
170
+ p
171
+ 26
172
+ s
173
+ 8
174
+ rubygems
175
+ x
176
+ 7
177
+ require
178
+ s
179
+ 7
180
+ coderay
181
+ x
182
+ 7
183
+ CodeRay
184
+ x
185
+ 11
186
+ open_module
187
+ x
188
+ 15
189
+ __module_init__
190
+ M
191
+ 1
192
+ n
193
+ n
194
+ x
195
+ 7
196
+ CodeRay
197
+ i
198
+ 28
199
+ 5
200
+ 66
201
+ 99
202
+ 7
203
+ 0
204
+ 65
205
+ 49
206
+ 1
207
+ 2
208
+ 13
209
+ 99
210
+ 12
211
+ 7
212
+ 2
213
+ 12
214
+ 7
215
+ 3
216
+ 12
217
+ 65
218
+ 12
219
+ 49
220
+ 4
221
+ 4
222
+ 15
223
+ 49
224
+ 2
225
+ 0
226
+ 11
227
+ I
228
+ 6
229
+ I
230
+ 0
231
+ I
232
+ 0
233
+ I
234
+ 0
235
+ n
236
+ p
237
+ 5
238
+ x
239
+ 8
240
+ Scanners
241
+ x
242
+ 11
243
+ open_module
244
+ x
245
+ 15
246
+ __module_init__
247
+ M
248
+ 1
249
+ n
250
+ n
251
+ x
252
+ 8
253
+ Scanners
254
+ i
255
+ 31
256
+ 5
257
+ 66
258
+ 99
259
+ 7
260
+ 0
261
+ 45
262
+ 1
263
+ 2
264
+ 65
265
+ 49
266
+ 3
267
+ 3
268
+ 13
269
+ 99
270
+ 12
271
+ 7
272
+ 4
273
+ 12
274
+ 7
275
+ 5
276
+ 12
277
+ 65
278
+ 12
279
+ 49
280
+ 6
281
+ 4
282
+ 15
283
+ 49
284
+ 4
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
+ 7
298
+ x
299
+ 4
300
+ LLVM
301
+ x
302
+ 7
303
+ Scanner
304
+ n
305
+ x
306
+ 10
307
+ open_class
308
+ x
309
+ 14
310
+ __class_init__
311
+ M
312
+ 1
313
+ n
314
+ n
315
+ x
316
+ 4
317
+ LLVM
318
+ i
319
+ 70
320
+ 5
321
+ 66
322
+ 5
323
+ 45
324
+ 0
325
+ 1
326
+ 47
327
+ 49
328
+ 2
329
+ 1
330
+ 15
331
+ 5
332
+ 7
333
+ 3
334
+ 47
335
+ 49
336
+ 4
337
+ 1
338
+ 15
339
+ 5
340
+ 7
341
+ 5
342
+ 64
343
+ 47
344
+ 49
345
+ 6
346
+ 1
347
+ 15
348
+ 99
349
+ 7
350
+ 7
351
+ 7
352
+ 8
353
+ 65
354
+ 67
355
+ 49
356
+ 9
357
+ 0
358
+ 49
359
+ 10
360
+ 4
361
+ 15
362
+ 99
363
+ 7
364
+ 11
365
+ 7
366
+ 12
367
+ 65
368
+ 67
369
+ 49
370
+ 9
371
+ 0
372
+ 49
373
+ 10
374
+ 4
375
+ 15
376
+ 99
377
+ 7
378
+ 13
379
+ 7
380
+ 14
381
+ 65
382
+ 67
383
+ 49
384
+ 9
385
+ 0
386
+ 49
387
+ 10
388
+ 4
389
+ 11
390
+ I
391
+ 5
392
+ I
393
+ 0
394
+ I
395
+ 0
396
+ I
397
+ 0
398
+ n
399
+ p
400
+ 15
401
+ x
402
+ 10
403
+ Streamable
404
+ n
405
+ x
406
+ 7
407
+ include
408
+ x
409
+ 4
410
+ llvm
411
+ x
412
+ 12
413
+ register_for
414
+ s
415
+ 4
416
+ llvm
417
+ x
418
+ 14
419
+ file_extension
420
+ x
421
+ 12
422
+ string_parse
423
+ M
424
+ 1
425
+ n
426
+ n
427
+ x
428
+ 12
429
+ string_parse
430
+ i
431
+ 124
432
+ 5
433
+ 7
434
+ 0
435
+ 13
436
+ 70
437
+ 9
438
+ 19
439
+ 15
440
+ 44
441
+ 43
442
+ 1
443
+ 7
444
+ 2
445
+ 78
446
+ 49
447
+ 3
448
+ 2
449
+ 6
450
+ 0
451
+ 47
452
+ 49
453
+ 4
454
+ 1
455
+ 19
456
+ 1
457
+ 9
458
+ 122
459
+ 20
460
+ 1
461
+ 49
462
+ 5
463
+ 0
464
+ 19
465
+ 2
466
+ 15
467
+ 7
468
+ 6
469
+ 64
470
+ 20
471
+ 1
472
+ 44
473
+ 43
474
+ 7
475
+ 7
476
+ 8
477
+ 7
478
+ 8
479
+ 49
480
+ 3
481
+ 2
482
+ 49
483
+ 9
484
+ 1
485
+ 83
486
+ 10
487
+ 9
488
+ 105
489
+ 5
490
+ 7
491
+ 11
492
+ 13
493
+ 70
494
+ 9
495
+ 76
496
+ 15
497
+ 44
498
+ 43
499
+ 1
500
+ 7
501
+ 12
502
+ 78
503
+ 49
504
+ 3
505
+ 2
506
+ 6
507
+ 11
508
+ 47
509
+ 49
510
+ 4
511
+ 1
512
+ 19
513
+ 1
514
+ 15
515
+ 20
516
+ 1
517
+ 9
518
+ 90
519
+ 1
520
+ 8
521
+ 93
522
+ 1
523
+ 8
524
+ 106
525
+ 15
526
+ 20
527
+ 2
528
+ 20
529
+ 1
530
+ 49
531
+ 13
532
+ 1
533
+ 15
534
+ 68
535
+ 8
536
+ 35
537
+ 1
538
+ 15
539
+ 20
540
+ 0
541
+ 20
542
+ 2
543
+ 7
544
+ 14
545
+ 35
546
+ 2
547
+ 49
548
+ 13
549
+ 1
550
+ 15
551
+ 2
552
+ 8
553
+ 123
554
+ 3
555
+ 11
556
+ I
557
+ 8
558
+ I
559
+ 3
560
+ I
561
+ 1
562
+ I
563
+ 1
564
+ n
565
+ p
566
+ 15
567
+ n
568
+ x
569
+ 6
570
+ Regexp
571
+ s
572
+ 8
573
+ ^"[^"]*"
574
+ x
575
+ 3
576
+ new
577
+ x
578
+ 4
579
+ scan
580
+ x
581
+ 3
582
+ dup
583
+ s
584
+ 1
585
+ \
586
+ x
587
+ 5
588
+ Range
589
+ I
590
+ -2
591
+ x
592
+ 2
593
+ []
594
+ x
595
+ 2
596
+ ==
597
+ n
598
+ s
599
+ 4
600
+ ^.*"
601
+ x
602
+ 2
603
+ <<
604
+ x
605
+ 6
606
+ string
607
+ p
608
+ 21
609
+ I
610
+ -1
611
+ I
612
+ 10
613
+ I
614
+ 0
615
+ I
616
+ 11
617
+ I
618
+ 1b
619
+ I
620
+ 12
621
+ I
622
+ 23
623
+ I
624
+ 13
625
+ I
626
+ 39
627
+ I
628
+ 14
629
+ I
630
+ 53
631
+ I
632
+ 15
633
+ I
634
+ 5e
635
+ I
636
+ 16
637
+ I
638
+ 6b
639
+ I
640
+ 18
641
+ I
642
+ 77
643
+ I
644
+ 19
645
+ I
646
+ 7a
647
+ I
648
+ 1b
649
+ I
650
+ 7c
651
+ x
652
+ 55
653
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/rbx-llvm.rb
654
+ p
655
+ 3
656
+ x
657
+ 6
658
+ tokens
659
+ x
660
+ 5
661
+ match
662
+ x
663
+ 6
664
+ string
665
+ x
666
+ 17
667
+ method_visibility
668
+ x
669
+ 15
670
+ add_defn_method
671
+ x
672
+ 11
673
+ space_parse
674
+ M
675
+ 1
676
+ n
677
+ n
678
+ x
679
+ 11
680
+ space_parse
681
+ i
682
+ 49
683
+ 5
684
+ 7
685
+ 0
686
+ 13
687
+ 70
688
+ 9
689
+ 19
690
+ 15
691
+ 44
692
+ 43
693
+ 1
694
+ 7
695
+ 2
696
+ 78
697
+ 49
698
+ 3
699
+ 2
700
+ 6
701
+ 0
702
+ 47
703
+ 49
704
+ 4
705
+ 1
706
+ 19
707
+ 1
708
+ 9
709
+ 47
710
+ 20
711
+ 1
712
+ 9
713
+ 44
714
+ 20
715
+ 0
716
+ 20
717
+ 1
718
+ 7
719
+ 5
720
+ 35
721
+ 2
722
+ 49
723
+ 6
724
+ 1
725
+ 8
726
+ 45
727
+ 1
728
+ 8
729
+ 48
730
+ 1
731
+ 11
732
+ I
733
+ 6
734
+ I
735
+ 2
736
+ I
737
+ 1
738
+ I
739
+ 1
740
+ n
741
+ p
742
+ 7
743
+ n
744
+ x
745
+ 6
746
+ Regexp
747
+ s
748
+ 7
749
+ ^[ \t]*
750
+ x
751
+ 3
752
+ new
753
+ x
754
+ 4
755
+ scan
756
+ x
757
+ 5
758
+ space
759
+ x
760
+ 2
761
+ <<
762
+ p
763
+ 9
764
+ I
765
+ -1
766
+ I
767
+ 1f
768
+ I
769
+ 0
770
+ I
771
+ 20
772
+ I
773
+ 1b
774
+ I
775
+ 21
776
+ I
777
+ 2f
778
+ I
779
+ 20
780
+ I
781
+ 31
782
+ x
783
+ 55
784
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/rbx-llvm.rb
785
+ p
786
+ 2
787
+ x
788
+ 6
789
+ tokens
790
+ x
791
+ 5
792
+ match
793
+ x
794
+ 11
795
+ scan_tokens
796
+ M
797
+ 1
798
+ n
799
+ n
800
+ x
801
+ 11
802
+ scan_tokens
803
+ i
804
+ 965
805
+ 7
806
+ 0
807
+ 19
808
+ 2
809
+ 15
810
+ 2
811
+ 19
812
+ 3
813
+ 15
814
+ 5
815
+ 47
816
+ 49
817
+ 1
818
+ 0
819
+ 10
820
+ 960
821
+ 1
822
+ 19
823
+ 4
824
+ 15
825
+ 1
826
+ 19
827
+ 5
828
+ 15
829
+ 20
830
+ 2
831
+ 13
832
+ 7
833
+ 0
834
+ 12
835
+ 49
836
+ 2
837
+ 1
838
+ 9
839
+ 125
840
+ 15
841
+ 5
842
+ 7
843
+ 3
844
+ 13
845
+ 70
846
+ 9
847
+ 55
848
+ 15
849
+ 44
850
+ 43
851
+ 4
852
+ 7
853
+ 5
854
+ 78
855
+ 49
856
+ 6
857
+ 2
858
+ 6
859
+ 3
860
+ 47
861
+ 49
862
+ 7
863
+ 1
864
+ 19
865
+ 5
866
+ 9
867
+ 86
868
+ 20
869
+ 5
870
+ 49
871
+ 8
872
+ 0
873
+ 9
874
+ 73
875
+ 1
876
+ 8
877
+ 84
878
+ 20
879
+ 0
880
+ 20
881
+ 5
882
+ 7
883
+ 9
884
+ 35
885
+ 2
886
+ 49
887
+ 10
888
+ 1
889
+ 8
890
+ 87
891
+ 1
892
+ 15
893
+ 5
894
+ 7
895
+ 11
896
+ 13
897
+ 70
898
+ 9
899
+ 107
900
+ 15
901
+ 44
902
+ 43
903
+ 4
904
+ 7
905
+ 12
906
+ 78
907
+ 49
908
+ 6
909
+ 2
910
+ 6
911
+ 11
912
+ 47
913
+ 49
914
+ 7
915
+ 1
916
+ 19
917
+ 5
918
+ 9
919
+ 119
920
+ 7
921
+ 0
922
+ 8
923
+ 121
924
+ 7
925
+ 13
926
+ 19
927
+ 2
928
+ 8
929
+ 956
930
+ 13
931
+ 7
932
+ 13
933
+ 12
934
+ 49
935
+ 2
936
+ 1
937
+ 9
938
+ 222
939
+ 15
940
+ 5
941
+ 7
942
+ 14
943
+ 13
944
+ 70
945
+ 9
946
+ 154
947
+ 15
948
+ 44
949
+ 43
950
+ 4
951
+ 7
952
+ 15
953
+ 80
954
+ 49
955
+ 6
956
+ 2
957
+ 6
958
+ 14
959
+ 47
960
+ 49
961
+ 7
962
+ 1
963
+ 19
964
+ 5
965
+ 9
966
+ 178
967
+ 20
968
+ 0
969
+ 20
970
+ 5
971
+ 7
972
+ 16
973
+ 35
974
+ 2
975
+ 49
976
+ 10
977
+ 1
978
+ 15
979
+ 7
980
+ 17
981
+ 8
982
+ 218
983
+ 5
984
+ 7
985
+ 18
986
+ 13
987
+ 70
988
+ 9
989
+ 197
990
+ 15
991
+ 44
992
+ 43
993
+ 4
994
+ 7
995
+ 19
996
+ 78
997
+ 49
998
+ 6
999
+ 2
1000
+ 6
1001
+ 18
1002
+ 47
1003
+ 49
1004
+ 7
1005
+ 1
1006
+ 19
1007
+ 5
1008
+ 15
1009
+ 20
1010
+ 0
1011
+ 20
1012
+ 5
1013
+ 7
1014
+ 20
1015
+ 35
1016
+ 2
1017
+ 49
1018
+ 10
1019
+ 1
1020
+ 15
1021
+ 7
1022
+ 0
1023
+ 19
1024
+ 2
1025
+ 8
1026
+ 956
1027
+ 13
1028
+ 7
1029
+ 17
1030
+ 12
1031
+ 49
1032
+ 2
1033
+ 1
1034
+ 9
1035
+ 364
1036
+ 15
1037
+ 5
1038
+ 7
1039
+ 21
1040
+ 13
1041
+ 70
1042
+ 9
1043
+ 251
1044
+ 15
1045
+ 44
1046
+ 43
1047
+ 4
1048
+ 7
1049
+ 22
1050
+ 78
1051
+ 49
1052
+ 6
1053
+ 2
1054
+ 6
1055
+ 21
1056
+ 47
1057
+ 49
1058
+ 7
1059
+ 1
1060
+ 9
1061
+ 320
1062
+ 20
1063
+ 0
1064
+ 39
1065
+ 23
1066
+ 79
1067
+ 49
1068
+ 24
1069
+ 1
1070
+ 7
1071
+ 9
1072
+ 35
1073
+ 2
1074
+ 49
1075
+ 10
1076
+ 1
1077
+ 15
1078
+ 39
1079
+ 23
1080
+ 80
1081
+ 49
1082
+ 24
1083
+ 1
1084
+ 19
1085
+ 6
1086
+ 15
1087
+ 20
1088
+ 0
1089
+ 20
1090
+ 6
1091
+ 7
1092
+ 25
1093
+ 35
1094
+ 2
1095
+ 49
1096
+ 10
1097
+ 1
1098
+ 15
1099
+ 7
1100
+ 26
1101
+ 64
1102
+ 7
1103
+ 27
1104
+ 64
1105
+ 7
1106
+ 28
1107
+ 64
1108
+ 35
1109
+ 3
1110
+ 20
1111
+ 6
1112
+ 49
1113
+ 29
1114
+ 1
1115
+ 9
1116
+ 316
1117
+ 7
1118
+ 30
1119
+ 8
1120
+ 318
1121
+ 7
1122
+ 31
1123
+ 8
1124
+ 360
1125
+ 5
1126
+ 7
1127
+ 32
1128
+ 13
1129
+ 70
1130
+ 9
1131
+ 339
1132
+ 15
1133
+ 44
1134
+ 43
1135
+ 4
1136
+ 7
1137
+ 33
1138
+ 78
1139
+ 49
1140
+ 6
1141
+ 2
1142
+ 6
1143
+ 32
1144
+ 47
1145
+ 49
1146
+ 7
1147
+ 1
1148
+ 19
1149
+ 5
1150
+ 15
1151
+ 20
1152
+ 0
1153
+ 20
1154
+ 5
1155
+ 7
1156
+ 20
1157
+ 35
1158
+ 2
1159
+ 49
1160
+ 10
1161
+ 1
1162
+ 15
1163
+ 7
1164
+ 0
1165
+ 19
1166
+ 2
1167
+ 8
1168
+ 956
1169
+ 13
1170
+ 7
1171
+ 30
1172
+ 12
1173
+ 49
1174
+ 2
1175
+ 1
1176
+ 9
1177
+ 652
1178
+ 15
1179
+ 5
1180
+ 20
1181
+ 0
1182
+ 47
1183
+ 49
1184
+ 34
1185
+ 1
1186
+ 15
1187
+ 5
1188
+ 7
1189
+ 35
1190
+ 13
1191
+ 70
1192
+ 9
1193
+ 401
1194
+ 15
1195
+ 44
1196
+ 43
1197
+ 4
1198
+ 7
1199
+ 36
1200
+ 78
1201
+ 49
1202
+ 6
1203
+ 2
1204
+ 6
1205
+ 35
1206
+ 47
1207
+ 49
1208
+ 7
1209
+ 1
1210
+ 19
1211
+ 5
1212
+ 9
1213
+ 422
1214
+ 20
1215
+ 0
1216
+ 20
1217
+ 5
1218
+ 7
1219
+ 37
1220
+ 35
1221
+ 2
1222
+ 49
1223
+ 10
1224
+ 1
1225
+ 8
1226
+ 645
1227
+ 5
1228
+ 7
1229
+ 38
1230
+ 13
1231
+ 70
1232
+ 9
1233
+ 441
1234
+ 15
1235
+ 44
1236
+ 43
1237
+ 4
1238
+ 7
1239
+ 39
1240
+ 78
1241
+ 49
1242
+ 6
1243
+ 2
1244
+ 6
1245
+ 38
1246
+ 47
1247
+ 49
1248
+ 7
1249
+ 1
1250
+ 9
1251
+ 464
1252
+ 20
1253
+ 0
1254
+ 39
1255
+ 23
1256
+ 78
1257
+ 49
1258
+ 24
1259
+ 1
1260
+ 7
1261
+ 40
1262
+ 35
1263
+ 2
1264
+ 49
1265
+ 10
1266
+ 1
1267
+ 8
1268
+ 645
1269
+ 5
1270
+ 7
1271
+ 41
1272
+ 13
1273
+ 70
1274
+ 9
1275
+ 483
1276
+ 15
1277
+ 44
1278
+ 43
1279
+ 4
1280
+ 7
1281
+ 42
1282
+ 78
1283
+ 49
1284
+ 6
1285
+ 2
1286
+ 6
1287
+ 41
1288
+ 47
1289
+ 49
1290
+ 7
1291
+ 1
1292
+ 9
1293
+ 506
1294
+ 20
1295
+ 0
1296
+ 39
1297
+ 23
1298
+ 78
1299
+ 49
1300
+ 24
1301
+ 1
1302
+ 7
1303
+ 43
1304
+ 35
1305
+ 2
1306
+ 49
1307
+ 10
1308
+ 1
1309
+ 8
1310
+ 645
1311
+ 5
1312
+ 20
1313
+ 0
1314
+ 47
1315
+ 49
1316
+ 44
1317
+ 1
1318
+ 9
1319
+ 518
1320
+ 1
1321
+ 8
1322
+ 645
1323
+ 5
1324
+ 7
1325
+ 45
1326
+ 13
1327
+ 70
1328
+ 9
1329
+ 537
1330
+ 15
1331
+ 44
1332
+ 43
1333
+ 4
1334
+ 7
1335
+ 46
1336
+ 78
1337
+ 49
1338
+ 6
1339
+ 2
1340
+ 6
1341
+ 45
1342
+ 47
1343
+ 49
1344
+ 7
1345
+ 1
1346
+ 19
1347
+ 5
1348
+ 9
1349
+ 558
1350
+ 20
1351
+ 0
1352
+ 20
1353
+ 5
1354
+ 7
1355
+ 47
1356
+ 35
1357
+ 2
1358
+ 49
1359
+ 10
1360
+ 1
1361
+ 8
1362
+ 645
1363
+ 5
1364
+ 7
1365
+ 48
1366
+ 13
1367
+ 70
1368
+ 9
1369
+ 577
1370
+ 15
1371
+ 44
1372
+ 43
1373
+ 4
1374
+ 7
1375
+ 49
1376
+ 78
1377
+ 49
1378
+ 6
1379
+ 2
1380
+ 6
1381
+ 48
1382
+ 47
1383
+ 49
1384
+ 7
1385
+ 1
1386
+ 19
1387
+ 5
1388
+ 9
1389
+ 598
1390
+ 20
1391
+ 0
1392
+ 20
1393
+ 5
1394
+ 7
1395
+ 50
1396
+ 35
1397
+ 2
1398
+ 49
1399
+ 10
1400
+ 1
1401
+ 8
1402
+ 645
1403
+ 5
1404
+ 7
1405
+ 51
1406
+ 13
1407
+ 70
1408
+ 9
1409
+ 617
1410
+ 15
1411
+ 44
1412
+ 43
1413
+ 4
1414
+ 7
1415
+ 19
1416
+ 78
1417
+ 49
1418
+ 6
1419
+ 2
1420
+ 6
1421
+ 51
1422
+ 47
1423
+ 49
1424
+ 7
1425
+ 1
1426
+ 19
1427
+ 5
1428
+ 15
1429
+ 20
1430
+ 5
1431
+ 49
1432
+ 8
1433
+ 0
1434
+ 9
1435
+ 634
1436
+ 1
1437
+ 8
1438
+ 645
1439
+ 20
1440
+ 0
1441
+ 20
1442
+ 5
1443
+ 7
1444
+ 20
1445
+ 35
1446
+ 2
1447
+ 49
1448
+ 10
1449
+ 1
1450
+ 15
1451
+ 7
1452
+ 52
1453
+ 19
1454
+ 2
1455
+ 8
1456
+ 956
1457
+ 13
1458
+ 7
1459
+ 31
1460
+ 12
1461
+ 49
1462
+ 2
1463
+ 1
1464
+ 9
1465
+ 779
1466
+ 15
1467
+ 5
1468
+ 20
1469
+ 0
1470
+ 47
1471
+ 49
1472
+ 34
1473
+ 1
1474
+ 15
1475
+ 5
1476
+ 7
1477
+ 53
1478
+ 13
1479
+ 70
1480
+ 9
1481
+ 689
1482
+ 15
1483
+ 44
1484
+ 43
1485
+ 4
1486
+ 7
1487
+ 39
1488
+ 78
1489
+ 49
1490
+ 6
1491
+ 2
1492
+ 6
1493
+ 53
1494
+ 47
1495
+ 49
1496
+ 7
1497
+ 1
1498
+ 9
1499
+ 715
1500
+ 20
1501
+ 0
1502
+ 39
1503
+ 23
1504
+ 78
1505
+ 49
1506
+ 24
1507
+ 1
1508
+ 7
1509
+ 40
1510
+ 35
1511
+ 2
1512
+ 49
1513
+ 10
1514
+ 1
1515
+ 15
1516
+ 7
1517
+ 54
1518
+ 8
1519
+ 775
1520
+ 5
1521
+ 7
1522
+ 55
1523
+ 13
1524
+ 70
1525
+ 9
1526
+ 734
1527
+ 15
1528
+ 44
1529
+ 43
1530
+ 4
1531
+ 7
1532
+ 42
1533
+ 78
1534
+ 49
1535
+ 6
1536
+ 2
1537
+ 6
1538
+ 55
1539
+ 47
1540
+ 49
1541
+ 7
1542
+ 1
1543
+ 9
1544
+ 760
1545
+ 20
1546
+ 0
1547
+ 39
1548
+ 23
1549
+ 78
1550
+ 49
1551
+ 24
1552
+ 1
1553
+ 7
1554
+ 43
1555
+ 35
1556
+ 2
1557
+ 49
1558
+ 10
1559
+ 1
1560
+ 15
1561
+ 7
1562
+ 54
1563
+ 8
1564
+ 775
1565
+ 5
1566
+ 20
1567
+ 0
1568
+ 47
1569
+ 49
1570
+ 44
1571
+ 1
1572
+ 9
1573
+ 773
1574
+ 7
1575
+ 54
1576
+ 8
1577
+ 775
1578
+ 7
1579
+ 52
1580
+ 19
1581
+ 2
1582
+ 8
1583
+ 956
1584
+ 13
1585
+ 7
1586
+ 54
1587
+ 12
1588
+ 49
1589
+ 2
1590
+ 1
1591
+ 9
1592
+ 842
1593
+ 15
1594
+ 5
1595
+ 7
1596
+ 56
1597
+ 13
1598
+ 70
1599
+ 9
1600
+ 808
1601
+ 15
1602
+ 44
1603
+ 43
1604
+ 4
1605
+ 7
1606
+ 57
1607
+ 78
1608
+ 49
1609
+ 6
1610
+ 2
1611
+ 6
1612
+ 56
1613
+ 47
1614
+ 49
1615
+ 7
1616
+ 1
1617
+ 19
1618
+ 5
1619
+ 9
1620
+ 836
1621
+ 20
1622
+ 0
1623
+ 39
1624
+ 23
1625
+ 78
1626
+ 49
1627
+ 24
1628
+ 1
1629
+ 7
1630
+ 58
1631
+ 35
1632
+ 2
1633
+ 49
1634
+ 10
1635
+ 1
1636
+ 15
1637
+ 7
1638
+ 31
1639
+ 8
1640
+ 838
1641
+ 7
1642
+ 52
1643
+ 19
1644
+ 2
1645
+ 8
1646
+ 956
1647
+ 13
1648
+ 7
1649
+ 52
1650
+ 12
1651
+ 49
1652
+ 2
1653
+ 1
1654
+ 9
1655
+ 954
1656
+ 15
1657
+ 5
1658
+ 20
1659
+ 0
1660
+ 47
1661
+ 49
1662
+ 34
1663
+ 1
1664
+ 15
1665
+ 5
1666
+ 7
1667
+ 59
1668
+ 13
1669
+ 70
1670
+ 9
1671
+ 879
1672
+ 15
1673
+ 44
1674
+ 43
1675
+ 4
1676
+ 7
1677
+ 60
1678
+ 78
1679
+ 49
1680
+ 6
1681
+ 2
1682
+ 6
1683
+ 59
1684
+ 47
1685
+ 49
1686
+ 7
1687
+ 1
1688
+ 19
1689
+ 5
1690
+ 9
1691
+ 900
1692
+ 20
1693
+ 0
1694
+ 20
1695
+ 5
1696
+ 7
1697
+ 61
1698
+ 35
1699
+ 2
1700
+ 49
1701
+ 10
1702
+ 1
1703
+ 8
1704
+ 947
1705
+ 5
1706
+ 7
1707
+ 62
1708
+ 13
1709
+ 70
1710
+ 9
1711
+ 919
1712
+ 15
1713
+ 44
1714
+ 43
1715
+ 4
1716
+ 7
1717
+ 19
1718
+ 78
1719
+ 49
1720
+ 6
1721
+ 2
1722
+ 6
1723
+ 62
1724
+ 47
1725
+ 49
1726
+ 7
1727
+ 1
1728
+ 19
1729
+ 5
1730
+ 15
1731
+ 20
1732
+ 5
1733
+ 49
1734
+ 8
1735
+ 0
1736
+ 9
1737
+ 936
1738
+ 1
1739
+ 8
1740
+ 947
1741
+ 20
1742
+ 0
1743
+ 20
1744
+ 5
1745
+ 7
1746
+ 20
1747
+ 35
1748
+ 2
1749
+ 49
1750
+ 10
1751
+ 1
1752
+ 15
1753
+ 7
1754
+ 0
1755
+ 19
1756
+ 2
1757
+ 8
1758
+ 956
1759
+ 15
1760
+ 1
1761
+ 15
1762
+ 68
1763
+ 8
1764
+ 9
1765
+ 1
1766
+ 15
1767
+ 20
1768
+ 0
1769
+ 11
1770
+ I
1771
+ b
1772
+ I
1773
+ 7
1774
+ I
1775
+ 2
1776
+ I
1777
+ 2
1778
+ n
1779
+ p
1780
+ 63
1781
+ x
1782
+ 7
1783
+ initial
1784
+ x
1785
+ 4
1786
+ eos?
1787
+ x
1788
+ 3
1789
+ ===
1790
+ n
1791
+ x
1792
+ 6
1793
+ Regexp
1794
+ s
1795
+ 4
1796
+ ^\s*
1797
+ x
1798
+ 3
1799
+ new
1800
+ x
1801
+ 4
1802
+ scan
1803
+ x
1804
+ 6
1805
+ empty?
1806
+ x
1807
+ 5
1808
+ space
1809
+ x
1810
+ 2
1811
+ <<
1812
+ n
1813
+ s
1814
+ 2
1815
+ ^$
1816
+ x
1817
+ 12
1818
+ expect_label
1819
+ n
1820
+ s
1821
+ 4
1822
+ \d+:
1823
+ x
1824
+ 5
1825
+ label
1826
+ x
1827
+ 13
1828
+ expect_opcode
1829
+ n
1830
+ s
1831
+ 4
1832
+ ^.*$
1833
+ x
1834
+ 5
1835
+ error
1836
+ n
1837
+ s
1838
+ 10
1839
+ (\s+)(\S+)
1840
+ x
1841
+ 6
1842
+ @match
1843
+ x
1844
+ 2
1845
+ []
1846
+ x
1847
+ 8
1848
+ reserved
1849
+ s
1850
+ 12
1851
+ push_literal
1852
+ s
1853
+ 12
1854
+ create_block
1855
+ s
1856
+ 11
1857
+ set_literal
1858
+ x
1859
+ 7
1860
+ member?
1861
+ x
1862
+ 14
1863
+ expect_literal
1864
+ x
1865
+ 14
1866
+ expect_operand
1867
+ n
1868
+ s
1869
+ 6
1870
+ ^(.*)$
1871
+ x
1872
+ 11
1873
+ space_parse
1874
+ n
1875
+ s
1876
+ 6
1877
+ ^#<.+>
1878
+ x
1879
+ 7
1880
+ content
1881
+ n
1882
+ s
1883
+ 6
1884
+ ^(\d+)
1885
+ x
1886
+ 7
1887
+ integer
1888
+ n
1889
+ s
1890
+ 15
1891
+ ^([:][^: ,\n]+)
1892
+ x
1893
+ 6
1894
+ symbol
1895
+ x
1896
+ 12
1897
+ string_parse
1898
+ n
1899
+ s
1900
+ 14
1901
+ nil|true|false
1902
+ x
1903
+ 12
1904
+ pre_constant
1905
+ n
1906
+ s
1907
+ 6
1908
+ \/.*\/
1909
+ x
1910
+ 6
1911
+ entity
1912
+ n
1913
+ x
1914
+ 18
1915
+ expect_opt_comment
1916
+ n
1917
+ x
1918
+ 22
1919
+ expect_another_operand
1920
+ n
1921
+ n
1922
+ s
1923
+ 2
1924
+ ^,
1925
+ x
1926
+ 8
1927
+ operator
1928
+ n
1929
+ s
1930
+ 5
1931
+ ^#.*$
1932
+ x
1933
+ 7
1934
+ comment
1935
+ n
1936
+ p
1937
+ 157
1938
+ I
1939
+ -1
1940
+ I
1941
+ 25
1942
+ I
1943
+ 0
1944
+ I
1945
+ 27
1946
+ I
1947
+ 5
1948
+ I
1949
+ 28
1950
+ I
1951
+ 9
1952
+ I
1953
+ 2a
1954
+ I
1955
+ 10
1956
+ I
1957
+ 2c
1958
+ I
1959
+ 14
1960
+ I
1961
+ 2d
1962
+ I
1963
+ 18
1964
+ I
1965
+ 2f
1966
+ I
1967
+ 1b
1968
+ I
1969
+ 31
1970
+ I
1971
+ 24
1972
+ I
1973
+ 32
1974
+ I
1975
+ 3f
1976
+ I
1977
+ 33
1978
+ I
1979
+ 56
1980
+ I
1981
+ 32
1982
+ I
1983
+ 58
1984
+ I
1985
+ 36
1986
+ I
1987
+ 73
1988
+ I
1989
+ 37
1990
+ I
1991
+ 77
1992
+ I
1993
+ 39
1994
+ I
1995
+ 79
1996
+ I
1997
+ 35
1998
+ I
1999
+ 7e
2000
+ I
2001
+ 3c
2002
+ I
2003
+ 87
2004
+ I
2005
+ 3e
2006
+ I
2007
+ a2
2008
+ I
2009
+ 3f
2010
+ I
2011
+ ae
2012
+ I
2013
+ 40
2014
+ I
2015
+ b2
2016
+ I
2017
+ 42
2018
+ I
2019
+ cc
2020
+ I
2021
+ 43
2022
+ I
2023
+ d8
2024
+ I
2025
+ 44
2026
+ I
2027
+ da
2028
+ I
2029
+ 3d
2030
+ I
2031
+ df
2032
+ I
2033
+ 47
2034
+ I
2035
+ e8
2036
+ I
2037
+ 49
2038
+ I
2039
+ 101
2040
+ I
2041
+ 4a
2042
+ I
2043
+ 111
2044
+ I
2045
+ 4b
2046
+ I
2047
+ 11a
2048
+ I
2049
+ 4c
2050
+ I
2051
+ 126
2052
+ I
2053
+ 4d
2054
+ I
2055
+ 138
2056
+ I
2057
+ 4e
2058
+ I
2059
+ 13c
2060
+ I
2061
+ 50
2062
+ I
2063
+ 140
2064
+ I
2065
+ 53
2066
+ I
2067
+ 15a
2068
+ I
2069
+ 54
2070
+ I
2071
+ 166
2072
+ I
2073
+ 55
2074
+ I
2075
+ 168
2076
+ I
2077
+ 48
2078
+ I
2079
+ 16d
2080
+ I
2081
+ 58
2082
+ I
2083
+ 176
2084
+ I
2085
+ 59
2086
+ I
2087
+ 17e
2088
+ I
2089
+ 5a
2090
+ I
2091
+ 199
2092
+ I
2093
+ 5b
2094
+ I
2095
+ 1a6
2096
+ I
2097
+ 5c
2098
+ I
2099
+ 1bf
2100
+ I
2101
+ 5d
2102
+ I
2103
+ 1d0
2104
+ I
2105
+ 5e
2106
+ I
2107
+ 1e9
2108
+ I
2109
+ 5f
2110
+ I
2111
+ 1fa
2112
+ I
2113
+ 60
2114
+ I
2115
+ 206
2116
+ I
2117
+ 62
2118
+ I
2119
+ 221
2120
+ I
2121
+ 63
2122
+ I
2123
+ 22e
2124
+ I
2125
+ 64
2126
+ I
2127
+ 249
2128
+ I
2129
+ 65
2130
+ I
2131
+ 256
2132
+ I
2133
+ 67
2134
+ I
2135
+ 270
2136
+ I
2137
+ 68
2138
+ I
2139
+ 286
2140
+ I
2141
+ 6a
2142
+ I
2143
+ 28d
2144
+ I
2145
+ 6c
2146
+ I
2147
+ 296
2148
+ I
2149
+ 6d
2150
+ I
2151
+ 29e
2152
+ I
2153
+ 6f
2154
+ I
2155
+ 2b7
2156
+ I
2157
+ 70
2158
+ I
2159
+ 2c7
2160
+ I
2161
+ 71
2162
+ I
2163
+ 2cb
2164
+ I
2165
+ 72
2166
+ I
2167
+ 2e4
2168
+ I
2169
+ 73
2170
+ I
2171
+ 2f4
2172
+ I
2173
+ 74
2174
+ I
2175
+ 2f8
2176
+ I
2177
+ 75
2178
+ I
2179
+ 301
2180
+ I
2181
+ 76
2182
+ I
2183
+ 305
2184
+ I
2185
+ 78
2186
+ I
2187
+ 307
2188
+ I
2189
+ 6e
2190
+ I
2191
+ 30c
2192
+ I
2193
+ 7b
2194
+ I
2195
+ 315
2196
+ I
2197
+ 7d
2198
+ I
2199
+ 330
2200
+ I
2201
+ 7e
2202
+ I
2203
+ 340
2204
+ I
2205
+ 7f
2206
+ I
2207
+ 344
2208
+ I
2209
+ 81
2210
+ I
2211
+ 346
2212
+ I
2213
+ 7c
2214
+ I
2215
+ 34b
2216
+ I
2217
+ 83
2218
+ I
2219
+ 354
2220
+ I
2221
+ 84
2222
+ I
2223
+ 35c
2224
+ I
2225
+ 85
2226
+ I
2227
+ 377
2228
+ I
2229
+ 86
2230
+ I
2231
+ 384
2232
+ I
2233
+ 88
2234
+ I
2235
+ 39e
2236
+ I
2237
+ 89
2238
+ I
2239
+ 3b4
2240
+ I
2241
+ 8b
2242
+ I
2243
+ 3bb
2244
+ I
2245
+ 2f
2246
+ I
2247
+ 3c2
2248
+ I
2249
+ 8e
2250
+ I
2251
+ 3c5
2252
+ x
2253
+ 55
2254
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/rbx-llvm.rb
2255
+ p
2256
+ 7
2257
+ x
2258
+ 6
2259
+ tokens
2260
+ x
2261
+ 7
2262
+ options
2263
+ x
2264
+ 5
2265
+ state
2266
+ x
2267
+ 15
2268
+ number_expected
2269
+ x
2270
+ 4
2271
+ kind
2272
+ x
2273
+ 5
2274
+ match
2275
+ x
2276
+ 6
2277
+ opcode
2278
+ p
2279
+ 13
2280
+ I
2281
+ 2
2282
+ I
2283
+ b
2284
+ I
2285
+ b
2286
+ I
2287
+ d
2288
+ I
2289
+ 13
2290
+ I
2291
+ e
2292
+ I
2293
+ 1c
2294
+ I
2295
+ 10
2296
+ I
2297
+ 2a
2298
+ I
2299
+ 1f
2300
+ I
2301
+ 38
2302
+ I
2303
+ 25
2304
+ I
2305
+ 46
2306
+ x
2307
+ 55
2308
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/rbx-llvm.rb
2309
+ p
2310
+ 0
2311
+ x
2312
+ 13
2313
+ attach_method
2314
+ p
2315
+ 3
2316
+ I
2317
+ 2
2318
+ I
2319
+ 9
2320
+ I
2321
+ 1f
2322
+ x
2323
+ 55
2324
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/rbx-llvm.rb
2325
+ p
2326
+ 0
2327
+ x
2328
+ 13
2329
+ attach_method
2330
+ p
2331
+ 3
2332
+ I
2333
+ 2
2334
+ I
2335
+ 7
2336
+ I
2337
+ 1c
2338
+ x
2339
+ 55
2340
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/rbx-llvm.rb
2341
+ p
2342
+ 0
2343
+ x
2344
+ 13
2345
+ attach_method
2346
+ x
2347
+ 11
2348
+ active_path
2349
+ x
2350
+ 7
2351
+ Globals
2352
+ x
2353
+ 2
2354
+ $0
2355
+ x
2356
+ 2
2357
+ []
2358
+ x
2359
+ 2
2360
+ ==
2361
+ s
2362
+ 14
2363
+ term/ansicolor
2364
+ n
2365
+ x
2366
+ 4
2367
+ llvm
2368
+ x
2369
+ 7
2370
+ scanner
2371
+ s
2372
+ 758
2373
+
2374
+ 0003: push_literal #<Rubinius::CompiledMethod gcd file=/x>
2375
+ 0028: create_block #<Rubinius::CompiledMethod __block__ file=/y>
2376
+ 0007: send_stack :method_visibility, 0
2377
+ 0046: push_literal "The GCD of %d and %d is %d"
2378
+ 0000: passed_arg 1 # line: 679
2379
+ 0002: goto_if_true 8
2380
+ 0004: push_false
2381
+ 0080: push_literal "\n 0003: push_literal #<Rubinius::CompiledMethod gcd file=/x>\n 0028: create_block #<Rubinius::CompiledMethod __block__ file=/y>\n 0007: send_stack :method_visibility, 0\n 0046: push_literal \" # line: 147
2382
+
2383
+ n
2384
+ x
2385
+ 8
2386
+ tokenize
2387
+ x
2388
+ 1
2389
+ p
2390
+ n
2391
+ x
2392
+ 3
2393
+ Duo
2394
+ x
2395
+ 4
2396
+ term
2397
+ x
2398
+ 6
2399
+ encode
2400
+ x
2401
+ 4
2402
+ puts
2403
+ p
2404
+ 27
2405
+ I
2406
+ 0
2407
+ I
2408
+ 4
2409
+ I
2410
+ 9
2411
+ I
2412
+ 5
2413
+ I
2414
+ 12
2415
+ I
2416
+ 6
2417
+ I
2418
+ 2c
2419
+ I
2420
+ 93
2421
+ I
2422
+ 3c
2423
+ I
2424
+ 94
2425
+ I
2426
+ 45
2427
+ I
2428
+ 95
2429
+ I
2430
+ 50
2431
+ I
2432
+ 96
2433
+ I
2434
+ 56
2435
+ I
2436
+ a0
2437
+ I
2438
+ 61
2439
+ I
2440
+ a1
2441
+ I
2442
+ 6b
2443
+ I
2444
+ a2
2445
+ I
2446
+ 73
2447
+ I
2448
+ a3
2449
+ I
2450
+ 82
2451
+ I
2452
+ a4
2453
+ I
2454
+ 90
2455
+ I
2456
+ 93
2457
+ I
2458
+ 94
2459
+ x
2460
+ 55
2461
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/app/rbx-llvm.rb
2462
+ p
2463
+ 5
2464
+ x
2465
+ 12
2466
+ ruby_scanner
2467
+ x
2468
+ 6
2469
+ string
2470
+ x
2471
+ 12
2472
+ llvm_scanner
2473
+ x
2474
+ 6
2475
+ tokens
2476
+ x
2477
+ 16
2478
+ llvm_highlighter