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

Kristof Beyls via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 3 02:21:03 PDT 2025


================
@@ -277,6 +277,33 @@ class AArch64MCPlusBuilder : public MCPlusBuilder {
     }
   }
 
+  MCPhysReg
+  getRegUsedAsCallDest(const MCInst &Inst,
+                       bool &IsAuthenticatedInternally) const override {
+    assert(isCall(Inst) || isBranch(Inst));
+    IsAuthenticatedInternally = false;
+
+    switch (Inst.getOpcode()) {
+    case AArch64::BR:
+    case AArch64::BLR:
+      return Inst.getOperand(0).getReg();
+    case AArch64::BRAA:
+    case AArch64::BRAB:
+    case AArch64::BRAAZ:
+    case AArch64::BRABZ:
+    case AArch64::BLRAA:
+    case AArch64::BLRAB:
+    case AArch64::BLRAAZ:
+    case AArch64::BLRABZ:
+      IsAuthenticatedInternally = true;
+      return Inst.getOperand(0).getReg();
+    default:
+      if (isIndirectCall(Inst) || isIndirectBranch(Inst))
----------------
kbeyls wrote:

IIUC, #133227 currently only corrects the implementation of the `isIndirectCall` function, but doesn't update this area of the code to make use of that updated `isIndirectCall` function?
What is your plan to then update this area of the code based on the corrected implementation of `isIndirectCall` in #133227?
I think that not clearly knowing the plan to get this area of the code cleaned up after merging #133227 is the only reason why I'm not approving this PR yet...


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


More information about the llvm-commits mailing list