X86: Read the LDT/GDT at CPL0 when executing an iret.
authorTim Harris <tharris@microsoft.com>
Mon, 7 Feb 2011 23:05:28 +0000 (15:05 -0800)
committerTim Harris <tharris@microsoft.com>
Mon, 7 Feb 2011 23:05:28 +0000 (15:05 -0800)
During iret access LDT/GDT at CPL0 rather than after transition to user mode
(if I'm reading the Intel IA-64 architecture spec correctly, the contents of
the descriptor table are read before the CPL is updated).

src/arch/x86/isa/insts/general_purpose/control_transfer/interrupts_and_exceptions.py

index f8bafa540fa8004ae1b4fdf757e0b06bada6c0d3..19a344008fafc968588200a77bbd80eae9e28a7a 100644 (file)
@@ -102,10 +102,10 @@ protToVirtFallThrough:
     andi t6, t2, 0xF8, dataSize=8
     andi t0, t2, 0x4, flags=(EZF,), dataSize=2
     br label("globalCSDescriptor"), flags=(CEZF,)
-    ld t8, tsl, [1, t0, t6], dataSize=8
+    ld t8, tsl, [1, t0, t6], dataSize=8, atCPL0=True
     br label("processCSDescriptor")
 globalCSDescriptor:
-    ld t8, tsg, [1, t0, t6], dataSize=8
+    ld t8, tsg, [1, t0, t6], dataSize=8, atCPL0=True
 processCSDescriptor:
     chks t2, t6, dataSize=8
 
@@ -159,10 +159,10 @@ doPopStackStuff:
     andi t7, t9, 0xF8, dataSize=8
     andi t0, t9, 0x4, flags=(EZF,), dataSize=2
     br label("globalSSDescriptor"), flags=(CEZF,)
-    ld t7, tsl, [1, t0, t7], dataSize=8
+    ld t7, tsl, [1, t0, t7], dataSize=8, atCPL0=True
     br label("processSSDescriptor")
 globalSSDescriptor:
-    ld t7, tsg, [1, t0, t7], dataSize=8
+    ld t7, tsg, [1, t0, t7], dataSize=8, atCPL0=True
 processSSDescriptor:
     chks t9, t7, dataSize=8