20 IA32_IDT_GATE_DESCRIPTOR *IdtEntry;
21 UINTN InterruptHandler;
22 IA32_DESCRIPTOR IdtDescriptor;
34 IdtEntry = (IA32_IDT_GATE_DESCRIPTOR *)IdtDescriptor.Base;
36 for (Index = 0; Index < 20; Index++) {
37 if (((
PcdGet32 (PcdExceptionsIgnoredByDebugger) & ~(BIT1 | BIT3)) & (1 << Index)) != 0) {
44 InterruptHandler = (
UINTN)&Exception0Handle + Index * ExceptionStubHeaderSize;
45 IdtEntry[Index].Bits.OffsetLow = (UINT16)(
UINTN)InterruptHandler;
46 IdtEntry[Index].Bits.OffsetHigh = (UINT16)((
UINTN)InterruptHandler >> 16);
47 IdtEntry[Index].Bits.OffsetUpper = (UINT32)((
UINTN)InterruptHandler >> 32);
48 IdtEntry[Index].Bits.Selector = CodeSegment;
49 IdtEntry[Index].Bits.GateType = IA32_IDT_GATE_TYPE_INTERRUPT_32;
52 InterruptHandler = (
UINTN)&TimerInterruptHandle;
53 IdtEntry[DEBUG_TIMER_VECTOR].Bits.OffsetLow = (UINT16)(
UINTN)InterruptHandler;
54 IdtEntry[DEBUG_TIMER_VECTOR].Bits.OffsetHigh = (UINT16)((
UINTN)InterruptHandler >> 16);
55 IdtEntry[DEBUG_TIMER_VECTOR].Bits.OffsetUpper = (UINT32)((
UINTN)InterruptHandler >> 32);
56 IdtEntry[DEBUG_TIMER_VECTOR].Bits.Selector = CodeSegment;
57 IdtEntry[DEBUG_TIMER_VECTOR].Bits.GateType = IA32_IDT_GATE_TYPE_INTERRUPT_32;
64 if ((RegEdx & BIT2) != 0) {
82 IA32_IDT_GATE_DESCRIPTOR *IdtEntry;
83 IA32_DESCRIPTOR IdtDescriptor;
86 IdtEntry = (IA32_IDT_GATE_DESCRIPTOR *)IdtDescriptor.Base;
88 return (VOID *)(IdtEntry[ExceptionNum].Bits.OffsetLow |
89 (((
UINTN)IdtEntry[ExceptionNum].Bits.OffsetHigh) << 16) |
90 (((
UINTN)IdtEntry[ExceptionNum].Bits.OffsetUpper) << 32));
103 IN VOID *ExceptionHandler
106 IA32_IDT_GATE_DESCRIPTOR *IdtEntry;
107 IA32_DESCRIPTOR IdtDescriptor;
110 IdtEntry = (IA32_IDT_GATE_DESCRIPTOR *)IdtDescriptor.Base;
112 IdtEntry[ExceptionNum].Bits.OffsetLow = (UINT16)(
UINTN)ExceptionHandler;
113 IdtEntry[ExceptionNum].Bits.OffsetHigh = (UINT16)((
UINTN)ExceptionHandler >> 16);
114 IdtEntry[ExceptionNum].Bits.OffsetUpper = (UINT32)((
UINTN)ExceptionHandler >> 32);
VOID * GetExceptionHandlerInIdtEntry(IN UINTN ExceptionNum)
VOID InitializeDebugIdt(VOID)
VOID SetExceptionHandlerInIdtEntry(IN UINTN ExceptionNum, IN VOID *ExceptionHandler)
UINTN EFIAPI AsmWriteCr4(UINTN Cr4)
UINT16 EFIAPI AsmReadCs(VOID)
UINTN EFIAPI AsmReadCr4(VOID)
UINT32 EFIAPI AsmCpuid(IN UINT32 Index, OUT UINT32 *RegisterEax OPTIONAL, OUT UINT32 *RegisterEbx OPTIONAL, OUT UINT32 *RegisterEcx OPTIONAL, OUT UINT32 *RegisterEdx OPTIONAL)
#define PcdGet32(TokenName)
VOID EFIAPI AsmReadIdtr(OUT IA32_DESCRIPTOR *Idtr)