Home
last modified time | relevance | path

Searched refs:stack_adjust_ (Results 1 – 9 of 9) sorted by relevance

/art/compiler/utils/arm64/
Dassembler_arm64.h254 : scratch_(scratch), stack_adjust_(stack_adjust) { in Arm64Exception()
263 const size_t stack_adjust_; variable
Dassembler_arm64.cc619 if (exception->stack_adjust_ != 0) { // Fix up the frame. in EmitExceptionPoll()
620 DecreaseFrameSize(exception->stack_adjust_); in EmitExceptionPoll()
/art/compiler/utils/mips/
Dassembler_mips.h287 : scratch_(scratch), stack_adjust_(stack_adjust) {} in MipsExceptionSlowPath()
291 const size_t stack_adjust_; variable
Dassembler_mips.cc954 if (stack_adjust_ != 0) { // Fix up the frame. in Emit()
955 __ DecreaseFrameSize(stack_adjust_); in Emit()
/art/compiler/utils/x86/
Dassembler_x86.h624 explicit X86ExceptionSlowPath(size_t stack_adjust) : stack_adjust_(stack_adjust) {} in X86ExceptionSlowPath()
627 const size_t stack_adjust_;
Dassembler_x86.cc1847 if (stack_adjust_ != 0) { // Fix up the frame. in Emit()
1848 __ DecreaseFrameSize(stack_adjust_); in Emit()
/art/compiler/utils/arm/
Dassembler_arm.cc826 if (stack_adjust_ != 0) { // Fix up the frame. in Emit()
827 __ DecreaseFrameSize(stack_adjust_); in Emit()
Dassembler_arm.h745 : scratch_(scratch), stack_adjust_(stack_adjust) { in ArmExceptionSlowPath()
750 const size_t stack_adjust_; variable
/art/compiler/utils/x86_64/
Dassembler_x86_64.cc2201 explicit X86_64ExceptionSlowPath(size_t stack_adjust) : stack_adjust_(stack_adjust) {} in X86_64ExceptionSlowPath()
2204 const size_t stack_adjust_; member in art::x86_64::FINAL
2219 if (stack_adjust_ != 0) { // Fix up the frame. in Emit()
2220 __ DecreaseFrameSize(stack_adjust_); in Emit()