Home | History | Annotate | Download | only in src

Lines Matching full:stack

146   // If the stack guard is triggered, but it is not an actual
147 // stack overflow, then handle the interruption accordingly.
169 // number of nested invocations of JavaScript and the stack size used in each
173 // Pass the address beyond which the stack should not grow. The stack
182 // Sets up the default stack guard for this thread if it has not
185 // Clears the stack guard for this thread so it does not look as if
208 // This provides an asynchronous read of the stack limits for the current
273 // Returns true if the heap's stack limits should be set, false if not.
276 // The stack limit is split into a JavaScript and a C++ stack limit. These
278 // JavaScript stacks are separate. Each of the two stack limits have two
279 // values. The one eith the real_ prefix is the actual stack limit
281 // the actual stack limit except when there is an interruption (e.g. debug
282 // break or preemption) in which case it is lowered to make stack checks
285 uintptr_t real_jslimit_; // Actual JavaScript stack limit set for the VM.
287 uintptr_t real_climit_; // Actual C++ stack limit set for the VM.