Searched defs:fpr_double_index_ (Results 1 - 1 of 1) sorted by relevance
/art/runtime/entrypoints/quick/ |
H A D | quick_trampoline_entrypoints.cc | 399 gpr_index_(0), fpr_index_(0), fpr_double_index_(0), stack_index_(0), 405 // For register alignment, we want to assume that counters(fpr_double_index_) are even if the 425 if (fpr_double_index_ + 2 < kNumQuickFprArgs + 1) { 426 return fpr_args_ + (fpr_double_index_ * GetBytesPerFprSpillLocation(kRuntimeISA)); 485 fpr_double_index_ = 0; 526 // For example, if fpr_index_ = 3, fpr_double_index_ should be at least 4. 527 fpr_double_index_ = std::max(fpr_double_index_, RoundUp(fpr_index_, 2)); 530 fpr_index_ = std::max(fpr_double_index_, fpr_index_); 586 if (fpr_double_index_ 626 uint32_t fpr_double_index_; member in class:art::QuickArgumentVisitor [all...] |
Completed in 16 milliseconds