/external/regex-re2/util/ |
pcre.cc | 52 int stack_limit, bool report_errors) { 56 stack_limit_ = stack_limit; 89 re_option.stack_limit(), re_option.report_errors()); 94 re_option.stack_limit(), re_option.report_errors()); 474 int stack_limit = stack_limit_; local 475 if (stack_limit <= 0) { 476 stack_limit = FLAGS_regexp_stack_limit; 484 if (stack_limit > 0) { 486 extra.match_limit_recursion = stack_limit / kPCREFrameSize; 527 PCREPORT(WARNING) << "Exceeded stack limit of " << stack_limit [all...] |
pcre.h | 464 int stack_limit, bool report_errors); 518 // the CPU time of a match, and stack_limit, which limits the 541 int stack_limit() const { return stack_limit_; } function in class:re2::PCRE_Options 542 void set_stack_limit(int stack_limit) { 543 stack_limit_ = stack_limit;
|
/external/v8/src/ |
preparser-api.cc | 189 uintptr_t stack_limit = reinterpret_cast<uintptr_t>(&buffer) - max_stack; local 198 stack_limit);
|
preparser.h | 117 uintptr_t stack_limit, 124 stack_limit_(stack_limit), 143 uintptr_t stack_limit) { 147 return PreParser(scanner, log, stack_limit, allow_lazy,
|
regexp-macro-assembler.h | 65 // at least once for every stack_limit() pushes that are executed.
|
execution.cc | 571 uintptr_t stored_limit = per_thread->stack_limit();
|
isolate.h | 384 uintptr_t stack_limit() const { return stack_limit_; } function in class:v8::internal::Isolate::PerIsolateThreadData [all...] |
parser.cc | 4660 intptr_t stack_limit = isolate()->stack_guard()->real_climit(); local 5901 intptr_t stack_limit = isolate->stack_guard()->real_climit(); local [all...] |
heap.h | 79 V(Smi, stack_limit, StackLimit) \ [all...] |
api.cc | 597 if (constraints->stack_limit() != NULL) { 598 uintptr_t limit = reinterpret_cast<uintptr_t>(constraints->stack_limit()); [all...] |
/external/v8/test/cctest/ |
test-parsing.cc | 255 uintptr_t stack_limit = i::Isolate::Current()->stack_guard()->real_climit(); local 270 stack_limit); 291 uintptr_t stack_limit = i::Isolate::Current()->stack_guard()->real_climit(); local 306 stack_limit); 394 uintptr_t stack_limit = i::Isolate::Current()->stack_guard()->real_climit(); local 408 stack_limit); 1044 uintptr_t stack_limit = i::Isolate::Current()->stack_guard()->real_climit(); local [all...] |
/external/v8/src/arm/ |
regexp-macro-assembler-arm.cc | 641 ExternalReference stack_limit = 643 __ mov(r0, Operand(stack_limit)); [all...] |
/external/v8/src/ia32/ |
regexp-macro-assembler-ia32.cc | 693 ExternalReference stack_limit = 696 __ sub(ecx, Operand::StaticVariable(stack_limit)); [all...] |
builtins-ia32.cc | 1709 ExternalReference stack_limit = local [all...] |
full-codegen-ia32.cc | 284 ExternalReference stack_limit = local 286 __ cmp(esp, Operand::StaticVariable(stack_limit)); 362 ExternalReference stack_limit = local 364 __ cmp(esp, Operand::StaticVariable(stack_limit)); [all...] |
lithium-codegen-ia32.cc | 4840 ExternalReference stack_limit = local 4858 ExternalReference stack_limit = local [all...] |
/external/v8/src/mips/ |
regexp-macro-assembler-mips.cc | 638 ExternalReference stack_limit = local 640 __ li(a0, Operand(stack_limit)); [all...] |
/external/v8/src/x64/ |
regexp-macro-assembler-x64.cc | 760 ExternalReference stack_limit = 763 __ movq(kScratchRegister, stack_limit); [all...] |
/external/valgrind/main/VEX/priv/ |
host_x86_isel.c | 396 Int not_done_yet, n_args, n_arg_ws, stack_limit, local 454 stack_limit = cee->regparms; 455 if (cee->regparms > 0 && passBBP) stack_limit--; 459 /* Push (R to L) the stack-passed args, [n_args-1 .. stack_limit] */ 460 for (i = n_args-1; i >= stack_limit; i--) { 465 /* args [stack_limit-1 .. 0] and possibly %ebp are to be passed in 483 for (i = stack_limit-1; i >= 0; i--) { 494 for (i = stack_limit-1; i >= 0; i--) { 508 for (i = stack_limit-1; i >= 0; i--) { 517 for (i = stack_limit-1; i >= 0; i--) [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/ |
C.stg | 194 #define SCOPE_SIZE(scope) ctx->p<name>_##scope##Stack_limit [all...] |
/external/v8/include/ |
v8.h | 2574 uint32_t* stack_limit() const { return stack_limit_; } function in class:v8::ResourceConstraints [all...] |