Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Djs_thread.cpp60 size_t maxStackSize = vm->GetEcmaParamConfiguration().GetMaxStackSize(); in Create() local
62 vm->GetNativeAreaAllocator()->Allocate(sizeof(JSTaggedType) * maxStackSize)); in Create()
63 jsThread->glueData_.currentFrame_ = jsThread->glueData_.frameBase_ + maxStackSize; in Create()
677 size_t maxStackSize = vm_->GetEcmaParamConfiguration().GetMaxStackSize(); in IsLegalThreadSp() local
678 uintptr_t top = bottom + maxStackSize; in IsLegalThreadSp()
712 size_t maxStackSize = vm_->GetEcmaParamConfiguration().GetMaxStackSize(); in PushContext() local
714 vm_->GetNativeAreaAllocator()->Allocate(sizeof(JSTaggedType) * maxStackSize))); in PushContext()
715 context->SetFramePointers(context->GetFrameBase() + maxStackSize, nullptr, nullptr); in PushContext()