[lld] [lld] Merge GOT entries for symbols that have been ICFed (PR #131630)

Peter Smith via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 18 07:14:25 PDT 2025


================
@@ -667,6 +667,20 @@ GotSection::GotSection(Ctx &ctx)
 void GotSection::addConstant(const Relocation &r) { relocations.push_back(r); }
 void GotSection::addEntry(const Symbol &sym) {
   assert(sym.auxIdx == ctx.symAux.size() - 1);
+  auto *d = dyn_cast<Defined>(&sym);
+  if (d && ctx.arg.icf != ICFLevel::None) {
+    // There may be symbols that have been ICFed in which case d->section
+    // points to their canonical section and d->value is offset in to that section.
+    // We add only a single GOT entry for all such symbols.
+    auto [it, inserted] = gotEntries.insert(
+      std::make_pair(std::make_pair(d->section, d->value),
+      numEntries));
+    if (!inserted && d->folded) {
----------------
smithp35 wrote:

Is there a case when a `d->folded` is seen first and inserted into `gotEntries` then `d->folded == false` the canonical definition is encountered and we skip it?

I'm not sure if there's a good one-pass solution to this. Possibly if the value of the map were <Defined, uint32_t> then we could look at the symbol to see if it were folded.

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


More information about the llvm-commits mailing list