[llvm] [IR][Instructions] Add `CallBase::getCalledFunctionName` helper (PR #127038)
Thomas Symalla via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 00:35:24 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;
----------------
tsymalla wrote:
Technically, yes, but I think `std::optional` is a better fit, since using `operator*` on the return value would fail if no value is present.
https://github.com/llvm/llvm-project/pull/127038
More information about the llvm-commits
mailing list