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.cc295 gpr_index_(0), fpr_index_(0), fpr_double_index_(0), stack_index_(0), in QuickArgumentVisitor()
324 } else if (fpr_index_ + 1 < kNumQuickFprArgs + 1) { in GetParamAddress()
325 return fpr_args_ + (fpr_index_ * GetBytesPerFprSpillLocation(kRuntimeISA)); in GetParamAddress()
363 fpr_index_++; in IncGprIndex()
368 fpr_index_++; in IncFprIndex()
379 fpr_index_ = 0; in VisitArguments()
418 if (fpr_index_ + 1 < kNumQuickFprArgs + 1) { in VisitArguments()
423 fpr_double_index_ = std::max(fpr_double_index_, RoundUp(fpr_index_, 2)); in VisitArguments()
425 if (fpr_index_ % 2 == 0) { in VisitArguments()
426 fpr_index_ = std::max(fpr_double_index_, fpr_index_); in VisitArguments()
[all …]
/art/compiler/optimizing/
Dcode_generator_x86_64.h101 size_t fpr_index_ = 0u; variable
Dcode_generator_arm64.h253 size_t fpr_index_ = 0u; variable
Dcode_generator_arm64.cc879 if (fpr_index_ < kParameterFPRegistersLength) { in GetNextLocation()
880 location = LocationFrom(kParameterFPRegisters[fpr_index_]); in GetNextLocation()
881 ++fpr_index_; in GetNextLocation()
Dcode_generator_x86_64.cc2561 if (fpr_index_ < kParameterFloatRegistersLength) { in GetNextLocation()
2562 location = Location::FpuRegisterLocation(kParameterFloatRegisters[fpr_index_]); in GetNextLocation()
2563 ++fpr_index_; in GetNextLocation()