blob: 2340c49b5638265217fd77a60e363bdcc06ab3b2 [file] [log] [blame]
Chris Lattnere6794492002-08-12 21:17:25 +00001//===- InstructionCombining.cpp - Combine multiple instructions -----------===//
John Criswell482202a2003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattnerca081252001-12-14 16:52:21 +00009//
10// InstructionCombining - Combine instructions to form fewer, simple
Chris Lattner99f48c62002-09-02 04:59:56 +000011// instructions. This pass does not modify the CFG This pass is where algebraic
12// simplification happens.
Chris Lattnerca081252001-12-14 16:52:21 +000013//
14// This pass combines things like:
Chris Lattnerdd1a86d2004-05-04 15:19:33 +000015// %Y = add int %X, 1
16// %Z = add int %Y, 1
Chris Lattnerca081252001-12-14 16:52:21 +000017// into:
Chris Lattnerdd1a86d2004-05-04 15:19:33 +000018// %Z = add int %X, 2
Chris Lattnerca081252001-12-14 16:52:21 +000019//
20// This is a simple worklist driven algorithm.
21//
Chris Lattner216c7b82003-09-10 05:29:43 +000022// This pass guarantees that the following canonicalizations are performed on
Chris Lattnerbfb1d032003-07-23 21:41:57 +000023// the program:
24// 1. If a binary operator has a constant operand, it is moved to the RHS
Chris Lattnerdeaa0dd2003-08-12 21:53:41 +000025// 2. Bitwise operators with constant operands are always grouped so that
26// shifts are performed first, then or's, then and's, then xor's.
Chris Lattnerbfb1d032003-07-23 21:41:57 +000027// 3. SetCC instructions are converted from <,>,<=,>= to ==,!= if possible
28// 4. All SetCC instructions on boolean values are replaced with logical ops
Chris Lattnerede3fe02003-08-13 04:18:28 +000029// 5. add X, X is represented as (X*2) => (X << 1)
30// 6. Multiplies with a power-of-two constant argument are transformed into
31// shifts.
Chris Lattnerbfb1d032003-07-23 21:41:57 +000032// N. This list is incomplete
33//
Chris Lattnerca081252001-12-14 16:52:21 +000034//===----------------------------------------------------------------------===//
35
Chris Lattner7d2a5392004-03-13 23:54:27 +000036#define DEBUG_TYPE "instcombine"
Chris Lattnerb4cfa7f2002-05-07 20:03:00 +000037#include "llvm/Transforms/Scalar.h"
Chris Lattner471bd762003-05-22 19:07:21 +000038#include "llvm/Instructions.h"
Chris Lattner51ea1272004-02-28 05:22:00 +000039#include "llvm/Intrinsics.h"
Chris Lattner04805fa2002-02-26 21:46:54 +000040#include "llvm/Pass.h"
Chris Lattner34428442003-05-27 16:40:51 +000041#include "llvm/Constants.h"
Chris Lattner1085bdf2002-11-04 16:18:53 +000042#include "llvm/DerivedTypes.h"
Chris Lattner0f1d8a32003-06-26 05:06:25 +000043#include "llvm/GlobalVariable.h"
Chris Lattnerf4ad1652003-11-02 05:57:39 +000044#include "llvm/Target/TargetData.h"
45#include "llvm/Transforms/Utils/BasicBlockUtils.h"
46#include "llvm/Transforms/Utils/Local.h"
Chris Lattner69193f92004-04-05 01:30:19 +000047#include "llvm/Support/CallSite.h"
48#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner60a65912002-02-12 21:07:25 +000049#include "llvm/Support/InstIterator.h"
Chris Lattner260ab202002-04-18 17:39:14 +000050#include "llvm/Support/InstVisitor.h"
Chris Lattnerd4252a72004-07-30 07:50:03 +000051#include "llvm/Support/PatternMatch.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000052#include "llvm/Support/Debug.h"
53#include "llvm/ADT/Statistic.h"
Chris Lattner053c0932002-05-14 15:24:07 +000054#include <algorithm>
Chris Lattner8427bff2003-12-07 01:24:23 +000055using namespace llvm;
Chris Lattnerd4252a72004-07-30 07:50:03 +000056using namespace llvm::PatternMatch;
Brian Gaeke960707c2003-11-11 22:41:34 +000057
Chris Lattner260ab202002-04-18 17:39:14 +000058namespace {
Chris Lattnerbf3a0992002-10-01 22:38:41 +000059 Statistic<> NumCombined ("instcombine", "Number of insts combined");
60 Statistic<> NumConstProp("instcombine", "Number of constant folds");
61 Statistic<> NumDeadInst ("instcombine", "Number of dead inst eliminated");
62
Chris Lattnerc8e66542002-04-27 06:56:12 +000063 class InstCombiner : public FunctionPass,
Chris Lattner260ab202002-04-18 17:39:14 +000064 public InstVisitor<InstCombiner, Instruction*> {
65 // Worklist of all of the instructions that need to be simplified.
66 std::vector<Instruction*> WorkList;
Chris Lattnerf4ad1652003-11-02 05:57:39 +000067 TargetData *TD;
Chris Lattner260ab202002-04-18 17:39:14 +000068
Chris Lattner51ea1272004-02-28 05:22:00 +000069 /// AddUsersToWorkList - When an instruction is simplified, add all users of
70 /// the instruction to the work lists because they might get more simplified
71 /// now.
72 ///
73 void AddUsersToWorkList(Instruction &I) {
Chris Lattner113f4f42002-06-25 16:13:24 +000074 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end();
Chris Lattner260ab202002-04-18 17:39:14 +000075 UI != UE; ++UI)
76 WorkList.push_back(cast<Instruction>(*UI));
77 }
78
Chris Lattner51ea1272004-02-28 05:22:00 +000079 /// AddUsesToWorkList - When an instruction is simplified, add operands to
80 /// the work lists because they might get more simplified now.
81 ///
82 void AddUsesToWorkList(Instruction &I) {
83 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
84 if (Instruction *Op = dyn_cast<Instruction>(I.getOperand(i)))
85 WorkList.push_back(Op);
86 }
87
Chris Lattner99f48c62002-09-02 04:59:56 +000088 // removeFromWorkList - remove all instances of I from the worklist.
89 void removeFromWorkList(Instruction *I);
Chris Lattner260ab202002-04-18 17:39:14 +000090 public:
Chris Lattner113f4f42002-06-25 16:13:24 +000091 virtual bool runOnFunction(Function &F);
Chris Lattner260ab202002-04-18 17:39:14 +000092
Chris Lattnerf12cc842002-04-28 21:27:06 +000093 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerf4ad1652003-11-02 05:57:39 +000094 AU.addRequired<TargetData>();
Chris Lattner820d9712002-10-21 20:00:28 +000095 AU.setPreservesCFG();
Chris Lattnerf12cc842002-04-28 21:27:06 +000096 }
97
Chris Lattner69193f92004-04-05 01:30:19 +000098 TargetData &getTargetData() const { return *TD; }
99
Chris Lattner260ab202002-04-18 17:39:14 +0000100 // Visitation implementation - Implement instruction combining for different
101 // instruction types. The semantics are as follows:
102 // Return Value:
103 // null - No change was made
Chris Lattnere6794492002-08-12 21:17:25 +0000104 // I - Change was made, I is still valid, I may be dead though
Chris Lattner260ab202002-04-18 17:39:14 +0000105 // otherwise - Change was made, replace I with returned instruction
106 //
Chris Lattner113f4f42002-06-25 16:13:24 +0000107 Instruction *visitAdd(BinaryOperator &I);
108 Instruction *visitSub(BinaryOperator &I);
109 Instruction *visitMul(BinaryOperator &I);
110 Instruction *visitDiv(BinaryOperator &I);
111 Instruction *visitRem(BinaryOperator &I);
112 Instruction *visitAnd(BinaryOperator &I);
113 Instruction *visitOr (BinaryOperator &I);
114 Instruction *visitXor(BinaryOperator &I);
115 Instruction *visitSetCondInst(BinaryOperator &I);
Chris Lattnere8d6c602003-03-10 19:16:08 +0000116 Instruction *visitShiftInst(ShiftInst &I);
Chris Lattner113f4f42002-06-25 16:13:24 +0000117 Instruction *visitCastInst(CastInst &CI);
Chris Lattnerb909e8b2004-03-12 05:52:32 +0000118 Instruction *visitSelectInst(SelectInst &CI);
Chris Lattner970c33a2003-06-19 17:00:31 +0000119 Instruction *visitCallInst(CallInst &CI);
120 Instruction *visitInvokeInst(InvokeInst &II);
Chris Lattner113f4f42002-06-25 16:13:24 +0000121 Instruction *visitPHINode(PHINode &PN);
122 Instruction *visitGetElementPtrInst(GetElementPtrInst &GEP);
Chris Lattner1085bdf2002-11-04 16:18:53 +0000123 Instruction *visitAllocationInst(AllocationInst &AI);
Chris Lattner8427bff2003-12-07 01:24:23 +0000124 Instruction *visitFreeInst(FreeInst &FI);
Chris Lattner0f1d8a32003-06-26 05:06:25 +0000125 Instruction *visitLoadInst(LoadInst &LI);
Chris Lattner9eef8a72003-06-04 04:46:00 +0000126 Instruction *visitBranchInst(BranchInst &BI);
Chris Lattner4c9c20a2004-07-03 00:26:11 +0000127 Instruction *visitSwitchInst(SwitchInst &SI);
Chris Lattner260ab202002-04-18 17:39:14 +0000128
129 // visitInstruction - Specify what to return for unhandled instructions...
Chris Lattner113f4f42002-06-25 16:13:24 +0000130 Instruction *visitInstruction(Instruction &I) { return 0; }
Chris Lattner6d14f2a2002-08-09 23:47:40 +0000131
Chris Lattner970c33a2003-06-19 17:00:31 +0000132 private:
Chris Lattneraec3d942003-10-07 22:32:43 +0000133 Instruction *visitCallSite(CallSite CS);
Chris Lattner970c33a2003-06-19 17:00:31 +0000134 bool transformConstExprCastCall(CallSite CS);
135
Chris Lattner69193f92004-04-05 01:30:19 +0000136 public:
Chris Lattner6d14f2a2002-08-09 23:47:40 +0000137 // InsertNewInstBefore - insert an instruction New before instruction Old
138 // in the program. Add the new instruction to the worklist.
139 //
Chris Lattnere79e8542004-02-23 06:38:22 +0000140 Value *InsertNewInstBefore(Instruction *New, Instruction &Old) {
Chris Lattner65217ff2002-08-23 18:32:43 +0000141 assert(New && New->getParent() == 0 &&
142 "New instruction already inserted into a basic block!");
Chris Lattner6d14f2a2002-08-09 23:47:40 +0000143 BasicBlock *BB = Old.getParent();
144 BB->getInstList().insert(&Old, New); // Insert inst
145 WorkList.push_back(New); // Add to worklist
Chris Lattnere79e8542004-02-23 06:38:22 +0000146 return New;
Chris Lattner6d14f2a2002-08-09 23:47:40 +0000147 }
148
149 // ReplaceInstUsesWith - This method is to be used when an instruction is
150 // found to be dead, replacable with another preexisting expression. Here
151 // we add all uses of I to the worklist, replace all uses of I with the new
152 // value, then return I, so that the inst combiner will know that I was
153 // modified.
154 //
155 Instruction *ReplaceInstUsesWith(Instruction &I, Value *V) {
Chris Lattner51ea1272004-02-28 05:22:00 +0000156 AddUsersToWorkList(I); // Add all modified instrs to worklist
Chris Lattner8953b902004-04-05 02:10:19 +0000157 if (&I != V) {
158 I.replaceAllUsesWith(V);
159 return &I;
160 } else {
161 // If we are replacing the instruction with itself, this must be in a
162 // segment of unreachable code, so just clobber the instruction.
163 I.replaceAllUsesWith(Constant::getNullValue(I.getType()));
164 return &I;
165 }
Chris Lattner6d14f2a2002-08-09 23:47:40 +0000166 }
Chris Lattner51ea1272004-02-28 05:22:00 +0000167
168 // EraseInstFromFunction - When dealing with an instruction that has side
169 // effects or produces a void value, we can't rely on DCE to delete the
170 // instruction. Instead, visit methods should return the value returned by
171 // this function.
172 Instruction *EraseInstFromFunction(Instruction &I) {
173 assert(I.use_empty() && "Cannot erase instruction that is used!");
174 AddUsesToWorkList(I);
175 removeFromWorkList(&I);
176 I.getParent()->getInstList().erase(&I);
177 return 0; // Don't do anything with FI
178 }
179
180
Chris Lattner3ac7c262003-08-13 20:16:26 +0000181 private:
Chris Lattnerdfae8be2003-07-24 17:35:25 +0000182 /// InsertOperandCastBefore - This inserts a cast of V to DestTy before the
183 /// InsertBefore instruction. This is specialized a bit to avoid inserting
184 /// casts that are known to not do anything...
185 ///
186 Value *InsertOperandCastBefore(Value *V, const Type *DestTy,
187 Instruction *InsertBefore);
188
Chris Lattner7fb29e12003-03-11 00:12:48 +0000189 // SimplifyCommutative - This performs a few simplifications for commutative
190 // operators...
191 bool SimplifyCommutative(BinaryOperator &I);
Chris Lattnerba1cb382003-09-19 17:17:26 +0000192
193 Instruction *OptAndOp(Instruction *Op, ConstantIntegral *OpRHS,
194 ConstantIntegral *AndRHS, BinaryOperator &TheAnd);
Chris Lattner260ab202002-04-18 17:39:14 +0000195 };
Chris Lattnerb28b6802002-07-23 18:06:35 +0000196
Chris Lattnerc8b70922002-07-26 21:12:46 +0000197 RegisterOpt<InstCombiner> X("instcombine", "Combine redundant instructions");
Chris Lattner260ab202002-04-18 17:39:14 +0000198}
199
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000200// getComplexity: Assign a complexity or rank value to LLVM Values...
201// 0 -> Constant, 1 -> Other, 2 -> Argument, 2 -> Unary, 3 -> OtherInst
202static unsigned getComplexity(Value *V) {
203 if (isa<Instruction>(V)) {
204 if (BinaryOperator::isNeg(V) || BinaryOperator::isNot(V))
205 return 2;
206 return 3;
207 }
208 if (isa<Argument>(V)) return 2;
209 return isa<Constant>(V) ? 0 : 1;
210}
Chris Lattner260ab202002-04-18 17:39:14 +0000211
Chris Lattner7fb29e12003-03-11 00:12:48 +0000212// isOnlyUse - Return true if this instruction will be deleted if we stop using
213// it.
214static bool isOnlyUse(Value *V) {
Chris Lattnerf95d9b92003-10-15 16:48:29 +0000215 return V->hasOneUse() || isa<Constant>(V);
Chris Lattner7fb29e12003-03-11 00:12:48 +0000216}
217
Chris Lattnere79e8542004-02-23 06:38:22 +0000218// getPromotedType - Return the specified type promoted as it would be to pass
219// though a va_arg area...
220static const Type *getPromotedType(const Type *Ty) {
Chris Lattner97bfcea2004-06-17 18:16:02 +0000221 switch (Ty->getTypeID()) {
Chris Lattnere79e8542004-02-23 06:38:22 +0000222 case Type::SByteTyID:
223 case Type::ShortTyID: return Type::IntTy;
224 case Type::UByteTyID:
225 case Type::UShortTyID: return Type::UIntTy;
226 case Type::FloatTyID: return Type::DoubleTy;
227 default: return Ty;
228 }
229}
230
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000231// SimplifyCommutative - This performs a few simplifications for commutative
232// operators:
Chris Lattner260ab202002-04-18 17:39:14 +0000233//
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000234// 1. Order operands such that they are listed from right (least complex) to
235// left (most complex). This puts constants before unary operators before
236// binary operators.
237//
Chris Lattner7fb29e12003-03-11 00:12:48 +0000238// 2. Transform: (op (op V, C1), C2) ==> (op V, (op C1, C2))
239// 3. Transform: (op (op V1, C1), (op V2, C2)) ==> (op (op V1, V2), (op C1,C2))
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000240//
Chris Lattner7fb29e12003-03-11 00:12:48 +0000241bool InstCombiner::SimplifyCommutative(BinaryOperator &I) {
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000242 bool Changed = false;
243 if (getComplexity(I.getOperand(0)) < getComplexity(I.getOperand(1)))
244 Changed = !I.swapOperands();
245
246 if (!I.isAssociative()) return Changed;
247 Instruction::BinaryOps Opcode = I.getOpcode();
Chris Lattner7fb29e12003-03-11 00:12:48 +0000248 if (BinaryOperator *Op = dyn_cast<BinaryOperator>(I.getOperand(0)))
249 if (Op->getOpcode() == Opcode && isa<Constant>(Op->getOperand(1))) {
250 if (isa<Constant>(I.getOperand(1))) {
Chris Lattner34428442003-05-27 16:40:51 +0000251 Constant *Folded = ConstantExpr::get(I.getOpcode(),
252 cast<Constant>(I.getOperand(1)),
253 cast<Constant>(Op->getOperand(1)));
Chris Lattner7fb29e12003-03-11 00:12:48 +0000254 I.setOperand(0, Op->getOperand(0));
255 I.setOperand(1, Folded);
256 return true;
257 } else if (BinaryOperator *Op1=dyn_cast<BinaryOperator>(I.getOperand(1)))
258 if (Op1->getOpcode() == Opcode && isa<Constant>(Op1->getOperand(1)) &&
259 isOnlyUse(Op) && isOnlyUse(Op1)) {
260 Constant *C1 = cast<Constant>(Op->getOperand(1));
261 Constant *C2 = cast<Constant>(Op1->getOperand(1));
262
263 // Fold (op (op V1, C1), (op V2, C2)) ==> (op (op V1, V2), (op C1,C2))
Chris Lattner34428442003-05-27 16:40:51 +0000264 Constant *Folded = ConstantExpr::get(I.getOpcode(), C1, C2);
Chris Lattner7fb29e12003-03-11 00:12:48 +0000265 Instruction *New = BinaryOperator::create(Opcode, Op->getOperand(0),
266 Op1->getOperand(0),
267 Op1->getName(), &I);
268 WorkList.push_back(New);
269 I.setOperand(0, New);
270 I.setOperand(1, Folded);
271 return true;
272 }
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000273 }
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000274 return Changed;
Chris Lattner260ab202002-04-18 17:39:14 +0000275}
Chris Lattnerca081252001-12-14 16:52:21 +0000276
Chris Lattnerbb74e222003-03-10 23:06:50 +0000277// dyn_castNegVal - Given a 'sub' instruction, return the RHS of the instruction
278// if the LHS is a constant zero (which is the 'negate' form).
Chris Lattner9fa53de2002-05-06 16:49:18 +0000279//
Chris Lattnerbb74e222003-03-10 23:06:50 +0000280static inline Value *dyn_castNegVal(Value *V) {
281 if (BinaryOperator::isNeg(V))
282 return BinaryOperator::getNegArgument(cast<BinaryOperator>(V));
283
Chris Lattner9244df62003-04-30 22:19:10 +0000284 // Constants can be considered to be negated values if they can be folded...
285 if (Constant *C = dyn_cast<Constant>(V))
Chris Lattnerc8e7e292004-06-10 02:12:35 +0000286 return ConstantExpr::getNeg(C);
Chris Lattnerbb74e222003-03-10 23:06:50 +0000287 return 0;
Chris Lattner9fa53de2002-05-06 16:49:18 +0000288}
289
Chris Lattnerbb74e222003-03-10 23:06:50 +0000290static inline Value *dyn_castNotVal(Value *V) {
291 if (BinaryOperator::isNot(V))
292 return BinaryOperator::getNotArgument(cast<BinaryOperator>(V));
293
294 // Constants can be considered to be not'ed values...
Chris Lattnerdd65d862003-04-30 22:34:06 +0000295 if (ConstantIntegral *C = dyn_cast<ConstantIntegral>(V))
Chris Lattnerc8e7e292004-06-10 02:12:35 +0000296 return ConstantExpr::getNot(C);
Chris Lattnerbb74e222003-03-10 23:06:50 +0000297 return 0;
298}
299
Chris Lattner7fb29e12003-03-11 00:12:48 +0000300// dyn_castFoldableMul - If this value is a multiply that can be folded into
301// other computations (because it has a constant operand), return the
302// non-constant operand of the multiply.
303//
304static inline Value *dyn_castFoldableMul(Value *V) {
Chris Lattnerf95d9b92003-10-15 16:48:29 +0000305 if (V->hasOneUse() && V->getType()->isInteger())
Chris Lattner7fb29e12003-03-11 00:12:48 +0000306 if (Instruction *I = dyn_cast<Instruction>(V))
307 if (I->getOpcode() == Instruction::Mul)
308 if (isa<Constant>(I->getOperand(1)))
309 return I->getOperand(0);
310 return 0;
Chris Lattner3082c5a2003-02-18 19:28:33 +0000311}
Chris Lattner31ae8632002-08-14 17:51:49 +0000312
Chris Lattner3082c5a2003-02-18 19:28:33 +0000313// Log2 - Calculate the log base 2 for the specified value if it is exactly a
314// power of 2.
315static unsigned Log2(uint64_t Val) {
316 assert(Val > 1 && "Values 0 and 1 should be handled elsewhere!");
317 unsigned Count = 0;
318 while (Val != 1) {
319 if (Val & 1) return 0; // Multiple bits set?
320 Val >>= 1;
321 ++Count;
322 }
323 return Count;
Chris Lattner31ae8632002-08-14 17:51:49 +0000324}
325
Chris Lattnerb8b97502003-08-13 19:01:45 +0000326
327/// AssociativeOpt - Perform an optimization on an associative operator. This
328/// function is designed to check a chain of associative operators for a
329/// potential to apply a certain optimization. Since the optimization may be
330/// applicable if the expression was reassociated, this checks the chain, then
331/// reassociates the expression as necessary to expose the optimization
332/// opportunity. This makes use of a special Functor, which must define
333/// 'shouldApply' and 'apply' methods.
334///
335template<typename Functor>
336Instruction *AssociativeOpt(BinaryOperator &Root, const Functor &F) {
337 unsigned Opcode = Root.getOpcode();
338 Value *LHS = Root.getOperand(0);
339
340 // Quick check, see if the immediate LHS matches...
341 if (F.shouldApply(LHS))
342 return F.apply(Root);
343
344 // Otherwise, if the LHS is not of the same opcode as the root, return.
345 Instruction *LHSI = dyn_cast<Instruction>(LHS);
Chris Lattnerf95d9b92003-10-15 16:48:29 +0000346 while (LHSI && LHSI->getOpcode() == Opcode && LHSI->hasOneUse()) {
Chris Lattnerb8b97502003-08-13 19:01:45 +0000347 // Should we apply this transform to the RHS?
348 bool ShouldApply = F.shouldApply(LHSI->getOperand(1));
349
350 // If not to the RHS, check to see if we should apply to the LHS...
351 if (!ShouldApply && F.shouldApply(LHSI->getOperand(0))) {
352 cast<BinaryOperator>(LHSI)->swapOperands(); // Make the LHS the RHS
353 ShouldApply = true;
354 }
355
356 // If the functor wants to apply the optimization to the RHS of LHSI,
357 // reassociate the expression from ((? op A) op B) to (? op (A op B))
358 if (ShouldApply) {
359 BasicBlock *BB = Root.getParent();
Chris Lattnerb8b97502003-08-13 19:01:45 +0000360
361 // Now all of the instructions are in the current basic block, go ahead
362 // and perform the reassociation.
363 Instruction *TmpLHSI = cast<Instruction>(Root.getOperand(0));
364
365 // First move the selected RHS to the LHS of the root...
366 Root.setOperand(0, LHSI->getOperand(1));
367
368 // Make what used to be the LHS of the root be the user of the root...
369 Value *ExtraOperand = TmpLHSI->getOperand(1);
Chris Lattner284d3b02004-04-16 18:08:07 +0000370 if (&Root == TmpLHSI) {
Chris Lattner8953b902004-04-05 02:10:19 +0000371 Root.replaceAllUsesWith(Constant::getNullValue(TmpLHSI->getType()));
372 return 0;
373 }
Chris Lattner284d3b02004-04-16 18:08:07 +0000374 Root.replaceAllUsesWith(TmpLHSI); // Users now use TmpLHSI
Chris Lattnerb8b97502003-08-13 19:01:45 +0000375 TmpLHSI->setOperand(1, &Root); // TmpLHSI now uses the root
Chris Lattner284d3b02004-04-16 18:08:07 +0000376 TmpLHSI->getParent()->getInstList().remove(TmpLHSI);
377 BasicBlock::iterator ARI = &Root; ++ARI;
378 BB->getInstList().insert(ARI, TmpLHSI); // Move TmpLHSI to after Root
379 ARI = Root;
Chris Lattnerb8b97502003-08-13 19:01:45 +0000380
381 // Now propagate the ExtraOperand down the chain of instructions until we
382 // get to LHSI.
383 while (TmpLHSI != LHSI) {
384 Instruction *NextLHSI = cast<Instruction>(TmpLHSI->getOperand(0));
Chris Lattner284d3b02004-04-16 18:08:07 +0000385 // Move the instruction to immediately before the chain we are
386 // constructing to avoid breaking dominance properties.
387 NextLHSI->getParent()->getInstList().remove(NextLHSI);
388 BB->getInstList().insert(ARI, NextLHSI);
389 ARI = NextLHSI;
390
Chris Lattnerb8b97502003-08-13 19:01:45 +0000391 Value *NextOp = NextLHSI->getOperand(1);
392 NextLHSI->setOperand(1, ExtraOperand);
393 TmpLHSI = NextLHSI;
394 ExtraOperand = NextOp;
395 }
396
397 // Now that the instructions are reassociated, have the functor perform
398 // the transformation...
399 return F.apply(Root);
400 }
401
402 LHSI = dyn_cast<Instruction>(LHSI->getOperand(0));
403 }
404 return 0;
405}
406
407
408// AddRHS - Implements: X + X --> X << 1
409struct AddRHS {
410 Value *RHS;
411 AddRHS(Value *rhs) : RHS(rhs) {}
412 bool shouldApply(Value *LHS) const { return LHS == RHS; }
413 Instruction *apply(BinaryOperator &Add) const {
414 return new ShiftInst(Instruction::Shl, Add.getOperand(0),
415 ConstantInt::get(Type::UByteTy, 1));
416 }
417};
418
419// AddMaskingAnd - Implements (A & C1)+(B & C2) --> (A & C1)|(B & C2)
420// iff C1&C2 == 0
421struct AddMaskingAnd {
422 Constant *C2;
423 AddMaskingAnd(Constant *c) : C2(c) {}
424 bool shouldApply(Value *LHS) const {
Chris Lattnerd4252a72004-07-30 07:50:03 +0000425 ConstantInt *C1;
426 return match(LHS, m_And(m_Value(), m_ConstantInt(C1))) &&
427 ConstantExpr::getAnd(C1, C2)->isNullValue();
Chris Lattnerb8b97502003-08-13 19:01:45 +0000428 }
429 Instruction *apply(BinaryOperator &Add) const {
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000430 return BinaryOperator::createOr(Add.getOperand(0), Add.getOperand(1));
Chris Lattnerb8b97502003-08-13 19:01:45 +0000431 }
432};
433
Chris Lattner183b3362004-04-09 19:05:30 +0000434static Value *FoldOperationIntoSelectOperand(Instruction &BI, Value *SO,
435 InstCombiner *IC) {
436 // Figure out if the constant is the left or the right argument.
437 bool ConstIsRHS = isa<Constant>(BI.getOperand(1));
438 Constant *ConstOperand = cast<Constant>(BI.getOperand(ConstIsRHS));
Chris Lattnerb8b97502003-08-13 19:01:45 +0000439
Chris Lattner183b3362004-04-09 19:05:30 +0000440 if (Constant *SOC = dyn_cast<Constant>(SO)) {
441 if (ConstIsRHS)
442 return ConstantExpr::get(BI.getOpcode(), SOC, ConstOperand);
443 return ConstantExpr::get(BI.getOpcode(), ConstOperand, SOC);
444 }
445
446 Value *Op0 = SO, *Op1 = ConstOperand;
447 if (!ConstIsRHS)
448 std::swap(Op0, Op1);
449 Instruction *New;
450 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(&BI))
451 New = BinaryOperator::create(BO->getOpcode(), Op0, Op1);
452 else if (ShiftInst *SI = dyn_cast<ShiftInst>(&BI))
453 New = new ShiftInst(SI->getOpcode(), Op0, Op1);
Chris Lattnerf9d96652004-04-10 19:15:56 +0000454 else {
Chris Lattner183b3362004-04-09 19:05:30 +0000455 assert(0 && "Unknown binary instruction type!");
Chris Lattnerf9d96652004-04-10 19:15:56 +0000456 abort();
457 }
Chris Lattner183b3362004-04-09 19:05:30 +0000458 return IC->InsertNewInstBefore(New, BI);
459}
460
461// FoldBinOpIntoSelect - Given an instruction with a select as one operand and a
462// constant as the other operand, try to fold the binary operator into the
463// select arguments.
464static Instruction *FoldBinOpIntoSelect(Instruction &BI, SelectInst *SI,
465 InstCombiner *IC) {
466 // Don't modify shared select instructions
467 if (!SI->hasOneUse()) return 0;
468 Value *TV = SI->getOperand(1);
469 Value *FV = SI->getOperand(2);
470
471 if (isa<Constant>(TV) || isa<Constant>(FV)) {
472 Value *SelectTrueVal = FoldOperationIntoSelectOperand(BI, TV, IC);
473 Value *SelectFalseVal = FoldOperationIntoSelectOperand(BI, FV, IC);
474
475 return new SelectInst(SI->getCondition(), SelectTrueVal,
476 SelectFalseVal);
477 }
478 return 0;
479}
Chris Lattnerb8b97502003-08-13 19:01:45 +0000480
Chris Lattner113f4f42002-06-25 16:13:24 +0000481Instruction *InstCombiner::visitAdd(BinaryOperator &I) {
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000482 bool Changed = SimplifyCommutative(I);
Chris Lattner113f4f42002-06-25 16:13:24 +0000483 Value *LHS = I.getOperand(0), *RHS = I.getOperand(1);
Chris Lattner9fa53de2002-05-06 16:49:18 +0000484
Chris Lattnercf4a9962004-04-10 22:01:55 +0000485 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
486 // X + 0 --> X
487 if (!I.getType()->isFloatingPoint() && // -0 + +0 = +0, so it's not a noop
488 RHSC->isNullValue())
489 return ReplaceInstUsesWith(I, LHS);
490
491 // X + (signbit) --> X ^ signbit
492 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHSC)) {
493 unsigned NumBits = CI->getType()->getPrimitiveSize()*8;
494 uint64_t Val = CI->getRawValue() & (1ULL << NumBits)-1;
495 if (Val == (1ULL << NumBits-1))
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000496 return BinaryOperator::createXor(LHS, RHS);
Chris Lattnercf4a9962004-04-10 22:01:55 +0000497 }
498 }
Chris Lattner9fa53de2002-05-06 16:49:18 +0000499
Chris Lattnerb8b97502003-08-13 19:01:45 +0000500 // X + X --> X << 1
Robert Bocchino7b5b86c2004-07-27 21:02:21 +0000501 if (I.getType()->isInteger()) {
Chris Lattnerb8b97502003-08-13 19:01:45 +0000502 if (Instruction *Result = AssociativeOpt(I, AddRHS(RHS))) return Result;
Robert Bocchino7b5b86c2004-07-27 21:02:21 +0000503 }
Chris Lattnerede3fe02003-08-13 04:18:28 +0000504
Chris Lattner147e9752002-05-08 22:46:53 +0000505 // -A + B --> B - A
Chris Lattnerbb74e222003-03-10 23:06:50 +0000506 if (Value *V = dyn_castNegVal(LHS))
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000507 return BinaryOperator::createSub(RHS, V);
Chris Lattner9fa53de2002-05-06 16:49:18 +0000508
509 // A + -B --> A - B
Chris Lattnerbb74e222003-03-10 23:06:50 +0000510 if (!isa<Constant>(RHS))
511 if (Value *V = dyn_castNegVal(RHS))
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000512 return BinaryOperator::createSub(LHS, V);
Chris Lattner260ab202002-04-18 17:39:14 +0000513
Chris Lattner57c8d992003-02-18 19:57:07 +0000514 // X*C + X --> X * (C+1)
515 if (dyn_castFoldableMul(LHS) == RHS) {
Chris Lattner34428442003-05-27 16:40:51 +0000516 Constant *CP1 =
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000517 ConstantExpr::getAdd(
Chris Lattner34428442003-05-27 16:40:51 +0000518 cast<Constant>(cast<Instruction>(LHS)->getOperand(1)),
519 ConstantInt::get(I.getType(), 1));
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000520 return BinaryOperator::createMul(RHS, CP1);
Chris Lattner57c8d992003-02-18 19:57:07 +0000521 }
522
523 // X + X*C --> X * (C+1)
524 if (dyn_castFoldableMul(RHS) == LHS) {
Chris Lattner34428442003-05-27 16:40:51 +0000525 Constant *CP1 =
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000526 ConstantExpr::getAdd(
Chris Lattner34428442003-05-27 16:40:51 +0000527 cast<Constant>(cast<Instruction>(RHS)->getOperand(1)),
528 ConstantInt::get(I.getType(), 1));
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000529 return BinaryOperator::createMul(LHS, CP1);
Chris Lattner57c8d992003-02-18 19:57:07 +0000530 }
531
Chris Lattnerb8b97502003-08-13 19:01:45 +0000532 // (A & C1)+(B & C2) --> (A & C1)|(B & C2) iff C1&C2 == 0
Chris Lattnerd4252a72004-07-30 07:50:03 +0000533 ConstantInt *C2;
534 if (match(RHS, m_And(m_Value(), m_ConstantInt(C2))))
Chris Lattnerb8b97502003-08-13 19:01:45 +0000535 if (Instruction *R = AssociativeOpt(I, AddMaskingAnd(C2))) return R;
Chris Lattner7fb29e12003-03-11 00:12:48 +0000536
Chris Lattnerb9cde762003-10-02 15:11:26 +0000537 if (ConstantInt *CRHS = dyn_cast<ConstantInt>(RHS)) {
Chris Lattnerd4252a72004-07-30 07:50:03 +0000538 Value *X;
539 if (match(LHS, m_Not(m_Value(X)))) { // ~X + C --> (C-1) - X
540 Constant *C= ConstantExpr::getSub(CRHS, ConstantInt::get(I.getType(), 1));
541 return BinaryOperator::createSub(C, X);
Chris Lattnerb9cde762003-10-02 15:11:26 +0000542 }
Chris Lattnerd4252a72004-07-30 07:50:03 +0000543
544 // Try to fold constant add into select arguments.
545 if (SelectInst *SI = dyn_cast<SelectInst>(LHS))
546 if (Instruction *R = FoldBinOpIntoSelect(I, SI, this))
547 return R;
Chris Lattnerb9cde762003-10-02 15:11:26 +0000548 }
549
Chris Lattner113f4f42002-06-25 16:13:24 +0000550 return Changed ? &I : 0;
Chris Lattner260ab202002-04-18 17:39:14 +0000551}
552
Chris Lattnerbdb0ce02003-07-22 21:46:59 +0000553// isSignBit - Return true if the value represented by the constant only has the
554// highest order bit set.
555static bool isSignBit(ConstantInt *CI) {
556 unsigned NumBits = CI->getType()->getPrimitiveSize()*8;
557 return (CI->getRawValue() & ~(-1LL << NumBits)) == (1ULL << (NumBits-1));
558}
559
Chris Lattnerdfae8be2003-07-24 17:35:25 +0000560static unsigned getTypeSizeInBits(const Type *Ty) {
561 return Ty == Type::BoolTy ? 1 : Ty->getPrimitiveSize()*8;
562}
563
Chris Lattner022167f2004-03-13 00:11:49 +0000564/// RemoveNoopCast - Strip off nonconverting casts from the value.
565///
566static Value *RemoveNoopCast(Value *V) {
567 if (CastInst *CI = dyn_cast<CastInst>(V)) {
568 const Type *CTy = CI->getType();
569 const Type *OpTy = CI->getOperand(0)->getType();
570 if (CTy->isInteger() && OpTy->isInteger()) {
571 if (CTy->getPrimitiveSize() == OpTy->getPrimitiveSize())
572 return RemoveNoopCast(CI->getOperand(0));
573 } else if (isa<PointerType>(CTy) && isa<PointerType>(OpTy))
574 return RemoveNoopCast(CI->getOperand(0));
575 }
576 return V;
577}
578
Chris Lattner113f4f42002-06-25 16:13:24 +0000579Instruction *InstCombiner::visitSub(BinaryOperator &I) {
Chris Lattner113f4f42002-06-25 16:13:24 +0000580 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +0000581
Chris Lattnere6794492002-08-12 21:17:25 +0000582 if (Op0 == Op1) // sub X, X -> 0
583 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattner260ab202002-04-18 17:39:14 +0000584
Chris Lattnere6794492002-08-12 21:17:25 +0000585 // If this is a 'B = x-(-A)', change to B = x+A...
Chris Lattnerbb74e222003-03-10 23:06:50 +0000586 if (Value *V = dyn_castNegVal(Op1))
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000587 return BinaryOperator::createAdd(Op0, V);
Chris Lattner9fa53de2002-05-06 16:49:18 +0000588
Chris Lattner8f2f5982003-11-05 01:06:05 +0000589 if (ConstantInt *C = dyn_cast<ConstantInt>(Op0)) {
590 // Replace (-1 - A) with (~A)...
Chris Lattner3082c5a2003-02-18 19:28:33 +0000591 if (C->isAllOnesValue())
592 return BinaryOperator::createNot(Op1);
Chris Lattnerad3c4952002-05-09 01:29:19 +0000593
Chris Lattner8f2f5982003-11-05 01:06:05 +0000594 // C - ~X == X + (1+C)
Chris Lattnerd4252a72004-07-30 07:50:03 +0000595 Value *X;
596 if (match(Op1, m_Not(m_Value(X))))
597 return BinaryOperator::createAdd(X,
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000598 ConstantExpr::getAdd(C, ConstantInt::get(I.getType(), 1)));
Chris Lattner92295c52004-03-12 23:53:13 +0000599 // -((uint)X >> 31) -> ((int)X >> 31)
600 // -((int)X >> 31) -> ((uint)X >> 31)
Chris Lattner022167f2004-03-13 00:11:49 +0000601 if (C->isNullValue()) {
602 Value *NoopCastedRHS = RemoveNoopCast(Op1);
603 if (ShiftInst *SI = dyn_cast<ShiftInst>(NoopCastedRHS))
Chris Lattner92295c52004-03-12 23:53:13 +0000604 if (SI->getOpcode() == Instruction::Shr)
605 if (ConstantUInt *CU = dyn_cast<ConstantUInt>(SI->getOperand(1))) {
606 const Type *NewTy;
Chris Lattner022167f2004-03-13 00:11:49 +0000607 if (SI->getType()->isSigned())
Chris Lattner97bfcea2004-06-17 18:16:02 +0000608 NewTy = SI->getType()->getUnsignedVersion();
Chris Lattner92295c52004-03-12 23:53:13 +0000609 else
Chris Lattner97bfcea2004-06-17 18:16:02 +0000610 NewTy = SI->getType()->getSignedVersion();
Chris Lattner92295c52004-03-12 23:53:13 +0000611 // Check to see if we are shifting out everything but the sign bit.
Chris Lattner022167f2004-03-13 00:11:49 +0000612 if (CU->getValue() == SI->getType()->getPrimitiveSize()*8-1) {
Chris Lattner92295c52004-03-12 23:53:13 +0000613 // Ok, the transformation is safe. Insert a cast of the incoming
614 // value, then the new shift, then the new cast.
615 Instruction *FirstCast = new CastInst(SI->getOperand(0), NewTy,
616 SI->getOperand(0)->getName());
617 Value *InV = InsertNewInstBefore(FirstCast, I);
618 Instruction *NewShift = new ShiftInst(Instruction::Shr, FirstCast,
619 CU, SI->getName());
Chris Lattner022167f2004-03-13 00:11:49 +0000620 if (NewShift->getType() == I.getType())
621 return NewShift;
622 else {
623 InV = InsertNewInstBefore(NewShift, I);
624 return new CastInst(NewShift, I.getType());
625 }
Chris Lattner92295c52004-03-12 23:53:13 +0000626 }
627 }
Chris Lattner022167f2004-03-13 00:11:49 +0000628 }
Chris Lattner183b3362004-04-09 19:05:30 +0000629
630 // Try to fold constant sub into select arguments.
631 if (SelectInst *SI = dyn_cast<SelectInst>(Op1))
632 if (Instruction *R = FoldBinOpIntoSelect(I, SI, this))
633 return R;
Chris Lattner8f2f5982003-11-05 01:06:05 +0000634 }
635
Chris Lattner3082c5a2003-02-18 19:28:33 +0000636 if (BinaryOperator *Op1I = dyn_cast<BinaryOperator>(Op1))
Chris Lattnerf95d9b92003-10-15 16:48:29 +0000637 if (Op1I->hasOneUse()) {
Chris Lattner3082c5a2003-02-18 19:28:33 +0000638 // Replace (x - (y - z)) with (x + (z - y)) if the (y - z) subexpression
639 // is not used by anyone else...
640 //
Chris Lattnerc2f0aa52004-02-02 20:09:56 +0000641 if (Op1I->getOpcode() == Instruction::Sub &&
642 !Op1I->getType()->isFloatingPoint()) {
Chris Lattner3082c5a2003-02-18 19:28:33 +0000643 // Swap the two operands of the subexpr...
644 Value *IIOp0 = Op1I->getOperand(0), *IIOp1 = Op1I->getOperand(1);
645 Op1I->setOperand(0, IIOp1);
646 Op1I->setOperand(1, IIOp0);
647
648 // Create the new top level add instruction...
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000649 return BinaryOperator::createAdd(Op0, Op1);
Chris Lattner3082c5a2003-02-18 19:28:33 +0000650 }
651
652 // Replace (A - (A & B)) with (A & ~B) if this is the only use of (A&B)...
653 //
654 if (Op1I->getOpcode() == Instruction::And &&
655 (Op1I->getOperand(0) == Op0 || Op1I->getOperand(1) == Op0)) {
656 Value *OtherOp = Op1I->getOperand(Op1I->getOperand(0) == Op0);
657
Chris Lattner396dbfe2004-06-09 05:08:07 +0000658 Value *NewNot =
659 InsertNewInstBefore(BinaryOperator::createNot(OtherOp, "B.not"), I);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000660 return BinaryOperator::createAnd(Op0, NewNot);
Chris Lattner3082c5a2003-02-18 19:28:33 +0000661 }
Chris Lattner57c8d992003-02-18 19:57:07 +0000662
663 // X - X*C --> X * (1-C)
664 if (dyn_castFoldableMul(Op1I) == Op0) {
Chris Lattner34428442003-05-27 16:40:51 +0000665 Constant *CP1 =
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000666 ConstantExpr::getSub(ConstantInt::get(I.getType(), 1),
Chris Lattner34428442003-05-27 16:40:51 +0000667 cast<Constant>(cast<Instruction>(Op1)->getOperand(1)));
Chris Lattner57c8d992003-02-18 19:57:07 +0000668 assert(CP1 && "Couldn't constant fold 1-C?");
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000669 return BinaryOperator::createMul(Op0, CP1);
Chris Lattner57c8d992003-02-18 19:57:07 +0000670 }
Chris Lattnerad3c4952002-05-09 01:29:19 +0000671 }
Chris Lattner3082c5a2003-02-18 19:28:33 +0000672
Chris Lattner57c8d992003-02-18 19:57:07 +0000673 // X*C - X --> X * (C-1)
674 if (dyn_castFoldableMul(Op0) == Op1) {
Chris Lattner34428442003-05-27 16:40:51 +0000675 Constant *CP1 =
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000676 ConstantExpr::getSub(cast<Constant>(cast<Instruction>(Op0)->getOperand(1)),
Chris Lattner34428442003-05-27 16:40:51 +0000677 ConstantInt::get(I.getType(), 1));
Chris Lattner57c8d992003-02-18 19:57:07 +0000678 assert(CP1 && "Couldn't constant fold C - 1?");
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000679 return BinaryOperator::createMul(Op1, CP1);
Chris Lattner57c8d992003-02-18 19:57:07 +0000680 }
681
Chris Lattnerf4cdbf32002-05-06 16:14:14 +0000682 return 0;
Chris Lattner260ab202002-04-18 17:39:14 +0000683}
684
Chris Lattnere79e8542004-02-23 06:38:22 +0000685/// isSignBitCheck - Given an exploded setcc instruction, return true if it is
686/// really just returns true if the most significant (sign) bit is set.
687static bool isSignBitCheck(unsigned Opcode, Value *LHS, ConstantInt *RHS) {
688 if (RHS->getType()->isSigned()) {
689 // True if source is LHS < 0 or LHS <= -1
690 return Opcode == Instruction::SetLT && RHS->isNullValue() ||
691 Opcode == Instruction::SetLE && RHS->isAllOnesValue();
692 } else {
693 ConstantUInt *RHSC = cast<ConstantUInt>(RHS);
694 // True if source is LHS > 127 or LHS >= 128, where the constants depend on
695 // the size of the integer type.
696 if (Opcode == Instruction::SetGE)
697 return RHSC->getValue() == 1ULL<<(RHS->getType()->getPrimitiveSize()*8-1);
698 if (Opcode == Instruction::SetGT)
699 return RHSC->getValue() ==
700 (1ULL << (RHS->getType()->getPrimitiveSize()*8-1))-1;
701 }
702 return false;
703}
704
Chris Lattner113f4f42002-06-25 16:13:24 +0000705Instruction *InstCombiner::visitMul(BinaryOperator &I) {
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000706 bool Changed = SimplifyCommutative(I);
Chris Lattner3082c5a2003-02-18 19:28:33 +0000707 Value *Op0 = I.getOperand(0);
Chris Lattner260ab202002-04-18 17:39:14 +0000708
Chris Lattnere6794492002-08-12 21:17:25 +0000709 // Simplify mul instructions with a constant RHS...
Chris Lattner3082c5a2003-02-18 19:28:33 +0000710 if (Constant *Op1 = dyn_cast<Constant>(I.getOperand(1))) {
711 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Chris Lattnerede3fe02003-08-13 04:18:28 +0000712
713 // ((X << C1)*C2) == (X * (C2 << C1))
714 if (ShiftInst *SI = dyn_cast<ShiftInst>(Op0))
715 if (SI->getOpcode() == Instruction::Shl)
716 if (Constant *ShOp = dyn_cast<Constant>(SI->getOperand(1)))
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000717 return BinaryOperator::createMul(SI->getOperand(0),
718 ConstantExpr::getShl(CI, ShOp));
Chris Lattnerc1e7cc02004-01-12 19:35:11 +0000719
Chris Lattnercce81be2003-09-11 22:24:54 +0000720 if (CI->isNullValue())
721 return ReplaceInstUsesWith(I, Op1); // X * 0 == 0
722 if (CI->equalsInt(1)) // X * 1 == X
723 return ReplaceInstUsesWith(I, Op0);
724 if (CI->isAllOnesValue()) // X * -1 == 0 - X
Chris Lattner35236d82003-06-25 17:09:20 +0000725 return BinaryOperator::createNeg(Op0, I.getName());
Chris Lattner31ba1292002-04-29 22:24:47 +0000726
Chris Lattnercce81be2003-09-11 22:24:54 +0000727 int64_t Val = (int64_t)cast<ConstantInt>(CI)->getRawValue();
Chris Lattner3082c5a2003-02-18 19:28:33 +0000728 if (uint64_t C = Log2(Val)) // Replace X*(2^C) with X << C
729 return new ShiftInst(Instruction::Shl, Op0,
730 ConstantUInt::get(Type::UByteTy, C));
Robert Bocchino7b5b86c2004-07-27 21:02:21 +0000731 } else if (ConstantFP *Op1F = dyn_cast<ConstantFP>(Op1)) {
Chris Lattner3082c5a2003-02-18 19:28:33 +0000732 if (Op1F->isNullValue())
733 return ReplaceInstUsesWith(I, Op1);
Chris Lattner31ba1292002-04-29 22:24:47 +0000734
Chris Lattner3082c5a2003-02-18 19:28:33 +0000735 // "In IEEE floating point, x*1 is not equivalent to x for nans. However,
736 // ANSI says we can drop signals, so we can do this anyway." (from GCC)
737 if (Op1F->getValue() == 1.0)
738 return ReplaceInstUsesWith(I, Op0); // Eliminate 'mul double %X, 1.0'
739 }
Chris Lattner183b3362004-04-09 19:05:30 +0000740
741 // Try to fold constant mul into select arguments.
742 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
743 if (Instruction *R = FoldBinOpIntoSelect(I, SI, this))
744 return R;
Chris Lattner260ab202002-04-18 17:39:14 +0000745 }
746
Chris Lattner934a64cf2003-03-10 23:23:04 +0000747 if (Value *Op0v = dyn_castNegVal(Op0)) // -X * -Y = X*Y
748 if (Value *Op1v = dyn_castNegVal(I.getOperand(1)))
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000749 return BinaryOperator::createMul(Op0v, Op1v);
Chris Lattner934a64cf2003-03-10 23:23:04 +0000750
Chris Lattner2635b522004-02-23 05:39:21 +0000751 // If one of the operands of the multiply is a cast from a boolean value, then
752 // we know the bool is either zero or one, so this is a 'masking' multiply.
753 // See if we can simplify things based on how the boolean was originally
754 // formed.
755 CastInst *BoolCast = 0;
756 if (CastInst *CI = dyn_cast<CastInst>(I.getOperand(0)))
757 if (CI->getOperand(0)->getType() == Type::BoolTy)
758 BoolCast = CI;
759 if (!BoolCast)
760 if (CastInst *CI = dyn_cast<CastInst>(I.getOperand(1)))
761 if (CI->getOperand(0)->getType() == Type::BoolTy)
762 BoolCast = CI;
763 if (BoolCast) {
764 if (SetCondInst *SCI = dyn_cast<SetCondInst>(BoolCast->getOperand(0))) {
765 Value *SCIOp0 = SCI->getOperand(0), *SCIOp1 = SCI->getOperand(1);
766 const Type *SCOpTy = SCIOp0->getType();
767
Chris Lattnere79e8542004-02-23 06:38:22 +0000768 // If the setcc is true iff the sign bit of X is set, then convert this
769 // multiply into a shift/and combination.
770 if (isa<ConstantInt>(SCIOp1) &&
771 isSignBitCheck(SCI->getOpcode(), SCIOp0, cast<ConstantInt>(SCIOp1))) {
Chris Lattner2635b522004-02-23 05:39:21 +0000772 // Shift the X value right to turn it into "all signbits".
773 Constant *Amt = ConstantUInt::get(Type::UByteTy,
774 SCOpTy->getPrimitiveSize()*8-1);
Chris Lattnere79e8542004-02-23 06:38:22 +0000775 if (SCIOp0->getType()->isUnsigned()) {
Chris Lattner97bfcea2004-06-17 18:16:02 +0000776 const Type *NewTy = SCIOp0->getType()->getSignedVersion();
Chris Lattnere79e8542004-02-23 06:38:22 +0000777 SCIOp0 = InsertNewInstBefore(new CastInst(SCIOp0, NewTy,
778 SCIOp0->getName()), I);
779 }
780
781 Value *V =
782 InsertNewInstBefore(new ShiftInst(Instruction::Shr, SCIOp0, Amt,
783 BoolCast->getOperand(0)->getName()+
784 ".mask"), I);
Chris Lattner2635b522004-02-23 05:39:21 +0000785
786 // If the multiply type is not the same as the source type, sign extend
787 // or truncate to the multiply type.
788 if (I.getType() != V->getType())
Chris Lattnere79e8542004-02-23 06:38:22 +0000789 V = InsertNewInstBefore(new CastInst(V, I.getType(), V->getName()),I);
Chris Lattner2635b522004-02-23 05:39:21 +0000790
791 Value *OtherOp = Op0 == BoolCast ? I.getOperand(1) : Op0;
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000792 return BinaryOperator::createAnd(V, OtherOp);
Chris Lattner2635b522004-02-23 05:39:21 +0000793 }
794 }
795 }
796
Chris Lattner113f4f42002-06-25 16:13:24 +0000797 return Changed ? &I : 0;
Chris Lattner260ab202002-04-18 17:39:14 +0000798}
799
Chris Lattner113f4f42002-06-25 16:13:24 +0000800Instruction *InstCombiner::visitDiv(BinaryOperator &I) {
Chris Lattner3082c5a2003-02-18 19:28:33 +0000801 if (ConstantInt *RHS = dyn_cast<ConstantInt>(I.getOperand(1))) {
Chris Lattnere20c3342004-04-26 14:01:59 +0000802 // div X, 1 == X
Chris Lattnere6794492002-08-12 21:17:25 +0000803 if (RHS->equalsInt(1))
804 return ReplaceInstUsesWith(I, I.getOperand(0));
Chris Lattner3082c5a2003-02-18 19:28:33 +0000805
Chris Lattnere20c3342004-04-26 14:01:59 +0000806 // div X, -1 == -X
807 if (RHS->isAllOnesValue())
808 return BinaryOperator::createNeg(I.getOperand(0));
809
Chris Lattner3082c5a2003-02-18 19:28:33 +0000810 // Check to see if this is an unsigned division with an exact power of 2,
811 // if so, convert to a right shift.
812 if (ConstantUInt *C = dyn_cast<ConstantUInt>(RHS))
813 if (uint64_t Val = C->getValue()) // Don't break X / 0
814 if (uint64_t C = Log2(Val))
815 return new ShiftInst(Instruction::Shr, I.getOperand(0),
816 ConstantUInt::get(Type::UByteTy, C));
817 }
818
819 // 0 / X == 0, we don't need to preserve faults!
820 if (ConstantInt *LHS = dyn_cast<ConstantInt>(I.getOperand(0)))
821 if (LHS->equalsInt(0))
822 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
823
Chris Lattnerf4cdbf32002-05-06 16:14:14 +0000824 return 0;
825}
826
827
Chris Lattner113f4f42002-06-25 16:13:24 +0000828Instruction *InstCombiner::visitRem(BinaryOperator &I) {
Chris Lattner7fd5f072004-07-06 07:01:22 +0000829 if (I.getType()->isSigned())
830 if (Value *RHSNeg = dyn_castNegVal(I.getOperand(1)))
Chris Lattner98c6bdf2004-07-06 07:11:42 +0000831 if (!isa<ConstantSInt>(RHSNeg) ||
Chris Lattner8e726062004-08-09 21:05:48 +0000832 cast<ConstantSInt>(RHSNeg)->getValue() > 0) {
Chris Lattner7fd5f072004-07-06 07:01:22 +0000833 // X % -Y -> X % Y
834 AddUsesToWorkList(I);
835 I.setOperand(1, RHSNeg);
836 return &I;
837 }
838
Chris Lattner3082c5a2003-02-18 19:28:33 +0000839 if (ConstantInt *RHS = dyn_cast<ConstantInt>(I.getOperand(1))) {
840 if (RHS->equalsInt(1)) // X % 1 == 0
841 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
842
843 // Check to see if this is an unsigned remainder with an exact power of 2,
844 // if so, convert to a bitwise and.
845 if (ConstantUInt *C = dyn_cast<ConstantUInt>(RHS))
846 if (uint64_t Val = C->getValue()) // Don't break X % 0 (divide by zero)
Chris Lattnerd9e58132004-05-07 15:35:56 +0000847 if (!(Val & (Val-1))) // Power of 2
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000848 return BinaryOperator::createAnd(I.getOperand(0),
Chris Lattner3082c5a2003-02-18 19:28:33 +0000849 ConstantUInt::get(I.getType(), Val-1));
850 }
851
852 // 0 % X == 0, we don't need to preserve faults!
853 if (ConstantInt *LHS = dyn_cast<ConstantInt>(I.getOperand(0)))
854 if (LHS->equalsInt(0))
Chris Lattnere6794492002-08-12 21:17:25 +0000855 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
856
Chris Lattnerf4cdbf32002-05-06 16:14:14 +0000857 return 0;
858}
859
Chris Lattner6d14f2a2002-08-09 23:47:40 +0000860// isMaxValueMinusOne - return true if this is Max-1
Chris Lattnere6794492002-08-12 21:17:25 +0000861static bool isMaxValueMinusOne(const ConstantInt *C) {
Chris Lattner6d14f2a2002-08-09 23:47:40 +0000862 if (const ConstantUInt *CU = dyn_cast<ConstantUInt>(C)) {
863 // Calculate -1 casted to the right type...
864 unsigned TypeBits = C->getType()->getPrimitiveSize()*8;
865 uint64_t Val = ~0ULL; // All ones
866 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
867 return CU->getValue() == Val-1;
868 }
869
870 const ConstantSInt *CS = cast<ConstantSInt>(C);
871
872 // Calculate 0111111111..11111
873 unsigned TypeBits = C->getType()->getPrimitiveSize()*8;
874 int64_t Val = INT64_MAX; // All ones
875 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
876 return CS->getValue() == Val-1;
877}
878
879// isMinValuePlusOne - return true if this is Min+1
Chris Lattnere6794492002-08-12 21:17:25 +0000880static bool isMinValuePlusOne(const ConstantInt *C) {
Chris Lattner6d14f2a2002-08-09 23:47:40 +0000881 if (const ConstantUInt *CU = dyn_cast<ConstantUInt>(C))
882 return CU->getValue() == 1;
883
884 const ConstantSInt *CS = cast<ConstantSInt>(C);
885
886 // Calculate 1111111111000000000000
887 unsigned TypeBits = C->getType()->getPrimitiveSize()*8;
888 int64_t Val = -1; // All ones
889 Val <<= TypeBits-1; // Shift over to the right spot
890 return CS->getValue() == Val+1;
891}
892
Chris Lattner35167c32004-06-09 07:59:58 +0000893// isOneBitSet - Return true if there is exactly one bit set in the specified
894// constant.
895static bool isOneBitSet(const ConstantInt *CI) {
896 uint64_t V = CI->getRawValue();
897 return V && (V & (V-1)) == 0;
898}
899
Chris Lattner3ac7c262003-08-13 20:16:26 +0000900/// getSetCondCode - Encode a setcc opcode into a three bit mask. These bits
901/// are carefully arranged to allow folding of expressions such as:
902///
903/// (A < B) | (A > B) --> (A != B)
904///
905/// Bit value '4' represents that the comparison is true if A > B, bit value '2'
906/// represents that the comparison is true if A == B, and bit value '1' is true
907/// if A < B.
908///
909static unsigned getSetCondCode(const SetCondInst *SCI) {
910 switch (SCI->getOpcode()) {
911 // False -> 0
912 case Instruction::SetGT: return 1;
913 case Instruction::SetEQ: return 2;
914 case Instruction::SetGE: return 3;
915 case Instruction::SetLT: return 4;
916 case Instruction::SetNE: return 5;
917 case Instruction::SetLE: return 6;
918 // True -> 7
919 default:
920 assert(0 && "Invalid SetCC opcode!");
921 return 0;
922 }
923}
924
925/// getSetCCValue - This is the complement of getSetCondCode, which turns an
926/// opcode and two operands into either a constant true or false, or a brand new
927/// SetCC instruction.
928static Value *getSetCCValue(unsigned Opcode, Value *LHS, Value *RHS) {
929 switch (Opcode) {
930 case 0: return ConstantBool::False;
931 case 1: return new SetCondInst(Instruction::SetGT, LHS, RHS);
932 case 2: return new SetCondInst(Instruction::SetEQ, LHS, RHS);
933 case 3: return new SetCondInst(Instruction::SetGE, LHS, RHS);
934 case 4: return new SetCondInst(Instruction::SetLT, LHS, RHS);
935 case 5: return new SetCondInst(Instruction::SetNE, LHS, RHS);
936 case 6: return new SetCondInst(Instruction::SetLE, LHS, RHS);
937 case 7: return ConstantBool::True;
938 default: assert(0 && "Illegal SetCCCode!"); return 0;
939 }
940}
941
942// FoldSetCCLogical - Implements (setcc1 A, B) & (setcc2 A, B) --> (setcc3 A, B)
943struct FoldSetCCLogical {
944 InstCombiner &IC;
945 Value *LHS, *RHS;
946 FoldSetCCLogical(InstCombiner &ic, SetCondInst *SCI)
947 : IC(ic), LHS(SCI->getOperand(0)), RHS(SCI->getOperand(1)) {}
948 bool shouldApply(Value *V) const {
949 if (SetCondInst *SCI = dyn_cast<SetCondInst>(V))
950 return (SCI->getOperand(0) == LHS && SCI->getOperand(1) == RHS ||
951 SCI->getOperand(0) == RHS && SCI->getOperand(1) == LHS);
952 return false;
953 }
954 Instruction *apply(BinaryOperator &Log) const {
955 SetCondInst *SCI = cast<SetCondInst>(Log.getOperand(0));
956 if (SCI->getOperand(0) != LHS) {
957 assert(SCI->getOperand(1) == LHS);
958 SCI->swapOperands(); // Swap the LHS and RHS of the SetCC
959 }
960
961 unsigned LHSCode = getSetCondCode(SCI);
962 unsigned RHSCode = getSetCondCode(cast<SetCondInst>(Log.getOperand(1)));
963 unsigned Code;
964 switch (Log.getOpcode()) {
965 case Instruction::And: Code = LHSCode & RHSCode; break;
966 case Instruction::Or: Code = LHSCode | RHSCode; break;
967 case Instruction::Xor: Code = LHSCode ^ RHSCode; break;
Chris Lattner2caaaba2003-09-22 20:33:34 +0000968 default: assert(0 && "Illegal logical opcode!"); return 0;
Chris Lattner3ac7c262003-08-13 20:16:26 +0000969 }
970
971 Value *RV = getSetCCValue(Code, LHS, RHS);
972 if (Instruction *I = dyn_cast<Instruction>(RV))
973 return I;
974 // Otherwise, it's a constant boolean value...
975 return IC.ReplaceInstUsesWith(Log, RV);
976 }
977};
978
979
Chris Lattnerba1cb382003-09-19 17:17:26 +0000980// OptAndOp - This handles expressions of the form ((val OP C1) & C2). Where
981// the Op parameter is 'OP', OpRHS is 'C1', and AndRHS is 'C2'. Op is
982// guaranteed to be either a shift instruction or a binary operator.
983Instruction *InstCombiner::OptAndOp(Instruction *Op,
984 ConstantIntegral *OpRHS,
985 ConstantIntegral *AndRHS,
986 BinaryOperator &TheAnd) {
987 Value *X = Op->getOperand(0);
Chris Lattnerfcf21a72004-01-12 19:47:05 +0000988 Constant *Together = 0;
989 if (!isa<ShiftInst>(Op))
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000990 Together = ConstantExpr::getAnd(AndRHS, OpRHS);
Chris Lattnerc1e7cc02004-01-12 19:35:11 +0000991
Chris Lattnerba1cb382003-09-19 17:17:26 +0000992 switch (Op->getOpcode()) {
993 case Instruction::Xor:
Chris Lattnerc1e7cc02004-01-12 19:35:11 +0000994 if (Together->isNullValue()) {
Chris Lattnerba1cb382003-09-19 17:17:26 +0000995 // (X ^ C1) & C2 --> (X & C2) iff (C1&C2) == 0
Chris Lattnerdf20a4d2004-06-10 02:07:29 +0000996 return BinaryOperator::createAnd(X, AndRHS);
Chris Lattnerf95d9b92003-10-15 16:48:29 +0000997 } else if (Op->hasOneUse()) {
Chris Lattnerba1cb382003-09-19 17:17:26 +0000998 // (X ^ C1) & C2 --> (X & C2) ^ (C1&C2)
999 std::string OpName = Op->getName(); Op->setName("");
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001000 Instruction *And = BinaryOperator::createAnd(X, AndRHS, OpName);
Chris Lattnerba1cb382003-09-19 17:17:26 +00001001 InsertNewInstBefore(And, TheAnd);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001002 return BinaryOperator::createXor(And, Together);
Chris Lattnerba1cb382003-09-19 17:17:26 +00001003 }
1004 break;
1005 case Instruction::Or:
1006 // (X | C1) & C2 --> X & C2 iff C1 & C1 == 0
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00001007 if (Together->isNullValue())
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001008 return BinaryOperator::createAnd(X, AndRHS);
Chris Lattnerba1cb382003-09-19 17:17:26 +00001009 else {
Chris Lattnerba1cb382003-09-19 17:17:26 +00001010 if (Together == AndRHS) // (X | C) & C --> C
1011 return ReplaceInstUsesWith(TheAnd, AndRHS);
1012
Chris Lattnerf95d9b92003-10-15 16:48:29 +00001013 if (Op->hasOneUse() && Together != OpRHS) {
Chris Lattnerba1cb382003-09-19 17:17:26 +00001014 // (X | C1) & C2 --> (X | (C1&C2)) & C2
1015 std::string Op0Name = Op->getName(); Op->setName("");
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001016 Instruction *Or = BinaryOperator::createOr(X, Together, Op0Name);
Chris Lattnerba1cb382003-09-19 17:17:26 +00001017 InsertNewInstBefore(Or, TheAnd);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001018 return BinaryOperator::createAnd(Or, AndRHS);
Chris Lattnerba1cb382003-09-19 17:17:26 +00001019 }
1020 }
1021 break;
1022 case Instruction::Add:
Chris Lattnerf95d9b92003-10-15 16:48:29 +00001023 if (Op->hasOneUse()) {
Chris Lattnerba1cb382003-09-19 17:17:26 +00001024 // Adding a one to a single bit bit-field should be turned into an XOR
1025 // of the bit. First thing to check is to see if this AND is with a
1026 // single bit constant.
Chris Lattner35167c32004-06-09 07:59:58 +00001027 uint64_t AndRHSV = cast<ConstantInt>(AndRHS)->getRawValue();
Chris Lattnerba1cb382003-09-19 17:17:26 +00001028
1029 // Clear bits that are not part of the constant.
1030 AndRHSV &= (1ULL << AndRHS->getType()->getPrimitiveSize()*8)-1;
1031
1032 // If there is only one bit set...
Chris Lattner35167c32004-06-09 07:59:58 +00001033 if (isOneBitSet(cast<ConstantInt>(AndRHS))) {
Chris Lattnerba1cb382003-09-19 17:17:26 +00001034 // Ok, at this point, we know that we are masking the result of the
1035 // ADD down to exactly one bit. If the constant we are adding has
1036 // no bits set below this bit, then we can eliminate the ADD.
Chris Lattner35167c32004-06-09 07:59:58 +00001037 uint64_t AddRHS = cast<ConstantInt>(OpRHS)->getRawValue();
Chris Lattnerba1cb382003-09-19 17:17:26 +00001038
1039 // Check to see if any bits below the one bit set in AndRHSV are set.
1040 if ((AddRHS & (AndRHSV-1)) == 0) {
1041 // If not, the only thing that can effect the output of the AND is
1042 // the bit specified by AndRHSV. If that bit is set, the effect of
1043 // the XOR is to toggle the bit. If it is clear, then the ADD has
1044 // no effect.
1045 if ((AddRHS & AndRHSV) == 0) { // Bit is not set, noop
1046 TheAnd.setOperand(0, X);
1047 return &TheAnd;
1048 } else {
1049 std::string Name = Op->getName(); Op->setName("");
1050 // Pull the XOR out of the AND.
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001051 Instruction *NewAnd = BinaryOperator::createAnd(X, AndRHS, Name);
Chris Lattnerba1cb382003-09-19 17:17:26 +00001052 InsertNewInstBefore(NewAnd, TheAnd);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001053 return BinaryOperator::createXor(NewAnd, AndRHS);
Chris Lattnerba1cb382003-09-19 17:17:26 +00001054 }
1055 }
1056 }
1057 }
1058 break;
Chris Lattner2da29172003-09-19 19:05:02 +00001059
1060 case Instruction::Shl: {
1061 // We know that the AND will not produce any of the bits shifted in, so if
1062 // the anded constant includes them, clear them now!
1063 //
1064 Constant *AllOne = ConstantIntegral::getAllOnesValue(AndRHS->getType());
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001065 Constant *CI = ConstantExpr::getAnd(AndRHS,
1066 ConstantExpr::getShl(AllOne, OpRHS));
Chris Lattner2da29172003-09-19 19:05:02 +00001067 if (CI != AndRHS) {
1068 TheAnd.setOperand(1, CI);
1069 return &TheAnd;
1070 }
1071 break;
1072 }
1073 case Instruction::Shr:
1074 // We know that the AND will not produce any of the bits shifted in, so if
1075 // the anded constant includes them, clear them now! This only applies to
1076 // unsigned shifts, because a signed shr may bring in set bits!
1077 //
1078 if (AndRHS->getType()->isUnsigned()) {
1079 Constant *AllOne = ConstantIntegral::getAllOnesValue(AndRHS->getType());
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001080 Constant *CI = ConstantExpr::getAnd(AndRHS,
1081 ConstantExpr::getShr(AllOne, OpRHS));
Chris Lattner2da29172003-09-19 19:05:02 +00001082 if (CI != AndRHS) {
1083 TheAnd.setOperand(1, CI);
1084 return &TheAnd;
1085 }
1086 }
1087 break;
Chris Lattnerba1cb382003-09-19 17:17:26 +00001088 }
1089 return 0;
1090}
1091
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001092
Chris Lattner113f4f42002-06-25 16:13:24 +00001093Instruction *InstCombiner::visitAnd(BinaryOperator &I) {
Chris Lattnerdcf240a2003-03-10 21:43:22 +00001094 bool Changed = SimplifyCommutative(I);
Chris Lattner113f4f42002-06-25 16:13:24 +00001095 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001096
1097 // and X, X = X and X, 0 == 0
Chris Lattnere6794492002-08-12 21:17:25 +00001098 if (Op0 == Op1 || Op1 == Constant::getNullValue(I.getType()))
1099 return ReplaceInstUsesWith(I, Op1);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001100
1101 // and X, -1 == X
Chris Lattner49b47ae2003-07-23 17:57:01 +00001102 if (ConstantIntegral *RHS = dyn_cast<ConstantIntegral>(Op1)) {
Chris Lattnere6794492002-08-12 21:17:25 +00001103 if (RHS->isAllOnesValue())
1104 return ReplaceInstUsesWith(I, Op0);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001105
Chris Lattnerba1cb382003-09-19 17:17:26 +00001106 // Optimize a variety of ((val OP C1) & C2) combinations...
1107 if (isa<BinaryOperator>(Op0) || isa<ShiftInst>(Op0)) {
1108 Instruction *Op0I = cast<Instruction>(Op0);
Chris Lattner33217db2003-07-23 19:36:21 +00001109 Value *X = Op0I->getOperand(0);
Chris Lattner16464b32003-07-23 19:25:52 +00001110 if (ConstantInt *Op0CI = dyn_cast<ConstantInt>(Op0I->getOperand(1)))
Chris Lattnerba1cb382003-09-19 17:17:26 +00001111 if (Instruction *Res = OptAndOp(Op0I, Op0CI, RHS, I))
1112 return Res;
Chris Lattner33217db2003-07-23 19:36:21 +00001113 }
Chris Lattner183b3362004-04-09 19:05:30 +00001114
1115 // Try to fold constant and into select arguments.
1116 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
1117 if (Instruction *R = FoldBinOpIntoSelect(I, SI, this))
1118 return R;
Chris Lattner49b47ae2003-07-23 17:57:01 +00001119 }
1120
Chris Lattnerbb74e222003-03-10 23:06:50 +00001121 Value *Op0NotVal = dyn_castNotVal(Op0);
1122 Value *Op1NotVal = dyn_castNotVal(Op1);
Chris Lattner3082c5a2003-02-18 19:28:33 +00001123
Chris Lattner023a4832004-06-18 06:07:51 +00001124 if (Op0NotVal == Op1 || Op1NotVal == Op0) // A & ~A == ~A & A == 0
1125 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
1126
Misha Brukman9c003d82004-07-30 12:50:08 +00001127 // (~A & ~B) == (~(A | B)) - De Morgan's Law
Chris Lattnerbb74e222003-03-10 23:06:50 +00001128 if (Op0NotVal && Op1NotVal && isOnlyUse(Op0) && isOnlyUse(Op1)) {
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001129 Instruction *Or = BinaryOperator::createOr(Op0NotVal, Op1NotVal,
1130 I.getName()+".demorgan");
Chris Lattner49b47ae2003-07-23 17:57:01 +00001131 InsertNewInstBefore(Or, I);
Chris Lattner3082c5a2003-02-18 19:28:33 +00001132 return BinaryOperator::createNot(Or);
1133 }
1134
Chris Lattner3ac7c262003-08-13 20:16:26 +00001135 // (setcc1 A, B) & (setcc2 A, B) --> (setcc3 A, B)
1136 if (SetCondInst *RHS = dyn_cast<SetCondInst>(I.getOperand(1)))
1137 if (Instruction *R = AssociativeOpt(I, FoldSetCCLogical(*this, RHS)))
1138 return R;
1139
Chris Lattner113f4f42002-06-25 16:13:24 +00001140 return Changed ? &I : 0;
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001141}
1142
1143
1144
Chris Lattner113f4f42002-06-25 16:13:24 +00001145Instruction *InstCombiner::visitOr(BinaryOperator &I) {
Chris Lattnerdcf240a2003-03-10 21:43:22 +00001146 bool Changed = SimplifyCommutative(I);
Chris Lattner113f4f42002-06-25 16:13:24 +00001147 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001148
1149 // or X, X = X or X, 0 == X
Chris Lattnere6794492002-08-12 21:17:25 +00001150 if (Op0 == Op1 || Op1 == Constant::getNullValue(I.getType()))
1151 return ReplaceInstUsesWith(I, Op0);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001152
1153 // or X, -1 == -1
Chris Lattner8f0d1562003-07-23 18:29:44 +00001154 if (ConstantIntegral *RHS = dyn_cast<ConstantIntegral>(Op1)) {
Chris Lattnere6794492002-08-12 21:17:25 +00001155 if (RHS->isAllOnesValue())
1156 return ReplaceInstUsesWith(I, Op1);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001157
Chris Lattnerd4252a72004-07-30 07:50:03 +00001158 ConstantInt *C1; Value *X;
1159 // (X & C1) | C2 --> (X | C2) & (C1|C2)
1160 if (match(Op0, m_And(m_Value(X), m_ConstantInt(C1))) && isOnlyUse(Op0)) {
1161 std::string Op0Name = Op0->getName(); Op0->setName("");
1162 Instruction *Or = BinaryOperator::createOr(X, RHS, Op0Name);
1163 InsertNewInstBefore(Or, I);
1164 return BinaryOperator::createAnd(Or, ConstantExpr::getOr(RHS, C1));
1165 }
Chris Lattner8f0d1562003-07-23 18:29:44 +00001166
Chris Lattnerd4252a72004-07-30 07:50:03 +00001167 // (X ^ C1) | C2 --> (X | C2) ^ (C1&~C2)
1168 if (match(Op0, m_Xor(m_Value(X), m_ConstantInt(C1))) && isOnlyUse(Op0)) {
1169 std::string Op0Name = Op0->getName(); Op0->setName("");
1170 Instruction *Or = BinaryOperator::createOr(X, RHS, Op0Name);
1171 InsertNewInstBefore(Or, I);
1172 return BinaryOperator::createXor(Or,
1173 ConstantExpr::getAnd(C1, ConstantExpr::getNot(RHS)));
Chris Lattner8f0d1562003-07-23 18:29:44 +00001174 }
Chris Lattner183b3362004-04-09 19:05:30 +00001175
1176 // Try to fold constant and into select arguments.
1177 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
1178 if (Instruction *R = FoldBinOpIntoSelect(I, SI, this))
1179 return R;
Chris Lattner8f0d1562003-07-23 18:29:44 +00001180 }
1181
Chris Lattner812aab72003-08-12 19:11:07 +00001182 // (A & C1)|(A & C2) == A & (C1|C2)
Chris Lattnerd4252a72004-07-30 07:50:03 +00001183 Value *A, *B; ConstantInt *C1, *C2;
1184 if (match(Op0, m_And(m_Value(A), m_ConstantInt(C1))) &&
1185 match(Op1, m_And(m_Value(B), m_ConstantInt(C2))) && A == B)
1186 return BinaryOperator::createAnd(A, ConstantExpr::getOr(C1, C2));
Chris Lattner812aab72003-08-12 19:11:07 +00001187
Chris Lattnerd4252a72004-07-30 07:50:03 +00001188 if (match(Op0, m_Not(m_Value(A)))) { // ~A | Op1
1189 if (A == Op1) // ~A | A == -1
1190 return ReplaceInstUsesWith(I,
1191 ConstantIntegral::getAllOnesValue(I.getType()));
1192 } else {
1193 A = 0;
1194 }
Chris Lattner3082c5a2003-02-18 19:28:33 +00001195
Chris Lattnerd4252a72004-07-30 07:50:03 +00001196 if (match(Op1, m_Not(m_Value(B)))) { // Op0 | ~B
1197 if (Op0 == B)
1198 return ReplaceInstUsesWith(I,
1199 ConstantIntegral::getAllOnesValue(I.getType()));
Chris Lattner3e327a42003-03-10 23:13:59 +00001200
Misha Brukman9c003d82004-07-30 12:50:08 +00001201 // (~A | ~B) == (~(A & B)) - De Morgan's Law
Chris Lattnerd4252a72004-07-30 07:50:03 +00001202 if (A && isOnlyUse(Op0) && isOnlyUse(Op1)) {
1203 Value *And = InsertNewInstBefore(BinaryOperator::createAnd(A, B,
1204 I.getName()+".demorgan"), I);
1205 return BinaryOperator::createNot(And);
1206 }
Chris Lattner3e327a42003-03-10 23:13:59 +00001207 }
Chris Lattner3082c5a2003-02-18 19:28:33 +00001208
Chris Lattner3ac7c262003-08-13 20:16:26 +00001209 // (setcc1 A, B) | (setcc2 A, B) --> (setcc3 A, B)
1210 if (SetCondInst *RHS = dyn_cast<SetCondInst>(I.getOperand(1)))
1211 if (Instruction *R = AssociativeOpt(I, FoldSetCCLogical(*this, RHS)))
1212 return R;
1213
Chris Lattner113f4f42002-06-25 16:13:24 +00001214 return Changed ? &I : 0;
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001215}
1216
Chris Lattnerc2076352004-02-16 01:20:27 +00001217// XorSelf - Implements: X ^ X --> 0
1218struct XorSelf {
1219 Value *RHS;
1220 XorSelf(Value *rhs) : RHS(rhs) {}
1221 bool shouldApply(Value *LHS) const { return LHS == RHS; }
1222 Instruction *apply(BinaryOperator &Xor) const {
1223 return &Xor;
1224 }
1225};
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001226
1227
Chris Lattner113f4f42002-06-25 16:13:24 +00001228Instruction *InstCombiner::visitXor(BinaryOperator &I) {
Chris Lattnerdcf240a2003-03-10 21:43:22 +00001229 bool Changed = SimplifyCommutative(I);
Chris Lattner113f4f42002-06-25 16:13:24 +00001230 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001231
Chris Lattnerc2076352004-02-16 01:20:27 +00001232 // xor X, X = 0, even if X is nested in a sequence of Xor's.
1233 if (Instruction *Result = AssociativeOpt(I, XorSelf(Op1))) {
1234 assert(Result == &I && "AssociativeOpt didn't work?");
Chris Lattnere6794492002-08-12 21:17:25 +00001235 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattnerc2076352004-02-16 01:20:27 +00001236 }
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001237
Chris Lattner97638592003-07-23 21:37:07 +00001238 if (ConstantIntegral *RHS = dyn_cast<ConstantIntegral>(Op1)) {
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001239 // xor X, 0 == X
Chris Lattner97638592003-07-23 21:37:07 +00001240 if (RHS->isNullValue())
Chris Lattnere6794492002-08-12 21:17:25 +00001241 return ReplaceInstUsesWith(I, Op0);
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001242
Chris Lattner97638592003-07-23 21:37:07 +00001243 if (BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0)) {
Chris Lattnerb8d6e402002-08-20 18:24:26 +00001244 // xor (setcc A, B), true = not (setcc A, B) = setncc A, B
Chris Lattner97638592003-07-23 21:37:07 +00001245 if (SetCondInst *SCI = dyn_cast<SetCondInst>(Op0I))
Chris Lattnerf95d9b92003-10-15 16:48:29 +00001246 if (RHS == ConstantBool::True && SCI->hasOneUse())
Chris Lattnerb8d6e402002-08-20 18:24:26 +00001247 return new SetCondInst(SCI->getInverseCondition(),
1248 SCI->getOperand(0), SCI->getOperand(1));
Chris Lattnere5806662003-11-04 23:50:51 +00001249
Chris Lattner8f2f5982003-11-05 01:06:05 +00001250 // ~(c-X) == X-c-1 == X+(-c-1)
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00001251 if (Op0I->getOpcode() == Instruction::Sub && RHS->isAllOnesValue())
1252 if (Constant *Op0I0C = dyn_cast<Constant>(Op0I->getOperand(0))) {
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001253 Constant *NegOp0I0C = ConstantExpr::getNeg(Op0I0C);
1254 Constant *ConstantRHS = ConstantExpr::getSub(NegOp0I0C,
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00001255 ConstantInt::get(I.getType(), 1));
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001256 return BinaryOperator::createAdd(Op0I->getOperand(1), ConstantRHS);
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00001257 }
Chris Lattner023a4832004-06-18 06:07:51 +00001258
1259 // ~(~X & Y) --> (X | ~Y)
1260 if (Op0I->getOpcode() == Instruction::And && RHS->isAllOnesValue()) {
1261 if (dyn_castNotVal(Op0I->getOperand(1))) Op0I->swapOperands();
1262 if (Value *Op0NotVal = dyn_castNotVal(Op0I->getOperand(0))) {
1263 Instruction *NotY =
1264 BinaryOperator::createNot(Op0I->getOperand(1),
1265 Op0I->getOperand(1)->getName()+".not");
1266 InsertNewInstBefore(NotY, I);
1267 return BinaryOperator::createOr(Op0NotVal, NotY);
1268 }
1269 }
Chris Lattner97638592003-07-23 21:37:07 +00001270
1271 if (ConstantInt *Op0CI = dyn_cast<ConstantInt>(Op0I->getOperand(1)))
Chris Lattnere5806662003-11-04 23:50:51 +00001272 switch (Op0I->getOpcode()) {
1273 case Instruction::Add:
Chris Lattner0f68fa62003-11-04 23:37:10 +00001274 // ~(X-c) --> (-c-1)-X
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00001275 if (RHS->isAllOnesValue()) {
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001276 Constant *NegOp0CI = ConstantExpr::getNeg(Op0CI);
1277 return BinaryOperator::createSub(
1278 ConstantExpr::getSub(NegOp0CI,
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00001279 ConstantInt::get(I.getType(), 1)),
Chris Lattner0f68fa62003-11-04 23:37:10 +00001280 Op0I->getOperand(0));
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00001281 }
Chris Lattnere5806662003-11-04 23:50:51 +00001282 break;
1283 case Instruction::And:
Chris Lattner97638592003-07-23 21:37:07 +00001284 // (X & C1) ^ C2 --> (X & C1) | C2 iff (C1&C2) == 0
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001285 if (ConstantExpr::getAnd(RHS, Op0CI)->isNullValue())
1286 return BinaryOperator::createOr(Op0, RHS);
Chris Lattnere5806662003-11-04 23:50:51 +00001287 break;
1288 case Instruction::Or:
Chris Lattner97638592003-07-23 21:37:07 +00001289 // (X | C1) ^ C2 --> (X | C1) & ~C2 iff (C1&C2) == C2
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001290 if (ConstantExpr::getAnd(RHS, Op0CI) == RHS)
Chris Lattnerc8e7e292004-06-10 02:12:35 +00001291 return BinaryOperator::createAnd(Op0, ConstantExpr::getNot(RHS));
Chris Lattnere5806662003-11-04 23:50:51 +00001292 break;
1293 default: break;
Chris Lattner97638592003-07-23 21:37:07 +00001294 }
Chris Lattnerb8d6e402002-08-20 18:24:26 +00001295 }
Chris Lattner183b3362004-04-09 19:05:30 +00001296
1297 // Try to fold constant and into select arguments.
1298 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
1299 if (Instruction *R = FoldBinOpIntoSelect(I, SI, this))
1300 return R;
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001301 }
1302
Chris Lattnerbb74e222003-03-10 23:06:50 +00001303 if (Value *X = dyn_castNotVal(Op0)) // ~A ^ A == -1
Chris Lattner3082c5a2003-02-18 19:28:33 +00001304 if (X == Op1)
1305 return ReplaceInstUsesWith(I,
1306 ConstantIntegral::getAllOnesValue(I.getType()));
1307
Chris Lattnerbb74e222003-03-10 23:06:50 +00001308 if (Value *X = dyn_castNotVal(Op1)) // A ^ ~A == -1
Chris Lattner3082c5a2003-02-18 19:28:33 +00001309 if (X == Op0)
1310 return ReplaceInstUsesWith(I,
1311 ConstantIntegral::getAllOnesValue(I.getType()));
1312
Chris Lattner1bbb7b62003-03-10 18:24:17 +00001313 if (Instruction *Op1I = dyn_cast<Instruction>(Op1))
Chris Lattnerb36d9082004-02-16 03:54:20 +00001314 if (Op1I->getOpcode() == Instruction::Or) {
Chris Lattner1bbb7b62003-03-10 18:24:17 +00001315 if (Op1I->getOperand(0) == Op0) { // B^(B|A) == (A|B)^B
1316 cast<BinaryOperator>(Op1I)->swapOperands();
1317 I.swapOperands();
1318 std::swap(Op0, Op1);
1319 } else if (Op1I->getOperand(1) == Op0) { // B^(A|B) == (A|B)^B
1320 I.swapOperands();
1321 std::swap(Op0, Op1);
Chris Lattnerb36d9082004-02-16 03:54:20 +00001322 }
1323 } else if (Op1I->getOpcode() == Instruction::Xor) {
1324 if (Op0 == Op1I->getOperand(0)) // A^(A^B) == B
1325 return ReplaceInstUsesWith(I, Op1I->getOperand(1));
1326 else if (Op0 == Op1I->getOperand(1)) // A^(B^A) == B
1327 return ReplaceInstUsesWith(I, Op1I->getOperand(0));
1328 }
Chris Lattner1bbb7b62003-03-10 18:24:17 +00001329
1330 if (Instruction *Op0I = dyn_cast<Instruction>(Op0))
Chris Lattnerf95d9b92003-10-15 16:48:29 +00001331 if (Op0I->getOpcode() == Instruction::Or && Op0I->hasOneUse()) {
Chris Lattner1bbb7b62003-03-10 18:24:17 +00001332 if (Op0I->getOperand(0) == Op1) // (B|A)^B == (A|B)^B
1333 cast<BinaryOperator>(Op0I)->swapOperands();
Chris Lattnerdcf240a2003-03-10 21:43:22 +00001334 if (Op0I->getOperand(1) == Op1) { // (A|B)^B == A & ~B
Chris Lattner396dbfe2004-06-09 05:08:07 +00001335 Value *NotB = InsertNewInstBefore(BinaryOperator::createNot(Op1,
1336 Op1->getName()+".not"), I);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001337 return BinaryOperator::createAnd(Op0I->getOperand(0), NotB);
Chris Lattner1bbb7b62003-03-10 18:24:17 +00001338 }
Chris Lattnerb36d9082004-02-16 03:54:20 +00001339 } else if (Op0I->getOpcode() == Instruction::Xor) {
1340 if (Op1 == Op0I->getOperand(0)) // (A^B)^A == B
1341 return ReplaceInstUsesWith(I, Op0I->getOperand(1));
1342 else if (Op1 == Op0I->getOperand(1)) // (B^A)^A == B
1343 return ReplaceInstUsesWith(I, Op0I->getOperand(0));
Chris Lattner1bbb7b62003-03-10 18:24:17 +00001344 }
1345
Chris Lattner7aa2d472004-08-01 19:42:59 +00001346 // (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0
Chris Lattnerd4252a72004-07-30 07:50:03 +00001347 Value *A, *B; ConstantInt *C1, *C2;
1348 if (match(Op0, m_And(m_Value(A), m_ConstantInt(C1))) &&
1349 match(Op1, m_And(m_Value(B), m_ConstantInt(C2))) &&
Chris Lattner7aa2d472004-08-01 19:42:59 +00001350 ConstantExpr::getAnd(C1, C2)->isNullValue())
Chris Lattnerd4252a72004-07-30 07:50:03 +00001351 return BinaryOperator::createOr(Op0, Op1);
Chris Lattner7fb29e12003-03-11 00:12:48 +00001352
Chris Lattner3ac7c262003-08-13 20:16:26 +00001353 // (setcc1 A, B) ^ (setcc2 A, B) --> (setcc3 A, B)
1354 if (SetCondInst *RHS = dyn_cast<SetCondInst>(I.getOperand(1)))
1355 if (Instruction *R = AssociativeOpt(I, FoldSetCCLogical(*this, RHS)))
1356 return R;
1357
Chris Lattner113f4f42002-06-25 16:13:24 +00001358 return Changed ? &I : 0;
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001359}
1360
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001361// AddOne, SubOne - Add or subtract a constant one from an integer constant...
1362static Constant *AddOne(ConstantInt *C) {
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001363 return ConstantExpr::getAdd(C, ConstantInt::get(C->getType(), 1));
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001364}
1365static Constant *SubOne(ConstantInt *C) {
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001366 return ConstantExpr::getSub(C, ConstantInt::get(C->getType(), 1));
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001367}
1368
Chris Lattner1fc23f32002-05-09 20:11:54 +00001369// isTrueWhenEqual - Return true if the specified setcondinst instruction is
1370// true when both operands are equal...
1371//
Chris Lattner113f4f42002-06-25 16:13:24 +00001372static bool isTrueWhenEqual(Instruction &I) {
1373 return I.getOpcode() == Instruction::SetEQ ||
1374 I.getOpcode() == Instruction::SetGE ||
1375 I.getOpcode() == Instruction::SetLE;
Chris Lattner1fc23f32002-05-09 20:11:54 +00001376}
1377
Chris Lattner113f4f42002-06-25 16:13:24 +00001378Instruction *InstCombiner::visitSetCondInst(BinaryOperator &I) {
Chris Lattnerdcf240a2003-03-10 21:43:22 +00001379 bool Changed = SimplifyCommutative(I);
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001380 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1381 const Type *Ty = Op0->getType();
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001382
1383 // setcc X, X
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001384 if (Op0 == Op1)
1385 return ReplaceInstUsesWith(I, ConstantBool::get(isTrueWhenEqual(I)));
Chris Lattner1fc23f32002-05-09 20:11:54 +00001386
Chris Lattnerd07283a2003-08-13 05:38:46 +00001387 // setcc <global/alloca*>, 0 - Global/Stack value addresses are never null!
1388 if (isa<ConstantPointerNull>(Op1) &&
1389 (isa<GlobalValue>(Op0) || isa<AllocaInst>(Op0)))
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001390 return ReplaceInstUsesWith(I, ConstantBool::get(!isTrueWhenEqual(I)));
1391
Chris Lattnerd07283a2003-08-13 05:38:46 +00001392
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001393 // setcc's with boolean values can always be turned into bitwise operations
1394 if (Ty == Type::BoolTy) {
Chris Lattner4456da62004-08-11 00:50:51 +00001395 switch (I.getOpcode()) {
1396 default: assert(0 && "Invalid setcc instruction!");
1397 case Instruction::SetEQ: { // seteq bool %A, %B -> ~(A^B)
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001398 Instruction *Xor = BinaryOperator::createXor(Op0, Op1, I.getName()+"tmp");
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001399 InsertNewInstBefore(Xor, I);
Chris Lattner16930792003-11-03 04:25:02 +00001400 return BinaryOperator::createNot(Xor);
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001401 }
Chris Lattner4456da62004-08-11 00:50:51 +00001402 case Instruction::SetNE:
1403 return BinaryOperator::createXor(Op0, Op1);
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001404
Chris Lattner4456da62004-08-11 00:50:51 +00001405 case Instruction::SetGT:
1406 std::swap(Op0, Op1); // Change setgt -> setlt
1407 // FALL THROUGH
1408 case Instruction::SetLT: { // setlt bool A, B -> ~X & Y
1409 Instruction *Not = BinaryOperator::createNot(Op0, I.getName()+"tmp");
1410 InsertNewInstBefore(Not, I);
1411 return BinaryOperator::createAnd(Not, Op1);
1412 }
1413 case Instruction::SetGE:
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001414 std::swap(Op0, Op1); // Change setge -> setle
Chris Lattner4456da62004-08-11 00:50:51 +00001415 // FALL THROUGH
1416 case Instruction::SetLE: { // setle bool %A, %B -> ~A | B
1417 Instruction *Not = BinaryOperator::createNot(Op0, I.getName()+"tmp");
1418 InsertNewInstBefore(Not, I);
1419 return BinaryOperator::createOr(Not, Op1);
1420 }
1421 }
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001422 }
1423
Chris Lattner2dd01742004-06-09 04:24:29 +00001424 // See if we are doing a comparison between a constant and an instruction that
1425 // can be folded into the comparison.
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001426 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Chris Lattnere1e10e12004-05-25 06:32:08 +00001427 if (Instruction *LHSI = dyn_cast<Instruction>(Op0))
Chris Lattner2dd01742004-06-09 04:24:29 +00001428 if (LHSI->hasOneUse())
Chris Lattner35167c32004-06-09 07:59:58 +00001429 switch (LHSI->getOpcode()) {
1430 case Instruction::And:
Chris Lattner1638de42004-07-21 19:50:44 +00001431 if (isa<ConstantInt>(LHSI->getOperand(1)) &&
1432 LHSI->getOperand(0)->hasOneUse()) {
Chris Lattner35167c32004-06-09 07:59:58 +00001433 // If this is: (X >> C1) & C2 != C3 (where any shift and any compare
1434 // could exist), turn it into (X & (C2 << C1)) != (C3 << C1). This
1435 // happens a LOT in code produced by the C front-end, for bitfield
1436 // access.
Chris Lattner1638de42004-07-21 19:50:44 +00001437 ShiftInst *Shift = dyn_cast<ShiftInst>(LHSI->getOperand(0));
1438 ConstantUInt *ShAmt;
1439 ShAmt = Shift ? dyn_cast<ConstantUInt>(Shift->getOperand(1)) : 0;
1440 ConstantInt *AndCST = cast<ConstantInt>(LHSI->getOperand(1));
1441 const Type *Ty = LHSI->getType();
Chris Lattner35167c32004-06-09 07:59:58 +00001442
Chris Lattner1638de42004-07-21 19:50:44 +00001443 // We can fold this as long as we can't shift unknown bits
1444 // into the mask. This can only happen with signed shift
1445 // rights, as they sign-extend.
1446 if (ShAmt) {
1447 bool CanFold = Shift->getOpcode() != Instruction::Shr ||
1448 Shift->getType()->isUnsigned();
Chris Lattnerd8f5e2c2004-07-21 20:14:10 +00001449 if (!CanFold) {
Chris Lattner1638de42004-07-21 19:50:44 +00001450 // To test for the bad case of the signed shr, see if any
1451 // of the bits shifted in could be tested after the mask.
Chris Lattnerd8f5e2c2004-07-21 20:14:10 +00001452 Constant *OShAmt = ConstantUInt::get(Type::UByteTy,
1453 Ty->getPrimitiveSize()*8-ShAmt->getValue());
1454 Constant *ShVal =
1455 ConstantExpr::getShl(ConstantInt::getAllOnesValue(Ty), OShAmt);
1456 if (ConstantExpr::getAnd(ShVal, AndCST)->isNullValue())
1457 CanFold = true;
Chris Lattner1638de42004-07-21 19:50:44 +00001458 }
1459
1460 if (CanFold) {
1461 unsigned ShiftOp = Shift->getOpcode() == Instruction::Shl
1462 ? Instruction::Shr : Instruction::Shl;
Chris Lattnerd8f5e2c2004-07-21 20:14:10 +00001463 Constant *NewCst = ConstantExpr::get(ShiftOp, CI, ShAmt);
1464
1465 // Check to see if we are shifting out any of the bits being
1466 // compared.
1467 if (ConstantExpr::get(Shift->getOpcode(), NewCst, ShAmt) != CI){
1468 // If we shifted bits out, the fold is not going to work out.
1469 // As a special case, check to see if this means that the
1470 // result is always true or false now.
1471 if (I.getOpcode() == Instruction::SetEQ)
1472 return ReplaceInstUsesWith(I, ConstantBool::False);
1473 if (I.getOpcode() == Instruction::SetNE)
1474 return ReplaceInstUsesWith(I, ConstantBool::True);
1475 } else {
1476 I.setOperand(1, NewCst);
1477 LHSI->setOperand(1, ConstantExpr::get(ShiftOp, AndCST,ShAmt));
1478 LHSI->setOperand(0, Shift->getOperand(0));
1479 WorkList.push_back(Shift); // Shift is dead.
1480 AddUsesToWorkList(I);
1481 return &I;
1482 }
Chris Lattner1638de42004-07-21 19:50:44 +00001483 }
1484 }
Chris Lattner35167c32004-06-09 07:59:58 +00001485 }
1486 break;
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001487 case Instruction::Div:
1488 if (0 && isa<ConstantInt>(LHSI->getOperand(1))) {
1489 std::cerr << "COULD FOLD: " << *LHSI;
1490 std::cerr << "COULD FOLD: " << I << "\n";
1491 }
1492 break;
Chris Lattner35167c32004-06-09 07:59:58 +00001493 case Instruction::Select:
Chris Lattner2dd01742004-06-09 04:24:29 +00001494 // If either operand of the select is a constant, we can fold the
1495 // comparison into the select arms, which will cause one to be
1496 // constant folded and the select turned into a bitwise or.
1497 Value *Op1 = 0, *Op2 = 0;
Chris Lattner35167c32004-06-09 07:59:58 +00001498 if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(1))) {
Chris Lattner2dd01742004-06-09 04:24:29 +00001499 // Fold the known value into the constant operand.
1500 Op1 = ConstantExpr::get(I.getOpcode(), C, CI);
1501 // Insert a new SetCC of the other select operand.
1502 Op2 = InsertNewInstBefore(new SetCondInst(I.getOpcode(),
Chris Lattner35167c32004-06-09 07:59:58 +00001503 LHSI->getOperand(2), CI,
Chris Lattner2dd01742004-06-09 04:24:29 +00001504 I.getName()), I);
Chris Lattner35167c32004-06-09 07:59:58 +00001505 } else if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(2))) {
Chris Lattner2dd01742004-06-09 04:24:29 +00001506 // Fold the known value into the constant operand.
1507 Op2 = ConstantExpr::get(I.getOpcode(), C, CI);
1508 // Insert a new SetCC of the other select operand.
1509 Op1 = InsertNewInstBefore(new SetCondInst(I.getOpcode(),
Chris Lattner35167c32004-06-09 07:59:58 +00001510 LHSI->getOperand(1), CI,
Chris Lattner2dd01742004-06-09 04:24:29 +00001511 I.getName()), I);
1512 }
1513
1514 if (Op1)
Chris Lattner35167c32004-06-09 07:59:58 +00001515 return new SelectInst(LHSI->getOperand(0), Op1, Op2);
1516 break;
Chris Lattner2dd01742004-06-09 04:24:29 +00001517 }
Chris Lattnere1e10e12004-05-25 06:32:08 +00001518
Chris Lattnerd492a0b2003-07-23 17:02:11 +00001519 // Simplify seteq and setne instructions...
1520 if (I.getOpcode() == Instruction::SetEQ ||
1521 I.getOpcode() == Instruction::SetNE) {
1522 bool isSetNE = I.getOpcode() == Instruction::SetNE;
1523
Chris Lattnercfbce7c2003-07-23 17:26:36 +00001524 // If the first operand is (and|or|xor) with a constant, and the second
Chris Lattnerd492a0b2003-07-23 17:02:11 +00001525 // operand is a constant, simplify a bit.
Chris Lattnerc992add2003-08-13 05:33:12 +00001526 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Op0)) {
1527 switch (BO->getOpcode()) {
Chris Lattner23b47b62004-07-06 07:38:18 +00001528 case Instruction::Rem:
1529 // If we have a signed (X % (2^c)) == 0, turn it into an unsigned one.
1530 if (CI->isNullValue() && isa<ConstantSInt>(BO->getOperand(1)) &&
1531 BO->hasOneUse() &&
1532 cast<ConstantSInt>(BO->getOperand(1))->getValue() > 1)
1533 if (unsigned L2 =
1534 Log2(cast<ConstantSInt>(BO->getOperand(1))->getValue())) {
1535 const Type *UTy = BO->getType()->getUnsignedVersion();
1536 Value *NewX = InsertNewInstBefore(new CastInst(BO->getOperand(0),
1537 UTy, "tmp"), I);
1538 Constant *RHSCst = ConstantUInt::get(UTy, 1ULL << L2);
1539 Value *NewRem =InsertNewInstBefore(BinaryOperator::createRem(NewX,
1540 RHSCst, BO->getName()), I);
1541 return BinaryOperator::create(I.getOpcode(), NewRem,
1542 Constant::getNullValue(UTy));
1543 }
1544 break;
1545
Chris Lattnerc992add2003-08-13 05:33:12 +00001546 case Instruction::Add:
Chris Lattner6e079362004-06-27 22:51:36 +00001547 // Replace ((add A, B) != C) with (A != C-B) if B & C are constants.
1548 if (ConstantInt *BOp1C = dyn_cast<ConstantInt>(BO->getOperand(1))) {
1549 return new SetCondInst(I.getOpcode(), BO->getOperand(0),
1550 ConstantExpr::getSub(CI, BOp1C));
1551 } else if (CI->isNullValue()) {
Chris Lattnerc992add2003-08-13 05:33:12 +00001552 // Replace ((add A, B) != 0) with (A != -B) if A or B is
1553 // efficiently invertible, or if the add has just this one use.
1554 Value *BOp0 = BO->getOperand(0), *BOp1 = BO->getOperand(1);
Chris Lattner6e079362004-06-27 22:51:36 +00001555
Chris Lattnerc992add2003-08-13 05:33:12 +00001556 if (Value *NegVal = dyn_castNegVal(BOp1))
1557 return new SetCondInst(I.getOpcode(), BOp0, NegVal);
1558 else if (Value *NegVal = dyn_castNegVal(BOp0))
1559 return new SetCondInst(I.getOpcode(), NegVal, BOp1);
Chris Lattnerf95d9b92003-10-15 16:48:29 +00001560 else if (BO->hasOneUse()) {
Chris Lattnerc992add2003-08-13 05:33:12 +00001561 Instruction *Neg = BinaryOperator::createNeg(BOp1, BO->getName());
1562 BO->setName("");
1563 InsertNewInstBefore(Neg, I);
1564 return new SetCondInst(I.getOpcode(), BOp0, Neg);
1565 }
1566 }
1567 break;
1568 case Instruction::Xor:
1569 // For the xor case, we can xor two constants together, eliminating
1570 // the explicit xor.
1571 if (Constant *BOC = dyn_cast<Constant>(BO->getOperand(1)))
1572 return BinaryOperator::create(I.getOpcode(), BO->getOperand(0),
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001573 ConstantExpr::getXor(CI, BOC));
Chris Lattnerc992add2003-08-13 05:33:12 +00001574
1575 // FALLTHROUGH
1576 case Instruction::Sub:
1577 // Replace (([sub|xor] A, B) != 0) with (A != B)
1578 if (CI->isNullValue())
1579 return new SetCondInst(I.getOpcode(), BO->getOperand(0),
1580 BO->getOperand(1));
1581 break;
1582
1583 case Instruction::Or:
1584 // If bits are being or'd in that are not present in the constant we
1585 // are comparing against, then the comparison could never succeed!
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00001586 if (Constant *BOC = dyn_cast<Constant>(BO->getOperand(1))) {
Chris Lattnerc8e7e292004-06-10 02:12:35 +00001587 Constant *NotCI = ConstantExpr::getNot(CI);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001588 if (!ConstantExpr::getAnd(BOC, NotCI)->isNullValue())
Chris Lattnerd492a0b2003-07-23 17:02:11 +00001589 return ReplaceInstUsesWith(I, ConstantBool::get(isSetNE));
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00001590 }
Chris Lattnerc992add2003-08-13 05:33:12 +00001591 break;
1592
1593 case Instruction::And:
1594 if (ConstantInt *BOC = dyn_cast<ConstantInt>(BO->getOperand(1))) {
Chris Lattnerd492a0b2003-07-23 17:02:11 +00001595 // If bits are being compared against that are and'd out, then the
1596 // comparison can never succeed!
Chris Lattnerc8e7e292004-06-10 02:12:35 +00001597 if (!ConstantExpr::getAnd(CI,
1598 ConstantExpr::getNot(BOC))->isNullValue())
Chris Lattnerd492a0b2003-07-23 17:02:11 +00001599 return ReplaceInstUsesWith(I, ConstantBool::get(isSetNE));
Chris Lattnerc992add2003-08-13 05:33:12 +00001600
Chris Lattner35167c32004-06-09 07:59:58 +00001601 // If we have ((X & C) == C), turn it into ((X & C) != 0).
Chris Lattneree59d4b2004-06-10 02:33:20 +00001602 if (CI == BOC && isOneBitSet(CI))
Chris Lattner35167c32004-06-09 07:59:58 +00001603 return new SetCondInst(isSetNE ? Instruction::SetEQ :
1604 Instruction::SetNE, Op0,
1605 Constant::getNullValue(CI->getType()));
Chris Lattner35167c32004-06-09 07:59:58 +00001606
Chris Lattnerc992add2003-08-13 05:33:12 +00001607 // Replace (and X, (1 << size(X)-1) != 0) with x < 0, converting X
1608 // to be a signed value as appropriate.
1609 if (isSignBit(BOC)) {
1610 Value *X = BO->getOperand(0);
1611 // If 'X' is not signed, insert a cast now...
1612 if (!BOC->getType()->isSigned()) {
Chris Lattner97bfcea2004-06-17 18:16:02 +00001613 const Type *DestTy = BOC->getType()->getSignedVersion();
Chris Lattnerc992add2003-08-13 05:33:12 +00001614 CastInst *NewCI = new CastInst(X,DestTy,X->getName()+".signed");
1615 InsertNewInstBefore(NewCI, I);
1616 X = NewCI;
1617 }
1618 return new SetCondInst(isSetNE ? Instruction::SetLT :
1619 Instruction::SetGE, X,
1620 Constant::getNullValue(X->getType()));
1621 }
Chris Lattnerd492a0b2003-07-23 17:02:11 +00001622 }
Chris Lattnerc992add2003-08-13 05:33:12 +00001623 default: break;
1624 }
1625 }
Chris Lattner2b55ea32004-02-23 07:16:20 +00001626 } else { // Not a SetEQ/SetNE
1627 // If the LHS is a cast from an integral value of the same size,
1628 if (CastInst *Cast = dyn_cast<CastInst>(Op0)) {
1629 Value *CastOp = Cast->getOperand(0);
1630 const Type *SrcTy = CastOp->getType();
1631 unsigned SrcTySize = SrcTy->getPrimitiveSize();
1632 if (SrcTy != Cast->getType() && SrcTy->isInteger() &&
1633 SrcTySize == Cast->getType()->getPrimitiveSize()) {
1634 assert((SrcTy->isSigned() ^ Cast->getType()->isSigned()) &&
1635 "Source and destination signednesses should differ!");
1636 if (Cast->getType()->isSigned()) {
1637 // If this is a signed comparison, check for comparisons in the
1638 // vicinity of zero.
1639 if (I.getOpcode() == Instruction::SetLT && CI->isNullValue())
1640 // X < 0 => x > 127
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001641 return BinaryOperator::createSetGT(CastOp,
Chris Lattner2b55ea32004-02-23 07:16:20 +00001642 ConstantUInt::get(SrcTy, (1ULL << (SrcTySize*8-1))-1));
1643 else if (I.getOpcode() == Instruction::SetGT &&
1644 cast<ConstantSInt>(CI)->getValue() == -1)
1645 // X > -1 => x < 128
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001646 return BinaryOperator::createSetLT(CastOp,
Chris Lattner2b55ea32004-02-23 07:16:20 +00001647 ConstantUInt::get(SrcTy, 1ULL << (SrcTySize*8-1)));
1648 } else {
1649 ConstantUInt *CUI = cast<ConstantUInt>(CI);
1650 if (I.getOpcode() == Instruction::SetLT &&
1651 CUI->getValue() == 1ULL << (SrcTySize*8-1))
1652 // X < 128 => X > -1
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001653 return BinaryOperator::createSetGT(CastOp,
1654 ConstantSInt::get(SrcTy, -1));
Chris Lattner2b55ea32004-02-23 07:16:20 +00001655 else if (I.getOpcode() == Instruction::SetGT &&
1656 CUI->getValue() == (1ULL << (SrcTySize*8-1))-1)
1657 // X > 127 => X < 0
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001658 return BinaryOperator::createSetLT(CastOp,
1659 Constant::getNullValue(SrcTy));
Chris Lattner2b55ea32004-02-23 07:16:20 +00001660 }
1661 }
1662 }
Chris Lattnere967b342003-06-04 05:10:11 +00001663 }
Chris Lattner791ac1a2003-06-01 03:35:25 +00001664
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001665 // Check to see if we are comparing against the minimum or maximum value...
Chris Lattnere6794492002-08-12 21:17:25 +00001666 if (CI->isMinValue()) {
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001667 if (I.getOpcode() == Instruction::SetLT) // A < MIN -> FALSE
1668 return ReplaceInstUsesWith(I, ConstantBool::False);
1669 if (I.getOpcode() == Instruction::SetGE) // A >= MIN -> TRUE
1670 return ReplaceInstUsesWith(I, ConstantBool::True);
1671 if (I.getOpcode() == Instruction::SetLE) // A <= MIN -> A == MIN
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001672 return BinaryOperator::createSetEQ(Op0, Op1);
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001673 if (I.getOpcode() == Instruction::SetGT) // A > MIN -> A != MIN
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001674 return BinaryOperator::createSetNE(Op0, Op1);
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001675
Chris Lattnere6794492002-08-12 21:17:25 +00001676 } else if (CI->isMaxValue()) {
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001677 if (I.getOpcode() == Instruction::SetGT) // A > MAX -> FALSE
1678 return ReplaceInstUsesWith(I, ConstantBool::False);
1679 if (I.getOpcode() == Instruction::SetLE) // A <= MAX -> TRUE
1680 return ReplaceInstUsesWith(I, ConstantBool::True);
1681 if (I.getOpcode() == Instruction::SetGE) // A >= MAX -> A == MAX
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001682 return BinaryOperator::createSetEQ(Op0, Op1);
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001683 if (I.getOpcode() == Instruction::SetLT) // A < MAX -> A != MAX
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001684 return BinaryOperator::createSetNE(Op0, Op1);
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001685
1686 // Comparing against a value really close to min or max?
1687 } else if (isMinValuePlusOne(CI)) {
1688 if (I.getOpcode() == Instruction::SetLT) // A < MIN+1 -> A == MIN
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001689 return BinaryOperator::createSetEQ(Op0, SubOne(CI));
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001690 if (I.getOpcode() == Instruction::SetGE) // A >= MIN-1 -> A != MIN
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001691 return BinaryOperator::createSetNE(Op0, SubOne(CI));
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001692
1693 } else if (isMaxValueMinusOne(CI)) {
1694 if (I.getOpcode() == Instruction::SetGT) // A > MAX-1 -> A == MAX
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001695 return BinaryOperator::createSetEQ(Op0, AddOne(CI));
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001696 if (I.getOpcode() == Instruction::SetLE) // A <= MAX-1 -> A != MAX
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001697 return BinaryOperator::createSetNE(Op0, AddOne(CI));
Chris Lattner6d14f2a2002-08-09 23:47:40 +00001698 }
Chris Lattner59611142004-02-23 05:47:48 +00001699
1700 // If we still have a setle or setge instruction, turn it into the
1701 // appropriate setlt or setgt instruction. Since the border cases have
1702 // already been handled above, this requires little checking.
1703 //
1704 if (I.getOpcode() == Instruction::SetLE)
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001705 return BinaryOperator::createSetLT(Op0, AddOne(CI));
Chris Lattner59611142004-02-23 05:47:48 +00001706 if (I.getOpcode() == Instruction::SetGE)
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001707 return BinaryOperator::createSetGT(Op0, SubOne(CI));
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001708 }
1709
Chris Lattner16930792003-11-03 04:25:02 +00001710 // Test to see if the operands of the setcc are casted versions of other
1711 // values. If the cast can be stripped off both arguments, we do so now.
Chris Lattner6444c372003-11-03 05:17:03 +00001712 if (CastInst *CI = dyn_cast<CastInst>(Op0)) {
1713 Value *CastOp0 = CI->getOperand(0);
1714 if (CastOp0->getType()->isLosslesslyConvertibleTo(CI->getType()) &&
Chris Lattner7d2a5392004-03-13 23:54:27 +00001715 (isa<Constant>(Op1) || isa<CastInst>(Op1)) &&
Chris Lattner16930792003-11-03 04:25:02 +00001716 (I.getOpcode() == Instruction::SetEQ ||
1717 I.getOpcode() == Instruction::SetNE)) {
1718 // We keep moving the cast from the left operand over to the right
1719 // operand, where it can often be eliminated completely.
Chris Lattner6444c372003-11-03 05:17:03 +00001720 Op0 = CastOp0;
Chris Lattner16930792003-11-03 04:25:02 +00001721
1722 // If operand #1 is a cast instruction, see if we can eliminate it as
1723 // well.
Chris Lattner6444c372003-11-03 05:17:03 +00001724 if (CastInst *CI2 = dyn_cast<CastInst>(Op1))
1725 if (CI2->getOperand(0)->getType()->isLosslesslyConvertibleTo(
Chris Lattner16930792003-11-03 04:25:02 +00001726 Op0->getType()))
Chris Lattner6444c372003-11-03 05:17:03 +00001727 Op1 = CI2->getOperand(0);
Chris Lattner16930792003-11-03 04:25:02 +00001728
1729 // If Op1 is a constant, we can fold the cast into the constant.
1730 if (Op1->getType() != Op0->getType())
1731 if (Constant *Op1C = dyn_cast<Constant>(Op1)) {
1732 Op1 = ConstantExpr::getCast(Op1C, Op0->getType());
1733 } else {
1734 // Otherwise, cast the RHS right before the setcc
1735 Op1 = new CastInst(Op1, Op0->getType(), Op1->getName());
1736 InsertNewInstBefore(cast<Instruction>(Op1), I);
1737 }
1738 return BinaryOperator::create(I.getOpcode(), Op0, Op1);
1739 }
1740
Chris Lattner6444c372003-11-03 05:17:03 +00001741 // Handle the special case of: setcc (cast bool to X), <cst>
1742 // This comes up when you have code like
1743 // int X = A < B;
1744 // if (X) ...
1745 // For generality, we handle any zero-extension of any operand comparison
1746 // with a constant.
1747 if (ConstantInt *ConstantRHS = dyn_cast<ConstantInt>(Op1)) {
1748 const Type *SrcTy = CastOp0->getType();
1749 const Type *DestTy = Op0->getType();
1750 if (SrcTy->getPrimitiveSize() < DestTy->getPrimitiveSize() &&
1751 (SrcTy->isUnsigned() || SrcTy == Type::BoolTy)) {
1752 // Ok, we have an expansion of operand 0 into a new type. Get the
1753 // constant value, masink off bits which are not set in the RHS. These
1754 // could be set if the destination value is signed.
1755 uint64_t ConstVal = ConstantRHS->getRawValue();
1756 ConstVal &= (1ULL << DestTy->getPrimitiveSize()*8)-1;
1757
1758 // If the constant we are comparing it with has high bits set, which
1759 // don't exist in the original value, the values could never be equal,
1760 // because the source would be zero extended.
1761 unsigned SrcBits =
1762 SrcTy == Type::BoolTy ? 1 : SrcTy->getPrimitiveSize()*8;
Chris Lattner7c94d112003-11-05 17:31:36 +00001763 bool HasSignBit = ConstVal & (1ULL << (DestTy->getPrimitiveSize()*8-1));
1764 if (ConstVal & ~((1ULL << SrcBits)-1)) {
Chris Lattner6444c372003-11-03 05:17:03 +00001765 switch (I.getOpcode()) {
1766 default: assert(0 && "Unknown comparison type!");
1767 case Instruction::SetEQ:
1768 return ReplaceInstUsesWith(I, ConstantBool::False);
1769 case Instruction::SetNE:
1770 return ReplaceInstUsesWith(I, ConstantBool::True);
1771 case Instruction::SetLT:
1772 case Instruction::SetLE:
1773 if (DestTy->isSigned() && HasSignBit)
1774 return ReplaceInstUsesWith(I, ConstantBool::False);
1775 return ReplaceInstUsesWith(I, ConstantBool::True);
1776 case Instruction::SetGT:
1777 case Instruction::SetGE:
1778 if (DestTy->isSigned() && HasSignBit)
1779 return ReplaceInstUsesWith(I, ConstantBool::True);
1780 return ReplaceInstUsesWith(I, ConstantBool::False);
1781 }
1782 }
1783
1784 // Otherwise, we can replace the setcc with a setcc of the smaller
1785 // operand value.
1786 Op1 = ConstantExpr::getCast(cast<Constant>(Op1), SrcTy);
1787 return BinaryOperator::create(I.getOpcode(), CastOp0, Op1);
1788 }
1789 }
1790 }
Chris Lattner113f4f42002-06-25 16:13:24 +00001791 return Changed ? &I : 0;
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001792}
1793
1794
1795
Chris Lattnere8d6c602003-03-10 19:16:08 +00001796Instruction *InstCombiner::visitShiftInst(ShiftInst &I) {
Chris Lattner113f4f42002-06-25 16:13:24 +00001797 assert(I.getOperand(1)->getType() == Type::UByteTy);
1798 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnerdeaa0dd2003-08-12 21:53:41 +00001799 bool isLeftShift = I.getOpcode() == Instruction::Shl;
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001800
1801 // shl X, 0 == X and shr X, 0 == X
1802 // shl 0, X == 0 and shr 0, X == 0
1803 if (Op1 == Constant::getNullValue(Type::UByteTy) ||
Chris Lattnere6794492002-08-12 21:17:25 +00001804 Op0 == Constant::getNullValue(Op0->getType()))
1805 return ReplaceInstUsesWith(I, Op0);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001806
Chris Lattnerdeaa0dd2003-08-12 21:53:41 +00001807 // shr int -1, X = -1 (for any arithmetic shift rights of ~0)
1808 if (!isLeftShift)
1809 if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(Op0))
1810 if (CSI->isAllOnesValue())
1811 return ReplaceInstUsesWith(I, CSI);
1812
Chris Lattner183b3362004-04-09 19:05:30 +00001813 // Try to fold constant and into select arguments.
1814 if (isa<Constant>(Op0))
1815 if (SelectInst *SI = dyn_cast<SelectInst>(Op1))
1816 if (Instruction *R = FoldBinOpIntoSelect(I, SI, this))
1817 return R;
1818
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001819 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(Op1)) {
Chris Lattner3204d4e2003-07-24 17:52:58 +00001820 // shl uint X, 32 = 0 and shr ubyte Y, 9 = 0, ... just don't eliminate shr
1821 // of a signed value.
1822 //
Chris Lattnere8d6c602003-03-10 19:16:08 +00001823 unsigned TypeBits = Op0->getType()->getPrimitiveSize()*8;
Chris Lattnerf5ce2542004-02-23 20:30:06 +00001824 if (CUI->getValue() >= TypeBits) {
1825 if (!Op0->getType()->isSigned() || isLeftShift)
1826 return ReplaceInstUsesWith(I, Constant::getNullValue(Op0->getType()));
1827 else {
1828 I.setOperand(1, ConstantUInt::get(Type::UByteTy, TypeBits-1));
1829 return &I;
1830 }
1831 }
Chris Lattner55f3d942002-09-10 23:04:09 +00001832
Chris Lattnerede3fe02003-08-13 04:18:28 +00001833 // ((X*C1) << C2) == (X * (C1 << C2))
1834 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Op0))
1835 if (BO->getOpcode() == Instruction::Mul && isLeftShift)
1836 if (Constant *BOOp = dyn_cast<Constant>(BO->getOperand(1)))
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001837 return BinaryOperator::createMul(BO->getOperand(0),
1838 ConstantExpr::getShl(BOOp, CUI));
Chris Lattnerede3fe02003-08-13 04:18:28 +00001839
Chris Lattner183b3362004-04-09 19:05:30 +00001840 // Try to fold constant and into select arguments.
1841 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
1842 if (Instruction *R = FoldBinOpIntoSelect(I, SI, this))
1843 return R;
Chris Lattnerede3fe02003-08-13 04:18:28 +00001844
Chris Lattnerdeaa0dd2003-08-12 21:53:41 +00001845 // If the operand is an bitwise operator with a constant RHS, and the
1846 // shift is the only use, we can pull it out of the shift.
Chris Lattnerf95d9b92003-10-15 16:48:29 +00001847 if (Op0->hasOneUse())
Chris Lattnerdeaa0dd2003-08-12 21:53:41 +00001848 if (BinaryOperator *Op0BO = dyn_cast<BinaryOperator>(Op0))
1849 if (ConstantInt *Op0C = dyn_cast<ConstantInt>(Op0BO->getOperand(1))) {
1850 bool isValid = true; // Valid only for And, Or, Xor
1851 bool highBitSet = false; // Transform if high bit of constant set?
1852
1853 switch (Op0BO->getOpcode()) {
1854 default: isValid = false; break; // Do not perform transform!
1855 case Instruction::Or:
1856 case Instruction::Xor:
1857 highBitSet = false;
1858 break;
1859 case Instruction::And:
1860 highBitSet = true;
1861 break;
1862 }
1863
1864 // If this is a signed shift right, and the high bit is modified
1865 // by the logical operation, do not perform the transformation.
1866 // The highBitSet boolean indicates the value of the high bit of
1867 // the constant which would cause it to be modified for this
1868 // operation.
1869 //
1870 if (isValid && !isLeftShift && !I.getType()->isUnsigned()) {
1871 uint64_t Val = Op0C->getRawValue();
1872 isValid = ((Val & (1 << (TypeBits-1))) != 0) == highBitSet;
1873 }
1874
1875 if (isValid) {
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00001876 Constant *NewRHS = ConstantExpr::get(I.getOpcode(), Op0C, CUI);
Chris Lattnerdeaa0dd2003-08-12 21:53:41 +00001877
1878 Instruction *NewShift =
1879 new ShiftInst(I.getOpcode(), Op0BO->getOperand(0), CUI,
1880 Op0BO->getName());
1881 Op0BO->setName("");
1882 InsertNewInstBefore(NewShift, I);
1883
1884 return BinaryOperator::create(Op0BO->getOpcode(), NewShift,
1885 NewRHS);
1886 }
1887 }
1888
Chris Lattner3204d4e2003-07-24 17:52:58 +00001889 // If this is a shift of a shift, see if we can fold the two together...
Chris Lattnerdeaa0dd2003-08-12 21:53:41 +00001890 if (ShiftInst *Op0SI = dyn_cast<ShiftInst>(Op0))
Chris Lattnerab780df2003-07-24 18:38:56 +00001891 if (ConstantUInt *ShiftAmt1C =
1892 dyn_cast<ConstantUInt>(Op0SI->getOperand(1))) {
Chris Lattner3204d4e2003-07-24 17:52:58 +00001893 unsigned ShiftAmt1 = ShiftAmt1C->getValue();
1894 unsigned ShiftAmt2 = CUI->getValue();
1895
1896 // Check for (A << c1) << c2 and (A >> c1) >> c2
1897 if (I.getOpcode() == Op0SI->getOpcode()) {
1898 unsigned Amt = ShiftAmt1+ShiftAmt2; // Fold into one big shift...
Chris Lattnerf5ce2542004-02-23 20:30:06 +00001899 if (Op0->getType()->getPrimitiveSize()*8 < Amt)
1900 Amt = Op0->getType()->getPrimitiveSize()*8;
Chris Lattner3204d4e2003-07-24 17:52:58 +00001901 return new ShiftInst(I.getOpcode(), Op0SI->getOperand(0),
1902 ConstantUInt::get(Type::UByteTy, Amt));
1903 }
1904
Chris Lattnerab780df2003-07-24 18:38:56 +00001905 // Check for (A << c1) >> c2 or visaversa. If we are dealing with
1906 // signed types, we can only support the (A >> c1) << c2 configuration,
1907 // because it can not turn an arbitrary bit of A into a sign bit.
Chris Lattnerdeaa0dd2003-08-12 21:53:41 +00001908 if (I.getType()->isUnsigned() || isLeftShift) {
Chris Lattner3204d4e2003-07-24 17:52:58 +00001909 // Calculate bitmask for what gets shifted off the edge...
1910 Constant *C = ConstantIntegral::getAllOnesValue(I.getType());
Chris Lattnerdeaa0dd2003-08-12 21:53:41 +00001911 if (isLeftShift)
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001912 C = ConstantExpr::getShl(C, ShiftAmt1C);
Chris Lattnerdeaa0dd2003-08-12 21:53:41 +00001913 else
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001914 C = ConstantExpr::getShr(C, ShiftAmt1C);
Chris Lattner3204d4e2003-07-24 17:52:58 +00001915
1916 Instruction *Mask =
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001917 BinaryOperator::createAnd(Op0SI->getOperand(0), C,
1918 Op0SI->getOperand(0)->getName()+".mask");
Chris Lattner3204d4e2003-07-24 17:52:58 +00001919 InsertNewInstBefore(Mask, I);
1920
1921 // Figure out what flavor of shift we should use...
1922 if (ShiftAmt1 == ShiftAmt2)
1923 return ReplaceInstUsesWith(I, Mask); // (A << c) >> c === A & c2
1924 else if (ShiftAmt1 < ShiftAmt2) {
1925 return new ShiftInst(I.getOpcode(), Mask,
1926 ConstantUInt::get(Type::UByteTy, ShiftAmt2-ShiftAmt1));
1927 } else {
1928 return new ShiftInst(Op0SI->getOpcode(), Mask,
1929 ConstantUInt::get(Type::UByteTy, ShiftAmt1-ShiftAmt2));
1930 }
1931 }
1932 }
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001933 }
Chris Lattner2e0fb392002-10-08 16:16:40 +00001934
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001935 return 0;
1936}
1937
Chris Lattner4e2dbc62004-07-20 00:59:32 +00001938enum CastType {
1939 Noop = 0,
1940 Truncate = 1,
1941 Signext = 2,
1942 Zeroext = 3
1943};
1944
1945/// getCastType - In the future, we will split the cast instruction into these
1946/// various types. Until then, we have to do the analysis here.
1947static CastType getCastType(const Type *Src, const Type *Dest) {
1948 assert(Src->isIntegral() && Dest->isIntegral() &&
1949 "Only works on integral types!");
1950 unsigned SrcSize = Src->getPrimitiveSize()*8;
1951 if (Src == Type::BoolTy) SrcSize = 1;
1952 unsigned DestSize = Dest->getPrimitiveSize()*8;
1953 if (Dest == Type::BoolTy) DestSize = 1;
1954
1955 if (SrcSize == DestSize) return Noop;
1956 if (SrcSize > DestSize) return Truncate;
1957 if (Src->isSigned()) return Signext;
1958 return Zeroext;
1959}
1960
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00001961
Chris Lattner48a44f72002-05-02 17:06:02 +00001962// isEliminableCastOfCast - Return true if it is valid to eliminate the CI
1963// instruction.
1964//
Chris Lattnerdfae8be2003-07-24 17:35:25 +00001965static inline bool isEliminableCastOfCast(const Type *SrcTy, const Type *MidTy,
Chris Lattner11ffd592004-07-20 05:21:00 +00001966 const Type *DstTy, TargetData *TD) {
Chris Lattner48a44f72002-05-02 17:06:02 +00001967
Chris Lattner650b6da2002-08-02 20:00:25 +00001968 // It is legal to eliminate the instruction if casting A->B->A if the sizes
1969 // are identical and the bits don't get reinterpreted (for example
Chris Lattner1638de42004-07-21 19:50:44 +00001970 // int->float->int would not be allowed).
Misha Brukmane5838c42003-05-20 18:45:36 +00001971 if (SrcTy == DstTy && SrcTy->isLosslesslyConvertibleTo(MidTy))
Chris Lattner650b6da2002-08-02 20:00:25 +00001972 return true;
Chris Lattner48a44f72002-05-02 17:06:02 +00001973
Chris Lattner4fbad962004-07-21 04:27:24 +00001974 // If we are casting between pointer and integer types, treat pointers as
1975 // integers of the appropriate size for the code below.
1976 if (isa<PointerType>(SrcTy)) SrcTy = TD->getIntPtrType();
1977 if (isa<PointerType>(MidTy)) MidTy = TD->getIntPtrType();
1978 if (isa<PointerType>(DstTy)) DstTy = TD->getIntPtrType();
Chris Lattner11ffd592004-07-20 05:21:00 +00001979
Chris Lattner48a44f72002-05-02 17:06:02 +00001980 // Allow free casting and conversion of sizes as long as the sign doesn't
1981 // change...
Chris Lattnerb0b412e2002-09-03 01:08:28 +00001982 if (SrcTy->isIntegral() && MidTy->isIntegral() && DstTy->isIntegral()) {
Chris Lattner4e2dbc62004-07-20 00:59:32 +00001983 CastType FirstCast = getCastType(SrcTy, MidTy);
1984 CastType SecondCast = getCastType(MidTy, DstTy);
Chris Lattner650b6da2002-08-02 20:00:25 +00001985
Chris Lattner4e2dbc62004-07-20 00:59:32 +00001986 // Capture the effect of these two casts. If the result is a legal cast,
1987 // the CastType is stored here, otherwise a special code is used.
1988 static const unsigned CastResult[] = {
1989 // First cast is noop
1990 0, 1, 2, 3,
1991 // First cast is a truncate
1992 1, 1, 4, 4, // trunc->extend is not safe to eliminate
1993 // First cast is a sign ext
Chris Lattner1638de42004-07-21 19:50:44 +00001994 2, 5, 2, 4, // signext->zeroext never ok
Chris Lattner4e2dbc62004-07-20 00:59:32 +00001995 // First cast is a zero ext
Chris Lattner1638de42004-07-21 19:50:44 +00001996 3, 5, 3, 3,
Chris Lattner4e2dbc62004-07-20 00:59:32 +00001997 };
1998
1999 unsigned Result = CastResult[FirstCast*4+SecondCast];
2000 switch (Result) {
2001 default: assert(0 && "Illegal table value!");
2002 case 0:
2003 case 1:
2004 case 2:
2005 case 3:
2006 // FIXME: in the future, when LLVM has explicit sign/zeroextends and
2007 // truncates, we could eliminate more casts.
2008 return (unsigned)getCastType(SrcTy, DstTy) == Result;
2009 case 4:
2010 return false; // Not possible to eliminate this here.
2011 case 5:
Chris Lattner1638de42004-07-21 19:50:44 +00002012 // Sign or zero extend followed by truncate is always ok if the result
2013 // is a truncate or noop.
2014 CastType ResultCast = getCastType(SrcTy, DstTy);
2015 if (ResultCast == Noop || ResultCast == Truncate)
2016 return true;
2017 // Otherwise we are still growing the value, we are only safe if the
2018 // result will match the sign/zeroextendness of the result.
2019 return ResultCast == FirstCast;
Chris Lattner3732aca2002-08-15 16:15:25 +00002020 }
Chris Lattner650b6da2002-08-02 20:00:25 +00002021 }
Chris Lattner48a44f72002-05-02 17:06:02 +00002022 return false;
2023}
2024
Chris Lattner11ffd592004-07-20 05:21:00 +00002025static bool ValueRequiresCast(const Value *V, const Type *Ty, TargetData *TD) {
Chris Lattnerdfae8be2003-07-24 17:35:25 +00002026 if (V->getType() == Ty || isa<Constant>(V)) return false;
2027 if (const CastInst *CI = dyn_cast<CastInst>(V))
Chris Lattner11ffd592004-07-20 05:21:00 +00002028 if (isEliminableCastOfCast(CI->getOperand(0)->getType(), CI->getType(), Ty,
2029 TD))
Chris Lattnerdfae8be2003-07-24 17:35:25 +00002030 return false;
2031 return true;
2032}
2033
2034/// InsertOperandCastBefore - This inserts a cast of V to DestTy before the
2035/// InsertBefore instruction. This is specialized a bit to avoid inserting
2036/// casts that are known to not do anything...
2037///
2038Value *InstCombiner::InsertOperandCastBefore(Value *V, const Type *DestTy,
2039 Instruction *InsertBefore) {
2040 if (V->getType() == DestTy) return V;
2041 if (Constant *C = dyn_cast<Constant>(V))
2042 return ConstantExpr::getCast(C, DestTy);
2043
2044 CastInst *CI = new CastInst(V, DestTy, V->getName());
2045 InsertNewInstBefore(CI, *InsertBefore);
2046 return CI;
2047}
Chris Lattner48a44f72002-05-02 17:06:02 +00002048
2049// CastInst simplification
Chris Lattner260ab202002-04-18 17:39:14 +00002050//
Chris Lattner113f4f42002-06-25 16:13:24 +00002051Instruction *InstCombiner::visitCastInst(CastInst &CI) {
Chris Lattner55d4bda2003-06-23 21:59:52 +00002052 Value *Src = CI.getOperand(0);
2053
Chris Lattner48a44f72002-05-02 17:06:02 +00002054 // If the user is casting a value to the same type, eliminate this cast
2055 // instruction...
Chris Lattner55d4bda2003-06-23 21:59:52 +00002056 if (CI.getType() == Src->getType())
2057 return ReplaceInstUsesWith(CI, Src);
Chris Lattner48a44f72002-05-02 17:06:02 +00002058
Chris Lattner48a44f72002-05-02 17:06:02 +00002059 // If casting the result of another cast instruction, try to eliminate this
2060 // one!
2061 //
Chris Lattner55d4bda2003-06-23 21:59:52 +00002062 if (CastInst *CSrc = dyn_cast<CastInst>(Src)) {
Chris Lattnerdfae8be2003-07-24 17:35:25 +00002063 if (isEliminableCastOfCast(CSrc->getOperand(0)->getType(),
Chris Lattner11ffd592004-07-20 05:21:00 +00002064 CSrc->getType(), CI.getType(), TD)) {
Chris Lattner48a44f72002-05-02 17:06:02 +00002065 // This instruction now refers directly to the cast's src operand. This
2066 // has a good chance of making CSrc dead.
Chris Lattner113f4f42002-06-25 16:13:24 +00002067 CI.setOperand(0, CSrc->getOperand(0));
2068 return &CI;
Chris Lattner48a44f72002-05-02 17:06:02 +00002069 }
2070
Chris Lattner650b6da2002-08-02 20:00:25 +00002071 // If this is an A->B->A cast, and we are dealing with integral types, try
2072 // to convert this into a logical 'and' instruction.
2073 //
2074 if (CSrc->getOperand(0)->getType() == CI.getType() &&
Chris Lattnerb0b412e2002-09-03 01:08:28 +00002075 CI.getType()->isInteger() && CSrc->getType()->isInteger() &&
Chris Lattner650b6da2002-08-02 20:00:25 +00002076 CI.getType()->isUnsigned() && CSrc->getType()->isUnsigned() &&
2077 CSrc->getType()->getPrimitiveSize() < CI.getType()->getPrimitiveSize()){
2078 assert(CSrc->getType() != Type::ULongTy &&
2079 "Cannot have type bigger than ulong!");
Chris Lattner196897c2003-05-26 23:41:32 +00002080 uint64_t AndValue = (1ULL << CSrc->getType()->getPrimitiveSize()*8)-1;
Chris Lattner650b6da2002-08-02 20:00:25 +00002081 Constant *AndOp = ConstantUInt::get(CI.getType(), AndValue);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002082 return BinaryOperator::createAnd(CSrc->getOperand(0), AndOp);
Chris Lattner650b6da2002-08-02 20:00:25 +00002083 }
2084 }
2085
Chris Lattner03841652004-05-25 04:29:21 +00002086 // If this is a cast to bool, turn it into the appropriate setne instruction.
2087 if (CI.getType() == Type::BoolTy)
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002088 return BinaryOperator::createSetNE(CI.getOperand(0),
Chris Lattner03841652004-05-25 04:29:21 +00002089 Constant::getNullValue(CI.getOperand(0)->getType()));
2090
Chris Lattnerd0d51602003-06-21 23:12:02 +00002091 // If casting the result of a getelementptr instruction with no offset, turn
2092 // this into a cast of the original pointer!
2093 //
Chris Lattner55d4bda2003-06-23 21:59:52 +00002094 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Src)) {
Chris Lattnerd0d51602003-06-21 23:12:02 +00002095 bool AllZeroOperands = true;
2096 for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i)
2097 if (!isa<Constant>(GEP->getOperand(i)) ||
2098 !cast<Constant>(GEP->getOperand(i))->isNullValue()) {
2099 AllZeroOperands = false;
2100 break;
2101 }
2102 if (AllZeroOperands) {
2103 CI.setOperand(0, GEP->getOperand(0));
2104 return &CI;
2105 }
2106 }
2107
Chris Lattnerf4ad1652003-11-02 05:57:39 +00002108 // If we are casting a malloc or alloca to a pointer to a type of the same
2109 // size, rewrite the allocation instruction to allocate the "right" type.
2110 //
2111 if (AllocationInst *AI = dyn_cast<AllocationInst>(Src))
Chris Lattnerd4d987d2003-11-02 06:54:48 +00002112 if (AI->hasOneUse() && !AI->isArrayAllocation())
Chris Lattnerf4ad1652003-11-02 05:57:39 +00002113 if (const PointerType *PTy = dyn_cast<PointerType>(CI.getType())) {
2114 // Get the type really allocated and the type casted to...
2115 const Type *AllocElTy = AI->getAllocatedType();
Chris Lattnerf4ad1652003-11-02 05:57:39 +00002116 const Type *CastElTy = PTy->getElementType();
Chris Lattner9eb9ccd2004-07-06 19:28:42 +00002117 if (AllocElTy->isSized() && CastElTy->isSized()) {
2118 unsigned AllocElTySize = TD->getTypeSize(AllocElTy);
2119 unsigned CastElTySize = TD->getTypeSize(CastElTy);
Chris Lattner7c94d112003-11-05 17:31:36 +00002120
Chris Lattner9eb9ccd2004-07-06 19:28:42 +00002121 // If the allocation is for an even multiple of the cast type size
2122 if (CastElTySize && (AllocElTySize % CastElTySize == 0)) {
2123 Value *Amt = ConstantUInt::get(Type::UIntTy,
Chris Lattnerf4ad1652003-11-02 05:57:39 +00002124 AllocElTySize/CastElTySize);
Chris Lattner9eb9ccd2004-07-06 19:28:42 +00002125 std::string Name = AI->getName(); AI->setName("");
2126 AllocationInst *New;
2127 if (isa<MallocInst>(AI))
2128 New = new MallocInst(CastElTy, Amt, Name);
2129 else
2130 New = new AllocaInst(CastElTy, Amt, Name);
2131 InsertNewInstBefore(New, *AI);
2132 return ReplaceInstUsesWith(CI, New);
2133 }
Chris Lattnerf4ad1652003-11-02 05:57:39 +00002134 }
2135 }
2136
Chris Lattnerdfae8be2003-07-24 17:35:25 +00002137 // If the source value is an instruction with only this use, we can attempt to
2138 // propagate the cast into the instruction. Also, only handle integral types
2139 // for now.
2140 if (Instruction *SrcI = dyn_cast<Instruction>(Src))
Chris Lattnerf95d9b92003-10-15 16:48:29 +00002141 if (SrcI->hasOneUse() && Src->getType()->isIntegral() &&
Chris Lattnerdfae8be2003-07-24 17:35:25 +00002142 CI.getType()->isInteger()) { // Don't mess with casts to bool here
2143 const Type *DestTy = CI.getType();
2144 unsigned SrcBitSize = getTypeSizeInBits(Src->getType());
2145 unsigned DestBitSize = getTypeSizeInBits(DestTy);
2146
2147 Value *Op0 = SrcI->getNumOperands() > 0 ? SrcI->getOperand(0) : 0;
2148 Value *Op1 = SrcI->getNumOperands() > 1 ? SrcI->getOperand(1) : 0;
2149
2150 switch (SrcI->getOpcode()) {
2151 case Instruction::Add:
2152 case Instruction::Mul:
2153 case Instruction::And:
2154 case Instruction::Or:
2155 case Instruction::Xor:
2156 // If we are discarding information, or just changing the sign, rewrite.
2157 if (DestBitSize <= SrcBitSize && DestBitSize != 1) {
2158 // Don't insert two casts if they cannot be eliminated. We allow two
2159 // casts to be inserted if the sizes are the same. This could only be
2160 // converting signedness, which is a noop.
Chris Lattner11ffd592004-07-20 05:21:00 +00002161 if (DestBitSize == SrcBitSize || !ValueRequiresCast(Op1, DestTy,TD) ||
2162 !ValueRequiresCast(Op0, DestTy, TD)) {
Chris Lattnerdfae8be2003-07-24 17:35:25 +00002163 Value *Op0c = InsertOperandCastBefore(Op0, DestTy, SrcI);
2164 Value *Op1c = InsertOperandCastBefore(Op1, DestTy, SrcI);
2165 return BinaryOperator::create(cast<BinaryOperator>(SrcI)
2166 ->getOpcode(), Op0c, Op1c);
2167 }
2168 }
2169 break;
2170 case Instruction::Shl:
2171 // Allow changing the sign of the source operand. Do not allow changing
2172 // the size of the shift, UNLESS the shift amount is a constant. We
2173 // mush not change variable sized shifts to a smaller size, because it
2174 // is undefined to shift more bits out than exist in the value.
2175 if (DestBitSize == SrcBitSize ||
2176 (DestBitSize < SrcBitSize && isa<Constant>(Op1))) {
2177 Value *Op0c = InsertOperandCastBefore(Op0, DestTy, SrcI);
2178 return new ShiftInst(Instruction::Shl, Op0c, Op1);
2179 }
2180 break;
2181 }
2182 }
2183
Chris Lattner260ab202002-04-18 17:39:14 +00002184 return 0;
Chris Lattnerca081252001-12-14 16:52:21 +00002185}
2186
Chris Lattner56e4d3d2004-04-09 23:46:01 +00002187/// GetSelectFoldableOperands - We want to turn code that looks like this:
2188/// %C = or %A, %B
2189/// %D = select %cond, %C, %A
2190/// into:
2191/// %C = select %cond, %B, 0
2192/// %D = or %A, %C
2193///
2194/// Assuming that the specified instruction is an operand to the select, return
2195/// a bitmask indicating which operands of this instruction are foldable if they
2196/// equal the other incoming value of the select.
2197///
2198static unsigned GetSelectFoldableOperands(Instruction *I) {
2199 switch (I->getOpcode()) {
2200 case Instruction::Add:
2201 case Instruction::Mul:
2202 case Instruction::And:
2203 case Instruction::Or:
2204 case Instruction::Xor:
2205 return 3; // Can fold through either operand.
2206 case Instruction::Sub: // Can only fold on the amount subtracted.
2207 case Instruction::Shl: // Can only fold on the shift amount.
2208 case Instruction::Shr:
2209 return 1;
2210 default:
2211 return 0; // Cannot fold
2212 }
2213}
2214
2215/// GetSelectFoldableConstant - For the same transformation as the previous
2216/// function, return the identity constant that goes into the select.
2217static Constant *GetSelectFoldableConstant(Instruction *I) {
2218 switch (I->getOpcode()) {
2219 default: assert(0 && "This cannot happen!"); abort();
2220 case Instruction::Add:
2221 case Instruction::Sub:
2222 case Instruction::Or:
2223 case Instruction::Xor:
2224 return Constant::getNullValue(I->getType());
2225 case Instruction::Shl:
2226 case Instruction::Shr:
2227 return Constant::getNullValue(Type::UByteTy);
2228 case Instruction::And:
2229 return ConstantInt::getAllOnesValue(I->getType());
2230 case Instruction::Mul:
2231 return ConstantInt::get(I->getType(), 1);
2232 }
2233}
2234
Chris Lattnerb909e8b2004-03-12 05:52:32 +00002235Instruction *InstCombiner::visitSelectInst(SelectInst &SI) {
Chris Lattner533bc492004-03-30 19:37:13 +00002236 Value *CondVal = SI.getCondition();
2237 Value *TrueVal = SI.getTrueValue();
2238 Value *FalseVal = SI.getFalseValue();
2239
2240 // select true, X, Y -> X
2241 // select false, X, Y -> Y
2242 if (ConstantBool *C = dyn_cast<ConstantBool>(CondVal))
Chris Lattnerb909e8b2004-03-12 05:52:32 +00002243 if (C == ConstantBool::True)
Chris Lattner533bc492004-03-30 19:37:13 +00002244 return ReplaceInstUsesWith(SI, TrueVal);
Chris Lattnerb909e8b2004-03-12 05:52:32 +00002245 else {
2246 assert(C == ConstantBool::False);
Chris Lattner533bc492004-03-30 19:37:13 +00002247 return ReplaceInstUsesWith(SI, FalseVal);
Chris Lattnerb909e8b2004-03-12 05:52:32 +00002248 }
Chris Lattner533bc492004-03-30 19:37:13 +00002249
2250 // select C, X, X -> X
2251 if (TrueVal == FalseVal)
2252 return ReplaceInstUsesWith(SI, TrueVal);
2253
Chris Lattner1c631e82004-04-08 04:43:23 +00002254 if (SI.getType() == Type::BoolTy)
2255 if (ConstantBool *C = dyn_cast<ConstantBool>(TrueVal)) {
2256 if (C == ConstantBool::True) {
2257 // Change: A = select B, true, C --> A = or B, C
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002258 return BinaryOperator::createOr(CondVal, FalseVal);
Chris Lattner1c631e82004-04-08 04:43:23 +00002259 } else {
2260 // Change: A = select B, false, C --> A = and !B, C
2261 Value *NotCond =
2262 InsertNewInstBefore(BinaryOperator::createNot(CondVal,
2263 "not."+CondVal->getName()), SI);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002264 return BinaryOperator::createAnd(NotCond, FalseVal);
Chris Lattner1c631e82004-04-08 04:43:23 +00002265 }
2266 } else if (ConstantBool *C = dyn_cast<ConstantBool>(FalseVal)) {
2267 if (C == ConstantBool::False) {
2268 // Change: A = select B, C, false --> A = and B, C
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002269 return BinaryOperator::createAnd(CondVal, TrueVal);
Chris Lattner1c631e82004-04-08 04:43:23 +00002270 } else {
2271 // Change: A = select B, C, true --> A = or !B, C
2272 Value *NotCond =
2273 InsertNewInstBefore(BinaryOperator::createNot(CondVal,
2274 "not."+CondVal->getName()), SI);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002275 return BinaryOperator::createOr(NotCond, TrueVal);
Chris Lattner1c631e82004-04-08 04:43:23 +00002276 }
2277 }
2278
Chris Lattner183b3362004-04-09 19:05:30 +00002279 // Selecting between two integer constants?
2280 if (ConstantInt *TrueValC = dyn_cast<ConstantInt>(TrueVal))
2281 if (ConstantInt *FalseValC = dyn_cast<ConstantInt>(FalseVal)) {
2282 // select C, 1, 0 -> cast C to int
2283 if (FalseValC->isNullValue() && TrueValC->getRawValue() == 1) {
2284 return new CastInst(CondVal, SI.getType());
2285 } else if (TrueValC->isNullValue() && FalseValC->getRawValue() == 1) {
2286 // select C, 0, 1 -> cast !C to int
2287 Value *NotCond =
2288 InsertNewInstBefore(BinaryOperator::createNot(CondVal,
Chris Lattnercf7baf32004-04-09 18:19:44 +00002289 "not."+CondVal->getName()), SI);
Chris Lattner183b3362004-04-09 19:05:30 +00002290 return new CastInst(NotCond, SI.getType());
Chris Lattnercf7baf32004-04-09 18:19:44 +00002291 }
Chris Lattner35167c32004-06-09 07:59:58 +00002292
2293 // If one of the constants is zero (we know they can't both be) and we
2294 // have a setcc instruction with zero, and we have an 'and' with the
2295 // non-constant value, eliminate this whole mess. This corresponds to
2296 // cases like this: ((X & 27) ? 27 : 0)
2297 if (TrueValC->isNullValue() || FalseValC->isNullValue())
2298 if (Instruction *IC = dyn_cast<Instruction>(SI.getCondition()))
2299 if ((IC->getOpcode() == Instruction::SetEQ ||
2300 IC->getOpcode() == Instruction::SetNE) &&
2301 isa<ConstantInt>(IC->getOperand(1)) &&
2302 cast<Constant>(IC->getOperand(1))->isNullValue())
2303 if (Instruction *ICA = dyn_cast<Instruction>(IC->getOperand(0)))
2304 if (ICA->getOpcode() == Instruction::And &&
2305 isa<ConstantInt>(ICA->getOperand(1)) &&
2306 (ICA->getOperand(1) == TrueValC ||
2307 ICA->getOperand(1) == FalseValC) &&
2308 isOneBitSet(cast<ConstantInt>(ICA->getOperand(1)))) {
2309 // Okay, now we know that everything is set up, we just don't
2310 // know whether we have a setne or seteq and whether the true or
2311 // false val is the zero.
2312 bool ShouldNotVal = !TrueValC->isNullValue();
2313 ShouldNotVal ^= IC->getOpcode() == Instruction::SetNE;
2314 Value *V = ICA;
2315 if (ShouldNotVal)
2316 V = InsertNewInstBefore(BinaryOperator::create(
2317 Instruction::Xor, V, ICA->getOperand(1)), SI);
2318 return ReplaceInstUsesWith(SI, V);
2319 }
Chris Lattner533bc492004-03-30 19:37:13 +00002320 }
Chris Lattner623fba12004-04-10 22:21:27 +00002321
2322 // See if we are selecting two values based on a comparison of the two values.
2323 if (SetCondInst *SCI = dyn_cast<SetCondInst>(CondVal)) {
2324 if (SCI->getOperand(0) == TrueVal && SCI->getOperand(1) == FalseVal) {
2325 // Transform (X == Y) ? X : Y -> Y
2326 if (SCI->getOpcode() == Instruction::SetEQ)
2327 return ReplaceInstUsesWith(SI, FalseVal);
2328 // Transform (X != Y) ? X : Y -> X
2329 if (SCI->getOpcode() == Instruction::SetNE)
2330 return ReplaceInstUsesWith(SI, TrueVal);
2331 // NOTE: if we wanted to, this is where to detect MIN/MAX/ABS/etc.
2332
2333 } else if (SCI->getOperand(0) == FalseVal && SCI->getOperand(1) == TrueVal){
2334 // Transform (X == Y) ? Y : X -> X
2335 if (SCI->getOpcode() == Instruction::SetEQ)
Chris Lattner24cf0202004-04-11 01:39:19 +00002336 return ReplaceInstUsesWith(SI, FalseVal);
Chris Lattner623fba12004-04-10 22:21:27 +00002337 // Transform (X != Y) ? Y : X -> Y
2338 if (SCI->getOpcode() == Instruction::SetNE)
Chris Lattner24cf0202004-04-11 01:39:19 +00002339 return ReplaceInstUsesWith(SI, TrueVal);
Chris Lattner623fba12004-04-10 22:21:27 +00002340 // NOTE: if we wanted to, this is where to detect MIN/MAX/ABS/etc.
2341 }
2342 }
Chris Lattner1c631e82004-04-08 04:43:23 +00002343
Chris Lattner56e4d3d2004-04-09 23:46:01 +00002344 // See if we can fold the select into one of our operands.
2345 if (SI.getType()->isInteger()) {
2346 // See the comment above GetSelectFoldableOperands for a description of the
2347 // transformation we are doing here.
2348 if (Instruction *TVI = dyn_cast<Instruction>(TrueVal))
2349 if (TVI->hasOneUse() && TVI->getNumOperands() == 2 &&
2350 !isa<Constant>(FalseVal))
2351 if (unsigned SFO = GetSelectFoldableOperands(TVI)) {
2352 unsigned OpToFold = 0;
2353 if ((SFO & 1) && FalseVal == TVI->getOperand(0)) {
2354 OpToFold = 1;
2355 } else if ((SFO & 2) && FalseVal == TVI->getOperand(1)) {
2356 OpToFold = 2;
2357 }
2358
2359 if (OpToFold) {
2360 Constant *C = GetSelectFoldableConstant(TVI);
2361 std::string Name = TVI->getName(); TVI->setName("");
2362 Instruction *NewSel =
2363 new SelectInst(SI.getCondition(), TVI->getOperand(2-OpToFold), C,
2364 Name);
2365 InsertNewInstBefore(NewSel, SI);
2366 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(TVI))
2367 return BinaryOperator::create(BO->getOpcode(), FalseVal, NewSel);
2368 else if (ShiftInst *SI = dyn_cast<ShiftInst>(TVI))
2369 return new ShiftInst(SI->getOpcode(), FalseVal, NewSel);
2370 else {
2371 assert(0 && "Unknown instruction!!");
2372 }
2373 }
2374 }
2375
2376 if (Instruction *FVI = dyn_cast<Instruction>(FalseVal))
2377 if (FVI->hasOneUse() && FVI->getNumOperands() == 2 &&
2378 !isa<Constant>(TrueVal))
2379 if (unsigned SFO = GetSelectFoldableOperands(FVI)) {
2380 unsigned OpToFold = 0;
2381 if ((SFO & 1) && TrueVal == FVI->getOperand(0)) {
2382 OpToFold = 1;
2383 } else if ((SFO & 2) && TrueVal == FVI->getOperand(1)) {
2384 OpToFold = 2;
2385 }
2386
2387 if (OpToFold) {
2388 Constant *C = GetSelectFoldableConstant(FVI);
2389 std::string Name = FVI->getName(); FVI->setName("");
2390 Instruction *NewSel =
2391 new SelectInst(SI.getCondition(), C, FVI->getOperand(2-OpToFold),
2392 Name);
2393 InsertNewInstBefore(NewSel, SI);
2394 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(FVI))
2395 return BinaryOperator::create(BO->getOpcode(), TrueVal, NewSel);
2396 else if (ShiftInst *SI = dyn_cast<ShiftInst>(FVI))
2397 return new ShiftInst(SI->getOpcode(), TrueVal, NewSel);
2398 else {
2399 assert(0 && "Unknown instruction!!");
2400 }
2401 }
2402 }
2403 }
Chris Lattnerb909e8b2004-03-12 05:52:32 +00002404 return 0;
2405}
2406
2407
Chris Lattner970c33a2003-06-19 17:00:31 +00002408// CallInst simplification
2409//
2410Instruction *InstCombiner::visitCallInst(CallInst &CI) {
Chris Lattner51ea1272004-02-28 05:22:00 +00002411 // Intrinsics cannot occur in an invoke, so handle them here instead of in
2412 // visitCallSite.
2413 if (Function *F = CI.getCalledFunction())
2414 switch (F->getIntrinsicID()) {
2415 case Intrinsic::memmove:
2416 case Intrinsic::memcpy:
2417 case Intrinsic::memset:
2418 // memmove/cpy/set of zero bytes is a noop.
2419 if (Constant *NumBytes = dyn_cast<Constant>(CI.getOperand(3))) {
2420 if (NumBytes->isNullValue())
2421 return EraseInstFromFunction(CI);
2422 }
2423 break;
2424 default:
2425 break;
2426 }
2427
Chris Lattneraec3d942003-10-07 22:32:43 +00002428 return visitCallSite(&CI);
Chris Lattner970c33a2003-06-19 17:00:31 +00002429}
2430
2431// InvokeInst simplification
2432//
2433Instruction *InstCombiner::visitInvokeInst(InvokeInst &II) {
Chris Lattneraec3d942003-10-07 22:32:43 +00002434 return visitCallSite(&II);
Chris Lattner970c33a2003-06-19 17:00:31 +00002435}
2436
Chris Lattneraec3d942003-10-07 22:32:43 +00002437// visitCallSite - Improvements for call and invoke instructions.
2438//
2439Instruction *InstCombiner::visitCallSite(CallSite CS) {
Chris Lattner75b4d1d2003-10-07 22:54:13 +00002440 bool Changed = false;
2441
2442 // If the callee is a constexpr cast of a function, attempt to move the cast
2443 // to the arguments of the call/invoke.
Chris Lattneraec3d942003-10-07 22:32:43 +00002444 if (transformConstExprCastCall(CS)) return 0;
2445
Chris Lattner75b4d1d2003-10-07 22:54:13 +00002446 Value *Callee = CS.getCalledValue();
2447 const PointerType *PTy = cast<PointerType>(Callee->getType());
2448 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
2449 if (FTy->isVarArg()) {
2450 // See if we can optimize any arguments passed through the varargs area of
2451 // the call.
2452 for (CallSite::arg_iterator I = CS.arg_begin()+FTy->getNumParams(),
2453 E = CS.arg_end(); I != E; ++I)
2454 if (CastInst *CI = dyn_cast<CastInst>(*I)) {
2455 // If this cast does not effect the value passed through the varargs
2456 // area, we can eliminate the use of the cast.
2457 Value *Op = CI->getOperand(0);
2458 if (CI->getType()->isLosslesslyConvertibleTo(Op->getType())) {
2459 *I = Op;
2460 Changed = true;
2461 }
2462 }
2463 }
Chris Lattneraec3d942003-10-07 22:32:43 +00002464
Chris Lattner75b4d1d2003-10-07 22:54:13 +00002465 return Changed ? CS.getInstruction() : 0;
Chris Lattneraec3d942003-10-07 22:32:43 +00002466}
2467
Chris Lattner970c33a2003-06-19 17:00:31 +00002468// transformConstExprCastCall - If the callee is a constexpr cast of a function,
2469// attempt to move the cast to the arguments of the call/invoke.
2470//
2471bool InstCombiner::transformConstExprCastCall(CallSite CS) {
2472 if (!isa<ConstantExpr>(CS.getCalledValue())) return false;
2473 ConstantExpr *CE = cast<ConstantExpr>(CS.getCalledValue());
Chris Lattnerf3edc492004-07-18 18:59:44 +00002474 if (CE->getOpcode() != Instruction::Cast || !isa<Function>(CE->getOperand(0)))
Chris Lattner970c33a2003-06-19 17:00:31 +00002475 return false;
Reid Spencer87436872004-07-18 00:38:32 +00002476 Function *Callee = cast<Function>(CE->getOperand(0));
Chris Lattner970c33a2003-06-19 17:00:31 +00002477 Instruction *Caller = CS.getInstruction();
2478
2479 // Okay, this is a cast from a function to a different type. Unless doing so
2480 // would cause a type conversion of one of our arguments, change this call to
2481 // be a direct call with arguments casted to the appropriate types.
2482 //
2483 const FunctionType *FT = Callee->getFunctionType();
2484 const Type *OldRetTy = Caller->getType();
2485
Chris Lattner1f7942f2004-01-14 06:06:08 +00002486 // Check to see if we are changing the return type...
2487 if (OldRetTy != FT->getReturnType()) {
2488 if (Callee->isExternal() &&
2489 !OldRetTy->isLosslesslyConvertibleTo(FT->getReturnType()) &&
2490 !Caller->use_empty())
2491 return false; // Cannot transform this return value...
2492
2493 // If the callsite is an invoke instruction, and the return value is used by
2494 // a PHI node in a successor, we cannot change the return type of the call
2495 // because there is no place to put the cast instruction (without breaking
2496 // the critical edge). Bail out in this case.
2497 if (!Caller->use_empty())
2498 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller))
2499 for (Value::use_iterator UI = II->use_begin(), E = II->use_end();
2500 UI != E; ++UI)
2501 if (PHINode *PN = dyn_cast<PHINode>(*UI))
2502 if (PN->getParent() == II->getNormalDest() ||
Chris Lattnerfae8ab32004-02-08 21:44:31 +00002503 PN->getParent() == II->getUnwindDest())
Chris Lattner1f7942f2004-01-14 06:06:08 +00002504 return false;
2505 }
Chris Lattner970c33a2003-06-19 17:00:31 +00002506
2507 unsigned NumActualArgs = unsigned(CS.arg_end()-CS.arg_begin());
2508 unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs);
2509
2510 CallSite::arg_iterator AI = CS.arg_begin();
2511 for (unsigned i = 0, e = NumCommonArgs; i != e; ++i, ++AI) {
2512 const Type *ParamTy = FT->getParamType(i);
2513 bool isConvertible = (*AI)->getType()->isLosslesslyConvertibleTo(ParamTy);
2514 if (Callee->isExternal() && !isConvertible) return false;
2515 }
2516
2517 if (FT->getNumParams() < NumActualArgs && !FT->isVarArg() &&
2518 Callee->isExternal())
2519 return false; // Do not delete arguments unless we have a function body...
2520
2521 // Okay, we decided that this is a safe thing to do: go ahead and start
2522 // inserting cast instructions as necessary...
2523 std::vector<Value*> Args;
2524 Args.reserve(NumActualArgs);
2525
2526 AI = CS.arg_begin();
2527 for (unsigned i = 0; i != NumCommonArgs; ++i, ++AI) {
2528 const Type *ParamTy = FT->getParamType(i);
2529 if ((*AI)->getType() == ParamTy) {
2530 Args.push_back(*AI);
2531 } else {
Chris Lattner1c631e82004-04-08 04:43:23 +00002532 Args.push_back(InsertNewInstBefore(new CastInst(*AI, ParamTy, "tmp"),
2533 *Caller));
Chris Lattner970c33a2003-06-19 17:00:31 +00002534 }
2535 }
2536
2537 // If the function takes more arguments than the call was taking, add them
2538 // now...
2539 for (unsigned i = NumCommonArgs; i != FT->getNumParams(); ++i)
2540 Args.push_back(Constant::getNullValue(FT->getParamType(i)));
2541
2542 // If we are removing arguments to the function, emit an obnoxious warning...
2543 if (FT->getNumParams() < NumActualArgs)
2544 if (!FT->isVarArg()) {
2545 std::cerr << "WARNING: While resolving call to function '"
2546 << Callee->getName() << "' arguments were dropped!\n";
2547 } else {
2548 // Add all of the arguments in their promoted form to the arg list...
2549 for (unsigned i = FT->getNumParams(); i != NumActualArgs; ++i, ++AI) {
2550 const Type *PTy = getPromotedType((*AI)->getType());
2551 if (PTy != (*AI)->getType()) {
2552 // Must promote to pass through va_arg area!
2553 Instruction *Cast = new CastInst(*AI, PTy, "tmp");
2554 InsertNewInstBefore(Cast, *Caller);
2555 Args.push_back(Cast);
2556 } else {
2557 Args.push_back(*AI);
2558 }
2559 }
2560 }
2561
2562 if (FT->getReturnType() == Type::VoidTy)
2563 Caller->setName(""); // Void type should not have a name...
2564
2565 Instruction *NC;
2566 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
Chris Lattnerfae8ab32004-02-08 21:44:31 +00002567 NC = new InvokeInst(Callee, II->getNormalDest(), II->getUnwindDest(),
Chris Lattner970c33a2003-06-19 17:00:31 +00002568 Args, Caller->getName(), Caller);
2569 } else {
2570 NC = new CallInst(Callee, Args, Caller->getName(), Caller);
2571 }
2572
2573 // Insert a cast of the return type as necessary...
2574 Value *NV = NC;
2575 if (Caller->getType() != NV->getType() && !Caller->use_empty()) {
2576 if (NV->getType() != Type::VoidTy) {
2577 NV = NC = new CastInst(NC, Caller->getType(), "tmp");
Chris Lattner686767f2003-10-30 00:46:41 +00002578
2579 // If this is an invoke instruction, we should insert it after the first
2580 // non-phi, instruction in the normal successor block.
2581 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
2582 BasicBlock::iterator I = II->getNormalDest()->begin();
2583 while (isa<PHINode>(I)) ++I;
2584 InsertNewInstBefore(NC, *I);
2585 } else {
2586 // Otherwise, it's a call, just insert cast right after the call instr
2587 InsertNewInstBefore(NC, *Caller);
2588 }
Chris Lattner51ea1272004-02-28 05:22:00 +00002589 AddUsersToWorkList(*Caller);
Chris Lattner970c33a2003-06-19 17:00:31 +00002590 } else {
2591 NV = Constant::getNullValue(Caller->getType());
2592 }
2593 }
2594
2595 if (Caller->getType() != Type::VoidTy && !Caller->use_empty())
2596 Caller->replaceAllUsesWith(NV);
2597 Caller->getParent()->getInstList().erase(Caller);
2598 removeFromWorkList(Caller);
2599 return true;
2600}
2601
2602
Chris Lattner48a44f72002-05-02 17:06:02 +00002603
Chris Lattnerbbbdd852002-05-06 18:06:38 +00002604// PHINode simplification
2605//
Chris Lattner113f4f42002-06-25 16:13:24 +00002606Instruction *InstCombiner::visitPHINode(PHINode &PN) {
Chris Lattner91daeb52003-12-19 05:58:40 +00002607 if (Value *V = hasConstantValue(&PN))
2608 return ReplaceInstUsesWith(PN, V);
Chris Lattner4db2d222004-02-16 05:07:08 +00002609
2610 // If the only user of this instruction is a cast instruction, and all of the
2611 // incoming values are constants, change this PHI to merge together the casted
2612 // constants.
2613 if (PN.hasOneUse())
2614 if (CastInst *CI = dyn_cast<CastInst>(PN.use_back()))
2615 if (CI->getType() != PN.getType()) { // noop casts will be folded
2616 bool AllConstant = true;
2617 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
2618 if (!isa<Constant>(PN.getIncomingValue(i))) {
2619 AllConstant = false;
2620 break;
2621 }
2622 if (AllConstant) {
2623 // Make a new PHI with all casted values.
2624 PHINode *New = new PHINode(CI->getType(), PN.getName(), &PN);
2625 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) {
2626 Constant *OldArg = cast<Constant>(PN.getIncomingValue(i));
2627 New->addIncoming(ConstantExpr::getCast(OldArg, New->getType()),
2628 PN.getIncomingBlock(i));
2629 }
2630
2631 // Update the cast instruction.
2632 CI->setOperand(0, New);
2633 WorkList.push_back(CI); // revisit the cast instruction to fold.
2634 WorkList.push_back(New); // Make sure to revisit the new Phi
2635 return &PN; // PN is now dead!
2636 }
2637 }
Chris Lattner91daeb52003-12-19 05:58:40 +00002638 return 0;
Chris Lattnerbbbdd852002-05-06 18:06:38 +00002639}
2640
Chris Lattner69193f92004-04-05 01:30:19 +00002641static Value *InsertSignExtendToPtrTy(Value *V, const Type *DTy,
2642 Instruction *InsertPoint,
2643 InstCombiner *IC) {
2644 unsigned PS = IC->getTargetData().getPointerSize();
2645 const Type *VTy = V->getType();
2646 Instruction *Cast;
2647 if (!VTy->isSigned() && VTy->getPrimitiveSize() < PS)
2648 // We must insert a cast to ensure we sign-extend.
2649 V = IC->InsertNewInstBefore(new CastInst(V, VTy->getSignedVersion(),
2650 V->getName()), *InsertPoint);
2651 return IC->InsertNewInstBefore(new CastInst(V, DTy, V->getName()),
2652 *InsertPoint);
2653}
2654
Chris Lattner48a44f72002-05-02 17:06:02 +00002655
Chris Lattner113f4f42002-06-25 16:13:24 +00002656Instruction *InstCombiner::visitGetElementPtrInst(GetElementPtrInst &GEP) {
Chris Lattner5f667a62004-05-07 22:09:22 +00002657 Value *PtrOp = GEP.getOperand(0);
Chris Lattner471bd762003-05-22 19:07:21 +00002658 // Is it 'getelementptr %P, long 0' or 'getelementptr %P'
Chris Lattner113f4f42002-06-25 16:13:24 +00002659 // If so, eliminate the noop.
Chris Lattner8d0bacb2004-02-22 05:25:17 +00002660 if (GEP.getNumOperands() == 1)
Chris Lattner5f667a62004-05-07 22:09:22 +00002661 return ReplaceInstUsesWith(GEP, PtrOp);
Chris Lattner8d0bacb2004-02-22 05:25:17 +00002662
2663 bool HasZeroPointerIndex = false;
2664 if (Constant *C = dyn_cast<Constant>(GEP.getOperand(1)))
2665 HasZeroPointerIndex = C->isNullValue();
2666
2667 if (GEP.getNumOperands() == 2 && HasZeroPointerIndex)
Chris Lattner5f667a62004-05-07 22:09:22 +00002668 return ReplaceInstUsesWith(GEP, PtrOp);
Chris Lattner48a44f72002-05-02 17:06:02 +00002669
Chris Lattner69193f92004-04-05 01:30:19 +00002670 // Eliminate unneeded casts for indices.
2671 bool MadeChange = false;
Chris Lattner2b2412d2004-04-07 18:38:20 +00002672 gep_type_iterator GTI = gep_type_begin(GEP);
2673 for (unsigned i = 1, e = GEP.getNumOperands(); i != e; ++i, ++GTI)
2674 if (isa<SequentialType>(*GTI)) {
2675 if (CastInst *CI = dyn_cast<CastInst>(GEP.getOperand(i))) {
2676 Value *Src = CI->getOperand(0);
2677 const Type *SrcTy = Src->getType();
2678 const Type *DestTy = CI->getType();
2679 if (Src->getType()->isInteger()) {
2680 if (SrcTy->getPrimitiveSize() == DestTy->getPrimitiveSize()) {
2681 // We can always eliminate a cast from ulong or long to the other.
2682 // We can always eliminate a cast from uint to int or the other on
2683 // 32-bit pointer platforms.
2684 if (DestTy->getPrimitiveSize() >= TD->getPointerSize()) {
2685 MadeChange = true;
2686 GEP.setOperand(i, Src);
2687 }
2688 } else if (SrcTy->getPrimitiveSize() < DestTy->getPrimitiveSize() &&
2689 SrcTy->getPrimitiveSize() == 4) {
2690 // We can always eliminate a cast from int to [u]long. We can
2691 // eliminate a cast from uint to [u]long iff the target is a 32-bit
2692 // pointer target.
2693 if (SrcTy->isSigned() ||
2694 SrcTy->getPrimitiveSize() >= TD->getPointerSize()) {
2695 MadeChange = true;
2696 GEP.setOperand(i, Src);
2697 }
Chris Lattner69193f92004-04-05 01:30:19 +00002698 }
2699 }
2700 }
Chris Lattner2b2412d2004-04-07 18:38:20 +00002701 // If we are using a wider index than needed for this platform, shrink it
2702 // to what we need. If the incoming value needs a cast instruction,
2703 // insert it. This explicit cast can make subsequent optimizations more
2704 // obvious.
2705 Value *Op = GEP.getOperand(i);
2706 if (Op->getType()->getPrimitiveSize() > TD->getPointerSize())
Chris Lattner1e9ac1a2004-04-17 18:16:10 +00002707 if (Constant *C = dyn_cast<Constant>(Op)) {
Chris Lattner44d0b952004-07-20 01:48:15 +00002708 GEP.setOperand(i, ConstantExpr::getCast(C,
2709 TD->getIntPtrType()->getSignedVersion()));
Chris Lattner1e9ac1a2004-04-17 18:16:10 +00002710 MadeChange = true;
2711 } else {
Chris Lattner2b2412d2004-04-07 18:38:20 +00002712 Op = InsertNewInstBefore(new CastInst(Op, TD->getIntPtrType(),
2713 Op->getName()), GEP);
2714 GEP.setOperand(i, Op);
2715 MadeChange = true;
2716 }
Chris Lattner44d0b952004-07-20 01:48:15 +00002717
2718 // If this is a constant idx, make sure to canonicalize it to be a signed
2719 // operand, otherwise CSE and other optimizations are pessimized.
2720 if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(Op)) {
2721 GEP.setOperand(i, ConstantExpr::getCast(CUI,
2722 CUI->getType()->getSignedVersion()));
2723 MadeChange = true;
2724 }
Chris Lattner69193f92004-04-05 01:30:19 +00002725 }
2726 if (MadeChange) return &GEP;
2727
Chris Lattnerae7a0d32002-08-02 19:29:35 +00002728 // Combine Indices - If the source pointer to this getelementptr instruction
2729 // is a getelementptr instruction, combine the indices of the two
2730 // getelementptr instructions into a single instruction.
2731 //
Chris Lattner57c67b02004-03-25 22:59:29 +00002732 std::vector<Value*> SrcGEPOperands;
Chris Lattner5f667a62004-05-07 22:09:22 +00002733 if (GetElementPtrInst *Src = dyn_cast<GetElementPtrInst>(PtrOp)) {
Chris Lattner57c67b02004-03-25 22:59:29 +00002734 SrcGEPOperands.assign(Src->op_begin(), Src->op_end());
Chris Lattner5f667a62004-05-07 22:09:22 +00002735 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(PtrOp)) {
Chris Lattner57c67b02004-03-25 22:59:29 +00002736 if (CE->getOpcode() == Instruction::GetElementPtr)
2737 SrcGEPOperands.assign(CE->op_begin(), CE->op_end());
2738 }
2739
2740 if (!SrcGEPOperands.empty()) {
Chris Lattner5f667a62004-05-07 22:09:22 +00002741 // Note that if our source is a gep chain itself that we wait for that
2742 // chain to be resolved before we perform this transformation. This
2743 // avoids us creating a TON of code in some cases.
2744 //
2745 if (isa<GetElementPtrInst>(SrcGEPOperands[0]) &&
2746 cast<Instruction>(SrcGEPOperands[0])->getNumOperands() == 2)
2747 return 0; // Wait until our source is folded to completion.
2748
Chris Lattnerae7a0d32002-08-02 19:29:35 +00002749 std::vector<Value *> Indices;
Chris Lattner5f667a62004-05-07 22:09:22 +00002750
2751 // Find out whether the last index in the source GEP is a sequential idx.
2752 bool EndsWithSequential = false;
2753 for (gep_type_iterator I = gep_type_begin(*cast<User>(PtrOp)),
2754 E = gep_type_end(*cast<User>(PtrOp)); I != E; ++I)
Chris Lattner8ec5f882004-05-08 22:41:42 +00002755 EndsWithSequential = !isa<StructType>(*I);
Chris Lattnerca081252001-12-14 16:52:21 +00002756
Chris Lattnerae7a0d32002-08-02 19:29:35 +00002757 // Can we combine the two pointer arithmetics offsets?
Chris Lattner5f667a62004-05-07 22:09:22 +00002758 if (EndsWithSequential) {
Chris Lattner235af562003-03-05 22:33:14 +00002759 // Replace: gep (gep %P, long B), long A, ...
2760 // With: T = long A+B; gep %P, T, ...
2761 //
Chris Lattner5f667a62004-05-07 22:09:22 +00002762 Value *Sum, *SO1 = SrcGEPOperands.back(), *GO1 = GEP.getOperand(1);
Chris Lattner69193f92004-04-05 01:30:19 +00002763 if (SO1 == Constant::getNullValue(SO1->getType())) {
2764 Sum = GO1;
2765 } else if (GO1 == Constant::getNullValue(GO1->getType())) {
2766 Sum = SO1;
2767 } else {
2768 // If they aren't the same type, convert both to an integer of the
2769 // target's pointer size.
2770 if (SO1->getType() != GO1->getType()) {
2771 if (Constant *SO1C = dyn_cast<Constant>(SO1)) {
2772 SO1 = ConstantExpr::getCast(SO1C, GO1->getType());
2773 } else if (Constant *GO1C = dyn_cast<Constant>(GO1)) {
2774 GO1 = ConstantExpr::getCast(GO1C, SO1->getType());
2775 } else {
2776 unsigned PS = TD->getPointerSize();
2777 Instruction *Cast;
2778 if (SO1->getType()->getPrimitiveSize() == PS) {
2779 // Convert GO1 to SO1's type.
2780 GO1 = InsertSignExtendToPtrTy(GO1, SO1->getType(), &GEP, this);
2781
2782 } else if (GO1->getType()->getPrimitiveSize() == PS) {
2783 // Convert SO1 to GO1's type.
2784 SO1 = InsertSignExtendToPtrTy(SO1, GO1->getType(), &GEP, this);
2785 } else {
2786 const Type *PT = TD->getIntPtrType();
2787 SO1 = InsertSignExtendToPtrTy(SO1, PT, &GEP, this);
2788 GO1 = InsertSignExtendToPtrTy(GO1, PT, &GEP, this);
2789 }
2790 }
2791 }
Chris Lattner5f667a62004-05-07 22:09:22 +00002792 if (isa<Constant>(SO1) && isa<Constant>(GO1))
2793 Sum = ConstantExpr::getAdd(cast<Constant>(SO1), cast<Constant>(GO1));
2794 else {
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002795 Sum = BinaryOperator::createAdd(SO1, GO1, PtrOp->getName()+".sum");
2796 InsertNewInstBefore(cast<Instruction>(Sum), GEP);
Chris Lattner5f667a62004-05-07 22:09:22 +00002797 }
Chris Lattner69193f92004-04-05 01:30:19 +00002798 }
Chris Lattner5f667a62004-05-07 22:09:22 +00002799
2800 // Recycle the GEP we already have if possible.
2801 if (SrcGEPOperands.size() == 2) {
2802 GEP.setOperand(0, SrcGEPOperands[0]);
2803 GEP.setOperand(1, Sum);
2804 return &GEP;
2805 } else {
2806 Indices.insert(Indices.end(), SrcGEPOperands.begin()+1,
2807 SrcGEPOperands.end()-1);
2808 Indices.push_back(Sum);
2809 Indices.insert(Indices.end(), GEP.op_begin()+2, GEP.op_end());
2810 }
Chris Lattner69193f92004-04-05 01:30:19 +00002811 } else if (isa<Constant>(*GEP.idx_begin()) &&
2812 cast<Constant>(*GEP.idx_begin())->isNullValue() &&
Chris Lattner57c67b02004-03-25 22:59:29 +00002813 SrcGEPOperands.size() != 1) {
Chris Lattnerae7a0d32002-08-02 19:29:35 +00002814 // Otherwise we can do the fold if the first index of the GEP is a zero
Chris Lattner57c67b02004-03-25 22:59:29 +00002815 Indices.insert(Indices.end(), SrcGEPOperands.begin()+1,
2816 SrcGEPOperands.end());
Chris Lattnerae7a0d32002-08-02 19:29:35 +00002817 Indices.insert(Indices.end(), GEP.idx_begin()+1, GEP.idx_end());
2818 }
2819
2820 if (!Indices.empty())
Chris Lattner57c67b02004-03-25 22:59:29 +00002821 return new GetElementPtrInst(SrcGEPOperands[0], Indices, GEP.getName());
Chris Lattnerc59af1d2002-08-17 22:21:59 +00002822
Chris Lattner5f667a62004-05-07 22:09:22 +00002823 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(PtrOp)) {
Chris Lattnerc59af1d2002-08-17 22:21:59 +00002824 // GEP of global variable. If all of the indices for this GEP are
2825 // constants, we can promote this to a constexpr instead of an instruction.
2826
2827 // Scan for nonconstants...
2828 std::vector<Constant*> Indices;
2829 User::op_iterator I = GEP.idx_begin(), E = GEP.idx_end();
2830 for (; I != E && isa<Constant>(*I); ++I)
2831 Indices.push_back(cast<Constant>(*I));
2832
2833 if (I == E) { // If they are all constants...
Chris Lattnerf3edc492004-07-18 18:59:44 +00002834 Constant *CE = ConstantExpr::getGetElementPtr(GV, Indices);
Chris Lattnerc59af1d2002-08-17 22:21:59 +00002835
2836 // Replace all uses of the GEP with the new constexpr...
2837 return ReplaceInstUsesWith(GEP, CE);
2838 }
Chris Lattner5f667a62004-05-07 22:09:22 +00002839 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(PtrOp)) {
Chris Lattner8d0bacb2004-02-22 05:25:17 +00002840 if (CE->getOpcode() == Instruction::Cast) {
2841 if (HasZeroPointerIndex) {
2842 // transform: GEP (cast [10 x ubyte]* X to [0 x ubyte]*), long 0, ...
2843 // into : GEP [10 x ubyte]* X, long 0, ...
2844 //
2845 // This occurs when the program declares an array extern like "int X[];"
2846 //
2847 Constant *X = CE->getOperand(0);
2848 const PointerType *CPTy = cast<PointerType>(CE->getType());
2849 if (const PointerType *XTy = dyn_cast<PointerType>(X->getType()))
2850 if (const ArrayType *XATy =
2851 dyn_cast<ArrayType>(XTy->getElementType()))
2852 if (const ArrayType *CATy =
2853 dyn_cast<ArrayType>(CPTy->getElementType()))
2854 if (CATy->getElementType() == XATy->getElementType()) {
2855 // At this point, we know that the cast source type is a pointer
2856 // to an array of the same type as the destination pointer
2857 // array. Because the array type is never stepped over (there
2858 // is a leading zero) we can fold the cast into this GEP.
2859 GEP.setOperand(0, X);
2860 return &GEP;
2861 }
2862 }
2863 }
Chris Lattnerca081252001-12-14 16:52:21 +00002864 }
2865
Chris Lattnerca081252001-12-14 16:52:21 +00002866 return 0;
2867}
2868
Chris Lattner1085bdf2002-11-04 16:18:53 +00002869Instruction *InstCombiner::visitAllocationInst(AllocationInst &AI) {
2870 // Convert: malloc Ty, C - where C is a constant != 1 into: malloc [C x Ty], 1
2871 if (AI.isArrayAllocation()) // Check C != 1
2872 if (const ConstantUInt *C = dyn_cast<ConstantUInt>(AI.getArraySize())) {
2873 const Type *NewTy = ArrayType::get(AI.getAllocatedType(), C->getValue());
Chris Lattnera2620ac2002-11-09 00:49:43 +00002874 AllocationInst *New = 0;
Chris Lattner1085bdf2002-11-04 16:18:53 +00002875
2876 // Create and insert the replacement instruction...
2877 if (isa<MallocInst>(AI))
Chris Lattnerabb77c92004-03-19 06:08:10 +00002878 New = new MallocInst(NewTy, 0, AI.getName());
Chris Lattnera2620ac2002-11-09 00:49:43 +00002879 else {
2880 assert(isa<AllocaInst>(AI) && "Unknown type of allocation inst!");
Chris Lattnerabb77c92004-03-19 06:08:10 +00002881 New = new AllocaInst(NewTy, 0, AI.getName());
Chris Lattnera2620ac2002-11-09 00:49:43 +00002882 }
Chris Lattnerabb77c92004-03-19 06:08:10 +00002883
2884 InsertNewInstBefore(New, AI);
Chris Lattner1085bdf2002-11-04 16:18:53 +00002885
2886 // Scan to the end of the allocation instructions, to skip over a block of
2887 // allocas if possible...
2888 //
2889 BasicBlock::iterator It = New;
2890 while (isa<AllocationInst>(*It)) ++It;
2891
2892 // Now that I is pointing to the first non-allocation-inst in the block,
2893 // insert our getelementptr instruction...
2894 //
Chris Lattner69193f92004-04-05 01:30:19 +00002895 std::vector<Value*> Idx(2, Constant::getNullValue(Type::IntTy));
Chris Lattner1085bdf2002-11-04 16:18:53 +00002896 Value *V = new GetElementPtrInst(New, Idx, New->getName()+".sub", It);
2897
2898 // Now make everything use the getelementptr instead of the original
2899 // allocation.
Chris Lattnerabb77c92004-03-19 06:08:10 +00002900 return ReplaceInstUsesWith(AI, V);
Chris Lattner1085bdf2002-11-04 16:18:53 +00002901 }
Chris Lattnerabb77c92004-03-19 06:08:10 +00002902
2903 // If alloca'ing a zero byte object, replace the alloca with a null pointer.
2904 // Note that we only do this for alloca's, because malloc should allocate and
2905 // return a unique pointer, even for a zero byte allocation.
Chris Lattner49df6ce2004-07-02 22:55:47 +00002906 if (isa<AllocaInst>(AI) && AI.getAllocatedType()->isSized() &&
2907 TD->getTypeSize(AI.getAllocatedType()) == 0)
Chris Lattnerabb77c92004-03-19 06:08:10 +00002908 return ReplaceInstUsesWith(AI, Constant::getNullValue(AI.getType()));
2909
Chris Lattner1085bdf2002-11-04 16:18:53 +00002910 return 0;
2911}
2912
Chris Lattner8427bff2003-12-07 01:24:23 +00002913Instruction *InstCombiner::visitFreeInst(FreeInst &FI) {
2914 Value *Op = FI.getOperand(0);
2915
2916 // Change free <ty>* (cast <ty2>* X to <ty>*) into free <ty2>* X
2917 if (CastInst *CI = dyn_cast<CastInst>(Op))
2918 if (isa<PointerType>(CI->getOperand(0)->getType())) {
2919 FI.setOperand(0, CI->getOperand(0));
2920 return &FI;
2921 }
2922
Chris Lattnerf3a36602004-02-28 04:57:37 +00002923 // If we have 'free null' delete the instruction. This can happen in stl code
2924 // when lots of inlining happens.
Chris Lattner51ea1272004-02-28 05:22:00 +00002925 if (isa<ConstantPointerNull>(Op))
2926 return EraseInstFromFunction(FI);
Chris Lattnerf3a36602004-02-28 04:57:37 +00002927
Chris Lattner8427bff2003-12-07 01:24:23 +00002928 return 0;
2929}
2930
2931
Chris Lattner0f1d8a32003-06-26 05:06:25 +00002932/// GetGEPGlobalInitializer - Given a constant, and a getelementptr
2933/// constantexpr, return the constant value being addressed by the constant
2934/// expression, or null if something is funny.
2935///
2936static Constant *GetGEPGlobalInitializer(Constant *C, ConstantExpr *CE) {
Chris Lattner69193f92004-04-05 01:30:19 +00002937 if (CE->getOperand(1) != Constant::getNullValue(CE->getOperand(1)->getType()))
Chris Lattner0f1d8a32003-06-26 05:06:25 +00002938 return 0; // Do not allow stepping over the value!
2939
2940 // Loop over all of the operands, tracking down which value we are
2941 // addressing...
Chris Lattnered79d8a2004-05-27 17:30:27 +00002942 gep_type_iterator I = gep_type_begin(CE), E = gep_type_end(CE);
2943 for (++I; I != E; ++I)
2944 if (const StructType *STy = dyn_cast<StructType>(*I)) {
2945 ConstantUInt *CU = cast<ConstantUInt>(I.getOperand());
2946 assert(CU->getValue() < STy->getNumElements() &&
2947 "Struct index out of range!");
2948 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(C)) {
Alkis Evlogimenos83243722004-08-04 08:44:43 +00002949 C = CS->getOperand(CU->getValue());
Chris Lattnered79d8a2004-05-27 17:30:27 +00002950 } else if (isa<ConstantAggregateZero>(C)) {
2951 C = Constant::getNullValue(STy->getElementType(CU->getValue()));
2952 } else {
2953 return 0;
2954 }
2955 } else if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand())) {
2956 const ArrayType *ATy = cast<ArrayType>(*I);
2957 if ((uint64_t)CI->getRawValue() >= ATy->getNumElements()) return 0;
2958 if (ConstantArray *CA = dyn_cast<ConstantArray>(C))
Alkis Evlogimenos83243722004-08-04 08:44:43 +00002959 C = CA->getOperand(CI->getRawValue());
Chris Lattnered79d8a2004-05-27 17:30:27 +00002960 else if (isa<ConstantAggregateZero>(C))
2961 C = Constant::getNullValue(ATy->getElementType());
2962 else
2963 return 0;
2964 } else {
Chris Lattner0f1d8a32003-06-26 05:06:25 +00002965 return 0;
Chris Lattnered79d8a2004-05-27 17:30:27 +00002966 }
Chris Lattner0f1d8a32003-06-26 05:06:25 +00002967 return C;
2968}
2969
Chris Lattner35e24772004-07-13 01:49:43 +00002970static Instruction *InstCombineLoadCast(InstCombiner &IC, LoadInst &LI) {
2971 User *CI = cast<User>(LI.getOperand(0));
2972
2973 const Type *DestPTy = cast<PointerType>(CI->getType())->getElementType();
2974 if (const PointerType *SrcTy =
2975 dyn_cast<PointerType>(CI->getOperand(0)->getType())) {
2976 const Type *SrcPTy = SrcTy->getElementType();
2977 if (SrcPTy->isSized() && DestPTy->isSized() &&
2978 IC.getTargetData().getTypeSize(SrcPTy) ==
2979 IC.getTargetData().getTypeSize(DestPTy) &&
2980 (SrcPTy->isInteger() || isa<PointerType>(SrcPTy)) &&
2981 (DestPTy->isInteger() || isa<PointerType>(DestPTy))) {
2982 // Okay, we are casting from one integer or pointer type to another of
2983 // the same size. Instead of casting the pointer before the load, cast
2984 // the result of the loaded value.
2985 Value *NewLoad = IC.InsertNewInstBefore(new LoadInst(CI->getOperand(0),
2986 CI->getName()), LI);
2987 // Now cast the result of the load.
2988 return new CastInst(NewLoad, LI.getType());
2989 }
2990 }
2991 return 0;
2992}
2993
Chris Lattner0f1d8a32003-06-26 05:06:25 +00002994Instruction *InstCombiner::visitLoadInst(LoadInst &LI) {
2995 Value *Op = LI.getOperand(0);
Chris Lattner7e8af382004-01-12 04:13:56 +00002996 if (LI.isVolatile()) return 0;
2997
Chris Lattner6679e462004-04-14 03:28:36 +00002998 if (Constant *C = dyn_cast<Constant>(Op))
2999 if (C->isNullValue()) // load null -> 0
3000 return ReplaceInstUsesWith(LI, Constant::getNullValue(LI.getType()));
Chris Lattner0f1d8a32003-06-26 05:06:25 +00003001
3002 // Instcombine load (constant global) into the value loaded...
3003 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Op))
Chris Lattnerbdb0ce02003-07-22 21:46:59 +00003004 if (GV->isConstant() && !GV->isExternal())
Chris Lattner0f1d8a32003-06-26 05:06:25 +00003005 return ReplaceInstUsesWith(LI, GV->getInitializer());
3006
3007 // Instcombine load (constantexpr_GEP global, 0, ...) into the value loaded...
3008 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Op))
Chris Lattner35e24772004-07-13 01:49:43 +00003009 if (CE->getOpcode() == Instruction::GetElementPtr) {
Reid Spencer87436872004-07-18 00:38:32 +00003010 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0)))
3011 if (GV->isConstant() && !GV->isExternal())
3012 if (Constant *V = GetGEPGlobalInitializer(GV->getInitializer(), CE))
3013 return ReplaceInstUsesWith(LI, V);
Chris Lattner35e24772004-07-13 01:49:43 +00003014 } else if (CE->getOpcode() == Instruction::Cast) {
3015 if (Instruction *Res = InstCombineLoadCast(*this, LI))
3016 return Res;
3017 }
Chris Lattnere228ee52004-04-08 20:39:49 +00003018
3019 // load (cast X) --> cast (load X) iff safe
Chris Lattner35e24772004-07-13 01:49:43 +00003020 if (CastInst *CI = dyn_cast<CastInst>(Op))
3021 if (Instruction *Res = InstCombineLoadCast(*this, LI))
3022 return Res;
Chris Lattnere228ee52004-04-08 20:39:49 +00003023
Chris Lattner0f1d8a32003-06-26 05:06:25 +00003024 return 0;
3025}
3026
3027
Chris Lattner9eef8a72003-06-04 04:46:00 +00003028Instruction *InstCombiner::visitBranchInst(BranchInst &BI) {
3029 // Change br (not X), label True, label False to: br X, label False, True
Chris Lattnerd4252a72004-07-30 07:50:03 +00003030 Value *X;
3031 BasicBlock *TrueDest;
3032 BasicBlock *FalseDest;
3033 if (match(&BI, m_Br(m_Not(m_Value(X)), TrueDest, FalseDest)) &&
3034 !isa<Constant>(X)) {
3035 // Swap Destinations and condition...
3036 BI.setCondition(X);
3037 BI.setSuccessor(0, FalseDest);
3038 BI.setSuccessor(1, TrueDest);
3039 return &BI;
3040 }
3041
3042 // Cannonicalize setne -> seteq
3043 Instruction::BinaryOps Op; Value *Y;
3044 if (match(&BI, m_Br(m_SetCond(Op, m_Value(X), m_Value(Y)),
3045 TrueDest, FalseDest)))
3046 if ((Op == Instruction::SetNE || Op == Instruction::SetLE ||
3047 Op == Instruction::SetGE) && BI.getCondition()->hasOneUse()) {
3048 SetCondInst *I = cast<SetCondInst>(BI.getCondition());
3049 std::string Name = I->getName(); I->setName("");
3050 Instruction::BinaryOps NewOpcode = SetCondInst::getInverseCondition(Op);
3051 Value *NewSCC = BinaryOperator::create(NewOpcode, X, Y, Name, I);
Chris Lattnere967b342003-06-04 05:10:11 +00003052 // Swap Destinations and condition...
Chris Lattnerd4252a72004-07-30 07:50:03 +00003053 BI.setCondition(NewSCC);
Chris Lattnere967b342003-06-04 05:10:11 +00003054 BI.setSuccessor(0, FalseDest);
3055 BI.setSuccessor(1, TrueDest);
Chris Lattnerd4252a72004-07-30 07:50:03 +00003056 removeFromWorkList(I);
3057 I->getParent()->getInstList().erase(I);
3058 WorkList.push_back(cast<Instruction>(NewSCC));
Chris Lattnere967b342003-06-04 05:10:11 +00003059 return &BI;
3060 }
Chris Lattnerd4252a72004-07-30 07:50:03 +00003061
Chris Lattner9eef8a72003-06-04 04:46:00 +00003062 return 0;
3063}
Chris Lattner1085bdf2002-11-04 16:18:53 +00003064
Chris Lattner4c9c20a2004-07-03 00:26:11 +00003065Instruction *InstCombiner::visitSwitchInst(SwitchInst &SI) {
3066 Value *Cond = SI.getCondition();
3067 if (Instruction *I = dyn_cast<Instruction>(Cond)) {
3068 if (I->getOpcode() == Instruction::Add)
3069 if (ConstantInt *AddRHS = dyn_cast<ConstantInt>(I->getOperand(1))) {
3070 // change 'switch (X+4) case 1:' into 'switch (X) case -3'
3071 for (unsigned i = 2, e = SI.getNumOperands(); i != e; i += 2)
3072 SI.setOperand(i, ConstantExpr::getSub(cast<Constant>(SI.getOperand(i)),
3073 AddRHS));
3074 SI.setOperand(0, I->getOperand(0));
3075 WorkList.push_back(I);
3076 return &SI;
3077 }
3078 }
3079 return 0;
3080}
3081
Chris Lattnerca081252001-12-14 16:52:21 +00003082
Chris Lattner99f48c62002-09-02 04:59:56 +00003083void InstCombiner::removeFromWorkList(Instruction *I) {
3084 WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), I),
3085 WorkList.end());
3086}
3087
Chris Lattner113f4f42002-06-25 16:13:24 +00003088bool InstCombiner::runOnFunction(Function &F) {
Chris Lattner260ab202002-04-18 17:39:14 +00003089 bool Changed = false;
Chris Lattnerf4ad1652003-11-02 05:57:39 +00003090 TD = &getAnalysis<TargetData>();
Chris Lattnerca081252001-12-14 16:52:21 +00003091
Chris Lattnerb643a9e2004-05-01 23:19:52 +00003092 for (inst_iterator i = inst_begin(F), e = inst_end(F); i != e; ++i)
3093 WorkList.push_back(&*i);
Chris Lattner2d3a7a62004-04-27 15:13:33 +00003094
Chris Lattnerca081252001-12-14 16:52:21 +00003095
3096 while (!WorkList.empty()) {
3097 Instruction *I = WorkList.back(); // Get an instruction from the worklist
3098 WorkList.pop_back();
3099
Misha Brukman632df282002-10-29 23:06:16 +00003100 // Check to see if we can DCE or ConstantPropagate the instruction...
Chris Lattner99f48c62002-09-02 04:59:56 +00003101 // Check to see if we can DIE the instruction...
3102 if (isInstructionTriviallyDead(I)) {
3103 // Add operands to the worklist...
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00003104 if (I->getNumOperands() < 4)
Chris Lattner51ea1272004-02-28 05:22:00 +00003105 AddUsesToWorkList(*I);
Chris Lattner99f48c62002-09-02 04:59:56 +00003106 ++NumDeadInst;
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00003107
3108 I->getParent()->getInstList().erase(I);
3109 removeFromWorkList(I);
3110 continue;
3111 }
Chris Lattner99f48c62002-09-02 04:59:56 +00003112
Misha Brukman632df282002-10-29 23:06:16 +00003113 // Instruction isn't dead, see if we can constant propagate it...
Chris Lattner99f48c62002-09-02 04:59:56 +00003114 if (Constant *C = ConstantFoldInstruction(I)) {
3115 // Add operands to the worklist...
Chris Lattner51ea1272004-02-28 05:22:00 +00003116 AddUsesToWorkList(*I);
Chris Lattnerc6509f42002-12-05 22:41:53 +00003117 ReplaceInstUsesWith(*I, C);
3118
Chris Lattner99f48c62002-09-02 04:59:56 +00003119 ++NumConstProp;
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00003120 I->getParent()->getInstList().erase(I);
Chris Lattner800aaaf2003-10-07 15:17:02 +00003121 removeFromWorkList(I);
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00003122 continue;
Chris Lattner99f48c62002-09-02 04:59:56 +00003123 }
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00003124
Chris Lattnerca081252001-12-14 16:52:21 +00003125 // Now that we have an instruction, try combining it to simplify it...
Chris Lattnerae7a0d32002-08-02 19:29:35 +00003126 if (Instruction *Result = visit(*I)) {
Chris Lattner0b18c1d2002-05-10 15:38:35 +00003127 ++NumCombined;
Chris Lattner260ab202002-04-18 17:39:14 +00003128 // Should we replace the old instruction with a new one?
Chris Lattner053c0932002-05-14 15:24:07 +00003129 if (Result != I) {
Chris Lattner7d2a5392004-03-13 23:54:27 +00003130 DEBUG(std::cerr << "IC: Old = " << *I
3131 << " New = " << *Result);
3132
Chris Lattner396dbfe2004-06-09 05:08:07 +00003133 // Everything uses the new instruction now.
3134 I->replaceAllUsesWith(Result);
3135
3136 // Push the new instruction and any users onto the worklist.
3137 WorkList.push_back(Result);
3138 AddUsersToWorkList(*Result);
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00003139
3140 // Move the name to the new instruction first...
3141 std::string OldName = I->getName(); I->setName("");
Chris Lattner950fc782003-10-07 22:58:41 +00003142 Result->setName(OldName);
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00003143
3144 // Insert the new instruction into the basic block...
3145 BasicBlock *InstParent = I->getParent();
3146 InstParent->getInstList().insert(I, Result);
3147
Chris Lattner63d75af2004-05-01 23:27:23 +00003148 // Make sure that we reprocess all operands now that we reduced their
3149 // use counts.
Chris Lattnerb643a9e2004-05-01 23:19:52 +00003150 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
3151 if (Instruction *OpI = dyn_cast<Instruction>(I->getOperand(i)))
3152 WorkList.push_back(OpI);
3153
Chris Lattner396dbfe2004-06-09 05:08:07 +00003154 // Instructions can end up on the worklist more than once. Make sure
3155 // we do not process an instruction that has been deleted.
3156 removeFromWorkList(I);
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00003157
3158 // Erase the old instruction.
3159 InstParent->getInstList().erase(I);
Chris Lattner113f4f42002-06-25 16:13:24 +00003160 } else {
Chris Lattner7d2a5392004-03-13 23:54:27 +00003161 DEBUG(std::cerr << "IC: MOD = " << *I);
3162
Chris Lattnerae7a0d32002-08-02 19:29:35 +00003163 // If the instruction was modified, it's possible that it is now dead.
3164 // if so, remove it.
Chris Lattner63d75af2004-05-01 23:27:23 +00003165 if (isInstructionTriviallyDead(I)) {
3166 // Make sure we process all operands now that we are reducing their
3167 // use counts.
3168 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
3169 if (Instruction *OpI = dyn_cast<Instruction>(I->getOperand(i)))
3170 WorkList.push_back(OpI);
3171
3172 // Instructions may end up in the worklist more than once. Erase all
3173 // occurrances of this instruction.
Chris Lattner99f48c62002-09-02 04:59:56 +00003174 removeFromWorkList(I);
Chris Lattner63d75af2004-05-01 23:27:23 +00003175 I->getParent()->getInstList().erase(I);
Chris Lattner396dbfe2004-06-09 05:08:07 +00003176 } else {
3177 WorkList.push_back(Result);
3178 AddUsersToWorkList(*Result);
Chris Lattnerae7a0d32002-08-02 19:29:35 +00003179 }
Chris Lattner053c0932002-05-14 15:24:07 +00003180 }
Chris Lattner260ab202002-04-18 17:39:14 +00003181 Changed = true;
Chris Lattnerca081252001-12-14 16:52:21 +00003182 }
3183 }
3184
Chris Lattner260ab202002-04-18 17:39:14 +00003185 return Changed;
Chris Lattner04805fa2002-02-26 21:46:54 +00003186}
3187
Brian Gaeke38b79e82004-07-27 17:43:21 +00003188FunctionPass *llvm::createInstructionCombiningPass() {
Chris Lattner260ab202002-04-18 17:39:14 +00003189 return new InstCombiner();
Chris Lattner04805fa2002-02-26 21:46:54 +00003190}
Brian Gaeke960707c2003-11-11 22:41:34 +00003191