[llvm] [SampleFDO] Match functions with the same base function name (PR #126688)

Lei Wang via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 21 21:08:36 PST 2025


================
@@ -727,6 +728,33 @@ bool SampleProfileMatcher::functionMatchesProfileHelper(
   // two sequences are.
   float Similarity = 0.0;
 
+  // Match the functions if they have the same base name(after demangling) and
+  // skip the similarity check.
+  ItaniumPartialDemangler Demangler;
+  // Helper lambda to demangle and get the base name. If the demangling failed,
+  // return an empty string.
+  auto GetBaseName = [&](StringRef FName) {
+    auto FunctionName = FName.str();
+    if (Demangler.partialDemangle(FunctionName.c_str()))
+      return std::string();
+    constexpr size_t MaxBaseNameSize = 4096;
+    char BaseNameBuf[MaxBaseNameSize] = {};
+    size_t BaseNameSize = MaxBaseNameSize;
+    char *BaseNamePtr =
+        Demangler.getFunctionBaseName(BaseNameBuf, &BaseNameSize);
+    return (BaseNamePtr && BaseNameSize)
+               ? std::string(BaseNamePtr, BaseNameSize)
+               : std::string();
----------------
wlei-llvm wrote:

I checked the https://cplusplus.com/reference/string/string/string/, looks for std::string ctor
```
(4) from c-string
Copies the null-terminated character sequence (C-string) pointed by s.
```
the `std::string(const char* s, size_t n)` ctor doesn't reuse the memory from the input `s` but creates an internal memory to copy the value. So it doesn't return value from the local buffer(`BaseNameBuf`)




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


More information about the llvm-commits mailing list