Searched refs:stack_limit_ (Results 1 – 17 of 17) sorted by relevance
/external/v8/src/ |
D | compiler.h | 194 : state_(initial_state), stack_limit_(stack_limit) {} in CompilationJob() 197 void set_stack_limit(uintptr_t stack_limit) { stack_limit_ = stack_limit; } in set_stack_limit() 198 uintptr_t stack_limit() const { return stack_limit_; } in stack_limit() 214 uintptr_t stack_limit_; variable
|
D | isolate.h | 585 stack_limit_(0), in PerIsolateThreadData() 611 uintptr_t stack_limit_; variable
|
D | api.cc | 939 stack_limit_(nullptr), in ResourceConstraints()
|
/external/v8/src/parsing/ |
D | parse-info.h | 138 uintptr_t stack_limit() const { return stack_limit_; } in stack_limit() 139 void set_stack_limit(uintptr_t stack_limit) { stack_limit_ = stack_limit; } in set_stack_limit() 255 uintptr_t stack_limit_; variable
|
D | parse-info.cc | 25 stack_limit_(0), in ParseInfo()
|
D | parser-base.h | 272 stack_limit_(stack_limit), in ParserBase() 323 uintptr_t stack_limit() const { return stack_limit_; } in stack_limit() 325 void set_stack_limit(uintptr_t stack_limit) { stack_limit_ = stack_limit; } in set_stack_limit() 709 if (GetCurrentStackPosition() < stack_limit_) { in Next() 1556 uintptr_t stack_limit_; variable
|
D | parser.h | 241 new PreParser(zone(), &scanner_, stack_limit_, ast_value_factory(),
|
D | parser.cc | 828 stack_limit_, in DoParseFunction() 2856 InitializerRewriter rewriter(stack_limit_, expr, this); in RewriteParameterInitializer()
|
/external/v8/src/asmjs/ |
D | asm-parser.h | 158 uintptr_t stack_limit_; variable
|
D | asm-parser.cc | 59 if (GetCurrentStackPosition() < stack_limit_) { \ 77 stack_limit_(stack_limit), in AsmJsParser()
|
/external/v8/src/wasm/ |
D | wasm-interpreter.cc | 1249 WasmValue* stack_limit_ = nullptr; // End of allocated stack space. member in v8::internal::wasm::__anon959de6190111::ThreadImpl 2084 stack_limit_ - stack_.get() - frames_.back().sp); in Execute() 2633 DCHECK_LE(1, stack_limit_ - sp_); in Push() 2638 DCHECK_LE(arity, stack_limit_ - sp_); in Push() 2647 if (V8_LIKELY(static_cast<size_t>(stack_limit_ - sp_) >= size)) return; in EnsureStackSpace() 2648 size_t old_size = stack_limit_ - stack_.get(); in EnsureStackSpace() 2656 stack_limit_ = stack_.get() + new_size; in EnsureStackSpace()
|
/external/v8/src/ast/ |
D | ast.h | 2796 if (GetCurrentStackPosition() < stack_limit_) { \ 2805 stack_limit_ = isolate->stack_guard()->real_climit(); \ 2810 stack_limit_ = stack_limit; \ 2814 uintptr_t stack_limit_; \
|
/external/v8/src/arm64/ |
D | simulator-arm64.cc | 285 return stack_limit_ + 1024; in StackLimit() 332 stack_limit_ = stack_ + stack_protection_size_; in Init() 2194 if ((address >= stack_limit_) && (address < stack)) { in CheckMemoryAccess() 2201 static_cast<uint64_t>(stack_limit_)); in CheckMemoryAccess()
|
D | simulator-arm64.h | 2163 uintptr_t stack_limit_; variable
|
/external/v8/include/ |
D | v8.h | 6463 uint32_t* stack_limit() const { return stack_limit_; } 6465 void set_stack_limit(uint32_t* value) { stack_limit_ = value; } 6480 uint32_t* stack_limit_;
|
/external/vixl/src/aarch64/ |
D | simulator-aarch64.h | 3155 byte* stack_limit_;
|
D | simulator-aarch64.cc | 98 stack_limit_ = stack_ + stack_protection_size_; in Simulator()
|