[llvm] [BOLT] Gadget scanner: detect non-protected indirect calls (PR #131899)

Kristof Beyls via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 26 07:14:13 PDT 2025


================
@@ -277,6 +277,33 @@ class AArch64MCPlusBuilder : public MCPlusBuilder {
     }
   }
 
+  MCPhysReg
+  getRegUsedAsCallDest(const MCInst &Inst,
+                       bool &IsAuthenticatedInternally) const override {
+    assert(isCall(Inst) || isBranch(Inst));
----------------
kbeyls wrote:

I guess this assert could be made more strict now to only allow indirect calls and indirect branches?

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


More information about the llvm-commits mailing list