Home
last modified time | relevance | path

Searched refs:whyLive (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lld/ELF/
H A DMarkLive.cpp91 DenseMap<LiveItem, LiveReason> whyLive; member in __anonbed3762c0111::MarkLive
166 whyLive.try_emplace(&sym, reason); in resolveReloc()
249 whyLive.try_emplace(sym, reason); in enqueue()
250 whyLive.try_emplace(sec, LiveReason{sym, "contained live symbol"}); in enqueue()
253 whyLive.try_emplace(sec, reason); in enqueue()
283 auto it = whyLive.find(cur); in printWhyLive()
286 if (it != whyLive.end()) { in printWhyLive()
430 if (llvm::any_of(ctx.arg.whyLive, [sym](const llvm::GlobPattern &pat) { in run()
519 if (ctx.arg.whyLive.empty()) in markLive()
H A DConfig.h252 llvm::SmallVector<llvm::GlobPattern, 0> whyLive; member
H A DDriver.cpp1609 ctx.arg.whyLive.emplace_back(std::move(*pat)); in readConfigs()
/freebsd/contrib/llvm-project/lld/MachO/
H A DMarkLive.cpp108 if (!config->whyLive.empty() && config->whyLive.match(s->getName())) in addSym()
204 if (config->whyLive.empty()) in markLive()
H A DConfig.h241 SymbolPatterns whyLive; member
H A DDriver.cpp2072 config->whyLive.insert(arg->getValue()); in link()
2073 if (!config->whyLive.empty() && !config->deadStrip) in link()