Searched refs:stack_size_ (Results 1 - 16 of 16) sorted by relevance

/external/v8/src/
H A Dbackground-parsing-task.cc13 : source_(source), options_(options), stack_size_(stack_size) {
43 uintptr_t limit = reinterpret_cast<uintptr_t>(&limit) - stack_size_ * KB;
H A Dbackground-parsing-task.h62 int stack_size_; member in class:v8::internal::BackgroundParsingTask
/external/v8/src/base/platform/
H A Dplatform.h420 Options() : name_("v8:<unknown>"), stack_size_(0) {}
422 : name_(name), stack_size_(stack_size) {}
425 int stack_size() const { return stack_size_; }
429 int stack_size_; member in class:v8::base::Thread::Options
508 int stack_size_; member in class:v8::base::Thread
H A Dplatform-posix.cc463 stack_size_(options.stack_size()),
465 if (stack_size_ > 0 && static_cast<size_t>(stack_size_) < PTHREAD_STACK_MIN) {
466 stack_size_ = PTHREAD_STACK_MIN;
531 if (stack_size_ > 0) {
532 result = pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
H A Dplatform-win32.cc1333 : stack_size_(options.stack_size()),
1359 static_cast<unsigned>(stack_size_),
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_linux_libcdep.cc307 stack_size_ = stack_size;
311 guard_start_ = (uptr)MmapOrDie(stack_size_ + guard_size_,
316 UnmapOrDie((void *)guard_start_, stack_size_ + guard_size_);
319 return (void *)(guard_start_ + stack_size_ + guard_size_);
323 uptr stack_size_; member in class:__sanitizer::ScopedStackSpaceWithGuard
/external/compiler-rt/lib/asan/
H A Dasan_thread.h69 uptr stack_size() { return stack_size_; }
132 // stack_size_ == stack_top_ - stack_bottom_;
134 uptr stack_size_; member in class:__asan::AsanThread
H A Dasan_thread.cc199 GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size_, &tls_begin_, local
201 stack_top_ = stack_bottom_ + stack_size_;
/external/v8/src/mips/
H A Dsimulator-mips.h353 static const size_t stack_size_ = 1 * 1024*1024; member in class:v8::internal::Simulator
H A Dsimulator-mips.cc958 stack_ = reinterpret_cast<char*>(malloc(stack_size_));
978 registers_[sp] = reinterpret_cast<int32_t>(stack_) + stack_size_ - 64;
/external/v8/src/mips64/
H A Dsimulator-mips64.h403 size_t stack_size_; member in class:v8::internal::Simulator
H A Dsimulator-mips64.cc888 stack_size_ = FLAG_sim_stack_size * KB;
889 stack_ = reinterpret_cast<char*>(malloc(stack_size_));
909 registers_[sp] = reinterpret_cast<int64_t>(stack_) + stack_size_ - 64;
/external/v8/src/arm64/
H A Dsimulator-arm64.h847 size_t stack_size_;
H A Dsimulator-arm64.cc380 stack_size_ = (FLAG_sim_stack_size * KB) + (2 * stack_protection_size_);
381 stack_ = reinterpret_cast<uintptr_t>(new byte[stack_size_]);
383 uintptr_t tos = stack_ + stack_size_ - stack_protection_size_;
/external/vixl/src/vixl/a64/
H A Dsimulator-a64.h2647 static const int stack_size_ = 2 * 1024 + 2 * stack_protection_size_;
H A Dsimulator-a64.cc81 stack_ = new byte[stack_size_];
85 byte * tos = stack_ + stack_size_;

Completed in 353 milliseconds