Searched defs:stack_limit (Results 1 - 14 of 14) 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/
H A Dpreparser-api.cc189 uintptr_t stack_limit = reinterpret_cast<uintptr_t>(&buffer) - max_stack; local
198 stack_limit);
H A Dpreparser.h117 uintptr_t stack_limit,
124 stack_limit_(stack_limit),
143 uintptr_t stack_limit) {
147 return PreParser(scanner, log, stack_limit, allow_lazy,
115 PreParser(i::Scanner* scanner, i::ParserRecorder* log, uintptr_t stack_limit, bool allow_lazy, bool allow_natives_syntax, bool allow_modules) argument
140 PreParseProgram(i::Scanner* scanner, i::ParserRecorder* log, int flags, uintptr_t stack_limit) argument
H A Disolate.h384 uintptr_t stack_limit() const { return stack_limit_; } function in class:v8::internal::Isolate::PerIsolateThreadData
H A Dparser.cc4660 intptr_t stack_limit = isolate()->stack_guard()->real_climit(); local
4664 stack_limit,
5901 intptr_t stack_limit = isolate->stack_guard()->real_climit(); local
5906 stack_limit);
/external/v8/src/mips/
H A Dregexp-macro-assembler-mips.cc638 ExternalReference stack_limit = local
640 __ li(a0, Operand(stack_limit));
1203 ExternalReference stack_limit =
1205 __ li(a0, Operand(stack_limit));
1212 ExternalReference stack_limit =
1215 __ li(a0, Operand(stack_limit));
/external/v8/src/ia32/
H A Dbuiltins-ia32.cc1709 ExternalReference stack_limit = local
1711 __ cmp(esp, Operand::StaticVariable(stack_limit));
H A Dfull-codegen-ia32.cc284 ExternalReference stack_limit = local
286 __ cmp(esp, Operand::StaticVariable(stack_limit));
362 ExternalReference stack_limit = local
364 __ cmp(esp, Operand::StaticVariable(stack_limit));
H A Dlithium-codegen-ia32.cc4840 ExternalReference stack_limit = local
4842 __ cmp(esp, Operand::StaticVariable(stack_limit));
4858 ExternalReference stack_limit = local
4860 __ cmp(esp, Operand::StaticVariable(stack_limit));
/external/v8/test/cctest/
H A Dtest-parsing.cc255 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
1055 &scanner, &log, flags, stack_limit);
H A Dtest-api.cc14019 static uint32_t* stack_limit; variable
14022 stack_limit = reinterpret_cast<uint32_t*>(
14060 CHECK(stack_limit == set_limit);
14085 CHECK(stack_limit == set_limit);
14089 CHECK(stack_limit == set_limit);
/external/valgrind/main/VEX/priv/
H A Dhost_x86_isel.c396 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
[all...]
/external/v8/include/
H A Dv8.h2574 uint32_t* stack_limit() const { return stack_limit_; } function in class:v8::ResourceConstraints

Completed in 396 milliseconds