Searched refs:stack_guard (Results 1 - 23 of 23) sorted by relevance

/external/pcre/dist/
H A Dpcre_globals.c75 PCRE_EXP_DATA_DEFN int (*PUBL(stack_guard))(void) = NULL;
83 PCRE_EXP_DATA_DEFN int (*PUBL(stack_guard))(void) = NULL;
H A Dpcretest.c236 #define SET_PCRE_STACK_GUARD8(stack_guard) \
237 pcre_stack_guard = stack_guard
323 #define SET_PCRE_STACK_GUARD16(stack_guard) \
324 pcre16_stack_guard = (int (*)(void))stack_guard
415 #define SET_PCRE_STACK_GUARD32(stack_guard) \
416 pcre32_stack_guard = (int (*)(void))stack_guard
545 #define SET_PCRE_STACK_GUARD(stack_guard) \
547 SET_PCRE_STACK_GUARD32(stack_guard); \
549 SET_PCRE_STACK_GUARD16(stack_guard); \
551 SET_PCRE_STACK_GUARD8(stack_guard)
2237 static int stack_guard(void) function
[all...]
H A Dpcre_compile.c8060 if (PUBL(stack_guard) != NULL && PUBL(stack_guard)())
/external/chromium_org/v8/src/
H A Dv8threads.cc51 isolate_->stack_guard()->ClearThread(access);
52 isolate_->stack_guard()->InitThread(access);
134 isolate_->stack_guard()->InitThread(access);
143 from = isolate_->stack_guard()->RestoreStackGuard(from);
148 isolate_->stack_guard()->RequestTerminateExecution();
301 to = isolate_->stack_guard()->ArchiveStackGuard(to);
316 isolate_->stack_guard()->FreeThreadResources();
H A Disolate.h871 StackGuard* stack_guard() { return &stack_guard_; } function in class:v8::internal::Isolate
1444 StackGuard* stack_guard = isolate_->stack_guard(); local
1445 return GetCurrentStackPosition() < stack_guard->real_climit();
1464 : stack_guard_(isolate->stack_guard()),
H A Doptimizing-compiler-thread.cc111 isolate_->stack_guard()->RequestInstallCode();
H A Ddebug.cc2819 isolate_->stack_guard()->ClearDebugCommand();
2991 if (!in_debug_scope()) isolate_->stack_guard()->RequestDebugCommand();
3000 if (!in_debug_scope()) isolate_->stack_guard()->RequestDebugCommand();
3048 bool debug_command_only = isolate_->stack_guard()->CheckDebugCommand() &&
3049 !isolate_->stack_guard()->CheckDebugBreak();
3051 isolate_->stack_guard()->ClearDebugBreak();
3058 isolate_->stack_guard()->ClearDebugCommand();
3113 if (debug_->has_commands()) isolate()->stack_guard()->RequestDebugCommand();
H A Disolate.cc2367 StackGuard* stack_guard = isolate_->stack_guard(); local
2372 if (jssp < stack_guard->real_jslimit()) return true;
2374 return GetCurrentStackPosition() < stack_guard->real_climit();
H A Dassembler.cc1107 return ExternalReference(isolate->stack_guard()->address_of_jslimit());
1113 return ExternalReference(isolate->stack_guard()->address_of_real_jslimit());
H A Dparser.h630 ParseInfo parse_info = {info->isolate()->stack_guard()->real_climit(),
H A Dapi.cc487 isolate->stack_guard()->SetStackLimit(limit);
6514 i_isolate->stack_guard()->RequestTerminateExecution();
6527 i_isolate->stack_guard()->ClearTerminateExecution();
6536 i_isolate->stack_guard()->RequestApiInterrupt();
6542 i_isolate->stack_guard()->ClearApiInterrupt();
6811 isolate->stack_guard()->SetStackLimit(stack_limit);
6907 reinterpret_cast<i::Isolate*>(isolate)->stack_guard()->RequestDebugBreak();
6913 internal_isolate->stack_guard()->ClearDebugBreak();
6919 return internal_isolate->stack_guard()->CheckDebugBreak();
H A Druntime.cc9603 return isolate->stack_guard()->HandleInterrupts();
9628 return isolate->stack_guard()->HandleInterrupts();
10927 isolate->stack_guard()->RequestDebugBreak();
/external/chromium_org/v8/test/cctest/
H A Dtest-parsing.cc148 CcTest::i_isolate()->stack_guard()->SetStackLimit(
150 uintptr_t stack_limit = CcTest::i_isolate()->stack_guard()->real_climit();
201 CcTest::i_isolate()->stack_guard()->SetStackLimit(
254 CcTest::i_isolate()->stack_guard()->SetStackLimit(
295 CcTest::i_isolate()->stack_guard()->SetStackLimit(
308 uintptr_t stack_limit = CcTest::i_isolate()->stack_guard()->real_climit();
332 CcTest::i_isolate()->stack_guard()->SetStackLimit(
341 uintptr_t stack_limit = CcTest::i_isolate()->stack_guard()->real_climit();
368 CcTest::i_isolate()->stack_guard()->SetStackLimit(
401 isolate->stack_guard()
[all...]
H A Dtest-api.cc15310 reinterpret_cast<i::Isolate*>(isolate_)->stack_guard()->RequestGC();
17884 CcTest::i_isolate()->stack_guard()->real_climit());
/external/chromium_org/v8/src/heap/
H A Dincremental-marking.cc780 heap_->isolate()->stack_guard()->ClearGC();
797 heap_->isolate()->stack_guard()->ClearGC();
813 heap_->isolate()->stack_guard()->RequestGC();
H A Dheap.cc549 isolate_->stack_guard()->RequestDeoptMarkedAllocationSites();
1675 if (marked) isolate_->stack_guard()->RequestDeoptMarkedAllocationSites();
5182 (isolate_->stack_guard()->jslimit() & ~kSmiTagMask) | kSmiTag);
5184 (isolate_->stack_guard()->real_jslimit() & ~kSmiTagMask) | kSmiTag);
/external/chromium_org/v8/src/arm/
H A Dregexp-macro-assembler-arm.cc1076 Object* result = isolate->stack_guard()->HandleInterrupts();
/external/chromium_org/v8/src/ia32/
H A Dregexp-macro-assembler-ia32.cc1108 Object* result = isolate->stack_guard()->HandleInterrupts();
/external/chromium_org/v8/src/mips/
H A Dregexp-macro-assembler-mips.cc1135 Object* result = isolate->stack_guard()->HandleInterrupts();
/external/chromium_org/v8/src/mips64/
H A Dregexp-macro-assembler-mips64.cc1181 Object* result = isolate->stack_guard()->HandleInterrupts();
/external/chromium_org/v8/src/x64/
H A Dregexp-macro-assembler-x64.cc1214 Object* result = isolate->stack_guard()->HandleInterrupts();
/external/chromium_org/v8/src/x87/
H A Dregexp-macro-assembler-x87.cc1107 Object* result = isolate->stack_guard()->HandleInterrupts();
/external/chromium_org/v8/src/arm64/
H A Dregexp-macro-assembler-arm64.cc1324 Object* result = isolate->stack_guard()->HandleInterrupts();

Completed in 2009 milliseconds