blob: fd2c304e993e9e83edb4bac19749d95e2c52a85d [file] [log] [blame]
Chris Lattnere6794492002-08-12 21:17:25 +00001//===- InstructionCombining.cpp - Combine multiple instructions -----------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// 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.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
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 Lattner07418422007-03-18 22:51:34 +000015// %Y = add i32 %X, 1
16// %Z = add i32 %Y, 1
Chris Lattnerca081252001-12-14 16:52:21 +000017// into:
Chris Lattner07418422007-03-18 22:51:34 +000018// %Z = add i32 %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.
Reid Spencer266e42b2006-12-23 06:05:41 +000027// 3. Compare instructions are converted from <,>,<=,>= to ==,!= if possible
28// 4. All cmp 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 Lattner7515cab2004-11-14 19:13:23 +000032// ... etc.
Chris Lattnerbfb1d032003-07-23 21:41:57 +000033//
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 Lattner00648e12004-10-12 04:52:52 +000038#include "llvm/IntrinsicInst.h"
Chris Lattner04805fa2002-02-26 21:46:54 +000039#include "llvm/Pass.h"
Chris Lattner1085bdf2002-11-04 16:18:53 +000040#include "llvm/DerivedTypes.h"
Chris Lattner0f1d8a32003-06-26 05:06:25 +000041#include "llvm/GlobalVariable.h"
Chris Lattner024f4ab2007-01-30 23:46:24 +000042#include "llvm/Analysis/ConstantFolding.h"
Chris Lattnerf4ad1652003-11-02 05:57:39 +000043#include "llvm/Target/TargetData.h"
44#include "llvm/Transforms/Utils/BasicBlockUtils.h"
45#include "llvm/Transforms/Utils/Local.h"
Chris Lattner69193f92004-04-05 01:30:19 +000046#include "llvm/Support/CallSite.h"
Chris Lattner39c98bb2004-12-08 23:43:58 +000047#include "llvm/Support/Debug.h"
Chris Lattner69193f92004-04-05 01:30:19 +000048#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner260ab202002-04-18 17:39:14 +000049#include "llvm/Support/InstVisitor.h"
Chris Lattner22d00a82005-08-02 19:16:58 +000050#include "llvm/Support/MathExtras.h"
Chris Lattnerd4252a72004-07-30 07:50:03 +000051#include "llvm/Support/PatternMatch.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000052#include "llvm/Support/Compiler.h"
Chris Lattnerb15e2b12007-03-02 21:28:56 +000053#include "llvm/ADT/DenseMap.h"
Chris Lattnerf96f4a82007-01-31 04:40:53 +000054#include "llvm/ADT/SmallVector.h"
Chris Lattner7907e5f2007-02-15 19:41:52 +000055#include "llvm/ADT/SmallPtrSet.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000056#include "llvm/ADT/Statistic.h"
Chris Lattner39c98bb2004-12-08 23:43:58 +000057#include "llvm/ADT/STLExtras.h"
Chris Lattner053c0932002-05-14 15:24:07 +000058#include <algorithm>
Reid Spencer3f4e6e82007-02-04 00:40:42 +000059#include <set>
Chris Lattner8427bff2003-12-07 01:24:23 +000060using namespace llvm;
Chris Lattnerd4252a72004-07-30 07:50:03 +000061using namespace llvm::PatternMatch;
Brian Gaeke960707c2003-11-11 22:41:34 +000062
Chris Lattner79a42ac2006-12-19 21:40:18 +000063STATISTIC(NumCombined , "Number of insts combined");
64STATISTIC(NumConstProp, "Number of constant folds");
65STATISTIC(NumDeadInst , "Number of dead inst eliminated");
66STATISTIC(NumDeadStore, "Number of dead stores eliminated");
67STATISTIC(NumSunkInst , "Number of instructions sunk");
Chris Lattnerbf3a0992002-10-01 22:38:41 +000068
Chris Lattner79a42ac2006-12-19 21:40:18 +000069namespace {
Chris Lattner4a4c7fe2006-06-28 22:08:15 +000070 class VISIBILITY_HIDDEN InstCombiner
71 : public FunctionPass,
72 public InstVisitor<InstCombiner, Instruction*> {
Chris Lattner260ab202002-04-18 17:39:14 +000073 // Worklist of all of the instructions that need to be simplified.
Chris Lattnerb15e2b12007-03-02 21:28:56 +000074 std::vector<Instruction*> Worklist;
75 DenseMap<Instruction*, unsigned> WorklistMap;
Chris Lattnerf4ad1652003-11-02 05:57:39 +000076 TargetData *TD;
Chris Lattner8258b442007-03-04 04:27:24 +000077 bool MustPreserveLCSSA;
Chris Lattnerb15e2b12007-03-02 21:28:56 +000078 public:
79 /// AddToWorkList - Add the specified instruction to the worklist if it
80 /// isn't already in it.
81 void AddToWorkList(Instruction *I) {
82 if (WorklistMap.insert(std::make_pair(I, Worklist.size())))
83 Worklist.push_back(I);
84 }
85
86 // RemoveFromWorkList - remove I from the worklist if it exists.
87 void RemoveFromWorkList(Instruction *I) {
88 DenseMap<Instruction*, unsigned>::iterator It = WorklistMap.find(I);
89 if (It == WorklistMap.end()) return; // Not in worklist.
90
91 // Don't bother moving everything down, just null out the slot.
92 Worklist[It->second] = 0;
93
94 WorklistMap.erase(It);
95 }
96
97 Instruction *RemoveOneFromWorkList() {
98 Instruction *I = Worklist.back();
99 Worklist.pop_back();
100 WorklistMap.erase(I);
101 return I;
102 }
Chris Lattner260ab202002-04-18 17:39:14 +0000103
Chris Lattnerb15e2b12007-03-02 21:28:56 +0000104
Chris Lattner51ea1272004-02-28 05:22:00 +0000105 /// AddUsersToWorkList - When an instruction is simplified, add all users of
106 /// the instruction to the work lists because they might get more simplified
107 /// now.
108 ///
Chris Lattner2590e512006-02-07 06:56:34 +0000109 void AddUsersToWorkList(Value &I) {
Chris Lattner113f4f42002-06-25 16:13:24 +0000110 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end();
Chris Lattner260ab202002-04-18 17:39:14 +0000111 UI != UE; ++UI)
Chris Lattnerb15e2b12007-03-02 21:28:56 +0000112 AddToWorkList(cast<Instruction>(*UI));
Chris Lattner260ab202002-04-18 17:39:14 +0000113 }
114
Chris Lattner51ea1272004-02-28 05:22:00 +0000115 /// AddUsesToWorkList - When an instruction is simplified, add operands to
116 /// the work lists because they might get more simplified now.
117 ///
118 void AddUsesToWorkList(Instruction &I) {
119 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
120 if (Instruction *Op = dyn_cast<Instruction>(I.getOperand(i)))
Chris Lattnerb15e2b12007-03-02 21:28:56 +0000121 AddToWorkList(Op);
Chris Lattner51ea1272004-02-28 05:22:00 +0000122 }
Chris Lattner2deeaea2006-10-05 06:55:50 +0000123
124 /// AddSoonDeadInstToWorklist - The specified instruction is about to become
125 /// dead. Add all of its operands to the worklist, turning them into
126 /// undef's to reduce the number of uses of those instructions.
127 ///
128 /// Return the specified operand before it is turned into an undef.
129 ///
130 Value *AddSoonDeadInstToWorklist(Instruction &I, unsigned op) {
131 Value *R = I.getOperand(op);
132
133 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
134 if (Instruction *Op = dyn_cast<Instruction>(I.getOperand(i))) {
Chris Lattnerb15e2b12007-03-02 21:28:56 +0000135 AddToWorkList(Op);
Chris Lattner2deeaea2006-10-05 06:55:50 +0000136 // Set the operand to undef to drop the use.
137 I.setOperand(i, UndefValue::get(Op->getType()));
138 }
139
140 return R;
141 }
Chris Lattner51ea1272004-02-28 05:22:00 +0000142
Chris Lattner260ab202002-04-18 17:39:14 +0000143 public:
Chris Lattner113f4f42002-06-25 16:13:24 +0000144 virtual bool runOnFunction(Function &F);
Chris Lattner960a5432007-03-03 02:04:50 +0000145
146 bool DoOneIteration(Function &F, unsigned ItNum);
Chris Lattner260ab202002-04-18 17:39:14 +0000147
Chris Lattnerf12cc842002-04-28 21:27:06 +0000148 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerf4ad1652003-11-02 05:57:39 +0000149 AU.addRequired<TargetData>();
Owen Andersona6968f82006-07-10 19:03:49 +0000150 AU.addPreservedID(LCSSAID);
Chris Lattner820d9712002-10-21 20:00:28 +0000151 AU.setPreservesCFG();
Chris Lattnerf12cc842002-04-28 21:27:06 +0000152 }
153
Chris Lattner69193f92004-04-05 01:30:19 +0000154 TargetData &getTargetData() const { return *TD; }
155
Chris Lattner260ab202002-04-18 17:39:14 +0000156 // Visitation implementation - Implement instruction combining for different
157 // instruction types. The semantics are as follows:
158 // Return Value:
159 // null - No change was made
Chris Lattnere6794492002-08-12 21:17:25 +0000160 // I - Change was made, I is still valid, I may be dead though
Chris Lattner260ab202002-04-18 17:39:14 +0000161 // otherwise - Change was made, replace I with returned instruction
Misha Brukmanb1c93172005-04-21 23:48:37 +0000162 //
Chris Lattner113f4f42002-06-25 16:13:24 +0000163 Instruction *visitAdd(BinaryOperator &I);
164 Instruction *visitSub(BinaryOperator &I);
165 Instruction *visitMul(BinaryOperator &I);
Reid Spencer7eb55b32006-11-02 01:53:59 +0000166 Instruction *visitURem(BinaryOperator &I);
167 Instruction *visitSRem(BinaryOperator &I);
168 Instruction *visitFRem(BinaryOperator &I);
169 Instruction *commonRemTransforms(BinaryOperator &I);
170 Instruction *commonIRemTransforms(BinaryOperator &I);
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000171 Instruction *commonDivTransforms(BinaryOperator &I);
172 Instruction *commonIDivTransforms(BinaryOperator &I);
173 Instruction *visitUDiv(BinaryOperator &I);
174 Instruction *visitSDiv(BinaryOperator &I);
175 Instruction *visitFDiv(BinaryOperator &I);
Chris Lattner113f4f42002-06-25 16:13:24 +0000176 Instruction *visitAnd(BinaryOperator &I);
177 Instruction *visitOr (BinaryOperator &I);
178 Instruction *visitXor(BinaryOperator &I);
Reid Spencer2341c222007-02-02 02:16:23 +0000179 Instruction *visitShl(BinaryOperator &I);
180 Instruction *visitAShr(BinaryOperator &I);
181 Instruction *visitLShr(BinaryOperator &I);
182 Instruction *commonShiftTransforms(BinaryOperator &I);
Reid Spencer266e42b2006-12-23 06:05:41 +0000183 Instruction *visitFCmpInst(FCmpInst &I);
184 Instruction *visitICmpInst(ICmpInst &I);
185 Instruction *visitICmpInstWithCastAndCast(ICmpInst &ICI);
Chris Lattnerd1f46d32005-04-24 06:59:08 +0000186
Reid Spencer266e42b2006-12-23 06:05:41 +0000187 Instruction *FoldGEPICmp(User *GEPLHS, Value *RHS,
188 ICmpInst::Predicate Cond, Instruction &I);
Reid Spencere0fc4df2006-10-20 07:07:24 +0000189 Instruction *FoldShiftByConstant(Value *Op0, ConstantInt *Op1,
Reid Spencer2341c222007-02-02 02:16:23 +0000190 BinaryOperator &I);
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000191 Instruction *commonCastTransforms(CastInst &CI);
192 Instruction *commonIntCastTransforms(CastInst &CI);
193 Instruction *visitTrunc(CastInst &CI);
194 Instruction *visitZExt(CastInst &CI);
195 Instruction *visitSExt(CastInst &CI);
196 Instruction *visitFPTrunc(CastInst &CI);
197 Instruction *visitFPExt(CastInst &CI);
198 Instruction *visitFPToUI(CastInst &CI);
199 Instruction *visitFPToSI(CastInst &CI);
200 Instruction *visitUIToFP(CastInst &CI);
201 Instruction *visitSIToFP(CastInst &CI);
202 Instruction *visitPtrToInt(CastInst &CI);
203 Instruction *visitIntToPtr(CastInst &CI);
204 Instruction *visitBitCast(CastInst &CI);
Chris Lattner411336f2005-01-19 21:50:18 +0000205 Instruction *FoldSelectOpOp(SelectInst &SI, Instruction *TI,
206 Instruction *FI);
Chris Lattnerb909e8b2004-03-12 05:52:32 +0000207 Instruction *visitSelectInst(SelectInst &CI);
Chris Lattner970c33a2003-06-19 17:00:31 +0000208 Instruction *visitCallInst(CallInst &CI);
209 Instruction *visitInvokeInst(InvokeInst &II);
Chris Lattner113f4f42002-06-25 16:13:24 +0000210 Instruction *visitPHINode(PHINode &PN);
211 Instruction *visitGetElementPtrInst(GetElementPtrInst &GEP);
Chris Lattner1085bdf2002-11-04 16:18:53 +0000212 Instruction *visitAllocationInst(AllocationInst &AI);
Chris Lattner8427bff2003-12-07 01:24:23 +0000213 Instruction *visitFreeInst(FreeInst &FI);
Chris Lattner0f1d8a32003-06-26 05:06:25 +0000214 Instruction *visitLoadInst(LoadInst &LI);
Chris Lattner31f486c2005-01-31 05:36:43 +0000215 Instruction *visitStoreInst(StoreInst &SI);
Chris Lattner9eef8a72003-06-04 04:46:00 +0000216 Instruction *visitBranchInst(BranchInst &BI);
Chris Lattner4c9c20a2004-07-03 00:26:11 +0000217 Instruction *visitSwitchInst(SwitchInst &SI);
Chris Lattner39fac442006-04-15 01:39:45 +0000218 Instruction *visitInsertElementInst(InsertElementInst &IE);
Robert Bocchinoa8352962006-01-13 22:48:06 +0000219 Instruction *visitExtractElementInst(ExtractElementInst &EI);
Chris Lattnerfbb77a42006-04-10 22:45:52 +0000220 Instruction *visitShuffleVectorInst(ShuffleVectorInst &SVI);
Chris Lattner260ab202002-04-18 17:39:14 +0000221
222 // visitInstruction - Specify what to return for unhandled instructions...
Chris Lattner113f4f42002-06-25 16:13:24 +0000223 Instruction *visitInstruction(Instruction &I) { return 0; }
Chris Lattner6d14f2a2002-08-09 23:47:40 +0000224
Chris Lattner970c33a2003-06-19 17:00:31 +0000225 private:
Chris Lattneraec3d942003-10-07 22:32:43 +0000226 Instruction *visitCallSite(CallSite CS);
Chris Lattner970c33a2003-06-19 17:00:31 +0000227 bool transformConstExprCastCall(CallSite CS);
228
Chris Lattner69193f92004-04-05 01:30:19 +0000229 public:
Chris Lattner6d14f2a2002-08-09 23:47:40 +0000230 // InsertNewInstBefore - insert an instruction New before instruction Old
231 // in the program. Add the new instruction to the worklist.
232 //
Chris Lattner623826c2004-09-28 21:48:02 +0000233 Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) {
Chris Lattner65217ff2002-08-23 18:32:43 +0000234 assert(New && New->getParent() == 0 &&
235 "New instruction already inserted into a basic block!");
Chris Lattner6d14f2a2002-08-09 23:47:40 +0000236 BasicBlock *BB = Old.getParent();
237 BB->getInstList().insert(&Old, New); // Insert inst
Chris Lattnerb15e2b12007-03-02 21:28:56 +0000238 AddToWorkList(New);
Chris Lattnere79e8542004-02-23 06:38:22 +0000239 return New;
Chris Lattner6d14f2a2002-08-09 23:47:40 +0000240 }
241
Chris Lattner7e794272004-09-24 15:21:34 +0000242 /// InsertCastBefore - Insert a cast of V to TY before the instruction POS.
243 /// This also adds the cast to the worklist. Finally, this returns the
244 /// cast.
Reid Spencer13bc5d72006-12-12 09:18:51 +0000245 Value *InsertCastBefore(Instruction::CastOps opc, Value *V, const Type *Ty,
246 Instruction &Pos) {
Chris Lattner7e794272004-09-24 15:21:34 +0000247 if (V->getType() == Ty) return V;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000248
Chris Lattnere79d2492006-04-06 19:19:17 +0000249 if (Constant *CV = dyn_cast<Constant>(V))
Reid Spencer13bc5d72006-12-12 09:18:51 +0000250 return ConstantExpr::getCast(opc, CV, Ty);
Chris Lattnere79d2492006-04-06 19:19:17 +0000251
Reid Spencer13bc5d72006-12-12 09:18:51 +0000252 Instruction *C = CastInst::create(opc, V, Ty, V->getName(), &Pos);
Chris Lattnerb15e2b12007-03-02 21:28:56 +0000253 AddToWorkList(C);
Chris Lattner7e794272004-09-24 15:21:34 +0000254 return C;
255 }
256
Chris Lattner6d14f2a2002-08-09 23:47:40 +0000257 // ReplaceInstUsesWith - This method is to be used when an instruction is
258 // found to be dead, replacable with another preexisting expression. Here
259 // we add all uses of I to the worklist, replace all uses of I with the new
260 // value, then return I, so that the inst combiner will know that I was
261 // modified.
262 //
263 Instruction *ReplaceInstUsesWith(Instruction &I, Value *V) {
Chris Lattner51ea1272004-02-28 05:22:00 +0000264 AddUsersToWorkList(I); // Add all modified instrs to worklist
Chris Lattner8953b902004-04-05 02:10:19 +0000265 if (&I != V) {
266 I.replaceAllUsesWith(V);
267 return &I;
268 } else {
269 // If we are replacing the instruction with itself, this must be in a
270 // segment of unreachable code, so just clobber the instruction.
Chris Lattner8ba9ec92004-10-18 02:59:09 +0000271 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner8953b902004-04-05 02:10:19 +0000272 return &I;
273 }
Chris Lattner6d14f2a2002-08-09 23:47:40 +0000274 }
Chris Lattner51ea1272004-02-28 05:22:00 +0000275
Chris Lattner2590e512006-02-07 06:56:34 +0000276 // UpdateValueUsesWith - This method is to be used when an value is
277 // found to be replacable with another preexisting expression or was
278 // updated. Here we add all uses of I to the worklist, replace all uses of
279 // I with the new value (unless the instruction was just updated), then
280 // return true, so that the inst combiner will know that I was modified.
281 //
282 bool UpdateValueUsesWith(Value *Old, Value *New) {
283 AddUsersToWorkList(*Old); // Add all modified instrs to worklist
284 if (Old != New)
285 Old->replaceAllUsesWith(New);
286 if (Instruction *I = dyn_cast<Instruction>(Old))
Chris Lattnerb15e2b12007-03-02 21:28:56 +0000287 AddToWorkList(I);
Chris Lattner5b2edb12006-02-12 08:02:11 +0000288 if (Instruction *I = dyn_cast<Instruction>(New))
Chris Lattnerb15e2b12007-03-02 21:28:56 +0000289 AddToWorkList(I);
Chris Lattner2590e512006-02-07 06:56:34 +0000290 return true;
291 }
292
Chris Lattner51ea1272004-02-28 05:22:00 +0000293 // EraseInstFromFunction - When dealing with an instruction that has side
294 // effects or produces a void value, we can't rely on DCE to delete the
295 // instruction. Instead, visit methods should return the value returned by
296 // this function.
297 Instruction *EraseInstFromFunction(Instruction &I) {
298 assert(I.use_empty() && "Cannot erase instruction that is used!");
299 AddUsesToWorkList(I);
Chris Lattnerb15e2b12007-03-02 21:28:56 +0000300 RemoveFromWorkList(&I);
Chris Lattner95307542004-11-18 21:41:39 +0000301 I.eraseFromParent();
Chris Lattner51ea1272004-02-28 05:22:00 +0000302 return 0; // Don't do anything with FI
303 }
304
Chris Lattner3ac7c262003-08-13 20:16:26 +0000305 private:
Chris Lattnerdfae8be2003-07-24 17:35:25 +0000306 /// InsertOperandCastBefore - This inserts a cast of V to DestTy before the
307 /// InsertBefore instruction. This is specialized a bit to avoid inserting
308 /// casts that are known to not do anything...
309 ///
Reid Spencer13bc5d72006-12-12 09:18:51 +0000310 Value *InsertOperandCastBefore(Instruction::CastOps opcode,
311 Value *V, const Type *DestTy,
Chris Lattnerdfae8be2003-07-24 17:35:25 +0000312 Instruction *InsertBefore);
313
Reid Spencer266e42b2006-12-23 06:05:41 +0000314 /// SimplifyCommutative - This performs a few simplifications for
315 /// commutative operators.
Chris Lattner7fb29e12003-03-11 00:12:48 +0000316 bool SimplifyCommutative(BinaryOperator &I);
Chris Lattnerba1cb382003-09-19 17:17:26 +0000317
Reid Spencer266e42b2006-12-23 06:05:41 +0000318 /// SimplifyCompare - This reorders the operands of a CmpInst to get them in
319 /// most-complex to least-complex order.
320 bool SimplifyCompare(CmpInst &I);
321
Reid Spencer959a21d2007-03-23 21:24:59 +0000322 /// SimplifyDemandedBits - Attempts to replace V with a simpler value based
323 /// on the demanded bits.
Reid Spencer1791f232007-03-12 17:25:59 +0000324 bool SimplifyDemandedBits(Value *V, APInt DemandedMask,
325 APInt& KnownZero, APInt& KnownOne,
326 unsigned Depth = 0);
327
Chris Lattner2deeaea2006-10-05 06:55:50 +0000328 Value *SimplifyDemandedVectorElts(Value *V, uint64_t DemandedElts,
329 uint64_t &UndefElts, unsigned Depth = 0);
330
Chris Lattner6a4adcd2004-09-29 05:07:12 +0000331 // FoldOpIntoPhi - Given a binary operator or cast instruction which has a
332 // PHI node as operand #0, see if we can fold the instruction into the PHI
333 // (which is only possible if all operands to the PHI are constants).
334 Instruction *FoldOpIntoPhi(Instruction &I);
335
Chris Lattner7515cab2004-11-14 19:13:23 +0000336 // FoldPHIArgOpIntoPHI - If all operands to a PHI node are the same "unary"
337 // operator and they all are only used by the PHI, PHI together their
338 // inputs, and do the operation once, to the result of the PHI.
339 Instruction *FoldPHIArgOpIntoPHI(PHINode &PN);
Chris Lattnercadac0c2006-11-01 04:51:18 +0000340 Instruction *FoldPHIArgBinOpIntoPHI(PHINode &PN);
341
342
Zhou Sheng75b871f2007-01-11 12:24:14 +0000343 Instruction *OptAndOp(Instruction *Op, ConstantInt *OpRHS,
344 ConstantInt *AndRHS, BinaryOperator &TheAnd);
Chris Lattneraf517572005-09-18 04:24:45 +0000345
Zhou Sheng75b871f2007-01-11 12:24:14 +0000346 Value *FoldLogicalPlusAnd(Value *LHS, Value *RHS, ConstantInt *Mask,
Chris Lattneraf517572005-09-18 04:24:45 +0000347 bool isSub, Instruction &I);
Chris Lattner6862fbd2004-09-29 17:40:11 +0000348 Instruction *InsertRangeTest(Value *V, Constant *Lo, Constant *Hi,
Reid Spencer266e42b2006-12-23 06:05:41 +0000349 bool isSigned, bool Inside, Instruction &IB);
Chris Lattner216be912005-10-24 06:03:58 +0000350 Instruction *PromoteCastOfAllocation(CastInst &CI, AllocationInst &AI);
Chris Lattnerc482a9e2006-06-15 19:07:26 +0000351 Instruction *MatchBSwap(BinaryOperator &I);
352
Reid Spencer74a528b2006-12-13 18:21:21 +0000353 Value *EvaluateInDifferentType(Value *V, const Type *Ty, bool isSigned);
Chris Lattner260ab202002-04-18 17:39:14 +0000354 };
Chris Lattnerb28b6802002-07-23 18:06:35 +0000355
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000356 RegisterPass<InstCombiner> X("instcombine", "Combine redundant instructions");
Chris Lattner260ab202002-04-18 17:39:14 +0000357}
358
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000359// getComplexity: Assign a complexity or rank value to LLVM Values...
Chris Lattner81a7a232004-10-16 18:11:37 +0000360// 0 -> undef, 1 -> Const, 2 -> Other, 3 -> Arg, 3 -> Unary, 4 -> OtherInst
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000361static unsigned getComplexity(Value *V) {
362 if (isa<Instruction>(V)) {
363 if (BinaryOperator::isNeg(V) || BinaryOperator::isNot(V))
Chris Lattner81a7a232004-10-16 18:11:37 +0000364 return 3;
365 return 4;
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000366 }
Chris Lattner81a7a232004-10-16 18:11:37 +0000367 if (isa<Argument>(V)) return 3;
368 return isa<Constant>(V) ? (isa<UndefValue>(V) ? 0 : 1) : 2;
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000369}
Chris Lattner260ab202002-04-18 17:39:14 +0000370
Chris Lattner7fb29e12003-03-11 00:12:48 +0000371// isOnlyUse - Return true if this instruction will be deleted if we stop using
372// it.
373static bool isOnlyUse(Value *V) {
Chris Lattnerf95d9b92003-10-15 16:48:29 +0000374 return V->hasOneUse() || isa<Constant>(V);
Chris Lattner7fb29e12003-03-11 00:12:48 +0000375}
376
Chris Lattnere79e8542004-02-23 06:38:22 +0000377// getPromotedType - Return the specified type promoted as it would be to pass
378// though a va_arg area...
379static const Type *getPromotedType(const Type *Ty) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000380 if (const IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
381 if (ITy->getBitWidth() < 32)
382 return Type::Int32Ty;
383 } else if (Ty == Type::FloatTy)
384 return Type::DoubleTy;
385 return Ty;
Chris Lattnere79e8542004-02-23 06:38:22 +0000386}
387
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000388/// getBitCastOperand - If the specified operand is a CastInst or a constant
389/// expression bitcast, return the operand value, otherwise return null.
390static Value *getBitCastOperand(Value *V) {
391 if (BitCastInst *I = dyn_cast<BitCastInst>(V))
Chris Lattner567b81f2005-09-13 00:40:14 +0000392 return I->getOperand(0);
393 else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000394 if (CE->getOpcode() == Instruction::BitCast)
Chris Lattner567b81f2005-09-13 00:40:14 +0000395 return CE->getOperand(0);
396 return 0;
397}
398
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000399/// This function is a wrapper around CastInst::isEliminableCastPair. It
400/// simply extracts arguments and returns what that function returns.
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000401static Instruction::CastOps
402isEliminableCastPair(
403 const CastInst *CI, ///< The first cast instruction
404 unsigned opcode, ///< The opcode of the second cast instruction
405 const Type *DstTy, ///< The target type for the second cast instruction
406 TargetData *TD ///< The target data for pointer size
407) {
408
409 const Type *SrcTy = CI->getOperand(0)->getType(); // A from above
410 const Type *MidTy = CI->getType(); // B from above
Chris Lattner1d441ad2006-05-06 09:00:16 +0000411
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000412 // Get the opcodes of the two Cast instructions
413 Instruction::CastOps firstOp = Instruction::CastOps(CI->getOpcode());
414 Instruction::CastOps secondOp = Instruction::CastOps(opcode);
Chris Lattner1d441ad2006-05-06 09:00:16 +0000415
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000416 return Instruction::CastOps(
417 CastInst::isEliminableCastPair(firstOp, secondOp, SrcTy, MidTy,
418 DstTy, TD->getIntPtrType()));
Chris Lattner1d441ad2006-05-06 09:00:16 +0000419}
420
421/// ValueRequiresCast - Return true if the cast from "V to Ty" actually results
422/// in any code being generated. It does not require codegen if V is simple
423/// enough or if the cast can be folded into other casts.
Reid Spencer266e42b2006-12-23 06:05:41 +0000424static bool ValueRequiresCast(Instruction::CastOps opcode, const Value *V,
425 const Type *Ty, TargetData *TD) {
Chris Lattner1d441ad2006-05-06 09:00:16 +0000426 if (V->getType() == Ty || isa<Constant>(V)) return false;
427
Chris Lattner99155be2006-05-25 23:24:33 +0000428 // If this is another cast that can be eliminated, it isn't codegen either.
Chris Lattner1d441ad2006-05-06 09:00:16 +0000429 if (const CastInst *CI = dyn_cast<CastInst>(V))
Reid Spencer266e42b2006-12-23 06:05:41 +0000430 if (isEliminableCastPair(CI, opcode, Ty, TD))
Chris Lattner1d441ad2006-05-06 09:00:16 +0000431 return false;
432 return true;
433}
434
435/// InsertOperandCastBefore - This inserts a cast of V to DestTy before the
436/// InsertBefore instruction. This is specialized a bit to avoid inserting
437/// casts that are known to not do anything...
438///
Reid Spencer13bc5d72006-12-12 09:18:51 +0000439Value *InstCombiner::InsertOperandCastBefore(Instruction::CastOps opcode,
440 Value *V, const Type *DestTy,
Chris Lattner1d441ad2006-05-06 09:00:16 +0000441 Instruction *InsertBefore) {
442 if (V->getType() == DestTy) return V;
443 if (Constant *C = dyn_cast<Constant>(V))
Reid Spencer13bc5d72006-12-12 09:18:51 +0000444 return ConstantExpr::getCast(opcode, C, DestTy);
Chris Lattner1d441ad2006-05-06 09:00:16 +0000445
Reid Spencer13bc5d72006-12-12 09:18:51 +0000446 return InsertCastBefore(opcode, V, DestTy, *InsertBefore);
Chris Lattner1d441ad2006-05-06 09:00:16 +0000447}
448
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000449// SimplifyCommutative - This performs a few simplifications for commutative
450// operators:
Chris Lattner260ab202002-04-18 17:39:14 +0000451//
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000452// 1. Order operands such that they are listed from right (least complex) to
453// left (most complex). This puts constants before unary operators before
454// binary operators.
455//
Chris Lattner7fb29e12003-03-11 00:12:48 +0000456// 2. Transform: (op (op V, C1), C2) ==> (op V, (op C1, C2))
457// 3. Transform: (op (op V1, C1), (op V2, C2)) ==> (op (op V1, V2), (op C1,C2))
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000458//
Chris Lattner7fb29e12003-03-11 00:12:48 +0000459bool InstCombiner::SimplifyCommutative(BinaryOperator &I) {
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000460 bool Changed = false;
461 if (getComplexity(I.getOperand(0)) < getComplexity(I.getOperand(1)))
462 Changed = !I.swapOperands();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000463
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000464 if (!I.isAssociative()) return Changed;
465 Instruction::BinaryOps Opcode = I.getOpcode();
Chris Lattner7fb29e12003-03-11 00:12:48 +0000466 if (BinaryOperator *Op = dyn_cast<BinaryOperator>(I.getOperand(0)))
467 if (Op->getOpcode() == Opcode && isa<Constant>(Op->getOperand(1))) {
468 if (isa<Constant>(I.getOperand(1))) {
Chris Lattner34428442003-05-27 16:40:51 +0000469 Constant *Folded = ConstantExpr::get(I.getOpcode(),
470 cast<Constant>(I.getOperand(1)),
471 cast<Constant>(Op->getOperand(1)));
Chris Lattner7fb29e12003-03-11 00:12:48 +0000472 I.setOperand(0, Op->getOperand(0));
473 I.setOperand(1, Folded);
474 return true;
475 } else if (BinaryOperator *Op1=dyn_cast<BinaryOperator>(I.getOperand(1)))
476 if (Op1->getOpcode() == Opcode && isa<Constant>(Op1->getOperand(1)) &&
477 isOnlyUse(Op) && isOnlyUse(Op1)) {
478 Constant *C1 = cast<Constant>(Op->getOperand(1));
479 Constant *C2 = cast<Constant>(Op1->getOperand(1));
480
481 // Fold (op (op V1, C1), (op V2, C2)) ==> (op (op V1, V2), (op C1,C2))
Chris Lattner34428442003-05-27 16:40:51 +0000482 Constant *Folded = ConstantExpr::get(I.getOpcode(), C1, C2);
Chris Lattner7fb29e12003-03-11 00:12:48 +0000483 Instruction *New = BinaryOperator::create(Opcode, Op->getOperand(0),
484 Op1->getOperand(0),
485 Op1->getName(), &I);
Chris Lattnerb15e2b12007-03-02 21:28:56 +0000486 AddToWorkList(New);
Chris Lattner7fb29e12003-03-11 00:12:48 +0000487 I.setOperand(0, New);
488 I.setOperand(1, Folded);
489 return true;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000490 }
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000491 }
Chris Lattnerdcf240a2003-03-10 21:43:22 +0000492 return Changed;
Chris Lattner260ab202002-04-18 17:39:14 +0000493}
Chris Lattnerca081252001-12-14 16:52:21 +0000494
Reid Spencer266e42b2006-12-23 06:05:41 +0000495/// SimplifyCompare - For a CmpInst this function just orders the operands
496/// so that theyare listed from right (least complex) to left (most complex).
497/// This puts constants before unary operators before binary operators.
498bool InstCombiner::SimplifyCompare(CmpInst &I) {
499 if (getComplexity(I.getOperand(0)) >= getComplexity(I.getOperand(1)))
500 return false;
501 I.swapOperands();
502 // Compare instructions are not associative so there's nothing else we can do.
503 return true;
504}
505
Chris Lattnerbb74e222003-03-10 23:06:50 +0000506// dyn_castNegVal - Given a 'sub' instruction, return the RHS of the instruction
507// if the LHS is a constant zero (which is the 'negate' form).
Chris Lattner9fa53de2002-05-06 16:49:18 +0000508//
Chris Lattnerbb74e222003-03-10 23:06:50 +0000509static inline Value *dyn_castNegVal(Value *V) {
510 if (BinaryOperator::isNeg(V))
Chris Lattnerd6f636a2005-04-24 07:30:14 +0000511 return BinaryOperator::getNegArgument(V);
Chris Lattnerbb74e222003-03-10 23:06:50 +0000512
Chris Lattner9ad0d552004-12-14 20:08:06 +0000513 // Constants can be considered to be negated values if they can be folded.
514 if (ConstantInt *C = dyn_cast<ConstantInt>(V))
515 return ConstantExpr::getNeg(C);
Chris Lattnerbb74e222003-03-10 23:06:50 +0000516 return 0;
Chris Lattner9fa53de2002-05-06 16:49:18 +0000517}
518
Chris Lattnerbb74e222003-03-10 23:06:50 +0000519static inline Value *dyn_castNotVal(Value *V) {
520 if (BinaryOperator::isNot(V))
Chris Lattnerd6f636a2005-04-24 07:30:14 +0000521 return BinaryOperator::getNotArgument(V);
Chris Lattnerbb74e222003-03-10 23:06:50 +0000522
523 // Constants can be considered to be not'ed values...
Zhou Sheng75b871f2007-01-11 12:24:14 +0000524 if (ConstantInt *C = dyn_cast<ConstantInt>(V))
Chris Lattnerc8e7e292004-06-10 02:12:35 +0000525 return ConstantExpr::getNot(C);
Chris Lattnerbb74e222003-03-10 23:06:50 +0000526 return 0;
527}
528
Chris Lattner7fb29e12003-03-11 00:12:48 +0000529// dyn_castFoldableMul - If this value is a multiply that can be folded into
530// other computations (because it has a constant operand), return the
Chris Lattner8c3e7b92004-11-13 19:50:12 +0000531// non-constant operand of the multiply, and set CST to point to the multiplier.
532// Otherwise, return null.
Chris Lattner7fb29e12003-03-11 00:12:48 +0000533//
Chris Lattner8c3e7b92004-11-13 19:50:12 +0000534static inline Value *dyn_castFoldableMul(Value *V, ConstantInt *&CST) {
Chris Lattner03c49532007-01-15 02:27:26 +0000535 if (V->hasOneUse() && V->getType()->isInteger())
Chris Lattner8c3e7b92004-11-13 19:50:12 +0000536 if (Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner7fb29e12003-03-11 00:12:48 +0000537 if (I->getOpcode() == Instruction::Mul)
Chris Lattner970136362004-11-15 05:54:07 +0000538 if ((CST = dyn_cast<ConstantInt>(I->getOperand(1))))
Chris Lattner7fb29e12003-03-11 00:12:48 +0000539 return I->getOperand(0);
Chris Lattner8c3e7b92004-11-13 19:50:12 +0000540 if (I->getOpcode() == Instruction::Shl)
Chris Lattner970136362004-11-15 05:54:07 +0000541 if ((CST = dyn_cast<ConstantInt>(I->getOperand(1)))) {
Chris Lattner8c3e7b92004-11-13 19:50:12 +0000542 // The multiplier is really 1 << CST.
Reid Spencer624766f2007-03-25 19:55:33 +0000543 Constant *One = ConstantInt::get(V->getType(), 1);
544 CST = cast<ConstantInt>(ConstantExpr::getShl(One, CST));
Chris Lattner8c3e7b92004-11-13 19:50:12 +0000545 return I->getOperand(0);
546 }
547 }
Chris Lattner7fb29e12003-03-11 00:12:48 +0000548 return 0;
Chris Lattner3082c5a2003-02-18 19:28:33 +0000549}
Chris Lattner31ae8632002-08-14 17:51:49 +0000550
Chris Lattner0798af32005-01-13 20:14:25 +0000551/// dyn_castGetElementPtr - If this is a getelementptr instruction or constant
552/// expression, return it.
553static User *dyn_castGetElementPtr(Value *V) {
554 if (isa<GetElementPtrInst>(V)) return cast<User>(V);
555 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
556 if (CE->getOpcode() == Instruction::GetElementPtr)
557 return cast<User>(V);
558 return false;
559}
560
Reid Spencer80263aa2007-03-25 05:33:51 +0000561/// AddOne - Add one to a ConstantInt
Chris Lattner6862fbd2004-09-29 17:40:11 +0000562static ConstantInt *AddOne(ConstantInt *C) {
Reid Spencer624766f2007-03-25 19:55:33 +0000563 APInt Val(C->getValue());
564 return ConstantInt::get(++Val);
Chris Lattner623826c2004-09-28 21:48:02 +0000565}
Reid Spencer80263aa2007-03-25 05:33:51 +0000566/// SubOne - Subtract one from a ConstantInt
Chris Lattner6862fbd2004-09-29 17:40:11 +0000567static ConstantInt *SubOne(ConstantInt *C) {
Reid Spencer624766f2007-03-25 19:55:33 +0000568 APInt Val(C->getValue());
569 return ConstantInt::get(--Val);
Reid Spencer80263aa2007-03-25 05:33:51 +0000570}
571/// Add - Add two ConstantInts together
572static ConstantInt *Add(ConstantInt *C1, ConstantInt *C2) {
573 return ConstantInt::get(C1->getValue() + C2->getValue());
574}
575/// And - Bitwise AND two ConstantInts together
576static ConstantInt *And(ConstantInt *C1, ConstantInt *C2) {
577 return ConstantInt::get(C1->getValue() & C2->getValue());
578}
579/// Subtract - Subtract one ConstantInt from another
580static ConstantInt *Subtract(ConstantInt *C1, ConstantInt *C2) {
581 return ConstantInt::get(C1->getValue() - C2->getValue());
582}
583/// Multiply - Multiply two ConstantInts together
584static ConstantInt *Multiply(ConstantInt *C1, ConstantInt *C2) {
585 return ConstantInt::get(C1->getValue() * C2->getValue());
Chris Lattner623826c2004-09-28 21:48:02 +0000586}
587
Chris Lattner4534dd592006-02-09 07:38:58 +0000588/// ComputeMaskedBits - Determine which of the bits specified in Mask are
589/// known to be either zero or one and return them in the KnownZero/KnownOne
Reid Spenceraa696402007-03-08 01:46:38 +0000590/// bit sets. This code only analyzes bits in Mask, in order to short-circuit
591/// processing.
592/// NOTE: we cannot consider 'undef' to be "IsZero" here. The problem is that
593/// we cannot optimize based on the assumption that it is zero without changing
594/// it to be an explicit zero. If we don't change it to zero, other code could
595/// optimized based on the contradictory assumption that it is non-zero.
596/// Because instcombine aggressively folds operations with undef args anyway,
597/// this won't lose us code quality.
Reid Spencerd8aad612007-03-25 02:03:12 +0000598static void ComputeMaskedBits(Value *V, const APInt& Mask, APInt& KnownZero,
Reid Spenceraa696402007-03-08 01:46:38 +0000599 APInt& KnownOne, unsigned Depth = 0) {
Zhou Shengaf4341d2007-03-13 02:23:10 +0000600 assert(V && "No Value?");
601 assert(Depth <= 6 && "Limit Search Depth");
Reid Spenceraa696402007-03-08 01:46:38 +0000602 uint32_t BitWidth = Mask.getBitWidth();
Zhou Shengaf4341d2007-03-13 02:23:10 +0000603 const IntegerType *VTy = cast<IntegerType>(V->getType());
604 assert(VTy->getBitWidth() == BitWidth &&
605 KnownZero.getBitWidth() == BitWidth &&
Reid Spenceraa696402007-03-08 01:46:38 +0000606 KnownOne.getBitWidth() == BitWidth &&
Zhou Shengaf4341d2007-03-13 02:23:10 +0000607 "VTy, Mask, KnownOne and KnownZero should have same BitWidth");
Reid Spenceraa696402007-03-08 01:46:38 +0000608 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
609 // We know all of the bits for a constant!
Zhou Shengaf4341d2007-03-13 02:23:10 +0000610 KnownOne = CI->getValue() & Mask;
Reid Spenceraa696402007-03-08 01:46:38 +0000611 KnownZero = ~KnownOne & Mask;
612 return;
613 }
614
Reid Spenceraa696402007-03-08 01:46:38 +0000615 if (Depth == 6 || Mask == 0)
616 return; // Limit search depth.
617
618 Instruction *I = dyn_cast<Instruction>(V);
619 if (!I) return;
620
Zhou Shengaf4341d2007-03-13 02:23:10 +0000621 KnownZero.clear(); KnownOne.clear(); // Don't know anything.
Reid Spenceraa696402007-03-08 01:46:38 +0000622 APInt KnownZero2(KnownZero), KnownOne2(KnownOne);
Reid Spenceraa696402007-03-08 01:46:38 +0000623
624 switch (I->getOpcode()) {
Reid Spencerd8aad612007-03-25 02:03:12 +0000625 case Instruction::And: {
Reid Spenceraa696402007-03-08 01:46:38 +0000626 // If either the LHS or the RHS are Zero, the result is zero.
627 ComputeMaskedBits(I->getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Reid Spencerd8aad612007-03-25 02:03:12 +0000628 APInt Mask2(Mask & ~KnownZero);
629 ComputeMaskedBits(I->getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
Reid Spenceraa696402007-03-08 01:46:38 +0000630 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
631 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
632
633 // Output known-1 bits are only known if set in both the LHS & RHS.
634 KnownOne &= KnownOne2;
635 // Output known-0 are known to be clear if zero in either the LHS | RHS.
636 KnownZero |= KnownZero2;
637 return;
Reid Spencerd8aad612007-03-25 02:03:12 +0000638 }
639 case Instruction::Or: {
Reid Spenceraa696402007-03-08 01:46:38 +0000640 ComputeMaskedBits(I->getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
Reid Spencerd8aad612007-03-25 02:03:12 +0000641 APInt Mask2(Mask & ~KnownOne);
642 ComputeMaskedBits(I->getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
Reid Spenceraa696402007-03-08 01:46:38 +0000643 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
644 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
645
646 // Output known-0 bits are only known if clear in both the LHS & RHS.
647 KnownZero &= KnownZero2;
648 // Output known-1 are known to be set if set in either the LHS | RHS.
649 KnownOne |= KnownOne2;
650 return;
Reid Spencerd8aad612007-03-25 02:03:12 +0000651 }
Reid Spenceraa696402007-03-08 01:46:38 +0000652 case Instruction::Xor: {
653 ComputeMaskedBits(I->getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
654 ComputeMaskedBits(I->getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
655 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
656 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
657
658 // Output known-0 bits are known if clear or set in both the LHS & RHS.
659 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
660 // Output known-1 are known to be set if set in only one of the LHS, RHS.
661 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
662 KnownZero = KnownZeroOut;
663 return;
664 }
665 case Instruction::Select:
666 ComputeMaskedBits(I->getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
667 ComputeMaskedBits(I->getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
668 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
669 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
670
671 // Only known if known in both the LHS and RHS.
672 KnownOne &= KnownOne2;
673 KnownZero &= KnownZero2;
674 return;
675 case Instruction::FPTrunc:
676 case Instruction::FPExt:
677 case Instruction::FPToUI:
678 case Instruction::FPToSI:
679 case Instruction::SIToFP:
680 case Instruction::PtrToInt:
681 case Instruction::UIToFP:
682 case Instruction::IntToPtr:
683 return; // Can't work with floating point or pointers
Zhou Shengaf4341d2007-03-13 02:23:10 +0000684 case Instruction::Trunc: {
Reid Spenceraa696402007-03-08 01:46:38 +0000685 // All these have integer operands
Zhou Shengaf4341d2007-03-13 02:23:10 +0000686 uint32_t SrcBitWidth =
687 cast<IntegerType>(I->getOperand(0)->getType())->getBitWidth();
Reid Spencerd8aad612007-03-25 02:03:12 +0000688 ComputeMaskedBits(I->getOperand(0), APInt(Mask).zext(SrcBitWidth),
Zhou Shengaf4341d2007-03-13 02:23:10 +0000689 KnownZero.zext(SrcBitWidth), KnownOne.zext(SrcBitWidth), Depth+1);
690 KnownZero.trunc(BitWidth);
691 KnownOne.trunc(BitWidth);
Reid Spenceraa696402007-03-08 01:46:38 +0000692 return;
Zhou Shengaf4341d2007-03-13 02:23:10 +0000693 }
Reid Spenceraa696402007-03-08 01:46:38 +0000694 case Instruction::BitCast: {
695 const Type *SrcTy = I->getOperand(0)->getType();
696 if (SrcTy->isInteger()) {
697 ComputeMaskedBits(I->getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
698 return;
699 }
700 break;
701 }
702 case Instruction::ZExt: {
703 // Compute the bits in the result that are not present in the input.
704 const IntegerType *SrcTy = cast<IntegerType>(I->getOperand(0)->getType());
Zhou Shengaf4341d2007-03-13 02:23:10 +0000705 uint32_t SrcBitWidth = SrcTy->getBitWidth();
Reid Spencercd99fbd2007-03-25 04:26:16 +0000706 APInt NewBits(APInt::getHighBitsSet(BitWidth, BitWidth - SrcBitWidth));
707
Reid Spencerd8aad612007-03-25 02:03:12 +0000708 ComputeMaskedBits(I->getOperand(0), APInt(Mask).trunc(SrcBitWidth),
Zhou Shengaf4341d2007-03-13 02:23:10 +0000709 KnownZero.trunc(SrcBitWidth), KnownOne.trunc(SrcBitWidth), Depth+1);
Reid Spenceraa696402007-03-08 01:46:38 +0000710 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
711 // The top bits are known to be zero.
Zhou Shengaf4341d2007-03-13 02:23:10 +0000712 KnownZero.zext(BitWidth);
713 KnownOne.zext(BitWidth);
Reid Spenceraa696402007-03-08 01:46:38 +0000714 KnownZero |= NewBits;
715 return;
716 }
717 case Instruction::SExt: {
718 // Compute the bits in the result that are not present in the input.
719 const IntegerType *SrcTy = cast<IntegerType>(I->getOperand(0)->getType());
Zhou Shengaf4341d2007-03-13 02:23:10 +0000720 uint32_t SrcBitWidth = SrcTy->getBitWidth();
Reid Spencercd99fbd2007-03-25 04:26:16 +0000721 APInt NewBits(APInt::getHighBitsSet(BitWidth, BitWidth - SrcBitWidth));
722
Reid Spencerd8aad612007-03-25 02:03:12 +0000723 ComputeMaskedBits(I->getOperand(0), APInt(Mask).trunc(SrcBitWidth),
Zhou Shengaf4341d2007-03-13 02:23:10 +0000724 KnownZero.trunc(SrcBitWidth), KnownOne.trunc(SrcBitWidth), Depth+1);
Reid Spenceraa696402007-03-08 01:46:38 +0000725 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Zhou Shengaf4341d2007-03-13 02:23:10 +0000726 KnownZero.zext(BitWidth);
727 KnownOne.zext(BitWidth);
Reid Spenceraa696402007-03-08 01:46:38 +0000728
729 // If the sign bit of the input is known set or clear, then we know the
730 // top bits of the result.
Zhou Shengb3e00c42007-03-12 05:44:52 +0000731 APInt InSignBit(APInt::getSignBit(SrcTy->getBitWidth()));
Zhou Shengaf4341d2007-03-13 02:23:10 +0000732 InSignBit.zext(BitWidth);
Reid Spenceraa696402007-03-08 01:46:38 +0000733 if ((KnownZero & InSignBit) != 0) { // Input sign bit known zero
734 KnownZero |= NewBits;
735 KnownOne &= ~NewBits;
736 } else if ((KnownOne & InSignBit) != 0) { // Input sign bit known set
737 KnownOne |= NewBits;
738 KnownZero &= ~NewBits;
739 } else { // Input sign bit unknown
740 KnownZero &= ~NewBits;
741 KnownOne &= ~NewBits;
742 }
743 return;
744 }
745 case Instruction::Shl:
746 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
747 if (ConstantInt *SA = dyn_cast<ConstantInt>(I->getOperand(1))) {
748 uint64_t ShiftAmt = SA->getZExtValue();
Reid Spencerd8aad612007-03-25 02:03:12 +0000749 APInt Mask2(Mask.lshr(ShiftAmt));
750 ComputeMaskedBits(I->getOperand(0), Mask2, KnownZero, KnownOne, Depth+1);
Reid Spenceraa696402007-03-08 01:46:38 +0000751 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Zhou Shengb3e00c42007-03-12 05:44:52 +0000752 KnownZero <<= ShiftAmt;
753 KnownOne <<= ShiftAmt;
Reid Spencer624766f2007-03-25 19:55:33 +0000754 KnownZero |= APInt::getLowBitsSet(BitWidth, ShiftAmt); // low bits known 0
Reid Spenceraa696402007-03-08 01:46:38 +0000755 return;
756 }
757 break;
758 case Instruction::LShr:
759 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
760 if (ConstantInt *SA = dyn_cast<ConstantInt>(I->getOperand(1))) {
761 // Compute the new bits that are at the top now.
762 uint64_t ShiftAmt = SA->getZExtValue();
Reid Spencercd99fbd2007-03-25 04:26:16 +0000763 APInt HighBits(APInt::getHighBitsSet(BitWidth, ShiftAmt));
Reid Spenceraa696402007-03-08 01:46:38 +0000764
765 // Unsigned shift right.
Reid Spencerd8aad612007-03-25 02:03:12 +0000766 APInt Mask2(Mask.shl(ShiftAmt));
767 ComputeMaskedBits(I->getOperand(0), Mask2, KnownZero,KnownOne,Depth+1);
Reid Spenceraa696402007-03-08 01:46:38 +0000768 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
769 KnownZero = APIntOps::lshr(KnownZero, ShiftAmt);
770 KnownOne = APIntOps::lshr(KnownOne, ShiftAmt);
771 KnownZero |= HighBits; // high bits known zero.
772 return;
773 }
774 break;
775 case Instruction::AShr:
776 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
777 if (ConstantInt *SA = dyn_cast<ConstantInt>(I->getOperand(1))) {
778 // Compute the new bits that are at the top now.
779 uint64_t ShiftAmt = SA->getZExtValue();
Reid Spencercd99fbd2007-03-25 04:26:16 +0000780 APInt HighBits(APInt::getHighBitsSet(BitWidth, ShiftAmt));
Reid Spenceraa696402007-03-08 01:46:38 +0000781
782 // Signed shift right.
Reid Spencerd8aad612007-03-25 02:03:12 +0000783 APInt Mask2(Mask.shl(ShiftAmt));
784 ComputeMaskedBits(I->getOperand(0), Mask2, KnownZero,KnownOne,Depth+1);
Reid Spenceraa696402007-03-08 01:46:38 +0000785 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
786 KnownZero = APIntOps::lshr(KnownZero, ShiftAmt);
787 KnownOne = APIntOps::lshr(KnownOne, ShiftAmt);
788
789 // Handle the sign bits and adjust to where it is now in the mask.
Zhou Shengb3e00c42007-03-12 05:44:52 +0000790 APInt SignBit(APInt::getSignBit(BitWidth).lshr(ShiftAmt));
Reid Spenceraa696402007-03-08 01:46:38 +0000791
792 if ((KnownZero & SignBit) != 0) { // New bits are known zero.
793 KnownZero |= HighBits;
794 } else if ((KnownOne & SignBit) != 0) { // New bits are known one.
795 KnownOne |= HighBits;
796 }
797 return;
798 }
799 break;
800 }
801}
802
Reid Spencerbb5741f2007-03-08 01:52:58 +0000803/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
804/// this predicate to simplify operations downstream. Mask is known to be zero
805/// for bits that V cannot have.
806static bool MaskedValueIsZero(Value *V, const APInt& Mask, unsigned Depth = 0) {
Zhou Shengbe171ee2007-03-12 16:54:56 +0000807 APInt KnownZero(Mask.getBitWidth(), 0), KnownOne(Mask.getBitWidth(), 0);
Reid Spencerbb5741f2007-03-08 01:52:58 +0000808 ComputeMaskedBits(V, Mask, KnownZero, KnownOne, Depth);
809 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
810 return (KnownZero & Mask) == Mask;
811}
812
Chris Lattner0157e7f2006-02-11 09:31:47 +0000813/// ShrinkDemandedConstant - Check to see if the specified operand of the
814/// specified instruction is a constant integer. If so, check to see if there
815/// are any bits set in the constant that are not demanded. If so, shrink the
816/// constant and return true.
817static bool ShrinkDemandedConstant(Instruction *I, unsigned OpNo,
Reid Spencerd9281782007-03-12 17:15:10 +0000818 APInt Demanded) {
819 assert(I && "No instruction?");
820 assert(OpNo < I->getNumOperands() && "Operand index too large");
821
822 // If the operand is not a constant integer, nothing to do.
823 ConstantInt *OpC = dyn_cast<ConstantInt>(I->getOperand(OpNo));
824 if (!OpC) return false;
825
826 // If there are no bits set that aren't demanded, nothing to do.
827 Demanded.zextOrTrunc(OpC->getValue().getBitWidth());
828 if ((~Demanded & OpC->getValue()) == 0)
829 return false;
830
831 // This instruction is producing bits that are not demanded. Shrink the RHS.
832 Demanded &= OpC->getValue();
833 I->setOperand(OpNo, ConstantInt::get(Demanded));
834 return true;
835}
836
Chris Lattneree0f2802006-02-12 02:07:56 +0000837// ComputeSignedMinMaxValuesFromKnownBits - Given a signed integer type and a
838// set of known zero and one bits, compute the maximum and minimum values that
839// could have the specified known zero and known one bits, returning them in
840// min/max.
841static void ComputeSignedMinMaxValuesFromKnownBits(const Type *Ty,
Reid Spencerc3e3b8a2007-03-22 20:36:03 +0000842 const APInt& KnownZero,
843 const APInt& KnownOne,
844 APInt& Min, APInt& Max) {
845 uint32_t BitWidth = cast<IntegerType>(Ty)->getBitWidth();
846 assert(KnownZero.getBitWidth() == BitWidth &&
847 KnownOne.getBitWidth() == BitWidth &&
848 Min.getBitWidth() == BitWidth && Max.getBitWidth() == BitWidth &&
849 "Ty, KnownZero, KnownOne and Min, Max must have equal bitwidth.");
Reid Spencercd99fbd2007-03-25 04:26:16 +0000850 APInt UnknownBits = ~(KnownZero|KnownOne);
Chris Lattneree0f2802006-02-12 02:07:56 +0000851
Reid Spencerc3e3b8a2007-03-22 20:36:03 +0000852 APInt SignBit(APInt::getSignBit(BitWidth));
Chris Lattneree0f2802006-02-12 02:07:56 +0000853
854 // The minimum value is when all unknown bits are zeros, EXCEPT for the sign
855 // bit if it is unknown.
856 Min = KnownOne;
857 Max = KnownOne|UnknownBits;
858
Reid Spencerc3e3b8a2007-03-22 20:36:03 +0000859 if ((SignBit & UnknownBits) != 0) { // Sign bit is unknown
Chris Lattneree0f2802006-02-12 02:07:56 +0000860 Min |= SignBit;
861 Max &= ~SignBit;
862 }
Chris Lattneree0f2802006-02-12 02:07:56 +0000863}
864
865// ComputeUnsignedMinMaxValuesFromKnownBits - Given an unsigned integer type and
866// a set of known zero and one bits, compute the maximum and minimum values that
867// could have the specified known zero and known one bits, returning them in
868// min/max.
869static void ComputeUnsignedMinMaxValuesFromKnownBits(const Type *Ty,
Reid Spencerc3e3b8a2007-03-22 20:36:03 +0000870 const APInt& KnownZero,
871 const APInt& KnownOne,
872 APInt& Min,
873 APInt& Max) {
874 uint32_t BitWidth = cast<IntegerType>(Ty)->getBitWidth();
875 assert(KnownZero.getBitWidth() == BitWidth &&
876 KnownOne.getBitWidth() == BitWidth &&
877 Min.getBitWidth() == BitWidth && Max.getBitWidth() &&
878 "Ty, KnownZero, KnownOne and Min, Max must have equal bitwidth.");
Reid Spencercd99fbd2007-03-25 04:26:16 +0000879 APInt UnknownBits = ~(KnownZero|KnownOne);
Chris Lattneree0f2802006-02-12 02:07:56 +0000880
881 // The minimum value is when the unknown bits are all zeros.
882 Min = KnownOne;
883 // The maximum value is when the unknown bits are all ones.
884 Max = KnownOne|UnknownBits;
885}
Chris Lattner0157e7f2006-02-11 09:31:47 +0000886
Reid Spencer1791f232007-03-12 17:25:59 +0000887/// SimplifyDemandedBits - This function attempts to replace V with a simpler
888/// value based on the demanded bits. When this function is called, it is known
889/// that only the bits set in DemandedMask of the result of V are ever used
890/// downstream. Consequently, depending on the mask and V, it may be possible
891/// to replace V with a constant or one of its operands. In such cases, this
892/// function does the replacement and returns true. In all other cases, it
893/// returns false after analyzing the expression and setting KnownOne and known
894/// to be one in the expression. KnownZero contains all the bits that are known
895/// to be zero in the expression. These are provided to potentially allow the
896/// caller (which might recursively be SimplifyDemandedBits itself) to simplify
897/// the expression. KnownOne and KnownZero always follow the invariant that
898/// KnownOne & KnownZero == 0. That is, a bit can't be both 1 and 0. Note that
899/// the bits in KnownOne and KnownZero may only be accurate for those bits set
900/// in DemandedMask. Note also that the bitwidth of V, DemandedMask, KnownZero
901/// and KnownOne must all be the same.
902bool InstCombiner::SimplifyDemandedBits(Value *V, APInt DemandedMask,
903 APInt& KnownZero, APInt& KnownOne,
904 unsigned Depth) {
905 assert(V != 0 && "Null pointer of Value???");
906 assert(Depth <= 6 && "Limit Search Depth");
907 uint32_t BitWidth = DemandedMask.getBitWidth();
908 const IntegerType *VTy = cast<IntegerType>(V->getType());
909 assert(VTy->getBitWidth() == BitWidth &&
910 KnownZero.getBitWidth() == BitWidth &&
911 KnownOne.getBitWidth() == BitWidth &&
912 "Value *V, DemandedMask, KnownZero and KnownOne \
913 must have same BitWidth");
914 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
915 // We know all of the bits for a constant!
916 KnownOne = CI->getValue() & DemandedMask;
917 KnownZero = ~KnownOne & DemandedMask;
918 return false;
919 }
920
Zhou Shengb9128442007-03-14 03:21:24 +0000921 KnownZero.clear();
922 KnownOne.clear();
Reid Spencer1791f232007-03-12 17:25:59 +0000923 if (!V->hasOneUse()) { // Other users may use these bits.
924 if (Depth != 0) { // Not at the root.
925 // Just compute the KnownZero/KnownOne bits to simplify things downstream.
926 ComputeMaskedBits(V, DemandedMask, KnownZero, KnownOne, Depth);
927 return false;
928 }
929 // If this is the root being simplified, allow it to have multiple uses,
930 // just set the DemandedMask to all bits.
931 DemandedMask = APInt::getAllOnesValue(BitWidth);
932 } else if (DemandedMask == 0) { // Not demanding any bits from V.
933 if (V != UndefValue::get(VTy))
934 return UpdateValueUsesWith(V, UndefValue::get(VTy));
935 return false;
936 } else if (Depth == 6) { // Limit search depth.
937 return false;
938 }
939
940 Instruction *I = dyn_cast<Instruction>(V);
941 if (!I) return false; // Only analyze instructions.
942
Reid Spencer1791f232007-03-12 17:25:59 +0000943 APInt LHSKnownZero(BitWidth, 0), LHSKnownOne(BitWidth, 0);
944 APInt &RHSKnownZero = KnownZero, &RHSKnownOne = KnownOne;
945 switch (I->getOpcode()) {
946 default: break;
947 case Instruction::And:
948 // If either the LHS or the RHS are Zero, the result is zero.
949 if (SimplifyDemandedBits(I->getOperand(1), DemandedMask,
950 RHSKnownZero, RHSKnownOne, Depth+1))
951 return true;
952 assert((RHSKnownZero & RHSKnownOne) == 0 &&
953 "Bits known to be one AND zero?");
954
955 // If something is known zero on the RHS, the bits aren't demanded on the
956 // LHS.
957 if (SimplifyDemandedBits(I->getOperand(0), DemandedMask & ~RHSKnownZero,
958 LHSKnownZero, LHSKnownOne, Depth+1))
959 return true;
960 assert((LHSKnownZero & LHSKnownOne) == 0 &&
961 "Bits known to be one AND zero?");
962
963 // If all of the demanded bits are known 1 on one side, return the other.
964 // These bits cannot contribute to the result of the 'and'.
965 if ((DemandedMask & ~LHSKnownZero & RHSKnownOne) ==
966 (DemandedMask & ~LHSKnownZero))
967 return UpdateValueUsesWith(I, I->getOperand(0));
968 if ((DemandedMask & ~RHSKnownZero & LHSKnownOne) ==
969 (DemandedMask & ~RHSKnownZero))
970 return UpdateValueUsesWith(I, I->getOperand(1));
971
972 // If all of the demanded bits in the inputs are known zeros, return zero.
973 if ((DemandedMask & (RHSKnownZero|LHSKnownZero)) == DemandedMask)
974 return UpdateValueUsesWith(I, Constant::getNullValue(VTy));
975
976 // If the RHS is a constant, see if we can simplify it.
977 if (ShrinkDemandedConstant(I, 1, DemandedMask & ~LHSKnownZero))
978 return UpdateValueUsesWith(I, I);
979
980 // Output known-1 bits are only known if set in both the LHS & RHS.
981 RHSKnownOne &= LHSKnownOne;
982 // Output known-0 are known to be clear if zero in either the LHS | RHS.
983 RHSKnownZero |= LHSKnownZero;
984 break;
985 case Instruction::Or:
986 // If either the LHS or the RHS are One, the result is One.
987 if (SimplifyDemandedBits(I->getOperand(1), DemandedMask,
988 RHSKnownZero, RHSKnownOne, Depth+1))
989 return true;
990 assert((RHSKnownZero & RHSKnownOne) == 0 &&
991 "Bits known to be one AND zero?");
992 // If something is known one on the RHS, the bits aren't demanded on the
993 // LHS.
994 if (SimplifyDemandedBits(I->getOperand(0), DemandedMask & ~RHSKnownOne,
995 LHSKnownZero, LHSKnownOne, Depth+1))
996 return true;
997 assert((LHSKnownZero & LHSKnownOne) == 0 &&
998 "Bits known to be one AND zero?");
999
1000 // If all of the demanded bits are known zero on one side, return the other.
1001 // These bits cannot contribute to the result of the 'or'.
1002 if ((DemandedMask & ~LHSKnownOne & RHSKnownZero) ==
1003 (DemandedMask & ~LHSKnownOne))
1004 return UpdateValueUsesWith(I, I->getOperand(0));
1005 if ((DemandedMask & ~RHSKnownOne & LHSKnownZero) ==
1006 (DemandedMask & ~RHSKnownOne))
1007 return UpdateValueUsesWith(I, I->getOperand(1));
1008
1009 // If all of the potentially set bits on one side are known to be set on
1010 // the other side, just use the 'other' side.
1011 if ((DemandedMask & (~RHSKnownZero) & LHSKnownOne) ==
1012 (DemandedMask & (~RHSKnownZero)))
1013 return UpdateValueUsesWith(I, I->getOperand(0));
1014 if ((DemandedMask & (~LHSKnownZero) & RHSKnownOne) ==
1015 (DemandedMask & (~LHSKnownZero)))
1016 return UpdateValueUsesWith(I, I->getOperand(1));
1017
1018 // If the RHS is a constant, see if we can simplify it.
1019 if (ShrinkDemandedConstant(I, 1, DemandedMask))
1020 return UpdateValueUsesWith(I, I);
1021
1022 // Output known-0 bits are only known if clear in both the LHS & RHS.
1023 RHSKnownZero &= LHSKnownZero;
1024 // Output known-1 are known to be set if set in either the LHS | RHS.
1025 RHSKnownOne |= LHSKnownOne;
1026 break;
1027 case Instruction::Xor: {
1028 if (SimplifyDemandedBits(I->getOperand(1), DemandedMask,
1029 RHSKnownZero, RHSKnownOne, Depth+1))
1030 return true;
1031 assert((RHSKnownZero & RHSKnownOne) == 0 &&
1032 "Bits known to be one AND zero?");
1033 if (SimplifyDemandedBits(I->getOperand(0), DemandedMask,
1034 LHSKnownZero, LHSKnownOne, Depth+1))
1035 return true;
1036 assert((LHSKnownZero & LHSKnownOne) == 0 &&
1037 "Bits known to be one AND zero?");
1038
1039 // If all of the demanded bits are known zero on one side, return the other.
1040 // These bits cannot contribute to the result of the 'xor'.
1041 if ((DemandedMask & RHSKnownZero) == DemandedMask)
1042 return UpdateValueUsesWith(I, I->getOperand(0));
1043 if ((DemandedMask & LHSKnownZero) == DemandedMask)
1044 return UpdateValueUsesWith(I, I->getOperand(1));
1045
1046 // Output known-0 bits are known if clear or set in both the LHS & RHS.
1047 APInt KnownZeroOut = (RHSKnownZero & LHSKnownZero) |
1048 (RHSKnownOne & LHSKnownOne);
1049 // Output known-1 are known to be set if set in only one of the LHS, RHS.
1050 APInt KnownOneOut = (RHSKnownZero & LHSKnownOne) |
1051 (RHSKnownOne & LHSKnownZero);
1052
1053 // If all of the demanded bits are known to be zero on one side or the
1054 // other, turn this into an *inclusive* or.
1055 // e.g. (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0
1056 if ((DemandedMask & ~RHSKnownZero & ~LHSKnownZero) == 0) {
1057 Instruction *Or =
1058 BinaryOperator::createOr(I->getOperand(0), I->getOperand(1),
1059 I->getName());
1060 InsertNewInstBefore(Or, *I);
1061 return UpdateValueUsesWith(I, Or);
1062 }
1063
1064 // If all of the demanded bits on one side are known, and all of the set
1065 // bits on that side are also known to be set on the other side, turn this
1066 // into an AND, as we know the bits will be cleared.
1067 // e.g. (X | C1) ^ C2 --> (X | C1) & ~C2 iff (C1&C2) == C2
1068 if ((DemandedMask & (RHSKnownZero|RHSKnownOne)) == DemandedMask) {
1069 // all known
1070 if ((RHSKnownOne & LHSKnownOne) == RHSKnownOne) {
1071 Constant *AndC = ConstantInt::get(~RHSKnownOne & DemandedMask);
1072 Instruction *And =
1073 BinaryOperator::createAnd(I->getOperand(0), AndC, "tmp");
1074 InsertNewInstBefore(And, *I);
1075 return UpdateValueUsesWith(I, And);
1076 }
1077 }
1078
1079 // If the RHS is a constant, see if we can simplify it.
1080 // FIXME: for XOR, we prefer to force bits to 1 if they will make a -1.
1081 if (ShrinkDemandedConstant(I, 1, DemandedMask))
1082 return UpdateValueUsesWith(I, I);
1083
1084 RHSKnownZero = KnownZeroOut;
1085 RHSKnownOne = KnownOneOut;
1086 break;
1087 }
1088 case Instruction::Select:
1089 if (SimplifyDemandedBits(I->getOperand(2), DemandedMask,
1090 RHSKnownZero, RHSKnownOne, Depth+1))
1091 return true;
1092 if (SimplifyDemandedBits(I->getOperand(1), DemandedMask,
1093 LHSKnownZero, LHSKnownOne, Depth+1))
1094 return true;
1095 assert((RHSKnownZero & RHSKnownOne) == 0 &&
1096 "Bits known to be one AND zero?");
1097 assert((LHSKnownZero & LHSKnownOne) == 0 &&
1098 "Bits known to be one AND zero?");
1099
1100 // If the operands are constants, see if we can simplify them.
1101 if (ShrinkDemandedConstant(I, 1, DemandedMask))
1102 return UpdateValueUsesWith(I, I);
1103 if (ShrinkDemandedConstant(I, 2, DemandedMask))
1104 return UpdateValueUsesWith(I, I);
1105
1106 // Only known if known in both the LHS and RHS.
1107 RHSKnownOne &= LHSKnownOne;
1108 RHSKnownZero &= LHSKnownZero;
1109 break;
1110 case Instruction::Trunc: {
1111 uint32_t truncBf =
1112 cast<IntegerType>(I->getOperand(0)->getType())->getBitWidth();
1113 if (SimplifyDemandedBits(I->getOperand(0), DemandedMask.zext(truncBf),
1114 RHSKnownZero.zext(truncBf), RHSKnownOne.zext(truncBf), Depth+1))
1115 return true;
1116 DemandedMask.trunc(BitWidth);
1117 RHSKnownZero.trunc(BitWidth);
1118 RHSKnownOne.trunc(BitWidth);
1119 assert((RHSKnownZero & RHSKnownOne) == 0 &&
1120 "Bits known to be one AND zero?");
1121 break;
1122 }
1123 case Instruction::BitCast:
1124 if (!I->getOperand(0)->getType()->isInteger())
1125 return false;
1126
1127 if (SimplifyDemandedBits(I->getOperand(0), DemandedMask,
1128 RHSKnownZero, RHSKnownOne, Depth+1))
1129 return true;
1130 assert((RHSKnownZero & RHSKnownOne) == 0 &&
1131 "Bits known to be one AND zero?");
1132 break;
1133 case Instruction::ZExt: {
1134 // Compute the bits in the result that are not present in the input.
1135 const IntegerType *SrcTy = cast<IntegerType>(I->getOperand(0)->getType());
Reid Spencercd99fbd2007-03-25 04:26:16 +00001136 uint32_t SrcBitWidth = SrcTy->getBitWidth();
1137 APInt NewBits(APInt::getHighBitsSet(BitWidth, BitWidth - SrcBitWidth));
Reid Spencer1791f232007-03-12 17:25:59 +00001138
1139 DemandedMask &= SrcTy->getMask().zext(BitWidth);
1140 uint32_t zextBf = SrcTy->getBitWidth();
1141 if (SimplifyDemandedBits(I->getOperand(0), DemandedMask.trunc(zextBf),
1142 RHSKnownZero.trunc(zextBf), RHSKnownOne.trunc(zextBf), Depth+1))
1143 return true;
1144 DemandedMask.zext(BitWidth);
1145 RHSKnownZero.zext(BitWidth);
1146 RHSKnownOne.zext(BitWidth);
1147 assert((RHSKnownZero & RHSKnownOne) == 0 &&
1148 "Bits known to be one AND zero?");
1149 // The top bits are known to be zero.
1150 RHSKnownZero |= NewBits;
1151 break;
1152 }
1153 case Instruction::SExt: {
1154 // Compute the bits in the result that are not present in the input.
1155 const IntegerType *SrcTy = cast<IntegerType>(I->getOperand(0)->getType());
Reid Spencercd99fbd2007-03-25 04:26:16 +00001156 uint32_t SrcBitWidth = SrcTy->getBitWidth();
1157 APInt NewBits(APInt::getHighBitsSet(BitWidth, BitWidth - SrcBitWidth));
Reid Spencer1791f232007-03-12 17:25:59 +00001158
1159 // Get the sign bit for the source type
1160 APInt InSignBit(APInt::getSignBit(SrcTy->getPrimitiveSizeInBits()));
1161 InSignBit.zext(BitWidth);
1162 APInt InputDemandedBits = DemandedMask &
1163 SrcTy->getMask().zext(BitWidth);
1164
1165 // If any of the sign extended bits are demanded, we know that the sign
1166 // bit is demanded.
1167 if ((NewBits & DemandedMask) != 0)
1168 InputDemandedBits |= InSignBit;
1169
1170 uint32_t sextBf = SrcTy->getBitWidth();
1171 if (SimplifyDemandedBits(I->getOperand(0), InputDemandedBits.trunc(sextBf),
1172 RHSKnownZero.trunc(sextBf), RHSKnownOne.trunc(sextBf), Depth+1))
1173 return true;
1174 InputDemandedBits.zext(BitWidth);
1175 RHSKnownZero.zext(BitWidth);
1176 RHSKnownOne.zext(BitWidth);
1177 assert((RHSKnownZero & RHSKnownOne) == 0 &&
1178 "Bits known to be one AND zero?");
1179
1180 // If the sign bit of the input is known set or clear, then we know the
1181 // top bits of the result.
1182
1183 // If the input sign bit is known zero, or if the NewBits are not demanded
1184 // convert this into a zero extension.
1185 if ((RHSKnownZero & InSignBit) != 0 || (NewBits & ~DemandedMask) == NewBits)
1186 {
1187 // Convert to ZExt cast
1188 CastInst *NewCast = new ZExtInst(I->getOperand(0), VTy, I->getName(), I);
1189 return UpdateValueUsesWith(I, NewCast);
1190 } else if ((RHSKnownOne & InSignBit) != 0) { // Input sign bit known set
1191 RHSKnownOne |= NewBits;
1192 RHSKnownZero &= ~NewBits;
1193 } else { // Input sign bit unknown
1194 RHSKnownZero &= ~NewBits;
1195 RHSKnownOne &= ~NewBits;
1196 }
1197 break;
1198 }
1199 case Instruction::Add: {
1200 // Figure out what the input bits are. If the top bits of the and result
1201 // are not demanded, then the add doesn't demand them from its input
1202 // either.
1203 unsigned NLZ = DemandedMask.countLeadingZeros();
1204
1205 // If there is a constant on the RHS, there are a variety of xformations
1206 // we can do.
1207 if (ConstantInt *RHS = dyn_cast<ConstantInt>(I->getOperand(1))) {
1208 // If null, this should be simplified elsewhere. Some of the xforms here
1209 // won't work if the RHS is zero.
1210 if (RHS->isZero())
1211 break;
1212
1213 // If the top bit of the output is demanded, demand everything from the
1214 // input. Otherwise, we demand all the input bits except NLZ top bits.
1215 APInt InDemandedBits(APInt::getAllOnesValue(BitWidth).lshr(NLZ));
1216
1217 // Find information about known zero/one bits in the input.
1218 if (SimplifyDemandedBits(I->getOperand(0), InDemandedBits,
1219 LHSKnownZero, LHSKnownOne, Depth+1))
1220 return true;
1221
1222 // If the RHS of the add has bits set that can't affect the input, reduce
1223 // the constant.
1224 if (ShrinkDemandedConstant(I, 1, InDemandedBits))
1225 return UpdateValueUsesWith(I, I);
1226
1227 // Avoid excess work.
1228 if (LHSKnownZero == 0 && LHSKnownOne == 0)
1229 break;
1230
1231 // Turn it into OR if input bits are zero.
1232 if ((LHSKnownZero & RHS->getValue()) == RHS->getValue()) {
1233 Instruction *Or =
1234 BinaryOperator::createOr(I->getOperand(0), I->getOperand(1),
1235 I->getName());
1236 InsertNewInstBefore(Or, *I);
1237 return UpdateValueUsesWith(I, Or);
1238 }
1239
1240 // We can say something about the output known-zero and known-one bits,
1241 // depending on potential carries from the input constant and the
1242 // unknowns. For example if the LHS is known to have at most the 0x0F0F0
1243 // bits set and the RHS constant is 0x01001, then we know we have a known
1244 // one mask of 0x00001 and a known zero mask of 0xE0F0E.
1245
1246 // To compute this, we first compute the potential carry bits. These are
1247 // the bits which may be modified. I'm not aware of a better way to do
1248 // this scan.
1249 APInt RHSVal(RHS->getValue());
1250
1251 bool CarryIn = false;
1252 APInt CarryBits(BitWidth, 0);
1253 const uint64_t *LHSKnownZeroRawVal = LHSKnownZero.getRawData(),
1254 *RHSRawVal = RHSVal.getRawData();
1255 for (uint32_t i = 0; i != RHSVal.getNumWords(); ++i) {
1256 uint64_t AddVal = ~LHSKnownZeroRawVal[i] + RHSRawVal[i],
1257 XorVal = ~LHSKnownZeroRawVal[i] ^ RHSRawVal[i];
1258 uint64_t WordCarryBits = AddVal ^ XorVal + CarryIn;
1259 if (AddVal < RHSRawVal[i])
1260 CarryIn = true;
1261 else
1262 CarryIn = false;
1263 CarryBits.setWordToValue(i, WordCarryBits);
1264 }
1265
1266 // Now that we know which bits have carries, compute the known-1/0 sets.
1267
1268 // Bits are known one if they are known zero in one operand and one in the
1269 // other, and there is no input carry.
1270 RHSKnownOne = ((LHSKnownZero & RHSVal) |
1271 (LHSKnownOne & ~RHSVal)) & ~CarryBits;
1272
1273 // Bits are known zero if they are known zero in both operands and there
1274 // is no input carry.
1275 RHSKnownZero = LHSKnownZero & ~RHSVal & ~CarryBits;
1276 } else {
1277 // If the high-bits of this ADD are not demanded, then it does not demand
1278 // the high bits of its LHS or RHS.
1279 if ((DemandedMask & APInt::getSignBit(BitWidth)) == 0) {
1280 // Right fill the mask of bits for this ADD to demand the most
1281 // significant bit and all those below it.
1282 APInt DemandedFromOps = APInt::getAllOnesValue(BitWidth).lshr(NLZ);
1283 if (SimplifyDemandedBits(I->getOperand(0), DemandedFromOps,
1284 LHSKnownZero, LHSKnownOne, Depth+1))
1285 return true;
1286 if (SimplifyDemandedBits(I->getOperand(1), DemandedFromOps,
1287 LHSKnownZero, LHSKnownOne, Depth+1))
1288 return true;
1289 }
1290 }
1291 break;
1292 }
1293 case Instruction::Sub:
1294 // If the high-bits of this SUB are not demanded, then it does not demand
1295 // the high bits of its LHS or RHS.
1296 if ((DemandedMask & APInt::getSignBit(BitWidth)) == 0) {
1297 // Right fill the mask of bits for this SUB to demand the most
1298 // significant bit and all those below it.
Reid Spencerd8aad612007-03-25 02:03:12 +00001299 uint32_t NLZ = DemandedMask.countLeadingZeros();
Reid Spencer1791f232007-03-12 17:25:59 +00001300 APInt DemandedFromOps(APInt::getAllOnesValue(BitWidth).lshr(NLZ));
1301 if (SimplifyDemandedBits(I->getOperand(0), DemandedFromOps,
1302 LHSKnownZero, LHSKnownOne, Depth+1))
1303 return true;
1304 if (SimplifyDemandedBits(I->getOperand(1), DemandedFromOps,
1305 LHSKnownZero, LHSKnownOne, Depth+1))
1306 return true;
1307 }
1308 break;
1309 case Instruction::Shl:
1310 if (ConstantInt *SA = dyn_cast<ConstantInt>(I->getOperand(1))) {
1311 uint64_t ShiftAmt = SA->getZExtValue();
1312 if (SimplifyDemandedBits(I->getOperand(0), DemandedMask.lshr(ShiftAmt),
1313 RHSKnownZero, RHSKnownOne, Depth+1))
1314 return true;
1315 assert((RHSKnownZero & RHSKnownOne) == 0 &&
1316 "Bits known to be one AND zero?");
1317 RHSKnownZero <<= ShiftAmt;
1318 RHSKnownOne <<= ShiftAmt;
1319 // low bits known zero.
Zhou Shengd8c645b2007-03-14 09:07:33 +00001320 if (ShiftAmt)
1321 RHSKnownZero |= APInt::getAllOnesValue(ShiftAmt).zextOrCopy(BitWidth);
Reid Spencer1791f232007-03-12 17:25:59 +00001322 }
1323 break;
1324 case Instruction::LShr:
1325 // For a logical shift right
1326 if (ConstantInt *SA = dyn_cast<ConstantInt>(I->getOperand(1))) {
1327 unsigned ShiftAmt = SA->getZExtValue();
1328
1329 APInt TypeMask(APInt::getAllOnesValue(BitWidth));
1330 // Unsigned shift right.
1331 if (SimplifyDemandedBits(I->getOperand(0),
1332 (DemandedMask.shl(ShiftAmt)) & TypeMask,
1333 RHSKnownZero, RHSKnownOne, Depth+1))
1334 return true;
1335 assert((RHSKnownZero & RHSKnownOne) == 0 &&
1336 "Bits known to be one AND zero?");
Reid Spencer1791f232007-03-12 17:25:59 +00001337 RHSKnownZero &= TypeMask;
1338 RHSKnownOne &= TypeMask;
1339 RHSKnownZero = APIntOps::lshr(RHSKnownZero, ShiftAmt);
1340 RHSKnownOne = APIntOps::lshr(RHSKnownOne, ShiftAmt);
Zhou Shengd8c645b2007-03-14 09:07:33 +00001341 if (ShiftAmt) {
1342 // Compute the new bits that are at the top now.
1343 APInt HighBits(APInt::getAllOnesValue(BitWidth).shl(
1344 BitWidth - ShiftAmt));
1345 RHSKnownZero |= HighBits; // high bits known zero.
1346 }
Reid Spencer1791f232007-03-12 17:25:59 +00001347 }
1348 break;
1349 case Instruction::AShr:
1350 // If this is an arithmetic shift right and only the low-bit is set, we can
1351 // always convert this into a logical shr, even if the shift amount is
1352 // variable. The low bit of the shift cannot be an input sign bit unless
1353 // the shift amount is >= the size of the datatype, which is undefined.
1354 if (DemandedMask == 1) {
1355 // Perform the logical shift right.
1356 Value *NewVal = BinaryOperator::createLShr(
1357 I->getOperand(0), I->getOperand(1), I->getName());
1358 InsertNewInstBefore(cast<Instruction>(NewVal), *I);
1359 return UpdateValueUsesWith(I, NewVal);
1360 }
1361
1362 if (ConstantInt *SA = dyn_cast<ConstantInt>(I->getOperand(1))) {
1363 unsigned ShiftAmt = SA->getZExtValue();
1364
1365 APInt TypeMask(APInt::getAllOnesValue(BitWidth));
1366 // Signed shift right.
1367 if (SimplifyDemandedBits(I->getOperand(0),
1368 (DemandedMask.shl(ShiftAmt)) & TypeMask,
1369 RHSKnownZero, RHSKnownOne, Depth+1))
1370 return true;
1371 assert((RHSKnownZero & RHSKnownOne) == 0 &&
1372 "Bits known to be one AND zero?");
1373 // Compute the new bits that are at the top now.
Zhou Shengd8c645b2007-03-14 09:07:33 +00001374 APInt HighBits(APInt::getAllOnesValue(BitWidth).shl(BitWidth - ShiftAmt));
Reid Spencer1791f232007-03-12 17:25:59 +00001375 RHSKnownZero &= TypeMask;
1376 RHSKnownOne &= TypeMask;
1377 RHSKnownZero = APIntOps::lshr(RHSKnownZero, ShiftAmt);
1378 RHSKnownOne = APIntOps::lshr(RHSKnownOne, ShiftAmt);
1379
1380 // Handle the sign bits.
1381 APInt SignBit(APInt::getSignBit(BitWidth));
1382 // Adjust to where it is now in the mask.
1383 SignBit = APIntOps::lshr(SignBit, ShiftAmt);
1384
1385 // If the input sign bit is known to be zero, or if none of the top bits
1386 // are demanded, turn this into an unsigned shift right.
1387 if ((RHSKnownZero & SignBit) != 0 ||
1388 (HighBits & ~DemandedMask) == HighBits) {
1389 // Perform the logical shift right.
1390 Value *NewVal = BinaryOperator::createLShr(
1391 I->getOperand(0), SA, I->getName());
1392 InsertNewInstBefore(cast<Instruction>(NewVal), *I);
1393 return UpdateValueUsesWith(I, NewVal);
1394 } else if ((RHSKnownOne & SignBit) != 0) { // New bits are known one.
1395 RHSKnownOne |= HighBits;
1396 }
1397 }
1398 break;
1399 }
1400
1401 // If the client is only demanding bits that we know, return the known
1402 // constant.
1403 if ((DemandedMask & (RHSKnownZero|RHSKnownOne)) == DemandedMask)
1404 return UpdateValueUsesWith(I, ConstantInt::get(RHSKnownOne));
1405 return false;
1406}
1407
Chris Lattner2deeaea2006-10-05 06:55:50 +00001408
1409/// SimplifyDemandedVectorElts - The specified value producecs a vector with
1410/// 64 or fewer elements. DemandedElts contains the set of elements that are
1411/// actually used by the caller. This method analyzes which elements of the
1412/// operand are undef and returns that information in UndefElts.
1413///
1414/// If the information about demanded elements can be used to simplify the
1415/// operation, the operation is simplified, then the resultant value is
1416/// returned. This returns null if no change was made.
1417Value *InstCombiner::SimplifyDemandedVectorElts(Value *V, uint64_t DemandedElts,
1418 uint64_t &UndefElts,
1419 unsigned Depth) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001420 unsigned VWidth = cast<VectorType>(V->getType())->getNumElements();
Chris Lattner2deeaea2006-10-05 06:55:50 +00001421 assert(VWidth <= 64 && "Vector too wide to analyze!");
1422 uint64_t EltMask = ~0ULL >> (64-VWidth);
1423 assert(DemandedElts != EltMask && (DemandedElts & ~EltMask) == 0 &&
1424 "Invalid DemandedElts!");
1425
1426 if (isa<UndefValue>(V)) {
1427 // If the entire vector is undefined, just return this info.
1428 UndefElts = EltMask;
1429 return 0;
1430 } else if (DemandedElts == 0) { // If nothing is demanded, provide undef.
1431 UndefElts = EltMask;
1432 return UndefValue::get(V->getType());
1433 }
1434
1435 UndefElts = 0;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001436 if (ConstantVector *CP = dyn_cast<ConstantVector>(V)) {
1437 const Type *EltTy = cast<VectorType>(V->getType())->getElementType();
Chris Lattner2deeaea2006-10-05 06:55:50 +00001438 Constant *Undef = UndefValue::get(EltTy);
1439
1440 std::vector<Constant*> Elts;
1441 for (unsigned i = 0; i != VWidth; ++i)
1442 if (!(DemandedElts & (1ULL << i))) { // If not demanded, set to undef.
1443 Elts.push_back(Undef);
1444 UndefElts |= (1ULL << i);
1445 } else if (isa<UndefValue>(CP->getOperand(i))) { // Already undef.
1446 Elts.push_back(Undef);
1447 UndefElts |= (1ULL << i);
1448 } else { // Otherwise, defined.
1449 Elts.push_back(CP->getOperand(i));
1450 }
1451
1452 // If we changed the constant, return it.
Reid Spencerd84d35b2007-02-15 02:26:10 +00001453 Constant *NewCP = ConstantVector::get(Elts);
Chris Lattner2deeaea2006-10-05 06:55:50 +00001454 return NewCP != CP ? NewCP : 0;
1455 } else if (isa<ConstantAggregateZero>(V)) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001456 // Simplify the CAZ to a ConstantVector where the non-demanded elements are
Chris Lattner2deeaea2006-10-05 06:55:50 +00001457 // set to undef.
Reid Spencerd84d35b2007-02-15 02:26:10 +00001458 const Type *EltTy = cast<VectorType>(V->getType())->getElementType();
Chris Lattner2deeaea2006-10-05 06:55:50 +00001459 Constant *Zero = Constant::getNullValue(EltTy);
1460 Constant *Undef = UndefValue::get(EltTy);
1461 std::vector<Constant*> Elts;
1462 for (unsigned i = 0; i != VWidth; ++i)
1463 Elts.push_back((DemandedElts & (1ULL << i)) ? Zero : Undef);
1464 UndefElts = DemandedElts ^ EltMask;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001465 return ConstantVector::get(Elts);
Chris Lattner2deeaea2006-10-05 06:55:50 +00001466 }
1467
1468 if (!V->hasOneUse()) { // Other users may use these bits.
1469 if (Depth != 0) { // Not at the root.
1470 // TODO: Just compute the UndefElts information recursively.
1471 return false;
1472 }
1473 return false;
1474 } else if (Depth == 10) { // Limit search depth.
1475 return false;
1476 }
1477
1478 Instruction *I = dyn_cast<Instruction>(V);
1479 if (!I) return false; // Only analyze instructions.
1480
1481 bool MadeChange = false;
1482 uint64_t UndefElts2;
1483 Value *TmpV;
1484 switch (I->getOpcode()) {
1485 default: break;
1486
1487 case Instruction::InsertElement: {
1488 // If this is a variable index, we don't know which element it overwrites.
1489 // demand exactly the same input as we produce.
Reid Spencere0fc4df2006-10-20 07:07:24 +00001490 ConstantInt *Idx = dyn_cast<ConstantInt>(I->getOperand(2));
Chris Lattner2deeaea2006-10-05 06:55:50 +00001491 if (Idx == 0) {
1492 // Note that we can't propagate undef elt info, because we don't know
1493 // which elt is getting updated.
1494 TmpV = SimplifyDemandedVectorElts(I->getOperand(0), DemandedElts,
1495 UndefElts2, Depth+1);
1496 if (TmpV) { I->setOperand(0, TmpV); MadeChange = true; }
1497 break;
1498 }
1499
1500 // If this is inserting an element that isn't demanded, remove this
1501 // insertelement.
Reid Spencere0fc4df2006-10-20 07:07:24 +00001502 unsigned IdxNo = Idx->getZExtValue();
Chris Lattner2deeaea2006-10-05 06:55:50 +00001503 if (IdxNo >= VWidth || (DemandedElts & (1ULL << IdxNo)) == 0)
1504 return AddSoonDeadInstToWorklist(*I, 0);
1505
1506 // Otherwise, the element inserted overwrites whatever was there, so the
1507 // input demanded set is simpler than the output set.
1508 TmpV = SimplifyDemandedVectorElts(I->getOperand(0),
1509 DemandedElts & ~(1ULL << IdxNo),
1510 UndefElts, Depth+1);
1511 if (TmpV) { I->setOperand(0, TmpV); MadeChange = true; }
1512
1513 // The inserted element is defined.
1514 UndefElts |= 1ULL << IdxNo;
1515 break;
1516 }
1517
1518 case Instruction::And:
1519 case Instruction::Or:
1520 case Instruction::Xor:
1521 case Instruction::Add:
1522 case Instruction::Sub:
1523 case Instruction::Mul:
1524 // div/rem demand all inputs, because they don't want divide by zero.
1525 TmpV = SimplifyDemandedVectorElts(I->getOperand(0), DemandedElts,
1526 UndefElts, Depth+1);
1527 if (TmpV) { I->setOperand(0, TmpV); MadeChange = true; }
1528 TmpV = SimplifyDemandedVectorElts(I->getOperand(1), DemandedElts,
1529 UndefElts2, Depth+1);
1530 if (TmpV) { I->setOperand(1, TmpV); MadeChange = true; }
1531
1532 // Output elements are undefined if both are undefined. Consider things
1533 // like undef&0. The result is known zero, not undef.
1534 UndefElts &= UndefElts2;
1535 break;
1536
1537 case Instruction::Call: {
1538 IntrinsicInst *II = dyn_cast<IntrinsicInst>(I);
1539 if (!II) break;
1540 switch (II->getIntrinsicID()) {
1541 default: break;
1542
1543 // Binary vector operations that work column-wise. A dest element is a
1544 // function of the corresponding input elements from the two inputs.
1545 case Intrinsic::x86_sse_sub_ss:
1546 case Intrinsic::x86_sse_mul_ss:
1547 case Intrinsic::x86_sse_min_ss:
1548 case Intrinsic::x86_sse_max_ss:
1549 case Intrinsic::x86_sse2_sub_sd:
1550 case Intrinsic::x86_sse2_mul_sd:
1551 case Intrinsic::x86_sse2_min_sd:
1552 case Intrinsic::x86_sse2_max_sd:
1553 TmpV = SimplifyDemandedVectorElts(II->getOperand(1), DemandedElts,
1554 UndefElts, Depth+1);
1555 if (TmpV) { II->setOperand(1, TmpV); MadeChange = true; }
1556 TmpV = SimplifyDemandedVectorElts(II->getOperand(2), DemandedElts,
1557 UndefElts2, Depth+1);
1558 if (TmpV) { II->setOperand(2, TmpV); MadeChange = true; }
1559
1560 // If only the low elt is demanded and this is a scalarizable intrinsic,
1561 // scalarize it now.
1562 if (DemandedElts == 1) {
1563 switch (II->getIntrinsicID()) {
1564 default: break;
1565 case Intrinsic::x86_sse_sub_ss:
1566 case Intrinsic::x86_sse_mul_ss:
1567 case Intrinsic::x86_sse2_sub_sd:
1568 case Intrinsic::x86_sse2_mul_sd:
1569 // TODO: Lower MIN/MAX/ABS/etc
1570 Value *LHS = II->getOperand(1);
1571 Value *RHS = II->getOperand(2);
1572 // Extract the element as scalars.
1573 LHS = InsertNewInstBefore(new ExtractElementInst(LHS, 0U,"tmp"), *II);
1574 RHS = InsertNewInstBefore(new ExtractElementInst(RHS, 0U,"tmp"), *II);
1575
1576 switch (II->getIntrinsicID()) {
1577 default: assert(0 && "Case stmts out of sync!");
1578 case Intrinsic::x86_sse_sub_ss:
1579 case Intrinsic::x86_sse2_sub_sd:
1580 TmpV = InsertNewInstBefore(BinaryOperator::createSub(LHS, RHS,
1581 II->getName()), *II);
1582 break;
1583 case Intrinsic::x86_sse_mul_ss:
1584 case Intrinsic::x86_sse2_mul_sd:
1585 TmpV = InsertNewInstBefore(BinaryOperator::createMul(LHS, RHS,
1586 II->getName()), *II);
1587 break;
1588 }
1589
1590 Instruction *New =
1591 new InsertElementInst(UndefValue::get(II->getType()), TmpV, 0U,
1592 II->getName());
1593 InsertNewInstBefore(New, *II);
1594 AddSoonDeadInstToWorklist(*II, 0);
1595 return New;
1596 }
1597 }
1598
1599 // Output elements are undefined if both are undefined. Consider things
1600 // like undef&0. The result is known zero, not undef.
1601 UndefElts &= UndefElts2;
1602 break;
1603 }
1604 break;
1605 }
1606 }
1607 return MadeChange ? I : 0;
1608}
1609
Reid Spencer266e42b2006-12-23 06:05:41 +00001610/// @returns true if the specified compare instruction is
1611/// true when both operands are equal...
1612/// @brief Determine if the ICmpInst returns true if both operands are equal
1613static bool isTrueWhenEqual(ICmpInst &ICI) {
1614 ICmpInst::Predicate pred = ICI.getPredicate();
1615 return pred == ICmpInst::ICMP_EQ || pred == ICmpInst::ICMP_UGE ||
1616 pred == ICmpInst::ICMP_SGE || pred == ICmpInst::ICMP_ULE ||
1617 pred == ICmpInst::ICMP_SLE;
1618}
1619
Chris Lattnerb8b97502003-08-13 19:01:45 +00001620/// AssociativeOpt - Perform an optimization on an associative operator. This
1621/// function is designed to check a chain of associative operators for a
1622/// potential to apply a certain optimization. Since the optimization may be
1623/// applicable if the expression was reassociated, this checks the chain, then
1624/// reassociates the expression as necessary to expose the optimization
1625/// opportunity. This makes use of a special Functor, which must define
1626/// 'shouldApply' and 'apply' methods.
1627///
1628template<typename Functor>
1629Instruction *AssociativeOpt(BinaryOperator &Root, const Functor &F) {
1630 unsigned Opcode = Root.getOpcode();
1631 Value *LHS = Root.getOperand(0);
1632
1633 // Quick check, see if the immediate LHS matches...
1634 if (F.shouldApply(LHS))
1635 return F.apply(Root);
1636
1637 // Otherwise, if the LHS is not of the same opcode as the root, return.
1638 Instruction *LHSI = dyn_cast<Instruction>(LHS);
Chris Lattnerf95d9b92003-10-15 16:48:29 +00001639 while (LHSI && LHSI->getOpcode() == Opcode && LHSI->hasOneUse()) {
Chris Lattnerb8b97502003-08-13 19:01:45 +00001640 // Should we apply this transform to the RHS?
1641 bool ShouldApply = F.shouldApply(LHSI->getOperand(1));
1642
1643 // If not to the RHS, check to see if we should apply to the LHS...
1644 if (!ShouldApply && F.shouldApply(LHSI->getOperand(0))) {
1645 cast<BinaryOperator>(LHSI)->swapOperands(); // Make the LHS the RHS
1646 ShouldApply = true;
1647 }
1648
1649 // If the functor wants to apply the optimization to the RHS of LHSI,
1650 // reassociate the expression from ((? op A) op B) to (? op (A op B))
1651 if (ShouldApply) {
1652 BasicBlock *BB = Root.getParent();
Misha Brukmanb1c93172005-04-21 23:48:37 +00001653
Chris Lattnerb8b97502003-08-13 19:01:45 +00001654 // Now all of the instructions are in the current basic block, go ahead
1655 // and perform the reassociation.
1656 Instruction *TmpLHSI = cast<Instruction>(Root.getOperand(0));
1657
1658 // First move the selected RHS to the LHS of the root...
1659 Root.setOperand(0, LHSI->getOperand(1));
1660
1661 // Make what used to be the LHS of the root be the user of the root...
1662 Value *ExtraOperand = TmpLHSI->getOperand(1);
Chris Lattner284d3b02004-04-16 18:08:07 +00001663 if (&Root == TmpLHSI) {
Chris Lattner8953b902004-04-05 02:10:19 +00001664 Root.replaceAllUsesWith(Constant::getNullValue(TmpLHSI->getType()));
1665 return 0;
1666 }
Chris Lattner284d3b02004-04-16 18:08:07 +00001667 Root.replaceAllUsesWith(TmpLHSI); // Users now use TmpLHSI
Chris Lattnerb8b97502003-08-13 19:01:45 +00001668 TmpLHSI->setOperand(1, &Root); // TmpLHSI now uses the root
Chris Lattner284d3b02004-04-16 18:08:07 +00001669 TmpLHSI->getParent()->getInstList().remove(TmpLHSI);
1670 BasicBlock::iterator ARI = &Root; ++ARI;
1671 BB->getInstList().insert(ARI, TmpLHSI); // Move TmpLHSI to after Root
1672 ARI = Root;
Chris Lattnerb8b97502003-08-13 19:01:45 +00001673
1674 // Now propagate the ExtraOperand down the chain of instructions until we
1675 // get to LHSI.
1676 while (TmpLHSI != LHSI) {
1677 Instruction *NextLHSI = cast<Instruction>(TmpLHSI->getOperand(0));
Chris Lattner284d3b02004-04-16 18:08:07 +00001678 // Move the instruction to immediately before the chain we are
1679 // constructing to avoid breaking dominance properties.
1680 NextLHSI->getParent()->getInstList().remove(NextLHSI);
1681 BB->getInstList().insert(ARI, NextLHSI);
1682 ARI = NextLHSI;
1683
Chris Lattnerb8b97502003-08-13 19:01:45 +00001684 Value *NextOp = NextLHSI->getOperand(1);
1685 NextLHSI->setOperand(1, ExtraOperand);
1686 TmpLHSI = NextLHSI;
1687 ExtraOperand = NextOp;
1688 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001689
Chris Lattnerb8b97502003-08-13 19:01:45 +00001690 // Now that the instructions are reassociated, have the functor perform
1691 // the transformation...
1692 return F.apply(Root);
1693 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001694
Chris Lattnerb8b97502003-08-13 19:01:45 +00001695 LHSI = dyn_cast<Instruction>(LHSI->getOperand(0));
1696 }
1697 return 0;
1698}
1699
1700
1701// AddRHS - Implements: X + X --> X << 1
1702struct AddRHS {
1703 Value *RHS;
1704 AddRHS(Value *rhs) : RHS(rhs) {}
1705 bool shouldApply(Value *LHS) const { return LHS == RHS; }
1706 Instruction *apply(BinaryOperator &Add) const {
Reid Spencer0d5f9232007-02-02 14:08:20 +00001707 return BinaryOperator::createShl(Add.getOperand(0),
Reid Spencer2341c222007-02-02 02:16:23 +00001708 ConstantInt::get(Add.getType(), 1));
Chris Lattnerb8b97502003-08-13 19:01:45 +00001709 }
1710};
1711
1712// AddMaskingAnd - Implements (A & C1)+(B & C2) --> (A & C1)|(B & C2)
1713// iff C1&C2 == 0
1714struct AddMaskingAnd {
1715 Constant *C2;
1716 AddMaskingAnd(Constant *c) : C2(c) {}
1717 bool shouldApply(Value *LHS) const {
Chris Lattnerd4252a72004-07-30 07:50:03 +00001718 ConstantInt *C1;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001719 return match(LHS, m_And(m_Value(), m_ConstantInt(C1))) &&
Chris Lattnerd4252a72004-07-30 07:50:03 +00001720 ConstantExpr::getAnd(C1, C2)->isNullValue();
Chris Lattnerb8b97502003-08-13 19:01:45 +00001721 }
1722 Instruction *apply(BinaryOperator &Add) const {
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001723 return BinaryOperator::createOr(Add.getOperand(0), Add.getOperand(1));
Chris Lattnerb8b97502003-08-13 19:01:45 +00001724 }
1725};
1726
Chris Lattner86102b82005-01-01 16:22:27 +00001727static Value *FoldOperationIntoSelectOperand(Instruction &I, Value *SO,
Chris Lattner183b3362004-04-09 19:05:30 +00001728 InstCombiner *IC) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001729 if (CastInst *CI = dyn_cast<CastInst>(&I)) {
Chris Lattner86102b82005-01-01 16:22:27 +00001730 if (Constant *SOC = dyn_cast<Constant>(SO))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001731 return ConstantExpr::getCast(CI->getOpcode(), SOC, I.getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001732
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001733 return IC->InsertNewInstBefore(CastInst::create(
1734 CI->getOpcode(), SO, I.getType(), SO->getName() + ".cast"), I);
Chris Lattner86102b82005-01-01 16:22:27 +00001735 }
1736
Chris Lattner183b3362004-04-09 19:05:30 +00001737 // Figure out if the constant is the left or the right argument.
Chris Lattner86102b82005-01-01 16:22:27 +00001738 bool ConstIsRHS = isa<Constant>(I.getOperand(1));
1739 Constant *ConstOperand = cast<Constant>(I.getOperand(ConstIsRHS));
Chris Lattnerb8b97502003-08-13 19:01:45 +00001740
Chris Lattner183b3362004-04-09 19:05:30 +00001741 if (Constant *SOC = dyn_cast<Constant>(SO)) {
1742 if (ConstIsRHS)
Chris Lattner86102b82005-01-01 16:22:27 +00001743 return ConstantExpr::get(I.getOpcode(), SOC, ConstOperand);
1744 return ConstantExpr::get(I.getOpcode(), ConstOperand, SOC);
Chris Lattner183b3362004-04-09 19:05:30 +00001745 }
1746
1747 Value *Op0 = SO, *Op1 = ConstOperand;
1748 if (!ConstIsRHS)
1749 std::swap(Op0, Op1);
1750 Instruction *New;
Chris Lattner86102b82005-01-01 16:22:27 +00001751 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(&I))
1752 New = BinaryOperator::create(BO->getOpcode(), Op0, Op1,SO->getName()+".op");
Reid Spencer266e42b2006-12-23 06:05:41 +00001753 else if (CmpInst *CI = dyn_cast<CmpInst>(&I))
1754 New = CmpInst::create(CI->getOpcode(), CI->getPredicate(), Op0, Op1,
1755 SO->getName()+".cmp");
Chris Lattnerf9d96652004-04-10 19:15:56 +00001756 else {
Chris Lattner183b3362004-04-09 19:05:30 +00001757 assert(0 && "Unknown binary instruction type!");
Chris Lattnerf9d96652004-04-10 19:15:56 +00001758 abort();
1759 }
Chris Lattner86102b82005-01-01 16:22:27 +00001760 return IC->InsertNewInstBefore(New, I);
1761}
1762
1763// FoldOpIntoSelect - Given an instruction with a select as one operand and a
1764// constant as the other operand, try to fold the binary operator into the
1765// select arguments. This also works for Cast instructions, which obviously do
1766// not have a second operand.
1767static Instruction *FoldOpIntoSelect(Instruction &Op, SelectInst *SI,
1768 InstCombiner *IC) {
1769 // Don't modify shared select instructions
1770 if (!SI->hasOneUse()) return 0;
1771 Value *TV = SI->getOperand(1);
1772 Value *FV = SI->getOperand(2);
1773
1774 if (isa<Constant>(TV) || isa<Constant>(FV)) {
Chris Lattner374e6592005-04-21 05:43:13 +00001775 // Bool selects with constant operands can be folded to logical ops.
Reid Spencer542964f2007-01-11 18:21:29 +00001776 if (SI->getType() == Type::Int1Ty) return 0;
Chris Lattner374e6592005-04-21 05:43:13 +00001777
Chris Lattner86102b82005-01-01 16:22:27 +00001778 Value *SelectTrueVal = FoldOperationIntoSelectOperand(Op, TV, IC);
1779 Value *SelectFalseVal = FoldOperationIntoSelectOperand(Op, FV, IC);
1780
1781 return new SelectInst(SI->getCondition(), SelectTrueVal,
1782 SelectFalseVal);
1783 }
1784 return 0;
Chris Lattner183b3362004-04-09 19:05:30 +00001785}
1786
Chris Lattner6a4adcd2004-09-29 05:07:12 +00001787
1788/// FoldOpIntoPhi - Given a binary operator or cast instruction which has a PHI
1789/// node as operand #0, see if we can fold the instruction into the PHI (which
1790/// is only possible if all operands to the PHI are constants).
1791Instruction *InstCombiner::FoldOpIntoPhi(Instruction &I) {
1792 PHINode *PN = cast<PHINode>(I.getOperand(0));
Chris Lattner7515cab2004-11-14 19:13:23 +00001793 unsigned NumPHIValues = PN->getNumIncomingValues();
Chris Lattner04689872006-09-09 22:02:56 +00001794 if (!PN->hasOneUse() || NumPHIValues == 0) return 0;
Chris Lattner6a4adcd2004-09-29 05:07:12 +00001795
Chris Lattner04689872006-09-09 22:02:56 +00001796 // Check to see if all of the operands of the PHI are constants. If there is
1797 // one non-constant value, remember the BB it is. If there is more than one
Chris Lattnerc4d8e7e2007-02-24 01:03:45 +00001798 // or if *it* is a PHI, bail out.
Chris Lattner04689872006-09-09 22:02:56 +00001799 BasicBlock *NonConstBB = 0;
1800 for (unsigned i = 0; i != NumPHIValues; ++i)
1801 if (!isa<Constant>(PN->getIncomingValue(i))) {
1802 if (NonConstBB) return 0; // More than one non-const value.
Chris Lattnerc4d8e7e2007-02-24 01:03:45 +00001803 if (isa<PHINode>(PN->getIncomingValue(i))) return 0; // Itself a phi.
Chris Lattner04689872006-09-09 22:02:56 +00001804 NonConstBB = PN->getIncomingBlock(i);
1805
1806 // If the incoming non-constant value is in I's block, we have an infinite
1807 // loop.
1808 if (NonConstBB == I.getParent())
1809 return 0;
1810 }
1811
1812 // If there is exactly one non-constant value, we can insert a copy of the
1813 // operation in that block. However, if this is a critical edge, we would be
1814 // inserting the computation one some other paths (e.g. inside a loop). Only
1815 // do this if the pred block is unconditionally branching into the phi block.
1816 if (NonConstBB) {
1817 BranchInst *BI = dyn_cast<BranchInst>(NonConstBB->getTerminator());
1818 if (!BI || !BI->isUnconditional()) return 0;
1819 }
Chris Lattner6a4adcd2004-09-29 05:07:12 +00001820
1821 // Okay, we can do the transformation: create the new PHI node.
Chris Lattner6e0123b2007-02-11 01:23:03 +00001822 PHINode *NewPN = new PHINode(I.getType(), "");
Chris Lattnerd8e20182005-01-29 00:39:08 +00001823 NewPN->reserveOperandSpace(PN->getNumOperands()/2);
Chris Lattner6a4adcd2004-09-29 05:07:12 +00001824 InsertNewInstBefore(NewPN, *PN);
Chris Lattner6e0123b2007-02-11 01:23:03 +00001825 NewPN->takeName(PN);
Chris Lattner6a4adcd2004-09-29 05:07:12 +00001826
1827 // Next, add all of the operands to the PHI.
1828 if (I.getNumOperands() == 2) {
1829 Constant *C = cast<Constant>(I.getOperand(1));
Chris Lattner7515cab2004-11-14 19:13:23 +00001830 for (unsigned i = 0; i != NumPHIValues; ++i) {
Chris Lattner04689872006-09-09 22:02:56 +00001831 Value *InV;
1832 if (Constant *InC = dyn_cast<Constant>(PN->getIncomingValue(i))) {
Reid Spencer266e42b2006-12-23 06:05:41 +00001833 if (CmpInst *CI = dyn_cast<CmpInst>(&I))
1834 InV = ConstantExpr::getCompare(CI->getPredicate(), InC, C);
1835 else
1836 InV = ConstantExpr::get(I.getOpcode(), InC, C);
Chris Lattner04689872006-09-09 22:02:56 +00001837 } else {
1838 assert(PN->getIncomingBlock(i) == NonConstBB);
1839 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(&I))
1840 InV = BinaryOperator::create(BO->getOpcode(),
1841 PN->getIncomingValue(i), C, "phitmp",
1842 NonConstBB->getTerminator());
Reid Spencer266e42b2006-12-23 06:05:41 +00001843 else if (CmpInst *CI = dyn_cast<CmpInst>(&I))
1844 InV = CmpInst::create(CI->getOpcode(),
1845 CI->getPredicate(),
1846 PN->getIncomingValue(i), C, "phitmp",
1847 NonConstBB->getTerminator());
Chris Lattner04689872006-09-09 22:02:56 +00001848 else
1849 assert(0 && "Unknown binop!");
1850
Chris Lattnerb15e2b12007-03-02 21:28:56 +00001851 AddToWorkList(cast<Instruction>(InV));
Chris Lattner04689872006-09-09 22:02:56 +00001852 }
1853 NewPN->addIncoming(InV, PN->getIncomingBlock(i));
Chris Lattner6a4adcd2004-09-29 05:07:12 +00001854 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001855 } else {
1856 CastInst *CI = cast<CastInst>(&I);
1857 const Type *RetTy = CI->getType();
Chris Lattner7515cab2004-11-14 19:13:23 +00001858 for (unsigned i = 0; i != NumPHIValues; ++i) {
Chris Lattner04689872006-09-09 22:02:56 +00001859 Value *InV;
1860 if (Constant *InC = dyn_cast<Constant>(PN->getIncomingValue(i))) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001861 InV = ConstantExpr::getCast(CI->getOpcode(), InC, RetTy);
Chris Lattner04689872006-09-09 22:02:56 +00001862 } else {
1863 assert(PN->getIncomingBlock(i) == NonConstBB);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001864 InV = CastInst::create(CI->getOpcode(), PN->getIncomingValue(i),
1865 I.getType(), "phitmp",
1866 NonConstBB->getTerminator());
Chris Lattnerb15e2b12007-03-02 21:28:56 +00001867 AddToWorkList(cast<Instruction>(InV));
Chris Lattner04689872006-09-09 22:02:56 +00001868 }
1869 NewPN->addIncoming(InV, PN->getIncomingBlock(i));
Chris Lattner6a4adcd2004-09-29 05:07:12 +00001870 }
1871 }
1872 return ReplaceInstUsesWith(I, NewPN);
1873}
1874
Chris Lattner113f4f42002-06-25 16:13:24 +00001875Instruction *InstCombiner::visitAdd(BinaryOperator &I) {
Chris Lattnerdcf240a2003-03-10 21:43:22 +00001876 bool Changed = SimplifyCommutative(I);
Chris Lattner113f4f42002-06-25 16:13:24 +00001877 Value *LHS = I.getOperand(0), *RHS = I.getOperand(1);
Chris Lattner9fa53de2002-05-06 16:49:18 +00001878
Chris Lattnercf4a9962004-04-10 22:01:55 +00001879 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
Chris Lattner81a7a232004-10-16 18:11:37 +00001880 // X + undef -> undef
1881 if (isa<UndefValue>(RHS))
1882 return ReplaceInstUsesWith(I, RHS);
1883
Chris Lattnercf4a9962004-04-10 22:01:55 +00001884 // X + 0 --> X
Chris Lattner7a002fe2006-12-02 00:13:08 +00001885 if (!I.getType()->isFPOrFPVector()) { // NOTE: -0 + +0 = +0.
Chris Lattner7fde91e2005-10-17 17:56:38 +00001886 if (RHSC->isNullValue())
1887 return ReplaceInstUsesWith(I, LHS);
Chris Lattnerda1b1522005-10-17 20:18:38 +00001888 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHSC)) {
1889 if (CFP->isExactlyValue(-0.0))
1890 return ReplaceInstUsesWith(I, LHS);
Chris Lattner7fde91e2005-10-17 17:56:38 +00001891 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001892
Chris Lattnercf4a9962004-04-10 22:01:55 +00001893 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHSC)) {
Chris Lattner6e2c15c2006-11-09 05:12:27 +00001894 // X + (signbit) --> X ^ signbit
Reid Spencer959a21d2007-03-23 21:24:59 +00001895 APInt Val(CI->getValue());
1896 unsigned BitWidth = Val.getBitWidth();
1897 if (Val == APInt::getSignBit(BitWidth))
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001898 return BinaryOperator::createXor(LHS, RHS);
Chris Lattner6e2c15c2006-11-09 05:12:27 +00001899
1900 // See if SimplifyDemandedBits can simplify this. This handles stuff like
1901 // (X & 254)+1 -> (X&254)|1
Reid Spencer959a21d2007-03-23 21:24:59 +00001902 if (!isa<VectorType>(I.getType())) {
1903 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
1904 if (SimplifyDemandedBits(&I, APInt::getAllOnesValue(BitWidth),
1905 KnownZero, KnownOne))
1906 return &I;
1907 }
Chris Lattnercf4a9962004-04-10 22:01:55 +00001908 }
Chris Lattner6a4adcd2004-09-29 05:07:12 +00001909
1910 if (isa<PHINode>(LHS))
1911 if (Instruction *NV = FoldOpIntoPhi(I))
1912 return NV;
Chris Lattner0b3557f2005-09-24 23:43:33 +00001913
Chris Lattner330628a2006-01-06 17:59:59 +00001914 ConstantInt *XorRHS = 0;
1915 Value *XorLHS = 0;
Chris Lattner4284f642007-01-30 22:32:46 +00001916 if (isa<ConstantInt>(RHSC) &&
1917 match(LHS, m_Xor(m_Value(XorLHS), m_ConstantInt(XorRHS)))) {
Chris Lattner0b3557f2005-09-24 23:43:33 +00001918 unsigned TySizeBits = I.getType()->getPrimitiveSizeInBits();
Reid Spencer959a21d2007-03-23 21:24:59 +00001919 APInt RHSVal(cast<ConstantInt>(RHSC)->getValue());
Chris Lattner0b3557f2005-09-24 23:43:33 +00001920
Reid Spencer959a21d2007-03-23 21:24:59 +00001921 unsigned Size = TySizeBits / 2;
1922 APInt C0080Val(APInt(TySizeBits, 1ULL).shl(Size - 1));
1923 APInt CFF80Val(-C0080Val);
Chris Lattner0b3557f2005-09-24 23:43:33 +00001924 do {
1925 if (TySizeBits > Size) {
Chris Lattner0b3557f2005-09-24 23:43:33 +00001926 // If we have ADD(XOR(AND(X, 0xFF), 0x80), 0xF..F80), it's a sext.
1927 // If we have ADD(XOR(AND(X, 0xFF), 0xF..F80), 0x80), it's a sext.
Reid Spencer959a21d2007-03-23 21:24:59 +00001928 if ((RHSVal == CFF80Val && XorRHS->getValue() == C0080Val) ||
1929 (RHSVal == C0080Val && XorRHS->getValue() == CFF80Val)) {
Chris Lattner0b3557f2005-09-24 23:43:33 +00001930 // This is a sign extend if the top bits are known zero.
Reid Spencer959a21d2007-03-23 21:24:59 +00001931 APInt Mask(APInt::getAllOnesValue(TySizeBits));
1932 Mask <<= Size;
Chris Lattnerc3ebf402006-02-07 07:27:52 +00001933 if (!MaskedValueIsZero(XorLHS, Mask))
Chris Lattner0b3557f2005-09-24 23:43:33 +00001934 Size = 0; // Not a sign ext, but can't be any others either.
Reid Spencer959a21d2007-03-23 21:24:59 +00001935 break;
Chris Lattner0b3557f2005-09-24 23:43:33 +00001936 }
1937 }
1938 Size >>= 1;
Reid Spencer959a21d2007-03-23 21:24:59 +00001939 C0080Val = APIntOps::lshr(C0080Val, Size);
1940 CFF80Val = APIntOps::ashr(CFF80Val, Size);
1941 } while (Size >= 1);
Chris Lattner0b3557f2005-09-24 23:43:33 +00001942
Reid Spencer959a21d2007-03-23 21:24:59 +00001943 if (Size) {
1944 const Type *MiddleType = IntegerType::get(Size);
Reid Spencerbb65ebf2006-12-12 23:36:14 +00001945 Instruction *NewTrunc = new TruncInst(XorLHS, MiddleType, "sext");
Chris Lattner0b3557f2005-09-24 23:43:33 +00001946 InsertNewInstBefore(NewTrunc, I);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001947 return new SExtInst(NewTrunc, I.getType());
Chris Lattner0b3557f2005-09-24 23:43:33 +00001948 }
1949 }
Chris Lattnercf4a9962004-04-10 22:01:55 +00001950 }
Chris Lattner9fa53de2002-05-06 16:49:18 +00001951
Chris Lattnerb8b97502003-08-13 19:01:45 +00001952 // X + X --> X << 1
Chris Lattner03c49532007-01-15 02:27:26 +00001953 if (I.getType()->isInteger() && I.getType() != Type::Int1Ty) {
Chris Lattnerb8b97502003-08-13 19:01:45 +00001954 if (Instruction *Result = AssociativeOpt(I, AddRHS(RHS))) return Result;
Chris Lattner47060462005-04-07 17:14:51 +00001955
1956 if (Instruction *RHSI = dyn_cast<Instruction>(RHS)) {
1957 if (RHSI->getOpcode() == Instruction::Sub)
1958 if (LHS == RHSI->getOperand(1)) // A + (B - A) --> B
1959 return ReplaceInstUsesWith(I, RHSI->getOperand(0));
1960 }
1961 if (Instruction *LHSI = dyn_cast<Instruction>(LHS)) {
1962 if (LHSI->getOpcode() == Instruction::Sub)
1963 if (RHS == LHSI->getOperand(1)) // (B - A) + A --> B
1964 return ReplaceInstUsesWith(I, LHSI->getOperand(0));
1965 }
Robert Bocchino7b5b86c2004-07-27 21:02:21 +00001966 }
Chris Lattnerede3fe02003-08-13 04:18:28 +00001967
Chris Lattner147e9752002-05-08 22:46:53 +00001968 // -A + B --> B - A
Chris Lattnerbb74e222003-03-10 23:06:50 +00001969 if (Value *V = dyn_castNegVal(LHS))
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001970 return BinaryOperator::createSub(RHS, V);
Chris Lattner9fa53de2002-05-06 16:49:18 +00001971
1972 // A + -B --> A - B
Chris Lattnerbb74e222003-03-10 23:06:50 +00001973 if (!isa<Constant>(RHS))
1974 if (Value *V = dyn_castNegVal(RHS))
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00001975 return BinaryOperator::createSub(LHS, V);
Chris Lattner260ab202002-04-18 17:39:14 +00001976
Misha Brukmanb1c93172005-04-21 23:48:37 +00001977
Chris Lattner8c3e7b92004-11-13 19:50:12 +00001978 ConstantInt *C2;
1979 if (Value *X = dyn_castFoldableMul(LHS, C2)) {
1980 if (X == RHS) // X*C + X --> X * (C+1)
1981 return BinaryOperator::createMul(RHS, AddOne(C2));
1982
1983 // X*C1 + X*C2 --> X * (C1+C2)
1984 ConstantInt *C1;
1985 if (X == dyn_castFoldableMul(RHS, C1))
Reid Spencer80263aa2007-03-25 05:33:51 +00001986 return BinaryOperator::createMul(X, Add(C1, C2));
Chris Lattner57c8d992003-02-18 19:57:07 +00001987 }
1988
1989 // X + X*C --> X * (C+1)
Chris Lattner8c3e7b92004-11-13 19:50:12 +00001990 if (dyn_castFoldableMul(RHS, C2) == LHS)
1991 return BinaryOperator::createMul(LHS, AddOne(C2));
1992
Chris Lattner23eb8ec2007-01-05 02:17:46 +00001993 // X + ~X --> -1 since ~X = -X-1
1994 if (dyn_castNotVal(LHS) == RHS ||
1995 dyn_castNotVal(RHS) == LHS)
1996 return ReplaceInstUsesWith(I, ConstantInt::getAllOnesValue(I.getType()));
1997
Chris Lattner57c8d992003-02-18 19:57:07 +00001998
Chris Lattnerb8b97502003-08-13 19:01:45 +00001999 // (A & C1)+(B & C2) --> (A & C1)|(B & C2) iff C1&C2 == 0
Chris Lattnerd4252a72004-07-30 07:50:03 +00002000 if (match(RHS, m_And(m_Value(), m_ConstantInt(C2))))
Chris Lattner23eb8ec2007-01-05 02:17:46 +00002001 if (Instruction *R = AssociativeOpt(I, AddMaskingAnd(C2)))
2002 return R;
Chris Lattner7fb29e12003-03-11 00:12:48 +00002003
Chris Lattnerb9cde762003-10-02 15:11:26 +00002004 if (ConstantInt *CRHS = dyn_cast<ConstantInt>(RHS)) {
Chris Lattner330628a2006-01-06 17:59:59 +00002005 Value *X = 0;
Reid Spencer80263aa2007-03-25 05:33:51 +00002006 if (match(LHS, m_Not(m_Value(X)))) // ~X + C --> (C-1) - X
2007 return BinaryOperator::createSub(SubOne(CRHS), X);
Chris Lattnerd4252a72004-07-30 07:50:03 +00002008
Chris Lattnerbff91d92004-10-08 05:07:56 +00002009 // (X & FF00) + xx00 -> (X+xx00) & FF00
2010 if (LHS->hasOneUse() && match(LHS, m_And(m_Value(X), m_ConstantInt(C2)))) {
Reid Spencer80263aa2007-03-25 05:33:51 +00002011 Constant *Anded = And(CRHS, C2);
Chris Lattnerbff91d92004-10-08 05:07:56 +00002012 if (Anded == CRHS) {
2013 // See if all bits from the first bit set in the Add RHS up are included
2014 // in the mask. First, get the rightmost bit.
Reid Spencer959a21d2007-03-23 21:24:59 +00002015 APInt AddRHSV(CRHS->getValue());
Chris Lattnerbff91d92004-10-08 05:07:56 +00002016
2017 // Form a mask of all bits from the lowest bit added through the top.
Reid Spencer959a21d2007-03-23 21:24:59 +00002018 APInt AddRHSHighBits = ~((AddRHSV & -AddRHSV)-1);
2019 AddRHSHighBits &= C2->getType()->getMask();
Chris Lattnerbff91d92004-10-08 05:07:56 +00002020
2021 // See if the and mask includes all of these bits.
Reid Spencer959a21d2007-03-23 21:24:59 +00002022 APInt AddRHSHighBitsAnd = AddRHSHighBits & C2->getValue();
Misha Brukmanb1c93172005-04-21 23:48:37 +00002023
Chris Lattnerbff91d92004-10-08 05:07:56 +00002024 if (AddRHSHighBits == AddRHSHighBitsAnd) {
2025 // Okay, the xform is safe. Insert the new add pronto.
2026 Value *NewAdd = InsertNewInstBefore(BinaryOperator::createAdd(X, CRHS,
2027 LHS->getName()), I);
2028 return BinaryOperator::createAnd(NewAdd, C2);
2029 }
2030 }
2031 }
2032
Chris Lattnerd4252a72004-07-30 07:50:03 +00002033 // Try to fold constant add into select arguments.
2034 if (SelectInst *SI = dyn_cast<SelectInst>(LHS))
Chris Lattner86102b82005-01-01 16:22:27 +00002035 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
Chris Lattnerd4252a72004-07-30 07:50:03 +00002036 return R;
Chris Lattnerb9cde762003-10-02 15:11:26 +00002037 }
2038
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002039 // add (cast *A to intptrtype) B ->
2040 // cast (GEP (cast *A to sbyte*) B) ->
2041 // intptrtype
Andrew Lenharth4f339be2006-09-19 18:24:51 +00002042 {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002043 CastInst *CI = dyn_cast<CastInst>(LHS);
2044 Value *Other = RHS;
Andrew Lenharth4f339be2006-09-19 18:24:51 +00002045 if (!CI) {
2046 CI = dyn_cast<CastInst>(RHS);
2047 Other = LHS;
2048 }
Andrew Lenharth44cb67a2006-09-20 15:37:57 +00002049 if (CI && CI->getType()->isSized() &&
Reid Spencer8f166b02007-01-08 16:32:00 +00002050 (CI->getType()->getPrimitiveSizeInBits() ==
2051 TD->getIntPtrType()->getPrimitiveSizeInBits())
Andrew Lenharth44cb67a2006-09-20 15:37:57 +00002052 && isa<PointerType>(CI->getOperand(0)->getType())) {
Reid Spencer13bc5d72006-12-12 09:18:51 +00002053 Value *I2 = InsertCastBefore(Instruction::BitCast, CI->getOperand(0),
Reid Spencerc635f472006-12-31 05:48:39 +00002054 PointerType::get(Type::Int8Ty), I);
Andrew Lenharth44cb67a2006-09-20 15:37:57 +00002055 I2 = InsertNewInstBefore(new GetElementPtrInst(I2, Other, "ctg2"), I);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002056 return new PtrToIntInst(I2, CI->getType());
Andrew Lenharth4f339be2006-09-19 18:24:51 +00002057 }
2058 }
2059
Chris Lattner113f4f42002-06-25 16:13:24 +00002060 return Changed ? &I : 0;
Chris Lattner260ab202002-04-18 17:39:14 +00002061}
2062
Chris Lattnerbdb0ce02003-07-22 21:46:59 +00002063// isSignBit - Return true if the value represented by the constant only has the
2064// highest order bit set.
2065static bool isSignBit(ConstantInt *CI) {
Chris Lattnerd1f46d32005-04-24 06:59:08 +00002066 unsigned NumBits = CI->getType()->getPrimitiveSizeInBits();
Reid Spencer450434e2007-03-19 20:58:18 +00002067 return CI->getValue() == APInt::getSignBit(NumBits);
Chris Lattnerbdb0ce02003-07-22 21:46:59 +00002068}
2069
Chris Lattner113f4f42002-06-25 16:13:24 +00002070Instruction *InstCombiner::visitSub(BinaryOperator &I) {
Chris Lattner113f4f42002-06-25 16:13:24 +00002071 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00002072
Chris Lattnere6794492002-08-12 21:17:25 +00002073 if (Op0 == Op1) // sub X, X -> 0
2074 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattner260ab202002-04-18 17:39:14 +00002075
Chris Lattnere6794492002-08-12 21:17:25 +00002076 // If this is a 'B = x-(-A)', change to B = x+A...
Chris Lattnerbb74e222003-03-10 23:06:50 +00002077 if (Value *V = dyn_castNegVal(Op1))
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002078 return BinaryOperator::createAdd(Op0, V);
Chris Lattner9fa53de2002-05-06 16:49:18 +00002079
Chris Lattner81a7a232004-10-16 18:11:37 +00002080 if (isa<UndefValue>(Op0))
2081 return ReplaceInstUsesWith(I, Op0); // undef - X -> undef
2082 if (isa<UndefValue>(Op1))
2083 return ReplaceInstUsesWith(I, Op1); // X - undef -> undef
2084
Chris Lattner8f2f5982003-11-05 01:06:05 +00002085 if (ConstantInt *C = dyn_cast<ConstantInt>(Op0)) {
2086 // Replace (-1 - A) with (~A)...
Chris Lattner3082c5a2003-02-18 19:28:33 +00002087 if (C->isAllOnesValue())
2088 return BinaryOperator::createNot(Op1);
Chris Lattnerad3c4952002-05-09 01:29:19 +00002089
Chris Lattner8f2f5982003-11-05 01:06:05 +00002090 // C - ~X == X + (1+C)
Reid Spencer4fdd96c2005-06-18 17:37:34 +00002091 Value *X = 0;
Chris Lattnerd4252a72004-07-30 07:50:03 +00002092 if (match(Op1, m_Not(m_Value(X))))
Reid Spencer80263aa2007-03-25 05:33:51 +00002093 return BinaryOperator::createAdd(X, AddOne(C));
2094
Chris Lattner27df1db2007-01-15 07:02:54 +00002095 // -(X >>u 31) -> (X >>s 31)
2096 // -(X >>s 31) -> (X >>u 31)
Chris Lattner022167f2004-03-13 00:11:49 +00002097 if (C->isNullValue()) {
Reid Spencer2341c222007-02-02 02:16:23 +00002098 if (BinaryOperator *SI = dyn_cast<BinaryOperator>(Op1))
Reid Spencerfdff9382006-11-08 06:47:33 +00002099 if (SI->getOpcode() == Instruction::LShr) {
Reid Spencere0fc4df2006-10-20 07:07:24 +00002100 if (ConstantInt *CU = dyn_cast<ConstantInt>(SI->getOperand(1))) {
Chris Lattner92295c52004-03-12 23:53:13 +00002101 // Check to see if we are shifting out everything but the sign bit.
Reid Spencere0fc4df2006-10-20 07:07:24 +00002102 if (CU->getZExtValue() ==
2103 SI->getType()->getPrimitiveSizeInBits()-1) {
Reid Spencerfdff9382006-11-08 06:47:33 +00002104 // Ok, the transformation is safe. Insert AShr.
Reid Spencer2341c222007-02-02 02:16:23 +00002105 return BinaryOperator::create(Instruction::AShr,
2106 SI->getOperand(0), CU, SI->getName());
Chris Lattner92295c52004-03-12 23:53:13 +00002107 }
2108 }
Reid Spencerfdff9382006-11-08 06:47:33 +00002109 }
2110 else if (SI->getOpcode() == Instruction::AShr) {
2111 if (ConstantInt *CU = dyn_cast<ConstantInt>(SI->getOperand(1))) {
2112 // Check to see if we are shifting out everything but the sign bit.
2113 if (CU->getZExtValue() ==
2114 SI->getType()->getPrimitiveSizeInBits()-1) {
Reid Spencerc635f472006-12-31 05:48:39 +00002115 // Ok, the transformation is safe. Insert LShr.
Reid Spencer0d5f9232007-02-02 14:08:20 +00002116 return BinaryOperator::createLShr(
Reid Spencer2341c222007-02-02 02:16:23 +00002117 SI->getOperand(0), CU, SI->getName());
Reid Spencerfdff9382006-11-08 06:47:33 +00002118 }
2119 }
2120 }
Chris Lattner022167f2004-03-13 00:11:49 +00002121 }
Chris Lattner183b3362004-04-09 19:05:30 +00002122
2123 // Try to fold constant sub into select arguments.
2124 if (SelectInst *SI = dyn_cast<SelectInst>(Op1))
Chris Lattner86102b82005-01-01 16:22:27 +00002125 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
Chris Lattner183b3362004-04-09 19:05:30 +00002126 return R;
Chris Lattner6a4adcd2004-09-29 05:07:12 +00002127
2128 if (isa<PHINode>(Op0))
2129 if (Instruction *NV = FoldOpIntoPhi(I))
2130 return NV;
Chris Lattner8f2f5982003-11-05 01:06:05 +00002131 }
2132
Chris Lattnera9be4492005-04-07 16:15:25 +00002133 if (BinaryOperator *Op1I = dyn_cast<BinaryOperator>(Op1)) {
2134 if (Op1I->getOpcode() == Instruction::Add &&
Chris Lattner7a002fe2006-12-02 00:13:08 +00002135 !Op0->getType()->isFPOrFPVector()) {
Chris Lattnerc7f3c1a2005-04-07 16:28:01 +00002136 if (Op1I->getOperand(0) == Op0) // X-(X+Y) == -Y
Chris Lattnera9be4492005-04-07 16:15:25 +00002137 return BinaryOperator::createNeg(Op1I->getOperand(1), I.getName());
Chris Lattnerc7f3c1a2005-04-07 16:28:01 +00002138 else if (Op1I->getOperand(1) == Op0) // X-(Y+X) == -Y
Chris Lattnera9be4492005-04-07 16:15:25 +00002139 return BinaryOperator::createNeg(Op1I->getOperand(0), I.getName());
Chris Lattnerc7f3c1a2005-04-07 16:28:01 +00002140 else if (ConstantInt *CI1 = dyn_cast<ConstantInt>(I.getOperand(0))) {
2141 if (ConstantInt *CI2 = dyn_cast<ConstantInt>(Op1I->getOperand(1)))
2142 // C1-(X+C2) --> (C1-C2)-X
Reid Spencer80263aa2007-03-25 05:33:51 +00002143 return BinaryOperator::createSub(Subtract(CI1, CI2),
Chris Lattnerc7f3c1a2005-04-07 16:28:01 +00002144 Op1I->getOperand(0));
2145 }
Chris Lattnera9be4492005-04-07 16:15:25 +00002146 }
2147
Chris Lattnerf95d9b92003-10-15 16:48:29 +00002148 if (Op1I->hasOneUse()) {
Chris Lattner3082c5a2003-02-18 19:28:33 +00002149 // Replace (x - (y - z)) with (x + (z - y)) if the (y - z) subexpression
2150 // is not used by anyone else...
2151 //
Chris Lattnerc2f0aa52004-02-02 20:09:56 +00002152 if (Op1I->getOpcode() == Instruction::Sub &&
Chris Lattner7a002fe2006-12-02 00:13:08 +00002153 !Op1I->getType()->isFPOrFPVector()) {
Chris Lattner3082c5a2003-02-18 19:28:33 +00002154 // Swap the two operands of the subexpr...
2155 Value *IIOp0 = Op1I->getOperand(0), *IIOp1 = Op1I->getOperand(1);
2156 Op1I->setOperand(0, IIOp1);
2157 Op1I->setOperand(1, IIOp0);
Misha Brukmanb1c93172005-04-21 23:48:37 +00002158
Chris Lattner3082c5a2003-02-18 19:28:33 +00002159 // Create the new top level add instruction...
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002160 return BinaryOperator::createAdd(Op0, Op1);
Chris Lattner3082c5a2003-02-18 19:28:33 +00002161 }
2162
2163 // Replace (A - (A & B)) with (A & ~B) if this is the only use of (A&B)...
2164 //
2165 if (Op1I->getOpcode() == Instruction::And &&
2166 (Op1I->getOperand(0) == Op0 || Op1I->getOperand(1) == Op0)) {
2167 Value *OtherOp = Op1I->getOperand(Op1I->getOperand(0) == Op0);
2168
Chris Lattner396dbfe2004-06-09 05:08:07 +00002169 Value *NewNot =
2170 InsertNewInstBefore(BinaryOperator::createNot(OtherOp, "B.not"), I);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002171 return BinaryOperator::createAnd(Op0, NewNot);
Chris Lattner3082c5a2003-02-18 19:28:33 +00002172 }
Chris Lattner57c8d992003-02-18 19:57:07 +00002173
Reid Spencer3c514952006-10-16 23:08:08 +00002174 // 0 - (X sdiv C) -> (X sdiv -C)
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002175 if (Op1I->getOpcode() == Instruction::SDiv)
Reid Spencere0fc4df2006-10-20 07:07:24 +00002176 if (ConstantInt *CSI = dyn_cast<ConstantInt>(Op0))
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002177 if (CSI->isNullValue())
Chris Lattner0aee4b72004-10-06 15:08:25 +00002178 if (Constant *DivRHS = dyn_cast<Constant>(Op1I->getOperand(1)))
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002179 return BinaryOperator::createSDiv(Op1I->getOperand(0),
Chris Lattner0aee4b72004-10-06 15:08:25 +00002180 ConstantExpr::getNeg(DivRHS));
2181
Chris Lattner57c8d992003-02-18 19:57:07 +00002182 // X - X*C --> X * (1-C)
Reid Spencer4fdd96c2005-06-18 17:37:34 +00002183 ConstantInt *C2 = 0;
Chris Lattner8c3e7b92004-11-13 19:50:12 +00002184 if (dyn_castFoldableMul(Op1I, C2) == Op0) {
Reid Spencer80263aa2007-03-25 05:33:51 +00002185 Constant *CP1 = Subtract(ConstantInt::get(I.getType(), 1), C2);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002186 return BinaryOperator::createMul(Op0, CP1);
Chris Lattner57c8d992003-02-18 19:57:07 +00002187 }
Chris Lattnerad3c4952002-05-09 01:29:19 +00002188 }
Chris Lattnera9be4492005-04-07 16:15:25 +00002189 }
Chris Lattner3082c5a2003-02-18 19:28:33 +00002190
Chris Lattner7a002fe2006-12-02 00:13:08 +00002191 if (!Op0->getType()->isFPOrFPVector())
Chris Lattner47060462005-04-07 17:14:51 +00002192 if (BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0))
2193 if (Op0I->getOpcode() == Instruction::Add) {
Chris Lattner411336f2005-01-19 21:50:18 +00002194 if (Op0I->getOperand(0) == Op1) // (Y+X)-Y == X
2195 return ReplaceInstUsesWith(I, Op0I->getOperand(1));
2196 else if (Op0I->getOperand(1) == Op1) // (X+Y)-Y == X
2197 return ReplaceInstUsesWith(I, Op0I->getOperand(0));
Chris Lattner47060462005-04-07 17:14:51 +00002198 } else if (Op0I->getOpcode() == Instruction::Sub) {
2199 if (Op0I->getOperand(0) == Op1) // (X-Y)-X == -Y
2200 return BinaryOperator::createNeg(Op0I->getOperand(1), I.getName());
Chris Lattner411336f2005-01-19 21:50:18 +00002201 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00002202
Chris Lattner8c3e7b92004-11-13 19:50:12 +00002203 ConstantInt *C1;
2204 if (Value *X = dyn_castFoldableMul(Op0, C1)) {
Reid Spencer80263aa2007-03-25 05:33:51 +00002205 if (X == Op1) // X*C - X --> X * (C-1)
2206 return BinaryOperator::createMul(Op1, SubOne(C1));
Chris Lattner57c8d992003-02-18 19:57:07 +00002207
Chris Lattner8c3e7b92004-11-13 19:50:12 +00002208 ConstantInt *C2; // X*C1 - X*C2 -> X * (C1-C2)
2209 if (X == dyn_castFoldableMul(Op1, C2))
Reid Spencer80263aa2007-03-25 05:33:51 +00002210 return BinaryOperator::createMul(Op1, Subtract(C1, C2));
Chris Lattner8c3e7b92004-11-13 19:50:12 +00002211 }
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00002212 return 0;
Chris Lattner260ab202002-04-18 17:39:14 +00002213}
2214
Reid Spencer266e42b2006-12-23 06:05:41 +00002215/// isSignBitCheck - Given an exploded icmp instruction, return true if it
Chris Lattnere79e8542004-02-23 06:38:22 +00002216/// really just returns true if the most significant (sign) bit is set.
Reid Spencer266e42b2006-12-23 06:05:41 +00002217static bool isSignBitCheck(ICmpInst::Predicate pred, ConstantInt *RHS) {
2218 switch (pred) {
2219 case ICmpInst::ICMP_SLT:
2220 // True if LHS s< RHS and RHS == 0
2221 return RHS->isNullValue();
2222 case ICmpInst::ICMP_SLE:
2223 // True if LHS s<= RHS and RHS == -1
2224 return RHS->isAllOnesValue();
2225 case ICmpInst::ICMP_UGE:
2226 // True if LHS u>= RHS and RHS == high-bit-mask (2^7, 2^15, 2^31, etc)
Reid Spencera962d182007-03-24 00:42:08 +00002227 return RHS->getValue() ==
2228 APInt::getSignBit(RHS->getType()->getPrimitiveSizeInBits());
Reid Spencer266e42b2006-12-23 06:05:41 +00002229 case ICmpInst::ICMP_UGT:
2230 // True if LHS u> RHS and RHS == high-bit-mask - 1
Reid Spencera962d182007-03-24 00:42:08 +00002231 return RHS->getValue() ==
2232 APInt::getSignedMaxValue(RHS->getType()->getPrimitiveSizeInBits());
Reid Spencer266e42b2006-12-23 06:05:41 +00002233 default:
2234 return false;
Chris Lattnere79e8542004-02-23 06:38:22 +00002235 }
Chris Lattnere79e8542004-02-23 06:38:22 +00002236}
2237
Chris Lattner113f4f42002-06-25 16:13:24 +00002238Instruction *InstCombiner::visitMul(BinaryOperator &I) {
Chris Lattnerdcf240a2003-03-10 21:43:22 +00002239 bool Changed = SimplifyCommutative(I);
Chris Lattner3082c5a2003-02-18 19:28:33 +00002240 Value *Op0 = I.getOperand(0);
Chris Lattner260ab202002-04-18 17:39:14 +00002241
Chris Lattner81a7a232004-10-16 18:11:37 +00002242 if (isa<UndefValue>(I.getOperand(1))) // undef * X -> 0
2243 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
2244
Chris Lattnere6794492002-08-12 21:17:25 +00002245 // Simplify mul instructions with a constant RHS...
Chris Lattner3082c5a2003-02-18 19:28:33 +00002246 if (Constant *Op1 = dyn_cast<Constant>(I.getOperand(1))) {
2247 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Chris Lattnerede3fe02003-08-13 04:18:28 +00002248
2249 // ((X << C1)*C2) == (X * (C2 << C1))
Reid Spencer2341c222007-02-02 02:16:23 +00002250 if (BinaryOperator *SI = dyn_cast<BinaryOperator>(Op0))
Chris Lattnerede3fe02003-08-13 04:18:28 +00002251 if (SI->getOpcode() == Instruction::Shl)
2252 if (Constant *ShOp = dyn_cast<Constant>(SI->getOperand(1)))
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002253 return BinaryOperator::createMul(SI->getOperand(0),
2254 ConstantExpr::getShl(CI, ShOp));
Misha Brukmanb1c93172005-04-21 23:48:37 +00002255
Chris Lattnercce81be2003-09-11 22:24:54 +00002256 if (CI->isNullValue())
2257 return ReplaceInstUsesWith(I, Op1); // X * 0 == 0
2258 if (CI->equalsInt(1)) // X * 1 == X
2259 return ReplaceInstUsesWith(I, Op0);
2260 if (CI->isAllOnesValue()) // X * -1 == 0 - X
Chris Lattner35236d82003-06-25 17:09:20 +00002261 return BinaryOperator::createNeg(Op0, I.getName());
Chris Lattner31ba1292002-04-29 22:24:47 +00002262
Reid Spencer6d392062007-03-23 20:05:17 +00002263 APInt Val(cast<ConstantInt>(CI)->getValue());
2264 if (Val.isPowerOf2()) { // Replace X*(2^C) with X << C
Reid Spencer0d5f9232007-02-02 14:08:20 +00002265 return BinaryOperator::createShl(Op0,
Reid Spencer6d392062007-03-23 20:05:17 +00002266 ConstantInt::get(Op0->getType(), Val.logBase2()));
Chris Lattner22d00a82005-08-02 19:16:58 +00002267 }
Robert Bocchino7b5b86c2004-07-27 21:02:21 +00002268 } else if (ConstantFP *Op1F = dyn_cast<ConstantFP>(Op1)) {
Chris Lattner3082c5a2003-02-18 19:28:33 +00002269 if (Op1F->isNullValue())
2270 return ReplaceInstUsesWith(I, Op1);
Chris Lattner31ba1292002-04-29 22:24:47 +00002271
Chris Lattner3082c5a2003-02-18 19:28:33 +00002272 // "In IEEE floating point, x*1 is not equivalent to x for nans. However,
2273 // ANSI says we can drop signals, so we can do this anyway." (from GCC)
2274 if (Op1F->getValue() == 1.0)
2275 return ReplaceInstUsesWith(I, Op0); // Eliminate 'mul double %X, 1.0'
2276 }
Chris Lattner32c01df2006-03-04 06:04:02 +00002277
2278 if (BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0))
2279 if (Op0I->getOpcode() == Instruction::Add && Op0I->hasOneUse() &&
2280 isa<ConstantInt>(Op0I->getOperand(1))) {
2281 // Canonicalize (X+C1)*C2 -> X*C2+C1*C2.
2282 Instruction *Add = BinaryOperator::createMul(Op0I->getOperand(0),
2283 Op1, "tmp");
2284 InsertNewInstBefore(Add, I);
2285 Value *C1C2 = ConstantExpr::getMul(Op1,
2286 cast<Constant>(Op0I->getOperand(1)));
2287 return BinaryOperator::createAdd(Add, C1C2);
2288
2289 }
Chris Lattner183b3362004-04-09 19:05:30 +00002290
2291 // Try to fold constant mul into select arguments.
2292 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
Chris Lattner86102b82005-01-01 16:22:27 +00002293 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
Chris Lattner183b3362004-04-09 19:05:30 +00002294 return R;
Chris Lattner6a4adcd2004-09-29 05:07:12 +00002295
2296 if (isa<PHINode>(Op0))
2297 if (Instruction *NV = FoldOpIntoPhi(I))
2298 return NV;
Chris Lattner260ab202002-04-18 17:39:14 +00002299 }
2300
Chris Lattner934a64cf2003-03-10 23:23:04 +00002301 if (Value *Op0v = dyn_castNegVal(Op0)) // -X * -Y = X*Y
2302 if (Value *Op1v = dyn_castNegVal(I.getOperand(1)))
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002303 return BinaryOperator::createMul(Op0v, Op1v);
Chris Lattner934a64cf2003-03-10 23:23:04 +00002304
Chris Lattner2635b522004-02-23 05:39:21 +00002305 // If one of the operands of the multiply is a cast from a boolean value, then
2306 // we know the bool is either zero or one, so this is a 'masking' multiply.
2307 // See if we can simplify things based on how the boolean was originally
2308 // formed.
2309 CastInst *BoolCast = 0;
Reid Spencer74a528b2006-12-13 18:21:21 +00002310 if (ZExtInst *CI = dyn_cast<ZExtInst>(I.getOperand(0)))
Reid Spencer542964f2007-01-11 18:21:29 +00002311 if (CI->getOperand(0)->getType() == Type::Int1Ty)
Chris Lattner2635b522004-02-23 05:39:21 +00002312 BoolCast = CI;
2313 if (!BoolCast)
Reid Spencer74a528b2006-12-13 18:21:21 +00002314 if (ZExtInst *CI = dyn_cast<ZExtInst>(I.getOperand(1)))
Reid Spencer542964f2007-01-11 18:21:29 +00002315 if (CI->getOperand(0)->getType() == Type::Int1Ty)
Chris Lattner2635b522004-02-23 05:39:21 +00002316 BoolCast = CI;
2317 if (BoolCast) {
Reid Spencer266e42b2006-12-23 06:05:41 +00002318 if (ICmpInst *SCI = dyn_cast<ICmpInst>(BoolCast->getOperand(0))) {
Chris Lattner2635b522004-02-23 05:39:21 +00002319 Value *SCIOp0 = SCI->getOperand(0), *SCIOp1 = SCI->getOperand(1);
2320 const Type *SCOpTy = SCIOp0->getType();
2321
Reid Spencer266e42b2006-12-23 06:05:41 +00002322 // If the icmp is true iff the sign bit of X is set, then convert this
Chris Lattnere79e8542004-02-23 06:38:22 +00002323 // multiply into a shift/and combination.
2324 if (isa<ConstantInt>(SCIOp1) &&
Reid Spencer266e42b2006-12-23 06:05:41 +00002325 isSignBitCheck(SCI->getPredicate(), cast<ConstantInt>(SCIOp1))) {
Chris Lattner2635b522004-02-23 05:39:21 +00002326 // Shift the X value right to turn it into "all signbits".
Reid Spencer2341c222007-02-02 02:16:23 +00002327 Constant *Amt = ConstantInt::get(SCIOp0->getType(),
Chris Lattnerd1f46d32005-04-24 06:59:08 +00002328 SCOpTy->getPrimitiveSizeInBits()-1);
Chris Lattnere79e8542004-02-23 06:38:22 +00002329 Value *V =
Reid Spencer2341c222007-02-02 02:16:23 +00002330 InsertNewInstBefore(
2331 BinaryOperator::create(Instruction::AShr, SCIOp0, Amt,
Chris Lattnere79e8542004-02-23 06:38:22 +00002332 BoolCast->getOperand(0)->getName()+
2333 ".mask"), I);
Chris Lattner2635b522004-02-23 05:39:21 +00002334
2335 // If the multiply type is not the same as the source type, sign extend
2336 // or truncate to the multiply type.
Reid Spencer13bc5d72006-12-12 09:18:51 +00002337 if (I.getType() != V->getType()) {
2338 unsigned SrcBits = V->getType()->getPrimitiveSizeInBits();
2339 unsigned DstBits = I.getType()->getPrimitiveSizeInBits();
2340 Instruction::CastOps opcode =
2341 (SrcBits == DstBits ? Instruction::BitCast :
2342 (SrcBits < DstBits ? Instruction::SExt : Instruction::Trunc));
2343 V = InsertCastBefore(opcode, V, I.getType(), I);
2344 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00002345
Chris Lattner2635b522004-02-23 05:39:21 +00002346 Value *OtherOp = Op0 == BoolCast ? I.getOperand(1) : Op0;
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002347 return BinaryOperator::createAnd(V, OtherOp);
Chris Lattner2635b522004-02-23 05:39:21 +00002348 }
2349 }
2350 }
2351
Chris Lattner113f4f42002-06-25 16:13:24 +00002352 return Changed ? &I : 0;
Chris Lattner260ab202002-04-18 17:39:14 +00002353}
2354
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002355/// This function implements the transforms on div instructions that work
2356/// regardless of the kind of div instruction it is (udiv, sdiv, or fdiv). It is
2357/// used by the visitors to those instructions.
2358/// @brief Transforms common to all three div instructions
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002359Instruction *InstCombiner::commonDivTransforms(BinaryOperator &I) {
Chris Lattnerbf5b7cf2004-12-12 21:48:58 +00002360 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattner81a7a232004-10-16 18:11:37 +00002361
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002362 // undef / X -> 0
2363 if (isa<UndefValue>(Op0))
Chris Lattnerbf5b7cf2004-12-12 21:48:58 +00002364 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002365
2366 // X / undef -> undef
Chris Lattnerbf5b7cf2004-12-12 21:48:58 +00002367 if (isa<UndefValue>(Op1))
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002368 return ReplaceInstUsesWith(I, Op1);
Chris Lattnerbf5b7cf2004-12-12 21:48:58 +00002369
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002370 // Handle cases involving: div X, (select Cond, Y, Z)
Chris Lattnerd79dc792006-09-09 20:26:32 +00002371 if (SelectInst *SI = dyn_cast<SelectInst>(Op1)) {
2372 // div X, (Cond ? 0 : Y) -> div X, Y. If the div and the select are in the
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002373 // same basic block, then we replace the select with Y, and the condition
2374 // of the select with false (if the cond value is in the same BB). If the
Chris Lattnerd79dc792006-09-09 20:26:32 +00002375 // select has uses other than the div, this allows them to be simplified
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002376 // also. Note that div X, Y is just as good as div X, 0 (undef)
Chris Lattnerd79dc792006-09-09 20:26:32 +00002377 if (Constant *ST = dyn_cast<Constant>(SI->getOperand(1)))
2378 if (ST->isNullValue()) {
2379 Instruction *CondI = dyn_cast<Instruction>(SI->getOperand(0));
2380 if (CondI && CondI->getParent() == I.getParent())
Zhou Sheng75b871f2007-01-11 12:24:14 +00002381 UpdateValueUsesWith(CondI, ConstantInt::getFalse());
Chris Lattnerd79dc792006-09-09 20:26:32 +00002382 else if (I.getParent() != SI->getParent() || SI->hasOneUse())
2383 I.setOperand(1, SI->getOperand(2));
2384 else
2385 UpdateValueUsesWith(SI, SI->getOperand(2));
2386 return &I;
2387 }
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002388
Chris Lattnerd79dc792006-09-09 20:26:32 +00002389 // Likewise for: div X, (Cond ? Y : 0) -> div X, Y
2390 if (Constant *ST = dyn_cast<Constant>(SI->getOperand(2)))
2391 if (ST->isNullValue()) {
2392 Instruction *CondI = dyn_cast<Instruction>(SI->getOperand(0));
2393 if (CondI && CondI->getParent() == I.getParent())
Zhou Sheng75b871f2007-01-11 12:24:14 +00002394 UpdateValueUsesWith(CondI, ConstantInt::getTrue());
Chris Lattnerd79dc792006-09-09 20:26:32 +00002395 else if (I.getParent() != SI->getParent() || SI->hasOneUse())
2396 I.setOperand(1, SI->getOperand(1));
2397 else
2398 UpdateValueUsesWith(SI, SI->getOperand(1));
2399 return &I;
2400 }
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002401 }
Chris Lattnerd79dc792006-09-09 20:26:32 +00002402
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002403 return 0;
2404}
Misha Brukmanb1c93172005-04-21 23:48:37 +00002405
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002406/// This function implements the transforms common to both integer division
2407/// instructions (udiv and sdiv). It is called by the visitors to those integer
2408/// division instructions.
2409/// @brief Common integer divide transforms
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002410Instruction *InstCombiner::commonIDivTransforms(BinaryOperator &I) {
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002411 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2412
2413 if (Instruction *Common = commonDivTransforms(I))
2414 return Common;
2415
2416 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
2417 // div X, 1 == X
2418 if (RHS->equalsInt(1))
2419 return ReplaceInstUsesWith(I, Op0);
2420
2421 // (X / C1) / C2 -> X / (C1*C2)
2422 if (Instruction *LHS = dyn_cast<Instruction>(Op0))
2423 if (Instruction::BinaryOps(LHS->getOpcode()) == I.getOpcode())
2424 if (ConstantInt *LHSRHS = dyn_cast<ConstantInt>(LHS->getOperand(1))) {
2425 return BinaryOperator::create(I.getOpcode(), LHS->getOperand(0),
Reid Spencer80263aa2007-03-25 05:33:51 +00002426 Multiply(RHS, LHSRHS));
Chris Lattner42362612005-04-08 04:03:26 +00002427 }
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002428
Reid Spencer6d392062007-03-23 20:05:17 +00002429 if (!RHS->isZero()) { // avoid X udiv 0
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002430 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
2431 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
2432 return R;
2433 if (isa<PHINode>(Op0))
2434 if (Instruction *NV = FoldOpIntoPhi(I))
2435 return NV;
2436 }
Chris Lattnerd79dc792006-09-09 20:26:32 +00002437 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00002438
Chris Lattner3082c5a2003-02-18 19:28:33 +00002439 // 0 / X == 0, we don't need to preserve faults!
Chris Lattnerbf5b7cf2004-12-12 21:48:58 +00002440 if (ConstantInt *LHS = dyn_cast<ConstantInt>(Op0))
Chris Lattner3082c5a2003-02-18 19:28:33 +00002441 if (LHS->equalsInt(0))
2442 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
2443
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002444 return 0;
2445}
2446
2447Instruction *InstCombiner::visitUDiv(BinaryOperator &I) {
2448 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2449
2450 // Handle the integer div common cases
2451 if (Instruction *Common = commonIDivTransforms(I))
2452 return Common;
2453
2454 // X udiv C^2 -> X >> C
2455 // Check to see if this is an unsigned division with an exact power of 2,
2456 // if so, convert to a right shift.
2457 if (ConstantInt *C = dyn_cast<ConstantInt>(Op1)) {
Zhou Sheng222d5eb2007-03-25 05:01:29 +00002458 if (!C->isZero() && C->getValue().isPowerOf2()) // Don't break X / 0
Reid Spencer6d392062007-03-23 20:05:17 +00002459 return BinaryOperator::createLShr(Op0,
Zhou Sheng222d5eb2007-03-25 05:01:29 +00002460 ConstantInt::get(Op0->getType(), C->getValue().logBase2()));
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002461 }
2462
2463 // X udiv (C1 << N), where C1 is "1<<C2" --> X >> (N+C2)
Reid Spencer2341c222007-02-02 02:16:23 +00002464 if (BinaryOperator *RHSI = dyn_cast<BinaryOperator>(I.getOperand(1))) {
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002465 if (RHSI->getOpcode() == Instruction::Shl &&
2466 isa<ConstantInt>(RHSI->getOperand(0))) {
Reid Spencer6d392062007-03-23 20:05:17 +00002467 APInt C1(cast<ConstantInt>(RHSI->getOperand(0))->getValue());
2468 if (C1.isPowerOf2()) {
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002469 Value *N = RHSI->getOperand(1);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002470 const Type *NTy = N->getType();
Reid Spencer959a21d2007-03-23 21:24:59 +00002471 if (uint32_t C2 = C1.logBase2()) {
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002472 Constant *C2V = ConstantInt::get(NTy, C2);
2473 N = InsertNewInstBefore(BinaryOperator::createAdd(N, C2V, "tmp"), I);
Chris Lattner2e90b732006-02-05 07:54:04 +00002474 }
Reid Spencer0d5f9232007-02-02 14:08:20 +00002475 return BinaryOperator::createLShr(Op0, N);
Chris Lattner2e90b732006-02-05 07:54:04 +00002476 }
2477 }
Chris Lattnerdd0c1742005-11-05 07:40:31 +00002478 }
2479
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002480 // udiv X, (Select Cond, C1, C2) --> Select Cond, (shr X, C1), (shr X, C2)
2481 // where C1&C2 are powers of two.
Reid Spencer3939b1a2007-03-05 23:36:13 +00002482 if (SelectInst *SI = dyn_cast<SelectInst>(Op1))
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002483 if (ConstantInt *STO = dyn_cast<ConstantInt>(SI->getOperand(1)))
Reid Spencer3939b1a2007-03-05 23:36:13 +00002484 if (ConstantInt *SFO = dyn_cast<ConstantInt>(SI->getOperand(2))) {
Reid Spencer6d392062007-03-23 20:05:17 +00002485 APInt TVA(STO->getValue()), FVA(SFO->getValue());
2486 if (TVA.isPowerOf2() && FVA.isPowerOf2()) {
Reid Spencer3939b1a2007-03-05 23:36:13 +00002487 // Compute the shift amounts
Reid Spencer6d392062007-03-23 20:05:17 +00002488 uint32_t TSA = TVA.logBase2(), FSA = FVA.logBase2();
Reid Spencer3939b1a2007-03-05 23:36:13 +00002489 // Construct the "on true" case of the select
2490 Constant *TC = ConstantInt::get(Op0->getType(), TSA);
2491 Instruction *TSI = BinaryOperator::createLShr(
2492 Op0, TC, SI->getName()+".t");
2493 TSI = InsertNewInstBefore(TSI, I);
2494
2495 // Construct the "on false" case of the select
2496 Constant *FC = ConstantInt::get(Op0->getType(), FSA);
2497 Instruction *FSI = BinaryOperator::createLShr(
2498 Op0, FC, SI->getName()+".f");
2499 FSI = InsertNewInstBefore(FSI, I);
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002500
Reid Spencer3939b1a2007-03-05 23:36:13 +00002501 // construct the select instruction and return it.
2502 return new SelectInst(SI->getOperand(0), TSI, FSI, SI->getName());
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002503 }
Reid Spencer3939b1a2007-03-05 23:36:13 +00002504 }
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00002505 return 0;
2506}
2507
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002508Instruction *InstCombiner::visitSDiv(BinaryOperator &I) {
2509 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2510
2511 // Handle the integer div common cases
2512 if (Instruction *Common = commonIDivTransforms(I))
2513 return Common;
2514
2515 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
2516 // sdiv X, -1 == -X
2517 if (RHS->isAllOnesValue())
2518 return BinaryOperator::createNeg(Op0);
2519
2520 // -X/C -> X/-C
2521 if (Value *LHSNeg = dyn_castNegVal(Op0))
2522 return BinaryOperator::createSDiv(LHSNeg, ConstantExpr::getNeg(RHS));
2523 }
2524
2525 // If the sign bits of both operands are zero (i.e. we can prove they are
2526 // unsigned inputs), turn this into a udiv.
Chris Lattner03c49532007-01-15 02:27:26 +00002527 if (I.getType()->isInteger()) {
Reid Spencer6d392062007-03-23 20:05:17 +00002528 APInt Mask(APInt::getSignBit(I.getType()->getPrimitiveSizeInBits()));
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002529 if (MaskedValueIsZero(Op1, Mask) && MaskedValueIsZero(Op0, Mask)) {
2530 return BinaryOperator::createUDiv(Op0, Op1, I.getName());
2531 }
2532 }
2533
2534 return 0;
2535}
2536
2537Instruction *InstCombiner::visitFDiv(BinaryOperator &I) {
2538 return commonDivTransforms(I);
2539}
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00002540
Chris Lattner85dda9a2006-03-02 06:50:58 +00002541/// GetFactor - If we can prove that the specified value is at least a multiple
2542/// of some factor, return that factor.
2543static Constant *GetFactor(Value *V) {
2544 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
2545 return CI;
2546
2547 // Unless we can be tricky, we know this is a multiple of 1.
2548 Constant *Result = ConstantInt::get(V->getType(), 1);
2549
2550 Instruction *I = dyn_cast<Instruction>(V);
2551 if (!I) return Result;
2552
2553 if (I->getOpcode() == Instruction::Mul) {
2554 // Handle multiplies by a constant, etc.
2555 return ConstantExpr::getMul(GetFactor(I->getOperand(0)),
2556 GetFactor(I->getOperand(1)));
2557 } else if (I->getOpcode() == Instruction::Shl) {
2558 // (X<<C) -> X * (1 << C)
2559 if (Constant *ShRHS = dyn_cast<Constant>(I->getOperand(1))) {
2560 ShRHS = ConstantExpr::getShl(Result, ShRHS);
2561 return ConstantExpr::getMul(GetFactor(I->getOperand(0)), ShRHS);
2562 }
2563 } else if (I->getOpcode() == Instruction::And) {
2564 if (ConstantInt *RHS = dyn_cast<ConstantInt>(I->getOperand(1))) {
2565 // X & 0xFFF0 is known to be a multiple of 16.
Reid Spencera962d182007-03-24 00:42:08 +00002566 uint32_t Zeros = RHS->getValue().countTrailingZeros();
Chris Lattner85dda9a2006-03-02 06:50:58 +00002567 if (Zeros != V->getType()->getPrimitiveSizeInBits())
2568 return ConstantExpr::getShl(Result,
Reid Spencer2341c222007-02-02 02:16:23 +00002569 ConstantInt::get(Result->getType(), Zeros));
Chris Lattner85dda9a2006-03-02 06:50:58 +00002570 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002571 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
Chris Lattner85dda9a2006-03-02 06:50:58 +00002572 // Only handle int->int casts.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002573 if (!CI->isIntegerCast())
2574 return Result;
2575 Value *Op = CI->getOperand(0);
2576 return ConstantExpr::getCast(CI->getOpcode(), GetFactor(Op), V->getType());
Chris Lattner85dda9a2006-03-02 06:50:58 +00002577 }
2578 return Result;
2579}
2580
Reid Spencer7eb55b32006-11-02 01:53:59 +00002581/// This function implements the transforms on rem instructions that work
2582/// regardless of the kind of rem instruction it is (urem, srem, or frem). It
2583/// is used by the visitors to those instructions.
2584/// @brief Transforms common to all three rem instructions
2585Instruction *InstCombiner::commonRemTransforms(BinaryOperator &I) {
Chris Lattnerbf5b7cf2004-12-12 21:48:58 +00002586 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Reid Spencer7eb55b32006-11-02 01:53:59 +00002587
Chris Lattner0de4a8d2006-02-28 05:30:45 +00002588 // 0 % X == 0, we don't need to preserve faults!
2589 if (Constant *LHS = dyn_cast<Constant>(Op0))
2590 if (LHS->isNullValue())
2591 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
2592
2593 if (isa<UndefValue>(Op0)) // undef % X -> 0
2594 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
2595 if (isa<UndefValue>(Op1))
2596 return ReplaceInstUsesWith(I, Op1); // X % undef -> undef
Reid Spencer7eb55b32006-11-02 01:53:59 +00002597
2598 // Handle cases involving: rem X, (select Cond, Y, Z)
2599 if (SelectInst *SI = dyn_cast<SelectInst>(Op1)) {
2600 // rem X, (Cond ? 0 : Y) -> rem X, Y. If the rem and the select are in
2601 // the same basic block, then we replace the select with Y, and the
2602 // condition of the select with false (if the cond value is in the same
2603 // BB). If the select has uses other than the div, this allows them to be
2604 // simplified also.
2605 if (Constant *ST = dyn_cast<Constant>(SI->getOperand(1)))
2606 if (ST->isNullValue()) {
2607 Instruction *CondI = dyn_cast<Instruction>(SI->getOperand(0));
2608 if (CondI && CondI->getParent() == I.getParent())
Zhou Sheng75b871f2007-01-11 12:24:14 +00002609 UpdateValueUsesWith(CondI, ConstantInt::getFalse());
Reid Spencer7eb55b32006-11-02 01:53:59 +00002610 else if (I.getParent() != SI->getParent() || SI->hasOneUse())
2611 I.setOperand(1, SI->getOperand(2));
2612 else
2613 UpdateValueUsesWith(SI, SI->getOperand(2));
Chris Lattner7fd5f072004-07-06 07:01:22 +00002614 return &I;
2615 }
Reid Spencer7eb55b32006-11-02 01:53:59 +00002616 // Likewise for: rem X, (Cond ? Y : 0) -> rem X, Y
2617 if (Constant *ST = dyn_cast<Constant>(SI->getOperand(2)))
2618 if (ST->isNullValue()) {
2619 Instruction *CondI = dyn_cast<Instruction>(SI->getOperand(0));
2620 if (CondI && CondI->getParent() == I.getParent())
Zhou Sheng75b871f2007-01-11 12:24:14 +00002621 UpdateValueUsesWith(CondI, ConstantInt::getTrue());
Reid Spencer7eb55b32006-11-02 01:53:59 +00002622 else if (I.getParent() != SI->getParent() || SI->hasOneUse())
2623 I.setOperand(1, SI->getOperand(1));
2624 else
2625 UpdateValueUsesWith(SI, SI->getOperand(1));
2626 return &I;
2627 }
Chris Lattnere9ff0ea2005-11-05 07:28:37 +00002628 }
Chris Lattner7fd5f072004-07-06 07:01:22 +00002629
Reid Spencer7eb55b32006-11-02 01:53:59 +00002630 return 0;
2631}
2632
2633/// This function implements the transforms common to both integer remainder
2634/// instructions (urem and srem). It is called by the visitors to those integer
2635/// remainder instructions.
2636/// @brief Common integer remainder transforms
2637Instruction *InstCombiner::commonIRemTransforms(BinaryOperator &I) {
2638 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2639
2640 if (Instruction *common = commonRemTransforms(I))
2641 return common;
2642
Chris Lattnerbf5b7cf2004-12-12 21:48:58 +00002643 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner0de4a8d2006-02-28 05:30:45 +00002644 // X % 0 == undef, we don't need to preserve faults!
2645 if (RHS->equalsInt(0))
2646 return ReplaceInstUsesWith(I, UndefValue::get(I.getType()));
2647
Chris Lattner3082c5a2003-02-18 19:28:33 +00002648 if (RHS->equalsInt(1)) // X % 1 == 0
2649 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
2650
Chris Lattnerb70f1412006-02-28 05:49:21 +00002651 if (Instruction *Op0I = dyn_cast<Instruction>(Op0)) {
2652 if (SelectInst *SI = dyn_cast<SelectInst>(Op0I)) {
2653 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
2654 return R;
2655 } else if (isa<PHINode>(Op0I)) {
2656 if (Instruction *NV = FoldOpIntoPhi(I))
2657 return NV;
Chris Lattnerb70f1412006-02-28 05:49:21 +00002658 }
Reid Spencer7eb55b32006-11-02 01:53:59 +00002659 // (X * C1) % C2 --> 0 iff C1 % C2 == 0
2660 if (ConstantExpr::getSRem(GetFactor(Op0I), RHS)->isNullValue())
Chris Lattner85dda9a2006-03-02 06:50:58 +00002661 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattnerb70f1412006-02-28 05:49:21 +00002662 }
Chris Lattner3082c5a2003-02-18 19:28:33 +00002663 }
2664
Reid Spencer7eb55b32006-11-02 01:53:59 +00002665 return 0;
2666}
2667
2668Instruction *InstCombiner::visitURem(BinaryOperator &I) {
2669 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2670
2671 if (Instruction *common = commonIRemTransforms(I))
2672 return common;
2673
2674 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
2675 // X urem C^2 -> X and C
2676 // Check to see if this is an unsigned remainder with an exact power of 2,
2677 // if so, convert to a bitwise and.
2678 if (ConstantInt *C = dyn_cast<ConstantInt>(RHS))
Reid Spencer6d392062007-03-23 20:05:17 +00002679 if (C->getValue().isPowerOf2())
Reid Spencer7eb55b32006-11-02 01:53:59 +00002680 return BinaryOperator::createAnd(Op0, SubOne(C));
2681 }
2682
Chris Lattner2e90b732006-02-05 07:54:04 +00002683 if (Instruction *RHSI = dyn_cast<Instruction>(I.getOperand(1))) {
Reid Spencer7eb55b32006-11-02 01:53:59 +00002684 // Turn A % (C << N), where C is 2^k, into A & ((C << N)-1)
2685 if (RHSI->getOpcode() == Instruction::Shl &&
2686 isa<ConstantInt>(RHSI->getOperand(0))) {
Zhou Sheng222d5eb2007-03-25 05:01:29 +00002687 if (cast<ConstantInt>(RHSI->getOperand(0))->getValue().isPowerOf2()) {
Chris Lattner2e90b732006-02-05 07:54:04 +00002688 Constant *N1 = ConstantInt::getAllOnesValue(I.getType());
2689 Value *Add = InsertNewInstBefore(BinaryOperator::createAdd(RHSI, N1,
2690 "tmp"), I);
2691 return BinaryOperator::createAnd(Op0, Add);
2692 }
2693 }
Reid Spencer7eb55b32006-11-02 01:53:59 +00002694 }
Chris Lattnerd79dc792006-09-09 20:26:32 +00002695
Reid Spencer7eb55b32006-11-02 01:53:59 +00002696 // urem X, (select Cond, 2^C1, 2^C2) --> select Cond, (and X, C1), (and X, C2)
2697 // where C1&C2 are powers of two.
2698 if (SelectInst *SI = dyn_cast<SelectInst>(Op1)) {
2699 if (ConstantInt *STO = dyn_cast<ConstantInt>(SI->getOperand(1)))
2700 if (ConstantInt *SFO = dyn_cast<ConstantInt>(SI->getOperand(2))) {
2701 // STO == 0 and SFO == 0 handled above.
Reid Spencer6d392062007-03-23 20:05:17 +00002702 if ((STO->getValue().isPowerOf2()) &&
2703 (SFO->getValue().isPowerOf2())) {
Reid Spencer7eb55b32006-11-02 01:53:59 +00002704 Value *TrueAnd = InsertNewInstBefore(
2705 BinaryOperator::createAnd(Op0, SubOne(STO), SI->getName()+".t"), I);
2706 Value *FalseAnd = InsertNewInstBefore(
2707 BinaryOperator::createAnd(Op0, SubOne(SFO), SI->getName()+".f"), I);
2708 return new SelectInst(SI->getOperand(0), TrueAnd, FalseAnd);
2709 }
2710 }
Chris Lattner2e90b732006-02-05 07:54:04 +00002711 }
2712
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00002713 return 0;
2714}
2715
Reid Spencer7eb55b32006-11-02 01:53:59 +00002716Instruction *InstCombiner::visitSRem(BinaryOperator &I) {
2717 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2718
2719 if (Instruction *common = commonIRemTransforms(I))
2720 return common;
2721
2722 if (Value *RHSNeg = dyn_castNegVal(Op1))
2723 if (!isa<ConstantInt>(RHSNeg) ||
Zhou Sheng222d5eb2007-03-25 05:01:29 +00002724 cast<ConstantInt>(RHSNeg)->getValue().isStrictlyPositive()) {
Reid Spencer7eb55b32006-11-02 01:53:59 +00002725 // X % -Y -> X % Y
2726 AddUsesToWorkList(I);
2727 I.setOperand(1, RHSNeg);
2728 return &I;
2729 }
2730
2731 // If the top bits of both operands are zero (i.e. we can prove they are
2732 // unsigned inputs), turn this into a urem.
Reid Spencer6d392062007-03-23 20:05:17 +00002733 APInt Mask(APInt::getSignBit(I.getType()->getPrimitiveSizeInBits()));
Reid Spencer7eb55b32006-11-02 01:53:59 +00002734 if (MaskedValueIsZero(Op1, Mask) && MaskedValueIsZero(Op0, Mask)) {
2735 // X srem Y -> X urem Y, iff X and Y don't have sign bit set
2736 return BinaryOperator::createURem(Op0, Op1, I.getName());
2737 }
2738
2739 return 0;
2740}
2741
2742Instruction *InstCombiner::visitFRem(BinaryOperator &I) {
Reid Spencer7eb55b32006-11-02 01:53:59 +00002743 return commonRemTransforms(I);
2744}
2745
Chris Lattner6d14f2a2002-08-09 23:47:40 +00002746// isMaxValueMinusOne - return true if this is Max-1
Reid Spencer266e42b2006-12-23 06:05:41 +00002747static bool isMaxValueMinusOne(const ConstantInt *C, bool isSigned) {
Reid Spenceref599b02007-03-19 21:10:28 +00002748 uint32_t TypeBits = C->getType()->getPrimitiveSizeInBits();
Reid Spencer266e42b2006-12-23 06:05:41 +00002749 if (isSigned) {
2750 // Calculate 0111111111..11111
Reid Spenceref599b02007-03-19 21:10:28 +00002751 APInt Val(APInt::getSignedMaxValue(TypeBits));
2752 return C->getValue() == Val-1;
Reid Spencer266e42b2006-12-23 06:05:41 +00002753 }
Reid Spenceref599b02007-03-19 21:10:28 +00002754 return C->getValue() == APInt::getAllOnesValue(TypeBits) - 1;
Chris Lattner6d14f2a2002-08-09 23:47:40 +00002755}
2756
2757// isMinValuePlusOne - return true if this is Min+1
Reid Spencer266e42b2006-12-23 06:05:41 +00002758static bool isMinValuePlusOne(const ConstantInt *C, bool isSigned) {
2759 if (isSigned) {
2760 // Calculate 1111111111000000000000
Reid Spencer3b93db72007-03-19 21:08:07 +00002761 uint32_t TypeBits = C->getType()->getPrimitiveSizeInBits();
2762 APInt Val(APInt::getSignedMinValue(TypeBits));
2763 return C->getValue() == Val+1;
Reid Spencer266e42b2006-12-23 06:05:41 +00002764 }
Reid Spencer3b93db72007-03-19 21:08:07 +00002765 return C->getValue() == 1; // unsigned
Chris Lattner6d14f2a2002-08-09 23:47:40 +00002766}
2767
Chris Lattner35167c32004-06-09 07:59:58 +00002768// isOneBitSet - Return true if there is exactly one bit set in the specified
2769// constant.
2770static bool isOneBitSet(const ConstantInt *CI) {
Reid Spencer66827212007-03-20 00:16:52 +00002771 return CI->getValue().isPowerOf2();
Chris Lattner35167c32004-06-09 07:59:58 +00002772}
2773
Chris Lattner8fc5af42004-09-23 21:46:38 +00002774// isHighOnes - Return true if the constant is of the form 1+0+.
2775// This is the same as lowones(~X).
2776static bool isHighOnes(const ConstantInt *CI) {
Zhou Shengb3949342007-03-20 12:49:06 +00002777 return (~CI->getValue() + 1).isPowerOf2();
Chris Lattner8fc5af42004-09-23 21:46:38 +00002778}
2779
Reid Spencer266e42b2006-12-23 06:05:41 +00002780/// getICmpCode - Encode a icmp predicate into a three bit mask. These bits
Chris Lattner3ac7c262003-08-13 20:16:26 +00002781/// are carefully arranged to allow folding of expressions such as:
2782///
2783/// (A < B) | (A > B) --> (A != B)
2784///
Reid Spencer266e42b2006-12-23 06:05:41 +00002785/// Note that this is only valid if the first and second predicates have the
2786/// same sign. Is illegal to do: (A u< B) | (A s> B)
Chris Lattner3ac7c262003-08-13 20:16:26 +00002787///
Reid Spencer266e42b2006-12-23 06:05:41 +00002788/// Three bits are used to represent the condition, as follows:
2789/// 0 A > B
2790/// 1 A == B
2791/// 2 A < B
2792///
2793/// <=> Value Definition
2794/// 000 0 Always false
2795/// 001 1 A > B
2796/// 010 2 A == B
2797/// 011 3 A >= B
2798/// 100 4 A < B
2799/// 101 5 A != B
2800/// 110 6 A <= B
2801/// 111 7 Always true
2802///
2803static unsigned getICmpCode(const ICmpInst *ICI) {
2804 switch (ICI->getPredicate()) {
Chris Lattner3ac7c262003-08-13 20:16:26 +00002805 // False -> 0
Reid Spencer266e42b2006-12-23 06:05:41 +00002806 case ICmpInst::ICMP_UGT: return 1; // 001
2807 case ICmpInst::ICMP_SGT: return 1; // 001
2808 case ICmpInst::ICMP_EQ: return 2; // 010
2809 case ICmpInst::ICMP_UGE: return 3; // 011
2810 case ICmpInst::ICMP_SGE: return 3; // 011
2811 case ICmpInst::ICMP_ULT: return 4; // 100
2812 case ICmpInst::ICMP_SLT: return 4; // 100
2813 case ICmpInst::ICMP_NE: return 5; // 101
2814 case ICmpInst::ICMP_ULE: return 6; // 110
2815 case ICmpInst::ICMP_SLE: return 6; // 110
Chris Lattner3ac7c262003-08-13 20:16:26 +00002816 // True -> 7
2817 default:
Reid Spencer266e42b2006-12-23 06:05:41 +00002818 assert(0 && "Invalid ICmp predicate!");
Chris Lattner3ac7c262003-08-13 20:16:26 +00002819 return 0;
2820 }
2821}
2822
Reid Spencer266e42b2006-12-23 06:05:41 +00002823/// getICmpValue - This is the complement of getICmpCode, which turns an
2824/// opcode and two operands into either a constant true or false, or a brand
2825/// new /// ICmp instruction. The sign is passed in to determine which kind
2826/// of predicate to use in new icmp instructions.
2827static Value *getICmpValue(bool sign, unsigned code, Value *LHS, Value *RHS) {
2828 switch (code) {
2829 default: assert(0 && "Illegal ICmp code!");
Zhou Sheng75b871f2007-01-11 12:24:14 +00002830 case 0: return ConstantInt::getFalse();
Reid Spencer266e42b2006-12-23 06:05:41 +00002831 case 1:
2832 if (sign)
2833 return new ICmpInst(ICmpInst::ICMP_SGT, LHS, RHS);
2834 else
2835 return new ICmpInst(ICmpInst::ICMP_UGT, LHS, RHS);
2836 case 2: return new ICmpInst(ICmpInst::ICMP_EQ, LHS, RHS);
2837 case 3:
2838 if (sign)
2839 return new ICmpInst(ICmpInst::ICMP_SGE, LHS, RHS);
2840 else
2841 return new ICmpInst(ICmpInst::ICMP_UGE, LHS, RHS);
2842 case 4:
2843 if (sign)
2844 return new ICmpInst(ICmpInst::ICMP_SLT, LHS, RHS);
2845 else
2846 return new ICmpInst(ICmpInst::ICMP_ULT, LHS, RHS);
2847 case 5: return new ICmpInst(ICmpInst::ICMP_NE, LHS, RHS);
2848 case 6:
2849 if (sign)
2850 return new ICmpInst(ICmpInst::ICMP_SLE, LHS, RHS);
2851 else
2852 return new ICmpInst(ICmpInst::ICMP_ULE, LHS, RHS);
Zhou Sheng75b871f2007-01-11 12:24:14 +00002853 case 7: return ConstantInt::getTrue();
Chris Lattner3ac7c262003-08-13 20:16:26 +00002854 }
2855}
2856
Reid Spencer266e42b2006-12-23 06:05:41 +00002857static bool PredicatesFoldable(ICmpInst::Predicate p1, ICmpInst::Predicate p2) {
2858 return (ICmpInst::isSignedPredicate(p1) == ICmpInst::isSignedPredicate(p2)) ||
2859 (ICmpInst::isSignedPredicate(p1) &&
2860 (p2 == ICmpInst::ICMP_EQ || p2 == ICmpInst::ICMP_NE)) ||
2861 (ICmpInst::isSignedPredicate(p2) &&
2862 (p1 == ICmpInst::ICMP_EQ || p1 == ICmpInst::ICMP_NE));
2863}
2864
2865namespace {
2866// FoldICmpLogical - Implements (icmp1 A, B) & (icmp2 A, B) --> (icmp3 A, B)
2867struct FoldICmpLogical {
Chris Lattner3ac7c262003-08-13 20:16:26 +00002868 InstCombiner &IC;
2869 Value *LHS, *RHS;
Reid Spencer266e42b2006-12-23 06:05:41 +00002870 ICmpInst::Predicate pred;
2871 FoldICmpLogical(InstCombiner &ic, ICmpInst *ICI)
2872 : IC(ic), LHS(ICI->getOperand(0)), RHS(ICI->getOperand(1)),
2873 pred(ICI->getPredicate()) {}
Chris Lattner3ac7c262003-08-13 20:16:26 +00002874 bool shouldApply(Value *V) const {
Reid Spencer266e42b2006-12-23 06:05:41 +00002875 if (ICmpInst *ICI = dyn_cast<ICmpInst>(V))
2876 if (PredicatesFoldable(pred, ICI->getPredicate()))
2877 return (ICI->getOperand(0) == LHS && ICI->getOperand(1) == RHS ||
2878 ICI->getOperand(0) == RHS && ICI->getOperand(1) == LHS);
Chris Lattner3ac7c262003-08-13 20:16:26 +00002879 return false;
2880 }
Reid Spencer266e42b2006-12-23 06:05:41 +00002881 Instruction *apply(Instruction &Log) const {
2882 ICmpInst *ICI = cast<ICmpInst>(Log.getOperand(0));
2883 if (ICI->getOperand(0) != LHS) {
2884 assert(ICI->getOperand(1) == LHS);
2885 ICI->swapOperands(); // Swap the LHS and RHS of the ICmp
Chris Lattner3ac7c262003-08-13 20:16:26 +00002886 }
2887
Chris Lattnerd1bce952007-03-13 14:27:42 +00002888 ICmpInst *RHSICI = cast<ICmpInst>(Log.getOperand(1));
Reid Spencer266e42b2006-12-23 06:05:41 +00002889 unsigned LHSCode = getICmpCode(ICI);
Chris Lattnerd1bce952007-03-13 14:27:42 +00002890 unsigned RHSCode = getICmpCode(RHSICI);
Chris Lattner3ac7c262003-08-13 20:16:26 +00002891 unsigned Code;
2892 switch (Log.getOpcode()) {
2893 case Instruction::And: Code = LHSCode & RHSCode; break;
2894 case Instruction::Or: Code = LHSCode | RHSCode; break;
2895 case Instruction::Xor: Code = LHSCode ^ RHSCode; break;
Chris Lattner2caaaba2003-09-22 20:33:34 +00002896 default: assert(0 && "Illegal logical opcode!"); return 0;
Chris Lattner3ac7c262003-08-13 20:16:26 +00002897 }
2898
Chris Lattnerd1bce952007-03-13 14:27:42 +00002899 bool isSigned = ICmpInst::isSignedPredicate(RHSICI->getPredicate()) ||
2900 ICmpInst::isSignedPredicate(ICI->getPredicate());
2901
2902 Value *RV = getICmpValue(isSigned, Code, LHS, RHS);
Chris Lattner3ac7c262003-08-13 20:16:26 +00002903 if (Instruction *I = dyn_cast<Instruction>(RV))
2904 return I;
2905 // Otherwise, it's a constant boolean value...
2906 return IC.ReplaceInstUsesWith(Log, RV);
2907 }
2908};
Chris Lattnere3a63d12006-11-15 04:53:24 +00002909} // end anonymous namespace
Chris Lattner3ac7c262003-08-13 20:16:26 +00002910
Chris Lattnerba1cb382003-09-19 17:17:26 +00002911// OptAndOp - This handles expressions of the form ((val OP C1) & C2). Where
2912// the Op parameter is 'OP', OpRHS is 'C1', and AndRHS is 'C2'. Op is
Reid Spencer2341c222007-02-02 02:16:23 +00002913// guaranteed to be a binary operator.
Chris Lattnerba1cb382003-09-19 17:17:26 +00002914Instruction *InstCombiner::OptAndOp(Instruction *Op,
Zhou Sheng75b871f2007-01-11 12:24:14 +00002915 ConstantInt *OpRHS,
2916 ConstantInt *AndRHS,
Chris Lattnerba1cb382003-09-19 17:17:26 +00002917 BinaryOperator &TheAnd) {
2918 Value *X = Op->getOperand(0);
Chris Lattnerfcf21a72004-01-12 19:47:05 +00002919 Constant *Together = 0;
Reid Spencer2341c222007-02-02 02:16:23 +00002920 if (!Op->isShift())
Reid Spencer80263aa2007-03-25 05:33:51 +00002921 Together = And(AndRHS, OpRHS);
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00002922
Chris Lattnerba1cb382003-09-19 17:17:26 +00002923 switch (Op->getOpcode()) {
2924 case Instruction::Xor:
Chris Lattner86102b82005-01-01 16:22:27 +00002925 if (Op->hasOneUse()) {
Chris Lattnerba1cb382003-09-19 17:17:26 +00002926 // (X ^ C1) & C2 --> (X & C2) ^ (C1&C2)
Chris Lattner6e0123b2007-02-11 01:23:03 +00002927 Instruction *And = BinaryOperator::createAnd(X, AndRHS);
Chris Lattnerba1cb382003-09-19 17:17:26 +00002928 InsertNewInstBefore(And, TheAnd);
Chris Lattner6e0123b2007-02-11 01:23:03 +00002929 And->takeName(Op);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002930 return BinaryOperator::createXor(And, Together);
Chris Lattnerba1cb382003-09-19 17:17:26 +00002931 }
2932 break;
2933 case Instruction::Or:
Chris Lattner86102b82005-01-01 16:22:27 +00002934 if (Together == AndRHS) // (X | C) & C --> C
2935 return ReplaceInstUsesWith(TheAnd, AndRHS);
Misha Brukmanb1c93172005-04-21 23:48:37 +00002936
Chris Lattner86102b82005-01-01 16:22:27 +00002937 if (Op->hasOneUse() && Together != OpRHS) {
2938 // (X | C1) & C2 --> (X | (C1&C2)) & C2
Chris Lattner6e0123b2007-02-11 01:23:03 +00002939 Instruction *Or = BinaryOperator::createOr(X, Together);
Chris Lattner86102b82005-01-01 16:22:27 +00002940 InsertNewInstBefore(Or, TheAnd);
Chris Lattner6e0123b2007-02-11 01:23:03 +00002941 Or->takeName(Op);
Chris Lattner86102b82005-01-01 16:22:27 +00002942 return BinaryOperator::createAnd(Or, AndRHS);
Chris Lattnerba1cb382003-09-19 17:17:26 +00002943 }
2944 break;
2945 case Instruction::Add:
Chris Lattnerf95d9b92003-10-15 16:48:29 +00002946 if (Op->hasOneUse()) {
Chris Lattnerba1cb382003-09-19 17:17:26 +00002947 // Adding a one to a single bit bit-field should be turned into an XOR
2948 // of the bit. First thing to check is to see if this AND is with a
2949 // single bit constant.
Reid Spencer6274c722007-03-23 18:46:34 +00002950 APInt AndRHSV(cast<ConstantInt>(AndRHS)->getValue());
Chris Lattnerba1cb382003-09-19 17:17:26 +00002951
2952 // If there is only one bit set...
Chris Lattner35167c32004-06-09 07:59:58 +00002953 if (isOneBitSet(cast<ConstantInt>(AndRHS))) {
Chris Lattnerba1cb382003-09-19 17:17:26 +00002954 // Ok, at this point, we know that we are masking the result of the
2955 // ADD down to exactly one bit. If the constant we are adding has
2956 // no bits set below this bit, then we can eliminate the ADD.
Reid Spencer6274c722007-03-23 18:46:34 +00002957 APInt AddRHS(cast<ConstantInt>(OpRHS)->getValue());
Misha Brukmanb1c93172005-04-21 23:48:37 +00002958
Chris Lattnerba1cb382003-09-19 17:17:26 +00002959 // Check to see if any bits below the one bit set in AndRHSV are set.
2960 if ((AddRHS & (AndRHSV-1)) == 0) {
2961 // If not, the only thing that can effect the output of the AND is
2962 // the bit specified by AndRHSV. If that bit is set, the effect of
2963 // the XOR is to toggle the bit. If it is clear, then the ADD has
2964 // no effect.
2965 if ((AddRHS & AndRHSV) == 0) { // Bit is not set, noop
2966 TheAnd.setOperand(0, X);
2967 return &TheAnd;
2968 } else {
Chris Lattnerba1cb382003-09-19 17:17:26 +00002969 // Pull the XOR out of the AND.
Chris Lattner6e0123b2007-02-11 01:23:03 +00002970 Instruction *NewAnd = BinaryOperator::createAnd(X, AndRHS);
Chris Lattnerba1cb382003-09-19 17:17:26 +00002971 InsertNewInstBefore(NewAnd, TheAnd);
Chris Lattner6e0123b2007-02-11 01:23:03 +00002972 NewAnd->takeName(Op);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00002973 return BinaryOperator::createXor(NewAnd, AndRHS);
Chris Lattnerba1cb382003-09-19 17:17:26 +00002974 }
2975 }
2976 }
2977 }
2978 break;
Chris Lattner2da29172003-09-19 19:05:02 +00002979
2980 case Instruction::Shl: {
2981 // We know that the AND will not produce any of the bits shifted in, so if
2982 // the anded constant includes them, clear them now!
2983 //
Zhou Sheng75b871f2007-01-11 12:24:14 +00002984 Constant *AllOne = ConstantInt::getAllOnesValue(AndRHS->getType());
Chris Lattner7e794272004-09-24 15:21:34 +00002985 Constant *ShlMask = ConstantExpr::getShl(AllOne, OpRHS);
2986 Constant *CI = ConstantExpr::getAnd(AndRHS, ShlMask);
Misha Brukmanb1c93172005-04-21 23:48:37 +00002987
Chris Lattner7e794272004-09-24 15:21:34 +00002988 if (CI == ShlMask) { // Masking out bits that the shift already masks
2989 return ReplaceInstUsesWith(TheAnd, Op); // No need for the and.
2990 } else if (CI != AndRHS) { // Reducing bits set in and.
Chris Lattner2da29172003-09-19 19:05:02 +00002991 TheAnd.setOperand(1, CI);
2992 return &TheAnd;
2993 }
2994 break;
Misha Brukmanb1c93172005-04-21 23:48:37 +00002995 }
Reid Spencerfdff9382006-11-08 06:47:33 +00002996 case Instruction::LShr:
2997 {
Chris Lattner2da29172003-09-19 19:05:02 +00002998 // We know that the AND will not produce any of the bits shifted in, so if
2999 // the anded constant includes them, clear them now! This only applies to
3000 // unsigned shifts, because a signed shr may bring in set bits!
3001 //
Zhou Sheng75b871f2007-01-11 12:24:14 +00003002 Constant *AllOne = ConstantInt::getAllOnesValue(AndRHS->getType());
Reid Spencerfdff9382006-11-08 06:47:33 +00003003 Constant *ShrMask = ConstantExpr::getLShr(AllOne, OpRHS);
3004 Constant *CI = ConstantExpr::getAnd(AndRHS, ShrMask);
Chris Lattner7e794272004-09-24 15:21:34 +00003005
Reid Spencerfdff9382006-11-08 06:47:33 +00003006 if (CI == ShrMask) { // Masking out bits that the shift already masks.
3007 return ReplaceInstUsesWith(TheAnd, Op);
3008 } else if (CI != AndRHS) {
3009 TheAnd.setOperand(1, CI); // Reduce bits set in and cst.
3010 return &TheAnd;
3011 }
3012 break;
3013 }
3014 case Instruction::AShr:
3015 // Signed shr.
3016 // See if this is shifting in some sign extension, then masking it out
3017 // with an and.
3018 if (Op->hasOneUse()) {
Zhou Sheng75b871f2007-01-11 12:24:14 +00003019 Constant *AllOne = ConstantInt::getAllOnesValue(AndRHS->getType());
Reid Spencerfdff9382006-11-08 06:47:33 +00003020 Constant *ShrMask = ConstantExpr::getLShr(AllOne, OpRHS);
Reid Spencer2a499b02006-12-13 17:19:09 +00003021 Constant *C = ConstantExpr::getAnd(AndRHS, ShrMask);
3022 if (C == AndRHS) { // Masking out bits shifted in.
Reid Spencer13bc5d72006-12-12 09:18:51 +00003023 // (Val ashr C1) & C2 -> (Val lshr C1) & C2
Reid Spencerfdff9382006-11-08 06:47:33 +00003024 // Make the argument unsigned.
3025 Value *ShVal = Op->getOperand(0);
Reid Spencer2341c222007-02-02 02:16:23 +00003026 ShVal = InsertNewInstBefore(
Reid Spencer0d5f9232007-02-02 14:08:20 +00003027 BinaryOperator::createLShr(ShVal, OpRHS,
Reid Spencer2341c222007-02-02 02:16:23 +00003028 Op->getName()), TheAnd);
Reid Spencer2a499b02006-12-13 17:19:09 +00003029 return BinaryOperator::createAnd(ShVal, AndRHS, TheAnd.getName());
Chris Lattner7e794272004-09-24 15:21:34 +00003030 }
Chris Lattner2da29172003-09-19 19:05:02 +00003031 }
3032 break;
Chris Lattnerba1cb382003-09-19 17:17:26 +00003033 }
3034 return 0;
3035}
3036
Chris Lattner6d14f2a2002-08-09 23:47:40 +00003037
Chris Lattner6862fbd2004-09-29 17:40:11 +00003038/// InsertRangeTest - Emit a computation of: (V >= Lo && V < Hi) if Inside is
3039/// true, otherwise (V < Lo || V >= Hi). In pratice, we emit the more efficient
Reid Spencer266e42b2006-12-23 06:05:41 +00003040/// (V-Lo) <u Hi-Lo. This method expects that Lo <= Hi. isSigned indicates
3041/// whether to treat the V, Lo and HI as signed or not. IB is the location to
Chris Lattner6862fbd2004-09-29 17:40:11 +00003042/// insert new instructions.
3043Instruction *InstCombiner::InsertRangeTest(Value *V, Constant *Lo, Constant *Hi,
Reid Spencer266e42b2006-12-23 06:05:41 +00003044 bool isSigned, bool Inside,
3045 Instruction &IB) {
Zhou Sheng75b871f2007-01-11 12:24:14 +00003046 assert(cast<ConstantInt>(ConstantExpr::getICmp((isSigned ?
Reid Spencercddc9df2007-01-12 04:24:46 +00003047 ICmpInst::ICMP_SLE:ICmpInst::ICMP_ULE), Lo, Hi))->getZExtValue() &&
Chris Lattner6862fbd2004-09-29 17:40:11 +00003048 "Lo is not <= Hi in range emission code!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003049
Chris Lattner6862fbd2004-09-29 17:40:11 +00003050 if (Inside) {
3051 if (Lo == Hi) // Trivially false.
Reid Spencer266e42b2006-12-23 06:05:41 +00003052 return new ICmpInst(ICmpInst::ICMP_NE, V, V);
Misha Brukmanb1c93172005-04-21 23:48:37 +00003053
Reid Spencer266e42b2006-12-23 06:05:41 +00003054 // V >= Min && V < Hi --> V < Hi
Zhou Sheng75b871f2007-01-11 12:24:14 +00003055 if (cast<ConstantInt>(Lo)->isMinValue(isSigned)) {
Reid Spencerf4071162007-03-21 23:19:50 +00003056 ICmpInst::Predicate pred = (isSigned ?
Reid Spencer266e42b2006-12-23 06:05:41 +00003057 ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT);
3058 return new ICmpInst(pred, V, Hi);
3059 }
3060
3061 // Emit V-Lo <u Hi-Lo
3062 Constant *NegLo = ConstantExpr::getNeg(Lo);
3063 Instruction *Add = BinaryOperator::createAdd(V, NegLo, V->getName()+".off");
Chris Lattner6862fbd2004-09-29 17:40:11 +00003064 InsertNewInstBefore(Add, IB);
Reid Spencer266e42b2006-12-23 06:05:41 +00003065 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Hi);
3066 return new ICmpInst(ICmpInst::ICMP_ULT, Add, UpperBound);
Chris Lattner6862fbd2004-09-29 17:40:11 +00003067 }
3068
3069 if (Lo == Hi) // Trivially true.
Reid Spencer266e42b2006-12-23 06:05:41 +00003070 return new ICmpInst(ICmpInst::ICMP_EQ, V, V);
Chris Lattner6862fbd2004-09-29 17:40:11 +00003071
Reid Spencerf4071162007-03-21 23:19:50 +00003072 // V < Min || V >= Hi -> V > Hi-1
Chris Lattner6862fbd2004-09-29 17:40:11 +00003073 Hi = SubOne(cast<ConstantInt>(Hi));
Zhou Sheng75b871f2007-01-11 12:24:14 +00003074 if (cast<ConstantInt>(Lo)->isMinValue(isSigned)) {
Reid Spencer266e42b2006-12-23 06:05:41 +00003075 ICmpInst::Predicate pred = (isSigned ?
3076 ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT);
3077 return new ICmpInst(pred, V, Hi);
3078 }
Reid Spencere0fc4df2006-10-20 07:07:24 +00003079
Reid Spencerf4071162007-03-21 23:19:50 +00003080 // Emit V-Lo >u Hi-1-Lo
3081 // Note that Hi has already had one subtracted from it, above.
3082 ConstantInt *NegLo = cast<ConstantInt>(ConstantExpr::getNeg(Lo));
Reid Spencer266e42b2006-12-23 06:05:41 +00003083 Instruction *Add = BinaryOperator::createAdd(V, NegLo, V->getName()+".off");
Chris Lattner6862fbd2004-09-29 17:40:11 +00003084 InsertNewInstBefore(Add, IB);
Reid Spencer266e42b2006-12-23 06:05:41 +00003085 Constant *LowerBound = ConstantExpr::getAdd(NegLo, Hi);
3086 return new ICmpInst(ICmpInst::ICMP_UGT, Add, LowerBound);
Chris Lattner6862fbd2004-09-29 17:40:11 +00003087}
3088
Chris Lattnerb4b25302005-09-18 07:22:02 +00003089// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s with
3090// any number of 0s on either side. The 1s are allowed to wrap from LSB to
3091// MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs. 0x0F0F0000 is
3092// not, since all 1s are not contiguous.
Zhou Sheng75b871f2007-01-11 12:24:14 +00003093static bool isRunOfOnes(ConstantInt *Val, unsigned &MB, unsigned &ME) {
Reid Spencera962d182007-03-24 00:42:08 +00003094 APInt V = Val->getValue();
3095 uint32_t BitWidth = Val->getType()->getBitWidth();
3096 if (!APIntOps::isShiftedMask(BitWidth, V)) return false;
Chris Lattnerb4b25302005-09-18 07:22:02 +00003097
3098 // look for the first zero bit after the run of ones
Reid Spencera962d182007-03-24 00:42:08 +00003099 MB = BitWidth - ((V - 1) ^ V).countLeadingZeros();
Chris Lattnerb4b25302005-09-18 07:22:02 +00003100 // look for the first non-zero bit
Reid Spencera962d182007-03-24 00:42:08 +00003101 ME = V.getActiveBits();
Chris Lattnerb4b25302005-09-18 07:22:02 +00003102 return true;
3103}
3104
Chris Lattnerb4b25302005-09-18 07:22:02 +00003105/// FoldLogicalPlusAnd - This is part of an expression (LHS +/- RHS) & Mask,
3106/// where isSub determines whether the operator is a sub. If we can fold one of
3107/// the following xforms:
Chris Lattneraf517572005-09-18 04:24:45 +00003108///
3109/// ((A & N) +/- B) & Mask -> (A +/- B) & Mask iff N&Mask == Mask
3110/// ((A | N) +/- B) & Mask -> (A +/- B) & Mask iff N&Mask == 0
3111/// ((A ^ N) +/- B) & Mask -> (A +/- B) & Mask iff N&Mask == 0
3112///
3113/// return (A +/- B).
3114///
3115Value *InstCombiner::FoldLogicalPlusAnd(Value *LHS, Value *RHS,
Zhou Sheng75b871f2007-01-11 12:24:14 +00003116 ConstantInt *Mask, bool isSub,
Chris Lattneraf517572005-09-18 04:24:45 +00003117 Instruction &I) {
3118 Instruction *LHSI = dyn_cast<Instruction>(LHS);
3119 if (!LHSI || LHSI->getNumOperands() != 2 ||
3120 !isa<ConstantInt>(LHSI->getOperand(1))) return 0;
3121
3122 ConstantInt *N = cast<ConstantInt>(LHSI->getOperand(1));
3123
3124 switch (LHSI->getOpcode()) {
3125 default: return 0;
3126 case Instruction::And:
Reid Spencer80263aa2007-03-25 05:33:51 +00003127 if (And(N, Mask) == Mask) {
Chris Lattnerb4b25302005-09-18 07:22:02 +00003128 // If the AndRHS is a power of two minus one (0+1+), this is simple.
Zhou Shenge9ebd3f2007-03-24 15:34:37 +00003129 if ((Mask->getValue().countLeadingZeros() +
3130 Mask->getValue().countPopulation()) ==
3131 Mask->getValue().getBitWidth())
Chris Lattnerb4b25302005-09-18 07:22:02 +00003132 break;
3133
3134 // Otherwise, if Mask is 0+1+0+, and if B is known to have the low 0+
3135 // part, we don't need any explicit masks to take them out of A. If that
3136 // is all N is, ignore it.
3137 unsigned MB, ME;
3138 if (isRunOfOnes(Mask, MB, ME)) { // begin/end bit of run, inclusive
Reid Spencer6274c722007-03-23 18:46:34 +00003139 uint32_t BitWidth = cast<IntegerType>(RHS->getType())->getBitWidth();
3140 APInt Mask(APInt::getAllOnesValue(BitWidth));
Zhou Shenge9ebd3f2007-03-24 15:34:37 +00003141 Mask = Mask.lshr(BitWidth-MB+1);
Chris Lattnerc3ebf402006-02-07 07:27:52 +00003142 if (MaskedValueIsZero(RHS, Mask))
Chris Lattnerb4b25302005-09-18 07:22:02 +00003143 break;
3144 }
3145 }
Chris Lattneraf517572005-09-18 04:24:45 +00003146 return 0;
3147 case Instruction::Or:
3148 case Instruction::Xor:
Chris Lattnerb4b25302005-09-18 07:22:02 +00003149 // If the AndRHS is a power of two minus one (0+1+), and N&Mask == 0
Zhou Shenge9ebd3f2007-03-24 15:34:37 +00003150 if ((Mask->getValue().countLeadingZeros() +
3151 Mask->getValue().countPopulation()) == Mask->getValue().getBitWidth()
Reid Spencer80263aa2007-03-25 05:33:51 +00003152 && And(N, Mask)->isNullValue())
Chris Lattneraf517572005-09-18 04:24:45 +00003153 break;
3154 return 0;
3155 }
3156
3157 Instruction *New;
3158 if (isSub)
3159 New = BinaryOperator::createSub(LHSI->getOperand(0), RHS, "fold");
3160 else
3161 New = BinaryOperator::createAdd(LHSI->getOperand(0), RHS, "fold");
3162 return InsertNewInstBefore(New, I);
3163}
3164
Chris Lattner113f4f42002-06-25 16:13:24 +00003165Instruction *InstCombiner::visitAnd(BinaryOperator &I) {
Chris Lattnerdcf240a2003-03-10 21:43:22 +00003166 bool Changed = SimplifyCommutative(I);
Chris Lattner113f4f42002-06-25 16:13:24 +00003167 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00003168
Chris Lattner81a7a232004-10-16 18:11:37 +00003169 if (isa<UndefValue>(Op1)) // X & undef -> 0
3170 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
3171
Chris Lattner86102b82005-01-01 16:22:27 +00003172 // and X, X = X
3173 if (Op0 == Op1)
Chris Lattnere6794492002-08-12 21:17:25 +00003174 return ReplaceInstUsesWith(I, Op1);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00003175
Chris Lattner5b2edb12006-02-12 08:02:11 +00003176 // See if we can simplify any instructions used by the instruction whose sole
Chris Lattner5997cf92006-02-08 03:25:32 +00003177 // purpose is to compute bits we don't care about.
Reid Spencerd84d35b2007-02-15 02:26:10 +00003178 if (!isa<VectorType>(I.getType())) {
Reid Spencerb722f2b2007-03-22 22:19:58 +00003179 uint32_t BitWidth = cast<IntegerType>(I.getType())->getBitWidth();
3180 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
3181 if (SimplifyDemandedBits(&I, APInt::getAllOnesValue(BitWidth),
Chris Lattner120ab032007-01-18 22:16:33 +00003182 KnownZero, KnownOne))
Chris Lattner5997cf92006-02-08 03:25:32 +00003183 return &I;
Chris Lattner120ab032007-01-18 22:16:33 +00003184 } else {
Reid Spencerd84d35b2007-02-15 02:26:10 +00003185 if (ConstantVector *CP = dyn_cast<ConstantVector>(Op1)) {
Chris Lattner120ab032007-01-18 22:16:33 +00003186 if (CP->isAllOnesValue())
3187 return ReplaceInstUsesWith(I, I.getOperand(0));
3188 }
3189 }
Chris Lattner5997cf92006-02-08 03:25:32 +00003190
Zhou Sheng75b871f2007-01-11 12:24:14 +00003191 if (ConstantInt *AndRHS = dyn_cast<ConstantInt>(Op1)) {
Reid Spencerb722f2b2007-03-22 22:19:58 +00003192 APInt AndRHSMask(AndRHS->getValue());
3193 APInt TypeMask(cast<IntegerType>(Op0->getType())->getMask());
3194 APInt NotAndRHS = AndRHSMask^TypeMask;
Chris Lattner86102b82005-01-01 16:22:27 +00003195
Chris Lattnerba1cb382003-09-19 17:17:26 +00003196 // Optimize a variety of ((val OP C1) & C2) combinations...
Reid Spencer2341c222007-02-02 02:16:23 +00003197 if (isa<BinaryOperator>(Op0)) {
Chris Lattnerba1cb382003-09-19 17:17:26 +00003198 Instruction *Op0I = cast<Instruction>(Op0);
Chris Lattner86102b82005-01-01 16:22:27 +00003199 Value *Op0LHS = Op0I->getOperand(0);
3200 Value *Op0RHS = Op0I->getOperand(1);
3201 switch (Op0I->getOpcode()) {
3202 case Instruction::Xor:
3203 case Instruction::Or:
Chris Lattner9e2c7fa2005-01-23 20:26:55 +00003204 // If the mask is only needed on one incoming arm, push it up.
3205 if (Op0I->hasOneUse()) {
3206 if (MaskedValueIsZero(Op0LHS, NotAndRHS)) {
3207 // Not masking anything out for the LHS, move to RHS.
3208 Instruction *NewRHS = BinaryOperator::createAnd(Op0RHS, AndRHS,
3209 Op0RHS->getName()+".masked");
3210 InsertNewInstBefore(NewRHS, I);
3211 return BinaryOperator::create(
3212 cast<BinaryOperator>(Op0I)->getOpcode(), Op0LHS, NewRHS);
Misha Brukmanb1c93172005-04-21 23:48:37 +00003213 }
Chris Lattnerc3ebf402006-02-07 07:27:52 +00003214 if (!isa<Constant>(Op0RHS) &&
Chris Lattner9e2c7fa2005-01-23 20:26:55 +00003215 MaskedValueIsZero(Op0RHS, NotAndRHS)) {
3216 // Not masking anything out for the RHS, move to LHS.
3217 Instruction *NewLHS = BinaryOperator::createAnd(Op0LHS, AndRHS,
3218 Op0LHS->getName()+".masked");
3219 InsertNewInstBefore(NewLHS, I);
3220 return BinaryOperator::create(
3221 cast<BinaryOperator>(Op0I)->getOpcode(), NewLHS, Op0RHS);
3222 }
3223 }
3224
Chris Lattner86102b82005-01-01 16:22:27 +00003225 break;
Chris Lattneraf517572005-09-18 04:24:45 +00003226 case Instruction::Add:
Chris Lattnerb4b25302005-09-18 07:22:02 +00003227 // ((A & N) + B) & AndRHS -> (A + B) & AndRHS iff N&AndRHS == AndRHS.
3228 // ((A | N) + B) & AndRHS -> (A + B) & AndRHS iff N&AndRHS == 0
3229 // ((A ^ N) + B) & AndRHS -> (A + B) & AndRHS iff N&AndRHS == 0
3230 if (Value *V = FoldLogicalPlusAnd(Op0LHS, Op0RHS, AndRHS, false, I))
3231 return BinaryOperator::createAnd(V, AndRHS);
3232 if (Value *V = FoldLogicalPlusAnd(Op0RHS, Op0LHS, AndRHS, false, I))
3233 return BinaryOperator::createAnd(V, AndRHS); // Add commutes
Chris Lattneraf517572005-09-18 04:24:45 +00003234 break;
3235
3236 case Instruction::Sub:
Chris Lattnerb4b25302005-09-18 07:22:02 +00003237 // ((A & N) - B) & AndRHS -> (A - B) & AndRHS iff N&AndRHS == AndRHS.
3238 // ((A | N) - B) & AndRHS -> (A - B) & AndRHS iff N&AndRHS == 0
3239 // ((A ^ N) - B) & AndRHS -> (A - B) & AndRHS iff N&AndRHS == 0
3240 if (Value *V = FoldLogicalPlusAnd(Op0LHS, Op0RHS, AndRHS, true, I))
3241 return BinaryOperator::createAnd(V, AndRHS);
Chris Lattneraf517572005-09-18 04:24:45 +00003242 break;
Chris Lattner86102b82005-01-01 16:22:27 +00003243 }
3244
Chris Lattner16464b32003-07-23 19:25:52 +00003245 if (ConstantInt *Op0CI = dyn_cast<ConstantInt>(Op0I->getOperand(1)))
Chris Lattner86102b82005-01-01 16:22:27 +00003246 if (Instruction *Res = OptAndOp(Op0I, Op0CI, AndRHS, I))
Chris Lattnerba1cb382003-09-19 17:17:26 +00003247 return Res;
Chris Lattner86102b82005-01-01 16:22:27 +00003248 } else if (CastInst *CI = dyn_cast<CastInst>(Op0)) {
Chris Lattner2c14cf72005-08-07 07:03:10 +00003249 // If this is an integer truncation or change from signed-to-unsigned, and
3250 // if the source is an and/or with immediate, transform it. This
3251 // frequently occurs for bitfield accesses.
3252 if (Instruction *CastOp = dyn_cast<Instruction>(CI->getOperand(0))) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003253 if ((isa<TruncInst>(CI) || isa<BitCastInst>(CI)) &&
Chris Lattner2c14cf72005-08-07 07:03:10 +00003254 CastOp->getNumOperands() == 2)
Chris Lattnerab2dc4d2006-02-08 07:34:50 +00003255 if (ConstantInt *AndCI = dyn_cast<ConstantInt>(CastOp->getOperand(1)))
Chris Lattner2c14cf72005-08-07 07:03:10 +00003256 if (CastOp->getOpcode() == Instruction::And) {
3257 // Change: and (cast (and X, C1) to T), C2
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003258 // into : and (cast X to T), trunc_or_bitcast(C1)&C2
3259 // This will fold the two constants together, which may allow
3260 // other simplifications.
Reid Spencerbb65ebf2006-12-12 23:36:14 +00003261 Instruction *NewCast = CastInst::createTruncOrBitCast(
3262 CastOp->getOperand(0), I.getType(),
3263 CastOp->getName()+".shrunk");
Chris Lattner2c14cf72005-08-07 07:03:10 +00003264 NewCast = InsertNewInstBefore(NewCast, I);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003265 // trunc_or_bitcast(C1)&C2
Reid Spencerbb65ebf2006-12-12 23:36:14 +00003266 Constant *C3 = ConstantExpr::getTruncOrBitCast(AndCI,I.getType());
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003267 C3 = ConstantExpr::getAnd(C3, AndRHS);
Chris Lattner2c14cf72005-08-07 07:03:10 +00003268 return BinaryOperator::createAnd(NewCast, C3);
3269 } else if (CastOp->getOpcode() == Instruction::Or) {
3270 // Change: and (cast (or X, C1) to T), C2
3271 // into : trunc(C1)&C2 iff trunc(C1)&C2 == C2
Chris Lattner2dc148e2006-12-12 19:11:20 +00003272 Constant *C3 = ConstantExpr::getTruncOrBitCast(AndCI,I.getType());
Chris Lattner2c14cf72005-08-07 07:03:10 +00003273 if (ConstantExpr::getAnd(C3, AndRHS) == AndRHS) // trunc(C1)&C2
3274 return ReplaceInstUsesWith(I, AndRHS);
3275 }
3276 }
Chris Lattner33217db2003-07-23 19:36:21 +00003277 }
Chris Lattner183b3362004-04-09 19:05:30 +00003278
3279 // Try to fold constant and into select arguments.
3280 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
Chris Lattner86102b82005-01-01 16:22:27 +00003281 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
Chris Lattner183b3362004-04-09 19:05:30 +00003282 return R;
Chris Lattner6a4adcd2004-09-29 05:07:12 +00003283 if (isa<PHINode>(Op0))
3284 if (Instruction *NV = FoldOpIntoPhi(I))
3285 return NV;
Chris Lattner49b47ae2003-07-23 17:57:01 +00003286 }
3287
Chris Lattnerbb74e222003-03-10 23:06:50 +00003288 Value *Op0NotVal = dyn_castNotVal(Op0);
3289 Value *Op1NotVal = dyn_castNotVal(Op1);
Chris Lattner3082c5a2003-02-18 19:28:33 +00003290
Chris Lattner023a4832004-06-18 06:07:51 +00003291 if (Op0NotVal == Op1 || Op1NotVal == Op0) // A & ~A == ~A & A == 0
3292 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
3293
Misha Brukman9c003d82004-07-30 12:50:08 +00003294 // (~A & ~B) == (~(A | B)) - De Morgan's Law
Chris Lattnerbb74e222003-03-10 23:06:50 +00003295 if (Op0NotVal && Op1NotVal && isOnlyUse(Op0) && isOnlyUse(Op1)) {
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00003296 Instruction *Or = BinaryOperator::createOr(Op0NotVal, Op1NotVal,
3297 I.getName()+".demorgan");
Chris Lattner49b47ae2003-07-23 17:57:01 +00003298 InsertNewInstBefore(Or, I);
Chris Lattner3082c5a2003-02-18 19:28:33 +00003299 return BinaryOperator::createNot(Or);
3300 }
Chris Lattner8b10ab32006-02-13 23:07:23 +00003301
3302 {
3303 Value *A = 0, *B = 0;
Chris Lattner8b10ab32006-02-13 23:07:23 +00003304 if (match(Op0, m_Or(m_Value(A), m_Value(B))))
3305 if (A == Op1 || B == Op1) // (A | ?) & A --> A
3306 return ReplaceInstUsesWith(I, Op1);
3307 if (match(Op1, m_Or(m_Value(A), m_Value(B))))
3308 if (A == Op0 || B == Op0) // A & (A | ?) --> A
3309 return ReplaceInstUsesWith(I, Op0);
Chris Lattnerdcd07922006-04-01 08:03:55 +00003310
3311 if (Op0->hasOneUse() &&
3312 match(Op0, m_Xor(m_Value(A), m_Value(B)))) {
3313 if (A == Op1) { // (A^B)&A -> A&(A^B)
3314 I.swapOperands(); // Simplify below
3315 std::swap(Op0, Op1);
3316 } else if (B == Op1) { // (A^B)&B -> B&(B^A)
3317 cast<BinaryOperator>(Op0)->swapOperands();
3318 I.swapOperands(); // Simplify below
3319 std::swap(Op0, Op1);
3320 }
3321 }
3322 if (Op1->hasOneUse() &&
3323 match(Op1, m_Xor(m_Value(A), m_Value(B)))) {
3324 if (B == Op0) { // B&(A^B) -> B&(B^A)
3325 cast<BinaryOperator>(Op1)->swapOperands();
3326 std::swap(A, B);
3327 }
3328 if (A == Op0) { // A&(A^B) -> A & ~B
3329 Instruction *NotB = BinaryOperator::createNot(B, "tmp");
3330 InsertNewInstBefore(NotB, I);
3331 return BinaryOperator::createAnd(A, NotB);
3332 }
3333 }
Chris Lattner8b10ab32006-02-13 23:07:23 +00003334 }
3335
Reid Spencer266e42b2006-12-23 06:05:41 +00003336 if (ICmpInst *RHS = dyn_cast<ICmpInst>(Op1)) {
3337 // (icmp1 A, B) & (icmp2 A, B) --> (icmp3 A, B)
3338 if (Instruction *R = AssociativeOpt(I, FoldICmpLogical(*this, RHS)))
Chris Lattner3ac7c262003-08-13 20:16:26 +00003339 return R;
3340
Chris Lattner623826c2004-09-28 21:48:02 +00003341 Value *LHSVal, *RHSVal;
3342 ConstantInt *LHSCst, *RHSCst;
Reid Spencer266e42b2006-12-23 06:05:41 +00003343 ICmpInst::Predicate LHSCC, RHSCC;
3344 if (match(Op0, m_ICmp(LHSCC, m_Value(LHSVal), m_ConstantInt(LHSCst))))
3345 if (match(RHS, m_ICmp(RHSCC, m_Value(RHSVal), m_ConstantInt(RHSCst))))
3346 if (LHSVal == RHSVal && // Found (X icmp C1) & (X icmp C2)
3347 // ICMP_[GL]E X, CST is folded to ICMP_[GL]T elsewhere.
3348 LHSCC != ICmpInst::ICMP_UGE && LHSCC != ICmpInst::ICMP_ULE &&
3349 RHSCC != ICmpInst::ICMP_UGE && RHSCC != ICmpInst::ICMP_ULE &&
3350 LHSCC != ICmpInst::ICMP_SGE && LHSCC != ICmpInst::ICMP_SLE &&
3351 RHSCC != ICmpInst::ICMP_SGE && RHSCC != ICmpInst::ICMP_SLE) {
Chris Lattner623826c2004-09-28 21:48:02 +00003352 // Ensure that the larger constant is on the RHS.
Reid Spencer266e42b2006-12-23 06:05:41 +00003353 ICmpInst::Predicate GT = ICmpInst::isSignedPredicate(LHSCC) ?
3354 ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
3355 Constant *Cmp = ConstantExpr::getICmp(GT, LHSCst, RHSCst);
3356 ICmpInst *LHS = cast<ICmpInst>(Op0);
Reid Spencercddc9df2007-01-12 04:24:46 +00003357 if (cast<ConstantInt>(Cmp)->getZExtValue()) {
Chris Lattner623826c2004-09-28 21:48:02 +00003358 std::swap(LHS, RHS);
3359 std::swap(LHSCst, RHSCst);
3360 std::swap(LHSCC, RHSCC);
3361 }
3362
Reid Spencer266e42b2006-12-23 06:05:41 +00003363 // At this point, we know we have have two icmp instructions
Chris Lattner623826c2004-09-28 21:48:02 +00003364 // comparing a value against two constants and and'ing the result
3365 // together. Because of the above check, we know that we only have
Reid Spencer266e42b2006-12-23 06:05:41 +00003366 // icmp eq, icmp ne, icmp [su]lt, and icmp [SU]gt here. We also know
3367 // (from the FoldICmpLogical check above), that the two constants
3368 // are not equal and that the larger constant is on the RHS
Chris Lattner623826c2004-09-28 21:48:02 +00003369 assert(LHSCst != RHSCst && "Compares not folded above?");
3370
3371 switch (LHSCC) {
3372 default: assert(0 && "Unknown integer condition code!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003373 case ICmpInst::ICMP_EQ:
Chris Lattner623826c2004-09-28 21:48:02 +00003374 switch (RHSCC) {
3375 default: assert(0 && "Unknown integer condition code!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003376 case ICmpInst::ICMP_EQ: // (X == 13 & X == 15) -> false
3377 case ICmpInst::ICMP_UGT: // (X == 13 & X > 15) -> false
3378 case ICmpInst::ICMP_SGT: // (X == 13 & X > 15) -> false
Zhou Sheng75b871f2007-01-11 12:24:14 +00003379 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00003380 case ICmpInst::ICMP_NE: // (X == 13 & X != 15) -> X == 13
3381 case ICmpInst::ICMP_ULT: // (X == 13 & X < 15) -> X == 13
3382 case ICmpInst::ICMP_SLT: // (X == 13 & X < 15) -> X == 13
Chris Lattner623826c2004-09-28 21:48:02 +00003383 return ReplaceInstUsesWith(I, LHS);
3384 }
Reid Spencer266e42b2006-12-23 06:05:41 +00003385 case ICmpInst::ICMP_NE:
Chris Lattner623826c2004-09-28 21:48:02 +00003386 switch (RHSCC) {
3387 default: assert(0 && "Unknown integer condition code!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003388 case ICmpInst::ICMP_ULT:
3389 if (LHSCst == SubOne(RHSCst)) // (X != 13 & X u< 14) -> X < 13
3390 return new ICmpInst(ICmpInst::ICMP_ULT, LHSVal, LHSCst);
3391 break; // (X != 13 & X u< 15) -> no change
3392 case ICmpInst::ICMP_SLT:
3393 if (LHSCst == SubOne(RHSCst)) // (X != 13 & X s< 14) -> X < 13
3394 return new ICmpInst(ICmpInst::ICMP_SLT, LHSVal, LHSCst);
3395 break; // (X != 13 & X s< 15) -> no change
3396 case ICmpInst::ICMP_EQ: // (X != 13 & X == 15) -> X == 15
3397 case ICmpInst::ICMP_UGT: // (X != 13 & X u> 15) -> X u> 15
3398 case ICmpInst::ICMP_SGT: // (X != 13 & X s> 15) -> X s> 15
Chris Lattner623826c2004-09-28 21:48:02 +00003399 return ReplaceInstUsesWith(I, RHS);
Reid Spencer266e42b2006-12-23 06:05:41 +00003400 case ICmpInst::ICMP_NE:
3401 if (LHSCst == SubOne(RHSCst)){// (X != 13 & X != 14) -> X-13 >u 1
Chris Lattner623826c2004-09-28 21:48:02 +00003402 Constant *AddCST = ConstantExpr::getNeg(LHSCst);
3403 Instruction *Add = BinaryOperator::createAdd(LHSVal, AddCST,
3404 LHSVal->getName()+".off");
3405 InsertNewInstBefore(Add, I);
Chris Lattnerc8fb6de2007-01-27 23:08:34 +00003406 return new ICmpInst(ICmpInst::ICMP_UGT, Add,
3407 ConstantInt::get(Add->getType(), 1));
Chris Lattner623826c2004-09-28 21:48:02 +00003408 }
3409 break; // (X != 13 & X != 15) -> no change
3410 }
3411 break;
Reid Spencer266e42b2006-12-23 06:05:41 +00003412 case ICmpInst::ICMP_ULT:
Chris Lattner623826c2004-09-28 21:48:02 +00003413 switch (RHSCC) {
3414 default: assert(0 && "Unknown integer condition code!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003415 case ICmpInst::ICMP_EQ: // (X u< 13 & X == 15) -> false
3416 case ICmpInst::ICMP_UGT: // (X u< 13 & X u> 15) -> false
Zhou Sheng75b871f2007-01-11 12:24:14 +00003417 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00003418 case ICmpInst::ICMP_SGT: // (X u< 13 & X s> 15) -> no change
3419 break;
3420 case ICmpInst::ICMP_NE: // (X u< 13 & X != 15) -> X u< 13
3421 case ICmpInst::ICMP_ULT: // (X u< 13 & X u< 15) -> X u< 13
Chris Lattner623826c2004-09-28 21:48:02 +00003422 return ReplaceInstUsesWith(I, LHS);
Reid Spencer266e42b2006-12-23 06:05:41 +00003423 case ICmpInst::ICMP_SLT: // (X u< 13 & X s< 15) -> no change
3424 break;
Chris Lattner623826c2004-09-28 21:48:02 +00003425 }
Reid Spencer266e42b2006-12-23 06:05:41 +00003426 break;
3427 case ICmpInst::ICMP_SLT:
Chris Lattner623826c2004-09-28 21:48:02 +00003428 switch (RHSCC) {
3429 default: assert(0 && "Unknown integer condition code!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003430 case ICmpInst::ICMP_EQ: // (X s< 13 & X == 15) -> false
3431 case ICmpInst::ICMP_SGT: // (X s< 13 & X s> 15) -> false
Zhou Sheng75b871f2007-01-11 12:24:14 +00003432 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00003433 case ICmpInst::ICMP_UGT: // (X s< 13 & X u> 15) -> no change
3434 break;
3435 case ICmpInst::ICMP_NE: // (X s< 13 & X != 15) -> X < 13
3436 case ICmpInst::ICMP_SLT: // (X s< 13 & X s< 15) -> X < 13
Chris Lattner623826c2004-09-28 21:48:02 +00003437 return ReplaceInstUsesWith(I, LHS);
Reid Spencer266e42b2006-12-23 06:05:41 +00003438 case ICmpInst::ICMP_ULT: // (X s< 13 & X u< 15) -> no change
3439 break;
Chris Lattner623826c2004-09-28 21:48:02 +00003440 }
Reid Spencer266e42b2006-12-23 06:05:41 +00003441 break;
3442 case ICmpInst::ICMP_UGT:
3443 switch (RHSCC) {
3444 default: assert(0 && "Unknown integer condition code!");
3445 case ICmpInst::ICMP_EQ: // (X u> 13 & X == 15) -> X > 13
3446 return ReplaceInstUsesWith(I, LHS);
3447 case ICmpInst::ICMP_UGT: // (X u> 13 & X u> 15) -> X u> 15
3448 return ReplaceInstUsesWith(I, RHS);
3449 case ICmpInst::ICMP_SGT: // (X u> 13 & X s> 15) -> no change
3450 break;
3451 case ICmpInst::ICMP_NE:
3452 if (RHSCst == AddOne(LHSCst)) // (X u> 13 & X != 14) -> X u> 14
3453 return new ICmpInst(LHSCC, LHSVal, RHSCst);
3454 break; // (X u> 13 & X != 15) -> no change
3455 case ICmpInst::ICMP_ULT: // (X u> 13 & X u< 15) ->(X-14) <u 1
3456 return InsertRangeTest(LHSVal, AddOne(LHSCst), RHSCst, false,
3457 true, I);
3458 case ICmpInst::ICMP_SLT: // (X u> 13 & X s< 15) -> no change
3459 break;
3460 }
3461 break;
3462 case ICmpInst::ICMP_SGT:
3463 switch (RHSCC) {
3464 default: assert(0 && "Unknown integer condition code!");
3465 case ICmpInst::ICMP_EQ: // (X s> 13 & X == 15) -> X s> 13
3466 return ReplaceInstUsesWith(I, LHS);
3467 case ICmpInst::ICMP_SGT: // (X s> 13 & X s> 15) -> X s> 15
3468 return ReplaceInstUsesWith(I, RHS);
3469 case ICmpInst::ICMP_UGT: // (X s> 13 & X u> 15) -> no change
3470 break;
3471 case ICmpInst::ICMP_NE:
3472 if (RHSCst == AddOne(LHSCst)) // (X s> 13 & X != 14) -> X s> 14
3473 return new ICmpInst(LHSCC, LHSVal, RHSCst);
3474 break; // (X s> 13 & X != 15) -> no change
3475 case ICmpInst::ICMP_SLT: // (X s> 13 & X s< 15) ->(X-14) s< 1
3476 return InsertRangeTest(LHSVal, AddOne(LHSCst), RHSCst, true,
3477 true, I);
3478 case ICmpInst::ICMP_ULT: // (X s> 13 & X u< 15) -> no change
3479 break;
3480 }
3481 break;
Chris Lattner623826c2004-09-28 21:48:02 +00003482 }
3483 }
3484 }
3485
Chris Lattner3af10532006-05-05 06:39:07 +00003486 // fold (and (cast A), (cast B)) -> (cast (and A, B))
Reid Spencer799b5bf2006-12-13 08:27:15 +00003487 if (CastInst *Op0C = dyn_cast<CastInst>(Op0))
3488 if (CastInst *Op1C = dyn_cast<CastInst>(Op1))
3489 if (Op0C->getOpcode() == Op1C->getOpcode()) { // same cast kind ?
3490 const Type *SrcTy = Op0C->getOperand(0)->getType();
Chris Lattner03c49532007-01-15 02:27:26 +00003491 if (SrcTy == Op1C->getOperand(0)->getType() && SrcTy->isInteger() &&
Reid Spencer799b5bf2006-12-13 08:27:15 +00003492 // Only do this if the casts both really cause code to be generated.
Reid Spencer266e42b2006-12-23 06:05:41 +00003493 ValueRequiresCast(Op0C->getOpcode(), Op0C->getOperand(0),
3494 I.getType(), TD) &&
3495 ValueRequiresCast(Op1C->getOpcode(), Op1C->getOperand(0),
3496 I.getType(), TD)) {
Reid Spencer799b5bf2006-12-13 08:27:15 +00003497 Instruction *NewOp = BinaryOperator::createAnd(Op0C->getOperand(0),
3498 Op1C->getOperand(0),
3499 I.getName());
3500 InsertNewInstBefore(NewOp, I);
3501 return CastInst::create(Op0C->getOpcode(), NewOp, I.getType());
3502 }
Chris Lattner3af10532006-05-05 06:39:07 +00003503 }
Chris Lattnerf05d69a2006-11-14 07:46:50 +00003504
3505 // (X >> Z) & (Y >> Z) -> (X&Y) >> Z for all shifts.
Reid Spencer2341c222007-02-02 02:16:23 +00003506 if (BinaryOperator *SI1 = dyn_cast<BinaryOperator>(Op1)) {
3507 if (BinaryOperator *SI0 = dyn_cast<BinaryOperator>(Op0))
3508 if (SI0->isShift() && SI0->getOpcode() == SI1->getOpcode() &&
Chris Lattnerf05d69a2006-11-14 07:46:50 +00003509 SI0->getOperand(1) == SI1->getOperand(1) &&
3510 (SI0->hasOneUse() || SI1->hasOneUse())) {
3511 Instruction *NewOp =
3512 InsertNewInstBefore(BinaryOperator::createAnd(SI0->getOperand(0),
3513 SI1->getOperand(0),
3514 SI0->getName()), I);
Reid Spencer2341c222007-02-02 02:16:23 +00003515 return BinaryOperator::create(SI1->getOpcode(), NewOp,
3516 SI1->getOperand(1));
Chris Lattnerf05d69a2006-11-14 07:46:50 +00003517 }
Chris Lattner3af10532006-05-05 06:39:07 +00003518 }
3519
Chris Lattner113f4f42002-06-25 16:13:24 +00003520 return Changed ? &I : 0;
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00003521}
3522
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003523/// CollectBSwapParts - Look to see if the specified value defines a single byte
3524/// in the result. If it does, and if the specified byte hasn't been filled in
3525/// yet, fill it in and return false.
Chris Lattner99c6cf62007-02-15 22:52:10 +00003526static bool CollectBSwapParts(Value *V, SmallVector<Value*, 8> &ByteValues) {
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003527 Instruction *I = dyn_cast<Instruction>(V);
3528 if (I == 0) return true;
3529
3530 // If this is an or instruction, it is an inner node of the bswap.
3531 if (I->getOpcode() == Instruction::Or)
3532 return CollectBSwapParts(I->getOperand(0), ByteValues) ||
3533 CollectBSwapParts(I->getOperand(1), ByteValues);
3534
3535 // If this is a shift by a constant int, and it is "24", then its operand
3536 // defines a byte. We only handle unsigned types here.
Reid Spencer2341c222007-02-02 02:16:23 +00003537 if (I->isShift() && isa<ConstantInt>(I->getOperand(1))) {
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003538 // Not shifting the entire input by N-1 bytes?
Reid Spencere0fc4df2006-10-20 07:07:24 +00003539 if (cast<ConstantInt>(I->getOperand(1))->getZExtValue() !=
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003540 8*(ByteValues.size()-1))
3541 return true;
3542
3543 unsigned DestNo;
3544 if (I->getOpcode() == Instruction::Shl) {
3545 // X << 24 defines the top byte with the lowest of the input bytes.
3546 DestNo = ByteValues.size()-1;
3547 } else {
3548 // X >>u 24 defines the low byte with the highest of the input bytes.
3549 DestNo = 0;
3550 }
3551
3552 // If the destination byte value is already defined, the values are or'd
3553 // together, which isn't a bswap (unless it's an or of the same bits).
3554 if (ByteValues[DestNo] && ByteValues[DestNo] != I->getOperand(0))
3555 return true;
3556 ByteValues[DestNo] = I->getOperand(0);
3557 return false;
3558 }
3559
3560 // Otherwise, we can only handle and(shift X, imm), imm). Bail out of if we
3561 // don't have this.
3562 Value *Shift = 0, *ShiftLHS = 0;
3563 ConstantInt *AndAmt = 0, *ShiftAmt = 0;
3564 if (!match(I, m_And(m_Value(Shift), m_ConstantInt(AndAmt))) ||
3565 !match(Shift, m_Shift(m_Value(ShiftLHS), m_ConstantInt(ShiftAmt))))
3566 return true;
3567 Instruction *SI = cast<Instruction>(Shift);
3568
3569 // Make sure that the shift amount is by a multiple of 8 and isn't too big.
Reid Spencere0fc4df2006-10-20 07:07:24 +00003570 if (ShiftAmt->getZExtValue() & 7 ||
3571 ShiftAmt->getZExtValue() > 8*ByteValues.size())
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003572 return true;
3573
3574 // Turn 0xFF -> 0, 0xFF00 -> 1, 0xFF0000 -> 2, etc.
3575 unsigned DestByte;
3576 for (DestByte = 0; DestByte != ByteValues.size(); ++DestByte)
Reid Spencere0fc4df2006-10-20 07:07:24 +00003577 if (AndAmt->getZExtValue() == uint64_t(0xFF) << 8*DestByte)
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003578 break;
3579 // Unknown mask for bswap.
3580 if (DestByte == ByteValues.size()) return true;
3581
Reid Spencere0fc4df2006-10-20 07:07:24 +00003582 unsigned ShiftBytes = ShiftAmt->getZExtValue()/8;
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003583 unsigned SrcByte;
3584 if (SI->getOpcode() == Instruction::Shl)
3585 SrcByte = DestByte - ShiftBytes;
3586 else
3587 SrcByte = DestByte + ShiftBytes;
3588
3589 // If the SrcByte isn't a bswapped value from the DestByte, reject it.
3590 if (SrcByte != ByteValues.size()-DestByte-1)
3591 return true;
3592
3593 // If the destination byte value is already defined, the values are or'd
3594 // together, which isn't a bswap (unless it's an or of the same bits).
3595 if (ByteValues[DestByte] && ByteValues[DestByte] != SI->getOperand(0))
3596 return true;
3597 ByteValues[DestByte] = SI->getOperand(0);
3598 return false;
3599}
3600
3601/// MatchBSwap - Given an OR instruction, check to see if this is a bswap idiom.
3602/// If so, insert the new bswap intrinsic and return it.
3603Instruction *InstCombiner::MatchBSwap(BinaryOperator &I) {
Reid Spencer2341c222007-02-02 02:16:23 +00003604 // We cannot bswap one byte.
Reid Spencerc635f472006-12-31 05:48:39 +00003605 if (I.getType() == Type::Int8Ty)
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003606 return 0;
3607
3608 /// ByteValues - For each byte of the result, we keep track of which value
3609 /// defines each byte.
Chris Lattner99c6cf62007-02-15 22:52:10 +00003610 SmallVector<Value*, 8> ByteValues;
Reid Spencer7a9c62b2007-01-12 07:05:14 +00003611 ByteValues.resize(TD->getTypeSize(I.getType()));
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003612
3613 // Try to find all the pieces corresponding to the bswap.
3614 if (CollectBSwapParts(I.getOperand(0), ByteValues) ||
3615 CollectBSwapParts(I.getOperand(1), ByteValues))
3616 return 0;
3617
3618 // Check to see if all of the bytes come from the same value.
3619 Value *V = ByteValues[0];
3620 if (V == 0) return 0; // Didn't find a byte? Must be zero.
3621
3622 // Check to make sure that all of the bytes come from the same value.
3623 for (unsigned i = 1, e = ByteValues.size(); i != e; ++i)
3624 if (ByteValues[i] != V)
3625 return 0;
3626
3627 // If they do then *success* we can turn this into a bswap. Figure out what
3628 // bswap to make it into.
3629 Module *M = I.getParent()->getParent()->getParent();
Chris Lattner091b6ea2006-07-11 18:31:26 +00003630 const char *FnName = 0;
Reid Spencerc635f472006-12-31 05:48:39 +00003631 if (I.getType() == Type::Int16Ty)
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003632 FnName = "llvm.bswap.i16";
Reid Spencerc635f472006-12-31 05:48:39 +00003633 else if (I.getType() == Type::Int32Ty)
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003634 FnName = "llvm.bswap.i32";
Reid Spencerc635f472006-12-31 05:48:39 +00003635 else if (I.getType() == Type::Int64Ty)
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003636 FnName = "llvm.bswap.i64";
3637 else
3638 assert(0 && "Unknown integer type!");
Chris Lattnerfbc524f2007-01-07 06:58:05 +00003639 Constant *F = M->getOrInsertFunction(FnName, I.getType(), I.getType(), NULL);
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003640 return new CallInst(F, V);
3641}
3642
3643
Chris Lattner113f4f42002-06-25 16:13:24 +00003644Instruction *InstCombiner::visitOr(BinaryOperator &I) {
Chris Lattnerdcf240a2003-03-10 21:43:22 +00003645 bool Changed = SimplifyCommutative(I);
Chris Lattner113f4f42002-06-25 16:13:24 +00003646 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00003647
Chris Lattner3a8248f2007-03-24 23:56:43 +00003648 if (isa<UndefValue>(Op1)) // X | undef -> -1
3649 return ReplaceInstUsesWith(I, ConstantInt::getAllOnesValue(I.getType()));
Chris Lattner81a7a232004-10-16 18:11:37 +00003650
Chris Lattner5b2edb12006-02-12 08:02:11 +00003651 // or X, X = X
3652 if (Op0 == Op1)
Chris Lattnere6794492002-08-12 21:17:25 +00003653 return ReplaceInstUsesWith(I, Op0);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00003654
Chris Lattner5b2edb12006-02-12 08:02:11 +00003655 // See if we can simplify any instructions used by the instruction whose sole
3656 // purpose is to compute bits we don't care about.
Chris Lattner3a8248f2007-03-24 23:56:43 +00003657 if (!isa<VectorType>(I.getType())) {
3658 uint32_t BitWidth = cast<IntegerType>(I.getType())->getBitWidth();
3659 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
3660 if (SimplifyDemandedBits(&I, APInt::getAllOnesValue(BitWidth),
3661 KnownZero, KnownOne))
3662 return &I;
3663 }
Chris Lattner5b2edb12006-02-12 08:02:11 +00003664
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00003665 // or X, -1 == -1
Zhou Sheng75b871f2007-01-11 12:24:14 +00003666 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner330628a2006-01-06 17:59:59 +00003667 ConstantInt *C1 = 0; Value *X = 0;
Chris Lattnerd4252a72004-07-30 07:50:03 +00003668 // (X & C1) | C2 --> (X | C2) & (C1|C2)
3669 if (match(Op0, m_And(m_Value(X), m_ConstantInt(C1))) && isOnlyUse(Op0)) {
Chris Lattner6e0123b2007-02-11 01:23:03 +00003670 Instruction *Or = BinaryOperator::createOr(X, RHS);
Chris Lattnerd4252a72004-07-30 07:50:03 +00003671 InsertNewInstBefore(Or, I);
Chris Lattner6e0123b2007-02-11 01:23:03 +00003672 Or->takeName(Op0);
Chris Lattnerd4252a72004-07-30 07:50:03 +00003673 return BinaryOperator::createAnd(Or, ConstantExpr::getOr(RHS, C1));
3674 }
Chris Lattner8f0d1562003-07-23 18:29:44 +00003675
Chris Lattnerd4252a72004-07-30 07:50:03 +00003676 // (X ^ C1) | C2 --> (X | C2) ^ (C1&~C2)
3677 if (match(Op0, m_Xor(m_Value(X), m_ConstantInt(C1))) && isOnlyUse(Op0)) {
Chris Lattner6e0123b2007-02-11 01:23:03 +00003678 Instruction *Or = BinaryOperator::createOr(X, RHS);
Chris Lattnerd4252a72004-07-30 07:50:03 +00003679 InsertNewInstBefore(Or, I);
Chris Lattner6e0123b2007-02-11 01:23:03 +00003680 Or->takeName(Op0);
Chris Lattnerd4252a72004-07-30 07:50:03 +00003681 return BinaryOperator::createXor(Or,
3682 ConstantExpr::getAnd(C1, ConstantExpr::getNot(RHS)));
Chris Lattner8f0d1562003-07-23 18:29:44 +00003683 }
Chris Lattner183b3362004-04-09 19:05:30 +00003684
3685 // Try to fold constant and into select arguments.
3686 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
Chris Lattner86102b82005-01-01 16:22:27 +00003687 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
Chris Lattner183b3362004-04-09 19:05:30 +00003688 return R;
Chris Lattner6a4adcd2004-09-29 05:07:12 +00003689 if (isa<PHINode>(Op0))
3690 if (Instruction *NV = FoldOpIntoPhi(I))
3691 return NV;
Chris Lattner8f0d1562003-07-23 18:29:44 +00003692 }
3693
Chris Lattner330628a2006-01-06 17:59:59 +00003694 Value *A = 0, *B = 0;
3695 ConstantInt *C1 = 0, *C2 = 0;
Chris Lattner4294cec2005-05-07 23:49:08 +00003696
3697 if (match(Op0, m_And(m_Value(A), m_Value(B))))
3698 if (A == Op1 || B == Op1) // (A & ?) | A --> A
3699 return ReplaceInstUsesWith(I, Op1);
3700 if (match(Op1, m_And(m_Value(A), m_Value(B))))
3701 if (A == Op0 || B == Op0) // A | (A & ?) --> A
3702 return ReplaceInstUsesWith(I, Op0);
3703
Chris Lattnerb7845d62006-07-10 20:25:24 +00003704 // (A | B) | C and A | (B | C) -> bswap if possible.
3705 // (A >> B) | (C << D) and (A << B) | (B >> C) -> bswap if possible.
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003706 if (match(Op0, m_Or(m_Value(), m_Value())) ||
Chris Lattnerb7845d62006-07-10 20:25:24 +00003707 match(Op1, m_Or(m_Value(), m_Value())) ||
3708 (match(Op0, m_Shift(m_Value(), m_Value())) &&
3709 match(Op1, m_Shift(m_Value(), m_Value())))) {
Chris Lattnerc482a9e2006-06-15 19:07:26 +00003710 if (Instruction *BSwap = MatchBSwap(I))
3711 return BSwap;
3712 }
3713
Chris Lattnerb62f5082005-05-09 04:58:36 +00003714 // (X^C)|Y -> (X|Y)^C iff Y&C == 0
3715 if (Op0->hasOneUse() && match(Op0, m_Xor(m_Value(A), m_ConstantInt(C1))) &&
Reid Spencerb722f2b2007-03-22 22:19:58 +00003716 MaskedValueIsZero(Op1, C1->getValue())) {
Chris Lattner6e0123b2007-02-11 01:23:03 +00003717 Instruction *NOr = BinaryOperator::createOr(A, Op1);
3718 InsertNewInstBefore(NOr, I);
3719 NOr->takeName(Op0);
3720 return BinaryOperator::createXor(NOr, C1);
Chris Lattnerb62f5082005-05-09 04:58:36 +00003721 }
3722
3723 // Y|(X^C) -> (X|Y)^C iff Y&C == 0
3724 if (Op1->hasOneUse() && match(Op1, m_Xor(m_Value(A), m_ConstantInt(C1))) &&
Reid Spencerb722f2b2007-03-22 22:19:58 +00003725 MaskedValueIsZero(Op0, C1->getValue())) {
Chris Lattner6e0123b2007-02-11 01:23:03 +00003726 Instruction *NOr = BinaryOperator::createOr(A, Op0);
3727 InsertNewInstBefore(NOr, I);
3728 NOr->takeName(Op0);
3729 return BinaryOperator::createXor(NOr, C1);
Chris Lattnerb62f5082005-05-09 04:58:36 +00003730 }
3731
Chris Lattner15212982005-09-18 03:42:07 +00003732 // (A & C1)|(B & C2)
Chris Lattnerd4252a72004-07-30 07:50:03 +00003733 if (match(Op0, m_And(m_Value(A), m_ConstantInt(C1))) &&
Chris Lattner15212982005-09-18 03:42:07 +00003734 match(Op1, m_And(m_Value(B), m_ConstantInt(C2)))) {
3735
3736 if (A == B) // (A & C1)|(A & C2) == A & (C1|C2)
3737 return BinaryOperator::createAnd(A, ConstantExpr::getOr(C1, C2));
3738
3739
Chris Lattner01f56c62005-09-18 06:02:59 +00003740 // If we have: ((V + N) & C1) | (V & C2)
3741 // .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
3742 // replace with V+N.
3743 if (C1 == ConstantExpr::getNot(C2)) {
Chris Lattner330628a2006-01-06 17:59:59 +00003744 Value *V1 = 0, *V2 = 0;
Reid Spencerb722f2b2007-03-22 22:19:58 +00003745 if ((C2->getValue() & (C2->getValue()+1)) == 0 && // C2 == 0+1+
Chris Lattner01f56c62005-09-18 06:02:59 +00003746 match(A, m_Add(m_Value(V1), m_Value(V2)))) {
3747 // Add commutes, try both ways.
Reid Spencerb722f2b2007-03-22 22:19:58 +00003748 if (V1 == B && MaskedValueIsZero(V2, C2->getValue()))
Chris Lattner01f56c62005-09-18 06:02:59 +00003749 return ReplaceInstUsesWith(I, A);
Reid Spencerb722f2b2007-03-22 22:19:58 +00003750 if (V2 == B && MaskedValueIsZero(V1, C2->getValue()))
Chris Lattner01f56c62005-09-18 06:02:59 +00003751 return ReplaceInstUsesWith(I, A);
3752 }
3753 // Or commutes, try both ways.
Reid Spencerb722f2b2007-03-22 22:19:58 +00003754 if ((C1->getValue() & (C1->getValue()+1)) == 0 &&
Chris Lattner01f56c62005-09-18 06:02:59 +00003755 match(B, m_Add(m_Value(V1), m_Value(V2)))) {
3756 // Add commutes, try both ways.
Reid Spencerb722f2b2007-03-22 22:19:58 +00003757 if (V1 == A && MaskedValueIsZero(V2, C1->getValue()))
Chris Lattner01f56c62005-09-18 06:02:59 +00003758 return ReplaceInstUsesWith(I, B);
Reid Spencerb722f2b2007-03-22 22:19:58 +00003759 if (V2 == A && MaskedValueIsZero(V1, C1->getValue()))
Chris Lattner01f56c62005-09-18 06:02:59 +00003760 return ReplaceInstUsesWith(I, B);
Chris Lattner15212982005-09-18 03:42:07 +00003761 }
3762 }
3763 }
Chris Lattnerf05d69a2006-11-14 07:46:50 +00003764
3765 // (X >> Z) | (Y >> Z) -> (X|Y) >> Z for all shifts.
Reid Spencer2341c222007-02-02 02:16:23 +00003766 if (BinaryOperator *SI1 = dyn_cast<BinaryOperator>(Op1)) {
3767 if (BinaryOperator *SI0 = dyn_cast<BinaryOperator>(Op0))
3768 if (SI0->isShift() && SI0->getOpcode() == SI1->getOpcode() &&
Chris Lattnerf05d69a2006-11-14 07:46:50 +00003769 SI0->getOperand(1) == SI1->getOperand(1) &&
3770 (SI0->hasOneUse() || SI1->hasOneUse())) {
3771 Instruction *NewOp =
3772 InsertNewInstBefore(BinaryOperator::createOr(SI0->getOperand(0),
3773 SI1->getOperand(0),
3774 SI0->getName()), I);
Reid Spencer2341c222007-02-02 02:16:23 +00003775 return BinaryOperator::create(SI1->getOpcode(), NewOp,
3776 SI1->getOperand(1));
Chris Lattnerf05d69a2006-11-14 07:46:50 +00003777 }
3778 }
Chris Lattner812aab72003-08-12 19:11:07 +00003779
Chris Lattnerd4252a72004-07-30 07:50:03 +00003780 if (match(Op0, m_Not(m_Value(A)))) { // ~A | Op1
3781 if (A == Op1) // ~A | A == -1
Misha Brukmanb1c93172005-04-21 23:48:37 +00003782 return ReplaceInstUsesWith(I,
Zhou Sheng75b871f2007-01-11 12:24:14 +00003783 ConstantInt::getAllOnesValue(I.getType()));
Chris Lattnerd4252a72004-07-30 07:50:03 +00003784 } else {
3785 A = 0;
3786 }
Chris Lattner4294cec2005-05-07 23:49:08 +00003787 // Note, A is still live here!
Chris Lattnerd4252a72004-07-30 07:50:03 +00003788 if (match(Op1, m_Not(m_Value(B)))) { // Op0 | ~B
3789 if (Op0 == B)
Misha Brukmanb1c93172005-04-21 23:48:37 +00003790 return ReplaceInstUsesWith(I,
Zhou Sheng75b871f2007-01-11 12:24:14 +00003791 ConstantInt::getAllOnesValue(I.getType()));
Chris Lattner3e327a42003-03-10 23:13:59 +00003792
Misha Brukman9c003d82004-07-30 12:50:08 +00003793 // (~A | ~B) == (~(A & B)) - De Morgan's Law
Chris Lattnerd4252a72004-07-30 07:50:03 +00003794 if (A && isOnlyUse(Op0) && isOnlyUse(Op1)) {
3795 Value *And = InsertNewInstBefore(BinaryOperator::createAnd(A, B,
3796 I.getName()+".demorgan"), I);
3797 return BinaryOperator::createNot(And);
3798 }
Chris Lattner3e327a42003-03-10 23:13:59 +00003799 }
Chris Lattner3082c5a2003-02-18 19:28:33 +00003800
Reid Spencer266e42b2006-12-23 06:05:41 +00003801 // (icmp1 A, B) | (icmp2 A, B) --> (icmp3 A, B)
3802 if (ICmpInst *RHS = dyn_cast<ICmpInst>(I.getOperand(1))) {
3803 if (Instruction *R = AssociativeOpt(I, FoldICmpLogical(*this, RHS)))
Chris Lattner3ac7c262003-08-13 20:16:26 +00003804 return R;
3805
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003806 Value *LHSVal, *RHSVal;
3807 ConstantInt *LHSCst, *RHSCst;
Reid Spencer266e42b2006-12-23 06:05:41 +00003808 ICmpInst::Predicate LHSCC, RHSCC;
3809 if (match(Op0, m_ICmp(LHSCC, m_Value(LHSVal), m_ConstantInt(LHSCst))))
3810 if (match(RHS, m_ICmp(RHSCC, m_Value(RHSVal), m_ConstantInt(RHSCst))))
3811 if (LHSVal == RHSVal && // Found (X icmp C1) | (X icmp C2)
3812 // icmp [us][gl]e x, cst is folded to icmp [us][gl]t elsewhere.
3813 LHSCC != ICmpInst::ICMP_UGE && LHSCC != ICmpInst::ICMP_ULE &&
3814 RHSCC != ICmpInst::ICMP_UGE && RHSCC != ICmpInst::ICMP_ULE &&
3815 LHSCC != ICmpInst::ICMP_SGE && LHSCC != ICmpInst::ICMP_SLE &&
3816 RHSCC != ICmpInst::ICMP_SGE && RHSCC != ICmpInst::ICMP_SLE) {
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003817 // Ensure that the larger constant is on the RHS.
Reid Spencer266e42b2006-12-23 06:05:41 +00003818 ICmpInst::Predicate GT = ICmpInst::isSignedPredicate(LHSCC) ?
3819 ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
3820 Constant *Cmp = ConstantExpr::getICmp(GT, LHSCst, RHSCst);
3821 ICmpInst *LHS = cast<ICmpInst>(Op0);
Reid Spencercddc9df2007-01-12 04:24:46 +00003822 if (cast<ConstantInt>(Cmp)->getZExtValue()) {
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003823 std::swap(LHS, RHS);
3824 std::swap(LHSCst, RHSCst);
3825 std::swap(LHSCC, RHSCC);
3826 }
3827
Reid Spencer266e42b2006-12-23 06:05:41 +00003828 // At this point, we know we have have two icmp instructions
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003829 // comparing a value against two constants and or'ing the result
3830 // together. Because of the above check, we know that we only have
Reid Spencer266e42b2006-12-23 06:05:41 +00003831 // ICMP_EQ, ICMP_NE, ICMP_LT, and ICMP_GT here. We also know (from the
3832 // FoldICmpLogical check above), that the two constants are not
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003833 // equal.
3834 assert(LHSCst != RHSCst && "Compares not folded above?");
3835
3836 switch (LHSCC) {
3837 default: assert(0 && "Unknown integer condition code!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003838 case ICmpInst::ICMP_EQ:
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003839 switch (RHSCC) {
3840 default: assert(0 && "Unknown integer condition code!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003841 case ICmpInst::ICMP_EQ:
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003842 if (LHSCst == SubOne(RHSCst)) {// (X == 13 | X == 14) -> X-13 <u 2
3843 Constant *AddCST = ConstantExpr::getNeg(LHSCst);
3844 Instruction *Add = BinaryOperator::createAdd(LHSVal, AddCST,
3845 LHSVal->getName()+".off");
3846 InsertNewInstBefore(Add, I);
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003847 AddCST = ConstantExpr::getSub(AddOne(RHSCst), LHSCst);
Reid Spencer266e42b2006-12-23 06:05:41 +00003848 return new ICmpInst(ICmpInst::ICMP_ULT, Add, AddCST);
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003849 }
Reid Spencer266e42b2006-12-23 06:05:41 +00003850 break; // (X == 13 | X == 15) -> no change
3851 case ICmpInst::ICMP_UGT: // (X == 13 | X u> 14) -> no change
3852 case ICmpInst::ICMP_SGT: // (X == 13 | X s> 14) -> no change
Chris Lattner5c219462005-04-19 06:04:18 +00003853 break;
Reid Spencer266e42b2006-12-23 06:05:41 +00003854 case ICmpInst::ICMP_NE: // (X == 13 | X != 15) -> X != 15
3855 case ICmpInst::ICMP_ULT: // (X == 13 | X u< 15) -> X u< 15
3856 case ICmpInst::ICMP_SLT: // (X == 13 | X s< 15) -> X s< 15
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003857 return ReplaceInstUsesWith(I, RHS);
3858 }
3859 break;
Reid Spencer266e42b2006-12-23 06:05:41 +00003860 case ICmpInst::ICMP_NE:
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003861 switch (RHSCC) {
3862 default: assert(0 && "Unknown integer condition code!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003863 case ICmpInst::ICMP_EQ: // (X != 13 | X == 15) -> X != 13
3864 case ICmpInst::ICMP_UGT: // (X != 13 | X u> 15) -> X != 13
3865 case ICmpInst::ICMP_SGT: // (X != 13 | X s> 15) -> X != 13
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003866 return ReplaceInstUsesWith(I, LHS);
Reid Spencer266e42b2006-12-23 06:05:41 +00003867 case ICmpInst::ICMP_NE: // (X != 13 | X != 15) -> true
3868 case ICmpInst::ICMP_ULT: // (X != 13 | X u< 15) -> true
3869 case ICmpInst::ICMP_SLT: // (X != 13 | X s< 15) -> true
Zhou Sheng75b871f2007-01-11 12:24:14 +00003870 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003871 }
3872 break;
Reid Spencer266e42b2006-12-23 06:05:41 +00003873 case ICmpInst::ICMP_ULT:
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003874 switch (RHSCC) {
3875 default: assert(0 && "Unknown integer condition code!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003876 case ICmpInst::ICMP_EQ: // (X u< 13 | X == 14) -> no change
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003877 break;
Reid Spencer266e42b2006-12-23 06:05:41 +00003878 case ICmpInst::ICMP_UGT: // (X u< 13 | X u> 15) ->(X-13) u> 2
3879 return InsertRangeTest(LHSVal, LHSCst, AddOne(RHSCst), false,
3880 false, I);
3881 case ICmpInst::ICMP_SGT: // (X u< 13 | X s> 15) -> no change
3882 break;
3883 case ICmpInst::ICMP_NE: // (X u< 13 | X != 15) -> X != 15
3884 case ICmpInst::ICMP_ULT: // (X u< 13 | X u< 15) -> X u< 15
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003885 return ReplaceInstUsesWith(I, RHS);
Reid Spencer266e42b2006-12-23 06:05:41 +00003886 case ICmpInst::ICMP_SLT: // (X u< 13 | X s< 15) -> no change
3887 break;
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003888 }
3889 break;
Reid Spencer266e42b2006-12-23 06:05:41 +00003890 case ICmpInst::ICMP_SLT:
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003891 switch (RHSCC) {
3892 default: assert(0 && "Unknown integer condition code!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003893 case ICmpInst::ICMP_EQ: // (X s< 13 | X == 14) -> no change
3894 break;
3895 case ICmpInst::ICMP_SGT: // (X s< 13 | X s> 15) ->(X-13) s> 2
3896 return InsertRangeTest(LHSVal, LHSCst, AddOne(RHSCst), true,
3897 false, I);
3898 case ICmpInst::ICMP_UGT: // (X s< 13 | X u> 15) -> no change
3899 break;
3900 case ICmpInst::ICMP_NE: // (X s< 13 | X != 15) -> X != 15
3901 case ICmpInst::ICMP_SLT: // (X s< 13 | X s< 15) -> X s< 15
3902 return ReplaceInstUsesWith(I, RHS);
3903 case ICmpInst::ICMP_ULT: // (X s< 13 | X u< 15) -> no change
3904 break;
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003905 }
Reid Spencer266e42b2006-12-23 06:05:41 +00003906 break;
3907 case ICmpInst::ICMP_UGT:
3908 switch (RHSCC) {
3909 default: assert(0 && "Unknown integer condition code!");
3910 case ICmpInst::ICMP_EQ: // (X u> 13 | X == 15) -> X u> 13
3911 case ICmpInst::ICMP_UGT: // (X u> 13 | X u> 15) -> X u> 13
3912 return ReplaceInstUsesWith(I, LHS);
3913 case ICmpInst::ICMP_SGT: // (X u> 13 | X s> 15) -> no change
3914 break;
3915 case ICmpInst::ICMP_NE: // (X u> 13 | X != 15) -> true
3916 case ICmpInst::ICMP_ULT: // (X u> 13 | X u< 15) -> true
Zhou Sheng75b871f2007-01-11 12:24:14 +00003917 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Reid Spencer266e42b2006-12-23 06:05:41 +00003918 case ICmpInst::ICMP_SLT: // (X u> 13 | X s< 15) -> no change
3919 break;
3920 }
3921 break;
3922 case ICmpInst::ICMP_SGT:
3923 switch (RHSCC) {
3924 default: assert(0 && "Unknown integer condition code!");
3925 case ICmpInst::ICMP_EQ: // (X s> 13 | X == 15) -> X > 13
3926 case ICmpInst::ICMP_SGT: // (X s> 13 | X s> 15) -> X > 13
3927 return ReplaceInstUsesWith(I, LHS);
3928 case ICmpInst::ICMP_UGT: // (X s> 13 | X u> 15) -> no change
3929 break;
3930 case ICmpInst::ICMP_NE: // (X s> 13 | X != 15) -> true
3931 case ICmpInst::ICMP_SLT: // (X s> 13 | X s< 15) -> true
Zhou Sheng75b871f2007-01-11 12:24:14 +00003932 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Reid Spencer266e42b2006-12-23 06:05:41 +00003933 case ICmpInst::ICMP_ULT: // (X s> 13 | X u< 15) -> no change
3934 break;
3935 }
3936 break;
Chris Lattnerdcf756e2004-09-28 22:33:08 +00003937 }
3938 }
3939 }
Chris Lattner3af10532006-05-05 06:39:07 +00003940
3941 // fold (or (cast A), (cast B)) -> (cast (or A, B))
Reid Spencer799b5bf2006-12-13 08:27:15 +00003942 if (CastInst *Op0C = dyn_cast<CastInst>(Op0))
Chris Lattner3af10532006-05-05 06:39:07 +00003943 if (CastInst *Op1C = dyn_cast<CastInst>(Op1))
Reid Spencer799b5bf2006-12-13 08:27:15 +00003944 if (Op0C->getOpcode() == Op1C->getOpcode()) {// same cast kind ?
3945 const Type *SrcTy = Op0C->getOperand(0)->getType();
Chris Lattner03c49532007-01-15 02:27:26 +00003946 if (SrcTy == Op1C->getOperand(0)->getType() && SrcTy->isInteger() &&
Reid Spencer799b5bf2006-12-13 08:27:15 +00003947 // Only do this if the casts both really cause code to be generated.
Reid Spencer266e42b2006-12-23 06:05:41 +00003948 ValueRequiresCast(Op0C->getOpcode(), Op0C->getOperand(0),
3949 I.getType(), TD) &&
3950 ValueRequiresCast(Op1C->getOpcode(), Op1C->getOperand(0),
3951 I.getType(), TD)) {
Reid Spencer799b5bf2006-12-13 08:27:15 +00003952 Instruction *NewOp = BinaryOperator::createOr(Op0C->getOperand(0),
3953 Op1C->getOperand(0),
3954 I.getName());
3955 InsertNewInstBefore(NewOp, I);
3956 return CastInst::create(Op0C->getOpcode(), NewOp, I.getType());
3957 }
Chris Lattner3af10532006-05-05 06:39:07 +00003958 }
Chris Lattner3af10532006-05-05 06:39:07 +00003959
Chris Lattner15212982005-09-18 03:42:07 +00003960
Chris Lattner113f4f42002-06-25 16:13:24 +00003961 return Changed ? &I : 0;
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00003962}
3963
Chris Lattnerc2076352004-02-16 01:20:27 +00003964// XorSelf - Implements: X ^ X --> 0
3965struct XorSelf {
3966 Value *RHS;
3967 XorSelf(Value *rhs) : RHS(rhs) {}
3968 bool shouldApply(Value *LHS) const { return LHS == RHS; }
3969 Instruction *apply(BinaryOperator &Xor) const {
3970 return &Xor;
3971 }
3972};
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00003973
3974
Chris Lattner113f4f42002-06-25 16:13:24 +00003975Instruction *InstCombiner::visitXor(BinaryOperator &I) {
Chris Lattnerdcf240a2003-03-10 21:43:22 +00003976 bool Changed = SimplifyCommutative(I);
Chris Lattner113f4f42002-06-25 16:13:24 +00003977 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00003978
Chris Lattner81a7a232004-10-16 18:11:37 +00003979 if (isa<UndefValue>(Op1))
3980 return ReplaceInstUsesWith(I, Op1); // X ^ undef -> undef
3981
Chris Lattnerc2076352004-02-16 01:20:27 +00003982 // xor X, X = 0, even if X is nested in a sequence of Xor's.
3983 if (Instruction *Result = AssociativeOpt(I, XorSelf(Op1))) {
3984 assert(Result == &I && "AssociativeOpt didn't work?");
Chris Lattnere6794492002-08-12 21:17:25 +00003985 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattnerc2076352004-02-16 01:20:27 +00003986 }
Chris Lattner5b2edb12006-02-12 08:02:11 +00003987
3988 // See if we can simplify any instructions used by the instruction whose sole
3989 // purpose is to compute bits we don't care about.
Reid Spencerb722f2b2007-03-22 22:19:58 +00003990 if (!isa<VectorType>(I.getType())) {
3991 uint32_t BitWidth = cast<IntegerType>(I.getType())->getBitWidth();
3992 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
3993 if (SimplifyDemandedBits(&I, APInt::getAllOnesValue(BitWidth),
3994 KnownZero, KnownOne))
3995 return &I;
3996 }
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00003997
Zhou Sheng75b871f2007-01-11 12:24:14 +00003998 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
Reid Spencer266e42b2006-12-23 06:05:41 +00003999 // xor (icmp A, B), true = not (icmp A, B) = !icmp A, B
4000 if (ICmpInst *ICI = dyn_cast<ICmpInst>(Op0))
Zhou Sheng75b871f2007-01-11 12:24:14 +00004001 if (RHS == ConstantInt::getTrue() && ICI->hasOneUse())
Reid Spencer266e42b2006-12-23 06:05:41 +00004002 return new ICmpInst(ICI->getInversePredicate(),
4003 ICI->getOperand(0), ICI->getOperand(1));
Chris Lattnere5806662003-11-04 23:50:51 +00004004
Reid Spencer266e42b2006-12-23 06:05:41 +00004005 if (BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0)) {
Chris Lattner8f2f5982003-11-05 01:06:05 +00004006 // ~(c-X) == X-c-1 == X+(-c-1)
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00004007 if (Op0I->getOpcode() == Instruction::Sub && RHS->isAllOnesValue())
4008 if (Constant *Op0I0C = dyn_cast<Constant>(Op0I->getOperand(0))) {
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00004009 Constant *NegOp0I0C = ConstantExpr::getNeg(Op0I0C);
4010 Constant *ConstantRHS = ConstantExpr::getSub(NegOp0I0C,
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00004011 ConstantInt::get(I.getType(), 1));
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00004012 return BinaryOperator::createAdd(Op0I->getOperand(1), ConstantRHS);
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00004013 }
Chris Lattner023a4832004-06-18 06:07:51 +00004014
4015 // ~(~X & Y) --> (X | ~Y)
4016 if (Op0I->getOpcode() == Instruction::And && RHS->isAllOnesValue()) {
4017 if (dyn_castNotVal(Op0I->getOperand(1))) Op0I->swapOperands();
4018 if (Value *Op0NotVal = dyn_castNotVal(Op0I->getOperand(0))) {
4019 Instruction *NotY =
Misha Brukmanb1c93172005-04-21 23:48:37 +00004020 BinaryOperator::createNot(Op0I->getOperand(1),
Chris Lattner023a4832004-06-18 06:07:51 +00004021 Op0I->getOperand(1)->getName()+".not");
4022 InsertNewInstBefore(NotY, I);
4023 return BinaryOperator::createOr(Op0NotVal, NotY);
4024 }
4025 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00004026
Chris Lattner97638592003-07-23 21:37:07 +00004027 if (ConstantInt *Op0CI = dyn_cast<ConstantInt>(Op0I->getOperand(1)))
Chris Lattner5b2edb12006-02-12 08:02:11 +00004028 if (Op0I->getOpcode() == Instruction::Add) {
Chris Lattner0f68fa62003-11-04 23:37:10 +00004029 // ~(X-c) --> (-c-1)-X
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00004030 if (RHS->isAllOnesValue()) {
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00004031 Constant *NegOp0CI = ConstantExpr::getNeg(Op0CI);
4032 return BinaryOperator::createSub(
4033 ConstantExpr::getSub(NegOp0CI,
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00004034 ConstantInt::get(I.getType(), 1)),
Chris Lattner0f68fa62003-11-04 23:37:10 +00004035 Op0I->getOperand(0));
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00004036 }
Chris Lattnerf78df7c2006-02-26 19:57:54 +00004037 } else if (Op0I->getOpcode() == Instruction::Or) {
4038 // (X|C1)^C2 -> X^(C1|C2) iff X&~C1 == 0
Reid Spencerb722f2b2007-03-22 22:19:58 +00004039 if (MaskedValueIsZero(Op0I->getOperand(0), Op0CI->getValue())) {
Chris Lattnerf78df7c2006-02-26 19:57:54 +00004040 Constant *NewRHS = ConstantExpr::getOr(Op0CI, RHS);
4041 // Anything in both C1 and C2 is known to be zero, remove it from
4042 // NewRHS.
4043 Constant *CommonBits = ConstantExpr::getAnd(Op0CI, RHS);
4044 NewRHS = ConstantExpr::getAnd(NewRHS,
4045 ConstantExpr::getNot(CommonBits));
Chris Lattnerb15e2b12007-03-02 21:28:56 +00004046 AddToWorkList(Op0I);
Chris Lattnerf78df7c2006-02-26 19:57:54 +00004047 I.setOperand(0, Op0I->getOperand(0));
4048 I.setOperand(1, NewRHS);
4049 return &I;
4050 }
Chris Lattner97638592003-07-23 21:37:07 +00004051 }
Chris Lattnerb8d6e402002-08-20 18:24:26 +00004052 }
Chris Lattner183b3362004-04-09 19:05:30 +00004053
4054 // Try to fold constant and into select arguments.
4055 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
Chris Lattner86102b82005-01-01 16:22:27 +00004056 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
Chris Lattner183b3362004-04-09 19:05:30 +00004057 return R;
Chris Lattner6a4adcd2004-09-29 05:07:12 +00004058 if (isa<PHINode>(Op0))
4059 if (Instruction *NV = FoldOpIntoPhi(I))
4060 return NV;
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00004061 }
4062
Chris Lattnerbb74e222003-03-10 23:06:50 +00004063 if (Value *X = dyn_castNotVal(Op0)) // ~A ^ A == -1
Chris Lattner3082c5a2003-02-18 19:28:33 +00004064 if (X == Op1)
4065 return ReplaceInstUsesWith(I,
Zhou Sheng75b871f2007-01-11 12:24:14 +00004066 ConstantInt::getAllOnesValue(I.getType()));
Chris Lattner3082c5a2003-02-18 19:28:33 +00004067
Chris Lattnerbb74e222003-03-10 23:06:50 +00004068 if (Value *X = dyn_castNotVal(Op1)) // A ^ ~A == -1
Chris Lattner3082c5a2003-02-18 19:28:33 +00004069 if (X == Op0)
Chris Lattner07418422007-03-18 22:51:34 +00004070 return ReplaceInstUsesWith(I, ConstantInt::getAllOnesValue(I.getType()));
Chris Lattner3082c5a2003-02-18 19:28:33 +00004071
Chris Lattner07418422007-03-18 22:51:34 +00004072
4073 BinaryOperator *Op1I = dyn_cast<BinaryOperator>(Op1);
4074 if (Op1I) {
4075 Value *A, *B;
4076 if (match(Op1I, m_Or(m_Value(A), m_Value(B)))) {
4077 if (A == Op0) { // B^(B|A) == (A|B)^B
Chris Lattnerdcd07922006-04-01 08:03:55 +00004078 Op1I->swapOperands();
Chris Lattner1bbb7b62003-03-10 18:24:17 +00004079 I.swapOperands();
4080 std::swap(Op0, Op1);
Chris Lattner07418422007-03-18 22:51:34 +00004081 } else if (B == Op0) { // B^(A|B) == (A|B)^B
Chris Lattnerdcd07922006-04-01 08:03:55 +00004082 I.swapOperands(); // Simplified below.
Chris Lattner1bbb7b62003-03-10 18:24:17 +00004083 std::swap(Op0, Op1);
Misha Brukmanb1c93172005-04-21 23:48:37 +00004084 }
Chris Lattner07418422007-03-18 22:51:34 +00004085 } else if (match(Op1I, m_Xor(m_Value(A), m_Value(B)))) {
4086 if (Op0 == A) // A^(A^B) == B
4087 return ReplaceInstUsesWith(I, B);
4088 else if (Op0 == B) // A^(B^A) == B
4089 return ReplaceInstUsesWith(I, A);
4090 } else if (match(Op1I, m_And(m_Value(A), m_Value(B))) && Op1I->hasOneUse()){
4091 if (A == Op0) // A^(A&B) -> A^(B&A)
Chris Lattnerdcd07922006-04-01 08:03:55 +00004092 Op1I->swapOperands();
Chris Lattner07418422007-03-18 22:51:34 +00004093 if (B == Op0) { // A^(B&A) -> (B&A)^A
Chris Lattnerdcd07922006-04-01 08:03:55 +00004094 I.swapOperands(); // Simplified below.
4095 std::swap(Op0, Op1);
4096 }
Chris Lattnerb36d9082004-02-16 03:54:20 +00004097 }
Chris Lattner07418422007-03-18 22:51:34 +00004098 }
4099
4100 BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0);
4101 if (Op0I) {
4102 Value *A, *B;
4103 if (match(Op0I, m_Or(m_Value(A), m_Value(B))) && Op0I->hasOneUse()) {
4104 if (A == Op1) // (B|A)^B == (A|B)^B
4105 std::swap(A, B);
4106 if (B == Op1) { // (A|B)^B == A & ~B
4107 Instruction *NotB =
4108 InsertNewInstBefore(BinaryOperator::createNot(Op1, "tmp"), I);
4109 return BinaryOperator::createAnd(A, NotB);
Chris Lattner1bbb7b62003-03-10 18:24:17 +00004110 }
Chris Lattner07418422007-03-18 22:51:34 +00004111 } else if (match(Op0I, m_Xor(m_Value(A), m_Value(B)))) {
4112 if (Op1 == A) // (A^B)^A == B
4113 return ReplaceInstUsesWith(I, B);
4114 else if (Op1 == B) // (B^A)^A == B
4115 return ReplaceInstUsesWith(I, A);
4116 } else if (match(Op0I, m_And(m_Value(A), m_Value(B))) && Op0I->hasOneUse()){
4117 if (A == Op1) // (A&B)^A -> (B&A)^A
4118 std::swap(A, B);
4119 if (B == Op1 && // (B&A)^A == ~B & A
Chris Lattner6cf49142006-04-01 22:05:01 +00004120 !isa<ConstantInt>(Op1)) { // Canonical form is (B&C)^C
Chris Lattner07418422007-03-18 22:51:34 +00004121 Instruction *N =
4122 InsertNewInstBefore(BinaryOperator::createNot(A, "tmp"), I);
Chris Lattnerdcd07922006-04-01 08:03:55 +00004123 return BinaryOperator::createAnd(N, Op1);
4124 }
Chris Lattner1bbb7b62003-03-10 18:24:17 +00004125 }
Chris Lattner07418422007-03-18 22:51:34 +00004126 }
4127
4128 // (X >> Z) ^ (Y >> Z) -> (X^Y) >> Z for all shifts.
4129 if (Op0I && Op1I && Op0I->isShift() &&
4130 Op0I->getOpcode() == Op1I->getOpcode() &&
4131 Op0I->getOperand(1) == Op1I->getOperand(1) &&
4132 (Op1I->hasOneUse() || Op1I->hasOneUse())) {
4133 Instruction *NewOp =
4134 InsertNewInstBefore(BinaryOperator::createXor(Op0I->getOperand(0),
4135 Op1I->getOperand(0),
4136 Op0I->getName()), I);
4137 return BinaryOperator::create(Op1I->getOpcode(), NewOp,
4138 Op1I->getOperand(1));
4139 }
4140
4141 if (Op0I && Op1I) {
4142 Value *A, *B, *C, *D;
4143 // (A & B)^(A | B) -> A ^ B
4144 if (match(Op0I, m_And(m_Value(A), m_Value(B))) &&
4145 match(Op1I, m_Or(m_Value(C), m_Value(D)))) {
4146 if ((A == C && B == D) || (A == D && B == C))
4147 return BinaryOperator::createXor(A, B);
4148 }
4149 // (A | B)^(A & B) -> A ^ B
4150 if (match(Op0I, m_Or(m_Value(A), m_Value(B))) &&
4151 match(Op1I, m_And(m_Value(C), m_Value(D)))) {
4152 if ((A == C && B == D) || (A == D && B == C))
4153 return BinaryOperator::createXor(A, B);
4154 }
4155
4156 // (A & B)^(C & D)
4157 if ((Op0I->hasOneUse() || Op1I->hasOneUse()) &&
4158 match(Op0I, m_And(m_Value(A), m_Value(B))) &&
4159 match(Op1I, m_And(m_Value(C), m_Value(D)))) {
4160 // (X & Y)^(X & Y) -> (Y^Z) & X
4161 Value *X = 0, *Y = 0, *Z = 0;
4162 if (A == C)
4163 X = A, Y = B, Z = D;
4164 else if (A == D)
4165 X = A, Y = B, Z = C;
4166 else if (B == C)
4167 X = B, Y = A, Z = D;
4168 else if (B == D)
4169 X = B, Y = A, Z = C;
4170
4171 if (X) {
4172 Instruction *NewOp =
4173 InsertNewInstBefore(BinaryOperator::createXor(Y, Z, Op0->getName()), I);
4174 return BinaryOperator::createAnd(NewOp, X);
4175 }
4176 }
4177 }
4178
Reid Spencer266e42b2006-12-23 06:05:41 +00004179 // (icmp1 A, B) ^ (icmp2 A, B) --> (icmp3 A, B)
4180 if (ICmpInst *RHS = dyn_cast<ICmpInst>(I.getOperand(1)))
4181 if (Instruction *R = AssociativeOpt(I, FoldICmpLogical(*this, RHS)))
Chris Lattner3ac7c262003-08-13 20:16:26 +00004182 return R;
4183
Chris Lattner3af10532006-05-05 06:39:07 +00004184 // fold (xor (cast A), (cast B)) -> (cast (xor A, B))
Reid Spencer799b5bf2006-12-13 08:27:15 +00004185 if (CastInst *Op0C = dyn_cast<CastInst>(Op0))
Chris Lattner3af10532006-05-05 06:39:07 +00004186 if (CastInst *Op1C = dyn_cast<CastInst>(Op1))
Reid Spencer799b5bf2006-12-13 08:27:15 +00004187 if (Op0C->getOpcode() == Op1C->getOpcode()) { // same cast kind?
4188 const Type *SrcTy = Op0C->getOperand(0)->getType();
Chris Lattner03c49532007-01-15 02:27:26 +00004189 if (SrcTy == Op1C->getOperand(0)->getType() && SrcTy->isInteger() &&
Reid Spencer799b5bf2006-12-13 08:27:15 +00004190 // Only do this if the casts both really cause code to be generated.
Reid Spencer266e42b2006-12-23 06:05:41 +00004191 ValueRequiresCast(Op0C->getOpcode(), Op0C->getOperand(0),
4192 I.getType(), TD) &&
4193 ValueRequiresCast(Op1C->getOpcode(), Op1C->getOperand(0),
4194 I.getType(), TD)) {
Reid Spencer799b5bf2006-12-13 08:27:15 +00004195 Instruction *NewOp = BinaryOperator::createXor(Op0C->getOperand(0),
4196 Op1C->getOperand(0),
4197 I.getName());
4198 InsertNewInstBefore(NewOp, I);
4199 return CastInst::create(Op0C->getOpcode(), NewOp, I.getType());
4200 }
Chris Lattner3af10532006-05-05 06:39:07 +00004201 }
Chris Lattnerf05d69a2006-11-14 07:46:50 +00004202
Chris Lattner113f4f42002-06-25 16:13:24 +00004203 return Changed ? &I : 0;
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00004204}
4205
Chris Lattner6862fbd2004-09-29 17:40:11 +00004206/// AddWithOverflow - Compute Result = In1+In2, returning true if the result
4207/// overflowed for this type.
4208static bool AddWithOverflow(ConstantInt *&Result, ConstantInt *In1,
Reid Spencerf4071162007-03-21 23:19:50 +00004209 ConstantInt *In2, bool IsSigned = false) {
Chris Lattner6862fbd2004-09-29 17:40:11 +00004210 Result = cast<ConstantInt>(ConstantExpr::getAdd(In1, In2));
4211
Reid Spencerf4071162007-03-21 23:19:50 +00004212 if (IsSigned)
4213 if (In2->getValue().isNegative())
4214 return Result->getValue().sgt(In1->getValue());
4215 else
4216 return Result->getValue().slt(In1->getValue());
4217 else
4218 return Result->getValue().ult(In1->getValue());
Chris Lattner6862fbd2004-09-29 17:40:11 +00004219}
4220
Chris Lattner0798af32005-01-13 20:14:25 +00004221/// EmitGEPOffset - Given a getelementptr instruction/constantexpr, emit the
4222/// code necessary to compute the offset from the base pointer (without adding
4223/// in the base pointer). Return the result as a signed integer of intptr size.
4224static Value *EmitGEPOffset(User *GEP, Instruction &I, InstCombiner &IC) {
4225 TargetData &TD = IC.getTargetData();
4226 gep_type_iterator GTI = gep_type_begin(GEP);
Reid Spencer266e42b2006-12-23 06:05:41 +00004227 const Type *IntPtrTy = TD.getIntPtrType();
4228 Value *Result = Constant::getNullValue(IntPtrTy);
Chris Lattner0798af32005-01-13 20:14:25 +00004229
4230 // Build a mask for high order bits.
Chris Lattner77defba2006-02-07 07:00:41 +00004231 uint64_t PtrSizeMask = ~0ULL >> (64-TD.getPointerSize()*8);
Chris Lattner0798af32005-01-13 20:14:25 +00004232
Chris Lattner0798af32005-01-13 20:14:25 +00004233 for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i, ++GTI) {
4234 Value *Op = GEP->getOperand(i);
Chris Lattnerd35d2102005-01-13 23:26:48 +00004235 uint64_t Size = TD.getTypeSize(GTI.getIndexedType()) & PtrSizeMask;
Reid Spencer266e42b2006-12-23 06:05:41 +00004236 Constant *Scale = ConstantInt::get(IntPtrTy, Size);
Chris Lattner0798af32005-01-13 20:14:25 +00004237 if (Constant *OpC = dyn_cast<Constant>(Op)) {
4238 if (!OpC->isNullValue()) {
Reid Spencer266e42b2006-12-23 06:05:41 +00004239 OpC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
Chris Lattner0798af32005-01-13 20:14:25 +00004240 Scale = ConstantExpr::getMul(OpC, Scale);
4241 if (Constant *RC = dyn_cast<Constant>(Result))
4242 Result = ConstantExpr::getAdd(RC, Scale);
4243 else {
4244 // Emit an add instruction.
4245 Result = IC.InsertNewInstBefore(
4246 BinaryOperator::createAdd(Result, Scale,
4247 GEP->getName()+".offs"), I);
4248 }
4249 }
4250 } else {
Chris Lattner7aa41cf2005-01-14 17:17:59 +00004251 // Convert to correct type.
Reid Spencer266e42b2006-12-23 06:05:41 +00004252 Op = IC.InsertNewInstBefore(CastInst::createSExtOrBitCast(Op, IntPtrTy,
Chris Lattner7aa41cf2005-01-14 17:17:59 +00004253 Op->getName()+".c"), I);
4254 if (Size != 1)
Chris Lattner4cb9fa32005-01-13 20:40:58 +00004255 // We'll let instcombine(mul) convert this to a shl if possible.
4256 Op = IC.InsertNewInstBefore(BinaryOperator::createMul(Op, Scale,
4257 GEP->getName()+".idx"), I);
Chris Lattner0798af32005-01-13 20:14:25 +00004258
4259 // Emit an add instruction.
Chris Lattner4cb9fa32005-01-13 20:40:58 +00004260 Result = IC.InsertNewInstBefore(BinaryOperator::createAdd(Op, Result,
Chris Lattner0798af32005-01-13 20:14:25 +00004261 GEP->getName()+".offs"), I);
4262 }
4263 }
4264 return Result;
4265}
4266
Reid Spencer266e42b2006-12-23 06:05:41 +00004267/// FoldGEPICmp - Fold comparisons between a GEP instruction and something
Chris Lattner0798af32005-01-13 20:14:25 +00004268/// else. At this point we know that the GEP is on the LHS of the comparison.
Reid Spencer266e42b2006-12-23 06:05:41 +00004269Instruction *InstCombiner::FoldGEPICmp(User *GEPLHS, Value *RHS,
4270 ICmpInst::Predicate Cond,
4271 Instruction &I) {
Chris Lattner0798af32005-01-13 20:14:25 +00004272 assert(dyn_castGetElementPtr(GEPLHS) && "LHS is not a getelementptr!");
Chris Lattner81e84172005-01-13 22:25:21 +00004273
4274 if (CastInst *CI = dyn_cast<CastInst>(RHS))
4275 if (isa<PointerType>(CI->getOperand(0)->getType()))
4276 RHS = CI->getOperand(0);
4277
Chris Lattner0798af32005-01-13 20:14:25 +00004278 Value *PtrBase = GEPLHS->getOperand(0);
4279 if (PtrBase == RHS) {
4280 // As an optimization, we don't actually have to compute the actual value of
Reid Spencer266e42b2006-12-23 06:05:41 +00004281 // OFFSET if this is a icmp_eq or icmp_ne comparison, just return whether
4282 // each index is zero or not.
4283 if (Cond == ICmpInst::ICMP_EQ || Cond == ICmpInst::ICMP_NE) {
Chris Lattner81e84172005-01-13 22:25:21 +00004284 Instruction *InVal = 0;
Chris Lattnercd517ff2005-01-28 19:32:01 +00004285 gep_type_iterator GTI = gep_type_begin(GEPLHS);
4286 for (unsigned i = 1, e = GEPLHS->getNumOperands(); i != e; ++i, ++GTI) {
Chris Lattner81e84172005-01-13 22:25:21 +00004287 bool EmitIt = true;
4288 if (Constant *C = dyn_cast<Constant>(GEPLHS->getOperand(i))) {
4289 if (isa<UndefValue>(C)) // undef index -> undef.
4290 return ReplaceInstUsesWith(I, UndefValue::get(I.getType()));
4291 if (C->isNullValue())
4292 EmitIt = false;
Chris Lattnercd517ff2005-01-28 19:32:01 +00004293 else if (TD->getTypeSize(GTI.getIndexedType()) == 0) {
4294 EmitIt = false; // This is indexing into a zero sized array?
Misha Brukmanb1c93172005-04-21 23:48:37 +00004295 } else if (isa<ConstantInt>(C))
Chris Lattner81e84172005-01-13 22:25:21 +00004296 return ReplaceInstUsesWith(I, // No comparison is needed here.
Reid Spencercddc9df2007-01-12 04:24:46 +00004297 ConstantInt::get(Type::Int1Ty,
4298 Cond == ICmpInst::ICMP_NE));
Chris Lattner81e84172005-01-13 22:25:21 +00004299 }
4300
4301 if (EmitIt) {
Misha Brukmanb1c93172005-04-21 23:48:37 +00004302 Instruction *Comp =
Reid Spencer266e42b2006-12-23 06:05:41 +00004303 new ICmpInst(Cond, GEPLHS->getOperand(i),
Chris Lattner81e84172005-01-13 22:25:21 +00004304 Constant::getNullValue(GEPLHS->getOperand(i)->getType()));
4305 if (InVal == 0)
4306 InVal = Comp;
4307 else {
4308 InVal = InsertNewInstBefore(InVal, I);
4309 InsertNewInstBefore(Comp, I);
Reid Spencer266e42b2006-12-23 06:05:41 +00004310 if (Cond == ICmpInst::ICMP_NE) // True if any are unequal
Chris Lattner81e84172005-01-13 22:25:21 +00004311 InVal = BinaryOperator::createOr(InVal, Comp);
4312 else // True if all are equal
4313 InVal = BinaryOperator::createAnd(InVal, Comp);
4314 }
4315 }
4316 }
4317
4318 if (InVal)
4319 return InVal;
4320 else
Reid Spencer266e42b2006-12-23 06:05:41 +00004321 // No comparison is needed here, all indexes = 0
Reid Spencercddc9df2007-01-12 04:24:46 +00004322 ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty,
4323 Cond == ICmpInst::ICMP_EQ));
Chris Lattner81e84172005-01-13 22:25:21 +00004324 }
Chris Lattner0798af32005-01-13 20:14:25 +00004325
Reid Spencer266e42b2006-12-23 06:05:41 +00004326 // Only lower this if the icmp is the only user of the GEP or if we expect
Chris Lattner0798af32005-01-13 20:14:25 +00004327 // the result to fold to a constant!
4328 if (isa<ConstantExpr>(GEPLHS) || GEPLHS->hasOneUse()) {
4329 // ((gep Ptr, OFFSET) cmp Ptr) ---> (OFFSET cmp 0).
4330 Value *Offset = EmitGEPOffset(GEPLHS, I, *this);
Reid Spencer266e42b2006-12-23 06:05:41 +00004331 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), Offset,
4332 Constant::getNullValue(Offset->getType()));
Chris Lattner0798af32005-01-13 20:14:25 +00004333 }
4334 } else if (User *GEPRHS = dyn_castGetElementPtr(RHS)) {
Chris Lattnera21bf8d2005-04-25 20:17:30 +00004335 // If the base pointers are different, but the indices are the same, just
4336 // compare the base pointer.
4337 if (PtrBase != GEPRHS->getOperand(0)) {
4338 bool IndicesTheSame = GEPLHS->getNumOperands()==GEPRHS->getNumOperands();
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00004339 IndicesTheSame &= GEPLHS->getOperand(0)->getType() ==
Chris Lattnerbd43b9d2005-04-26 14:40:41 +00004340 GEPRHS->getOperand(0)->getType();
Chris Lattnera21bf8d2005-04-25 20:17:30 +00004341 if (IndicesTheSame)
4342 for (unsigned i = 1, e = GEPLHS->getNumOperands(); i != e; ++i)
4343 if (GEPLHS->getOperand(i) != GEPRHS->getOperand(i)) {
4344 IndicesTheSame = false;
4345 break;
4346 }
4347
4348 // If all indices are the same, just compare the base pointers.
4349 if (IndicesTheSame)
Reid Spencer266e42b2006-12-23 06:05:41 +00004350 return new ICmpInst(ICmpInst::getSignedPredicate(Cond),
4351 GEPLHS->getOperand(0), GEPRHS->getOperand(0));
Chris Lattnera21bf8d2005-04-25 20:17:30 +00004352
4353 // Otherwise, the base pointers are different and the indices are
4354 // different, bail out.
Chris Lattner0798af32005-01-13 20:14:25 +00004355 return 0;
Chris Lattnera21bf8d2005-04-25 20:17:30 +00004356 }
Chris Lattner0798af32005-01-13 20:14:25 +00004357
Chris Lattner81e84172005-01-13 22:25:21 +00004358 // If one of the GEPs has all zero indices, recurse.
4359 bool AllZeros = true;
4360 for (unsigned i = 1, e = GEPLHS->getNumOperands(); i != e; ++i)
4361 if (!isa<Constant>(GEPLHS->getOperand(i)) ||
4362 !cast<Constant>(GEPLHS->getOperand(i))->isNullValue()) {
4363 AllZeros = false;
4364 break;
4365 }
4366 if (AllZeros)
Reid Spencer266e42b2006-12-23 06:05:41 +00004367 return FoldGEPICmp(GEPRHS, GEPLHS->getOperand(0),
4368 ICmpInst::getSwappedPredicate(Cond), I);
Chris Lattner4fa89822005-01-14 00:20:05 +00004369
4370 // If the other GEP has all zero indices, recurse.
Chris Lattner81e84172005-01-13 22:25:21 +00004371 AllZeros = true;
4372 for (unsigned i = 1, e = GEPRHS->getNumOperands(); i != e; ++i)
4373 if (!isa<Constant>(GEPRHS->getOperand(i)) ||
4374 !cast<Constant>(GEPRHS->getOperand(i))->isNullValue()) {
4375 AllZeros = false;
4376 break;
4377 }
4378 if (AllZeros)
Reid Spencer266e42b2006-12-23 06:05:41 +00004379 return FoldGEPICmp(GEPLHS, GEPRHS->getOperand(0), Cond, I);
Chris Lattner81e84172005-01-13 22:25:21 +00004380
Chris Lattner4fa89822005-01-14 00:20:05 +00004381 if (GEPLHS->getNumOperands() == GEPRHS->getNumOperands()) {
4382 // If the GEPs only differ by one index, compare it.
4383 unsigned NumDifferences = 0; // Keep track of # differences.
4384 unsigned DiffOperand = 0; // The operand that differs.
4385 for (unsigned i = 1, e = GEPRHS->getNumOperands(); i != e; ++i)
4386 if (GEPLHS->getOperand(i) != GEPRHS->getOperand(i)) {
Chris Lattnerd1f46d32005-04-24 06:59:08 +00004387 if (GEPLHS->getOperand(i)->getType()->getPrimitiveSizeInBits() !=
4388 GEPRHS->getOperand(i)->getType()->getPrimitiveSizeInBits()) {
Chris Lattnerfc4429e2005-01-21 23:06:49 +00004389 // Irreconcilable differences.
Chris Lattner4fa89822005-01-14 00:20:05 +00004390 NumDifferences = 2;
4391 break;
4392 } else {
4393 if (NumDifferences++) break;
4394 DiffOperand = i;
4395 }
4396 }
4397
4398 if (NumDifferences == 0) // SAME GEP?
4399 return ReplaceInstUsesWith(I, // No comparison is needed here.
Reid Spencercddc9df2007-01-12 04:24:46 +00004400 ConstantInt::get(Type::Int1Ty,
4401 Cond == ICmpInst::ICMP_EQ));
Chris Lattner4fa89822005-01-14 00:20:05 +00004402 else if (NumDifferences == 1) {
Chris Lattnerfc4429e2005-01-21 23:06:49 +00004403 Value *LHSV = GEPLHS->getOperand(DiffOperand);
4404 Value *RHSV = GEPRHS->getOperand(DiffOperand);
Reid Spencer266e42b2006-12-23 06:05:41 +00004405 // Make sure we do a signed comparison here.
4406 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), LHSV, RHSV);
Chris Lattner4fa89822005-01-14 00:20:05 +00004407 }
4408 }
4409
Reid Spencer266e42b2006-12-23 06:05:41 +00004410 // Only lower this if the icmp is the only user of the GEP or if we expect
Chris Lattner0798af32005-01-13 20:14:25 +00004411 // the result to fold to a constant!
4412 if ((isa<ConstantExpr>(GEPLHS) || GEPLHS->hasOneUse()) &&
4413 (isa<ConstantExpr>(GEPRHS) || GEPRHS->hasOneUse())) {
4414 // ((gep Ptr, OFFSET1) cmp (gep Ptr, OFFSET2) ---> (OFFSET1 cmp OFFSET2)
4415 Value *L = EmitGEPOffset(GEPLHS, I, *this);
4416 Value *R = EmitGEPOffset(GEPRHS, I, *this);
Reid Spencer266e42b2006-12-23 06:05:41 +00004417 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), L, R);
Chris Lattner0798af32005-01-13 20:14:25 +00004418 }
4419 }
4420 return 0;
4421}
4422
Reid Spencer266e42b2006-12-23 06:05:41 +00004423Instruction *InstCombiner::visitFCmpInst(FCmpInst &I) {
4424 bool Changed = SimplifyCompare(I);
Chris Lattner6d14f2a2002-08-09 23:47:40 +00004425 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00004426
Chris Lattner6ee923f2007-01-14 19:42:17 +00004427 // Fold trivial predicates.
4428 if (I.getPredicate() == FCmpInst::FCMP_FALSE)
4429 return ReplaceInstUsesWith(I, Constant::getNullValue(Type::Int1Ty));
4430 if (I.getPredicate() == FCmpInst::FCMP_TRUE)
4431 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 1));
4432
4433 // Simplify 'fcmp pred X, X'
4434 if (Op0 == Op1) {
4435 switch (I.getPredicate()) {
4436 default: assert(0 && "Unknown predicate!");
4437 case FCmpInst::FCMP_UEQ: // True if unordered or equal
4438 case FCmpInst::FCMP_UGE: // True if unordered, greater than, or equal
4439 case FCmpInst::FCMP_ULE: // True if unordered, less than, or equal
4440 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 1));
4441 case FCmpInst::FCMP_OGT: // True if ordered and greater than
4442 case FCmpInst::FCMP_OLT: // True if ordered and less than
4443 case FCmpInst::FCMP_ONE: // True if ordered and operands are unequal
4444 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 0));
4445
4446 case FCmpInst::FCMP_UNO: // True if unordered: isnan(X) | isnan(Y)
4447 case FCmpInst::FCMP_ULT: // True if unordered or less than
4448 case FCmpInst::FCMP_UGT: // True if unordered or greater than
4449 case FCmpInst::FCMP_UNE: // True if unordered or not equal
4450 // Canonicalize these to be 'fcmp uno %X, 0.0'.
4451 I.setPredicate(FCmpInst::FCMP_UNO);
4452 I.setOperand(1, Constant::getNullValue(Op0->getType()));
4453 return &I;
4454
4455 case FCmpInst::FCMP_ORD: // True if ordered (no nans)
4456 case FCmpInst::FCMP_OEQ: // True if ordered and equal
4457 case FCmpInst::FCMP_OGE: // True if ordered and greater than or equal
4458 case FCmpInst::FCMP_OLE: // True if ordered and less than or equal
4459 // Canonicalize these to be 'fcmp ord %X, 0.0'.
4460 I.setPredicate(FCmpInst::FCMP_ORD);
4461 I.setOperand(1, Constant::getNullValue(Op0->getType()));
4462 return &I;
4463 }
4464 }
4465
Reid Spencer266e42b2006-12-23 06:05:41 +00004466 if (isa<UndefValue>(Op1)) // fcmp pred X, undef -> undef
Reid Spencer542964f2007-01-11 18:21:29 +00004467 return ReplaceInstUsesWith(I, UndefValue::get(Type::Int1Ty));
Chris Lattner81a7a232004-10-16 18:11:37 +00004468
Reid Spencer266e42b2006-12-23 06:05:41 +00004469 // Handle fcmp with constant RHS
4470 if (Constant *RHSC = dyn_cast<Constant>(Op1)) {
4471 if (Instruction *LHSI = dyn_cast<Instruction>(Op0))
4472 switch (LHSI->getOpcode()) {
4473 case Instruction::PHI:
4474 if (Instruction *NV = FoldOpIntoPhi(I))
4475 return NV;
4476 break;
4477 case Instruction::Select:
4478 // If either operand of the select is a constant, we can fold the
4479 // comparison into the select arms, which will cause one to be
4480 // constant folded and the select turned into a bitwise or.
4481 Value *Op1 = 0, *Op2 = 0;
4482 if (LHSI->hasOneUse()) {
4483 if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(1))) {
4484 // Fold the known value into the constant operand.
4485 Op1 = ConstantExpr::getCompare(I.getPredicate(), C, RHSC);
4486 // Insert a new FCmp of the other select operand.
4487 Op2 = InsertNewInstBefore(new FCmpInst(I.getPredicate(),
4488 LHSI->getOperand(2), RHSC,
4489 I.getName()), I);
4490 } else if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(2))) {
4491 // Fold the known value into the constant operand.
4492 Op2 = ConstantExpr::getCompare(I.getPredicate(), C, RHSC);
4493 // Insert a new FCmp of the other select operand.
4494 Op1 = InsertNewInstBefore(new FCmpInst(I.getPredicate(),
4495 LHSI->getOperand(1), RHSC,
4496 I.getName()), I);
4497 }
4498 }
4499
4500 if (Op1)
4501 return new SelectInst(LHSI->getOperand(0), Op1, Op2);
4502 break;
4503 }
4504 }
4505
4506 return Changed ? &I : 0;
4507}
4508
4509Instruction *InstCombiner::visitICmpInst(ICmpInst &I) {
4510 bool Changed = SimplifyCompare(I);
4511 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
4512 const Type *Ty = Op0->getType();
4513
4514 // icmp X, X
4515 if (Op0 == Op1)
Reid Spencercddc9df2007-01-12 04:24:46 +00004516 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty,
4517 isTrueWhenEqual(I)));
Reid Spencer266e42b2006-12-23 06:05:41 +00004518
4519 if (isa<UndefValue>(Op1)) // X icmp undef -> undef
Reid Spencer542964f2007-01-11 18:21:29 +00004520 return ReplaceInstUsesWith(I, UndefValue::get(Type::Int1Ty));
Reid Spencer266e42b2006-12-23 06:05:41 +00004521
4522 // icmp of GlobalValues can never equal each other as long as they aren't
4523 // external weak linkage type.
4524 if (GlobalValue *GV0 = dyn_cast<GlobalValue>(Op0))
4525 if (GlobalValue *GV1 = dyn_cast<GlobalValue>(Op1))
4526 if (!GV0->hasExternalWeakLinkage() || !GV1->hasExternalWeakLinkage())
Reid Spencercddc9df2007-01-12 04:24:46 +00004527 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty,
4528 !isTrueWhenEqual(I)));
Reid Spencer266e42b2006-12-23 06:05:41 +00004529
4530 // icmp <global/alloca*/null>, <global/alloca*/null> - Global/Stack value
Chris Lattner15ff1e12004-11-14 07:33:16 +00004531 // addresses never equal each other! We already know that Op0 != Op1.
Misha Brukmanb1c93172005-04-21 23:48:37 +00004532 if ((isa<GlobalValue>(Op0) || isa<AllocaInst>(Op0) ||
4533 isa<ConstantPointerNull>(Op0)) &&
4534 (isa<GlobalValue>(Op1) || isa<AllocaInst>(Op1) ||
Chris Lattner15ff1e12004-11-14 07:33:16 +00004535 isa<ConstantPointerNull>(Op1)))
Reid Spencercddc9df2007-01-12 04:24:46 +00004536 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty,
4537 !isTrueWhenEqual(I)));
Chris Lattner6d14f2a2002-08-09 23:47:40 +00004538
Reid Spencer266e42b2006-12-23 06:05:41 +00004539 // icmp's with boolean values can always be turned into bitwise operations
Reid Spencer542964f2007-01-11 18:21:29 +00004540 if (Ty == Type::Int1Ty) {
Reid Spencer266e42b2006-12-23 06:05:41 +00004541 switch (I.getPredicate()) {
4542 default: assert(0 && "Invalid icmp instruction!");
4543 case ICmpInst::ICMP_EQ: { // icmp eq bool %A, %B -> ~(A^B)
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00004544 Instruction *Xor = BinaryOperator::createXor(Op0, Op1, I.getName()+"tmp");
Chris Lattner6d14f2a2002-08-09 23:47:40 +00004545 InsertNewInstBefore(Xor, I);
Chris Lattner16930792003-11-03 04:25:02 +00004546 return BinaryOperator::createNot(Xor);
Chris Lattner6d14f2a2002-08-09 23:47:40 +00004547 }
Reid Spencer266e42b2006-12-23 06:05:41 +00004548 case ICmpInst::ICMP_NE: // icmp eq bool %A, %B -> A^B
Chris Lattner4456da62004-08-11 00:50:51 +00004549 return BinaryOperator::createXor(Op0, Op1);
Chris Lattner6d14f2a2002-08-09 23:47:40 +00004550
Reid Spencer266e42b2006-12-23 06:05:41 +00004551 case ICmpInst::ICMP_UGT:
4552 case ICmpInst::ICMP_SGT:
4553 std::swap(Op0, Op1); // Change icmp gt -> icmp lt
Chris Lattner4456da62004-08-11 00:50:51 +00004554 // FALL THROUGH
Reid Spencer266e42b2006-12-23 06:05:41 +00004555 case ICmpInst::ICMP_ULT:
4556 case ICmpInst::ICMP_SLT: { // icmp lt bool A, B -> ~X & Y
Chris Lattner4456da62004-08-11 00:50:51 +00004557 Instruction *Not = BinaryOperator::createNot(Op0, I.getName()+"tmp");
4558 InsertNewInstBefore(Not, I);
4559 return BinaryOperator::createAnd(Not, Op1);
4560 }
Reid Spencer266e42b2006-12-23 06:05:41 +00004561 case ICmpInst::ICMP_UGE:
4562 case ICmpInst::ICMP_SGE:
4563 std::swap(Op0, Op1); // Change icmp ge -> icmp le
Chris Lattner4456da62004-08-11 00:50:51 +00004564 // FALL THROUGH
Reid Spencer266e42b2006-12-23 06:05:41 +00004565 case ICmpInst::ICMP_ULE:
4566 case ICmpInst::ICMP_SLE: { // icmp le bool %A, %B -> ~A | B
Chris Lattner4456da62004-08-11 00:50:51 +00004567 Instruction *Not = BinaryOperator::createNot(Op0, I.getName()+"tmp");
4568 InsertNewInstBefore(Not, I);
4569 return BinaryOperator::createOr(Not, Op1);
4570 }
4571 }
Chris Lattner6d14f2a2002-08-09 23:47:40 +00004572 }
4573
Chris Lattner2dd01742004-06-09 04:24:29 +00004574 // See if we are doing a comparison between a constant and an instruction that
4575 // can be folded into the comparison.
Chris Lattner6d14f2a2002-08-09 23:47:40 +00004576 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Reid Spencer266e42b2006-12-23 06:05:41 +00004577 switch (I.getPredicate()) {
4578 default: break;
4579 case ICmpInst::ICMP_ULT: // A <u MIN -> FALSE
4580 if (CI->isMinValue(false))
Zhou Sheng75b871f2007-01-11 12:24:14 +00004581 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00004582 if (CI->isMaxValue(false)) // A <u MAX -> A != MAX
4583 return new ICmpInst(ICmpInst::ICMP_NE, Op0,Op1);
4584 if (isMinValuePlusOne(CI,false)) // A <u MIN+1 -> A == MIN
4585 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, SubOne(CI));
4586 break;
Chris Lattner6862fbd2004-09-29 17:40:11 +00004587
Reid Spencer266e42b2006-12-23 06:05:41 +00004588 case ICmpInst::ICMP_SLT:
4589 if (CI->isMinValue(true)) // A <s MIN -> FALSE
Zhou Sheng75b871f2007-01-11 12:24:14 +00004590 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00004591 if (CI->isMaxValue(true)) // A <s MAX -> A != MAX
4592 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
4593 if (isMinValuePlusOne(CI,true)) // A <s MIN+1 -> A == MIN
4594 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, SubOne(CI));
4595 break;
4596
4597 case ICmpInst::ICMP_UGT:
4598 if (CI->isMaxValue(false)) // A >u MAX -> FALSE
Zhou Sheng75b871f2007-01-11 12:24:14 +00004599 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00004600 if (CI->isMinValue(false)) // A >u MIN -> A != MIN
4601 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
4602 if (isMaxValueMinusOne(CI, false)) // A >u MAX-1 -> A == MAX
4603 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, AddOne(CI));
4604 break;
4605
4606 case ICmpInst::ICMP_SGT:
4607 if (CI->isMaxValue(true)) // A >s MAX -> FALSE
Zhou Sheng75b871f2007-01-11 12:24:14 +00004608 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00004609 if (CI->isMinValue(true)) // A >s MIN -> A != MIN
4610 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
4611 if (isMaxValueMinusOne(CI, true)) // A >s MAX-1 -> A == MAX
4612 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, AddOne(CI));
4613 break;
4614
4615 case ICmpInst::ICMP_ULE:
4616 if (CI->isMaxValue(false)) // A <=u MAX -> TRUE
Zhou Sheng75b871f2007-01-11 12:24:14 +00004617 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Reid Spencer266e42b2006-12-23 06:05:41 +00004618 if (CI->isMinValue(false)) // A <=u MIN -> A == MIN
4619 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, Op1);
4620 if (isMaxValueMinusOne(CI,false)) // A <=u MAX-1 -> A != MAX
4621 return new ICmpInst(ICmpInst::ICMP_NE, Op0, AddOne(CI));
4622 break;
Chris Lattner6862fbd2004-09-29 17:40:11 +00004623
Reid Spencer266e42b2006-12-23 06:05:41 +00004624 case ICmpInst::ICMP_SLE:
4625 if (CI->isMaxValue(true)) // A <=s MAX -> TRUE
Zhou Sheng75b871f2007-01-11 12:24:14 +00004626 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Reid Spencer266e42b2006-12-23 06:05:41 +00004627 if (CI->isMinValue(true)) // A <=s MIN -> A == MIN
4628 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, Op1);
4629 if (isMaxValueMinusOne(CI,true)) // A <=s MAX-1 -> A != MAX
4630 return new ICmpInst(ICmpInst::ICMP_NE, Op0, AddOne(CI));
4631 break;
Chris Lattner6862fbd2004-09-29 17:40:11 +00004632
Reid Spencer266e42b2006-12-23 06:05:41 +00004633 case ICmpInst::ICMP_UGE:
4634 if (CI->isMinValue(false)) // A >=u MIN -> TRUE
Zhou Sheng75b871f2007-01-11 12:24:14 +00004635 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Reid Spencer266e42b2006-12-23 06:05:41 +00004636 if (CI->isMaxValue(false)) // A >=u MAX -> A == MAX
4637 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, Op1);
4638 if (isMinValuePlusOne(CI,false)) // A >=u MIN-1 -> A != MIN
4639 return new ICmpInst(ICmpInst::ICMP_NE, Op0, SubOne(CI));
4640 break;
4641
4642 case ICmpInst::ICMP_SGE:
4643 if (CI->isMinValue(true)) // A >=s MIN -> TRUE
Zhou Sheng75b871f2007-01-11 12:24:14 +00004644 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Reid Spencer266e42b2006-12-23 06:05:41 +00004645 if (CI->isMaxValue(true)) // A >=s MAX -> A == MAX
4646 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, Op1);
4647 if (isMinValuePlusOne(CI,true)) // A >=s MIN-1 -> A != MIN
4648 return new ICmpInst(ICmpInst::ICMP_NE, Op0, SubOne(CI));
4649 break;
Chris Lattner6862fbd2004-09-29 17:40:11 +00004650 }
4651
Reid Spencer266e42b2006-12-23 06:05:41 +00004652 // If we still have a icmp le or icmp ge instruction, turn it into the
4653 // appropriate icmp lt or icmp gt instruction. Since the border cases have
Chris Lattner6862fbd2004-09-29 17:40:11 +00004654 // already been handled above, this requires little checking.
4655 //
Reid Spencer624766f2007-03-25 19:55:33 +00004656 switch (I.getPredicate()) {
4657 default: break;
4658 case ICmpInst::ICMP_ULE:
4659 return new ICmpInst(ICmpInst::ICMP_ULT, Op0, AddOne(CI));
4660 case ICmpInst::ICMP_SLE:
4661 return new ICmpInst(ICmpInst::ICMP_SLT, Op0, AddOne(CI));
4662 case ICmpInst::ICMP_UGE:
4663 return new ICmpInst( ICmpInst::ICMP_UGT, Op0, SubOne(CI));
4664 case ICmpInst::ICMP_SGE:
4665 return new ICmpInst(ICmpInst::ICMP_SGT, Op0, SubOne(CI));
4666 }
Chris Lattneree0f2802006-02-12 02:07:56 +00004667
4668 // See if we can fold the comparison based on bits known to be zero or one
4669 // in the input.
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004670 uint32_t BitWidth = cast<IntegerType>(Ty)->getBitWidth();
4671 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
4672 if (SimplifyDemandedBits(Op0, APInt::getAllOnesValue(BitWidth),
Chris Lattneree0f2802006-02-12 02:07:56 +00004673 KnownZero, KnownOne, 0))
4674 return &I;
4675
4676 // Given the known and unknown bits, compute a range that the LHS could be
4677 // in.
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004678 if ((KnownOne | KnownZero) != 0) {
Reid Spencer266e42b2006-12-23 06:05:41 +00004679 // Compute the Min, Max and RHS values based on the known bits. For the
4680 // EQ and NE we use unsigned values.
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004681 APInt Min(BitWidth, 0), Max(BitWidth, 0), RHSVal(CI->getValue());
Reid Spencer266e42b2006-12-23 06:05:41 +00004682 if (ICmpInst::isSignedPredicate(I.getPredicate())) {
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004683 ComputeSignedMinMaxValuesFromKnownBits(Ty, KnownZero, KnownOne, Min,
4684 Max);
Reid Spencer266e42b2006-12-23 06:05:41 +00004685 } else {
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004686 ComputeUnsignedMinMaxValuesFromKnownBits(Ty, KnownZero, KnownOne, Min,
4687 Max);
Reid Spencer266e42b2006-12-23 06:05:41 +00004688 }
4689 switch (I.getPredicate()) { // LE/GE have been folded already.
4690 default: assert(0 && "Unknown icmp opcode!");
4691 case ICmpInst::ICMP_EQ:
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004692 if (Max.ult(RHSVal) || Min.ugt(RHSVal))
Zhou Sheng75b871f2007-01-11 12:24:14 +00004693 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00004694 break;
4695 case ICmpInst::ICMP_NE:
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004696 if (Max.ult(RHSVal) || Min.ugt(RHSVal))
Zhou Sheng75b871f2007-01-11 12:24:14 +00004697 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Reid Spencer266e42b2006-12-23 06:05:41 +00004698 break;
4699 case ICmpInst::ICMP_ULT:
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004700 if (Max.ult(RHSVal))
Zhou Sheng75b871f2007-01-11 12:24:14 +00004701 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004702 if (Min.ugt(RHSVal))
Zhou Sheng75b871f2007-01-11 12:24:14 +00004703 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00004704 break;
4705 case ICmpInst::ICMP_UGT:
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004706 if (Min.ugt(RHSVal))
Zhou Sheng75b871f2007-01-11 12:24:14 +00004707 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004708 if (Max.ult(RHSVal))
Zhou Sheng75b871f2007-01-11 12:24:14 +00004709 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00004710 break;
4711 case ICmpInst::ICMP_SLT:
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004712 if (Max.slt(RHSVal))
Zhou Sheng75b871f2007-01-11 12:24:14 +00004713 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004714 if (Min.sgt(RHSVal))
Zhou Sheng75b871f2007-01-11 12:24:14 +00004715 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00004716 break;
4717 case ICmpInst::ICMP_SGT:
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004718 if (Min.sgt(RHSVal))
Zhou Sheng75b871f2007-01-11 12:24:14 +00004719 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004720 if (Max.slt(RHSVal))
Zhou Sheng75b871f2007-01-11 12:24:14 +00004721 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00004722 break;
Chris Lattneree0f2802006-02-12 02:07:56 +00004723 }
4724 }
4725
Reid Spencer266e42b2006-12-23 06:05:41 +00004726 // Since the RHS is a ConstantInt (CI), if the left hand side is an
Reid Spencer7e80b0b2006-10-26 06:15:43 +00004727 // instruction, see if that instruction also has constants so that the
Reid Spencer266e42b2006-12-23 06:05:41 +00004728 // instruction can be folded into the icmp
Chris Lattnere1e10e12004-05-25 06:32:08 +00004729 if (Instruction *LHSI = dyn_cast<Instruction>(Op0))
Chris Lattnere1b4d2a2004-09-23 21:52:49 +00004730 switch (LHSI->getOpcode()) {
4731 case Instruction::And:
4732 if (LHSI->hasOneUse() && isa<ConstantInt>(LHSI->getOperand(1)) &&
4733 LHSI->getOperand(0)->hasOneUse()) {
Chris Lattner4922a0e2006-09-18 05:27:43 +00004734 ConstantInt *AndCST = cast<ConstantInt>(LHSI->getOperand(1));
4735
Reid Spencer266e42b2006-12-23 06:05:41 +00004736 // If the LHS is an AND of a truncating cast, we can widen the
Chris Lattner4922a0e2006-09-18 05:27:43 +00004737 // and/compare to be the input width without changing the value
4738 // produced, eliminating a cast.
4739 if (CastInst *Cast = dyn_cast<CastInst>(LHSI->getOperand(0))) {
4740 // We can do this transformation if either the AND constant does not
4741 // have its sign bit set or if it is an equality comparison.
4742 // Extending a relational comparison when we're checking the sign
4743 // bit would not work.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00004744 if (Cast->hasOneUse() && isa<TruncInst>(Cast) &&
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004745 (I.isEquality() || AndCST->getValue().isPositive() &&
4746 CI->getValue().isPositive())) {
Chris Lattner4922a0e2006-09-18 05:27:43 +00004747 ConstantInt *NewCST;
4748 ConstantInt *NewCI;
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004749 APInt NewCSTVal(AndCST->getValue()), NewCIVal(CI->getValue());
4750 uint32_t BitWidth = cast<IntegerType>(
4751 Cast->getOperand(0)->getType())->getBitWidth();
4752 NewCST = ConstantInt::get(NewCSTVal.zext(BitWidth));
4753 NewCI = ConstantInt::get(NewCIVal.zext(BitWidth));
Chris Lattner4922a0e2006-09-18 05:27:43 +00004754 Instruction *NewAnd =
4755 BinaryOperator::createAnd(Cast->getOperand(0), NewCST,
4756 LHSI->getName());
4757 InsertNewInstBefore(NewAnd, I);
Reid Spencer266e42b2006-12-23 06:05:41 +00004758 return new ICmpInst(I.getPredicate(), NewAnd, NewCI);
Chris Lattner4922a0e2006-09-18 05:27:43 +00004759 }
4760 }
4761
Chris Lattnere1b4d2a2004-09-23 21:52:49 +00004762 // If this is: (X >> C1) & C2 != C3 (where any shift and any compare
4763 // could exist), turn it into (X & (C2 << C1)) != (C3 << C1). This
4764 // happens a LOT in code produced by the C front-end, for bitfield
4765 // access.
Reid Spencer2341c222007-02-02 02:16:23 +00004766 BinaryOperator *Shift = dyn_cast<BinaryOperator>(LHSI->getOperand(0));
4767 if (Shift && !Shift->isShift())
4768 Shift = 0;
Chris Lattneree0f2802006-02-12 02:07:56 +00004769
Reid Spencere0fc4df2006-10-20 07:07:24 +00004770 ConstantInt *ShAmt;
4771 ShAmt = Shift ? dyn_cast<ConstantInt>(Shift->getOperand(1)) : 0;
Chris Lattneree0f2802006-02-12 02:07:56 +00004772 const Type *Ty = Shift ? Shift->getType() : 0; // Type of the shift.
4773 const Type *AndTy = AndCST->getType(); // Type of the and.
Misha Brukmanb1c93172005-04-21 23:48:37 +00004774
Chris Lattnere1b4d2a2004-09-23 21:52:49 +00004775 // We can fold this as long as we can't shift unknown bits
4776 // into the mask. This can only happen with signed shift
4777 // rights, as they sign-extend.
4778 if (ShAmt) {
Chris Lattnerb3f24c92006-09-18 04:22:48 +00004779 bool CanFold = Shift->isLogicalShift();
Chris Lattnere1b4d2a2004-09-23 21:52:49 +00004780 if (!CanFold) {
4781 // To test for the bad case of the signed shr, see if any
4782 // of the bits shifted in could be tested after the mask.
Reid Spencere0fc4df2006-10-20 07:07:24 +00004783 int ShAmtVal = Ty->getPrimitiveSizeInBits()-ShAmt->getZExtValue();
Chris Lattnerc53cb9d2005-06-17 01:29:28 +00004784 if (ShAmtVal < 0) ShAmtVal = 0; // Out of range shift.
4785
Reid Spencer2341c222007-02-02 02:16:23 +00004786 Constant *OShAmt = ConstantInt::get(AndTy, ShAmtVal);
Misha Brukmanb1c93172005-04-21 23:48:37 +00004787 Constant *ShVal =
Chris Lattneree0f2802006-02-12 02:07:56 +00004788 ConstantExpr::getShl(ConstantInt::getAllOnesValue(AndTy),
4789 OShAmt);
Chris Lattnere1b4d2a2004-09-23 21:52:49 +00004790 if (ConstantExpr::getAnd(ShVal, AndCST)->isNullValue())
4791 CanFold = true;
4792 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00004793
Chris Lattnere1b4d2a2004-09-23 21:52:49 +00004794 if (CanFold) {
Chris Lattner6afc02f2004-09-28 17:54:07 +00004795 Constant *NewCst;
4796 if (Shift->getOpcode() == Instruction::Shl)
Reid Spencerfdff9382006-11-08 06:47:33 +00004797 NewCst = ConstantExpr::getLShr(CI, ShAmt);
Chris Lattner6afc02f2004-09-28 17:54:07 +00004798 else
4799 NewCst = ConstantExpr::getShl(CI, ShAmt);
Chris Lattnerbfff18a2004-09-27 19:29:18 +00004800
Chris Lattnere1b4d2a2004-09-23 21:52:49 +00004801 // Check to see if we are shifting out any of the bits being
4802 // compared.
4803 if (ConstantExpr::get(Shift->getOpcode(), NewCst, ShAmt) != CI){
4804 // If we shifted bits out, the fold is not going to work out.
4805 // As a special case, check to see if this means that the
4806 // result is always true or false now.
Reid Spencer266e42b2006-12-23 06:05:41 +00004807 if (I.getPredicate() == ICmpInst::ICMP_EQ)
Zhou Sheng75b871f2007-01-11 12:24:14 +00004808 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00004809 if (I.getPredicate() == ICmpInst::ICMP_NE)
Zhou Sheng75b871f2007-01-11 12:24:14 +00004810 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Chris Lattnere1b4d2a2004-09-23 21:52:49 +00004811 } else {
4812 I.setOperand(1, NewCst);
Chris Lattner6afc02f2004-09-28 17:54:07 +00004813 Constant *NewAndCST;
4814 if (Shift->getOpcode() == Instruction::Shl)
Reid Spencerfdff9382006-11-08 06:47:33 +00004815 NewAndCST = ConstantExpr::getLShr(AndCST, ShAmt);
Chris Lattner6afc02f2004-09-28 17:54:07 +00004816 else
4817 NewAndCST = ConstantExpr::getShl(AndCST, ShAmt);
4818 LHSI->setOperand(1, NewAndCST);
Reid Spencer6ff3e732007-01-04 05:23:51 +00004819 LHSI->setOperand(0, Shift->getOperand(0));
Chris Lattnerb15e2b12007-03-02 21:28:56 +00004820 AddToWorkList(Shift); // Shift is dead.
Chris Lattnere1b4d2a2004-09-23 21:52:49 +00004821 AddUsesToWorkList(I);
4822 return &I;
Chris Lattner1638de42004-07-21 19:50:44 +00004823 }
4824 }
Chris Lattner35167c32004-06-09 07:59:58 +00004825 }
Chris Lattnerb3f24c92006-09-18 04:22:48 +00004826
4827 // Turn ((X >> Y) & C) == 0 into (X & (C << Y)) == 0. The later is
4828 // preferable because it allows the C<<Y expression to be hoisted out
4829 // of a loop if Y is invariant and X is not.
4830 if (Shift && Shift->hasOneUse() && CI->isNullValue() &&
Chris Lattnerde077922006-09-18 18:27:05 +00004831 I.isEquality() && !Shift->isArithmeticShift() &&
4832 isa<Instruction>(Shift->getOperand(0))) {
Chris Lattnerb3f24c92006-09-18 04:22:48 +00004833 // Compute C << Y.
4834 Value *NS;
Reid Spencerfdff9382006-11-08 06:47:33 +00004835 if (Shift->getOpcode() == Instruction::LShr) {
Reid Spencer0d5f9232007-02-02 14:08:20 +00004836 NS = BinaryOperator::createShl(AndCST,
Reid Spencer2341c222007-02-02 02:16:23 +00004837 Shift->getOperand(1), "tmp");
Chris Lattnerb3f24c92006-09-18 04:22:48 +00004838 } else {
Reid Spencer2a499b02006-12-13 17:19:09 +00004839 // Insert a logical shift.
Reid Spencer0d5f9232007-02-02 14:08:20 +00004840 NS = BinaryOperator::createLShr(AndCST,
Reid Spencer2341c222007-02-02 02:16:23 +00004841 Shift->getOperand(1), "tmp");
Chris Lattnerb3f24c92006-09-18 04:22:48 +00004842 }
4843 InsertNewInstBefore(cast<Instruction>(NS), I);
4844
Chris Lattnerb3f24c92006-09-18 04:22:48 +00004845 // Compute X & (C << Y).
Reid Spencer6ff3e732007-01-04 05:23:51 +00004846 Instruction *NewAnd = BinaryOperator::createAnd(
4847 Shift->getOperand(0), NS, LHSI->getName());
Chris Lattnerb3f24c92006-09-18 04:22:48 +00004848 InsertNewInstBefore(NewAnd, I);
4849
4850 I.setOperand(0, NewAnd);
4851 return &I;
4852 }
Chris Lattnere1b4d2a2004-09-23 21:52:49 +00004853 }
4854 break;
Chris Lattnerbfff18a2004-09-27 19:29:18 +00004855
Reid Spencer266e42b2006-12-23 06:05:41 +00004856 case Instruction::Shl: // (icmp pred (shl X, ShAmt), CI)
Reid Spencere0fc4df2006-10-20 07:07:24 +00004857 if (ConstantInt *ShAmt = dyn_cast<ConstantInt>(LHSI->getOperand(1))) {
Chris Lattnerb3f24c92006-09-18 04:22:48 +00004858 if (I.isEquality()) {
Chris Lattner19b57f52005-06-15 20:53:31 +00004859 unsigned TypeBits = CI->getType()->getPrimitiveSizeInBits();
4860
4861 // Check that the shift amount is in range. If not, don't perform
4862 // undefined shifts. When the shift is visited it will be
4863 // simplified.
Reid Spencere0fc4df2006-10-20 07:07:24 +00004864 if (ShAmt->getZExtValue() >= TypeBits)
Chris Lattner19b57f52005-06-15 20:53:31 +00004865 break;
4866
Chris Lattner272d5ca2004-09-28 18:22:15 +00004867 // If we are comparing against bits always shifted out, the
4868 // comparison cannot succeed.
Misha Brukmanb1c93172005-04-21 23:48:37 +00004869 Constant *Comp =
Reid Spencerfdff9382006-11-08 06:47:33 +00004870 ConstantExpr::getShl(ConstantExpr::getLShr(CI, ShAmt), ShAmt);
Chris Lattner272d5ca2004-09-28 18:22:15 +00004871 if (Comp != CI) {// Comparing against a bit that we know is zero.
Reid Spencer266e42b2006-12-23 06:05:41 +00004872 bool IsICMP_NE = I.getPredicate() == ICmpInst::ICMP_NE;
Reid Spencercddc9df2007-01-12 04:24:46 +00004873 Constant *Cst = ConstantInt::get(Type::Int1Ty, IsICMP_NE);
Chris Lattner272d5ca2004-09-28 18:22:15 +00004874 return ReplaceInstUsesWith(I, Cst);
4875 }
4876
4877 if (LHSI->hasOneUse()) {
4878 // Otherwise strength reduce the shift into an and.
Reid Spencere0fc4df2006-10-20 07:07:24 +00004879 unsigned ShAmtVal = (unsigned)ShAmt->getZExtValue();
Reid Spencerd8aad612007-03-25 02:03:12 +00004880 Constant *Mask = ConstantInt::get(APInt::getLowBitsSet(TypeBits,
4881 TypeBits - ShAmtVal));
Misha Brukmanb1c93172005-04-21 23:48:37 +00004882
Chris Lattner272d5ca2004-09-28 18:22:15 +00004883 Instruction *AndI =
4884 BinaryOperator::createAnd(LHSI->getOperand(0),
4885 Mask, LHSI->getName()+".mask");
4886 Value *And = InsertNewInstBefore(AndI, I);
Reid Spencer266e42b2006-12-23 06:05:41 +00004887 return new ICmpInst(I.getPredicate(), And,
Reid Spencerfdff9382006-11-08 06:47:33 +00004888 ConstantExpr::getLShr(CI, ShAmt));
Chris Lattner272d5ca2004-09-28 18:22:15 +00004889 }
4890 }
Chris Lattner272d5ca2004-09-28 18:22:15 +00004891 }
4892 break;
4893
Reid Spencer266e42b2006-12-23 06:05:41 +00004894 case Instruction::LShr: // (icmp pred (shr X, ShAmt), CI)
Reid Spencerfdff9382006-11-08 06:47:33 +00004895 case Instruction::AShr:
Reid Spencere0fc4df2006-10-20 07:07:24 +00004896 if (ConstantInt *ShAmt = dyn_cast<ConstantInt>(LHSI->getOperand(1))) {
Chris Lattnerb3f24c92006-09-18 04:22:48 +00004897 if (I.isEquality()) {
Chris Lattner19b57f52005-06-15 20:53:31 +00004898 // Check that the shift amount is in range. If not, don't perform
4899 // undefined shifts. When the shift is visited it will be
4900 // simplified.
Chris Lattner104002b2005-06-16 01:52:07 +00004901 unsigned TypeBits = CI->getType()->getPrimitiveSizeInBits();
Reid Spencere0fc4df2006-10-20 07:07:24 +00004902 if (ShAmt->getZExtValue() >= TypeBits)
Chris Lattner19b57f52005-06-15 20:53:31 +00004903 break;
4904
Chris Lattner1023b872004-09-27 16:18:50 +00004905 // If we are comparing against bits always shifted out, the
4906 // comparison cannot succeed.
Reid Spencerfdff9382006-11-08 06:47:33 +00004907 Constant *Comp;
Reid Spencerc635f472006-12-31 05:48:39 +00004908 if (LHSI->getOpcode() == Instruction::LShr)
Reid Spencerfdff9382006-11-08 06:47:33 +00004909 Comp = ConstantExpr::getLShr(ConstantExpr::getShl(CI, ShAmt),
4910 ShAmt);
4911 else
4912 Comp = ConstantExpr::getAShr(ConstantExpr::getShl(CI, ShAmt),
4913 ShAmt);
Misha Brukmanb1c93172005-04-21 23:48:37 +00004914
Chris Lattner1023b872004-09-27 16:18:50 +00004915 if (Comp != CI) {// Comparing against a bit that we know is zero.
Reid Spencer266e42b2006-12-23 06:05:41 +00004916 bool IsICMP_NE = I.getPredicate() == ICmpInst::ICMP_NE;
Reid Spencercddc9df2007-01-12 04:24:46 +00004917 Constant *Cst = ConstantInt::get(Type::Int1Ty, IsICMP_NE);
Chris Lattner1023b872004-09-27 16:18:50 +00004918 return ReplaceInstUsesWith(I, Cst);
4919 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00004920
Chris Lattner1023b872004-09-27 16:18:50 +00004921 if (LHSI->hasOneUse() || CI->isNullValue()) {
Reid Spencere0fc4df2006-10-20 07:07:24 +00004922 unsigned ShAmtVal = (unsigned)ShAmt->getZExtValue();
Chris Lattner272d5ca2004-09-28 18:22:15 +00004923
Chris Lattner1023b872004-09-27 16:18:50 +00004924 // Otherwise strength reduce the shift into an and.
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00004925 APInt Val(APInt::getAllOnesValue(TypeBits).shl(ShAmtVal));
4926 Constant *Mask = ConstantInt::get(Val);
Misha Brukmanb1c93172005-04-21 23:48:37 +00004927
Chris Lattner1023b872004-09-27 16:18:50 +00004928 Instruction *AndI =
4929 BinaryOperator::createAnd(LHSI->getOperand(0),
4930 Mask, LHSI->getName()+".mask");
4931 Value *And = InsertNewInstBefore(AndI, I);
Reid Spencer266e42b2006-12-23 06:05:41 +00004932 return new ICmpInst(I.getPredicate(), And,
Chris Lattner1023b872004-09-27 16:18:50 +00004933 ConstantExpr::getShl(CI, ShAmt));
4934 }
Chris Lattner1023b872004-09-27 16:18:50 +00004935 }
4936 }
4937 break;
Chris Lattner7e794272004-09-24 15:21:34 +00004938
Reid Spencer7e80b0b2006-10-26 06:15:43 +00004939 case Instruction::SDiv:
4940 case Instruction::UDiv:
Reid Spencer266e42b2006-12-23 06:05:41 +00004941 // Fold: icmp pred ([us]div X, C1), C2 -> range test
Reid Spencer7e80b0b2006-10-26 06:15:43 +00004942 // Fold this div into the comparison, producing a range check.
4943 // Determine, based on the divide type, what the range is being
4944 // checked. If there is an overflow on the low or high side, remember
4945 // it, otherwise compute the range [low, hi) bounding the new value.
4946 // See: InsertRangeTest above for the kinds of replacements possible.
Chris Lattner6862fbd2004-09-29 17:40:11 +00004947 if (ConstantInt *DivRHS = dyn_cast<ConstantInt>(LHSI->getOperand(1))) {
Reid Spencer7e80b0b2006-10-26 06:15:43 +00004948 // FIXME: If the operand types don't match the type of the divide
4949 // then don't attempt this transform. The code below doesn't have the
4950 // logic to deal with a signed divide and an unsigned compare (and
4951 // vice versa). This is because (x /s C1) <s C2 produces different
4952 // results than (x /s C1) <u C2 or (x /u C1) <s C2 or even
4953 // (x /u C1) <u C2. Simply casting the operands and result won't
4954 // work. :( The if statement below tests that condition and bails
4955 // if it finds it.
Reid Spencer266e42b2006-12-23 06:05:41 +00004956 bool DivIsSigned = LHSI->getOpcode() == Instruction::SDiv;
4957 if (!I.isEquality() && DivIsSigned != I.isSignedPredicate())
Reid Spencer7e80b0b2006-10-26 06:15:43 +00004958 break;
Reid Spencerf4071162007-03-21 23:19:50 +00004959 if (DivRHS->isZero())
4960 break; // Don't hack on div by zero
Reid Spencer7e80b0b2006-10-26 06:15:43 +00004961
4962 // Initialize the variables that will indicate the nature of the
4963 // range check.
4964 bool LoOverflow = false, HiOverflow = false;
Chris Lattner6862fbd2004-09-29 17:40:11 +00004965 ConstantInt *LoBound = 0, *HiBound = 0;
4966
Reid Spencer7e80b0b2006-10-26 06:15:43 +00004967 // Compute Prod = CI * DivRHS. We are essentially solving an equation
4968 // of form X/C1=C2. We solve for X by multiplying C1 (DivRHS) and
4969 // C2 (CI). By solving for X we can turn this into a range check
4970 // instead of computing a divide.
4971 ConstantInt *Prod =
4972 cast<ConstantInt>(ConstantExpr::getMul(CI, DivRHS));
Chris Lattner6862fbd2004-09-29 17:40:11 +00004973
Reid Spencer7e80b0b2006-10-26 06:15:43 +00004974 // Determine if the product overflows by seeing if the product is
4975 // not equal to the divide. Make sure we do the same kind of divide
4976 // as in the LHS instruction that we're folding.
Reid Spencerf4071162007-03-21 23:19:50 +00004977 bool ProdOV = (DivIsSigned ? ConstantExpr::getSDiv(Prod, DivRHS) :
4978 ConstantExpr::getUDiv(Prod, DivRHS)) != CI;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00004979
Reid Spencer266e42b2006-12-23 06:05:41 +00004980 // Get the ICmp opcode
4981 ICmpInst::Predicate predicate = I.getPredicate();
Chris Lattnera92af962004-10-11 19:40:04 +00004982
Reid Spencerf4071162007-03-21 23:19:50 +00004983 if (!DivIsSigned) { // udiv
Chris Lattner6862fbd2004-09-29 17:40:11 +00004984 LoBound = Prod;
4985 LoOverflow = ProdOV;
Reid Spencerf4071162007-03-21 23:19:50 +00004986 HiOverflow = ProdOV ||
4987 AddWithOverflow(HiBound, LoBound, DivRHS, false);
Reid Spencer450434e2007-03-19 20:58:18 +00004988 } else if (DivRHS->getValue().isPositive()) { // Divisor is > 0.
Chris Lattner6862fbd2004-09-29 17:40:11 +00004989 if (CI->isNullValue()) { // (X / pos) op 0
4990 // Can't overflow.
4991 LoBound = cast<ConstantInt>(ConstantExpr::getNeg(SubOne(DivRHS)));
4992 HiBound = DivRHS;
Reid Spencer450434e2007-03-19 20:58:18 +00004993 } else if (CI->getValue().isPositive()) { // (X / pos) op pos
Chris Lattner6862fbd2004-09-29 17:40:11 +00004994 LoBound = Prod;
4995 LoOverflow = ProdOV;
Reid Spencerf4071162007-03-21 23:19:50 +00004996 HiOverflow = ProdOV ||
4997 AddWithOverflow(HiBound, Prod, DivRHS, true);
Chris Lattner6862fbd2004-09-29 17:40:11 +00004998 } else { // (X / pos) op neg
4999 Constant *DivRHSH = ConstantExpr::getNeg(SubOne(DivRHS));
5000 LoOverflow = AddWithOverflow(LoBound, Prod,
Reid Spencerf4071162007-03-21 23:19:50 +00005001 cast<ConstantInt>(DivRHSH), true);
5002 HiBound = AddOne(Prod);
Chris Lattner6862fbd2004-09-29 17:40:11 +00005003 HiOverflow = ProdOV;
5004 }
Reid Spencer7e80b0b2006-10-26 06:15:43 +00005005 } else { // Divisor is < 0.
Chris Lattner6862fbd2004-09-29 17:40:11 +00005006 if (CI->isNullValue()) { // (X / neg) op 0
5007 LoBound = AddOne(DivRHS);
5008 HiBound = cast<ConstantInt>(ConstantExpr::getNeg(DivRHS));
Chris Lattner73bcba52005-06-17 02:05:55 +00005009 if (HiBound == DivRHS)
Reid Spencer7e80b0b2006-10-26 06:15:43 +00005010 LoBound = 0; // - INTMIN = INTMIN
Reid Spencer450434e2007-03-19 20:58:18 +00005011 } else if (CI->getValue().isPositive()) { // (X / neg) op pos
Chris Lattner6862fbd2004-09-29 17:40:11 +00005012 HiOverflow = LoOverflow = ProdOV;
5013 if (!LoOverflow)
Reid Spencerf4071162007-03-21 23:19:50 +00005014 LoOverflow = AddWithOverflow(LoBound, Prod, AddOne(DivRHS),
5015 true);
Chris Lattner6862fbd2004-09-29 17:40:11 +00005016 HiBound = AddOne(Prod);
5017 } else { // (X / neg) op neg
5018 LoBound = Prod;
5019 LoOverflow = HiOverflow = ProdOV;
5020 HiBound = cast<ConstantInt>(ConstantExpr::getSub(Prod, DivRHS));
5021 }
Chris Lattner0b41e862004-10-08 19:15:44 +00005022
Chris Lattnera92af962004-10-11 19:40:04 +00005023 // Dividing by a negate swaps the condition.
Reid Spencer266e42b2006-12-23 06:05:41 +00005024 predicate = ICmpInst::getSwappedPredicate(predicate);
Chris Lattner6862fbd2004-09-29 17:40:11 +00005025 }
5026
5027 if (LoBound) {
5028 Value *X = LHSI->getOperand(0);
Reid Spencer266e42b2006-12-23 06:05:41 +00005029 switch (predicate) {
5030 default: assert(0 && "Unhandled icmp opcode!");
5031 case ICmpInst::ICMP_EQ:
Chris Lattner6862fbd2004-09-29 17:40:11 +00005032 if (LoOverflow && HiOverflow)
Zhou Sheng75b871f2007-01-11 12:24:14 +00005033 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Chris Lattner6862fbd2004-09-29 17:40:11 +00005034 else if (HiOverflow)
Reid Spencer266e42b2006-12-23 06:05:41 +00005035 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SGE :
5036 ICmpInst::ICMP_UGE, X, LoBound);
Chris Lattner6862fbd2004-09-29 17:40:11 +00005037 else if (LoOverflow)
Reid Spencer266e42b2006-12-23 06:05:41 +00005038 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SLT :
5039 ICmpInst::ICMP_ULT, X, HiBound);
Chris Lattner6862fbd2004-09-29 17:40:11 +00005040 else
Reid Spencer266e42b2006-12-23 06:05:41 +00005041 return InsertRangeTest(X, LoBound, HiBound, DivIsSigned,
5042 true, I);
5043 case ICmpInst::ICMP_NE:
Chris Lattner6862fbd2004-09-29 17:40:11 +00005044 if (LoOverflow && HiOverflow)
Zhou Sheng75b871f2007-01-11 12:24:14 +00005045 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Chris Lattner6862fbd2004-09-29 17:40:11 +00005046 else if (HiOverflow)
Reid Spencer266e42b2006-12-23 06:05:41 +00005047 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SLT :
5048 ICmpInst::ICMP_ULT, X, LoBound);
Chris Lattner6862fbd2004-09-29 17:40:11 +00005049 else if (LoOverflow)
Reid Spencer266e42b2006-12-23 06:05:41 +00005050 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SGE :
5051 ICmpInst::ICMP_UGE, X, HiBound);
Chris Lattner6862fbd2004-09-29 17:40:11 +00005052 else
Reid Spencer266e42b2006-12-23 06:05:41 +00005053 return InsertRangeTest(X, LoBound, HiBound, DivIsSigned,
5054 false, I);
5055 case ICmpInst::ICMP_ULT:
5056 case ICmpInst::ICMP_SLT:
Chris Lattner6862fbd2004-09-29 17:40:11 +00005057 if (LoOverflow)
Zhou Sheng75b871f2007-01-11 12:24:14 +00005058 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00005059 return new ICmpInst(predicate, X, LoBound);
5060 case ICmpInst::ICMP_UGT:
5061 case ICmpInst::ICMP_SGT:
Chris Lattner6862fbd2004-09-29 17:40:11 +00005062 if (HiOverflow)
Zhou Sheng75b871f2007-01-11 12:24:14 +00005063 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00005064 if (predicate == ICmpInst::ICMP_UGT)
5065 return new ICmpInst(ICmpInst::ICMP_UGE, X, HiBound);
5066 else
5067 return new ICmpInst(ICmpInst::ICMP_SGE, X, HiBound);
Chris Lattner6862fbd2004-09-29 17:40:11 +00005068 }
5069 }
5070 }
5071 break;
Chris Lattnere1b4d2a2004-09-23 21:52:49 +00005072 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00005073
Reid Spencer266e42b2006-12-23 06:05:41 +00005074 // Simplify icmp_eq and icmp_ne instructions with integer constant RHS.
Chris Lattnerb3f24c92006-09-18 04:22:48 +00005075 if (I.isEquality()) {
Reid Spencer266e42b2006-12-23 06:05:41 +00005076 bool isICMP_NE = I.getPredicate() == ICmpInst::ICMP_NE;
Chris Lattnerd492a0b2003-07-23 17:02:11 +00005077
Reid Spencere0fc4df2006-10-20 07:07:24 +00005078 // If the first operand is (add|sub|and|or|xor|rem) with a constant, and
5079 // the second operand is a constant, simplify a bit.
Chris Lattnerc992add2003-08-13 05:33:12 +00005080 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Op0)) {
5081 switch (BO->getOpcode()) {
Reid Spencere0fc4df2006-10-20 07:07:24 +00005082 case Instruction::SRem:
5083 // If we have a signed (X % (2^c)) == 0, turn it into an unsigned one.
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00005084 if (CI->isZero() && isa<ConstantInt>(BO->getOperand(1)) &&
Reid Spencere0fc4df2006-10-20 07:07:24 +00005085 BO->hasOneUse()) {
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00005086 APInt V(cast<ConstantInt>(BO->getOperand(1))->getValue());
5087 if (V.sgt(APInt(V.getBitWidth(), 1)) && V.isPowerOf2()) {
Reid Spencer7eb55b32006-11-02 01:53:59 +00005088 Value *NewRem = InsertNewInstBefore(BinaryOperator::createURem(
5089 BO->getOperand(0), BO->getOperand(1), BO->getName()), I);
Reid Spencer266e42b2006-12-23 06:05:41 +00005090 return new ICmpInst(I.getPredicate(), NewRem,
5091 Constant::getNullValue(BO->getType()));
Chris Lattner23b47b62004-07-06 07:38:18 +00005092 }
Chris Lattner22d00a82005-08-02 19:16:58 +00005093 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00005094 break;
Chris Lattnerc992add2003-08-13 05:33:12 +00005095 case Instruction::Add:
Chris Lattner6e079362004-06-27 22:51:36 +00005096 // Replace ((add A, B) != C) with (A != C-B) if B & C are constants.
5097 if (ConstantInt *BOp1C = dyn_cast<ConstantInt>(BO->getOperand(1))) {
Chris Lattnerb121ae12004-09-21 21:35:23 +00005098 if (BO->hasOneUse())
Reid Spencer266e42b2006-12-23 06:05:41 +00005099 return new ICmpInst(I.getPredicate(), BO->getOperand(0),
5100 ConstantExpr::getSub(CI, BOp1C));
Chris Lattner6e079362004-06-27 22:51:36 +00005101 } else if (CI->isNullValue()) {
Chris Lattnerc992add2003-08-13 05:33:12 +00005102 // Replace ((add A, B) != 0) with (A != -B) if A or B is
5103 // efficiently invertible, or if the add has just this one use.
5104 Value *BOp0 = BO->getOperand(0), *BOp1 = BO->getOperand(1);
Misha Brukmanb1c93172005-04-21 23:48:37 +00005105
Chris Lattnerc992add2003-08-13 05:33:12 +00005106 if (Value *NegVal = dyn_castNegVal(BOp1))
Reid Spencer266e42b2006-12-23 06:05:41 +00005107 return new ICmpInst(I.getPredicate(), BOp0, NegVal);
Chris Lattnerc992add2003-08-13 05:33:12 +00005108 else if (Value *NegVal = dyn_castNegVal(BOp0))
Reid Spencer266e42b2006-12-23 06:05:41 +00005109 return new ICmpInst(I.getPredicate(), NegVal, BOp1);
Chris Lattnerf95d9b92003-10-15 16:48:29 +00005110 else if (BO->hasOneUse()) {
Chris Lattner6e0123b2007-02-11 01:23:03 +00005111 Instruction *Neg = BinaryOperator::createNeg(BOp1);
Chris Lattnerc992add2003-08-13 05:33:12 +00005112 InsertNewInstBefore(Neg, I);
Chris Lattner6e0123b2007-02-11 01:23:03 +00005113 Neg->takeName(BO);
Reid Spencer266e42b2006-12-23 06:05:41 +00005114 return new ICmpInst(I.getPredicate(), BOp0, Neg);
Chris Lattnerc992add2003-08-13 05:33:12 +00005115 }
5116 }
5117 break;
5118 case Instruction::Xor:
5119 // For the xor case, we can xor two constants together, eliminating
5120 // the explicit xor.
5121 if (Constant *BOC = dyn_cast<Constant>(BO->getOperand(1)))
Reid Spencer266e42b2006-12-23 06:05:41 +00005122 return new ICmpInst(I.getPredicate(), BO->getOperand(0),
5123 ConstantExpr::getXor(CI, BOC));
Chris Lattnerc992add2003-08-13 05:33:12 +00005124
5125 // FALLTHROUGH
5126 case Instruction::Sub:
5127 // Replace (([sub|xor] A, B) != 0) with (A != B)
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00005128 if (CI->isZero())
Reid Spencer266e42b2006-12-23 06:05:41 +00005129 return new ICmpInst(I.getPredicate(), BO->getOperand(0),
5130 BO->getOperand(1));
Chris Lattnerc992add2003-08-13 05:33:12 +00005131 break;
5132
5133 case Instruction::Or:
5134 // If bits are being or'd in that are not present in the constant we
5135 // are comparing against, then the comparison could never succeed!
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00005136 if (Constant *BOC = dyn_cast<Constant>(BO->getOperand(1))) {
Chris Lattnerc8e7e292004-06-10 02:12:35 +00005137 Constant *NotCI = ConstantExpr::getNot(CI);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00005138 if (!ConstantExpr::getAnd(BOC, NotCI)->isNullValue())
Reid Spencercddc9df2007-01-12 04:24:46 +00005139 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty,
5140 isICMP_NE));
Chris Lattnerc1e7cc02004-01-12 19:35:11 +00005141 }
Chris Lattnerc992add2003-08-13 05:33:12 +00005142 break;
5143
5144 case Instruction::And:
5145 if (ConstantInt *BOC = dyn_cast<ConstantInt>(BO->getOperand(1))) {
Chris Lattnerd492a0b2003-07-23 17:02:11 +00005146 // If bits are being compared against that are and'd out, then the
5147 // comparison can never succeed!
Chris Lattnerc8e7e292004-06-10 02:12:35 +00005148 if (!ConstantExpr::getAnd(CI,
5149 ConstantExpr::getNot(BOC))->isNullValue())
Reid Spencercddc9df2007-01-12 04:24:46 +00005150 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty,
5151 isICMP_NE));
Chris Lattnerc992add2003-08-13 05:33:12 +00005152
Chris Lattner35167c32004-06-09 07:59:58 +00005153 // If we have ((X & C) == C), turn it into ((X & C) != 0).
Chris Lattneree59d4b2004-06-10 02:33:20 +00005154 if (CI == BOC && isOneBitSet(CI))
Reid Spencer266e42b2006-12-23 06:05:41 +00005155 return new ICmpInst(isICMP_NE ? ICmpInst::ICMP_EQ :
5156 ICmpInst::ICMP_NE, Op0,
5157 Constant::getNullValue(CI->getType()));
Chris Lattner35167c32004-06-09 07:59:58 +00005158
Reid Spencer266e42b2006-12-23 06:05:41 +00005159 // Replace (and X, (1 << size(X)-1) != 0) with x s< 0
Chris Lattnerc992add2003-08-13 05:33:12 +00005160 if (isSignBit(BOC)) {
5161 Value *X = BO->getOperand(0);
Reid Spencer266e42b2006-12-23 06:05:41 +00005162 Constant *Zero = Constant::getNullValue(X->getType());
5163 ICmpInst::Predicate pred = isICMP_NE ?
5164 ICmpInst::ICMP_SLT : ICmpInst::ICMP_SGE;
5165 return new ICmpInst(pred, X, Zero);
Chris Lattnerc992add2003-08-13 05:33:12 +00005166 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00005167
Chris Lattnerbfff18a2004-09-27 19:29:18 +00005168 // ((X & ~7) == 0) --> X < 8
Chris Lattner8fc5af42004-09-23 21:46:38 +00005169 if (CI->isNullValue() && isHighOnes(BOC)) {
5170 Value *X = BO->getOperand(0);
Chris Lattnerbfff18a2004-09-27 19:29:18 +00005171 Constant *NegX = ConstantExpr::getNeg(BOC);
Reid Spencer266e42b2006-12-23 06:05:41 +00005172 ICmpInst::Predicate pred = isICMP_NE ?
5173 ICmpInst::ICMP_UGE : ICmpInst::ICMP_ULT;
5174 return new ICmpInst(pred, X, NegX);
Chris Lattner8fc5af42004-09-23 21:46:38 +00005175 }
5176
Chris Lattnerd492a0b2003-07-23 17:02:11 +00005177 }
Chris Lattnerc992add2003-08-13 05:33:12 +00005178 default: break;
5179 }
Chris Lattnera7942b72006-11-29 05:02:16 +00005180 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Op0)) {
5181 // Handle set{eq|ne} <intrinsic>, intcst.
5182 switch (II->getIntrinsicID()) {
5183 default: break;
Reid Spencer266e42b2006-12-23 06:05:41 +00005184 case Intrinsic::bswap_i16:
5185 // icmp eq (bswap(x)), c -> icmp eq (x,bswap(c))
Chris Lattnerb15e2b12007-03-02 21:28:56 +00005186 AddToWorkList(II); // Dead?
Chris Lattnera7942b72006-11-29 05:02:16 +00005187 I.setOperand(0, II->getOperand(1));
Reid Spencerc635f472006-12-31 05:48:39 +00005188 I.setOperand(1, ConstantInt::get(Type::Int16Ty,
Chris Lattnera7942b72006-11-29 05:02:16 +00005189 ByteSwap_16(CI->getZExtValue())));
5190 return &I;
Reid Spencer266e42b2006-12-23 06:05:41 +00005191 case Intrinsic::bswap_i32:
5192 // icmp eq (bswap(x)), c -> icmp eq (x,bswap(c))
Chris Lattnerb15e2b12007-03-02 21:28:56 +00005193 AddToWorkList(II); // Dead?
Chris Lattnera7942b72006-11-29 05:02:16 +00005194 I.setOperand(0, II->getOperand(1));
Reid Spencerc635f472006-12-31 05:48:39 +00005195 I.setOperand(1, ConstantInt::get(Type::Int32Ty,
Chris Lattnera7942b72006-11-29 05:02:16 +00005196 ByteSwap_32(CI->getZExtValue())));
5197 return &I;
Reid Spencer266e42b2006-12-23 06:05:41 +00005198 case Intrinsic::bswap_i64:
5199 // icmp eq (bswap(x)), c -> icmp eq (x,bswap(c))
Chris Lattnerb15e2b12007-03-02 21:28:56 +00005200 AddToWorkList(II); // Dead?
Chris Lattnera7942b72006-11-29 05:02:16 +00005201 I.setOperand(0, II->getOperand(1));
Reid Spencerc635f472006-12-31 05:48:39 +00005202 I.setOperand(1, ConstantInt::get(Type::Int64Ty,
Chris Lattnera7942b72006-11-29 05:02:16 +00005203 ByteSwap_64(CI->getZExtValue())));
5204 return &I;
5205 }
Chris Lattnerc992add2003-08-13 05:33:12 +00005206 }
Reid Spencer266e42b2006-12-23 06:05:41 +00005207 } else { // Not a ICMP_EQ/ICMP_NE
5208 // If the LHS is a cast from an integral value of the same size, then
5209 // since we know the RHS is a constant, try to simlify.
Chris Lattner2b55ea32004-02-23 07:16:20 +00005210 if (CastInst *Cast = dyn_cast<CastInst>(Op0)) {
5211 Value *CastOp = Cast->getOperand(0);
5212 const Type *SrcTy = CastOp->getType();
Chris Lattnerd1f46d32005-04-24 06:59:08 +00005213 unsigned SrcTySize = SrcTy->getPrimitiveSizeInBits();
Chris Lattner03c49532007-01-15 02:27:26 +00005214 if (SrcTy->isInteger() &&
Chris Lattnerd1f46d32005-04-24 06:59:08 +00005215 SrcTySize == Cast->getType()->getPrimitiveSizeInBits()) {
Reid Spencer266e42b2006-12-23 06:05:41 +00005216 // If this is an unsigned comparison, try to make the comparison use
5217 // smaller constant values.
5218 switch (I.getPredicate()) {
5219 default: break;
5220 case ICmpInst::ICMP_ULT: { // X u< 128 => X s> -1
5221 ConstantInt *CUI = cast<ConstantInt>(CI);
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00005222 if (CUI->getValue() == APInt::getSignBit(SrcTySize))
Reid Spencer266e42b2006-12-23 06:05:41 +00005223 return new ICmpInst(ICmpInst::ICMP_SGT, CastOp,
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00005224 ConstantInt::get(APInt::getAllOnesValue(SrcTySize)));
Reid Spencer266e42b2006-12-23 06:05:41 +00005225 break;
5226 }
5227 case ICmpInst::ICMP_UGT: { // X u> 127 => X s< 0
5228 ConstantInt *CUI = cast<ConstantInt>(CI);
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00005229 if (CUI->getValue() == APInt::getSignedMaxValue(SrcTySize))
Reid Spencer266e42b2006-12-23 06:05:41 +00005230 return new ICmpInst(ICmpInst::ICMP_SLT, CastOp,
5231 Constant::getNullValue(SrcTy));
5232 break;
5233 }
Chris Lattner2b55ea32004-02-23 07:16:20 +00005234 }
Reid Spencer266e42b2006-12-23 06:05:41 +00005235
Chris Lattner2b55ea32004-02-23 07:16:20 +00005236 }
5237 }
Chris Lattnere967b342003-06-04 05:10:11 +00005238 }
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00005239 }
5240
Reid Spencer266e42b2006-12-23 06:05:41 +00005241 // Handle icmp with constant RHS
Chris Lattner77c32c32005-04-23 15:31:55 +00005242 if (Constant *RHSC = dyn_cast<Constant>(Op1)) {
5243 if (Instruction *LHSI = dyn_cast<Instruction>(Op0))
5244 switch (LHSI->getOpcode()) {
Chris Lattnera816eee2005-05-01 04:42:15 +00005245 case Instruction::GetElementPtr:
5246 if (RHSC->isNullValue()) {
Reid Spencer266e42b2006-12-23 06:05:41 +00005247 // icmp pred GEP (P, int 0, int 0, int 0), null -> icmp pred P, null
Chris Lattnera816eee2005-05-01 04:42:15 +00005248 bool isAllZeros = true;
5249 for (unsigned i = 1, e = LHSI->getNumOperands(); i != e; ++i)
5250 if (!isa<Constant>(LHSI->getOperand(i)) ||
5251 !cast<Constant>(LHSI->getOperand(i))->isNullValue()) {
5252 isAllZeros = false;
5253 break;
5254 }
5255 if (isAllZeros)
Reid Spencer266e42b2006-12-23 06:05:41 +00005256 return new ICmpInst(I.getPredicate(), LHSI->getOperand(0),
Chris Lattnera816eee2005-05-01 04:42:15 +00005257 Constant::getNullValue(LHSI->getOperand(0)->getType()));
5258 }
5259 break;
5260
Chris Lattner77c32c32005-04-23 15:31:55 +00005261 case Instruction::PHI:
5262 if (Instruction *NV = FoldOpIntoPhi(I))
5263 return NV;
5264 break;
5265 case Instruction::Select:
5266 // If either operand of the select is a constant, we can fold the
5267 // comparison into the select arms, which will cause one to be
5268 // constant folded and the select turned into a bitwise or.
5269 Value *Op1 = 0, *Op2 = 0;
5270 if (LHSI->hasOneUse()) {
5271 if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(1))) {
5272 // Fold the known value into the constant operand.
Reid Spencer266e42b2006-12-23 06:05:41 +00005273 Op1 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
5274 // Insert a new ICmp of the other select operand.
5275 Op2 = InsertNewInstBefore(new ICmpInst(I.getPredicate(),
5276 LHSI->getOperand(2), RHSC,
5277 I.getName()), I);
Chris Lattner77c32c32005-04-23 15:31:55 +00005278 } else if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(2))) {
5279 // Fold the known value into the constant operand.
Reid Spencer266e42b2006-12-23 06:05:41 +00005280 Op2 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
5281 // Insert a new ICmp of the other select operand.
5282 Op1 = InsertNewInstBefore(new ICmpInst(I.getPredicate(),
5283 LHSI->getOperand(1), RHSC,
5284 I.getName()), I);
Chris Lattner77c32c32005-04-23 15:31:55 +00005285 }
5286 }
Jeff Cohen82639852005-04-23 21:38:35 +00005287
Chris Lattner77c32c32005-04-23 15:31:55 +00005288 if (Op1)
5289 return new SelectInst(LHSI->getOperand(0), Op1, Op2);
5290 break;
5291 }
5292 }
5293
Reid Spencer266e42b2006-12-23 06:05:41 +00005294 // If we can optimize a 'icmp GEP, P' or 'icmp P, GEP', do so now.
Chris Lattner0798af32005-01-13 20:14:25 +00005295 if (User *GEP = dyn_castGetElementPtr(Op0))
Reid Spencer266e42b2006-12-23 06:05:41 +00005296 if (Instruction *NI = FoldGEPICmp(GEP, Op1, I.getPredicate(), I))
Chris Lattner0798af32005-01-13 20:14:25 +00005297 return NI;
5298 if (User *GEP = dyn_castGetElementPtr(Op1))
Reid Spencer266e42b2006-12-23 06:05:41 +00005299 if (Instruction *NI = FoldGEPICmp(GEP, Op0,
5300 ICmpInst::getSwappedPredicate(I.getPredicate()), I))
Chris Lattner0798af32005-01-13 20:14:25 +00005301 return NI;
5302
Reid Spencer266e42b2006-12-23 06:05:41 +00005303 // Test to see if the operands of the icmp are casted versions of other
Chris Lattner64d87b02007-01-06 01:45:59 +00005304 // values. If the ptr->ptr cast can be stripped off both arguments, we do so
5305 // now.
5306 if (BitCastInst *CI = dyn_cast<BitCastInst>(Op0)) {
5307 if (isa<PointerType>(Op0->getType()) &&
5308 (isa<Constant>(Op1) || isa<BitCastInst>(Op1))) {
Chris Lattner16930792003-11-03 04:25:02 +00005309 // We keep moving the cast from the left operand over to the right
5310 // operand, where it can often be eliminated completely.
Chris Lattner64d87b02007-01-06 01:45:59 +00005311 Op0 = CI->getOperand(0);
Misha Brukmanb1c93172005-04-21 23:48:37 +00005312
Chris Lattner64d87b02007-01-06 01:45:59 +00005313 // If operand #1 is a bitcast instruction, it must also be a ptr->ptr cast
5314 // so eliminate it as well.
5315 if (BitCastInst *CI2 = dyn_cast<BitCastInst>(Op1))
5316 Op1 = CI2->getOperand(0);
Misha Brukmanb1c93172005-04-21 23:48:37 +00005317
Chris Lattner16930792003-11-03 04:25:02 +00005318 // If Op1 is a constant, we can fold the cast into the constant.
Chris Lattner64d87b02007-01-06 01:45:59 +00005319 if (Op0->getType() != Op1->getType())
Chris Lattner16930792003-11-03 04:25:02 +00005320 if (Constant *Op1C = dyn_cast<Constant>(Op1)) {
Reid Spencerbb65ebf2006-12-12 23:36:14 +00005321 Op1 = ConstantExpr::getBitCast(Op1C, Op0->getType());
Chris Lattner16930792003-11-03 04:25:02 +00005322 } else {
Reid Spencer266e42b2006-12-23 06:05:41 +00005323 // Otherwise, cast the RHS right before the icmp
Reid Spencer13bc5d72006-12-12 09:18:51 +00005324 Op1 = InsertCastBefore(Instruction::BitCast, Op1, Op0->getType(), I);
Chris Lattner16930792003-11-03 04:25:02 +00005325 }
Reid Spencer266e42b2006-12-23 06:05:41 +00005326 return new ICmpInst(I.getPredicate(), Op0, Op1);
Chris Lattner16930792003-11-03 04:25:02 +00005327 }
Chris Lattner64d87b02007-01-06 01:45:59 +00005328 }
5329
5330 if (isa<CastInst>(Op0)) {
Reid Spencer266e42b2006-12-23 06:05:41 +00005331 // Handle the special case of: icmp (cast bool to X), <cst>
Chris Lattner6444c372003-11-03 05:17:03 +00005332 // This comes up when you have code like
5333 // int X = A < B;
5334 // if (X) ...
5335 // For generality, we handle any zero-extension of any operand comparison
Chris Lattnerd1f46d32005-04-24 06:59:08 +00005336 // with a constant or another cast from the same type.
5337 if (isa<ConstantInt>(Op1) || isa<CastInst>(Op1))
Reid Spencer266e42b2006-12-23 06:05:41 +00005338 if (Instruction *R = visitICmpInstWithCastAndCast(I))
Chris Lattnerd1f46d32005-04-24 06:59:08 +00005339 return R;
Chris Lattner6444c372003-11-03 05:17:03 +00005340 }
Chris Lattnerf5c8a0b2006-02-27 01:44:11 +00005341
Chris Lattnerb3f24c92006-09-18 04:22:48 +00005342 if (I.isEquality()) {
Chris Lattner17c7c032007-01-05 03:04:57 +00005343 Value *A, *B, *C, *D;
5344 if (match(Op0, m_Xor(m_Value(A), m_Value(B)))) {
5345 if (A == Op1 || B == Op1) { // (A^B) == A -> B == 0
5346 Value *OtherVal = A == Op1 ? B : A;
5347 return new ICmpInst(I.getPredicate(), OtherVal,
5348 Constant::getNullValue(A->getType()));
5349 }
5350
5351 if (match(Op1, m_Xor(m_Value(C), m_Value(D)))) {
5352 // A^c1 == C^c2 --> A == C^(c1^c2)
5353 if (ConstantInt *C1 = dyn_cast<ConstantInt>(B))
5354 if (ConstantInt *C2 = dyn_cast<ConstantInt>(D))
5355 if (Op1->hasOneUse()) {
5356 Constant *NC = ConstantExpr::getXor(C1, C2);
5357 Instruction *Xor = BinaryOperator::createXor(C, NC, "tmp");
5358 return new ICmpInst(I.getPredicate(), A,
5359 InsertNewInstBefore(Xor, I));
5360 }
5361
5362 // A^B == A^D -> B == D
5363 if (A == C) return new ICmpInst(I.getPredicate(), B, D);
5364 if (A == D) return new ICmpInst(I.getPredicate(), B, C);
5365 if (B == C) return new ICmpInst(I.getPredicate(), A, D);
5366 if (B == D) return new ICmpInst(I.getPredicate(), A, C);
5367 }
5368 }
5369
5370 if (match(Op1, m_Xor(m_Value(A), m_Value(B))) &&
5371 (A == Op0 || B == Op0)) {
Chris Lattnerf5c8a0b2006-02-27 01:44:11 +00005372 // A == (A^B) -> B == 0
5373 Value *OtherVal = A == Op0 ? B : A;
Reid Spencer266e42b2006-12-23 06:05:41 +00005374 return new ICmpInst(I.getPredicate(), OtherVal,
5375 Constant::getNullValue(A->getType()));
Chris Lattner17c7c032007-01-05 03:04:57 +00005376 }
5377 if (match(Op0, m_Sub(m_Value(A), m_Value(B))) && A == Op1) {
Chris Lattnerf5c8a0b2006-02-27 01:44:11 +00005378 // (A-B) == A -> B == 0
Reid Spencer266e42b2006-12-23 06:05:41 +00005379 return new ICmpInst(I.getPredicate(), B,
5380 Constant::getNullValue(B->getType()));
Chris Lattner17c7c032007-01-05 03:04:57 +00005381 }
5382 if (match(Op1, m_Sub(m_Value(A), m_Value(B))) && A == Op0) {
Chris Lattnerf5c8a0b2006-02-27 01:44:11 +00005383 // A == (A-B) -> B == 0
Reid Spencer266e42b2006-12-23 06:05:41 +00005384 return new ICmpInst(I.getPredicate(), B,
5385 Constant::getNullValue(B->getType()));
Chris Lattnerf5c8a0b2006-02-27 01:44:11 +00005386 }
Chris Lattnerd12a4bf2006-11-14 06:06:06 +00005387
Chris Lattnerd12a4bf2006-11-14 06:06:06 +00005388 // (X&Z) == (Y&Z) -> (X^Y) & Z == 0
5389 if (Op0->hasOneUse() && Op1->hasOneUse() &&
5390 match(Op0, m_And(m_Value(A), m_Value(B))) &&
5391 match(Op1, m_And(m_Value(C), m_Value(D)))) {
5392 Value *X = 0, *Y = 0, *Z = 0;
5393
5394 if (A == C) {
5395 X = B; Y = D; Z = A;
5396 } else if (A == D) {
5397 X = B; Y = C; Z = A;
5398 } else if (B == C) {
5399 X = A; Y = D; Z = B;
5400 } else if (B == D) {
5401 X = A; Y = C; Z = B;
5402 }
5403
5404 if (X) { // Build (X^Y) & Z
5405 Op1 = InsertNewInstBefore(BinaryOperator::createXor(X, Y, "tmp"), I);
5406 Op1 = InsertNewInstBefore(BinaryOperator::createAnd(Op1, Z, "tmp"), I);
5407 I.setOperand(0, Op1);
5408 I.setOperand(1, Constant::getNullValue(Op1->getType()));
5409 return &I;
5410 }
5411 }
Chris Lattnerf5c8a0b2006-02-27 01:44:11 +00005412 }
Chris Lattner113f4f42002-06-25 16:13:24 +00005413 return Changed ? &I : 0;
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00005414}
5415
Reid Spencer266e42b2006-12-23 06:05:41 +00005416// visitICmpInstWithCastAndCast - Handle icmp (cast x to y), (cast/cst).
Chris Lattnerd1f46d32005-04-24 06:59:08 +00005417// We only handle extending casts so far.
5418//
Reid Spencer266e42b2006-12-23 06:05:41 +00005419Instruction *InstCombiner::visitICmpInstWithCastAndCast(ICmpInst &ICI) {
5420 const CastInst *LHSCI = cast<CastInst>(ICI.getOperand(0));
Reid Spencer6c38f0b2006-11-27 01:05:10 +00005421 Value *LHSCIOp = LHSCI->getOperand(0);
5422 const Type *SrcTy = LHSCIOp->getType();
Reid Spencer266e42b2006-12-23 06:05:41 +00005423 const Type *DestTy = LHSCI->getType();
Chris Lattnerd1f46d32005-04-24 06:59:08 +00005424 Value *RHSCIOp;
5425
Reid Spencer266e42b2006-12-23 06:05:41 +00005426 // We only handle extension cast instructions, so far. Enforce this.
5427 if (LHSCI->getOpcode() != Instruction::ZExt &&
5428 LHSCI->getOpcode() != Instruction::SExt)
Chris Lattner03f06f12005-01-17 03:20:02 +00005429 return 0;
5430
Reid Spencer266e42b2006-12-23 06:05:41 +00005431 bool isSignedExt = LHSCI->getOpcode() == Instruction::SExt;
5432 bool isSignedCmp = ICI.isSignedPredicate();
Chris Lattnerd1f46d32005-04-24 06:59:08 +00005433
Reid Spencer266e42b2006-12-23 06:05:41 +00005434 if (CastInst *CI = dyn_cast<CastInst>(ICI.getOperand(1))) {
Chris Lattnerd1f46d32005-04-24 06:59:08 +00005435 // Not an extension from the same type?
5436 RHSCIOp = CI->getOperand(0);
Reid Spencer266e42b2006-12-23 06:05:41 +00005437 if (RHSCIOp->getType() != LHSCIOp->getType())
5438 return 0;
Chris Lattner387bf3f2007-01-13 23:11:38 +00005439
5440 // If the signedness of the two compares doesn't agree (i.e. one is a sext
5441 // and the other is a zext), then we can't handle this.
5442 if (CI->getOpcode() != LHSCI->getOpcode())
5443 return 0;
5444
5445 // Likewise, if the signedness of the [sz]exts and the compare don't match,
5446 // then we can't handle this.
5447 if (isSignedExt != isSignedCmp && !ICI.isEquality())
5448 return 0;
5449
5450 // Okay, just insert a compare of the reduced operands now!
5451 return new ICmpInst(ICI.getPredicate(), LHSCIOp, RHSCIOp);
Reid Spencer279fa252004-11-28 21:31:15 +00005452 }
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00005453
Reid Spencer266e42b2006-12-23 06:05:41 +00005454 // If we aren't dealing with a constant on the RHS, exit early
5455 ConstantInt *CI = dyn_cast<ConstantInt>(ICI.getOperand(1));
5456 if (!CI)
5457 return 0;
5458
5459 // Compute the constant that would happen if we truncated to SrcTy then
5460 // reextended to DestTy.
5461 Constant *Res1 = ConstantExpr::getTrunc(CI, SrcTy);
5462 Constant *Res2 = ConstantExpr::getCast(LHSCI->getOpcode(), Res1, DestTy);
5463
5464 // If the re-extended constant didn't change...
5465 if (Res2 == CI) {
5466 // Make sure that sign of the Cmp and the sign of the Cast are the same.
5467 // For example, we might have:
5468 // %A = sext short %X to uint
5469 // %B = icmp ugt uint %A, 1330
5470 // It is incorrect to transform this into
5471 // %B = icmp ugt short %X, 1330
5472 // because %A may have negative value.
5473 //
5474 // However, it is OK if SrcTy is bool (See cast-set.ll testcase)
5475 // OR operation is EQ/NE.
Reid Spencer542964f2007-01-11 18:21:29 +00005476 if (isSignedExt == isSignedCmp || SrcTy == Type::Int1Ty || ICI.isEquality())
Reid Spencer266e42b2006-12-23 06:05:41 +00005477 return new ICmpInst(ICI.getPredicate(), LHSCIOp, Res1);
5478 else
5479 return 0;
5480 }
5481
5482 // The re-extended constant changed so the constant cannot be represented
5483 // in the shorter type. Consequently, we cannot emit a simple comparison.
5484
5485 // First, handle some easy cases. We know the result cannot be equal at this
5486 // point so handle the ICI.isEquality() cases
5487 if (ICI.getPredicate() == ICmpInst::ICMP_EQ)
Zhou Sheng75b871f2007-01-11 12:24:14 +00005488 return ReplaceInstUsesWith(ICI, ConstantInt::getFalse());
Reid Spencer266e42b2006-12-23 06:05:41 +00005489 if (ICI.getPredicate() == ICmpInst::ICMP_NE)
Zhou Sheng75b871f2007-01-11 12:24:14 +00005490 return ReplaceInstUsesWith(ICI, ConstantInt::getTrue());
Reid Spencer266e42b2006-12-23 06:05:41 +00005491
5492 // Evaluate the comparison for LT (we invert for GT below). LE and GE cases
5493 // should have been folded away previously and not enter in here.
5494 Value *Result;
5495 if (isSignedCmp) {
5496 // We're performing a signed comparison.
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00005497 if (cast<ConstantInt>(CI)->getValue().isNegative())
Zhou Sheng75b871f2007-01-11 12:24:14 +00005498 Result = ConstantInt::getFalse(); // X < (small) --> false
Reid Spencer266e42b2006-12-23 06:05:41 +00005499 else
Zhou Sheng75b871f2007-01-11 12:24:14 +00005500 Result = ConstantInt::getTrue(); // X < (large) --> true
Reid Spencer266e42b2006-12-23 06:05:41 +00005501 } else {
5502 // We're performing an unsigned comparison.
5503 if (isSignedExt) {
5504 // We're performing an unsigned comp with a sign extended value.
5505 // This is true if the input is >= 0. [aka >s -1]
Zhou Sheng75b871f2007-01-11 12:24:14 +00005506 Constant *NegOne = ConstantInt::getAllOnesValue(SrcTy);
Reid Spencer266e42b2006-12-23 06:05:41 +00005507 Result = InsertNewInstBefore(new ICmpInst(ICmpInst::ICMP_SGT, LHSCIOp,
5508 NegOne, ICI.getName()), ICI);
5509 } else {
5510 // Unsigned extend & unsigned compare -> always true.
Zhou Sheng75b871f2007-01-11 12:24:14 +00005511 Result = ConstantInt::getTrue();
Reid Spencer266e42b2006-12-23 06:05:41 +00005512 }
5513 }
5514
5515 // Finally, return the value computed.
5516 if (ICI.getPredicate() == ICmpInst::ICMP_ULT ||
5517 ICI.getPredicate() == ICmpInst::ICMP_SLT) {
5518 return ReplaceInstUsesWith(ICI, Result);
5519 } else {
5520 assert((ICI.getPredicate()==ICmpInst::ICMP_UGT ||
5521 ICI.getPredicate()==ICmpInst::ICMP_SGT) &&
5522 "ICmp should be folded!");
5523 if (Constant *CI = dyn_cast<Constant>(Result))
5524 return ReplaceInstUsesWith(ICI, ConstantExpr::getNot(CI));
5525 else
5526 return BinaryOperator::createNot(Result);
5527 }
Chris Lattnerd1f46d32005-04-24 06:59:08 +00005528}
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00005529
Reid Spencer2341c222007-02-02 02:16:23 +00005530Instruction *InstCombiner::visitShl(BinaryOperator &I) {
5531 return commonShiftTransforms(I);
5532}
5533
5534Instruction *InstCombiner::visitLShr(BinaryOperator &I) {
5535 return commonShiftTransforms(I);
5536}
5537
5538Instruction *InstCombiner::visitAShr(BinaryOperator &I) {
5539 return commonShiftTransforms(I);
5540}
5541
5542Instruction *InstCombiner::commonShiftTransforms(BinaryOperator &I) {
5543 assert(I.getOperand(1)->getType() == I.getOperand(0)->getType());
Chris Lattner113f4f42002-06-25 16:13:24 +00005544 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00005545
5546 // shl X, 0 == X and shr X, 0 == X
5547 // shl 0, X == 0 and shr 0, X == 0
Reid Spencer2341c222007-02-02 02:16:23 +00005548 if (Op1 == Constant::getNullValue(Op1->getType()) ||
Chris Lattnere6794492002-08-12 21:17:25 +00005549 Op0 == Constant::getNullValue(Op0->getType()))
5550 return ReplaceInstUsesWith(I, Op0);
Chris Lattnerf5b4ef72006-02-12 08:07:37 +00005551
Reid Spencer266e42b2006-12-23 06:05:41 +00005552 if (isa<UndefValue>(Op0)) {
5553 if (I.getOpcode() == Instruction::AShr) // undef >>s X -> undef
Chris Lattner67f05452004-10-16 23:28:04 +00005554 return ReplaceInstUsesWith(I, Op0);
Reid Spencer266e42b2006-12-23 06:05:41 +00005555 else // undef << X -> 0, undef >>u X -> 0
Chris Lattner81a7a232004-10-16 18:11:37 +00005556 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
5557 }
5558 if (isa<UndefValue>(Op1)) {
Reid Spencer266e42b2006-12-23 06:05:41 +00005559 if (I.getOpcode() == Instruction::AShr) // X >>s undef -> X
5560 return ReplaceInstUsesWith(I, Op0);
5561 else // X << undef, X >>u undef -> 0
Chris Lattner81a7a232004-10-16 18:11:37 +00005562 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattner81a7a232004-10-16 18:11:37 +00005563 }
5564
Chris Lattnerd4dee402006-11-10 23:38:52 +00005565 // ashr int -1, X = -1 (for any arithmetic shift rights of ~0)
5566 if (I.getOpcode() == Instruction::AShr)
Reid Spencere0fc4df2006-10-20 07:07:24 +00005567 if (ConstantInt *CSI = dyn_cast<ConstantInt>(Op0))
Chris Lattnerd4dee402006-11-10 23:38:52 +00005568 if (CSI->isAllOnesValue())
Chris Lattnerdeaa0dd2003-08-12 21:53:41 +00005569 return ReplaceInstUsesWith(I, CSI);
5570
Chris Lattner183b3362004-04-09 19:05:30 +00005571 // Try to fold constant and into select arguments.
5572 if (isa<Constant>(Op0))
5573 if (SelectInst *SI = dyn_cast<SelectInst>(Op1))
Chris Lattner86102b82005-01-01 16:22:27 +00005574 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
Chris Lattner183b3362004-04-09 19:05:30 +00005575 return R;
5576
Chris Lattnerb18dbbf2005-05-08 17:34:56 +00005577 // See if we can turn a signed shr into an unsigned shr.
Chris Lattnerb3f24c92006-09-18 04:22:48 +00005578 if (I.isArithmeticShift()) {
Reid Spencer6274c722007-03-23 18:46:34 +00005579 if (MaskedValueIsZero(Op0,
5580 APInt::getSignBit(I.getType()->getPrimitiveSizeInBits()))) {
Reid Spencer0d5f9232007-02-02 14:08:20 +00005581 return BinaryOperator::createLShr(Op0, Op1, I.getName());
Chris Lattnerb18dbbf2005-05-08 17:34:56 +00005582 }
5583 }
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00005584
Reid Spencere0fc4df2006-10-20 07:07:24 +00005585 if (ConstantInt *CUI = dyn_cast<ConstantInt>(Op1))
Reid Spencerc635f472006-12-31 05:48:39 +00005586 if (Instruction *Res = FoldShiftByConstant(Op0, CUI, I))
5587 return Res;
Chris Lattner14553932006-01-06 07:12:35 +00005588 return 0;
5589}
5590
Reid Spencere0fc4df2006-10-20 07:07:24 +00005591Instruction *InstCombiner::FoldShiftByConstant(Value *Op0, ConstantInt *Op1,
Reid Spencer2341c222007-02-02 02:16:23 +00005592 BinaryOperator &I) {
Reid Spencer266e42b2006-12-23 06:05:41 +00005593 bool isLeftShift = I.getOpcode() == Instruction::Shl;
Chris Lattner14553932006-01-06 07:12:35 +00005594
Chris Lattnerf5b4ef72006-02-12 08:07:37 +00005595 // See if we can simplify any instructions used by the instruction whose sole
5596 // purpose is to compute bits we don't care about.
Reid Spencer6274c722007-03-23 18:46:34 +00005597 uint32_t TypeBits = Op0->getType()->getPrimitiveSizeInBits();
5598 APInt KnownZero(TypeBits, 0), KnownOne(TypeBits, 0);
5599 if (SimplifyDemandedBits(&I, APInt::getAllOnesValue(TypeBits),
Chris Lattnerf5b4ef72006-02-12 08:07:37 +00005600 KnownZero, KnownOne))
5601 return &I;
5602
Chris Lattner14553932006-01-06 07:12:35 +00005603 // shl uint X, 32 = 0 and shr ubyte Y, 9 = 0, ... just don't eliminate shr
5604 // of a signed value.
5605 //
Reid Spencer6274c722007-03-23 18:46:34 +00005606 if (Op1->getZExtValue() >= TypeBits) { // shift amount always <= 32 bits
Chris Lattnerd5fea612007-02-02 05:29:55 +00005607 if (I.getOpcode() != Instruction::AShr)
Chris Lattner14553932006-01-06 07:12:35 +00005608 return ReplaceInstUsesWith(I, Constant::getNullValue(Op0->getType()));
5609 else {
Chris Lattnerd5fea612007-02-02 05:29:55 +00005610 I.setOperand(1, ConstantInt::get(I.getType(), TypeBits-1));
Chris Lattner14553932006-01-06 07:12:35 +00005611 return &I;
Chris Lattnerf5ce2542004-02-23 20:30:06 +00005612 }
Chris Lattner14553932006-01-06 07:12:35 +00005613 }
5614
5615 // ((X*C1) << C2) == (X * (C1 << C2))
5616 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Op0))
5617 if (BO->getOpcode() == Instruction::Mul && isLeftShift)
5618 if (Constant *BOOp = dyn_cast<Constant>(BO->getOperand(1)))
5619 return BinaryOperator::createMul(BO->getOperand(0),
5620 ConstantExpr::getShl(BOOp, Op1));
5621
5622 // Try to fold constant and into select arguments.
5623 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
5624 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
5625 return R;
5626 if (isa<PHINode>(Op0))
5627 if (Instruction *NV = FoldOpIntoPhi(I))
5628 return NV;
5629
5630 if (Op0->hasOneUse()) {
Chris Lattner14553932006-01-06 07:12:35 +00005631 if (BinaryOperator *Op0BO = dyn_cast<BinaryOperator>(Op0)) {
5632 // Turn ((X >> C) + Y) << C -> (X + (Y << C)) & (~0 << C)
5633 Value *V1, *V2;
5634 ConstantInt *CC;
5635 switch (Op0BO->getOpcode()) {
Chris Lattner27cb9db2005-09-18 05:12:10 +00005636 default: break;
5637 case Instruction::Add:
5638 case Instruction::And:
5639 case Instruction::Or:
Reid Spencer2f34b982007-02-02 14:41:37 +00005640 case Instruction::Xor: {
Chris Lattner27cb9db2005-09-18 05:12:10 +00005641 // These operators commute.
5642 // Turn (Y + (X >> C)) << C -> (X + (Y << C)) & (~0 << C)
Chris Lattner797dee72005-09-18 06:30:59 +00005643 if (isLeftShift && Op0BO->getOperand(1)->hasOneUse() &&
5644 match(Op0BO->getOperand(1),
Chris Lattner14553932006-01-06 07:12:35 +00005645 m_Shr(m_Value(V1), m_ConstantInt(CC))) && CC == Op1) {
Reid Spencer0d5f9232007-02-02 14:08:20 +00005646 Instruction *YS = BinaryOperator::createShl(
Chris Lattner14553932006-01-06 07:12:35 +00005647 Op0BO->getOperand(0), Op1,
Chris Lattner797dee72005-09-18 06:30:59 +00005648 Op0BO->getName());
5649 InsertNewInstBefore(YS, I); // (Y << C)
Chris Lattner24cd2fa2006-02-09 07:41:14 +00005650 Instruction *X =
5651 BinaryOperator::create(Op0BO->getOpcode(), YS, V1,
5652 Op0BO->getOperand(1)->getName());
Chris Lattner797dee72005-09-18 06:30:59 +00005653 InsertNewInstBefore(X, I); // (X + (Y << C))
5654 Constant *C2 = ConstantInt::getAllOnesValue(X->getType());
Chris Lattner14553932006-01-06 07:12:35 +00005655 C2 = ConstantExpr::getShl(C2, Op1);
Chris Lattner797dee72005-09-18 06:30:59 +00005656 return BinaryOperator::createAnd(X, C2);
5657 }
Chris Lattner14553932006-01-06 07:12:35 +00005658
Chris Lattner797dee72005-09-18 06:30:59 +00005659 // Turn (Y + ((X >> C) & CC)) << C -> ((X & (CC << C)) + (Y << C))
Reid Spencer2f34b982007-02-02 14:41:37 +00005660 Value *Op0BOOp1 = Op0BO->getOperand(1);
Chris Lattnerfe53cf22007-03-05 00:11:19 +00005661 if (isLeftShift && Op0BOOp1->hasOneUse() &&
Reid Spencer2f34b982007-02-02 14:41:37 +00005662 match(Op0BOOp1,
5663 m_And(m_Shr(m_Value(V1), m_Value(V2)),m_ConstantInt(CC))) &&
Chris Lattnerfe53cf22007-03-05 00:11:19 +00005664 cast<BinaryOperator>(Op0BOOp1)->getOperand(0)->hasOneUse() &&
5665 V2 == Op1) {
Reid Spencer0d5f9232007-02-02 14:08:20 +00005666 Instruction *YS = BinaryOperator::createShl(
Reid Spencer2341c222007-02-02 02:16:23 +00005667 Op0BO->getOperand(0), Op1,
5668 Op0BO->getName());
Chris Lattner797dee72005-09-18 06:30:59 +00005669 InsertNewInstBefore(YS, I); // (Y << C)
5670 Instruction *XM =
Chris Lattner14553932006-01-06 07:12:35 +00005671 BinaryOperator::createAnd(V1, ConstantExpr::getShl(CC, Op1),
Chris Lattner797dee72005-09-18 06:30:59 +00005672 V1->getName()+".mask");
5673 InsertNewInstBefore(XM, I); // X & (CC << C)
5674
5675 return BinaryOperator::create(Op0BO->getOpcode(), YS, XM);
5676 }
Reid Spencer2f34b982007-02-02 14:41:37 +00005677 }
Chris Lattner14553932006-01-06 07:12:35 +00005678
Reid Spencer2f34b982007-02-02 14:41:37 +00005679 // FALL THROUGH.
5680 case Instruction::Sub: {
Chris Lattner27cb9db2005-09-18 05:12:10 +00005681 // Turn ((X >> C) + Y) << C -> (X + (Y << C)) & (~0 << C)
Chris Lattner797dee72005-09-18 06:30:59 +00005682 if (isLeftShift && Op0BO->getOperand(0)->hasOneUse() &&
5683 match(Op0BO->getOperand(0),
Chris Lattner14553932006-01-06 07:12:35 +00005684 m_Shr(m_Value(V1), m_ConstantInt(CC))) && CC == Op1) {
Reid Spencer0d5f9232007-02-02 14:08:20 +00005685 Instruction *YS = BinaryOperator::createShl(
Reid Spencer2341c222007-02-02 02:16:23 +00005686 Op0BO->getOperand(1), Op1,
5687 Op0BO->getName());
Chris Lattner797dee72005-09-18 06:30:59 +00005688 InsertNewInstBefore(YS, I); // (Y << C)
Chris Lattner24cd2fa2006-02-09 07:41:14 +00005689 Instruction *X =
Chris Lattner1df0e982006-05-31 21:14:00 +00005690 BinaryOperator::create(Op0BO->getOpcode(), V1, YS,
Chris Lattner24cd2fa2006-02-09 07:41:14 +00005691 Op0BO->getOperand(0)->getName());
Chris Lattner797dee72005-09-18 06:30:59 +00005692 InsertNewInstBefore(X, I); // (X + (Y << C))
5693 Constant *C2 = ConstantInt::getAllOnesValue(X->getType());
Chris Lattner14553932006-01-06 07:12:35 +00005694 C2 = ConstantExpr::getShl(C2, Op1);
Chris Lattner797dee72005-09-18 06:30:59 +00005695 return BinaryOperator::createAnd(X, C2);
5696 }
Chris Lattner14553932006-01-06 07:12:35 +00005697
Chris Lattner1df0e982006-05-31 21:14:00 +00005698 // Turn (((X >> C)&CC) + Y) << C -> (X + (Y << C)) & (CC << C)
Chris Lattner797dee72005-09-18 06:30:59 +00005699 if (isLeftShift && Op0BO->getOperand(0)->hasOneUse() &&
5700 match(Op0BO->getOperand(0),
5701 m_And(m_Shr(m_Value(V1), m_Value(V2)),
Chris Lattner14553932006-01-06 07:12:35 +00005702 m_ConstantInt(CC))) && V2 == Op1 &&
Chris Lattner24cd2fa2006-02-09 07:41:14 +00005703 cast<BinaryOperator>(Op0BO->getOperand(0))
5704 ->getOperand(0)->hasOneUse()) {
Reid Spencer0d5f9232007-02-02 14:08:20 +00005705 Instruction *YS = BinaryOperator::createShl(
Reid Spencer2341c222007-02-02 02:16:23 +00005706 Op0BO->getOperand(1), Op1,
5707 Op0BO->getName());
Chris Lattner797dee72005-09-18 06:30:59 +00005708 InsertNewInstBefore(YS, I); // (Y << C)
5709 Instruction *XM =
Chris Lattner14553932006-01-06 07:12:35 +00005710 BinaryOperator::createAnd(V1, ConstantExpr::getShl(CC, Op1),
Chris Lattner797dee72005-09-18 06:30:59 +00005711 V1->getName()+".mask");
5712 InsertNewInstBefore(XM, I); // X & (CC << C)
5713
Chris Lattner1df0e982006-05-31 21:14:00 +00005714 return BinaryOperator::create(Op0BO->getOpcode(), XM, YS);
Chris Lattner797dee72005-09-18 06:30:59 +00005715 }
Chris Lattner14553932006-01-06 07:12:35 +00005716
Chris Lattner27cb9db2005-09-18 05:12:10 +00005717 break;
Reid Spencer2f34b982007-02-02 14:41:37 +00005718 }
Chris Lattner14553932006-01-06 07:12:35 +00005719 }
5720
5721
5722 // If the operand is an bitwise operator with a constant RHS, and the
5723 // shift is the only use, we can pull it out of the shift.
5724 if (ConstantInt *Op0C = dyn_cast<ConstantInt>(Op0BO->getOperand(1))) {
5725 bool isValid = true; // Valid only for And, Or, Xor
5726 bool highBitSet = false; // Transform if high bit of constant set?
5727
5728 switch (Op0BO->getOpcode()) {
Chris Lattnerdeaa0dd2003-08-12 21:53:41 +00005729 default: isValid = false; break; // Do not perform transform!
Chris Lattner44bd3922004-10-08 03:46:20 +00005730 case Instruction::Add:
5731 isValid = isLeftShift;
5732 break;
Chris Lattnerdeaa0dd2003-08-12 21:53:41 +00005733 case Instruction::Or:
5734 case Instruction::Xor:
5735 highBitSet = false;
5736 break;
5737 case Instruction::And:
5738 highBitSet = true;
5739 break;
Chris Lattner14553932006-01-06 07:12:35 +00005740 }
5741
5742 // If this is a signed shift right, and the high bit is modified
5743 // by the logical operation, do not perform the transformation.
5744 // The highBitSet boolean indicates the value of the high bit of
5745 // the constant which would cause it to be modified for this
5746 // operation.
5747 //
Chris Lattner3e009e82007-02-05 00:57:54 +00005748 if (isValid && !isLeftShift && I.getOpcode() == Instruction::AShr) {
Zhou Shenge9ebd3f2007-03-24 15:34:37 +00005749 isValid = ((Op0C->getValue() & APInt::getSignBit(TypeBits)) != 0) ==
5750 highBitSet;
Chris Lattner14553932006-01-06 07:12:35 +00005751 }
5752
5753 if (isValid) {
5754 Constant *NewRHS = ConstantExpr::get(I.getOpcode(), Op0C, Op1);
5755
5756 Instruction *NewShift =
Chris Lattner6e0123b2007-02-11 01:23:03 +00005757 BinaryOperator::create(I.getOpcode(), Op0BO->getOperand(0), Op1);
Chris Lattner14553932006-01-06 07:12:35 +00005758 InsertNewInstBefore(NewShift, I);
Chris Lattner6e0123b2007-02-11 01:23:03 +00005759 NewShift->takeName(Op0BO);
Chris Lattner14553932006-01-06 07:12:35 +00005760
5761 return BinaryOperator::create(Op0BO->getOpcode(), NewShift,
5762 NewRHS);
5763 }
5764 }
5765 }
5766 }
5767
Chris Lattnereb372a02006-01-06 07:52:12 +00005768 // Find out if this is a shift of a shift by a constant.
Reid Spencer2341c222007-02-02 02:16:23 +00005769 BinaryOperator *ShiftOp = dyn_cast<BinaryOperator>(Op0);
5770 if (ShiftOp && !ShiftOp->isShift())
5771 ShiftOp = 0;
Chris Lattnereb372a02006-01-06 07:52:12 +00005772
Reid Spencere0fc4df2006-10-20 07:07:24 +00005773 if (ShiftOp && isa<ConstantInt>(ShiftOp->getOperand(1))) {
Reid Spencere0fc4df2006-10-20 07:07:24 +00005774 ConstantInt *ShiftAmt1C = cast<ConstantInt>(ShiftOp->getOperand(1));
Zhou Shenge9ebd3f2007-03-24 15:34:37 +00005775 // These shift amounts are always <= 32 bits.
Reid Spencere0fc4df2006-10-20 07:07:24 +00005776 unsigned ShiftAmt1 = (unsigned)ShiftAmt1C->getZExtValue();
5777 unsigned ShiftAmt2 = (unsigned)Op1->getZExtValue();
Chris Lattner3e009e82007-02-05 00:57:54 +00005778 assert(ShiftAmt2 != 0 && "Should have been simplified earlier");
5779 if (ShiftAmt1 == 0) return 0; // Will be simplified in the future.
5780 Value *X = ShiftOp->getOperand(0);
Chris Lattnereb372a02006-01-06 07:52:12 +00005781
Chris Lattner3e009e82007-02-05 00:57:54 +00005782 unsigned AmtSum = ShiftAmt1+ShiftAmt2; // Fold into one big shift.
Reid Spencer6274c722007-03-23 18:46:34 +00005783 if (AmtSum > TypeBits)
5784 AmtSum = TypeBits;
Chris Lattner3e009e82007-02-05 00:57:54 +00005785
5786 const IntegerType *Ty = cast<IntegerType>(I.getType());
5787
5788 // Check for (X << c1) << c2 and (X >> c1) >> c2
Chris Lattner6c344e52007-02-03 23:28:07 +00005789 if (I.getOpcode() == ShiftOp->getOpcode()) {
Chris Lattner3e009e82007-02-05 00:57:54 +00005790 return BinaryOperator::create(I.getOpcode(), X,
5791 ConstantInt::get(Ty, AmtSum));
5792 } else if (ShiftOp->getOpcode() == Instruction::LShr &&
5793 I.getOpcode() == Instruction::AShr) {
5794 // ((X >>u C1) >>s C2) -> (X >>u (C1+C2)) since C1 != 0.
5795 return BinaryOperator::createLShr(X, ConstantInt::get(Ty, AmtSum));
5796 } else if (ShiftOp->getOpcode() == Instruction::AShr &&
5797 I.getOpcode() == Instruction::LShr) {
5798 // ((X >>s C1) >>u C2) -> ((X >>s (C1+C2)) & mask) since C1 != 0.
5799 Instruction *Shift =
5800 BinaryOperator::createAShr(X, ConstantInt::get(Ty, AmtSum));
5801 InsertNewInstBefore(Shift, I);
5802
Zhou Shenge9ebd3f2007-03-24 15:34:37 +00005803 APInt Mask(Ty->getMask().lshr(ShiftAmt2));
Reid Spencer6274c722007-03-23 18:46:34 +00005804 return BinaryOperator::createAnd(Shift, ConstantInt::get(Mask));
Chris Lattnereb372a02006-01-06 07:52:12 +00005805 }
5806
Chris Lattner3e009e82007-02-05 00:57:54 +00005807 // Okay, if we get here, one shift must be left, and the other shift must be
5808 // right. See if the amounts are equal.
5809 if (ShiftAmt1 == ShiftAmt2) {
5810 // If we have ((X >>? C) << C), turn this into X & (-1 << C).
5811 if (I.getOpcode() == Instruction::Shl) {
Zhou Shenge9ebd3f2007-03-24 15:34:37 +00005812 APInt Mask(Ty->getMask().shl(ShiftAmt1));
Reid Spencer6274c722007-03-23 18:46:34 +00005813 return BinaryOperator::createAnd(X, ConstantInt::get(Mask));
Chris Lattner3e009e82007-02-05 00:57:54 +00005814 }
5815 // If we have ((X << C) >>u C), turn this into X & (-1 >>u C).
5816 if (I.getOpcode() == Instruction::LShr) {
Zhou Shenge9ebd3f2007-03-24 15:34:37 +00005817 APInt Mask(Ty->getMask().lshr(ShiftAmt1));
Reid Spencer6274c722007-03-23 18:46:34 +00005818 return BinaryOperator::createAnd(X, ConstantInt::get(Mask));
Chris Lattner3e009e82007-02-05 00:57:54 +00005819 }
5820 // We can simplify ((X << C) >>s C) into a trunc + sext.
5821 // NOTE: we could do this for any C, but that would make 'unusual' integer
5822 // types. For now, just stick to ones well-supported by the code
5823 // generators.
5824 const Type *SExtType = 0;
5825 switch (Ty->getBitWidth() - ShiftAmt1) {
Reid Spencer6274c722007-03-23 18:46:34 +00005826 case 1 : SExtType = Type::Int1Ty; break;
5827 case 8 : SExtType = Type::Int8Ty; break;
5828 case 16 : SExtType = Type::Int16Ty; break;
5829 case 32 : SExtType = Type::Int32Ty; break;
5830 case 64 : SExtType = Type::Int64Ty; break;
Chris Lattner3e009e82007-02-05 00:57:54 +00005831 default: break;
5832 }
5833 if (SExtType) {
5834 Instruction *NewTrunc = new TruncInst(X, SExtType, "sext");
5835 InsertNewInstBefore(NewTrunc, I);
5836 return new SExtInst(NewTrunc, Ty);
5837 }
5838 // Otherwise, we can't handle it yet.
5839 } else if (ShiftAmt1 < ShiftAmt2) {
5840 unsigned ShiftDiff = ShiftAmt2-ShiftAmt1;
Chris Lattnereb372a02006-01-06 07:52:12 +00005841
Chris Lattner83ac5ae92007-02-05 05:57:49 +00005842 // (X >>? C1) << C2 --> X << (C2-C1) & (-1 << C2)
Chris Lattner3e009e82007-02-05 00:57:54 +00005843 if (I.getOpcode() == Instruction::Shl) {
5844 assert(ShiftOp->getOpcode() == Instruction::LShr ||
5845 ShiftOp->getOpcode() == Instruction::AShr);
Chris Lattner9cbfbc22006-01-07 01:32:28 +00005846 Instruction *Shift =
Chris Lattner3e009e82007-02-05 00:57:54 +00005847 BinaryOperator::createShl(X, ConstantInt::get(Ty, ShiftDiff));
Chris Lattner9cbfbc22006-01-07 01:32:28 +00005848 InsertNewInstBefore(Shift, I);
5849
Reid Spencerd8aad612007-03-25 02:03:12 +00005850 ConstantInt *Mask = ConstantInt::get(
5851 APInt::getHighBitsSet(TypeBits, TypeBits - ShiftAmt2));
5852 return BinaryOperator::createAnd(Shift, Mask);
Chris Lattnereb372a02006-01-06 07:52:12 +00005853 }
Chris Lattner3e009e82007-02-05 00:57:54 +00005854
Chris Lattner83ac5ae92007-02-05 05:57:49 +00005855 // (X << C1) >>u C2 --> X >>u (C2-C1) & (-1 >> C2)
Chris Lattner3e009e82007-02-05 00:57:54 +00005856 if (I.getOpcode() == Instruction::LShr) {
5857 assert(ShiftOp->getOpcode() == Instruction::Shl);
5858 Instruction *Shift =
5859 BinaryOperator::createLShr(X, ConstantInt::get(Ty, ShiftDiff));
5860 InsertNewInstBefore(Shift, I);
Chris Lattnereb372a02006-01-06 07:52:12 +00005861
Zhou Shenge9ebd3f2007-03-24 15:34:37 +00005862 APInt Mask(Ty->getMask().lshr(ShiftAmt2));
Reid Spencer6274c722007-03-23 18:46:34 +00005863 return BinaryOperator::createAnd(Shift, ConstantInt::get(Mask));
Chris Lattner27cb9db2005-09-18 05:12:10 +00005864 }
Chris Lattner3e009e82007-02-05 00:57:54 +00005865
5866 // We can't handle (X << C1) >>s C2, it shifts arbitrary bits in.
5867 } else {
5868 assert(ShiftAmt2 < ShiftAmt1);
5869 unsigned ShiftDiff = ShiftAmt1-ShiftAmt2;
5870
Chris Lattner83ac5ae92007-02-05 05:57:49 +00005871 // (X >>? C1) << C2 --> X >>? (C1-C2) & (-1 << C2)
Chris Lattner3e009e82007-02-05 00:57:54 +00005872 if (I.getOpcode() == Instruction::Shl) {
5873 assert(ShiftOp->getOpcode() == Instruction::LShr ||
5874 ShiftOp->getOpcode() == Instruction::AShr);
5875 Instruction *Shift =
5876 BinaryOperator::create(ShiftOp->getOpcode(), X,
5877 ConstantInt::get(Ty, ShiftDiff));
5878 InsertNewInstBefore(Shift, I);
5879
Zhou Shenge9ebd3f2007-03-24 15:34:37 +00005880 APInt Mask(Ty->getMask().shl(ShiftAmt2));
Reid Spencer6274c722007-03-23 18:46:34 +00005881 return BinaryOperator::createAnd(Shift, ConstantInt::get(Mask));
Chris Lattner3e009e82007-02-05 00:57:54 +00005882 }
5883
Chris Lattner83ac5ae92007-02-05 05:57:49 +00005884 // (X << C1) >>u C2 --> X << (C1-C2) & (-1 >> C2)
Chris Lattner3e009e82007-02-05 00:57:54 +00005885 if (I.getOpcode() == Instruction::LShr) {
5886 assert(ShiftOp->getOpcode() == Instruction::Shl);
5887 Instruction *Shift =
5888 BinaryOperator::createShl(X, ConstantInt::get(Ty, ShiftDiff));
5889 InsertNewInstBefore(Shift, I);
5890
Zhou Shenge9ebd3f2007-03-24 15:34:37 +00005891 APInt Mask(Ty->getMask().lshr(ShiftAmt2));
Reid Spencer6274c722007-03-23 18:46:34 +00005892 return BinaryOperator::createAnd(Shift, ConstantInt::get(Mask));
Chris Lattner3e009e82007-02-05 00:57:54 +00005893 }
5894
5895 // We can't handle (X << C1) >>a C2, it shifts arbitrary bits in.
Chris Lattner86102b82005-01-01 16:22:27 +00005896 }
Chris Lattnereb372a02006-01-06 07:52:12 +00005897 }
Chris Lattnerf4cdbf32002-05-06 16:14:14 +00005898 return 0;
5899}
5900
Chris Lattner48a44f72002-05-02 17:06:02 +00005901
Chris Lattner8f663e82005-10-29 04:36:15 +00005902/// DecomposeSimpleLinearExpr - Analyze 'Val', seeing if it is a simple linear
5903/// expression. If so, decompose it, returning some value X, such that Val is
5904/// X*Scale+Offset.
5905///
5906static Value *DecomposeSimpleLinearExpr(Value *Val, unsigned &Scale,
5907 unsigned &Offset) {
Reid Spencerc635f472006-12-31 05:48:39 +00005908 assert(Val->getType() == Type::Int32Ty && "Unexpected allocation size type!");
Reid Spencere0fc4df2006-10-20 07:07:24 +00005909 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
Reid Spencerc635f472006-12-31 05:48:39 +00005910 Offset = CI->getZExtValue();
5911 Scale = 1;
5912 return ConstantInt::get(Type::Int32Ty, 0);
Chris Lattner8f663e82005-10-29 04:36:15 +00005913 } else if (Instruction *I = dyn_cast<Instruction>(Val)) {
5914 if (I->getNumOperands() == 2) {
Reid Spencere0fc4df2006-10-20 07:07:24 +00005915 if (ConstantInt *CUI = dyn_cast<ConstantInt>(I->getOperand(1))) {
Reid Spencerc635f472006-12-31 05:48:39 +00005916 if (I->getOpcode() == Instruction::Shl) {
5917 // This is a value scaled by '1 << the shift amt'.
5918 Scale = 1U << CUI->getZExtValue();
5919 Offset = 0;
5920 return I->getOperand(0);
5921 } else if (I->getOpcode() == Instruction::Mul) {
5922 // This value is scaled by 'CUI'.
5923 Scale = CUI->getZExtValue();
5924 Offset = 0;
5925 return I->getOperand(0);
5926 } else if (I->getOpcode() == Instruction::Add) {
5927 // We have X+C. Check to see if we really have (X*C2)+C1,
5928 // where C1 is divisible by C2.
5929 unsigned SubScale;
5930 Value *SubVal =
5931 DecomposeSimpleLinearExpr(I->getOperand(0), SubScale, Offset);
5932 Offset += CUI->getZExtValue();
5933 if (SubScale > 1 && (Offset % SubScale == 0)) {
5934 Scale = SubScale;
5935 return SubVal;
Chris Lattner8f663e82005-10-29 04:36:15 +00005936 }
5937 }
5938 }
5939 }
5940 }
5941
5942 // Otherwise, we can't look past this.
5943 Scale = 1;
5944 Offset = 0;
5945 return Val;
5946}
5947
5948
Chris Lattner216be912005-10-24 06:03:58 +00005949/// PromoteCastOfAllocation - If we find a cast of an allocation instruction,
5950/// try to eliminate the cast by moving the type information into the alloc.
5951Instruction *InstCombiner::PromoteCastOfAllocation(CastInst &CI,
5952 AllocationInst &AI) {
5953 const PointerType *PTy = dyn_cast<PointerType>(CI.getType());
Chris Lattnerbb171802005-10-27 05:53:56 +00005954 if (!PTy) return 0; // Not casting the allocation to a pointer type.
Chris Lattner216be912005-10-24 06:03:58 +00005955
Chris Lattnerac87beb2005-10-24 06:22:12 +00005956 // Remove any uses of AI that are dead.
5957 assert(!CI.use_empty() && "Dead instructions should be removed earlier!");
Chris Lattner99c6cf62007-02-15 22:52:10 +00005958
Chris Lattnerac87beb2005-10-24 06:22:12 +00005959 for (Value::use_iterator UI = AI.use_begin(), E = AI.use_end(); UI != E; ) {
5960 Instruction *User = cast<Instruction>(*UI++);
5961 if (isInstructionTriviallyDead(User)) {
5962 while (UI != E && *UI == User)
5963 ++UI; // If this instruction uses AI more than once, don't break UI.
5964
Chris Lattnerac87beb2005-10-24 06:22:12 +00005965 ++NumDeadInst;
Bill Wendling5dbf43c2006-11-26 09:46:52 +00005966 DOUT << "IC: DCE: " << *User;
Chris Lattner51f54572007-03-02 19:59:19 +00005967 EraseInstFromFunction(*User);
Chris Lattnerac87beb2005-10-24 06:22:12 +00005968 }
5969 }
5970
Chris Lattner216be912005-10-24 06:03:58 +00005971 // Get the type really allocated and the type casted to.
5972 const Type *AllocElTy = AI.getAllocatedType();
5973 const Type *CastElTy = PTy->getElementType();
5974 if (!AllocElTy->isSized() || !CastElTy->isSized()) return 0;
Chris Lattner355ecc02005-10-24 06:26:18 +00005975
Chris Lattner945e4372007-02-14 05:52:17 +00005976 unsigned AllocElTyAlign = TD->getABITypeAlignment(AllocElTy);
5977 unsigned CastElTyAlign = TD->getABITypeAlignment(CastElTy);
Chris Lattner355ecc02005-10-24 06:26:18 +00005978 if (CastElTyAlign < AllocElTyAlign) return 0;
5979
Chris Lattner46705b22005-10-24 06:35:18 +00005980 // If the allocation has multiple uses, only promote it if we are strictly
5981 // increasing the alignment of the resultant allocation. If we keep it the
5982 // same, we open the door to infinite loops of various kinds.
5983 if (!AI.hasOneUse() && CastElTyAlign == AllocElTyAlign) return 0;
5984
Chris Lattner216be912005-10-24 06:03:58 +00005985 uint64_t AllocElTySize = TD->getTypeSize(AllocElTy);
5986 uint64_t CastElTySize = TD->getTypeSize(CastElTy);
Chris Lattnerbb171802005-10-27 05:53:56 +00005987 if (CastElTySize == 0 || AllocElTySize == 0) return 0;
Chris Lattner355ecc02005-10-24 06:26:18 +00005988
Chris Lattner8270c332005-10-29 03:19:53 +00005989 // See if we can satisfy the modulus by pulling a scale out of the array
5990 // size argument.
Chris Lattner8f663e82005-10-29 04:36:15 +00005991 unsigned ArraySizeScale, ArrayOffset;
5992 Value *NumElements = // See if the array size is a decomposable linear expr.
5993 DecomposeSimpleLinearExpr(AI.getOperand(0), ArraySizeScale, ArrayOffset);
5994
Chris Lattner8270c332005-10-29 03:19:53 +00005995 // If we can now satisfy the modulus, by using a non-1 scale, we really can
5996 // do the xform.
Chris Lattner8f663e82005-10-29 04:36:15 +00005997 if ((AllocElTySize*ArraySizeScale) % CastElTySize != 0 ||
5998 (AllocElTySize*ArrayOffset ) % CastElTySize != 0) return 0;
Chris Lattnerb3ecf962005-10-27 06:12:00 +00005999
Chris Lattner8270c332005-10-29 03:19:53 +00006000 unsigned Scale = (AllocElTySize*ArraySizeScale)/CastElTySize;
6001 Value *Amt = 0;
6002 if (Scale == 1) {
6003 Amt = NumElements;
6004 } else {
Reid Spencere0fc4df2006-10-20 07:07:24 +00006005 // If the allocation size is constant, form a constant mul expression
Reid Spencerc635f472006-12-31 05:48:39 +00006006 Amt = ConstantInt::get(Type::Int32Ty, Scale);
6007 if (isa<ConstantInt>(NumElements))
Reid Spencere0fc4df2006-10-20 07:07:24 +00006008 Amt = ConstantExpr::getMul(
6009 cast<ConstantInt>(NumElements), cast<ConstantInt>(Amt));
6010 // otherwise multiply the amount and the number of elements
Chris Lattner8270c332005-10-29 03:19:53 +00006011 else if (Scale != 1) {
6012 Instruction *Tmp = BinaryOperator::createMul(Amt, NumElements, "tmp");
6013 Amt = InsertNewInstBefore(Tmp, AI);
Chris Lattnerb3ecf962005-10-27 06:12:00 +00006014 }
Chris Lattnerbb171802005-10-27 05:53:56 +00006015 }
6016
Chris Lattner8f663e82005-10-29 04:36:15 +00006017 if (unsigned Offset = (AllocElTySize*ArrayOffset)/CastElTySize) {
Reid Spencerc635f472006-12-31 05:48:39 +00006018 Value *Off = ConstantInt::get(Type::Int32Ty, Offset);
Chris Lattner8f663e82005-10-29 04:36:15 +00006019 Instruction *Tmp = BinaryOperator::createAdd(Amt, Off, "tmp");
6020 Amt = InsertNewInstBefore(Tmp, AI);
6021 }
6022
Chris Lattner216be912005-10-24 06:03:58 +00006023 AllocationInst *New;
6024 if (isa<MallocInst>(AI))
Chris Lattner6e0123b2007-02-11 01:23:03 +00006025 New = new MallocInst(CastElTy, Amt, AI.getAlignment());
Chris Lattner216be912005-10-24 06:03:58 +00006026 else
Chris Lattner6e0123b2007-02-11 01:23:03 +00006027 New = new AllocaInst(CastElTy, Amt, AI.getAlignment());
Chris Lattner216be912005-10-24 06:03:58 +00006028 InsertNewInstBefore(New, AI);
Chris Lattner6e0123b2007-02-11 01:23:03 +00006029 New->takeName(&AI);
Chris Lattner46705b22005-10-24 06:35:18 +00006030
6031 // If the allocation has multiple uses, insert a cast and change all things
6032 // that used it to use the new cast. This will also hack on CI, but it will
6033 // die soon.
6034 if (!AI.hasOneUse()) {
6035 AddUsesToWorkList(AI);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006036 // New is the allocation instruction, pointer typed. AI is the original
6037 // allocation instruction, also pointer typed. Thus, cast to use is BitCast.
6038 CastInst *NewCast = new BitCastInst(New, AI.getType(), "tmpcast");
Chris Lattner46705b22005-10-24 06:35:18 +00006039 InsertNewInstBefore(NewCast, AI);
6040 AI.replaceAllUsesWith(NewCast);
6041 }
Chris Lattner216be912005-10-24 06:03:58 +00006042 return ReplaceInstUsesWith(CI, New);
6043}
6044
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006045/// CanEvaluateInDifferentType - Return true if we can take the specified value
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006046/// and return it as type Ty without inserting any new casts and without
6047/// changing the computed value. This is used by code that tries to decide
6048/// whether promoting or shrinking integer operations to wider or smaller types
6049/// will allow us to eliminate a truncate or extend.
6050///
6051/// This is a truncation operation if Ty is smaller than V->getType(), or an
6052/// extension operation if Ty is larger.
6053static bool CanEvaluateInDifferentType(Value *V, const IntegerType *Ty,
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006054 int &NumCastsRemoved) {
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006055 // We can always evaluate constants in another type.
6056 if (isa<ConstantInt>(V))
6057 return true;
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006058
6059 Instruction *I = dyn_cast<Instruction>(V);
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006060 if (!I) return false;
6061
6062 const IntegerType *OrigTy = cast<IntegerType>(V->getType());
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006063
6064 switch (I->getOpcode()) {
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006065 case Instruction::Add:
6066 case Instruction::Sub:
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006067 case Instruction::And:
6068 case Instruction::Or:
6069 case Instruction::Xor:
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006070 if (!I->hasOneUse()) return false;
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006071 // These operators can all arbitrarily be extended or truncated.
6072 return CanEvaluateInDifferentType(I->getOperand(0), Ty, NumCastsRemoved) &&
6073 CanEvaluateInDifferentType(I->getOperand(1), Ty, NumCastsRemoved);
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006074
Chris Lattner960acb02006-11-29 07:18:39 +00006075 case Instruction::Shl:
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006076 if (!I->hasOneUse()) return false;
6077 // If we are truncating the result of this SHL, and if it's a shift of a
6078 // constant amount, we can always perform a SHL in a smaller type.
6079 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
6080 if (Ty->getBitWidth() < OrigTy->getBitWidth() &&
6081 CI->getZExtValue() < Ty->getBitWidth())
6082 return CanEvaluateInDifferentType(I->getOperand(0), Ty,NumCastsRemoved);
6083 }
6084 break;
6085 case Instruction::LShr:
6086 if (!I->hasOneUse()) return false;
6087 // If this is a truncate of a logical shr, we can truncate it to a smaller
6088 // lshr iff we know that the bits we would otherwise be shifting in are
6089 // already zeros.
6090 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00006091 uint32_t BitWidth = OrigTy->getBitWidth();
Zhou Sheng755f04b2007-03-23 02:39:25 +00006092 if (Ty->getBitWidth() < BitWidth &&
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006093 MaskedValueIsZero(I->getOperand(0),
Reid Spencerc3e3b8a2007-03-22 20:36:03 +00006094 APInt::getAllOnesValue(BitWidth) &
6095 APInt::getAllOnesValue(Ty->getBitWidth()).zextOrTrunc(BitWidth).flip())
6096 && CI->getZExtValue() < Ty->getBitWidth()) {
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006097 return CanEvaluateInDifferentType(I->getOperand(0), Ty, NumCastsRemoved);
6098 }
6099 }
Chris Lattner960acb02006-11-29 07:18:39 +00006100 break;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006101 case Instruction::Trunc:
6102 case Instruction::ZExt:
6103 case Instruction::SExt:
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006104 // If this is a cast from the destination type, we can trivially eliminate
6105 // it, and this will remove a cast overall.
6106 if (I->getOperand(0)->getType() == Ty) {
Chris Lattner3fda3862006-06-28 17:34:50 +00006107 // If the first operand is itself a cast, and is eliminable, do not count
6108 // this as an eliminable cast. We would prefer to eliminate those two
6109 // casts first.
Reid Spencerde46e482006-11-02 20:25:50 +00006110 if (isa<CastInst>(I->getOperand(0)))
Chris Lattner3fda3862006-06-28 17:34:50 +00006111 return true;
6112
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006113 ++NumCastsRemoved;
6114 return true;
6115 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006116 break;
6117 default:
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006118 // TODO: Can handle more cases here.
6119 break;
6120 }
6121
6122 return false;
6123}
6124
6125/// EvaluateInDifferentType - Given an expression that
6126/// CanEvaluateInDifferentType returns true for, actually insert the code to
6127/// evaluate the expression.
Reid Spencer74a528b2006-12-13 18:21:21 +00006128Value *InstCombiner::EvaluateInDifferentType(Value *V, const Type *Ty,
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006129 bool isSigned) {
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006130 if (Constant *C = dyn_cast<Constant>(V))
Reid Spencer74a528b2006-12-13 18:21:21 +00006131 return ConstantExpr::getIntegerCast(C, Ty, isSigned /*Sext or ZExt*/);
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006132
6133 // Otherwise, it must be an instruction.
6134 Instruction *I = cast<Instruction>(V);
Chris Lattnerd0622b62006-05-20 23:14:03 +00006135 Instruction *Res = 0;
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006136 switch (I->getOpcode()) {
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006137 case Instruction::Add:
6138 case Instruction::Sub:
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006139 case Instruction::And:
6140 case Instruction::Or:
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006141 case Instruction::Xor:
Chris Lattner960acb02006-11-29 07:18:39 +00006142 case Instruction::AShr:
6143 case Instruction::LShr:
6144 case Instruction::Shl: {
Reid Spencer74a528b2006-12-13 18:21:21 +00006145 Value *LHS = EvaluateInDifferentType(I->getOperand(0), Ty, isSigned);
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006146 Value *RHS = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned);
6147 Res = BinaryOperator::create((Instruction::BinaryOps)I->getOpcode(),
6148 LHS, RHS, I->getName());
Chris Lattner960acb02006-11-29 07:18:39 +00006149 break;
6150 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006151 case Instruction::Trunc:
6152 case Instruction::ZExt:
6153 case Instruction::SExt:
6154 case Instruction::BitCast:
6155 // If the source type of the cast is the type we're trying for then we can
6156 // just return the source. There's no need to insert it because its not new.
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006157 if (I->getOperand(0)->getType() == Ty)
6158 return I->getOperand(0);
6159
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006160 // Some other kind of cast, which shouldn't happen, so just ..
6161 // FALL THROUGH
6162 default:
Chris Lattner1ebbe6a2006-05-13 02:06:03 +00006163 // TODO: Can handle more cases here.
6164 assert(0 && "Unreachable!");
6165 break;
6166 }
6167
6168 return InsertNewInstBefore(Res, *I);
6169}
6170
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006171/// @brief Implement the transforms common to all CastInst visitors.
6172Instruction *InstCombiner::commonCastTransforms(CastInst &CI) {
Chris Lattner55d4bda2003-06-23 21:59:52 +00006173 Value *Src = CI.getOperand(0);
6174
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006175 // Casting undef to anything results in undef so might as just replace it and
6176 // get rid of the cast.
Chris Lattner81a7a232004-10-16 18:11:37 +00006177 if (isa<UndefValue>(Src)) // cast undef -> undef
6178 return ReplaceInstUsesWith(CI, UndefValue::get(CI.getType()));
6179
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006180 // Many cases of "cast of a cast" are eliminable. If its eliminable we just
6181 // eliminate it now.
Chris Lattner86102b82005-01-01 16:22:27 +00006182 if (CastInst *CSrc = dyn_cast<CastInst>(Src)) { // A->B->C cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006183 if (Instruction::CastOps opc =
6184 isEliminableCastPair(CSrc, CI.getOpcode(), CI.getType(), TD)) {
6185 // The first cast (CSrc) is eliminable so we need to fix up or replace
6186 // the second cast (CI). CSrc will then have a good chance of being dead.
6187 return CastInst::create(opc, CSrc->getOperand(0), CI.getType());
Chris Lattner650b6da2002-08-02 20:00:25 +00006188 }
6189 }
Chris Lattner03841652004-05-25 04:29:21 +00006190
Chris Lattnerd0d51602003-06-21 23:12:02 +00006191 // If casting the result of a getelementptr instruction with no offset, turn
6192 // this into a cast of the original pointer!
6193 //
Chris Lattner55d4bda2003-06-23 21:59:52 +00006194 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Src)) {
Chris Lattnerd0d51602003-06-21 23:12:02 +00006195 bool AllZeroOperands = true;
6196 for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i)
6197 if (!isa<Constant>(GEP->getOperand(i)) ||
6198 !cast<Constant>(GEP->getOperand(i))->isNullValue()) {
6199 AllZeroOperands = false;
6200 break;
6201 }
6202 if (AllZeroOperands) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006203 // Changing the cast operand is usually not a good idea but it is safe
6204 // here because the pointer operand is being replaced with another
6205 // pointer operand so the opcode doesn't need to change.
Chris Lattnerd0d51602003-06-21 23:12:02 +00006206 CI.setOperand(0, GEP->getOperand(0));
6207 return &CI;
6208 }
6209 }
Chris Lattnerec45a4c2006-11-21 17:05:13 +00006210
Chris Lattnerf4ad1652003-11-02 05:57:39 +00006211 // If we are casting a malloc or alloca to a pointer to a type of the same
6212 // size, rewrite the allocation instruction to allocate the "right" type.
Chris Lattnerf4ad1652003-11-02 05:57:39 +00006213 if (AllocationInst *AI = dyn_cast<AllocationInst>(Src))
Chris Lattner216be912005-10-24 06:03:58 +00006214 if (Instruction *V = PromoteCastOfAllocation(CI, *AI))
6215 return V;
Chris Lattnerf4ad1652003-11-02 05:57:39 +00006216
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006217 // If we are casting a select then fold the cast into the select
Chris Lattner86102b82005-01-01 16:22:27 +00006218 if (SelectInst *SI = dyn_cast<SelectInst>(Src))
6219 if (Instruction *NV = FoldOpIntoSelect(CI, SI, this))
6220 return NV;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006221
6222 // If we are casting a PHI then fold the cast into the PHI
Chris Lattner6a4adcd2004-09-29 05:07:12 +00006223 if (isa<PHINode>(Src))
6224 if (Instruction *NV = FoldOpIntoPhi(CI))
6225 return NV;
Chris Lattnerb19a5c62006-04-12 18:09:35 +00006226
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006227 return 0;
6228}
6229
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006230/// Only the TRUNC, ZEXT, SEXT, and BITCAST can both operand and result as
6231/// integer types. This function implements the common transforms for all those
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006232/// cases.
6233/// @brief Implement the transforms common to CastInst with integer operands
6234Instruction *InstCombiner::commonIntCastTransforms(CastInst &CI) {
6235 if (Instruction *Result = commonCastTransforms(CI))
6236 return Result;
6237
6238 Value *Src = CI.getOperand(0);
6239 const Type *SrcTy = Src->getType();
6240 const Type *DestTy = CI.getType();
6241 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
6242 unsigned DestBitSize = DestTy->getPrimitiveSizeInBits();
6243
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006244 // See if we can simplify any instructions used by the LHS whose sole
6245 // purpose is to compute bits we don't care about.
Reid Spencer4154e732007-03-22 20:56:53 +00006246 APInt KnownZero(DestBitSize, 0), KnownOne(DestBitSize, 0);
6247 if (SimplifyDemandedBits(&CI, APInt::getAllOnesValue(DestBitSize),
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006248 KnownZero, KnownOne))
6249 return &CI;
6250
6251 // If the source isn't an instruction or has more than one use then we
6252 // can't do anything more.
Reid Spencer266e42b2006-12-23 06:05:41 +00006253 Instruction *SrcI = dyn_cast<Instruction>(Src);
6254 if (!SrcI || !Src->hasOneUse())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006255 return 0;
6256
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006257 // Attempt to propagate the cast into the instruction for int->int casts.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006258 int NumCastsRemoved = 0;
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006259 if (!isa<BitCastInst>(CI) &&
6260 CanEvaluateInDifferentType(SrcI, cast<IntegerType>(DestTy),
6261 NumCastsRemoved)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006262 // If this cast is a truncate, evaluting in a different type always
6263 // eliminates the cast, so it is always a win. If this is a noop-cast
6264 // this just removes a noop cast which isn't pointful, but simplifies
6265 // the code. If this is a zero-extension, we need to do an AND to
6266 // maintain the clear top-part of the computation, so we require that
6267 // the input have eliminated at least one cast. If this is a sign
6268 // extension, we insert two new casts (to do the extension) so we
6269 // require that two casts have been eliminated.
Chris Lattnerda1d04a2007-03-03 05:27:34 +00006270 bool DoXForm;
6271 switch (CI.getOpcode()) {
6272 default:
6273 // All the others use floating point so we shouldn't actually
6274 // get here because of the check above.
6275 assert(0 && "Unknown cast type");
6276 case Instruction::Trunc:
6277 DoXForm = true;
6278 break;
6279 case Instruction::ZExt:
6280 DoXForm = NumCastsRemoved >= 1;
6281 break;
6282 case Instruction::SExt:
6283 DoXForm = NumCastsRemoved >= 2;
6284 break;
6285 case Instruction::BitCast:
6286 DoXForm = false;
6287 break;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006288 }
6289
6290 if (DoXForm) {
Reid Spencer74a528b2006-12-13 18:21:21 +00006291 Value *Res = EvaluateInDifferentType(SrcI, DestTy,
6292 CI.getOpcode() == Instruction::SExt);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006293 assert(Res->getType() == DestTy);
6294 switch (CI.getOpcode()) {
6295 default: assert(0 && "Unknown cast type!");
6296 case Instruction::Trunc:
6297 case Instruction::BitCast:
6298 // Just replace this cast with the result.
6299 return ReplaceInstUsesWith(CI, Res);
6300 case Instruction::ZExt: {
6301 // We need to emit an AND to clear the high bits.
6302 assert(SrcBitSize < DestBitSize && "Not a zext?");
Reid Spencer4154e732007-03-22 20:56:53 +00006303 Constant *C = ConstantInt::get(APInt::getAllOnesValue(SrcBitSize));
6304 C = ConstantExpr::getZExt(C, DestTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006305 return BinaryOperator::createAnd(Res, C);
6306 }
6307 case Instruction::SExt:
6308 // We need to emit a cast to truncate, then a cast to sext.
6309 return CastInst::create(Instruction::SExt,
Reid Spencer13bc5d72006-12-12 09:18:51 +00006310 InsertCastBefore(Instruction::Trunc, Res, Src->getType(),
6311 CI), DestTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006312 }
6313 }
6314 }
6315
6316 Value *Op0 = SrcI->getNumOperands() > 0 ? SrcI->getOperand(0) : 0;
6317 Value *Op1 = SrcI->getNumOperands() > 1 ? SrcI->getOperand(1) : 0;
6318
6319 switch (SrcI->getOpcode()) {
6320 case Instruction::Add:
6321 case Instruction::Mul:
6322 case Instruction::And:
6323 case Instruction::Or:
6324 case Instruction::Xor:
6325 // If we are discarding information, or just changing the sign,
6326 // rewrite.
6327 if (DestBitSize <= SrcBitSize && DestBitSize != 1) {
6328 // Don't insert two casts if they cannot be eliminated. We allow
6329 // two casts to be inserted if the sizes are the same. This could
6330 // only be converting signedness, which is a noop.
6331 if (DestBitSize == SrcBitSize ||
Reid Spencer266e42b2006-12-23 06:05:41 +00006332 !ValueRequiresCast(CI.getOpcode(), Op1, DestTy,TD) ||
6333 !ValueRequiresCast(CI.getOpcode(), Op0, DestTy, TD)) {
Reid Spencer2a499b02006-12-13 17:19:09 +00006334 Instruction::CastOps opcode = CI.getOpcode();
Reid Spencer13bc5d72006-12-12 09:18:51 +00006335 Value *Op0c = InsertOperandCastBefore(opcode, Op0, DestTy, SrcI);
6336 Value *Op1c = InsertOperandCastBefore(opcode, Op1, DestTy, SrcI);
6337 return BinaryOperator::create(
6338 cast<BinaryOperator>(SrcI)->getOpcode(), Op0c, Op1c);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006339 }
6340 }
6341
6342 // cast (xor bool X, true) to int --> xor (cast bool X to int), 1
6343 if (isa<ZExtInst>(CI) && SrcBitSize == 1 &&
6344 SrcI->getOpcode() == Instruction::Xor &&
Zhou Sheng75b871f2007-01-11 12:24:14 +00006345 Op1 == ConstantInt::getTrue() &&
Reid Spencer266e42b2006-12-23 06:05:41 +00006346 (!Op0->hasOneUse() || !isa<CmpInst>(Op0))) {
Reid Spencer13bc5d72006-12-12 09:18:51 +00006347 Value *New = InsertOperandCastBefore(Instruction::ZExt, Op0, DestTy, &CI);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006348 return BinaryOperator::createXor(New, ConstantInt::get(CI.getType(), 1));
6349 }
6350 break;
6351 case Instruction::SDiv:
6352 case Instruction::UDiv:
6353 case Instruction::SRem:
6354 case Instruction::URem:
6355 // If we are just changing the sign, rewrite.
6356 if (DestBitSize == SrcBitSize) {
6357 // Don't insert two casts if they cannot be eliminated. We allow
6358 // two casts to be inserted if the sizes are the same. This could
6359 // only be converting signedness, which is a noop.
Reid Spencer266e42b2006-12-23 06:05:41 +00006360 if (!ValueRequiresCast(CI.getOpcode(), Op1, DestTy, TD) ||
6361 !ValueRequiresCast(CI.getOpcode(), Op0, DestTy, TD)) {
Reid Spencer13bc5d72006-12-12 09:18:51 +00006362 Value *Op0c = InsertOperandCastBefore(Instruction::BitCast,
6363 Op0, DestTy, SrcI);
6364 Value *Op1c = InsertOperandCastBefore(Instruction::BitCast,
6365 Op1, DestTy, SrcI);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006366 return BinaryOperator::create(
6367 cast<BinaryOperator>(SrcI)->getOpcode(), Op0c, Op1c);
6368 }
6369 }
6370 break;
6371
6372 case Instruction::Shl:
6373 // Allow changing the sign of the source operand. Do not allow
6374 // changing the size of the shift, UNLESS the shift amount is a
6375 // constant. We must not change variable sized shifts to a smaller
6376 // size, because it is undefined to shift more bits out than exist
6377 // in the value.
6378 if (DestBitSize == SrcBitSize ||
6379 (DestBitSize < SrcBitSize && isa<Constant>(Op1))) {
Reid Spencer13bc5d72006-12-12 09:18:51 +00006380 Instruction::CastOps opcode = (DestBitSize == SrcBitSize ?
6381 Instruction::BitCast : Instruction::Trunc);
6382 Value *Op0c = InsertOperandCastBefore(opcode, Op0, DestTy, SrcI);
Reid Spencer2341c222007-02-02 02:16:23 +00006383 Value *Op1c = InsertOperandCastBefore(opcode, Op1, DestTy, SrcI);
Reid Spencer0d5f9232007-02-02 14:08:20 +00006384 return BinaryOperator::createShl(Op0c, Op1c);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006385 }
6386 break;
6387 case Instruction::AShr:
6388 // If this is a signed shr, and if all bits shifted in are about to be
6389 // truncated off, turn it into an unsigned shr to allow greater
6390 // simplifications.
6391 if (DestBitSize < SrcBitSize &&
6392 isa<ConstantInt>(Op1)) {
6393 unsigned ShiftAmt = cast<ConstantInt>(Op1)->getZExtValue();
6394 if (SrcBitSize > ShiftAmt && SrcBitSize-ShiftAmt >= DestBitSize) {
6395 // Insert the new logical shift right.
Reid Spencer0d5f9232007-02-02 14:08:20 +00006396 return BinaryOperator::createLShr(Op0, Op1);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006397 }
6398 }
6399 break;
6400
Reid Spencer266e42b2006-12-23 06:05:41 +00006401 case Instruction::ICmp:
6402 // If we are just checking for a icmp eq of a single bit and casting it
6403 // to an integer, then shift the bit to the appropriate place and then
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006404 // cast to integer to avoid the comparison.
6405 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
Reid Spencer4154e732007-03-22 20:56:53 +00006406 APInt Op1CV(Op1C->getValue());
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006407 // cast (X == 0) to int --> X^1 iff X has only the low bit set.
6408 // cast (X == 0) to int --> (X>>1)^1 iff X has only the 2nd bit set.
6409 // cast (X == 1) to int --> X iff X has only the low bit set.
6410 // cast (X == 2) to int --> X>>1 iff X has only the 2nd bit set.
6411 // cast (X != 0) to int --> X iff X has only the low bit set.
6412 // cast (X != 0) to int --> X>>1 iff X has only the 2nd bit set.
6413 // cast (X != 1) to int --> X^1 iff X has only the low bit set.
6414 // cast (X != 2) to int --> (X>>1)^1 iff X has only the 2nd bit set.
Reid Spencer4154e732007-03-22 20:56:53 +00006415 if (Op1CV == 0 || Op1CV.isPowerOf2()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006416 // If Op1C some other power of two, convert:
Reid Spencer4154e732007-03-22 20:56:53 +00006417 uint32_t BitWidth = Op1C->getType()->getBitWidth();
6418 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
6419 APInt TypeMask(APInt::getAllOnesValue(BitWidth));
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006420 ComputeMaskedBits(Op0, TypeMask, KnownZero, KnownOne);
Reid Spencer266e42b2006-12-23 06:05:41 +00006421
6422 // This only works for EQ and NE
6423 ICmpInst::Predicate pred = cast<ICmpInst>(SrcI)->getPredicate();
6424 if (pred != ICmpInst::ICMP_NE && pred != ICmpInst::ICMP_EQ)
6425 break;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006426
Zhou Sheng0900993e2007-03-23 03:13:21 +00006427 APInt KnownZeroMask(KnownZero ^ TypeMask);
6428 if (KnownZeroMask.isPowerOf2()) { // Exactly 1 possible 1?
Reid Spencer266e42b2006-12-23 06:05:41 +00006429 bool isNE = pred == ICmpInst::ICMP_NE;
Zhou Sheng0900993e2007-03-23 03:13:21 +00006430 if (Op1CV != 0 && (Op1CV != KnownZeroMask)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006431 // (X&4) == 2 --> false
6432 // (X&4) != 2 --> true
Reid Spencercddc9df2007-01-12 04:24:46 +00006433 Constant *Res = ConstantInt::get(Type::Int1Ty, isNE);
Reid Spencerbb65ebf2006-12-12 23:36:14 +00006434 Res = ConstantExpr::getZExt(Res, CI.getType());
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006435 return ReplaceInstUsesWith(CI, Res);
6436 }
6437
Zhou Sheng0900993e2007-03-23 03:13:21 +00006438 unsigned ShiftAmt = KnownZeroMask.logBase2();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006439 Value *In = Op0;
6440 if (ShiftAmt) {
6441 // Perform a logical shr by shiftamt.
6442 // Insert the shift to put the result in the low bit.
6443 In = InsertNewInstBefore(
Reid Spencer0d5f9232007-02-02 14:08:20 +00006444 BinaryOperator::createLShr(In,
Reid Spencer2341c222007-02-02 02:16:23 +00006445 ConstantInt::get(In->getType(), ShiftAmt),
6446 In->getName()+".lobit"), CI);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006447 }
6448
Reid Spencer266e42b2006-12-23 06:05:41 +00006449 if ((Op1CV != 0) == isNE) { // Toggle the low bit.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006450 Constant *One = ConstantInt::get(In->getType(), 1);
6451 In = BinaryOperator::createXor(In, One, "tmp");
6452 InsertNewInstBefore(cast<Instruction>(In), CI);
6453 }
6454
6455 if (CI.getType() == In->getType())
6456 return ReplaceInstUsesWith(CI, In);
6457 else
Reid Spencerbb65ebf2006-12-12 23:36:14 +00006458 return CastInst::createIntegerCast(In, CI.getType(), false/*ZExt*/);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006459 }
6460 }
6461 }
6462 break;
6463 }
6464 return 0;
6465}
6466
6467Instruction *InstCombiner::visitTrunc(CastInst &CI) {
Chris Lattnerd747f012006-11-29 07:04:07 +00006468 if (Instruction *Result = commonIntCastTransforms(CI))
6469 return Result;
6470
6471 Value *Src = CI.getOperand(0);
6472 const Type *Ty = CI.getType();
6473 unsigned DestBitWidth = Ty->getPrimitiveSizeInBits();
Reid Spencer4154e732007-03-22 20:56:53 +00006474 unsigned SrcBitWidth = cast<IntegerType>(Src->getType())->getBitWidth();
Chris Lattnerd747f012006-11-29 07:04:07 +00006475
6476 if (Instruction *SrcI = dyn_cast<Instruction>(Src)) {
6477 switch (SrcI->getOpcode()) {
6478 default: break;
6479 case Instruction::LShr:
6480 // We can shrink lshr to something smaller if we know the bits shifted in
6481 // are already zeros.
6482 if (ConstantInt *ShAmtV = dyn_cast<ConstantInt>(SrcI->getOperand(1))) {
6483 unsigned ShAmt = ShAmtV->getZExtValue();
6484
6485 // Get a mask for the bits shifting in.
Reid Spencer4154e732007-03-22 20:56:53 +00006486 APInt Mask(APInt::getAllOnesValue(SrcBitWidth).lshr(
6487 SrcBitWidth-ShAmt).shl(DestBitWidth));
Reid Spencer13bc5d72006-12-12 09:18:51 +00006488 Value* SrcIOp0 = SrcI->getOperand(0);
6489 if (SrcI->hasOneUse() && MaskedValueIsZero(SrcIOp0, Mask)) {
Chris Lattnerd747f012006-11-29 07:04:07 +00006490 if (ShAmt >= DestBitWidth) // All zeros.
6491 return ReplaceInstUsesWith(CI, Constant::getNullValue(Ty));
6492
6493 // Okay, we can shrink this. Truncate the input, then return a new
6494 // shift.
Reid Spencer2341c222007-02-02 02:16:23 +00006495 Value *V1 = InsertCastBefore(Instruction::Trunc, SrcIOp0, Ty, CI);
6496 Value *V2 = InsertCastBefore(Instruction::Trunc, SrcI->getOperand(1),
6497 Ty, CI);
Reid Spencer0d5f9232007-02-02 14:08:20 +00006498 return BinaryOperator::createLShr(V1, V2);
Chris Lattnerd747f012006-11-29 07:04:07 +00006499 }
Chris Lattnerc209b582006-12-05 01:26:29 +00006500 } else { // This is a variable shr.
6501
6502 // Turn 'trunc (lshr X, Y) to bool' into '(X & (1 << Y)) != 0'. This is
6503 // more LLVM instructions, but allows '1 << Y' to be hoisted if
6504 // loop-invariant and CSE'd.
Reid Spencer542964f2007-01-11 18:21:29 +00006505 if (CI.getType() == Type::Int1Ty && SrcI->hasOneUse()) {
Chris Lattnerc209b582006-12-05 01:26:29 +00006506 Value *One = ConstantInt::get(SrcI->getType(), 1);
6507
Reid Spencer2341c222007-02-02 02:16:23 +00006508 Value *V = InsertNewInstBefore(
Reid Spencer0d5f9232007-02-02 14:08:20 +00006509 BinaryOperator::createShl(One, SrcI->getOperand(1),
Reid Spencer2341c222007-02-02 02:16:23 +00006510 "tmp"), CI);
Chris Lattnerc209b582006-12-05 01:26:29 +00006511 V = InsertNewInstBefore(BinaryOperator::createAnd(V,
6512 SrcI->getOperand(0),
6513 "tmp"), CI);
6514 Value *Zero = Constant::getNullValue(V->getType());
Reid Spencer266e42b2006-12-23 06:05:41 +00006515 return new ICmpInst(ICmpInst::ICMP_NE, V, Zero);
Chris Lattnerc209b582006-12-05 01:26:29 +00006516 }
Chris Lattnerd747f012006-11-29 07:04:07 +00006517 }
6518 break;
6519 }
6520 }
6521
6522 return 0;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006523}
6524
6525Instruction *InstCombiner::visitZExt(CastInst &CI) {
6526 // If one of the common conversion will work ..
6527 if (Instruction *Result = commonIntCastTransforms(CI))
6528 return Result;
6529
6530 Value *Src = CI.getOperand(0);
6531
6532 // If this is a cast of a cast
6533 if (CastInst *CSrc = dyn_cast<CastInst>(Src)) { // A->B->C cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006534 // If this is a TRUNC followed by a ZEXT then we are dealing with integral
6535 // types and if the sizes are just right we can convert this into a logical
6536 // 'and' which will be much cheaper than the pair of casts.
6537 if (isa<TruncInst>(CSrc)) {
6538 // Get the sizes of the types involved
6539 Value *A = CSrc->getOperand(0);
6540 unsigned SrcSize = A->getType()->getPrimitiveSizeInBits();
6541 unsigned MidSize = CSrc->getType()->getPrimitiveSizeInBits();
6542 unsigned DstSize = CI.getType()->getPrimitiveSizeInBits();
6543 // If we're actually extending zero bits and the trunc is a no-op
6544 if (MidSize < DstSize && SrcSize == DstSize) {
6545 // Replace both of the casts with an And of the type mask.
Reid Spencer4154e732007-03-22 20:56:53 +00006546 APInt AndValue(APInt::getAllOnesValue(MidSize).zext(SrcSize));
6547 Constant *AndConst = ConstantInt::get(AndValue);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006548 Instruction *And =
6549 BinaryOperator::createAnd(CSrc->getOperand(0), AndConst);
6550 // Unfortunately, if the type changed, we need to cast it back.
6551 if (And->getType() != CI.getType()) {
6552 And->setName(CSrc->getName()+".mask");
6553 InsertNewInstBefore(And, CI);
Reid Spencerbb65ebf2006-12-12 23:36:14 +00006554 And = CastInst::createIntegerCast(And, CI.getType(), false/*ZExt*/);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006555 }
6556 return And;
6557 }
6558 }
6559 }
6560
6561 return 0;
6562}
6563
6564Instruction *InstCombiner::visitSExt(CastInst &CI) {
6565 return commonIntCastTransforms(CI);
6566}
6567
6568Instruction *InstCombiner::visitFPTrunc(CastInst &CI) {
6569 return commonCastTransforms(CI);
6570}
6571
6572Instruction *InstCombiner::visitFPExt(CastInst &CI) {
6573 return commonCastTransforms(CI);
6574}
6575
6576Instruction *InstCombiner::visitFPToUI(CastInst &CI) {
Reid Spencerad05ee92006-11-30 23:13:36 +00006577 return commonCastTransforms(CI);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006578}
6579
6580Instruction *InstCombiner::visitFPToSI(CastInst &CI) {
Reid Spencerad05ee92006-11-30 23:13:36 +00006581 return commonCastTransforms(CI);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006582}
6583
6584Instruction *InstCombiner::visitUIToFP(CastInst &CI) {
6585 return commonCastTransforms(CI);
6586}
6587
6588Instruction *InstCombiner::visitSIToFP(CastInst &CI) {
6589 return commonCastTransforms(CI);
6590}
6591
6592Instruction *InstCombiner::visitPtrToInt(CastInst &CI) {
Reid Spencerad05ee92006-11-30 23:13:36 +00006593 return commonCastTransforms(CI);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006594}
6595
6596Instruction *InstCombiner::visitIntToPtr(CastInst &CI) {
6597 return commonCastTransforms(CI);
6598}
6599
6600Instruction *InstCombiner::visitBitCast(CastInst &CI) {
6601
6602 // If the operands are integer typed then apply the integer transforms,
6603 // otherwise just apply the common ones.
6604 Value *Src = CI.getOperand(0);
6605 const Type *SrcTy = Src->getType();
6606 const Type *DestTy = CI.getType();
6607
Chris Lattner03c49532007-01-15 02:27:26 +00006608 if (SrcTy->isInteger() && DestTy->isInteger()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006609 if (Instruction *Result = commonIntCastTransforms(CI))
6610 return Result;
6611 } else {
6612 if (Instruction *Result = commonCastTransforms(CI))
6613 return Result;
6614 }
6615
6616
6617 // Get rid of casts from one type to the same type. These are useless and can
6618 // be replaced by the operand.
6619 if (DestTy == Src->getType())
6620 return ReplaceInstUsesWith(CI, Src);
6621
Chris Lattnerb19a5c62006-04-12 18:09:35 +00006622 // If the source and destination are pointers, and this cast is equivalent to
6623 // a getelementptr X, 0, 0, 0... turn it into the appropriate getelementptr.
6624 // This can enhance SROA and other transforms that want type-safe pointers.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006625 if (const PointerType *DstPTy = dyn_cast<PointerType>(DestTy)) {
6626 if (const PointerType *SrcPTy = dyn_cast<PointerType>(SrcTy)) {
6627 const Type *DstElTy = DstPTy->getElementType();
6628 const Type *SrcElTy = SrcPTy->getElementType();
Chris Lattnerb19a5c62006-04-12 18:09:35 +00006629
Reid Spencerc635f472006-12-31 05:48:39 +00006630 Constant *ZeroUInt = Constant::getNullValue(Type::Int32Ty);
Chris Lattnerb19a5c62006-04-12 18:09:35 +00006631 unsigned NumZeros = 0;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006632 while (SrcElTy != DstElTy &&
6633 isa<CompositeType>(SrcElTy) && !isa<PointerType>(SrcElTy) &&
6634 SrcElTy->getNumContainedTypes() /* not "{}" */) {
6635 SrcElTy = cast<CompositeType>(SrcElTy)->getTypeAtIndex(ZeroUInt);
Chris Lattnerb19a5c62006-04-12 18:09:35 +00006636 ++NumZeros;
6637 }
Chris Lattner6a4adcd2004-09-29 05:07:12 +00006638
Chris Lattnerb19a5c62006-04-12 18:09:35 +00006639 // If we found a path from the src to dest, create the getelementptr now.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006640 if (SrcElTy == DstElTy) {
Chris Lattner416a8932007-01-31 20:08:52 +00006641 SmallVector<Value*, 8> Idxs(NumZeros+1, ZeroUInt);
6642 return new GetElementPtrInst(Src, &Idxs[0], Idxs.size());
Chris Lattnerb19a5c62006-04-12 18:09:35 +00006643 }
6644 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006645 }
Chris Lattnerdfae8be2003-07-24 17:35:25 +00006646
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006647 if (ShuffleVectorInst *SVI = dyn_cast<ShuffleVectorInst>(Src)) {
6648 if (SVI->hasOneUse()) {
6649 // Okay, we have (bitconvert (shuffle ..)). Check to see if this is
6650 // a bitconvert to a vector with the same # elts.
Reid Spencerd84d35b2007-02-15 02:26:10 +00006651 if (isa<VectorType>(DestTy) &&
6652 cast<VectorType>(DestTy)->getNumElements() ==
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006653 SVI->getType()->getNumElements()) {
6654 CastInst *Tmp;
6655 // If either of the operands is a cast from CI.getType(), then
6656 // evaluating the shuffle in the casted destination's type will allow
6657 // us to eliminate at least one cast.
6658 if (((Tmp = dyn_cast<CastInst>(SVI->getOperand(0))) &&
6659 Tmp->getOperand(0)->getType() == DestTy) ||
6660 ((Tmp = dyn_cast<CastInst>(SVI->getOperand(1))) &&
6661 Tmp->getOperand(0)->getType() == DestTy)) {
Reid Spencer13bc5d72006-12-12 09:18:51 +00006662 Value *LHS = InsertOperandCastBefore(Instruction::BitCast,
6663 SVI->getOperand(0), DestTy, &CI);
6664 Value *RHS = InsertOperandCastBefore(Instruction::BitCast,
6665 SVI->getOperand(1), DestTy, &CI);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006666 // Return a new shuffle vector. Use the same element ID's, as we
6667 // know the vector types match #elts.
6668 return new ShuffleVectorInst(LHS, RHS, SVI->getOperand(2));
Chris Lattner99155be2006-05-25 23:24:33 +00006669 }
6670 }
6671 }
6672 }
Chris Lattner260ab202002-04-18 17:39:14 +00006673 return 0;
Chris Lattnerca081252001-12-14 16:52:21 +00006674}
6675
Chris Lattner56e4d3d2004-04-09 23:46:01 +00006676/// GetSelectFoldableOperands - We want to turn code that looks like this:
6677/// %C = or %A, %B
6678/// %D = select %cond, %C, %A
6679/// into:
6680/// %C = select %cond, %B, 0
6681/// %D = or %A, %C
6682///
6683/// Assuming that the specified instruction is an operand to the select, return
6684/// a bitmask indicating which operands of this instruction are foldable if they
6685/// equal the other incoming value of the select.
6686///
6687static unsigned GetSelectFoldableOperands(Instruction *I) {
6688 switch (I->getOpcode()) {
6689 case Instruction::Add:
6690 case Instruction::Mul:
6691 case Instruction::And:
6692 case Instruction::Or:
6693 case Instruction::Xor:
6694 return 3; // Can fold through either operand.
6695 case Instruction::Sub: // Can only fold on the amount subtracted.
6696 case Instruction::Shl: // Can only fold on the shift amount.
Reid Spencerfdff9382006-11-08 06:47:33 +00006697 case Instruction::LShr:
6698 case Instruction::AShr:
Misha Brukmanb1c93172005-04-21 23:48:37 +00006699 return 1;
Chris Lattner56e4d3d2004-04-09 23:46:01 +00006700 default:
6701 return 0; // Cannot fold
6702 }
6703}
6704
6705/// GetSelectFoldableConstant - For the same transformation as the previous
6706/// function, return the identity constant that goes into the select.
6707static Constant *GetSelectFoldableConstant(Instruction *I) {
6708 switch (I->getOpcode()) {
6709 default: assert(0 && "This cannot happen!"); abort();
6710 case Instruction::Add:
6711 case Instruction::Sub:
6712 case Instruction::Or:
6713 case Instruction::Xor:
Chris Lattner56e4d3d2004-04-09 23:46:01 +00006714 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00006715 case Instruction::LShr:
6716 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00006717 return Constant::getNullValue(I->getType());
Chris Lattner56e4d3d2004-04-09 23:46:01 +00006718 case Instruction::And:
6719 return ConstantInt::getAllOnesValue(I->getType());
6720 case Instruction::Mul:
6721 return ConstantInt::get(I->getType(), 1);
6722 }
6723}
6724
Chris Lattner411336f2005-01-19 21:50:18 +00006725/// FoldSelectOpOp - Here we have (select c, TI, FI), and we know that TI and FI
6726/// have the same opcode and only one use each. Try to simplify this.
6727Instruction *InstCombiner::FoldSelectOpOp(SelectInst &SI, Instruction *TI,
6728 Instruction *FI) {
6729 if (TI->getNumOperands() == 1) {
6730 // If this is a non-volatile load or a cast from the same type,
6731 // merge.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006732 if (TI->isCast()) {
Chris Lattner411336f2005-01-19 21:50:18 +00006733 if (TI->getOperand(0)->getType() != FI->getOperand(0)->getType())
6734 return 0;
6735 } else {
6736 return 0; // unknown unary op.
6737 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00006738
Chris Lattner411336f2005-01-19 21:50:18 +00006739 // Fold this by inserting a select from the input values.
6740 SelectInst *NewSI = new SelectInst(SI.getCondition(), TI->getOperand(0),
6741 FI->getOperand(0), SI.getName()+".v");
6742 InsertNewInstBefore(NewSI, SI);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006743 return CastInst::create(Instruction::CastOps(TI->getOpcode()), NewSI,
6744 TI->getType());
Chris Lattner411336f2005-01-19 21:50:18 +00006745 }
6746
Reid Spencer2341c222007-02-02 02:16:23 +00006747 // Only handle binary operators here.
6748 if (!isa<BinaryOperator>(TI))
Chris Lattner411336f2005-01-19 21:50:18 +00006749 return 0;
6750
6751 // Figure out if the operations have any operands in common.
6752 Value *MatchOp, *OtherOpT, *OtherOpF;
6753 bool MatchIsOpZero;
6754 if (TI->getOperand(0) == FI->getOperand(0)) {
6755 MatchOp = TI->getOperand(0);
6756 OtherOpT = TI->getOperand(1);
6757 OtherOpF = FI->getOperand(1);
6758 MatchIsOpZero = true;
6759 } else if (TI->getOperand(1) == FI->getOperand(1)) {
6760 MatchOp = TI->getOperand(1);
6761 OtherOpT = TI->getOperand(0);
6762 OtherOpF = FI->getOperand(0);
6763 MatchIsOpZero = false;
6764 } else if (!TI->isCommutative()) {
6765 return 0;
6766 } else if (TI->getOperand(0) == FI->getOperand(1)) {
6767 MatchOp = TI->getOperand(0);
6768 OtherOpT = TI->getOperand(1);
6769 OtherOpF = FI->getOperand(0);
6770 MatchIsOpZero = true;
6771 } else if (TI->getOperand(1) == FI->getOperand(0)) {
6772 MatchOp = TI->getOperand(1);
6773 OtherOpT = TI->getOperand(0);
6774 OtherOpF = FI->getOperand(1);
6775 MatchIsOpZero = true;
6776 } else {
6777 return 0;
6778 }
6779
6780 // If we reach here, they do have operations in common.
6781 SelectInst *NewSI = new SelectInst(SI.getCondition(), OtherOpT,
6782 OtherOpF, SI.getName()+".v");
6783 InsertNewInstBefore(NewSI, SI);
6784
6785 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(TI)) {
6786 if (MatchIsOpZero)
6787 return BinaryOperator::create(BO->getOpcode(), MatchOp, NewSI);
6788 else
6789 return BinaryOperator::create(BO->getOpcode(), NewSI, MatchOp);
Chris Lattner411336f2005-01-19 21:50:18 +00006790 }
Reid Spencer2f34b982007-02-02 14:41:37 +00006791 assert(0 && "Shouldn't get here");
6792 return 0;
Chris Lattner411336f2005-01-19 21:50:18 +00006793}
6794
Chris Lattnerb909e8b2004-03-12 05:52:32 +00006795Instruction *InstCombiner::visitSelectInst(SelectInst &SI) {
Chris Lattner533bc492004-03-30 19:37:13 +00006796 Value *CondVal = SI.getCondition();
6797 Value *TrueVal = SI.getTrueValue();
6798 Value *FalseVal = SI.getFalseValue();
6799
6800 // select true, X, Y -> X
6801 // select false, X, Y -> Y
Zhou Sheng75b871f2007-01-11 12:24:14 +00006802 if (ConstantInt *C = dyn_cast<ConstantInt>(CondVal))
Reid Spencercddc9df2007-01-12 04:24:46 +00006803 return ReplaceInstUsesWith(SI, C->getZExtValue() ? TrueVal : FalseVal);
Chris Lattner533bc492004-03-30 19:37:13 +00006804
6805 // select C, X, X -> X
6806 if (TrueVal == FalseVal)
6807 return ReplaceInstUsesWith(SI, TrueVal);
6808
Chris Lattner81a7a232004-10-16 18:11:37 +00006809 if (isa<UndefValue>(TrueVal)) // select C, undef, X -> X
6810 return ReplaceInstUsesWith(SI, FalseVal);
6811 if (isa<UndefValue>(FalseVal)) // select C, X, undef -> X
6812 return ReplaceInstUsesWith(SI, TrueVal);
6813 if (isa<UndefValue>(CondVal)) { // select undef, X, Y -> X or Y
6814 if (isa<Constant>(TrueVal))
6815 return ReplaceInstUsesWith(SI, TrueVal);
6816 else
6817 return ReplaceInstUsesWith(SI, FalseVal);
6818 }
6819
Reid Spencer542964f2007-01-11 18:21:29 +00006820 if (SI.getType() == Type::Int1Ty) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +00006821 if (ConstantInt *C = dyn_cast<ConstantInt>(TrueVal)) {
Reid Spencercddc9df2007-01-12 04:24:46 +00006822 if (C->getZExtValue()) {
Chris Lattner1c631e82004-04-08 04:43:23 +00006823 // Change: A = select B, true, C --> A = or B, C
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00006824 return BinaryOperator::createOr(CondVal, FalseVal);
Chris Lattner1c631e82004-04-08 04:43:23 +00006825 } else {
6826 // Change: A = select B, false, C --> A = and !B, C
6827 Value *NotCond =
6828 InsertNewInstBefore(BinaryOperator::createNot(CondVal,
6829 "not."+CondVal->getName()), SI);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00006830 return BinaryOperator::createAnd(NotCond, FalseVal);
Chris Lattner1c631e82004-04-08 04:43:23 +00006831 }
Reid Spencer7a9c62b2007-01-12 07:05:14 +00006832 } else if (ConstantInt *C = dyn_cast<ConstantInt>(FalseVal)) {
Reid Spencercddc9df2007-01-12 04:24:46 +00006833 if (C->getZExtValue() == false) {
Chris Lattner1c631e82004-04-08 04:43:23 +00006834 // Change: A = select B, C, false --> A = and B, C
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00006835 return BinaryOperator::createAnd(CondVal, TrueVal);
Chris Lattner1c631e82004-04-08 04:43:23 +00006836 } else {
6837 // Change: A = select B, C, true --> A = or !B, C
6838 Value *NotCond =
6839 InsertNewInstBefore(BinaryOperator::createNot(CondVal,
6840 "not."+CondVal->getName()), SI);
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00006841 return BinaryOperator::createOr(NotCond, TrueVal);
Chris Lattner1c631e82004-04-08 04:43:23 +00006842 }
6843 }
Zhou Sheng75b871f2007-01-11 12:24:14 +00006844 }
Chris Lattner1c631e82004-04-08 04:43:23 +00006845
Chris Lattner183b3362004-04-09 19:05:30 +00006846 // Selecting between two integer constants?
6847 if (ConstantInt *TrueValC = dyn_cast<ConstantInt>(TrueVal))
6848 if (ConstantInt *FalseValC = dyn_cast<ConstantInt>(FalseVal)) {
6849 // select C, 1, 0 -> cast C to int
Reid Spencer959a21d2007-03-23 21:24:59 +00006850 if (FalseValC->isZero() && TrueValC->getValue() == 1) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006851 return CastInst::create(Instruction::ZExt, CondVal, SI.getType());
Reid Spencer959a21d2007-03-23 21:24:59 +00006852 } else if (TrueValC->isZero() && FalseValC->getValue() == 1) {
Chris Lattner183b3362004-04-09 19:05:30 +00006853 // select C, 0, 1 -> cast !C to int
6854 Value *NotCond =
6855 InsertNewInstBefore(BinaryOperator::createNot(CondVal,
Chris Lattnercf7baf32004-04-09 18:19:44 +00006856 "not."+CondVal->getName()), SI);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006857 return CastInst::create(Instruction::ZExt, NotCond, SI.getType());
Chris Lattnercf7baf32004-04-09 18:19:44 +00006858 }
Chris Lattner35167c32004-06-09 07:59:58 +00006859
Reid Spencer266e42b2006-12-23 06:05:41 +00006860 if (ICmpInst *IC = dyn_cast<ICmpInst>(SI.getCondition())) {
Chris Lattner380c7e92006-09-20 04:44:59 +00006861
Reid Spencer266e42b2006-12-23 06:05:41 +00006862 // (x <s 0) ? -1 : 0 -> ashr x, 31
6863 // (x >u 2147483647) ? -1 : 0 -> ashr x, 31
Reid Spencer959a21d2007-03-23 21:24:59 +00006864 if (TrueValC->isAllOnesValue() && FalseValC->isZero())
Chris Lattner380c7e92006-09-20 04:44:59 +00006865 if (ConstantInt *CmpCst = dyn_cast<ConstantInt>(IC->getOperand(1))) {
6866 bool CanXForm = false;
Reid Spencer266e42b2006-12-23 06:05:41 +00006867 if (IC->isSignedPredicate())
Reid Spencer959a21d2007-03-23 21:24:59 +00006868 CanXForm = CmpCst->isZero() &&
Reid Spencer266e42b2006-12-23 06:05:41 +00006869 IC->getPredicate() == ICmpInst::ICMP_SLT;
Chris Lattner380c7e92006-09-20 04:44:59 +00006870 else {
6871 unsigned Bits = CmpCst->getType()->getPrimitiveSizeInBits();
Reid Spencer959a21d2007-03-23 21:24:59 +00006872 CanXForm = CmpCst->getValue() == APInt::getSignedMaxValue(Bits) &&
Reid Spencer266e42b2006-12-23 06:05:41 +00006873 IC->getPredicate() == ICmpInst::ICMP_UGT;
Chris Lattner380c7e92006-09-20 04:44:59 +00006874 }
6875
6876 if (CanXForm) {
6877 // The comparison constant and the result are not neccessarily the
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006878 // same width. Make an all-ones value by inserting a AShr.
Chris Lattner380c7e92006-09-20 04:44:59 +00006879 Value *X = IC->getOperand(0);
Chris Lattner380c7e92006-09-20 04:44:59 +00006880 unsigned Bits = X->getType()->getPrimitiveSizeInBits();
Reid Spencer2341c222007-02-02 02:16:23 +00006881 Constant *ShAmt = ConstantInt::get(X->getType(), Bits-1);
6882 Instruction *SRA = BinaryOperator::create(Instruction::AShr, X,
6883 ShAmt, "ones");
Chris Lattner380c7e92006-09-20 04:44:59 +00006884 InsertNewInstBefore(SRA, SI);
6885
Reid Spencer6c38f0b2006-11-27 01:05:10 +00006886 // Finally, convert to the type of the select RHS. We figure out
6887 // if this requires a SExt, Trunc or BitCast based on the sizes.
6888 Instruction::CastOps opc = Instruction::BitCast;
6889 unsigned SRASize = SRA->getType()->getPrimitiveSizeInBits();
6890 unsigned SISize = SI.getType()->getPrimitiveSizeInBits();
6891 if (SRASize < SISize)
6892 opc = Instruction::SExt;
6893 else if (SRASize > SISize)
6894 opc = Instruction::Trunc;
6895 return CastInst::create(opc, SRA, SI.getType());
Chris Lattner380c7e92006-09-20 04:44:59 +00006896 }
6897 }
6898
6899
6900 // If one of the constants is zero (we know they can't both be) and we
Reid Spencer266e42b2006-12-23 06:05:41 +00006901 // have a fcmp instruction with zero, and we have an 'and' with the
Chris Lattner380c7e92006-09-20 04:44:59 +00006902 // non-constant value, eliminate this whole mess. This corresponds to
6903 // cases like this: ((X & 27) ? 27 : 0)
Reid Spencer959a21d2007-03-23 21:24:59 +00006904 if (TrueValC->isZero() || FalseValC->isZero())
Chris Lattnerb3f24c92006-09-18 04:22:48 +00006905 if (IC->isEquality() && isa<ConstantInt>(IC->getOperand(1)) &&
Chris Lattner35167c32004-06-09 07:59:58 +00006906 cast<Constant>(IC->getOperand(1))->isNullValue())
6907 if (Instruction *ICA = dyn_cast<Instruction>(IC->getOperand(0)))
6908 if (ICA->getOpcode() == Instruction::And &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00006909 isa<ConstantInt>(ICA->getOperand(1)) &&
6910 (ICA->getOperand(1) == TrueValC ||
6911 ICA->getOperand(1) == FalseValC) &&
Chris Lattner35167c32004-06-09 07:59:58 +00006912 isOneBitSet(cast<ConstantInt>(ICA->getOperand(1)))) {
6913 // Okay, now we know that everything is set up, we just don't
Reid Spencer266e42b2006-12-23 06:05:41 +00006914 // know whether we have a icmp_ne or icmp_eq and whether the
6915 // true or false val is the zero.
Reid Spencer959a21d2007-03-23 21:24:59 +00006916 bool ShouldNotVal = !TrueValC->isZero();
Reid Spencer266e42b2006-12-23 06:05:41 +00006917 ShouldNotVal ^= IC->getPredicate() == ICmpInst::ICMP_NE;
Chris Lattner35167c32004-06-09 07:59:58 +00006918 Value *V = ICA;
6919 if (ShouldNotVal)
6920 V = InsertNewInstBefore(BinaryOperator::create(
6921 Instruction::Xor, V, ICA->getOperand(1)), SI);
6922 return ReplaceInstUsesWith(SI, V);
6923 }
Chris Lattner380c7e92006-09-20 04:44:59 +00006924 }
Chris Lattner533bc492004-03-30 19:37:13 +00006925 }
Chris Lattner623fba12004-04-10 22:21:27 +00006926
6927 // See if we are selecting two values based on a comparison of the two values.
Reid Spencer266e42b2006-12-23 06:05:41 +00006928 if (FCmpInst *FCI = dyn_cast<FCmpInst>(CondVal)) {
6929 if (FCI->getOperand(0) == TrueVal && FCI->getOperand(1) == FalseVal) {
Chris Lattner623fba12004-04-10 22:21:27 +00006930 // Transform (X == Y) ? X : Y -> Y
Reid Spencer266e42b2006-12-23 06:05:41 +00006931 if (FCI->getPredicate() == FCmpInst::FCMP_OEQ)
Chris Lattner623fba12004-04-10 22:21:27 +00006932 return ReplaceInstUsesWith(SI, FalseVal);
6933 // Transform (X != Y) ? X : Y -> X
Reid Spencer266e42b2006-12-23 06:05:41 +00006934 if (FCI->getPredicate() == FCmpInst::FCMP_ONE)
Chris Lattner623fba12004-04-10 22:21:27 +00006935 return ReplaceInstUsesWith(SI, TrueVal);
6936 // NOTE: if we wanted to, this is where to detect MIN/MAX/ABS/etc.
6937
Reid Spencer266e42b2006-12-23 06:05:41 +00006938 } else if (FCI->getOperand(0) == FalseVal && FCI->getOperand(1) == TrueVal){
Chris Lattner623fba12004-04-10 22:21:27 +00006939 // Transform (X == Y) ? Y : X -> X
Reid Spencer266e42b2006-12-23 06:05:41 +00006940 if (FCI->getPredicate() == FCmpInst::FCMP_OEQ)
Chris Lattner24cf0202004-04-11 01:39:19 +00006941 return ReplaceInstUsesWith(SI, FalseVal);
Chris Lattner623fba12004-04-10 22:21:27 +00006942 // Transform (X != Y) ? Y : X -> Y
Reid Spencer266e42b2006-12-23 06:05:41 +00006943 if (FCI->getPredicate() == FCmpInst::FCMP_ONE)
6944 return ReplaceInstUsesWith(SI, TrueVal);
6945 // NOTE: if we wanted to, this is where to detect MIN/MAX/ABS/etc.
6946 }
6947 }
6948
6949 // See if we are selecting two values based on a comparison of the two values.
6950 if (ICmpInst *ICI = dyn_cast<ICmpInst>(CondVal)) {
6951 if (ICI->getOperand(0) == TrueVal && ICI->getOperand(1) == FalseVal) {
6952 // Transform (X == Y) ? X : Y -> Y
6953 if (ICI->getPredicate() == ICmpInst::ICMP_EQ)
6954 return ReplaceInstUsesWith(SI, FalseVal);
6955 // Transform (X != Y) ? X : Y -> X
6956 if (ICI->getPredicate() == ICmpInst::ICMP_NE)
6957 return ReplaceInstUsesWith(SI, TrueVal);
6958 // NOTE: if we wanted to, this is where to detect MIN/MAX/ABS/etc.
6959
6960 } else if (ICI->getOperand(0) == FalseVal && ICI->getOperand(1) == TrueVal){
6961 // Transform (X == Y) ? Y : X -> X
6962 if (ICI->getPredicate() == ICmpInst::ICMP_EQ)
6963 return ReplaceInstUsesWith(SI, FalseVal);
6964 // Transform (X != Y) ? Y : X -> Y
6965 if (ICI->getPredicate() == ICmpInst::ICMP_NE)
Chris Lattner24cf0202004-04-11 01:39:19 +00006966 return ReplaceInstUsesWith(SI, TrueVal);
Chris Lattner623fba12004-04-10 22:21:27 +00006967 // NOTE: if we wanted to, this is where to detect MIN/MAX/ABS/etc.
6968 }
6969 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00006970
Chris Lattnera04c9042005-01-13 22:52:24 +00006971 if (Instruction *TI = dyn_cast<Instruction>(TrueVal))
6972 if (Instruction *FI = dyn_cast<Instruction>(FalseVal))
6973 if (TI->hasOneUse() && FI->hasOneUse()) {
Chris Lattnera04c9042005-01-13 22:52:24 +00006974 Instruction *AddOp = 0, *SubOp = 0;
6975
Chris Lattner411336f2005-01-19 21:50:18 +00006976 // Turn (select C, (op X, Y), (op X, Z)) -> (op X, (select C, Y, Z))
6977 if (TI->getOpcode() == FI->getOpcode())
6978 if (Instruction *IV = FoldSelectOpOp(SI, TI, FI))
6979 return IV;
6980
6981 // Turn select C, (X+Y), (X-Y) --> (X+(select C, Y, (-Y))). This is
6982 // even legal for FP.
Chris Lattnera04c9042005-01-13 22:52:24 +00006983 if (TI->getOpcode() == Instruction::Sub &&
6984 FI->getOpcode() == Instruction::Add) {
6985 AddOp = FI; SubOp = TI;
6986 } else if (FI->getOpcode() == Instruction::Sub &&
6987 TI->getOpcode() == Instruction::Add) {
6988 AddOp = TI; SubOp = FI;
6989 }
6990
6991 if (AddOp) {
6992 Value *OtherAddOp = 0;
6993 if (SubOp->getOperand(0) == AddOp->getOperand(0)) {
6994 OtherAddOp = AddOp->getOperand(1);
6995 } else if (SubOp->getOperand(0) == AddOp->getOperand(1)) {
6996 OtherAddOp = AddOp->getOperand(0);
6997 }
6998
6999 if (OtherAddOp) {
Chris Lattnerb580d262006-02-24 18:05:58 +00007000 // So at this point we know we have (Y -> OtherAddOp):
7001 // select C, (add X, Y), (sub X, Z)
7002 Value *NegVal; // Compute -Z
7003 if (Constant *C = dyn_cast<Constant>(SubOp->getOperand(1))) {
7004 NegVal = ConstantExpr::getNeg(C);
7005 } else {
7006 NegVal = InsertNewInstBefore(
7007 BinaryOperator::createNeg(SubOp->getOperand(1), "tmp"), SI);
Chris Lattnera04c9042005-01-13 22:52:24 +00007008 }
Chris Lattnerb580d262006-02-24 18:05:58 +00007009
7010 Value *NewTrueOp = OtherAddOp;
7011 Value *NewFalseOp = NegVal;
7012 if (AddOp != TI)
7013 std::swap(NewTrueOp, NewFalseOp);
7014 Instruction *NewSel =
7015 new SelectInst(CondVal, NewTrueOp,NewFalseOp,SI.getName()+".p");
7016
7017 NewSel = InsertNewInstBefore(NewSel, SI);
7018 return BinaryOperator::createAdd(SubOp->getOperand(0), NewSel);
Chris Lattnera04c9042005-01-13 22:52:24 +00007019 }
7020 }
7021 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00007022
Chris Lattner56e4d3d2004-04-09 23:46:01 +00007023 // See if we can fold the select into one of our operands.
Chris Lattner03c49532007-01-15 02:27:26 +00007024 if (SI.getType()->isInteger()) {
Chris Lattner56e4d3d2004-04-09 23:46:01 +00007025 // See the comment above GetSelectFoldableOperands for a description of the
7026 // transformation we are doing here.
7027 if (Instruction *TVI = dyn_cast<Instruction>(TrueVal))
7028 if (TVI->hasOneUse() && TVI->getNumOperands() == 2 &&
7029 !isa<Constant>(FalseVal))
7030 if (unsigned SFO = GetSelectFoldableOperands(TVI)) {
7031 unsigned OpToFold = 0;
7032 if ((SFO & 1) && FalseVal == TVI->getOperand(0)) {
7033 OpToFold = 1;
7034 } else if ((SFO & 2) && FalseVal == TVI->getOperand(1)) {
7035 OpToFold = 2;
7036 }
7037
7038 if (OpToFold) {
7039 Constant *C = GetSelectFoldableConstant(TVI);
Chris Lattner56e4d3d2004-04-09 23:46:01 +00007040 Instruction *NewSel =
Chris Lattner6e0123b2007-02-11 01:23:03 +00007041 new SelectInst(SI.getCondition(), TVI->getOperand(2-OpToFold), C);
Chris Lattner56e4d3d2004-04-09 23:46:01 +00007042 InsertNewInstBefore(NewSel, SI);
Chris Lattner6e0123b2007-02-11 01:23:03 +00007043 NewSel->takeName(TVI);
Chris Lattner56e4d3d2004-04-09 23:46:01 +00007044 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(TVI))
7045 return BinaryOperator::create(BO->getOpcode(), FalseVal, NewSel);
Chris Lattner56e4d3d2004-04-09 23:46:01 +00007046 else {
7047 assert(0 && "Unknown instruction!!");
7048 }
7049 }
7050 }
Chris Lattner6862fbd2004-09-29 17:40:11 +00007051
Chris Lattner56e4d3d2004-04-09 23:46:01 +00007052 if (Instruction *FVI = dyn_cast<Instruction>(FalseVal))
7053 if (FVI->hasOneUse() && FVI->getNumOperands() == 2 &&
7054 !isa<Constant>(TrueVal))
7055 if (unsigned SFO = GetSelectFoldableOperands(FVI)) {
7056 unsigned OpToFold = 0;
7057 if ((SFO & 1) && TrueVal == FVI->getOperand(0)) {
7058 OpToFold = 1;
7059 } else if ((SFO & 2) && TrueVal == FVI->getOperand(1)) {
7060 OpToFold = 2;
7061 }
7062
7063 if (OpToFold) {
7064 Constant *C = GetSelectFoldableConstant(FVI);
Chris Lattner56e4d3d2004-04-09 23:46:01 +00007065 Instruction *NewSel =
Chris Lattner6e0123b2007-02-11 01:23:03 +00007066 new SelectInst(SI.getCondition(), C, FVI->getOperand(2-OpToFold));
Chris Lattner56e4d3d2004-04-09 23:46:01 +00007067 InsertNewInstBefore(NewSel, SI);
Chris Lattner6e0123b2007-02-11 01:23:03 +00007068 NewSel->takeName(FVI);
Chris Lattner56e4d3d2004-04-09 23:46:01 +00007069 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(FVI))
7070 return BinaryOperator::create(BO->getOpcode(), TrueVal, NewSel);
Reid Spencer2341c222007-02-02 02:16:23 +00007071 else
Chris Lattner56e4d3d2004-04-09 23:46:01 +00007072 assert(0 && "Unknown instruction!!");
Chris Lattner56e4d3d2004-04-09 23:46:01 +00007073 }
7074 }
7075 }
Chris Lattnerd6f636a2005-04-24 07:30:14 +00007076
7077 if (BinaryOperator::isNot(CondVal)) {
7078 SI.setOperand(0, BinaryOperator::getNotArgument(CondVal));
7079 SI.setOperand(1, FalseVal);
7080 SI.setOperand(2, TrueVal);
7081 return &SI;
7082 }
7083
Chris Lattnerb909e8b2004-03-12 05:52:32 +00007084 return 0;
7085}
7086
Chris Lattner82f2ef22006-03-06 20:18:44 +00007087/// GetKnownAlignment - If the specified pointer has an alignment that we can
7088/// determine, return it, otherwise return 0.
7089static unsigned GetKnownAlignment(Value *V, TargetData *TD) {
7090 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) {
7091 unsigned Align = GV->getAlignment();
7092 if (Align == 0 && TD)
Chris Lattner945e4372007-02-14 05:52:17 +00007093 Align = TD->getPrefTypeAlignment(GV->getType()->getElementType());
Chris Lattner82f2ef22006-03-06 20:18:44 +00007094 return Align;
7095 } else if (AllocationInst *AI = dyn_cast<AllocationInst>(V)) {
7096 unsigned Align = AI->getAlignment();
7097 if (Align == 0 && TD) {
7098 if (isa<AllocaInst>(AI))
Chris Lattner945e4372007-02-14 05:52:17 +00007099 Align = TD->getPrefTypeAlignment(AI->getType()->getElementType());
Chris Lattner82f2ef22006-03-06 20:18:44 +00007100 else if (isa<MallocInst>(AI)) {
7101 // Malloc returns maximally aligned memory.
Chris Lattner945e4372007-02-14 05:52:17 +00007102 Align = TD->getABITypeAlignment(AI->getType()->getElementType());
Chris Lattner50ee0e42007-01-20 22:35:55 +00007103 Align =
7104 std::max(Align,
Chris Lattner945e4372007-02-14 05:52:17 +00007105 (unsigned)TD->getABITypeAlignment(Type::DoubleTy));
Chris Lattner50ee0e42007-01-20 22:35:55 +00007106 Align =
7107 std::max(Align,
Chris Lattner945e4372007-02-14 05:52:17 +00007108 (unsigned)TD->getABITypeAlignment(Type::Int64Ty));
Chris Lattner82f2ef22006-03-06 20:18:44 +00007109 }
7110 }
7111 return Align;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00007112 } else if (isa<BitCastInst>(V) ||
Chris Lattner53ef5a02006-03-07 01:28:57 +00007113 (isa<ConstantExpr>(V) &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00007114 cast<ConstantExpr>(V)->getOpcode() == Instruction::BitCast)) {
Chris Lattner53ef5a02006-03-07 01:28:57 +00007115 User *CI = cast<User>(V);
Chris Lattner82f2ef22006-03-06 20:18:44 +00007116 if (isa<PointerType>(CI->getOperand(0)->getType()))
7117 return GetKnownAlignment(CI->getOperand(0), TD);
7118 return 0;
Chris Lattner53ef5a02006-03-07 01:28:57 +00007119 } else if (isa<GetElementPtrInst>(V) ||
7120 (isa<ConstantExpr>(V) &&
7121 cast<ConstantExpr>(V)->getOpcode()==Instruction::GetElementPtr)) {
7122 User *GEPI = cast<User>(V);
Chris Lattner82f2ef22006-03-06 20:18:44 +00007123 unsigned BaseAlignment = GetKnownAlignment(GEPI->getOperand(0), TD);
7124 if (BaseAlignment == 0) return 0;
7125
7126 // If all indexes are zero, it is just the alignment of the base pointer.
7127 bool AllZeroOperands = true;
7128 for (unsigned i = 1, e = GEPI->getNumOperands(); i != e; ++i)
7129 if (!isa<Constant>(GEPI->getOperand(i)) ||
7130 !cast<Constant>(GEPI->getOperand(i))->isNullValue()) {
7131 AllZeroOperands = false;
7132 break;
7133 }
7134 if (AllZeroOperands)
7135 return BaseAlignment;
7136
7137 // Otherwise, if the base alignment is >= the alignment we expect for the
7138 // base pointer type, then we know that the resultant pointer is aligned at
7139 // least as much as its type requires.
7140 if (!TD) return 0;
7141
7142 const Type *BasePtrTy = GEPI->getOperand(0)->getType();
Chris Lattner50ee0e42007-01-20 22:35:55 +00007143 const PointerType *PtrTy = cast<PointerType>(BasePtrTy);
Chris Lattner945e4372007-02-14 05:52:17 +00007144 if (TD->getABITypeAlignment(PtrTy->getElementType())
Chris Lattner53ef5a02006-03-07 01:28:57 +00007145 <= BaseAlignment) {
7146 const Type *GEPTy = GEPI->getType();
Chris Lattner50ee0e42007-01-20 22:35:55 +00007147 const PointerType *GEPPtrTy = cast<PointerType>(GEPTy);
Chris Lattner945e4372007-02-14 05:52:17 +00007148 return TD->getABITypeAlignment(GEPPtrTy->getElementType());
Chris Lattner53ef5a02006-03-07 01:28:57 +00007149 }
Chris Lattner82f2ef22006-03-06 20:18:44 +00007150 return 0;
7151 }
7152 return 0;
7153}
7154
Chris Lattnerb909e8b2004-03-12 05:52:32 +00007155
Chris Lattnerc66b2232006-01-13 20:11:04 +00007156/// visitCallInst - CallInst simplification. This mostly only handles folding
7157/// of intrinsic instructions. For normal calls, it allows visitCallSite to do
7158/// the heavy lifting.
7159///
Chris Lattner970c33a2003-06-19 17:00:31 +00007160Instruction *InstCombiner::visitCallInst(CallInst &CI) {
Chris Lattnerc66b2232006-01-13 20:11:04 +00007161 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&CI);
7162 if (!II) return visitCallSite(&CI);
7163
Chris Lattner51ea1272004-02-28 05:22:00 +00007164 // Intrinsics cannot occur in an invoke, so handle them here instead of in
7165 // visitCallSite.
Chris Lattnerc66b2232006-01-13 20:11:04 +00007166 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(II)) {
Chris Lattner00648e12004-10-12 04:52:52 +00007167 bool Changed = false;
7168
7169 // memmove/cpy/set of zero bytes is a noop.
7170 if (Constant *NumBytes = dyn_cast<Constant>(MI->getLength())) {
7171 if (NumBytes->isNullValue()) return EraseInstFromFunction(CI);
7172
Chris Lattner00648e12004-10-12 04:52:52 +00007173 if (ConstantInt *CI = dyn_cast<ConstantInt>(NumBytes))
Reid Spencere0fc4df2006-10-20 07:07:24 +00007174 if (CI->getZExtValue() == 1) {
Chris Lattner00648e12004-10-12 04:52:52 +00007175 // Replace the instruction with just byte operations. We would
7176 // transform other cases to loads/stores, but we don't know if
7177 // alignment is sufficient.
7178 }
Chris Lattner51ea1272004-02-28 05:22:00 +00007179 }
7180
Chris Lattner00648e12004-10-12 04:52:52 +00007181 // If we have a memmove and the source operation is a constant global,
7182 // then the source and dest pointers can't alias, so we can change this
7183 // into a call to memcpy.
Chris Lattner82f2ef22006-03-06 20:18:44 +00007184 if (MemMoveInst *MMI = dyn_cast<MemMoveInst>(II)) {
Chris Lattner00648e12004-10-12 04:52:52 +00007185 if (GlobalVariable *GVSrc = dyn_cast<GlobalVariable>(MMI->getSource()))
7186 if (GVSrc->isConstant()) {
7187 Module *M = CI.getParent()->getParent()->getParent();
Chris Lattner681ef2f2006-03-03 01:34:17 +00007188 const char *Name;
Andrew Lenharth0ebb0b02006-11-03 22:45:50 +00007189 if (CI.getCalledFunction()->getFunctionType()->getParamType(2) ==
Reid Spencerc635f472006-12-31 05:48:39 +00007190 Type::Int32Ty)
Chris Lattner681ef2f2006-03-03 01:34:17 +00007191 Name = "llvm.memcpy.i32";
7192 else
7193 Name = "llvm.memcpy.i64";
Chris Lattnerfbc524f2007-01-07 06:58:05 +00007194 Constant *MemCpy = M->getOrInsertFunction(Name,
Chris Lattner00648e12004-10-12 04:52:52 +00007195 CI.getCalledFunction()->getFunctionType());
7196 CI.setOperand(0, MemCpy);
7197 Changed = true;
7198 }
Chris Lattner82f2ef22006-03-06 20:18:44 +00007199 }
Chris Lattner00648e12004-10-12 04:52:52 +00007200
Chris Lattner82f2ef22006-03-06 20:18:44 +00007201 // If we can determine a pointer alignment that is bigger than currently
7202 // set, update the alignment.
7203 if (isa<MemCpyInst>(MI) || isa<MemMoveInst>(MI)) {
7204 unsigned Alignment1 = GetKnownAlignment(MI->getOperand(1), TD);
7205 unsigned Alignment2 = GetKnownAlignment(MI->getOperand(2), TD);
7206 unsigned Align = std::min(Alignment1, Alignment2);
Reid Spencere0fc4df2006-10-20 07:07:24 +00007207 if (MI->getAlignment()->getZExtValue() < Align) {
Reid Spencerc635f472006-12-31 05:48:39 +00007208 MI->setAlignment(ConstantInt::get(Type::Int32Ty, Align));
Chris Lattner82f2ef22006-03-06 20:18:44 +00007209 Changed = true;
7210 }
7211 } else if (isa<MemSetInst>(MI)) {
7212 unsigned Alignment = GetKnownAlignment(MI->getDest(), TD);
Reid Spencere0fc4df2006-10-20 07:07:24 +00007213 if (MI->getAlignment()->getZExtValue() < Alignment) {
Reid Spencerc635f472006-12-31 05:48:39 +00007214 MI->setAlignment(ConstantInt::get(Type::Int32Ty, Alignment));
Chris Lattner82f2ef22006-03-06 20:18:44 +00007215 Changed = true;
7216 }
7217 }
7218
Chris Lattnerc66b2232006-01-13 20:11:04 +00007219 if (Changed) return II;
Chris Lattner503221f2006-01-13 21:28:09 +00007220 } else {
7221 switch (II->getIntrinsicID()) {
7222 default: break;
Chris Lattnerf42d0ae2006-04-02 05:30:25 +00007223 case Intrinsic::ppc_altivec_lvx:
7224 case Intrinsic::ppc_altivec_lvxl:
Chris Lattner36dd7c92006-04-17 22:26:56 +00007225 case Intrinsic::x86_sse_loadu_ps:
7226 case Intrinsic::x86_sse2_loadu_pd:
7227 case Intrinsic::x86_sse2_loadu_dq:
7228 // Turn PPC lvx -> load if the pointer is known aligned.
7229 // Turn X86 loadups -> load if the pointer is known aligned.
Chris Lattnerf42d0ae2006-04-02 05:30:25 +00007230 if (GetKnownAlignment(II->getOperand(1), TD) >= 16) {
Reid Spencer13bc5d72006-12-12 09:18:51 +00007231 Value *Ptr = InsertCastBefore(Instruction::BitCast, II->getOperand(1),
Chris Lattnere79d2492006-04-06 19:19:17 +00007232 PointerType::get(II->getType()), CI);
Chris Lattnerf42d0ae2006-04-02 05:30:25 +00007233 return new LoadInst(Ptr);
7234 }
7235 break;
7236 case Intrinsic::ppc_altivec_stvx:
7237 case Intrinsic::ppc_altivec_stvxl:
7238 // Turn stvx -> store if the pointer is known aligned.
7239 if (GetKnownAlignment(II->getOperand(2), TD) >= 16) {
Chris Lattnere79d2492006-04-06 19:19:17 +00007240 const Type *OpPtrTy = PointerType::get(II->getOperand(1)->getType());
Reid Spencer13bc5d72006-12-12 09:18:51 +00007241 Value *Ptr = InsertCastBefore(Instruction::BitCast, II->getOperand(2),
7242 OpPtrTy, CI);
Chris Lattnerf42d0ae2006-04-02 05:30:25 +00007243 return new StoreInst(II->getOperand(1), Ptr);
7244 }
7245 break;
Chris Lattner36dd7c92006-04-17 22:26:56 +00007246 case Intrinsic::x86_sse_storeu_ps:
7247 case Intrinsic::x86_sse2_storeu_pd:
7248 case Intrinsic::x86_sse2_storeu_dq:
7249 case Intrinsic::x86_sse2_storel_dq:
7250 // Turn X86 storeu -> store if the pointer is known aligned.
7251 if (GetKnownAlignment(II->getOperand(1), TD) >= 16) {
7252 const Type *OpPtrTy = PointerType::get(II->getOperand(2)->getType());
Reid Spencer13bc5d72006-12-12 09:18:51 +00007253 Value *Ptr = InsertCastBefore(Instruction::BitCast, II->getOperand(1),
7254 OpPtrTy, CI);
Chris Lattner36dd7c92006-04-17 22:26:56 +00007255 return new StoreInst(II->getOperand(2), Ptr);
7256 }
7257 break;
Chris Lattner2deeaea2006-10-05 06:55:50 +00007258
7259 case Intrinsic::x86_sse_cvttss2si: {
7260 // These intrinsics only demands the 0th element of its input vector. If
7261 // we can simplify the input based on that, do so now.
7262 uint64_t UndefElts;
7263 if (Value *V = SimplifyDemandedVectorElts(II->getOperand(1), 1,
7264 UndefElts)) {
7265 II->setOperand(1, V);
7266 return II;
7267 }
7268 break;
7269 }
7270
Chris Lattnere79d2492006-04-06 19:19:17 +00007271 case Intrinsic::ppc_altivec_vperm:
7272 // Turn vperm(V1,V2,mask) -> shuffle(V1,V2,mask) if mask is a constant.
Reid Spencerd84d35b2007-02-15 02:26:10 +00007273 if (ConstantVector *Mask = dyn_cast<ConstantVector>(II->getOperand(3))) {
Chris Lattnere79d2492006-04-06 19:19:17 +00007274 assert(Mask->getNumOperands() == 16 && "Bad type for intrinsic!");
7275
7276 // Check that all of the elements are integer constants or undefs.
7277 bool AllEltsOk = true;
7278 for (unsigned i = 0; i != 16; ++i) {
7279 if (!isa<ConstantInt>(Mask->getOperand(i)) &&
7280 !isa<UndefValue>(Mask->getOperand(i))) {
7281 AllEltsOk = false;
7282 break;
7283 }
7284 }
7285
7286 if (AllEltsOk) {
7287 // Cast the input vectors to byte vectors.
Reid Spencer13bc5d72006-12-12 09:18:51 +00007288 Value *Op0 = InsertCastBefore(Instruction::BitCast,
7289 II->getOperand(1), Mask->getType(), CI);
7290 Value *Op1 = InsertCastBefore(Instruction::BitCast,
7291 II->getOperand(2), Mask->getType(), CI);
Chris Lattnere79d2492006-04-06 19:19:17 +00007292 Value *Result = UndefValue::get(Op0->getType());
7293
7294 // Only extract each element once.
7295 Value *ExtractedElts[32];
7296 memset(ExtractedElts, 0, sizeof(ExtractedElts));
7297
7298 for (unsigned i = 0; i != 16; ++i) {
7299 if (isa<UndefValue>(Mask->getOperand(i)))
7300 continue;
Reid Spencere0fc4df2006-10-20 07:07:24 +00007301 unsigned Idx =cast<ConstantInt>(Mask->getOperand(i))->getZExtValue();
Chris Lattnere79d2492006-04-06 19:19:17 +00007302 Idx &= 31; // Match the hardware behavior.
7303
7304 if (ExtractedElts[Idx] == 0) {
7305 Instruction *Elt =
Chris Lattner2deeaea2006-10-05 06:55:50 +00007306 new ExtractElementInst(Idx < 16 ? Op0 : Op1, Idx&15, "tmp");
Chris Lattnere79d2492006-04-06 19:19:17 +00007307 InsertNewInstBefore(Elt, CI);
7308 ExtractedElts[Idx] = Elt;
7309 }
7310
7311 // Insert this value into the result vector.
Chris Lattner2deeaea2006-10-05 06:55:50 +00007312 Result = new InsertElementInst(Result, ExtractedElts[Idx], i,"tmp");
Chris Lattnere79d2492006-04-06 19:19:17 +00007313 InsertNewInstBefore(cast<Instruction>(Result), CI);
7314 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00007315 return CastInst::create(Instruction::BitCast, Result, CI.getType());
Chris Lattnere79d2492006-04-06 19:19:17 +00007316 }
7317 }
7318 break;
7319
Chris Lattner503221f2006-01-13 21:28:09 +00007320 case Intrinsic::stackrestore: {
7321 // If the save is right next to the restore, remove the restore. This can
7322 // happen when variable allocas are DCE'd.
7323 if (IntrinsicInst *SS = dyn_cast<IntrinsicInst>(II->getOperand(1))) {
7324 if (SS->getIntrinsicID() == Intrinsic::stacksave) {
7325 BasicBlock::iterator BI = SS;
7326 if (&*++BI == II)
7327 return EraseInstFromFunction(CI);
7328 }
7329 }
7330
7331 // If the stack restore is in a return/unwind block and if there are no
7332 // allocas or calls between the restore and the return, nuke the restore.
7333 TerminatorInst *TI = II->getParent()->getTerminator();
7334 if (isa<ReturnInst>(TI) || isa<UnwindInst>(TI)) {
7335 BasicBlock::iterator BI = II;
7336 bool CannotRemove = false;
7337 for (++BI; &*BI != TI; ++BI) {
7338 if (isa<AllocaInst>(BI) ||
7339 (isa<CallInst>(BI) && !isa<IntrinsicInst>(BI))) {
7340 CannotRemove = true;
7341 break;
7342 }
7343 }
7344 if (!CannotRemove)
7345 return EraseInstFromFunction(CI);
7346 }
7347 break;
7348 }
7349 }
Chris Lattner00648e12004-10-12 04:52:52 +00007350 }
7351
Chris Lattnerc66b2232006-01-13 20:11:04 +00007352 return visitCallSite(II);
Chris Lattner970c33a2003-06-19 17:00:31 +00007353}
7354
7355// InvokeInst simplification
7356//
7357Instruction *InstCombiner::visitInvokeInst(InvokeInst &II) {
Chris Lattneraec3d942003-10-07 22:32:43 +00007358 return visitCallSite(&II);
Chris Lattner970c33a2003-06-19 17:00:31 +00007359}
7360
Chris Lattneraec3d942003-10-07 22:32:43 +00007361// visitCallSite - Improvements for call and invoke instructions.
7362//
7363Instruction *InstCombiner::visitCallSite(CallSite CS) {
Chris Lattner75b4d1d2003-10-07 22:54:13 +00007364 bool Changed = false;
7365
7366 // If the callee is a constexpr cast of a function, attempt to move the cast
7367 // to the arguments of the call/invoke.
Chris Lattneraec3d942003-10-07 22:32:43 +00007368 if (transformConstExprCastCall(CS)) return 0;
7369
Chris Lattner75b4d1d2003-10-07 22:54:13 +00007370 Value *Callee = CS.getCalledValue();
Chris Lattner81a7a232004-10-16 18:11:37 +00007371
Chris Lattner61d9d812005-05-13 07:09:09 +00007372 if (Function *CalleeF = dyn_cast<Function>(Callee))
7373 if (CalleeF->getCallingConv() != CS.getCallingConv()) {
7374 Instruction *OldCall = CS.getInstruction();
7375 // If the call and callee calling conventions don't match, this call must
7376 // be unreachable, as the call is undefined.
Zhou Sheng75b871f2007-01-11 12:24:14 +00007377 new StoreInst(ConstantInt::getTrue(),
Reid Spencer542964f2007-01-11 18:21:29 +00007378 UndefValue::get(PointerType::get(Type::Int1Ty)), OldCall);
Chris Lattner61d9d812005-05-13 07:09:09 +00007379 if (!OldCall->use_empty())
7380 OldCall->replaceAllUsesWith(UndefValue::get(OldCall->getType()));
7381 if (isa<CallInst>(OldCall)) // Not worth removing an invoke here.
7382 return EraseInstFromFunction(*OldCall);
7383 return 0;
7384 }
7385
Chris Lattner8ba9ec92004-10-18 02:59:09 +00007386 if (isa<ConstantPointerNull>(Callee) || isa<UndefValue>(Callee)) {
7387 // This instruction is not reachable, just remove it. We insert a store to
7388 // undef so that we know that this code is not reachable, despite the fact
7389 // that we can't modify the CFG here.
Zhou Sheng75b871f2007-01-11 12:24:14 +00007390 new StoreInst(ConstantInt::getTrue(),
Reid Spencer542964f2007-01-11 18:21:29 +00007391 UndefValue::get(PointerType::get(Type::Int1Ty)),
Chris Lattner8ba9ec92004-10-18 02:59:09 +00007392 CS.getInstruction());
7393
7394 if (!CS.getInstruction()->use_empty())
7395 CS.getInstruction()->
7396 replaceAllUsesWith(UndefValue::get(CS.getInstruction()->getType()));
7397
7398 if (InvokeInst *II = dyn_cast<InvokeInst>(CS.getInstruction())) {
7399 // Don't break the CFG, insert a dummy cond branch.
7400 new BranchInst(II->getNormalDest(), II->getUnwindDest(),
Zhou Sheng75b871f2007-01-11 12:24:14 +00007401 ConstantInt::getTrue(), II);
Chris Lattner81a7a232004-10-16 18:11:37 +00007402 }
Chris Lattner8ba9ec92004-10-18 02:59:09 +00007403 return EraseInstFromFunction(*CS.getInstruction());
7404 }
Chris Lattner81a7a232004-10-16 18:11:37 +00007405
Chris Lattner75b4d1d2003-10-07 22:54:13 +00007406 const PointerType *PTy = cast<PointerType>(Callee->getType());
7407 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
7408 if (FTy->isVarArg()) {
7409 // See if we can optimize any arguments passed through the varargs area of
7410 // the call.
7411 for (CallSite::arg_iterator I = CS.arg_begin()+FTy->getNumParams(),
7412 E = CS.arg_end(); I != E; ++I)
7413 if (CastInst *CI = dyn_cast<CastInst>(*I)) {
7414 // If this cast does not effect the value passed through the varargs
7415 // area, we can eliminate the use of the cast.
7416 Value *Op = CI->getOperand(0);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00007417 if (CI->isLosslessCast()) {
Chris Lattner75b4d1d2003-10-07 22:54:13 +00007418 *I = Op;
7419 Changed = true;
7420 }
7421 }
7422 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00007423
Chris Lattner75b4d1d2003-10-07 22:54:13 +00007424 return Changed ? CS.getInstruction() : 0;
Chris Lattneraec3d942003-10-07 22:32:43 +00007425}
7426
Chris Lattner970c33a2003-06-19 17:00:31 +00007427// transformConstExprCastCall - If the callee is a constexpr cast of a function,
7428// attempt to move the cast to the arguments of the call/invoke.
7429//
7430bool InstCombiner::transformConstExprCastCall(CallSite CS) {
7431 if (!isa<ConstantExpr>(CS.getCalledValue())) return false;
7432 ConstantExpr *CE = cast<ConstantExpr>(CS.getCalledValue());
Reid Spencer6c38f0b2006-11-27 01:05:10 +00007433 if (CE->getOpcode() != Instruction::BitCast ||
7434 !isa<Function>(CE->getOperand(0)))
Chris Lattner970c33a2003-06-19 17:00:31 +00007435 return false;
Reid Spencer87436872004-07-18 00:38:32 +00007436 Function *Callee = cast<Function>(CE->getOperand(0));
Chris Lattner970c33a2003-06-19 17:00:31 +00007437 Instruction *Caller = CS.getInstruction();
7438
7439 // Okay, this is a cast from a function to a different type. Unless doing so
7440 // would cause a type conversion of one of our arguments, change this call to
7441 // be a direct call with arguments casted to the appropriate types.
7442 //
7443 const FunctionType *FT = Callee->getFunctionType();
7444 const Type *OldRetTy = Caller->getType();
7445
Chris Lattner1f7942f2004-01-14 06:06:08 +00007446 // Check to see if we are changing the return type...
7447 if (OldRetTy != FT->getReturnType()) {
Reid Spencer5301e7c2007-01-30 20:08:39 +00007448 if (Callee->isDeclaration() && !Caller->use_empty() &&
Chris Lattner7051d752007-01-06 19:53:32 +00007449 // Conversion is ok if changing from pointer to int of same size.
7450 !(isa<PointerType>(FT->getReturnType()) &&
7451 TD->getIntPtrType() == OldRetTy))
Chris Lattner400f9592007-01-06 02:09:32 +00007452 return false; // Cannot transform this return value.
Chris Lattner1f7942f2004-01-14 06:06:08 +00007453
7454 // If the callsite is an invoke instruction, and the return value is used by
7455 // a PHI node in a successor, we cannot change the return type of the call
7456 // because there is no place to put the cast instruction (without breaking
7457 // the critical edge). Bail out in this case.
7458 if (!Caller->use_empty())
7459 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller))
7460 for (Value::use_iterator UI = II->use_begin(), E = II->use_end();
7461 UI != E; ++UI)
7462 if (PHINode *PN = dyn_cast<PHINode>(*UI))
7463 if (PN->getParent() == II->getNormalDest() ||
Chris Lattnerfae8ab32004-02-08 21:44:31 +00007464 PN->getParent() == II->getUnwindDest())
Chris Lattner1f7942f2004-01-14 06:06:08 +00007465 return false;
7466 }
Chris Lattner970c33a2003-06-19 17:00:31 +00007467
7468 unsigned NumActualArgs = unsigned(CS.arg_end()-CS.arg_begin());
7469 unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs);
Misha Brukmanb1c93172005-04-21 23:48:37 +00007470
Chris Lattner970c33a2003-06-19 17:00:31 +00007471 CallSite::arg_iterator AI = CS.arg_begin();
7472 for (unsigned i = 0, e = NumCommonArgs; i != e; ++i, ++AI) {
7473 const Type *ParamTy = FT->getParamType(i);
Andrew Lenharthebfa24e2006-06-28 01:01:52 +00007474 const Type *ActTy = (*AI)->getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00007475 ConstantInt *c = dyn_cast<ConstantInt>(*AI);
Andrew Lenharthebfa24e2006-06-28 01:01:52 +00007476 //Either we can cast directly, or we can upconvert the argument
Chris Lattner400f9592007-01-06 02:09:32 +00007477 bool isConvertible = ActTy == ParamTy ||
Chris Lattner7051d752007-01-06 19:53:32 +00007478 (isa<PointerType>(ParamTy) && isa<PointerType>(ActTy)) ||
Chris Lattner03c49532007-01-15 02:27:26 +00007479 (ParamTy->isInteger() && ActTy->isInteger() &&
Reid Spencer8f166b02007-01-08 16:32:00 +00007480 ParamTy->getPrimitiveSizeInBits() >= ActTy->getPrimitiveSizeInBits()) ||
7481 (c && ParamTy->getPrimitiveSizeInBits() >= ActTy->getPrimitiveSizeInBits()
Zhou Sheng222d5eb2007-03-25 05:01:29 +00007482 && c->getValue().isStrictlyPositive());
Reid Spencer5301e7c2007-01-30 20:08:39 +00007483 if (Callee->isDeclaration() && !isConvertible) return false;
Chris Lattner970c33a2003-06-19 17:00:31 +00007484 }
7485
7486 if (FT->getNumParams() < NumActualArgs && !FT->isVarArg() &&
Reid Spencer5301e7c2007-01-30 20:08:39 +00007487 Callee->isDeclaration())
Chris Lattner970c33a2003-06-19 17:00:31 +00007488 return false; // Do not delete arguments unless we have a function body...
7489
7490 // Okay, we decided that this is a safe thing to do: go ahead and start
7491 // inserting cast instructions as necessary...
7492 std::vector<Value*> Args;
7493 Args.reserve(NumActualArgs);
7494
7495 AI = CS.arg_begin();
7496 for (unsigned i = 0; i != NumCommonArgs; ++i, ++AI) {
7497 const Type *ParamTy = FT->getParamType(i);
7498 if ((*AI)->getType() == ParamTy) {
7499 Args.push_back(*AI);
7500 } else {
Reid Spencer668d90f2006-12-18 08:47:13 +00007501 Instruction::CastOps opcode = CastInst::getCastOpcode(*AI,
Reid Spencerc635f472006-12-31 05:48:39 +00007502 false, ParamTy, false);
Reid Spencer668d90f2006-12-18 08:47:13 +00007503 CastInst *NewCast = CastInst::create(opcode, *AI, ParamTy, "tmp");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00007504 Args.push_back(InsertNewInstBefore(NewCast, *Caller));
Chris Lattner970c33a2003-06-19 17:00:31 +00007505 }
7506 }
7507
7508 // If the function takes more arguments than the call was taking, add them
7509 // now...
7510 for (unsigned i = NumCommonArgs; i != FT->getNumParams(); ++i)
7511 Args.push_back(Constant::getNullValue(FT->getParamType(i)));
7512
7513 // If we are removing arguments to the function, emit an obnoxious warning...
7514 if (FT->getNumParams() < NumActualArgs)
7515 if (!FT->isVarArg()) {
Bill Wendlingf3baad32006-12-07 01:30:32 +00007516 cerr << "WARNING: While resolving call to function '"
7517 << Callee->getName() << "' arguments were dropped!\n";
Chris Lattner970c33a2003-06-19 17:00:31 +00007518 } else {
7519 // Add all of the arguments in their promoted form to the arg list...
7520 for (unsigned i = FT->getNumParams(); i != NumActualArgs; ++i, ++AI) {
7521 const Type *PTy = getPromotedType((*AI)->getType());
7522 if (PTy != (*AI)->getType()) {
7523 // Must promote to pass through va_arg area!
Reid Spencerc635f472006-12-31 05:48:39 +00007524 Instruction::CastOps opcode = CastInst::getCastOpcode(*AI, false,
7525 PTy, false);
Reid Spencer668d90f2006-12-18 08:47:13 +00007526 Instruction *Cast = CastInst::create(opcode, *AI, PTy, "tmp");
Chris Lattner970c33a2003-06-19 17:00:31 +00007527 InsertNewInstBefore(Cast, *Caller);
7528 Args.push_back(Cast);
7529 } else {
7530 Args.push_back(*AI);
7531 }
7532 }
7533 }
7534
7535 if (FT->getReturnType() == Type::VoidTy)
Chris Lattner6e0123b2007-02-11 01:23:03 +00007536 Caller->setName(""); // Void type should not have a name.
Chris Lattner970c33a2003-06-19 17:00:31 +00007537
7538 Instruction *NC;
7539 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
Chris Lattnerfae8ab32004-02-08 21:44:31 +00007540 NC = new InvokeInst(Callee, II->getNormalDest(), II->getUnwindDest(),
Chris Lattnera06a8fd2007-02-13 02:10:56 +00007541 &Args[0], Args.size(), Caller->getName(), Caller);
Chris Lattner05c703e2005-05-14 12:25:32 +00007542 cast<InvokeInst>(II)->setCallingConv(II->getCallingConv());
Chris Lattner970c33a2003-06-19 17:00:31 +00007543 } else {
Chris Lattnera06a8fd2007-02-13 02:10:56 +00007544 NC = new CallInst(Callee, &Args[0], Args.size(), Caller->getName(), Caller);
Chris Lattner6aacb0f2005-05-06 06:48:21 +00007545 if (cast<CallInst>(Caller)->isTailCall())
7546 cast<CallInst>(NC)->setTailCall();
Chris Lattner05c703e2005-05-14 12:25:32 +00007547 cast<CallInst>(NC)->setCallingConv(cast<CallInst>(Caller)->getCallingConv());
Chris Lattner970c33a2003-06-19 17:00:31 +00007548 }
7549
Chris Lattner6e0123b2007-02-11 01:23:03 +00007550 // Insert a cast of the return type as necessary.
Chris Lattner970c33a2003-06-19 17:00:31 +00007551 Value *NV = NC;
7552 if (Caller->getType() != NV->getType() && !Caller->use_empty()) {
7553 if (NV->getType() != Type::VoidTy) {
Reid Spencer668d90f2006-12-18 08:47:13 +00007554 const Type *CallerTy = Caller->getType();
Reid Spencerc635f472006-12-31 05:48:39 +00007555 Instruction::CastOps opcode = CastInst::getCastOpcode(NC, false,
7556 CallerTy, false);
Reid Spencer668d90f2006-12-18 08:47:13 +00007557 NV = NC = CastInst::create(opcode, NC, CallerTy, "tmp");
Chris Lattner686767f2003-10-30 00:46:41 +00007558
7559 // If this is an invoke instruction, we should insert it after the first
7560 // non-phi, instruction in the normal successor block.
7561 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
7562 BasicBlock::iterator I = II->getNormalDest()->begin();
7563 while (isa<PHINode>(I)) ++I;
7564 InsertNewInstBefore(NC, *I);
7565 } else {
7566 // Otherwise, it's a call, just insert cast right after the call instr
7567 InsertNewInstBefore(NC, *Caller);
7568 }
Chris Lattner51ea1272004-02-28 05:22:00 +00007569 AddUsersToWorkList(*Caller);
Chris Lattner970c33a2003-06-19 17:00:31 +00007570 } else {
Chris Lattnere29d6342004-10-17 21:22:38 +00007571 NV = UndefValue::get(Caller->getType());
Chris Lattner970c33a2003-06-19 17:00:31 +00007572 }
7573 }
7574
7575 if (Caller->getType() != Type::VoidTy && !Caller->use_empty())
7576 Caller->replaceAllUsesWith(NV);
Chris Lattner51f54572007-03-02 19:59:19 +00007577 Caller->eraseFromParent();
Chris Lattnerb15e2b12007-03-02 21:28:56 +00007578 RemoveFromWorkList(Caller);
Chris Lattner970c33a2003-06-19 17:00:31 +00007579 return true;
7580}
7581
Chris Lattnercadac0c2006-11-01 04:51:18 +00007582/// FoldPHIArgBinOpIntoPHI - If we have something like phi [add (a,b), add(c,d)]
7583/// and if a/b/c/d and the add's all have a single use, turn this into two phi's
7584/// and a single binop.
7585Instruction *InstCombiner::FoldPHIArgBinOpIntoPHI(PHINode &PN) {
7586 Instruction *FirstInst = cast<Instruction>(PN.getIncomingValue(0));
Reid Spencer2341c222007-02-02 02:16:23 +00007587 assert(isa<BinaryOperator>(FirstInst) || isa<GetElementPtrInst>(FirstInst) ||
7588 isa<CmpInst>(FirstInst));
Chris Lattnercadac0c2006-11-01 04:51:18 +00007589 unsigned Opc = FirstInst->getOpcode();
Chris Lattnercd62f112006-11-08 19:29:23 +00007590 Value *LHSVal = FirstInst->getOperand(0);
7591 Value *RHSVal = FirstInst->getOperand(1);
7592
7593 const Type *LHSType = LHSVal->getType();
7594 const Type *RHSType = RHSVal->getType();
Chris Lattnercadac0c2006-11-01 04:51:18 +00007595
7596 // Scan to see if all operands are the same opcode, all have one use, and all
7597 // kill their operands (i.e. the operands have one use).
Chris Lattnerdc826fc2006-11-01 04:55:47 +00007598 for (unsigned i = 0; i != PN.getNumIncomingValues(); ++i) {
Chris Lattnercadac0c2006-11-01 04:51:18 +00007599 Instruction *I = dyn_cast<Instruction>(PN.getIncomingValue(i));
Chris Lattnerdc826fc2006-11-01 04:55:47 +00007600 if (!I || I->getOpcode() != Opc || !I->hasOneUse() ||
Reid Spencer266e42b2006-12-23 06:05:41 +00007601 // Verify type of the LHS matches so we don't fold cmp's of different
Chris Lattnereebea432006-11-01 07:43:41 +00007602 // types or GEP's with different index types.
7603 I->getOperand(0)->getType() != LHSType ||
7604 I->getOperand(1)->getType() != RHSType)
Chris Lattnercadac0c2006-11-01 04:51:18 +00007605 return 0;
Reid Spencer266e42b2006-12-23 06:05:41 +00007606
7607 // If they are CmpInst instructions, check their predicates
7608 if (Opc == Instruction::ICmp || Opc == Instruction::FCmp)
7609 if (cast<CmpInst>(I)->getPredicate() !=
7610 cast<CmpInst>(FirstInst)->getPredicate())
7611 return 0;
Chris Lattnercd62f112006-11-08 19:29:23 +00007612
7613 // Keep track of which operand needs a phi node.
7614 if (I->getOperand(0) != LHSVal) LHSVal = 0;
7615 if (I->getOperand(1) != RHSVal) RHSVal = 0;
Chris Lattnercadac0c2006-11-01 04:51:18 +00007616 }
7617
Chris Lattner4f218d52006-11-08 19:42:28 +00007618 // Otherwise, this is safe to transform, determine if it is profitable.
7619
7620 // If this is a GEP, and if the index (not the pointer) needs a PHI, bail out.
7621 // Indexes are often folded into load/store instructions, so we don't want to
7622 // hide them behind a phi.
7623 if (isa<GetElementPtrInst>(FirstInst) && RHSVal == 0)
7624 return 0;
7625
Chris Lattnercadac0c2006-11-01 04:51:18 +00007626 Value *InLHS = FirstInst->getOperand(0);
Chris Lattnercadac0c2006-11-01 04:51:18 +00007627 Value *InRHS = FirstInst->getOperand(1);
Chris Lattner4f218d52006-11-08 19:42:28 +00007628 PHINode *NewLHS = 0, *NewRHS = 0;
Chris Lattnercd62f112006-11-08 19:29:23 +00007629 if (LHSVal == 0) {
7630 NewLHS = new PHINode(LHSType, FirstInst->getOperand(0)->getName()+".pn");
7631 NewLHS->reserveOperandSpace(PN.getNumOperands()/2);
7632 NewLHS->addIncoming(InLHS, PN.getIncomingBlock(0));
Chris Lattnereebea432006-11-01 07:43:41 +00007633 InsertNewInstBefore(NewLHS, PN);
7634 LHSVal = NewLHS;
7635 }
Chris Lattnercd62f112006-11-08 19:29:23 +00007636
7637 if (RHSVal == 0) {
7638 NewRHS = new PHINode(RHSType, FirstInst->getOperand(1)->getName()+".pn");
7639 NewRHS->reserveOperandSpace(PN.getNumOperands()/2);
7640 NewRHS->addIncoming(InRHS, PN.getIncomingBlock(0));
Chris Lattnereebea432006-11-01 07:43:41 +00007641 InsertNewInstBefore(NewRHS, PN);
7642 RHSVal = NewRHS;
7643 }
7644
Chris Lattnercd62f112006-11-08 19:29:23 +00007645 // Add all operands to the new PHIs.
7646 for (unsigned i = 1, e = PN.getNumIncomingValues(); i != e; ++i) {
7647 if (NewLHS) {
7648 Value *NewInLHS =cast<Instruction>(PN.getIncomingValue(i))->getOperand(0);
7649 NewLHS->addIncoming(NewInLHS, PN.getIncomingBlock(i));
7650 }
7651 if (NewRHS) {
7652 Value *NewInRHS =cast<Instruction>(PN.getIncomingValue(i))->getOperand(1);
7653 NewRHS->addIncoming(NewInRHS, PN.getIncomingBlock(i));
7654 }
7655 }
7656
Chris Lattnercadac0c2006-11-01 04:51:18 +00007657 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(FirstInst))
Chris Lattnereebea432006-11-01 07:43:41 +00007658 return BinaryOperator::create(BinOp->getOpcode(), LHSVal, RHSVal);
Reid Spencer266e42b2006-12-23 06:05:41 +00007659 else if (CmpInst *CIOp = dyn_cast<CmpInst>(FirstInst))
7660 return CmpInst::create(CIOp->getOpcode(), CIOp->getPredicate(), LHSVal,
7661 RHSVal);
Chris Lattnereebea432006-11-01 07:43:41 +00007662 else {
7663 assert(isa<GetElementPtrInst>(FirstInst));
7664 return new GetElementPtrInst(LHSVal, RHSVal);
7665 }
Chris Lattnercadac0c2006-11-01 04:51:18 +00007666}
7667
Chris Lattner14f82c72006-11-01 07:13:54 +00007668/// isSafeToSinkLoad - Return true if we know that it is safe sink the load out
7669/// of the block that defines it. This means that it must be obvious the value
7670/// of the load is not changed from the point of the load to the end of the
7671/// block it is in.
Chris Lattnerc9042052007-02-01 22:30:07 +00007672///
7673/// Finally, it is safe, but not profitable, to sink a load targetting a
7674/// non-address-taken alloca. Doing so will cause us to not promote the alloca
7675/// to a register.
Chris Lattner14f82c72006-11-01 07:13:54 +00007676static bool isSafeToSinkLoad(LoadInst *L) {
7677 BasicBlock::iterator BBI = L, E = L->getParent()->end();
7678
7679 for (++BBI; BBI != E; ++BBI)
7680 if (BBI->mayWriteToMemory())
7681 return false;
Chris Lattnerc9042052007-02-01 22:30:07 +00007682
7683 // Check for non-address taken alloca. If not address-taken already, it isn't
7684 // profitable to do this xform.
7685 if (AllocaInst *AI = dyn_cast<AllocaInst>(L->getOperand(0))) {
7686 bool isAddressTaken = false;
7687 for (Value::use_iterator UI = AI->use_begin(), E = AI->use_end();
7688 UI != E; ++UI) {
7689 if (isa<LoadInst>(UI)) continue;
7690 if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
7691 // If storing TO the alloca, then the address isn't taken.
7692 if (SI->getOperand(1) == AI) continue;
7693 }
7694 isAddressTaken = true;
7695 break;
7696 }
7697
7698 if (!isAddressTaken)
7699 return false;
7700 }
7701
Chris Lattner14f82c72006-11-01 07:13:54 +00007702 return true;
7703}
7704
Chris Lattner970c33a2003-06-19 17:00:31 +00007705
Chris Lattner7515cab2004-11-14 19:13:23 +00007706// FoldPHIArgOpIntoPHI - If all operands to a PHI node are the same "unary"
7707// operator and they all are only used by the PHI, PHI together their
7708// inputs, and do the operation once, to the result of the PHI.
7709Instruction *InstCombiner::FoldPHIArgOpIntoPHI(PHINode &PN) {
7710 Instruction *FirstInst = cast<Instruction>(PN.getIncomingValue(0));
7711
7712 // Scan the instruction, looking for input operations that can be folded away.
7713 // If all input operands to the phi are the same instruction (e.g. a cast from
7714 // the same type or "+42") we can pull the operation through the PHI, reducing
7715 // code size and simplifying code.
7716 Constant *ConstantOp = 0;
7717 const Type *CastSrcTy = 0;
Chris Lattner14f82c72006-11-01 07:13:54 +00007718 bool isVolatile = false;
Chris Lattner7515cab2004-11-14 19:13:23 +00007719 if (isa<CastInst>(FirstInst)) {
7720 CastSrcTy = FirstInst->getOperand(0)->getType();
Reid Spencer2341c222007-02-02 02:16:23 +00007721 } else if (isa<BinaryOperator>(FirstInst) || isa<CmpInst>(FirstInst)) {
Reid Spencer266e42b2006-12-23 06:05:41 +00007722 // Can fold binop, compare or shift here if the RHS is a constant,
7723 // otherwise call FoldPHIArgBinOpIntoPHI.
Chris Lattner7515cab2004-11-14 19:13:23 +00007724 ConstantOp = dyn_cast<Constant>(FirstInst->getOperand(1));
Chris Lattnercadac0c2006-11-01 04:51:18 +00007725 if (ConstantOp == 0)
7726 return FoldPHIArgBinOpIntoPHI(PN);
Chris Lattner14f82c72006-11-01 07:13:54 +00007727 } else if (LoadInst *LI = dyn_cast<LoadInst>(FirstInst)) {
7728 isVolatile = LI->isVolatile();
7729 // We can't sink the load if the loaded value could be modified between the
7730 // load and the PHI.
7731 if (LI->getParent() != PN.getIncomingBlock(0) ||
7732 !isSafeToSinkLoad(LI))
7733 return 0;
Chris Lattnereebea432006-11-01 07:43:41 +00007734 } else if (isa<GetElementPtrInst>(FirstInst)) {
Chris Lattner4f218d52006-11-08 19:42:28 +00007735 if (FirstInst->getNumOperands() == 2)
Chris Lattnereebea432006-11-01 07:43:41 +00007736 return FoldPHIArgBinOpIntoPHI(PN);
7737 // Can't handle general GEPs yet.
7738 return 0;
Chris Lattner7515cab2004-11-14 19:13:23 +00007739 } else {
7740 return 0; // Cannot fold this operation.
7741 }
7742
7743 // Check to see if all arguments are the same operation.
7744 for (unsigned i = 1, e = PN.getNumIncomingValues(); i != e; ++i) {
7745 if (!isa<Instruction>(PN.getIncomingValue(i))) return 0;
7746 Instruction *I = cast<Instruction>(PN.getIncomingValue(i));
Reid Spencer266e42b2006-12-23 06:05:41 +00007747 if (!I->hasOneUse() || !I->isSameOperationAs(FirstInst))
Chris Lattner7515cab2004-11-14 19:13:23 +00007748 return 0;
7749 if (CastSrcTy) {
7750 if (I->getOperand(0)->getType() != CastSrcTy)
7751 return 0; // Cast operation must match.
Chris Lattner14f82c72006-11-01 07:13:54 +00007752 } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Reid Spencer266e42b2006-12-23 06:05:41 +00007753 // We can't sink the load if the loaded value could be modified between
7754 // the load and the PHI.
Chris Lattner14f82c72006-11-01 07:13:54 +00007755 if (LI->isVolatile() != isVolatile ||
7756 LI->getParent() != PN.getIncomingBlock(i) ||
7757 !isSafeToSinkLoad(LI))
7758 return 0;
Chris Lattner7515cab2004-11-14 19:13:23 +00007759 } else if (I->getOperand(1) != ConstantOp) {
7760 return 0;
7761 }
7762 }
7763
7764 // Okay, they are all the same operation. Create a new PHI node of the
7765 // correct type, and PHI together all of the LHS's of the instructions.
7766 PHINode *NewPN = new PHINode(FirstInst->getOperand(0)->getType(),
7767 PN.getName()+".in");
Chris Lattnerd8e20182005-01-29 00:39:08 +00007768 NewPN->reserveOperandSpace(PN.getNumOperands()/2);
Chris Lattner46dd5a62004-11-14 19:29:34 +00007769
7770 Value *InVal = FirstInst->getOperand(0);
7771 NewPN->addIncoming(InVal, PN.getIncomingBlock(0));
Chris Lattner7515cab2004-11-14 19:13:23 +00007772
7773 // Add all operands to the new PHI.
Chris Lattner46dd5a62004-11-14 19:29:34 +00007774 for (unsigned i = 1, e = PN.getNumIncomingValues(); i != e; ++i) {
7775 Value *NewInVal = cast<Instruction>(PN.getIncomingValue(i))->getOperand(0);
7776 if (NewInVal != InVal)
7777 InVal = 0;
7778 NewPN->addIncoming(NewInVal, PN.getIncomingBlock(i));
7779 }
7780
7781 Value *PhiVal;
7782 if (InVal) {
7783 // The new PHI unions all of the same values together. This is really
7784 // common, so we handle it intelligently here for compile-time speed.
7785 PhiVal = InVal;
7786 delete NewPN;
7787 } else {
7788 InsertNewInstBefore(NewPN, PN);
7789 PhiVal = NewPN;
7790 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00007791
Chris Lattner7515cab2004-11-14 19:13:23 +00007792 // Insert and return the new operation.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00007793 if (CastInst* FirstCI = dyn_cast<CastInst>(FirstInst))
7794 return CastInst::create(FirstCI->getOpcode(), PhiVal, PN.getType());
Reid Spencerde46e482006-11-02 20:25:50 +00007795 else if (isa<LoadInst>(FirstInst))
Chris Lattner14f82c72006-11-01 07:13:54 +00007796 return new LoadInst(PhiVal, "", isVolatile);
Chris Lattner7515cab2004-11-14 19:13:23 +00007797 else if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(FirstInst))
Chris Lattner46dd5a62004-11-14 19:29:34 +00007798 return BinaryOperator::create(BinOp->getOpcode(), PhiVal, ConstantOp);
Reid Spencer266e42b2006-12-23 06:05:41 +00007799 else if (CmpInst *CIOp = dyn_cast<CmpInst>(FirstInst))
7800 return CmpInst::create(CIOp->getOpcode(), CIOp->getPredicate(),
7801 PhiVal, ConstantOp);
Chris Lattner7515cab2004-11-14 19:13:23 +00007802 else
Reid Spencer2341c222007-02-02 02:16:23 +00007803 assert(0 && "Unknown operation");
Jeff Cohenb622c112007-03-05 00:00:42 +00007804 return 0;
Chris Lattner7515cab2004-11-14 19:13:23 +00007805}
Chris Lattner48a44f72002-05-02 17:06:02 +00007806
Chris Lattner71536432005-01-17 05:10:15 +00007807/// DeadPHICycle - Return true if this PHI node is only used by a PHI node cycle
7808/// that is dead.
7809static bool DeadPHICycle(PHINode *PN, std::set<PHINode*> &PotentiallyDeadPHIs) {
7810 if (PN->use_empty()) return true;
7811 if (!PN->hasOneUse()) return false;
7812
7813 // Remember this node, and if we find the cycle, return.
7814 if (!PotentiallyDeadPHIs.insert(PN).second)
7815 return true;
7816
7817 if (PHINode *PU = dyn_cast<PHINode>(PN->use_back()))
7818 return DeadPHICycle(PU, PotentiallyDeadPHIs);
Misha Brukmanb1c93172005-04-21 23:48:37 +00007819
Chris Lattner71536432005-01-17 05:10:15 +00007820 return false;
7821}
7822
Chris Lattnerbbbdd852002-05-06 18:06:38 +00007823// PHINode simplification
7824//
Chris Lattner113f4f42002-06-25 16:13:24 +00007825Instruction *InstCombiner::visitPHINode(PHINode &PN) {
Owen Andersonbbf89902006-07-10 22:15:25 +00007826 // If LCSSA is around, don't mess with Phi nodes
Chris Lattner8258b442007-03-04 04:27:24 +00007827 if (MustPreserveLCSSA) return 0;
Owen Andersona6968f82006-07-10 19:03:49 +00007828
Owen Andersonae8aa642006-07-10 22:03:18 +00007829 if (Value *V = PN.hasConstantValue())
7830 return ReplaceInstUsesWith(PN, V);
7831
Owen Andersonae8aa642006-07-10 22:03:18 +00007832 // If all PHI operands are the same operation, pull them through the PHI,
7833 // reducing code size.
7834 if (isa<Instruction>(PN.getIncomingValue(0)) &&
7835 PN.getIncomingValue(0)->hasOneUse())
7836 if (Instruction *Result = FoldPHIArgOpIntoPHI(PN))
7837 return Result;
7838
7839 // If this is a trivial cycle in the PHI node graph, remove it. Basically, if
7840 // this PHI only has a single use (a PHI), and if that PHI only has one use (a
7841 // PHI)... break the cycle.
Chris Lattnerc8dcede2007-01-15 07:30:06 +00007842 if (PN.hasOneUse()) {
7843 Instruction *PHIUser = cast<Instruction>(PN.use_back());
7844 if (PHINode *PU = dyn_cast<PHINode>(PHIUser)) {
Owen Andersonae8aa642006-07-10 22:03:18 +00007845 std::set<PHINode*> PotentiallyDeadPHIs;
7846 PotentiallyDeadPHIs.insert(&PN);
7847 if (DeadPHICycle(PU, PotentiallyDeadPHIs))
7848 return ReplaceInstUsesWith(PN, UndefValue::get(PN.getType()));
7849 }
Chris Lattnerc8dcede2007-01-15 07:30:06 +00007850
7851 // If this phi has a single use, and if that use just computes a value for
7852 // the next iteration of a loop, delete the phi. This occurs with unused
7853 // induction variables, e.g. "for (int j = 0; ; ++j);". Detecting this
7854 // common case here is good because the only other things that catch this
7855 // are induction variable analysis (sometimes) and ADCE, which is only run
7856 // late.
7857 if (PHIUser->hasOneUse() &&
7858 (isa<BinaryOperator>(PHIUser) || isa<GetElementPtrInst>(PHIUser)) &&
7859 PHIUser->use_back() == &PN) {
7860 return ReplaceInstUsesWith(PN, UndefValue::get(PN.getType()));
7861 }
7862 }
Owen Andersonae8aa642006-07-10 22:03:18 +00007863
Chris Lattner91daeb52003-12-19 05:58:40 +00007864 return 0;
Chris Lattnerbbbdd852002-05-06 18:06:38 +00007865}
7866
Reid Spencer13bc5d72006-12-12 09:18:51 +00007867static Value *InsertCastToIntPtrTy(Value *V, const Type *DTy,
7868 Instruction *InsertPoint,
7869 InstCombiner *IC) {
Reid Spencer8f166b02007-01-08 16:32:00 +00007870 unsigned PtrSize = DTy->getPrimitiveSizeInBits();
7871 unsigned VTySize = V->getType()->getPrimitiveSizeInBits();
Reid Spencer13bc5d72006-12-12 09:18:51 +00007872 // We must cast correctly to the pointer type. Ensure that we
7873 // sign extend the integer value if it is smaller as this is
7874 // used for address computation.
7875 Instruction::CastOps opcode =
7876 (VTySize < PtrSize ? Instruction::SExt :
7877 (VTySize == PtrSize ? Instruction::BitCast : Instruction::Trunc));
7878 return IC->InsertCastBefore(opcode, V, DTy, *InsertPoint);
Chris Lattner69193f92004-04-05 01:30:19 +00007879}
7880
Chris Lattner48a44f72002-05-02 17:06:02 +00007881
Chris Lattner113f4f42002-06-25 16:13:24 +00007882Instruction *InstCombiner::visitGetElementPtrInst(GetElementPtrInst &GEP) {
Chris Lattner5f667a62004-05-07 22:09:22 +00007883 Value *PtrOp = GEP.getOperand(0);
Chris Lattner471bd762003-05-22 19:07:21 +00007884 // Is it 'getelementptr %P, long 0' or 'getelementptr %P'
Chris Lattner113f4f42002-06-25 16:13:24 +00007885 // If so, eliminate the noop.
Chris Lattner8d0bacb2004-02-22 05:25:17 +00007886 if (GEP.getNumOperands() == 1)
Chris Lattner5f667a62004-05-07 22:09:22 +00007887 return ReplaceInstUsesWith(GEP, PtrOp);
Chris Lattner8d0bacb2004-02-22 05:25:17 +00007888
Chris Lattner81a7a232004-10-16 18:11:37 +00007889 if (isa<UndefValue>(GEP.getOperand(0)))
7890 return ReplaceInstUsesWith(GEP, UndefValue::get(GEP.getType()));
7891
Chris Lattner8d0bacb2004-02-22 05:25:17 +00007892 bool HasZeroPointerIndex = false;
7893 if (Constant *C = dyn_cast<Constant>(GEP.getOperand(1)))
7894 HasZeroPointerIndex = C->isNullValue();
7895
7896 if (GEP.getNumOperands() == 2 && HasZeroPointerIndex)
Chris Lattner5f667a62004-05-07 22:09:22 +00007897 return ReplaceInstUsesWith(GEP, PtrOp);
Chris Lattner48a44f72002-05-02 17:06:02 +00007898
Chris Lattner9bf53ff2007-03-25 20:43:09 +00007899 // Keep track of whether all indices are zero constants integers.
7900 bool AllZeroIndices = true;
7901
Chris Lattner69193f92004-04-05 01:30:19 +00007902 // Eliminate unneeded casts for indices.
7903 bool MadeChange = false;
Chris Lattner9bf53ff2007-03-25 20:43:09 +00007904
Chris Lattner2b2412d2004-04-07 18:38:20 +00007905 gep_type_iterator GTI = gep_type_begin(GEP);
Chris Lattner9bf53ff2007-03-25 20:43:09 +00007906 for (unsigned i = 1, e = GEP.getNumOperands(); i != e; ++i, ++GTI) {
7907 // Track whether this GEP has all zero indices, if so, it doesn't move the
7908 // input pointer, it just changes its type.
7909 if (AllZeroIndices) {
7910 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP.getOperand(i)))
7911 AllZeroIndices = CI->isNullValue();
7912 else
7913 AllZeroIndices = false;
7914 }
Chris Lattner2b2412d2004-04-07 18:38:20 +00007915 if (isa<SequentialType>(*GTI)) {
7916 if (CastInst *CI = dyn_cast<CastInst>(GEP.getOperand(i))) {
Chris Lattner27df1db2007-01-15 07:02:54 +00007917 if (CI->getOpcode() == Instruction::ZExt ||
7918 CI->getOpcode() == Instruction::SExt) {
7919 const Type *SrcTy = CI->getOperand(0)->getType();
7920 // We can eliminate a cast from i32 to i64 iff the target
7921 // is a 32-bit pointer target.
7922 if (SrcTy->getPrimitiveSizeInBits() >= TD->getPointerSizeInBits()) {
7923 MadeChange = true;
7924 GEP.setOperand(i, CI->getOperand(0));
Chris Lattner69193f92004-04-05 01:30:19 +00007925 }
7926 }
7927 }
Chris Lattner2b2412d2004-04-07 18:38:20 +00007928 // If we are using a wider index than needed for this platform, shrink it
7929 // to what we need. If the incoming value needs a cast instruction,
7930 // insert it. This explicit cast can make subsequent optimizations more
7931 // obvious.
7932 Value *Op = GEP.getOperand(i);
Reid Spencer7a9c62b2007-01-12 07:05:14 +00007933 if (TD->getTypeSize(Op->getType()) > TD->getPointerSize())
Chris Lattner1e9ac1a2004-04-17 18:16:10 +00007934 if (Constant *C = dyn_cast<Constant>(Op)) {
Reid Spencer266e42b2006-12-23 06:05:41 +00007935 GEP.setOperand(i, ConstantExpr::getTrunc(C, TD->getIntPtrType()));
Chris Lattner1e9ac1a2004-04-17 18:16:10 +00007936 MadeChange = true;
7937 } else {
Reid Spencer13bc5d72006-12-12 09:18:51 +00007938 Op = InsertCastBefore(Instruction::Trunc, Op, TD->getIntPtrType(),
7939 GEP);
Chris Lattner2b2412d2004-04-07 18:38:20 +00007940 GEP.setOperand(i, Op);
7941 MadeChange = true;
7942 }
Chris Lattner69193f92004-04-05 01:30:19 +00007943 }
Chris Lattner9bf53ff2007-03-25 20:43:09 +00007944 }
Chris Lattner69193f92004-04-05 01:30:19 +00007945 if (MadeChange) return &GEP;
7946
Chris Lattner9bf53ff2007-03-25 20:43:09 +00007947 // If this GEP instruction doesn't move the pointer, and if the input operand
7948 // is a bitcast of another pointer, just replace the GEP with a bitcast of the
7949 // real input to the dest type.
7950 if (AllZeroIndices && isa<BitCastInst>(GEP.getOperand(0)))
7951 return new BitCastInst(cast<BitCastInst>(GEP.getOperand(0))->getOperand(0),
7952 GEP.getType());
7953
Chris Lattnerae7a0d32002-08-02 19:29:35 +00007954 // Combine Indices - If the source pointer to this getelementptr instruction
7955 // is a getelementptr instruction, combine the indices of the two
7956 // getelementptr instructions into a single instruction.
7957 //
Chris Lattneraf6094f2007-02-15 22:48:32 +00007958 SmallVector<Value*, 8> SrcGEPOperands;
Chris Lattner0798af32005-01-13 20:14:25 +00007959 if (User *Src = dyn_castGetElementPtr(PtrOp))
Chris Lattneraf6094f2007-02-15 22:48:32 +00007960 SrcGEPOperands.append(Src->op_begin(), Src->op_end());
Chris Lattner57c67b02004-03-25 22:59:29 +00007961
7962 if (!SrcGEPOperands.empty()) {
Chris Lattner5f667a62004-05-07 22:09:22 +00007963 // Note that if our source is a gep chain itself that we wait for that
7964 // chain to be resolved before we perform this transformation. This
7965 // avoids us creating a TON of code in some cases.
7966 //
7967 if (isa<GetElementPtrInst>(SrcGEPOperands[0]) &&
7968 cast<Instruction>(SrcGEPOperands[0])->getNumOperands() == 2)
7969 return 0; // Wait until our source is folded to completion.
7970
Chris Lattneraf6094f2007-02-15 22:48:32 +00007971 SmallVector<Value*, 8> Indices;
Chris Lattner5f667a62004-05-07 22:09:22 +00007972
7973 // Find out whether the last index in the source GEP is a sequential idx.
7974 bool EndsWithSequential = false;
7975 for (gep_type_iterator I = gep_type_begin(*cast<User>(PtrOp)),
7976 E = gep_type_end(*cast<User>(PtrOp)); I != E; ++I)
Chris Lattner8ec5f882004-05-08 22:41:42 +00007977 EndsWithSequential = !isa<StructType>(*I);
Misha Brukmanb1c93172005-04-21 23:48:37 +00007978
Chris Lattnerae7a0d32002-08-02 19:29:35 +00007979 // Can we combine the two pointer arithmetics offsets?
Chris Lattner5f667a62004-05-07 22:09:22 +00007980 if (EndsWithSequential) {
Chris Lattner235af562003-03-05 22:33:14 +00007981 // Replace: gep (gep %P, long B), long A, ...
7982 // With: T = long A+B; gep %P, T, ...
7983 //
Chris Lattner5f667a62004-05-07 22:09:22 +00007984 Value *Sum, *SO1 = SrcGEPOperands.back(), *GO1 = GEP.getOperand(1);
Chris Lattner69193f92004-04-05 01:30:19 +00007985 if (SO1 == Constant::getNullValue(SO1->getType())) {
7986 Sum = GO1;
7987 } else if (GO1 == Constant::getNullValue(GO1->getType())) {
7988 Sum = SO1;
7989 } else {
7990 // If they aren't the same type, convert both to an integer of the
7991 // target's pointer size.
7992 if (SO1->getType() != GO1->getType()) {
7993 if (Constant *SO1C = dyn_cast<Constant>(SO1)) {
Reid Spencer13bc5d72006-12-12 09:18:51 +00007994 SO1 = ConstantExpr::getIntegerCast(SO1C, GO1->getType(), true);
Chris Lattner69193f92004-04-05 01:30:19 +00007995 } else if (Constant *GO1C = dyn_cast<Constant>(GO1)) {
Reid Spencer13bc5d72006-12-12 09:18:51 +00007996 GO1 = ConstantExpr::getIntegerCast(GO1C, SO1->getType(), true);
Chris Lattner69193f92004-04-05 01:30:19 +00007997 } else {
7998 unsigned PS = TD->getPointerSize();
Reid Spencer7a9c62b2007-01-12 07:05:14 +00007999 if (TD->getTypeSize(SO1->getType()) == PS) {
Chris Lattner69193f92004-04-05 01:30:19 +00008000 // Convert GO1 to SO1's type.
Reid Spencer13bc5d72006-12-12 09:18:51 +00008001 GO1 = InsertCastToIntPtrTy(GO1, SO1->getType(), &GEP, this);
Chris Lattner69193f92004-04-05 01:30:19 +00008002
Reid Spencer7a9c62b2007-01-12 07:05:14 +00008003 } else if (TD->getTypeSize(GO1->getType()) == PS) {
Chris Lattner69193f92004-04-05 01:30:19 +00008004 // Convert SO1 to GO1's type.
Reid Spencer13bc5d72006-12-12 09:18:51 +00008005 SO1 = InsertCastToIntPtrTy(SO1, GO1->getType(), &GEP, this);
Chris Lattner69193f92004-04-05 01:30:19 +00008006 } else {
8007 const Type *PT = TD->getIntPtrType();
Reid Spencer13bc5d72006-12-12 09:18:51 +00008008 SO1 = InsertCastToIntPtrTy(SO1, PT, &GEP, this);
8009 GO1 = InsertCastToIntPtrTy(GO1, PT, &GEP, this);
Chris Lattner69193f92004-04-05 01:30:19 +00008010 }
8011 }
8012 }
Chris Lattner5f667a62004-05-07 22:09:22 +00008013 if (isa<Constant>(SO1) && isa<Constant>(GO1))
8014 Sum = ConstantExpr::getAdd(cast<Constant>(SO1), cast<Constant>(GO1));
8015 else {
Chris Lattnerdf20a4d2004-06-10 02:07:29 +00008016 Sum = BinaryOperator::createAdd(SO1, GO1, PtrOp->getName()+".sum");
8017 InsertNewInstBefore(cast<Instruction>(Sum), GEP);
Chris Lattner5f667a62004-05-07 22:09:22 +00008018 }
Chris Lattner69193f92004-04-05 01:30:19 +00008019 }
Chris Lattner5f667a62004-05-07 22:09:22 +00008020
8021 // Recycle the GEP we already have if possible.
8022 if (SrcGEPOperands.size() == 2) {
8023 GEP.setOperand(0, SrcGEPOperands[0]);
8024 GEP.setOperand(1, Sum);
8025 return &GEP;
8026 } else {
8027 Indices.insert(Indices.end(), SrcGEPOperands.begin()+1,
8028 SrcGEPOperands.end()-1);
8029 Indices.push_back(Sum);
8030 Indices.insert(Indices.end(), GEP.op_begin()+2, GEP.op_end());
8031 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00008032 } else if (isa<Constant>(*GEP.idx_begin()) &&
Chris Lattner69193f92004-04-05 01:30:19 +00008033 cast<Constant>(*GEP.idx_begin())->isNullValue() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00008034 SrcGEPOperands.size() != 1) {
Chris Lattnerae7a0d32002-08-02 19:29:35 +00008035 // Otherwise we can do the fold if the first index of the GEP is a zero
Chris Lattner57c67b02004-03-25 22:59:29 +00008036 Indices.insert(Indices.end(), SrcGEPOperands.begin()+1,
8037 SrcGEPOperands.end());
Chris Lattnerae7a0d32002-08-02 19:29:35 +00008038 Indices.insert(Indices.end(), GEP.idx_begin()+1, GEP.idx_end());
8039 }
8040
8041 if (!Indices.empty())
Chris Lattnera7315132007-02-12 22:56:41 +00008042 return new GetElementPtrInst(SrcGEPOperands[0], &Indices[0],
8043 Indices.size(), GEP.getName());
Chris Lattnerc59af1d2002-08-17 22:21:59 +00008044
Chris Lattner5f667a62004-05-07 22:09:22 +00008045 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(PtrOp)) {
Chris Lattnerc59af1d2002-08-17 22:21:59 +00008046 // GEP of global variable. If all of the indices for this GEP are
8047 // constants, we can promote this to a constexpr instead of an instruction.
8048
8049 // Scan for nonconstants...
Chris Lattnerf96f4a82007-01-31 04:40:53 +00008050 SmallVector<Constant*, 8> Indices;
Chris Lattnerc59af1d2002-08-17 22:21:59 +00008051 User::op_iterator I = GEP.idx_begin(), E = GEP.idx_end();
8052 for (; I != E && isa<Constant>(*I); ++I)
8053 Indices.push_back(cast<Constant>(*I));
8054
8055 if (I == E) { // If they are all constants...
Chris Lattnerf96f4a82007-01-31 04:40:53 +00008056 Constant *CE = ConstantExpr::getGetElementPtr(GV,
8057 &Indices[0],Indices.size());
Chris Lattnerc59af1d2002-08-17 22:21:59 +00008058
8059 // Replace all uses of the GEP with the new constexpr...
8060 return ReplaceInstUsesWith(GEP, CE);
8061 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00008062 } else if (Value *X = getBitCastOperand(PtrOp)) { // Is the operand a cast?
Chris Lattner567b81f2005-09-13 00:40:14 +00008063 if (!isa<PointerType>(X->getType())) {
8064 // Not interesting. Source pointer must be a cast from pointer.
8065 } else if (HasZeroPointerIndex) {
8066 // transform: GEP (cast [10 x ubyte]* X to [0 x ubyte]*), long 0, ...
8067 // into : GEP [10 x ubyte]* X, long 0, ...
8068 //
8069 // This occurs when the program declares an array extern like "int X[];"
8070 //
8071 const PointerType *CPTy = cast<PointerType>(PtrOp->getType());
8072 const PointerType *XTy = cast<PointerType>(X->getType());
8073 if (const ArrayType *XATy =
8074 dyn_cast<ArrayType>(XTy->getElementType()))
8075 if (const ArrayType *CATy =
8076 dyn_cast<ArrayType>(CPTy->getElementType()))
8077 if (CATy->getElementType() == XATy->getElementType()) {
8078 // At this point, we know that the cast source type is a pointer
8079 // to an array of the same type as the destination pointer
8080 // array. Because the array type is never stepped over (there
8081 // is a leading zero) we can fold the cast into this GEP.
8082 GEP.setOperand(0, X);
8083 return &GEP;
8084 }
8085 } else if (GEP.getNumOperands() == 2) {
8086 // Transform things like:
Chris Lattner2a893292005-09-13 18:36:04 +00008087 // %t = getelementptr ubyte* cast ([2 x int]* %str to uint*), uint %V
8088 // into: %t1 = getelementptr [2 x int*]* %str, int 0, uint %V; cast
Chris Lattner567b81f2005-09-13 00:40:14 +00008089 const Type *SrcElTy = cast<PointerType>(X->getType())->getElementType();
8090 const Type *ResElTy=cast<PointerType>(PtrOp->getType())->getElementType();
8091 if (isa<ArrayType>(SrcElTy) &&
8092 TD->getTypeSize(cast<ArrayType>(SrcElTy)->getElementType()) ==
8093 TD->getTypeSize(ResElTy)) {
8094 Value *V = InsertNewInstBefore(
Reid Spencerc635f472006-12-31 05:48:39 +00008095 new GetElementPtrInst(X, Constant::getNullValue(Type::Int32Ty),
Chris Lattner567b81f2005-09-13 00:40:14 +00008096 GEP.getOperand(1), GEP.getName()), GEP);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00008097 // V and GEP are both pointer types --> BitCast
8098 return new BitCastInst(V, GEP.getType());
Chris Lattner8d0bacb2004-02-22 05:25:17 +00008099 }
Chris Lattner2a893292005-09-13 18:36:04 +00008100
8101 // Transform things like:
8102 // getelementptr sbyte* cast ([100 x double]* X to sbyte*), int %tmp
8103 // (where tmp = 8*tmp2) into:
8104 // getelementptr [100 x double]* %arr, int 0, int %tmp.2
8105
8106 if (isa<ArrayType>(SrcElTy) &&
Reid Spencerc635f472006-12-31 05:48:39 +00008107 (ResElTy == Type::Int8Ty || ResElTy == Type::Int8Ty)) {
Chris Lattner2a893292005-09-13 18:36:04 +00008108 uint64_t ArrayEltSize =
8109 TD->getTypeSize(cast<ArrayType>(SrcElTy)->getElementType());
8110
8111 // Check to see if "tmp" is a scale by a multiple of ArrayEltSize. We
8112 // allow either a mul, shift, or constant here.
8113 Value *NewIdx = 0;
8114 ConstantInt *Scale = 0;
8115 if (ArrayEltSize == 1) {
8116 NewIdx = GEP.getOperand(1);
8117 Scale = ConstantInt::get(NewIdx->getType(), 1);
8118 } else if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP.getOperand(1))) {
Chris Lattnera393e4d2005-09-14 17:32:56 +00008119 NewIdx = ConstantInt::get(CI->getType(), 1);
Chris Lattner2a893292005-09-13 18:36:04 +00008120 Scale = CI;
8121 } else if (Instruction *Inst =dyn_cast<Instruction>(GEP.getOperand(1))){
8122 if (Inst->getOpcode() == Instruction::Shl &&
8123 isa<ConstantInt>(Inst->getOperand(1))) {
Reid Spencere0fc4df2006-10-20 07:07:24 +00008124 unsigned ShAmt =
8125 cast<ConstantInt>(Inst->getOperand(1))->getZExtValue();
Reid Spencer266e42b2006-12-23 06:05:41 +00008126 Scale = ConstantInt::get(Inst->getType(), 1ULL << ShAmt);
Chris Lattner2a893292005-09-13 18:36:04 +00008127 NewIdx = Inst->getOperand(0);
8128 } else if (Inst->getOpcode() == Instruction::Mul &&
8129 isa<ConstantInt>(Inst->getOperand(1))) {
8130 Scale = cast<ConstantInt>(Inst->getOperand(1));
8131 NewIdx = Inst->getOperand(0);
8132 }
8133 }
8134
8135 // If the index will be to exactly the right offset with the scale taken
8136 // out, perform the transformation.
Reid Spencere0fc4df2006-10-20 07:07:24 +00008137 if (Scale && Scale->getZExtValue() % ArrayEltSize == 0) {
Reid Spencerde46e482006-11-02 20:25:50 +00008138 if (isa<ConstantInt>(Scale))
Reid Spencere0fc4df2006-10-20 07:07:24 +00008139 Scale = ConstantInt::get(Scale->getType(),
8140 Scale->getZExtValue() / ArrayEltSize);
8141 if (Scale->getZExtValue() != 1) {
Reid Spencer13bc5d72006-12-12 09:18:51 +00008142 Constant *C = ConstantExpr::getIntegerCast(Scale, NewIdx->getType(),
8143 true /*SExt*/);
Chris Lattner2a893292005-09-13 18:36:04 +00008144 Instruction *Sc = BinaryOperator::createMul(NewIdx, C, "idxscale");
8145 NewIdx = InsertNewInstBefore(Sc, GEP);
8146 }
8147
8148 // Insert the new GEP instruction.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00008149 Instruction *NewGEP =
Reid Spencerc635f472006-12-31 05:48:39 +00008150 new GetElementPtrInst(X, Constant::getNullValue(Type::Int32Ty),
Chris Lattner2a893292005-09-13 18:36:04 +00008151 NewIdx, GEP.getName());
Reid Spencer6c38f0b2006-11-27 01:05:10 +00008152 NewGEP = InsertNewInstBefore(NewGEP, GEP);
8153 // The NewGEP must be pointer typed, so must the old one -> BitCast
8154 return new BitCastInst(NewGEP, GEP.getType());
Chris Lattner2a893292005-09-13 18:36:04 +00008155 }
8156 }
Chris Lattner8d0bacb2004-02-22 05:25:17 +00008157 }
Chris Lattnerca081252001-12-14 16:52:21 +00008158 }
8159
Chris Lattnerca081252001-12-14 16:52:21 +00008160 return 0;
8161}
8162
Chris Lattner1085bdf2002-11-04 16:18:53 +00008163Instruction *InstCombiner::visitAllocationInst(AllocationInst &AI) {
8164 // Convert: malloc Ty, C - where C is a constant != 1 into: malloc [C x Ty], 1
8165 if (AI.isArrayAllocation()) // Check C != 1
Reid Spencere0fc4df2006-10-20 07:07:24 +00008166 if (const ConstantInt *C = dyn_cast<ConstantInt>(AI.getArraySize())) {
8167 const Type *NewTy =
8168 ArrayType::get(AI.getAllocatedType(), C->getZExtValue());
Chris Lattnera2620ac2002-11-09 00:49:43 +00008169 AllocationInst *New = 0;
Chris Lattner1085bdf2002-11-04 16:18:53 +00008170
8171 // Create and insert the replacement instruction...
8172 if (isa<MallocInst>(AI))
Nate Begeman848622f2005-11-05 09:21:28 +00008173 New = new MallocInst(NewTy, 0, AI.getAlignment(), AI.getName());
Chris Lattnera2620ac2002-11-09 00:49:43 +00008174 else {
8175 assert(isa<AllocaInst>(AI) && "Unknown type of allocation inst!");
Nate Begeman848622f2005-11-05 09:21:28 +00008176 New = new AllocaInst(NewTy, 0, AI.getAlignment(), AI.getName());
Chris Lattnera2620ac2002-11-09 00:49:43 +00008177 }
Chris Lattnerabb77c92004-03-19 06:08:10 +00008178
8179 InsertNewInstBefore(New, AI);
Misha Brukmanb1c93172005-04-21 23:48:37 +00008180
Chris Lattner1085bdf2002-11-04 16:18:53 +00008181 // Scan to the end of the allocation instructions, to skip over a block of
8182 // allocas if possible...
8183 //
8184 BasicBlock::iterator It = New;
8185 while (isa<AllocationInst>(*It)) ++It;
8186
8187 // Now that I is pointing to the first non-allocation-inst in the block,
8188 // insert our getelementptr instruction...
8189 //
Reid Spencerc635f472006-12-31 05:48:39 +00008190 Value *NullIdx = Constant::getNullValue(Type::Int32Ty);
Chris Lattner809dfac2005-05-04 19:10:26 +00008191 Value *V = new GetElementPtrInst(New, NullIdx, NullIdx,
8192 New->getName()+".sub", It);
Chris Lattner1085bdf2002-11-04 16:18:53 +00008193
8194 // Now make everything use the getelementptr instead of the original
8195 // allocation.
Chris Lattnerabb77c92004-03-19 06:08:10 +00008196 return ReplaceInstUsesWith(AI, V);
Chris Lattner81a7a232004-10-16 18:11:37 +00008197 } else if (isa<UndefValue>(AI.getArraySize())) {
8198 return ReplaceInstUsesWith(AI, Constant::getNullValue(AI.getType()));
Chris Lattner1085bdf2002-11-04 16:18:53 +00008199 }
Chris Lattnerabb77c92004-03-19 06:08:10 +00008200
8201 // If alloca'ing a zero byte object, replace the alloca with a null pointer.
8202 // Note that we only do this for alloca's, because malloc should allocate and
8203 // return a unique pointer, even for a zero byte allocation.
Misha Brukmanb1c93172005-04-21 23:48:37 +00008204 if (isa<AllocaInst>(AI) && AI.getAllocatedType()->isSized() &&
Chris Lattner49df6ce2004-07-02 22:55:47 +00008205 TD->getTypeSize(AI.getAllocatedType()) == 0)
Chris Lattnerabb77c92004-03-19 06:08:10 +00008206 return ReplaceInstUsesWith(AI, Constant::getNullValue(AI.getType()));
8207
Chris Lattner1085bdf2002-11-04 16:18:53 +00008208 return 0;
8209}
8210
Chris Lattner8427bff2003-12-07 01:24:23 +00008211Instruction *InstCombiner::visitFreeInst(FreeInst &FI) {
8212 Value *Op = FI.getOperand(0);
8213
8214 // Change free <ty>* (cast <ty2>* X to <ty>*) into free <ty2>* X
8215 if (CastInst *CI = dyn_cast<CastInst>(Op))
8216 if (isa<PointerType>(CI->getOperand(0)->getType())) {
8217 FI.setOperand(0, CI->getOperand(0));
8218 return &FI;
8219 }
8220
Chris Lattner8ba9ec92004-10-18 02:59:09 +00008221 // free undef -> unreachable.
8222 if (isa<UndefValue>(Op)) {
8223 // Insert a new store to null because we cannot modify the CFG here.
Zhou Sheng75b871f2007-01-11 12:24:14 +00008224 new StoreInst(ConstantInt::getTrue(),
Reid Spencer542964f2007-01-11 18:21:29 +00008225 UndefValue::get(PointerType::get(Type::Int1Ty)), &FI);
Chris Lattner8ba9ec92004-10-18 02:59:09 +00008226 return EraseInstFromFunction(FI);
8227 }
8228
Chris Lattnerf3a36602004-02-28 04:57:37 +00008229 // If we have 'free null' delete the instruction. This can happen in stl code
8230 // when lots of inlining happens.
Chris Lattner8ba9ec92004-10-18 02:59:09 +00008231 if (isa<ConstantPointerNull>(Op))
Chris Lattner51ea1272004-02-28 05:22:00 +00008232 return EraseInstFromFunction(FI);
Chris Lattnerf3a36602004-02-28 04:57:37 +00008233
Chris Lattner8427bff2003-12-07 01:24:23 +00008234 return 0;
8235}
8236
8237
Chris Lattner72684fe2005-01-31 05:51:45 +00008238/// InstCombineLoadCast - Fold 'load (cast P)' -> cast (load P)' when possible.
Chris Lattner35e24772004-07-13 01:49:43 +00008239static Instruction *InstCombineLoadCast(InstCombiner &IC, LoadInst &LI) {
8240 User *CI = cast<User>(LI.getOperand(0));
Chris Lattnerfe1b0b82005-01-31 04:50:46 +00008241 Value *CastOp = CI->getOperand(0);
Chris Lattner35e24772004-07-13 01:49:43 +00008242
8243 const Type *DestPTy = cast<PointerType>(CI->getType())->getElementType();
Chris Lattnerfe1b0b82005-01-31 04:50:46 +00008244 if (const PointerType *SrcTy = dyn_cast<PointerType>(CastOp->getType())) {
Chris Lattner35e24772004-07-13 01:49:43 +00008245 const Type *SrcPTy = SrcTy->getElementType();
Chris Lattnerfe1b0b82005-01-31 04:50:46 +00008246
Reid Spencer31a4ef42007-01-22 05:51:25 +00008247 if (DestPTy->isInteger() || isa<PointerType>(DestPTy) ||
Reid Spencerd84d35b2007-02-15 02:26:10 +00008248 isa<VectorType>(DestPTy)) {
Chris Lattnerfe1b0b82005-01-31 04:50:46 +00008249 // If the source is an array, the code below will not succeed. Check to
8250 // see if a trivial 'gep P, 0, 0' will help matters. Only do this for
8251 // constants.
8252 if (const ArrayType *ASrcTy = dyn_cast<ArrayType>(SrcPTy))
8253 if (Constant *CSrc = dyn_cast<Constant>(CastOp))
8254 if (ASrcTy->getNumElements() != 0) {
Chris Lattnerf96f4a82007-01-31 04:40:53 +00008255 Value *Idxs[2];
8256 Idxs[0] = Idxs[1] = Constant::getNullValue(Type::Int32Ty);
8257 CastOp = ConstantExpr::getGetElementPtr(CSrc, Idxs, 2);
Chris Lattnerfe1b0b82005-01-31 04:50:46 +00008258 SrcTy = cast<PointerType>(CastOp->getType());
8259 SrcPTy = SrcTy->getElementType();
8260 }
8261
Reid Spencer31a4ef42007-01-22 05:51:25 +00008262 if ((SrcPTy->isInteger() || isa<PointerType>(SrcPTy) ||
Reid Spencerd84d35b2007-02-15 02:26:10 +00008263 isa<VectorType>(SrcPTy)) &&
Chris Lattnerecfa9b52005-03-29 06:37:47 +00008264 // Do not allow turning this into a load of an integer, which is then
8265 // casted to a pointer, this pessimizes pointer analysis a lot.
8266 (isa<PointerType>(SrcPTy) == isa<PointerType>(LI.getType())) &&
Reid Spencer31a4ef42007-01-22 05:51:25 +00008267 IC.getTargetData().getTypeSizeInBits(SrcPTy) ==
8268 IC.getTargetData().getTypeSizeInBits(DestPTy)) {
Misha Brukmanb1c93172005-04-21 23:48:37 +00008269
Chris Lattnerfe1b0b82005-01-31 04:50:46 +00008270 // Okay, we are casting from one integer or pointer type to another of
8271 // the same size. Instead of casting the pointer before the load, cast
8272 // the result of the loaded value.
8273 Value *NewLoad = IC.InsertNewInstBefore(new LoadInst(CastOp,
8274 CI->getName(),
8275 LI.isVolatile()),LI);
8276 // Now cast the result of the load.
Reid Spencerbb65ebf2006-12-12 23:36:14 +00008277 return new BitCastInst(NewLoad, LI.getType());
Chris Lattnerfe1b0b82005-01-31 04:50:46 +00008278 }
Chris Lattner35e24772004-07-13 01:49:43 +00008279 }
8280 }
8281 return 0;
8282}
8283
Chris Lattnerf62ea8e2004-09-19 18:43:46 +00008284/// isSafeToLoadUnconditionally - Return true if we know that executing a load
Chris Lattnere6f13092004-09-19 19:18:10 +00008285/// from this value cannot trap. If it is not obviously safe to load from the
8286/// specified pointer, we do a quick local scan of the basic block containing
8287/// ScanFrom, to determine if the address is already accessed.
8288static bool isSafeToLoadUnconditionally(Value *V, Instruction *ScanFrom) {
8289 // If it is an alloca or global variable, it is always safe to load from.
8290 if (isa<AllocaInst>(V) || isa<GlobalVariable>(V)) return true;
8291
8292 // Otherwise, be a little bit agressive by scanning the local block where we
8293 // want to check to see if the pointer is already being loaded or stored
Alkis Evlogimenosd59cebf2004-09-20 06:42:58 +00008294 // from/to. If so, the previous load or store would have already trapped,
8295 // so there is no harm doing an extra load (also, CSE will later eliminate
8296 // the load entirely).
Chris Lattnere6f13092004-09-19 19:18:10 +00008297 BasicBlock::iterator BBI = ScanFrom, E = ScanFrom->getParent()->begin();
8298
Alkis Evlogimenosd59cebf2004-09-20 06:42:58 +00008299 while (BBI != E) {
Chris Lattnere6f13092004-09-19 19:18:10 +00008300 --BBI;
8301
8302 if (LoadInst *LI = dyn_cast<LoadInst>(BBI)) {
8303 if (LI->getOperand(0) == V) return true;
8304 } else if (StoreInst *SI = dyn_cast<StoreInst>(BBI))
8305 if (SI->getOperand(1) == V) return true;
Misha Brukmanb1c93172005-04-21 23:48:37 +00008306
Alkis Evlogimenosd59cebf2004-09-20 06:42:58 +00008307 }
Chris Lattnere6f13092004-09-19 19:18:10 +00008308 return false;
Chris Lattnerf62ea8e2004-09-19 18:43:46 +00008309}
8310
Chris Lattner0f1d8a32003-06-26 05:06:25 +00008311Instruction *InstCombiner::visitLoadInst(LoadInst &LI) {
8312 Value *Op = LI.getOperand(0);
Chris Lattner7e8af382004-01-12 04:13:56 +00008313
Chris Lattnera9d84e32005-05-01 04:24:53 +00008314 // load (cast X) --> cast (load X) iff safe
Reid Spencerde46e482006-11-02 20:25:50 +00008315 if (isa<CastInst>(Op))
Chris Lattnera9d84e32005-05-01 04:24:53 +00008316 if (Instruction *Res = InstCombineLoadCast(*this, LI))
8317 return Res;
8318
8319 // None of the following transforms are legal for volatile loads.
8320 if (LI.isVolatile()) return 0;
Chris Lattnerb990f7d2005-09-12 22:00:15 +00008321
Chris Lattnerb990f7d2005-09-12 22:00:15 +00008322 if (&LI.getParent()->front() != &LI) {
8323 BasicBlock::iterator BBI = &LI; --BBI;
Chris Lattnere0bfdf12005-09-12 22:21:03 +00008324 // If the instruction immediately before this is a store to the same
8325 // address, do a simple form of store->load forwarding.
Chris Lattnerb990f7d2005-09-12 22:00:15 +00008326 if (StoreInst *SI = dyn_cast<StoreInst>(BBI))
8327 if (SI->getOperand(1) == LI.getOperand(0))
8328 return ReplaceInstUsesWith(LI, SI->getOperand(0));
Chris Lattnere0bfdf12005-09-12 22:21:03 +00008329 if (LoadInst *LIB = dyn_cast<LoadInst>(BBI))
8330 if (LIB->getOperand(0) == LI.getOperand(0))
8331 return ReplaceInstUsesWith(LI, LIB);
Chris Lattnerb990f7d2005-09-12 22:00:15 +00008332 }
Chris Lattnera9d84e32005-05-01 04:24:53 +00008333
8334 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(Op))
8335 if (isa<ConstantPointerNull>(GEPI->getOperand(0)) ||
8336 isa<UndefValue>(GEPI->getOperand(0))) {
8337 // Insert a new store to null instruction before the load to indicate
8338 // that this code is not reachable. We do this instead of inserting
8339 // an unreachable instruction directly because we cannot modify the
8340 // CFG.
8341 new StoreInst(UndefValue::get(LI.getType()),
8342 Constant::getNullValue(Op->getType()), &LI);
8343 return ReplaceInstUsesWith(LI, UndefValue::get(LI.getType()));
8344 }
8345
Chris Lattner81a7a232004-10-16 18:11:37 +00008346 if (Constant *C = dyn_cast<Constant>(Op)) {
Chris Lattnera9d84e32005-05-01 04:24:53 +00008347 // load null/undef -> undef
8348 if ((C->isNullValue() || isa<UndefValue>(C))) {
Chris Lattner8ba9ec92004-10-18 02:59:09 +00008349 // Insert a new store to null instruction before the load to indicate that
8350 // this code is not reachable. We do this instead of inserting an
8351 // unreachable instruction directly because we cannot modify the CFG.
Chris Lattnera9d84e32005-05-01 04:24:53 +00008352 new StoreInst(UndefValue::get(LI.getType()),
8353 Constant::getNullValue(Op->getType()), &LI);
Chris Lattner81a7a232004-10-16 18:11:37 +00008354 return ReplaceInstUsesWith(LI, UndefValue::get(LI.getType()));
Chris Lattner8ba9ec92004-10-18 02:59:09 +00008355 }
Chris Lattner0f1d8a32003-06-26 05:06:25 +00008356
Chris Lattner81a7a232004-10-16 18:11:37 +00008357 // Instcombine load (constant global) into the value loaded.
8358 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Op))
Reid Spencer5301e7c2007-01-30 20:08:39 +00008359 if (GV->isConstant() && !GV->isDeclaration())
Chris Lattner81a7a232004-10-16 18:11:37 +00008360 return ReplaceInstUsesWith(LI, GV->getInitializer());
Misha Brukmanb1c93172005-04-21 23:48:37 +00008361
Chris Lattner81a7a232004-10-16 18:11:37 +00008362 // Instcombine load (constantexpr_GEP global, 0, ...) into the value loaded.
8363 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Op))
8364 if (CE->getOpcode() == Instruction::GetElementPtr) {
8365 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0)))
Reid Spencer5301e7c2007-01-30 20:08:39 +00008366 if (GV->isConstant() && !GV->isDeclaration())
Chris Lattner0b011ec2005-09-26 05:28:06 +00008367 if (Constant *V =
8368 ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE))
Chris Lattner81a7a232004-10-16 18:11:37 +00008369 return ReplaceInstUsesWith(LI, V);
Chris Lattnera9d84e32005-05-01 04:24:53 +00008370 if (CE->getOperand(0)->isNullValue()) {
8371 // Insert a new store to null instruction before the load to indicate
8372 // that this code is not reachable. We do this instead of inserting
8373 // an unreachable instruction directly because we cannot modify the
8374 // CFG.
8375 new StoreInst(UndefValue::get(LI.getType()),
8376 Constant::getNullValue(Op->getType()), &LI);
8377 return ReplaceInstUsesWith(LI, UndefValue::get(LI.getType()));
8378 }
8379
Reid Spencer6c38f0b2006-11-27 01:05:10 +00008380 } else if (CE->isCast()) {
Chris Lattner81a7a232004-10-16 18:11:37 +00008381 if (Instruction *Res = InstCombineLoadCast(*this, LI))
8382 return Res;
8383 }
8384 }
Chris Lattnere228ee52004-04-08 20:39:49 +00008385
Chris Lattnera9d84e32005-05-01 04:24:53 +00008386 if (Op->hasOneUse()) {
Chris Lattnerf62ea8e2004-09-19 18:43:46 +00008387 // Change select and PHI nodes to select values instead of addresses: this
8388 // helps alias analysis out a lot, allows many others simplifications, and
8389 // exposes redundancy in the code.
8390 //
8391 // Note that we cannot do the transformation unless we know that the
8392 // introduced loads cannot trap! Something like this is valid as long as
8393 // the condition is always false: load (select bool %C, int* null, int* %G),
8394 // but it would not be valid if we transformed it to load from null
8395 // unconditionally.
8396 //
8397 if (SelectInst *SI = dyn_cast<SelectInst>(Op)) {
8398 // load (select (Cond, &V1, &V2)) --> select(Cond, load &V1, load &V2).
Chris Lattnere6f13092004-09-19 19:18:10 +00008399 if (isSafeToLoadUnconditionally(SI->getOperand(1), SI) &&
8400 isSafeToLoadUnconditionally(SI->getOperand(2), SI)) {
Chris Lattnerf62ea8e2004-09-19 18:43:46 +00008401 Value *V1 = InsertNewInstBefore(new LoadInst(SI->getOperand(1),
Chris Lattner42618552004-09-20 10:15:10 +00008402 SI->getOperand(1)->getName()+".val"), LI);
Chris Lattnerf62ea8e2004-09-19 18:43:46 +00008403 Value *V2 = InsertNewInstBefore(new LoadInst(SI->getOperand(2),
Chris Lattner42618552004-09-20 10:15:10 +00008404 SI->getOperand(2)->getName()+".val"), LI);
Chris Lattnerf62ea8e2004-09-19 18:43:46 +00008405 return new SelectInst(SI->getCondition(), V1, V2);
8406 }
8407
Chris Lattnerbdcf41a2004-09-23 15:46:00 +00008408 // load (select (cond, null, P)) -> load P
8409 if (Constant *C = dyn_cast<Constant>(SI->getOperand(1)))
8410 if (C->isNullValue()) {
8411 LI.setOperand(0, SI->getOperand(2));
8412 return &LI;
8413 }
8414
8415 // load (select (cond, P, null)) -> load P
8416 if (Constant *C = dyn_cast<Constant>(SI->getOperand(2)))
8417 if (C->isNullValue()) {
8418 LI.setOperand(0, SI->getOperand(1));
8419 return &LI;
8420 }
Chris Lattnerf62ea8e2004-09-19 18:43:46 +00008421 }
8422 }
Chris Lattner0f1d8a32003-06-26 05:06:25 +00008423 return 0;
8424}
8425
Reid Spencere928a152007-01-19 21:20:31 +00008426/// InstCombineStoreToCast - Fold store V, (cast P) -> store (cast V), P
Chris Lattner72684fe2005-01-31 05:51:45 +00008427/// when possible.
8428static Instruction *InstCombineStoreToCast(InstCombiner &IC, StoreInst &SI) {
8429 User *CI = cast<User>(SI.getOperand(1));
8430 Value *CastOp = CI->getOperand(0);
8431
8432 const Type *DestPTy = cast<PointerType>(CI->getType())->getElementType();
8433 if (const PointerType *SrcTy = dyn_cast<PointerType>(CastOp->getType())) {
8434 const Type *SrcPTy = SrcTy->getElementType();
8435
Reid Spencer31a4ef42007-01-22 05:51:25 +00008436 if (DestPTy->isInteger() || isa<PointerType>(DestPTy)) {
Chris Lattner72684fe2005-01-31 05:51:45 +00008437 // If the source is an array, the code below will not succeed. Check to
8438 // see if a trivial 'gep P, 0, 0' will help matters. Only do this for
8439 // constants.
8440 if (const ArrayType *ASrcTy = dyn_cast<ArrayType>(SrcPTy))
8441 if (Constant *CSrc = dyn_cast<Constant>(CastOp))
8442 if (ASrcTy->getNumElements() != 0) {
Chris Lattnerf96f4a82007-01-31 04:40:53 +00008443 Value* Idxs[2];
8444 Idxs[0] = Idxs[1] = Constant::getNullValue(Type::Int32Ty);
8445 CastOp = ConstantExpr::getGetElementPtr(CSrc, Idxs, 2);
Chris Lattner72684fe2005-01-31 05:51:45 +00008446 SrcTy = cast<PointerType>(CastOp->getType());
8447 SrcPTy = SrcTy->getElementType();
8448 }
8449
Reid Spencer9a4bed02007-01-20 23:35:48 +00008450 if ((SrcPTy->isInteger() || isa<PointerType>(SrcPTy)) &&
8451 IC.getTargetData().getTypeSizeInBits(SrcPTy) ==
8452 IC.getTargetData().getTypeSizeInBits(DestPTy)) {
Chris Lattner72684fe2005-01-31 05:51:45 +00008453
8454 // Okay, we are casting from one integer or pointer type to another of
Reid Spencerc050af92007-01-18 18:54:33 +00008455 // the same size. Instead of casting the pointer before
8456 // the store, cast the value to be stored.
Chris Lattner72684fe2005-01-31 05:51:45 +00008457 Value *NewCast;
Reid Spencerbb65ebf2006-12-12 23:36:14 +00008458 Value *SIOp0 = SI.getOperand(0);
Reid Spencerc050af92007-01-18 18:54:33 +00008459 Instruction::CastOps opcode = Instruction::BitCast;
8460 const Type* CastSrcTy = SIOp0->getType();
8461 const Type* CastDstTy = SrcPTy;
8462 if (isa<PointerType>(CastDstTy)) {
8463 if (CastSrcTy->isInteger())
Reid Spencerbb65ebf2006-12-12 23:36:14 +00008464 opcode = Instruction::IntToPtr;
Reid Spencer9a4bed02007-01-20 23:35:48 +00008465 } else if (isa<IntegerType>(CastDstTy)) {
Reid Spencer74a528b2006-12-13 18:21:21 +00008466 if (isa<PointerType>(SIOp0->getType()))
Reid Spencerbb65ebf2006-12-12 23:36:14 +00008467 opcode = Instruction::PtrToInt;
8468 }
8469 if (Constant *C = dyn_cast<Constant>(SIOp0))
Reid Spencerc050af92007-01-18 18:54:33 +00008470 NewCast = ConstantExpr::getCast(opcode, C, CastDstTy);
Chris Lattner72684fe2005-01-31 05:51:45 +00008471 else
Reid Spencer6c38f0b2006-11-27 01:05:10 +00008472 NewCast = IC.InsertNewInstBefore(
Reid Spencerc050af92007-01-18 18:54:33 +00008473 CastInst::create(opcode, SIOp0, CastDstTy, SIOp0->getName()+".c"),
8474 SI);
Chris Lattner72684fe2005-01-31 05:51:45 +00008475 return new StoreInst(NewCast, CastOp);
8476 }
8477 }
8478 }
8479 return 0;
8480}
8481
Chris Lattner31f486c2005-01-31 05:36:43 +00008482Instruction *InstCombiner::visitStoreInst(StoreInst &SI) {
8483 Value *Val = SI.getOperand(0);
8484 Value *Ptr = SI.getOperand(1);
8485
8486 if (isa<UndefValue>(Ptr)) { // store X, undef -> noop (even if volatile)
Chris Lattner5997cf92006-02-08 03:25:32 +00008487 EraseInstFromFunction(SI);
Chris Lattner31f486c2005-01-31 05:36:43 +00008488 ++NumCombined;
8489 return 0;
8490 }
Chris Lattnera4beeef2007-01-15 06:51:56 +00008491
8492 // If the RHS is an alloca with a single use, zapify the store, making the
8493 // alloca dead.
8494 if (Ptr->hasOneUse()) {
8495 if (isa<AllocaInst>(Ptr)) {
8496 EraseInstFromFunction(SI);
8497 ++NumCombined;
8498 return 0;
8499 }
8500
8501 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr))
8502 if (isa<AllocaInst>(GEP->getOperand(0)) &&
8503 GEP->getOperand(0)->hasOneUse()) {
8504 EraseInstFromFunction(SI);
8505 ++NumCombined;
8506 return 0;
8507 }
8508 }
Chris Lattner31f486c2005-01-31 05:36:43 +00008509
Chris Lattner5997cf92006-02-08 03:25:32 +00008510 // Do really simple DSE, to catch cases where there are several consequtive
8511 // stores to the same location, separated by a few arithmetic operations. This
8512 // situation often occurs with bitfield accesses.
8513 BasicBlock::iterator BBI = &SI;
8514 for (unsigned ScanInsts = 6; BBI != SI.getParent()->begin() && ScanInsts;
8515 --ScanInsts) {
8516 --BBI;
8517
8518 if (StoreInst *PrevSI = dyn_cast<StoreInst>(BBI)) {
8519 // Prev store isn't volatile, and stores to the same location?
8520 if (!PrevSI->isVolatile() && PrevSI->getOperand(1) == SI.getOperand(1)) {
8521 ++NumDeadStore;
8522 ++BBI;
8523 EraseInstFromFunction(*PrevSI);
8524 continue;
8525 }
8526 break;
8527 }
8528
Chris Lattnerdab43b22006-05-26 19:19:20 +00008529 // If this is a load, we have to stop. However, if the loaded value is from
8530 // the pointer we're loading and is producing the pointer we're storing,
8531 // then *this* store is dead (X = load P; store X -> P).
8532 if (LoadInst *LI = dyn_cast<LoadInst>(BBI)) {
8533 if (LI == Val && LI->getOperand(0) == Ptr) {
8534 EraseInstFromFunction(SI);
8535 ++NumCombined;
8536 return 0;
8537 }
8538 // Otherwise, this is a load from some other location. Stores before it
8539 // may not be dead.
8540 break;
8541 }
8542
Chris Lattner5997cf92006-02-08 03:25:32 +00008543 // Don't skip over loads or things that can modify memory.
Chris Lattnerdab43b22006-05-26 19:19:20 +00008544 if (BBI->mayWriteToMemory())
Chris Lattner5997cf92006-02-08 03:25:32 +00008545 break;
8546 }
8547
8548
8549 if (SI.isVolatile()) return 0; // Don't hack volatile stores.
Chris Lattner31f486c2005-01-31 05:36:43 +00008550
8551 // store X, null -> turns into 'unreachable' in SimplifyCFG
8552 if (isa<ConstantPointerNull>(Ptr)) {
8553 if (!isa<UndefValue>(Val)) {
8554 SI.setOperand(0, UndefValue::get(Val->getType()));
8555 if (Instruction *U = dyn_cast<Instruction>(Val))
Chris Lattnerb15e2b12007-03-02 21:28:56 +00008556 AddToWorkList(U); // Dropped a use.
Chris Lattner31f486c2005-01-31 05:36:43 +00008557 ++NumCombined;
8558 }
8559 return 0; // Do not modify these!
8560 }
8561
8562 // store undef, Ptr -> noop
8563 if (isa<UndefValue>(Val)) {
Chris Lattner5997cf92006-02-08 03:25:32 +00008564 EraseInstFromFunction(SI);
Chris Lattner31f486c2005-01-31 05:36:43 +00008565 ++NumCombined;
8566 return 0;
8567 }
8568
Chris Lattner72684fe2005-01-31 05:51:45 +00008569 // If the pointer destination is a cast, see if we can fold the cast into the
8570 // source instead.
Reid Spencerde46e482006-11-02 20:25:50 +00008571 if (isa<CastInst>(Ptr))
Chris Lattner72684fe2005-01-31 05:51:45 +00008572 if (Instruction *Res = InstCombineStoreToCast(*this, SI))
8573 return Res;
8574 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00008575 if (CE->isCast())
Chris Lattner72684fe2005-01-31 05:51:45 +00008576 if (Instruction *Res = InstCombineStoreToCast(*this, SI))
8577 return Res;
8578
Chris Lattner219175c2005-09-12 23:23:25 +00008579
8580 // If this store is the last instruction in the basic block, and if the block
8581 // ends with an unconditional branch, try to move it to the successor block.
Chris Lattner5997cf92006-02-08 03:25:32 +00008582 BBI = &SI; ++BBI;
Chris Lattner219175c2005-09-12 23:23:25 +00008583 if (BranchInst *BI = dyn_cast<BranchInst>(BBI))
8584 if (BI->isUnconditional()) {
8585 // Check to see if the successor block has exactly two incoming edges. If
8586 // so, see if the other predecessor contains a store to the same location.
8587 // if so, insert a PHI node (if needed) and move the stores down.
8588 BasicBlock *Dest = BI->getSuccessor(0);
8589
8590 pred_iterator PI = pred_begin(Dest);
8591 BasicBlock *Other = 0;
8592 if (*PI != BI->getParent())
8593 Other = *PI;
8594 ++PI;
8595 if (PI != pred_end(Dest)) {
8596 if (*PI != BI->getParent())
8597 if (Other)
8598 Other = 0;
8599 else
8600 Other = *PI;
8601 if (++PI != pred_end(Dest))
8602 Other = 0;
8603 }
8604 if (Other) { // If only one other pred...
8605 BBI = Other->getTerminator();
8606 // Make sure this other block ends in an unconditional branch and that
8607 // there is an instruction before the branch.
8608 if (isa<BranchInst>(BBI) && cast<BranchInst>(BBI)->isUnconditional() &&
8609 BBI != Other->begin()) {
8610 --BBI;
8611 StoreInst *OtherStore = dyn_cast<StoreInst>(BBI);
8612
8613 // If this instruction is a store to the same location.
8614 if (OtherStore && OtherStore->getOperand(1) == SI.getOperand(1)) {
8615 // Okay, we know we can perform this transformation. Insert a PHI
8616 // node now if we need it.
8617 Value *MergedVal = OtherStore->getOperand(0);
8618 if (MergedVal != SI.getOperand(0)) {
8619 PHINode *PN = new PHINode(MergedVal->getType(), "storemerge");
8620 PN->reserveOperandSpace(2);
8621 PN->addIncoming(SI.getOperand(0), SI.getParent());
8622 PN->addIncoming(OtherStore->getOperand(0), Other);
8623 MergedVal = InsertNewInstBefore(PN, Dest->front());
8624 }
8625
8626 // Advance to a place where it is safe to insert the new store and
8627 // insert it.
8628 BBI = Dest->begin();
8629 while (isa<PHINode>(BBI)) ++BBI;
8630 InsertNewInstBefore(new StoreInst(MergedVal, SI.getOperand(1),
8631 OtherStore->isVolatile()), *BBI);
8632
8633 // Nuke the old stores.
Chris Lattner5997cf92006-02-08 03:25:32 +00008634 EraseInstFromFunction(SI);
8635 EraseInstFromFunction(*OtherStore);
Chris Lattner219175c2005-09-12 23:23:25 +00008636 ++NumCombined;
8637 return 0;
8638 }
8639 }
8640 }
8641 }
8642
Chris Lattner31f486c2005-01-31 05:36:43 +00008643 return 0;
8644}
8645
8646
Chris Lattner9eef8a72003-06-04 04:46:00 +00008647Instruction *InstCombiner::visitBranchInst(BranchInst &BI) {
8648 // Change br (not X), label True, label False to: br X, label False, True
Reid Spencer4fdd96c2005-06-18 17:37:34 +00008649 Value *X = 0;
Chris Lattnerd4252a72004-07-30 07:50:03 +00008650 BasicBlock *TrueDest;
8651 BasicBlock *FalseDest;
8652 if (match(&BI, m_Br(m_Not(m_Value(X)), TrueDest, FalseDest)) &&
8653 !isa<Constant>(X)) {
8654 // Swap Destinations and condition...
8655 BI.setCondition(X);
8656 BI.setSuccessor(0, FalseDest);
8657 BI.setSuccessor(1, TrueDest);
8658 return &BI;
8659 }
8660
Reid Spencer266e42b2006-12-23 06:05:41 +00008661 // Cannonicalize fcmp_one -> fcmp_oeq
8662 FCmpInst::Predicate FPred; Value *Y;
8663 if (match(&BI, m_Br(m_FCmp(FPred, m_Value(X), m_Value(Y)),
8664 TrueDest, FalseDest)))
8665 if ((FPred == FCmpInst::FCMP_ONE || FPred == FCmpInst::FCMP_OLE ||
8666 FPred == FCmpInst::FCMP_OGE) && BI.getCondition()->hasOneUse()) {
8667 FCmpInst *I = cast<FCmpInst>(BI.getCondition());
Reid Spencer266e42b2006-12-23 06:05:41 +00008668 FCmpInst::Predicate NewPred = FCmpInst::getInversePredicate(FPred);
Chris Lattner6e0123b2007-02-11 01:23:03 +00008669 Instruction *NewSCC = new FCmpInst(NewPred, X, Y, "", I);
8670 NewSCC->takeName(I);
Reid Spencer266e42b2006-12-23 06:05:41 +00008671 // Swap Destinations and condition...
8672 BI.setCondition(NewSCC);
8673 BI.setSuccessor(0, FalseDest);
8674 BI.setSuccessor(1, TrueDest);
Chris Lattnerb15e2b12007-03-02 21:28:56 +00008675 RemoveFromWorkList(I);
Chris Lattner6e0123b2007-02-11 01:23:03 +00008676 I->eraseFromParent();
Chris Lattnerb15e2b12007-03-02 21:28:56 +00008677 AddToWorkList(NewSCC);
Reid Spencer266e42b2006-12-23 06:05:41 +00008678 return &BI;
8679 }
8680
8681 // Cannonicalize icmp_ne -> icmp_eq
8682 ICmpInst::Predicate IPred;
8683 if (match(&BI, m_Br(m_ICmp(IPred, m_Value(X), m_Value(Y)),
8684 TrueDest, FalseDest)))
8685 if ((IPred == ICmpInst::ICMP_NE || IPred == ICmpInst::ICMP_ULE ||
8686 IPred == ICmpInst::ICMP_SLE || IPred == ICmpInst::ICMP_UGE ||
8687 IPred == ICmpInst::ICMP_SGE) && BI.getCondition()->hasOneUse()) {
8688 ICmpInst *I = cast<ICmpInst>(BI.getCondition());
Reid Spencer266e42b2006-12-23 06:05:41 +00008689 ICmpInst::Predicate NewPred = ICmpInst::getInversePredicate(IPred);
Chris Lattner6e0123b2007-02-11 01:23:03 +00008690 Instruction *NewSCC = new ICmpInst(NewPred, X, Y, "", I);
8691 NewSCC->takeName(I);
Chris Lattnere967b342003-06-04 05:10:11 +00008692 // Swap Destinations and condition...
Chris Lattnerd4252a72004-07-30 07:50:03 +00008693 BI.setCondition(NewSCC);
Chris Lattnere967b342003-06-04 05:10:11 +00008694 BI.setSuccessor(0, FalseDest);
8695 BI.setSuccessor(1, TrueDest);
Chris Lattnerb15e2b12007-03-02 21:28:56 +00008696 RemoveFromWorkList(I);
Chris Lattner6e0123b2007-02-11 01:23:03 +00008697 I->eraseFromParent();;
Chris Lattnerb15e2b12007-03-02 21:28:56 +00008698 AddToWorkList(NewSCC);
Chris Lattnere967b342003-06-04 05:10:11 +00008699 return &BI;
8700 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00008701
Chris Lattner9eef8a72003-06-04 04:46:00 +00008702 return 0;
8703}
Chris Lattner1085bdf2002-11-04 16:18:53 +00008704
Chris Lattner4c9c20a2004-07-03 00:26:11 +00008705Instruction *InstCombiner::visitSwitchInst(SwitchInst &SI) {
8706 Value *Cond = SI.getCondition();
8707 if (Instruction *I = dyn_cast<Instruction>(Cond)) {
8708 if (I->getOpcode() == Instruction::Add)
8709 if (ConstantInt *AddRHS = dyn_cast<ConstantInt>(I->getOperand(1))) {
8710 // change 'switch (X+4) case 1:' into 'switch (X) case -3'
8711 for (unsigned i = 2, e = SI.getNumOperands(); i != e; i += 2)
Chris Lattner81a7a232004-10-16 18:11:37 +00008712 SI.setOperand(i,ConstantExpr::getSub(cast<Constant>(SI.getOperand(i)),
Chris Lattner4c9c20a2004-07-03 00:26:11 +00008713 AddRHS));
8714 SI.setOperand(0, I->getOperand(0));
Chris Lattnerb15e2b12007-03-02 21:28:56 +00008715 AddToWorkList(I);
Chris Lattner4c9c20a2004-07-03 00:26:11 +00008716 return &SI;
8717 }
8718 }
8719 return 0;
8720}
8721
Chris Lattner6bc98652006-03-05 00:22:33 +00008722/// CheapToScalarize - Return true if the value is cheaper to scalarize than it
8723/// is to leave as a vector operation.
8724static bool CheapToScalarize(Value *V, bool isConstant) {
8725 if (isa<ConstantAggregateZero>(V))
8726 return true;
Reid Spencerd84d35b2007-02-15 02:26:10 +00008727 if (ConstantVector *C = dyn_cast<ConstantVector>(V)) {
Chris Lattner6bc98652006-03-05 00:22:33 +00008728 if (isConstant) return true;
8729 // If all elts are the same, we can extract.
8730 Constant *Op0 = C->getOperand(0);
8731 for (unsigned i = 1; i < C->getNumOperands(); ++i)
8732 if (C->getOperand(i) != Op0)
8733 return false;
8734 return true;
8735 }
8736 Instruction *I = dyn_cast<Instruction>(V);
8737 if (!I) return false;
8738
8739 // Insert element gets simplified to the inserted element or is deleted if
8740 // this is constant idx extract element and its a constant idx insertelt.
8741 if (I->getOpcode() == Instruction::InsertElement && isConstant &&
8742 isa<ConstantInt>(I->getOperand(2)))
8743 return true;
8744 if (I->getOpcode() == Instruction::Load && I->hasOneUse())
8745 return true;
8746 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I))
8747 if (BO->hasOneUse() &&
8748 (CheapToScalarize(BO->getOperand(0), isConstant) ||
8749 CheapToScalarize(BO->getOperand(1), isConstant)))
8750 return true;
Reid Spencer266e42b2006-12-23 06:05:41 +00008751 if (CmpInst *CI = dyn_cast<CmpInst>(I))
8752 if (CI->hasOneUse() &&
8753 (CheapToScalarize(CI->getOperand(0), isConstant) ||
8754 CheapToScalarize(CI->getOperand(1), isConstant)))
8755 return true;
Chris Lattner6bc98652006-03-05 00:22:33 +00008756
8757 return false;
8758}
8759
Chris Lattner945e4372007-02-14 05:52:17 +00008760/// Read and decode a shufflevector mask.
8761///
8762/// It turns undef elements into values that are larger than the number of
8763/// elements in the input.
Chris Lattner12249be2006-05-25 23:48:38 +00008764static std::vector<unsigned> getShuffleMask(const ShuffleVectorInst *SVI) {
8765 unsigned NElts = SVI->getType()->getNumElements();
8766 if (isa<ConstantAggregateZero>(SVI->getOperand(2)))
8767 return std::vector<unsigned>(NElts, 0);
8768 if (isa<UndefValue>(SVI->getOperand(2)))
8769 return std::vector<unsigned>(NElts, 2*NElts);
8770
8771 std::vector<unsigned> Result;
Reid Spencerd84d35b2007-02-15 02:26:10 +00008772 const ConstantVector *CP = cast<ConstantVector>(SVI->getOperand(2));
Chris Lattner12249be2006-05-25 23:48:38 +00008773 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
8774 if (isa<UndefValue>(CP->getOperand(i)))
8775 Result.push_back(NElts*2); // undef -> 8
8776 else
Reid Spencere0fc4df2006-10-20 07:07:24 +00008777 Result.push_back(cast<ConstantInt>(CP->getOperand(i))->getZExtValue());
Chris Lattner12249be2006-05-25 23:48:38 +00008778 return Result;
8779}
8780
Chris Lattner8d1d8d32006-03-31 23:01:56 +00008781/// FindScalarElement - Given a vector and an element number, see if the scalar
8782/// value is already around as a register, for example if it were inserted then
8783/// extracted from the vector.
8784static Value *FindScalarElement(Value *V, unsigned EltNo) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00008785 assert(isa<VectorType>(V->getType()) && "Not looking at a vector?");
8786 const VectorType *PTy = cast<VectorType>(V->getType());
Chris Lattner2d37f922006-04-10 23:06:36 +00008787 unsigned Width = PTy->getNumElements();
8788 if (EltNo >= Width) // Out of range access.
Chris Lattner8d1d8d32006-03-31 23:01:56 +00008789 return UndefValue::get(PTy->getElementType());
8790
8791 if (isa<UndefValue>(V))
8792 return UndefValue::get(PTy->getElementType());
8793 else if (isa<ConstantAggregateZero>(V))
8794 return Constant::getNullValue(PTy->getElementType());
Reid Spencerd84d35b2007-02-15 02:26:10 +00008795 else if (ConstantVector *CP = dyn_cast<ConstantVector>(V))
Chris Lattner8d1d8d32006-03-31 23:01:56 +00008796 return CP->getOperand(EltNo);
8797 else if (InsertElementInst *III = dyn_cast<InsertElementInst>(V)) {
8798 // If this is an insert to a variable element, we don't know what it is.
Reid Spencere0fc4df2006-10-20 07:07:24 +00008799 if (!isa<ConstantInt>(III->getOperand(2)))
8800 return 0;
8801 unsigned IIElt = cast<ConstantInt>(III->getOperand(2))->getZExtValue();
Chris Lattner8d1d8d32006-03-31 23:01:56 +00008802
8803 // If this is an insert to the element we are looking for, return the
8804 // inserted value.
Reid Spencere0fc4df2006-10-20 07:07:24 +00008805 if (EltNo == IIElt)
8806 return III->getOperand(1);
Chris Lattner8d1d8d32006-03-31 23:01:56 +00008807
8808 // Otherwise, the insertelement doesn't modify the value, recurse on its
8809 // vector input.
8810 return FindScalarElement(III->getOperand(0), EltNo);
Chris Lattner2d37f922006-04-10 23:06:36 +00008811 } else if (ShuffleVectorInst *SVI = dyn_cast<ShuffleVectorInst>(V)) {
Chris Lattner12249be2006-05-25 23:48:38 +00008812 unsigned InEl = getShuffleMask(SVI)[EltNo];
8813 if (InEl < Width)
8814 return FindScalarElement(SVI->getOperand(0), InEl);
8815 else if (InEl < Width*2)
8816 return FindScalarElement(SVI->getOperand(1), InEl - Width);
8817 else
8818 return UndefValue::get(PTy->getElementType());
Chris Lattner8d1d8d32006-03-31 23:01:56 +00008819 }
8820
8821 // Otherwise, we don't know.
8822 return 0;
8823}
8824
Robert Bocchinoa8352962006-01-13 22:48:06 +00008825Instruction *InstCombiner::visitExtractElementInst(ExtractElementInst &EI) {
Chris Lattner8d1d8d32006-03-31 23:01:56 +00008826
Chris Lattner92346c32006-03-31 18:25:14 +00008827 // If packed val is undef, replace extract with scalar undef.
8828 if (isa<UndefValue>(EI.getOperand(0)))
8829 return ReplaceInstUsesWith(EI, UndefValue::get(EI.getType()));
8830
8831 // If packed val is constant 0, replace extract with scalar 0.
8832 if (isa<ConstantAggregateZero>(EI.getOperand(0)))
8833 return ReplaceInstUsesWith(EI, Constant::getNullValue(EI.getType()));
8834
Reid Spencerd84d35b2007-02-15 02:26:10 +00008835 if (ConstantVector *C = dyn_cast<ConstantVector>(EI.getOperand(0))) {
Robert Bocchinoa8352962006-01-13 22:48:06 +00008836 // If packed val is constant with uniform operands, replace EI
8837 // with that operand
Chris Lattner6bc98652006-03-05 00:22:33 +00008838 Constant *op0 = C->getOperand(0);
Robert Bocchinoa8352962006-01-13 22:48:06 +00008839 for (unsigned i = 1; i < C->getNumOperands(); ++i)
Chris Lattner6bc98652006-03-05 00:22:33 +00008840 if (C->getOperand(i) != op0) {
8841 op0 = 0;
8842 break;
8843 }
8844 if (op0)
8845 return ReplaceInstUsesWith(EI, op0);
Robert Bocchinoa8352962006-01-13 22:48:06 +00008846 }
Chris Lattner6bc98652006-03-05 00:22:33 +00008847
Chris Lattner8d1d8d32006-03-31 23:01:56 +00008848 // If extracting a specified index from the vector, see if we can recursively
8849 // find a previously computed scalar that was inserted into the vector.
Reid Spencere0fc4df2006-10-20 07:07:24 +00008850 if (ConstantInt *IdxC = dyn_cast<ConstantInt>(EI.getOperand(1))) {
Chris Lattner2deeaea2006-10-05 06:55:50 +00008851 // This instruction only demands the single element from the input vector.
8852 // If the input vector has a single use, simplify it based on this use
8853 // property.
Reid Spencere0fc4df2006-10-20 07:07:24 +00008854 uint64_t IndexVal = IdxC->getZExtValue();
Chris Lattner2deeaea2006-10-05 06:55:50 +00008855 if (EI.getOperand(0)->hasOneUse()) {
8856 uint64_t UndefElts;
8857 if (Value *V = SimplifyDemandedVectorElts(EI.getOperand(0),
Reid Spencere0fc4df2006-10-20 07:07:24 +00008858 1 << IndexVal,
Chris Lattner2deeaea2006-10-05 06:55:50 +00008859 UndefElts)) {
8860 EI.setOperand(0, V);
8861 return &EI;
8862 }
8863 }
8864
Reid Spencere0fc4df2006-10-20 07:07:24 +00008865 if (Value *Elt = FindScalarElement(EI.getOperand(0), IndexVal))
Chris Lattner8d1d8d32006-03-31 23:01:56 +00008866 return ReplaceInstUsesWith(EI, Elt);
Chris Lattner2d37f922006-04-10 23:06:36 +00008867 }
Chris Lattner8d1d8d32006-03-31 23:01:56 +00008868
Chris Lattner83f65782006-05-25 22:53:38 +00008869 if (Instruction *I = dyn_cast<Instruction>(EI.getOperand(0))) {
Robert Bocchinoa8352962006-01-13 22:48:06 +00008870 if (I->hasOneUse()) {
8871 // Push extractelement into predecessor operation if legal and
8872 // profitable to do so
8873 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Chris Lattner6bc98652006-03-05 00:22:33 +00008874 bool isConstantElt = isa<ConstantInt>(EI.getOperand(1));
8875 if (CheapToScalarize(BO, isConstantElt)) {
8876 ExtractElementInst *newEI0 =
8877 new ExtractElementInst(BO->getOperand(0), EI.getOperand(1),
8878 EI.getName()+".lhs");
8879 ExtractElementInst *newEI1 =
8880 new ExtractElementInst(BO->getOperand(1), EI.getOperand(1),
8881 EI.getName()+".rhs");
8882 InsertNewInstBefore(newEI0, EI);
8883 InsertNewInstBefore(newEI1, EI);
8884 return BinaryOperator::create(BO->getOpcode(), newEI0, newEI1);
8885 }
Reid Spencerde46e482006-11-02 20:25:50 +00008886 } else if (isa<LoadInst>(I)) {
Reid Spencer13bc5d72006-12-12 09:18:51 +00008887 Value *Ptr = InsertCastBefore(Instruction::BitCast, I->getOperand(0),
Robert Bocchinoa8352962006-01-13 22:48:06 +00008888 PointerType::get(EI.getType()), EI);
8889 GetElementPtrInst *GEP =
Reid Spencera736fdf2006-11-29 01:11:01 +00008890 new GetElementPtrInst(Ptr, EI.getOperand(1), I->getName() + ".gep");
Robert Bocchinoa8352962006-01-13 22:48:06 +00008891 InsertNewInstBefore(GEP, EI);
8892 return new LoadInst(GEP);
Chris Lattner83f65782006-05-25 22:53:38 +00008893 }
8894 }
8895 if (InsertElementInst *IE = dyn_cast<InsertElementInst>(I)) {
8896 // Extracting the inserted element?
8897 if (IE->getOperand(2) == EI.getOperand(1))
8898 return ReplaceInstUsesWith(EI, IE->getOperand(1));
8899 // If the inserted and extracted elements are constants, they must not
8900 // be the same value, extract from the pre-inserted value instead.
8901 if (isa<Constant>(IE->getOperand(2)) &&
8902 isa<Constant>(EI.getOperand(1))) {
8903 AddUsesToWorkList(EI);
8904 EI.setOperand(0, IE->getOperand(0));
8905 return &EI;
8906 }
8907 } else if (ShuffleVectorInst *SVI = dyn_cast<ShuffleVectorInst>(I)) {
8908 // If this is extracting an element from a shufflevector, figure out where
8909 // it came from and extract from the appropriate input element instead.
Reid Spencere0fc4df2006-10-20 07:07:24 +00008910 if (ConstantInt *Elt = dyn_cast<ConstantInt>(EI.getOperand(1))) {
8911 unsigned SrcIdx = getShuffleMask(SVI)[Elt->getZExtValue()];
Chris Lattner12249be2006-05-25 23:48:38 +00008912 Value *Src;
8913 if (SrcIdx < SVI->getType()->getNumElements())
8914 Src = SVI->getOperand(0);
8915 else if (SrcIdx < SVI->getType()->getNumElements()*2) {
8916 SrcIdx -= SVI->getType()->getNumElements();
8917 Src = SVI->getOperand(1);
8918 } else {
8919 return ReplaceInstUsesWith(EI, UndefValue::get(EI.getType()));
Chris Lattner612fa8e2006-03-30 22:02:40 +00008920 }
Chris Lattner2deeaea2006-10-05 06:55:50 +00008921 return new ExtractElementInst(Src, SrcIdx);
Robert Bocchinoa8352962006-01-13 22:48:06 +00008922 }
8923 }
Chris Lattner83f65782006-05-25 22:53:38 +00008924 }
Robert Bocchinoa8352962006-01-13 22:48:06 +00008925 return 0;
8926}
8927
Chris Lattner90951862006-04-16 00:51:47 +00008928/// CollectSingleShuffleElements - If V is a shuffle of values that ONLY returns
8929/// elements from either LHS or RHS, return the shuffle mask and true.
8930/// Otherwise, return false.
8931static bool CollectSingleShuffleElements(Value *V, Value *LHS, Value *RHS,
8932 std::vector<Constant*> &Mask) {
8933 assert(V->getType() == LHS->getType() && V->getType() == RHS->getType() &&
8934 "Invalid CollectSingleShuffleElements");
Reid Spencerd84d35b2007-02-15 02:26:10 +00008935 unsigned NumElts = cast<VectorType>(V->getType())->getNumElements();
Chris Lattner90951862006-04-16 00:51:47 +00008936
8937 if (isa<UndefValue>(V)) {
Reid Spencerc635f472006-12-31 05:48:39 +00008938 Mask.assign(NumElts, UndefValue::get(Type::Int32Ty));
Chris Lattner90951862006-04-16 00:51:47 +00008939 return true;
8940 } else if (V == LHS) {
8941 for (unsigned i = 0; i != NumElts; ++i)
Reid Spencerc635f472006-12-31 05:48:39 +00008942 Mask.push_back(ConstantInt::get(Type::Int32Ty, i));
Chris Lattner90951862006-04-16 00:51:47 +00008943 return true;
8944 } else if (V == RHS) {
8945 for (unsigned i = 0; i != NumElts; ++i)
Reid Spencerc635f472006-12-31 05:48:39 +00008946 Mask.push_back(ConstantInt::get(Type::Int32Ty, i+NumElts));
Chris Lattner90951862006-04-16 00:51:47 +00008947 return true;
8948 } else if (InsertElementInst *IEI = dyn_cast<InsertElementInst>(V)) {
8949 // If this is an insert of an extract from some other vector, include it.
8950 Value *VecOp = IEI->getOperand(0);
8951 Value *ScalarOp = IEI->getOperand(1);
8952 Value *IdxOp = IEI->getOperand(2);
8953
Chris Lattnerb6cb64b2006-04-27 21:14:21 +00008954 if (!isa<ConstantInt>(IdxOp))
8955 return false;
Reid Spencere0fc4df2006-10-20 07:07:24 +00008956 unsigned InsertedIdx = cast<ConstantInt>(IdxOp)->getZExtValue();
Chris Lattnerb6cb64b2006-04-27 21:14:21 +00008957
8958 if (isa<UndefValue>(ScalarOp)) { // inserting undef into vector.
8959 // Okay, we can handle this if the vector we are insertinting into is
8960 // transitively ok.
8961 if (CollectSingleShuffleElements(VecOp, LHS, RHS, Mask)) {
8962 // If so, update the mask to reflect the inserted undef.
Reid Spencerc635f472006-12-31 05:48:39 +00008963 Mask[InsertedIdx] = UndefValue::get(Type::Int32Ty);
Chris Lattnerb6cb64b2006-04-27 21:14:21 +00008964 return true;
8965 }
8966 } else if (ExtractElementInst *EI = dyn_cast<ExtractElementInst>(ScalarOp)){
8967 if (isa<ConstantInt>(EI->getOperand(1)) &&
Chris Lattner90951862006-04-16 00:51:47 +00008968 EI->getOperand(0)->getType() == V->getType()) {
8969 unsigned ExtractedIdx =
Reid Spencere0fc4df2006-10-20 07:07:24 +00008970 cast<ConstantInt>(EI->getOperand(1))->getZExtValue();
Chris Lattner90951862006-04-16 00:51:47 +00008971
8972 // This must be extracting from either LHS or RHS.
8973 if (EI->getOperand(0) == LHS || EI->getOperand(0) == RHS) {
8974 // Okay, we can handle this if the vector we are insertinting into is
8975 // transitively ok.
8976 if (CollectSingleShuffleElements(VecOp, LHS, RHS, Mask)) {
8977 // If so, update the mask to reflect the inserted value.
8978 if (EI->getOperand(0) == LHS) {
8979 Mask[InsertedIdx & (NumElts-1)] =
Reid Spencerc635f472006-12-31 05:48:39 +00008980 ConstantInt::get(Type::Int32Ty, ExtractedIdx);
Chris Lattner90951862006-04-16 00:51:47 +00008981 } else {
8982 assert(EI->getOperand(0) == RHS);
8983 Mask[InsertedIdx & (NumElts-1)] =
Reid Spencerc635f472006-12-31 05:48:39 +00008984 ConstantInt::get(Type::Int32Ty, ExtractedIdx+NumElts);
Chris Lattner90951862006-04-16 00:51:47 +00008985
8986 }
8987 return true;
8988 }
8989 }
8990 }
8991 }
8992 }
8993 // TODO: Handle shufflevector here!
8994
8995 return false;
8996}
8997
8998/// CollectShuffleElements - We are building a shuffle of V, using RHS as the
8999/// RHS of the shuffle instruction, if it is not null. Return a shuffle mask
9000/// that computes V and the LHS value of the shuffle.
Chris Lattner39fac442006-04-15 01:39:45 +00009001static Value *CollectShuffleElements(Value *V, std::vector<Constant*> &Mask,
Chris Lattner90951862006-04-16 00:51:47 +00009002 Value *&RHS) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00009003 assert(isa<VectorType>(V->getType()) &&
Chris Lattner90951862006-04-16 00:51:47 +00009004 (RHS == 0 || V->getType() == RHS->getType()) &&
Chris Lattner39fac442006-04-15 01:39:45 +00009005 "Invalid shuffle!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00009006 unsigned NumElts = cast<VectorType>(V->getType())->getNumElements();
Chris Lattner39fac442006-04-15 01:39:45 +00009007
9008 if (isa<UndefValue>(V)) {
Reid Spencerc635f472006-12-31 05:48:39 +00009009 Mask.assign(NumElts, UndefValue::get(Type::Int32Ty));
Chris Lattner39fac442006-04-15 01:39:45 +00009010 return V;
9011 } else if (isa<ConstantAggregateZero>(V)) {
Reid Spencerc635f472006-12-31 05:48:39 +00009012 Mask.assign(NumElts, ConstantInt::get(Type::Int32Ty, 0));
Chris Lattner39fac442006-04-15 01:39:45 +00009013 return V;
9014 } else if (InsertElementInst *IEI = dyn_cast<InsertElementInst>(V)) {
9015 // If this is an insert of an extract from some other vector, include it.
9016 Value *VecOp = IEI->getOperand(0);
9017 Value *ScalarOp = IEI->getOperand(1);
9018 Value *IdxOp = IEI->getOperand(2);
9019
9020 if (ExtractElementInst *EI = dyn_cast<ExtractElementInst>(ScalarOp)) {
9021 if (isa<ConstantInt>(EI->getOperand(1)) && isa<ConstantInt>(IdxOp) &&
9022 EI->getOperand(0)->getType() == V->getType()) {
9023 unsigned ExtractedIdx =
Reid Spencere0fc4df2006-10-20 07:07:24 +00009024 cast<ConstantInt>(EI->getOperand(1))->getZExtValue();
9025 unsigned InsertedIdx = cast<ConstantInt>(IdxOp)->getZExtValue();
Chris Lattner39fac442006-04-15 01:39:45 +00009026
9027 // Either the extracted from or inserted into vector must be RHSVec,
9028 // otherwise we'd end up with a shuffle of three inputs.
Chris Lattner90951862006-04-16 00:51:47 +00009029 if (EI->getOperand(0) == RHS || RHS == 0) {
9030 RHS = EI->getOperand(0);
9031 Value *V = CollectShuffleElements(VecOp, Mask, RHS);
Chris Lattner39fac442006-04-15 01:39:45 +00009032 Mask[InsertedIdx & (NumElts-1)] =
Reid Spencerc635f472006-12-31 05:48:39 +00009033 ConstantInt::get(Type::Int32Ty, NumElts+ExtractedIdx);
Chris Lattner39fac442006-04-15 01:39:45 +00009034 return V;
9035 }
9036
Chris Lattner90951862006-04-16 00:51:47 +00009037 if (VecOp == RHS) {
9038 Value *V = CollectShuffleElements(EI->getOperand(0), Mask, RHS);
Chris Lattner39fac442006-04-15 01:39:45 +00009039 // Everything but the extracted element is replaced with the RHS.
9040 for (unsigned i = 0; i != NumElts; ++i) {
9041 if (i != InsertedIdx)
Reid Spencerc635f472006-12-31 05:48:39 +00009042 Mask[i] = ConstantInt::get(Type::Int32Ty, NumElts+i);
Chris Lattner39fac442006-04-15 01:39:45 +00009043 }
9044 return V;
9045 }
Chris Lattner90951862006-04-16 00:51:47 +00009046
9047 // If this insertelement is a chain that comes from exactly these two
9048 // vectors, return the vector and the effective shuffle.
9049 if (CollectSingleShuffleElements(IEI, EI->getOperand(0), RHS, Mask))
9050 return EI->getOperand(0);
9051
Chris Lattner39fac442006-04-15 01:39:45 +00009052 }
9053 }
9054 }
Chris Lattner90951862006-04-16 00:51:47 +00009055 // TODO: Handle shufflevector here!
Chris Lattner39fac442006-04-15 01:39:45 +00009056
9057 // Otherwise, can't do anything fancy. Return an identity vector.
9058 for (unsigned i = 0; i != NumElts; ++i)
Reid Spencerc635f472006-12-31 05:48:39 +00009059 Mask.push_back(ConstantInt::get(Type::Int32Ty, i));
Chris Lattner39fac442006-04-15 01:39:45 +00009060 return V;
9061}
9062
9063Instruction *InstCombiner::visitInsertElementInst(InsertElementInst &IE) {
9064 Value *VecOp = IE.getOperand(0);
9065 Value *ScalarOp = IE.getOperand(1);
9066 Value *IdxOp = IE.getOperand(2);
9067
9068 // If the inserted element was extracted from some other vector, and if the
9069 // indexes are constant, try to turn this into a shufflevector operation.
9070 if (ExtractElementInst *EI = dyn_cast<ExtractElementInst>(ScalarOp)) {
9071 if (isa<ConstantInt>(EI->getOperand(1)) && isa<ConstantInt>(IdxOp) &&
9072 EI->getOperand(0)->getType() == IE.getType()) {
9073 unsigned NumVectorElts = IE.getType()->getNumElements();
Reid Spencere0fc4df2006-10-20 07:07:24 +00009074 unsigned ExtractedIdx=cast<ConstantInt>(EI->getOperand(1))->getZExtValue();
9075 unsigned InsertedIdx = cast<ConstantInt>(IdxOp)->getZExtValue();
Chris Lattner39fac442006-04-15 01:39:45 +00009076
9077 if (ExtractedIdx >= NumVectorElts) // Out of range extract.
9078 return ReplaceInstUsesWith(IE, VecOp);
9079
9080 if (InsertedIdx >= NumVectorElts) // Out of range insert.
9081 return ReplaceInstUsesWith(IE, UndefValue::get(IE.getType()));
9082
9083 // If we are extracting a value from a vector, then inserting it right
9084 // back into the same place, just use the input vector.
9085 if (EI->getOperand(0) == VecOp && ExtractedIdx == InsertedIdx)
9086 return ReplaceInstUsesWith(IE, VecOp);
9087
9088 // We could theoretically do this for ANY input. However, doing so could
9089 // turn chains of insertelement instructions into a chain of shufflevector
9090 // instructions, and right now we do not merge shufflevectors. As such,
9091 // only do this in a situation where it is clear that there is benefit.
9092 if (isa<UndefValue>(VecOp) || isa<ConstantAggregateZero>(VecOp)) {
9093 // Turn this into shuffle(EIOp0, VecOp, Mask). The result has all of
9094 // the values of VecOp, except then one read from EIOp0.
9095 // Build a new shuffle mask.
9096 std::vector<Constant*> Mask;
9097 if (isa<UndefValue>(VecOp))
Reid Spencerc635f472006-12-31 05:48:39 +00009098 Mask.assign(NumVectorElts, UndefValue::get(Type::Int32Ty));
Chris Lattner39fac442006-04-15 01:39:45 +00009099 else {
9100 assert(isa<ConstantAggregateZero>(VecOp) && "Unknown thing");
Reid Spencerc635f472006-12-31 05:48:39 +00009101 Mask.assign(NumVectorElts, ConstantInt::get(Type::Int32Ty,
Chris Lattner39fac442006-04-15 01:39:45 +00009102 NumVectorElts));
9103 }
Reid Spencerc635f472006-12-31 05:48:39 +00009104 Mask[InsertedIdx] = ConstantInt::get(Type::Int32Ty, ExtractedIdx);
Chris Lattner39fac442006-04-15 01:39:45 +00009105 return new ShuffleVectorInst(EI->getOperand(0), VecOp,
Reid Spencerd84d35b2007-02-15 02:26:10 +00009106 ConstantVector::get(Mask));
Chris Lattner39fac442006-04-15 01:39:45 +00009107 }
9108
9109 // If this insertelement isn't used by some other insertelement, turn it
9110 // (and any insertelements it points to), into one big shuffle.
9111 if (!IE.hasOneUse() || !isa<InsertElementInst>(IE.use_back())) {
9112 std::vector<Constant*> Mask;
Chris Lattner90951862006-04-16 00:51:47 +00009113 Value *RHS = 0;
9114 Value *LHS = CollectShuffleElements(&IE, Mask, RHS);
9115 if (RHS == 0) RHS = UndefValue::get(LHS->getType());
9116 // We now have a shuffle of LHS, RHS, Mask.
Reid Spencerd84d35b2007-02-15 02:26:10 +00009117 return new ShuffleVectorInst(LHS, RHS, ConstantVector::get(Mask));
Chris Lattner39fac442006-04-15 01:39:45 +00009118 }
9119 }
9120 }
9121
9122 return 0;
9123}
9124
9125
Chris Lattnerfbb77a42006-04-10 22:45:52 +00009126Instruction *InstCombiner::visitShuffleVectorInst(ShuffleVectorInst &SVI) {
9127 Value *LHS = SVI.getOperand(0);
9128 Value *RHS = SVI.getOperand(1);
Chris Lattner12249be2006-05-25 23:48:38 +00009129 std::vector<unsigned> Mask = getShuffleMask(&SVI);
Chris Lattnerfbb77a42006-04-10 22:45:52 +00009130
9131 bool MadeChange = false;
9132
Chris Lattner2deeaea2006-10-05 06:55:50 +00009133 // Undefined shuffle mask -> undefined value.
Chris Lattner12249be2006-05-25 23:48:38 +00009134 if (isa<UndefValue>(SVI.getOperand(2)))
Chris Lattnerfbb77a42006-04-10 22:45:52 +00009135 return ReplaceInstUsesWith(SVI, UndefValue::get(SVI.getType()));
9136
Chris Lattnerd7b6ea12007-01-05 07:36:08 +00009137 // If we have shuffle(x, undef, mask) and any elements of mask refer to
Chris Lattner39fac442006-04-15 01:39:45 +00009138 // the undef, change them to undefs.
Chris Lattnerd7b6ea12007-01-05 07:36:08 +00009139 if (isa<UndefValue>(SVI.getOperand(1))) {
9140 // Scan to see if there are any references to the RHS. If so, replace them
9141 // with undef element refs and set MadeChange to true.
9142 for (unsigned i = 0, e = Mask.size(); i != e; ++i) {
9143 if (Mask[i] >= e && Mask[i] != 2*e) {
9144 Mask[i] = 2*e;
9145 MadeChange = true;
9146 }
9147 }
9148
9149 if (MadeChange) {
9150 // Remap any references to RHS to use LHS.
9151 std::vector<Constant*> Elts;
9152 for (unsigned i = 0, e = Mask.size(); i != e; ++i) {
9153 if (Mask[i] == 2*e)
9154 Elts.push_back(UndefValue::get(Type::Int32Ty));
9155 else
9156 Elts.push_back(ConstantInt::get(Type::Int32Ty, Mask[i]));
9157 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00009158 SVI.setOperand(2, ConstantVector::get(Elts));
Chris Lattnerd7b6ea12007-01-05 07:36:08 +00009159 }
9160 }
Chris Lattner39fac442006-04-15 01:39:45 +00009161
Chris Lattner12249be2006-05-25 23:48:38 +00009162 // Canonicalize shuffle(x ,x,mask) -> shuffle(x, undef,mask')
9163 // Canonicalize shuffle(undef,x,mask) -> shuffle(x, undef,mask').
9164 if (LHS == RHS || isa<UndefValue>(LHS)) {
9165 if (isa<UndefValue>(LHS) && LHS == RHS) {
Chris Lattnerfbb77a42006-04-10 22:45:52 +00009166 // shuffle(undef,undef,mask) -> undef.
9167 return ReplaceInstUsesWith(SVI, LHS);
9168 }
9169
Chris Lattner12249be2006-05-25 23:48:38 +00009170 // Remap any references to RHS to use LHS.
9171 std::vector<Constant*> Elts;
9172 for (unsigned i = 0, e = Mask.size(); i != e; ++i) {
Chris Lattner0e477162006-05-26 00:29:06 +00009173 if (Mask[i] >= 2*e)
Reid Spencerc635f472006-12-31 05:48:39 +00009174 Elts.push_back(UndefValue::get(Type::Int32Ty));
Chris Lattner0e477162006-05-26 00:29:06 +00009175 else {
9176 if ((Mask[i] >= e && isa<UndefValue>(RHS)) ||
9177 (Mask[i] < e && isa<UndefValue>(LHS)))
9178 Mask[i] = 2*e; // Turn into undef.
9179 else
9180 Mask[i] &= (e-1); // Force to LHS.
Reid Spencerc635f472006-12-31 05:48:39 +00009181 Elts.push_back(ConstantInt::get(Type::Int32Ty, Mask[i]));
Chris Lattner0e477162006-05-26 00:29:06 +00009182 }
Chris Lattnerfbb77a42006-04-10 22:45:52 +00009183 }
Chris Lattner12249be2006-05-25 23:48:38 +00009184 SVI.setOperand(0, SVI.getOperand(1));
Chris Lattnerfbb77a42006-04-10 22:45:52 +00009185 SVI.setOperand(1, UndefValue::get(RHS->getType()));
Reid Spencerd84d35b2007-02-15 02:26:10 +00009186 SVI.setOperand(2, ConstantVector::get(Elts));
Chris Lattner0e477162006-05-26 00:29:06 +00009187 LHS = SVI.getOperand(0);
9188 RHS = SVI.getOperand(1);
Chris Lattnerfbb77a42006-04-10 22:45:52 +00009189 MadeChange = true;
9190 }
9191
Chris Lattner0e477162006-05-26 00:29:06 +00009192 // Analyze the shuffle, are the LHS or RHS and identity shuffles?
Chris Lattner12249be2006-05-25 23:48:38 +00009193 bool isLHSID = true, isRHSID = true;
Chris Lattner34cebe72006-04-16 00:03:56 +00009194
Chris Lattner12249be2006-05-25 23:48:38 +00009195 for (unsigned i = 0, e = Mask.size(); i != e; ++i) {
9196 if (Mask[i] >= e*2) continue; // Ignore undef values.
9197 // Is this an identity shuffle of the LHS value?
9198 isLHSID &= (Mask[i] == i);
9199
9200 // Is this an identity shuffle of the RHS value?
9201 isRHSID &= (Mask[i]-e == i);
Chris Lattner34cebe72006-04-16 00:03:56 +00009202 }
Chris Lattnerfbb77a42006-04-10 22:45:52 +00009203
Chris Lattner12249be2006-05-25 23:48:38 +00009204 // Eliminate identity shuffles.
9205 if (isLHSID) return ReplaceInstUsesWith(SVI, LHS);
9206 if (isRHSID) return ReplaceInstUsesWith(SVI, RHS);
Chris Lattnerfbb77a42006-04-10 22:45:52 +00009207
Chris Lattner0e477162006-05-26 00:29:06 +00009208 // If the LHS is a shufflevector itself, see if we can combine it with this
9209 // one without producing an unusual shuffle. Here we are really conservative:
9210 // we are absolutely afraid of producing a shuffle mask not in the input
9211 // program, because the code gen may not be smart enough to turn a merged
9212 // shuffle into two specific shuffles: it may produce worse code. As such,
9213 // we only merge two shuffles if the result is one of the two input shuffle
9214 // masks. In this case, merging the shuffles just removes one instruction,
9215 // which we know is safe. This is good for things like turning:
9216 // (splat(splat)) -> splat.
9217 if (ShuffleVectorInst *LHSSVI = dyn_cast<ShuffleVectorInst>(LHS)) {
9218 if (isa<UndefValue>(RHS)) {
9219 std::vector<unsigned> LHSMask = getShuffleMask(LHSSVI);
9220
9221 std::vector<unsigned> NewMask;
9222 for (unsigned i = 0, e = Mask.size(); i != e; ++i)
9223 if (Mask[i] >= 2*e)
9224 NewMask.push_back(2*e);
9225 else
9226 NewMask.push_back(LHSMask[Mask[i]]);
9227
9228 // If the result mask is equal to the src shuffle or this shuffle mask, do
9229 // the replacement.
9230 if (NewMask == LHSMask || NewMask == Mask) {
9231 std::vector<Constant*> Elts;
9232 for (unsigned i = 0, e = NewMask.size(); i != e; ++i) {
9233 if (NewMask[i] >= e*2) {
Reid Spencerc635f472006-12-31 05:48:39 +00009234 Elts.push_back(UndefValue::get(Type::Int32Ty));
Chris Lattner0e477162006-05-26 00:29:06 +00009235 } else {
Reid Spencerc635f472006-12-31 05:48:39 +00009236 Elts.push_back(ConstantInt::get(Type::Int32Ty, NewMask[i]));
Chris Lattner0e477162006-05-26 00:29:06 +00009237 }
9238 }
9239 return new ShuffleVectorInst(LHSSVI->getOperand(0),
9240 LHSSVI->getOperand(1),
Reid Spencerd84d35b2007-02-15 02:26:10 +00009241 ConstantVector::get(Elts));
Chris Lattner0e477162006-05-26 00:29:06 +00009242 }
9243 }
9244 }
Chris Lattner4284f642007-01-30 22:32:46 +00009245
Chris Lattnerfbb77a42006-04-10 22:45:52 +00009246 return MadeChange ? &SVI : 0;
9247}
9248
9249
Robert Bocchinoa8352962006-01-13 22:48:06 +00009250
Chris Lattner39c98bb2004-12-08 23:43:58 +00009251
9252/// TryToSinkInstruction - Try to move the specified instruction from its
9253/// current block into the beginning of DestBlock, which can only happen if it's
9254/// safe to move the instruction past all of the instructions between it and the
9255/// end of its block.
9256static bool TryToSinkInstruction(Instruction *I, BasicBlock *DestBlock) {
9257 assert(I->hasOneUse() && "Invariants didn't hold!");
9258
Chris Lattnerc4f67e62005-10-27 17:13:11 +00009259 // Cannot move control-flow-involving, volatile loads, vaarg, etc.
9260 if (isa<PHINode>(I) || I->mayWriteToMemory()) return false;
Misha Brukmanb1c93172005-04-21 23:48:37 +00009261
Chris Lattner39c98bb2004-12-08 23:43:58 +00009262 // Do not sink alloca instructions out of the entry block.
Dan Gohmandcb291f2007-03-22 16:38:57 +00009263 if (isa<AllocaInst>(I) && I->getParent() ==
9264 &DestBlock->getParent()->getEntryBlock())
Chris Lattner39c98bb2004-12-08 23:43:58 +00009265 return false;
9266
Chris Lattnerf17a2fb2004-12-09 07:14:34 +00009267 // We can only sink load instructions if there is nothing between the load and
9268 // the end of block that could change the value.
9269 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Chris Lattnerf17a2fb2004-12-09 07:14:34 +00009270 for (BasicBlock::iterator Scan = LI, E = LI->getParent()->end();
9271 Scan != E; ++Scan)
9272 if (Scan->mayWriteToMemory())
9273 return false;
Chris Lattnerf17a2fb2004-12-09 07:14:34 +00009274 }
Chris Lattner39c98bb2004-12-08 23:43:58 +00009275
9276 BasicBlock::iterator InsertPos = DestBlock->begin();
9277 while (isa<PHINode>(InsertPos)) ++InsertPos;
9278
Chris Lattner9f269e42005-08-08 19:11:57 +00009279 I->moveBefore(InsertPos);
Chris Lattner39c98bb2004-12-08 23:43:58 +00009280 ++NumSunkInst;
9281 return true;
9282}
9283
Chris Lattnera36ee4e2006-05-10 19:00:36 +00009284
9285/// AddReachableCodeToWorklist - Walk the function in depth-first order, adding
9286/// all reachable code to the worklist.
9287///
9288/// This has a couple of tricks to make the code faster and more powerful. In
9289/// particular, we constant fold and DCE instructions as we go, to avoid adding
9290/// them to the worklist (this significantly speeds up instcombine on code where
9291/// many instructions are dead or constant). Additionally, if we find a branch
9292/// whose condition is a known constant, we only visit the reachable successors.
9293///
9294static void AddReachableCodeToWorklist(BasicBlock *BB,
Chris Lattner7907e5f2007-02-15 19:41:52 +00009295 SmallPtrSet<BasicBlock*, 64> &Visited,
Chris Lattnerb15e2b12007-03-02 21:28:56 +00009296 InstCombiner &IC,
Chris Lattner1443bc52006-05-11 17:11:52 +00009297 const TargetData *TD) {
Chris Lattner12b89cc2007-03-23 19:17:18 +00009298 std::vector<BasicBlock*> Worklist;
9299 Worklist.push_back(BB);
Chris Lattnera36ee4e2006-05-10 19:00:36 +00009300
Chris Lattner12b89cc2007-03-23 19:17:18 +00009301 while (!Worklist.empty()) {
9302 BB = Worklist.back();
9303 Worklist.pop_back();
9304
9305 // We have now visited this block! If we've already been here, ignore it.
9306 if (!Visited.insert(BB)) continue;
9307
9308 for (BasicBlock::iterator BBI = BB->begin(), E = BB->end(); BBI != E; ) {
9309 Instruction *Inst = BBI++;
Chris Lattnera36ee4e2006-05-10 19:00:36 +00009310
Chris Lattner12b89cc2007-03-23 19:17:18 +00009311 // DCE instruction if trivially dead.
9312 if (isInstructionTriviallyDead(Inst)) {
9313 ++NumDeadInst;
9314 DOUT << "IC: DCE: " << *Inst;
9315 Inst->eraseFromParent();
9316 continue;
9317 }
9318
9319 // ConstantProp instruction if trivially constant.
9320 if (Constant *C = ConstantFoldInstruction(Inst, TD)) {
9321 DOUT << "IC: ConstFold to: " << *C << " from: " << *Inst;
9322 Inst->replaceAllUsesWith(C);
9323 ++NumConstProp;
9324 Inst->eraseFromParent();
9325 continue;
9326 }
9327
9328 IC.AddToWorkList(Inst);
Chris Lattnera36ee4e2006-05-10 19:00:36 +00009329 }
Chris Lattner12b89cc2007-03-23 19:17:18 +00009330
9331 // Recursively visit successors. If this is a branch or switch on a
9332 // constant, only visit the reachable successor.
9333 TerminatorInst *TI = BB->getTerminator();
9334 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
9335 if (BI->isConditional() && isa<ConstantInt>(BI->getCondition())) {
9336 bool CondVal = cast<ConstantInt>(BI->getCondition())->getZExtValue();
9337 Worklist.push_back(BI->getSuccessor(!CondVal));
9338 continue;
9339 }
9340 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
9341 if (ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition())) {
9342 // See if this is an explicit destination.
9343 for (unsigned i = 1, e = SI->getNumSuccessors(); i != e; ++i)
9344 if (SI->getCaseValue(i) == Cond) {
9345 Worklist.push_back(SI->getSuccessor(i));
9346 continue;
9347 }
9348
9349 // Otherwise it is the default destination.
9350 Worklist.push_back(SI->getSuccessor(0));
9351 continue;
9352 }
9353 }
9354
9355 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
9356 Worklist.push_back(TI->getSuccessor(i));
Chris Lattnera36ee4e2006-05-10 19:00:36 +00009357 }
Chris Lattnera36ee4e2006-05-10 19:00:36 +00009358}
9359
Chris Lattner960a5432007-03-03 02:04:50 +00009360bool InstCombiner::DoOneIteration(Function &F, unsigned Iteration) {
Chris Lattner260ab202002-04-18 17:39:14 +00009361 bool Changed = false;
Chris Lattnerf4ad1652003-11-02 05:57:39 +00009362 TD = &getAnalysis<TargetData>();
Chris Lattner960a5432007-03-03 02:04:50 +00009363
9364 DEBUG(DOUT << "\n\nINSTCOMBINE ITERATION #" << Iteration << " on "
9365 << F.getNameStr() << "\n");
Chris Lattnerca081252001-12-14 16:52:21 +00009366
Chris Lattner4ed40f72005-07-07 20:40:38 +00009367 {
Chris Lattnera36ee4e2006-05-10 19:00:36 +00009368 // Do a depth-first traversal of the function, populate the worklist with
9369 // the reachable instructions. Ignore blocks that are not reachable. Keep
9370 // track of which blocks we visit.
Chris Lattner7907e5f2007-02-15 19:41:52 +00009371 SmallPtrSet<BasicBlock*, 64> Visited;
Chris Lattnerb15e2b12007-03-02 21:28:56 +00009372 AddReachableCodeToWorklist(F.begin(), Visited, *this, TD);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00009373
Chris Lattner4ed40f72005-07-07 20:40:38 +00009374 // Do a quick scan over the function. If we find any blocks that are
9375 // unreachable, remove any instructions inside of them. This prevents
9376 // the instcombine code from having to deal with some bad special cases.
9377 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
9378 if (!Visited.count(BB)) {
9379 Instruction *Term = BB->getTerminator();
9380 while (Term != BB->begin()) { // Remove instrs bottom-up
9381 BasicBlock::iterator I = Term; --I;
Chris Lattner2d3a7a62004-04-27 15:13:33 +00009382
Bill Wendling5dbf43c2006-11-26 09:46:52 +00009383 DOUT << "IC: DCE: " << *I;
Chris Lattner4ed40f72005-07-07 20:40:38 +00009384 ++NumDeadInst;
9385
9386 if (!I->use_empty())
9387 I->replaceAllUsesWith(UndefValue::get(I->getType()));
9388 I->eraseFromParent();
9389 }
9390 }
9391 }
Chris Lattnerca081252001-12-14 16:52:21 +00009392
Chris Lattnerb15e2b12007-03-02 21:28:56 +00009393 while (!Worklist.empty()) {
9394 Instruction *I = RemoveOneFromWorkList();
9395 if (I == 0) continue; // skip null values.
Chris Lattnerca081252001-12-14 16:52:21 +00009396
Chris Lattner1443bc52006-05-11 17:11:52 +00009397 // Check to see if we can DCE the instruction.
Chris Lattner99f48c62002-09-02 04:59:56 +00009398 if (isInstructionTriviallyDead(I)) {
Chris Lattner1443bc52006-05-11 17:11:52 +00009399 // Add operands to the worklist.
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00009400 if (I->getNumOperands() < 4)
Chris Lattner51ea1272004-02-28 05:22:00 +00009401 AddUsesToWorkList(*I);
Chris Lattner99f48c62002-09-02 04:59:56 +00009402 ++NumDeadInst;
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00009403
Bill Wendling5dbf43c2006-11-26 09:46:52 +00009404 DOUT << "IC: DCE: " << *I;
Chris Lattnercd517ff2005-01-28 19:32:01 +00009405
9406 I->eraseFromParent();
Chris Lattnerb15e2b12007-03-02 21:28:56 +00009407 RemoveFromWorkList(I);
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00009408 continue;
9409 }
Chris Lattner99f48c62002-09-02 04:59:56 +00009410
Chris Lattner1443bc52006-05-11 17:11:52 +00009411 // Instruction isn't dead, see if we can constant propagate it.
Chris Lattnere3eda252007-01-30 23:16:15 +00009412 if (Constant *C = ConstantFoldInstruction(I, TD)) {
Bill Wendling5dbf43c2006-11-26 09:46:52 +00009413 DOUT << "IC: ConstFold to: " << *C << " from: " << *I;
Chris Lattnercd517ff2005-01-28 19:32:01 +00009414
Chris Lattner1443bc52006-05-11 17:11:52 +00009415 // Add operands to the worklist.
Chris Lattner51ea1272004-02-28 05:22:00 +00009416 AddUsesToWorkList(*I);
Chris Lattnerc6509f42002-12-05 22:41:53 +00009417 ReplaceInstUsesWith(*I, C);
9418
Chris Lattner99f48c62002-09-02 04:59:56 +00009419 ++NumConstProp;
Chris Lattnera36ee4e2006-05-10 19:00:36 +00009420 I->eraseFromParent();
Chris Lattnerb15e2b12007-03-02 21:28:56 +00009421 RemoveFromWorkList(I);
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00009422 continue;
Chris Lattner99f48c62002-09-02 04:59:56 +00009423 }
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00009424
Chris Lattner39c98bb2004-12-08 23:43:58 +00009425 // See if we can trivially sink this instruction to a successor basic block.
9426 if (I->hasOneUse()) {
9427 BasicBlock *BB = I->getParent();
9428 BasicBlock *UserParent = cast<Instruction>(I->use_back())->getParent();
9429 if (UserParent != BB) {
9430 bool UserIsSuccessor = false;
9431 // See if the user is one of our successors.
9432 for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
9433 if (*SI == UserParent) {
9434 UserIsSuccessor = true;
9435 break;
9436 }
9437
9438 // If the user is one of our immediate successors, and if that successor
9439 // only has us as a predecessors (we'd have to split the critical edge
9440 // otherwise), we can keep going.
9441 if (UserIsSuccessor && !isa<PHINode>(I->use_back()) &&
9442 next(pred_begin(UserParent)) == pred_end(UserParent))
9443 // Okay, the CFG is simple enough, try to sink this instruction.
9444 Changed |= TryToSinkInstruction(I, UserParent);
9445 }
9446 }
9447
Chris Lattnerca081252001-12-14 16:52:21 +00009448 // Now that we have an instruction, try combining it to simplify it...
Chris Lattnerae7a0d32002-08-02 19:29:35 +00009449 if (Instruction *Result = visit(*I)) {
Chris Lattner0b18c1d2002-05-10 15:38:35 +00009450 ++NumCombined;
Chris Lattner260ab202002-04-18 17:39:14 +00009451 // Should we replace the old instruction with a new one?
Chris Lattner053c0932002-05-14 15:24:07 +00009452 if (Result != I) {
Bill Wendling5dbf43c2006-11-26 09:46:52 +00009453 DOUT << "IC: Old = " << *I
9454 << " New = " << *Result;
Chris Lattner7d2a5392004-03-13 23:54:27 +00009455
Chris Lattner396dbfe2004-06-09 05:08:07 +00009456 // Everything uses the new instruction now.
9457 I->replaceAllUsesWith(Result);
9458
9459 // Push the new instruction and any users onto the worklist.
Chris Lattnerb15e2b12007-03-02 21:28:56 +00009460 AddToWorkList(Result);
Chris Lattner396dbfe2004-06-09 05:08:07 +00009461 AddUsersToWorkList(*Result);
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00009462
Chris Lattner6e0123b2007-02-11 01:23:03 +00009463 // Move the name to the new instruction first.
9464 Result->takeName(I);
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00009465
9466 // Insert the new instruction into the basic block...
9467 BasicBlock *InstParent = I->getParent();
Chris Lattner7515cab2004-11-14 19:13:23 +00009468 BasicBlock::iterator InsertPos = I;
9469
9470 if (!isa<PHINode>(Result)) // If combining a PHI, don't insert
9471 while (isa<PHINode>(InsertPos)) // middle of a block of PHIs.
9472 ++InsertPos;
9473
9474 InstParent->getInstList().insert(InsertPos, Result);
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00009475
Chris Lattner63d75af2004-05-01 23:27:23 +00009476 // Make sure that we reprocess all operands now that we reduced their
9477 // use counts.
Chris Lattnerb15e2b12007-03-02 21:28:56 +00009478 AddUsesToWorkList(*I);
Chris Lattnerb643a9e2004-05-01 23:19:52 +00009479
Chris Lattner396dbfe2004-06-09 05:08:07 +00009480 // Instructions can end up on the worklist more than once. Make sure
9481 // we do not process an instruction that has been deleted.
Chris Lattnerb15e2b12007-03-02 21:28:56 +00009482 RemoveFromWorkList(I);
Chris Lattnere8ed4ef2003-10-06 17:11:01 +00009483
9484 // Erase the old instruction.
9485 InstParent->getInstList().erase(I);
Chris Lattner113f4f42002-06-25 16:13:24 +00009486 } else {
Bill Wendling5dbf43c2006-11-26 09:46:52 +00009487 DOUT << "IC: MOD = " << *I;
Chris Lattner7d2a5392004-03-13 23:54:27 +00009488
Chris Lattnerae7a0d32002-08-02 19:29:35 +00009489 // If the instruction was modified, it's possible that it is now dead.
9490 // if so, remove it.
Chris Lattner63d75af2004-05-01 23:27:23 +00009491 if (isInstructionTriviallyDead(I)) {
9492 // Make sure we process all operands now that we are reducing their
9493 // use counts.
Chris Lattner960a5432007-03-03 02:04:50 +00009494 AddUsesToWorkList(*I);
Misha Brukmanb1c93172005-04-21 23:48:37 +00009495
Chris Lattner63d75af2004-05-01 23:27:23 +00009496 // Instructions may end up in the worklist more than once. Erase all
Robert Bocchinoa8352962006-01-13 22:48:06 +00009497 // occurrences of this instruction.
Chris Lattnerb15e2b12007-03-02 21:28:56 +00009498 RemoveFromWorkList(I);
Chris Lattner31f486c2005-01-31 05:36:43 +00009499 I->eraseFromParent();
Chris Lattner396dbfe2004-06-09 05:08:07 +00009500 } else {
Chris Lattner960a5432007-03-03 02:04:50 +00009501 AddToWorkList(I);
9502 AddUsersToWorkList(*I);
Chris Lattnerae7a0d32002-08-02 19:29:35 +00009503 }
Chris Lattner053c0932002-05-14 15:24:07 +00009504 }
Chris Lattner260ab202002-04-18 17:39:14 +00009505 Changed = true;
Chris Lattnerca081252001-12-14 16:52:21 +00009506 }
9507 }
9508
Chris Lattner960a5432007-03-03 02:04:50 +00009509 assert(WorklistMap.empty() && "Worklist empty, but map not?");
Chris Lattner260ab202002-04-18 17:39:14 +00009510 return Changed;
Chris Lattner04805fa2002-02-26 21:46:54 +00009511}
9512
Chris Lattner960a5432007-03-03 02:04:50 +00009513
9514bool InstCombiner::runOnFunction(Function &F) {
Chris Lattner8258b442007-03-04 04:27:24 +00009515 MustPreserveLCSSA = mustPreserveAnalysisID(LCSSAID);
9516
Chris Lattner960a5432007-03-03 02:04:50 +00009517 bool EverMadeChange = false;
9518
9519 // Iterate while there is work to do.
9520 unsigned Iteration = 0;
9521 while (DoOneIteration(F, Iteration++))
9522 EverMadeChange = true;
9523 return EverMadeChange;
9524}
9525
Brian Gaeke38b79e82004-07-27 17:43:21 +00009526FunctionPass *llvm::createInstructionCombiningPass() {
Chris Lattner260ab202002-04-18 17:39:14 +00009527 return new InstCombiner();
Chris Lattner04805fa2002-02-26 21:46:54 +00009528}
Brian Gaeke960707c2003-11-11 22:41:34 +00009529