summaryrefslogtreecommitdiff
path: root/src/arch/x86/isa/insts/system/segmentation.py
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-02-25 10:20:10 -0800
committerGabe Black <gblack@eecs.umich.edu>2009-02-25 10:20:10 -0800
commit8813168b5a3830b0b0a65b0342aca7b607e74b42 (patch)
treec749075f955713dbbfb3c4333a6aad5065964731 /src/arch/x86/isa/insts/system/segmentation.py
parent28a35a6adbe083bbe7ff34dfe29d57a408f18bdb (diff)
downloadgem5-8813168b5a3830b0b0a65b0342aca7b607e74b42.tar.xz
X86: Do a merge for the zero extension microop.
Diffstat (limited to 'src/arch/x86/isa/insts/system/segmentation.py')
-rw-r--r--src/arch/x86/isa/insts/system/segmentation.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/x86/isa/insts/system/segmentation.py b/src/arch/x86/isa/insts/system/segmentation.py
index c2bb46b7c..2de79f935 100644
--- a/src/arch/x86/isa/insts/system/segmentation.py
+++ b/src/arch/x86/isa/insts/system/segmentation.py
@@ -92,7 +92,7 @@ def macroop LGDT_16_M
ld t1, seg, sib, disp, dataSize=2
# Get the base
ld t2, seg, sib, 'adjustedDisp + 2', dataSize=4
- zexti t2, t2, 23
+ zexti t2, t2, 23, dataSize=8
wrbase tsg, t2
wrlimit tsg, t1
};
@@ -106,7 +106,7 @@ def macroop LGDT_16_P
ld t1, seg, riprel, disp, dataSize=2
# Get the base
ld t2, seg, riprel, 'adjustedDisp + 2', dataSize=4
- zexti t2, t2, 23
+ zexti t2, t2, 23, dataSize=8
wrbase tsg, t2
wrlimit tsg, t1
};
@@ -149,7 +149,7 @@ def macroop LIDT_16_M
ld t1, seg, sib, disp, dataSize=2
# Get the base
ld t2, seg, sib, 'adjustedDisp + 2', dataSize=4
- zexti t2, t2, 23
+ zexti t2, t2, 23, dataSize=8
wrbase idtr, t2
wrlimit idtr, t1
};
@@ -163,7 +163,7 @@ def macroop LIDT_16_P
ld t1, seg, riprel, disp, dataSize=2
# Get the base
ld t2, seg, riprel, 'adjustedDisp + 2', dataSize=4
- zexti t2, t2, 23
+ zexti t2, t2, 23, dataSize=8
wrbase idtr, t2
wrlimit idtr, t1
};