Home
last modified time | relevance | path

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

/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc202 float_index_ = 0u; in ResetIterator()
208 if (float_index_ % 2 == 0) { in Next()
210 DCHECK_EQ(float_index_, double_index_ * 2u); in Next()
213 DCHECK_LT(float_index_, double_index_ * 2u); in Next()
217 if (float_index_ % 2 == 0) { in Next()
218 float_index_ = double_index_ * 2u; in Next()
221 if (float_index_ % 2 == 0) { in Next()
222 float_index_ += 1u; in Next()
225 float_index_ = double_index_ * 2u; in Next()
244 return float_index_ < kHFSArgumentRegistersCount; in IsCurrentParamInRegister()
[all …]
Dcalling_convention_arm.h34 float_index_(0u), in ArmManagedRuntimeCallingConvention()
50 size_t float_index_; variable
/art/compiler/optimizing/
Dcode_generator.h162 uint32_t float_index_ = 0u; variable
Dcode_generator_arm_vixl.cc2400 if (float_index_ % 2 == 0) { in GetNextLocation()
2401 float_index_ = std::max(double_index_, float_index_); in GetNextLocation()
2403 if (float_index_ < calling_convention.GetNumberOfFpuRegisters()) { in GetNextLocation()
2404 return LocationFrom(calling_convention.GetFpuRegisterAt(float_index_++)); in GetNextLocation()
2411 double_index_ = std::max(double_index_, RoundUp(float_index_, 2)); in GetNextLocation()
Dcode_generator_arm64.cc830 (float_index_ < calling_convention.GetNumberOfFpuRegisters())) { in GetNextLocation()
831 next_location = LocationFrom(calling_convention.GetFpuRegisterAt(float_index_++)); in GetNextLocation()
Dcode_generator_x86_64.cc2601 uint32_t index = float_index_++; in GetNextLocation()
2611 uint32_t index = float_index_++; in GetNextLocation()
Dcode_generator_x86.cc1297 uint32_t index = float_index_++; in GetNextLocation()
1307 uint32_t index = float_index_++; in GetNextLocation()