summaryrefslogtreecommitdiff
path: root/compiler/utils/x86/assembler_x86.h
diff options
context:
space:
mode:
author Aart Bik <ajcbik@google.com> 2016-08-01 14:11:20 -0700
committer Aart Bik <ajcbik@google.com> 2016-08-01 14:11:20 -0700
commit18ba121e7d706ce03b5b52f632b7c14cff685eab (patch)
tree6ae5b61dcbe9a208dfb07d311052e3bb31477f57 /compiler/utils/x86/assembler_x86.h
parent6e5e3b2e914cf4bdc5f17a6011fc2b1937eb9641 (diff)
Added direct memory operand support for comiss/sd on x86.
Rationale: Memory operands allows for shorter instruction sequences. Something that may be used e.g. the upcoming implementation of the round intrinsic. Bug=26327751 Change-Id: Ifd976ed86917de1879fa036cbbbff5edf4fb741d Test: assembler_x86_test
Diffstat (limited to 'compiler/utils/x86/assembler_x86.h')
-rw-r--r--compiler/utils/x86/assembler_x86.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/utils/x86/assembler_x86.h b/compiler/utils/x86/assembler_x86.h
index fa616620b6..fba6c1c531 100644
--- a/compiler/utils/x86/assembler_x86.h
+++ b/compiler/utils/x86/assembler_x86.h
@@ -423,7 +423,9 @@ class X86Assembler FINAL : public Assembler {
void cvtdq2pd(XmmRegister dst, XmmRegister src);
void comiss(XmmRegister a, XmmRegister b);
+ void comiss(XmmRegister a, const Address& b);
void comisd(XmmRegister a, XmmRegister b);
+ void comisd(XmmRegister a, const Address& b);
void ucomiss(XmmRegister a, XmmRegister b);
void ucomiss(XmmRegister a, const Address& b);
void ucomisd(XmmRegister a, XmmRegister b);