Lines Matching refs:currentSp
90 JSTaggedType *currentSp = reinterpret_cast<JSTaggedType *>(info);
92 InterpretedEntryFrame *currentEntryState = InterpretedEntryFrame::GetFrameFromSp(currentSp);
100 currentSp += (info->GetArgsNumber() + NUM_MANDATORY_JSFUNC_ARGS + 2); // 2: include thread_ and numArgs_
102 UNLIKELY(thread->DoStackOverflowCheck(currentSp - numArgs - NUM_MANDATORY_JSFUNC_ARGS))) {
107 *(--currentSp) = JSTaggedValue::VALUE_UNDEFINED;
110 *(--currentSp) = args[i];
112 *(--currentSp) = thisObj.GetRawData();
113 *(--currentSp) = newTarget.GetRawData();
114 *(--currentSp) = func.GetRawData();
115 *(--currentSp) = numArgs + static_cast<int>(NUM_MANDATORY_JSFUNC_ARGS);
116 *(--currentSp) = ToUintPtr(thread);
117 EcmaRuntimeCallInfo *ecmaRuntimeCallInfo = reinterpret_cast<EcmaRuntimeCallInfo *>(currentSp);
119 InterpretedEntryFrame *entryState = InterpretedEntryFrame::GetFrameFromSp(currentSp);
124 thread->SetCurrentSPFrame(currentSp);