HomeSort by relevance Sort by last modified time
    Searched defs:stack_limit (Results 1 - 13 of 13) sorted by null

  /external/v8/src/
preparser-api.cc 189 uintptr_t stack_limit = reinterpret_cast<uintptr_t>(&buffer) - max_stack; local
198 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...]
  /external/regex-re2/util/
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;
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...]
  /external/v8/src/mips/
regexp-macro-assembler-mips.cc 638 ExternalReference stack_limit = local
640 __ li(a0, Operand(stack_limit));
    [all...]
  /external/v8/src/ia32/
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/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...]
test-api.cc 14019 static uint32_t* stack_limit; variable
    [all...]
  /external/valgrind/main/VEX/priv/
host_x86_isel.c 413 Int not_done_yet, n_args, n_arg_ws, stack_limit, local
471 stack_limit = cee->regparms;
472 if (cee->regparms > 0 && passBBP) stack_limit--;
476 /* Push (R to L) the stack-passed args, [n_args-1 .. stack_limit] */
477 for (i = n_args-1; i >= stack_limit; i--) {
482 /* args [stack_limit-1 .. 0] and possibly %ebp are to be passed in
500 for (i = stack_limit-1; i >= 0; i--) {
511 for (i = stack_limit-1; i >= 0; i--) {
525 for (i = stack_limit-1; i >= 0; i--) {
534 for (i = stack_limit-1; i >= 0; i--)
    [all...]
  /external/v8/include/
v8.h 2574 uint32_t* stack_limit() const { return stack_limit_; } function in class:v8::ResourceConstraints
    [all...]

Completed in 481 milliseconds