Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Djs_thread.cpp63 jsThread->glueData_.stackStart_ = GetCurrentStackPosition(); in Create()
356 if (UNLIKELY(GetCurrentStackPosition() < GetStackLimit())) { in DoStackLimitCheck()
358 …LOG_ECMA(ERROR) << "Stack overflow! current:" << GetCurrentStackPosition() << " limit:" << GetStac… in DoStackLimitCheck()
505 size_t result = GetCurrentStackPosition() - EcmaParamConfiguration::GetDefalutStackSize(); in GetAsmStackLimit()
548 … << reinterpret_cast<void *>(threadStackStart - GetCurrentStackPosition()); in GetAsmStackLimit()
615 context->SetStackStart(GetCurrentStackPosition()); in PushContext()
Djs_proxy.cpp527 …if (thread->IsAsmInterpreter() && UNLIKELY(thread->GetCurrentStackPosition() < thread->GetStackLim… in GetProperty()
528 LOG_ECMA(ERROR) << "Stack overflow! current:" << thread->GetCurrentStackPosition() in GetProperty()
613 …if (thread->IsAsmInterpreter() && UNLIKELY(thread->GetCurrentStackPosition() < thread->GetStackLim… in SetProperty()
614 LOG_ECMA(ERROR) << "Stack overflow! current:" << thread->GetCurrentStackPosition() in SetProperty()
Djs_thread.h577 static uintptr_t GetCurrentStackPosition() in GetCurrentStackPosition() function