[llvm-branch-commits] [llvm] [NewPM][CodeGen] Port LiveRegMatrix to NPM (PR #109938)

Akshat Oke via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Sun Oct 6 23:12:12 PDT 2024


================
@@ -57,15 +59,21 @@ class LiveRegMatrix : public MachineFunctionPass {
   unsigned RegMaskVirtReg = 0;
   BitVector RegMaskUsable;
 
-  // MachineFunctionPass boilerplate.
-  void getAnalysisUsage(AnalysisUsage &) const override;
-  bool runOnMachineFunction(MachineFunction &) override;
-  void releaseMemory() override;
+  LiveRegMatrix() = default;
+  void releaseMemory();
 
 public:
-  static char ID;
-
-  LiveRegMatrix();
+  LiveRegMatrix(LiveRegMatrix &&Other)
----------------
Akshat-Oke wrote:

One for the `make_unique` in `MFAM.getResult` and another in internals - `AnalysisPassModel` constructor.

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


More information about the llvm-branch-commits mailing list