mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-23 04:01:16 +00:00
Fix a dagga combiner bug: avoid creating illegal constant.
Is this really a winning transformation? fold (shl (srl x, c1), c2) -> (shl (and x, (shl -1, c1)), (sub c2, c1)) or (srl (and x, (shl -1, c1)), (sub c1, c2)) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76535 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f53c371983
commit
d101a72d79
@ -2475,15 +2475,18 @@ SDValue DAGCombiner::visitSHL(SDNode *N) {
|
|||||||
if (N1C && N0.getOpcode() == ISD::SRL &&
|
if (N1C && N0.getOpcode() == ISD::SRL &&
|
||||||
N0.getOperand(1).getOpcode() == ISD::Constant) {
|
N0.getOperand(1).getOpcode() == ISD::Constant) {
|
||||||
uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
|
uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
|
||||||
uint64_t c2 = N1C->getZExtValue();
|
if (c1 < VT.getSizeInBits()) {
|
||||||
SDValue Mask = DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, N0.getOperand(0),
|
uint64_t c2 = N1C->getZExtValue();
|
||||||
DAG.getConstant(~0ULL << c1, VT));
|
SDValue Mask = DAG.getNode(ISD::AND, N0.getDebugLoc(), VT,
|
||||||
if (c2 > c1)
|
N0.getOperand(0),
|
||||||
return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, Mask,
|
DAG.getConstant(~0ULL << c1, VT));
|
||||||
DAG.getConstant(c2-c1, N1.getValueType()));
|
if (c2 > c1)
|
||||||
else
|
return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, Mask,
|
||||||
return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Mask,
|
DAG.getConstant(c2-c1, N1.getValueType()));
|
||||||
DAG.getConstant(c1-c2, N1.getValueType()));
|
else
|
||||||
|
return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Mask,
|
||||||
|
DAG.getConstant(c1-c2, N1.getValueType()));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
|
// fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
|
||||||
if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
|
if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
|
||||||
|
29
test/CodeGen/X86/2009-07-20-DAGCombineBug.ll
Normal file
29
test/CodeGen/X86/2009-07-20-DAGCombineBug.ll
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
; RUN: llvm-as < %s | llc -march=x86
|
||||||
|
|
||||||
|
@bsBuff = internal global i32 0 ; <i32*> [#uses=1]
|
||||||
|
@llvm.used = appending global [1 x i8*] [i8* bitcast (i32 ()* @bsGetUInt32 to i8*)], section "llvm.metadata" ; <[1 x i8*]*> [#uses=0]
|
||||||
|
|
||||||
|
define fastcc i32 @bsGetUInt32() nounwind ssp {
|
||||||
|
entry:
|
||||||
|
%bsBuff.promoted44 = load i32* @bsBuff ; <i32> [#uses=1]
|
||||||
|
%0 = add i32 0, -8 ; <i32> [#uses=1]
|
||||||
|
%1 = lshr i32 %bsBuff.promoted44, %0 ; <i32> [#uses=1]
|
||||||
|
%2 = shl i32 %1, 8 ; <i32> [#uses=1]
|
||||||
|
br label %bb3.i17
|
||||||
|
|
||||||
|
bb3.i9: ; preds = %bb3.i17
|
||||||
|
br i1 false, label %bb2.i16, label %bb1.i15
|
||||||
|
|
||||||
|
bb1.i15: ; preds = %bb3.i9
|
||||||
|
unreachable
|
||||||
|
|
||||||
|
bb2.i16: ; preds = %bb3.i9
|
||||||
|
br label %bb3.i17
|
||||||
|
|
||||||
|
bb3.i17: ; preds = %bb2.i16, %entry
|
||||||
|
br i1 false, label %bb3.i9, label %bsR.exit18
|
||||||
|
|
||||||
|
bsR.exit18: ; preds = %bb3.i17
|
||||||
|
%3 = or i32 0, %2 ; <i32> [#uses=0]
|
||||||
|
ret i32 0
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user