Home
last modified time | relevance | path

Searched refs:stack_guard (Results 1 – 25 of 28) sorted by relevance

12

/external/v8/src/
Dv8threads.cc46 isolate_->stack_guard()->ClearThread(access); in Initialize()
47 isolate_->stack_guard()->InitThread(access); in Initialize()
129 isolate_->stack_guard()->InitThread(access); in RestoreThread()
138 from = isolate_->stack_guard()->RestoreStackGuard(from); in RestoreThread()
143 isolate_->stack_guard()->RequestTerminateExecution(); in RestoreThread()
296 to = isolate_->stack_guard()->ArchiveStackGuard(to); in EagerlyArchiveThread()
311 isolate_->stack_guard()->FreeThreadResources(); in FreeThreadResources()
Disolate.h817 StackGuard* stack_guard() { return &stack_guard_; } in stack_guard() function
1443 StackGuard* stack_guard = isolate_->stack_guard(); in HasOverflowed() local
1444 return GetCurrentStackPosition() < stack_guard->real_climit(); in HasOverflowed()
1449 StackGuard* stack_guard = isolate_->stack_guard(); in InterruptRequested() local
1450 return GetCurrentStackPosition() < stack_guard->climit(); in InterruptRequested()
1469 : stack_guard_(isolate->stack_guard()),
Dfutex-emulation.cc144 Object* interrupt_object = isolate->stack_guard()->HandleInterrupts(); in Wait()
Doptimizing-compile-dispatcher.cc138 isolate_->stack_guard()->RequestInstallCode(); in CompileNext()
Disolate.cc910 stack_guard()->RequestApiInterrupt(); in RequestInterrupt()
2792 StackGuard* stack_guard = isolate_->stack_guard(); in JsHasOverflowed() local
2797 if (jssp - gap < stack_guard->real_jslimit()) return true; in JsHasOverflowed()
2799 return GetCurrentStackPosition() - gap < stack_guard->real_climit(); in JsHasOverflowed()
Dexecution.cc222 if (is_termination) isolate->stack_guard()->RequestTerminateExecution(); in TryCall()
Dassembler.cc1159 return ExternalReference(isolate->stack_guard()->address_of_jslimit()); in address_of_stack_limit()
1165 return ExternalReference(isolate->stack_guard()->address_of_real_jslimit()); in address_of_real_stack_limit()
Dapi.cc563 isolate->stack_guard()->SetStackLimit(limit); in SetResourceConstraints()
7104 isolate->stack_guard()->RequestTerminateExecution(); in TerminateExecution()
7116 isolate->stack_guard()->ClearTerminateExecution(); in CancelTerminateExecution()
7514 isolate->stack_guard()->SetStackLimit(stack_limit); in SetStackLimit()
7767 reinterpret_cast<i::Isolate*>(isolate)->stack_guard()->RequestDebugBreak(); in DebugBreak()
7773 internal_isolate->stack_guard()->ClearDebugBreak(); in CancelDebugBreak()
7779 return internal_isolate->stack_guard()->CheckDebugBreak(); in CheckDebugBreak()
/external/pcre/dist/
Dpcre_globals.c75 PCRE_EXP_DATA_DEFN int (*PUBL(stack_guard))(void) = NULL;
83 PCRE_EXP_DATA_DEFN int (*PUBL(stack_guard))(void) = NULL;
Dpcretest.c236 #define SET_PCRE_STACK_GUARD8(stack_guard) \ argument
237 pcre_stack_guard = stack_guard
323 #define SET_PCRE_STACK_GUARD16(stack_guard) \ argument
324 pcre16_stack_guard = (int (*)(void))stack_guard
415 #define SET_PCRE_STACK_GUARD32(stack_guard) \ argument
416 pcre32_stack_guard = (int (*)(void))stack_guard
545 #define SET_PCRE_STACK_GUARD(stack_guard) \ argument
547 SET_PCRE_STACK_GUARD32(stack_guard); \
549 SET_PCRE_STACK_GUARD16(stack_guard); \
551 SET_PCRE_STACK_GUARD8(stack_guard)
[all …]
Dpcre_compile.c8269 if (PUBL(stack_guard) != NULL && PUBL(stack_guard)()) in compile_regex()
/external/v8/test/cctest/compiler/
Dtest-run-stackcheck.cc15 T.isolate->stack_guard()->RequestTerminateExecution(); in TEST()
/external/v8/test/cctest/
Dtest-parsing.cc146 CcTest::i_isolate()->stack_guard()->SetStackLimit( in TEST()
148 uintptr_t stack_limit = CcTest::i_isolate()->stack_guard()->real_climit(); in TEST()
207 CcTest::i_isolate()->stack_guard()->SetStackLimit( in TEST()
263 CcTest::i_isolate()->stack_guard()->SetStackLimit( in TEST()
306 CcTest::i_isolate()->stack_guard()->SetStackLimit( in TEST()
319 uintptr_t stack_limit = CcTest::i_isolate()->stack_guard()->real_climit(); in TEST()
346 CcTest::i_isolate()->stack_guard()->SetStackLimit( in TEST()
355 uintptr_t stack_limit = CcTest::i_isolate()->stack_guard()->real_climit(); in TEST()
386 CcTest::i_isolate()->stack_guard()->SetStackLimit( in TEST()
419 isolate->stack_guard()->SetStackLimit(i::GetCurrentStackPosition() - in TEST()
[all …]
/external/v8/src/heap/
Dincremental-marking.cc960 heap_->isolate()->stack_guard()->ClearGC(); in Stop()
978 heap_->isolate()->stack_guard()->ClearGC(); in Finalize()
991 heap_->isolate()->stack_guard()->RequestGC(); in FinalizeMarking()
1009 heap_->isolate()->stack_guard()->RequestGC(); in MarkingComplete()
Dheap.cc606 isolate_->stack_guard()->RequestDeoptMarkedAllocationSites(); in ProcessPretenuringFeedback()
1877 if (marked) isolate_->stack_guard()->RequestDeoptMarkedAllocationSites(); in ResetAllAllocationSitesDependentCode()
5201 (isolate_->stack_guard()->jslimit() & ~kSmiTagMask) | kSmiTag); in SetStackLimits()
5203 (isolate_->stack_guard()->real_jslimit() & ~kSmiTagMask) | kSmiTag); in SetStackLimits()
/external/v8/src/runtime/
Druntime-internal.cc232 return isolate->stack_guard()->HandleInterrupts(); in RUNTIME_FUNCTION()
239 return isolate->stack_guard()->HandleInterrupts(); in RUNTIME_FUNCTION()
Druntime-debug.cc60 isolate->stack_guard()->RequestDebugBreak(); in RUNTIME_FUNCTION()
/external/v8/src/debug/
Ddebug.cc1856 isolate_->stack_guard()->ClearDebugCommand(); in NotifyMessageHandler()
2029 if (!in_debug_scope()) isolate_->stack_guard()->RequestDebugCommand(); in EnqueueCommandMessage()
2078 bool debug_command_only = isolate_->stack_guard()->CheckDebugCommand() && in HandleDebugBreak()
2079 !isolate_->stack_guard()->CheckDebugBreak(); in HandleDebugBreak()
2081 isolate_->stack_guard()->ClearDebugBreak(); in HandleDebugBreak()
2091 isolate_->stack_guard()->ClearDebugCommand(); in ProcessDebugMessages()
2146 if (debug_->has_commands()) isolate()->stack_guard()->RequestDebugCommand(); in ~DebugScope()
/external/v8/src/regexp/
Dregexp-macro-assembler.cc92 Object* result = isolate->stack_guard()->HandleInterrupts(); in CheckStackGuardState()
/external/v8/src/parsing/
Djson-parser.h272 isolate_->stack_guard()->HandleGCInterrupt(); in ParseJsonValue()
Dparser.cc71 set_stack_limit(isolate_->stack_guard()->real_climit()); in ParseInfo()
88 set_stack_limit(isolate_->stack_guard()->real_climit()); in ParseInfo()
/external/v8/src/arm64/
Dsimulator-arm64.cc227 isolate_->stack_guard()->AdjustStackLimitForSimulator(); in CheckPCSComplianceAndRun()
/external/v8/src/arm/
Dsimulator-arm.cc4044 isolate_->stack_guard()->AdjustStackLimitForSimulator(); in CallInternal()
/external/v8/src/ast/
Dast.h3010 stack_limit_ = isolate->stack_guard()->real_climit(); \
/external/v8/src/ppc/
Dsimulator-ppc.cc3853 isolate_->stack_guard()->AdjustStackLimitForSimulator(); in CallInternal()

12