Lines Matching refs:jsFunc
992 void RuntimeStubs::SetProfileTypeInfoCellToFunction(JSThread *thread, const JSHandle<JSFunction> &jsFunc,
1001 ASSERT(jsFunc->IsJSFunction());
1002 ASSERT(!jsFunc->IsSharedFunction());
1004 auto profileTypeInfo = jsFunc->GetProfileTypeInfo();
1006 JSHandle<Method> method(thread, jsFunc->GetMethod());
1008 profileTypeInfo = RuntimeNotifyInlineCache(thread, jsFunc, slotSize);
1355 JSTaggedValue jsFunc)
1357 return thread->GetCurrentEcmaContext()->GetModuleManager()->GetModuleNamespace(index, jsFunc);
1366 JSTaggedValue jsFunc)
1368 return thread->GetCurrentEcmaContext()->GetModuleManager()->GetModuleNamespace(localName, jsFunc);
1377 JSTaggedValue jsFunc)
1379 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(index, value, jsFunc);
1388 JSTaggedValue jsFunc)
1390 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(key, value, jsFunc);
1410 JSTaggedValue RuntimeStubs::RuntimeLdLocalModuleVar(JSThread *thread, int32_t index, JSTaggedValue jsFunc)
1412 return thread->GetCurrentEcmaContext()->GetModuleManager()->GetModuleValueInner(index, jsFunc);
1433 JSTaggedValue RuntimeStubs::RuntimeLdSendableExternalModuleVar(JSThread *thread, int32_t index, JSTaggedValue jsFunc)
1435 return SharedModuleManager::GetInstance()->GetSendableModuleValue(thread, index, jsFunc);
1438 JSTaggedValue RuntimeStubs::RuntimeLdExternalModuleVar(JSThread *thread, int32_t index, JSTaggedValue jsFunc)
1440 return thread->GetCurrentEcmaContext()->GetModuleManager()->GetModuleValueOutter(index, jsFunc);
1443 JSTaggedValue RuntimeStubs::RuntimeLdLazyExternalModuleVar(JSThread *thread, int32_t index, JSTaggedValue jsFunc)
1445 return thread->GetCurrentEcmaContext()->GetModuleManager()->GetLazyModuleValueOutter(index, jsFunc);
1449 JSThread *thread, int32_t index, JSTaggedValue jsFunc)
1451 return SharedModuleManager::GetInstance()->GetLazySendableModuleValue(thread, index, jsFunc);
1465 JSTaggedValue jsFunc)
1469 thread->GetCurrentEcmaContext()->GetModuleManager()->GetModuleValueInner(key, jsFunc);
1473 return thread->GetCurrentEcmaContext()->GetModuleManager()->GetModuleValueOutter(key, jsFunc);