-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.o.txt
2631 lines (2543 loc) · 217 KB
/
error.o.txt
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
SymbolicHeader(magic=28681, vstamp=787, ilineMax=24, cbLine=8, cbLineOffset=2448, idnMax=176, cbDnOffset=15428, ipdMax=1, cbPdOffset=2456, isymMax=303, cbSymOffset=2508, ioptMax=0, cbOptOffset=2352, iauxMax=957, cbAuxOffset=6144, issMax=3008, cbSsOffset=9972, issExtMax=888, cbSsExtOffset=12980, ifdMax=9, cbFdOffset=13868, crfd=0, cbRfdOffset=2352, iextMax=57, cbExtOffset=14516)
Using OFFSET of 0
FileDescriptor(adr=0, rss=1, issBase=0, cbSs=495, isymBase=0, csym=12, ilineBase=0, cline=24, ioptBase=0, copt=0, ipdFirst=0, cpd=1, iauxBase=0, caux=38, rfdBase=0, crfd=0, XXX_bitfield=16777216, cbLineOffset=0, cbLine=5)
name:../os/error.c
procedures:
ProcedureDescriptor(adr=0, isym=3, iline=0, regmask=-2147483648, regoffset=-12, iopt=-1, fregmask=0, fregoffset=0, frameoffset=32, framereg=29, pcreg=31, lnLow=26, lnHigh=34, cbLineOffset=0)
symbols:
Symbol(iss=1, value=0, st=11, sc=1, index=12)
name:../os/error.c
type:stFile(11)
storage class:scText(1)
Symbol(iss=430, value=0, st=2, sc=3, index=15)
name:errorLogData
type:stStatic(2)
storage class:scBss(3)
Symbol(iss=443, value=0, st=2, sc=2, index=23)
name:errorLog
type:stStatic(2)
storage class:scData(2)
Symbol(iss=452, value=0, st=14, sc=1, index=33)
name:__osDefaultHandler
type:stStaticProc(14)
storage class:scText(1)
Symbol(iss=471, value=2, st=3, sc=5, index=26)
name:code
type:stParam(3)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=6), rndx=RelativeSymbol(rfd=4095, index=6), dnLow=4293918726, dnHigh=4293918726, isym=4293918726, iss=4293918726, width=4293918726, count=4293918726)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=131, value=0, st=10, sc=11, index=2)
name:s16
Symbol(iss=476, value=6, st=3, sc=5, index=29)
name:numArgs
type:stParam(3)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=6), rndx=RelativeSymbol(rfd=4095, index=6), dnLow=4293918726, dnHigh=4293918726, isym=4293918726, iss=4293918726, width=4293918726, count=4293918726)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=131, value=0, st=10, sc=11, index=2)
name:s16
Symbol(iss=484, value=8, st=3, sc=5, index=32)
name:...
type:stParam(3)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=26, tq4=0, tq5=0, tq0=1, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=416, index=4096), dnLow=436211712, dnHigh=436211712, isym=436211712, iss=436211712, width=436211712, count=436211712)
Symbol(iss=0, value=24, st=7, sc=1, index=10)
name:
type:stBlock(7)
storage class:scText(1)
Symbol(iss=488, value=4294967292, st=4, sc=5, index=35)
name:argPtr
type:stLocal(4)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=4095, index=1), dnLow=4293918721, dnHigh=4293918721, isym=4293918721, iss=4293918721, width=4293918721, count=4293918721)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=99, value=0, st=10, sc=11, index=15)
name:va_list
Symbol(iss=0, value=72, st=8, sc=1, index=7)
name:
type:stEnd(8)
storage class:scText(1)
Symbol(iss=452, value=96, st=8, sc=1, index=3)
name:__osDefaultHandler
type:stEnd(8)
storage class:scText(1)
Symbol(iss=1, value=0, st=8, sc=1, index=0)
name:../os/error.c
type:stEnd(8)
storage class:scText(1)
pretty print:
// begin file ../os/error.c
static u32 errorLogData[19];
static OSLog errorLog;
void __osDefaultHandler(s16 code, s16 numArgs, void* ...);
//{
// va_list argPtr;
//}
// end file ../os/error.c
FileDescriptor(adr=0, rss=1, issBase=495, cbSs=107, isymBase=12, csym=3, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=1, cpd=0, iauxBase=38, caux=16, rfdBase=0, crfd=0, XXX_bitfield=83886080, cbLineOffset=0, cbLine=0)
name:/f/release1/usr/include/stdarg.h
procedures:
symbols:
Symbol(iss=1, value=0, st=11, sc=1, index=3)
name:/f/release1/usr/include/stdarg.h
type:stFile(11)
storage class:scText(1)
Symbol(iss=99, value=0, st=10, sc=11, index=15)
name:va_list
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=1, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=4096), dnLow=50335744, dnHigh=50335744, isym=50335744, iss=50335744, width=50335744, count=50335744)
Symbol(iss=1, value=0, st=8, sc=1, index=0)
name:/f/release1/usr/include/stdarg.h
type:stEnd(8)
storage class:scText(1)
pretty print:
// begin file /f/release1/usr/include/stdarg.h
typedef unsigned char* va_list;
// end file /f/release1/usr/include/stdarg.h
FileDescriptor(adr=0, rss=1, issBase=602, cbSs=189, isymBase=15, csym=20, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=1, cpd=0, iauxBase=54, caux=23, rfdBase=0, crfd=0, XXX_bitfield=83886080, cbLineOffset=0, cbLine=0)
name:/f/release1/usr/include/PR/ultratypes.h
procedures:
symbols:
Symbol(iss=1, value=0, st=11, sc=1, index=20)
name:/f/release1/usr/include/PR/ultratypes.h
type:stFile(11)
storage class:scText(1)
Symbol(iss=113, value=0, st=10, sc=11, index=1)
name:u8
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=0), dnLow=50331648, dnHigh=50331648, isym=50331648, iss=50331648, width=50331648, count=50331648)
Symbol(iss=116, value=0, st=10, sc=11, index=3)
name:u16
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=5, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=80, index=0), dnLow=83886080, dnHigh=83886080, isym=83886080, iss=83886080, width=83886080, count=83886080)
Symbol(iss=120, value=0, st=10, sc=11, index=7)
name:u32
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=9, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=144, index=0), dnLow=150994944, dnHigh=150994944, isym=150994944, iss=150994944, width=150994944, count=150994944)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=33, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=528, index=0), dnLow=553648128, dnHigh=553648128, isym=553648128, iss=553648128, width=553648128, count=553648128)
Symbol(iss=128, value=0, st=10, sc=11, index=0)
name:s8
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=2, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=32, index=0), dnLow=33554432, dnHigh=33554432, isym=33554432, iss=33554432, width=33554432, count=33554432)
Symbol(iss=131, value=0, st=10, sc=11, index=2)
name:s16
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=4, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=64, index=0), dnLow=67108864, dnHigh=67108864, isym=67108864, iss=67108864, width=67108864, count=67108864)
Symbol(iss=135, value=0, st=10, sc=11, index=6)
name:s32
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=8, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=128, index=0), dnLow=134217728, dnHigh=134217728, isym=134217728, iss=134217728, width=134217728, count=134217728)
Symbol(iss=139, value=0, st=10, sc=11, index=8)
name:s64
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=32, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=512, index=0), dnLow=536870912, dnHigh=536870912, isym=536870912, iss=536870912, width=536870912, count=536870912)
Symbol(iss=143, value=0, st=10, sc=11, index=15)
name:vu8
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=5, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=20480), dnLow=50352128, dnHigh=50352128, isym=50352128, iss=50352128, width=50352128, count=50352128)
Symbol(iss=147, value=0, st=10, sc=11, index=16)
name:vu16
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=5, tq4=0, tq5=0, tq0=5, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=80, index=20480), dnLow=83906560, dnHigh=83906560, isym=83906560, iss=83906560, width=83906560, count=83906560)
Symbol(iss=152, value=0, st=10, sc=11, index=17)
name:vu32
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=9, tq4=0, tq5=0, tq0=5, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=144, index=20480), dnLow=151015424, dnHigh=151015424, isym=151015424, iss=151015424, width=151015424, count=151015424)
Symbol(iss=157, value=0, st=10, sc=11, index=18)
name:vu64
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=33, tq4=0, tq5=0, tq0=5, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=528, index=20480), dnLow=553668608, dnHigh=553668608, isym=553668608, iss=553668608, width=553668608, count=553668608)
Symbol(iss=162, value=0, st=10, sc=11, index=19)
name:vs8
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=2, tq4=0, tq5=0, tq0=5, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=32, index=20480), dnLow=33574912, dnHigh=33574912, isym=33574912, iss=33574912, width=33574912, count=33574912)
Symbol(iss=166, value=0, st=10, sc=11, index=20)
name:vs16
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=4, tq4=0, tq5=0, tq0=5, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=64, index=20480), dnLow=67129344, dnHigh=67129344, isym=67129344, iss=67129344, width=67129344, count=67129344)
Symbol(iss=171, value=0, st=10, sc=11, index=21)
name:vs32
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=8, tq4=0, tq5=0, tq0=5, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=128, index=20480), dnLow=134238208, dnHigh=134238208, isym=134238208, iss=134238208, width=134238208, count=134238208)
Symbol(iss=176, value=0, st=10, sc=11, index=22)
name:vs64
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=32, tq4=0, tq5=0, tq0=5, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=512, index=20480), dnLow=536891392, dnHigh=536891392, isym=536891392, iss=536891392, width=536891392, count=536891392)
Symbol(iss=181, value=0, st=10, sc=11, index=10)
name:f32
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=10, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=160, index=0), dnLow=167772160, dnHigh=167772160, isym=167772160, iss=167772160, width=167772160, count=167772160)
Symbol(iss=185, value=0, st=10, sc=11, index=11)
name:f64
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=11, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=176, index=0), dnLow=184549376, dnHigh=184549376, isym=184549376, iss=184549376, width=184549376, count=184549376)
Symbol(iss=1, value=0, st=8, sc=1, index=0)
name:/f/release1/usr/include/PR/ultratypes.h
type:stEnd(8)
storage class:scText(1)
pretty print:
// begin file /f/release1/usr/include/PR/ultratypes.h
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned long u32;
typedef unsigned long long u64;
typedef signed char s8;
typedef short s16;
typedef long s32;
typedef long long s64;
typedef volatile unsigned char vu8;
typedef volatile unsigned short vu16;
typedef volatile unsigned long vu32;
typedef volatile unsigned long long vu64;
typedef volatile signed char vs8;
typedef volatile short vs16;
typedef volatile long vs32;
typedef volatile long long vs64;
typedef float f32;
typedef double f64;
// end file /f/release1/usr/include/PR/ultratypes.h
FileDescriptor(adr=0, rss=1, issBase=791, cbSs=1203, isymBase=35, csym=202, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=1, cpd=0, iauxBase=77, caux=625, rfdBase=0, crfd=0, XXX_bitfield=83886080, cbLineOffset=0, cbLine=0)
name:../../include/os.h
procedures:
symbols:
Symbol(iss=1, value=0, st=11, sc=1, index=202)
name:../../include/os.h
type:stFile(11)
storage class:scText(1)
Symbol(iss=107, value=0, st=10, sc=11, index=15)
name:OSPri
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=7), rndx=RelativeSymbol(rfd=4095, index=7), dnLow=4293918727, dnHigh=4293918727, isym=4293918727, iss=4293918727, width=4293918727, count=4293918727)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=135, value=0, st=10, sc=11, index=6)
name:s32
Symbol(iss=113, value=0, st=10, sc=11, index=18)
name:OSId
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=7), rndx=RelativeSymbol(rfd=4095, index=7), dnLow=4293918727, dnHigh=4293918727, isym=4293918727, iss=4293918727, width=4293918727, count=4293918727)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=135, value=0, st=10, sc=11, index=6)
name:s32
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
type:stUnion(27)
storage class:scInfo(11)
Symbol(iss=0, value=8, st=26, sc=11, index=8)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=118, value=0, st=9, sc=11, index=21)
name:f_odd
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=1, tq3=1), rndx=RelativeSymbol(rfd=4095, index=17), dnLow=4293918737, dnHigh=4293918737, isym=4293918737, iss=4293918737, width=4293918737, count=4293918737)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=181, value=0, st=10, sc=11, index=10)
name:f32
Symbol(iss=124, value=32, st=9, sc=11, index=24)
name:f_even
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=1, tq3=1), rndx=RelativeSymbol(rfd=4095, index=17), dnLow=4293918737, dnHigh=4293918737, isym=4293918737, iss=4293918737, width=4293918737, count=4293918737)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=181, value=0, st=10, sc=11, index=10)
name:f32
Symbol(iss=0, value=0, st=8, sc=11, index=4)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=131, value=0, st=9, sc=11, index=27)
name:f
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=26, sc=11, index=8)
name:
Symbol(iss=133, value=0, st=9, sc=11, index=30)
name:d
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=1, tq3=2), rndx=RelativeSymbol(rfd=4095, index=18), dnLow=4293918738, dnHigh=4293918738, isym=4293918738, iss=4293918738, width=4293918738, count=4293918738)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=185, value=0, st=10, sc=11, index=11)
name:f64
Symbol(iss=0, value=0, st=8, sc=11, index=3)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=135, value=0, st=10, sc=11, index=33)
name:__OSfp
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=0, value=400, st=26, sc=11, index=67)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=142, value=0, st=9, sc=11, index=36)
name:at
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=145, value=64, st=9, sc=11, index=39)
name:v0
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=148, value=128, st=9, sc=11, index=42)
name:v1
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=151, value=192, st=9, sc=11, index=45)
name:a0
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=154, value=256, st=9, sc=11, index=48)
name:a1
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=157, value=320, st=9, sc=11, index=51)
name:a2
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=160, value=384, st=9, sc=11, index=54)
name:a3
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=163, value=448, st=9, sc=11, index=57)
name:t0
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=166, value=512, st=9, sc=11, index=60)
name:t1
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=169, value=576, st=9, sc=11, index=63)
name:t2
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=172, value=640, st=9, sc=11, index=66)
name:t3
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=175, value=704, st=9, sc=11, index=69)
name:t4
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=178, value=768, st=9, sc=11, index=72)
name:t5
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=181, value=832, st=9, sc=11, index=75)
name:t6
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=184, value=896, st=9, sc=11, index=78)
name:t7
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=187, value=960, st=9, sc=11, index=81)
name:s0
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=190, value=1024, st=9, sc=11, index=84)
name:s1
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=193, value=1088, st=9, sc=11, index=87)
name:s2
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=196, value=1152, st=9, sc=11, index=90)
name:s3
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=199, value=1216, st=9, sc=11, index=93)
name:s4
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=202, value=1280, st=9, sc=11, index=96)
name:s5
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=205, value=1344, st=9, sc=11, index=99)
name:s6
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=208, value=1408, st=9, sc=11, index=102)
name:s7
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=211, value=1472, st=9, sc=11, index=105)
name:t8
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=214, value=1536, st=9, sc=11, index=108)
name:t9
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=217, value=1600, st=9, sc=11, index=111)
name:gp
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=220, value=1664, st=9, sc=11, index=114)
name:sp
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=223, value=1728, st=9, sc=11, index=117)
name:s8
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=226, value=1792, st=9, sc=11, index=120)
name:ra
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=229, value=1856, st=9, sc=11, index=123)
name:lo
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=232, value=1920, st=9, sc=11, index=126)
name:hi
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=4), rndx=RelativeSymbol(rfd=4095, index=4), dnLow=4293918724, dnHigh=4293918724, isym=4293918724, iss=4293918724, width=4293918724, count=4293918724)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=124, value=0, st=10, sc=11, index=9)
name:u64
Symbol(iss=235, value=1984, st=9, sc=11, index=129)
name:sr
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=120, value=0, st=10, sc=11, index=7)
name:u32
Symbol(iss=238, value=2016, st=9, sc=11, index=132)
name:pc
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=120, value=0, st=10, sc=11, index=7)
name:u32
Symbol(iss=241, value=2048, st=9, sc=11, index=135)
name:cause
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=120, value=0, st=10, sc=11, index=7)
name:u32
Symbol(iss=247, value=2080, st=9, sc=11, index=138)
name:badvaddr
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=120, value=0, st=10, sc=11, index=7)
name:u32
Symbol(iss=256, value=2112, st=9, sc=11, index=141)
name:rcp
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=120, value=0, st=10, sc=11, index=7)
name:u32
Symbol(iss=260, value=2144, st=9, sc=11, index=144)
name:fpcsr
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=120, value=0, st=10, sc=11, index=7)
name:u32
Symbol(iss=266, value=2176, st=9, sc=11, index=147)
name:fp0
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=270, value=2240, st=9, sc=11, index=150)
name:fp2
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=274, value=2304, st=9, sc=11, index=153)
name:fp4
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=278, value=2368, st=9, sc=11, index=156)
name:fp6
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=282, value=2432, st=9, sc=11, index=159)
name:fp8
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=286, value=2496, st=9, sc=11, index=162)
name:fp10
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=291, value=2560, st=9, sc=11, index=165)
name:fp12
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=296, value=2624, st=9, sc=11, index=168)
name:fp14
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=301, value=2688, st=9, sc=11, index=171)
name:fp16
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=306, value=2752, st=9, sc=11, index=174)
name:fp18
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=311, value=2816, st=9, sc=11, index=177)
name:fp20
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=316, value=2880, st=9, sc=11, index=180)
name:fp22
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=321, value=2944, st=9, sc=11, index=183)
name:fp24
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=326, value=3008, st=9, sc=11, index=186)
name:fp26
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=331, value=3072, st=9, sc=11, index=189)
name:fp28
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=336, value=3136, st=9, sc=11, index=192)
name:fp30
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=8, st=27, sc=11, index=11)
name:
Symbol(iss=0, value=0, st=8, sc=11, index=12)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=341, value=0, st=10, sc=11, index=195)
name:__OSThreadContext
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=12), rndx=RelativeSymbol(rfd=4095, index=12), dnLow=4293918732, dnHigh=4293918732, isym=4293918732, iss=4293918732, width=4293918732, count=4293918732)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=400, st=26, sc=11, index=67)
name:
Symbol(iss=359, value=432, st=26, sc=11, index=79)
name:OSThread_s
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=370, value=0, st=9, sc=11, index=198)
name:next
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=1, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=4096), dnLow=201330688, dnHigh=201330688, isym=201330688, iss=201330688, width=201330688, count=201330688)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=4), rndx=RelativeSymbol(rfd=4095, index=68), dnLow=4293918788, dnHigh=4293918788, isym=4293918788, iss=4293918788, width=4293918788, count=4293918788)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=359, value=432, st=26, sc=11, index=79)
name:OSThread_s
Symbol(iss=375, value=32, st=9, sc=11, index=201)
name:priority
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=4095, index=1), dnLow=4293918721, dnHigh=4293918721, isym=4293918721, iss=4293918721, width=4293918721, count=4293918721)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=107, value=0, st=10, sc=11, index=15)
name:OSPri
Symbol(iss=384, value=64, st=9, sc=11, index=204)
name:queue
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=1, tq1=1, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=4352), dnLow=201330944, dnHigh=201330944, isym=201330944, iss=201330944, width=201330944, count=201330944)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=4), rndx=RelativeSymbol(rfd=4095, index=68), dnLow=4293918788, dnHigh=4293918788, isym=4293918788, iss=4293918788, width=4293918788, count=4293918788)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=359, value=432, st=26, sc=11, index=79)
name:OSThread_s
Symbol(iss=390, value=96, st=9, sc=11, index=207)
name:tlnext
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=1, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=4096), dnLow=201330688, dnHigh=201330688, isym=201330688, iss=201330688, width=201330688, count=201330688)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=4), rndx=RelativeSymbol(rfd=4095, index=68), dnLow=4293918788, dnHigh=4293918788, isym=4293918788, iss=4293918788, width=4293918788, count=4293918788)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=359, value=432, st=26, sc=11, index=79)
name:OSThread_s
Symbol(iss=397, value=128, st=9, sc=11, index=210)
name:state
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=4095, index=2), dnLow=4293918722, dnHigh=4293918722, isym=4293918722, iss=4293918722, width=4293918722, count=4293918722)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=116, value=0, st=10, sc=11, index=3)
name:u16
Symbol(iss=403, value=144, st=9, sc=11, index=213)
name:flags
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=4095, index=2), dnLow=4293918722, dnHigh=4293918722, isym=4293918722, iss=4293918722, width=4293918722, count=4293918722)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=116, value=0, st=10, sc=11, index=3)
name:u16
Symbol(iss=409, value=160, st=9, sc=11, index=216)
name:id
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=4095, index=2), dnLow=4293918722, dnHigh=4293918722, isym=4293918722, iss=4293918722, width=4293918722, count=4293918722)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=113, value=0, st=10, sc=11, index=18)
name:OSId
Symbol(iss=412, value=192, st=9, sc=11, index=4)
name:fp
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=6, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=96, index=0), dnLow=100663296, dnHigh=100663296, isym=100663296, iss=100663296, width=100663296, count=100663296)
Symbol(iss=415, value=256, st=9, sc=11, index=219)
name:context
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=12), rndx=RelativeSymbol(rfd=4095, index=12), dnLow=4293918732, dnHigh=4293918732, isym=4293918732, iss=4293918732, width=4293918732, count=4293918732)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=0, value=400, st=26, sc=11, index=67)
name:
Symbol(iss=0, value=0, st=8, sc=11, index=68)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=423, value=0, st=10, sc=11, index=222)
name:OSThread
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=4), rndx=RelativeSymbol(rfd=4095, index=68), dnLow=4293918788, dnHigh=4293918788, isym=4293918788, iss=4293918788, width=4293918788, count=4293918788)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=359, value=432, st=26, sc=11, index=79)
name:OSThread_s
Symbol(iss=432, value=0, st=10, sc=11, index=225)
name:OSEvent
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=120, value=0, st=10, sc=11, index=7)
name:u32
Symbol(iss=440, value=0, st=10, sc=11, index=228)
name:OSIntMask
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=120, value=0, st=10, sc=11, index=7)
name:u32
Symbol(iss=450, value=0, st=10, sc=11, index=231)
name:OSPageMask
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=4095, index=3), dnLow=4293918723, dnHigh=4293918723, isym=4293918723, iss=4293918723, width=4293918723, count=4293918723)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=120, value=0, st=10, sc=11, index=7)
name:u32
Symbol(iss=461, value=0, st=10, sc=11, index=234)
name:OSMesg
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=26, tq4=0, tq5=0, tq0=1, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=416, index=4096), dnLow=436211712, dnHigh=436211712, isym=436211712, iss=436211712, width=436211712, count=436211712)
Symbol(iss=468, value=24, st=26, sc=11, index=92)
name:OSMesgQueue_s
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=482, value=0, st=9, sc=11, index=235)
name:mtqueue
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=1, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=4096), dnLow=201330688, dnHigh=201330688, isym=201330688, iss=201330688, width=201330688, count=201330688)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=4), rndx=RelativeSymbol(rfd=4095, index=68), dnLow=4293918788, dnHigh=4293918788, isym=4293918788, iss=4293918788, width=4293918788, count=4293918788)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=359, value=432, st=26, sc=11, index=79)
name:OSThread_s
Symbol(iss=490, value=32, st=9, sc=11, index=238)
name:fullqueue
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=1, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=4096), dnLow=201330688, dnHigh=201330688, isym=201330688, iss=201330688, width=201330688, count=201330688)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=4), rndx=RelativeSymbol(rfd=4095, index=68), dnLow=4293918788, dnHigh=4293918788, isym=4293918788, iss=4293918788, width=4293918788, count=4293918788)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=3), rndx=RelativeSymbol(rfd=0, index=3), dnLow=3, dnHigh=3, isym=3, iss=3, width=3, count=3)
Symbol(iss=359, value=432, st=26, sc=11, index=79)
name:OSThread_s
Symbol(iss=500, value=64, st=9, sc=11, index=241)
name:validCount
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=7), rndx=RelativeSymbol(rfd=4095, index=7), dnLow=4293918727, dnHigh=4293918727, isym=4293918727, iss=4293918727, width=4293918727, count=4293918727)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=135, value=0, st=10, sc=11, index=6)
name:s32
Symbol(iss=511, value=96, st=9, sc=11, index=244)
name:first
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=7), rndx=RelativeSymbol(rfd=4095, index=7), dnLow=4293918727, dnHigh=4293918727, isym=4293918727, iss=4293918727, width=4293918727, count=4293918727)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=2), rndx=RelativeSymbol(rfd=0, index=2), dnLow=2, dnHigh=2, isym=2, iss=2, width=2, count=2)
Symbol(iss=135, value=0, st=10, sc=11, index=6)
name:s32
Symbol(iss=517, value=128, st=9, sc=11, index=247)
name:msgCount
type:stMember(9)
storage class:scInfo(11)