Home
last modified time | relevance | path

Searched refs:stack_limit_ (Results 1 – 17 of 17) sorted by relevance

/external/v8/src/
Dcompiler.h194 : 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
Disolate.h585 stack_limit_(0), in PerIsolateThreadData()
611 uintptr_t stack_limit_; variable
Dapi.cc939 stack_limit_(nullptr), in ResourceConstraints()
/external/v8/src/parsing/
Dparse-info.h138 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
Dparse-info.cc25 stack_limit_(0), in ParseInfo()
Dparser-base.h272 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
Dparser.h241 new PreParser(zone(), &scanner_, stack_limit_, ast_value_factory(),
Dparser.cc828 stack_limit_, in DoParseFunction()
2856 InitializerRewriter rewriter(stack_limit_, expr, this); in RewriteParameterInitializer()
/external/v8/src/asmjs/
Dasm-parser.h158 uintptr_t stack_limit_; variable
Dasm-parser.cc59 if (GetCurrentStackPosition() < stack_limit_) { \
77 stack_limit_(stack_limit), in AsmJsParser()
/external/v8/src/wasm/
Dwasm-interpreter.cc1249 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/
Dast.h2796 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/
Dsimulator-arm64.cc285 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()
Dsimulator-arm64.h2163 uintptr_t stack_limit_; variable
/external/v8/include/
Dv8.h6463 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/
Dsimulator-aarch64.h3155 byte* stack_limit_;
Dsimulator-aarch64.cc98 stack_limit_ = stack_ + stack_protection_size_; in Simulator()