Searched refs:LTOInfo (Results 1 - 4 of 4) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp212 BitcodeLTOInfo LTOInfo = ExitOnErr(MB.getLTOInfo()); local
214 if (LTOInfo.HasSummary)
/freebsd-current/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp718 Expected<BitcodeLTOInfo> LTOInfo = Input.Mods[ModI].getLTOInfo(); local
719 if (!LTOInfo)
720 return LTOInfo.takeError();
726 if (*EnableSplitLTOUnit != LTOInfo->EnableSplitLTOUnit)
729 EnableSplitLTOUnit = LTOInfo->EnableSplitLTOUnit;
734 !LTOInfo->UnifiedLTO)
740 if (LTOInfo->UnifiedLTO && LTOMode == LTOK_Default)
743 bool IsThinLTO = LTOInfo->IsThinLTO && (LTOMode != LTOK_UnifiedRegular);
748 LTOInfo->HasSummary);
759 if (!LTOInfo
[all...]
H A DLTOBackend.cpp676 Expected<BitcodeLTOInfo> LTOInfo = BM.getLTOInfo(); local
677 if (LTOInfo && LTOInfo->IsThinLTO)
/freebsd-current/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp8075 BitcodeLTOInfo &LTOInfo) {
8146 BitcodeLTOInfo LTOInfo; local
8148 getEnableSplitLTOUnitAndUnifiedFlag(Stream, Entry.ID, LTOInfo);
8151 std::tie(LTOInfo.EnableSplitLTOUnit, LTOInfo.UnifiedLTO) = Flags.get();
8152 LTOInfo.IsThinLTO = true;
8153 LTOInfo.HasSummary = true;
8154 return LTOInfo;
8158 BitcodeLTOInfo LTOInfo; local
8160 getEnableSplitLTOUnitAndUnifiedFlag(Stream, Entry.ID, LTOInfo);
8073 getEnableSplitLTOUnitAndUnifiedFlag(BitstreamCursor &Stream, unsigned ID, BitcodeLTOInfo &LTOInfo) argument
[all...]

Completed in 103 milliseconds