[llvm] [BOLT][AArch64] Symbolize ADRP after relaxation (PR #131414)
Paschalis Mpeis via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 06:35:55 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 &&
----------------
paschalis-mpeis wrote:
Would it make sense to also check that the type here is `R_AARCH64_ADR_GOT_PAGE` ?
https://github.com/llvm/llvm-project/pull/131414
More information about the llvm-commits
mailing list