Home | History | Annotate | Download | only in src

Lines Matching refs:stack_guard

789   isolate->stack_guard()->Continue(PREEMPT);
853 isolate->stack_guard()->IsDebugCommand() &&
854 !isolate->stack_guard()->IsDebugBreak();
857 isolate->stack_guard()->Continue(DEBUGBREAK);
868 isolate->stack_guard()->Continue(DEBUGCOMMAND);
892 StackGuard* stack_guard = isolate->stack_guard();
893 if (stack_guard->ShouldPostponeInterrupts()) {
897 if (stack_guard->IsGCRequest()) {
900 stack_guard->Continue(GC_REQUEST);
906 stack_guard->IsRuntimeProfilerTick()) {
908 stack_guard->Continue(RUNTIME_PROFILER_TICK);
912 if (stack_guard->IsDebugBreak() || stack_guard->IsDebugCommand()) {
916 if (stack_guard->IsPreempted()) RuntimePreempt();
917 if (stack_guard->IsTerminateExecution()) {
918 stack_guard->Continue(TERMINATE);
921 if (stack_guard->IsInterrupted()) {
922 stack_guard->Continue(INTERRUPT);