[lld] [lld] Merge GOT entries for symbols that have been ICFed (PR #131630)
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 26 15:13:16 PDT 2025
================
@@ -138,6 +137,10 @@ class GotSection final : public SyntheticSection {
bool isSymbolFunc;
};
SmallVector<AuthEntryInfo, 0> authEntries;
+
+ // To track GOT entries for symbols that may have been ICFed
----------------
rnk wrote:
The tuple makes it a bit unclear what the map is, so if we're going to use it so we don't have to stamp out our own DenseMapInfo traits, it would be helpful to elaborate on the key in the comments here. My draft comment text is:
// Map of GOT entries keyed by section, offset, and type. The purpose is to reuse GOT entries when multiple same-type, foldable symbols refer to the image location. In general, this is a GOT-size optimization, but it is also required for some cases involving multi-instruction GOT access patterns and ICF.
https://github.com/llvm/llvm-project/pull/131630
More information about the llvm-commits
mailing list