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.cc203 float_index_ = 0u; in ResetIterator()
209 if (float_index_ % 2 == 0) { in Next()
211 DCHECK_EQ(float_index_, double_index_ * 2u); in Next()
214 DCHECK_LT(float_index_, double_index_ * 2u); in Next()
218 if (float_index_ % 2 == 0) { in Next()
219 float_index_ = double_index_ * 2u; in Next()
222 if (float_index_ % 2 == 0) { in Next()
223 float_index_ += 1u; in Next()
226 float_index_ = double_index_ * 2u; in Next()
245 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.h161 uint32_t float_index_ = 0u; variable
Dcode_generator_arm_vixl.cc2371 if (float_index_ % 2 == 0) { in GetNextLocation()
2372 float_index_ = std::max(double_index_, float_index_); in GetNextLocation()
2374 if (float_index_ < calling_convention.GetNumberOfFpuRegisters()) { in GetNextLocation()
2375 return LocationFrom(calling_convention.GetFpuRegisterAt(float_index_++)); in GetNextLocation()
2382 double_index_ = std::max(double_index_, RoundUp(float_index_, 2)); in GetNextLocation()
Dcode_generator_arm64.cc854 (float_index_ < calling_convention.GetNumberOfFpuRegisters())) { in GetNextLocation()
855 next_location = LocationFrom(calling_convention.GetFpuRegisterAt(float_index_++)); in GetNextLocation()
Dcode_generator_x86_64.cc2528 uint32_t index = float_index_++; in GetNextLocation()
2538 uint32_t index = float_index_++; in GetNextLocation()
Dcode_generator_x86.cc1274 uint32_t index = float_index_++; in GetNextLocation()
1284 uint32_t index = float_index_++; in GetNextLocation()