[llvm-branch-commits] [clang] [clang] Implement function pointer signing and authenticated function calls (PR #93906)
Daniil Kovalev via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Mon Jun 17 08:01:14 PDT 2024
================
@@ -104,10 +109,13 @@ class CGCallee {
/// Construct a callee. Call this constructor directly when this
/// isn't a direct call.
- CGCallee(const CGCalleeInfo &abstractInfo, llvm::Value *functionPtr)
+ CGCallee(
+ const CGCalleeInfo &abstractInfo, llvm::Value *functionPtr,
+ const CGPointerAuthInfo &pointerAuthInfo = /*FIXME*/ CGPointerAuthInfo())
----------------
kovdan01 wrote:
Thanks for explanation. Do I get it correct that you'll make the parameter mandatory in a subsequent PR since this would require small changes in many places and you don't want to clutter this PR with them?
https://github.com/llvm/llvm-project/pull/93906
More information about the llvm-branch-commits
mailing list