mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Enhance a couple places where we were doing constant folding of instructions,
but not load instructions. Noticed by inspection. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140966 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -324,9 +324,14 @@ static Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// All operands were constants, fold it.
|
// All operands were constants, fold it.
|
||||||
if (ConstOps.size() == I->getNumOperands())
|
if (ConstOps.size() == I->getNumOperands()) {
|
||||||
|
if (LoadInst *LI = dyn_cast<LoadInst>(I))
|
||||||
|
if (!LI->isVolatile())
|
||||||
|
return ConstantFoldLoadFromConstPtr(ConstOps[0], TD);
|
||||||
|
|
||||||
return ConstantFoldInstOperands(I->getOpcode(), I->getType(),
|
return ConstantFoldInstOperands(I->getOpcode(), I->getType(),
|
||||||
ConstOps, TD);
|
ConstOps, TD);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -331,12 +331,8 @@ ConstantFoldMappedInstruction(const Instruction *I) {
|
|||||||
TD);
|
TD);
|
||||||
|
|
||||||
if (const LoadInst *LI = dyn_cast<LoadInst>(I))
|
if (const LoadInst *LI = dyn_cast<LoadInst>(I))
|
||||||
if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ops[0]))
|
if (!LI->isVolatile())
|
||||||
if (!LI->isVolatile() && CE->getOpcode() == Instruction::GetElementPtr)
|
return ConstantFoldLoadFromConstPtr(Ops[0], TD);
|
||||||
if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0)))
|
|
||||||
if (GV->isConstant() && GV->hasDefinitiveInitializer())
|
|
||||||
return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(),
|
|
||||||
CE);
|
|
||||||
|
|
||||||
return ConstantFoldInstOperands(I->getOpcode(), I->getType(), Ops, TD);
|
return ConstantFoldInstOperands(I->getOpcode(), I->getType(), Ops, TD);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user