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

Fangrui Song via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 21:20:33 PDT 2025


================
@@ -93,14 +112,18 @@ static uint64_t getAddend(Ctx &, InputSectionBase &sec,
   return rel.r_addend;
 }
 
-template <class ELFT>
+template <class ELFT, bool TrackWhyLive>
 template <class RelTy>
-void MarkLive<ELFT>::resolveReloc(InputSectionBase &sec, RelTy &rel,
-                                  bool fromFDE) {
+void MarkLive<ELFT, TrackWhyLive>::resolveReloc(InputSectionBase &sec,
+                                                RelTy &rel, bool fromFDE) {
   // If a symbol is referenced in a live section, it is used.
   Symbol &sym = sec.file->getRelocTargetSym(rel);
   sym.used = true;
 
+  LiveReason reason;
+  if (TrackWhyLive)
----------------
MaskRay wrote:

`if constexpr `

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


More information about the llvm-commits mailing list