Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Djs_thread.cpp55 size_t maxStackSize = vm->GetEcmaParamConfiguration().GetMaxStackSize(); in Create() local
57 vm->GetNativeAreaAllocator()->Allocate(sizeof(JSTaggedType) * maxStackSize)); in Create()
58 jsThread->glueData_.currentFrame_ = jsThread->glueData_.frameBase_ + maxStackSize; in Create()
553 size_t maxStackSize = vm_->GetEcmaParamConfiguration().GetMaxStackSize(); in IsLegalThreadSp() local
554 uintptr_t top = bottom + maxStackSize; in IsLegalThreadSp()
588 size_t maxStackSize = vm_->GetEcmaParamConfiguration().GetMaxStackSize(); in PushContext() local
590 vm_->GetNativeAreaAllocator()->Allocate(sizeof(JSTaggedType) * maxStackSize))); in PushContext()
591 context->SetFramePointers(context->GetFrameBase() + maxStackSize, nullptr, nullptr); in PushContext()