mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-24 18:38:50 +00:00
Relocate NUW test to cover all binary ops in a dynamic alloca expr.
Followup to 132926. rdar://problem/9265821 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133285 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ed6fa188c4
commit
3761c34e03
@ -29,6 +29,10 @@ static Value *DecomposeSimpleLinearExpr(Value *Val, unsigned &Scale,
|
|||||||
return ConstantInt::get(Val->getType(), 0);
|
return ConstantInt::get(Val->getType(), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Insist that the amount-to-allocate not overflow.
|
||||||
|
OverflowingBinaryOperator *OBI = dyn_cast<OverflowingBinaryOperator>(Val);
|
||||||
|
if (OBI && !OBI->hasNoUnsignedWrap()) return 0;
|
||||||
|
|
||||||
if (BinaryOperator *I = dyn_cast<BinaryOperator>(Val)) {
|
if (BinaryOperator *I = dyn_cast<BinaryOperator>(Val)) {
|
||||||
if (ConstantInt *RHS = dyn_cast<ConstantInt>(I->getOperand(1))) {
|
if (ConstantInt *RHS = dyn_cast<ConstantInt>(I->getOperand(1))) {
|
||||||
if (I->getOpcode() == Instruction::Shl) {
|
if (I->getOpcode() == Instruction::Shl) {
|
||||||
@ -71,11 +75,6 @@ Instruction *InstCombiner::PromoteCastOfAllocation(BitCastInst &CI,
|
|||||||
// This requires TargetData to get the alloca alignment and size information.
|
// This requires TargetData to get the alloca alignment and size information.
|
||||||
if (!TD) return 0;
|
if (!TD) return 0;
|
||||||
|
|
||||||
// Insist that the amount-to-allocate not overflow.
|
|
||||||
OverflowingBinaryOperator *OBI =
|
|
||||||
dyn_cast<OverflowingBinaryOperator>(AI.getOperand(0));
|
|
||||||
if (OBI && !(OBI->hasNoSignedWrap() || OBI->hasNoUnsignedWrap())) return 0;
|
|
||||||
|
|
||||||
const PointerType *PTy = cast<PointerType>(CI.getType());
|
const PointerType *PTy = cast<PointerType>(CI.getType());
|
||||||
|
|
||||||
BuilderTy AllocaBuilder(*Builder);
|
BuilderTy AllocaBuilder(*Builder);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user