[llvm] [SystemZ] Add pass initialization for `CopyPhysRegs` pass (PR #132912)

Dominik Steenken via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 25 03:41:18 PDT 2025


https://github.com/dominik-steenken created https://github.com/llvm/llvm-project/pull/132912

This commit adds an initialization to `SystemZTargetMachine` for the `SystemZCopyPhysRegs` pass that was thus far  missing. This will enable, e.g., to run tests for that pass via `llc --run-pass=systemz-copy-physregs`.

>From a6be2ef678f6eac34be0a9d5de8cb12b3f6cf4f3 Mon Sep 17 00:00:00 2001
From: Dominik Steenken <dost at de.ibm.com>
Date: Tue, 25 Mar 2025 11:08:39 +0100
Subject: [PATCH] [SystemZ] Add pass initialization for CopyPhysRegsPass This
 commit adds an initialization to `SystemZTargetMachine` for the
 `SystemZCopyPhysRegs` pass that was thus far missing. This will enable, e.g.,
 to run tests for that pass via `llc --run-pass=systemz-copy-physregs`.

---
 llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp b/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
index 092515ee197a8..6300fb72990d0 100644
--- a/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
+++ b/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
@@ -48,6 +48,7 @@ extern "C" LLVM_EXTERNAL_VISIBILITY void LLVMInitializeSystemZTarget() {
   initializeSystemZPostRewritePass(PR);
   initializeSystemZTDCPassPass(PR);
   initializeSystemZDAGToDAGISelLegacyPass(PR);
+  initializeSystemZCopyPhysRegsPass(PR);
 }
 
 static std::string computeDataLayout(const Triple &TT) {



More information about the llvm-commits mailing list