Searched refs:movd (Results 1 - 10 of 10) sorted by relevance

/art/runtime/arch/x86/
H A Dquick_entrypoints_x86.S1338 movd %ebx, %xmm0
1340 movd %xmm0, %ebx
1387 movd %eax, %xmm0 // place return value also into floating point return value
1388 movd %edx, %xmm1
1404 movd %xmm7, %ecx // get target method index stored in xmm0
1497 movd %eax, %xmm0
1498 movd %edx, %xmm1
1522 movd %eax, %xmm0
1523 movd %edx, %xmm1
/art/compiler/optimizing/
H A Dintrinsics_x86.cc200 __ movd(output.AsRegisterPairLow<Register>(), temp);
202 __ movd(output.AsRegisterPairHigh<Register>(), temp);
204 __ movd(output.AsRegister<Register>(), input.AsFpuRegister<XmmRegister>());
215 __ movd(temp1, input.AsRegisterPairLow<Register>());
216 __ movd(temp2, input.AsRegisterPairHigh<Register>());
220 __ movd(output.AsFpuRegister<XmmRegister>(), input.AsRegister<Register>());
845 __ movd(inPlusPointFive, out);
1345 __ movd(output_lo, temp);
1347 __ movd(output_hi, temp);
1489 __ movd(temp
[all...]
H A Dcode_generator_x86.cc623 __ movd(destination.AsRegister<Register>(), source.AsFpuRegister<XmmRegister>());
630 __ movd(destination.AsFpuRegister<XmmRegister>(), source.AsRegister<Register>());
1318 __ movd(invoke->GetLocations()->GetTemp(1).AsFpuRegister<XmmRegister>(), temp);
1398 __ movd(mask, constant);
3310 __ movd(out.AsRegisterPairLow<Register>(), temp);
3312 __ movd(out.AsRegisterPairHigh<Register>(), temp);
3422 __ movd(temp1, value.AsRegisterPairLow<Register>());
3423 __ movd(temp2, value.AsRegisterPairHigh<Register>());
4117 __ movd(dest, temp);
4185 __ movd(re
[all...]
H A Dintrinsics_x86_64.cc180 __ movd(output.AsRegister<CpuRegister>(), input.AsFpuRegister<XmmRegister>(), is64bit);
186 __ movd(output.AsFpuRegister<XmmRegister>(), input.AsRegister<CpuRegister>(), is64bit);
H A Dcode_generator_x86_64.cc624 __ movd(destination.AsRegister<CpuRegister>(), source.AsFpuRegister<XmmRegister>());
635 __ movd(destination.AsFpuRegister<XmmRegister>(), source.AsRegister<CpuRegister>());
4050 __ movd(reg, CpuRegister(TMP));
4056 __ movd(reg, CpuRegister(TMP));
4079 __ movd(CpuRegister(TMP), source.AsFpuRegister<XmmRegister>());
4081 __ movd(destination.AsFpuRegister<XmmRegister>(), CpuRegister(TMP));
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h367 void movd(XmmRegister dst, CpuRegister src); // Note: this is the r64 version, formally movq.
368 void movd(CpuRegister dst, XmmRegister src); // Note: this is the r64 version, formally movq.
369 void movd(XmmRegister dst, CpuRegister src, bool is64bit);
370 void movd(CpuRegister dst, XmmRegister src, bool is64bit);
H A Dassembler_x86_64.cc407 void X86_64Assembler::movd(XmmRegister dst, CpuRegister src) { function in class:art::x86_64::X86_64Assembler
408 movd(dst, src, true);
411 void X86_64Assembler::movd(CpuRegister dst, XmmRegister src) { function in class:art::x86_64::X86_64Assembler
412 movd(dst, src, true);
415 void X86_64Assembler::movd(XmmRegister dst, CpuRegister src, bool is64bit) { function in class:art::x86_64::X86_64Assembler
424 void X86_64Assembler::movd(CpuRegister dst, XmmRegister src, bool is64bit) { function in class:art::x86_64::X86_64Assembler
H A Dassembler_x86_64_test.cc820 DriverStr(RepeatFR(&x86_64::X86_64Assembler::movd, "movd %{reg2}, %{reg1}"), "movd.1");
824 DriverStr(RepeatRF(&x86_64::X86_64Assembler::movd, "movd %{reg2}, %{reg1}"), "movd.2");
/art/compiler/utils/x86/
H A Dassembler_x86.h263 void movd(XmmRegister dst, Register src);
264 void movd(Register dst, XmmRegister src);
H A Dassembler_x86.cc321 void X86Assembler::movd(XmmRegister dst, Register src) { function in class:art::x86::X86Assembler
330 void X86Assembler::movd(Register dst, XmmRegister src) { function in class:art::x86::X86Assembler

Completed in 95 milliseconds