Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/base/platform/
H A Dplatform.h512 Options() : name_("v8:<unknown>"), stack_size_(0) {} in Options()
514 : name_(name), stack_size_(stack_size) {} in Options()
517 int stack_size() const { return stack_size_; } in stack_size()
521 int stack_size_; member in v8::base::Thread::Options
593 int stack_size_; member in v8::base::Thread
H A Dplatform-posix.cc1007 stack_size_(options.stack_size()), in Thread()
1010 if (stack_size_ > 0) stack_size_ = std::max(stack_size_, min_stack_size); in Thread()
1070 size_t stack_size = stack_size_; in Start()
H A Dplatform-starboard.cc379 stack_size_(options.stack_size()), in Thread()
408 SbThreadCreate(stack_size_, kSbThreadNoPriority, kSbThreadNoAffinity, in Start()
H A Dplatform-win32.cc1601 : stack_size_(options.stack_size()), start_semaphore_(nullptr) { in Thread()
1624 uintptr_t result = _beginthreadex(nullptr, static_cast<unsigned>(stack_size_), in Start()
/third_party/node/src/
H A Dnode_worker.cc626 w->stack_size_ = kStackBufferSize; in StartThread()
628 w->stack_size_ = in StartThread()
632 w->resource_limits_[kStackSizeMb] = w->stack_size_ / kMB; in StartThread()
637 thread_options.stack_size = w->stack_size_; in StartThread()
649 w->stack_base_ = stack_top - (w->stack_size_ - kStackBufferSize); in StartThread()
H A Dnode_worker.h110 size_t stack_size_ = 4 * 1024 * 1024; member in node::worker::Worker
/third_party/node/deps/v8/src/codegen/
H A Dcompiler.h552 int stack_size_; member in v8::internal::BackgroundCompileTask
H A Dcompiler.cc1528 stack_size_(i::FLAG_stack_size), in BackgroundCompileTask()
1552 stack_size_(max_stack_size), in BackgroundCompileTask()
1631 GetCurrentStackPosition() - stack_size_ * KB); in Run()
/third_party/node/deps/v8/src/execution/loong64/
H A Dsimulator-loong64.h521 size_t stack_size_; member in v8::internal::Simulator
H A Dsimulator-loong64.cc833 stack_size_ = FLAG_sim_stack_size * KB; in Simulator()
834 stack_ = reinterpret_cast<char*>(base::Malloc(stack_size_)); in Simulator()
858 registers_[sp] = reinterpret_cast<int64_t>(stack_) + stack_size_ - 64; in Simulator()
/third_party/node/deps/v8/src/execution/mips64/
H A Dsimulator-mips64.h617 size_t stack_size_; member in v8::internal::Simulator
H A Dsimulator-mips64.cc802 stack_size_ = FLAG_sim_stack_size * KB; in Simulator()
803 stack_ = reinterpret_cast<char*>(base::Malloc(stack_size_)); in Simulator()
830 registers_[sp] = reinterpret_cast<int64_t>(stack_) + stack_size_ - 64; in Simulator()
/third_party/node/deps/v8/src/execution/mips/
H A Dsimulator-mips.h595 size_t stack_size_; member in v8::internal::Simulator
H A Dsimulator-mips.cc859 stack_size_ = FLAG_sim_stack_size * KB; in Simulator()
860 stack_ = reinterpret_cast<char*>(base::Malloc(stack_size_)); in Simulator()
887 registers_[sp] = reinterpret_cast<int32_t>(stack_) + stack_size_ - 64; in Simulator()
/third_party/node/deps/v8/src/execution/riscv64/
H A Dsimulator-riscv64.h955 size_t stack_size_; member in v8::internal::Simulator
H A Dsimulator-riscv64.cc2190 stack_size_ = FLAG_sim_stack_size * KB; in Simulator()
2191 stack_ = reinterpret_cast<char*>(malloc(stack_size_)); in Simulator()
2215 registers_[sp] = reinterpret_cast<int64_t>(stack_) + stack_size_ - 64; in Simulator()
/third_party/node/deps/v8/src/execution/arm64/
H A Dsimulator-arm64.cc359 stack_size_ = (FLAG_sim_stack_size * KB) + (2 * stack_protection_size_); in Init()
360 stack_ = reinterpret_cast<uintptr_t>(new byte[stack_size_]); in Init()
362 uintptr_t tos = stack_ + stack_size_ - stack_protection_size_; in Init()
H A Dsimulator-arm64.h2321 size_t stack_size_; member in v8::internal::Simulator

Completed in 63 milliseconds