Make POP special case its dataSize to default to 64 bits in 64 bit mode.
authorGabe Black <gblack@eecs.umich.edu>
Thu, 14 Jun 2007 13:52:08 +0000 (13:52 +0000)
committerGabe Black <gblack@eecs.umich.edu>
Thu, 14 Jun 2007 13:52:08 +0000 (13:52 +0000)
--HG--
extra : convert_revision : 5c6251d962d9997676ffc795bb92eeb588caed39

src/arch/x86/isa/insts/data_transfer/stack_operations.py

index 3223d9b0f5eb4c68acbf0ce3b29cb703076edbe0..fff0f749f6911c59460fb33784b8e733e56d0217 100644 (file)
@@ -55,6 +55,7 @@
 
 microcode = '''
 def macroop POP {
+    .adjust_env "if(machInst.mode.submode == SixtyFourBitMode && env.dataSize == 4) env.dataSize = 8\;"
     # There needs to be a load here to actually "pop" the data
     addi "INTREG_RSP", "INTREG_RSP", "env.dataSize"
 };