Home | History | Annotate | Download | only in runtime

Lines Matching refs:stack_end

129 //   +---------------------+  <- stack_end
142 // between the stack_end and the highest address in stack memory. An implicit stack
144 // If the thread's SP is below the stack_end address this will be a read into the protected
145 // region. If the SP is above the stack_end address, the thread is guaranteed to have
148 // might only have 4K of memory (if the SP is adjacent to stack_end).
758 return tlsPtr_.stack_size - (tlsPtr_.stack_end - tlsPtr_.stack_begin);
763 // The interpreter needs the extra overflow bytes that stack_end does
765 return tlsPtr_.stack_end + GetStackOverflowReservedBytes(kRuntimeISA);
767 return tlsPtr_.stack_end;
772 return tlsPtr_.stack_end;
782 tlsPtr_.stack_end = tlsPtr_.stack_begin + GetStackOverflowReservedBytes(kRuntimeISA);
786 return tlsPtr_.stack_end == tlsPtr_.stack_begin;
792 OFFSETOF_MEMBER(tls_ptr_sized_values, stack_end));
1494 tls_ptr_sized_values() : card_table(nullptr), exception(nullptr), stack_end(nullptr),
1520 uint8_t* stack_end;