[llvm] [BOLT] Gadget scanner: refactor analysis of RET instructions (PR #131897)
Kristof Beyls via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 21 09:13:16 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;
----------------
kbeyls wrote:
Thanks for looking in more detail and adapting the code. Looks good!
https://github.com/llvm/llvm-project/pull/131897
More information about the llvm-commits
mailing list