HomeSort by: relevance | last modified time | path
    Searched defs:CombinedIndex (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/LTO/
LTO.h 225 const Config &C, ModuleSummaryIndex &CombinedIndex,
343 ModuleSummaryIndex CombinedIndex;
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
LTO.cpp 516 : Backend(Backend), CombinedIndex(/*HaveGVs*/ false) {
646 ThinLTO.CombinedIndex.setPartiallySplitLTOUnits();
670 if (Error Err = BM.readSummary(ThinLTO.CombinedIndex, "", -1ull))
857 if (LivenessFromIndex && !ThinLTO.CombinedIndex.isGUIDLive(GV->getGUID())) {
892 BM.readSummary(ThinLTO.CombinedIndex, BM.getModuleIdentifier(),
911 if (auto S = ThinLTO.CombinedIndex.findSummaryInModule(
919 if (auto S = ThinLTO.CombinedIndex.findSummaryInModule(
959 if (!ThinLTO.CombinedIndex.partiallySplitLTOUnits())
977 for (auto &P : ThinLTO.CombinedIndex) {
1024 computeDeadSymbolsWithConstProp(ThinLTO.CombinedIndex, GUIDPreservedSymbols
    [all...]
ThinLTOCodeGenerator.cpp 596 std::unique_ptr<ModuleSummaryIndex> CombinedIndex =
602 M.readSummary(*CombinedIndex, Mod->getName(), NextModuleId++)) {
610 return CombinedIndex;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-lto/
llvm-lto.cpp 440 ModuleSummaryIndex CombinedIndex(/*HaveGVs=*/false);
446 ExitOnErr(readModuleSummaryIndex(*MB, CombinedIndex, NextModuleId++));
453 WriteIndexToFile(CombinedIndex, OS);
608 auto CombinedIndex = ThinGenerator.linkCombinedIndex();
609 if (!CombinedIndex)
614 WriteIndexToFile(*CombinedIndex, OS);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
BackendUtil.cpp 1503 DiagnosticsEngine &Diags, ModuleSummaryIndex *CombinedIndex, Module *M,
1510 CombinedIndex->collectDefinedGVSummariesPerModule(ModuleToDefinedGVSummaries);
1518 if (!lto::initImportList(*M, *CombinedIndex, ImportList))
1593 thinBackend(Conf, -1, AddStream, *M, *CombinedIndex, ImportList,
1627 std::unique_ptr<ModuleSummaryIndex> CombinedIndex = std::move(*IndexOrErr);
1628 // A null CombinedIndex means we should skip ThinLTO compilation
1631 if (CombinedIndex) {
1632 if (!CombinedIndex->skipModuleByDistributedBackend()) {
1633 runThinLTOBackend(Diags, CombinedIndex.get(), M, HeaderOpts, CGOpts,
1642 // the compilation as CombinedIndex does not contain all require
    [all...]

Completed in 22 milliseconds