blob: d9c6ccee8d48fa0d31b7eaa58c48ebb659cd9c18 [file] [log] [blame]
Chris Lattner233f7dc2002-08-12 21:17:25 +00001//===- InstructionCombining.cpp - Combine multiple instructions -----------===//
Chris Lattner8a2a3112001-12-14 16:52:21 +00002//
3// InstructionCombining - Combine instructions to form fewer, simple
Chris Lattner62b14df2002-09-02 04:59:56 +00004// instructions. This pass does not modify the CFG This pass is where algebraic
5// simplification happens.
Chris Lattner8a2a3112001-12-14 16:52:21 +00006//
7// This pass combines things like:
8// %Y = add int 1, %X
9// %Z = add int 1, %Y
10// into:
11// %Z = add int 2, %X
12//
13// This is a simple worklist driven algorithm.
14//
15//===----------------------------------------------------------------------===//
16
Chris Lattner022103b2002-05-07 20:03:00 +000017#include "llvm/Transforms/Scalar.h"
Chris Lattner497c60c2002-05-07 18:12:18 +000018#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattner90ac28c2002-08-02 19:29:35 +000019#include "llvm/Transforms/Utils/Local.h"
Chris Lattnerc54e2b82003-05-22 19:07:21 +000020#include "llvm/Instructions.h"
Chris Lattnerbd0ef772002-02-26 21:46:54 +000021#include "llvm/Pass.h"
Chris Lattner2a9c8472003-05-27 16:40:51 +000022#include "llvm/Constants.h"
23#include "llvm/ConstantHandling.h"
Chris Lattner0864acf2002-11-04 16:18:53 +000024#include "llvm/DerivedTypes.h"
Chris Lattner833b8a42003-06-26 05:06:25 +000025#include "llvm/GlobalVariable.h"
Chris Lattner221d6882002-02-12 21:07:25 +000026#include "llvm/Support/InstIterator.h"
Chris Lattnerdd841ae2002-04-18 17:39:14 +000027#include "llvm/Support/InstVisitor.h"
Chris Lattner9fe38862003-06-19 17:00:31 +000028#include "llvm/Support/CallSite.h"
Chris Lattnera92f6962002-10-01 22:38:41 +000029#include "Support/Statistic.h"
Chris Lattnerb3bc8fa2002-05-14 15:24:07 +000030#include <algorithm>
Chris Lattner8a2a3112001-12-14 16:52:21 +000031
Chris Lattnerdd841ae2002-04-18 17:39:14 +000032namespace {
Chris Lattnera92f6962002-10-01 22:38:41 +000033 Statistic<> NumCombined ("instcombine", "Number of insts combined");
34 Statistic<> NumConstProp("instcombine", "Number of constant folds");
35 Statistic<> NumDeadInst ("instcombine", "Number of dead inst eliminated");
36
Chris Lattnerf57b8452002-04-27 06:56:12 +000037 class InstCombiner : public FunctionPass,
Chris Lattnerdd841ae2002-04-18 17:39:14 +000038 public InstVisitor<InstCombiner, Instruction*> {
39 // Worklist of all of the instructions that need to be simplified.
40 std::vector<Instruction*> WorkList;
41
Chris Lattner7e708292002-06-25 16:13:24 +000042 void AddUsesToWorkList(Instruction &I) {
Chris Lattnerdd841ae2002-04-18 17:39:14 +000043 // The instruction was simplified, add all users of the instruction to
44 // the work lists because they might get more simplified now...
45 //
Chris Lattner7e708292002-06-25 16:13:24 +000046 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end();
Chris Lattnerdd841ae2002-04-18 17:39:14 +000047 UI != UE; ++UI)
48 WorkList.push_back(cast<Instruction>(*UI));
49 }
50
Chris Lattner62b14df2002-09-02 04:59:56 +000051 // removeFromWorkList - remove all instances of I from the worklist.
52 void removeFromWorkList(Instruction *I);
Chris Lattnerdd841ae2002-04-18 17:39:14 +000053 public:
Chris Lattner7e708292002-06-25 16:13:24 +000054 virtual bool runOnFunction(Function &F);
Chris Lattnerdd841ae2002-04-18 17:39:14 +000055
Chris Lattner97e52e42002-04-28 21:27:06 +000056 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnercb2610e2002-10-21 20:00:28 +000057 AU.setPreservesCFG();
Chris Lattner97e52e42002-04-28 21:27:06 +000058 }
59
Chris Lattnerdd841ae2002-04-18 17:39:14 +000060 // Visitation implementation - Implement instruction combining for different
61 // instruction types. The semantics are as follows:
62 // Return Value:
63 // null - No change was made
Chris Lattner233f7dc2002-08-12 21:17:25 +000064 // I - Change was made, I is still valid, I may be dead though
Chris Lattnerdd841ae2002-04-18 17:39:14 +000065 // otherwise - Change was made, replace I with returned instruction
66 //
Chris Lattner7e708292002-06-25 16:13:24 +000067 Instruction *visitAdd(BinaryOperator &I);
68 Instruction *visitSub(BinaryOperator &I);
69 Instruction *visitMul(BinaryOperator &I);
70 Instruction *visitDiv(BinaryOperator &I);
71 Instruction *visitRem(BinaryOperator &I);
72 Instruction *visitAnd(BinaryOperator &I);
73 Instruction *visitOr (BinaryOperator &I);
74 Instruction *visitXor(BinaryOperator &I);
75 Instruction *visitSetCondInst(BinaryOperator &I);
Chris Lattnerea340052003-03-10 19:16:08 +000076 Instruction *visitShiftInst(ShiftInst &I);
Chris Lattner7e708292002-06-25 16:13:24 +000077 Instruction *visitCastInst(CastInst &CI);
Chris Lattner9fe38862003-06-19 17:00:31 +000078 Instruction *visitCallInst(CallInst &CI);
79 Instruction *visitInvokeInst(InvokeInst &II);
Chris Lattner7e708292002-06-25 16:13:24 +000080 Instruction *visitPHINode(PHINode &PN);
81 Instruction *visitGetElementPtrInst(GetElementPtrInst &GEP);
Chris Lattner0864acf2002-11-04 16:18:53 +000082 Instruction *visitAllocationInst(AllocationInst &AI);
Chris Lattner833b8a42003-06-26 05:06:25 +000083 Instruction *visitLoadInst(LoadInst &LI);
Chris Lattnerc4d10eb2003-06-04 04:46:00 +000084 Instruction *visitBranchInst(BranchInst &BI);
Chris Lattnerdd841ae2002-04-18 17:39:14 +000085
86 // visitInstruction - Specify what to return for unhandled instructions...
Chris Lattner7e708292002-06-25 16:13:24 +000087 Instruction *visitInstruction(Instruction &I) { return 0; }
Chris Lattner8b170942002-08-09 23:47:40 +000088
Chris Lattner9fe38862003-06-19 17:00:31 +000089 private:
90 bool transformConstExprCastCall(CallSite CS);
91
Chris Lattner8b170942002-08-09 23:47:40 +000092 // InsertNewInstBefore - insert an instruction New before instruction Old
93 // in the program. Add the new instruction to the worklist.
94 //
95 void InsertNewInstBefore(Instruction *New, Instruction &Old) {
Chris Lattnere6f9a912002-08-23 18:32:43 +000096 assert(New && New->getParent() == 0 &&
97 "New instruction already inserted into a basic block!");
Chris Lattner8b170942002-08-09 23:47:40 +000098 BasicBlock *BB = Old.getParent();
99 BB->getInstList().insert(&Old, New); // Insert inst
100 WorkList.push_back(New); // Add to worklist
101 }
102
103 // ReplaceInstUsesWith - This method is to be used when an instruction is
104 // found to be dead, replacable with another preexisting expression. Here
105 // we add all uses of I to the worklist, replace all uses of I with the new
106 // value, then return I, so that the inst combiner will know that I was
107 // modified.
108 //
109 Instruction *ReplaceInstUsesWith(Instruction &I, Value *V) {
110 AddUsesToWorkList(I); // Add all modified instrs to worklist
111 I.replaceAllUsesWith(V);
112 return &I;
113 }
Chris Lattnerc8802d22003-03-11 00:12:48 +0000114
115 // SimplifyCommutative - This performs a few simplifications for commutative
116 // operators...
117 bool SimplifyCommutative(BinaryOperator &I);
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000118 };
Chris Lattnerf6293092002-07-23 18:06:35 +0000119
Chris Lattnera6275cc2002-07-26 21:12:46 +0000120 RegisterOpt<InstCombiner> X("instcombine", "Combine redundant instructions");
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000121}
122
Chris Lattner4f98c562003-03-10 21:43:22 +0000123// getComplexity: Assign a complexity or rank value to LLVM Values...
124// 0 -> Constant, 1 -> Other, 2 -> Argument, 2 -> Unary, 3 -> OtherInst
125static unsigned getComplexity(Value *V) {
126 if (isa<Instruction>(V)) {
127 if (BinaryOperator::isNeg(V) || BinaryOperator::isNot(V))
128 return 2;
129 return 3;
130 }
131 if (isa<Argument>(V)) return 2;
132 return isa<Constant>(V) ? 0 : 1;
133}
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000134
Chris Lattnerc8802d22003-03-11 00:12:48 +0000135// isOnlyUse - Return true if this instruction will be deleted if we stop using
136// it.
137static bool isOnlyUse(Value *V) {
138 return V->use_size() == 1 || isa<Constant>(V);
139}
140
Chris Lattner4f98c562003-03-10 21:43:22 +0000141// SimplifyCommutative - This performs a few simplifications for commutative
142// operators:
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000143//
Chris Lattner4f98c562003-03-10 21:43:22 +0000144// 1. Order operands such that they are listed from right (least complex) to
145// left (most complex). This puts constants before unary operators before
146// binary operators.
147//
Chris Lattnerc8802d22003-03-11 00:12:48 +0000148// 2. Transform: (op (op V, C1), C2) ==> (op V, (op C1, C2))
149// 3. Transform: (op (op V1, C1), (op V2, C2)) ==> (op (op V1, V2), (op C1,C2))
Chris Lattner4f98c562003-03-10 21:43:22 +0000150//
Chris Lattnerc8802d22003-03-11 00:12:48 +0000151bool InstCombiner::SimplifyCommutative(BinaryOperator &I) {
Chris Lattner4f98c562003-03-10 21:43:22 +0000152 bool Changed = false;
153 if (getComplexity(I.getOperand(0)) < getComplexity(I.getOperand(1)))
154 Changed = !I.swapOperands();
155
156 if (!I.isAssociative()) return Changed;
157 Instruction::BinaryOps Opcode = I.getOpcode();
Chris Lattnerc8802d22003-03-11 00:12:48 +0000158 if (BinaryOperator *Op = dyn_cast<BinaryOperator>(I.getOperand(0)))
159 if (Op->getOpcode() == Opcode && isa<Constant>(Op->getOperand(1))) {
160 if (isa<Constant>(I.getOperand(1))) {
Chris Lattner2a9c8472003-05-27 16:40:51 +0000161 Constant *Folded = ConstantExpr::get(I.getOpcode(),
162 cast<Constant>(I.getOperand(1)),
163 cast<Constant>(Op->getOperand(1)));
Chris Lattnerc8802d22003-03-11 00:12:48 +0000164 I.setOperand(0, Op->getOperand(0));
165 I.setOperand(1, Folded);
166 return true;
167 } else if (BinaryOperator *Op1=dyn_cast<BinaryOperator>(I.getOperand(1)))
168 if (Op1->getOpcode() == Opcode && isa<Constant>(Op1->getOperand(1)) &&
169 isOnlyUse(Op) && isOnlyUse(Op1)) {
170 Constant *C1 = cast<Constant>(Op->getOperand(1));
171 Constant *C2 = cast<Constant>(Op1->getOperand(1));
172
173 // Fold (op (op V1, C1), (op V2, C2)) ==> (op (op V1, V2), (op C1,C2))
Chris Lattner2a9c8472003-05-27 16:40:51 +0000174 Constant *Folded = ConstantExpr::get(I.getOpcode(), C1, C2);
Chris Lattnerc8802d22003-03-11 00:12:48 +0000175 Instruction *New = BinaryOperator::create(Opcode, Op->getOperand(0),
176 Op1->getOperand(0),
177 Op1->getName(), &I);
178 WorkList.push_back(New);
179 I.setOperand(0, New);
180 I.setOperand(1, Folded);
181 return true;
182 }
Chris Lattner4f98c562003-03-10 21:43:22 +0000183 }
Chris Lattner4f98c562003-03-10 21:43:22 +0000184 return Changed;
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000185}
Chris Lattner8a2a3112001-12-14 16:52:21 +0000186
Chris Lattner8d969642003-03-10 23:06:50 +0000187// dyn_castNegVal - Given a 'sub' instruction, return the RHS of the instruction
188// if the LHS is a constant zero (which is the 'negate' form).
Chris Lattnerb35dde12002-05-06 16:49:18 +0000189//
Chris Lattner8d969642003-03-10 23:06:50 +0000190static inline Value *dyn_castNegVal(Value *V) {
191 if (BinaryOperator::isNeg(V))
192 return BinaryOperator::getNegArgument(cast<BinaryOperator>(V));
193
Chris Lattnerfe32e0c2003-04-30 22:19:10 +0000194 // Constants can be considered to be negated values if they can be folded...
195 if (Constant *C = dyn_cast<Constant>(V))
Chris Lattner2a9c8472003-05-27 16:40:51 +0000196 return ConstantExpr::get(Instruction::Sub,
197 Constant::getNullValue(V->getType()), C);
Chris Lattner8d969642003-03-10 23:06:50 +0000198 return 0;
Chris Lattnerb35dde12002-05-06 16:49:18 +0000199}
200
Chris Lattner8d969642003-03-10 23:06:50 +0000201static inline Value *dyn_castNotVal(Value *V) {
202 if (BinaryOperator::isNot(V))
203 return BinaryOperator::getNotArgument(cast<BinaryOperator>(V));
204
205 // Constants can be considered to be not'ed values...
Chris Lattner3f2ec392003-04-30 22:34:06 +0000206 if (ConstantIntegral *C = dyn_cast<ConstantIntegral>(V))
Chris Lattner2a9c8472003-05-27 16:40:51 +0000207 return ConstantExpr::get(Instruction::Xor,
208 ConstantIntegral::getAllOnesValue(C->getType()),C);
Chris Lattner8d969642003-03-10 23:06:50 +0000209 return 0;
210}
211
Chris Lattnerc8802d22003-03-11 00:12:48 +0000212// dyn_castFoldableMul - If this value is a multiply that can be folded into
213// other computations (because it has a constant operand), return the
214// non-constant operand of the multiply.
215//
216static inline Value *dyn_castFoldableMul(Value *V) {
217 if (V->use_size() == 1 && V->getType()->isInteger())
218 if (Instruction *I = dyn_cast<Instruction>(V))
219 if (I->getOpcode() == Instruction::Mul)
220 if (isa<Constant>(I->getOperand(1)))
221 return I->getOperand(0);
222 return 0;
Chris Lattnera2881962003-02-18 19:28:33 +0000223}
Chris Lattneraf2930e2002-08-14 17:51:49 +0000224
Chris Lattnerc8802d22003-03-11 00:12:48 +0000225// dyn_castMaskingAnd - If this value is an And instruction masking a value with
226// a constant, return the constant being anded with.
227//
228static inline Constant *dyn_castMaskingAnd(Value *V) {
229 if (Instruction *I = dyn_cast<Instruction>(V))
230 if (I->getOpcode() == Instruction::And)
231 return dyn_cast<Constant>(I->getOperand(1));
232
233 // If this is a constant, it acts just like we were masking with it.
234 return dyn_cast<Constant>(V);
235}
Chris Lattnera2881962003-02-18 19:28:33 +0000236
237// Log2 - Calculate the log base 2 for the specified value if it is exactly a
238// power of 2.
239static unsigned Log2(uint64_t Val) {
240 assert(Val > 1 && "Values 0 and 1 should be handled elsewhere!");
241 unsigned Count = 0;
242 while (Val != 1) {
243 if (Val & 1) return 0; // Multiple bits set?
244 Val >>= 1;
245 ++Count;
246 }
247 return Count;
Chris Lattneraf2930e2002-08-14 17:51:49 +0000248}
249
Chris Lattner7e708292002-06-25 16:13:24 +0000250Instruction *InstCombiner::visitAdd(BinaryOperator &I) {
Chris Lattner4f98c562003-03-10 21:43:22 +0000251 bool Changed = SimplifyCommutative(I);
Chris Lattner7e708292002-06-25 16:13:24 +0000252 Value *LHS = I.getOperand(0), *RHS = I.getOperand(1);
Chris Lattnerb35dde12002-05-06 16:49:18 +0000253
254 // Eliminate 'add int %X, 0'
Chris Lattner233f7dc2002-08-12 21:17:25 +0000255 if (RHS == Constant::getNullValue(I.getType()))
256 return ReplaceInstUsesWith(I, LHS);
Chris Lattnerb35dde12002-05-06 16:49:18 +0000257
Chris Lattner5c4afb92002-05-08 22:46:53 +0000258 // -A + B --> B - A
Chris Lattner8d969642003-03-10 23:06:50 +0000259 if (Value *V = dyn_castNegVal(LHS))
Chris Lattner5c4afb92002-05-08 22:46:53 +0000260 return BinaryOperator::create(Instruction::Sub, RHS, V);
Chris Lattnerb35dde12002-05-06 16:49:18 +0000261
262 // A + -B --> A - B
Chris Lattner8d969642003-03-10 23:06:50 +0000263 if (!isa<Constant>(RHS))
264 if (Value *V = dyn_castNegVal(RHS))
265 return BinaryOperator::create(Instruction::Sub, LHS, V);
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000266
Chris Lattnerad3448c2003-02-18 19:57:07 +0000267 // X*C + X --> X * (C+1)
268 if (dyn_castFoldableMul(LHS) == RHS) {
Chris Lattner2a9c8472003-05-27 16:40:51 +0000269 Constant *CP1 =
270 ConstantExpr::get(Instruction::Add,
271 cast<Constant>(cast<Instruction>(LHS)->getOperand(1)),
272 ConstantInt::get(I.getType(), 1));
Chris Lattnerad3448c2003-02-18 19:57:07 +0000273 return BinaryOperator::create(Instruction::Mul, RHS, CP1);
274 }
275
276 // X + X*C --> X * (C+1)
277 if (dyn_castFoldableMul(RHS) == LHS) {
Chris Lattner2a9c8472003-05-27 16:40:51 +0000278 Constant *CP1 =
279 ConstantExpr::get(Instruction::Add,
280 cast<Constant>(cast<Instruction>(RHS)->getOperand(1)),
281 ConstantInt::get(I.getType(), 1));
Chris Lattnerad3448c2003-02-18 19:57:07 +0000282 return BinaryOperator::create(Instruction::Mul, LHS, CP1);
283 }
284
Chris Lattnerc8802d22003-03-11 00:12:48 +0000285 // (A & C1)+(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0
286 if (Constant *C1 = dyn_castMaskingAnd(LHS))
287 if (Constant *C2 = dyn_castMaskingAnd(RHS))
Chris Lattner2a9c8472003-05-27 16:40:51 +0000288 if (ConstantExpr::get(Instruction::And, C1, C2)->isNullValue())
Chris Lattnerc8802d22003-03-11 00:12:48 +0000289 return BinaryOperator::create(Instruction::Or, LHS, RHS);
290
Chris Lattner7e708292002-06-25 16:13:24 +0000291 return Changed ? &I : 0;
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000292}
293
Chris Lattner1ba5bcd2003-07-22 21:46:59 +0000294// isSignBit - Return true if the value represented by the constant only has the
295// highest order bit set.
296static bool isSignBit(ConstantInt *CI) {
297 unsigned NumBits = CI->getType()->getPrimitiveSize()*8;
298 return (CI->getRawValue() & ~(-1LL << NumBits)) == (1ULL << (NumBits-1));
299}
300
Chris Lattner7e708292002-06-25 16:13:24 +0000301Instruction *InstCombiner::visitSub(BinaryOperator &I) {
Chris Lattner7e708292002-06-25 16:13:24 +0000302 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattner3f5b8772002-05-06 16:14:14 +0000303
Chris Lattner233f7dc2002-08-12 21:17:25 +0000304 if (Op0 == Op1) // sub X, X -> 0
305 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000306
Chris Lattner233f7dc2002-08-12 21:17:25 +0000307 // If this is a 'B = x-(-A)', change to B = x+A...
Chris Lattner8d969642003-03-10 23:06:50 +0000308 if (Value *V = dyn_castNegVal(Op1))
Chris Lattner5c4afb92002-05-08 22:46:53 +0000309 return BinaryOperator::create(Instruction::Add, Op0, V);
Chris Lattnerb35dde12002-05-06 16:49:18 +0000310
Chris Lattnera2881962003-02-18 19:28:33 +0000311 // Replace (-1 - A) with (~A)...
312 if (ConstantInt *C = dyn_cast<ConstantInt>(Op0))
313 if (C->isAllOnesValue())
314 return BinaryOperator::createNot(Op1);
Chris Lattner40371712002-05-09 01:29:19 +0000315
Chris Lattnera2881962003-02-18 19:28:33 +0000316 if (BinaryOperator *Op1I = dyn_cast<BinaryOperator>(Op1))
317 if (Op1I->use_size() == 1) {
318 // Replace (x - (y - z)) with (x + (z - y)) if the (y - z) subexpression
319 // is not used by anyone else...
320 //
321 if (Op1I->getOpcode() == Instruction::Sub) {
322 // Swap the two operands of the subexpr...
323 Value *IIOp0 = Op1I->getOperand(0), *IIOp1 = Op1I->getOperand(1);
324 Op1I->setOperand(0, IIOp1);
325 Op1I->setOperand(1, IIOp0);
326
327 // Create the new top level add instruction...
328 return BinaryOperator::create(Instruction::Add, Op0, Op1);
329 }
330
331 // Replace (A - (A & B)) with (A & ~B) if this is the only use of (A&B)...
332 //
333 if (Op1I->getOpcode() == Instruction::And &&
334 (Op1I->getOperand(0) == Op0 || Op1I->getOperand(1) == Op0)) {
335 Value *OtherOp = Op1I->getOperand(Op1I->getOperand(0) == Op0);
336
337 Instruction *NewNot = BinaryOperator::createNot(OtherOp, "B.not", &I);
338 return BinaryOperator::create(Instruction::And, Op0, NewNot);
339 }
Chris Lattnerad3448c2003-02-18 19:57:07 +0000340
341 // X - X*C --> X * (1-C)
342 if (dyn_castFoldableMul(Op1I) == Op0) {
Chris Lattner2a9c8472003-05-27 16:40:51 +0000343 Constant *CP1 =
344 ConstantExpr::get(Instruction::Sub,
345 ConstantInt::get(I.getType(), 1),
346 cast<Constant>(cast<Instruction>(Op1)->getOperand(1)));
Chris Lattnerad3448c2003-02-18 19:57:07 +0000347 assert(CP1 && "Couldn't constant fold 1-C?");
348 return BinaryOperator::create(Instruction::Mul, Op0, CP1);
349 }
Chris Lattner40371712002-05-09 01:29:19 +0000350 }
Chris Lattnera2881962003-02-18 19:28:33 +0000351
Chris Lattnerad3448c2003-02-18 19:57:07 +0000352 // X*C - X --> X * (C-1)
353 if (dyn_castFoldableMul(Op0) == Op1) {
Chris Lattner2a9c8472003-05-27 16:40:51 +0000354 Constant *CP1 =
355 ConstantExpr::get(Instruction::Sub,
356 cast<Constant>(cast<Instruction>(Op0)->getOperand(1)),
357 ConstantInt::get(I.getType(), 1));
Chris Lattnerad3448c2003-02-18 19:57:07 +0000358 assert(CP1 && "Couldn't constant fold C - 1?");
359 return BinaryOperator::create(Instruction::Mul, Op1, CP1);
360 }
361
Chris Lattner3f5b8772002-05-06 16:14:14 +0000362 return 0;
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000363}
364
Chris Lattner7e708292002-06-25 16:13:24 +0000365Instruction *InstCombiner::visitMul(BinaryOperator &I) {
Chris Lattner4f98c562003-03-10 21:43:22 +0000366 bool Changed = SimplifyCommutative(I);
Chris Lattnera2881962003-02-18 19:28:33 +0000367 Value *Op0 = I.getOperand(0);
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000368
Chris Lattner233f7dc2002-08-12 21:17:25 +0000369 // Simplify mul instructions with a constant RHS...
Chris Lattnera2881962003-02-18 19:28:33 +0000370 if (Constant *Op1 = dyn_cast<Constant>(I.getOperand(1))) {
371 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
372 const Type *Ty = CI->getType();
Chris Lattnerc07736a2003-07-23 15:22:26 +0000373 int64_t Val = (int64_t)cast<ConstantInt>(CI)->getRawValue();
Chris Lattnera2881962003-02-18 19:28:33 +0000374 switch (Val) {
Chris Lattner0af1fab2003-06-25 17:09:20 +0000375 case -1: // X * -1 -> -X
376 return BinaryOperator::createNeg(Op0, I.getName());
Chris Lattnera2881962003-02-18 19:28:33 +0000377 case 0:
378 return ReplaceInstUsesWith(I, Op1); // Eliminate 'mul double %X, 0'
379 case 1:
380 return ReplaceInstUsesWith(I, Op0); // Eliminate 'mul int %X, 1'
381 case 2: // Convert 'mul int %X, 2' to 'add int %X, %X'
382 return BinaryOperator::create(Instruction::Add, Op0, Op0, I.getName());
383 }
Chris Lattner6c1ce212002-04-29 22:24:47 +0000384
Chris Lattnera2881962003-02-18 19:28:33 +0000385 if (uint64_t C = Log2(Val)) // Replace X*(2^C) with X << C
386 return new ShiftInst(Instruction::Shl, Op0,
387 ConstantUInt::get(Type::UByteTy, C));
388 } else {
389 ConstantFP *Op1F = cast<ConstantFP>(Op1);
390 if (Op1F->isNullValue())
391 return ReplaceInstUsesWith(I, Op1);
Chris Lattner6c1ce212002-04-29 22:24:47 +0000392
Chris Lattnera2881962003-02-18 19:28:33 +0000393 // "In IEEE floating point, x*1 is not equivalent to x for nans. However,
394 // ANSI says we can drop signals, so we can do this anyway." (from GCC)
395 if (Op1F->getValue() == 1.0)
396 return ReplaceInstUsesWith(I, Op0); // Eliminate 'mul double %X, 1.0'
397 }
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000398 }
399
Chris Lattnera4f445b2003-03-10 23:23:04 +0000400 if (Value *Op0v = dyn_castNegVal(Op0)) // -X * -Y = X*Y
401 if (Value *Op1v = dyn_castNegVal(I.getOperand(1)))
402 return BinaryOperator::create(Instruction::Mul, Op0v, Op1v);
403
Chris Lattner7e708292002-06-25 16:13:24 +0000404 return Changed ? &I : 0;
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000405}
406
Chris Lattner7e708292002-06-25 16:13:24 +0000407Instruction *InstCombiner::visitDiv(BinaryOperator &I) {
Chris Lattner3f5b8772002-05-06 16:14:14 +0000408 // div X, 1 == X
Chris Lattnera2881962003-02-18 19:28:33 +0000409 if (ConstantInt *RHS = dyn_cast<ConstantInt>(I.getOperand(1))) {
Chris Lattner233f7dc2002-08-12 21:17:25 +0000410 if (RHS->equalsInt(1))
411 return ReplaceInstUsesWith(I, I.getOperand(0));
Chris Lattnera2881962003-02-18 19:28:33 +0000412
413 // Check to see if this is an unsigned division with an exact power of 2,
414 // if so, convert to a right shift.
415 if (ConstantUInt *C = dyn_cast<ConstantUInt>(RHS))
416 if (uint64_t Val = C->getValue()) // Don't break X / 0
417 if (uint64_t C = Log2(Val))
418 return new ShiftInst(Instruction::Shr, I.getOperand(0),
419 ConstantUInt::get(Type::UByteTy, C));
420 }
421
422 // 0 / X == 0, we don't need to preserve faults!
423 if (ConstantInt *LHS = dyn_cast<ConstantInt>(I.getOperand(0)))
424 if (LHS->equalsInt(0))
425 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
426
Chris Lattner3f5b8772002-05-06 16:14:14 +0000427 return 0;
428}
429
430
Chris Lattner7e708292002-06-25 16:13:24 +0000431Instruction *InstCombiner::visitRem(BinaryOperator &I) {
Chris Lattnera2881962003-02-18 19:28:33 +0000432 if (ConstantInt *RHS = dyn_cast<ConstantInt>(I.getOperand(1))) {
433 if (RHS->equalsInt(1)) // X % 1 == 0
434 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
435
436 // Check to see if this is an unsigned remainder with an exact power of 2,
437 // if so, convert to a bitwise and.
438 if (ConstantUInt *C = dyn_cast<ConstantUInt>(RHS))
439 if (uint64_t Val = C->getValue()) // Don't break X % 0 (divide by zero)
440 if (Log2(Val))
441 return BinaryOperator::create(Instruction::And, I.getOperand(0),
442 ConstantUInt::get(I.getType(), Val-1));
443 }
444
445 // 0 % X == 0, we don't need to preserve faults!
446 if (ConstantInt *LHS = dyn_cast<ConstantInt>(I.getOperand(0)))
447 if (LHS->equalsInt(0))
Chris Lattner233f7dc2002-08-12 21:17:25 +0000448 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
449
Chris Lattner3f5b8772002-05-06 16:14:14 +0000450 return 0;
451}
452
Chris Lattner8b170942002-08-09 23:47:40 +0000453// isMaxValueMinusOne - return true if this is Max-1
Chris Lattner233f7dc2002-08-12 21:17:25 +0000454static bool isMaxValueMinusOne(const ConstantInt *C) {
Chris Lattner8b170942002-08-09 23:47:40 +0000455 if (const ConstantUInt *CU = dyn_cast<ConstantUInt>(C)) {
456 // Calculate -1 casted to the right type...
457 unsigned TypeBits = C->getType()->getPrimitiveSize()*8;
458 uint64_t Val = ~0ULL; // All ones
459 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
460 return CU->getValue() == Val-1;
461 }
462
463 const ConstantSInt *CS = cast<ConstantSInt>(C);
464
465 // Calculate 0111111111..11111
466 unsigned TypeBits = C->getType()->getPrimitiveSize()*8;
467 int64_t Val = INT64_MAX; // All ones
468 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
469 return CS->getValue() == Val-1;
470}
471
472// isMinValuePlusOne - return true if this is Min+1
Chris Lattner233f7dc2002-08-12 21:17:25 +0000473static bool isMinValuePlusOne(const ConstantInt *C) {
Chris Lattner8b170942002-08-09 23:47:40 +0000474 if (const ConstantUInt *CU = dyn_cast<ConstantUInt>(C))
475 return CU->getValue() == 1;
476
477 const ConstantSInt *CS = cast<ConstantSInt>(C);
478
479 // Calculate 1111111111000000000000
480 unsigned TypeBits = C->getType()->getPrimitiveSize()*8;
481 int64_t Val = -1; // All ones
482 Val <<= TypeBits-1; // Shift over to the right spot
483 return CS->getValue() == Val+1;
484}
485
486
Chris Lattner7e708292002-06-25 16:13:24 +0000487Instruction *InstCombiner::visitAnd(BinaryOperator &I) {
Chris Lattner4f98c562003-03-10 21:43:22 +0000488 bool Changed = SimplifyCommutative(I);
Chris Lattner7e708292002-06-25 16:13:24 +0000489 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattner3f5b8772002-05-06 16:14:14 +0000490
491 // and X, X = X and X, 0 == 0
Chris Lattner233f7dc2002-08-12 21:17:25 +0000492 if (Op0 == Op1 || Op1 == Constant::getNullValue(I.getType()))
493 return ReplaceInstUsesWith(I, Op1);
Chris Lattner3f5b8772002-05-06 16:14:14 +0000494
495 // and X, -1 == X
Chris Lattner572f4a02002-08-13 17:50:24 +0000496 if (ConstantIntegral *RHS = dyn_cast<ConstantIntegral>(Op1))
Chris Lattner233f7dc2002-08-12 21:17:25 +0000497 if (RHS->isAllOnesValue())
498 return ReplaceInstUsesWith(I, Op0);
Chris Lattner3f5b8772002-05-06 16:14:14 +0000499
Chris Lattner8d969642003-03-10 23:06:50 +0000500 Value *Op0NotVal = dyn_castNotVal(Op0);
501 Value *Op1NotVal = dyn_castNotVal(Op1);
Chris Lattnera2881962003-02-18 19:28:33 +0000502
503 // (~A & ~B) == (~(A | B)) - Demorgan's Law
Chris Lattner8d969642003-03-10 23:06:50 +0000504 if (Op0NotVal && Op1NotVal && isOnlyUse(Op0) && isOnlyUse(Op1)) {
Chris Lattnera2881962003-02-18 19:28:33 +0000505 Instruction *Or = BinaryOperator::create(Instruction::Or, Op0NotVal,
506 Op1NotVal,I.getName()+".demorgan",
507 &I);
Chris Lattnera27231a2003-03-10 23:13:59 +0000508 WorkList.push_back(Or);
Chris Lattnera2881962003-02-18 19:28:33 +0000509 return BinaryOperator::createNot(Or);
510 }
511
512 if (Op0NotVal == Op1 || Op1NotVal == Op0) // A & ~A == ~A & A == 0
513 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattnere6f9a912002-08-23 18:32:43 +0000514
Chris Lattner7e708292002-06-25 16:13:24 +0000515 return Changed ? &I : 0;
Chris Lattner3f5b8772002-05-06 16:14:14 +0000516}
517
518
519
Chris Lattner7e708292002-06-25 16:13:24 +0000520Instruction *InstCombiner::visitOr(BinaryOperator &I) {
Chris Lattner4f98c562003-03-10 21:43:22 +0000521 bool Changed = SimplifyCommutative(I);
Chris Lattner7e708292002-06-25 16:13:24 +0000522 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattner3f5b8772002-05-06 16:14:14 +0000523
524 // or X, X = X or X, 0 == X
Chris Lattner233f7dc2002-08-12 21:17:25 +0000525 if (Op0 == Op1 || Op1 == Constant::getNullValue(I.getType()))
526 return ReplaceInstUsesWith(I, Op0);
Chris Lattner3f5b8772002-05-06 16:14:14 +0000527
528 // or X, -1 == -1
Chris Lattner572f4a02002-08-13 17:50:24 +0000529 if (ConstantIntegral *RHS = dyn_cast<ConstantIntegral>(Op1))
Chris Lattner233f7dc2002-08-12 21:17:25 +0000530 if (RHS->isAllOnesValue())
531 return ReplaceInstUsesWith(I, Op1);
Chris Lattner3f5b8772002-05-06 16:14:14 +0000532
Chris Lattnera27231a2003-03-10 23:13:59 +0000533 Value *Op0NotVal = dyn_castNotVal(Op0);
534 Value *Op1NotVal = dyn_castNotVal(Op1);
Chris Lattnera2881962003-02-18 19:28:33 +0000535
Chris Lattnera27231a2003-03-10 23:13:59 +0000536 if (Op1 == Op0NotVal) // ~A | A == -1
537 return ReplaceInstUsesWith(I,
538 ConstantIntegral::getAllOnesValue(I.getType()));
539
540 if (Op0 == Op1NotVal) // A | ~A == -1
541 return ReplaceInstUsesWith(I,
542 ConstantIntegral::getAllOnesValue(I.getType()));
543
544 // (~A | ~B) == (~(A & B)) - Demorgan's Law
545 if (Op0NotVal && Op1NotVal && isOnlyUse(Op0) && isOnlyUse(Op1)) {
546 Instruction *And = BinaryOperator::create(Instruction::And, Op0NotVal,
547 Op1NotVal,I.getName()+".demorgan",
548 &I);
549 WorkList.push_back(And);
550 return BinaryOperator::createNot(And);
551 }
Chris Lattnera2881962003-02-18 19:28:33 +0000552
Chris Lattner7e708292002-06-25 16:13:24 +0000553 return Changed ? &I : 0;
Chris Lattner3f5b8772002-05-06 16:14:14 +0000554}
555
556
557
Chris Lattner7e708292002-06-25 16:13:24 +0000558Instruction *InstCombiner::visitXor(BinaryOperator &I) {
Chris Lattner4f98c562003-03-10 21:43:22 +0000559 bool Changed = SimplifyCommutative(I);
Chris Lattner7e708292002-06-25 16:13:24 +0000560 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattner3f5b8772002-05-06 16:14:14 +0000561
562 // xor X, X = 0
Chris Lattner233f7dc2002-08-12 21:17:25 +0000563 if (Op0 == Op1)
564 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattner3f5b8772002-05-06 16:14:14 +0000565
Chris Lattner572f4a02002-08-13 17:50:24 +0000566 if (ConstantIntegral *Op1C = dyn_cast<ConstantIntegral>(Op1)) {
Chris Lattner8b170942002-08-09 23:47:40 +0000567 // xor X, 0 == X
Chris Lattner233f7dc2002-08-12 21:17:25 +0000568 if (Op1C->isNullValue())
569 return ReplaceInstUsesWith(I, Op0);
Chris Lattner8b170942002-08-09 23:47:40 +0000570
Chris Lattner05bd1b22002-08-20 18:24:26 +0000571 // Is this a "NOT" instruction?
572 if (Op1C->isAllOnesValue()) {
573 // xor (xor X, -1), -1 = not (not X) = X
Chris Lattner8d969642003-03-10 23:06:50 +0000574 if (Value *X = dyn_castNotVal(Op0))
Chris Lattneraf2930e2002-08-14 17:51:49 +0000575 return ReplaceInstUsesWith(I, X);
Chris Lattner05bd1b22002-08-20 18:24:26 +0000576
577 // xor (setcc A, B), true = not (setcc A, B) = setncc A, B
578 if (SetCondInst *SCI = dyn_cast<SetCondInst>(Op0))
579 if (SCI->use_size() == 1)
580 return new SetCondInst(SCI->getInverseCondition(),
581 SCI->getOperand(0), SCI->getOperand(1));
582 }
Chris Lattner3f5b8772002-05-06 16:14:14 +0000583 }
584
Chris Lattner8d969642003-03-10 23:06:50 +0000585 if (Value *X = dyn_castNotVal(Op0)) // ~A ^ A == -1
Chris Lattnera2881962003-02-18 19:28:33 +0000586 if (X == Op1)
587 return ReplaceInstUsesWith(I,
588 ConstantIntegral::getAllOnesValue(I.getType()));
589
Chris Lattner8d969642003-03-10 23:06:50 +0000590 if (Value *X = dyn_castNotVal(Op1)) // A ^ ~A == -1
Chris Lattnera2881962003-02-18 19:28:33 +0000591 if (X == Op0)
592 return ReplaceInstUsesWith(I,
593 ConstantIntegral::getAllOnesValue(I.getType()));
594
Chris Lattnercb40a372003-03-10 18:24:17 +0000595 if (Instruction *Op1I = dyn_cast<Instruction>(Op1))
596 if (Op1I->getOpcode() == Instruction::Or)
597 if (Op1I->getOperand(0) == Op0) { // B^(B|A) == (A|B)^B
598 cast<BinaryOperator>(Op1I)->swapOperands();
599 I.swapOperands();
600 std::swap(Op0, Op1);
601 } else if (Op1I->getOperand(1) == Op0) { // B^(A|B) == (A|B)^B
602 I.swapOperands();
603 std::swap(Op0, Op1);
604 }
605
606 if (Instruction *Op0I = dyn_cast<Instruction>(Op0))
607 if (Op0I->getOpcode() == Instruction::Or && Op0I->use_size() == 1) {
608 if (Op0I->getOperand(0) == Op1) // (B|A)^B == (A|B)^B
609 cast<BinaryOperator>(Op0I)->swapOperands();
Chris Lattner4f98c562003-03-10 21:43:22 +0000610 if (Op0I->getOperand(1) == Op1) { // (A|B)^B == A & ~B
Chris Lattnercb40a372003-03-10 18:24:17 +0000611 Value *NotB = BinaryOperator::createNot(Op1, Op1->getName()+".not", &I);
612 WorkList.push_back(cast<Instruction>(NotB));
Chris Lattner4f98c562003-03-10 21:43:22 +0000613 return BinaryOperator::create(Instruction::And, Op0I->getOperand(0),
614 NotB);
Chris Lattnercb40a372003-03-10 18:24:17 +0000615 }
616 }
617
Chris Lattnerc8802d22003-03-11 00:12:48 +0000618 // (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1^C2 == 0
619 if (Constant *C1 = dyn_castMaskingAnd(Op0))
620 if (Constant *C2 = dyn_castMaskingAnd(Op1))
Chris Lattner2a9c8472003-05-27 16:40:51 +0000621 if (ConstantExpr::get(Instruction::And, C1, C2)->isNullValue())
Chris Lattnerc8802d22003-03-11 00:12:48 +0000622 return BinaryOperator::create(Instruction::Or, Op0, Op1);
623
Chris Lattner7e708292002-06-25 16:13:24 +0000624 return Changed ? &I : 0;
Chris Lattner3f5b8772002-05-06 16:14:14 +0000625}
626
Chris Lattner8b170942002-08-09 23:47:40 +0000627// AddOne, SubOne - Add or subtract a constant one from an integer constant...
628static Constant *AddOne(ConstantInt *C) {
Chris Lattner2a9c8472003-05-27 16:40:51 +0000629 Constant *Result = ConstantExpr::get(Instruction::Add, C,
630 ConstantInt::get(C->getType(), 1));
Chris Lattner8b170942002-08-09 23:47:40 +0000631 assert(Result && "Constant folding integer addition failed!");
632 return Result;
633}
634static Constant *SubOne(ConstantInt *C) {
Chris Lattner2a9c8472003-05-27 16:40:51 +0000635 Constant *Result = ConstantExpr::get(Instruction::Sub, C,
636 ConstantInt::get(C->getType(), 1));
Chris Lattner8b170942002-08-09 23:47:40 +0000637 assert(Result && "Constant folding integer addition failed!");
638 return Result;
639}
640
Chris Lattner53a5b572002-05-09 20:11:54 +0000641// isTrueWhenEqual - Return true if the specified setcondinst instruction is
642// true when both operands are equal...
643//
Chris Lattner7e708292002-06-25 16:13:24 +0000644static bool isTrueWhenEqual(Instruction &I) {
645 return I.getOpcode() == Instruction::SetEQ ||
646 I.getOpcode() == Instruction::SetGE ||
647 I.getOpcode() == Instruction::SetLE;
Chris Lattner53a5b572002-05-09 20:11:54 +0000648}
649
Chris Lattner7e708292002-06-25 16:13:24 +0000650Instruction *InstCombiner::visitSetCondInst(BinaryOperator &I) {
Chris Lattner4f98c562003-03-10 21:43:22 +0000651 bool Changed = SimplifyCommutative(I);
Chris Lattner8b170942002-08-09 23:47:40 +0000652 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
653 const Type *Ty = Op0->getType();
Chris Lattner3f5b8772002-05-06 16:14:14 +0000654
655 // setcc X, X
Chris Lattner8b170942002-08-09 23:47:40 +0000656 if (Op0 == Op1)
657 return ReplaceInstUsesWith(I, ConstantBool::get(isTrueWhenEqual(I)));
Chris Lattner53a5b572002-05-09 20:11:54 +0000658
659 // setcc <global*>, 0 - Global value addresses are never null!
Chris Lattner8b170942002-08-09 23:47:40 +0000660 if (isa<GlobalValue>(Op0) && isa<ConstantPointerNull>(Op1))
661 return ReplaceInstUsesWith(I, ConstantBool::get(!isTrueWhenEqual(I)));
662
663 // setcc's with boolean values can always be turned into bitwise operations
664 if (Ty == Type::BoolTy) {
665 // If this is <, >, or !=, we can change this into a simple xor instruction
666 if (!isTrueWhenEqual(I))
667 return BinaryOperator::create(Instruction::Xor, Op0, Op1, I.getName());
668
669 // Otherwise we need to make a temporary intermediate instruction and insert
670 // it into the instruction stream. This is what we are after:
671 //
672 // seteq bool %A, %B -> ~(A^B)
673 // setle bool %A, %B -> ~A | B
674 // setge bool %A, %B -> A | ~B
675 //
676 if (I.getOpcode() == Instruction::SetEQ) { // seteq case
677 Instruction *Xor = BinaryOperator::create(Instruction::Xor, Op0, Op1,
678 I.getName()+"tmp");
679 InsertNewInstBefore(Xor, I);
Chris Lattneraf2930e2002-08-14 17:51:49 +0000680 return BinaryOperator::createNot(Xor, I.getName());
Chris Lattner8b170942002-08-09 23:47:40 +0000681 }
682
683 // Handle the setXe cases...
684 assert(I.getOpcode() == Instruction::SetGE ||
685 I.getOpcode() == Instruction::SetLE);
686
687 if (I.getOpcode() == Instruction::SetGE)
688 std::swap(Op0, Op1); // Change setge -> setle
689
690 // Now we just have the SetLE case.
Chris Lattneraf2930e2002-08-14 17:51:49 +0000691 Instruction *Not = BinaryOperator::createNot(Op0, I.getName()+"tmp");
Chris Lattner8b170942002-08-09 23:47:40 +0000692 InsertNewInstBefore(Not, I);
693 return BinaryOperator::create(Instruction::Or, Not, Op1, I.getName());
694 }
695
696 // Check to see if we are doing one of many comparisons against constant
697 // integers at the end of their ranges...
698 //
699 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Chris Lattnerbc5d4142003-07-23 17:02:11 +0000700 // Simplify seteq and setne instructions...
701 if (I.getOpcode() == Instruction::SetEQ ||
702 I.getOpcode() == Instruction::SetNE) {
703 bool isSetNE = I.getOpcode() == Instruction::SetNE;
704
705 if (CI->isNullValue()) { // Simplify [seteq|setne] X, 0
706 CastInst *Val = new CastInst(Op0, Type::BoolTy, I.getName()+".not");
707 if (isSetNE) return Val;
708
Chris Lattner40f5d702003-06-04 05:10:11 +0000709 // seteq X, 0 -> not (cast X to bool)
Chris Lattner40f5d702003-06-04 05:10:11 +0000710 InsertNewInstBefore(Val, I);
711 return BinaryOperator::createNot(Val, I.getName());
712 }
Chris Lattnerbc5d4142003-07-23 17:02:11 +0000713
714 // If the first operand is (and|or) with a constant, and the second
715 // operand is a constant, simplify a bit.
716 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Op0))
717 if (ConstantInt *BOC = dyn_cast<ConstantInt>(BO->getOperand(1)))
718 if (BO->getOpcode() == Instruction::Or) {
719 // If bits are being or'd in that are not present in the constant we
720 // are comparing against, then the comparison could never succeed!
721 if (!(*BOC & *~*CI)->isNullValue())
722 return ReplaceInstUsesWith(I, ConstantBool::get(isSetNE));
723 } else if (BO->getOpcode() == Instruction::And) {
724 // If bits are being compared against that are and'd out, then the
725 // comparison can never succeed!
726 if (!(*CI & *~*BOC)->isNullValue())
727 return ReplaceInstUsesWith(I, ConstantBool::get(isSetNE));
728 }
Chris Lattner40f5d702003-06-04 05:10:11 +0000729 }
Chris Lattner074d84c2003-06-01 03:35:25 +0000730
Chris Lattner8b170942002-08-09 23:47:40 +0000731 // Check to see if we are comparing against the minimum or maximum value...
Chris Lattner233f7dc2002-08-12 21:17:25 +0000732 if (CI->isMinValue()) {
Chris Lattner8b170942002-08-09 23:47:40 +0000733 if (I.getOpcode() == Instruction::SetLT) // A < MIN -> FALSE
734 return ReplaceInstUsesWith(I, ConstantBool::False);
735 if (I.getOpcode() == Instruction::SetGE) // A >= MIN -> TRUE
736 return ReplaceInstUsesWith(I, ConstantBool::True);
737 if (I.getOpcode() == Instruction::SetLE) // A <= MIN -> A == MIN
738 return BinaryOperator::create(Instruction::SetEQ, Op0,Op1, I.getName());
739 if (I.getOpcode() == Instruction::SetGT) // A > MIN -> A != MIN
740 return BinaryOperator::create(Instruction::SetNE, Op0,Op1, I.getName());
741
Chris Lattner233f7dc2002-08-12 21:17:25 +0000742 } else if (CI->isMaxValue()) {
Chris Lattner8b170942002-08-09 23:47:40 +0000743 if (I.getOpcode() == Instruction::SetGT) // A > MAX -> FALSE
744 return ReplaceInstUsesWith(I, ConstantBool::False);
745 if (I.getOpcode() == Instruction::SetLE) // A <= MAX -> TRUE
746 return ReplaceInstUsesWith(I, ConstantBool::True);
747 if (I.getOpcode() == Instruction::SetGE) // A >= MAX -> A == MAX
748 return BinaryOperator::create(Instruction::SetEQ, Op0,Op1, I.getName());
749 if (I.getOpcode() == Instruction::SetLT) // A < MAX -> A != MAX
750 return BinaryOperator::create(Instruction::SetNE, Op0,Op1, I.getName());
751
752 // Comparing against a value really close to min or max?
753 } else if (isMinValuePlusOne(CI)) {
754 if (I.getOpcode() == Instruction::SetLT) // A < MIN+1 -> A == MIN
755 return BinaryOperator::create(Instruction::SetEQ, Op0,
756 SubOne(CI), I.getName());
757 if (I.getOpcode() == Instruction::SetGE) // A >= MIN-1 -> A != MIN
758 return BinaryOperator::create(Instruction::SetNE, Op0,
759 SubOne(CI), I.getName());
760
761 } else if (isMaxValueMinusOne(CI)) {
762 if (I.getOpcode() == Instruction::SetGT) // A > MAX-1 -> A == MAX
763 return BinaryOperator::create(Instruction::SetEQ, Op0,
764 AddOne(CI), I.getName());
765 if (I.getOpcode() == Instruction::SetLE) // A <= MAX-1 -> A != MAX
766 return BinaryOperator::create(Instruction::SetNE, Op0,
767 AddOne(CI), I.getName());
768 }
Chris Lattner3f5b8772002-05-06 16:14:14 +0000769 }
770
Chris Lattner7e708292002-06-25 16:13:24 +0000771 return Changed ? &I : 0;
Chris Lattner3f5b8772002-05-06 16:14:14 +0000772}
773
774
775
Chris Lattnerea340052003-03-10 19:16:08 +0000776Instruction *InstCombiner::visitShiftInst(ShiftInst &I) {
Chris Lattner7e708292002-06-25 16:13:24 +0000777 assert(I.getOperand(1)->getType() == Type::UByteTy);
778 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattner3f5b8772002-05-06 16:14:14 +0000779
780 // shl X, 0 == X and shr X, 0 == X
781 // shl 0, X == 0 and shr 0, X == 0
782 if (Op1 == Constant::getNullValue(Type::UByteTy) ||
Chris Lattner233f7dc2002-08-12 21:17:25 +0000783 Op0 == Constant::getNullValue(Op0->getType()))
784 return ReplaceInstUsesWith(I, Op0);
Chris Lattner3f5b8772002-05-06 16:14:14 +0000785
Chris Lattnerea340052003-03-10 19:16:08 +0000786 // If this is a shift of a shift, see if we can fold the two together...
787 if (ShiftInst *Op0SI = dyn_cast<ShiftInst>(Op0)) {
788 if (isa<Constant>(Op1) && isa<Constant>(Op0SI->getOperand(1))) {
789 ConstantUInt *ShiftAmt1C = cast<ConstantUInt>(Op0SI->getOperand(1));
790 unsigned ShiftAmt1 = ShiftAmt1C->getValue();
791 unsigned ShiftAmt2 = cast<ConstantUInt>(Op1)->getValue();
792
793 // Check for (A << c1) << c2 and (A >> c1) >> c2
794 if (I.getOpcode() == Op0SI->getOpcode()) {
795 unsigned Amt = ShiftAmt1+ShiftAmt2; // Fold into one big shift...
796 return new ShiftInst(I.getOpcode(), Op0SI->getOperand(0),
797 ConstantUInt::get(Type::UByteTy, Amt));
798 }
799
800 if (I.getType()->isUnsigned()) { // Check for (A << c1) >> c2 or visaversa
801 // Calculate bitmask for what gets shifted off the edge...
802 Constant *C = ConstantIntegral::getAllOnesValue(I.getType());
803 if (I.getOpcode() == Instruction::Shr)
Chris Lattner2a9c8472003-05-27 16:40:51 +0000804 C = ConstantExpr::getShift(Instruction::Shr, C, ShiftAmt1C);
Chris Lattnerea340052003-03-10 19:16:08 +0000805 else
Chris Lattner2a9c8472003-05-27 16:40:51 +0000806 C = ConstantExpr::getShift(Instruction::Shl, C, ShiftAmt1C);
Chris Lattnerea340052003-03-10 19:16:08 +0000807
808 Instruction *Mask =
809 BinaryOperator::create(Instruction::And, Op0SI->getOperand(0),
810 C, Op0SI->getOperand(0)->getName()+".mask",&I);
811 WorkList.push_back(Mask);
812
813 // Figure out what flavor of shift we should use...
814 if (ShiftAmt1 == ShiftAmt2)
815 return ReplaceInstUsesWith(I, Mask); // (A << c) >> c === A & c2
816 else if (ShiftAmt1 < ShiftAmt2) {
817 return new ShiftInst(I.getOpcode(), Mask,
818 ConstantUInt::get(Type::UByteTy, ShiftAmt2-ShiftAmt1));
819 } else {
820 return new ShiftInst(Op0SI->getOpcode(), Mask,
821 ConstantUInt::get(Type::UByteTy, ShiftAmt1-ShiftAmt2));
822 }
823 }
824 }
825 }
826
Chris Lattner233f7dc2002-08-12 21:17:25 +0000827 // shl uint X, 32 = 0 and shr ubyte Y, 9 = 0, ... just don't eliminate shr of
Chris Lattner3f5b8772002-05-06 16:14:14 +0000828 // a signed value.
829 //
830 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(Op1)) {
Chris Lattnerea340052003-03-10 19:16:08 +0000831 unsigned TypeBits = Op0->getType()->getPrimitiveSize()*8;
832 if (CUI->getValue() >= TypeBits &&
833 (!Op0->getType()->isSigned() || I.getOpcode() == Instruction::Shl))
834 return ReplaceInstUsesWith(I, Constant::getNullValue(Op0->getType()));
Chris Lattnerf2836082002-09-10 23:04:09 +0000835
836 // Check to see if we are shifting left by 1. If so, turn it into an add
837 // instruction.
838 if (I.getOpcode() == Instruction::Shl && CUI->equalsInt(1))
Chris Lattnera2881962003-02-18 19:28:33 +0000839 // Convert 'shl int %X, 1' to 'add int %X, %X'
Chris Lattnerf2836082002-09-10 23:04:09 +0000840 return BinaryOperator::create(Instruction::Add, Op0, Op0, I.getName());
841
Chris Lattner3f5b8772002-05-06 16:14:14 +0000842 }
Chris Lattner6eaeb572002-10-08 16:16:40 +0000843
844 // shr int -1, X = -1 (for any arithmetic shift rights of ~0)
845 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(Op0))
846 if (I.getOpcode() == Instruction::Shr && CSI->isAllOnesValue())
847 return ReplaceInstUsesWith(I, CSI);
848
Chris Lattner3f5b8772002-05-06 16:14:14 +0000849 return 0;
850}
851
852
Chris Lattnera1be5662002-05-02 17:06:02 +0000853// isEliminableCastOfCast - Return true if it is valid to eliminate the CI
854// instruction.
855//
Chris Lattner7e708292002-06-25 16:13:24 +0000856static inline bool isEliminableCastOfCast(const CastInst &CI,
Chris Lattnera1be5662002-05-02 17:06:02 +0000857 const CastInst *CSrc) {
Chris Lattner7e708292002-06-25 16:13:24 +0000858 assert(CI.getOperand(0) == CSrc);
Chris Lattnera1be5662002-05-02 17:06:02 +0000859 const Type *SrcTy = CSrc->getOperand(0)->getType();
860 const Type *MidTy = CSrc->getType();
Chris Lattner7e708292002-06-25 16:13:24 +0000861 const Type *DstTy = CI.getType();
Chris Lattnera1be5662002-05-02 17:06:02 +0000862
Chris Lattner8fd217c2002-08-02 20:00:25 +0000863 // It is legal to eliminate the instruction if casting A->B->A if the sizes
864 // are identical and the bits don't get reinterpreted (for example
Chris Lattner5cf6f112002-08-14 23:21:10 +0000865 // int->float->int would not be allowed)
Misha Brukmanf117cc92003-05-20 18:45:36 +0000866 if (SrcTy == DstTy && SrcTy->isLosslesslyConvertibleTo(MidTy))
Chris Lattner8fd217c2002-08-02 20:00:25 +0000867 return true;
Chris Lattnera1be5662002-05-02 17:06:02 +0000868
869 // Allow free casting and conversion of sizes as long as the sign doesn't
870 // change...
Chris Lattner0c4e8862002-09-03 01:08:28 +0000871 if (SrcTy->isIntegral() && MidTy->isIntegral() && DstTy->isIntegral()) {
Chris Lattner8fd217c2002-08-02 20:00:25 +0000872 unsigned SrcSize = SrcTy->getPrimitiveSize();
873 unsigned MidSize = MidTy->getPrimitiveSize();
874 unsigned DstSize = DstTy->getPrimitiveSize();
Chris Lattner8fd217c2002-08-02 20:00:25 +0000875
Chris Lattner3ecce662002-08-15 16:15:25 +0000876 // Cases where we are monotonically decreasing the size of the type are
877 // always ok, regardless of what sign changes are going on.
878 //
Chris Lattner5cf6f112002-08-14 23:21:10 +0000879 if (SrcSize >= MidSize && MidSize >= DstSize)
Chris Lattner8fd217c2002-08-02 20:00:25 +0000880 return true;
Chris Lattner3ecce662002-08-15 16:15:25 +0000881
Chris Lattnerd06451f2002-09-23 23:39:43 +0000882 // Cases where the source and destination type are the same, but the middle
883 // type is bigger are noops.
884 //
885 if (SrcSize == DstSize && MidSize > SrcSize)
886 return true;
887
Chris Lattner3ecce662002-08-15 16:15:25 +0000888 // If we are monotonically growing, things are more complex.
889 //
890 if (SrcSize <= MidSize && MidSize <= DstSize) {
891 // We have eight combinations of signedness to worry about. Here's the
892 // table:
893 static const int SignTable[8] = {
894 // CODE, SrcSigned, MidSigned, DstSigned, Comment
895 1, // U U U Always ok
896 1, // U U S Always ok
897 3, // U S U Ok iff SrcSize != MidSize
898 3, // U S S Ok iff SrcSize != MidSize
899 0, // S U U Never ok
900 2, // S U S Ok iff MidSize == DstSize
901 1, // S S U Always ok
902 1, // S S S Always ok
903 };
904
905 // Choose an action based on the current entry of the signtable that this
906 // cast of cast refers to...
907 unsigned Row = SrcTy->isSigned()*4+MidTy->isSigned()*2+DstTy->isSigned();
908 switch (SignTable[Row]) {
909 case 0: return false; // Never ok
910 case 1: return true; // Always ok
911 case 2: return MidSize == DstSize; // Ok iff MidSize == DstSize
912 case 3: // Ok iff SrcSize != MidSize
913 return SrcSize != MidSize || SrcTy == Type::BoolTy;
914 default: assert(0 && "Bad entry in sign table!");
915 }
Chris Lattner3ecce662002-08-15 16:15:25 +0000916 }
Chris Lattner8fd217c2002-08-02 20:00:25 +0000917 }
Chris Lattnera1be5662002-05-02 17:06:02 +0000918
919 // Otherwise, we cannot succeed. Specifically we do not want to allow things
920 // like: short -> ushort -> uint, because this can create wrong results if
921 // the input short is negative!
922 //
923 return false;
924}
925
926
927// CastInst simplification
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000928//
Chris Lattner7e708292002-06-25 16:13:24 +0000929Instruction *InstCombiner::visitCastInst(CastInst &CI) {
Chris Lattner79d35b32003-06-23 21:59:52 +0000930 Value *Src = CI.getOperand(0);
931
Chris Lattnera1be5662002-05-02 17:06:02 +0000932 // If the user is casting a value to the same type, eliminate this cast
933 // instruction...
Chris Lattner79d35b32003-06-23 21:59:52 +0000934 if (CI.getType() == Src->getType())
935 return ReplaceInstUsesWith(CI, Src);
Chris Lattnera1be5662002-05-02 17:06:02 +0000936
Chris Lattnera1be5662002-05-02 17:06:02 +0000937 // If casting the result of another cast instruction, try to eliminate this
938 // one!
939 //
Chris Lattner79d35b32003-06-23 21:59:52 +0000940 if (CastInst *CSrc = dyn_cast<CastInst>(Src)) {
Chris Lattnera1be5662002-05-02 17:06:02 +0000941 if (isEliminableCastOfCast(CI, CSrc)) {
942 // This instruction now refers directly to the cast's src operand. This
943 // has a good chance of making CSrc dead.
Chris Lattner7e708292002-06-25 16:13:24 +0000944 CI.setOperand(0, CSrc->getOperand(0));
945 return &CI;
Chris Lattnera1be5662002-05-02 17:06:02 +0000946 }
947
Chris Lattner8fd217c2002-08-02 20:00:25 +0000948 // If this is an A->B->A cast, and we are dealing with integral types, try
949 // to convert this into a logical 'and' instruction.
950 //
951 if (CSrc->getOperand(0)->getType() == CI.getType() &&
Chris Lattner0c4e8862002-09-03 01:08:28 +0000952 CI.getType()->isInteger() && CSrc->getType()->isInteger() &&
Chris Lattner8fd217c2002-08-02 20:00:25 +0000953 CI.getType()->isUnsigned() && CSrc->getType()->isUnsigned() &&
954 CSrc->getType()->getPrimitiveSize() < CI.getType()->getPrimitiveSize()){
955 assert(CSrc->getType() != Type::ULongTy &&
956 "Cannot have type bigger than ulong!");
Chris Lattnerbd4ecf72003-05-26 23:41:32 +0000957 uint64_t AndValue = (1ULL << CSrc->getType()->getPrimitiveSize()*8)-1;
Chris Lattner8fd217c2002-08-02 20:00:25 +0000958 Constant *AndOp = ConstantUInt::get(CI.getType(), AndValue);
959 return BinaryOperator::create(Instruction::And, CSrc->getOperand(0),
960 AndOp);
961 }
962 }
963
Chris Lattner797249b2003-06-21 23:12:02 +0000964 // If casting the result of a getelementptr instruction with no offset, turn
965 // this into a cast of the original pointer!
966 //
Chris Lattner79d35b32003-06-23 21:59:52 +0000967 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Src)) {
Chris Lattner797249b2003-06-21 23:12:02 +0000968 bool AllZeroOperands = true;
969 for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i)
970 if (!isa<Constant>(GEP->getOperand(i)) ||
971 !cast<Constant>(GEP->getOperand(i))->isNullValue()) {
972 AllZeroOperands = false;
973 break;
974 }
975 if (AllZeroOperands) {
976 CI.setOperand(0, GEP->getOperand(0));
977 return &CI;
978 }
979 }
980
Chris Lattner79d35b32003-06-23 21:59:52 +0000981 // If this is a cast to bool (which is effectively a "!=0" test), then we can
982 // perform a few optimizations...
983 //
984 if (CI.getType() == Type::BoolTy) {
985 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Src)) {
986 Value *Op0 = BO->getOperand(0), *Op1 = BO->getOperand(1);
987
Chris Lattner1ba5bcd2003-07-22 21:46:59 +0000988 switch (BO->getOpcode()) {
989 case Instruction::Sub:
990 case Instruction::Xor:
991 // Replace (cast ([sub|xor] A, B) to bool) with (setne A, B)
Chris Lattner79d35b32003-06-23 21:59:52 +0000992 return new SetCondInst(Instruction::SetNE, Op0, Op1);
993
994 // Replace (cast (add A, B) to bool) with (setne A, -B) if B is
995 // efficiently invertible, or if the add has just this one use.
Chris Lattner1ba5bcd2003-07-22 21:46:59 +0000996 case Instruction::Add:
Chris Lattner79d35b32003-06-23 21:59:52 +0000997 if (Value *NegVal = dyn_castNegVal(Op1))
998 return new SetCondInst(Instruction::SetNE, Op0, NegVal);
999 else if (Value *NegVal = dyn_castNegVal(Op0))
1000 return new SetCondInst(Instruction::SetNE, NegVal, Op1);
1001 else if (BO->use_size() == 1) {
1002 Instruction *Neg = BinaryOperator::createNeg(Op1, BO->getName());
1003 BO->setName("");
1004 InsertNewInstBefore(Neg, CI);
1005 return new SetCondInst(Instruction::SetNE, Op0, Neg);
1006 }
Chris Lattner1ba5bcd2003-07-22 21:46:59 +00001007 break;
1008
1009 case Instruction::And:
1010 // Replace (cast (and X, (1 << size(X)-1)) to bool) with x < 0,
1011 // converting X to be a signed value as appropriate. Don't worry about
1012 // bool values, as they will be optimized other ways if they occur in
1013 // this configuration.
1014 if (ConstantInt *CInt = dyn_cast<ConstantInt>(Op1))
1015 if (isSignBit(CInt)) {
1016 // If 'X' is not signed, insert a cast now...
1017 if (!CInt->getType()->isSigned()) {
1018 const Type *DestTy;
1019 switch (CInt->getType()->getPrimitiveID()) {
1020 case Type::UByteTyID: DestTy = Type::SByteTy; break;
1021 case Type::UShortTyID: DestTy = Type::ShortTy; break;
1022 case Type::UIntTyID: DestTy = Type::IntTy; break;
1023 case Type::ULongTyID: DestTy = Type::LongTy; break;
1024 default: assert(0 && "Invalid unsigned integer type!"); abort();
1025 }
1026 CastInst *NewCI = new CastInst(Op0, DestTy,
1027 Op0->getName()+".signed");
1028 InsertNewInstBefore(NewCI, CI);
1029 Op0 = NewCI;
1030 }
1031 return new SetCondInst(Instruction::SetLT, Op0,
1032 Constant::getNullValue(Op0->getType()));
1033 }
1034 break;
1035 default: break;
1036 }
Chris Lattner79d35b32003-06-23 21:59:52 +00001037 }
1038 }
1039
Chris Lattnerdd841ae2002-04-18 17:39:14 +00001040 return 0;
Chris Lattner8a2a3112001-12-14 16:52:21 +00001041}
1042
Chris Lattner9fe38862003-06-19 17:00:31 +00001043// CallInst simplification
1044//
1045Instruction *InstCombiner::visitCallInst(CallInst &CI) {
1046 if (transformConstExprCastCall(&CI)) return 0;
1047 return 0;
1048}
1049
1050// InvokeInst simplification
1051//
1052Instruction *InstCombiner::visitInvokeInst(InvokeInst &II) {
1053 if (transformConstExprCastCall(&II)) return 0;
1054 return 0;
1055}
1056
1057// getPromotedType - Return the specified type promoted as it would be to pass
1058// though a va_arg area...
1059static const Type *getPromotedType(const Type *Ty) {
1060 switch (Ty->getPrimitiveID()) {
1061 case Type::SByteTyID:
1062 case Type::ShortTyID: return Type::IntTy;
1063 case Type::UByteTyID:
1064 case Type::UShortTyID: return Type::UIntTy;
1065 case Type::FloatTyID: return Type::DoubleTy;
1066 default: return Ty;
1067 }
1068}
1069
1070// transformConstExprCastCall - If the callee is a constexpr cast of a function,
1071// attempt to move the cast to the arguments of the call/invoke.
1072//
1073bool InstCombiner::transformConstExprCastCall(CallSite CS) {
1074 if (!isa<ConstantExpr>(CS.getCalledValue())) return false;
1075 ConstantExpr *CE = cast<ConstantExpr>(CS.getCalledValue());
1076 if (CE->getOpcode() != Instruction::Cast ||
1077 !isa<ConstantPointerRef>(CE->getOperand(0)))
1078 return false;
1079 ConstantPointerRef *CPR = cast<ConstantPointerRef>(CE->getOperand(0));
1080 if (!isa<Function>(CPR->getValue())) return false;
1081 Function *Callee = cast<Function>(CPR->getValue());
1082 Instruction *Caller = CS.getInstruction();
1083
1084 // Okay, this is a cast from a function to a different type. Unless doing so
1085 // would cause a type conversion of one of our arguments, change this call to
1086 // be a direct call with arguments casted to the appropriate types.
1087 //
1088 const FunctionType *FT = Callee->getFunctionType();
1089 const Type *OldRetTy = Caller->getType();
1090
1091 if (Callee->isExternal() &&
1092 !OldRetTy->isLosslesslyConvertibleTo(FT->getReturnType()))
1093 return false; // Cannot transform this return value...
1094
1095 unsigned NumActualArgs = unsigned(CS.arg_end()-CS.arg_begin());
1096 unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs);
1097
1098 CallSite::arg_iterator AI = CS.arg_begin();
1099 for (unsigned i = 0, e = NumCommonArgs; i != e; ++i, ++AI) {
1100 const Type *ParamTy = FT->getParamType(i);
1101 bool isConvertible = (*AI)->getType()->isLosslesslyConvertibleTo(ParamTy);
1102 if (Callee->isExternal() && !isConvertible) return false;
1103 }
1104
1105 if (FT->getNumParams() < NumActualArgs && !FT->isVarArg() &&
1106 Callee->isExternal())
1107 return false; // Do not delete arguments unless we have a function body...
1108
1109 // Okay, we decided that this is a safe thing to do: go ahead and start
1110 // inserting cast instructions as necessary...
1111 std::vector<Value*> Args;
1112 Args.reserve(NumActualArgs);
1113
1114 AI = CS.arg_begin();
1115 for (unsigned i = 0; i != NumCommonArgs; ++i, ++AI) {
1116 const Type *ParamTy = FT->getParamType(i);
1117 if ((*AI)->getType() == ParamTy) {
1118 Args.push_back(*AI);
1119 } else {
1120 Instruction *Cast = new CastInst(*AI, ParamTy, "tmp");
1121 InsertNewInstBefore(Cast, *Caller);
1122 Args.push_back(Cast);
1123 }
1124 }
1125
1126 // If the function takes more arguments than the call was taking, add them
1127 // now...
1128 for (unsigned i = NumCommonArgs; i != FT->getNumParams(); ++i)
1129 Args.push_back(Constant::getNullValue(FT->getParamType(i)));
1130
1131 // If we are removing arguments to the function, emit an obnoxious warning...
1132 if (FT->getNumParams() < NumActualArgs)
1133 if (!FT->isVarArg()) {
1134 std::cerr << "WARNING: While resolving call to function '"
1135 << Callee->getName() << "' arguments were dropped!\n";
1136 } else {
1137 // Add all of the arguments in their promoted form to the arg list...
1138 for (unsigned i = FT->getNumParams(); i != NumActualArgs; ++i, ++AI) {
1139 const Type *PTy = getPromotedType((*AI)->getType());
1140 if (PTy != (*AI)->getType()) {
1141 // Must promote to pass through va_arg area!
1142 Instruction *Cast = new CastInst(*AI, PTy, "tmp");
1143 InsertNewInstBefore(Cast, *Caller);
1144 Args.push_back(Cast);
1145 } else {
1146 Args.push_back(*AI);
1147 }
1148 }
1149 }
1150
1151 if (FT->getReturnType() == Type::VoidTy)
1152 Caller->setName(""); // Void type should not have a name...
1153
1154 Instruction *NC;
1155 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
1156 NC = new InvokeInst(Callee, II->getNormalDest(), II->getExceptionalDest(),
1157 Args, Caller->getName(), Caller);
1158 } else {
1159 NC = new CallInst(Callee, Args, Caller->getName(), Caller);
1160 }
1161
1162 // Insert a cast of the return type as necessary...
1163 Value *NV = NC;
1164 if (Caller->getType() != NV->getType() && !Caller->use_empty()) {
1165 if (NV->getType() != Type::VoidTy) {
1166 NV = NC = new CastInst(NC, Caller->getType(), "tmp");
1167 InsertNewInstBefore(NC, *Caller);
1168 AddUsesToWorkList(*Caller);
1169 } else {
1170 NV = Constant::getNullValue(Caller->getType());
1171 }
1172 }
1173
1174 if (Caller->getType() != Type::VoidTy && !Caller->use_empty())
1175 Caller->replaceAllUsesWith(NV);
1176 Caller->getParent()->getInstList().erase(Caller);
1177 removeFromWorkList(Caller);
1178 return true;
1179}
1180
1181
Chris Lattnera1be5662002-05-02 17:06:02 +00001182
Chris Lattner473945d2002-05-06 18:06:38 +00001183// PHINode simplification
1184//
Chris Lattner7e708292002-06-25 16:13:24 +00001185Instruction *InstCombiner::visitPHINode(PHINode &PN) {
Chris Lattner473945d2002-05-06 18:06:38 +00001186 // If the PHI node only has one incoming value, eliminate the PHI node...
Chris Lattner233f7dc2002-08-12 21:17:25 +00001187 if (PN.getNumIncomingValues() == 1)
1188 return ReplaceInstUsesWith(PN, PN.getIncomingValue(0));
Chris Lattnerf02c4682002-08-20 15:35:35 +00001189
1190 // Otherwise if all of the incoming values are the same for the PHI, replace
1191 // the PHI node with the incoming value.
1192 //
Chris Lattnerc20e2452002-08-22 20:22:01 +00001193 Value *InVal = 0;
1194 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
1195 if (PN.getIncomingValue(i) != &PN) // Not the PHI node itself...
1196 if (InVal && PN.getIncomingValue(i) != InVal)
1197 return 0; // Not the same, bail out.
1198 else
1199 InVal = PN.getIncomingValue(i);
1200
1201 // The only case that could cause InVal to be null is if we have a PHI node
1202 // that only has entries for itself. In this case, there is no entry into the
1203 // loop, so kill the PHI.
1204 //
1205 if (InVal == 0) InVal = Constant::getNullValue(PN.getType());
Chris Lattner473945d2002-05-06 18:06:38 +00001206
Chris Lattnerf02c4682002-08-20 15:35:35 +00001207 // All of the incoming values are the same, replace the PHI node now.
1208 return ReplaceInstUsesWith(PN, InVal);
Chris Lattner473945d2002-05-06 18:06:38 +00001209}
1210
Chris Lattnera1be5662002-05-02 17:06:02 +00001211
Chris Lattner7e708292002-06-25 16:13:24 +00001212Instruction *InstCombiner::visitGetElementPtrInst(GetElementPtrInst &GEP) {
Chris Lattnerc54e2b82003-05-22 19:07:21 +00001213 // Is it 'getelementptr %P, long 0' or 'getelementptr %P'
Chris Lattner7e708292002-06-25 16:13:24 +00001214 // If so, eliminate the noop.
Chris Lattner90ac28c2002-08-02 19:29:35 +00001215 if ((GEP.getNumOperands() == 2 &&
Chris Lattner3cac88a2002-09-11 01:21:33 +00001216 GEP.getOperand(1) == Constant::getNullValue(Type::LongTy)) ||
Chris Lattner233f7dc2002-08-12 21:17:25 +00001217 GEP.getNumOperands() == 1)
1218 return ReplaceInstUsesWith(GEP, GEP.getOperand(0));
Chris Lattnera1be5662002-05-02 17:06:02 +00001219
Chris Lattner90ac28c2002-08-02 19:29:35 +00001220 // Combine Indices - If the source pointer to this getelementptr instruction
1221 // is a getelementptr instruction, combine the indices of the two
1222 // getelementptr instructions into a single instruction.
1223 //
Chris Lattner9b761232002-08-17 22:21:59 +00001224 if (GetElementPtrInst *Src = dyn_cast<GetElementPtrInst>(GEP.getOperand(0))) {
Chris Lattner90ac28c2002-08-02 19:29:35 +00001225 std::vector<Value *> Indices;
Chris Lattner8a2a3112001-12-14 16:52:21 +00001226
Chris Lattner90ac28c2002-08-02 19:29:35 +00001227 // Can we combine the two pointer arithmetics offsets?
Chris Lattnerc54e2b82003-05-22 19:07:21 +00001228 if (Src->getNumOperands() == 2 && isa<Constant>(Src->getOperand(1)) &&
1229 isa<Constant>(GEP.getOperand(1))) {
Chris Lattnerdecd0812003-03-05 22:33:14 +00001230 // Replace: gep (gep %P, long C1), long C2, ...
1231 // With: gep %P, long (C1+C2), ...
Chris Lattner2a9c8472003-05-27 16:40:51 +00001232 Value *Sum = ConstantExpr::get(Instruction::Add,
1233 cast<Constant>(Src->getOperand(1)),
1234 cast<Constant>(GEP.getOperand(1)));
Chris Lattnerdecd0812003-03-05 22:33:14 +00001235 assert(Sum && "Constant folding of longs failed!?");
1236 GEP.setOperand(0, Src->getOperand(0));
1237 GEP.setOperand(1, Sum);
1238 AddUsesToWorkList(*Src); // Reduce use count of Src
1239 return &GEP;
Chris Lattnerc54e2b82003-05-22 19:07:21 +00001240 } else if (Src->getNumOperands() == 2) {
Chris Lattnerdecd0812003-03-05 22:33:14 +00001241 // Replace: gep (gep %P, long B), long A, ...
1242 // With: T = long A+B; gep %P, T, ...
1243 //
1244 Value *Sum = BinaryOperator::create(Instruction::Add, Src->getOperand(1),
1245 GEP.getOperand(1),
1246 Src->getName()+".sum", &GEP);
1247 GEP.setOperand(0, Src->getOperand(0));
1248 GEP.setOperand(1, Sum);
1249 WorkList.push_back(cast<Instruction>(Sum));
1250 return &GEP;
Chris Lattner01885342002-11-04 16:43:32 +00001251 } else if (*GEP.idx_begin() == Constant::getNullValue(Type::LongTy) &&
Chris Lattnerdfcbf012002-09-17 21:05:42 +00001252 Src->getNumOperands() != 1) {
Chris Lattner90ac28c2002-08-02 19:29:35 +00001253 // Otherwise we can do the fold if the first index of the GEP is a zero
1254 Indices.insert(Indices.end(), Src->idx_begin(), Src->idx_end());
1255 Indices.insert(Indices.end(), GEP.idx_begin()+1, GEP.idx_end());
Chris Lattner01885342002-11-04 16:43:32 +00001256 } else if (Src->getOperand(Src->getNumOperands()-1) ==
1257 Constant::getNullValue(Type::LongTy)) {
1258 // If the src gep ends with a constant array index, merge this get into
1259 // it, even if we have a non-zero array index.
1260 Indices.insert(Indices.end(), Src->idx_begin(), Src->idx_end()-1);
1261 Indices.insert(Indices.end(), GEP.idx_begin(), GEP.idx_end());
Chris Lattner90ac28c2002-08-02 19:29:35 +00001262 }
1263
1264 if (!Indices.empty())
1265 return new GetElementPtrInst(Src->getOperand(0), Indices, GEP.getName());
Chris Lattner9b761232002-08-17 22:21:59 +00001266
1267 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(GEP.getOperand(0))) {
1268 // GEP of global variable. If all of the indices for this GEP are
1269 // constants, we can promote this to a constexpr instead of an instruction.
1270
1271 // Scan for nonconstants...
1272 std::vector<Constant*> Indices;
1273 User::op_iterator I = GEP.idx_begin(), E = GEP.idx_end();
1274 for (; I != E && isa<Constant>(*I); ++I)
1275 Indices.push_back(cast<Constant>(*I));
1276
1277 if (I == E) { // If they are all constants...
Chris Lattnerfb242b62003-04-16 22:40:51 +00001278 Constant *CE =
Chris Lattner9b761232002-08-17 22:21:59 +00001279 ConstantExpr::getGetElementPtr(ConstantPointerRef::get(GV), Indices);
1280
1281 // Replace all uses of the GEP with the new constexpr...
1282 return ReplaceInstUsesWith(GEP, CE);
1283 }
Chris Lattner8a2a3112001-12-14 16:52:21 +00001284 }
1285
Chris Lattner8a2a3112001-12-14 16:52:21 +00001286 return 0;
1287}
1288
Chris Lattner0864acf2002-11-04 16:18:53 +00001289Instruction *InstCombiner::visitAllocationInst(AllocationInst &AI) {
1290 // Convert: malloc Ty, C - where C is a constant != 1 into: malloc [C x Ty], 1
1291 if (AI.isArrayAllocation()) // Check C != 1
1292 if (const ConstantUInt *C = dyn_cast<ConstantUInt>(AI.getArraySize())) {
1293 const Type *NewTy = ArrayType::get(AI.getAllocatedType(), C->getValue());
Chris Lattner0006bd72002-11-09 00:49:43 +00001294 AllocationInst *New = 0;
Chris Lattner0864acf2002-11-04 16:18:53 +00001295
1296 // Create and insert the replacement instruction...
1297 if (isa<MallocInst>(AI))
1298 New = new MallocInst(NewTy, 0, AI.getName(), &AI);
Chris Lattner0006bd72002-11-09 00:49:43 +00001299 else {
1300 assert(isa<AllocaInst>(AI) && "Unknown type of allocation inst!");
Chris Lattner0864acf2002-11-04 16:18:53 +00001301 New = new AllocaInst(NewTy, 0, AI.getName(), &AI);
Chris Lattner0006bd72002-11-09 00:49:43 +00001302 }
Chris Lattner0864acf2002-11-04 16:18:53 +00001303
1304 // Scan to the end of the allocation instructions, to skip over a block of
1305 // allocas if possible...
1306 //
1307 BasicBlock::iterator It = New;
1308 while (isa<AllocationInst>(*It)) ++It;
1309
1310 // Now that I is pointing to the first non-allocation-inst in the block,
1311 // insert our getelementptr instruction...
1312 //
1313 std::vector<Value*> Idx(2, Constant::getNullValue(Type::LongTy));
1314 Value *V = new GetElementPtrInst(New, Idx, New->getName()+".sub", It);
1315
1316 // Now make everything use the getelementptr instead of the original
1317 // allocation.
1318 ReplaceInstUsesWith(AI, V);
1319 return &AI;
1320 }
1321 return 0;
1322}
1323
Chris Lattner833b8a42003-06-26 05:06:25 +00001324/// GetGEPGlobalInitializer - Given a constant, and a getelementptr
1325/// constantexpr, return the constant value being addressed by the constant
1326/// expression, or null if something is funny.
1327///
1328static Constant *GetGEPGlobalInitializer(Constant *C, ConstantExpr *CE) {
1329 if (CE->getOperand(1) != Constant::getNullValue(Type::LongTy))
1330 return 0; // Do not allow stepping over the value!
1331
1332 // Loop over all of the operands, tracking down which value we are
1333 // addressing...
1334 for (unsigned i = 2, e = CE->getNumOperands(); i != e; ++i)
1335 if (ConstantUInt *CU = dyn_cast<ConstantUInt>(CE->getOperand(i))) {
1336 ConstantStruct *CS = cast<ConstantStruct>(C);
1337 if (CU->getValue() >= CS->getValues().size()) return 0;
1338 C = cast<Constant>(CS->getValues()[CU->getValue()]);
1339 } else if (ConstantSInt *CS = dyn_cast<ConstantSInt>(CE->getOperand(i))) {
1340 ConstantArray *CA = cast<ConstantArray>(C);
1341 if ((uint64_t)CS->getValue() >= CA->getValues().size()) return 0;
1342 C = cast<Constant>(CA->getValues()[CS->getValue()]);
1343 } else
1344 return 0;
1345 return C;
1346}
1347
1348Instruction *InstCombiner::visitLoadInst(LoadInst &LI) {
1349 Value *Op = LI.getOperand(0);
1350 if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(Op))
1351 Op = CPR->getValue();
1352
1353 // Instcombine load (constant global) into the value loaded...
1354 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Op))
Chris Lattner1ba5bcd2003-07-22 21:46:59 +00001355 if (GV->isConstant() && !GV->isExternal())
Chris Lattner833b8a42003-06-26 05:06:25 +00001356 return ReplaceInstUsesWith(LI, GV->getInitializer());
1357
1358 // Instcombine load (constantexpr_GEP global, 0, ...) into the value loaded...
1359 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Op))
1360 if (CE->getOpcode() == Instruction::GetElementPtr)
1361 if (ConstantPointerRef *G=dyn_cast<ConstantPointerRef>(CE->getOperand(0)))
1362 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getValue()))
Chris Lattner1ba5bcd2003-07-22 21:46:59 +00001363 if (GV->isConstant() && !GV->isExternal())
Chris Lattner833b8a42003-06-26 05:06:25 +00001364 if (Constant *V = GetGEPGlobalInitializer(GV->getInitializer(), CE))
1365 return ReplaceInstUsesWith(LI, V);
1366 return 0;
1367}
1368
1369
Chris Lattnerc4d10eb2003-06-04 04:46:00 +00001370Instruction *InstCombiner::visitBranchInst(BranchInst &BI) {
1371 // Change br (not X), label True, label False to: br X, label False, True
Chris Lattner9b5fd222003-06-05 20:12:51 +00001372 if (BI.isConditional() && !isa<Constant>(BI.getCondition()))
Chris Lattner40f5d702003-06-04 05:10:11 +00001373 if (Value *V = dyn_castNotVal(BI.getCondition())) {
1374 BasicBlock *TrueDest = BI.getSuccessor(0);
1375 BasicBlock *FalseDest = BI.getSuccessor(1);
1376 // Swap Destinations and condition...
1377 BI.setCondition(V);
1378 BI.setSuccessor(0, FalseDest);
1379 BI.setSuccessor(1, TrueDest);
1380 return &BI;
1381 }
Chris Lattnerc4d10eb2003-06-04 04:46:00 +00001382 return 0;
1383}
Chris Lattner0864acf2002-11-04 16:18:53 +00001384
Chris Lattner8a2a3112001-12-14 16:52:21 +00001385
Chris Lattner62b14df2002-09-02 04:59:56 +00001386void InstCombiner::removeFromWorkList(Instruction *I) {
1387 WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), I),
1388 WorkList.end());
1389}
1390
Chris Lattner7e708292002-06-25 16:13:24 +00001391bool InstCombiner::runOnFunction(Function &F) {
Chris Lattnerdd841ae2002-04-18 17:39:14 +00001392 bool Changed = false;
Chris Lattner8a2a3112001-12-14 16:52:21 +00001393
Chris Lattnerdd841ae2002-04-18 17:39:14 +00001394 WorkList.insert(WorkList.end(), inst_begin(F), inst_end(F));
Chris Lattner8a2a3112001-12-14 16:52:21 +00001395
1396 while (!WorkList.empty()) {
1397 Instruction *I = WorkList.back(); // Get an instruction from the worklist
1398 WorkList.pop_back();
1399
Misha Brukmana3bbcb52002-10-29 23:06:16 +00001400 // Check to see if we can DCE or ConstantPropagate the instruction...
Chris Lattner62b14df2002-09-02 04:59:56 +00001401 // Check to see if we can DIE the instruction...
1402 if (isInstructionTriviallyDead(I)) {
1403 // Add operands to the worklist...
1404 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
1405 if (Instruction *Op = dyn_cast<Instruction>(I->getOperand(i)))
1406 WorkList.push_back(Op);
1407
1408 ++NumDeadInst;
1409 BasicBlock::iterator BBI = I;
1410 if (dceInstruction(BBI)) {
1411 removeFromWorkList(I);
1412 continue;
1413 }
1414 }
1415
Misha Brukmana3bbcb52002-10-29 23:06:16 +00001416 // Instruction isn't dead, see if we can constant propagate it...
Chris Lattner62b14df2002-09-02 04:59:56 +00001417 if (Constant *C = ConstantFoldInstruction(I)) {
1418 // Add operands to the worklist...
1419 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
1420 if (Instruction *Op = dyn_cast<Instruction>(I->getOperand(i)))
1421 WorkList.push_back(Op);
Chris Lattnerc736d562002-12-05 22:41:53 +00001422 ReplaceInstUsesWith(*I, C);
1423
Chris Lattner62b14df2002-09-02 04:59:56 +00001424 ++NumConstProp;
1425 BasicBlock::iterator BBI = I;
1426 if (dceInstruction(BBI)) {
1427 removeFromWorkList(I);
1428 continue;
1429 }
1430 }
1431
Chris Lattner8a2a3112001-12-14 16:52:21 +00001432 // Now that we have an instruction, try combining it to simplify it...
Chris Lattner90ac28c2002-08-02 19:29:35 +00001433 if (Instruction *Result = visit(*I)) {
Chris Lattner3dec1f22002-05-10 15:38:35 +00001434 ++NumCombined;
Chris Lattnerdd841ae2002-04-18 17:39:14 +00001435 // Should we replace the old instruction with a new one?
Chris Lattnerb3bc8fa2002-05-14 15:24:07 +00001436 if (Result != I) {
1437 // Instructions can end up on the worklist more than once. Make sure
1438 // we do not process an instruction that has been deleted.
Chris Lattner62b14df2002-09-02 04:59:56 +00001439 removeFromWorkList(I);
Chris Lattnerdd841ae2002-04-18 17:39:14 +00001440 ReplaceInstWithInst(I, Result);
Chris Lattner7e708292002-06-25 16:13:24 +00001441 } else {
Chris Lattner90ac28c2002-08-02 19:29:35 +00001442 BasicBlock::iterator II = I;
1443
1444 // If the instruction was modified, it's possible that it is now dead.
1445 // if so, remove it.
1446 if (dceInstruction(II)) {
1447 // Instructions may end up in the worklist more than once. Erase them
1448 // all.
Chris Lattner62b14df2002-09-02 04:59:56 +00001449 removeFromWorkList(I);
Chris Lattner90ac28c2002-08-02 19:29:35 +00001450 Result = 0;
1451 }
Chris Lattnerb3bc8fa2002-05-14 15:24:07 +00001452 }
Chris Lattnerdd841ae2002-04-18 17:39:14 +00001453
Chris Lattner90ac28c2002-08-02 19:29:35 +00001454 if (Result) {
1455 WorkList.push_back(Result);
1456 AddUsesToWorkList(*Result);
1457 }
Chris Lattnerdd841ae2002-04-18 17:39:14 +00001458 Changed = true;
Chris Lattner8a2a3112001-12-14 16:52:21 +00001459 }
1460 }
1461
Chris Lattnerdd841ae2002-04-18 17:39:14 +00001462 return Changed;
Chris Lattnerbd0ef772002-02-26 21:46:54 +00001463}
1464
1465Pass *createInstructionCombiningPass() {
Chris Lattnerdd841ae2002-04-18 17:39:14 +00001466 return new InstCombiner();
Chris Lattnerbd0ef772002-02-26 21:46:54 +00001467}