Home
last modified time | relevance | path

Searched refs:stack_limit (Results 1 - 25 of 71) sorted by relevance

123

/third_party/node/deps/v8/src/ast/
H A Dast-function-literal-id-reindexer.cc13 AstFunctionLiteralIdReindexer::AstFunctionLiteralIdReindexer(size_t stack_limit, in AstFunctionLiteralIdReindexer() argument
15 : AstTraversalVisitor(stack_limit), delta_(delta) {} in AstFunctionLiteralIdReindexer()
91 AstFunctionLiteralIdReindexChecker(size_t stack_limit, in AstFunctionLiteralIdReindexChecker() argument
93 : AstTraversalVisitor(stack_limit), visited_(visited) {} in AstFunctionLiteralIdReindexChecker()
108 AstFunctionLiteralIdReindexChecker(stack_limit(), &visited_).Visit(expr); in CheckVisited()
H A Dsource-range-ast-visitor.cc12 SourceRangeAstVisitor::SourceRangeAstVisitor(uintptr_t stack_limit, in SourceRangeAstVisitor() argument
15 : AstTraversalVisitor(stack_limit, root), in SourceRangeAstVisitor()
H A Dast-function-literal-id-reindexer.h23 AstFunctionLiteralIdReindexer(size_t stack_limit, int delta);
H A Dsource-range-ast-visitor.h30 SourceRangeAstVisitor(uintptr_t stack_limit, Expression* root,
H A Dast-traversal-visitor.h32 explicit AstTraversalVisitor(uintptr_t stack_limit, AstNode* root = nullptr);
99 AstTraversalVisitor<Subclass>::AstTraversalVisitor(uintptr_t stack_limit, in AstTraversalVisitor() argument
102 InitializeAstVisitor(stack_limit); in AstTraversalVisitor()
H A Dprettyprinter.h91 explicit AstPrinter(uintptr_t stack_limit);
/third_party/musl/porting/liteos_m/user/src/thread/
H A Dpthread_create.c120 unsigned char *stack = 0, *stack_limit, *map_base = 0; in __pthread_create() local
134 stack_limit = (void *)(attr._a_stackaddr - size); in __pthread_create()
138 stack_limit = map_base; in __pthread_create()
142 new->map_base = stack_limit; in __pthread_create()
145 new->stack_size = (uintptr_t)new->stack - (uintptr_t)stack_limit; in __pthread_create()
/third_party/musl/porting/liteos_a/user/src/thread/
H A Dpthread_create.c239 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit; in __pthread_create() local
261 stack_limit = (void *)(attr._a_stackaddr - size); in __pthread_create()
295 stack_limit = map + guard; in __pthread_create()
303 new->stack_size = stack - stack_limit; in __pthread_create()
/third_party/musl/src/thread/liteos_a/
H A Dpthread_create.c239 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit; in __pthread_create() local
261 stack_limit = (void *)(attr._a_stackaddr - size); in __pthread_create()
295 stack_limit = map + guard; in __pthread_create()
303 new->stack_size = stack - stack_limit; in __pthread_create()
/third_party/node/deps/v8/src/parsing/
H A Dparse-info.cc205 uintptr_t stack_limit, in ParseInfo()
212 stack_limit_(stack_limit), in ParseInfo()
240 uintptr_t stack_limit) in ParseInfo()
241 : ParseInfo(flags, state, reusable_state, stack_limit, in ParseInfo()
202 ParseInfo(const UnoptimizedCompileFlags flags, UnoptimizedCompileState* state, ReusableUnoptimizedCompileState* reusable_state, uintptr_t stack_limit, RuntimeCallStats* runtime_call_stats) ParseInfo() argument
237 ParseInfo(LocalIsolate* isolate, const UnoptimizedCompileFlags flags, UnoptimizedCompileState* state, ReusableUnoptimizedCompileState* reusable_state, uintptr_t stack_limit) ParseInfo() argument
H A Dparse-info.h231 uintptr_t stack_limit);
266 uintptr_t stack_limit() const { return stack_limit_; } in stack_limit() function in v8::internal::ParseInfo
342 uintptr_t stack_limit, RuntimeCallStats* runtime_call_stats);
H A Drewriter.cc20 Processor(uintptr_t stack_limit, DeclarationScope* closure_scope, in Processor() argument
31 InitializeAstVisitor(stack_limit); in Processor()
45 InitializeAstVisitor(parser->stack_limit()); in Processor()
416 Processor processor(info->stack_limit(), scope->AsDeclarationScope(), in RewriteBody()
/third_party/jerryscript/jerry-core/parser/js/
H A Djs-parser.c608 uint16_t stack_limit; in parse_print_final_cbc() local
618 stack_limit = args->stack_limit; in parse_print_final_cbc()
628 stack_limit = args->stack_limit; in parse_print_final_cbc()
637 (int) (stack_limit + register_end)); in parse_print_final_cbc()
952 if ((size_t) context_p->stack_limit + (size_t) context_p->register_count > PARSER_MAXIMUM_STACK_LIMIT) in parser_post_processing()
1184 if (context_p->stack_limit > CBC_MAXIMUM_BYTE_VALUE in parser_post_processing()
1251 args_p->stack_limit = context_p->stack_limit; in parser_post_processing()
[all...]
H A Djs-parser-util.c275 if (context_p->stack_depth > context_p->stack_limit) in parser_flush_cbc()
277 context_p->stack_limit = context_p->stack_depth; in parser_flush_cbc()
278 if (context_p->stack_limit > PARSER_MAXIMUM_STACK_LIMIT) in parser_flush_cbc()
585 if (context_p->stack_depth > context_p->stack_limit) in parser_emit_cbc_forward_branch()
587 context_p->stack_limit = context_p->stack_depth; in parser_emit_cbc_forward_branch()
588 if (context_p->stack_limit > PARSER_MAXIMUM_STACK_LIMIT) in parser_emit_cbc_forward_branch()
/third_party/node/deps/v8/src/wasm/
H A Dstacks.h25 void* stack_limit; member
32 constexpr int kJmpBufStackLimitOffset = offsetof(JumpBuffer, stack_limit);
/third_party/musl/src/thread/
H A Dpthread_create.c251 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit; in __pthread_create() local
284 stack_limit = (void *)(attr._a_stackaddr - size); in __pthread_create()
318 stack_limit = map + guard; in __pthread_create()
326 new->stack_size = stack - stack_limit; in __pthread_create()
/third_party/musl/src/thread/linux/
H A Dpthread_create.c425 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit, *start_addr; in __pthread_create() local
461 stack_limit = (void *)(attr._a_stackaddr - size); in __pthread_create()
502 stack_limit = map + guard; in __pthread_create()
510 new->stack_size = stack - stack_limit; in __pthread_create()
/third_party/musl/porting/linux/user/src/thread/
H A Dpthread_create.c361 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit, *start_addr; in __pthread_create() local
397 stack_limit = (void *)(attr._a_stackaddr - size); in __pthread_create()
438 stack_limit = map + guard; in __pthread_create()
446 new->stack_size = stack - stack_limit; in __pthread_create()
/third_party/node/deps/v8/src/regexp/
H A Dregexp-parser.h27 static bool VerifyRegExpSyntax(Zone* zone, uintptr_t stack_limit,
H A Dregexp-parser.cc189 uintptr_t stack_limit, Zone* zone,
361 uintptr_t stack_limit, Zone* zone, const DisallowGarbageCollection& no_gc) in RegExpParserImpl()
379 stack_limit_(stack_limit) { in RegExpParserImpl()
2336 uintptr_t stack_limit = isolate->stack_guard()->real_climit(); in ParseRegExpFromHeapString() local
2341 stack_limit, zone, no_gc} in ParseRegExpFromHeapString()
2346 stack_limit, zone, no_gc} in ParseRegExpFromHeapString()
2353 bool RegExpParser::VerifyRegExpSyntax(Zone* zone, uintptr_t stack_limit, in VerifyRegExpSyntax() argument
2359 stack_limit, zone, no_gc} in VerifyRegExpSyntax()
359 RegExpParserImpl( const CharT* input, int input_length, RegExpFlags flags, uintptr_t stack_limit, Zone* zone, const DisallowGarbageCollection& no_gc) RegExpParserImpl() argument
/third_party/node/deps/v8/src/execution/
H A Dlocal-isolate.cc73 return GetCurrentStackPosition() < local_isolate->stack_limit(); in HasOverflowed()
H A Dlocal-isolate.h112 Address stack_limit() const { return stack_limit_; } in stack_limit() function in v8::internal::final
/third_party/node/deps/v8/src/codegen/
H A Dcompiler.h296 UnoptimizedCompilationJob(uintptr_t stack_limit, ParseInfo* parse_info, in UnoptimizedCompilationJob() argument
299 stack_limit_(stack_limit), in UnoptimizedCompilationJob()
329 uintptr_t stack_limit() const { return stack_limit_; } in stack_limit() function in v8::internal::UnoptimizedCompilationJob
/third_party/node/deps/v8/src/interpreter/
H A Dinterpreter.cc153 << AstPrinter(parse_info->stack_limit()) in MaybePrintAst()
179 : UnoptimizedCompilationJob(parse_info->stack_limit(), parse_info, in InterpreterCompilationJob()
204 generator()->GenerateBytecode(stack_limit()); in ExecuteJobImpl()
/third_party/littlefs/
H A DMakefile244 -fstack=stack_limit --max=stack \
258 -fstack=stack_limit --max=stack \
331 -fstack=stack_limit --max=stack \
346 -fstack=stack_limit --max=stack \

Completed in 19 milliseconds

123