Home | History | Annotate | Download | only in X64

Lines Matching refs:ExceptionNum

75   Retrieve exception handler from IDT table by ExceptionNum.

77 @param[in] ExceptionNum Exception number
84 IN UINTN ExceptionNum
93 return (VOID *) (IdtEntry[ExceptionNum].Bits.OffsetLow |
94 (((UINTN)IdtEntry[ExceptionNum].Bits.OffsetHigh) << 16) |
95 (((UINTN)IdtEntry[ExceptionNum].Bits.OffsetUpper) << 32));
99 Set exception handler in IDT table by ExceptionNum.
101 @param[in] ExceptionNum Exception number
107 IN UINTN ExceptionNum,
117 IdtEntry[ExceptionNum].Bits.OffsetLow = (UINT16)(UINTN)ExceptionHandler;
118 IdtEntry[ExceptionNum].Bits.OffsetHigh = (UINT16)((UINTN)ExceptionHandler >> 16);
119 IdtEntry[ExceptionNum].Bits.OffsetUpper = (UINT32)((UINTN)ExceptionHandler >> 32);