X86: Implement the stupd microop ("store with update", not "stupid") and use it in...
authorGabe Black <gblack@eecs.umich.edu>
Mon, 22 Oct 2007 01:44:50 +0000 (18:44 -0700)
committerGabe Black <gblack@eecs.umich.edu>
Mon, 22 Oct 2007 01:44:50 +0000 (18:44 -0700)
--HG--
extra : convert_revision : 9151f701162d31ef26298497467c42b7b0ed85d5

src/arch/x86/isa/insts/general_purpose/data_transfer/stack_operations.py
src/arch/x86/isa/microops/ldstop.isa

index 4c4aec000ec80f42c228c9c73be9259fc605bbf1..3ed9d8bffd01f7a1d97c9999c354115230ae2eba 100644 (file)
@@ -169,8 +169,7 @@ def macroop ENTER_I_I {
     # t1 is now the masked nesting level, and t2 is the amount of storage.
 
     # Push rbp.
-    st rbp, ss, [1, t0, rsp], "-env.dataSize"
-    subi rsp, rsp, dsz
+    stupd rbp, ss, [1, t0, rsp], "-env.dataSize"
 
     # Save the stack pointer for later
     mov t6, t6, rsp
@@ -186,8 +185,7 @@ def macroop ENTER_I_I {
     limm t4, "ULL(-1)", dataSize=8
 topOfLoop:
     ld t5, ss, [dsz, t4, rbp]
-    st t5, ss, [1, t0, rsp], "-env.dataSize"
-    subi rsp, rsp, dsz
+    stupd t5, ss, [1, t0, rsp], "-env.dataSize"
 
     # If we're not done yet, loop
     subi t4, t4, 1, dataSize=8
@@ -196,8 +194,7 @@ topOfLoop:
 
 bottomOfLoop:
     # Push the old rbp onto the stack
-    st t6, ss, [1, t0, rsp], "-env.dataSize"
-    subi rsp, rsp, dsz
+    stupd t6, ss, [1, t0, rsp], "-env.dataSize"
 
 skipLoop:
     sub rsp, rsp, t2
index 32fefb5fad62c5c82b5a6c1d9d03ea6995ee8c92..c9ace47905f3d64eff828285a874677e764c175c 100644 (file)
@@ -422,6 +422,11 @@ let {{
 
     defineMicroStoreOp('St', 'Mem = Data;')
     defineMicroStoreOp('Stfp', 'Mem = FpData.uqw;')
+    defineMicroStoreOp('Stupd', '''
+            Mem = Data;
+            Base = merge(Base, EA - SegBase, addressSize);
+            ''');
+
 
     iop = InstObjParams("lea", "Lea", 'X86ISA::LdStOp',
             {"code": "Data = merge(Data, EA, dataSize);",