diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-02-25 10:20:30 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-02-25 10:20:30 -0800 |
commit | c39ed53d05be42a83b0bd9b4cc3e12fb8864f469 (patch) | |
tree | c83b4bef74acaf0532fe9cc73085307f151639f8 | |
parent | 3ca2451d811ae7dc2e27923e1af575b6b784ceb9 (diff) | |
download | gem5-c39ed53d05be42a83b0bd9b4cc3e12fb8864f469.tar.xz |
X86: Rename oszForPseudoDesc maxOsz to reflect its more general use.
-rw-r--r-- | src/arch/x86/isa/insts/system/segmentation.py | 16 | ||||
-rw-r--r-- | src/arch/x86/isa/microasm.isa | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/arch/x86/isa/insts/system/segmentation.py b/src/arch/x86/isa/insts/system/segmentation.py index 2de79f935..7c13765ca 100644 --- a/src/arch/x86/isa/insts/system/segmentation.py +++ b/src/arch/x86/isa/insts/system/segmentation.py @@ -56,7 +56,7 @@ microcode = ''' def macroop LGDT_M { - .adjust_env oszForPseudoDesc + .adjust_env maxOsz # Get the limit ld t1, seg, sib, disp, dataSize=2 @@ -68,7 +68,7 @@ def macroop LGDT_M def macroop LGDT_P { - .adjust_env oszForPseudoDesc + .adjust_env maxOsz rdip t7 # Get the limit @@ -86,7 +86,7 @@ def macroop LGDT_P def macroop LGDT_16_M { - .adjust_env oszForPseudoDesc + .adjust_env maxOsz # Get the limit ld t1, seg, sib, disp, dataSize=2 @@ -99,7 +99,7 @@ def macroop LGDT_16_M def macroop LGDT_16_P { - .adjust_env oszForPseudoDesc + .adjust_env maxOsz rdip t7 # Get the limit @@ -113,7 +113,7 @@ def macroop LGDT_16_P def macroop LIDT_M { - .adjust_env oszForPseudoDesc + .adjust_env maxOsz # Get the limit ld t1, seg, sib, disp, dataSize=2 @@ -125,7 +125,7 @@ def macroop LIDT_M def macroop LIDT_P { - .adjust_env oszForPseudoDesc + .adjust_env maxOsz rdip t7 # Get the limit @@ -143,7 +143,7 @@ def macroop LIDT_P def macroop LIDT_16_M { - .adjust_env oszForPseudoDesc + .adjust_env maxOsz # Get the limit ld t1, seg, sib, disp, dataSize=2 @@ -156,7 +156,7 @@ def macroop LIDT_16_M def macroop LIDT_16_P { - .adjust_env oszForPseudoDesc + .adjust_env maxOsz rdip t7 # Get the limit diff --git a/src/arch/x86/isa/microasm.isa b/src/arch/x86/isa/microasm.isa index fe1d38ff1..00baed768 100644 --- a/src/arch/x86/isa/microasm.isa +++ b/src/arch/x86/isa/microasm.isa @@ -173,7 +173,7 @@ let {{ env.dataSize = 8; ''' - assembler.symbols["oszForPseudoDesc"] = ''' + assembler.symbols["maxOsz"] = ''' if (machInst.mode.submode == SixtyFourBitMode) env.dataSize = 8; else |