[llvm] [llvm-profgen] Loading binary functions from .symtab when DWARF info is incomplete (PR #163654)

via llvm-commits llvm-commits at lists.llvm.org
Sat Nov 22 20:50:12 PST 2025


================
@@ -1034,6 +1140,48 @@ void ProfiledBinary::computeInlinedContextSizeForFunc(
   }
 }
 
+void ProfiledBinary::loadSymbolsFromPseudoProbe() {
+  if (!UsePseudoProbes)
+    return;
+
+  const AddressProbesMap &Address2ProbesMap = getAddress2ProbesMap();
+  for (auto &[Addr, Range] : StartAddrToFuncRangeMap) {
----------------
HighW4y2H3ll wrote:

ohh.. wait.. my mistake, you mean the `ProfiledFunctions`.. let me update this!

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


More information about the llvm-commits mailing list