rbx-tracer 0.0.2-universal-rubinius-1.2 → 0.0.3-universal-rubinius-1.2

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