Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator.h156 uint32_t float_index_ = 0u; variable
Dcode_generator_arm.cc2176 if (float_index_ % 2 == 0) { in GetNextLocation()
2177 float_index_ = std::max(double_index_, float_index_); in GetNextLocation()
2179 if (float_index_ < calling_convention.GetNumberOfFpuRegisters()) { in GetNextLocation()
2180 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(float_index_++)); in GetNextLocation()
2187 double_index_ = std::max(double_index_, RoundUp(float_index_, 2)); in GetNextLocation()
Dcode_generator_arm_vixl.cc2267 if (float_index_ % 2 == 0) { in GetNextLocation()
2268 float_index_ = std::max(double_index_, float_index_); in GetNextLocation()
2270 if (float_index_ < calling_convention.GetNumberOfFpuRegisters()) { in GetNextLocation()
2271 return LocationFrom(calling_convention.GetFpuRegisterAt(float_index_++)); in GetNextLocation()
2278 double_index_ = std::max(double_index_, RoundUp(float_index_, 2)); in GetNextLocation()
Dcode_generator_mips64.cc77 (float_index_ < calling_convention.GetNumberOfFpuRegisters())) { in GetNextLocation()
79 calling_convention.GetFpuRegisterAt(float_index_++)); in GetNextLocation()
84 float_index_++; in GetNextLocation()
Dcode_generator_arm64.cc1395 (float_index_ < calling_convention.GetNumberOfFpuRegisters())) { in GetNextLocation()
1396 next_location = LocationFrom(calling_convention.GetFpuRegisterAt(float_index_++)); in GetNextLocation()
Dcode_generator_x86_64.cc2299 uint32_t index = float_index_++; in GetNextLocation()
2309 uint32_t index = float_index_++; in GetNextLocation()
Dcode_generator_x86.cc1187 uint32_t index = float_index_++; in GetNextLocation()
1197 uint32_t index = float_index_++; in GetNextLocation()
Dcode_generator_mips.cc123 uint32_t float_index = float_index_++; in GetNextLocation()