Home
last modified time | relevance | path

Searched refs:LTOInfo (Results 1 – 5 of 5) sorted by relevance

/openbsd/src/gnu/llvm/llvm/tools/llvm-reduce/
DReducerWorkItem.cpp708 LTOInfo = std::make_unique<BitcodeLTOInfo>(*LI); in readBitcode()
713 if (LTOInfo && LTOInfo->IsThinLTO && LTOInfo->EnableSplitLTOUnit) { in writeBitcode()
729 if (LTOInfo && LTOInfo->HasSummary) { in writeBitcode()
818 if (MMM->LTOInfo->IsThinLTO && MMM->LTOInfo->EnableSplitLTOUnit) in parseReducerWorkItem()
DReducerWorkItem.h27 std::unique_ptr<BitcodeLTOInfo> LTOInfo; variable
/openbsd/src/gnu/llvm/llvm/tools/llvm-dis/
Dllvm-dis.cpp212 BitcodeLTOInfo LTOInfo = ExitOnErr(MB.getLTOInfo()); in main() local
214 if (LTOInfo.HasSummary) in main()
/openbsd/src/gnu/llvm/llvm/lib/LTO/
DLTO.cpp657 Expected<BitcodeLTOInfo> LTOInfo = Input.Mods[ModI].getLTOInfo(); in addModule() local
658 if (!LTOInfo) in addModule()
659 return LTOInfo.takeError(); in addModule()
665 if (*EnableSplitLTOUnit != LTOInfo->EnableSplitLTOUnit) in addModule()
668 EnableSplitLTOUnit = LTOInfo->EnableSplitLTOUnit; in addModule()
673 LTOInfo->IsThinLTO ? ThinLTO.ModuleMap.size() + 1 : 0, in addModule()
674 LTOInfo->HasSummary); in addModule()
676 if (LTOInfo->IsThinLTO) in addModule()
685 if (!LTOInfo->HasSummary) in addModule()
DLTOBackend.cpp663 Expected<BitcodeLTOInfo> LTOInfo = BM.getLTOInfo(); in findThinLTOModule() local
664 if (LTOInfo && LTOInfo->IsThinLTO) in findThinLTOModule()