Searched refs:gpr_index_ (Results 1 – 9 of 9) sorted by relevance
/art/compiler/jni/quick/arm/ |
D | calling_convention_arm.cc | 202 gpr_index_ = 1u; // Skip r0 for ArtMethod* in ResetIterator() 232 gpr_index_ = RoundUp(gpr_index_, 2u) + 2u; in Next() 234 gpr_index_ += 1u; in Next() 250 return RoundUp(gpr_index_, 2u) + 1u < kHFCoreArgumentRegistersCount; in IsCurrentParamInRegister() 252 return gpr_index_ < kHFCoreArgumentRegistersCount; in IsCurrentParamInRegister() 273 CHECK_EQ(RoundUp(gpr_index_, 2u), 2u); in CurrentParamRegister() 276 return ArmManagedRegister::FromCoreRegister(kHFCoreArgumentRegisters[gpr_index_]); in CurrentParamRegister()
|
D | calling_convention_arm.h | 33 gpr_index_(1u), // Skip r0 for ArtMethod* in ArmManagedRuntimeCallingConvention() 49 size_t gpr_index_;
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints.cc | 295 gpr_index_(0), fpr_index_(0), fpr_double_index_(0), stack_index_(0), in QuickArgumentVisitor() 330 if (gpr_index_ < kNumQuickGprArgs) { in GetParamAddress() 331 return gpr_args_ + GprIndexToGprOffset(gpr_index_); in GetParamAddress() 361 gpr_index_++; in IncGprIndex() 370 gpr_index_++; in IncFprIndex() 378 gpr_index_ = 0; in VisitArguments() 405 if (gpr_index_ < kNumQuickGprArgs) { in VisitArguments() 414 if (gpr_index_ < kNumQuickGprArgs) { in VisitArguments() 438 gpr_index_ == 0 && in VisitArguments() 445 ((gpr_index_ + 1) == kNumQuickGprArgs); in VisitArguments() [all …]
|
/art/compiler/optimizing/ |
D | code_generator_x86_64.h | 100 size_t gpr_index_ = 0u; variable
|
D | code_generator_arm_vixl.cc | 2451 gpr_index_ = RoundUp(gpr_index_, 2u); in GetNextLocation() 2453 if (gpr_index_ < 1u + kParameterCoreRegistersLengthVIXL) { in GetNextLocation() 2454 location = LocationFrom(gpr_index_ == 0u ? r0 : kParameterCoreRegistersVIXL[gpr_index_ - 1u], in GetNextLocation() 2455 kParameterCoreRegistersVIXL[gpr_index_]); in GetNextLocation() 2456 gpr_index_ += 2u; in GetNextLocation() 2459 if (gpr_index_ < 1u + kParameterCoreRegistersLengthVIXL) { in GetNextLocation() 2460 location = LocationFrom(gpr_index_ == 0u ? r0 : kParameterCoreRegistersVIXL[gpr_index_ - 1u]); in GetNextLocation() 2461 ++gpr_index_; in GetNextLocation()
|
D | code_generator_arm_vixl.h | 208 size_t gpr_index_ = 0u; variable
|
D | code_generator_arm64.h | 252 size_t gpr_index_ = 0u; variable
|
D | code_generator_arm64.cc | 886 if (gpr_index_ < 1u + kParameterCoreRegistersLength) { in GetNextLocation() 887 location = LocationFrom(gpr_index_ == 0u ? x0 : kParameterCoreRegisters[gpr_index_ - 1u]); in GetNextLocation() 888 ++gpr_index_; in GetNextLocation()
|
D | code_generator_x86_64.cc | 2568 if (gpr_index_ < 1u + kParameterCoreRegistersLength) { in GetNextLocation() 2570 gpr_index_ == 0u ? RDI : kParameterCoreRegisters[gpr_index_ - 1u]); in GetNextLocation() 2571 ++gpr_index_; in GetNextLocation()
|