/art/compiler/optimizing/ |
D | code_generator_x86.cc | 261 __ movl(Address(ESP, kCurrentMethodStackOffset), EAX); in GenerateFrameEntry() local 273 __ movl(reg, Address(ESP, kCurrentMethodStackOffset)); in LoadCurrentMethod() local 349 __ movl(destination.AsX86().AsCpuRegister(), source.AsX86().AsCpuRegister()); in Move32() local 352 __ movl(destination.AsX86().AsCpuRegister(), Address(ESP, source.GetStackIndex())); in Move32() local 356 __ movl(Address(ESP, destination.GetStackIndex()), source.AsX86().AsCpuRegister()); in Move32() local 371 __ movl(destination.AsX86().AsRegisterPairLow(), source.AsX86().AsRegisterPairLow()); in Move64() local 372 __ movl(destination.AsX86().AsRegisterPairHigh(), source.AsX86().AsRegisterPairHigh()); in Move64() local 376 __ movl(destination.AsX86().AsRegisterPairLow(), in Move64() local 378 __ movl(destination.AsX86().AsRegisterPairHigh(), Address(ESP, in Move64() local 382 __ movl(destination.AsX86().AsRegisterPairLow(), Address(ESP, source.GetStackIndex())); in Move64() local [all …]
|
D | code_generator_x86_64.cc | 232 __ movl(Address(CpuRegister(RSP), kCurrentMethodStackOffset), CpuRegister(RDI)); in GenerateFrameEntry() local 245 __ movl(reg, Address(CpuRegister(RSP), kCurrentMethodStackOffset)); in LoadCurrentMethod() local 282 …__ movl(destination.AsX86_64().AsCpuRegister(), Address(CpuRegister(RSP), source.GetStackIndex())); in Move() local 289 …__ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), source.AsX86_64().AsCpuRegister()); in Move() local 292 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), source.GetStackIndex())); in Move() local 293 __ movl(Address(CpuRegister(RSP), destination.GetStackIndex()), CpuRegister(TMP)); in Move() local 313 __ movl(location.AsX86_64().AsCpuRegister(), imm); in Move() local 315 __ movl(Address(CpuRegister(RSP), location.GetStackIndex()), imm); in Move() local 566 __ movl(locations->Out().AsX86_64().AsCpuRegister(), Immediate(0)); in VisitCompare() local 570 __ movl(locations->Out().AsX86_64().AsCpuRegister(), Immediate(-1)); in VisitCompare() local [all …]
|
/art/compiler/utils/x86/ |
D | assembler_x86.cc | 105 void X86Assembler::movl(Register dst, const Immediate& imm) { in movl() function in art::x86::X86Assembler 112 void X86Assembler::movl(Register dst, Register src) { in movl() function in art::x86::X86Assembler 119 void X86Assembler::movl(Register dst, const Address& src) { in movl() function in art::x86::X86Assembler 126 void X86Assembler::movl(const Address& dst, Register src) { in movl() function in art::x86::X86Assembler 133 void X86Assembler::movl(const Address& dst, const Immediate& imm) { in movl() function in art::x86::X86Assembler 140 void X86Assembler::movl(const Address& dst, Label* lbl) { in movl() function in art::x86::X86Assembler
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.cc | 121 void X86_64Assembler::movl(CpuRegister dst, const Immediate& imm) { in movl() function in art::x86_64::X86_64Assembler 138 void X86_64Assembler::movl(CpuRegister dst, CpuRegister src) { in movl() function in art::x86_64::X86_64Assembler 154 void X86_64Assembler::movl(CpuRegister dst, const Address& src) { in movl() function in art::x86_64::X86_64Assembler 170 void X86_64Assembler::movl(const Address& dst, CpuRegister src) { in movl() function in art::x86_64::X86_64Assembler 177 void X86_64Assembler::movl(const Address& dst, const Immediate& imm) { in movl() function in art::x86_64::X86_64Assembler
|