Home
last modified time | relevance | path

Searched refs:float_index_ (Results 1 – 8 of 8) sorted by relevance

/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc209 float_index_ = 0u; in ResetIterator()
215 if (float_index_ % 2 == 0) { in Next()
217 DCHECK_EQ(float_index_, double_index_ * 2u); in Next()
220 DCHECK_LT(float_index_, double_index_ * 2u); in Next()
224 if (float_index_ % 2 == 0) { in Next()
225 float_index_ = double_index_ * 2u; in Next()
228 if (float_index_ % 2 == 0) { in Next()
229 float_index_ += 1u; in Next()
232 float_index_ = double_index_ * 2u; in Next()
251 return float_index_ < kHFSArgumentRegistersCount; in IsCurrentParamInRegister()
[all …]
Dcalling_convention_arm.h35 float_index_(0u), in ArmManagedRuntimeCallingConvention()
52 size_t float_index_; variable
/art/compiler/optimizing/
Dcode_generator.h162 uint32_t float_index_ = 0u; variable
Dcode_generator_arm_vixl.cc2601 if (float_index_ % 2 == 0) { in GetNextLocation()
2602 float_index_ = std::max(double_index_, float_index_); in GetNextLocation()
2604 if (float_index_ < calling_convention.GetNumberOfFpuRegisters()) { in GetNextLocation()
2605 return LocationFrom(calling_convention.GetFpuRegisterAt(float_index_++)); in GetNextLocation()
2612 double_index_ = std::max(double_index_, RoundUp(float_index_, 2)); in GetNextLocation()
Dcode_generator_arm64.cc901 (float_index_ < calling_convention.GetNumberOfFpuRegisters())) { in GetNextLocation()
902 next_location = LocationFrom(calling_convention.GetFpuRegisterAt(float_index_++)); in GetNextLocation()
Dcode_generator_riscv64.cc190 float_index_ < calling_convention.GetNumberOfFpuRegisters()) { in GetNextLocation()
192 Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(float_index_++)); in GetNextLocation()
Dcode_generator_x86_64.cc3002 uint32_t index = float_index_++; in GetNextLocation()
3012 uint32_t index = float_index_++; in GetNextLocation()
Dcode_generator_x86.cc1552 uint32_t index = float_index_++; in GetNextLocation()
1562 uint32_t index = float_index_++; in GetNextLocation()