[llvm] [BOLT] Gadget scanner: factor out utility code (PR #131895)
Anatoly Trosinenko via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 20 06:35:47 PDT 2025
================
@@ -58,6 +59,71 @@ raw_ostream &operator<<(raw_ostream &OS, const MCInstReference &Ref) {
namespace NonPacProtectedRetAnalysis {
+static void traceInst(const BinaryContext &BC, StringRef Label,
+ const MCInst &MI) {
+ dbgs() << " " << Label << ": ";
+ BC.printInstruction(dbgs(), MI);
+}
+
+static void traceReg(const BinaryContext &BC, StringRef Label,
+ ErrorOr<MCPhysReg> Reg) {
+ dbgs() << " " << Label << ": ";
+ if (Reg.getError())
+ dbgs() << "(error)";
+ else if (*Reg == BC.MIB->getNoRegister())
+ dbgs() << "(none)";
+ else
+ dbgs() << BC.MRI->getName(*Reg);
+ dbgs() << "\n";
+}
+
+static void traceRegMask(const BinaryContext &BC, StringRef Label,
+ BitVector Mask) {
+ dbgs() << " " << Label << ": ";
+ RegStatePrinter(BC).print(dbgs(), Mask);
+ dbgs() << "\n";
+}
+
+// This class represents mapping from arbitrary physical registers to
----------------
atrosinenko wrote:
Applied, thank you!
https://github.com/llvm/llvm-project/pull/131895
More information about the llvm-commits
mailing list