[lld] [lld][ELF] Add --why-live flag (inspired by Mach-O) (PR #127112)

Fangrui Song via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 15 17:14:57 PST 2025


================
@@ -101,6 +116,12 @@ void MarkLive<ELFT>::resolveReloc(InputSectionBase &sec, RelTy &rel,
   Symbol &sym = sec.file->getRelocTargetSym(rel);
   sym.used = true;
 
+  LiveReason reason;
+  if (!ctx.arg.whyLive.empty()) {
+    Defined *reasonSym = sec.getEnclosingSymbol(rel.r_offset);
----------------
MaskRay wrote:

getEnclosingSymbol iterates all symbols in the file, which is very slow. This perhaps should only be run after we get a patch from a root to the --why-live specified symbol.

https://github.com/llvm/llvm-project/pull/127112


More information about the llvm-commits mailing list