HomeSort by relevance Sort by last modified time
    Searched refs:itr_slots_ (Results 1 - 8 of 8) sorted by null

  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 134 (itr_slots_ * kFramePointerSize)); // offset into in args
388 if (IsCurrentParamALongOrDouble() && ((itr_slots_ & 0x1u) != 0)) {
389 // itr_slots_ needs to be an even number, according to o32.
390 itr_slots_++;
407 return itr_slots_ < kMaxIntLikeRegisterArguments;
415 CHECK_LT(itr_slots_, kMaxIntLikeRegisterArguments);
429 if (itr_slots_ == 0u) {
432 CHECK_EQ(itr_slots_, 2u);
436 return MipsManagedRegister::FromCoreRegister(kJniCoreArgumentRegisters[itr_slots_]);
441 CHECK_GE(itr_slots_, kMaxIntLikeRegisterArguments)
    [all...]
  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 193 (itr_slots_ * kFramePointerSize)); // offset into in args
430 if (IsCurrentParamALongOrDouble() && ((itr_slots_ & 0x1u) != 0)) {
431 // itr_slots_ needs to be an even number, according to AAPCS.
432 itr_slots_++;
438 return itr_slots_ < kJniArgumentRegisterCount;
446 CHECK_LT(itr_slots_, kJniArgumentRegisterCount);
452 if (itr_slots_ == 0u) {
454 } else if (itr_slots_ == 2u) {
463 return ArmManagedRegister::FromCoreRegister(kJniArgumentRegisters[itr_slots_]);
468 CHECK_GE(itr_slots_, kJniArgumentRegisterCount)
    [all...]
  /art/compiler/jni/quick/
calling_convention.cc 106 itr_slots_++;
115 itr_slots_++;
250 itr_slots_++;
261 itr_slots_++;
calling_convention.h 64 itr_slots_ = 0;
78 : itr_slots_(0), itr_refs_(0), itr_args_(0), itr_longs_and_doubles_(0),
198 unsigned int itr_slots_; member in class:art::CallingConvention
  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 147 (itr_slots_ * kFramePointerSize)); // offset into in args
263 return FrameOffset(displacement_.Int32Value() - OutArgSize() + (itr_slots_ * kFramePointerSize));
  /art/compiler/jni/quick/mips64/
calling_convention_mips64.cc 119 (itr_slots_ * sizeof(uint32_t))); // offset into in args
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.cc 182 (itr_slots_ * sizeof(uint32_t))); // offset into in args
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.cc 152 itr_slots_ * sizeof(uint32_t)); // offset into in args
273 // It's really more like NumberSlots (like itr_slots_)

Completed in 161 milliseconds