Lines Matching refs:CombinedIndex

599     : Backend(Backend), CombinedIndex(/*HaveGVs*/ false) {  in ThinLTOState()
741 ThinLTO.CombinedIndex.setPartiallySplitLTOUnits(); in addModule()
778 if (Error Err = BM.readSummary(ThinLTO.CombinedIndex, "")) in addModule()
976 if (LivenessFromIndex && !ThinLTO.CombinedIndex.isGUIDLive(GV->getGUID())) { in linkRegularLTO()
1027 BM.readSummary(ThinLTO.CombinedIndex, BM.getModuleIdentifier(), in addThinLTO()
1051 if (auto S = ThinLTO.CombinedIndex.findSummaryInModule( in addThinLTO()
1059 if (auto S = ThinLTO.CombinedIndex.findSummaryInModule( in addThinLTO()
1099 if (!ThinLTO.CombinedIndex.partiallySplitLTOUnits()) in checkPartiallySplit()
1122 for (auto &P : ThinLTO.CombinedIndex) { in checkPartiallySplit()
1169 computeDeadSymbolsWithConstProp(ThinLTO.CombinedIndex, GUIDPreservedSymbols, in run()
1184 ThinLTO.CombinedIndex.setWithSupportsHotColdNew(); in run()
1283 updateMemProfAttributes(*RegularLTO.CombinedModule, ThinLTO.CombinedIndex); in runRegularLTO()
1354 *RegularLTO.CombinedModule, ThinLTO.CombinedIndex)) in runRegularLTO()
1373 ModuleSummaryIndex &CombinedIndex; member in lto::ThinBackendProc
1380 const Config &Conf, ModuleSummaryIndex &CombinedIndex, in ThinBackendProc() argument
1383 : Conf(Conf), CombinedIndex(CombinedIndex), in ThinBackendProc()
1414 writeIndexToFile(CombinedIndex, OS, &ModuleToSummariesForIndex, in emitFiles()
1442 const Config &Conf, ModuleSummaryIndex &CombinedIndex, in InProcessThinBackend() argument
1447 : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries, in InProcessThinBackend()
1451 for (auto &Name : CombinedIndex.cfiFunctionDefs()) in InProcessThinBackend()
1454 for (auto &Name : CombinedIndex.cfiFunctionDecls()) in InProcessThinBackend()
1461 ModuleSummaryIndex &CombinedIndex, in runThinLTOBackendThread() argument
1473 return thinBackend(Conf, Task, AddStream, **MOrErr, CombinedIndex, in runThinLTOBackendThread()
1484 if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) || in runThinLTOBackendThread()
1485 all_of(CombinedIndex.getModuleHash(ModuleID), in runThinLTOBackendThread()
1493 computeLTOCacheKey(Key, Conf, CombinedIndex, ModuleID, ImportList, in runThinLTOBackendThread()
1517 [=](BitcodeModule BM, ModuleSummaryIndex &CombinedIndex, in start()
1528 AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList, in start()
1540 BM, std::ref(CombinedIndex), std::ref(ImportList), std::ref(ExportList), in start()
1567 [=](const Config &Conf, ModuleSummaryIndex &CombinedIndex, in createInProcessThinBackend()
1571 Conf, CombinedIndex, Parallelism, ModuleToDefinedGVSummaries, in createInProcessThinBackend()
1618 const Config &Conf, ModuleSummaryIndex &CombinedIndex, in WriteIndexesThinBackend() argument
1623 : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries, in WriteIndexesThinBackend()
1668 [=](const Config &Conf, ModuleSummaryIndex &CombinedIndex, in createWriteIndexesThinBackend()
1672 Conf, CombinedIndex, ModuleToDefinedGVSummaries, OldPrefix, in createWriteIndexesThinBackend()
1681 ThinLTO.CombinedIndex.releaseTemporaryMemory(); in runThinLTO()
1696 !Conf.CombinedIndexHook(ThinLTO.CombinedIndex, GUIDPreservedSymbols)) in runThinLTO()
1703 ThinLTO.CombinedIndex.collectDefinedGVSummariesPerModule( in runThinLTO()
1717 computeSyntheticCounts(ThinLTO.CombinedIndex); in runThinLTO()
1726 ThinLTO.CombinedIndex.dumpSCCs(outs()); in runThinLTO()
1736 ThinLTO.CombinedIndex.setWithWholeProgramVisibility(); in runThinLTO()
1752 getVisibleToRegularObjVtableGUIDs(ThinLTO.CombinedIndex, in runThinLTO()
1760 ThinLTO.CombinedIndex, WholeProgramVisibilityEnabledInLTO, in runThinLTO()
1767 runWholeProgramDevirtOnIndex(ThinLTO.CombinedIndex, ExportedGUIDs, in runThinLTO()
1775 ContextDisambiguation.run(ThinLTO.CombinedIndex, isPrevailing); in runThinLTO()
1791 if (ThinLTO.CombinedIndex.isGUIDLive(GUID)) in runThinLTO()
1802 ComputeCrossModuleImport(ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries, in runThinLTO()
1807 for (auto &Def : ThinLTO.CombinedIndex.cfiFunctionDefs()) in runThinLTO()
1810 for (auto &Decl : ThinLTO.CombinedIndex.cfiFunctionDecls()) in runThinLTO()
1822 updateIndexWPDForExports(ThinLTO.CombinedIndex, isExported, in runThinLTO()
1825 thinLTOInternalizeAndPromoteInIndex(ThinLTO.CombinedIndex, isExported, in runThinLTO()
1833 thinLTOResolvePrevailingInIndex(Conf, ThinLTO.CombinedIndex, isPrevailing, in runThinLTO()
1836 thinLTOPropagateFunctionAttrs(ThinLTO.CombinedIndex, isPrevailing); in runThinLTO()
1838 generateParamAccessSummary(ThinLTO.CombinedIndex); in runThinLTO()
1846 ThinLTO.Backend(Conf, ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries, in runThinLTO()