/external/v8/src/ast/ |
H A D | ast-expression-rewriter.h | 25 explicit AstExpressionRewriter(uintptr_t stack_limit) : AstVisitor() { argument 26 InitializeAstRewriter(stack_limit);
|
H A D | ast-expression-visitor.cc | 19 AstExpressionVisitor::AstExpressionVisitor(uintptr_t stack_limit, argument 21 : AstTraversalVisitor(stack_limit), root_(root) {}
|
H A D | ast.cc | 846 AstTraversalVisitor::AstTraversalVisitor(uintptr_t stack_limit) : depth_(0) { argument 847 InitializeAstVisitor(stack_limit);
|
/external/v8/src/ |
H A D | background-parsing-task.cc | 52 uintptr_t stack_limit = local 53 reinterpret_cast<uintptr_t>(&stack_limit) - stack_size_ * KB; 55 source_->info->set_stack_limit(stack_limit);
|
/external/v8/src/parsing/ |
H A D | parameter-initializer-rewriter.cc | 23 Rewriter(uintptr_t stack_limit, Expression* initializer, Scope* old_scope, argument 25 : AstExpressionVisitor(stack_limit, initializer), 134 void RewriteParameterInitializerScope(uintptr_t stack_limit, argument 137 Rewriter rewriter(stack_limit, initializer, old_scope, new_scope);
|
H A D | parser.h | 118 uintptr_t stack_limit() { return stack_limit_; } function in class:v8::internal::ParseInfo 119 void set_stack_limit(uintptr_t stack_limit) { stack_limit_ = stack_limit; } argument
|
H A D | preparser.h | 1027 ParserRecorder* log, uintptr_t stack_limit) 1028 : ParserBase<PreParserTraits>(zone, scanner, stack_limit, NULL, 1026 PreParser(Zone* zone, Scanner* scanner, AstValueFactory* ast_value_factory, ParserRecorder* log, uintptr_t stack_limit) argument
|
H A D | parser-base.h | 177 ParserBase(Zone* zone, Scanner* scanner, uintptr_t stack_limit, argument 189 stack_limit_(stack_limit), 227 uintptr_t stack_limit() const { return stack_limit_; } function in class:v8::internal::ParseFunctionFlags::MethodKind::ParserBase
|
/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/regexp/mips/ |
H A D | regexp-macro-assembler-mips.cc | 653 ExternalReference stack_limit = local 655 __ li(a0, Operand(stack_limit)); 1255 ExternalReference stack_limit = 1257 __ li(a0, Operand(stack_limit)); 1264 ExternalReference stack_limit = 1267 __ li(a0, Operand(stack_limit));
|
/external/v8/src/regexp/mips64/ |
H A D | regexp-macro-assembler-mips64.cc | 689 ExternalReference stack_limit = local 691 __ li(a0, Operand(stack_limit)); 1292 ExternalReference stack_limit = 1294 __ li(a0, Operand(stack_limit)); 1301 ExternalReference stack_limit = 1304 __ li(a0, Operand(stack_limit));
|
/external/v8/src/compiler/ia32/ |
H A D | code-generator-ia32.cc | 1422 ExternalReference const stack_limit = local 1424 __ cmp(esp, Operand::StaticVariable(stack_limit));
|
/external/v8/src/compiler/x87/ |
H A D | code-generator-x87.cc | 1905 ExternalReference const stack_limit = local 1907 __ cmp(esp, Operand::StaticVariable(stack_limit));
|
/external/v8/src/interpreter/ |
H A D | interpreter-assembler.cc | 635 Node* stack_limit = Load( local 638 return UintPtrLessThan(sp, stack_limit);
|
/external/v8/src/ia32/ |
H A D | builtins-ia32.cc | 98 ExternalReference stack_limit = local 100 __ cmp(esp, Operand::StaticVariable(stack_limit)); 620 ExternalReference stack_limit = local 622 __ cmp(ecx, Operand::StaticVariable(stack_limit));
|
/external/v8/src/regexp/arm64/ |
H A D | regexp-macro-assembler-arm64.cc | 761 ExternalReference stack_limit = 763 __ Mov(x10, stack_limit); 1459 ExternalReference stack_limit = local 1461 __ Mov(x10, stack_limit); 1470 ExternalReference stack_limit = local 1472 __ Mov(x10, stack_limit);
|
/external/v8/src/x87/ |
H A D | builtins-x87.cc | 98 ExternalReference stack_limit = local 100 __ cmp(esp, Operand::StaticVariable(stack_limit)); 621 ExternalReference stack_limit = local 623 __ cmp(ecx, Operand::StaticVariable(stack_limit));
|
/external/v8/src/full-codegen/ia32/ |
H A D | full-codegen-ia32.cc | 130 ExternalReference stack_limit = local 132 __ cmp(ecx, Operand::StaticVariable(stack_limit)); 311 ExternalReference stack_limit = local 313 __ cmp(esp, Operand::StaticVariable(stack_limit));
|
/external/v8/src/full-codegen/x87/ |
H A D | full-codegen-x87.cc | 130 ExternalReference stack_limit = local 132 __ cmp(ecx, Operand::StaticVariable(stack_limit)); 308 ExternalReference stack_limit = local 310 __ cmp(esp, Operand::StaticVariable(stack_limit));
|
/external/v8/test/cctest/ |
H A D | test-parsing.cc | 148 uintptr_t stack_limit = CcTest::i_isolate()->stack_guard()->real_climit(); local 160 stack_limit); 178 stack_limit); 325 uintptr_t stack_limit = CcTest::i_isolate()->stack_guard()->real_climit(); local 339 stack_limit); 361 uintptr_t stack_limit = CcTest::i_isolate()->stack_guard()->real_climit(); local 376 stack_limit); 520 uintptr_t stack_limit = CcTest::i_isolate()->stack_guard()->real_climit(); local 533 stack_limit); 1549 uintptr_t stack_limit local [all...] |
/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/src/crankshaft/ia32/ |
H A D | lithium-codegen-ia32.cc | 5151 ExternalReference stack_limit = local 5153 __ cmp(esp, Operand::StaticVariable(stack_limit)); 5167 ExternalReference stack_limit = local 5169 __ cmp(esp, Operand::StaticVariable(stack_limit));
|
/external/v8/src/crankshaft/x87/ |
H A D | lithium-codegen-x87.cc | 5636 ExternalReference stack_limit = local 5638 __ cmp(esp, Operand::StaticVariable(stack_limit)); 5652 ExternalReference stack_limit = local 5654 __ cmp(esp, Operand::StaticVariable(stack_limit));
|
/external/v8/include/ |
H A D | v8.h | 4974 uint32_t* stack_limit() const { return stack_limit_; } function in class:v8::ResourceConstraints 6285 * \param stack_limit An address beyond which the Vm's stack may not grow. 6291 void SetStackLimit(uintptr_t stack_limit);
|