Home
last modified time | relevance | path

Searched defs:movd (Results 1 – 6 of 6) sorted by relevance

/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.cc407 void X86_64Assembler::movd(XmmRegister dst, CpuRegister src) { in movd() function in art::x86_64::X86_64Assembler
411 void X86_64Assembler::movd(CpuRegister dst, XmmRegister src) { in movd() function in art::x86_64::X86_64Assembler
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
/art/compiler/utils/x86/
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