Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp596 GlobalResolutions(std::make_optional<StringMap<GlobalResolution>>()), in LTO()
615 auto &GlobalRes = (*GlobalResolutions)[Sym.getName()]; in addModuleToGlobalRes()
1130 for (auto &Res : *GlobalResolutions) { in run()
1280 auto It = GlobalResolutions->find(name); in runRegularLTO()
1281 return (It == GlobalResolutions->end() || It->second.VisibleOutsideSummary); in runRegularLTO()
1298 for (const auto &R : *GlobalResolutions) { in runRegularLTO()
1715 auto It = GlobalResolutions->find(name); in runThinLTO()
1716 return (It == GlobalResolutions->end() || in runThinLTO()
1750 for (auto &Res : *GlobalResolutions) { in runThinLTO()
1767 GlobalResolutions.reset(); in runThinLTO()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h409 std::optional<StringMap<GlobalResolution>> GlobalResolutions; variable