[llvm] [BOLT][AArch64] Symbolize ADRP after relaxation (PR #131414)

Maksim Panchenko via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 11:16:18 PDT 2025


================
@@ -127,13 +127,37 @@ AArch64MCSymbolizer::adjustRelocation(const Relocation &Rel,
     assert(SymbolValue && "Symbol value should be set");
     const uint64_t SymbolPageAddr = *SymbolValue & ~0xfffULL;
 
-    AdjustedRel.Symbol = BC.registerNameAtAddress("__BOLT_got_zero", 0, 0, 0);
-    AdjustedRel.Addend = Rel.Value;
+    // Check if defined symbol and GOT are on the same page. If they are not,
+    // disambiguate the operand.
+    if (BC.MIB->isADRP(Inst) && Rel.Addend == 0 &&
----------------
maksfb wrote:

This code is under `Relocation::isGOT()` condition, so this would be redundant.

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


More information about the llvm-commits mailing list