Home
last modified time | relevance | path

Searched refs:fpr_index_ (Results 1 – 5 of 5) sorted by relevance

/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc319 gpr_index_(0), fpr_index_(0), fpr_double_index_(0), stack_index_(0), in QuickArgumentVisitor()
348 } else if (fpr_index_ + 1 < kNumQuickFprArgs + 1) { in GetParamAddress()
349 return fpr_args_ + (fpr_index_ * GetBytesPerFprSpillLocation(kRuntimeISA)); in GetParamAddress()
387 fpr_index_++; in IncGprIndex()
392 fpr_index_++; in IncFprIndex()
403 fpr_index_ = 0; in VisitArguments()
442 if (fpr_index_ + 1 < kNumQuickFprArgs + 1) { in VisitArguments()
447 fpr_double_index_ = std::max(fpr_double_index_, RoundUp(fpr_index_, 2)); in VisitArguments()
449 if (fpr_index_ % 2 == 0) { in VisitArguments()
450 fpr_index_ = std::max(fpr_double_index_, fpr_index_); in VisitArguments()
[all …]
/art/compiler/optimizing/
Dcode_generator_x86_64.h149 size_t fpr_index_ = 0u; variable
Dcode_generator_arm64.h291 size_t fpr_index_ = 0u; variable
Dcode_generator_arm64.cc900 if (fpr_index_ < kParameterFPRegistersLength) { in GetNextLocation()
901 location = LocationFrom(kParameterFPRegisters[fpr_index_]); in GetNextLocation()
902 ++fpr_index_; in GetNextLocation()
Dcode_generator_x86_64.cc2869 if (fpr_index_ < kParameterFloatRegistersLength) { in GetNextLocation()
2870 location = Location::FpuRegisterLocation(kParameterFloatRegisters[fpr_index_]); in GetNextLocation()
2871 ++fpr_index_; in GetNextLocation()