/external/llvm/test/CodeGen/X86/ |
powi.ll | 1 ; RUN: llc %s -march=x86 -mcpu=yonah -o - | grep mulsd | count 6
|
fdiv.ll | 6 ; CHECK: mulsd 14 ; CHECK: mulsd
|
lsr-static-addr.ll | 9 ; CHECK-NEXT: mulsd 19 ; ATOM-NEXT: mulsd
|
sse-scalar-fp-arith-2.ll | 94 ; SSE2: mulsd %xmm1, %xmm0 198 ; SSE2: mulsd %xmm0, %xmm1 302 ; SSE2: mulsd %xmm1, %xmm0 406 ; SSE2: mulsd %xmm0, %xmm1
|
lsr-reuse.ll | 13 ; CHECK: mulsd (%rdx), %xmm0 55 ; CHECK: mulsd -2048(%rdx), %xmm0 101 ; CHECK: mulsd (%rdx), %xmm0 146 ; CHECK: mulsd (%rdx), %xmm0 195 ; CHECK: mulsd (%rdx,%rax,8), %xmm0 230 ; CHECK: mulsd (%rdx,%rax,8), %xmm0 359 ; CHECK: mulsd (%r{{[^,]*}},%r{{[^,]*}},8), %xmm0 [all...] |
sse-scalar-fp-arith.ll | 108 ; SSE2: mulsd %xmm1, %xmm0 228 ; SSE2: mulsd %xmm0, %xmm1
|
/external/compiler-rt/lib/builtins/i386/ |
floatdidf.S | 26 mulsd REL_ADDR(twop32), %xmm1 // a_hi as a double (without rounding)
|
/external/chromium_org/v8/src/x64/ |
codegen-x64.cc | 589 __ mulsd(double_scratch, input); 597 __ mulsd(double_scratch, Operand(kScratchRegister, 5 * kDoubleSize)); 605 __ mulsd(input, double_scratch); 606 __ mulsd(result, input); 608 __ mulsd(result, Operand(kScratchRegister, 7 * kDoubleSize)); 611 __ mulsd(result, input);
|
/external/chromium_org/v8/src/ia32/ |
codegen-ia32.cc | 931 __ mulsd(double_scratch, input); 936 __ mulsd(double_scratch, ExpConstant(5)); 940 __ mulsd(input, double_scratch); 941 __ mulsd(result, input); 943 __ mulsd(result, ExpConstant(7)); 955 __ mulsd(result, input); [all...] |
assembler-ia32.h | 934 void mulsd(XMMRegister dst, XMMRegister src); 935 void mulsd(XMMRegister dst, const Operand& src); [all...] |
assembler-ia32.cc | 1955 void Assembler::mulsd(XMMRegister dst, XMMRegister src) { function in class:v8::internal::Assembler 1964 void Assembler::mulsd(XMMRegister dst, const Operand& src) { function in class:v8::internal::Assembler [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
ssewidth.asm | 288 mulsd xmm1, xmm2 label 289 mulsd xmm1, qword [rbx] label
|
avx.asm | 1058 mulsd xmm1, xmm2 label 1059 mulsd xmm1, [rax] label 1060 mulsd xmm1, qword [rax] label [all...] |
/external/valgrind/main/memcheck/tests/amd64/ |
sse_memory.stdout.exp | [all...] |
sse_memory.c | 313 TEST_INSN( &AllMask, SD,mulsd)
|
/external/valgrind/main/memcheck/tests/x86/ |
sse2_memory.stdout.exp | [all...] |
/art/compiler/utils/x86/ |
assembler_x86.h | 285 void mulsd(XmmRegister dst, XmmRegister src); 286 void mulsd(XmmRegister dst, const Address& src);
|
assembler_x86.cc | 462 void X86Assembler::mulsd(XmmRegister dst, XmmRegister src) { function in class:art::x86::X86Assembler 471 void X86Assembler::mulsd(XmmRegister dst, const Address& src) { function in class:art::x86::X86Assembler [all...] |
/external/valgrind/main/none/tests/amd64/ |
redundantRexW.c | 547 /* mulsd mem, reg f2 48 0f 59 1f rex.W mulsd (%rdi),%xmm3 */ 561 after_test( "rex.W mulsd (%rdi),%xmm3", regs, mem );
|
/external/llvm/lib/Target/X86/ |
README.txt | 1180 mulsd %xmm0, %xmm2 1182 mulsd %xmm3, %xmm3 1184 mulsd LCPI1_23, %xmm4 1186 mulsd %xmm3, %xmm4 1188 mulsd %xmm3, %xmm4 1190 mulsd %xmm3, %xmm4 1192 mulsd %xmm3, %xmm4 1194 mulsd %xmm3, %xmm4 1196 mulsd %xmm2, %xmm4 [all...] |
/art/compiler/utils/x86_64/ |
assembler_x86_64.h | 325 void mulsd(XmmRegister dst, XmmRegister src); 326 void mulsd(XmmRegister dst, const Address& src);
|
assembler_x86_64.cc | 515 void X86_64Assembler::mulsd(XmmRegister dst, XmmRegister src) { function in class:art::x86_64::X86_64Assembler 525 void X86_64Assembler::mulsd(XmmRegister dst, const Address& src) { function in class:art::x86_64::X86_64Assembler [all...] |
/external/chromium_org/v8/test/cctest/ |
test-assembler-ia32.cc | 246 __ mulsd(xmm0, xmm1);
|
test-disasm-ia32.cc | 401 __ mulsd(xmm1, xmm0);
|
test-disasm-x64.cc | 388 __ mulsd(xmm1, xmm0);
|