[lld] [lld][ELF] Add --why-live flag (inspired by Mach-O) (PR #127112)
Peter Smith via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 10:20:27 PDT 2025
================
@@ -201,45 +238,126 @@ void MarkLive<ELFT>::enqueue(InputSectionBase *sec, uint64_t offset) {
return;
sec->partition = sec->partition ? 1 : partition;
+ if (TrackWhyLive) {
+ if (sym) {
+ // If a specific symbol is referenced, that makes it alive. It may in turn
----------------
smithp35 wrote:
It looks like if the symbol is reference it will make its section live. The comment says "It may". Is that intentional?
Strangely I've never thought of it as alive, just live. I guess alive makes more sense in the sense of dead code.
https://github.com/llvm/llvm-project/pull/127112
More information about the llvm-commits
mailing list