changeset ec124ac0984b in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=ec124ac0984b
description:
        X86: Rename oszForPseudoDesc maxOsz to reflect its more general use.

diffstat:

2 files changed, 9 insertions(+), 9 deletions(-)
src/arch/x86/isa/insts/system/segmentation.py |   16 ++++++++--------
src/arch/x86/isa/microasm.isa                 |    2 +-

diffs (87 lines):

diff -r ecc99b9609c1 -r ec124ac0984b 
src/arch/x86/isa/insts/system/segmentation.py
--- a/src/arch/x86/isa/insts/system/segmentation.py     Wed Feb 25 10:20:25 
2009 -0800
+++ b/src/arch/x86/isa/insts/system/segmentation.py     Wed Feb 25 10:20:30 
2009 -0800
@@ -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_P
 {
-    .adjust_env oszForPseudoDesc
+    .adjust_env maxOsz
 
     rdip t7
     # Get the limit
@@ -86,7 +86,7 @@
 
 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_P
 {
-    .adjust_env oszForPseudoDesc
+    .adjust_env maxOsz
 
     rdip t7
     # Get the limit
@@ -113,7 +113,7 @@
 
 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_P
 {
-    .adjust_env oszForPseudoDesc
+    .adjust_env maxOsz
 
     rdip t7
     # Get the limit
@@ -143,7 +143,7 @@
 
 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_P
 {
-    .adjust_env oszForPseudoDesc
+    .adjust_env maxOsz
 
     rdip t7
     # Get the limit
diff -r ecc99b9609c1 -r ec124ac0984b src/arch/x86/isa/microasm.isa
--- a/src/arch/x86/isa/microasm.isa     Wed Feb 25 10:20:25 2009 -0800
+++ b/src/arch/x86/isa/microasm.isa     Wed Feb 25 10:20:30 2009 -0800
@@ -173,7 +173,7 @@
         env.dataSize = 8;
     '''
 
-    assembler.symbols["oszForPseudoDesc"] = '''
+    assembler.symbols["maxOsz"] = '''
     if (machInst.mode.submode == SixtyFourBitMode)
         env.dataSize = 8;
     else
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to