beautypg.com

Intel 253666-024US User Manual

Page 524

background image

3-478 Vol. 2A

INT n/INTO/INT 3—Call to Interrupt Procedure

INSTRUCTION SET REFERENCE, A-M

FI;
IF 32-bit gate

THEN

Push(far pointer to old stack);
(* Old SS and ESP, 3 words padded to 4 *)
Push(EFLAGS);
Push(far pointer to return instruction);
(* Old CS and EIP, 3 words padded to 4 *)
Push(ErrorCode); (* If needed, 4 bytes *)

ELSE

IF 16-bit gate

THEN

Push(far pointer to old stack);
(* Old SS and SP, 2 words *)
Push(EFLAGS(15-0]);
Push(far pointer to return instruction);
(* Old CS and IP, 2 words *)
Push(ErrorCode); (* If needed, 2 bytes *)

ELSE (* 64-bit gate *)

Push(far pointer to old stack);

(* Old SS and SP, each an 8-byte push *)
Push(RFLAGS); (* 8-byte push *)
Push(far pointer to return instruction);
(* Old CS and RIP, each an 8-byte push *)
Push(ErrorCode); (* If needed, 8-bytes *)

FI;

FI;
CPL ← CodeSegmentDescriptor(DPL);

CS(RPL) ← CPL;

IF interrupt gate

THEN IF ← 0 (* Interrupt flag set to 0: disabled *); FI;

TF ← 0;

VM ← 0;

RF ← 0;

NT ← 0;

END;
INTERRUPT-FROM-VIRTUAL-8086-MODE:

(* Check segment selector and descriptor for privilege level 0 stack in current TSS *)
IF current TSS is 32-bit TSS

THEN

TSSstackAddress ← (new code segment DPL ∗ 8) + 4;

IF (TSSstackAddress + 7) > TSS limit

THEN #TS(current TSS selector); FI;

NewSS ← TSSstackAddress + 4;