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

Daniel Thornburgh via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 21 10:15:12 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)
----------------
mysterymath wrote:

I had originally written it this way, but upon reflection I didn't really want the "doesn't compile the contents" behavior, in case it masks errors in the contents. (Similar to the old C preference of `if` to `#if` to avoid bitrot.) Assuming that a compiler worth its salt can delete the `if`, is there a strong reason to use `if constexpr` here?

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


More information about the llvm-commits mailing list