Home
last modified time | relevance | path

Searched refs:roundsd (Results 1 – 19 of 19) sorted by relevance

/external/llvm/test/CodeGen/X86/
Drounding-ops.ll22 ; CHECK-SSE: roundsd $9
48 ; CHECK-SSE: roundsd $12
74 ; CHECK-SSE: roundsd $10
100 ; CHECK-SSE: roundsd $4
126 ; CHECK-SSE: roundsd $11
Dsse41-intrinsics-x86.ll267 ; CHECK: roundsd
Dstack-folding-fp-sse42.ll897 ;CHECK: roundsd $9, {{-?[0-9]*}}(%rsp), {{%xmm[0-9][0-9]*}} {{.*#+}} 8-byte Folded Reload
/external/llvm/test/MC/X86/
Dx86-64.s530 roundsd $0xE, %xmm0, %xmm0 // CHECK: encoding: [0x66,0x0f,0x3a,0x0b,0xc0,0x0e] label
/external/elfutils/libcpu/
DChangeLog85 and roundsd opcodes.
/external/v8/src/crankshaft/ia32/
Dlithium-codegen-ia32.cc3171 __ roundsd(output_reg, input_reg, kRoundDown); in DoMathFloorD() local
3192 __ roundsd(xmm_scratch, input_reg, kRoundDown); in DoMathFloorI() local
3244 __ roundsd(output_reg, input_reg, kRoundUp); in DoMathRoundD() local
/external/v8/src/ia32/
Dassembler-ia32.h1027 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode);
Dassembler-ia32.cc2314 void Assembler::roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode) { in roundsd() function in v8::internal::Assembler
/external/v8/src/compiler/ia32/
Dcode-generator-ia32.cc1012 __ roundsd(i.OutputDoubleRegister(), i.InputDoubleRegister(0), mode); in AssembleArchInstruction() local
/external/elfutils/libcpu/defs/
Di386966 01100110,00001111,00111010,00001011,{Mod}{xmmreg}{R_m},{imm8}:roundsd {imm8},{Mod}{R_m},{xmmreg}
/external/v8/src/x64/
Dassembler-x64.h1166 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode);
Dassembler-x64.cc3702 void Assembler::roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode) { in roundsd() function in v8::internal::Assembler
Dmacro-assembler-x64.cc2869 roundsd(dst, src, mode); in Roundsd()
/external/elfutils/tests/
Dtestfile44.expect.bz21testfile44.o: elf32-elf_i386 2 3Disassembly of section .text: 4 5 0 ...
Dtestfile45.expect.bz21testfile45.o: elf64-elf_x86_64 2 3Disassembly of section .text: 4 5 0 ...
DChangeLog1647 roundss, roundps, roundpd, and roundsd.
/external/valgrind/
DNEWS1827 273729 == 283000 (Illegal opcode for SSE2 "roundsd" instruction)
2186 "roundsd" on x86_64
/external/llvm/lib/Target/X86/
DX86InstrSSE.td6513 // FP round - roundss, roundps, roundsd, roundpd
/external/v8/
DChangeLog16099 Sped up Math.floor by using SSE 4.1 roundsd instruction on ia32.