summaryrefslogtreecommitdiff
path: root/src/arch/x86/isa/insts/simd128/floating_point/compare/compare_and_write_rflags.py
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-08-17 18:15:23 -0700
committerGabe Black <gblack@eecs.umich.edu>2009-08-17 18:15:23 -0700
commit191590bcc4fcdc08da34c94723ade57f8eb9e948 (patch)
treeb1c01ce95967f15644644948ba78421c64950019 /src/arch/x86/isa/insts/simd128/floating_point/compare/compare_and_write_rflags.py
parent33cb4c2f09d7ad21cf37bab6ce1f846a049e121e (diff)
downloadgem5-191590bcc4fcdc08da34c94723ade57f8eb9e948.tar.xz
X86: Ignore the size part of XMM/MMX operands. The instructions know what they want.
Diffstat (limited to 'src/arch/x86/isa/insts/simd128/floating_point/compare/compare_and_write_rflags.py')
-rw-r--r--src/arch/x86/isa/insts/simd128/floating_point/compare/compare_and_write_rflags.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/isa/insts/simd128/floating_point/compare/compare_and_write_rflags.py b/src/arch/x86/isa/insts/simd128/floating_point/compare/compare_and_write_rflags.py
index 0f6ef2ba2..2e22f71eb 100644
--- a/src/arch/x86/isa/insts/simd128/floating_point/compare/compare_and_write_rflags.py
+++ b/src/arch/x86/isa/insts/simd128/floating_point/compare/compare_and_write_rflags.py
@@ -63,13 +63,13 @@ def macroop UCOMISD_XMM_XMM {
};
def macroop UCOMISD_XMM_M {
- ldfp ufp1, seg, sib, disp
+ ldfp ufp1, seg, sib, disp, dataSize=8
compfp xmml, ufp1
};
def macroop UCOMISD_XMM_P {
rdip t7
- ldfp ufp1, seg, riprel, disp
+ ldfp ufp1, seg, riprel, disp, dataSize=8
compfp xmml, ufp1
};
'''