OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:itr_args_
(Results
1 - 6
of
6
) sorted by null
/art/compiler/jni/quick/
calling_convention.cc
52
return
itr_args_
< NumArgs();
58
IsParamALongOrDouble(
itr_args_
)) {
62
if (IsParamAFloatOrDouble(
itr_args_
)) {
68
itr_args_
++;
74
return IsStatic() || (
itr_args_
!= 0);
82
return ParamSize(
itr_args_
);
86
return IsParamAReference(
itr_args_
);
90
return IsParamAFloatOrDouble(
itr_args_
);
94
return IsParamADouble(
itr_args_
);
98
return IsParamALong(
itr_args_
);
[
all
...]
calling_convention.h
63
itr_args_
= 0;
74
: itr_slots_(0), itr_refs_(0),
itr_args_
(0), itr_longs_and_doubles_(0),
192
unsigned int
itr_args_
;
member in class:art::CallingConvention
/art/compiler/jni/quick/arm/
calling_convention_arm.cc
163
size_t arg_pos =
itr_args_
- NumberOfExtraArgumentsForJni();
164
if ((
itr_args_
>= 2) &&
187
int arg_pos =
itr_args_
- NumberOfExtraArgumentsForJni();
188
if ((
itr_args_
>= 2) && IsParamALongOrDouble(arg_pos)) {
/art/compiler/jni/quick/mips/
calling_convention_mips.cc
166
size_t arg_pos =
itr_args_
- NumberOfExtraArgumentsForJni();
167
if ((
itr_args_
>= 2) &&
190
int arg_pos =
itr_args_
- NumberOfExtraArgumentsForJni();
191
if ((
itr_args_
>= 2) && IsParamALongOrDouble(arg_pos)) {
/art/compiler/jni/quick/x86_64/
calling_convention_x86_64.cc
82
switch (
itr_args_
- itr_float_and_doubles_) {
111
int32_t size = IsParamALongOrDouble(
itr_args_
)? 8 : 4;
173
switch (
itr_args_
- itr_float_and_doubles_) {
190
size_t offset =
itr_args_
192
- std::min(6U,
itr_args_
- itr_float_and_doubles_); // Integer arguments passed through GPR
/art/compiler/jni/quick/arm64/
calling_convention_arm64.cc
214
return ((
itr_args_
- itr_float_and_doubles_) < 8);
232
int gp_reg =
itr_args_
- itr_float_and_doubles_;
244
size_t args_on_stack =
itr_args_
246
- std::min(8u, (
itr_args_
- itr_float_and_doubles_));
Completed in 140 milliseconds