[llvm] [BOLT] Gadget scanner: refactor analysis of RET instructions (PR #131897)

Anatoly Trosinenko via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 21 04:49:57 PDT 2025


================
@@ -199,19 +199,34 @@ struct Report {
   virtual void generateReport(raw_ostream &OS,
                               const BinaryContext &BC) const = 0;
 
+  virtual const ArrayRef<MCPhysReg> getAffectedRegisters() const { return {}; }
+  virtual void
+  setOverwritingInstrs(const std::vector<MCInstReference> &Instrs) {}
+
   void printBasicInfo(raw_ostream &OS, const BinaryContext &BC,
                       StringRef IssueKind) const;
 };
 
 struct GadgetReport : public Report {
   const GadgetKind &Kind;
+  SmallVector<MCPhysReg> AffectedRegisters;
   std::vector<MCInstReference> OverwritingInstrs;
----------------
atrosinenko wrote:

I agree that having two different implementations of vector is quite strange. On the other hand, these two variables are not as consistent as they could look like - there is seemingly similar relationship between `State::LastInstWritingReg` and `PacRetAnalysis::RegsToTrackInstsFor` (where N registers correspond to exactly N elements of `LastInstWritingReg` in the same order). Though, using the same vector implementation and adding a comment is definitely better :)

Maybe replacing both vectors with sets would be even better.

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


More information about the llvm-commits mailing list