2001-12-14 16:52:21 +00:00
|
|
|
//===- InstructionCombining.cpp - Combine multiple instructions -------------=//
|
|
|
|
//
|
|
|
|
// InstructionCombining - Combine instructions to form fewer, simple
|
|
|
|
// instructions. This pass does not modify the CFG, and has a tendancy to
|
2002-05-06 16:14:14 +00:00
|
|
|
// make instructions dead, so a subsequent DIE pass is useful. This pass is
|
|
|
|
// where algebraic simplification happens.
|
2001-12-14 16:52:21 +00:00
|
|
|
//
|
|
|
|
// This pass combines things like:
|
|
|
|
// %Y = add int 1, %X
|
|
|
|
// %Z = add int 1, %Y
|
|
|
|
// into:
|
|
|
|
// %Z = add int 2, %X
|
|
|
|
//
|
|
|
|
// This is a simple worklist driven algorithm.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-05-07 20:03:00 +00:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2002-05-07 18:12:18 +00:00
|
|
|
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
|
2002-08-02 19:29:35 +00:00
|
|
|
#include "llvm/Transforms/Utils/Local.h"
|
2002-04-08 20:18:09 +00:00
|
|
|
#include "llvm/ConstantHandling.h"
|
2001-12-14 16:52:21 +00:00
|
|
|
#include "llvm/iMemory.h"
|
2002-04-15 19:45:29 +00:00
|
|
|
#include "llvm/iOther.h"
|
2002-05-06 18:06:38 +00:00
|
|
|
#include "llvm/iPHINode.h"
|
2002-04-18 17:39:14 +00:00
|
|
|
#include "llvm/iOperators.h"
|
2002-02-26 21:46:54 +00:00
|
|
|
#include "llvm/Pass.h"
|
2002-02-12 21:07:25 +00:00
|
|
|
#include "llvm/Support/InstIterator.h"
|
2002-04-18 17:39:14 +00:00
|
|
|
#include "llvm/Support/InstVisitor.h"
|
2002-05-10 15:38:35 +00:00
|
|
|
#include "Support/StatisticReporter.h"
|
2002-05-14 15:24:07 +00:00
|
|
|
#include <algorithm>
|
2001-12-14 16:52:21 +00:00
|
|
|
|
2002-05-10 15:38:35 +00:00
|
|
|
static Statistic<> NumCombined("instcombine\t- Number of insts combined");
|
2001-12-14 16:52:21 +00:00
|
|
|
|
2002-04-18 17:39:14 +00:00
|
|
|
namespace {
|
2002-04-27 06:56:12 +00:00
|
|
|
class InstCombiner : public FunctionPass,
|
2002-04-18 17:39:14 +00:00
|
|
|
public InstVisitor<InstCombiner, Instruction*> {
|
|
|
|
// Worklist of all of the instructions that need to be simplified.
|
|
|
|
std::vector<Instruction*> WorkList;
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
void AddUsesToWorkList(Instruction &I) {
|
2002-04-18 17:39:14 +00:00
|
|
|
// The instruction was simplified, add all users of the instruction to
|
|
|
|
// the work lists because they might get more simplified now...
|
|
|
|
//
|
2002-06-25 16:13:24 +00:00
|
|
|
for (Value::use_iterator UI = I.use_begin(), UE = I.use_end();
|
2002-04-18 17:39:14 +00:00
|
|
|
UI != UE; ++UI)
|
|
|
|
WorkList.push_back(cast<Instruction>(*UI));
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2002-06-25 16:13:24 +00:00
|
|
|
virtual bool runOnFunction(Function &F);
|
2002-04-18 17:39:14 +00:00
|
|
|
|
2002-04-28 21:27:06 +00:00
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.preservesCFG();
|
|
|
|
}
|
|
|
|
|
2002-04-18 17:39:14 +00:00
|
|
|
// Visitation implementation - Implement instruction combining for different
|
|
|
|
// instruction types. The semantics are as follows:
|
|
|
|
// Return Value:
|
|
|
|
// null - No change was made
|
|
|
|
// I - Change was made, I is still valid
|
|
|
|
// otherwise - Change was made, replace I with returned instruction
|
|
|
|
//
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *visitNot(UnaryOperator &I);
|
|
|
|
Instruction *visitAdd(BinaryOperator &I);
|
|
|
|
Instruction *visitSub(BinaryOperator &I);
|
|
|
|
Instruction *visitMul(BinaryOperator &I);
|
|
|
|
Instruction *visitDiv(BinaryOperator &I);
|
|
|
|
Instruction *visitRem(BinaryOperator &I);
|
|
|
|
Instruction *visitAnd(BinaryOperator &I);
|
|
|
|
Instruction *visitOr (BinaryOperator &I);
|
|
|
|
Instruction *visitXor(BinaryOperator &I);
|
|
|
|
Instruction *visitSetCondInst(BinaryOperator &I);
|
|
|
|
Instruction *visitShiftInst(Instruction &I);
|
|
|
|
Instruction *visitCastInst(CastInst &CI);
|
|
|
|
Instruction *visitPHINode(PHINode &PN);
|
|
|
|
Instruction *visitGetElementPtrInst(GetElementPtrInst &GEP);
|
2002-04-18 17:39:14 +00:00
|
|
|
|
|
|
|
// visitInstruction - Specify what to return for unhandled instructions...
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *visitInstruction(Instruction &I) { return 0; }
|
2002-04-18 17:39:14 +00:00
|
|
|
};
|
2002-07-23 18:06:35 +00:00
|
|
|
|
2002-07-26 21:12:46 +00:00
|
|
|
RegisterOpt<InstCombiner> X("instcombine", "Combine redundant instructions");
|
2002-04-18 17:39:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *InstCombiner::visitNot(UnaryOperator &I) {
|
2002-05-06 17:03:21 +00:00
|
|
|
// not (not X) = X
|
2002-06-25 16:13:24 +00:00
|
|
|
if (Instruction *Op = dyn_cast<Instruction>(I.getOperand(0)))
|
2002-05-06 17:03:21 +00:00
|
|
|
if (Op->getOpcode() == Instruction::Not) {
|
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
I.replaceAllUsesWith(Op->getOperand(0));
|
|
|
|
return &I;
|
2002-05-06 17:03:21 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-04-18 17:39:14 +00:00
|
|
|
|
|
|
|
// Make sure that this instruction has a constant on the right hand side if it
|
|
|
|
// has any constant arguments. If not, fix it an return true.
|
|
|
|
//
|
2002-06-25 16:13:24 +00:00
|
|
|
static bool SimplifyBinOp(BinaryOperator &I) {
|
|
|
|
if (isa<Constant>(I.getOperand(0)) && !isa<Constant>(I.getOperand(1)))
|
|
|
|
return !I.swapOperands();
|
2002-04-18 17:39:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
2001-12-14 16:52:21 +00:00
|
|
|
|
2002-05-06 16:49:18 +00:00
|
|
|
// dyn_castNegInst - Given a 'sub' instruction, return the RHS of the
|
|
|
|
// instruction if the LHS is a constant zero (which is the 'negate' form).
|
|
|
|
//
|
|
|
|
static inline Value *dyn_castNegInst(Value *V) {
|
|
|
|
Instruction *I = dyn_cast<Instruction>(V);
|
|
|
|
if (!I || I->getOpcode() != Instruction::Sub) return 0;
|
|
|
|
|
|
|
|
if (I->getOperand(0) == Constant::getNullValue(I->getType()))
|
|
|
|
return I->getOperand(1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *InstCombiner::visitAdd(BinaryOperator &I) {
|
2002-04-18 17:39:14 +00:00
|
|
|
bool Changed = SimplifyBinOp(I);
|
2002-06-25 16:13:24 +00:00
|
|
|
Value *LHS = I.getOperand(0), *RHS = I.getOperand(1);
|
2002-05-06 16:49:18 +00:00
|
|
|
|
|
|
|
// Eliminate 'add int %X, 0'
|
2002-06-25 16:13:24 +00:00
|
|
|
if (RHS == Constant::getNullValue(I.getType())) {
|
2002-05-06 16:49:18 +00:00
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
I.replaceAllUsesWith(LHS);
|
|
|
|
return &I;
|
2002-05-06 16:49:18 +00:00
|
|
|
}
|
|
|
|
|
2002-05-08 22:46:53 +00:00
|
|
|
// -A + B --> B - A
|
2002-05-06 16:49:18 +00:00
|
|
|
if (Value *V = dyn_castNegInst(LHS))
|
2002-05-08 22:46:53 +00:00
|
|
|
return BinaryOperator::create(Instruction::Sub, RHS, V);
|
2002-05-06 16:49:18 +00:00
|
|
|
|
|
|
|
// A + -B --> A - B
|
|
|
|
if (Value *V = dyn_castNegInst(RHS))
|
2002-05-08 22:46:53 +00:00
|
|
|
return BinaryOperator::create(Instruction::Sub, LHS, V);
|
2002-04-18 17:39:14 +00:00
|
|
|
|
|
|
|
// Simplify add instructions with a constant RHS...
|
2002-05-06 16:49:18 +00:00
|
|
|
if (Constant *Op2 = dyn_cast<Constant>(RHS)) {
|
|
|
|
if (BinaryOperator *ILHS = dyn_cast<BinaryOperator>(LHS)) {
|
|
|
|
if (ILHS->getOpcode() == Instruction::Add &&
|
|
|
|
isa<Constant>(ILHS->getOperand(1))) {
|
2002-04-18 17:39:14 +00:00
|
|
|
// Fold:
|
|
|
|
// %Y = add int %X, 1
|
|
|
|
// %Z = add int %Y, 1
|
|
|
|
// into:
|
|
|
|
// %Z = add int %X, 2
|
|
|
|
//
|
2002-05-06 16:49:18 +00:00
|
|
|
if (Constant *Val = *Op2 + *cast<Constant>(ILHS->getOperand(1))) {
|
2002-06-25 16:13:24 +00:00
|
|
|
I.setOperand(0, ILHS->getOperand(0));
|
|
|
|
I.setOperand(1, Val);
|
|
|
|
return &I;
|
2002-02-26 21:46:54 +00:00
|
|
|
}
|
2002-04-18 17:39:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-02-26 21:46:54 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
return Changed ? &I : 0;
|
2002-04-18 17:39:14 +00:00
|
|
|
}
|
2002-02-26 21:46:54 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *InstCombiner::visitSub(BinaryOperator &I) {
|
|
|
|
Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
|
2002-05-06 16:14:14 +00:00
|
|
|
|
|
|
|
if (Op0 == Op1) { // sub X, X -> 0
|
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
I.replaceAllUsesWith(Constant::getNullValue(I.getType()));
|
|
|
|
return &I;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
2002-04-18 17:39:14 +00:00
|
|
|
|
|
|
|
// If this is a subtract instruction with a constant RHS, convert it to an add
|
|
|
|
// instruction of a negative constant
|
|
|
|
//
|
2002-05-06 16:14:14 +00:00
|
|
|
if (Constant *Op2 = dyn_cast<Constant>(Op1))
|
2002-06-25 16:13:24 +00:00
|
|
|
if (Constant *RHS = *Constant::getNullValue(I.getType()) - *Op2) // 0 - RHS
|
|
|
|
return BinaryOperator::create(Instruction::Add, Op0, RHS, I.getName());
|
2002-04-18 17:39:14 +00:00
|
|
|
|
2002-05-08 22:46:53 +00:00
|
|
|
// If this is a 'C = x-B', check to see if 'B = -A', so that C = x+A...
|
|
|
|
if (Value *V = dyn_castNegInst(Op1))
|
|
|
|
return BinaryOperator::create(Instruction::Add, Op0, V);
|
2002-05-06 16:49:18 +00:00
|
|
|
|
2002-05-09 01:29:19 +00:00
|
|
|
// Replace (x - (y - z)) with (x + (z - y)) if the (y - z) subexpression is
|
|
|
|
// not used by anyone else...
|
|
|
|
//
|
|
|
|
if (BinaryOperator *Op1I = dyn_cast<BinaryOperator>(Op1))
|
2002-05-14 16:44:07 +00:00
|
|
|
if (Op1I->use_size() == 1 && Op1I->getOpcode() == Instruction::Sub) {
|
2002-05-09 01:29:19 +00:00
|
|
|
// Swap the two operands of the subexpr...
|
|
|
|
Value *IIOp0 = Op1I->getOperand(0), *IIOp1 = Op1I->getOperand(1);
|
|
|
|
Op1I->setOperand(0, IIOp1);
|
|
|
|
Op1I->setOperand(1, IIOp0);
|
|
|
|
|
|
|
|
// Create the new top level add instruction...
|
|
|
|
return BinaryOperator::create(Instruction::Add, Op0, Op1);
|
|
|
|
}
|
2002-05-06 16:14:14 +00:00
|
|
|
return 0;
|
2002-04-18 17:39:14 +00:00
|
|
|
}
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *InstCombiner::visitMul(BinaryOperator &I) {
|
2002-04-18 17:39:14 +00:00
|
|
|
bool Changed = SimplifyBinOp(I);
|
2002-06-25 16:13:24 +00:00
|
|
|
Value *Op1 = I.getOperand(0);
|
2002-04-18 17:39:14 +00:00
|
|
|
|
|
|
|
// Simplify add instructions with a constant RHS...
|
2002-06-25 16:13:24 +00:00
|
|
|
if (Constant *Op2 = dyn_cast<Constant>(I.getOperand(1))) {
|
|
|
|
if (I.getType()->isIntegral() && cast<ConstantInt>(Op2)->equalsInt(1)){
|
2002-04-18 17:39:14 +00:00
|
|
|
// Eliminate 'mul int %X, 1'
|
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
I.replaceAllUsesWith(Op1);
|
|
|
|
return &I;
|
2002-04-29 22:24:47 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
} else if (I.getType()->isIntegral() &&
|
2002-04-29 22:24:47 +00:00
|
|
|
cast<ConstantInt>(Op2)->equalsInt(2)) {
|
|
|
|
// Convert 'mul int %X, 2' to 'add int %X, %X'
|
2002-06-25 16:13:24 +00:00
|
|
|
return BinaryOperator::create(Instruction::Add, Op1, Op1, I.getName());
|
2002-04-29 22:24:47 +00:00
|
|
|
|
|
|
|
} else if (Op2->isNullValue()) {
|
|
|
|
// Eliminate 'mul int %X, 0'
|
2002-06-25 16:13:24 +00:00
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
|
|
|
I.replaceAllUsesWith(Op2); // Set this value to zero directly
|
|
|
|
return &I;
|
2001-12-14 16:52:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
return Changed ? &I : 0;
|
2002-04-18 17:39:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *InstCombiner::visitDiv(BinaryOperator &I) {
|
2002-05-06 16:14:14 +00:00
|
|
|
// div X, 1 == X
|
2002-06-25 16:13:24 +00:00
|
|
|
if (ConstantInt *RHS = dyn_cast<ConstantInt>(I.getOperand(1)))
|
2002-05-06 16:14:14 +00:00
|
|
|
if (RHS->equalsInt(1)) {
|
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
I.replaceAllUsesWith(I.getOperand(0));
|
|
|
|
return &I;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *InstCombiner::visitRem(BinaryOperator &I) {
|
2002-05-06 16:14:14 +00:00
|
|
|
// rem X, 1 == 0
|
2002-06-25 16:13:24 +00:00
|
|
|
if (ConstantInt *RHS = dyn_cast<ConstantInt>(I.getOperand(1)))
|
2002-05-06 16:14:14 +00:00
|
|
|
if (RHS->equalsInt(1)) {
|
2002-06-25 16:13:24 +00:00
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
|
|
|
I.replaceAllUsesWith(Constant::getNullValue(I.getType()));
|
|
|
|
return &I;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Constant *getMaxValue(const Type *Ty) {
|
|
|
|
assert(Ty == Type::BoolTy || Ty->isIntegral());
|
|
|
|
if (Ty == Type::BoolTy)
|
|
|
|
return ConstantBool::True;
|
|
|
|
|
|
|
|
if (Ty->isSigned())
|
2002-05-06 18:54:59 +00:00
|
|
|
return ConstantSInt::get(Ty, -1);
|
|
|
|
else if (Ty->isUnsigned()) {
|
|
|
|
// Calculate -1 casted to the right type...
|
|
|
|
unsigned TypeBits = Ty->getPrimitiveSize()*8;
|
|
|
|
uint64_t Val = (uint64_t)-1LL; // All ones
|
|
|
|
Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
|
2002-05-06 16:14:14 +00:00
|
|
|
return ConstantUInt::get(Ty, Val);
|
2002-05-06 18:54:59 +00:00
|
|
|
}
|
2002-05-06 16:14:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *InstCombiner::visitAnd(BinaryOperator &I) {
|
2002-05-06 16:14:14 +00:00
|
|
|
bool Changed = SimplifyBinOp(I);
|
2002-06-25 16:13:24 +00:00
|
|
|
Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
|
2002-05-06 16:14:14 +00:00
|
|
|
|
|
|
|
// and X, X = X and X, 0 == 0
|
2002-06-25 16:13:24 +00:00
|
|
|
if (Op0 == Op1 || Op1 == Constant::getNullValue(I.getType())) {
|
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
|
|
|
I.replaceAllUsesWith(Op1);
|
|
|
|
return &I;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// and X, -1 == X
|
|
|
|
if (Constant *RHS = dyn_cast<Constant>(Op1))
|
2002-06-25 16:13:24 +00:00
|
|
|
if (RHS == getMaxValue(I.getType())) {
|
2002-05-06 16:14:14 +00:00
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
I.replaceAllUsesWith(Op0);
|
|
|
|
return &I;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
return Changed ? &I : 0;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *InstCombiner::visitOr(BinaryOperator &I) {
|
2002-05-06 16:14:14 +00:00
|
|
|
bool Changed = SimplifyBinOp(I);
|
2002-06-25 16:13:24 +00:00
|
|
|
Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
|
2002-05-06 16:14:14 +00:00
|
|
|
|
|
|
|
// or X, X = X or X, 0 == X
|
2002-06-25 16:13:24 +00:00
|
|
|
if (Op0 == Op1 || Op1 == Constant::getNullValue(I.getType())) {
|
2002-05-06 16:14:14 +00:00
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
I.replaceAllUsesWith(Op0);
|
|
|
|
return &I;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// or X, -1 == -1
|
|
|
|
if (Constant *RHS = dyn_cast<Constant>(Op1))
|
2002-06-25 16:13:24 +00:00
|
|
|
if (RHS == getMaxValue(I.getType())) {
|
2002-05-06 16:14:14 +00:00
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
I.replaceAllUsesWith(Op1);
|
|
|
|
return &I;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
return Changed ? &I : 0;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *InstCombiner::visitXor(BinaryOperator &I) {
|
2002-05-06 16:14:14 +00:00
|
|
|
bool Changed = SimplifyBinOp(I);
|
2002-06-25 16:13:24 +00:00
|
|
|
Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
|
2002-05-06 16:14:14 +00:00
|
|
|
|
|
|
|
// xor X, X = 0
|
|
|
|
if (Op0 == Op1) {
|
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
I.replaceAllUsesWith(Constant::getNullValue(I.getType()));
|
|
|
|
return &I;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// xor X, 0 == X
|
2002-06-25 16:13:24 +00:00
|
|
|
if (Op1 == Constant::getNullValue(I.getType())) {
|
2002-05-06 16:14:14 +00:00
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
I.replaceAllUsesWith(Op0);
|
|
|
|
return &I;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
return Changed ? &I : 0;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
|
2002-05-09 20:11:54 +00:00
|
|
|
// isTrueWhenEqual - Return true if the specified setcondinst instruction is
|
|
|
|
// true when both operands are equal...
|
|
|
|
//
|
2002-06-25 16:13:24 +00:00
|
|
|
static bool isTrueWhenEqual(Instruction &I) {
|
|
|
|
return I.getOpcode() == Instruction::SetEQ ||
|
|
|
|
I.getOpcode() == Instruction::SetGE ||
|
|
|
|
I.getOpcode() == Instruction::SetLE;
|
2002-05-09 20:11:54 +00:00
|
|
|
}
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *InstCombiner::visitSetCondInst(BinaryOperator &I) {
|
2002-05-06 16:14:14 +00:00
|
|
|
bool Changed = SimplifyBinOp(I);
|
|
|
|
|
|
|
|
// setcc X, X
|
2002-06-25 16:13:24 +00:00
|
|
|
if (I.getOperand(0) == I.getOperand(1)) {
|
2002-05-06 16:14:14 +00:00
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
I.replaceAllUsesWith(ConstantBool::get(isTrueWhenEqual(I)));
|
|
|
|
return &I;
|
2002-05-09 20:11:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// setcc <global*>, 0 - Global value addresses are never null!
|
2002-06-25 16:13:24 +00:00
|
|
|
if (isa<GlobalValue>(I.getOperand(0)) &&
|
|
|
|
isa<ConstantPointerNull>(I.getOperand(1))) {
|
2002-05-09 20:11:54 +00:00
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
I.replaceAllUsesWith(ConstantBool::get(!isTrueWhenEqual(I)));
|
|
|
|
return &I;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
return Changed ? &I : 0;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *InstCombiner::visitShiftInst(Instruction &I) {
|
|
|
|
assert(I.getOperand(1)->getType() == Type::UByteTy);
|
|
|
|
Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
|
2002-05-06 16:14:14 +00:00
|
|
|
|
|
|
|
// shl X, 0 == X and shr X, 0 == X
|
|
|
|
// shl 0, X == 0 and shr 0, X == 0
|
|
|
|
if (Op1 == Constant::getNullValue(Type::UByteTy) ||
|
|
|
|
Op0 == Constant::getNullValue(Op0->getType())) {
|
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
I.replaceAllUsesWith(Op0);
|
|
|
|
return &I;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// shl int X, 32 = 0 and shr sbyte Y, 9 = 0, ... just don't eliminate shr of
|
|
|
|
// a signed value.
|
|
|
|
//
|
|
|
|
if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(Op1)) {
|
|
|
|
unsigned TypeBits = Op0->getType()->getPrimitiveSize()*8;
|
|
|
|
if (CUI->getValue() >= TypeBits &&
|
2002-06-25 16:13:24 +00:00
|
|
|
!(Op0->getType()->isSigned() && I.getOpcode() == Instruction::Shr)) {
|
2002-05-06 16:14:14 +00:00
|
|
|
AddUsesToWorkList(I); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
I.replaceAllUsesWith(Constant::getNullValue(Op0->getType()));
|
|
|
|
return &I;
|
2002-05-06 16:14:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-02 17:06:02 +00:00
|
|
|
// isEliminableCastOfCast - Return true if it is valid to eliminate the CI
|
|
|
|
// instruction.
|
|
|
|
//
|
2002-06-25 16:13:24 +00:00
|
|
|
static inline bool isEliminableCastOfCast(const CastInst &CI,
|
2002-05-02 17:06:02 +00:00
|
|
|
const CastInst *CSrc) {
|
2002-06-25 16:13:24 +00:00
|
|
|
assert(CI.getOperand(0) == CSrc);
|
2002-05-02 17:06:02 +00:00
|
|
|
const Type *SrcTy = CSrc->getOperand(0)->getType();
|
|
|
|
const Type *MidTy = CSrc->getType();
|
2002-06-25 16:13:24 +00:00
|
|
|
const Type *DstTy = CI.getType();
|
2002-05-02 17:06:02 +00:00
|
|
|
|
2002-08-02 20:00:25 +00:00
|
|
|
// It is legal to eliminate the instruction if casting A->B->A if the sizes
|
|
|
|
// are identical and the bits don't get reinterpreted (for example
|
|
|
|
// int->float->int)
|
|
|
|
if (SrcTy == DstTy && SrcTy->isLosslesslyConvertableTo(MidTy))
|
|
|
|
return true;
|
2002-05-02 17:06:02 +00:00
|
|
|
|
|
|
|
// Allow free casting and conversion of sizes as long as the sign doesn't
|
|
|
|
// change...
|
2002-08-02 20:00:25 +00:00
|
|
|
if (SrcTy->isIntegral() && MidTy->isIntegral() && DstTy->isIntegral() &&
|
|
|
|
SrcTy->isSigned() == MidTy->isSigned() &&
|
|
|
|
MidTy->isSigned() == DstTy->isSigned()) {
|
|
|
|
// Only accept cases where we are either monotonically increasing the type
|
|
|
|
// size, or monotonically decreasing it.
|
|
|
|
//
|
|
|
|
unsigned SrcSize = SrcTy->getPrimitiveSize();
|
|
|
|
unsigned MidSize = MidTy->getPrimitiveSize();
|
|
|
|
unsigned DstSize = DstTy->getPrimitiveSize();
|
|
|
|
if (SrcSize < MidSize && MidSize < DstSize)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (SrcSize > MidSize && MidSize > DstSize)
|
|
|
|
return true;
|
|
|
|
}
|
2002-05-02 17:06:02 +00:00
|
|
|
|
|
|
|
// Otherwise, we cannot succeed. Specifically we do not want to allow things
|
|
|
|
// like: short -> ushort -> uint, because this can create wrong results if
|
|
|
|
// the input short is negative!
|
|
|
|
//
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// CastInst simplification
|
2002-04-18 17:39:14 +00:00
|
|
|
//
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *InstCombiner::visitCastInst(CastInst &CI) {
|
2002-05-02 17:06:02 +00:00
|
|
|
// If the user is casting a value to the same type, eliminate this cast
|
|
|
|
// instruction...
|
2002-08-02 19:29:35 +00:00
|
|
|
if (CI.getType() == CI.getOperand(0)->getType()) {
|
2002-04-18 17:39:14 +00:00
|
|
|
AddUsesToWorkList(CI); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
CI.replaceAllUsesWith(CI.getOperand(0));
|
|
|
|
return &CI;
|
2002-04-18 17:39:14 +00:00
|
|
|
}
|
2002-05-02 17:06:02 +00:00
|
|
|
|
|
|
|
// If casting the result of another cast instruction, try to eliminate this
|
|
|
|
// one!
|
|
|
|
//
|
2002-08-02 20:00:25 +00:00
|
|
|
if (CastInst *CSrc = dyn_cast<CastInst>(CI.getOperand(0))) {
|
2002-05-02 17:06:02 +00:00
|
|
|
if (isEliminableCastOfCast(CI, CSrc)) {
|
|
|
|
// This instruction now refers directly to the cast's src operand. This
|
|
|
|
// has a good chance of making CSrc dead.
|
2002-06-25 16:13:24 +00:00
|
|
|
CI.setOperand(0, CSrc->getOperand(0));
|
|
|
|
return &CI;
|
2002-05-02 17:06:02 +00:00
|
|
|
}
|
|
|
|
|
2002-08-02 20:00:25 +00:00
|
|
|
// If this is an A->B->A cast, and we are dealing with integral types, try
|
|
|
|
// to convert this into a logical 'and' instruction.
|
|
|
|
//
|
|
|
|
if (CSrc->getOperand(0)->getType() == CI.getType() &&
|
|
|
|
CI.getType()->isIntegral() && CSrc->getType()->isIntegral() &&
|
|
|
|
CI.getType()->isUnsigned() && CSrc->getType()->isUnsigned() &&
|
|
|
|
CSrc->getType()->getPrimitiveSize() < CI.getType()->getPrimitiveSize()){
|
|
|
|
assert(CSrc->getType() != Type::ULongTy &&
|
|
|
|
"Cannot have type bigger than ulong!");
|
|
|
|
unsigned AndValue = (1U << CSrc->getType()->getPrimitiveSize()*8)-1;
|
|
|
|
Constant *AndOp = ConstantUInt::get(CI.getType(), AndValue);
|
|
|
|
return BinaryOperator::create(Instruction::And, CSrc->getOperand(0),
|
|
|
|
AndOp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-04-18 17:39:14 +00:00
|
|
|
return 0;
|
2001-12-14 16:52:21 +00:00
|
|
|
}
|
|
|
|
|
2002-05-02 17:06:02 +00:00
|
|
|
|
2002-05-06 18:06:38 +00:00
|
|
|
// PHINode simplification
|
|
|
|
//
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *InstCombiner::visitPHINode(PHINode &PN) {
|
2002-05-06 18:06:38 +00:00
|
|
|
// If the PHI node only has one incoming value, eliminate the PHI node...
|
2002-06-25 16:13:24 +00:00
|
|
|
if (PN.getNumIncomingValues() == 1) {
|
2002-05-06 18:06:38 +00:00
|
|
|
AddUsesToWorkList(PN); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
PN.replaceAllUsesWith(PN.getIncomingValue(0));
|
|
|
|
return &PN;
|
2002-05-06 18:06:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-05-02 17:06:02 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
Instruction *InstCombiner::visitGetElementPtrInst(GetElementPtrInst &GEP) {
|
2002-08-02 19:29:35 +00:00
|
|
|
// Is it 'getelementptr %P, uint 0' or 'getelementptr %P'
|
2002-06-25 16:13:24 +00:00
|
|
|
// If so, eliminate the noop.
|
2002-08-02 19:29:35 +00:00
|
|
|
if ((GEP.getNumOperands() == 2 &&
|
|
|
|
GEP.getOperand(1) == Constant::getNullValue(Type::UIntTy)) ||
|
|
|
|
GEP.getNumOperands() == 1) {
|
2002-05-02 17:06:02 +00:00
|
|
|
AddUsesToWorkList(GEP); // Add all modified instrs to worklist
|
2002-06-25 16:13:24 +00:00
|
|
|
GEP.replaceAllUsesWith(GEP.getOperand(0));
|
|
|
|
return &GEP;
|
2002-05-02 17:06:02 +00:00
|
|
|
}
|
|
|
|
|
2002-08-02 19:29:35 +00:00
|
|
|
// Combine Indices - If the source pointer to this getelementptr instruction
|
|
|
|
// is a getelementptr instruction, combine the indices of the two
|
|
|
|
// getelementptr instructions into a single instruction.
|
|
|
|
//
|
|
|
|
if (GetElementPtrInst *Src =
|
|
|
|
dyn_cast<GetElementPtrInst>(GEP.getPointerOperand())) {
|
|
|
|
std::vector<Value *> Indices;
|
2001-12-14 16:52:21 +00:00
|
|
|
|
2002-08-02 19:29:35 +00:00
|
|
|
// Can we combine the two pointer arithmetics offsets?
|
|
|
|
if (Src->getNumOperands() == 2 && isa<Constant>(Src->getOperand(1)) &&
|
|
|
|
isa<Constant>(GEP.getOperand(1))) {
|
|
|
|
// Replace the index list on this GEP with the index on the getelementptr
|
|
|
|
Indices.insert(Indices.end(), GEP.idx_begin(), GEP.idx_end());
|
|
|
|
Indices[0] = *cast<Constant>(Src->getOperand(1)) +
|
|
|
|
*cast<Constant>(GEP.getOperand(1));
|
|
|
|
assert(Indices[0] != 0 && "Constant folding of uint's failed!?");
|
|
|
|
|
|
|
|
} else if (*GEP.idx_begin() == ConstantUInt::get(Type::UIntTy, 0)) {
|
|
|
|
// Otherwise we can do the fold if the first index of the GEP is a zero
|
|
|
|
Indices.insert(Indices.end(), Src->idx_begin(), Src->idx_end());
|
|
|
|
Indices.insert(Indices.end(), GEP.idx_begin()+1, GEP.idx_end());
|
|
|
|
}
|
2001-12-14 16:52:21 +00:00
|
|
|
|
2002-08-02 19:29:35 +00:00
|
|
|
if (!Indices.empty())
|
|
|
|
return new GetElementPtrInst(Src->getOperand(0), Indices, GEP.getName());
|
2001-12-14 16:52:21 +00:00
|
|
|
}
|
2002-08-02 19:29:35 +00:00
|
|
|
|
2001-12-14 16:52:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
bool InstCombiner::runOnFunction(Function &F) {
|
2002-04-18 17:39:14 +00:00
|
|
|
bool Changed = false;
|
2001-12-14 16:52:21 +00:00
|
|
|
|
2002-04-18 17:39:14 +00:00
|
|
|
WorkList.insert(WorkList.end(), inst_begin(F), inst_end(F));
|
2001-12-14 16:52:21 +00:00
|
|
|
|
|
|
|
while (!WorkList.empty()) {
|
|
|
|
Instruction *I = WorkList.back(); // Get an instruction from the worklist
|
|
|
|
WorkList.pop_back();
|
|
|
|
|
|
|
|
// Now that we have an instruction, try combining it to simplify it...
|
2002-08-02 19:29:35 +00:00
|
|
|
if (Instruction *Result = visit(*I)) {
|
2002-05-10 15:38:35 +00:00
|
|
|
++NumCombined;
|
2002-04-18 17:39:14 +00:00
|
|
|
// Should we replace the old instruction with a new one?
|
2002-05-14 15:24:07 +00:00
|
|
|
if (Result != I) {
|
|
|
|
// Instructions can end up on the worklist more than once. Make sure
|
|
|
|
// we do not process an instruction that has been deleted.
|
2002-08-02 19:29:35 +00:00
|
|
|
WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), I),
|
|
|
|
WorkList.end());
|
2002-05-14 15:24:07 +00:00
|
|
|
|
2002-04-18 17:39:14 +00:00
|
|
|
ReplaceInstWithInst(I, Result);
|
2002-06-25 16:13:24 +00:00
|
|
|
} else {
|
2002-08-02 19:29:35 +00:00
|
|
|
BasicBlock::iterator II = I;
|
|
|
|
|
|
|
|
// If the instruction was modified, it's possible that it is now dead.
|
|
|
|
// if so, remove it.
|
|
|
|
if (dceInstruction(II)) {
|
|
|
|
// Instructions may end up in the worklist more than once. Erase them
|
|
|
|
// all.
|
|
|
|
WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), I),
|
|
|
|
WorkList.end());
|
|
|
|
Result = 0;
|
|
|
|
}
|
2002-05-14 15:24:07 +00:00
|
|
|
}
|
2002-04-18 17:39:14 +00:00
|
|
|
|
2002-08-02 19:29:35 +00:00
|
|
|
if (Result) {
|
|
|
|
WorkList.push_back(Result);
|
|
|
|
AddUsesToWorkList(*Result);
|
|
|
|
}
|
2002-04-18 17:39:14 +00:00
|
|
|
Changed = true;
|
2001-12-14 16:52:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-04-18 17:39:14 +00:00
|
|
|
return Changed;
|
2002-02-26 21:46:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Pass *createInstructionCombiningPass() {
|
2002-04-18 17:39:14 +00:00
|
|
|
return new InstCombiner();
|
2002-02-26 21:46:54 +00:00
|
|
|
}
|