/art/compiler/dex/quick/x86/ |
call_x86.cc | 86 RegLocation rl_method = mir_graph_->GetRegLocation(base_of_code_->s_reg_low); local 87 if (rl_method.wide) { 88 rl_method = LoadValueWide(rl_method, kCoreReg); 90 rl_method = LoadValue(rl_method, kCoreReg); 92 start_of_method_reg = rl_method.reg; 160 RegLocation rl_method = mir_graph_->GetRegLocation(base_of_code_->s_reg_low); local 161 if (rl_method.wide) { 162 LoadValueDirectWide(rl_method, method_start) [all...] |
utility_x86.cc | 579 RegLocation rl_method = mir_graph_->GetRegLocation(base_of_code_->s_reg_low); local 580 if (rl_method.wide) { 581 rl_method = LoadValueWide(rl_method, kCoreReg); 583 rl_method = LoadValue(rl_method, kCoreReg); 591 res = LoadBaseDisp(rl_method.reg, 256 /* bogus */, RegStorage::FloatSolo64(low_reg_val), 595 Clobber(rl_method.reg); [all...] |
target_x86.cc | 1810 RegLocation rl_method = mir_graph_->GetRegLocation(base_of_code_->s_reg_low); local [all...] |
int_x86.cc | 1077 RegLocation rl_method = mir_graph_->GetRegLocation(base_of_code_->s_reg_low); local 2647 RegLocation rl_method = mir_graph_->GetMethodLoc(); local [all...] |
codegen_x86.h | 233 void GenEntrySequence(RegLocation* ArgLocs, RegLocation rl_method) OVERRIDE; 328 void FlushIns(RegLocation* ArgLocs, RegLocation rl_method) OVERRIDE; [all...] |
/art/compiler/dex/quick/ |
gen_common.cc | 537 RegLocation rl_method = LoadCurrMethod(); local 539 LoadRefDisp(rl_method.reg, mirror::ArtMethod::DeclaringClassOffset().Int32Value(), r_base, 541 if (IsTemp(rl_method.reg)) { 542 FreeTemp(rl_method.reg); 626 RegLocation rl_method = LoadCurrMethod(); local 628 LoadRefDisp(rl_method.reg, mirror::ArtMethod::DeclaringClassOffset().Int32Value(), r_base, 818 RegLocation rl_method = LoadCurrMethod(); local 819 CheckRegLocation(rl_method); 827 CallRuntimeHelperImmReg(kQuickInitializeTypeAndVerifyAccess, type_idx, rl_method.reg, true); 889 RegLocation rl_method = mir_graph_->GetMethodLoc(); local 933 RegLocation rl_method = LoadCurrMethod(); local [all...] |
gen_invoke.cc | 369 void Mir2Lir::FlushIns(RegLocation* ArgLocs, RegLocation rl_method) { 375 RegLocation rl_src = rl_method; 380 StoreValue(rl_method, rl_src); 382 if (rl_method.location == kLocPhysReg) { [all...] |
mir_to_lir.h | [all...] |
/art/compiler/dex/quick/mips/ |
call_mips.cc | 289 void MipsMir2Lir::GenEntrySequence(RegLocation* ArgLocs, RegLocation rl_method) { 350 FlushIns(ArgLocs, rl_method);
|
codegen_mips.h | 115 void GenEntrySequence(RegLocation* ArgLocs, RegLocation rl_method);
|
/art/compiler/dex/quick/arm/ |
call_arm.cc | 340 void ArmMir2Lir::GenEntrySequence(RegLocation* ArgLocs, RegLocation rl_method) { 462 FlushIns(ArgLocs, rl_method);
|
codegen_arm.h | 116 void GenEntrySequence(RegLocation* ArgLocs, RegLocation rl_method);
|
/art/compiler/dex/quick/arm64/ |
call_arm64.cc | 305 void Arm64Mir2Lir::GenEntrySequence(RegLocation* ArgLocs, RegLocation rl_method) { 402 FlushIns(ArgLocs, rl_method);
|
codegen_arm64.h | 181 void GenEntrySequence(RegLocation* ArgLocs, RegLocation rl_method) OVERRIDE; 235 void FlushIns(RegLocation* ArgLocs, RegLocation rl_method) OVERRIDE;
|
target_arm64.cc | 910 void Arm64Mir2Lir::FlushIns(RegLocation* ArgLocs, RegLocation rl_method) { 919 RegLocation rl_src = rl_method; 924 StoreValue(rl_method, rl_src); 926 if (rl_method.location == kLocPhysReg) { [all...] |