[llvm] [BOLT] Support computed goto and allow map addrs inside functions (PR #120267)

Maksim Panchenko via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 24 21:40:05 PST 2025


================
@@ -2439,6 +2439,26 @@ void RewriteInstance::readDynamicRelocations(const SectionRef &Section,
     if (Symbol)
       SymbolIndex[Symbol] = getRelocationSymbol(InputFile, Rel);
 
+    const uint64_t ReferencedAddress = SymbolAddress + Addend;
+    BinaryFunction *Func =
+        BC->getBinaryFunctionContainingAddress(ReferencedAddress);
----------------
maksfb wrote:

We need to find a function that contains `SymbolAddress` and then verify that it also contains `ReferencedAddress`.

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


More information about the llvm-commits mailing list