Home
last modified time | relevance | path

Searched refs:GlobalResolutions (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp610 GlobalResolutions(std::make_optional<StringMap<GlobalResolution>>()), in LTO()
629 auto &GlobalRes = (*GlobalResolutions)[Sym.getName()]; in addModuleToGlobalRes()
1144 for (auto &Res : *GlobalResolutions) { in run()
1294 auto It = GlobalResolutions->find(name); in runRegularLTO()
1295 return (It == GlobalResolutions->end() || It->second.VisibleOutsideSummary); in runRegularLTO()
1312 for (const auto &R : *GlobalResolutions) { in runRegularLTO()
1747 auto It = GlobalResolutions->find(name); in runThinLTO()
1748 return (It == GlobalResolutions->end() || in runThinLTO()
1782 for (auto &Res : *GlobalResolutions) { in runThinLTO()
1799 GlobalResolutions.reset(); in runThinLTO()
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h411 std::optional<StringMap<GlobalResolution>> GlobalResolutions; variable