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

12

/external/v8/src/ast/
H A Dast-expression-rewriter.h25 explicit AstExpressionRewriter(uintptr_t stack_limit) : AstVisitor() { argument
26 InitializeAstRewriter(stack_limit);
H A Dast-expression-visitor.cc19 AstExpressionVisitor::AstExpressionVisitor(uintptr_t stack_limit, argument
21 : AstTraversalVisitor(stack_limit), root_(root) {}
H A Dast.cc846 AstTraversalVisitor::AstTraversalVisitor(uintptr_t stack_limit) : depth_(0) { argument
847 InitializeAstVisitor(stack_limit);
/external/v8/src/
H A Dbackground-parsing-task.cc52 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 Dparameter-initializer-rewriter.cc23 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 Dparser.h118 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 Dpreparser.h1027 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 Dparser-base.h177 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 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/regexp/mips/
H A Dregexp-macro-assembler-mips.cc653 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 Dregexp-macro-assembler-mips64.cc689 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 Dcode-generator-ia32.cc1422 ExternalReference const stack_limit = local
1424 __ cmp(esp, Operand::StaticVariable(stack_limit));
/external/v8/src/compiler/x87/
H A Dcode-generator-x87.cc1905 ExternalReference const stack_limit = local
1907 __ cmp(esp, Operand::StaticVariable(stack_limit));
/external/v8/src/interpreter/
H A Dinterpreter-assembler.cc635 Node* stack_limit = Load( local
638 return UintPtrLessThan(sp, stack_limit);
/external/v8/src/ia32/
H A Dbuiltins-ia32.cc98 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 Dregexp-macro-assembler-arm64.cc761 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 Dbuiltins-x87.cc98 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 Dfull-codegen-ia32.cc130 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 Dfull-codegen-x87.cc130 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 Dtest-parsing.cc148 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 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/src/crankshaft/ia32/
H A Dlithium-codegen-ia32.cc5151 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 Dlithium-codegen-x87.cc5636 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 Dv8.h4974 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);

Completed in 5400 milliseconds

12