-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTAGS
25936 lines (25740 loc) · 743 KB
/
TAGS
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
keyboard.c,41
static void test(6,90
void main 40,756
config.h,2378
#define HAVE_ALARM 5,176
#define HAVE_ARPA_INET_H 8,259
#define HAVE_ATEXIT 11,340
#define HAVE_CLOCK_GETTIME 14,423
#define HAVE_DLFCN_H 17,510
#define HAVE_FCNTL_H 20,591
#define HAVE_FENV_H 23,671
#define HAVE_FLOOR 26,746
#define HAVE_FTRUNCATE 29,824
#define HAVE_GETCWD 32,903
#define HAVE_GETHOSTBYADDR 35,986
#define HAVE_GETHOSTBYNAME 38,1076
#define HAVE_GETHOSTNAME 41,1164
#define HAVE_GETPAGESIZE 44,1250
#define HAVE_GETTIMEOFDAY 47,1337
#define HAVE_INET_NTOA 50,1422
#define HAVE_INTTYPES_H 53,1508
#define HAVE_LIBC 56,1588
#define HAVE_LIBCRYPT 59,1670
#define HAVE_LIBDL 62,1750
#define HAVE_LIBM 65,1825
#define HAVE_LIBPTHREAD 68,1911
#define HAVE_LIBX11 71,1995
#define HAVE_LIMITS_H 74,2076
#define HAVE_MALLOC 78,2202
#define HAVE_MALLOC_H 81,2283
#define HAVE_MEMCHR 84,2361
#define HAVE_MEMMOVE 87,2438
#define HAVE_MEMORY_H 90,2520
#define HAVE_MEMSET 93,2598
#define HAVE_MMAP 96,2681
#define HAVE_MUNMAP 99,2755
#define HAVE_NETDB_H 102,2835
#define HAVE_NETINET_IN_H 105,2921
#define HAVE_NLIST_H 108,3007
#define HAVE_PATHS_H 111,3088
#define HAVE_PTHREAD 114,3179
#define HAVE_PTRDIFF_T 117,3261
#define HAVE_REALLOC 121,3389
#define HAVE_RINT 124,3464
#define HAVE_SOCKET 127,3538
#define HAVE_STDDEF_H 130,3619
#define HAVE_STDINT_H 133,3702
#define HAVE_STDLIB_H 136,3785
#define HAVE_STPCPY 139,3863
#define HAVE_STRCHR 142,3939
#define HAVE_STRDUP 145,4015
#define HAVE_STRERROR 148,4093
#define HAVE_STRINGS_H 151,4177
#define HAVE_STRING_H 154,4261
#define HAVE_STRNDUP 157,4340
#define HAVE_STRRCHR 160,4418
#define HAVE_STRTOUL 163,4496
#define HAVE_SYS_FILE_H 166,4580
#define HAVE_SYS_IOCTL_H 169,4668
#define HAVE_SYS_PARAM_H 172,4757
#define HAVE_SYS_SOCKET_H 175,4847
#define HAVE_SYS_STAT_H 178,4936
#define HAVE_SYS_TIME_H 181,5023
#define HAVE_SYS_TYPES_H 184,5111
#define HAVE_UCONTEXT_T 187,5198
#define HAVE_UNAME 190,5277
#define HAVE_UNISTD_H 193,5357
#define HAVE_UTMP_H 196,5438
#define HAVE_X11_XLIB_XCB_H 199,5525
#define HAVE__BOOL 202,5610
#define PACKAGE 208,5759
#define PACKAGE_BUGREPORT 211,5861
#define PACKAGE_NAME 214,5958
#define PACKAGE_STRING 217,6045
#define PACKAGE_TARNAME 220,6139
#define PACKAGE_URL 223,6218
#define PACKAGE_VERSION 226,6287
#define SIZEOF_INT_P 233,6501
#define STDC_HEADERS 236,6580
#define VERSION 239,6636
admin/mprotect-bug.c,192
#define PAGESIZE 9,153
#define MAPSIZE 10,179
#define NMAP 11,208
#define MAPBASE 12,225
long addrarr[addrarr14,257
long maddrarr[maddrarr15,277
void segv_handler 17,299
main(32,822
admin/swapstat.c,136
struct nlist nl[nl20,523
#define N_VM_SWAP_SPACE 22,571
#define N_VM_TOTAL_SWAP_SPACE 24,637
#define N_PHYSMEM 26,691
main(30,743
c-emulator/dispatch.c,1205
typedef struct _DecoderPair13,180
int dispatch;15,210
void (*decode)decode16,226
} DecoderPair;17,247
static const int ReturnInstructionDecoder[ReturnInstructionDecoder19,263
static const int WordInstructionDecoder[WordInstructionDecoder26,394
static const int PopInstructionDecoder[PopInstructionDecoder94,2295
static const int IllegalInstructionDecoder 354,9420
static void DecodeNoneFunction 356,9494
static InstructionCacheLine InstructionCacheLookupCPRepresentation 361,9583
static void Decode8BitUnsignedOperandFunction 364,9733
static void Decode8BitSignedOperandFunction 369,9844
static void Decode10BitUnsignedOperandFunction 374,9960
static void Decode12BitUnsignedOperandFunction 379,10073
static void DecodeFPOperandFunction 384,10186
static void DecodeLPOperandFunction 389,10289
static void DecodeSPOperandFunction 394,10392
static void DecodeBranchOperandFunction 407,10643
static void DecodeReturnOperandFunction 412,10756
static void DecodeEntryOperandFunction 431,11159
static const DecoderPair PackedInstructionDecoder[PackedInstructionDecoder436,11289
const char *ivory_dispatch_names[ivory_dispatch_names1464,71706
int InstructionCacheMiss 2191,86303
c-emulator/emulator.c,2797
#define MARK(14,223
volatile int suspend 22,333
typedef enum _SuspendType24,360
SuspendNone,26,388
SuspendSpy,27,403
SuspendLowPriority,28,417
SuspendHighPriority,29,439
SuspendReset30,462
} SuspendType;31,477
static jmp_buf trap_environment;33,493
static LispObj trap_vma 34,526
static LispObj trap_microstate 35,573
Integer memory_vma;36,625
void TakeMemoryTrap(39,683
void TakeIllegalOperandTrap(45,795
void TakeInstructionExceptionTrap(52,1030
static void segv_handler 58,1171
static void io_handler 65,1370
void SendInterruptToEmulator 70,1435
static void ProcessSuspend(75,1505
int ReadVirtualMemory 95,1976
int WriteVirtualMemory 108,2278
int ReadVirtualMemoryBlock 118,2559
int WriteVirtualMemoryBlock 132,2909
void StackCacheScrollUp 145,3249
void StackCacheScrollDown 167,3845
Boolean EphemeralP 187,4416
Boolean OldspaceAddressP 192,4533
Boolean OldspaceP 204,4862
Byte MemoryActionTable[MemoryActionTable209,4976
Integer MemoryReadInternal 273,7980
int StoreContentsInternal 312,8965
static int CarInternal 328,9283
static int CdrInternal 351,9738
static int CarCdrInternal 390,10563
static void Aref1Internal 410,10965
static void Aset1Internal 453,11957
static void RecomputeArrayRegister(498,13078
static Integer LocateInstanceVariableMapped 528,13887
static Integer LocateArbitraryInstanceVariable 551,14671
int PullApplyArgsQuickly 571,15294
static int Unbind(645,17126
Integer ALUFunctionBoolean(667,17748
Integer ALUFunctionByte(690,18438
Integer ALUFunctionAdder(724,19466
Integer ALUFunctionMultiplyDivide(743,19961
Boolean ALUComputeCondition 756,20203
#define AddressImmediateOperand(821,22199
#define AddressSPOperand(822,22279
#define AddressFPOperand(823,22331
#define AddressLPOperand(824,22383
#define AddressPopOperand(825,22435
#define AddressBAR(826,22476
#define PushObject(829,22608
#define PushFixnum(830,22676
#define PushNIL(831,22764
#define PushT(832,22811
#define PushConstant(833,22854
#define PushPredicate(834,22986
#define PopObject(835,23057
#define MoveObject(836,23106
#define SetObject(839,23196
#define SetFixnum(840,23250
#define SetNIL(841,23327
#define SetT(842,23362
#define SetPredicate(843,23393
#define SetConstant(844,23461
#define BranchConditionTrue 846,23584
#define BranchConditionFalse 847,23649
#define TakeBranch(848,23715
#define DontTakeBranch(849,23776
#define NextInstruction 851,23845
#define UnimplementedInstruction 852,23893
#define InstructionException 853,23959
#define IllegalOperand 854,24017
#define AllowSequenceBreaks 855,24063
#define PushContinuation(857,24127
#define PushControl(858,24189
#define DecacheRegisters(860,24245
#define EncacheRegisters(861,24345
void IncrementPC(863,24446
void InstructionSequencer 881,24758
c-emulator/initialization.c,526
static Boolean allocatedCaches 11,144
volatile int run 12,184
static void quit_handler 15,227
static ProcessorState ps;21,296
ProcessorState *processor processor23,323
Boolean Runningp 25,357
void HaltMachine 30,401
void ResetMachine 37,471
void StartMachine 40,501
Boolean IvoryProcessorSystemStartup 46,557
void PushOneFakeFrame 70,1284
void PopOneFakeFrame 86,1720
void InitializeIvoryProcessor 98,2078
void OutOfMemory(157,4377
Boolean ReadInternalRegister 163,4518
Boolean WriteInternalRegister 203,5576
c-emulator/memory.c,1088
const LispObj ObjectT 15,202
const LispObj ObjectNIL 16,252
const LispObj ObjectCdrMask 17,303
Tag *TagSpace TagSpace22,425
Integer *DataSpace DataSpace23,491
#define MemoryPageSize 31,750
#define MemoryAddressPageShift 32,780
#define MemoryPageNumber(34,815
#define MemoryPageOffset(35,879
#define PageNumberMemory(36,940
VMAttribute VMAttributeTable[VMAttributeTable39,1077
#define Created(41,1140
#define SetCreated(42,1211
#define ClearCreated(43,1296
Integer EnsureVirtualAddress 47,1404
Integer EnsureVirtualAddressRange 68,2063
Integer DestroyVirtualAddress 104,3129
Integer DestroyVirtualAddressRange 123,3648
Integer* MapVirtualAddressData(134,3850
Tag* MapVirtualAddressTag(139,3926
int VirtualMemoryRead 144,3996
int VirtualMemoryWrite 154,4197
int VirtualMemoryReadBlock 164,4399
int VirtualMemoryWriteBlock 181,4771
int VirtualMemoryWriteBlockConstant 198,5144
Boolean VirtualMemorySearch 229,6016
int VirtualMemoryCopy 254,6579
Boolean VirtualMemoryScan 304,7821
void VirtualMemoryEnable 329,8477
VMState VM;342,8851
int VMCommand(344,8864
c-emulator/traps.c,341
typedef struct _ExceptionInfo7,109
int arity;9,144
int stackp;10,159
int arithp;11,175
ExceptionInfo;13,196
const ExceptionInfo InstructionExceptionInfo[InstructionExceptionInfo15,212
static int FetchTrapVectorEntry 274,15384
int TakePreTrap 289,15923
int TakePostTrap(363,17908
int TakeInstructionException(425,19749
emulator/externals.c,426
int CoprocessorWrite 31,854
LispObj CoprocessorRead 168,5897
void FlushCaches 312,10854
static TRACEDATA traceData;320,10924
static FILE *traceS traceS321,10952
static uint64_t lastCR 322,10980
void InitializeTracing 324,11009
void EnterTrace 350,11951
#define DecodeObject(387,13281
static void PrintTraceRecord 389,13422
void PrintTrace 465,15808
void MaybePrintTrace 482,16257
void TerminateTracing 488,16324
emulator/fake_emulator.c,27847
static int first_call 7,80
int iInterpret 9,108
void SpinWheels 20,318
void ARITHMETICEXCEPTION 25,387
void DECODEFAULT 26,419
void CarCdrSubroutine 28,444
void CarSubroutine 29,473
void CdrSubroutine 30,499
void Do32BitDifferenceFP 31,525
void Do32BitDifferenceIM 32,557
void Do32BitDifferenceLP 33,589
void Do32BitDifferenceSP 34,621
void Do32BitPlusFP 35,653
void Do32BitPlusIM 36,679
void Do32BitPlusLP 37,705
void Do32BitPlusSP 38,731
void DoAddBignumStepFP 39,757
void DoAddBignumStepIM 40,787
void DoAddBignumStepLP 41,817
void DoAddBignumStepSP 42,847
void DoAddFP 43,877
void DoAddIM 44,897
void DoAddLP 45,917
void DoAddSP 46,937
void DoAllocateListBlockFP 47,957
void DoAllocateListBlockIM 48,991
void DoAllocateListBlockLP 49,1025
void DoAllocateListBlockSP 50,1059
void DoAllocateStructureBlockFP 51,1093
void DoAllocateStructureBlockIM 52,1132
void DoAllocateStructureBlockLP 53,1171
void DoAllocateStructureBlockSP 54,1210
void DoAloc1FP 55,1249
void DoAloc1IM 56,1271
void DoAloc1LP 57,1293
void DoAloc1SP 58,1315
void DoAlocLeaderFP 59,1337
void DoAlocLeaderIM 60,1364
void DoAlocLeaderLP 61,1391
void DoAlocLeaderSP 62,1418
void DoAluFP 63,1445
void DoAluIM 64,1465
void DoAluLP 65,1485
void DoAluSP 66,1505
void DoAref1FP 67,1525
void DoAref1IM 68,1547
void DoAref1LP 69,1569
void DoAref1SP 70,1591
void DoArrayLeaderFP 71,1613
void DoArrayLeaderIM 72,1641
void DoArrayLeaderLP 73,1669
void DoArrayLeaderSP 74,1697
void DoAset1FP 75,1725
void DoAset1IM 76,1747
void DoAset1LP 77,1769
void DoAset1SP 78,1791
void DoAshFP 79,1813
void DoAshIM 80,1833
void DoAshLP 81,1853
void DoAshSP 82,1873
void DoAssocFP 83,1893
void DoAssocIM 84,1915
void DoAssocLP 85,1937
void DoAssocSP 86,1959
void DoBindLocativeFP 87,1981
void DoBindLocativeIM 88,2010
void DoBindLocativeLP 89,2039
void DoBindLocativeSP 90,2068
void DoBindLocativeToValueFP 91,2097
void DoBindLocativeToValueIM 92,2133
void DoBindLocativeToValueLP 93,2169
void DoBindLocativeToValueSP 94,2205
void DoBlock0ReadAluFP 95,2241
void DoBlock0ReadAluIM 96,2271
void DoBlock0ReadAluLP 97,2301
void DoBlock0ReadAluSP 98,2331
void DoBlock0ReadFP 99,2361
void DoBlock0ReadIM 100,2388
void DoBlock0ReadLP 101,2415
void DoBlock0ReadSP 102,2442
void DoBlock0ReadShiftFP 103,2469
void DoBlock0ReadShiftIM 104,2501
void DoBlock0ReadShiftLP 105,2533
void DoBlock0ReadShiftSP 106,2565
void DoBlock0ReadTestFP 107,2597
void DoBlock0ReadTestIM 108,2628
void DoBlock0ReadTestLP 109,2659
void DoBlock0ReadTestSP 110,2690
void DoBlock0WriteFP 111,2721
void DoBlock0WriteIM 112,2749
void DoBlock0WriteLP 113,2777
void DoBlock0WriteSP 114,2805
void DoBlock1ReadAluFP 115,2833
void DoBlock1ReadAluIM 116,2863
void DoBlock1ReadAluLP 117,2893
void DoBlock1ReadAluSP 118,2923
void DoBlock1ReadFP 119,2953
void DoBlock1ReadIM 120,2980
void DoBlock1ReadLP 121,3007
void DoBlock1ReadSP 122,3034
void DoBlock1ReadShiftFP 123,3061
void DoBlock1ReadShiftIM 124,3093
void DoBlock1ReadShiftLP 125,3125
void DoBlock1ReadShiftSP 126,3157
void DoBlock1ReadTestFP 127,3189
void DoBlock1ReadTestIM 128,3220
void DoBlock1ReadTestLP 129,3251
void DoBlock1ReadTestSP 130,3282
void DoBlock1WriteFP 131,3313
void DoBlock1WriteIM 132,3341
void DoBlock1WriteLP 133,3369
void DoBlock1WriteSP 134,3397
void DoBlock2ReadAluFP 135,3425
void DoBlock2ReadAluIM 136,3455
void DoBlock2ReadAluLP 137,3485
void DoBlock2ReadAluSP 138,3515
void DoBlock2ReadFP 139,3545
void DoBlock2ReadIM 140,3572
void DoBlock2ReadLP 141,3599
void DoBlock2ReadSP 142,3626
void DoBlock2ReadShiftFP 143,3653
void DoBlock2ReadShiftIM 144,3685
void DoBlock2ReadShiftLP 145,3717
void DoBlock2ReadShiftSP 146,3749
void DoBlock2ReadTestFP 147,3781
void DoBlock2ReadTestIM 148,3812
void DoBlock2ReadTestLP 149,3843
void DoBlock2ReadTestSP 150,3874
void DoBlock2WriteFP 151,3905
void DoBlock2WriteIM 152,3933
void DoBlock2WriteLP 153,3961
void DoBlock2WriteSP 154,3989
void DoBlock3ReadAluFP 155,4017
void DoBlock3ReadAluIM 156,4047
void DoBlock3ReadAluLP 157,4077
void DoBlock3ReadAluSP 158,4107
void DoBlock3ReadFP 159,4137
void DoBlock3ReadIM 160,4164
void DoBlock3ReadLP 161,4191
void DoBlock3ReadSP 162,4218
void DoBlock3ReadShiftFP 163,4245
void DoBlock3ReadShiftIM 164,4277
void DoBlock3ReadShiftLP 165,4309
void DoBlock3ReadShiftSP 166,4341
void DoBlock3ReadTestFP 167,4373
void DoBlock3ReadTestIM 168,4404
void DoBlock3ReadTestLP 169,4435
void DoBlock3ReadTestSP 170,4466
void DoBlock3WriteFP 171,4497
void DoBlock3WriteIM 172,4525
void DoBlock3WriteLP 173,4553
void DoBlock3WriteSP 174,4581
void DoBranchFP 175,4609
void DoBranchFalseAndExtraPopFP 176,4632
void DoBranchFalseAndExtraPopIM 177,4671
void DoBranchFalseAndExtraPopLP 178,4710
void DoBranchFalseAndExtraPopSP 179,4749
void DoBranchFalseAndNoPopElseNoPopExtraPopFP 180,4788
void DoBranchFalseAndNoPopElseNoPopExtraPopIM 181,4841
void DoBranchFalseAndNoPopElseNoPopExtraPopLP 182,4894
void DoBranchFalseAndNoPopElseNoPopExtraPopSP 183,4947
void DoBranchFalseAndNoPopFP 184,5000
void DoBranchFalseAndNoPopIM 185,5036
void DoBranchFalseAndNoPopLP 186,5072
void DoBranchFalseAndNoPopSP 187,5108
void DoBranchFalseElseExtraPopFP 188,5144
void DoBranchFalseElseExtraPopIM 189,5184
void DoBranchFalseElseExtraPopLP 190,5224
void DoBranchFalseElseExtraPopSP 191,5264
void DoBranchFalseElseNoPopFP 192,5304
void DoBranchFalseElseNoPopIM 193,5341
void DoBranchFalseElseNoPopLP 194,5378
void DoBranchFalseElseNoPopSP 195,5415
void DoBranchFalseExtraPopFP 196,5452
void DoBranchFalseExtraPopIM 197,5488
void DoBranchFalseExtraPopLP 198,5524
void DoBranchFalseExtraPopSP 199,5560
void DoBranchFalseFP 200,5596
void DoBranchFalseIM 201,5624
void DoBranchFalseLP 202,5652
void DoBranchFalseNoPopFP 203,5680
void DoBranchFalseNoPopIM 204,5713
void DoBranchFalseNoPopLP 205,5746
void DoBranchFalseNoPopSP 206,5779
void DoBranchFalseSP 207,5812
void DoBranchIM 208,5840
void DoBranchLP 209,5863
void DoBranchSP 210,5886
void DoBranchTrueAndExtraPopFP 211,5909
void DoBranchTrueAndExtraPopIM 212,5947
void DoBranchTrueAndExtraPopLP 213,5985
void DoBranchTrueAndExtraPopSP 214,6023
void DoBranchTrueAndNoPopElseNoPopExtraPopFP 215,6061
void DoBranchTrueAndNoPopElseNoPopExtraPopIM 216,6113
void DoBranchTrueAndNoPopElseNoPopExtraPopLP 217,6165
void DoBranchTrueAndNoPopElseNoPopExtraPopSP 218,6217
void DoBranchTrueAndNoPopFP 219,6269
void DoBranchTrueAndNoPopIM 220,6304
void DoBranchTrueAndNoPopLP 221,6339
void DoBranchTrueAndNoPopSP 222,6374
void DoBranchTrueElseExtraPopFP 223,6409
void DoBranchTrueElseExtraPopIM 224,6448
void DoBranchTrueElseExtraPopLP 225,6487
void DoBranchTrueElseExtraPopSP 226,6526
void DoBranchTrueElseNoPopFP 227,6565
void DoBranchTrueElseNoPopIM 228,6601
void DoBranchTrueElseNoPopLP 229,6637
void DoBranchTrueElseNoPopSP 230,6673
void DoBranchTrueExtraPopFP 231,6709
void DoBranchTrueExtraPopIM 232,6744
void DoBranchTrueExtraPopLP 233,6779
void DoBranchTrueExtraPopSP 234,6814
void DoBranchTrueFP 235,6849
void DoBranchTrueIM 236,6876
void DoBranchTrueLP 237,6903
void DoBranchTrueNoPopFP 238,6930
void DoBranchTrueNoPopIM 239,6962
void DoBranchTrueNoPopLP 240,6994
void DoBranchTrueNoPopSP 241,7026
void DoBranchTrueSP 242,7058
void DoCarFP 243,7085
void DoCarIM 244,7105
void DoCarLP 245,7125
void DoCarSP 246,7145
void DoCatchCloseFP 247,7165
void DoCatchCloseIM 248,7192
void DoCatchCloseLP 249,7219
void DoCatchCloseSP 250,7246
void DoCatchOpenFP 251,7273
void DoCatchOpenIM 252,7299
void DoCatchOpenLP 253,7325
void DoCatchOpenSP 254,7351
void DoCdrFP 255,7377
void DoCdrIM 256,7397
void DoCdrLP 257,7417
void DoCdrSP 258,7437
void DoCeilingFP 259,7457
void DoCeilingIM 260,7481
void DoCeilingLP 261,7505
void DoCeilingSP 262,7529
void DoCharDpbFP 263,7553
void DoCharDpbIM 264,7577
void DoCharDpbLP 265,7601
void DoCharDpbSP 266,7625
void DoCharLdbFP 267,7649
void DoCharLdbIM 268,7673
void DoCharLdbLP 269,7697
void DoCharLdbSP 270,7721
void DoCheckPreemptRequestFP 271,7745
void DoCheckPreemptRequestIM 272,7781
void DoCheckPreemptRequestLP 273,7817
void DoCheckPreemptRequestSP 274,7853
void DoCoprocessorReadFP 275,7889
void DoCoprocessorReadIM 276,7921
void DoCoprocessorReadLP 277,7953
void DoCoprocessorReadSP 278,7985
void DoCoprocessorWriteFP 279,8017
void DoCoprocessorWriteIM 280,8050
void DoCoprocessorWriteLP 281,8083
void DoCoprocessorWriteSP 282,8116
void DoDecrementFP 283,8149
void DoDecrementIM 284,8175
void DoDecrementLP 285,8201
void DoDecrementSP 286,8227
void DoDereferenceFP 287,8253
void DoDereferenceIM 288,8281
void DoDereferenceLP 289,8309
void DoDereferenceSP 290,8337
void DoDivideBignumStepFP 291,8365
void DoDivideBignumStepIM 292,8398
void DoDivideBignumStepLP 293,8431
void DoDivideBignumStepSP 294,8464
void DoDoubleFloatOpFP 295,8497
void DoDoubleFloatOpIM 296,8527
void DoDoubleFloatOpLP 297,8557
void DoDoubleFloatOpSP 298,8587
void DoDpbFP 299,8617
void DoDpbIM 300,8637
void DoDpbLP 301,8657
void DoDpbSP 302,8677
void DoEndpFP 303,8697
void DoEndpIM 304,8718
void DoEndpLP 305,8739
void DoEndpSP 306,8760
void DoEntryRestAcceptedFP 307,8781
void DoEntryRestAcceptedIM 308,8815
void DoEntryRestAcceptedLP 309,8849
void DoEntryRestAcceptedSP 310,8883
void DoEntryRestNotAcceptedFP 311,8917
void DoEntryRestNotAcceptedIM 312,8954
void DoEntryRestNotAcceptedLP 313,8991
void DoEntryRestNotAcceptedSP 314,9028
void DoEphemeralpFP 315,9065
void DoEphemeralpIM 316,9092
void DoEphemeralpLP 317,9119
void DoEphemeralpSP 318,9146
void DoEqFP 319,9173
void DoEqIM 320,9192
void DoEqLP 321,9211
void DoEqSP 322,9230
void DoEqlFP 323,9249
void DoEqlIM 324,9269
void DoEqlLP 325,9289
void DoEqlSP 326,9309
void DoEqualNumberFP 327,9329
void DoEqualNumberIM 328,9357
void DoEqualNumberLP 329,9385
void DoEqualNumberSP 330,9413
void DoFastAref1FP 331,9441
void DoFastAref1IM 332,9467
void DoFastAref1LP 333,9493
void DoFastAref1SP 334,9519
void DoFastAset1FP 335,9545
void DoFastAset1IM 336,9571
void DoFastAset1LP 337,9597
void DoFastAset1SP 338,9623
void DoFinishCallNFP 339,9649
void DoFinishCallNIM 340,9677
void DoFinishCallNLP 341,9705
void DoFinishCallNSP 342,9733
void DoFinishCallTosFP 343,9761
void DoFinishCallTosIM 344,9791
void DoFinishCallTosLP 345,9821
void DoFinishCallTosSP 346,9851
void DoFloorFP 347,9881
void DoFloorIM 348,9903
void DoFloorLP 349,9925
void DoFloorSP 350,9947
void DoGenericDispatchFP 351,9969
void DoGenericDispatchIM 352,10001
void DoGenericDispatchLP 353,10033
void DoGenericDispatchSP 354,10065
void DoGreaterpFP 355,10097
void DoGreaterpIM 356,10122
void DoGreaterpLP 357,10147
void DoGreaterpSP 358,10172
void DoHaltFP 359,10197
void DoHaltIM 360,10218
void DoHaltLP 361,10239
void DoHaltSP 362,10260
void DoIStageError 363,10281
void DoIncrementFP 364,10307
void DoIncrementIM 365,10333
void DoIncrementLP 366,10359
void DoIncrementSP 367,10385
void DoInstanceLocFP 368,10411
void DoInstanceLocIM 369,10439
void DoInstanceLocLP 370,10467
void DoInstanceLocSP 371,10495
void DoInstanceRefFP 372,10523
void DoInstanceRefIM 373,10551
void DoInstanceRefLP 374,10579
void DoInstanceRefSP 375,10607
void DoInstanceSetFP 376,10635
void DoInstanceSetIM 377,10663
void DoInstanceSetLP 378,10691
void DoInstanceSetSP 379,10719
void DoJumpFP 380,10747
void DoJumpIM 381,10768
void DoJumpLP 382,10789
void DoJumpSP 383,10810
void DoLdbFP 384,10831
void DoLdbIM 385,10851
void DoLdbLP 386,10871
void DoLdbSP 387,10891
void DoLesspFP 388,10911
void DoLesspIM 389,10933
void DoLesspLP 390,10955
void DoLesspSP 391,10977
void DoLocateLocalsFP 392,10999
void DoLocateLocalsIM 393,11028
void DoLocateLocalsLP 394,11057
void DoLocateLocalsSP 395,11086
void DoLogandFP 396,11115
void DoLogandIM 397,11138
void DoLogandLP 398,11161
void DoLogandSP 399,11184
void DoLogicTailTestFP 400,11207
void DoLogicTailTestIM 401,11237
void DoLogicTailTestLP 402,11267
void DoLogicTailTestSP 403,11297
void DoLogiorFP 404,11327
void DoLogiorIM 405,11350
void DoLogiorLP 406,11373
void DoLogiorSP 407,11396
void DoLogtestFP 408,11419
void DoLogtestIM 409,11443
void DoLogtestLP 410,11467
void DoLogtestSP 411,11491
void DoLogxorFP 412,11515
void DoLogxorIM 413,11538
void DoLogxorLP 414,11561
void DoLogxorSP 415,11584
void DoLoopDecrementTosFP 416,11607
void DoLoopDecrementTosIM 417,11640
void DoLoopDecrementTosLP 418,11673
void DoLoopDecrementTosSP 419,11706
void DoLoopIncrementTosLessThanFP 420,11739
void DoLoopIncrementTosLessThanIM 421,11780
void DoLoopIncrementTosLessThanLP 422,11821
void DoLoopIncrementTosLessThanSP 423,11862
void DoLshFP 424,11903
void DoLshIM 425,11923
void DoLshLP 426,11943
void DoLshSP 427,11963
void DoLshcBignumStepFP 428,11983
void DoLshcBignumStepIM 429,12014
void DoLshcBignumStepLP 430,12045
void DoLshcBignumStepSP 431,12076
void DoMaxFP 432,12107
void DoMaxIM 433,12127
void DoMaxLP 434,12147
void DoMaxSP 435,12167
void DoMemberFP 436,12187
void DoMemberIM 437,12210
void DoMemberLP 438,12233
void DoMemberSP 439,12256
void DoMemoryReadFP 440,12279
void DoMemoryReadIM 441,12306
void DoMemoryReadLP 442,12333
void DoMemoryReadSP 443,12360
void DoMemoryWriteFP 444,12387
void DoMemoryWriteIM 445,12415
void DoMemoryWriteLP 446,12443
void DoMemoryWriteSP 447,12471
void DoMergeCdrNoPopFP 448,12499
void DoMergeCdrNoPopIM 449,12529
void DoMergeCdrNoPopLP 450,12559
void DoMergeCdrNoPopSP 451,12589
void DoMessageDispatchFP 452,12619
void DoMessageDispatchIM 453,12651
void DoMessageDispatchLP 454,12683
void DoMessageDispatchSP 455,12715
void DoMinFP 456,12747
void DoMinIM 457,12767
void DoMinLP 458,12787
void DoMinSP 459,12807
void DoMinuspFP 460,12827
void DoMinuspIM 461,12850
void DoMinuspLP 462,12873
void DoMinuspSP 463,12896
void DoMovemFP 464,12919
void DoMovemIM 465,12941
void DoMovemInstanceVariableFP 466,12963
void DoMovemInstanceVariableIM 467,13001
void DoMovemInstanceVariableLP 468,13039
void DoMovemInstanceVariableOrderedFP 469,13077
void DoMovemInstanceVariableOrderedIM 470,13122
void DoMovemInstanceVariableOrderedLP 471,13167
void DoMovemInstanceVariableOrderedSP 472,13212
void DoMovemInstanceVariableSP 473,13257
void DoMovemLP 474,13295
void DoMovemLexicalVarNFP 475,13317
void DoMovemLexicalVarNIM 476,13350
void DoMovemLexicalVarNLP 477,13383
void DoMovemLexicalVarNSP 478,13416
void DoMovemSP 479,13449
void DoMultiplyBignumStepFP 480,13471
void DoMultiplyBignumStepIM 481,13506
void DoMultiplyBignumStepLP 482,13541
void DoMultiplyBignumStepSP 483,13576
void DoMultiplyDoubleFP 484,13611
void DoMultiplyDoubleIM 485,13642
void DoMultiplyDoubleLP 486,13673
void DoMultiplyDoubleSP 487,13704
void DoMultiplyFP 488,13735
void DoMultiplyIM 489,13760
void DoMultiplyLP 490,13785
void DoMultiplySP 491,13810
void DoNoOpFP 492,13835
void DoNoOpIM 493,13856
void DoNoOpLP 494,13877
void DoNoOpSP 495,13898
void DoPDpbFP 496,13919
void DoPDpbIM 497,13940
void DoPDpbLP 498,13961
void DoPDpbSP 499,13982
void DoPLdbFP 500,14003
void DoPLdbIM 501,14024
void DoPLdbLP 502,14045
void DoPLdbSP 503,14066
void DoPStoreContentsFP 504,14087
void DoPStoreContentsIM 505,14118
void DoPStoreContentsLP 506,14149
void DoPStoreContentsSP 507,14180
void DoPTagDpbFP 508,14211
void DoPTagDpbIM 509,14235
void DoPTagDpbLP 510,14259
void DoPTagDpbSP 511,14283
void DoPTagLdbFP 512,14307
void DoPTagLdbIM 513,14331
void DoPTagLdbLP 514,14355
void DoPTagLdbSP 515,14379
void DoPluspFP 516,14403
void DoPluspIM 517,14425
void DoPluspLP 518,14447
void DoPluspSP 519,14469
void DoPointerDifferenceFP 520,14491
void DoPointerDifferenceIM 521,14525
void DoPointerDifferenceLP 522,14559
void DoPointerDifferenceSP 523,14593
void DoPointerIncrementFP 524,14627
void DoPointerIncrementIM 525,14660
void DoPointerIncrementLP 526,14693
void DoPointerIncrementSP 527,14726
void DoPointerPlusFP 528,14759
void DoPointerPlusIM 529,14787
void DoPointerPlusLP 530,14815
void DoPointerPlusSP 531,14843
void DoPopFP 532,14871
void DoPopIM 533,14891
void DoPopInstanceVariableFP 534,14911
void DoPopInstanceVariableIM 535,14947
void DoPopInstanceVariableLP 536,14983
void DoPopInstanceVariableOrderedFP 537,15019
void DoPopInstanceVariableOrderedIM 538,15062
void DoPopInstanceVariableOrderedLP 539,15105
void DoPopInstanceVariableOrderedSP 540,15148
void DoPopInstanceVariableSP 541,15191
void DoPopLP 542,15227
void DoPopLexicalVarNFP 543,15247
void DoPopLexicalVarNIM 544,15278
void DoPopLexicalVarNLP 545,15309
void DoPopLexicalVarNSP 546,15340
void DoPopSP 547,15371
void DoPushAddressFP 548,15391
void DoPushAddressIM 549,15419
void DoPushAddressInstanceVariableFP 550,15447
void DoPushAddressInstanceVariableIM 551,15491
void DoPushAddressInstanceVariableLP 552,15535
void DoPushAddressInstanceVariableOrderedFP 553,15579
void DoPushAddressInstanceVariableOrderedIM 554,15630
void DoPushAddressInstanceVariableOrderedLP 555,15681
void DoPushAddressInstanceVariableOrderedSP 556,15732
void DoPushAddressInstanceVariableSP 557,15783
void DoPushAddressLP 558,15827
void DoPushAddressSP 559,15855
void DoPushAddressSpRelativeFP 560,15883
void DoPushAddressSpRelativeIM 561,15921
void DoPushAddressSpRelativeLP 562,15959
void DoPushAddressSpRelativeSP 563,15997
void DoPushFP 564,16035
void DoPushGlobalLogicVariableFP 565,16056
void DoPushGlobalLogicVariableIM 566,16096
void DoPushGlobalLogicVariableLP 567,16136
void DoPushGlobalLogicVariableSP 568,16176
void DoPushIM 569,16216
void DoPushInstanceVariableFP 570,16237
void DoPushInstanceVariableIM 571,16274
void DoPushInstanceVariableLP 572,16311
void DoPushInstanceVariableOrderedFP 573,16348
void DoPushInstanceVariableOrderedIM 574,16392
void DoPushInstanceVariableOrderedLP 575,16436
void DoPushInstanceVariableOrderedSP 576,16480
void DoPushInstanceVariableSP 577,16524
void DoPushLP 578,16561
void DoPushLexicalVarNFP 579,16582
void DoPushLexicalVarNIM 580,16614
void DoPushLexicalVarNLP 581,16646
void DoPushLexicalVarNSP 582,16678
void DoPushLocalLogicVariablesFP 583,16710
void DoPushLocalLogicVariablesIM 584,16750
void DoPushLocalLogicVariablesLP 585,16790
void DoPushLocalLogicVariablesSP 586,16830
void DoPushNNilsFP 587,16870
void DoPushNNilsIM 588,16896
void DoPushNNilsLP 589,16922
void DoPushNNilsSP 590,16948
void DoPushSP 591,16974
void DoQuotientFP 592,16995
void DoQuotientIM 593,17020
void DoQuotientLP 594,17045
void DoQuotientSP 595,17070
void DoRationalQuotientFP 596,17095
void DoRationalQuotientIM 597,17128
void DoRationalQuotientLP 598,17161
void DoRationalQuotientSP 599,17194
void DoReadInternalRegisterFP 600,17227
void DoReadInternalRegisterIM 601,17264
void DoReadInternalRegisterLP 602,17301
void DoReadInternalRegisterSP 603,17338
void DoRestoreBindingStackFP 604,17375
void DoRestoreBindingStackIM 605,17411
void DoRestoreBindingStackLP 606,17447
void DoRestoreBindingStackSP 607,17483
void DoReturnKludgeFP 608,17519
void DoReturnKludgeIM 609,17548
void DoReturnKludgeLP 610,17577
void DoReturnKludgeSP 611,17606
void DoReturnMultipleFP 612,17635
void DoReturnMultipleIM 613,17666
void DoReturnMultipleLP 614,17697
void DoReturnMultipleSP 615,17728
void DoReturnSingleFP 616,17759
void DoReturnSingleIM 617,17788
void DoReturnSingleLP 618,17817
void DoReturnSingleSP 619,17846
void DoRgetfFP 620,17875
void DoRgetfIM 621,17897
void DoRgetfLP 622,17919
void DoRgetfSP 623,17941
void DoRotFP 624,17963
void DoRotIM 625,17983
void DoRotLP 626,18003
void DoRotSP 627,18023
void DoRoundFP 628,18043
void DoRoundIM 629,18065
void DoRoundLP 630,18087
void DoRoundSP 631,18109
void DoRplacaFP 632,18131
void DoRplacaIM 633,18154
void DoRplacaLP 634,18177
void DoRplacaSP 635,18200
void DoRplacdFP 636,18223
void DoRplacdIM 637,18246
void DoRplacdLP 638,18269
void DoRplacdSP 639,18292
void DoSetCdrCode1FP 640,18315
void DoSetCdrCode1IM 641,18343
void DoSetCdrCode1LP 642,18371
void DoSetCdrCode1SP 643,18399
void DoSetCdrCode2FP 644,18427
void DoSetCdrCode2IM 645,18455
void DoSetCdrCode2LP 646,18483
void DoSetCdrCode2SP 647,18511
void DoSetSpToAddressFP 648,18539
void DoSetSpToAddressIM 649,18570
void DoSetSpToAddressLP 650,18601
void DoSetSpToAddressSP 651,18632
void DoSetSpToAddressSaveTosFP 652,18663
void DoSetSpToAddressSaveTosIM 653,18701
void DoSetSpToAddressSaveTosLP 654,18739
void DoSetSpToAddressSaveTosSP 655,18777
void DoSetTagFP 656,18815
void DoSetTagIM 657,18838
void DoSetTagLP 658,18861
void DoSetTagSP 659,18884
void DoSetToCarFP 660,18907
void DoSetToCarIM 661,18932
void DoSetToCarLP 662,18957
void DoSetToCarSP 663,18982
void DoSetToCdrFP 664,19007
void DoSetToCdrIM 665,19032
void DoSetToCdrLP 666,19057
void DoSetToCdrPushCarFP 667,19082
void DoSetToCdrPushCarIM 668,19114
void DoSetToCdrPushCarLP 669,19146
void DoSetToCdrPushCarSP 670,19178
void DoSetToCdrSP 671,19210
void DoSetup1DArrayFP 672,19235
void DoSetup1DArrayIM 673,19264
void DoSetup1DArrayLP 674,19293
void DoSetup1DArraySP 675,19322
void DoSetupForce1DArrayFP 676,19351
void DoSetupForce1DArrayIM 677,19385
void DoSetupForce1DArrayLP 678,19419
void DoSetupForce1DArraySP 679,19453
void DoSpareOpFP 680,19487
void DoSpareOpIM 681,19511
void DoSpareOpLP 682,19535
void DoSpareOpSP 683,19559
void DoStackBltAddressFP 684,19583
void DoStackBltAddressIM 685,19615
void DoStackBltAddressLP 686,19647
void DoStackBltAddressSP 687,19679
void DoStackBltFP 688,19711
void DoStackBltIM 689,19736
void DoStackBltLP 690,19761
void DoStackBltSP 691,19786
void DoStartCallFP 692,19811
void DoStartCallIM 693,19837
void DoStartCallLP 694,19863
void DoStartCallSP 695,19889
void DoStoreArrayLeaderFP 696,19915
void DoStoreArrayLeaderIM 697,19948
void DoStoreArrayLeaderLP 698,19981
void DoStoreArrayLeaderSP 699,20014
void DoStoreConditionalFP 700,20047
void DoStoreConditionalIM 701,20080
void DoStoreConditionalLP 702,20113
void DoStoreConditionalSP 703,20146
void DoSubBignumStepFP 704,20179
void DoSubBignumStepIM 705,20209
void DoSubBignumStepLP 706,20239
void DoSubBignumStepSP 707,20269
void DoSubFP 708,20299
void DoSubIM 709,20319
void DoSubLP 710,20339
void DoSubSP 711,20359
void DoTagFP 712,20379
void DoTagIM 713,20399
void DoTagLP 714,20419
void DoTagSP 715,20439
void DoTakeValuesFP 716,20459
void DoTakeValuesIM 717,20486
void DoTakeValuesLP 718,20513
void DoTakeValuesSP 719,20540
void DoTruncateFP 720,20567
void DoTruncateIM 721,20592
void DoTruncateLP 722,20617
void DoTruncateSP 723,20642
void DoTypeMemberFP 724,20667
void DoTypeMemberIM 725,20694
void DoTypeMemberLP 726,20721
void DoTypeMemberSP 727,20748
void DoUnaryMinusFP 728,20775
void DoUnaryMinusIM 729,20802
void DoUnaryMinusLP 730,20829
void DoUnaryMinusSP 731,20856
void DoUnbindNFP 732,20883
void DoUnbindNIM 733,20907
void DoUnbindNLP 734,20931