[PATCH] D70616: [GlobalISel] CombinerHelper: Fix a bug in matchCombineCopy
Volkan Keles via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 22 13:29:49 PST 2019
volkan created this revision.
volkan added reviewers: qcolombet, aditya_nandakumar, aemerson, paquette, dsanders, Petar.Avramovic.
Herald added subscribers: hiraditya, rovka.
Herald added a project: LLVM.
When combining COPY instructions, we were replacing the destination registers
with the source register without checking register constraints. This patch adds
a simple logic to check if the constraints match before replacing registers.
https://reviews.llvm.org/D70616
Files:
llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
llvm/test/CodeGen/AArch64/GlobalISel/combine-copy.mir
Index: llvm/test/CodeGen/AArch64/GlobalISel/combine-copy.mir
===================================================================
--- /dev/null
+++ llvm/test/CodeGen/AArch64/GlobalISel/combine-copy.mir
@@ -0,0 +1,51 @@
+# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
+# RUN: llc -o - -march=aarch64 -run-pass=aarch64-prelegalizer-combiner %s | FileCheck %s
+
+# Make sure we don't lose the register bank constraints when
+# combining COPY instructions.
+---
+name: test_none_none
+body: |
+ bb.0.entry:
+ ; CHECK-LABEL: name: test_none_none
+ ; CHECK: [[COPY:%[0-9]+]]:_(s64) = COPY $x0
+ ; CHECK: $x0 = COPY [[COPY]](s64)
+ %0:_(s64) = COPY $x0
+ %1:_(s64) = COPY %0(s64)
+ $x0 = COPY %1(s64)
+...
+---
+name: test_gpr_none
+body: |
+ bb.0.entry:
+ ; CHECK-LABEL: name: test_gpr_none
+ ; CHECK: [[COPY:%[0-9]+]]:gpr(s64) = COPY $x0
+ ; CHECK: $x0 = COPY [[COPY]](s64)
+ %0:gpr(s64) = COPY $x0
+ %1:_(s64) = COPY %0(s64)
+ $x0 = COPY %1(s64)
+...
+---
+name: test_none_gpr
+body: |
+ bb.0.entry:
+ ; CHECK-LABEL: name: test_none_gpr
+ ; CHECK: [[COPY:%[0-9]+]]:_(s64) = COPY $x0
+ ; CHECK: [[COPY1:%[0-9]+]]:gpr(s64) = COPY [[COPY]](s64)
+ ; CHECK: $x0 = COPY [[COPY1]](s64)
+ %0:_(s64) = COPY $x0
+ %1:gpr(s64) = COPY %0(s64)
+ $x0 = COPY %1(s64)
+...
+---
+name: test_fpr_gpr
+body: |
+ bb.0.entry:
+ ; CHECK-LABEL: name: test_fpr_gpr
+ ; CHECK: [[COPY:%[0-9]+]]:fpr(s64) = COPY $x0
+ ; CHECK: [[COPY1:%[0-9]+]]:gpr(s64) = COPY [[COPY]](s64)
+ ; CHECK: $x0 = COPY [[COPY1]](s64)
+ %0:fpr(s64) = COPY $x0
+ %1:gpr(s64) = COPY %0(s64)
+ $x0 = COPY %1(s64)
+...
Index: llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
===================================================================
--- llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
+++ llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
@@ -74,12 +74,31 @@
return false;
Register DstReg = MI.getOperand(0).getReg();
Register SrcReg = MI.getOperand(1).getReg();
+
+ // Give up if either DstReg or SrcReg is a physical register.
+ if (Register::isPhysicalRegister(DstReg) ||
+ Register::isPhysicalRegister(SrcReg))
+ return false;
+
+ // Give up if the types are invalid or they are not the same.
LLT DstTy = MRI.getType(DstReg);
LLT SrcTy = MRI.getType(SrcReg);
- // Simple Copy Propagation.
- // a(sx) = COPY b(sx) -> Replace all uses of a with b.
- if (DstTy.isValid() && SrcTy.isValid() && DstTy == SrcTy)
+ if (!DstTy.isValid() || !SrcTy.isValid() || DstTy != SrcTy)
+ return false;
+
+ // Get the register banks and classes.
+ const RegisterBank *DstBank = MRI.getRegBankOrNull(DstReg);
+ const RegisterBank *SrcBank = MRI.getRegBankOrNull(SrcReg);
+ const TargetRegisterClass *DstRC = MRI.getRegClassOrNull(DstReg);
+ const TargetRegisterClass *SrcRC = MRI.getRegClassOrNull(SrcReg);
+
+ // Replace if the register constraints match.
+ if ((SrcRC == DstRC) && (SrcBank == DstBank))
return true;
+ // Replace if DstReg has no constraints.
+ if (!DstBank && !DstRC)
+ return true;
+
return false;
}
void CombinerHelper::applyCombineCopy(MachineInstr &MI) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D70616.230716.patch
Type: text/x-patch
Size: 3270 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191122/a76a65d1/attachment.bin>
More information about the llvm-commits
mailing list