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

  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 84 (itr_slots_ * kFramePointerSize)); // offset into in args
167 // itr_slots_ needs to be an even number, according to AAPCS.
168 if ((itr_slots_ & 0x1u) != 0) {
169 itr_slots_++;
175 return itr_slots_ < 4;
186 CHECK_LT(itr_slots_, 4u);
189 CHECK_EQ(itr_slots_, 2u);
193 ArmManagedRegister::FromCoreRegister(kJniArgumentRegisters[itr_slots_]);
198 CHECK_GE(itr_slots_, 4u);
199 size_t offset = displacement_.Int32Value() - OutArgSize() + ((itr_slots_ - 4) * kFramePointerSize)
    [all...]
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 84 (itr_slots_ * kFramePointerSize)); // offset into in args
170 // itr_slots_ needs to be an even number, according to AAPCS.
171 if ((itr_slots_ & 0x1u) != 0) {
172 itr_slots_++;
178 return itr_slots_ < 4;
189 CHECK_LT(itr_slots_, 4u);
192 CHECK_EQ(itr_slots_, 2u);
196 MipsManagedRegister::FromCoreRegister(kJniArgumentRegisters[itr_slots_]);
201 CHECK_GE(itr_slots_, 4u);
202 size_t offset = displacement_.Int32Value() - OutArgSize() + (itr_slots_ * kFramePointerSize)
    [all...]
  /art/compiler/jni/quick/
calling_convention.cc 60 itr_slots_++;
69 itr_slots_++;
153 itr_slots_++;
163 itr_slots_++;
calling_convention.h 62 itr_slots_ = 0;
74 : itr_slots_(0), itr_refs_(0), itr_args_(0), itr_longs_and_doubles_(0),
188 unsigned int itr_slots_; member in class:art::CallingConvention
  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 90 (itr_slots_ * kFramePointerSize)); // offset into in args
153 return FrameOffset(displacement_.Int32Value() - OutArgSize() + (itr_slots_ * kFramePointerSize));
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.cc 99 (itr_slots_ * sizeof(uint32_t))); // offset into in args
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.cc 100 (itr_slots_ * sizeof(uint32_t))); // offset into in args

Completed in 393 milliseconds