Searched refs:stack_end (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | thread-inl.h | 400 uint8_t* end = tlsPtr_.stack_end + (implicit_overflow_check in GetStackEndForInterpreter() 416 tlsPtr_.stack_end = tlsPtr_.stack_begin + GetStackOverflowReservedBytes(kRuntimeISA); in ResetDefaultStackEnd()
|
D | thread.h | 837 return tlsPtr_.stack_size - (tlsPtr_.stack_end - tlsPtr_.stack_begin); in GetStackSize() 843 return tlsPtr_.stack_end; in GetStackEnd() 853 return tlsPtr_.stack_end == tlsPtr_.stack_begin; in IsHandlingStackOverflow() 859 OFFSETOF_MEMBER(tls_ptr_sized_values, stack_end)); in StackEndOffset() 1673 tls_ptr_sized_values() : card_table(nullptr), exception(nullptr), stack_end(nullptr), in PACKED() 1699 uint8_t* stack_end; in PACKED() local
|
D | entrypoints_order_test.cc | 86 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, exception, stack_end, sizeof(void*)); in CheckThreadOffsets() 87 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, stack_end, managed_stack, sizeof(void*)); in CheckThreadOffsets()
|
D | thread.cc | 1336 tlsPtr_.stack_end += read_guard_size + kStackOverflowProtectedSize; in InitStackHwm() 1343 CHECK_GT(FindStackTop(), reinterpret_cast<void*>(tlsPtr_.stack_end)); in InitStackHwm() 1949 << reinterpret_cast<void*>(thread->tlsPtr_.stack_end) << " stackSize=" in DumpState() 4139 if (tlsPtr_.stack_end == tlsPtr_.stack_begin) { in SetStackEndForStackOverflow() 4147 tlsPtr_.stack_end = tlsPtr_.stack_begin; in SetStackEndForStackOverflow()
|
/art/runtime/interpreter/ |
D | interpreter_common.cc | 62 uint8_t* stack_end = self->GetStackEndForInterpreter(implicit_check); in CheckStackOverflow() local 63 if (UNLIKELY(__builtin_frame_address(0) < stack_end + frame_size)) { in CheckStackOverflow()
|