Lines Matching refs:entryPoint
278 const JSPandaFile *jsPandaFile, std::string_view entryPoint,
281 aotFileManager_->SetAOTMainFuncEntry(mainFunc, jsPandaFile, entryPoint);
301 std::string_view entryPoint, JSHandle<JSFunction> &func, bool executeFromJob)
306 CString entry = entryPoint.data();
338 CJSExecution(func, global, jsPandaFile, entryPoint);
342 result = InvokeEcmaAotEntrypoint(func, global, jsPandaFile, entryPoint);
377 std::string_view entryPoint, bool executeFromJob)
382 LOG_FULL(INFO) << "current executing file's name " << entryPoint.data();
386 moduleLogger->SetStartTime(CString(entryPoint));
388 JSHandle<Program> program = JSPandaFileManager::GetInstance()->GenerateProgram(vm_, jsPandaFile, entryPoint);
395 jsPandaFile->GetJSPandaFileDesc(), entryPoint);
398 Expected<JSTaggedValue, bool> result = CommonInvokeEcmaEntrypoint(jsPandaFile, entryPoint, func, executeFromJob);
407 moduleLogger->SetEndTime(CString(entryPoint));
413 const JSPandaFile *jsPandaFile, std::string_view entryPoint, bool executeFromJob)
416 JSHandle<Program> program = JSPandaFileManager::GetInstance()->GenerateProgram(vm_, jsPandaFile, entryPoint);
419 Expected<JSTaggedValue, bool> result = CommonInvokeEcmaEntrypoint(jsPandaFile, entryPoint, func, executeFromJob);
426 CString recordName = entryPoint.data();
438 const JSPandaFile *jsPandaFile, std::string_view entryPoint)
458 if (aotFileManager_->IsLoadMain(jsPandaFile, entryPoint.data())) {
461 InvokeEcmaAotEntrypoint(func, thisArg, jsPandaFile, entryPoint, &cjsInfo);