[llvm] r357052 - [DAGCombiner] Don't allow addcarry if the carry producer is illegal.
Jonas Paulsson via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 27 01:41:46 PDT 2019
Author: jonpa
Date: Wed Mar 27 01:41:46 2019
New Revision: 357052
URL: http://llvm.org/viewvc/llvm-project?rev=357052&view=rev
Log:
[DAGCombiner] Don't allow addcarry if the carry producer is illegal.
getAsCarry() checks that the input argument is a carry-producing node before
allowing a transformation to addcarry. This patch adds a check to make sure
that the carry-producing node is legal. If it is not, it may not remain in a
form that is manageable by the target backend. The test case caused a
compilation failure during instruction selection for this reason on SystemZ.
Patch by Ulrich Weigand.
Review: Sanjay Patel
https://reviews.llvm.org/D59822
Added:
llvm/trunk/test/CodeGen/SystemZ/dag-combine-05.ll
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp?rev=357052&r1=357051&r2=357052&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp Wed Mar 27 01:41:46 2019
@@ -2336,6 +2336,10 @@ static SDValue getAsCarry(const TargetLo
V.getOpcode() != ISD::UADDO && V.getOpcode() != ISD::USUBO)
return SDValue();
+ EVT VT = V.getNode()->getValueType(0);
+ if (!TLI.isOperationLegalOrCustom(V.getOpcode(), VT))
+ return SDValue();
+
// If the result is masked, then no matter what kind of bool it is we can
// return. If it isn't, then we need to make sure the bool type is either 0 or
// 1 and not other values.
Added: llvm/trunk/test/CodeGen/SystemZ/dag-combine-05.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/SystemZ/dag-combine-05.ll?rev=357052&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/SystemZ/dag-combine-05.ll (added)
+++ llvm/trunk/test/CodeGen/SystemZ/dag-combine-05.ll Wed Mar 27 01:41:46 2019
@@ -0,0 +1,35 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+;
+; Test that DAGCombiner does not produce an addcarry node if the carry
+; producer is not legal. This can happen e.g. with an uaddo with a type
+; that is not legal.
+;
+; RUN: llc -mtriple=s390x-linux-gnu -mcpu=z13 < %s | FileCheck %s
+
+define void @fun(i16 %arg0, i16* %src, i32* %dst) {
+; CHECK-LABEL: fun:
+; CHECK: # %bb.0: # %bb
+; CHECK-NEXT: llhr %r0, %r2
+; CHECK-NEXT: llh %r2, 0(%r3)
+; CHECK-NEXT: chi %r0, 9616
+; CHECK-NEXT: lhi %r1, 0
+; CHECK-NEXT: lochil %r1, 1
+; CHECK-NEXT: afi %r2, 65535
+; CHECK-NEXT: llhr %r3, %r2
+; CHECK-NEXT: lhi %r0, 0
+; CHECK-NEXT: cr %r3, %r2
+; CHECK-NEXT: lochilh %r0, 1
+; CHECK-NEXT: ar %r0, %r1
+; CHECK-NEXT: st %r0, 0(%r4)
+; CHECK-NEXT: br %r14
+bb:
+ %tmp = icmp ult i16 %arg0, 9616
+ %tmp1 = zext i1 %tmp to i32
+ %tmp2 = load i16, i16* %src
+ %tmp3 = add i16 %tmp2, -1
+ %tmp4 = icmp ne i16 %tmp2, 0
+ %tmp5 = zext i1 %tmp4 to i32
+ %tmp6 = add nuw nsw i32 %tmp5, %tmp1
+ store i32 %tmp6, i32* %dst
+ ret void
+}
More information about the llvm-commits
mailing list