OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:itr_slots_
(Results
1 - 5
of
5
) sorted by null
/art/compiler/jni/quick/arm/
calling_convention_arm.cc
84
(
itr_slots_
* kPointerSize)); // offset into in args
166
//
itr_slots_
needs to be an even number, according to AAPCS.
167
if ((
itr_slots_
& 0x1u) != 0) {
168
itr_slots_
++;
174
return
itr_slots_
< 4;
185
CHECK_LT(
itr_slots_
, 4u);
188
CHECK_EQ(
itr_slots_
, 2u);
192
ArmManagedRegister::FromCoreRegister(kJniArgumentRegisters[
itr_slots_
]);
197
CHECK_GE(
itr_slots_
, 4u);
198
size_t offset = displacement_.Int32Value() - OutArgSize() + ((
itr_slots_
- 4) * kPointerSize)
[
all
...]
/art/compiler/jni/quick/mips/
calling_convention_mips.cc
84
(
itr_slots_
* kPointerSize)); // 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_
* kPointerSize)
[
all
...]
/art/compiler/jni/quick/
calling_convention.cc
59
itr_slots_
++;
65
itr_slots_
++;
134
itr_slots_
++;
141
itr_slots_
++;
calling_convention.h
59
itr_slots_
= 0;
137
unsigned int
itr_slots_
;
member in class:art::CallingConvention
/art/compiler/jni/quick/x86/
calling_convention_x86.cc
90
(
itr_slots_
* kPointerSize)); // offset into in args
152
return FrameOffset(displacement_.Int32Value() - OutArgSize() + (
itr_slots_
* kPointerSize));
Completed in 50 milliseconds