mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-28 06:32:09 +00:00
fold c1 << (x + c2) into (c1 << c2) << x. fix a warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26005 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
176f0416d1
commit
bab9239d05
@ -838,7 +838,7 @@ SDOperand DAGCombiner::visitUREM(SDNode *N) {
|
|||||||
if (N1.getOpcode() == ISD::SHL) {
|
if (N1.getOpcode() == ISD::SHL) {
|
||||||
if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
|
if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
|
||||||
if (isPowerOf2_64(SHC->getValue())) {
|
if (isPowerOf2_64(SHC->getValue())) {
|
||||||
SDOperand Add = DAG.getNode(ISD::ADD, VT, N1, DAG.getConstant(-1, VT));
|
SDOperand Add = DAG.getNode(ISD::ADD, VT, N1,DAG.getConstant(~0ULL,VT));
|
||||||
WorkList.push_back(Add.Val);
|
WorkList.push_back(Add.Val);
|
||||||
return DAG.getNode(ISD::AND, VT, N0, Add);
|
return DAG.getNode(ISD::AND, VT, N0, Add);
|
||||||
}
|
}
|
||||||
@ -1288,6 +1288,12 @@ SDOperand DAGCombiner::visitSHL(SDNode *N) {
|
|||||||
// fold (shl 0, x) -> 0
|
// fold (shl 0, x) -> 0
|
||||||
if (N0C && N0C->isNullValue())
|
if (N0C && N0C->isNullValue())
|
||||||
return N0;
|
return N0;
|
||||||
|
// fold (shl c1, (add x, c2)) -> (shl c1 << c2, x)
|
||||||
|
if (N0C && N1.getOpcode() == ISD::ADD &&
|
||||||
|
N1.getOperand(1).getOpcode() == ISD::Constant) {
|
||||||
|
SDOperand LHS = DAG.getNode(ISD::SHL, VT, N0, N1.getOperand(1));
|
||||||
|
return DAG.getNode(ISD::SHL, VT, LHS, N1.getOperand(0));
|
||||||
|
}
|
||||||
// fold (shl x, c >= size(x)) -> undef
|
// fold (shl x, c >= size(x)) -> undef
|
||||||
if (N1C && N1C->getValue() >= OpSizeInBits)
|
if (N1C && N1C->getValue() >= OpSizeInBits)
|
||||||
return DAG.getNode(ISD::UNDEF, VT);
|
return DAG.getNode(ISD::UNDEF, VT);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user