OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kFramePointerSize
(Results
1 - 9
of
9
) sorted by null
/art/compiler/jni/quick/arm/
calling_convention_arm.h
25
constexpr size_t
kFramePointerSize
= 4;
30
: ManagedRuntimeCallingConvention(is_static, is_synchronized, shorty,
kFramePointerSize
) {}
/art/compiler/jni/quick/arm64/
calling_convention_arm64.h
25
constexpr size_t
kFramePointerSize
= 8;
30
: ManagedRuntimeCallingConvention(is_static, is_synchronized, shorty,
kFramePointerSize
) {}
/art/compiler/jni/quick/mips/
calling_convention_mips.h
25
constexpr size_t
kFramePointerSize
= 4;
30
: ManagedRuntimeCallingConvention(is_static, is_synchronized, shorty,
kFramePointerSize
) {}
/art/compiler/jni/quick/x86/
calling_convention_x86.h
25
constexpr size_t
kFramePointerSize
= 4;
31
: ManagedRuntimeCallingConvention(is_static, is_synchronized, shorty,
kFramePointerSize
) {}
/art/compiler/jni/quick/x86_64/
calling_convention_x86_64.h
25
constexpr size_t
kFramePointerSize
= 8;
31
: ManagedRuntimeCallingConvention(is_static, is_synchronized, shorty,
kFramePointerSize
) {}
/art/compiler/utils/arm64/
assembler_arm64.cc
637
constexpr size_t
kFramePointerSize
= 8;
650
CHECK_GT(frame_size, kJniRefSpillRegsSize *
kFramePointerSize
);
718
CHECK_GT(frame_size, kJniRefSpillRegsSize *
kFramePointerSize
);
/art/compiler/utils/mips/
assembler_mips.cc
539
constexpr size_t
kFramePointerSize
= 4;
550
int stack_offset = frame_size -
kFramePointerSize
;
553
stack_offset -=
kFramePointerSize
;
564
StoreToOffset(kStoreWord, reg, SP, frame_size +
kFramePointerSize
+ (i *
kFramePointerSize
));
573
int stack_offset = frame_size - (callee_save_regs.size() *
kFramePointerSize
) -
kFramePointerSize
;
577
stack_offset +=
kFramePointerSize
;
[
all
...]
/art/compiler/utils/x86/
assembler_x86.cc
[
all
...]
/art/compiler/utils/x86_64/
assembler_x86_64.cc
[
all
...]
Completed in 532 milliseconds