Home
last modified time | relevance | path

Searched refs:GetStackOverflowReservedBytes (Results 1 – 10 of 10) sorted by relevance

/art/runtime/arch/mips64/
Dfault_handler_mips64.cc55 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(InstructionSet::kMips64)); in GetMethodAndReturnPcAndSp()
129 uintptr_t overflow_addr = sp - GetStackOverflowReservedBytes(InstructionSet::kMips64); in Action()
/art/runtime/arch/mips/
Dfault_handler_mips.cc54 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(InstructionSet::kMips)); in GetMethodAndReturnPcAndSp()
127 uintptr_t overflow_addr = sp - GetStackOverflowReservedBytes(InstructionSet::kMips); in Action()
/art/runtime/arch/arm64/
Dfault_handler_arm64.cc55 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(InstructionSet::kArm64)); in GetMethodAndReturnPcAndSp()
167 uintptr_t overflow_addr = sp - GetStackOverflowReservedBytes(InstructionSet::kArm64); in Action()
/art/runtime/arch/arm/
Dfault_handler_arm.cc62 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(InstructionSet::kArm)); in GetMethodAndReturnPcAndSp()
212 uintptr_t overflow_addr = sp - GetStackOverflowReservedBytes(InstructionSet::kArm); in Action()
/art/runtime/arch/
Dinstruction_set.cc172 size_t GetStackOverflowReservedBytes(InstructionSet isa) { in GetStackOverflowReservedBytes() function
Dinstruction_set.h231 size_t GetStackOverflowReservedBytes(InstructionSet isa);
/art/runtime/
Dthread.h823 return tlsPtr_.stack_end + GetStackOverflowReservedBytes(kRuntimeISA); in GetStackEndForInterpreter()
840 tlsPtr_.stack_end = tlsPtr_.stack_begin + GetStackOverflowReservedBytes(kRuntimeISA); in ResetDefaultStackEnd()
Dthread.cc116 const size_t Thread::kStackOverflowImplicitCheckSize = GetStackOverflowReservedBytes(kRuntimeISA);
515 stack_size += GetStackOverflowReservedBytes(kRuntimeISA); in FixStackSize()
520 GetStackOverflowReservedBytes(kRuntimeISA); in FixStackSize()
1096 uint32_t min_stack = GetStackOverflowReservedBytes(kRuntimeISA) + kStackOverflowProtectedSize in InitStackHwm()
3842 << GetStackOverflowReservedBytes(kRuntimeISA) << ")?"; in SetStackEndForStackOverflow()
/art/compiler/optimizing/
Dcode_generator_x86_64.cc1277 size_t reserved_bytes = GetStackOverflowReservedBytes(InstructionSet::kX86_64); in GenerateFrameEntry()
Dcode_generator_arm_vixl.cc2518 __ Sub(temp, sp, Operand::From(GetStackOverflowReservedBytes(InstructionSet::kArm))); in GenerateFrameEntry()