Home
last modified time | relevance | path

Searched refs:BMsOrErr (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DIRObjectFile.cpp115 Expected<std::vector<BitcodeModule>> BMsOrErr = in create()
117 if (!BMsOrErr) in create()
118 return BMsOrErr.takeError(); in create()
121 for (auto BM : *BMsOrErr) { in create()
116 Expected<std::vector<BitcodeModule>> BMsOrErr = create() local
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenAction.cpp1068 Expected<std::vector<BitcodeModule>> BMsOrErr = getBitcodeModuleList(MBRef); in loadModule() local
1069 if (!BMsOrErr) in loadModule()
1070 return DiagErrors(BMsOrErr.takeError()); in loadModule()
1071 BitcodeModule *Bm = llvm::lto::findThinLTOModule(*BMsOrErr); in loadModule()
1100 Expected<std::vector<BitcodeModule>> BMsOrErr = getBitcodeModuleList(MBRef); in loadModule() local
1101 if (BMsOrErr && BMsOrErr->size()) { in loadModule()
1103 for (auto &BM : *BMsOrErr) { in loadModule()
1119 consumeError(BMsOrErr.takeError()); in loadModule()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOBackend.cpp686 Expected<std::vector<BitcodeModule>> BMsOrErr = getBitcodeModuleList(MBRef); in findThinLTOModule() local
687 if (!BMsOrErr) in findThinLTOModule()
688 return BMsOrErr.takeError(); in findThinLTOModule()
692 if (const BitcodeModule *Bm = lto::findThinLTOModule(*BMsOrErr)) in findThinLTOModule()