summaryrefslogtreecommitdiffstats
path: root/compiler/utils/x86/assembler_x86.cc
diff options
context:
space:
mode:
authorCalin Juravle <calin@google.com>2014-11-26 19:01:09 +0000
committerCalin Juravle <calin@google.com>2014-11-26 19:01:09 +0000
commit91debbc3da3e3376416e4394155d9f9e355255cb (patch)
treefd2181a2d4b8e7e8d26101a9a87b4f0c34fa990f /compiler/utils/x86/assembler_x86.cc
parentfd861249f31ab360c12dd1ffb131d50f02b0bfc6 (diff)
downloadart-91debbc3da3e3376416e4394155d9f9e355255cb.tar.gz
art-91debbc3da3e3376416e4394155d9f9e355255cb.tar.bz2
art-91debbc3da3e3376416e4394155d9f9e355255cb.zip
Revert "[optimizing compiler] Add CMP{L,G}_{FLOAT,DOUBLE}"
Fails on arm due to missing vmrs op after vcmp. I revert this instead of pushing the fix because I don't understand yet why it compiles with run-test but not with dex2oat. This reverts commit fd861249f31ab360c12dd1ffb131d50f02b0bfc6. Change-Id: Idc2d30f6a0f39ddd3596aa18a532ae90f8aaf62f
Diffstat (limited to 'compiler/utils/x86/assembler_x86.cc')
-rw-r--r--compiler/utils/x86/assembler_x86.cc17
1 files changed, 0 insertions, 17 deletions
diff --git a/compiler/utils/x86/assembler_x86.cc b/compiler/utils/x86/assembler_x86.cc
index b118f9a81a..a297ea3b6e 100644
--- a/compiler/utils/x86/assembler_x86.cc
+++ b/compiler/utils/x86/assembler_x86.cc
@@ -613,23 +613,6 @@ void X86Assembler::comisd(XmmRegister a, XmmRegister b) {
}
-void X86Assembler::ucomiss(XmmRegister a, XmmRegister b) {
- AssemblerBuffer::EnsureCapacity ensured(&buffer_);
- EmitUint8(0x0F);
- EmitUint8(0x2E);
- EmitXmmRegisterOperand(a, b);
-}
-
-
-void X86Assembler::ucomisd(XmmRegister a, XmmRegister b) {
- AssemblerBuffer::EnsureCapacity ensured(&buffer_);
- EmitUint8(0x66);
- EmitUint8(0x0F);
- EmitUint8(0x2E);
- EmitXmmRegisterOperand(a, b);
-}
-
-
void X86Assembler::sqrtsd(XmmRegister dst, XmmRegister src) {
AssemblerBuffer::EnsureCapacity ensured(&buffer_);
EmitUint8(0xF2);