/external/regex-re2/util/ |
H A D | 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) { argument 543 stack_limit_ = stack_limit;
|
H A D | 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 51 Init(const char* pattern, Option options, int match_limit, int stack_limit, bool report_errors) argument [all...] |
/external/v8/src/mips/ |
H A D | regexp-macro-assembler-mips.cc | 611 ExternalReference stack_limit = local 613 __ li(a0, Operand(stack_limit)); 1281 ExternalReference stack_limit = 1283 __ li(a0, Operand(stack_limit)); 1290 ExternalReference stack_limit = 1293 __ li(a0, Operand(stack_limit));
|
/external/v8/src/mips64/ |
H A D | regexp-macro-assembler-mips64.cc | 656 ExternalReference stack_limit = local 658 __ li(a0, Operand(stack_limit)); 1327 ExternalReference stack_limit = 1329 __ li(a0, Operand(stack_limit)); 1336 ExternalReference stack_limit = 1339 __ li(a0, Operand(stack_limit));
|
/external/v8/src/ia32/ |
H A D | builtins-ia32.cc | 90 ExternalReference stack_limit = local 92 __ cmp(esp, Operand::StaticVariable(stack_limit)); 1439 ExternalReference stack_limit = local 1441 __ cmp(esp, Operand::StaticVariable(stack_limit));
|
H A D | full-codegen-ia32.cc | 154 ExternalReference stack_limit = local 156 __ cmp(ecx, Operand::StaticVariable(stack_limit)); 301 ExternalReference stack_limit local 303 __ cmp(esp, Operand::StaticVariable(stack_limit));
|
H A D | lithium-codegen-ia32.cc | 5508 ExternalReference stack_limit = local 5510 __ cmp(esp, Operand::StaticVariable(stack_limit)); 5524 ExternalReference stack_limit = local 5526 __ cmp(esp, Operand::StaticVariable(stack_limit));
|
/external/v8/src/x87/ |
H A D | builtins-x87.cc | 90 ExternalReference stack_limit = local 92 __ cmp(esp, Operand::StaticVariable(stack_limit)); 1439 ExternalReference stack_limit = local 1441 __ cmp(esp, Operand::StaticVariable(stack_limit));
|
H A D | full-codegen-x87.cc | 154 ExternalReference stack_limit = local 156 __ cmp(ecx, Operand::StaticVariable(stack_limit)); 298 ExternalReference stack_limit local 300 __ cmp(esp, Operand::StaticVariable(stack_limit));
|
H A D | lithium-codegen-x87.cc | 6104 ExternalReference stack_limit = local 6106 __ cmp(esp, Operand::StaticVariable(stack_limit)); 6120 ExternalReference stack_limit = local 6122 __ cmp(esp, Operand::StaticVariable(stack_limit));
|
/external/v8/src/arm64/ |
H A D | regexp-macro-assembler-arm64.cc | 719 ExternalReference stack_limit = 721 __ Mov(x10, stack_limit); 1492 ExternalReference stack_limit = local 1494 __ Mov(x10, stack_limit); 1503 ExternalReference stack_limit = local 1505 __ Mov(x10, stack_limit);
|
/external/v8/src/ |
H A D | parser.h | 612 uintptr_t stack_limit; member in struct:v8::internal::Parser::ParseInfo
|
H A D | preparser.h | 71 ParserBase(Scanner* scanner, uintptr_t stack_limit, v8::Extension* extension, argument 83 stack_limit_(stack_limit), 1420 PreParser(Scanner* scanner, ParserRecorder* log, uintptr_t stack_limit) argument 1421 : ParserBase<PreParserTraits>(scanner, stack_limit, NULL, log, NULL, NULL,
|
H A D | api.cc | 485 if (constraints.stack_limit() != NULL) { 486 uintptr_t limit = reinterpret_cast<uintptr_t>(constraints.stack_limit()); 6808 void v8::Isolate::SetStackLimit(uintptr_t stack_limit) { argument 6810 CHECK(stack_limit); 6811 isolate->stack_guard()->SetStackLimit(stack_limit);
|
/external/v8/test/cctest/ |
H A D | test-parsing.cc | 150 uintptr_t stack_limit = CcTest::i_isolate()->stack_guard()->real_climit(); local 158 i::PreParser preparser(&scanner, &log, stack_limit); 172 i::PreParser preparser(&scanner, &log, stack_limit); 308 uintptr_t stack_limit = CcTest::i_isolate()->stack_guard()->real_climit(); local 318 i::PreParser preparser(&scanner, &log, stack_limit); 341 uintptr_t stack_limit = CcTest::i_isolate()->stack_guard()->real_climit(); local 352 i::PreParser preparser(&scanner, &log, stack_limit); 488 uintptr_t stack_limit = CcTest::i_isolate()->stack_guard()->real_climit(); local 497 i::PreParser preparser(&scanner, &log, stack_limit); 1252 uintptr_t stack_limit local [all...] |
H A D | test-api.cc | 17879 static uint32_t* stack_limit; variable 17883 stack_limit = reinterpret_cast<uint32_t*>( 17921 CHECK(stack_limit == set_limit); 17943 CHECK(stack_limit == set_limit); 17947 CHECK(stack_limit == set_limit);
|
/external/valgrind/VEX/priv/ |
H A D | host_x86_isel.c | 438 Int not_done_yet, n_args, n_arg_ws, stack_limit, local 538 stack_limit = cee->regparms; 542 /* Push (R to L) the stack-passed args, [n_args-1 .. stack_limit] */ 543 for (i = n_args-1; i >= stack_limit; i--) { 548 /* args [stack_limit-1 .. 0] and possibly %ebp are to be passed in 566 for (i = stack_limit-1; i >= 0; i--) { 577 for (i = stack_limit-1; i >= 0; i--) { 599 for (i = stack_limit-1; i >= 0; i--) { 608 for (i = stack_limit-1; i >= 0; i--) {
|
/external/v8/include/ |
H A D | v8.h | 4079 uint32_t* stack_limit() const { return stack_limit_; } function in class:v8::ResourceConstraints 4830 * \param stack_limit An address beyond which the Vm's stack may not grow. 4836 void SetStackLimit(uintptr_t stack_limit);
|