Searched defs:Move (Results 1 - 7 of 7) sorted by relevance

/art/compiler/utils/
H A Dassembler.h121 void Move(size_t newposition, size_t oldposition, size_t size) { function in class:art::AssemblerBuffer
122 // Move a chunk of the buffer from oldposition to newposition.
430 virtual void Move(ManagedRegister dest, ManagedRegister src, size_t size) = 0;
/art/compiler/utils/arm64/
H A Dassembler_arm64.cc328 void Arm64Assembler::Move(ManagedRegister m_dst, ManagedRegister m_src, size_t size) { function in class:art::arm64::Arm64Assembler
587 // Move this logic in add constants with flags.
/art/compiler/utils/x86/
H A Dassembler_x86.cc2174 void X86Assembler::Move(ManagedRegister mdest, ManagedRegister msrc, size_t size) { function in class:art::x86::X86Assembler
2195 UNIMPLEMENTED(FATAL) << ": Move " << dest << ", " << src;
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc2928 void X86_64Assembler::Move(ManagedRegister mdest, ManagedRegister msrc, size_t size) { function in class:art::x86_64::X86_64Assembler
2949 UNIMPLEMENTED(FATAL) << ": Move " << dest << ", " << src;
/art/compiler/utils/mips/
H A Dassembler_mips.cc1331 void MipsAssembler::Move(Register rd, Register rs) { function in class:art::mips::MipsAssembler
1336 Move(rd, ZERO);
1380 Move(reg_hi, reg_lo);
1996 // Move the code residing between branch placeholders.
2001 buffer_.Move(branch.GetEndLocation(), branch.GetOldEndLocation(), size);
2653 void MipsAssembler::Move(ManagedRegister mdest, ManagedRegister msrc, size_t size) { function in class:art::mips::MipsAssembler
2659 Move(dest.AsCoreRegister(), src.AsCoreRegister());
2676 Move(dest.AsRegisterPairLow(), src.AsRegisterPairLow());
2677 Move(dest.AsRegisterPairHigh(), src.AsRegisterPairHigh());
2679 Move(des
[all...]
/art/compiler/utils/mips64/
H A Dassembler_mips64.cc1023 void Mips64Assembler::Move(GpuRegister rd, GpuRegister rs) { function in class:art::mips64::Mips64Assembler
1028 Move(rd, ZERO);
1664 // Move the code residing between branch placeholders.
1669 buffer_.Move(branch.GetEndLocation(), branch.GetOldEndLocation(), size);
2190 void Mips64Assembler::Move(ManagedRegister mdest, ManagedRegister msrc, size_t size) { function in class:art::mips64::Mips64Assembler
2196 Move(dest.AsGpuRegister(), src.AsGpuRegister());
2437 Move(tr.AsMips64().AsGpuRegister(), S1);
2463 Move(A0, exception->scratch_.AsGpuRegister());
/art/compiler/optimizing/
H A Dcode_generator_x86_64.cc253 // Move the class to the desired location.
256 x86_64_codegen->Move(out, Location::RegisterLocation(RAX));
302 x86_64_codegen->Move(locations->Out(), Location::RegisterLocation(RAX));
362 x86_64_codegen->Move(locations->Out(), Location::RegisterLocation(RAX));
476 x86_64_codegen->Move(Location::RegisterLocation(calling_convention.GetRegisterAt(0)), obj_);
482 x86_64_codegen->Move(out_, Location::RegisterLocation(RAX));
630 x86_64_codegen->Move(out_, Location::RegisterLocation(RAX));
691 x86_64_codegen->Move(Location::RegisterLocation(calling_convention.GetRegisterAt(0)), root_);
697 x86_64_codegen->Move(out_, Location::RegisterLocation(RAX));
1123 void CodeGeneratorX86_64::Move(Locatio function in class:art::x86_64::CodeGeneratorX86_64
[all...]

Completed in 2477 milliseconds