diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-03-20 22:41:15 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-03-20 22:41:15 +0000 |
| commit | 0a981d1d36c18b4d089aa4c17b22a5d7f9d192d9 (patch) | |
| tree | 35bd0e728f9d28f94ecf1c94f5d088a7a4a5a588 /llvm/lib/Transforms | |
| parent | 9b726f88a20160e6f227aeeda6a3640392fcb471 (diff) | |
| download | bcm5719-llvm-0a981d1d36c18b4d089aa4c17b22a5d7f9d192d9.tar.gz bcm5719-llvm-0a981d1d36c18b4d089aa4c17b22a5d7f9d192d9.zip | |
Fix instcombine to not introduce undefined shifts when merging two
shifts together. This fixes PR3851.
llvm-svn: 67411
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/InstructionCombining.cpp | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp index 10671cd908b..6af0afd55e1 100644 --- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp @@ -7307,22 +7307,34 @@ Instruction *InstCombiner::FoldShiftByConstant(Value *Op0, ConstantInt *Op1, Value *X = ShiftOp->getOperand(0); uint32_t AmtSum = ShiftAmt1+ShiftAmt2; // Fold into one big shift. - if (AmtSum > TypeBits) - AmtSum = TypeBits; const IntegerType *Ty = cast<IntegerType>(I.getType()); // Check for (X << c1) << c2 and (X >> c1) >> c2 if (I.getOpcode() == ShiftOp->getOpcode()) { + // If this is oversized composite shift, then unsigned shifts get 0, ashr + // saturates. + if (AmtSum >= TypeBits) { + if (I.getOpcode() != Instruction::AShr) + return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType())); + AmtSum = TypeBits-1; // Saturate to 31 for i32 ashr. + } + return BinaryOperator::Create(I.getOpcode(), X, ConstantInt::get(Ty, AmtSum)); } else if (ShiftOp->getOpcode() == Instruction::LShr && I.getOpcode() == Instruction::AShr) { + if (AmtSum >= TypeBits) + return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType())); + // ((X >>u C1) >>s C2) -> (X >>u (C1+C2)) since C1 != 0. return BinaryOperator::CreateLShr(X, ConstantInt::get(Ty, AmtSum)); } else if (ShiftOp->getOpcode() == Instruction::AShr && I.getOpcode() == Instruction::LShr) { // ((X >>s C1) >>u C2) -> ((X >>s (C1+C2)) & mask) since C1 != 0. + if (AmtSum >= TypeBits) + AmtSum = TypeBits-1; + Instruction *Shift = BinaryOperator::CreateAShr(X, ConstantInt::get(Ty, AmtSum)); InsertNewInstBefore(Shift, I); |

