[llvm] [IR][Instructions] Add `CallBase::getCalledFunctionName` helper (PR #127038)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 21 04:31:59 PST 2025


================
@@ -1345,6 +1345,16 @@ class CallBase : public Instruction {
     return nullptr;
   }
 
+  /// Shortcut to retrieving the name of the called function.
+  /// Returns std::nullopt, if the function cannot be found.
+  std::optional<StringRef> getCalledFunctionName() const {
+    Function *F = getCalledFunction();
+    if (F)
+      return F->getName();
+
+    return std::nullopt;
----------------
arsenm wrote:

Which is the kind of failure you are trying to avoid needing to worry about? 

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


More information about the llvm-commits mailing list