Searched defs:stack_limit (Results 1 - 18 of 18) sorted by relevance

/external/regex-re2/util/
H A Dpcre.h464 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 Dpcre.cc52 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 Dregexp-macro-assembler-mips.cc611 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 Dregexp-macro-assembler-mips64.cc656 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 Dbuiltins-ia32.cc90 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 Dfull-codegen-ia32.cc154 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 Dlithium-codegen-ia32.cc5508 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 Dbuiltins-x87.cc90 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 Dfull-codegen-x87.cc154 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 Dlithium-codegen-x87.cc6104 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 Dregexp-macro-assembler-arm64.cc719 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 Dparser.h612 uintptr_t stack_limit; member in struct:v8::internal::Parser::ParseInfo
H A Dpreparser.h71 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 Dapi.cc485 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 Dtest-parsing.cc150 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 Dtest-api.cc17879 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 Dhost_x86_isel.c438 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 Dv8.h4079 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);

Completed in 550 milliseconds