-
Notifications
You must be signed in to change notification settings - Fork 12
/
Mdebug.ps
8876 lines (8841 loc) · 119 KB
/
Mdebug.ps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%!PS-Adobe-1.0
%%Creator: quasar:davea (David B.Anderson,,)
%%Title: stdin (ditroff)
%%CreationDate: Thu Mar 7 15:14:27 1996
%%EndComments
% Start of psdit.pro -- prolog for ditroff translator
% Copyright (c) 1985,1987 Adobe Systems Incorporated. All Rights Reserved.
% GOVERNMENT END USERS: See Notice file in TranScript library directory
% -- probably /usr/lib/ps/Notice
% $Revision: 1.6 $
/$DITroff 140 dict def $DITroff begin
/fontnum 1 def /fontsize 10 def /fontheight 10 def /fontslant 0 def
/xi {0 72 11 mul translate 72 resolution div dup neg scale 0 0 moveto
/fontnum 1 def /fontsize 10 def /fontheight 10 def /fontslant 0 def F
/pagesave save def}def
/PB{save /psv exch def currentpoint translate
resolution 72 div dup neg scale 0 0 moveto}def
/PE{psv restore}def
/m1 matrix def /m2 matrix def /m3 matrix def /oldmat matrix def
/tan{dup sin exch cos div}bind def
/point{resolution 72 div mul}bind def
/dround {transform round exch round exch itransform}bind def
/xT{/devname exch def}def
/xr{/mh exch def /my exch def /resolution exch def}def
/xp{}def
/xs{docsave restore end}def
/xt{}def
/xf{/fontname exch def /slotno exch def fontnames slotno get fontname eq not
{fonts slotno fontname findfont put fontnames slotno fontname put}if}def
/xH{/fontheight exch def F}bind def
/xS{/fontslant exch def F}bind def
/s{/fontsize exch def /fontheight fontsize def F}bind def
/f{/fontnum exch def F}bind def
/F{fontheight 0 le {/fontheight fontsize def}if
fonts fontnum get fontsize point 0 0 fontheight point neg 0 0 m1 astore
fontslant 0 ne{1 0 fontslant tan 1 0 0 m2 astore m3 concatmatrix}if
makefont setfont .04 fontsize point mul 0 dround pop setlinewidth}bind def
/X{exch currentpoint exch pop moveto show}bind def
/N{3 1 roll moveto show}bind def
/Y{exch currentpoint pop exch moveto show}bind def
/S /show load def
/ditpush{}def/ditpop{}def
/AX{3 -1 roll currentpoint exch pop moveto 0 exch ashow}bind def
/AN{4 2 roll moveto 0 exch ashow}bind def
/AY{3 -1 roll currentpoint pop exch moveto 0 exch ashow}bind def
/AS{0 exch ashow}bind def
/MX{currentpoint exch pop moveto}bind def
/MY{currentpoint pop exch moveto}bind def
/MXY /moveto load def
/cb{pop}def % action on unknown char -- nothing for now
/n{}def/w{}def
/p{pop showpage pagesave restore /pagesave save def}def
/abspoint{currentpoint exch pop add exch currentpoint pop add exch}def
/dstroke{currentpoint stroke moveto}bind def
/Dl{2 copy gsave rlineto stroke grestore rmoveto}bind def
/arcellipse{oldmat currentmatrix pop
currentpoint translate 1 diamv diamh div scale /rad diamh 2 div def
rad 0 rad -180 180 arc oldmat setmatrix}def
/Dc{gsave dup /diamv exch def /diamh exch def arcellipse dstroke
grestore diamh 0 rmoveto}def
/De{gsave /diamv exch def /diamh exch def arcellipse dstroke
grestore diamh 0 rmoveto}def
/Da{currentpoint /by exch def /bx exch def /fy exch def /fx exch def
/cy exch def /cx exch def /rad cx cx mul cy cy mul add sqrt def
/ang1 cy neg cx neg atan def /ang2 fy fx atan def cx bx add cy by add
2 copy rad ang1 ang2 arcn stroke exch fx add exch fy add moveto}def
/Barray 200 array def % 200 values in a wiggle
/D~{mark}def
/D~~{counttomark Barray exch 0 exch getinterval astore /Bcontrol exch def pop
/Blen Bcontrol length def Blen 4 ge Blen 2 mod 0 eq and
{Bcontrol 0 get Bcontrol 1 get abspoint /Ycont exch def /Xcont exch def
Bcontrol 0 2 copy get 2 mul put Bcontrol 1 2 copy get 2 mul put
Bcontrol Blen 2 sub 2 copy get 2 mul put
Bcontrol Blen 1 sub 2 copy get 2 mul put
/Ybi /Xbi currentpoint 3 1 roll def def 0 2 Blen 4 sub
{/i exch def
Bcontrol i get 3 div Bcontrol i 1 add get 3 div
Bcontrol i get 3 mul Bcontrol i 2 add get add 6 div
Bcontrol i 1 add get 3 mul Bcontrol i 3 add get add 6 div
/Xbi Xcont Bcontrol i 2 add get 2 div add def
/Ybi Ycont Bcontrol i 3 add get 2 div add def
/Xcont Xcont Bcontrol i 2 add get add def
/Ycont Ycont Bcontrol i 3 add get add def
Xbi currentpoint pop sub Ybi currentpoint exch pop sub rcurveto
}for dstroke}if}def
end
/ditstart{$DITroff begin
/nfonts 60 def % NFONTS makedev/ditroff dependent!
/fonts[nfonts{0}repeat]def
/fontnames[nfonts{()}repeat]def
/docsave save def
}def
% character outcalls
/oc {/pswid exch def /cc exch def /name exch def
/ditwid pswid fontsize mul resolution mul 72000 div def
/ditsiz fontsize resolution mul 72 div def
ocprocs name known{ocprocs name get exec}{name cb}
ifelse}def
/fractm [.65 0 0 .6 0 0] def
/fraction
{/fden exch def /fnum exch def gsave /cf currentfont def
cf fractm makefont setfont 0 .3 dm 2 copy neg rmoveto
fnum show rmoveto currentfont cf setfont(\244)show setfont fden show
grestore ditwid 0 rmoveto} def
/oce {grestore ditwid 0 rmoveto}def
/dm {ditsiz mul}def
/ocprocs 50 dict def ocprocs begin
(14){(1)(4)fraction}def
(12){(1)(2)fraction}def
(34){(3)(4)fraction}def
(13){(1)(3)fraction}def
(23){(2)(3)fraction}def
(18){(1)(8)fraction}def
(38){(3)(8)fraction}def
(58){(5)(8)fraction}def
(78){(7)(8)fraction}def
(sr){gsave .05 dm .16 dm rmoveto(\326)show oce}def
(is){gsave 0 .15 dm rmoveto(\362)show oce}def
(->){gsave 0 .02 dm rmoveto(\256)show oce}def
(<-){gsave 0 .02 dm rmoveto(\254)show oce}def
(==){gsave 0 .05 dm rmoveto(\272)show oce}def
end
% DIThacks fonts for some special chars
50 dict dup begin
/FontType 3 def
/FontName /DIThacks def
/FontMatrix [.001 0.0 0.0 .001 0.0 0.0] def
/FontBBox [-220 -280 900 900] def% a lie but ...
/Encoding 256 array def
0 1 255{Encoding exch /.notdef put}for
Encoding
dup 8#040/space put %space
dup 8#110/rc put %right ceil
dup 8#111/lt put %left top curl
dup 8#112/bv put %bold vert
dup 8#113/lk put %left mid curl
dup 8#114/lb put %left bot curl
dup 8#115/rt put %right top curl
dup 8#116/rk put %right mid curl
dup 8#117/rb put %right bot curl
dup 8#120/rf put %right floor
dup 8#121/lf put %left floor
dup 8#122/lc put %left ceil
dup 8#140/sq put %square
dup 8#141/bx put %box
dup 8#142/ci put %circle
dup 8#143/br put %box rule
dup 8#144/rn put %root extender
dup 8#145/vr put %vertical rule
dup 8#146/ob put %outline bullet
dup 8#147/bu put %bullet
dup 8#150/ru put %rule
dup 8#151/ul put %underline
pop
/DITfd 100 dict def
/BuildChar{0 begin
/cc exch def /fd exch def
/charname fd /Encoding get cc get def
/charwid fd /Metrics get charname get def
/charproc fd /CharProcs get charname get def
charwid 0 fd /FontBBox get aload pop setcachedevice
40 setlinewidth
newpath 0 0 moveto gsave charproc grestore
end}def
/BuildChar load 0 DITfd put
%/UniqueID 5 def
/CharProcs 50 dict def
CharProcs begin
/space{}def
/.notdef{}def
/ru{500 0 rls}def
/rn{0 750 moveto 500 0 rls}def
/vr{20 800 moveto 0 -770 rls}def
/bv{20 800 moveto 0 -1000 rls}def
/br{20 770 moveto 0 -1040 rls}def
/ul{0 -250 moveto 500 0 rls}def
/ob{200 250 rmoveto currentpoint newpath 200 0 360 arc closepath stroke}def
/bu{200 250 rmoveto currentpoint newpath 200 0 360 arc closepath fill}def
/sq{80 0 rmoveto currentpoint dround newpath moveto
640 0 rlineto 0 640 rlineto -640 0 rlineto closepath stroke}def
/bx{80 0 rmoveto currentpoint dround newpath moveto
640 0 rlineto 0 640 rlineto -640 0 rlineto closepath fill}def
/ci{355 333 rmoveto currentpoint newpath 333 0 360 arc
50 setlinewidth stroke}def
/lt{20 -200 moveto 0 550 rlineto currx 800 2cx s4 add exch s4 a4p stroke}def
/lb{20 800 moveto 0 -550 rlineto currx -200 2cx s4 add exch s4 a4p stroke}def
/rt{20 -200 moveto 0 550 rlineto currx 800 2cx s4 sub exch s4 a4p stroke}def
/rb{20 800 moveto 0 -500 rlineto currx -200 2cx s4 sub exch s4 a4p stroke}def
/lk{20 800 moveto 20 300 -280 300 s4 arcto pop pop 1000 sub
currentpoint stroke moveto
20 300 4 2 roll s4 a4p 20 -200 lineto stroke}def
/rk{20 800 moveto 20 300 320 300 s4 arcto pop pop 1000 sub
currentpoint stroke moveto
20 300 4 2 roll s4 a4p 20 -200 lineto stroke}def
/lf{20 800 moveto 0 -1000 rlineto s4 0 rls}def
/rf{20 800 moveto 0 -1000 rlineto s4 neg 0 rls}def
/lc{20 -200 moveto 0 1000 rlineto s4 0 rls}def
/rc{20 -200 moveto 0 1000 rlineto s4 neg 0 rls}def
end
/Metrics 50 dict def Metrics begin
/.notdef 0 def
/space 500 def
/ru 500 def
/br 0 def
/lt 250 def
/lb 250 def
/rt 250 def
/rb 250 def
/lk 250 def
/rk 250 def
/rc 250 def
/lc 250 def
/rf 250 def
/lf 250 def
/bv 250 def
/ob 350 def
/bu 350 def
/ci 750 def
/bx 750 def
/sq 750 def
/rn 500 def
/ul 500 def
/vr 0 def
end
DITfd begin
/s2 500 def /s4 250 def /s3 333 def
/a4p{arcto pop pop pop pop}def
/2cx{2 copy exch}def
/rls{rlineto stroke}def
/currx{currentpoint pop}def
/dround{transform round exch round exch itransform} def
end
end
/DIThacks exch definefont pop
ditstart
(psc)xT
576 1 1 xr
1(Times-Roman)xf 1 f
2(Times-Italic)xf 2 f
3(Times-Bold)xf 3 f
4(Times-BoldItalic)xf 4 f
5(Helvetica)xf 5 f
6(Helvetica-Bold)xf 6 f
7(Courier)xf 7 f
8(Courier-Bold)xf 8 f
9(Symbol)xf 9 f
10(DIThacks)xf 10 f
10 s
1 f
xi
%%EndProlog
%%Page: 1 1
10 s 0 xH 0 xS 1 f
3 f
16 s
3024 816(Silicon)N
3427(G)X
3527(raphics)X
1 f
8 s
337 1190(subject:)N
3 f
10 s
576(MIPS)X
796(Mdebug)X
1100(Debugging)X
1488(Information)X
1 f
8 s
3034(date:)X
3 f
10 s
3226(March)X
3478(7,)X
3558(1996)X
1 f
8 s
3034 1382(from:)N
3 f
10 s
3226(David)X
3450(Anderson)X
2 f
576 1766(1.)N
676(Disclaimer)X
1 f
576 1910(This)N
752(document)X
1102(describes)X
1435(the)X
1567(situation)X
1876(as)X
1977(known)X
2229(to)X
2325(the)X
2457(author\(s\).)X
2821(Omissions)X
3192(and)X
3342(errors)X
3565(are)X
3699(likely)X
3916(and)X
576 2006(changes)N
870(to)X
967(the)X
1100("mdebug")X
1459(format,)X
1728(while)X
1941(not)X
2078(frequent,)X
2400(do)X
2514(occur)X
2727(and)X
2877(readers)X
3144(need)X
3330(to)X
3426(be)X
3536(aware)X
3763(that)X
3917(this)X
576 2102(document)N
935(can)X
1090(contain)X
1369(obsolete)X
1679(or)X
1789(inaccurate)X
2163(information.)X
2624(We)X
2779(have)X
2974(attempted)X
3333(to)X
3438(make)X
3655(it)X
3743(accurate,)X
576 2198(however.)N
2 f
576 2390(2.)N
676(Overview)X
1 f
576 2534(The)N
734(symbol)X
1003(table)X
1193(was)X
1352(once)X
1538(described)X
1880(in)X
1976(the)X
2108("MIPS)X
2361(Assembly)X
2715(Language)X
3066(Programmers)X
3532(Guide")X
3795(chapter)X
576 2630(named)N
810("The)X
988(Symbol)X
1256(Table".)X
576 2774(Unfortunately,)N
1072(that)X
1218(document)X
1560(is)X
1640(only)X
1809(in)X
1898(print)X
2076(now)X
2241(an)X
2344(edition)X
2593(which)X
2816(leaves)X
3044(out)X
3173(all)X
3280(the)X
3405(information)X
3810(on)X
3917(this)X
576 2870(old)N
742(debugging-information)X
1549(format)X
1827(\(using)X
2091(IRIS)X
2306(Insight,)X
2612(see)X
2779(the)X
2941("MIPSpro)X
3331(Assembly)X
3715(Language)X
576 2966(Programmers)N
1028(Guide"\).)X
1344(In)X
1431(IRIX4)X
1656(days,)X
1843(this)X
1978(information)X
2376(was)X
2522("the)X
2674(symbol)X
2930(table".)X
3180(However,)X
3516(now)X
3675(that)X
3816(ELF)X
3979(is)X
576 3062(the)N
698(object)X
918(format,)X
1176(this)X
1315(information,)X
1737(when)X
1935(present,)X
2211(is)X
2288(only)X
2454(one)X
2594(of)X
2685(multiple)X
2975(symbol)X
3234(tables.)X
3485(For)X
3619(example,)X
3934(the)X
576 3158(ELF)N
738(symbol)X
994(table)X
1171(has)X
1299(information)X
1698(needed)X
1947(by)X
2048(the)X
2167(linker,)X
2395(and)X
2532(the)X
2651(dynsym)X
2925(symbol)X
3181(table)X
3358(has)X
3486(information)X
3885(used)X
576 3254(by)N
686(the)X
814(dynamic)X
1120(linker)X
1337(\(run-time)X
1670(linker,)X
1907(rld\(1\)\).)X
2167(Consequently,)X
2657(the)X
2785(symbol)X
3049(table)X
3234(information)X
3641(we)X
3764(describe)X
576 3350(here)N
735(is)X
808(now)X
966(termed)X
1209(the)X
1327("mdebug")X
1671(symbol)X
1926(table)X
2102(\(or)X
2216("mdebug")X
2560(for)X
2674(short\),)X
2901(after)X
3069(it's)X
3191(section)X
3438(name,)X
3652(".mdebug".)X
576 3494(Because)N
867(mdebug)X
1148(was)X
1296(used)X
1466(for)X
1583(both)X
1748(debugging)X
2109(and)X
2248(linking)X
2497(in)X
2582(IRIX3,)X
2830(IRIX4)X
3058(and)X
3197(IRIX)X
3385(5.[123],)X
3662(it)X
3729(is)X
3805(closely)X
576 3590(tied)N
716(to)X
798(all)X
898(things)X
1113(requiring)X
1427(linker)X
1634(information)X
2032(\(like)X
2199(the)X
2317(addresses)X
2645(of)X
2732(global)X
2952(symbols\).)X
576 3734(The)N
725(header)X
965(C)X
1043(structs)X
1277(mentioned)X
1640(here)X
1804(are)X
1928(two)X
2073(views)X
2285(\(generally)X
2636(two)X
2781(views\))X
3020(of)X
3112(the)X
3235(same)X
3425(data.)X
3604(For)X
3740(example,)X
576 3830(HDRR)N
825(and)X
968(CHDRR)X
1270(are)X
1396(representing)X
1820(the)X
1945(same)X
2137(data)X
2298(in)X
2387(different)X
2691(contexts.)X
3005(On)X
3130(disk,)X
3310(HDRR)X
3559(is)X
3639(relevant.)X
3965(In)X
576 3926(memory)N
873(\(after)X
1079(being)X
1288(read)X
1458(in)X
1551(by)X
1662(libmld\))X
1928(the)X
2057(CHDRR)X
2363(\(pointer-based\))X
2885(version)X
3152(is)X
3236(relevant.)X
3566(I)X
3624(\256nd)X
3779(it)X
3854(much)X
576 4022(easier)N
787(to)X
872(understand)X
1246(the)X
1366(disk-based)X
1731(version.)X
2029(In)X
2118(addition,)X
2422(since)X
2609(libmld)X
2839(routines)X
3119(leak)X
3275(memory)X
3564(and)X
3702(are)X
3823(poorly)X
576 4118(documented,)N
1012(I)X
1063(consider)X
1359(it)X
1427(good)X
1611(practice)X
1890(to)X
1976(work)X
2165(with)X
2331(the)X
2454(disk)X
2612(based)X
2820(version)X
3081(and)X
3222(avoid)X
3425(libmld)X
3658(if)X
3732(you)X
3877(must)X
576 4214(work)N
761(with)X
923(the)X
1041(details)X
1270(of)X
1357(the)X
1475(symbol)X
1730(table.)X
576 4358(DeltaC++)N
913(introduces)X
1267(a)X
1323(whole)X
1539(host)X
1692(of)X
1779(new)X
1933(things.)X
2168(These)X
2380(are)X
2499(not)X
2621(discussed)X
2948(here.)X
576 4502(The)N
723(data)X
879(types)X
1070(like)X
1212('long')X
1451(in)X
1536(the)X
1657(structures)X
1992(here)X
2154(are)X
2276(all)X
2379(32)X
2482(bits)X
2620(at)X
2701(most.)X
2899(This)X
3064(debug)X
3283(information)X
3684(is)X
3760(not)X
3885(used)X
576 4598(for)N
690(64bit)X
874(object)X
1090(\256les.)X
1283(The)X
1428(user's)X
1640(object)X
1856(may)X
2014(have)X
2186('long)X
2375(long')X
2564(data)X
2718(\(64-bit)X
2956(integer\))X
3226(though.)X
576 4742(An)N
694(important)X
1025(point)X
1209(is)X
1282(that)X
1422(the)X
1540(LOGICAL)X
1912(structure)X
2213(of)X
2300(the)X
2418(\256le)X
2540(is)X
2613(as)X
2700(follows:)X
576 4934(HDRR)N
596 5030(FDR)N
771(\(\256le)X
920(descriptor,)X
1281 0.4028(referenced)AX
1642(via)X
1760(an)X
1856(ifd\).)X
636 5126(local)N
812(strings)X
636 5222(local)N
812(symbols)X
636 5318(local)N
812(procedures)X
636 5414(local)N
812(\256le)X
934(indirect)X
1199(table)X
636 5510(local)N
812(auxes)X
636 5606(local)N
812(line)X
952(entries)X
596 5798(FDR)N
596 5894(...)N
576 6183($RCS\256le:)N
910(Mdebug.mm,v)X
1401($)X
2147(Version)X
2421(2)X
3466($Revision:)X
3832(1.10)X
3992($)X
2 p
%%Page: 2 2
10 s 0 xH 0 xS 1 f
576 384(Mdebug)N
863(Debugging)X
1239(Information)X
2237(-)X
2284(2)X
2344(-)X
596 768(external)N
875(strings)X
596 864(externals)N
576 1056(On)N
694(the)X
812(other)X
997(hand,)X
1193(the)X
1311(physical)X
1598(structure)X
1899(is)X
1972(quite)X
2152(different.)X
576 1152(It)N
645(is)X
576 1248(HDRR)N
636 1344(all)N
736(procedure)X
636 1440(all)N
736(local)X
912(symbols)X
636 1536(all)N
736(auxes)X
636 1632(all)N
736(local)X
912(strings)X
636 1728(all)N
736(external)X
1015(strings)X
636 1824(all)N
736(FDRs)X
636 1920(all)N
736(\256le)X
858(indirects)X
636 2016(all)N
736(externals)X
636 2208(all)N
736(line)X
876(tables)X
1083(somewhere.)X
636 2304(\(in)N
745(IRIX5.3)X
1030(the)X
1148(line)X
1288(table)X
1464(is)X
1537(off)X
1651(somewhere)X
2037(odd)X
2177(after)X
2345(linking,)X
656 2400(and)N
792(is)X
865(not)X
987(in)X
1069(the)X
1187(elf)X
1292(section.)X
1559(This)X
1721(is)X
1794(a)X
1850(bug)X
1990(in)X
2072(5.3)X
2192(ld\).)X
576 2640(A)N
654(correctly)X
960(structured)X
1301(program)X
1593(which)X
1809(wishes)X
2047(to)X
2129(process)X
2390(all)X
2490(symbol)X
2745(data)X
2899(will)X
3043(proceed)X
3318(in)X
3400(the)X
3518(following)X
3849(way:)X
7 f
576 2832(For)N
768(each)X
1008(FDR)X
768 2928(Process)N
1152(each)X
1392(Local)X
1680(Symbol)X
768 3024(Process)N
1152(each)X
1392(PDR)X
1584(in)X
1728(this)X
1968(FDR)X
576 3120(end)N
768(for)X
576 3216(For)N
768(each)X
1008(EXTR)X
768 3312(Process)N
1152(the)X
1344(EXTR)X
576 3408(end)N
768(for)X
1 f
576 3600(Local)N
779(symbols)X
1085(and)X
1221(PDRs)X
1427(can)X
1559(only)X
1721(be)X
1817(properly)X
2109(understood)X
2485(in)X
2567(the)X
2685(context)X
2941(of)X
3028(the)X
3146(relevant)X
3425(FDR.)X
576 3744(Below)N
805(I)X
852(give)X
1010(one)X
1146(psuedo-code)X
1572(example)X
1864(of)X
1951(how)X
2109(to)X
2191(get)X
2310(to)X
2393(local)X
2570(strings)X
2804(for)X
2919(a)X
2976(given)X
3175(local)X
3352(symbol.)X
3648(To)X
3758(give)X
3917(this)X
576 3840(its)N
674(complete)X
991(context,)X
1270(I)X
1320(show)X
1512(a\))X
1598(a)X
1657(C)X
1733(sample)X
1983(program,)X
2298(b\))X
2388(the)X
2509(compilation)X
2914(command,)X
3273(c\))X
3359(the)X
3480(output)X
3707(of)X
3797(stdump)X
576 3936(from)N
752(the)X
870(compilation,)X
1292(and)X
1428(d\))X
1515(the)X
1633(calculation)X
2005(to)X
2087(get)X
2205(local)X
2381(strings.)X
576 4080(Optimization)N
1018(symbols)X
1304(do)X
1404(not,)X
1546(in)X
1628(fact,)X
1789(exist,)X
1980(so)X
2071(stdump)X
2326(always)X
2569(prints)X
2771(an)X
2867(empty)X
3087("Opts:")X
3346(section.)X
576 4224(Source)N
819(For)X
950(\256le)X
1072(t.c:)X
7 f
576 4416(int)N
768(main\(\))X
576 4512({)N
960 4608(char)N
1200(buff[100];)X
576 4800(})N
1 f
576 4992(compiled)N
901(with)X
1070(cc)X
1169(-g)X
1263(-c)X
1353(t.c)X
1458(the)X
1583(command)X
7 f
1954(stdump)X
2297(t.o)X
1 f
2468(gives,)X
2684(in)X
2773(IRIX6.2)X
3065(\(in)X
3181(earlier)X
3414(releases)X
3696(not)X
3826(all)X
3934(the)X
576 5088(\256elds)N
769(are)X
888(printed)X
1135(so)X
1226(less)X
1366(data)X
1520(is)X
1593(shown\):)X
7 f
576 5376(mdebug)N
912(HDRR:)X
1200(magic)X
1488(0x7009)X
1824(vstamp)X
2160(0x0602)X
2496(\(6.2\))X
672 5472(ilineMax)N
1104(10)X
1248(\(0xa\))X
1536(cbLine)X
1872(4)X
1968(\(0x4\))X
2256(cbLineOffset)X
2880(424)X
3072(\(0x1a8\))X
672 5568(idnMax)N
1008(8)X
1104(\(0x8\))X
1392(cbDnOffset)X
1920(864)X
2112(\(0x360\))X
2496(\(unused)X
2880(in)X
3024(object)X
3360(files\))X
672 5664(ipdMax)N
1008(1)X
1104(\(0x1\))X
1392(cbPdOffset)X
1920(428)X
2112(\(0x1ac\))X
2496(\(PDRs\))X
672 5760(isymMax)N
1056(7)X
1152(\(0x7\))X
1440(cbSymOffset)X
2016(480)X
2208(\(0x1e0\))X
2592(\(local)X
2928(symbols\))X
672 5856(ioptMax)N
1056(0)X
1152(\(0x0\))X
1440(cbOptOffset)X
2016(0)X
2112(\(0x0\))X
2400(\(not)X
2640(used\))X
672 5952(iauxMax)N
1056(23)X
1200(\(0x17\))X
1536(cbAuxOffset)X
2112(564)X
2304(\(0x234\))X
2688(\(AUX)X
2928(records\))X
1 f
576 6183($RCS\256le:)N
910(Mdebug.mm,v)X
1401($)X
2147(Version)X
2421(2)X
3466($Revision:)X