Home
last modified time | relevance | path

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

/art/runtime/arch/x86/
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/
Dintrinsics_x86.cc200 __ movd(output.AsRegisterPairLow<Register>(), temp); in MoveFPToInt() local
202 __ movd(output.AsRegisterPairHigh<Register>(), temp); in MoveFPToInt() local
204 __ movd(output.AsRegister<Register>(), input.AsFpuRegister<XmmRegister>()); in MoveFPToInt() local
215 __ movd(temp1, input.AsRegisterPairLow<Register>()); in MoveIntToFP() local
216 __ movd(temp2, input.AsRegisterPairHigh<Register>()); in MoveIntToFP() local
220 __ movd(output.AsFpuRegister<XmmRegister>(), input.AsRegister<Register>()); in MoveIntToFP() local
845 __ movd(inPlusPointFive, out); in VisitMathRoundFloat() local
1345 __ movd(output_lo, temp); in GenUnsafeGet() local
1347 __ movd(output_hi, temp); in GenUnsafeGet() local
1489 __ movd(temp1, value_lo); in GenUnsafePut() local
[all …]
Dcode_generator_x86.cc623 __ movd(destination.AsRegister<Register>(), source.AsFpuRegister<XmmRegister>()); in Move32() local
630 __ movd(destination.AsFpuRegister<XmmRegister>(), source.AsRegister<Register>()); in Move32() local
1318 __ movd(invoke->GetLocations()->GetTemp(1).AsFpuRegister<XmmRegister>(), temp); in VisitInvokeInterface() local
1398 __ movd(mask, constant); in VisitNeg() local
3310 __ movd(out.AsRegisterPairLow<Register>(), temp); in HandleFieldGet() local
3312 __ movd(out.AsRegisterPairHigh<Register>(), temp); in HandleFieldGet() local
3422 __ movd(temp1, value.AsRegisterPairLow<Register>()); in HandleFieldSet() local
3423 __ movd(temp2, value.AsRegisterPairHigh<Register>()); in HandleFieldSet() local
4117 __ movd(dest, temp); in EmitMove() local
4185 __ movd(reg, temp_reg); in Exchange32() local
Dcode_generator_x86_64.cc624 __ movd(destination.AsRegister<CpuRegister>(), source.AsFpuRegister<XmmRegister>()); in Move() local
635 __ movd(destination.AsFpuRegister<XmmRegister>(), source.AsRegister<CpuRegister>()); in Move() local
4050 __ movd(reg, CpuRegister(TMP)); in Exchange32() local
4056 __ movd(reg, CpuRegister(TMP)); in Exchange64() local
4079 __ movd(CpuRegister(TMP), source.AsFpuRegister<XmmRegister>()); in EmitSwap() local
4081 __ movd(destination.AsFpuRegister<XmmRegister>(), CpuRegister(TMP)); in EmitSwap() local
Dintrinsics_x86_64.cc180 __ movd(output.AsRegister<CpuRegister>(), input.AsFpuRegister<XmmRegister>(), is64bit); in MoveFPToInt() local
186 __ movd(output.AsFpuRegister<XmmRegister>(), input.AsRegister<CpuRegister>(), is64bit); in MoveIntToFP() local
/art/compiler/utils/x86_64/
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);
Dassembler_x86_64.cc407 void X86_64Assembler::movd(XmmRegister dst, CpuRegister src) { in movd() function in art::x86_64::X86_64Assembler
408 movd(dst, src, true); in movd()
411 void X86_64Assembler::movd(CpuRegister dst, XmmRegister src) { in movd() function in art::x86_64::X86_64Assembler
412 movd(dst, src, true); in movd()
415 void X86_64Assembler::movd(XmmRegister dst, CpuRegister src, bool is64bit) { in movd() function in art::x86_64::X86_64Assembler
424 void X86_64Assembler::movd(CpuRegister dst, XmmRegister src, bool is64bit) { in movd() function in art::x86_64::X86_64Assembler
Dassembler_x86_64_test.cc820 DriverStr(RepeatFR(&x86_64::X86_64Assembler::movd, "movd %{reg2}, %{reg1}"), "movd.1"); in TEST_F()
824 DriverStr(RepeatRF(&x86_64::X86_64Assembler::movd, "movd %{reg2}, %{reg1}"), "movd.2"); in TEST_F()
/art/compiler/utils/x86/
Dassembler_x86.h263 void movd(XmmRegister dst, Register src);
264 void movd(Register dst, XmmRegister src);
Dassembler_x86.cc321 void X86Assembler::movd(XmmRegister dst, Register src) { in movd() function in art::x86::X86Assembler
330 void X86Assembler::movd(Register dst, XmmRegister src) { in movd() function in art::x86::X86Assembler