Home
last modified time | relevance | path

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

/external/v8/src/execution/
Dlocal-isolate.h82 Address stack_limit() const { return stack_limit_; } in stack_limit()
95 Address const stack_limit_; variable
Dlocal-isolate.cc21 stack_limit_(kind == ThreadKind::kMain in LocalIsolate()
Disolate.h498 stack_limit_(0), in PerIsolateThreadData()
524 uintptr_t stack_limit_; variable
/external/v8/src/parsing/
Dparse-info.h249 uintptr_t stack_limit() const { return stack_limit_; } in stack_limit()
253 stack_limit_ = stack_limit; in SetPerThreadState()
338 uintptr_t stack_limit_; variable
Dparse-info.cc183 stack_limit_(0), in ParseInfo()
Dparser.cc502 uintptr_t stack_limit_) { in MaybeProcessSourceRanges() argument
504 SourceRangeAstVisitor visitor(stack_limit_, root, in MaybeProcessSourceRanges()
542 MaybeProcessSourceRanges(info, result, stack_limit_); in ParseProgram()
861 MaybeProcessSourceRanges(info, result, stack_limit_); in ParseFunction()
964 stack_limit_, in DoParseFunction()
3288 MaybeProcessSourceRanges(info, result, stack_limit_); in ParseOnBackground()
Dparser-base.h256 stack_limit_(stack_limit), in ParserBase()
275 uintptr_t stack_limit() const { return stack_limit_; } in stack_limit()
277 void set_stack_limit(uintptr_t stack_limit) { stack_limit_ = stack_limit; } in set_stack_limit()
859 if (GetCurrentStackPosition() < stack_limit_) set_stack_overflow(); in CheckStackOverflow()
1517 uintptr_t stack_limit_; variable
Dparser.h250 &preparser_zone_, &scanner_, stack_limit_, ast_value_factory(),
/external/v8/src/codegen/
Dcompiler.h257 stack_limit_(stack_limit), in UnoptimizedCompilationJob()
287 uintptr_t stack_limit() const { return stack_limit_; } in stack_limit()
307 uintptr_t stack_limit_;
/external/v8/src/asmjs/
Dasm-parser.h172 uintptr_t stack_limit_; variable
Dasm-parser.cc61 if (GetCurrentStackPosition() < stack_limit_) { \
78 stack_limit_(stack_limit), in AsmJsParser()
/external/v8/src/ast/
Dast.h2688 if (GetCurrentStackPosition() < stack_limit_) { \
2696 uintptr_t stack_limit() const { return stack_limit_; } \
2700 stack_limit_ = isolate->stack_guard()->real_climit(); \
2705 stack_limit_ = stack_limit; \
2709 uintptr_t stack_limit_; \
/external/v8/src/execution/arm64/
Dsimulator-arm64.cc292 return stack_limit_ + 1024; in StackLimit()
335 stack_limit_ = stack_ + stack_protection_size_; in Init()
2289 if ((address >= stack_limit_) && (address < stack)) { in CheckMemoryAccess()
2296 static_cast<uint64_t>(stack_limit_)); in CheckMemoryAccess()
Dsimulator-arm64.h2303 uintptr_t stack_limit_; variable
/external/v8/include/
Dv8.h7181 uint32_t* stack_limit() const { return stack_limit_; } in stack_limit()
7182 void set_stack_limit(uint32_t* value) { stack_limit_ = value; } in set_stack_limit()
7263 uint32_t* stack_limit_ = nullptr; variable
/external/vixl/src/aarch64/
Dsimulator-aarch64.h3271 byte* stack_limit_;
Dsimulator-aarch64.cc98 stack_limit_ = stack_ + stack_protection_size_; in Simulator()