Searched defs:stack_end (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dthread.h105 // +---------------------+ <- stack_end
118 // between the stack_end and the highest address in stack memory. An implicit stack
120 // If the thread's SP is below the stack_end address this will be a read into the protected
121 // region. If the SP is above the stack_end address, the thread is guaranteed to have
124 // might only have 4K of memory (if the SP is adjacent to stack_end).
578 return tlsPtr_.stack_size - (tlsPtr_.stack_end - tlsPtr_.stack_begin);
583 // The interpreter needs the extra overflow bytes that stack_end does
585 return tlsPtr_.stack_end + GetStackOverflowReservedBytes(kRuntimeISA);
587 return tlsPtr_.stack_end;
592 return tlsPtr_.stack_end;
1043 byte* stack_end; variable
[all...]
/art/compiler/llvm/
H A Dgbc_expander.cc676 llvm::Value* stack_end = local
682 llvm::Value* is_stack_overflow = irb_.CreateICmpULT(frame_address, stack_end);

Completed in 68 milliseconds