Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/interpreter/
Dinterpreter.cpp41 uint32_t numArgs, bool needCheckStack) in NewRuntimeCallInfo() argument
45 …if (needCheckStack && UNLIKELY(thread->DoStackOverflowCheck(newSp - numArgs - NUM_MANDATORY_JSFUNC… in NewRuntimeCallInfo()
70 uint32_t numArgs, bool needCheckStack) in ReBuildRuntimeCallInfo() argument
86 …if (needCheckStack && UNLIKELY(thread->DoStackOverflowCheck(currentSp - numArgs - NUM_MANDATORY_JS… in ReBuildRuntimeCallInfo()
Dinterpreter.h46 JSHandle<JSTaggedValue> newTarget, uint32_t numArgs, bool needCheckStack = true);
48 JSThread *thread, EcmaRuntimeCallInfo* info, uint32_t numArgs, bool needCheckStack = true);
/arkcompiler/ets_runtime/ecmascript/
Dobject_factory.h203 …ct> GetJSError(const ErrorType &errorType, const char *data = nullptr, bool needCheckStack = true);
206 bool needCheckStack = true);
Dobject_factory.cpp784 …bject> ObjectFactory::GetJSError(const ErrorType &errorType, const char *data, bool needCheckStack) in GetJSError() argument
793 return NewJSError(errorType, handleMsg, needCheckStack); in GetJSError()
796 return NewJSError(errorType, emptyString, needCheckStack); in GetJSError()
800 bool needCheckStack) in NewJSError() argument
852 … EcmaInterpreter::NewRuntimeCallInfo(thread_, ctor, nativePrototype, undefined, 1, needCheckStack); in NewJSError()