21#ifndef __DEBUG_SUPPORT_H__
22#define __DEBUG_SUPPORT_H__
31#define EFI_DEBUG_SUPPORT_PROTOCOL_GUID \
33 0x2755590C, 0x6F3C, 0x42FA, {0x9E, 0xA4, 0xA3, 0xBA, 0x54, 0x3C, 0xDA, 0x25 } \
45#define EXCEPT_IA32_DIVIDE_ERROR 0
46#define EXCEPT_IA32_DEBUG 1
47#define EXCEPT_IA32_NMI 2
48#define EXCEPT_IA32_BREAKPOINT 3
49#define EXCEPT_IA32_OVERFLOW 4
50#define EXCEPT_IA32_BOUND 5
51#define EXCEPT_IA32_INVALID_OPCODE 6
52#define EXCEPT_IA32_DOUBLE_FAULT 8
53#define EXCEPT_IA32_INVALID_TSS 10
54#define EXCEPT_IA32_SEG_NOT_PRESENT 11
55#define EXCEPT_IA32_STACK_FAULT 12
56#define EXCEPT_IA32_GP_FAULT 13
57#define EXCEPT_IA32_PAGE_FAULT 14
58#define EXCEPT_IA32_FP_ERROR 16
59#define EXCEPT_IA32_ALIGNMENT_CHECK 17
60#define EXCEPT_IA32_MACHINE_CHECK 18
61#define EXCEPT_IA32_SIMD 19
85 UINT8 St7Mm7[10], Reserved10[6];
139#define EXCEPT_X64_DIVIDE_ERROR 0
140#define EXCEPT_X64_DEBUG 1
141#define EXCEPT_X64_NMI 2
142#define EXCEPT_X64_BREAKPOINT 3
143#define EXCEPT_X64_OVERFLOW 4
144#define EXCEPT_X64_BOUND 5
145#define EXCEPT_X64_INVALID_OPCODE 6
146#define EXCEPT_X64_DOUBLE_FAULT 8
147#define EXCEPT_X64_INVALID_TSS 10
148#define EXCEPT_X64_SEG_NOT_PRESENT 11
149#define EXCEPT_X64_STACK_FAULT 12
150#define EXCEPT_X64_GP_FAULT 13
151#define EXCEPT_X64_PAGE_FAULT 14
152#define EXCEPT_X64_FP_ERROR 16
153#define EXCEPT_X64_ALIGNMENT_CHECK 17
154#define EXCEPT_X64_MACHINE_CHECK 18
155#define EXCEPT_X64_SIMD 19
242#define EXCEPT_IPF_VHTP_TRANSLATION 0
243#define EXCEPT_IPF_INSTRUCTION_TLB 1
244#define EXCEPT_IPF_DATA_TLB 2
245#define EXCEPT_IPF_ALT_INSTRUCTION_TLB 3
246#define EXCEPT_IPF_ALT_DATA_TLB 4
247#define EXCEPT_IPF_DATA_NESTED_TLB 5
248#define EXCEPT_IPF_INSTRUCTION_KEY_MISSED 6
249#define EXCEPT_IPF_DATA_KEY_MISSED 7
250#define EXCEPT_IPF_DIRTY_BIT 8
251#define EXCEPT_IPF_INSTRUCTION_ACCESS_BIT 9
252#define EXCEPT_IPF_DATA_ACCESS_BIT 10
253#define EXCEPT_IPF_BREAKPOINT 11
254#define EXCEPT_IPF_EXTERNAL_INTERRUPT 12
258#define EXCEPT_IPF_PAGE_NOT_PRESENT 20
259#define EXCEPT_IPF_KEY_PERMISSION 21
260#define EXCEPT_IPF_INSTRUCTION_ACCESS_RIGHTS 22
261#define EXCEPT_IPF_DATA_ACCESS_RIGHTS 23
262#define EXCEPT_IPF_GENERAL_EXCEPTION 24
263#define EXCEPT_IPF_DISABLED_FP_REGISTER 25
264#define EXCEPT_IPF_NAT_CONSUMPTION 26
265#define EXCEPT_IPF_SPECULATION 27
269#define EXCEPT_IPF_DEBUG 29
270#define EXCEPT_IPF_UNALIGNED_REFERENCE 30
271#define EXCEPT_IPF_UNSUPPORTED_DATA_REFERENCE 31
272#define EXCEPT_IPF_FP_FAULT 32
273#define EXCEPT_IPF_FP_TRAP 33
274#define EXCEPT_IPF_LOWER_PRIVILEGE_TRANSFER_TRAP 34
275#define EXCEPT_IPF_TAKEN_BRANCH 35
276#define EXCEPT_IPF_SINGLE_STEP 36
280#define EXCEPT_IPF_IA32_EXCEPTION 45
281#define EXCEPT_IPF_IA32_INTERCEPT 46
282#define EXCEPT_IPF_IA32_INTERRUPT 47
443#define EXCEPT_EBC_UNDEFINED 0
444#define EXCEPT_EBC_DIVIDE_ERROR 1
445#define EXCEPT_EBC_DEBUG 2
446#define EXCEPT_EBC_BREAKPOINT 3
447#define EXCEPT_EBC_OVERFLOW 4
448#define EXCEPT_EBC_INVALID_OPCODE 5
449#define EXCEPT_EBC_STACK_FAULT 6
450#define EXCEPT_EBC_ALIGNMENT_CHECK 7
451#define EXCEPT_EBC_INSTRUCTION_ENCODING 8
452#define EXCEPT_EBC_BAD_BREAK 9
453#define EXCEPT_EBC_STEP 10
457#define MAX_EBC_EXCEPTION EXCEPT_EBC_STEP
481#define EXCEPT_ARM_RESET 0
482#define EXCEPT_ARM_UNDEFINED_INSTRUCTION 1
483#define EXCEPT_ARM_SOFTWARE_INTERRUPT 2
484#define EXCEPT_ARM_PREFETCH_ABORT 3
485#define EXCEPT_ARM_DATA_ABORT 4
486#define EXCEPT_ARM_RESERVED 5
487#define EXCEPT_ARM_IRQ 6
488#define EXCEPT_ARM_FIQ 7
493#define MAX_ARM_EXCEPTION EXCEPT_ARM_FIQ
526#define EXCEPT_AARCH64_SYNCHRONOUS_EXCEPTIONS 0
527#define EXCEPT_AARCH64_IRQ 1
528#define EXCEPT_AARCH64_FIQ 2
529#define EXCEPT_AARCH64_SERROR 3
534#define MAX_AARCH64_EXCEPTION EXCEPT_AARCH64_SERROR
UINT64 UINTN
Definition ProcessorBind.h:118
INT64 INTN
Definition ProcessorBind.h:124
#define EFIAPI
Definition ProcessorBind.h:172
unsigned int UINT32
Definition ProcessorBind.h:102
#define IN
Definition Base.h:347
#define OUT
Definition Base.h:352
EFI_STATUS(EFIAPI * EFI_REGISTER_PERIODIC_CALLBACK)(IN EFI_DEBUG_SUPPORT_PROTOCOL *This, IN UINTN ProcessorIndex, IN EFI_PERIODIC_CALLBACK PeriodicCallback)
Definition DebugSupport.h:707
INTN EFI_EXCEPTION_TYPE
Definition DebugSupport.h:40
EFI_INSTRUCTION_SET_ARCHITECTURE
Definition DebugSupport.h:658
@ IsaIa32
0x014C
Definition DebugSupport.h:659
@ IsaIpf
0x0200
Definition DebugSupport.h:661
@ IsaEbc
0x0EBC
Definition DebugSupport.h:662
@ IsaX64
0x8664
Definition DebugSupport.h:660
@ IsaArm
0x01c2
Definition DebugSupport.h:663
@ IsaAArch64
0xAA64
Definition DebugSupport.h:664
EFI_STATUS(EFIAPI * EFI_GET_MAXIMUM_PROCESSOR_INDEX)(IN EFI_DEBUG_SUPPORT_PROTOCOL *This, OUT UINTN *MaxProcessorIndex)
Definition DebugSupport.h:685
VOID(EFIAPI * EFI_EXCEPTION_CALLBACK)(IN EFI_EXCEPTION_TYPE ExceptionType, IN OUT EFI_SYSTEM_CONTEXT SystemContext)
Definition DebugSupport.h:638
VOID(EFIAPI * EFI_PERIODIC_CALLBACK)(IN OUT EFI_SYSTEM_CONTEXT SystemContext)
Definition DebugSupport.h:651
EFI_STATUS(EFIAPI * EFI_REGISTER_EXCEPTION_CALLBACK)(IN EFI_DEBUG_SUPPORT_PROTOCOL *This, IN UINTN ProcessorIndex, IN EFI_EXCEPTION_CALLBACK ExceptionCallback, IN EFI_EXCEPTION_TYPE ExceptionType)
Definition DebugSupport.h:731
EFI_GUID gEfiDebugSupportProtocolGuid
EFI_STATUS(EFIAPI * EFI_INVALIDATE_INSTRUCTION_CACHE)(IN EFI_DEBUG_SUPPORT_PROTOCOL *This, IN UINTN ProcessorIndex, IN VOID *Start, IN UINT64 Length)
Definition DebugSupport.h:753
uint32_t Reserved1
Definition pe.h:18
#define IMAGE_FILE_MACHINE_EBC
Definition PeImage.h:39
#define IMAGE_FILE_MACHINE_I386
Definition PeImage.h:37
#define IMAGE_FILE_MACHINE_X64
Definition PeImage.h:40
#define IMAGE_FILE_MACHINE_IA64
Definition PeImage.h:38
#define IMAGE_FILE_MACHINE_ARMTHUMB_MIXED
Definition PeImage.h:41
#define IMAGE_FILE_MACHINE_ARM64
Definition PeImage.h:42
RETURN_STATUS EFI_STATUS
Definition UefiBaseType.h:33
#define VOID
Definition acefi.h:190
ACPI_PHYSICAL_ADDRESS ACPI_SIZE Length
Definition acpixf.h:638
unsigned short UINT16
Definition actypes.h:237
unsigned char UINT8
Definition actypes.h:236
COMPILER_DEPENDENT_UINT64 UINT64
Definition actypes.h:239
Definition DebugSupport.h:67
UINT16 Ftw
Definition DebugSupport.h:70
UINT16 Fcw
Definition DebugSupport.h:68
UINT32 Eip
Definition DebugSupport.h:72
UINT16 Cs
Definition DebugSupport.h:73
UINT16 Reserved1
Definition DebugSupport.h:74
UINT16 Opcode
Definition DebugSupport.h:71
UINT16 Fsw
Definition DebugSupport.h:69
UINT32 DataOffset
Definition DebugSupport.h:75
UINT16 Ds
Definition DebugSupport.h:76
Definition DebugSupport.h:161
UINT16 Opcode
Definition DebugSupport.h:165
UINT16 Fsw
Definition DebugSupport.h:163
UINT64 DataOffset
Definition DebugSupport.h:167
UINT64 Rip
Definition DebugSupport.h:166
UINT16 Fcw
Definition DebugSupport.h:162
UINT16 Ftw
Definition DebugSupport.h:164
Definition DebugSupport.h:536
UINT64 SPSR
Definition DebugSupport.h:606
UINT64 ELR
Definition DebugSupport.h:605
UINT64 X8
Definition DebugSupport.h:546
UINT64 X6
Definition DebugSupport.h:544
UINT64 X26
Definition DebugSupport.h:564
UINT64 X7
Definition DebugSupport.h:545
UINT64 X11
Definition DebugSupport.h:549
UINT64 X1
Definition DebugSupport.h:539
UINT64 X20
Definition DebugSupport.h:558
UINT64 X0
Definition DebugSupport.h:538
UINT64 X17
Definition DebugSupport.h:555
UINT64 ESR
Definition DebugSupport.h:608
UINT64 X15
Definition DebugSupport.h:553
UINT64 X5
Definition DebugSupport.h:543
UINT64 FP
Definition DebugSupport.h:567
UINT64 X27
Definition DebugSupport.h:565
UINT64 X16
Definition DebugSupport.h:554
UINT64 X3
Definition DebugSupport.h:541
UINT64 X28
Definition DebugSupport.h:566
UINT64 X21
Definition DebugSupport.h:559
UINT64 X22
Definition DebugSupport.h:560
UINT64 X14
Definition DebugSupport.h:552
UINT64 X10
Definition DebugSupport.h:548
UINT64 FPSR
Definition DebugSupport.h:607
UINT64 X4
Definition DebugSupport.h:542
UINT64 LR
Definition DebugSupport.h:568
UINT64 X19
Definition DebugSupport.h:557
UINT64 X18
Definition DebugSupport.h:556
UINT64 FAR
Definition DebugSupport.h:609
UINT64 X24
Definition DebugSupport.h:562
UINT64 X13
Definition DebugSupport.h:551
UINT64 SP
Definition DebugSupport.h:569
UINT64 X25
Definition DebugSupport.h:563
UINT64 X2
Definition DebugSupport.h:540
UINT64 X23
Definition DebugSupport.h:561
UINT64 X12
Definition DebugSupport.h:550
UINT64 X9
Definition DebugSupport.h:547
Definition DebugSupport.h:498
UINT32 R0
Definition DebugSupport.h:499
UINT32 IFAR
Definition DebugSupport.h:519
UINT32 R8
Definition DebugSupport.h:507
UINT32 R4
Definition DebugSupport.h:503
UINT32 LR
Definition DebugSupport.h:513
UINT32 R10
Definition DebugSupport.h:509
UINT32 IFSR
Definition DebugSupport.h:518
UINT32 R12
Definition DebugSupport.h:511
UINT32 DFAR
Definition DebugSupport.h:517
UINT32 R5
Definition DebugSupport.h:504
UINT32 R6
Definition DebugSupport.h:505
UINT32 R2
Definition DebugSupport.h:501
UINT32 SP
Definition DebugSupport.h:512
UINT32 R3
Definition DebugSupport.h:502
UINT32 DFSR
Definition DebugSupport.h:516
UINT32 PC
Definition DebugSupport.h:514
UINT32 R9
Definition DebugSupport.h:508
UINT32 CPSR
Definition DebugSupport.h:515
UINT32 R1
Definition DebugSupport.h:500
UINT32 R11
Definition DebugSupport.h:510
UINT32 R7
Definition DebugSupport.h:506
Definition DebugSupport.h:462
UINT64 R7
Definition DebugSupport.h:470
UINT64 R1
Definition DebugSupport.h:464
UINT64 ControlFlags
Definition DebugSupport.h:472
UINT64 Ip
Definition DebugSupport.h:473
UINT64 R0
Definition DebugSupport.h:463
UINT64 R3
Definition DebugSupport.h:466
UINT64 R2
Definition DebugSupport.h:465
UINT64 R5
Definition DebugSupport.h:468
UINT64 R4
Definition DebugSupport.h:467
UINT64 R6
Definition DebugSupport.h:469
UINT64 Flags
Definition DebugSupport.h:471
Definition DebugSupport.h:100
UINT32 Ebx
Definition DebugSupport.h:130
UINT32 Ds
Definition DebugSupport.h:123
UINT32 Ecx
Definition DebugSupport.h:132
EFI_FX_SAVE_STATE_IA32 FxSaveState
Definition DebugSupport.h:102
UINT32 Esi
Definition DebugSupport.h:127
UINT32 Eax
Definition DebugSupport.h:133
UINT32 Eflags
Definition DebugSupport.h:114
UINT32 Tr
Definition DebugSupport.h:116
UINT32 Cs
Definition DebugSupport.h:124
UINT32 Dr6
Definition DebugSupport.h:107
UINT32 Ebp
Definition DebugSupport.h:128
UINT32 Dr3
Definition DebugSupport.h:106
UINT32 Fs
Definition DebugSupport.h:121
UINT32 Cr2
Definition DebugSupport.h:111
UINT32 Cr4
Definition DebugSupport.h:113
UINT32 Cr3
Definition DebugSupport.h:112
UINT32 Edx
Definition DebugSupport.h:131
UINT32 Dr7
Definition DebugSupport.h:108
UINT32 Dr2
Definition DebugSupport.h:105
UINT32 Ldtr
Definition DebugSupport.h:115
UINT32 Eip
Definition DebugSupport.h:119
UINT32 Ss
Definition DebugSupport.h:125
UINT32 Es
Definition DebugSupport.h:122
UINT32 ExceptionData
Definition DebugSupport.h:101
UINT32 Dr1
Definition DebugSupport.h:104
UINT32 Cr1
Definition DebugSupport.h:110
UINT32 Esp
Definition DebugSupport.h:129
UINT32 Edi
Definition DebugSupport.h:126
UINT32 Gs
Definition DebugSupport.h:120
UINT32 Cr0
Definition DebugSupport.h:109
UINT32 Dr0
Definition DebugSupport.h:103
Definition DebugSupport.h:287
UINT64 Ibr0
Definition DebugSupport.h:424
UINT64 B6
Definition DebugSupport.h:364
UINT64 R26
Definition DebugSupport.h:318
UINT64 ArUnat
Definition DebugSupport.h:387
UINT64 R13
Definition DebugSupport.h:305
UINT64 R1
Definition DebugSupport.h:293
UINT64 Ibr7
Definition DebugSupport.h:431
UINT64 Dbr2
Definition DebugSupport.h:417
UINT64 R25
Definition DebugSupport.h:317
UINT64 Ibr2
Definition DebugSupport.h:426
UINT64 CrItm
Definition DebugSupport.h:399
UINT64 CrIfs
Definition DebugSupport.h:408
UINT64 B3
Definition DebugSupport.h:361
UINT64 R18
Definition DebugSupport.h:310
UINT64 R19
Definition DebugSupport.h:311
UINT64 Ibr3
Definition DebugSupport.h:427
UINT64 R22
Definition DebugSupport.h:314
UINT64 R5
Definition DebugSupport.h:297
UINT64 ArFir
Definition DebugSupport.h:382
UINT64 R2
Definition DebugSupport.h:294
UINT64 Ibr6
Definition DebugSupport.h:430
UINT64 Ibr4
Definition DebugSupport.h:428
UINT64 R15
Definition DebugSupport.h:307
UINT64 ArFpsr
Definition DebugSupport.h:389
UINT64 Dbr3
Definition DebugSupport.h:418
UINT64 ArEc
Definition DebugSupport.h:393
UINT64 ArEflag
Definition DebugSupport.h:377
UINT64 CrIva
Definition DebugSupport.h:400
UINT64 ArRnat
Definition DebugSupport.h:373
UINT64 B5
Definition DebugSupport.h:363
UINT64 ArPfs
Definition DebugSupport.h:391
UINT64 B0
Definition DebugSupport.h:358
UINT64 R17
Definition DebugSupport.h:309
UINT64 CrIsr
Definition DebugSupport.h:403
UINT64 CrIha
Definition DebugSupport.h:410
UINT64 ArFdr
Definition DebugSupport.h:383
UINT64 R9
Definition DebugSupport.h:301
UINT64 CrIfa
Definition DebugSupport.h:405
UINT64 ArBspstore
Definition DebugSupport.h:372
UINT64 CrIipa
Definition DebugSupport.h:407
UINT64 R7
Definition DebugSupport.h:299
UINT64 R14
Definition DebugSupport.h:306
UINT64 B2
Definition DebugSupport.h:360
UINT64 R4
Definition DebugSupport.h:296
UINT64 CrIip
Definition DebugSupport.h:404
UINT64 R8
Definition DebugSupport.h:300
UINT64 CrIpsr
Definition DebugSupport.h:402
UINT64 R16
Definition DebugSupport.h:308
UINT64 B7
Definition DebugSupport.h:365
UINT64 Dbr1
Definition DebugSupport.h:416
UINT64 CrDcr
Definition DebugSupport.h:398
UINT64 R29
Definition DebugSupport.h:321
UINT64 ArCcv
Definition DebugSupport.h:385
UINT64 CrPta
Definition DebugSupport.h:401
UINT64 R10
Definition DebugSupport.h:302
UINT64 R31
Definition DebugSupport.h:323
UINT64 ArRsc
Definition DebugSupport.h:370
UINT64 Ibr5
Definition DebugSupport.h:429
UINT64 B4
Definition DebugSupport.h:362
UINT64 ArFsr
Definition DebugSupport.h:381
UINT64 IntNat
Definition DebugSupport.h:436
UINT64 ArSsd
Definition DebugSupport.h:379
UINT64 B1
Definition DebugSupport.h:359
UINT64 ArFcr
Definition DebugSupport.h:375
UINT64 Dbr4
Definition DebugSupport.h:419
UINT64 Dbr6
Definition DebugSupport.h:421
UINT64 Dbr5
Definition DebugSupport.h:420
UINT64 R30
Definition DebugSupport.h:322
UINT64 R24
Definition DebugSupport.h:316
UINT64 Pr
Definition DebugSupport.h:356
UINT64 R27
Definition DebugSupport.h:319
UINT64 CrIim
Definition DebugSupport.h:409
UINT64 R20
Definition DebugSupport.h:312
UINT64 ArLc
Definition DebugSupport.h:392
UINT64 R21
Definition DebugSupport.h:313
UINT64 Dbr7
Definition DebugSupport.h:422
UINT64 R23
Definition DebugSupport.h:315
UINT64 Dbr0
Definition DebugSupport.h:415
UINT64 R3
Definition DebugSupport.h:295
UINT64 R28
Definition DebugSupport.h:320
UINT64 Ibr1
Definition DebugSupport.h:425
UINT64 CrItir
Definition DebugSupport.h:406
UINT64 ArCflg
Definition DebugSupport.h:380
UINT64 ArCsd
Definition DebugSupport.h:378
UINT64 R11
Definition DebugSupport.h:303
UINT64 R12
Definition DebugSupport.h:304
UINT64 ArBsp
Definition DebugSupport.h:371
UINT64 Reserved
Definition DebugSupport.h:292
UINT64 R6
Definition DebugSupport.h:298
Definition DebugSupport.h:194
UINT64 R15
Definition DebugSupport.h:236
UINT64 R11
Definition DebugSupport.h:232
UINT64 Gs
Definition DebugSupport.h:215
UINT64 Rax
Definition DebugSupport.h:228
UINT64 Cr2
Definition DebugSupport.h:205
UINT64 R12
Definition DebugSupport.h:233
UINT64 Dr6
Definition DebugSupport.h:201
UINT64 Ldtr
Definition DebugSupport.h:210
UINT64 Cr3
Definition DebugSupport.h:206
UINT64 Ds
Definition DebugSupport.h:218
UINT64 Rbx
Definition DebugSupport.h:225
UINT64 Dr2
Definition DebugSupport.h:199
UINT64 R14
Definition DebugSupport.h:235
UINT64 Es
Definition DebugSupport.h:217
UINT64 R10
Definition DebugSupport.h:231
UINT64 Rbp
Definition DebugSupport.h:223
UINT64 Rdi
Definition DebugSupport.h:221
EFI_FX_SAVE_STATE_X64 FxSaveState
Definition DebugSupport.h:196
UINT64 Cr8
Definition DebugSupport.h:208
UINT64 R9
Definition DebugSupport.h:230
UINT64 Tr
Definition DebugSupport.h:211
UINT64 Rflags
Definition DebugSupport.h:209
UINT64 Rdx
Definition DebugSupport.h:226
UINT64 Dr1
Definition DebugSupport.h:198
UINT64 Cr0
Definition DebugSupport.h:203
UINT64 Dr7
Definition DebugSupport.h:202
UINT64 R13
Definition DebugSupport.h:234
UINT64 Rip
Definition DebugSupport.h:214
UINT64 Rcx
Definition DebugSupport.h:227
UINT64 Dr3
Definition DebugSupport.h:200
UINT64 Rsi
Definition DebugSupport.h:222
UINT64 Cs
Definition DebugSupport.h:219
UINT64 Fs
Definition DebugSupport.h:216
UINT64 Rsp
Definition DebugSupport.h:224
UINT64 Ss
Definition DebugSupport.h:220
UINT64 Cr4
Definition DebugSupport.h:207
UINT64 Dr0
Definition DebugSupport.h:197
UINT64 Cr1
Definition DebugSupport.h:204
UINT64 ExceptionData
Definition DebugSupport.h:195
UINT64 R8
Definition DebugSupport.h:229
Definition DebugSupport.h:765
EFI_REGISTER_EXCEPTION_CALLBACK RegisterExceptionCallback
Definition DebugSupport.h:772
EFI_GET_MAXIMUM_PROCESSOR_INDEX GetMaximumProcessorIndex
Definition DebugSupport.h:770
EFI_REGISTER_PERIODIC_CALLBACK RegisterPeriodicCallback
Definition DebugSupport.h:771
EFI_INVALIDATE_INSTRUCTION_CACHE InvalidateInstructionCache
Definition DebugSupport.h:773
EFI_INSTRUCTION_SET_ARCHITECTURE Isa
Definition DebugSupport.h:769
Definition DebugSupport.h:616
EFI_SYSTEM_CONTEXT_EBC * SystemContextEbc
Definition DebugSupport.h:617
EFI_SYSTEM_CONTEXT_IA32 * SystemContextIa32
Definition DebugSupport.h:618
EFI_SYSTEM_CONTEXT_X64 * SystemContextX64
Definition DebugSupport.h:619
EFI_SYSTEM_CONTEXT_AARCH64 * SystemContextAArch64
Definition DebugSupport.h:622
EFI_SYSTEM_CONTEXT_ARM * SystemContextArm
Definition DebugSupport.h:621
EFI_SYSTEM_CONTEXT_IPF * SystemContextIpf
Definition DebugSupport.h:620