changeset 21047815f78e in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=21047815f78e
description:
        X86: Replace "DISPLACEMENT" with disp in movhpd.

diffstat:

1 file changed, 4 insertions(+), 4 deletions(-)
src/arch/x86/isa/insts/simd128/floating_point/data_transfer/move.py |    8 
++++----

diffs (29 lines):

diff -r 4863725cb4d9 -r 21047815f78e 
src/arch/x86/isa/insts/simd128/floating_point/data_transfer/move.py
--- a/src/arch/x86/isa/insts/simd128/floating_point/data_transfer/move.py       
Tue Oct 27 14:11:06 2009 -0400
+++ b/src/arch/x86/isa/insts/simd128/floating_point/data_transfer/move.py       
Tue Oct 27 23:50:25 2009 -0700
@@ -187,21 +187,21 @@
 };
 
 def macroop MOVHPD_XMM_M {
-    ldfp xmmh, seg, sib, "DISPLACEMENT", dataSize=8
+    ldfp xmmh, seg, sib, disp, dataSize=8
 };
 
 def macroop MOVHPD_XMM_P {
     rdip t7
-    ldfp xmmh, seg, riprel, "DISPLACEMENT", dataSize=8
+    ldfp xmmh, seg, riprel, disp, dataSize=8
 };
 
 def macroop MOVHPD_M_XMM {
-    stfp xmmh, seg, sib, "DISPLACEMENT", dataSize=8
+    stfp xmmh, seg, sib, disp, dataSize=8
 };
 
 def macroop MOVHPD_P_XMM {
     rdip t7
-    stfp xmmh, seg, riprel, "DISPLACEMENT", dataSize=8
+    stfp xmmh, seg, riprel, disp, dataSize=8
 };
 
 def macroop MOVLPS_XMM_M {
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to