blob: 8a3ecbc448dd84b730c43a36f5331081f1e4d6a0 [file] [log] [blame]
Chris Lattner233f7dc2002-08-12 21:17:25 +00001//===- InstructionCombining.cpp - Combine multiple instructions -----------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner8a2a3112001-12-14 16:52:21 +00009//
10// InstructionCombining - Combine instructions to form fewer, simple
Dan Gohman844731a2008-05-13 00:00:25 +000011// instructions. This pass does not modify the CFG. This pass is where
12// algebraic simplification happens.
Chris Lattner8a2a3112001-12-14 16:52:21 +000013//
14// This pass combines things like:
Chris Lattner318bf792007-03-18 22:51:34 +000015// %Y = add i32 %X, 1
16// %Z = add i32 %Y, 1
Chris Lattner8a2a3112001-12-14 16:52:21 +000017// into:
Chris Lattner318bf792007-03-18 22:51:34 +000018// %Z = add i32 %X, 2
Chris Lattner8a2a3112001-12-14 16:52:21 +000019//
20// This is a simple worklist driven algorithm.
21//
Chris Lattner065a6162003-09-10 05:29:43 +000022// This pass guarantees that the following canonicalizations are performed on
Chris Lattner2cd91962003-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 Lattnerdf17af12003-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 Spencere4d87aa2006-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 Lattnere92d2f42003-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 Lattnerbac32862004-11-14 19:13:23 +000032// ... etc.
Chris Lattner2cd91962003-07-23 21:41:57 +000033//
Chris Lattner8a2a3112001-12-14 16:52:21 +000034//===----------------------------------------------------------------------===//
35
Chris Lattner0cea42a2004-03-13 23:54:27 +000036#define DEBUG_TYPE "instcombine"
Chris Lattner022103b2002-05-07 20:03:00 +000037#include "llvm/Transforms/Scalar.h"
Chris Lattner35b9e482004-10-12 04:52:52 +000038#include "llvm/IntrinsicInst.h"
Chris Lattnerbd0ef772002-02-26 21:46:54 +000039#include "llvm/Pass.h"
Chris Lattner0864acf2002-11-04 16:18:53 +000040#include "llvm/DerivedTypes.h"
Chris Lattner833b8a42003-06-26 05:06:25 +000041#include "llvm/GlobalVariable.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000042#include "llvm/Analysis/ConstantFolding.h"
Chris Lattner173234a2008-06-02 01:18:21 +000043#include "llvm/Analysis/ValueTracking.h"
Chris Lattnerbc61e662003-11-02 05:57:39 +000044#include "llvm/Target/TargetData.h"
45#include "llvm/Transforms/Utils/BasicBlockUtils.h"
46#include "llvm/Transforms/Utils/Local.h"
Chris Lattner28977af2004-04-05 01:30:19 +000047#include "llvm/Support/CallSite.h"
Nick Lewycky5be29202008-02-03 16:33:09 +000048#include "llvm/Support/ConstantRange.h"
Chris Lattnerea1c4542004-12-08 23:43:58 +000049#include "llvm/Support/Debug.h"
Chris Lattner28977af2004-04-05 01:30:19 +000050#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattnerdd841ae2002-04-18 17:39:14 +000051#include "llvm/Support/InstVisitor.h"
Chris Lattnerbcd7db52005-08-02 19:16:58 +000052#include "llvm/Support/MathExtras.h"
Chris Lattneracd1f0f2004-07-30 07:50:03 +000053#include "llvm/Support/PatternMatch.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000054#include "llvm/Support/Compiler.h"
Chris Lattnerdbab3862007-03-02 21:28:56 +000055#include "llvm/ADT/DenseMap.h"
Chris Lattner55eb1c42007-01-31 04:40:53 +000056#include "llvm/ADT/SmallVector.h"
Chris Lattner1f87a582007-02-15 19:41:52 +000057#include "llvm/ADT/SmallPtrSet.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000058#include "llvm/ADT/Statistic.h"
Chris Lattnerea1c4542004-12-08 23:43:58 +000059#include "llvm/ADT/STLExtras.h"
Chris Lattnerb3bc8fa2002-05-14 15:24:07 +000060#include <algorithm>
Torok Edwin3eaee312008-04-20 08:33:11 +000061#include <climits>
Reid Spencera9b81012007-03-26 17:44:01 +000062#include <sstream>
Chris Lattner67b1e1b2003-12-07 01:24:23 +000063using namespace llvm;
Chris Lattneracd1f0f2004-07-30 07:50:03 +000064using namespace llvm::PatternMatch;
Brian Gaeked0fde302003-11-11 22:41:34 +000065
Chris Lattner0e5f4992006-12-19 21:40:18 +000066STATISTIC(NumCombined , "Number of insts combined");
67STATISTIC(NumConstProp, "Number of constant folds");
68STATISTIC(NumDeadInst , "Number of dead inst eliminated");
69STATISTIC(NumDeadStore, "Number of dead stores eliminated");
70STATISTIC(NumSunkInst , "Number of instructions sunk");
Chris Lattnera92f6962002-10-01 22:38:41 +000071
Chris Lattner0e5f4992006-12-19 21:40:18 +000072namespace {
Chris Lattnerf4b54612006-06-28 22:08:15 +000073 class VISIBILITY_HIDDEN InstCombiner
74 : public FunctionPass,
75 public InstVisitor<InstCombiner, Instruction*> {
Chris Lattnerdd841ae2002-04-18 17:39:14 +000076 // Worklist of all of the instructions that need to be simplified.
Chris Lattner2806dff2008-08-15 04:03:01 +000077 SmallVector<Instruction*, 256> Worklist;
Chris Lattnerdbab3862007-03-02 21:28:56 +000078 DenseMap<Instruction*, unsigned> WorklistMap;
Chris Lattnerbc61e662003-11-02 05:57:39 +000079 TargetData *TD;
Chris Lattnerf964f322007-03-04 04:27:24 +000080 bool MustPreserveLCSSA;
Chris Lattnerdbab3862007-03-02 21:28:56 +000081 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +000082 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +000083 InstCombiner() : FunctionPass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +000084
Chris Lattnerdbab3862007-03-02 21:28:56 +000085 /// AddToWorkList - Add the specified instruction to the worklist if it
86 /// isn't already in it.
87 void AddToWorkList(Instruction *I) {
Dan Gohman6b345ee2008-07-07 17:46:23 +000088 if (WorklistMap.insert(std::make_pair(I, Worklist.size())).second)
Chris Lattnerdbab3862007-03-02 21:28:56 +000089 Worklist.push_back(I);
90 }
91
92 // RemoveFromWorkList - remove I from the worklist if it exists.
93 void RemoveFromWorkList(Instruction *I) {
94 DenseMap<Instruction*, unsigned>::iterator It = WorklistMap.find(I);
95 if (It == WorklistMap.end()) return; // Not in worklist.
96
97 // Don't bother moving everything down, just null out the slot.
98 Worklist[It->second] = 0;
99
100 WorklistMap.erase(It);
101 }
102
103 Instruction *RemoveOneFromWorkList() {
104 Instruction *I = Worklist.back();
105 Worklist.pop_back();
106 WorklistMap.erase(I);
107 return I;
108 }
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000109
Chris Lattnerdbab3862007-03-02 21:28:56 +0000110
Chris Lattner7bcc0e72004-02-28 05:22:00 +0000111 /// AddUsersToWorkList - When an instruction is simplified, add all users of
112 /// the instruction to the work lists because they might get more simplified
113 /// now.
114 ///
Chris Lattner6dce1a72006-02-07 06:56:34 +0000115 void AddUsersToWorkList(Value &I) {
Chris Lattner7e708292002-06-25 16:13:24 +0000116 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end();
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000117 UI != UE; ++UI)
Chris Lattnerdbab3862007-03-02 21:28:56 +0000118 AddToWorkList(cast<Instruction>(*UI));
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000119 }
120
Chris Lattner7bcc0e72004-02-28 05:22:00 +0000121 /// AddUsesToWorkList - When an instruction is simplified, add operands to
122 /// the work lists because they might get more simplified now.
123 ///
124 void AddUsesToWorkList(Instruction &I) {
Gabor Greif177dd3f2008-06-12 21:37:33 +0000125 for (User::op_iterator i = I.op_begin(), e = I.op_end(); i != e; ++i)
126 if (Instruction *Op = dyn_cast<Instruction>(*i))
Chris Lattnerdbab3862007-03-02 21:28:56 +0000127 AddToWorkList(Op);
Chris Lattner7bcc0e72004-02-28 05:22:00 +0000128 }
Chris Lattner867b99f2006-10-05 06:55:50 +0000129
130 /// AddSoonDeadInstToWorklist - The specified instruction is about to become
131 /// dead. Add all of its operands to the worklist, turning them into
132 /// undef's to reduce the number of uses of those instructions.
133 ///
134 /// Return the specified operand before it is turned into an undef.
135 ///
136 Value *AddSoonDeadInstToWorklist(Instruction &I, unsigned op) {
137 Value *R = I.getOperand(op);
138
Gabor Greif177dd3f2008-06-12 21:37:33 +0000139 for (User::op_iterator i = I.op_begin(), e = I.op_end(); i != e; ++i)
140 if (Instruction *Op = dyn_cast<Instruction>(*i)) {
Chris Lattnerdbab3862007-03-02 21:28:56 +0000141 AddToWorkList(Op);
Chris Lattner867b99f2006-10-05 06:55:50 +0000142 // Set the operand to undef to drop the use.
Gabor Greif177dd3f2008-06-12 21:37:33 +0000143 *i = UndefValue::get(Op->getType());
Chris Lattner867b99f2006-10-05 06:55:50 +0000144 }
145
146 return R;
147 }
Chris Lattner7bcc0e72004-02-28 05:22:00 +0000148
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000149 public:
Chris Lattner7e708292002-06-25 16:13:24 +0000150 virtual bool runOnFunction(Function &F);
Chris Lattnerec9c3582007-03-03 02:04:50 +0000151
152 bool DoOneIteration(Function &F, unsigned ItNum);
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000153
Chris Lattner97e52e42002-04-28 21:27:06 +0000154 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerbc61e662003-11-02 05:57:39 +0000155 AU.addRequired<TargetData>();
Owen Andersond1b78a12006-07-10 19:03:49 +0000156 AU.addPreservedID(LCSSAID);
Chris Lattnercb2610e2002-10-21 20:00:28 +0000157 AU.setPreservesCFG();
Chris Lattner97e52e42002-04-28 21:27:06 +0000158 }
159
Chris Lattner28977af2004-04-05 01:30:19 +0000160 TargetData &getTargetData() const { return *TD; }
161
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000162 // Visitation implementation - Implement instruction combining for different
163 // instruction types. The semantics are as follows:
164 // Return Value:
165 // null - No change was made
Chris Lattner233f7dc2002-08-12 21:17:25 +0000166 // I - Change was made, I is still valid, I may be dead though
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000167 // otherwise - Change was made, replace I with returned instruction
Misha Brukmanfd939082005-04-21 23:48:37 +0000168 //
Chris Lattner7e708292002-06-25 16:13:24 +0000169 Instruction *visitAdd(BinaryOperator &I);
170 Instruction *visitSub(BinaryOperator &I);
171 Instruction *visitMul(BinaryOperator &I);
Reid Spencer0a783f72006-11-02 01:53:59 +0000172 Instruction *visitURem(BinaryOperator &I);
173 Instruction *visitSRem(BinaryOperator &I);
174 Instruction *visitFRem(BinaryOperator &I);
Chris Lattnerfdb19e52008-07-14 00:15:52 +0000175 bool SimplifyDivRemOfSelect(BinaryOperator &I);
Reid Spencer0a783f72006-11-02 01:53:59 +0000176 Instruction *commonRemTransforms(BinaryOperator &I);
177 Instruction *commonIRemTransforms(BinaryOperator &I);
Reid Spencer1628cec2006-10-26 06:15:43 +0000178 Instruction *commonDivTransforms(BinaryOperator &I);
179 Instruction *commonIDivTransforms(BinaryOperator &I);
180 Instruction *visitUDiv(BinaryOperator &I);
181 Instruction *visitSDiv(BinaryOperator &I);
182 Instruction *visitFDiv(BinaryOperator &I);
Chris Lattner7e708292002-06-25 16:13:24 +0000183 Instruction *visitAnd(BinaryOperator &I);
184 Instruction *visitOr (BinaryOperator &I);
185 Instruction *visitXor(BinaryOperator &I);
Reid Spencer832254e2007-02-02 02:16:23 +0000186 Instruction *visitShl(BinaryOperator &I);
187 Instruction *visitAShr(BinaryOperator &I);
188 Instruction *visitLShr(BinaryOperator &I);
189 Instruction *commonShiftTransforms(BinaryOperator &I);
Chris Lattnera5406232008-05-19 20:18:56 +0000190 Instruction *FoldFCmp_IntToFP_Cst(FCmpInst &I, Instruction *LHSI,
191 Constant *RHSC);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000192 Instruction *visitFCmpInst(FCmpInst &I);
193 Instruction *visitICmpInst(ICmpInst &I);
194 Instruction *visitICmpInstWithCastAndCast(ICmpInst &ICI);
Chris Lattner01deb9d2007-04-03 17:43:25 +0000195 Instruction *visitICmpInstWithInstAndIntCst(ICmpInst &ICI,
196 Instruction *LHS,
197 ConstantInt *RHS);
Chris Lattner562ef782007-06-20 23:46:26 +0000198 Instruction *FoldICmpDivCst(ICmpInst &ICI, BinaryOperator *DivI,
199 ConstantInt *DivRHS);
Chris Lattner484d3cf2005-04-24 06:59:08 +0000200
Reid Spencere4d87aa2006-12-23 06:05:41 +0000201 Instruction *FoldGEPICmp(User *GEPLHS, Value *RHS,
202 ICmpInst::Predicate Cond, Instruction &I);
Reid Spencerb83eb642006-10-20 07:07:24 +0000203 Instruction *FoldShiftByConstant(Value *Op0, ConstantInt *Op1,
Reid Spencer832254e2007-02-02 02:16:23 +0000204 BinaryOperator &I);
Reid Spencer3da59db2006-11-27 01:05:10 +0000205 Instruction *commonCastTransforms(CastInst &CI);
206 Instruction *commonIntCastTransforms(CastInst &CI);
Chris Lattnerd3e28342007-04-27 17:44:50 +0000207 Instruction *commonPointerCastTransforms(CastInst &CI);
Chris Lattner8a9f5712007-04-11 06:57:46 +0000208 Instruction *visitTrunc(TruncInst &CI);
209 Instruction *visitZExt(ZExtInst &CI);
210 Instruction *visitSExt(SExtInst &CI);
Chris Lattnerb7530652008-01-27 05:29:54 +0000211 Instruction *visitFPTrunc(FPTruncInst &CI);
Reid Spencer3da59db2006-11-27 01:05:10 +0000212 Instruction *visitFPExt(CastInst &CI);
Chris Lattner0c7a9a02008-05-19 20:25:04 +0000213 Instruction *visitFPToUI(FPToUIInst &FI);
214 Instruction *visitFPToSI(FPToSIInst &FI);
Reid Spencer3da59db2006-11-27 01:05:10 +0000215 Instruction *visitUIToFP(CastInst &CI);
216 Instruction *visitSIToFP(CastInst &CI);
217 Instruction *visitPtrToInt(CastInst &CI);
Chris Lattnerf9d9e452008-01-08 07:23:51 +0000218 Instruction *visitIntToPtr(IntToPtrInst &CI);
Chris Lattnerd3e28342007-04-27 17:44:50 +0000219 Instruction *visitBitCast(BitCastInst &CI);
Chris Lattner6fb5a4a2005-01-19 21:50:18 +0000220 Instruction *FoldSelectOpOp(SelectInst &SI, Instruction *TI,
221 Instruction *FI);
Dan Gohman81b28ce2008-09-16 18:46:06 +0000222 Instruction *visitSelectInst(SelectInst &SI);
223 Instruction *visitSelectInstWithICmp(SelectInst &SI, ICmpInst *ICI);
Chris Lattner9fe38862003-06-19 17:00:31 +0000224 Instruction *visitCallInst(CallInst &CI);
225 Instruction *visitInvokeInst(InvokeInst &II);
Chris Lattner7e708292002-06-25 16:13:24 +0000226 Instruction *visitPHINode(PHINode &PN);
227 Instruction *visitGetElementPtrInst(GetElementPtrInst &GEP);
Chris Lattner0864acf2002-11-04 16:18:53 +0000228 Instruction *visitAllocationInst(AllocationInst &AI);
Chris Lattner67b1e1b2003-12-07 01:24:23 +0000229 Instruction *visitFreeInst(FreeInst &FI);
Chris Lattner833b8a42003-06-26 05:06:25 +0000230 Instruction *visitLoadInst(LoadInst &LI);
Chris Lattner2f503e62005-01-31 05:36:43 +0000231 Instruction *visitStoreInst(StoreInst &SI);
Chris Lattnerc4d10eb2003-06-04 04:46:00 +0000232 Instruction *visitBranchInst(BranchInst &BI);
Chris Lattner46238a62004-07-03 00:26:11 +0000233 Instruction *visitSwitchInst(SwitchInst &SI);
Chris Lattnerefb47352006-04-15 01:39:45 +0000234 Instruction *visitInsertElementInst(InsertElementInst &IE);
Robert Bocchino1d7456d2006-01-13 22:48:06 +0000235 Instruction *visitExtractElementInst(ExtractElementInst &EI);
Chris Lattnera844fc4c2006-04-10 22:45:52 +0000236 Instruction *visitShuffleVectorInst(ShuffleVectorInst &SVI);
Matthijs Kooijmana9012ec2008-06-11 14:05:05 +0000237 Instruction *visitExtractValueInst(ExtractValueInst &EV);
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000238
239 // visitInstruction - Specify what to return for unhandled instructions...
Chris Lattner7e708292002-06-25 16:13:24 +0000240 Instruction *visitInstruction(Instruction &I) { return 0; }
Chris Lattner8b170942002-08-09 23:47:40 +0000241
Chris Lattner9fe38862003-06-19 17:00:31 +0000242 private:
Chris Lattnera44d8a22003-10-07 22:32:43 +0000243 Instruction *visitCallSite(CallSite CS);
Chris Lattner9fe38862003-06-19 17:00:31 +0000244 bool transformConstExprCastCall(CallSite CS);
Duncan Sandscdb6d922007-09-17 10:26:40 +0000245 Instruction *transformCallThroughTrampoline(CallSite CS);
Evan Chengb98a10e2008-03-24 00:21:34 +0000246 Instruction *transformZExtICmp(ICmpInst *ICI, Instruction &CI,
247 bool DoXform = true);
Chris Lattner3d28b1b2008-05-20 05:46:13 +0000248 bool WillNotOverflowSignedAdd(Value *LHS, Value *RHS);
Chris Lattner9fe38862003-06-19 17:00:31 +0000249
Chris Lattner28977af2004-04-05 01:30:19 +0000250 public:
Chris Lattner8b170942002-08-09 23:47:40 +0000251 // InsertNewInstBefore - insert an instruction New before instruction Old
252 // in the program. Add the new instruction to the worklist.
253 //
Chris Lattner955f3312004-09-28 21:48:02 +0000254 Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) {
Chris Lattnere6f9a912002-08-23 18:32:43 +0000255 assert(New && New->getParent() == 0 &&
256 "New instruction already inserted into a basic block!");
Chris Lattner8b170942002-08-09 23:47:40 +0000257 BasicBlock *BB = Old.getParent();
258 BB->getInstList().insert(&Old, New); // Insert inst
Chris Lattnerdbab3862007-03-02 21:28:56 +0000259 AddToWorkList(New);
Chris Lattner4cb170c2004-02-23 06:38:22 +0000260 return New;
Chris Lattner8b170942002-08-09 23:47:40 +0000261 }
262
Chris Lattner0c967662004-09-24 15:21:34 +0000263 /// InsertCastBefore - Insert a cast of V to TY before the instruction POS.
264 /// This also adds the cast to the worklist. Finally, this returns the
265 /// cast.
Reid Spencer17212df2006-12-12 09:18:51 +0000266 Value *InsertCastBefore(Instruction::CastOps opc, Value *V, const Type *Ty,
267 Instruction &Pos) {
Chris Lattner0c967662004-09-24 15:21:34 +0000268 if (V->getType() == Ty) return V;
Misha Brukmanfd939082005-04-21 23:48:37 +0000269
Chris Lattnere2ed0572006-04-06 19:19:17 +0000270 if (Constant *CV = dyn_cast<Constant>(V))
Reid Spencer17212df2006-12-12 09:18:51 +0000271 return ConstantExpr::getCast(opc, CV, Ty);
Chris Lattnere2ed0572006-04-06 19:19:17 +0000272
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000273 Instruction *C = CastInst::Create(opc, V, Ty, V->getName(), &Pos);
Chris Lattnerdbab3862007-03-02 21:28:56 +0000274 AddToWorkList(C);
Chris Lattner0c967662004-09-24 15:21:34 +0000275 return C;
276 }
Chris Lattner6d0339d2008-01-13 22:23:22 +0000277
278 Value *InsertBitCastBefore(Value *V, const Type *Ty, Instruction &Pos) {
279 return InsertCastBefore(Instruction::BitCast, V, Ty, Pos);
280 }
281
Chris Lattner0c967662004-09-24 15:21:34 +0000282
Chris Lattner8b170942002-08-09 23:47:40 +0000283 // ReplaceInstUsesWith - This method is to be used when an instruction is
284 // found to be dead, replacable with another preexisting expression. Here
285 // we add all uses of I to the worklist, replace all uses of I with the new
286 // value, then return I, so that the inst combiner will know that I was
287 // modified.
288 //
289 Instruction *ReplaceInstUsesWith(Instruction &I, Value *V) {
Chris Lattner7bcc0e72004-02-28 05:22:00 +0000290 AddUsersToWorkList(I); // Add all modified instrs to worklist
Chris Lattner15a76c02004-04-05 02:10:19 +0000291 if (&I != V) {
292 I.replaceAllUsesWith(V);
293 return &I;
294 } else {
295 // If we are replacing the instruction with itself, this must be in a
296 // segment of unreachable code, so just clobber the instruction.
Chris Lattner17be6352004-10-18 02:59:09 +0000297 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner15a76c02004-04-05 02:10:19 +0000298 return &I;
299 }
Chris Lattner8b170942002-08-09 23:47:40 +0000300 }
Chris Lattner7bcc0e72004-02-28 05:22:00 +0000301
Chris Lattner6dce1a72006-02-07 06:56:34 +0000302 // UpdateValueUsesWith - This method is to be used when an value is
303 // found to be replacable with another preexisting expression or was
304 // updated. Here we add all uses of I to the worklist, replace all uses of
305 // I with the new value (unless the instruction was just updated), then
306 // return true, so that the inst combiner will know that I was modified.
307 //
308 bool UpdateValueUsesWith(Value *Old, Value *New) {
309 AddUsersToWorkList(*Old); // Add all modified instrs to worklist
310 if (Old != New)
311 Old->replaceAllUsesWith(New);
312 if (Instruction *I = dyn_cast<Instruction>(Old))
Chris Lattnerdbab3862007-03-02 21:28:56 +0000313 AddToWorkList(I);
Chris Lattnerf8c36f52006-02-12 08:02:11 +0000314 if (Instruction *I = dyn_cast<Instruction>(New))
Chris Lattnerdbab3862007-03-02 21:28:56 +0000315 AddToWorkList(I);
Chris Lattner6dce1a72006-02-07 06:56:34 +0000316 return true;
317 }
318
Chris Lattner7bcc0e72004-02-28 05:22:00 +0000319 // EraseInstFromFunction - When dealing with an instruction that has side
320 // effects or produces a void value, we can't rely on DCE to delete the
321 // instruction. Instead, visit methods should return the value returned by
322 // this function.
323 Instruction *EraseInstFromFunction(Instruction &I) {
324 assert(I.use_empty() && "Cannot erase instruction that is used!");
325 AddUsesToWorkList(I);
Chris Lattnerdbab3862007-03-02 21:28:56 +0000326 RemoveFromWorkList(&I);
Chris Lattner954f66a2004-11-18 21:41:39 +0000327 I.eraseFromParent();
Chris Lattner7bcc0e72004-02-28 05:22:00 +0000328 return 0; // Don't do anything with FI
329 }
Chris Lattner173234a2008-06-02 01:18:21 +0000330
331 void ComputeMaskedBits(Value *V, const APInt &Mask, APInt &KnownZero,
332 APInt &KnownOne, unsigned Depth = 0) const {
333 return llvm::ComputeMaskedBits(V, Mask, KnownZero, KnownOne, TD, Depth);
334 }
335
336 bool MaskedValueIsZero(Value *V, const APInt &Mask,
337 unsigned Depth = 0) const {
338 return llvm::MaskedValueIsZero(V, Mask, TD, Depth);
339 }
340 unsigned ComputeNumSignBits(Value *Op, unsigned Depth = 0) const {
341 return llvm::ComputeNumSignBits(Op, TD, Depth);
342 }
Chris Lattner7bcc0e72004-02-28 05:22:00 +0000343
Chris Lattneraa9c1f12003-08-13 20:16:26 +0000344 private:
Chris Lattner24c8e382003-07-24 17:35:25 +0000345 /// InsertOperandCastBefore - This inserts a cast of V to DestTy before the
346 /// InsertBefore instruction. This is specialized a bit to avoid inserting
347 /// casts that are known to not do anything...
348 ///
Reid Spencer17212df2006-12-12 09:18:51 +0000349 Value *InsertOperandCastBefore(Instruction::CastOps opcode,
350 Value *V, const Type *DestTy,
Chris Lattner24c8e382003-07-24 17:35:25 +0000351 Instruction *InsertBefore);
352
Reid Spencere4d87aa2006-12-23 06:05:41 +0000353 /// SimplifyCommutative - This performs a few simplifications for
354 /// commutative operators.
Chris Lattnerc8802d22003-03-11 00:12:48 +0000355 bool SimplifyCommutative(BinaryOperator &I);
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +0000356
Reid Spencere4d87aa2006-12-23 06:05:41 +0000357 /// SimplifyCompare - This reorders the operands of a CmpInst to get them in
358 /// most-complex to least-complex order.
359 bool SimplifyCompare(CmpInst &I);
360
Reid Spencer2ec619a2007-03-23 21:24:59 +0000361 /// SimplifyDemandedBits - Attempts to replace V with a simpler value based
362 /// on the demanded bits.
Reid Spencer8cb68342007-03-12 17:25:59 +0000363 bool SimplifyDemandedBits(Value *V, APInt DemandedMask,
364 APInt& KnownZero, APInt& KnownOne,
365 unsigned Depth = 0);
366
Chris Lattner867b99f2006-10-05 06:55:50 +0000367 Value *SimplifyDemandedVectorElts(Value *V, uint64_t DemandedElts,
368 uint64_t &UndefElts, unsigned Depth = 0);
369
Chris Lattner4e998b22004-09-29 05:07:12 +0000370 // FoldOpIntoPhi - Given a binary operator or cast instruction which has a
371 // PHI node as operand #0, see if we can fold the instruction into the PHI
372 // (which is only possible if all operands to the PHI are constants).
373 Instruction *FoldOpIntoPhi(Instruction &I);
374
Chris Lattnerbac32862004-11-14 19:13:23 +0000375 // FoldPHIArgOpIntoPHI - If all operands to a PHI node are the same "unary"
376 // operator and they all are only used by the PHI, PHI together their
377 // inputs, and do the operation once, to the result of the PHI.
378 Instruction *FoldPHIArgOpIntoPHI(PHINode &PN);
Chris Lattner7da52b22006-11-01 04:51:18 +0000379 Instruction *FoldPHIArgBinOpIntoPHI(PHINode &PN);
380
381
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000382 Instruction *OptAndOp(Instruction *Op, ConstantInt *OpRHS,
383 ConstantInt *AndRHS, BinaryOperator &TheAnd);
Chris Lattnerc8e77562005-09-18 04:24:45 +0000384
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000385 Value *FoldLogicalPlusAnd(Value *LHS, Value *RHS, ConstantInt *Mask,
Chris Lattnerc8e77562005-09-18 04:24:45 +0000386 bool isSub, Instruction &I);
Chris Lattnera96879a2004-09-29 17:40:11 +0000387 Instruction *InsertRangeTest(Value *V, Constant *Lo, Constant *Hi,
Reid Spencere4d87aa2006-12-23 06:05:41 +0000388 bool isSigned, bool Inside, Instruction &IB);
Chris Lattnerd3e28342007-04-27 17:44:50 +0000389 Instruction *PromoteCastOfAllocation(BitCastInst &CI, AllocationInst &AI);
Chris Lattnerafe91a52006-06-15 19:07:26 +0000390 Instruction *MatchBSwap(BinaryOperator &I);
Chris Lattner3284d1f2007-04-15 00:07:55 +0000391 bool SimplifyStoreAtEndOfBlock(StoreInst &SI);
Chris Lattnerf497b022008-01-13 23:50:23 +0000392 Instruction *SimplifyMemTransfer(MemIntrinsic *MI);
Chris Lattner69ea9d22008-04-30 06:39:11 +0000393 Instruction *SimplifyMemSet(MemSetInst *MI);
Chris Lattnerf497b022008-01-13 23:50:23 +0000394
Chris Lattnerafe91a52006-06-15 19:07:26 +0000395
Reid Spencerc55b2432006-12-13 18:21:21 +0000396 Value *EvaluateInDifferentType(Value *V, const Type *Ty, bool isSigned);
Dan Gohmaneee962e2008-04-10 18:43:06 +0000397
Dan Gohmaneee962e2008-04-10 18:43:06 +0000398 bool CanEvaluateInDifferentType(Value *V, const IntegerType *Ty,
399 unsigned CastOpc,
400 int &NumCastsRemoved);
401 unsigned GetOrEnforceKnownAlignment(Value *V,
402 unsigned PrefAlign = 0);
Matthijs Kooijmana9012ec2008-06-11 14:05:05 +0000403
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000404 };
405}
406
Dan Gohman844731a2008-05-13 00:00:25 +0000407char InstCombiner::ID = 0;
408static RegisterPass<InstCombiner>
409X("instcombine", "Combine redundant instructions");
410
Chris Lattner4f98c562003-03-10 21:43:22 +0000411// getComplexity: Assign a complexity or rank value to LLVM Values...
Chris Lattnere87597f2004-10-16 18:11:37 +0000412// 0 -> undef, 1 -> Const, 2 -> Other, 3 -> Arg, 3 -> Unary, 4 -> OtherInst
Chris Lattner4f98c562003-03-10 21:43:22 +0000413static unsigned getComplexity(Value *V) {
414 if (isa<Instruction>(V)) {
415 if (BinaryOperator::isNeg(V) || BinaryOperator::isNot(V))
Chris Lattnere87597f2004-10-16 18:11:37 +0000416 return 3;
417 return 4;
Chris Lattner4f98c562003-03-10 21:43:22 +0000418 }
Chris Lattnere87597f2004-10-16 18:11:37 +0000419 if (isa<Argument>(V)) return 3;
420 return isa<Constant>(V) ? (isa<UndefValue>(V) ? 0 : 1) : 2;
Chris Lattner4f98c562003-03-10 21:43:22 +0000421}
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000422
Chris Lattnerc8802d22003-03-11 00:12:48 +0000423// isOnlyUse - Return true if this instruction will be deleted if we stop using
424// it.
425static bool isOnlyUse(Value *V) {
Chris Lattnerfd059242003-10-15 16:48:29 +0000426 return V->hasOneUse() || isa<Constant>(V);
Chris Lattnerc8802d22003-03-11 00:12:48 +0000427}
428
Chris Lattner4cb170c2004-02-23 06:38:22 +0000429// getPromotedType - Return the specified type promoted as it would be to pass
430// though a va_arg area...
431static const Type *getPromotedType(const Type *Ty) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000432 if (const IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
433 if (ITy->getBitWidth() < 32)
434 return Type::Int32Ty;
Chris Lattner2b7e0ad2007-05-23 01:17:04 +0000435 }
Reid Spencera54b7cb2007-01-12 07:05:14 +0000436 return Ty;
Chris Lattner4cb170c2004-02-23 06:38:22 +0000437}
438
Reid Spencer3da59db2006-11-27 01:05:10 +0000439/// getBitCastOperand - If the specified operand is a CastInst or a constant
440/// expression bitcast, return the operand value, otherwise return null.
441static Value *getBitCastOperand(Value *V) {
442 if (BitCastInst *I = dyn_cast<BitCastInst>(V))
Chris Lattnereed48272005-09-13 00:40:14 +0000443 return I->getOperand(0);
444 else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
Reid Spencer3da59db2006-11-27 01:05:10 +0000445 if (CE->getOpcode() == Instruction::BitCast)
Chris Lattnereed48272005-09-13 00:40:14 +0000446 return CE->getOperand(0);
447 return 0;
448}
449
Reid Spencer3da59db2006-11-27 01:05:10 +0000450/// This function is a wrapper around CastInst::isEliminableCastPair. It
451/// simply extracts arguments and returns what that function returns.
Reid Spencer3da59db2006-11-27 01:05:10 +0000452static Instruction::CastOps
453isEliminableCastPair(
454 const CastInst *CI, ///< The first cast instruction
455 unsigned opcode, ///< The opcode of the second cast instruction
456 const Type *DstTy, ///< The target type for the second cast instruction
457 TargetData *TD ///< The target data for pointer size
458) {
459
460 const Type *SrcTy = CI->getOperand(0)->getType(); // A from above
461 const Type *MidTy = CI->getType(); // B from above
Chris Lattner33a61132006-05-06 09:00:16 +0000462
Reid Spencer3da59db2006-11-27 01:05:10 +0000463 // Get the opcodes of the two Cast instructions
464 Instruction::CastOps firstOp = Instruction::CastOps(CI->getOpcode());
465 Instruction::CastOps secondOp = Instruction::CastOps(opcode);
Chris Lattner33a61132006-05-06 09:00:16 +0000466
Reid Spencer3da59db2006-11-27 01:05:10 +0000467 return Instruction::CastOps(
468 CastInst::isEliminableCastPair(firstOp, secondOp, SrcTy, MidTy,
469 DstTy, TD->getIntPtrType()));
Chris Lattner33a61132006-05-06 09:00:16 +0000470}
471
472/// ValueRequiresCast - Return true if the cast from "V to Ty" actually results
473/// in any code being generated. It does not require codegen if V is simple
474/// enough or if the cast can be folded into other casts.
Reid Spencere4d87aa2006-12-23 06:05:41 +0000475static bool ValueRequiresCast(Instruction::CastOps opcode, const Value *V,
476 const Type *Ty, TargetData *TD) {
Chris Lattner33a61132006-05-06 09:00:16 +0000477 if (V->getType() == Ty || isa<Constant>(V)) return false;
478
Chris Lattner01575b72006-05-25 23:24:33 +0000479 // If this is another cast that can be eliminated, it isn't codegen either.
Chris Lattner33a61132006-05-06 09:00:16 +0000480 if (const CastInst *CI = dyn_cast<CastInst>(V))
Reid Spencere4d87aa2006-12-23 06:05:41 +0000481 if (isEliminableCastPair(CI, opcode, Ty, TD))
Chris Lattner33a61132006-05-06 09:00:16 +0000482 return false;
483 return true;
484}
485
486/// InsertOperandCastBefore - This inserts a cast of V to DestTy before the
487/// InsertBefore instruction. This is specialized a bit to avoid inserting
488/// casts that are known to not do anything...
489///
Reid Spencer17212df2006-12-12 09:18:51 +0000490Value *InstCombiner::InsertOperandCastBefore(Instruction::CastOps opcode,
491 Value *V, const Type *DestTy,
Chris Lattner33a61132006-05-06 09:00:16 +0000492 Instruction *InsertBefore) {
493 if (V->getType() == DestTy) return V;
494 if (Constant *C = dyn_cast<Constant>(V))
Reid Spencer17212df2006-12-12 09:18:51 +0000495 return ConstantExpr::getCast(opcode, C, DestTy);
Chris Lattner33a61132006-05-06 09:00:16 +0000496
Reid Spencer17212df2006-12-12 09:18:51 +0000497 return InsertCastBefore(opcode, V, DestTy, *InsertBefore);
Chris Lattner33a61132006-05-06 09:00:16 +0000498}
499
Chris Lattner4f98c562003-03-10 21:43:22 +0000500// SimplifyCommutative - This performs a few simplifications for commutative
501// operators:
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000502//
Chris Lattner4f98c562003-03-10 21:43:22 +0000503// 1. Order operands such that they are listed from right (least complex) to
504// left (most complex). This puts constants before unary operators before
505// binary operators.
506//
Chris Lattnerc8802d22003-03-11 00:12:48 +0000507// 2. Transform: (op (op V, C1), C2) ==> (op V, (op C1, C2))
508// 3. Transform: (op (op V1, C1), (op V2, C2)) ==> (op (op V1, V2), (op C1,C2))
Chris Lattner4f98c562003-03-10 21:43:22 +0000509//
Chris Lattnerc8802d22003-03-11 00:12:48 +0000510bool InstCombiner::SimplifyCommutative(BinaryOperator &I) {
Chris Lattner4f98c562003-03-10 21:43:22 +0000511 bool Changed = false;
512 if (getComplexity(I.getOperand(0)) < getComplexity(I.getOperand(1)))
513 Changed = !I.swapOperands();
Misha Brukmanfd939082005-04-21 23:48:37 +0000514
Chris Lattner4f98c562003-03-10 21:43:22 +0000515 if (!I.isAssociative()) return Changed;
516 Instruction::BinaryOps Opcode = I.getOpcode();
Chris Lattnerc8802d22003-03-11 00:12:48 +0000517 if (BinaryOperator *Op = dyn_cast<BinaryOperator>(I.getOperand(0)))
518 if (Op->getOpcode() == Opcode && isa<Constant>(Op->getOperand(1))) {
519 if (isa<Constant>(I.getOperand(1))) {
Chris Lattner2a9c8472003-05-27 16:40:51 +0000520 Constant *Folded = ConstantExpr::get(I.getOpcode(),
521 cast<Constant>(I.getOperand(1)),
522 cast<Constant>(Op->getOperand(1)));
Chris Lattnerc8802d22003-03-11 00:12:48 +0000523 I.setOperand(0, Op->getOperand(0));
524 I.setOperand(1, Folded);
525 return true;
526 } else if (BinaryOperator *Op1=dyn_cast<BinaryOperator>(I.getOperand(1)))
527 if (Op1->getOpcode() == Opcode && isa<Constant>(Op1->getOperand(1)) &&
528 isOnlyUse(Op) && isOnlyUse(Op1)) {
529 Constant *C1 = cast<Constant>(Op->getOperand(1));
530 Constant *C2 = cast<Constant>(Op1->getOperand(1));
531
532 // Fold (op (op V1, C1), (op V2, C2)) ==> (op (op V1, V2), (op C1,C2))
Chris Lattner2a9c8472003-05-27 16:40:51 +0000533 Constant *Folded = ConstantExpr::get(I.getOpcode(), C1, C2);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000534 Instruction *New = BinaryOperator::Create(Opcode, Op->getOperand(0),
Chris Lattnerc8802d22003-03-11 00:12:48 +0000535 Op1->getOperand(0),
536 Op1->getName(), &I);
Chris Lattnerdbab3862007-03-02 21:28:56 +0000537 AddToWorkList(New);
Chris Lattnerc8802d22003-03-11 00:12:48 +0000538 I.setOperand(0, New);
539 I.setOperand(1, Folded);
540 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000541 }
Chris Lattner4f98c562003-03-10 21:43:22 +0000542 }
Chris Lattner4f98c562003-03-10 21:43:22 +0000543 return Changed;
Chris Lattnerdd841ae2002-04-18 17:39:14 +0000544}
Chris Lattner8a2a3112001-12-14 16:52:21 +0000545
Reid Spencere4d87aa2006-12-23 06:05:41 +0000546/// SimplifyCompare - For a CmpInst this function just orders the operands
547/// so that theyare listed from right (least complex) to left (most complex).
548/// This puts constants before unary operators before binary operators.
549bool InstCombiner::SimplifyCompare(CmpInst &I) {
550 if (getComplexity(I.getOperand(0)) >= getComplexity(I.getOperand(1)))
551 return false;
552 I.swapOperands();
553 // Compare instructions are not associative so there's nothing else we can do.
554 return true;
555}
556
Chris Lattner8d969642003-03-10 23:06:50 +0000557// dyn_castNegVal - Given a 'sub' instruction, return the RHS of the instruction
558// if the LHS is a constant zero (which is the 'negate' form).
Chris Lattnerb35dde12002-05-06 16:49:18 +0000559//
Chris Lattner8d969642003-03-10 23:06:50 +0000560static inline Value *dyn_castNegVal(Value *V) {
561 if (BinaryOperator::isNeg(V))
Chris Lattnera1df33c2005-04-24 07:30:14 +0000562 return BinaryOperator::getNegArgument(V);
Chris Lattner8d969642003-03-10 23:06:50 +0000563
Chris Lattner0ce85802004-12-14 20:08:06 +0000564 // Constants can be considered to be negated values if they can be folded.
565 if (ConstantInt *C = dyn_cast<ConstantInt>(V))
566 return ConstantExpr::getNeg(C);
Nick Lewycky18b3da62008-05-23 04:54:45 +0000567
568 if (ConstantVector *C = dyn_cast<ConstantVector>(V))
569 if (C->getType()->getElementType()->isInteger())
570 return ConstantExpr::getNeg(C);
571
Chris Lattner8d969642003-03-10 23:06:50 +0000572 return 0;
Chris Lattnerb35dde12002-05-06 16:49:18 +0000573}
574
Chris Lattner8d969642003-03-10 23:06:50 +0000575static inline Value *dyn_castNotVal(Value *V) {
576 if (BinaryOperator::isNot(V))
Chris Lattnera1df33c2005-04-24 07:30:14 +0000577 return BinaryOperator::getNotArgument(V);
Chris Lattner8d969642003-03-10 23:06:50 +0000578
579 // Constants can be considered to be not'ed values...
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000580 if (ConstantInt *C = dyn_cast<ConstantInt>(V))
Zhou Sheng4a1822a2007-04-02 13:45:30 +0000581 return ConstantInt::get(~C->getValue());
Chris Lattner8d969642003-03-10 23:06:50 +0000582 return 0;
583}
584
Chris Lattnerc8802d22003-03-11 00:12:48 +0000585// dyn_castFoldableMul - If this value is a multiply that can be folded into
586// other computations (because it has a constant operand), return the
Chris Lattner50af16a2004-11-13 19:50:12 +0000587// non-constant operand of the multiply, and set CST to point to the multiplier.
588// Otherwise, return null.
Chris Lattnerc8802d22003-03-11 00:12:48 +0000589//
Chris Lattner50af16a2004-11-13 19:50:12 +0000590static inline Value *dyn_castFoldableMul(Value *V, ConstantInt *&CST) {
Chris Lattner42a75512007-01-15 02:27:26 +0000591 if (V->hasOneUse() && V->getType()->isInteger())
Chris Lattner50af16a2004-11-13 19:50:12 +0000592 if (Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattnerc8802d22003-03-11 00:12:48 +0000593 if (I->getOpcode() == Instruction::Mul)
Chris Lattner50e60c72004-11-15 05:54:07 +0000594 if ((CST = dyn_cast<ConstantInt>(I->getOperand(1))))
Chris Lattnerc8802d22003-03-11 00:12:48 +0000595 return I->getOperand(0);
Chris Lattner50af16a2004-11-13 19:50:12 +0000596 if (I->getOpcode() == Instruction::Shl)
Chris Lattner50e60c72004-11-15 05:54:07 +0000597 if ((CST = dyn_cast<ConstantInt>(I->getOperand(1)))) {
Chris Lattner50af16a2004-11-13 19:50:12 +0000598 // The multiplier is really 1 << CST.
Zhou Sheng97b52c22007-03-29 01:57:21 +0000599 uint32_t BitWidth = cast<IntegerType>(V->getType())->getBitWidth();
Zhou Sheng0e2d3ac2007-03-30 09:29:48 +0000600 uint32_t CSTVal = CST->getLimitedValue(BitWidth);
Zhou Sheng97b52c22007-03-29 01:57:21 +0000601 CST = ConstantInt::get(APInt(BitWidth, 1).shl(CSTVal));
Chris Lattner50af16a2004-11-13 19:50:12 +0000602 return I->getOperand(0);
603 }
604 }
Chris Lattnerc8802d22003-03-11 00:12:48 +0000605 return 0;
Chris Lattnera2881962003-02-18 19:28:33 +0000606}
Chris Lattneraf2930e2002-08-14 17:51:49 +0000607
Chris Lattner574da9b2005-01-13 20:14:25 +0000608/// dyn_castGetElementPtr - If this is a getelementptr instruction or constant
609/// expression, return it.
610static User *dyn_castGetElementPtr(Value *V) {
611 if (isa<GetElementPtrInst>(V)) return cast<User>(V);
612 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
613 if (CE->getOpcode() == Instruction::GetElementPtr)
614 return cast<User>(V);
615 return false;
616}
617
Dan Gohmaneee962e2008-04-10 18:43:06 +0000618/// getOpcode - If this is an Instruction or a ConstantExpr, return the
619/// opcode value. Otherwise return UserOp1.
Dan Gohmanb99e2e22008-05-29 19:53:46 +0000620static unsigned getOpcode(const Value *V) {
621 if (const Instruction *I = dyn_cast<Instruction>(V))
Dan Gohmaneee962e2008-04-10 18:43:06 +0000622 return I->getOpcode();
Dan Gohmanb99e2e22008-05-29 19:53:46 +0000623 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
Dan Gohmaneee962e2008-04-10 18:43:06 +0000624 return CE->getOpcode();
625 // Use UserOp1 to mean there's no opcode.
626 return Instruction::UserOp1;
627}
628
Reid Spencer7177c3a2007-03-25 05:33:51 +0000629/// AddOne - Add one to a ConstantInt
Chris Lattnera96879a2004-09-29 17:40:11 +0000630static ConstantInt *AddOne(ConstantInt *C) {
Reid Spencer2149a9d2007-03-25 19:55:33 +0000631 APInt Val(C->getValue());
632 return ConstantInt::get(++Val);
Chris Lattner955f3312004-09-28 21:48:02 +0000633}
Reid Spencer7177c3a2007-03-25 05:33:51 +0000634/// SubOne - Subtract one from a ConstantInt
Chris Lattnera96879a2004-09-29 17:40:11 +0000635static ConstantInt *SubOne(ConstantInt *C) {
Reid Spencer2149a9d2007-03-25 19:55:33 +0000636 APInt Val(C->getValue());
637 return ConstantInt::get(--Val);
Reid Spencer7177c3a2007-03-25 05:33:51 +0000638}
639/// Add - Add two ConstantInts together
640static ConstantInt *Add(ConstantInt *C1, ConstantInt *C2) {
641 return ConstantInt::get(C1->getValue() + C2->getValue());
642}
643/// And - Bitwise AND two ConstantInts together
644static ConstantInt *And(ConstantInt *C1, ConstantInt *C2) {
645 return ConstantInt::get(C1->getValue() & C2->getValue());
646}
647/// Subtract - Subtract one ConstantInt from another
648static ConstantInt *Subtract(ConstantInt *C1, ConstantInt *C2) {
649 return ConstantInt::get(C1->getValue() - C2->getValue());
650}
651/// Multiply - Multiply two ConstantInts together
652static ConstantInt *Multiply(ConstantInt *C1, ConstantInt *C2) {
653 return ConstantInt::get(C1->getValue() * C2->getValue());
Chris Lattner955f3312004-09-28 21:48:02 +0000654}
Nick Lewyckye0cfecf2008-02-18 22:48:05 +0000655/// MultiplyOverflows - True if the multiply can not be expressed in an int
656/// this size.
657static bool MultiplyOverflows(ConstantInt *C1, ConstantInt *C2, bool sign) {
658 uint32_t W = C1->getBitWidth();
659 APInt LHSExt = C1->getValue(), RHSExt = C2->getValue();
660 if (sign) {
661 LHSExt.sext(W * 2);
662 RHSExt.sext(W * 2);
663 } else {
664 LHSExt.zext(W * 2);
665 RHSExt.zext(W * 2);
666 }
667
668 APInt MulExt = LHSExt * RHSExt;
669
670 if (sign) {
671 APInt Min = APInt::getSignedMinValue(W).sext(W * 2);
672 APInt Max = APInt::getSignedMaxValue(W).sext(W * 2);
673 return MulExt.slt(Min) || MulExt.sgt(Max);
674 } else
675 return MulExt.ugt(APInt::getLowBitsSet(W * 2, W));
676}
Chris Lattner955f3312004-09-28 21:48:02 +0000677
Reid Spencere7816b52007-03-08 01:52:58 +0000678
Chris Lattner255d8912006-02-11 09:31:47 +0000679/// ShrinkDemandedConstant - Check to see if the specified operand of the
680/// specified instruction is a constant integer. If so, check to see if there
681/// are any bits set in the constant that are not demanded. If so, shrink the
682/// constant and return true.
683static bool ShrinkDemandedConstant(Instruction *I, unsigned OpNo,
Reid Spencer6b79e2d2007-03-12 17:15:10 +0000684 APInt Demanded) {
685 assert(I && "No instruction?");
686 assert(OpNo < I->getNumOperands() && "Operand index too large");
687
688 // If the operand is not a constant integer, nothing to do.
689 ConstantInt *OpC = dyn_cast<ConstantInt>(I->getOperand(OpNo));
690 if (!OpC) return false;
691
692 // If there are no bits set that aren't demanded, nothing to do.
693 Demanded.zextOrTrunc(OpC->getValue().getBitWidth());
694 if ((~Demanded & OpC->getValue()) == 0)
695 return false;
696
697 // This instruction is producing bits that are not demanded. Shrink the RHS.
698 Demanded &= OpC->getValue();
699 I->setOperand(OpNo, ConstantInt::get(Demanded));
700 return true;
701}
702
Chris Lattnerbf5d8a82006-02-12 02:07:56 +0000703// ComputeSignedMinMaxValuesFromKnownBits - Given a signed integer type and a
704// set of known zero and one bits, compute the maximum and minimum values that
705// could have the specified known zero and known one bits, returning them in
706// min/max.
707static void ComputeSignedMinMaxValuesFromKnownBits(const Type *Ty,
Reid Spencer0460fb32007-03-22 20:36:03 +0000708 const APInt& KnownZero,
709 const APInt& KnownOne,
710 APInt& Min, APInt& Max) {
711 uint32_t BitWidth = cast<IntegerType>(Ty)->getBitWidth();
712 assert(KnownZero.getBitWidth() == BitWidth &&
713 KnownOne.getBitWidth() == BitWidth &&
714 Min.getBitWidth() == BitWidth && Max.getBitWidth() == BitWidth &&
715 "Ty, KnownZero, KnownOne and Min, Max must have equal bitwidth.");
Reid Spencer2f549172007-03-25 04:26:16 +0000716 APInt UnknownBits = ~(KnownZero|KnownOne);
Chris Lattnerbf5d8a82006-02-12 02:07:56 +0000717
Chris Lattnerbf5d8a82006-02-12 02:07:56 +0000718 // The minimum value is when all unknown bits are zeros, EXCEPT for the sign
719 // bit if it is unknown.
720 Min = KnownOne;
721 Max = KnownOne|UnknownBits;
722
Zhou Sheng4acf1552007-03-28 05:15:57 +0000723 if (UnknownBits[BitWidth-1]) { // Sign bit is unknown
Zhou Sheng4a1822a2007-04-02 13:45:30 +0000724 Min.set(BitWidth-1);
725 Max.clear(BitWidth-1);
Chris Lattnerbf5d8a82006-02-12 02:07:56 +0000726 }
Chris Lattnerbf5d8a82006-02-12 02:07:56 +0000727}
728
729// ComputeUnsignedMinMaxValuesFromKnownBits - Given an unsigned integer type and
730// a set of known zero and one bits, compute the maximum and minimum values that
731// could have the specified known zero and known one bits, returning them in
732// min/max.
733static void ComputeUnsignedMinMaxValuesFromKnownBits(const Type *Ty,
Chris Lattnera9ff5eb2007-08-05 08:47:58 +0000734 const APInt &KnownZero,
735 const APInt &KnownOne,
736 APInt &Min, APInt &Max) {
737 uint32_t BitWidth = cast<IntegerType>(Ty)->getBitWidth(); BitWidth = BitWidth;
Reid Spencer0460fb32007-03-22 20:36:03 +0000738 assert(KnownZero.getBitWidth() == BitWidth &&
739 KnownOne.getBitWidth() == BitWidth &&
740 Min.getBitWidth() == BitWidth && Max.getBitWidth() &&
741 "Ty, KnownZero, KnownOne and Min, Max must have equal bitwidth.");
Reid Spencer2f549172007-03-25 04:26:16 +0000742 APInt UnknownBits = ~(KnownZero|KnownOne);
Chris Lattnerbf5d8a82006-02-12 02:07:56 +0000743
744 // The minimum value is when the unknown bits are all zeros.
745 Min = KnownOne;
746 // The maximum value is when the unknown bits are all ones.
747 Max = KnownOne|UnknownBits;
748}
Chris Lattner255d8912006-02-11 09:31:47 +0000749
Reid Spencer8cb68342007-03-12 17:25:59 +0000750/// SimplifyDemandedBits - This function attempts to replace V with a simpler
751/// value based on the demanded bits. When this function is called, it is known
752/// that only the bits set in DemandedMask of the result of V are ever used
753/// downstream. Consequently, depending on the mask and V, it may be possible
754/// to replace V with a constant or one of its operands. In such cases, this
755/// function does the replacement and returns true. In all other cases, it
756/// returns false after analyzing the expression and setting KnownOne and known
757/// to be one in the expression. KnownZero contains all the bits that are known
758/// to be zero in the expression. These are provided to potentially allow the
759/// caller (which might recursively be SimplifyDemandedBits itself) to simplify
760/// the expression. KnownOne and KnownZero always follow the invariant that
761/// KnownOne & KnownZero == 0. That is, a bit can't be both 1 and 0. Note that
762/// the bits in KnownOne and KnownZero may only be accurate for those bits set
763/// in DemandedMask. Note also that the bitwidth of V, DemandedMask, KnownZero
764/// and KnownOne must all be the same.
765bool InstCombiner::SimplifyDemandedBits(Value *V, APInt DemandedMask,
766 APInt& KnownZero, APInt& KnownOne,
767 unsigned Depth) {
768 assert(V != 0 && "Null pointer of Value???");
769 assert(Depth <= 6 && "Limit Search Depth");
770 uint32_t BitWidth = DemandedMask.getBitWidth();
771 const IntegerType *VTy = cast<IntegerType>(V->getType());
772 assert(VTy->getBitWidth() == BitWidth &&
773 KnownZero.getBitWidth() == BitWidth &&
774 KnownOne.getBitWidth() == BitWidth &&
775 "Value *V, DemandedMask, KnownZero and KnownOne \
776 must have same BitWidth");
777 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
778 // We know all of the bits for a constant!
779 KnownOne = CI->getValue() & DemandedMask;
780 KnownZero = ~KnownOne & DemandedMask;
781 return false;
782 }
783
Zhou Sheng96704452007-03-14 03:21:24 +0000784 KnownZero.clear();
785 KnownOne.clear();
Reid Spencer8cb68342007-03-12 17:25:59 +0000786 if (!V->hasOneUse()) { // Other users may use these bits.
787 if (Depth != 0) { // Not at the root.
788 // Just compute the KnownZero/KnownOne bits to simplify things downstream.
789 ComputeMaskedBits(V, DemandedMask, KnownZero, KnownOne, Depth);
790 return false;
791 }
792 // If this is the root being simplified, allow it to have multiple uses,
793 // just set the DemandedMask to all bits.
794 DemandedMask = APInt::getAllOnesValue(BitWidth);
795 } else if (DemandedMask == 0) { // Not demanding any bits from V.
796 if (V != UndefValue::get(VTy))
797 return UpdateValueUsesWith(V, UndefValue::get(VTy));
798 return false;
799 } else if (Depth == 6) { // Limit search depth.
800 return false;
801 }
802
803 Instruction *I = dyn_cast<Instruction>(V);
804 if (!I) return false; // Only analyze instructions.
805
Reid Spencer8cb68342007-03-12 17:25:59 +0000806 APInt LHSKnownZero(BitWidth, 0), LHSKnownOne(BitWidth, 0);
807 APInt &RHSKnownZero = KnownZero, &RHSKnownOne = KnownOne;
808 switch (I->getOpcode()) {
Dan Gohman23e8b712008-04-28 17:02:21 +0000809 default:
810 ComputeMaskedBits(V, DemandedMask, RHSKnownZero, RHSKnownOne, Depth);
811 break;
Reid Spencer8cb68342007-03-12 17:25:59 +0000812 case Instruction::And:
813 // If either the LHS or the RHS are Zero, the result is zero.
814 if (SimplifyDemandedBits(I->getOperand(1), DemandedMask,
815 RHSKnownZero, RHSKnownOne, Depth+1))
816 return true;
817 assert((RHSKnownZero & RHSKnownOne) == 0 &&
818 "Bits known to be one AND zero?");
819
820 // If something is known zero on the RHS, the bits aren't demanded on the
821 // LHS.
822 if (SimplifyDemandedBits(I->getOperand(0), DemandedMask & ~RHSKnownZero,
823 LHSKnownZero, LHSKnownOne, Depth+1))
824 return true;
825 assert((LHSKnownZero & LHSKnownOne) == 0 &&
826 "Bits known to be one AND zero?");
827
828 // If all of the demanded bits are known 1 on one side, return the other.
829 // These bits cannot contribute to the result of the 'and'.
830 if ((DemandedMask & ~LHSKnownZero & RHSKnownOne) ==
831 (DemandedMask & ~LHSKnownZero))
832 return UpdateValueUsesWith(I, I->getOperand(0));
833 if ((DemandedMask & ~RHSKnownZero & LHSKnownOne) ==
834 (DemandedMask & ~RHSKnownZero))
835 return UpdateValueUsesWith(I, I->getOperand(1));
836
837 // If all of the demanded bits in the inputs are known zeros, return zero.
838 if ((DemandedMask & (RHSKnownZero|LHSKnownZero)) == DemandedMask)
839 return UpdateValueUsesWith(I, Constant::getNullValue(VTy));
840
841 // If the RHS is a constant, see if we can simplify it.
842 if (ShrinkDemandedConstant(I, 1, DemandedMask & ~LHSKnownZero))
843 return UpdateValueUsesWith(I, I);
844
845 // Output known-1 bits are only known if set in both the LHS & RHS.
846 RHSKnownOne &= LHSKnownOne;
847 // Output known-0 are known to be clear if zero in either the LHS | RHS.
848 RHSKnownZero |= LHSKnownZero;
849 break;
850 case Instruction::Or:
851 // If either the LHS or the RHS are One, the result is One.
852 if (SimplifyDemandedBits(I->getOperand(1), DemandedMask,
853 RHSKnownZero, RHSKnownOne, Depth+1))
854 return true;
855 assert((RHSKnownZero & RHSKnownOne) == 0 &&
856 "Bits known to be one AND zero?");
857 // If something is known one on the RHS, the bits aren't demanded on the
858 // LHS.
859 if (SimplifyDemandedBits(I->getOperand(0), DemandedMask & ~RHSKnownOne,
860 LHSKnownZero, LHSKnownOne, Depth+1))
861 return true;
862 assert((LHSKnownZero & LHSKnownOne) == 0 &&
863 "Bits known to be one AND zero?");
864
865 // If all of the demanded bits are known zero on one side, return the other.
866 // These bits cannot contribute to the result of the 'or'.
867 if ((DemandedMask & ~LHSKnownOne & RHSKnownZero) ==
868 (DemandedMask & ~LHSKnownOne))
869 return UpdateValueUsesWith(I, I->getOperand(0));
870 if ((DemandedMask & ~RHSKnownOne & LHSKnownZero) ==
871 (DemandedMask & ~RHSKnownOne))
872 return UpdateValueUsesWith(I, I->getOperand(1));
873
874 // If all of the potentially set bits on one side are known to be set on
875 // the other side, just use the 'other' side.
876 if ((DemandedMask & (~RHSKnownZero) & LHSKnownOne) ==
877 (DemandedMask & (~RHSKnownZero)))
878 return UpdateValueUsesWith(I, I->getOperand(0));
879 if ((DemandedMask & (~LHSKnownZero) & RHSKnownOne) ==
880 (DemandedMask & (~LHSKnownZero)))
881 return UpdateValueUsesWith(I, I->getOperand(1));
882
883 // If the RHS is a constant, see if we can simplify it.
884 if (ShrinkDemandedConstant(I, 1, DemandedMask))
885 return UpdateValueUsesWith(I, I);
886
887 // Output known-0 bits are only known if clear in both the LHS & RHS.
888 RHSKnownZero &= LHSKnownZero;
889 // Output known-1 are known to be set if set in either the LHS | RHS.
890 RHSKnownOne |= LHSKnownOne;
891 break;
892 case Instruction::Xor: {
893 if (SimplifyDemandedBits(I->getOperand(1), DemandedMask,
894 RHSKnownZero, RHSKnownOne, Depth+1))
895 return true;
896 assert((RHSKnownZero & RHSKnownOne) == 0 &&
897 "Bits known to be one AND zero?");
898 if (SimplifyDemandedBits(I->getOperand(0), DemandedMask,
899 LHSKnownZero, LHSKnownOne, Depth+1))
900 return true;
901 assert((LHSKnownZero & LHSKnownOne) == 0 &&
902 "Bits known to be one AND zero?");
903
904 // If all of the demanded bits are known zero on one side, return the other.
905 // These bits cannot contribute to the result of the 'xor'.
906 if ((DemandedMask & RHSKnownZero) == DemandedMask)
907 return UpdateValueUsesWith(I, I->getOperand(0));
908 if ((DemandedMask & LHSKnownZero) == DemandedMask)
909 return UpdateValueUsesWith(I, I->getOperand(1));
910
911 // Output known-0 bits are known if clear or set in both the LHS & RHS.
912 APInt KnownZeroOut = (RHSKnownZero & LHSKnownZero) |
913 (RHSKnownOne & LHSKnownOne);
914 // Output known-1 are known to be set if set in only one of the LHS, RHS.
915 APInt KnownOneOut = (RHSKnownZero & LHSKnownOne) |
916 (RHSKnownOne & LHSKnownZero);
917
918 // If all of the demanded bits are known to be zero on one side or the
919 // other, turn this into an *inclusive* or.
920 // e.g. (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0
921 if ((DemandedMask & ~RHSKnownZero & ~LHSKnownZero) == 0) {
922 Instruction *Or =
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000923 BinaryOperator::CreateOr(I->getOperand(0), I->getOperand(1),
Reid Spencer8cb68342007-03-12 17:25:59 +0000924 I->getName());
925 InsertNewInstBefore(Or, *I);
926 return UpdateValueUsesWith(I, Or);
927 }
928
929 // If all of the demanded bits on one side are known, and all of the set
930 // bits on that side are also known to be set on the other side, turn this
931 // into an AND, as we know the bits will be cleared.
932 // e.g. (X | C1) ^ C2 --> (X | C1) & ~C2 iff (C1&C2) == C2
933 if ((DemandedMask & (RHSKnownZero|RHSKnownOne)) == DemandedMask) {
934 // all known
935 if ((RHSKnownOne & LHSKnownOne) == RHSKnownOne) {
936 Constant *AndC = ConstantInt::get(~RHSKnownOne & DemandedMask);
937 Instruction *And =
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000938 BinaryOperator::CreateAnd(I->getOperand(0), AndC, "tmp");
Reid Spencer8cb68342007-03-12 17:25:59 +0000939 InsertNewInstBefore(And, *I);
940 return UpdateValueUsesWith(I, And);
941 }
942 }
943
944 // If the RHS is a constant, see if we can simplify it.
945 // FIXME: for XOR, we prefer to force bits to 1 if they will make a -1.
946 if (ShrinkDemandedConstant(I, 1, DemandedMask))
947 return UpdateValueUsesWith(I, I);
948
949 RHSKnownZero = KnownZeroOut;
950 RHSKnownOne = KnownOneOut;
951 break;
952 }
953 case Instruction::Select:
954 if (SimplifyDemandedBits(I->getOperand(2), DemandedMask,
955 RHSKnownZero, RHSKnownOne, Depth+1))
956 return true;
957 if (SimplifyDemandedBits(I->getOperand(1), DemandedMask,
958 LHSKnownZero, LHSKnownOne, Depth+1))
959 return true;
960 assert((RHSKnownZero & RHSKnownOne) == 0 &&
961 "Bits known to be one AND zero?");
962 assert((LHSKnownZero & LHSKnownOne) == 0 &&
963 "Bits known to be one AND zero?");
964
965 // If the operands are constants, see if we can simplify them.
966 if (ShrinkDemandedConstant(I, 1, DemandedMask))
967 return UpdateValueUsesWith(I, I);
968 if (ShrinkDemandedConstant(I, 2, DemandedMask))
969 return UpdateValueUsesWith(I, I);
970
971 // Only known if known in both the LHS and RHS.
972 RHSKnownOne &= LHSKnownOne;
973 RHSKnownZero &= LHSKnownZero;
974 break;
975 case Instruction::Trunc: {
976 uint32_t truncBf =
977 cast<IntegerType>(I->getOperand(0)->getType())->getBitWidth();
Zhou Sheng01542f32007-03-29 02:26:30 +0000978 DemandedMask.zext(truncBf);
979 RHSKnownZero.zext(truncBf);
980 RHSKnownOne.zext(truncBf);
981 if (SimplifyDemandedBits(I->getOperand(0), DemandedMask,
982 RHSKnownZero, RHSKnownOne, Depth+1))
Reid Spencer8cb68342007-03-12 17:25:59 +0000983 return true;
984 DemandedMask.trunc(BitWidth);
985 RHSKnownZero.trunc(BitWidth);
986 RHSKnownOne.trunc(BitWidth);
987 assert((RHSKnownZero & RHSKnownOne) == 0 &&
988 "Bits known to be one AND zero?");
989 break;
990 }
991 case Instruction::BitCast:
992 if (!I->getOperand(0)->getType()->isInteger())
993 return false;
994
995 if (SimplifyDemandedBits(I->getOperand(0), DemandedMask,
996 RHSKnownZero, RHSKnownOne, Depth+1))
997 return true;
998 assert((RHSKnownZero & RHSKnownOne) == 0 &&
999 "Bits known to be one AND zero?");
1000 break;
1001 case Instruction::ZExt: {
1002 // Compute the bits in the result that are not present in the input.
1003 const IntegerType *SrcTy = cast<IntegerType>(I->getOperand(0)->getType());
Reid Spencer2f549172007-03-25 04:26:16 +00001004 uint32_t SrcBitWidth = SrcTy->getBitWidth();
Reid Spencer8cb68342007-03-12 17:25:59 +00001005
Zhou Shengd48653a2007-03-29 04:45:55 +00001006 DemandedMask.trunc(SrcBitWidth);
1007 RHSKnownZero.trunc(SrcBitWidth);
1008 RHSKnownOne.trunc(SrcBitWidth);
Zhou Sheng01542f32007-03-29 02:26:30 +00001009 if (SimplifyDemandedBits(I->getOperand(0), DemandedMask,
1010 RHSKnownZero, RHSKnownOne, Depth+1))
Reid Spencer8cb68342007-03-12 17:25:59 +00001011 return true;
1012 DemandedMask.zext(BitWidth);
1013 RHSKnownZero.zext(BitWidth);
1014 RHSKnownOne.zext(BitWidth);
1015 assert((RHSKnownZero & RHSKnownOne) == 0 &&
1016 "Bits known to be one AND zero?");
1017 // The top bits are known to be zero.
Zhou Sheng01542f32007-03-29 02:26:30 +00001018 RHSKnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - SrcBitWidth);
Reid Spencer8cb68342007-03-12 17:25:59 +00001019 break;
1020 }
1021 case Instruction::SExt: {
1022 // Compute the bits in the result that are not present in the input.
1023 const IntegerType *SrcTy = cast<IntegerType>(I->getOperand(0)->getType());
Reid Spencer2f549172007-03-25 04:26:16 +00001024 uint32_t SrcBitWidth = SrcTy->getBitWidth();
Reid Spencer8cb68342007-03-12 17:25:59 +00001025
Reid Spencer8cb68342007-03-12 17:25:59 +00001026 APInt InputDemandedBits = DemandedMask &
Zhou Sheng01542f32007-03-29 02:26:30 +00001027 APInt::getLowBitsSet(BitWidth, SrcBitWidth);
Reid Spencer8cb68342007-03-12 17:25:59 +00001028
Zhou Sheng01542f32007-03-29 02:26:30 +00001029 APInt NewBits(APInt::getHighBitsSet(BitWidth, BitWidth - SrcBitWidth));
Reid Spencer8cb68342007-03-12 17:25:59 +00001030 // If any of the sign extended bits are demanded, we know that the sign
1031 // bit is demanded.
1032 if ((NewBits & DemandedMask) != 0)
Zhou Sheng4a1822a2007-04-02 13:45:30 +00001033 InputDemandedBits.set(SrcBitWidth-1);
Reid Spencer8cb68342007-03-12 17:25:59 +00001034
Zhou Shengd48653a2007-03-29 04:45:55 +00001035 InputDemandedBits.trunc(SrcBitWidth);
1036 RHSKnownZero.trunc(SrcBitWidth);
1037 RHSKnownOne.trunc(SrcBitWidth);
Zhou Sheng01542f32007-03-29 02:26:30 +00001038 if (SimplifyDemandedBits(I->getOperand(0), InputDemandedBits,
1039 RHSKnownZero, RHSKnownOne, Depth+1))
Reid Spencer8cb68342007-03-12 17:25:59 +00001040 return true;
1041 InputDemandedBits.zext(BitWidth);
1042 RHSKnownZero.zext(BitWidth);
1043 RHSKnownOne.zext(BitWidth);
1044 assert((RHSKnownZero & RHSKnownOne) == 0 &&
1045 "Bits known to be one AND zero?");
1046
1047 // If the sign bit of the input is known set or clear, then we know the
1048 // top bits of the result.
1049
1050 // If the input sign bit is known zero, or if the NewBits are not demanded
1051 // convert this into a zero extension.
Zhou Sheng01542f32007-03-29 02:26:30 +00001052 if (RHSKnownZero[SrcBitWidth-1] || (NewBits & ~DemandedMask) == NewBits)
Reid Spencer8cb68342007-03-12 17:25:59 +00001053 {
1054 // Convert to ZExt cast
1055 CastInst *NewCast = new ZExtInst(I->getOperand(0), VTy, I->getName(), I);
1056 return UpdateValueUsesWith(I, NewCast);
Zhou Sheng01542f32007-03-29 02:26:30 +00001057 } else if (RHSKnownOne[SrcBitWidth-1]) { // Input sign bit known set
Reid Spencer8cb68342007-03-12 17:25:59 +00001058 RHSKnownOne |= NewBits;
Reid Spencer8cb68342007-03-12 17:25:59 +00001059 }
1060 break;
1061 }
1062 case Instruction::Add: {
1063 // Figure out what the input bits are. If the top bits of the and result
1064 // are not demanded, then the add doesn't demand them from its input
1065 // either.
Reid Spencer55702aa2007-03-25 21:11:44 +00001066 uint32_t NLZ = DemandedMask.countLeadingZeros();
Reid Spencer8cb68342007-03-12 17:25:59 +00001067
1068 // If there is a constant on the RHS, there are a variety of xformations
1069 // we can do.
1070 if (ConstantInt *RHS = dyn_cast<ConstantInt>(I->getOperand(1))) {
1071 // If null, this should be simplified elsewhere. Some of the xforms here
1072 // won't work if the RHS is zero.
1073 if (RHS->isZero())
1074 break;
1075
1076 // If the top bit of the output is demanded, demand everything from the
1077 // input. Otherwise, we demand all the input bits except NLZ top bits.
Zhou Sheng01542f32007-03-29 02:26:30 +00001078 APInt InDemandedBits(APInt::getLowBitsSet(BitWidth, BitWidth - NLZ));
Reid Spencer8cb68342007-03-12 17:25:59 +00001079
1080 // Find information about known zero/one bits in the input.
1081 if (SimplifyDemandedBits(I->getOperand(0), InDemandedBits,
1082 LHSKnownZero, LHSKnownOne, Depth+1))
1083 return true;
1084
1085 // If the RHS of the add has bits set that can't affect the input, reduce
1086 // the constant.
1087 if (ShrinkDemandedConstant(I, 1, InDemandedBits))
1088 return UpdateValueUsesWith(I, I);
1089
1090 // Avoid excess work.
1091 if (LHSKnownZero == 0 && LHSKnownOne == 0)
1092 break;
1093
1094 // Turn it into OR if input bits are zero.
1095 if ((LHSKnownZero & RHS->getValue()) == RHS->getValue()) {
1096 Instruction *Or =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001097 BinaryOperator::CreateOr(I->getOperand(0), I->getOperand(1),
Reid Spencer8cb68342007-03-12 17:25:59 +00001098 I->getName());
1099 InsertNewInstBefore(Or, *I);
1100 return UpdateValueUsesWith(I, Or);
1101 }
1102
1103 // We can say something about the output known-zero and known-one bits,
1104 // depending on potential carries from the input constant and the
1105 // unknowns. For example if the LHS is known to have at most the 0x0F0F0
1106 // bits set and the RHS constant is 0x01001, then we know we have a known
1107 // one mask of 0x00001 and a known zero mask of 0xE0F0E.
1108
1109 // To compute this, we first compute the potential carry bits. These are
1110 // the bits which may be modified. I'm not aware of a better way to do
1111 // this scan.
Zhou Shengb9cb95f2007-03-31 02:38:39 +00001112 const APInt& RHSVal = RHS->getValue();
1113 APInt CarryBits((~LHSKnownZero + RHSVal) ^ (~LHSKnownZero ^ RHSVal));
Reid Spencer8cb68342007-03-12 17:25:59 +00001114
1115 // Now that we know which bits have carries, compute the known-1/0 sets.
1116
1117 // Bits are known one if they are known zero in one operand and one in the
1118 // other, and there is no input carry.
1119 RHSKnownOne = ((LHSKnownZero & RHSVal) |
1120 (LHSKnownOne & ~RHSVal)) & ~CarryBits;
1121
1122 // Bits are known zero if they are known zero in both operands and there
1123 // is no input carry.
1124 RHSKnownZero = LHSKnownZero & ~RHSVal & ~CarryBits;
1125 } else {
1126 // If the high-bits of this ADD are not demanded, then it does not demand
1127 // the high bits of its LHS or RHS.
Zhou Sheng01542f32007-03-29 02:26:30 +00001128 if (DemandedMask[BitWidth-1] == 0) {
Reid Spencer8cb68342007-03-12 17:25:59 +00001129 // Right fill the mask of bits for this ADD to demand the most
1130 // significant bit and all those below it.
Zhou Sheng01542f32007-03-29 02:26:30 +00001131 APInt DemandedFromOps(APInt::getLowBitsSet(BitWidth, BitWidth-NLZ));
Reid Spencer8cb68342007-03-12 17:25:59 +00001132 if (SimplifyDemandedBits(I->getOperand(0), DemandedFromOps,
1133 LHSKnownZero, LHSKnownOne, Depth+1))
1134 return true;
1135 if (SimplifyDemandedBits(I->getOperand(1), DemandedFromOps,
1136 LHSKnownZero, LHSKnownOne, Depth+1))
1137 return true;
1138 }
1139 }
1140 break;
1141 }
1142 case Instruction::Sub:
1143 // If the high-bits of this SUB are not demanded, then it does not demand
1144 // the high bits of its LHS or RHS.
Zhou Sheng01542f32007-03-29 02:26:30 +00001145 if (DemandedMask[BitWidth-1] == 0) {
Reid Spencer8cb68342007-03-12 17:25:59 +00001146 // Right fill the mask of bits for this SUB to demand the most
1147 // significant bit and all those below it.
Zhou Sheng4351c642007-04-02 08:20:41 +00001148 uint32_t NLZ = DemandedMask.countLeadingZeros();
Zhou Sheng01542f32007-03-29 02:26:30 +00001149 APInt DemandedFromOps(APInt::getLowBitsSet(BitWidth, BitWidth-NLZ));
Reid Spencer8cb68342007-03-12 17:25:59 +00001150 if (SimplifyDemandedBits(I->getOperand(0), DemandedFromOps,
1151 LHSKnownZero, LHSKnownOne, Depth+1))
1152 return true;
1153 if (SimplifyDemandedBits(I->getOperand(1), DemandedFromOps,
1154 LHSKnownZero, LHSKnownOne, Depth+1))
1155 return true;
1156 }
Dan Gohman23e8b712008-04-28 17:02:21 +00001157 // Otherwise just hand the sub off to ComputeMaskedBits to fill in
1158 // the known zeros and ones.
1159 ComputeMaskedBits(V, DemandedMask, RHSKnownZero, RHSKnownOne, Depth);
Reid Spencer8cb68342007-03-12 17:25:59 +00001160 break;
1161 case Instruction::Shl:
1162 if (ConstantInt *SA = dyn_cast<ConstantInt>(I->getOperand(1))) {
Zhou Sheng0e2d3ac2007-03-30 09:29:48 +00001163 uint64_t ShiftAmt = SA->getLimitedValue(BitWidth);
Zhou Sheng01542f32007-03-29 02:26:30 +00001164 APInt DemandedMaskIn(DemandedMask.lshr(ShiftAmt));
1165 if (SimplifyDemandedBits(I->getOperand(0), DemandedMaskIn,
Reid Spencer8cb68342007-03-12 17:25:59 +00001166 RHSKnownZero, RHSKnownOne, Depth+1))
1167 return true;
1168 assert((RHSKnownZero & RHSKnownOne) == 0 &&
1169 "Bits known to be one AND zero?");
1170 RHSKnownZero <<= ShiftAmt;
1171 RHSKnownOne <<= ShiftAmt;
1172 // low bits known zero.
Zhou Shengadc14952007-03-14 09:07:33 +00001173 if (ShiftAmt)
Zhou Shenge9e03f62007-03-28 15:02:20 +00001174 RHSKnownZero |= APInt::getLowBitsSet(BitWidth, ShiftAmt);
Reid Spencer8cb68342007-03-12 17:25:59 +00001175 }
1176 break;
1177 case Instruction::LShr:
1178 // For a logical shift right
1179 if (ConstantInt *SA = dyn_cast<ConstantInt>(I->getOperand(1))) {
Zhou Sheng0e2d3ac2007-03-30 09:29:48 +00001180 uint64_t ShiftAmt = SA->getLimitedValue(BitWidth);
Reid Spencer8cb68342007-03-12 17:25:59 +00001181
Reid Spencer8cb68342007-03-12 17:25:59 +00001182 // Unsigned shift right.
Zhou Sheng01542f32007-03-29 02:26:30 +00001183 APInt DemandedMaskIn(DemandedMask.shl(ShiftAmt));
1184 if (SimplifyDemandedBits(I->getOperand(0), DemandedMaskIn,
Reid Spencer8cb68342007-03-12 17:25:59 +00001185 RHSKnownZero, RHSKnownOne, Depth+1))
1186 return true;
1187 assert((RHSKnownZero & RHSKnownOne) == 0 &&
1188 "Bits known to be one AND zero?");
Reid Spencer8cb68342007-03-12 17:25:59 +00001189 RHSKnownZero = APIntOps::lshr(RHSKnownZero, ShiftAmt);
1190 RHSKnownOne = APIntOps::lshr(RHSKnownOne, ShiftAmt);
Zhou Shengadc14952007-03-14 09:07:33 +00001191 if (ShiftAmt) {
1192 // Compute the new bits that are at the top now.
Zhou Sheng01542f32007-03-29 02:26:30 +00001193 APInt HighBits(APInt::getHighBitsSet(BitWidth, ShiftAmt));
Zhou Shengadc14952007-03-14 09:07:33 +00001194 RHSKnownZero |= HighBits; // high bits known zero.
1195 }
Reid Spencer8cb68342007-03-12 17:25:59 +00001196 }
1197 break;
1198 case Instruction::AShr:
1199 // If this is an arithmetic shift right and only the low-bit is set, we can
1200 // always convert this into a logical shr, even if the shift amount is
1201 // variable. The low bit of the shift cannot be an input sign bit unless
1202 // the shift amount is >= the size of the datatype, which is undefined.
1203 if (DemandedMask == 1) {
1204 // Perform the logical shift right.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001205 Value *NewVal = BinaryOperator::CreateLShr(
Reid Spencer8cb68342007-03-12 17:25:59 +00001206 I->getOperand(0), I->getOperand(1), I->getName());
1207 InsertNewInstBefore(cast<Instruction>(NewVal), *I);
1208 return UpdateValueUsesWith(I, NewVal);
1209 }
Chris Lattner4241e4d2007-07-15 20:54:51 +00001210
1211 // If the sign bit is the only bit demanded by this ashr, then there is no
1212 // need to do it, the shift doesn't change the high bit.
1213 if (DemandedMask.isSignBit())
1214 return UpdateValueUsesWith(I, I->getOperand(0));
Reid Spencer8cb68342007-03-12 17:25:59 +00001215
1216 if (ConstantInt *SA = dyn_cast<ConstantInt>(I->getOperand(1))) {
Zhou Sheng302748d2007-03-30 17:20:39 +00001217 uint32_t ShiftAmt = SA->getLimitedValue(BitWidth);
Reid Spencer8cb68342007-03-12 17:25:59 +00001218
Reid Spencer8cb68342007-03-12 17:25:59 +00001219 // Signed shift right.
Zhou Sheng01542f32007-03-29 02:26:30 +00001220 APInt DemandedMaskIn(DemandedMask.shl(ShiftAmt));
Lauro Ramos Venanciod0499af2007-06-06 17:08:48 +00001221 // If any of the "high bits" are demanded, we should set the sign bit as
1222 // demanded.
1223 if (DemandedMask.countLeadingZeros() <= ShiftAmt)
1224 DemandedMaskIn.set(BitWidth-1);
Reid Spencer8cb68342007-03-12 17:25:59 +00001225 if (SimplifyDemandedBits(I->getOperand(0),
Zhou Sheng01542f32007-03-29 02:26:30 +00001226 DemandedMaskIn,
Reid Spencer8cb68342007-03-12 17:25:59 +00001227 RHSKnownZero, RHSKnownOne, Depth+1))
1228 return true;
1229 assert((RHSKnownZero & RHSKnownOne) == 0 &&
1230 "Bits known to be one AND zero?");
1231 // Compute the new bits that are at the top now.
Zhou Sheng01542f32007-03-29 02:26:30 +00001232 APInt HighBits(APInt::getHighBitsSet(BitWidth, ShiftAmt));
Reid Spencer8cb68342007-03-12 17:25:59 +00001233 RHSKnownZero = APIntOps::lshr(RHSKnownZero, ShiftAmt);
1234 RHSKnownOne = APIntOps::lshr(RHSKnownOne, ShiftAmt);
1235
1236 // Handle the sign bits.
1237 APInt SignBit(APInt::getSignBit(BitWidth));
1238 // Adjust to where it is now in the mask.
1239 SignBit = APIntOps::lshr(SignBit, ShiftAmt);
1240
1241 // If the input sign bit is known to be zero, or if none of the top bits
1242 // are demanded, turn this into an unsigned shift right.
Zhou Shengcc419402008-06-06 08:32:05 +00001243 if (BitWidth <= ShiftAmt || RHSKnownZero[BitWidth-ShiftAmt-1] ||
Reid Spencer8cb68342007-03-12 17:25:59 +00001244 (HighBits & ~DemandedMask) == HighBits) {
1245 // Perform the logical shift right.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001246 Value *NewVal = BinaryOperator::CreateLShr(
Reid Spencer8cb68342007-03-12 17:25:59 +00001247 I->getOperand(0), SA, I->getName());
1248 InsertNewInstBefore(cast<Instruction>(NewVal), *I);
1249 return UpdateValueUsesWith(I, NewVal);
1250 } else if ((RHSKnownOne & SignBit) != 0) { // New bits are known one.
1251 RHSKnownOne |= HighBits;
1252 }
1253 }
1254 break;
Nick Lewyckyc1a2a612008-03-06 06:48:30 +00001255 case Instruction::SRem:
1256 if (ConstantInt *Rem = dyn_cast<ConstantInt>(I->getOperand(1))) {
1257 APInt RA = Rem->getValue();
1258 if (RA.isPowerOf2() || (-RA).isPowerOf2()) {
Nick Lewycky3ac9e102008-07-12 05:04:38 +00001259 if (DemandedMask.ule(RA)) // srem won't affect demanded bits
1260 return UpdateValueUsesWith(I, I->getOperand(0));
1261
Dan Gohman23e1df82008-05-06 00:51:48 +00001262 APInt LowBits = RA.isStrictlyPositive() ? (RA - 1) : ~RA;
Nick Lewyckyc1a2a612008-03-06 06:48:30 +00001263 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
1264 if (SimplifyDemandedBits(I->getOperand(0), Mask2,
1265 LHSKnownZero, LHSKnownOne, Depth+1))
1266 return true;
1267
1268 if (LHSKnownZero[BitWidth-1] || ((LHSKnownZero & LowBits) == LowBits))
1269 LHSKnownZero |= ~LowBits;
Nick Lewyckyc1a2a612008-03-06 06:48:30 +00001270
1271 KnownZero |= LHSKnownZero & DemandedMask;
Nick Lewyckyc1a2a612008-03-06 06:48:30 +00001272
1273 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1274 }
1275 }
1276 break;
Dan Gohman23e8b712008-04-28 17:02:21 +00001277 case Instruction::URem: {
Dan Gohman23e8b712008-04-28 17:02:21 +00001278 APInt KnownZero2(BitWidth, 0), KnownOne2(BitWidth, 0);
1279 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
Dan Gohmane85b7582008-05-01 19:13:24 +00001280 if (SimplifyDemandedBits(I->getOperand(0), AllOnes,
1281 KnownZero2, KnownOne2, Depth+1))
1282 return true;
1283
Dan Gohman23e8b712008-04-28 17:02:21 +00001284 uint32_t Leaders = KnownZero2.countLeadingOnes();
Dan Gohmane85b7582008-05-01 19:13:24 +00001285 if (SimplifyDemandedBits(I->getOperand(1), AllOnes,
Dan Gohman23e8b712008-04-28 17:02:21 +00001286 KnownZero2, KnownOne2, Depth+1))
1287 return true;
1288
1289 Leaders = std::max(Leaders,
1290 KnownZero2.countLeadingOnes());
1291 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders) & DemandedMask;
Nick Lewyckyc1a2a612008-03-06 06:48:30 +00001292 break;
Reid Spencer8cb68342007-03-12 17:25:59 +00001293 }
Chris Lattner0521e3c2008-06-18 04:33:20 +00001294 case Instruction::Call:
1295 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
1296 switch (II->getIntrinsicID()) {
1297 default: break;
1298 case Intrinsic::bswap: {
1299 // If the only bits demanded come from one byte of the bswap result,
1300 // just shift the input byte into position to eliminate the bswap.
1301 unsigned NLZ = DemandedMask.countLeadingZeros();
1302 unsigned NTZ = DemandedMask.countTrailingZeros();
1303
1304 // Round NTZ down to the next byte. If we have 11 trailing zeros, then
1305 // we need all the bits down to bit 8. Likewise, round NLZ. If we
1306 // have 14 leading zeros, round to 8.
1307 NLZ &= ~7;
1308 NTZ &= ~7;
1309 // If we need exactly one byte, we can do this transformation.
1310 if (BitWidth-NLZ-NTZ == 8) {
1311 unsigned ResultBit = NTZ;
1312 unsigned InputBit = BitWidth-NTZ-8;
1313
1314 // Replace this with either a left or right shift to get the byte into
1315 // the right place.
1316 Instruction *NewVal;
1317 if (InputBit > ResultBit)
1318 NewVal = BinaryOperator::CreateLShr(I->getOperand(1),
1319 ConstantInt::get(I->getType(), InputBit-ResultBit));
1320 else
1321 NewVal = BinaryOperator::CreateShl(I->getOperand(1),
1322 ConstantInt::get(I->getType(), ResultBit-InputBit));
1323 NewVal->takeName(I);
1324 InsertNewInstBefore(NewVal, *I);
1325 return UpdateValueUsesWith(I, NewVal);
1326 }
1327
1328 // TODO: Could compute known zero/one bits based on the input.
1329 break;
1330 }
1331 }
1332 }
Chris Lattner6c3bfba2008-06-18 18:11:55 +00001333 ComputeMaskedBits(V, DemandedMask, RHSKnownZero, RHSKnownOne, Depth);
Chris Lattner0521e3c2008-06-18 04:33:20 +00001334 break;
Dan Gohman23e8b712008-04-28 17:02:21 +00001335 }
Reid Spencer8cb68342007-03-12 17:25:59 +00001336
1337 // If the client is only demanding bits that we know, return the known
1338 // constant.
1339 if ((DemandedMask & (RHSKnownZero|RHSKnownOne)) == DemandedMask)
1340 return UpdateValueUsesWith(I, ConstantInt::get(RHSKnownOne));
1341 return false;
1342}
1343
Chris Lattner867b99f2006-10-05 06:55:50 +00001344
1345/// SimplifyDemandedVectorElts - The specified value producecs a vector with
1346/// 64 or fewer elements. DemandedElts contains the set of elements that are
1347/// actually used by the caller. This method analyzes which elements of the
1348/// operand are undef and returns that information in UndefElts.
1349///
1350/// If the information about demanded elements can be used to simplify the
1351/// operation, the operation is simplified, then the resultant value is
1352/// returned. This returns null if no change was made.
1353Value *InstCombiner::SimplifyDemandedVectorElts(Value *V, uint64_t DemandedElts,
1354 uint64_t &UndefElts,
1355 unsigned Depth) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00001356 unsigned VWidth = cast<VectorType>(V->getType())->getNumElements();
Chris Lattner867b99f2006-10-05 06:55:50 +00001357 assert(VWidth <= 64 && "Vector too wide to analyze!");
1358 uint64_t EltMask = ~0ULL >> (64-VWidth);
Dan Gohman488fbfc2008-09-09 18:11:14 +00001359 assert((DemandedElts & ~EltMask) == 0 && "Invalid DemandedElts!");
Chris Lattner867b99f2006-10-05 06:55:50 +00001360
1361 if (isa<UndefValue>(V)) {
1362 // If the entire vector is undefined, just return this info.
1363 UndefElts = EltMask;
1364 return 0;
1365 } else if (DemandedElts == 0) { // If nothing is demanded, provide undef.
1366 UndefElts = EltMask;
1367 return UndefValue::get(V->getType());
1368 }
1369
1370 UndefElts = 0;
Reid Spencer9d6565a2007-02-15 02:26:10 +00001371 if (ConstantVector *CP = dyn_cast<ConstantVector>(V)) {
1372 const Type *EltTy = cast<VectorType>(V->getType())->getElementType();
Chris Lattner867b99f2006-10-05 06:55:50 +00001373 Constant *Undef = UndefValue::get(EltTy);
1374
1375 std::vector<Constant*> Elts;
1376 for (unsigned i = 0; i != VWidth; ++i)
1377 if (!(DemandedElts & (1ULL << i))) { // If not demanded, set to undef.
1378 Elts.push_back(Undef);
1379 UndefElts |= (1ULL << i);
1380 } else if (isa<UndefValue>(CP->getOperand(i))) { // Already undef.
1381 Elts.push_back(Undef);
1382 UndefElts |= (1ULL << i);
1383 } else { // Otherwise, defined.
1384 Elts.push_back(CP->getOperand(i));
1385 }
1386
1387 // If we changed the constant, return it.
Reid Spencer9d6565a2007-02-15 02:26:10 +00001388 Constant *NewCP = ConstantVector::get(Elts);
Chris Lattner867b99f2006-10-05 06:55:50 +00001389 return NewCP != CP ? NewCP : 0;
1390 } else if (isa<ConstantAggregateZero>(V)) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00001391 // Simplify the CAZ to a ConstantVector where the non-demanded elements are
Chris Lattner867b99f2006-10-05 06:55:50 +00001392 // set to undef.
Reid Spencer9d6565a2007-02-15 02:26:10 +00001393 const Type *EltTy = cast<VectorType>(V->getType())->getElementType();
Chris Lattner867b99f2006-10-05 06:55:50 +00001394 Constant *Zero = Constant::getNullValue(EltTy);
1395 Constant *Undef = UndefValue::get(EltTy);
1396 std::vector<Constant*> Elts;
1397 for (unsigned i = 0; i != VWidth; ++i)
1398 Elts.push_back((DemandedElts & (1ULL << i)) ? Zero : Undef);
1399 UndefElts = DemandedElts ^ EltMask;
Reid Spencer9d6565a2007-02-15 02:26:10 +00001400 return ConstantVector::get(Elts);
Chris Lattner867b99f2006-10-05 06:55:50 +00001401 }
1402
Dan Gohman488fbfc2008-09-09 18:11:14 +00001403 // Limit search depth.
1404 if (Depth == 10)
1405 return false;
1406
1407 // If multiple users are using the root value, procede with
1408 // simplification conservatively assuming that all elements
1409 // are needed.
1410 if (!V->hasOneUse()) {
1411 // Quit if we find multiple users of a non-root value though.
1412 // They'll be handled when it's their turn to be visited by
1413 // the main instcombine process.
1414 if (Depth != 0)
Chris Lattner867b99f2006-10-05 06:55:50 +00001415 // TODO: Just compute the UndefElts information recursively.
1416 return false;
Dan Gohman488fbfc2008-09-09 18:11:14 +00001417
1418 // Conservatively assume that all elements are needed.
1419 DemandedElts = EltMask;
Chris Lattner867b99f2006-10-05 06:55:50 +00001420 }
1421
1422 Instruction *I = dyn_cast<Instruction>(V);
1423 if (!I) return false; // Only analyze instructions.
1424
1425 bool MadeChange = false;
1426 uint64_t UndefElts2;
1427 Value *TmpV;
1428 switch (I->getOpcode()) {
1429 default: break;
1430
1431 case Instruction::InsertElement: {
1432 // If this is a variable index, we don't know which element it overwrites.
1433 // demand exactly the same input as we produce.
Reid Spencerb83eb642006-10-20 07:07:24 +00001434 ConstantInt *Idx = dyn_cast<ConstantInt>(I->getOperand(2));
Chris Lattner867b99f2006-10-05 06:55:50 +00001435 if (Idx == 0) {
1436 // Note that we can't propagate undef elt info, because we don't know
1437 // which elt is getting updated.
1438 TmpV = SimplifyDemandedVectorElts(I->getOperand(0), DemandedElts,
1439 UndefElts2, Depth+1);
1440 if (TmpV) { I->setOperand(0, TmpV); MadeChange = true; }
1441 break;
1442 }
1443
1444 // If this is inserting an element that isn't demanded, remove this
1445 // insertelement.
Reid Spencerb83eb642006-10-20 07:07:24 +00001446 unsigned IdxNo = Idx->getZExtValue();
Chris Lattner867b99f2006-10-05 06:55:50 +00001447 if (IdxNo >= VWidth || (DemandedElts & (1ULL << IdxNo)) == 0)
1448 return AddSoonDeadInstToWorklist(*I, 0);
1449
1450 // Otherwise, the element inserted overwrites whatever was there, so the
1451 // input demanded set is simpler than the output set.
1452 TmpV = SimplifyDemandedVectorElts(I->getOperand(0),
1453 DemandedElts & ~(1ULL << IdxNo),
1454 UndefElts, Depth+1);
1455 if (TmpV) { I->setOperand(0, TmpV); MadeChange = true; }
1456
1457 // The inserted element is defined.
Dan Gohman488fbfc2008-09-09 18:11:14 +00001458 UndefElts &= ~(1ULL << IdxNo);
1459 break;
1460 }
1461 case Instruction::ShuffleVector: {
1462 ShuffleVectorInst *Shuffle = cast<ShuffleVectorInst>(I);
1463 uint64_t LeftDemanded = 0, RightDemanded = 0;
1464 for (unsigned i = 0; i < VWidth; i++) {
1465 if (DemandedElts & (1ULL << i)) {
1466 unsigned MaskVal = Shuffle->getMaskValue(i);
1467 if (MaskVal != -1u) {
1468 assert(MaskVal < VWidth * 2 &&
1469 "shufflevector mask index out of range!");
1470 if (MaskVal < VWidth)
1471 LeftDemanded |= 1ULL << MaskVal;
1472 else
1473 RightDemanded |= 1ULL << (MaskVal - VWidth);
1474 }
1475 }
1476 }
1477
1478 TmpV = SimplifyDemandedVectorElts(I->getOperand(0), LeftDemanded,
1479 UndefElts2, Depth+1);
1480 if (TmpV) { I->setOperand(0, TmpV); MadeChange = true; }
1481
1482 uint64_t UndefElts3;
1483 TmpV = SimplifyDemandedVectorElts(I->getOperand(1), RightDemanded,
1484 UndefElts3, Depth+1);
1485 if (TmpV) { I->setOperand(1, TmpV); MadeChange = true; }
1486
1487 bool NewUndefElts = false;
1488 for (unsigned i = 0; i < VWidth; i++) {
1489 unsigned MaskVal = Shuffle->getMaskValue(i);
Dan Gohmancb893092008-09-10 01:09:32 +00001490 if (MaskVal == -1u) {
Dan Gohman488fbfc2008-09-09 18:11:14 +00001491 uint64_t NewBit = 1ULL << i;
1492 UndefElts |= NewBit;
1493 } else if (MaskVal < VWidth) {
1494 uint64_t NewBit = ((UndefElts2 >> MaskVal) & 1) << i;
1495 NewUndefElts |= NewBit;
1496 UndefElts |= NewBit;
1497 } else {
1498 uint64_t NewBit = ((UndefElts3 >> (MaskVal - VWidth)) & 1) << i;
1499 NewUndefElts |= NewBit;
1500 UndefElts |= NewBit;
1501 }
1502 }
1503
1504 if (NewUndefElts) {
1505 // Add additional discovered undefs.
1506 std::vector<Constant*> Elts;
1507 for (unsigned i = 0; i < VWidth; ++i) {
1508 if (UndefElts & (1ULL << i))
1509 Elts.push_back(UndefValue::get(Type::Int32Ty));
1510 else
1511 Elts.push_back(ConstantInt::get(Type::Int32Ty,
1512 Shuffle->getMaskValue(i)));
1513 }
1514 I->setOperand(2, ConstantVector::get(Elts));
1515 MadeChange = true;
1516 }
Chris Lattner867b99f2006-10-05 06:55:50 +00001517 break;
1518 }
Chris Lattner69878332007-04-14 22:29:23 +00001519 case Instruction::BitCast: {
Dan Gohman07a96762007-07-16 14:29:03 +00001520 // Vector->vector casts only.
Chris Lattner69878332007-04-14 22:29:23 +00001521 const VectorType *VTy = dyn_cast<VectorType>(I->getOperand(0)->getType());
1522 if (!VTy) break;
1523 unsigned InVWidth = VTy->getNumElements();
1524 uint64_t InputDemandedElts = 0;
1525 unsigned Ratio;
1526
1527 if (VWidth == InVWidth) {
Dan Gohman07a96762007-07-16 14:29:03 +00001528 // If we are converting from <4 x i32> -> <4 x f32>, we demand the same
Chris Lattner69878332007-04-14 22:29:23 +00001529 // elements as are demanded of us.
1530 Ratio = 1;
1531 InputDemandedElts = DemandedElts;
1532 } else if (VWidth > InVWidth) {
1533 // Untested so far.
1534 break;
1535
1536 // If there are more elements in the result than there are in the source,
1537 // then an input element is live if any of the corresponding output
1538 // elements are live.
1539 Ratio = VWidth/InVWidth;
1540 for (unsigned OutIdx = 0; OutIdx != VWidth; ++OutIdx) {
1541 if (DemandedElts & (1ULL << OutIdx))
1542 InputDemandedElts |= 1ULL << (OutIdx/Ratio);
1543 }
1544 } else {
1545 // Untested so far.
1546 break;
1547
1548 // If there are more elements in the source than there are in the result,
1549 // then an input element is live if the corresponding output element is
1550 // live.
1551 Ratio = InVWidth/VWidth;
1552 for (unsigned InIdx = 0; InIdx != InVWidth; ++InIdx)
1553 if (DemandedElts & (1ULL << InIdx/Ratio))
1554 InputDemandedElts |= 1ULL << InIdx;
1555 }
Chris Lattner867b99f2006-10-05 06:55:50 +00001556
Chris Lattner69878332007-04-14 22:29:23 +00001557 // div/rem demand all inputs, because they don't want divide by zero.
1558 TmpV = SimplifyDemandedVectorElts(I->getOperand(0), InputDemandedElts,
1559 UndefElts2, Depth+1);
1560 if (TmpV) {
1561 I->setOperand(0, TmpV);
1562 MadeChange = true;
1563 }
1564
1565 UndefElts = UndefElts2;
1566 if (VWidth > InVWidth) {
1567 assert(0 && "Unimp");
1568 // If there are more elements in the result than there are in the source,
1569 // then an output element is undef if the corresponding input element is
1570 // undef.
1571 for (unsigned OutIdx = 0; OutIdx != VWidth; ++OutIdx)
1572 if (UndefElts2 & (1ULL << (OutIdx/Ratio)))
1573 UndefElts |= 1ULL << OutIdx;
1574 } else if (VWidth < InVWidth) {
1575 assert(0 && "Unimp");
1576 // If there are more elements in the source than there are in the result,
1577 // then a result element is undef if all of the corresponding input
1578 // elements are undef.
1579 UndefElts = ~0ULL >> (64-VWidth); // Start out all undef.
1580 for (unsigned InIdx = 0; InIdx != InVWidth; ++InIdx)
1581 if ((UndefElts2 & (1ULL << InIdx)) == 0) // Not undef?
1582 UndefElts &= ~(1ULL << (InIdx/Ratio)); // Clear undef bit.
1583 }
1584 break;
1585 }
Chris Lattner867b99f2006-10-05 06:55:50 +00001586 case Instruction::And:
1587 case Instruction::Or:
1588 case Instruction::Xor:
1589 case Instruction::Add:
1590 case Instruction::Sub:
1591 case Instruction::Mul:
1592 // div/rem demand all inputs, because they don't want divide by zero.
1593 TmpV = SimplifyDemandedVectorElts(I->getOperand(0), DemandedElts,
1594 UndefElts, Depth+1);
1595 if (TmpV) { I->setOperand(0, TmpV); MadeChange = true; }
1596 TmpV = SimplifyDemandedVectorElts(I->getOperand(1), DemandedElts,
1597 UndefElts2, Depth+1);
1598 if (TmpV) { I->setOperand(1, TmpV); MadeChange = true; }
1599
1600 // Output elements are undefined if both are undefined. Consider things
1601 // like undef&0. The result is known zero, not undef.
1602 UndefElts &= UndefElts2;
1603 break;
1604
1605 case Instruction::Call: {
1606 IntrinsicInst *II = dyn_cast<IntrinsicInst>(I);
1607 if (!II) break;
1608 switch (II->getIntrinsicID()) {
1609 default: break;
1610
1611 // Binary vector operations that work column-wise. A dest element is a
1612 // function of the corresponding input elements from the two inputs.
1613 case Intrinsic::x86_sse_sub_ss:
1614 case Intrinsic::x86_sse_mul_ss:
1615 case Intrinsic::x86_sse_min_ss:
1616 case Intrinsic::x86_sse_max_ss:
1617 case Intrinsic::x86_sse2_sub_sd:
1618 case Intrinsic::x86_sse2_mul_sd:
1619 case Intrinsic::x86_sse2_min_sd:
1620 case Intrinsic::x86_sse2_max_sd:
1621 TmpV = SimplifyDemandedVectorElts(II->getOperand(1), DemandedElts,
1622 UndefElts, Depth+1);
1623 if (TmpV) { II->setOperand(1, TmpV); MadeChange = true; }
1624 TmpV = SimplifyDemandedVectorElts(II->getOperand(2), DemandedElts,
1625 UndefElts2, Depth+1);
1626 if (TmpV) { II->setOperand(2, TmpV); MadeChange = true; }
1627
1628 // If only the low elt is demanded and this is a scalarizable intrinsic,
1629 // scalarize it now.
1630 if (DemandedElts == 1) {
1631 switch (II->getIntrinsicID()) {
1632 default: break;
1633 case Intrinsic::x86_sse_sub_ss:
1634 case Intrinsic::x86_sse_mul_ss:
1635 case Intrinsic::x86_sse2_sub_sd:
1636 case Intrinsic::x86_sse2_mul_sd:
1637 // TODO: Lower MIN/MAX/ABS/etc
1638 Value *LHS = II->getOperand(1);
1639 Value *RHS = II->getOperand(2);
1640 // Extract the element as scalars.
1641 LHS = InsertNewInstBefore(new ExtractElementInst(LHS, 0U,"tmp"), *II);
1642 RHS = InsertNewInstBefore(new ExtractElementInst(RHS, 0U,"tmp"), *II);
1643
1644 switch (II->getIntrinsicID()) {
1645 default: assert(0 && "Case stmts out of sync!");
1646 case Intrinsic::x86_sse_sub_ss:
1647 case Intrinsic::x86_sse2_sub_sd:
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001648 TmpV = InsertNewInstBefore(BinaryOperator::CreateSub(LHS, RHS,
Chris Lattner867b99f2006-10-05 06:55:50 +00001649 II->getName()), *II);
1650 break;
1651 case Intrinsic::x86_sse_mul_ss:
1652 case Intrinsic::x86_sse2_mul_sd:
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001653 TmpV = InsertNewInstBefore(BinaryOperator::CreateMul(LHS, RHS,
Chris Lattner867b99f2006-10-05 06:55:50 +00001654 II->getName()), *II);
1655 break;
1656 }
1657
1658 Instruction *New =
Gabor Greif051a9502008-04-06 20:25:17 +00001659 InsertElementInst::Create(UndefValue::get(II->getType()), TmpV, 0U,
1660 II->getName());
Chris Lattner867b99f2006-10-05 06:55:50 +00001661 InsertNewInstBefore(New, *II);
1662 AddSoonDeadInstToWorklist(*II, 0);
1663 return New;
1664 }
1665 }
1666
1667 // Output elements are undefined if both are undefined. Consider things
1668 // like undef&0. The result is known zero, not undef.
1669 UndefElts &= UndefElts2;
1670 break;
1671 }
1672 break;
1673 }
1674 }
1675 return MadeChange ? I : 0;
1676}
1677
Dan Gohman45b4e482008-05-19 22:14:15 +00001678
Chris Lattner564a7272003-08-13 19:01:45 +00001679/// AssociativeOpt - Perform an optimization on an associative operator. This
1680/// function is designed to check a chain of associative operators for a
1681/// potential to apply a certain optimization. Since the optimization may be
1682/// applicable if the expression was reassociated, this checks the chain, then
1683/// reassociates the expression as necessary to expose the optimization
1684/// opportunity. This makes use of a special Functor, which must define
1685/// 'shouldApply' and 'apply' methods.
1686///
1687template<typename Functor>
Dan Gohman76d402b2008-05-20 01:14:05 +00001688static Instruction *AssociativeOpt(BinaryOperator &Root, const Functor &F) {
Chris Lattner564a7272003-08-13 19:01:45 +00001689 unsigned Opcode = Root.getOpcode();
1690 Value *LHS = Root.getOperand(0);
1691
1692 // Quick check, see if the immediate LHS matches...
1693 if (F.shouldApply(LHS))
1694 return F.apply(Root);
1695
1696 // Otherwise, if the LHS is not of the same opcode as the root, return.
1697 Instruction *LHSI = dyn_cast<Instruction>(LHS);
Chris Lattnerfd059242003-10-15 16:48:29 +00001698 while (LHSI && LHSI->getOpcode() == Opcode && LHSI->hasOneUse()) {
Chris Lattner564a7272003-08-13 19:01:45 +00001699 // Should we apply this transform to the RHS?
1700 bool ShouldApply = F.shouldApply(LHSI->getOperand(1));
1701
1702 // If not to the RHS, check to see if we should apply to the LHS...
1703 if (!ShouldApply && F.shouldApply(LHSI->getOperand(0))) {
1704 cast<BinaryOperator>(LHSI)->swapOperands(); // Make the LHS the RHS
1705 ShouldApply = true;
1706 }
1707
1708 // If the functor wants to apply the optimization to the RHS of LHSI,
1709 // reassociate the expression from ((? op A) op B) to (? op (A op B))
1710 if (ShouldApply) {
Chris Lattner564a7272003-08-13 19:01:45 +00001711 // Now all of the instructions are in the current basic block, go ahead
1712 // and perform the reassociation.
1713 Instruction *TmpLHSI = cast<Instruction>(Root.getOperand(0));
1714
1715 // First move the selected RHS to the LHS of the root...
1716 Root.setOperand(0, LHSI->getOperand(1));
1717
1718 // Make what used to be the LHS of the root be the user of the root...
1719 Value *ExtraOperand = TmpLHSI->getOperand(1);
Chris Lattner65725312004-04-16 18:08:07 +00001720 if (&Root == TmpLHSI) {
Chris Lattner15a76c02004-04-05 02:10:19 +00001721 Root.replaceAllUsesWith(Constant::getNullValue(TmpLHSI->getType()));
1722 return 0;
1723 }
Chris Lattner65725312004-04-16 18:08:07 +00001724 Root.replaceAllUsesWith(TmpLHSI); // Users now use TmpLHSI
Chris Lattner564a7272003-08-13 19:01:45 +00001725 TmpLHSI->setOperand(1, &Root); // TmpLHSI now uses the root
Chris Lattner65725312004-04-16 18:08:07 +00001726 BasicBlock::iterator ARI = &Root; ++ARI;
Dan Gohmand02d9172008-06-19 17:47:47 +00001727 TmpLHSI->moveBefore(ARI); // Move TmpLHSI to after Root
Chris Lattner65725312004-04-16 18:08:07 +00001728 ARI = Root;
Chris Lattner564a7272003-08-13 19:01:45 +00001729
1730 // Now propagate the ExtraOperand down the chain of instructions until we
1731 // get to LHSI.
1732 while (TmpLHSI != LHSI) {
1733 Instruction *NextLHSI = cast<Instruction>(TmpLHSI->getOperand(0));
Chris Lattner65725312004-04-16 18:08:07 +00001734 // Move the instruction to immediately before the chain we are
1735 // constructing to avoid breaking dominance properties.
Dan Gohmand02d9172008-06-19 17:47:47 +00001736 NextLHSI->moveBefore(ARI);
Chris Lattner65725312004-04-16 18:08:07 +00001737 ARI = NextLHSI;
1738
Chris Lattner564a7272003-08-13 19:01:45 +00001739 Value *NextOp = NextLHSI->getOperand(1);
1740 NextLHSI->setOperand(1, ExtraOperand);
1741 TmpLHSI = NextLHSI;
1742 ExtraOperand = NextOp;
1743 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001744
Chris Lattner564a7272003-08-13 19:01:45 +00001745 // Now that the instructions are reassociated, have the functor perform
1746 // the transformation...
1747 return F.apply(Root);
1748 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001749
Chris Lattner564a7272003-08-13 19:01:45 +00001750 LHSI = dyn_cast<Instruction>(LHSI->getOperand(0));
1751 }
1752 return 0;
1753}
1754
Dan Gohman844731a2008-05-13 00:00:25 +00001755namespace {
Chris Lattner564a7272003-08-13 19:01:45 +00001756
Nick Lewycky02d639f2008-05-23 04:34:58 +00001757// AddRHS - Implements: X + X --> X << 1
Chris Lattner564a7272003-08-13 19:01:45 +00001758struct AddRHS {
1759 Value *RHS;
1760 AddRHS(Value *rhs) : RHS(rhs) {}
1761 bool shouldApply(Value *LHS) const { return LHS == RHS; }
1762 Instruction *apply(BinaryOperator &Add) const {
Nick Lewycky02d639f2008-05-23 04:34:58 +00001763 return BinaryOperator::CreateShl(Add.getOperand(0),
1764 ConstantInt::get(Add.getType(), 1));
Chris Lattner564a7272003-08-13 19:01:45 +00001765 }
1766};
1767
1768// AddMaskingAnd - Implements (A & C1)+(B & C2) --> (A & C1)|(B & C2)
1769// iff C1&C2 == 0
1770struct AddMaskingAnd {
1771 Constant *C2;
1772 AddMaskingAnd(Constant *c) : C2(c) {}
1773 bool shouldApply(Value *LHS) const {
Chris Lattneracd1f0f2004-07-30 07:50:03 +00001774 ConstantInt *C1;
Misha Brukmanfd939082005-04-21 23:48:37 +00001775 return match(LHS, m_And(m_Value(), m_ConstantInt(C1))) &&
Chris Lattneracd1f0f2004-07-30 07:50:03 +00001776 ConstantExpr::getAnd(C1, C2)->isNullValue();
Chris Lattner564a7272003-08-13 19:01:45 +00001777 }
1778 Instruction *apply(BinaryOperator &Add) const {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001779 return BinaryOperator::CreateOr(Add.getOperand(0), Add.getOperand(1));
Chris Lattner564a7272003-08-13 19:01:45 +00001780 }
1781};
1782
Dan Gohman844731a2008-05-13 00:00:25 +00001783}
1784
Chris Lattner6e7ba452005-01-01 16:22:27 +00001785static Value *FoldOperationIntoSelectOperand(Instruction &I, Value *SO,
Chris Lattner2eefe512004-04-09 19:05:30 +00001786 InstCombiner *IC) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001787 if (CastInst *CI = dyn_cast<CastInst>(&I)) {
Chris Lattner6e7ba452005-01-01 16:22:27 +00001788 if (Constant *SOC = dyn_cast<Constant>(SO))
Reid Spencer3da59db2006-11-27 01:05:10 +00001789 return ConstantExpr::getCast(CI->getOpcode(), SOC, I.getType());
Misha Brukmanfd939082005-04-21 23:48:37 +00001790
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001791 return IC->InsertNewInstBefore(CastInst::Create(
Reid Spencer3da59db2006-11-27 01:05:10 +00001792 CI->getOpcode(), SO, I.getType(), SO->getName() + ".cast"), I);
Chris Lattner6e7ba452005-01-01 16:22:27 +00001793 }
1794
Chris Lattner2eefe512004-04-09 19:05:30 +00001795 // Figure out if the constant is the left or the right argument.
Chris Lattner6e7ba452005-01-01 16:22:27 +00001796 bool ConstIsRHS = isa<Constant>(I.getOperand(1));
1797 Constant *ConstOperand = cast<Constant>(I.getOperand(ConstIsRHS));
Chris Lattner564a7272003-08-13 19:01:45 +00001798
Chris Lattner2eefe512004-04-09 19:05:30 +00001799 if (Constant *SOC = dyn_cast<Constant>(SO)) {
1800 if (ConstIsRHS)
Chris Lattner6e7ba452005-01-01 16:22:27 +00001801 return ConstantExpr::get(I.getOpcode(), SOC, ConstOperand);
1802 return ConstantExpr::get(I.getOpcode(), ConstOperand, SOC);
Chris Lattner2eefe512004-04-09 19:05:30 +00001803 }
1804
1805 Value *Op0 = SO, *Op1 = ConstOperand;
1806 if (!ConstIsRHS)
1807 std::swap(Op0, Op1);
1808 Instruction *New;
Chris Lattner6e7ba452005-01-01 16:22:27 +00001809 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(&I))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001810 New = BinaryOperator::Create(BO->getOpcode(), Op0, Op1,SO->getName()+".op");
Reid Spencere4d87aa2006-12-23 06:05:41 +00001811 else if (CmpInst *CI = dyn_cast<CmpInst>(&I))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001812 New = CmpInst::Create(CI->getOpcode(), CI->getPredicate(), Op0, Op1,
Reid Spencere4d87aa2006-12-23 06:05:41 +00001813 SO->getName()+".cmp");
Chris Lattner326c0f32004-04-10 19:15:56 +00001814 else {
Chris Lattner2eefe512004-04-09 19:05:30 +00001815 assert(0 && "Unknown binary instruction type!");
Chris Lattner326c0f32004-04-10 19:15:56 +00001816 abort();
1817 }
Chris Lattner6e7ba452005-01-01 16:22:27 +00001818 return IC->InsertNewInstBefore(New, I);
1819}
1820
1821// FoldOpIntoSelect - Given an instruction with a select as one operand and a
1822// constant as the other operand, try to fold the binary operator into the
1823// select arguments. This also works for Cast instructions, which obviously do
1824// not have a second operand.
1825static Instruction *FoldOpIntoSelect(Instruction &Op, SelectInst *SI,
1826 InstCombiner *IC) {
1827 // Don't modify shared select instructions
1828 if (!SI->hasOneUse()) return 0;
1829 Value *TV = SI->getOperand(1);
1830 Value *FV = SI->getOperand(2);
1831
1832 if (isa<Constant>(TV) || isa<Constant>(FV)) {
Chris Lattner956db272005-04-21 05:43:13 +00001833 // Bool selects with constant operands can be folded to logical ops.
Reid Spencer4fe16d62007-01-11 18:21:29 +00001834 if (SI->getType() == Type::Int1Ty) return 0;
Chris Lattner956db272005-04-21 05:43:13 +00001835
Chris Lattner6e7ba452005-01-01 16:22:27 +00001836 Value *SelectTrueVal = FoldOperationIntoSelectOperand(Op, TV, IC);
1837 Value *SelectFalseVal = FoldOperationIntoSelectOperand(Op, FV, IC);
1838
Gabor Greif051a9502008-04-06 20:25:17 +00001839 return SelectInst::Create(SI->getCondition(), SelectTrueVal,
1840 SelectFalseVal);
Chris Lattner6e7ba452005-01-01 16:22:27 +00001841 }
1842 return 0;
Chris Lattner2eefe512004-04-09 19:05:30 +00001843}
1844
Chris Lattner4e998b22004-09-29 05:07:12 +00001845
1846/// FoldOpIntoPhi - Given a binary operator or cast instruction which has a PHI
1847/// node as operand #0, see if we can fold the instruction into the PHI (which
1848/// is only possible if all operands to the PHI are constants).
1849Instruction *InstCombiner::FoldOpIntoPhi(Instruction &I) {
1850 PHINode *PN = cast<PHINode>(I.getOperand(0));
Chris Lattnerbac32862004-11-14 19:13:23 +00001851 unsigned NumPHIValues = PN->getNumIncomingValues();
Chris Lattner2a86f3b2006-09-09 22:02:56 +00001852 if (!PN->hasOneUse() || NumPHIValues == 0) return 0;
Chris Lattner4e998b22004-09-29 05:07:12 +00001853
Chris Lattner2a86f3b2006-09-09 22:02:56 +00001854 // Check to see if all of the operands of the PHI are constants. If there is
1855 // one non-constant value, remember the BB it is. If there is more than one
Chris Lattnerb3036682007-02-24 01:03:45 +00001856 // or if *it* is a PHI, bail out.
Chris Lattner2a86f3b2006-09-09 22:02:56 +00001857 BasicBlock *NonConstBB = 0;
1858 for (unsigned i = 0; i != NumPHIValues; ++i)
1859 if (!isa<Constant>(PN->getIncomingValue(i))) {
1860 if (NonConstBB) return 0; // More than one non-const value.
Chris Lattnerb3036682007-02-24 01:03:45 +00001861 if (isa<PHINode>(PN->getIncomingValue(i))) return 0; // Itself a phi.
Chris Lattner2a86f3b2006-09-09 22:02:56 +00001862 NonConstBB = PN->getIncomingBlock(i);
1863
1864 // If the incoming non-constant value is in I's block, we have an infinite
1865 // loop.
1866 if (NonConstBB == I.getParent())
1867 return 0;
1868 }
1869
1870 // If there is exactly one non-constant value, we can insert a copy of the
1871 // operation in that block. However, if this is a critical edge, we would be
1872 // inserting the computation one some other paths (e.g. inside a loop). Only
1873 // do this if the pred block is unconditionally branching into the phi block.
1874 if (NonConstBB) {
1875 BranchInst *BI = dyn_cast<BranchInst>(NonConstBB->getTerminator());
1876 if (!BI || !BI->isUnconditional()) return 0;
1877 }
Chris Lattner4e998b22004-09-29 05:07:12 +00001878
1879 // Okay, we can do the transformation: create the new PHI node.
Gabor Greif051a9502008-04-06 20:25:17 +00001880 PHINode *NewPN = PHINode::Create(I.getType(), "");
Chris Lattner55517062005-01-29 00:39:08 +00001881 NewPN->reserveOperandSpace(PN->getNumOperands()/2);
Chris Lattner4e998b22004-09-29 05:07:12 +00001882 InsertNewInstBefore(NewPN, *PN);
Chris Lattner6934a042007-02-11 01:23:03 +00001883 NewPN->takeName(PN);
Chris Lattner4e998b22004-09-29 05:07:12 +00001884
1885 // Next, add all of the operands to the PHI.
1886 if (I.getNumOperands() == 2) {
1887 Constant *C = cast<Constant>(I.getOperand(1));
Chris Lattnerbac32862004-11-14 19:13:23 +00001888 for (unsigned i = 0; i != NumPHIValues; ++i) {
Chris Lattnera9ff5eb2007-08-05 08:47:58 +00001889 Value *InV = 0;
Chris Lattner2a86f3b2006-09-09 22:02:56 +00001890 if (Constant *InC = dyn_cast<Constant>(PN->getIncomingValue(i))) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001891 if (CmpInst *CI = dyn_cast<CmpInst>(&I))
1892 InV = ConstantExpr::getCompare(CI->getPredicate(), InC, C);
1893 else
1894 InV = ConstantExpr::get(I.getOpcode(), InC, C);
Chris Lattner2a86f3b2006-09-09 22:02:56 +00001895 } else {
1896 assert(PN->getIncomingBlock(i) == NonConstBB);
1897 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(&I))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001898 InV = BinaryOperator::Create(BO->getOpcode(),
Chris Lattner2a86f3b2006-09-09 22:02:56 +00001899 PN->getIncomingValue(i), C, "phitmp",
1900 NonConstBB->getTerminator());
Reid Spencere4d87aa2006-12-23 06:05:41 +00001901 else if (CmpInst *CI = dyn_cast<CmpInst>(&I))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001902 InV = CmpInst::Create(CI->getOpcode(),
Reid Spencere4d87aa2006-12-23 06:05:41 +00001903 CI->getPredicate(),
1904 PN->getIncomingValue(i), C, "phitmp",
1905 NonConstBB->getTerminator());
Chris Lattner2a86f3b2006-09-09 22:02:56 +00001906 else
1907 assert(0 && "Unknown binop!");
1908
Chris Lattnerdbab3862007-03-02 21:28:56 +00001909 AddToWorkList(cast<Instruction>(InV));
Chris Lattner2a86f3b2006-09-09 22:02:56 +00001910 }
1911 NewPN->addIncoming(InV, PN->getIncomingBlock(i));
Chris Lattner4e998b22004-09-29 05:07:12 +00001912 }
Reid Spencer3da59db2006-11-27 01:05:10 +00001913 } else {
1914 CastInst *CI = cast<CastInst>(&I);
1915 const Type *RetTy = CI->getType();
Chris Lattnerbac32862004-11-14 19:13:23 +00001916 for (unsigned i = 0; i != NumPHIValues; ++i) {
Chris Lattner2a86f3b2006-09-09 22:02:56 +00001917 Value *InV;
1918 if (Constant *InC = dyn_cast<Constant>(PN->getIncomingValue(i))) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001919 InV = ConstantExpr::getCast(CI->getOpcode(), InC, RetTy);
Chris Lattner2a86f3b2006-09-09 22:02:56 +00001920 } else {
1921 assert(PN->getIncomingBlock(i) == NonConstBB);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001922 InV = CastInst::Create(CI->getOpcode(), PN->getIncomingValue(i),
Reid Spencer3da59db2006-11-27 01:05:10 +00001923 I.getType(), "phitmp",
1924 NonConstBB->getTerminator());
Chris Lattnerdbab3862007-03-02 21:28:56 +00001925 AddToWorkList(cast<Instruction>(InV));
Chris Lattner2a86f3b2006-09-09 22:02:56 +00001926 }
1927 NewPN->addIncoming(InV, PN->getIncomingBlock(i));
Chris Lattner4e998b22004-09-29 05:07:12 +00001928 }
1929 }
1930 return ReplaceInstUsesWith(I, NewPN);
1931}
1932
Chris Lattner2454a2e2008-01-29 06:52:45 +00001933
Chris Lattner3d28b1b2008-05-20 05:46:13 +00001934/// WillNotOverflowSignedAdd - Return true if we can prove that:
1935/// (sext (add LHS, RHS)) === (add (sext LHS), (sext RHS))
1936/// This basically requires proving that the add in the original type would not
1937/// overflow to change the sign bit or have a carry out.
1938bool InstCombiner::WillNotOverflowSignedAdd(Value *LHS, Value *RHS) {
1939 // There are different heuristics we can use for this. Here are some simple
1940 // ones.
1941
1942 // Add has the property that adding any two 2's complement numbers can only
1943 // have one carry bit which can change a sign. As such, if LHS and RHS each
1944 // have at least two sign bits, we know that the addition of the two values will
1945 // sign extend fine.
1946 if (ComputeNumSignBits(LHS) > 1 && ComputeNumSignBits(RHS) > 1)
1947 return true;
1948
1949
1950 // If one of the operands only has one non-zero bit, and if the other operand
1951 // has a known-zero bit in a more significant place than it (not including the
1952 // sign bit) the ripple may go up to and fill the zero, but won't change the
1953 // sign. For example, (X & ~4) + 1.
1954
1955 // TODO: Implement.
1956
1957 return false;
1958}
1959
Chris Lattner2454a2e2008-01-29 06:52:45 +00001960
Chris Lattner7e708292002-06-25 16:13:24 +00001961Instruction *InstCombiner::visitAdd(BinaryOperator &I) {
Chris Lattner4f98c562003-03-10 21:43:22 +00001962 bool Changed = SimplifyCommutative(I);
Chris Lattner7e708292002-06-25 16:13:24 +00001963 Value *LHS = I.getOperand(0), *RHS = I.getOperand(1);
Chris Lattnerb35dde12002-05-06 16:49:18 +00001964
Chris Lattner66331a42004-04-10 22:01:55 +00001965 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
Chris Lattnere87597f2004-10-16 18:11:37 +00001966 // X + undef -> undef
1967 if (isa<UndefValue>(RHS))
1968 return ReplaceInstUsesWith(I, RHS);
1969
Chris Lattner66331a42004-04-10 22:01:55 +00001970 // X + 0 --> X
Chris Lattner9919e3d2006-12-02 00:13:08 +00001971 if (!I.getType()->isFPOrFPVector()) { // NOTE: -0 + +0 = +0.
Chris Lattner5e678e02005-10-17 17:56:38 +00001972 if (RHSC->isNullValue())
1973 return ReplaceInstUsesWith(I, LHS);
Chris Lattner8532cf62005-10-17 20:18:38 +00001974 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHSC)) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00001975 if (CFP->isExactlyValue(ConstantFP::getNegativeZero
1976 (I.getType())->getValueAPF()))
Chris Lattner8532cf62005-10-17 20:18:38 +00001977 return ReplaceInstUsesWith(I, LHS);
Chris Lattner5e678e02005-10-17 17:56:38 +00001978 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001979
Chris Lattner66331a42004-04-10 22:01:55 +00001980 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHSC)) {
Chris Lattnerb4a2f052006-11-09 05:12:27 +00001981 // X + (signbit) --> X ^ signbit
Zhou Sheng3a507fd2007-04-01 17:13:37 +00001982 const APInt& Val = CI->getValue();
Zhou Sheng4351c642007-04-02 08:20:41 +00001983 uint32_t BitWidth = Val.getBitWidth();
Reid Spencer2ec619a2007-03-23 21:24:59 +00001984 if (Val == APInt::getSignBit(BitWidth))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001985 return BinaryOperator::CreateXor(LHS, RHS);
Chris Lattnerb4a2f052006-11-09 05:12:27 +00001986
1987 // See if SimplifyDemandedBits can simplify this. This handles stuff like
1988 // (X & 254)+1 -> (X&254)|1
Reid Spencer2ec619a2007-03-23 21:24:59 +00001989 if (!isa<VectorType>(I.getType())) {
1990 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
1991 if (SimplifyDemandedBits(&I, APInt::getAllOnesValue(BitWidth),
1992 KnownZero, KnownOne))
1993 return &I;
1994 }
Chris Lattner66331a42004-04-10 22:01:55 +00001995 }
Chris Lattner4e998b22004-09-29 05:07:12 +00001996
1997 if (isa<PHINode>(LHS))
1998 if (Instruction *NV = FoldOpIntoPhi(I))
1999 return NV;
Chris Lattner5931c542005-09-24 23:43:33 +00002000
Chris Lattner4f637d42006-01-06 17:59:59 +00002001 ConstantInt *XorRHS = 0;
2002 Value *XorLHS = 0;
Chris Lattnerc5eff442007-01-30 22:32:46 +00002003 if (isa<ConstantInt>(RHSC) &&
2004 match(LHS, m_Xor(m_Value(XorLHS), m_ConstantInt(XorRHS)))) {
Zhou Sheng4351c642007-04-02 08:20:41 +00002005 uint32_t TySizeBits = I.getType()->getPrimitiveSizeInBits();
Zhou Sheng3a507fd2007-04-01 17:13:37 +00002006 const APInt& RHSVal = cast<ConstantInt>(RHSC)->getValue();
Chris Lattner5931c542005-09-24 23:43:33 +00002007
Zhou Sheng4351c642007-04-02 08:20:41 +00002008 uint32_t Size = TySizeBits / 2;
Reid Spencer2ec619a2007-03-23 21:24:59 +00002009 APInt C0080Val(APInt(TySizeBits, 1ULL).shl(Size - 1));
2010 APInt CFF80Val(-C0080Val);
Chris Lattner5931c542005-09-24 23:43:33 +00002011 do {
2012 if (TySizeBits > Size) {
Chris Lattner5931c542005-09-24 23:43:33 +00002013 // If we have ADD(XOR(AND(X, 0xFF), 0x80), 0xF..F80), it's a sext.
2014 // If we have ADD(XOR(AND(X, 0xFF), 0xF..F80), 0x80), it's a sext.
Reid Spencer2ec619a2007-03-23 21:24:59 +00002015 if ((RHSVal == CFF80Val && XorRHS->getValue() == C0080Val) ||
2016 (RHSVal == C0080Val && XorRHS->getValue() == CFF80Val)) {
Chris Lattner5931c542005-09-24 23:43:33 +00002017 // This is a sign extend if the top bits are known zero.
Zhou Sheng290bec52007-03-29 08:15:12 +00002018 if (!MaskedValueIsZero(XorLHS,
2019 APInt::getHighBitsSet(TySizeBits, TySizeBits - Size)))
Chris Lattner5931c542005-09-24 23:43:33 +00002020 Size = 0; // Not a sign ext, but can't be any others either.
Reid Spencer2ec619a2007-03-23 21:24:59 +00002021 break;
Chris Lattner5931c542005-09-24 23:43:33 +00002022 }
2023 }
2024 Size >>= 1;
Reid Spencer2ec619a2007-03-23 21:24:59 +00002025 C0080Val = APIntOps::lshr(C0080Val, Size);
2026 CFF80Val = APIntOps::ashr(CFF80Val, Size);
2027 } while (Size >= 1);
Chris Lattner5931c542005-09-24 23:43:33 +00002028
Reid Spencer35c38852007-03-28 01:36:16 +00002029 // FIXME: This shouldn't be necessary. When the backends can handle types
Chris Lattner0c7a9a02008-05-19 20:25:04 +00002030 // with funny bit widths then this switch statement should be removed. It
2031 // is just here to get the size of the "middle" type back up to something
2032 // that the back ends can handle.
Reid Spencer35c38852007-03-28 01:36:16 +00002033 const Type *MiddleType = 0;
2034 switch (Size) {
2035 default: break;
2036 case 32: MiddleType = Type::Int32Ty; break;
2037 case 16: MiddleType = Type::Int16Ty; break;
2038 case 8: MiddleType = Type::Int8Ty; break;
2039 }
2040 if (MiddleType) {
Reid Spencerd977d862006-12-12 23:36:14 +00002041 Instruction *NewTrunc = new TruncInst(XorLHS, MiddleType, "sext");
Chris Lattner5931c542005-09-24 23:43:33 +00002042 InsertNewInstBefore(NewTrunc, I);
Reid Spencer35c38852007-03-28 01:36:16 +00002043 return new SExtInst(NewTrunc, I.getType(), I.getName());
Chris Lattner5931c542005-09-24 23:43:33 +00002044 }
2045 }
Chris Lattner66331a42004-04-10 22:01:55 +00002046 }
Chris Lattnerb35dde12002-05-06 16:49:18 +00002047
Nick Lewycky9419ddb2008-05-31 17:59:52 +00002048 if (I.getType() == Type::Int1Ty)
2049 return BinaryOperator::CreateXor(LHS, RHS);
2050
Nick Lewycky7d26bd82008-05-23 04:39:38 +00002051 // X + X --> X << 1
Nick Lewycky9419ddb2008-05-31 17:59:52 +00002052 if (I.getType()->isInteger()) {
Chris Lattner564a7272003-08-13 19:01:45 +00002053 if (Instruction *Result = AssociativeOpt(I, AddRHS(RHS))) return Result;
Chris Lattner7edc8c22005-04-07 17:14:51 +00002054
2055 if (Instruction *RHSI = dyn_cast<Instruction>(RHS)) {
2056 if (RHSI->getOpcode() == Instruction::Sub)
2057 if (LHS == RHSI->getOperand(1)) // A + (B - A) --> B
2058 return ReplaceInstUsesWith(I, RHSI->getOperand(0));
2059 }
2060 if (Instruction *LHSI = dyn_cast<Instruction>(LHS)) {
2061 if (LHSI->getOpcode() == Instruction::Sub)
2062 if (RHS == LHSI->getOperand(1)) // (B - A) + A --> B
2063 return ReplaceInstUsesWith(I, LHSI->getOperand(0));
2064 }
Robert Bocchino71698282004-07-27 21:02:21 +00002065 }
Chris Lattnere92d2f42003-08-13 04:18:28 +00002066
Chris Lattner5c4afb92002-05-08 22:46:53 +00002067 // -A + B --> B - A
Chris Lattnerdd12f962008-02-17 21:03:36 +00002068 // -A + -B --> -(A + B)
2069 if (Value *LHSV = dyn_castNegVal(LHS)) {
Chris Lattnere10c0b92008-02-18 17:50:16 +00002070 if (LHS->getType()->isIntOrIntVector()) {
2071 if (Value *RHSV = dyn_castNegVal(RHS)) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002072 Instruction *NewAdd = BinaryOperator::CreateAdd(LHSV, RHSV, "sum");
Chris Lattnere10c0b92008-02-18 17:50:16 +00002073 InsertNewInstBefore(NewAdd, I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002074 return BinaryOperator::CreateNeg(NewAdd);
Chris Lattnere10c0b92008-02-18 17:50:16 +00002075 }
Chris Lattnerdd12f962008-02-17 21:03:36 +00002076 }
2077
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002078 return BinaryOperator::CreateSub(RHS, LHSV);
Chris Lattnerdd12f962008-02-17 21:03:36 +00002079 }
Chris Lattnerb35dde12002-05-06 16:49:18 +00002080
2081 // A + -B --> A - B
Chris Lattner8d969642003-03-10 23:06:50 +00002082 if (!isa<Constant>(RHS))
2083 if (Value *V = dyn_castNegVal(RHS))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002084 return BinaryOperator::CreateSub(LHS, V);
Chris Lattnerdd841ae2002-04-18 17:39:14 +00002085
Misha Brukmanfd939082005-04-21 23:48:37 +00002086
Chris Lattner50af16a2004-11-13 19:50:12 +00002087 ConstantInt *C2;
2088 if (Value *X = dyn_castFoldableMul(LHS, C2)) {
2089 if (X == RHS) // X*C + X --> X * (C+1)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002090 return BinaryOperator::CreateMul(RHS, AddOne(C2));
Chris Lattner50af16a2004-11-13 19:50:12 +00002091
2092 // X*C1 + X*C2 --> X * (C1+C2)
2093 ConstantInt *C1;
2094 if (X == dyn_castFoldableMul(RHS, C1))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002095 return BinaryOperator::CreateMul(X, Add(C1, C2));
Chris Lattnerad3448c2003-02-18 19:57:07 +00002096 }
2097
2098 // X + X*C --> X * (C+1)
Chris Lattner50af16a2004-11-13 19:50:12 +00002099 if (dyn_castFoldableMul(RHS, C2) == LHS)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002100 return BinaryOperator::CreateMul(LHS, AddOne(C2));
Chris Lattner50af16a2004-11-13 19:50:12 +00002101
Chris Lattnere617c9e2007-01-05 02:17:46 +00002102 // X + ~X --> -1 since ~X = -X-1
Chris Lattner7cbe2eb2007-06-15 06:23:19 +00002103 if (dyn_castNotVal(LHS) == RHS || dyn_castNotVal(RHS) == LHS)
2104 return ReplaceInstUsesWith(I, Constant::getAllOnesValue(I.getType()));
Chris Lattnere617c9e2007-01-05 02:17:46 +00002105
Chris Lattnerad3448c2003-02-18 19:57:07 +00002106
Chris Lattner564a7272003-08-13 19:01:45 +00002107 // (A & C1)+(B & C2) --> (A & C1)|(B & C2) iff C1&C2 == 0
Chris Lattneracd1f0f2004-07-30 07:50:03 +00002108 if (match(RHS, m_And(m_Value(), m_ConstantInt(C2))))
Chris Lattnere617c9e2007-01-05 02:17:46 +00002109 if (Instruction *R = AssociativeOpt(I, AddMaskingAnd(C2)))
2110 return R;
Chris Lattner5e0d7182008-05-19 20:01:56 +00002111
2112 // A+B --> A|B iff A and B have no bits set in common.
2113 if (const IntegerType *IT = dyn_cast<IntegerType>(I.getType())) {
2114 APInt Mask = APInt::getAllOnesValue(IT->getBitWidth());
2115 APInt LHSKnownOne(IT->getBitWidth(), 0);
2116 APInt LHSKnownZero(IT->getBitWidth(), 0);
2117 ComputeMaskedBits(LHS, Mask, LHSKnownZero, LHSKnownOne);
2118 if (LHSKnownZero != 0) {
2119 APInt RHSKnownOne(IT->getBitWidth(), 0);
2120 APInt RHSKnownZero(IT->getBitWidth(), 0);
2121 ComputeMaskedBits(RHS, Mask, RHSKnownZero, RHSKnownOne);
2122
2123 // No bits in common -> bitwise or.
Chris Lattner9d60ba92008-05-19 20:03:53 +00002124 if ((LHSKnownZero|RHSKnownZero).isAllOnesValue())
Chris Lattner5e0d7182008-05-19 20:01:56 +00002125 return BinaryOperator::CreateOr(LHS, RHS);
Chris Lattner5e0d7182008-05-19 20:01:56 +00002126 }
2127 }
Chris Lattnerc8802d22003-03-11 00:12:48 +00002128
Nick Lewyckyb6eabff2008-02-03 07:42:09 +00002129 // W*X + Y*Z --> W * (X+Z) iff W == Y
Nick Lewycky0c2c3f62008-02-03 08:19:11 +00002130 if (I.getType()->isIntOrIntVector()) {
Nick Lewyckyb6eabff2008-02-03 07:42:09 +00002131 Value *W, *X, *Y, *Z;
2132 if (match(LHS, m_Mul(m_Value(W), m_Value(X))) &&
2133 match(RHS, m_Mul(m_Value(Y), m_Value(Z)))) {
2134 if (W != Y) {
2135 if (W == Z) {
Bill Wendling587c01d2008-02-26 10:53:30 +00002136 std::swap(Y, Z);
Nick Lewyckyb6eabff2008-02-03 07:42:09 +00002137 } else if (Y == X) {
Bill Wendling587c01d2008-02-26 10:53:30 +00002138 std::swap(W, X);
2139 } else if (X == Z) {
Nick Lewyckyb6eabff2008-02-03 07:42:09 +00002140 std::swap(Y, Z);
2141 std::swap(W, X);
2142 }
2143 }
2144
2145 if (W == Y) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002146 Value *NewAdd = InsertNewInstBefore(BinaryOperator::CreateAdd(X, Z,
Nick Lewyckyb6eabff2008-02-03 07:42:09 +00002147 LHS->getName()), I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002148 return BinaryOperator::CreateMul(W, NewAdd);
Nick Lewyckyb6eabff2008-02-03 07:42:09 +00002149 }
2150 }
2151 }
2152
Chris Lattner6b032052003-10-02 15:11:26 +00002153 if (ConstantInt *CRHS = dyn_cast<ConstantInt>(RHS)) {
Chris Lattner4f637d42006-01-06 17:59:59 +00002154 Value *X = 0;
Reid Spencer7177c3a2007-03-25 05:33:51 +00002155 if (match(LHS, m_Not(m_Value(X)))) // ~X + C --> (C-1) - X
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002156 return BinaryOperator::CreateSub(SubOne(CRHS), X);
Chris Lattneracd1f0f2004-07-30 07:50:03 +00002157
Chris Lattnerb99d6b12004-10-08 05:07:56 +00002158 // (X & FF00) + xx00 -> (X+xx00) & FF00
2159 if (LHS->hasOneUse() && match(LHS, m_And(m_Value(X), m_ConstantInt(C2)))) {
Reid Spencer7177c3a2007-03-25 05:33:51 +00002160 Constant *Anded = And(CRHS, C2);
Chris Lattnerb99d6b12004-10-08 05:07:56 +00002161 if (Anded == CRHS) {
2162 // See if all bits from the first bit set in the Add RHS up are included
2163 // in the mask. First, get the rightmost bit.
Zhou Sheng3a507fd2007-04-01 17:13:37 +00002164 const APInt& AddRHSV = CRHS->getValue();
Chris Lattnerb99d6b12004-10-08 05:07:56 +00002165
2166 // Form a mask of all bits from the lowest bit added through the top.
Zhou Sheng3a507fd2007-04-01 17:13:37 +00002167 APInt AddRHSHighBits(~((AddRHSV & -AddRHSV)-1));
Chris Lattnerb99d6b12004-10-08 05:07:56 +00002168
2169 // See if the and mask includes all of these bits.
Zhou Sheng3a507fd2007-04-01 17:13:37 +00002170 APInt AddRHSHighBitsAnd(AddRHSHighBits & C2->getValue());
Misha Brukmanfd939082005-04-21 23:48:37 +00002171
Chris Lattnerb99d6b12004-10-08 05:07:56 +00002172 if (AddRHSHighBits == AddRHSHighBitsAnd) {
2173 // Okay, the xform is safe. Insert the new add pronto.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002174 Value *NewAdd = InsertNewInstBefore(BinaryOperator::CreateAdd(X, CRHS,
Chris Lattnerb99d6b12004-10-08 05:07:56 +00002175 LHS->getName()), I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002176 return BinaryOperator::CreateAnd(NewAdd, C2);
Chris Lattnerb99d6b12004-10-08 05:07:56 +00002177 }
2178 }
2179 }
2180
Chris Lattneracd1f0f2004-07-30 07:50:03 +00002181 // Try to fold constant add into select arguments.
2182 if (SelectInst *SI = dyn_cast<SelectInst>(LHS))
Chris Lattner6e7ba452005-01-01 16:22:27 +00002183 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
Chris Lattneracd1f0f2004-07-30 07:50:03 +00002184 return R;
Chris Lattner6b032052003-10-02 15:11:26 +00002185 }
2186
Reid Spencer1628cec2006-10-26 06:15:43 +00002187 // add (cast *A to intptrtype) B ->
Chris Lattner42790482007-12-20 01:56:58 +00002188 // cast (GEP (cast *A to sbyte*) B) --> intptrtype
Andrew Lenharth16d79552006-09-19 18:24:51 +00002189 {
Reid Spencer3da59db2006-11-27 01:05:10 +00002190 CastInst *CI = dyn_cast<CastInst>(LHS);
2191 Value *Other = RHS;
Andrew Lenharth16d79552006-09-19 18:24:51 +00002192 if (!CI) {
2193 CI = dyn_cast<CastInst>(RHS);
2194 Other = LHS;
2195 }
Andrew Lenharth45633262006-09-20 15:37:57 +00002196 if (CI && CI->getType()->isSized() &&
Reid Spencerabaa8ca2007-01-08 16:32:00 +00002197 (CI->getType()->getPrimitiveSizeInBits() ==
2198 TD->getIntPtrType()->getPrimitiveSizeInBits())
Andrew Lenharth45633262006-09-20 15:37:57 +00002199 && isa<PointerType>(CI->getOperand(0)->getType())) {
Christopher Lamb43ad6b32007-12-17 01:12:55 +00002200 unsigned AS =
2201 cast<PointerType>(CI->getOperand(0)->getType())->getAddressSpace();
Chris Lattner6d0339d2008-01-13 22:23:22 +00002202 Value *I2 = InsertBitCastBefore(CI->getOperand(0),
2203 PointerType::get(Type::Int8Ty, AS), I);
Gabor Greif051a9502008-04-06 20:25:17 +00002204 I2 = InsertNewInstBefore(GetElementPtrInst::Create(I2, Other, "ctg2"), I);
Reid Spencer3da59db2006-11-27 01:05:10 +00002205 return new PtrToIntInst(I2, CI->getType());
Andrew Lenharth16d79552006-09-19 18:24:51 +00002206 }
2207 }
Christopher Lamb30f017a2007-12-18 09:34:41 +00002208
Chris Lattner42790482007-12-20 01:56:58 +00002209 // add (select X 0 (sub n A)) A --> select X A n
Christopher Lamb30f017a2007-12-18 09:34:41 +00002210 {
2211 SelectInst *SI = dyn_cast<SelectInst>(LHS);
2212 Value *Other = RHS;
2213 if (!SI) {
2214 SI = dyn_cast<SelectInst>(RHS);
2215 Other = LHS;
2216 }
Chris Lattner42790482007-12-20 01:56:58 +00002217 if (SI && SI->hasOneUse()) {
Christopher Lamb30f017a2007-12-18 09:34:41 +00002218 Value *TV = SI->getTrueValue();
2219 Value *FV = SI->getFalseValue();
Chris Lattner42790482007-12-20 01:56:58 +00002220 Value *A, *N;
Christopher Lamb30f017a2007-12-18 09:34:41 +00002221
2222 // Can we fold the add into the argument of the select?
2223 // We check both true and false select arguments for a matching subtract.
Chris Lattner42790482007-12-20 01:56:58 +00002224 if (match(FV, m_Zero()) && match(TV, m_Sub(m_Value(N), m_Value(A))) &&
2225 A == Other) // Fold the add into the true select value.
Gabor Greif051a9502008-04-06 20:25:17 +00002226 return SelectInst::Create(SI->getCondition(), N, A);
Chris Lattner42790482007-12-20 01:56:58 +00002227 if (match(TV, m_Zero()) && match(FV, m_Sub(m_Value(N), m_Value(A))) &&
2228 A == Other) // Fold the add into the false select value.
Gabor Greif051a9502008-04-06 20:25:17 +00002229 return SelectInst::Create(SI->getCondition(), A, N);
Christopher Lamb30f017a2007-12-18 09:34:41 +00002230 }
2231 }
Chris Lattner2454a2e2008-01-29 06:52:45 +00002232
2233 // Check for X+0.0. Simplify it to X if we know X is not -0.0.
2234 if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHS))
2235 if (CFP->getValueAPF().isPosZero() && CannotBeNegativeZero(LHS))
2236 return ReplaceInstUsesWith(I, LHS);
Andrew Lenharth16d79552006-09-19 18:24:51 +00002237
Chris Lattner3d28b1b2008-05-20 05:46:13 +00002238 // Check for (add (sext x), y), see if we can merge this into an
2239 // integer add followed by a sext.
2240 if (SExtInst *LHSConv = dyn_cast<SExtInst>(LHS)) {
2241 // (add (sext x), cst) --> (sext (add x, cst'))
2242 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS)) {
2243 Constant *CI =
2244 ConstantExpr::getTrunc(RHSC, LHSConv->getOperand(0)->getType());
2245 if (LHSConv->hasOneUse() &&
2246 ConstantExpr::getSExt(CI, I.getType()) == RHSC &&
2247 WillNotOverflowSignedAdd(LHSConv->getOperand(0), CI)) {
2248 // Insert the new, smaller add.
2249 Instruction *NewAdd = BinaryOperator::CreateAdd(LHSConv->getOperand(0),
2250 CI, "addconv");
2251 InsertNewInstBefore(NewAdd, I);
2252 return new SExtInst(NewAdd, I.getType());
2253 }
2254 }
2255
2256 // (add (sext x), (sext y)) --> (sext (add int x, y))
2257 if (SExtInst *RHSConv = dyn_cast<SExtInst>(RHS)) {
2258 // Only do this if x/y have the same type, if at last one of them has a
2259 // single use (so we don't increase the number of sexts), and if the
2260 // integer add will not overflow.
2261 if (LHSConv->getOperand(0)->getType()==RHSConv->getOperand(0)->getType()&&
2262 (LHSConv->hasOneUse() || RHSConv->hasOneUse()) &&
2263 WillNotOverflowSignedAdd(LHSConv->getOperand(0),
2264 RHSConv->getOperand(0))) {
2265 // Insert the new integer add.
2266 Instruction *NewAdd = BinaryOperator::CreateAdd(LHSConv->getOperand(0),
2267 RHSConv->getOperand(0),
2268 "addconv");
2269 InsertNewInstBefore(NewAdd, I);
2270 return new SExtInst(NewAdd, I.getType());
2271 }
2272 }
2273 }
2274
2275 // Check for (add double (sitofp x), y), see if we can merge this into an
2276 // integer add followed by a promotion.
2277 if (SIToFPInst *LHSConv = dyn_cast<SIToFPInst>(LHS)) {
2278 // (add double (sitofp x), fpcst) --> (sitofp (add int x, intcst))
2279 // ... if the constant fits in the integer value. This is useful for things
2280 // like (double)(x & 1234) + 4.0 -> (double)((X & 1234)+4) which no longer
2281 // requires a constant pool load, and generally allows the add to be better
2282 // instcombined.
2283 if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHS)) {
2284 Constant *CI =
2285 ConstantExpr::getFPToSI(CFP, LHSConv->getOperand(0)->getType());
2286 if (LHSConv->hasOneUse() &&
2287 ConstantExpr::getSIToFP(CI, I.getType()) == CFP &&
2288 WillNotOverflowSignedAdd(LHSConv->getOperand(0), CI)) {
2289 // Insert the new integer add.
2290 Instruction *NewAdd = BinaryOperator::CreateAdd(LHSConv->getOperand(0),
2291 CI, "addconv");
2292 InsertNewInstBefore(NewAdd, I);
2293 return new SIToFPInst(NewAdd, I.getType());
2294 }
2295 }
2296
2297 // (add double (sitofp x), (sitofp y)) --> (sitofp (add int x, y))
2298 if (SIToFPInst *RHSConv = dyn_cast<SIToFPInst>(RHS)) {
2299 // Only do this if x/y have the same type, if at last one of them has a
2300 // single use (so we don't increase the number of int->fp conversions),
2301 // and if the integer add will not overflow.
2302 if (LHSConv->getOperand(0)->getType()==RHSConv->getOperand(0)->getType()&&
2303 (LHSConv->hasOneUse() || RHSConv->hasOneUse()) &&
2304 WillNotOverflowSignedAdd(LHSConv->getOperand(0),
2305 RHSConv->getOperand(0))) {
2306 // Insert the new integer add.
2307 Instruction *NewAdd = BinaryOperator::CreateAdd(LHSConv->getOperand(0),
2308 RHSConv->getOperand(0),
2309 "addconv");
2310 InsertNewInstBefore(NewAdd, I);
2311 return new SIToFPInst(NewAdd, I.getType());
2312 }
2313 }
2314 }
2315
Chris Lattner7e708292002-06-25 16:13:24 +00002316 return Changed ? &I : 0;
Chris Lattnerdd841ae2002-04-18 17:39:14 +00002317}
2318
Chris Lattner7e708292002-06-25 16:13:24 +00002319Instruction *InstCombiner::visitSub(BinaryOperator &I) {
Chris Lattner7e708292002-06-25 16:13:24 +00002320 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattner3f5b8772002-05-06 16:14:14 +00002321
Chris Lattnerd137ab42008-07-17 06:07:20 +00002322 if (Op0 == Op1 && // sub X, X -> 0
2323 !I.getType()->isFPOrFPVector())
Chris Lattner233f7dc2002-08-12 21:17:25 +00002324 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattnerdd841ae2002-04-18 17:39:14 +00002325
Chris Lattner233f7dc2002-08-12 21:17:25 +00002326 // If this is a 'B = x-(-A)', change to B = x+A...
Chris Lattner8d969642003-03-10 23:06:50 +00002327 if (Value *V = dyn_castNegVal(Op1))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002328 return BinaryOperator::CreateAdd(Op0, V);
Chris Lattnerb35dde12002-05-06 16:49:18 +00002329
Chris Lattnere87597f2004-10-16 18:11:37 +00002330 if (isa<UndefValue>(Op0))
2331 return ReplaceInstUsesWith(I, Op0); // undef - X -> undef
2332 if (isa<UndefValue>(Op1))
2333 return ReplaceInstUsesWith(I, Op1); // X - undef -> undef
2334
Chris Lattnerd65460f2003-11-05 01:06:05 +00002335 if (ConstantInt *C = dyn_cast<ConstantInt>(Op0)) {
2336 // Replace (-1 - A) with (~A)...
Chris Lattnera2881962003-02-18 19:28:33 +00002337 if (C->isAllOnesValue())
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002338 return BinaryOperator::CreateNot(Op1);
Chris Lattner40371712002-05-09 01:29:19 +00002339
Chris Lattnerd65460f2003-11-05 01:06:05 +00002340 // C - ~X == X + (1+C)
Reid Spencer4b828e62005-06-18 17:37:34 +00002341 Value *X = 0;
Chris Lattneracd1f0f2004-07-30 07:50:03 +00002342 if (match(Op1, m_Not(m_Value(X))))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002343 return BinaryOperator::CreateAdd(X, AddOne(C));
Reid Spencer7177c3a2007-03-25 05:33:51 +00002344
Chris Lattner76b7a062007-01-15 07:02:54 +00002345 // -(X >>u 31) -> (X >>s 31)
2346 // -(X >>s 31) -> (X >>u 31)
Zhou Sheng302748d2007-03-30 17:20:39 +00002347 if (C->isZero()) {
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00002348 if (BinaryOperator *SI = dyn_cast<BinaryOperator>(Op1)) {
Reid Spencer3822ff52006-11-08 06:47:33 +00002349 if (SI->getOpcode() == Instruction::LShr) {
Reid Spencerb83eb642006-10-20 07:07:24 +00002350 if (ConstantInt *CU = dyn_cast<ConstantInt>(SI->getOperand(1))) {
Chris Lattner9c290672004-03-12 23:53:13 +00002351 // Check to see if we are shifting out everything but the sign bit.
Zhou Sheng302748d2007-03-30 17:20:39 +00002352 if (CU->getLimitedValue(SI->getType()->getPrimitiveSizeInBits()) ==
Reid Spencerb83eb642006-10-20 07:07:24 +00002353 SI->getType()->getPrimitiveSizeInBits()-1) {
Reid Spencer3822ff52006-11-08 06:47:33 +00002354 // Ok, the transformation is safe. Insert AShr.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002355 return BinaryOperator::Create(Instruction::AShr,
Reid Spencer832254e2007-02-02 02:16:23 +00002356 SI->getOperand(0), CU, SI->getName());
Chris Lattner9c290672004-03-12 23:53:13 +00002357 }
2358 }
Reid Spencer3822ff52006-11-08 06:47:33 +00002359 }
2360 else if (SI->getOpcode() == Instruction::AShr) {
2361 if (ConstantInt *CU = dyn_cast<ConstantInt>(SI->getOperand(1))) {
2362 // Check to see if we are shifting out everything but the sign bit.
Zhou Sheng302748d2007-03-30 17:20:39 +00002363 if (CU->getLimitedValue(SI->getType()->getPrimitiveSizeInBits()) ==
Reid Spencer3822ff52006-11-08 06:47:33 +00002364 SI->getType()->getPrimitiveSizeInBits()-1) {
Reid Spencerc5b206b2006-12-31 05:48:39 +00002365 // Ok, the transformation is safe. Insert LShr.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002366 return BinaryOperator::CreateLShr(
Reid Spencer832254e2007-02-02 02:16:23 +00002367 SI->getOperand(0), CU, SI->getName());
Reid Spencer3822ff52006-11-08 06:47:33 +00002368 }
2369 }
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00002370 }
2371 }
Chris Lattnerbfe492b2004-03-13 00:11:49 +00002372 }
Chris Lattner2eefe512004-04-09 19:05:30 +00002373
2374 // Try to fold constant sub into select arguments.
2375 if (SelectInst *SI = dyn_cast<SelectInst>(Op1))
Chris Lattner6e7ba452005-01-01 16:22:27 +00002376 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
Chris Lattner2eefe512004-04-09 19:05:30 +00002377 return R;
Chris Lattner4e998b22004-09-29 05:07:12 +00002378
2379 if (isa<PHINode>(Op0))
2380 if (Instruction *NV = FoldOpIntoPhi(I))
2381 return NV;
Chris Lattnerd65460f2003-11-05 01:06:05 +00002382 }
2383
Nick Lewycky9419ddb2008-05-31 17:59:52 +00002384 if (I.getType() == Type::Int1Ty)
2385 return BinaryOperator::CreateXor(Op0, Op1);
2386
Chris Lattner43d84d62005-04-07 16:15:25 +00002387 if (BinaryOperator *Op1I = dyn_cast<BinaryOperator>(Op1)) {
2388 if (Op1I->getOpcode() == Instruction::Add &&
Chris Lattner9919e3d2006-12-02 00:13:08 +00002389 !Op0->getType()->isFPOrFPVector()) {
Chris Lattner08954a22005-04-07 16:28:01 +00002390 if (Op1I->getOperand(0) == Op0) // X-(X+Y) == -Y
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002391 return BinaryOperator::CreateNeg(Op1I->getOperand(1), I.getName());
Chris Lattner08954a22005-04-07 16:28:01 +00002392 else if (Op1I->getOperand(1) == Op0) // X-(Y+X) == -Y
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002393 return BinaryOperator::CreateNeg(Op1I->getOperand(0), I.getName());
Chris Lattner08954a22005-04-07 16:28:01 +00002394 else if (ConstantInt *CI1 = dyn_cast<ConstantInt>(I.getOperand(0))) {
2395 if (ConstantInt *CI2 = dyn_cast<ConstantInt>(Op1I->getOperand(1)))
2396 // C1-(X+C2) --> (C1-C2)-X
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002397 return BinaryOperator::CreateSub(Subtract(CI1, CI2),
Chris Lattner08954a22005-04-07 16:28:01 +00002398 Op1I->getOperand(0));
2399 }
Chris Lattner43d84d62005-04-07 16:15:25 +00002400 }
2401
Chris Lattnerfd059242003-10-15 16:48:29 +00002402 if (Op1I->hasOneUse()) {
Chris Lattnera2881962003-02-18 19:28:33 +00002403 // Replace (x - (y - z)) with (x + (z - y)) if the (y - z) subexpression
2404 // is not used by anyone else...
2405 //
Chris Lattner0517e722004-02-02 20:09:56 +00002406 if (Op1I->getOpcode() == Instruction::Sub &&
Chris Lattner9919e3d2006-12-02 00:13:08 +00002407 !Op1I->getType()->isFPOrFPVector()) {
Chris Lattnera2881962003-02-18 19:28:33 +00002408 // Swap the two operands of the subexpr...
2409 Value *IIOp0 = Op1I->getOperand(0), *IIOp1 = Op1I->getOperand(1);
2410 Op1I->setOperand(0, IIOp1);
2411 Op1I->setOperand(1, IIOp0);
Misha Brukmanfd939082005-04-21 23:48:37 +00002412
Chris Lattnera2881962003-02-18 19:28:33 +00002413 // Create the new top level add instruction...
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002414 return BinaryOperator::CreateAdd(Op0, Op1);
Chris Lattnera2881962003-02-18 19:28:33 +00002415 }
2416
2417 // Replace (A - (A & B)) with (A & ~B) if this is the only use of (A&B)...
2418 //
2419 if (Op1I->getOpcode() == Instruction::And &&
2420 (Op1I->getOperand(0) == Op0 || Op1I->getOperand(1) == Op0)) {
2421 Value *OtherOp = Op1I->getOperand(Op1I->getOperand(0) == Op0);
2422
Chris Lattnerf523d062004-06-09 05:08:07 +00002423 Value *NewNot =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002424 InsertNewInstBefore(BinaryOperator::CreateNot(OtherOp, "B.not"), I);
2425 return BinaryOperator::CreateAnd(Op0, NewNot);
Chris Lattnera2881962003-02-18 19:28:33 +00002426 }
Chris Lattnerad3448c2003-02-18 19:57:07 +00002427
Reid Spencerac5209e2006-10-16 23:08:08 +00002428 // 0 - (X sdiv C) -> (X sdiv -C)
Reid Spencer1628cec2006-10-26 06:15:43 +00002429 if (Op1I->getOpcode() == Instruction::SDiv)
Reid Spencerb83eb642006-10-20 07:07:24 +00002430 if (ConstantInt *CSI = dyn_cast<ConstantInt>(Op0))
Zhou Sheng843f07672007-04-19 05:39:12 +00002431 if (CSI->isZero())
Chris Lattner91ccc152004-10-06 15:08:25 +00002432 if (Constant *DivRHS = dyn_cast<Constant>(Op1I->getOperand(1)))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002433 return BinaryOperator::CreateSDiv(Op1I->getOperand(0),
Chris Lattner91ccc152004-10-06 15:08:25 +00002434 ConstantExpr::getNeg(DivRHS));
2435
Chris Lattnerad3448c2003-02-18 19:57:07 +00002436 // X - X*C --> X * (1-C)
Reid Spencer4b828e62005-06-18 17:37:34 +00002437 ConstantInt *C2 = 0;
Chris Lattner50af16a2004-11-13 19:50:12 +00002438 if (dyn_castFoldableMul(Op1I, C2) == Op0) {
Reid Spencer7177c3a2007-03-25 05:33:51 +00002439 Constant *CP1 = Subtract(ConstantInt::get(I.getType(), 1), C2);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002440 return BinaryOperator::CreateMul(Op0, CP1);
Chris Lattnerad3448c2003-02-18 19:57:07 +00002441 }
Dan Gohman5d066ff2007-09-17 17:31:57 +00002442
2443 // X - ((X / Y) * Y) --> X % Y
2444 if (Op1I->getOpcode() == Instruction::Mul)
2445 if (Instruction *I = dyn_cast<Instruction>(Op1I->getOperand(0)))
2446 if (Op0 == I->getOperand(0) &&
2447 Op1I->getOperand(1) == I->getOperand(1)) {
2448 if (I->getOpcode() == Instruction::SDiv)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002449 return BinaryOperator::CreateSRem(Op0, Op1I->getOperand(1));
Dan Gohman5d066ff2007-09-17 17:31:57 +00002450 if (I->getOpcode() == Instruction::UDiv)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002451 return BinaryOperator::CreateURem(Op0, Op1I->getOperand(1));
Dan Gohman5d066ff2007-09-17 17:31:57 +00002452 }
Chris Lattner40371712002-05-09 01:29:19 +00002453 }
Chris Lattner43d84d62005-04-07 16:15:25 +00002454 }
Chris Lattnera2881962003-02-18 19:28:33 +00002455
Chris Lattner9919e3d2006-12-02 00:13:08 +00002456 if (!Op0->getType()->isFPOrFPVector())
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00002457 if (BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0)) {
Chris Lattner7edc8c22005-04-07 17:14:51 +00002458 if (Op0I->getOpcode() == Instruction::Add) {
Chris Lattner6fb5a4a2005-01-19 21:50:18 +00002459 if (Op0I->getOperand(0) == Op1) // (Y+X)-Y == X
2460 return ReplaceInstUsesWith(I, Op0I->getOperand(1));
2461 else if (Op0I->getOperand(1) == Op1) // (X+Y)-Y == X
2462 return ReplaceInstUsesWith(I, Op0I->getOperand(0));
Chris Lattner7edc8c22005-04-07 17:14:51 +00002463 } else if (Op0I->getOpcode() == Instruction::Sub) {
2464 if (Op0I->getOperand(0) == Op1) // (X-Y)-X == -Y
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002465 return BinaryOperator::CreateNeg(Op0I->getOperand(1), I.getName());
Chris Lattner6fb5a4a2005-01-19 21:50:18 +00002466 }
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00002467 }
Misha Brukmanfd939082005-04-21 23:48:37 +00002468
Chris Lattner50af16a2004-11-13 19:50:12 +00002469 ConstantInt *C1;
2470 if (Value *X = dyn_castFoldableMul(Op0, C1)) {
Reid Spencer7177c3a2007-03-25 05:33:51 +00002471 if (X == Op1) // X*C - X --> X * (C-1)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002472 return BinaryOperator::CreateMul(Op1, SubOne(C1));
Chris Lattnerad3448c2003-02-18 19:57:07 +00002473
Chris Lattner50af16a2004-11-13 19:50:12 +00002474 ConstantInt *C2; // X*C1 - X*C2 -> X * (C1-C2)
2475 if (X == dyn_castFoldableMul(Op1, C2))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002476 return BinaryOperator::CreateMul(X, Subtract(C1, C2));
Chris Lattner50af16a2004-11-13 19:50:12 +00002477 }
Chris Lattner3f5b8772002-05-06 16:14:14 +00002478 return 0;
Chris Lattnerdd841ae2002-04-18 17:39:14 +00002479}
2480
Chris Lattnera0141b92007-07-15 20:42:37 +00002481/// isSignBitCheck - Given an exploded icmp instruction, return true if the
2482/// comparison only checks the sign bit. If it only checks the sign bit, set
2483/// TrueIfSigned if the result of the comparison is true when the input value is
2484/// signed.
2485static bool isSignBitCheck(ICmpInst::Predicate pred, ConstantInt *RHS,
2486 bool &TrueIfSigned) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002487 switch (pred) {
Chris Lattnera0141b92007-07-15 20:42:37 +00002488 case ICmpInst::ICMP_SLT: // True if LHS s< 0
2489 TrueIfSigned = true;
2490 return RHS->isZero();
Chris Lattnercb7122b2007-07-16 04:15:34 +00002491 case ICmpInst::ICMP_SLE: // True if LHS s<= RHS and RHS == -1
2492 TrueIfSigned = true;
2493 return RHS->isAllOnesValue();
Chris Lattnera0141b92007-07-15 20:42:37 +00002494 case ICmpInst::ICMP_SGT: // True if LHS s> -1
2495 TrueIfSigned = false;
2496 return RHS->isAllOnesValue();
Chris Lattnercb7122b2007-07-16 04:15:34 +00002497 case ICmpInst::ICMP_UGT:
2498 // True if LHS u> RHS and RHS == high-bit-mask - 1
2499 TrueIfSigned = true;
2500 return RHS->getValue() ==
2501 APInt::getSignedMaxValue(RHS->getType()->getPrimitiveSizeInBits());
2502 case ICmpInst::ICMP_UGE:
2503 // True if LHS u>= RHS and RHS == high-bit-mask (2^7, 2^15, 2^31, etc)
2504 TrueIfSigned = true;
Chris Lattner833f25d2008-06-02 01:29:46 +00002505 return RHS->getValue().isSignBit();
Chris Lattnera0141b92007-07-15 20:42:37 +00002506 default:
2507 return false;
Chris Lattner4cb170c2004-02-23 06:38:22 +00002508 }
Chris Lattner4cb170c2004-02-23 06:38:22 +00002509}
2510
Chris Lattner7e708292002-06-25 16:13:24 +00002511Instruction *InstCombiner::visitMul(BinaryOperator &I) {
Chris Lattner4f98c562003-03-10 21:43:22 +00002512 bool Changed = SimplifyCommutative(I);
Chris Lattnera2881962003-02-18 19:28:33 +00002513 Value *Op0 = I.getOperand(0);
Chris Lattnerdd841ae2002-04-18 17:39:14 +00002514
Chris Lattnere87597f2004-10-16 18:11:37 +00002515 if (isa<UndefValue>(I.getOperand(1))) // undef * X -> 0
2516 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
2517
Chris Lattner233f7dc2002-08-12 21:17:25 +00002518 // Simplify mul instructions with a constant RHS...
Chris Lattnera2881962003-02-18 19:28:33 +00002519 if (Constant *Op1 = dyn_cast<Constant>(I.getOperand(1))) {
2520 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Chris Lattnere92d2f42003-08-13 04:18:28 +00002521
2522 // ((X << C1)*C2) == (X * (C2 << C1))
Reid Spencer832254e2007-02-02 02:16:23 +00002523 if (BinaryOperator *SI = dyn_cast<BinaryOperator>(Op0))
Chris Lattnere92d2f42003-08-13 04:18:28 +00002524 if (SI->getOpcode() == Instruction::Shl)
2525 if (Constant *ShOp = dyn_cast<Constant>(SI->getOperand(1)))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002526 return BinaryOperator::CreateMul(SI->getOperand(0),
Chris Lattner48595f12004-06-10 02:07:29 +00002527 ConstantExpr::getShl(CI, ShOp));
Misha Brukmanfd939082005-04-21 23:48:37 +00002528
Zhou Sheng843f07672007-04-19 05:39:12 +00002529 if (CI->isZero())
Chris Lattner515c97c2003-09-11 22:24:54 +00002530 return ReplaceInstUsesWith(I, Op1); // X * 0 == 0
2531 if (CI->equalsInt(1)) // X * 1 == X
2532 return ReplaceInstUsesWith(I, Op0);
2533 if (CI->isAllOnesValue()) // X * -1 == 0 - X
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002534 return BinaryOperator::CreateNeg(Op0, I.getName());
Chris Lattner6c1ce212002-04-29 22:24:47 +00002535
Zhou Sheng97b52c22007-03-29 01:57:21 +00002536 const APInt& Val = cast<ConstantInt>(CI)->getValue();
Reid Spencerbca0e382007-03-23 20:05:17 +00002537 if (Val.isPowerOf2()) { // Replace X*(2^C) with X << C
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002538 return BinaryOperator::CreateShl(Op0,
Reid Spencerbca0e382007-03-23 20:05:17 +00002539 ConstantInt::get(Op0->getType(), Val.logBase2()));
Chris Lattnerbcd7db52005-08-02 19:16:58 +00002540 }
Robert Bocchino71698282004-07-27 21:02:21 +00002541 } else if (ConstantFP *Op1F = dyn_cast<ConstantFP>(Op1)) {
Chris Lattnera2881962003-02-18 19:28:33 +00002542 if (Op1F->isNullValue())
2543 return ReplaceInstUsesWith(I, Op1);
Chris Lattner6c1ce212002-04-29 22:24:47 +00002544
Chris Lattnera2881962003-02-18 19:28:33 +00002545 // "In IEEE floating point, x*1 is not equivalent to x for nans. However,
2546 // ANSI says we can drop signals, so we can do this anyway." (from GCC)
Chris Lattnerb8cd4d32008-08-11 22:06:05 +00002547 if (Op1F->isExactlyValue(1.0))
2548 return ReplaceInstUsesWith(I, Op0); // Eliminate 'mul double %X, 1.0'
2549 } else if (isa<VectorType>(Op1->getType())) {
2550 if (isa<ConstantAggregateZero>(Op1))
2551 return ReplaceInstUsesWith(I, Op1);
2552
2553 // As above, vector X*splat(1.0) -> X in all defined cases.
2554 if (ConstantVector *Op1V = dyn_cast<ConstantVector>(Op1))
2555 if (ConstantFP *F = dyn_cast_or_null<ConstantFP>(Op1V->getSplatValue()))
2556 if (F->isExactlyValue(1.0))
2557 return ReplaceInstUsesWith(I, Op0);
Chris Lattnera2881962003-02-18 19:28:33 +00002558 }
Chris Lattnerab51f3f2006-03-04 06:04:02 +00002559
2560 if (BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0))
2561 if (Op0I->getOpcode() == Instruction::Add && Op0I->hasOneUse() &&
Chris Lattner47c99092008-05-18 04:11:26 +00002562 isa<ConstantInt>(Op0I->getOperand(1)) && isa<ConstantInt>(Op1)) {
Chris Lattnerab51f3f2006-03-04 06:04:02 +00002563 // Canonicalize (X+C1)*C2 -> X*C2+C1*C2.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002564 Instruction *Add = BinaryOperator::CreateMul(Op0I->getOperand(0),
Chris Lattnerab51f3f2006-03-04 06:04:02 +00002565 Op1, "tmp");
2566 InsertNewInstBefore(Add, I);
2567 Value *C1C2 = ConstantExpr::getMul(Op1,
2568 cast<Constant>(Op0I->getOperand(1)));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002569 return BinaryOperator::CreateAdd(Add, C1C2);
Chris Lattnerab51f3f2006-03-04 06:04:02 +00002570
2571 }
Chris Lattner2eefe512004-04-09 19:05:30 +00002572
2573 // Try to fold constant mul into select arguments.
2574 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
Chris Lattner6e7ba452005-01-01 16:22:27 +00002575 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
Chris Lattner2eefe512004-04-09 19:05:30 +00002576 return R;
Chris Lattner4e998b22004-09-29 05:07:12 +00002577
2578 if (isa<PHINode>(Op0))
2579 if (Instruction *NV = FoldOpIntoPhi(I))
2580 return NV;
Chris Lattnerdd841ae2002-04-18 17:39:14 +00002581 }
2582
Chris Lattnera4f445b2003-03-10 23:23:04 +00002583 if (Value *Op0v = dyn_castNegVal(Op0)) // -X * -Y = X*Y
2584 if (Value *Op1v = dyn_castNegVal(I.getOperand(1)))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002585 return BinaryOperator::CreateMul(Op0v, Op1v);
Chris Lattnera4f445b2003-03-10 23:23:04 +00002586
Nick Lewycky9419ddb2008-05-31 17:59:52 +00002587 if (I.getType() == Type::Int1Ty)
2588 return BinaryOperator::CreateAnd(Op0, I.getOperand(1));
2589
Chris Lattnerfb54b2b2004-02-23 05:39:21 +00002590 // If one of the operands of the multiply is a cast from a boolean value, then
2591 // we know the bool is either zero or one, so this is a 'masking' multiply.
2592 // See if we can simplify things based on how the boolean was originally
2593 // formed.
2594 CastInst *BoolCast = 0;
Nick Lewycky9419ddb2008-05-31 17:59:52 +00002595 if (ZExtInst *CI = dyn_cast<ZExtInst>(Op0))
Reid Spencer4fe16d62007-01-11 18:21:29 +00002596 if (CI->getOperand(0)->getType() == Type::Int1Ty)
Chris Lattnerfb54b2b2004-02-23 05:39:21 +00002597 BoolCast = CI;
2598 if (!BoolCast)
Reid Spencerc55b2432006-12-13 18:21:21 +00002599 if (ZExtInst *CI = dyn_cast<ZExtInst>(I.getOperand(1)))
Reid Spencer4fe16d62007-01-11 18:21:29 +00002600 if (CI->getOperand(0)->getType() == Type::Int1Ty)
Chris Lattnerfb54b2b2004-02-23 05:39:21 +00002601 BoolCast = CI;
2602 if (BoolCast) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00002603 if (ICmpInst *SCI = dyn_cast<ICmpInst>(BoolCast->getOperand(0))) {
Chris Lattnerfb54b2b2004-02-23 05:39:21 +00002604 Value *SCIOp0 = SCI->getOperand(0), *SCIOp1 = SCI->getOperand(1);
2605 const Type *SCOpTy = SCIOp0->getType();
Chris Lattnera0141b92007-07-15 20:42:37 +00002606 bool TIS = false;
2607
Reid Spencere4d87aa2006-12-23 06:05:41 +00002608 // If the icmp is true iff the sign bit of X is set, then convert this
Chris Lattner4cb170c2004-02-23 06:38:22 +00002609 // multiply into a shift/and combination.
2610 if (isa<ConstantInt>(SCIOp1) &&
Chris Lattnera0141b92007-07-15 20:42:37 +00002611 isSignBitCheck(SCI->getPredicate(), cast<ConstantInt>(SCIOp1), TIS) &&
2612 TIS) {
Chris Lattnerfb54b2b2004-02-23 05:39:21 +00002613 // Shift the X value right to turn it into "all signbits".
Reid Spencer832254e2007-02-02 02:16:23 +00002614 Constant *Amt = ConstantInt::get(SCIOp0->getType(),
Chris Lattner484d3cf2005-04-24 06:59:08 +00002615 SCOpTy->getPrimitiveSizeInBits()-1);
Chris Lattner4cb170c2004-02-23 06:38:22 +00002616 Value *V =
Reid Spencer832254e2007-02-02 02:16:23 +00002617 InsertNewInstBefore(
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002618 BinaryOperator::Create(Instruction::AShr, SCIOp0, Amt,
Chris Lattner4cb170c2004-02-23 06:38:22 +00002619 BoolCast->getOperand(0)->getName()+
2620 ".mask"), I);
Chris Lattnerfb54b2b2004-02-23 05:39:21 +00002621
2622 // If the multiply type is not the same as the source type, sign extend
2623 // or truncate to the multiply type.
Reid Spencer17212df2006-12-12 09:18:51 +00002624 if (I.getType() != V->getType()) {
Zhou Sheng4351c642007-04-02 08:20:41 +00002625 uint32_t SrcBits = V->getType()->getPrimitiveSizeInBits();
2626 uint32_t DstBits = I.getType()->getPrimitiveSizeInBits();
Reid Spencer17212df2006-12-12 09:18:51 +00002627 Instruction::CastOps opcode =
2628 (SrcBits == DstBits ? Instruction::BitCast :
2629 (SrcBits < DstBits ? Instruction::SExt : Instruction::Trunc));
2630 V = InsertCastBefore(opcode, V, I.getType(), I);
2631 }
Misha Brukmanfd939082005-04-21 23:48:37 +00002632
Chris Lattnerfb54b2b2004-02-23 05:39:21 +00002633 Value *OtherOp = Op0 == BoolCast ? I.getOperand(1) : Op0;
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002634 return BinaryOperator::CreateAnd(V, OtherOp);
Chris Lattnerfb54b2b2004-02-23 05:39:21 +00002635 }
2636 }
2637 }
2638
Chris Lattner7e708292002-06-25 16:13:24 +00002639 return Changed ? &I : 0;
Chris Lattnerdd841ae2002-04-18 17:39:14 +00002640}
2641
Chris Lattnerfdb19e52008-07-14 00:15:52 +00002642/// SimplifyDivRemOfSelect - Try to fold a divide or remainder of a select
2643/// instruction.
2644bool InstCombiner::SimplifyDivRemOfSelect(BinaryOperator &I) {
2645 SelectInst *SI = cast<SelectInst>(I.getOperand(1));
2646
2647 // div/rem X, (Cond ? 0 : Y) -> div/rem X, Y
2648 int NonNullOperand = -1;
2649 if (Constant *ST = dyn_cast<Constant>(SI->getOperand(1)))
2650 if (ST->isNullValue())
2651 NonNullOperand = 2;
2652 // div/rem X, (Cond ? Y : 0) -> div/rem X, Y
2653 if (Constant *ST = dyn_cast<Constant>(SI->getOperand(2)))
2654 if (ST->isNullValue())
2655 NonNullOperand = 1;
2656
2657 if (NonNullOperand == -1)
2658 return false;
2659
2660 Value *SelectCond = SI->getOperand(0);
2661
2662 // Change the div/rem to use 'Y' instead of the select.
2663 I.setOperand(1, SI->getOperand(NonNullOperand));
2664
2665 // Okay, we know we replace the operand of the div/rem with 'Y' with no
2666 // problem. However, the select, or the condition of the select may have
2667 // multiple uses. Based on our knowledge that the operand must be non-zero,
2668 // propagate the known value for the select into other uses of it, and
2669 // propagate a known value of the condition into its other users.
2670
2671 // If the select and condition only have a single use, don't bother with this,
2672 // early exit.
2673 if (SI->use_empty() && SelectCond->hasOneUse())
2674 return true;
2675
2676 // Scan the current block backward, looking for other uses of SI.
2677 BasicBlock::iterator BBI = &I, BBFront = I.getParent()->begin();
2678
2679 while (BBI != BBFront) {
2680 --BBI;
2681 // If we found a call to a function, we can't assume it will return, so
2682 // information from below it cannot be propagated above it.
2683 if (isa<CallInst>(BBI) && !isa<IntrinsicInst>(BBI))
2684 break;
2685
2686 // Replace uses of the select or its condition with the known values.
2687 for (Instruction::op_iterator I = BBI->op_begin(), E = BBI->op_end();
2688 I != E; ++I) {
2689 if (*I == SI) {
2690 *I = SI->getOperand(NonNullOperand);
2691 AddToWorkList(BBI);
2692 } else if (*I == SelectCond) {
2693 *I = NonNullOperand == 1 ? ConstantInt::getTrue() :
2694 ConstantInt::getFalse();
2695 AddToWorkList(BBI);
2696 }
2697 }
2698
2699 // If we past the instruction, quit looking for it.
2700 if (&*BBI == SI)
2701 SI = 0;
2702 if (&*BBI == SelectCond)
2703 SelectCond = 0;
2704
2705 // If we ran out of things to eliminate, break out of the loop.
2706 if (SelectCond == 0 && SI == 0)
2707 break;
2708
2709 }
2710 return true;
2711}
2712
2713
Reid Spencer1628cec2006-10-26 06:15:43 +00002714/// This function implements the transforms on div instructions that work
2715/// regardless of the kind of div instruction it is (udiv, sdiv, or fdiv). It is
2716/// used by the visitors to those instructions.
2717/// @brief Transforms common to all three div instructions
Reid Spencer3da59db2006-11-27 01:05:10 +00002718Instruction *InstCombiner::commonDivTransforms(BinaryOperator &I) {
Chris Lattner857e8cd2004-12-12 21:48:58 +00002719 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnere87597f2004-10-16 18:11:37 +00002720
Chris Lattner50b2ca42008-02-19 06:12:18 +00002721 // undef / X -> 0 for integer.
2722 // undef / X -> undef for FP (the undef could be a snan).
2723 if (isa<UndefValue>(Op0)) {
2724 if (Op0->getType()->isFPOrFPVector())
2725 return ReplaceInstUsesWith(I, Op0);
Chris Lattner857e8cd2004-12-12 21:48:58 +00002726 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattner50b2ca42008-02-19 06:12:18 +00002727 }
Reid Spencer1628cec2006-10-26 06:15:43 +00002728
2729 // X / undef -> undef
Chris Lattner857e8cd2004-12-12 21:48:58 +00002730 if (isa<UndefValue>(Op1))
Reid Spencer1628cec2006-10-26 06:15:43 +00002731 return ReplaceInstUsesWith(I, Op1);
Chris Lattner857e8cd2004-12-12 21:48:58 +00002732
Reid Spencer1628cec2006-10-26 06:15:43 +00002733 return 0;
2734}
Misha Brukmanfd939082005-04-21 23:48:37 +00002735
Reid Spencer1628cec2006-10-26 06:15:43 +00002736/// This function implements the transforms common to both integer division
2737/// instructions (udiv and sdiv). It is called by the visitors to those integer
2738/// division instructions.
2739/// @brief Common integer divide transforms
Reid Spencer3da59db2006-11-27 01:05:10 +00002740Instruction *InstCombiner::commonIDivTransforms(BinaryOperator &I) {
Reid Spencer1628cec2006-10-26 06:15:43 +00002741 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2742
Chris Lattnerb2ae9e32008-05-16 02:59:42 +00002743 // (sdiv X, X) --> 1 (udiv X, X) --> 1
Nick Lewycky39ac3b52008-05-23 03:26:47 +00002744 if (Op0 == Op1) {
2745 if (const VectorType *Ty = dyn_cast<VectorType>(I.getType())) {
2746 ConstantInt *CI = ConstantInt::get(Ty->getElementType(), 1);
2747 std::vector<Constant*> Elts(Ty->getNumElements(), CI);
2748 return ReplaceInstUsesWith(I, ConstantVector::get(Elts));
2749 }
2750
2751 ConstantInt *CI = ConstantInt::get(I.getType(), 1);
2752 return ReplaceInstUsesWith(I, CI);
2753 }
Chris Lattnerb2ae9e32008-05-16 02:59:42 +00002754
Reid Spencer1628cec2006-10-26 06:15:43 +00002755 if (Instruction *Common = commonDivTransforms(I))
2756 return Common;
Chris Lattnerfdb19e52008-07-14 00:15:52 +00002757
2758 // Handle cases involving: [su]div X, (select Cond, Y, Z)
2759 // This does not apply for fdiv.
2760 if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
2761 return &I;
Reid Spencer1628cec2006-10-26 06:15:43 +00002762
2763 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
2764 // div X, 1 == X
2765 if (RHS->equalsInt(1))
2766 return ReplaceInstUsesWith(I, Op0);
2767
2768 // (X / C1) / C2 -> X / (C1*C2)
2769 if (Instruction *LHS = dyn_cast<Instruction>(Op0))
2770 if (Instruction::BinaryOps(LHS->getOpcode()) == I.getOpcode())
2771 if (ConstantInt *LHSRHS = dyn_cast<ConstantInt>(LHS->getOperand(1))) {
Nick Lewyckye0cfecf2008-02-18 22:48:05 +00002772 if (MultiplyOverflows(RHS, LHSRHS, I.getOpcode()==Instruction::SDiv))
2773 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
2774 else
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002775 return BinaryOperator::Create(I.getOpcode(), LHS->getOperand(0),
Nick Lewyckye0cfecf2008-02-18 22:48:05 +00002776 Multiply(RHS, LHSRHS));
Chris Lattnerbf70b832005-04-08 04:03:26 +00002777 }
Reid Spencer1628cec2006-10-26 06:15:43 +00002778
Reid Spencerbca0e382007-03-23 20:05:17 +00002779 if (!RHS->isZero()) { // avoid X udiv 0
Reid Spencer1628cec2006-10-26 06:15:43 +00002780 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
2781 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
2782 return R;
2783 if (isa<PHINode>(Op0))
2784 if (Instruction *NV = FoldOpIntoPhi(I))
2785 return NV;
2786 }
Chris Lattner8e49e082006-09-09 20:26:32 +00002787 }
Misha Brukmanfd939082005-04-21 23:48:37 +00002788
Chris Lattnera2881962003-02-18 19:28:33 +00002789 // 0 / X == 0, we don't need to preserve faults!
Chris Lattner857e8cd2004-12-12 21:48:58 +00002790 if (ConstantInt *LHS = dyn_cast<ConstantInt>(Op0))
Chris Lattnera2881962003-02-18 19:28:33 +00002791 if (LHS->equalsInt(0))
2792 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
2793
Nick Lewycky9419ddb2008-05-31 17:59:52 +00002794 // It can't be division by zero, hence it must be division by one.
2795 if (I.getType() == Type::Int1Ty)
2796 return ReplaceInstUsesWith(I, Op0);
2797
Reid Spencer1628cec2006-10-26 06:15:43 +00002798 return 0;
2799}
2800
2801Instruction *InstCombiner::visitUDiv(BinaryOperator &I) {
2802 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2803
2804 // Handle the integer div common cases
2805 if (Instruction *Common = commonIDivTransforms(I))
2806 return Common;
2807
2808 // X udiv C^2 -> X >> C
2809 // Check to see if this is an unsigned division with an exact power of 2,
2810 // if so, convert to a right shift.
2811 if (ConstantInt *C = dyn_cast<ConstantInt>(Op1)) {
Reid Spencer6eb0d992007-03-26 23:58:26 +00002812 if (C->getValue().isPowerOf2()) // 0 not included in isPowerOf2
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002813 return BinaryOperator::CreateLShr(Op0,
Zhou Sheng0fc50952007-03-25 05:01:29 +00002814 ConstantInt::get(Op0->getType(), C->getValue().logBase2()));
Reid Spencer1628cec2006-10-26 06:15:43 +00002815 }
2816
2817 // X udiv (C1 << N), where C1 is "1<<C2" --> X >> (N+C2)
Reid Spencer832254e2007-02-02 02:16:23 +00002818 if (BinaryOperator *RHSI = dyn_cast<BinaryOperator>(I.getOperand(1))) {
Reid Spencer1628cec2006-10-26 06:15:43 +00002819 if (RHSI->getOpcode() == Instruction::Shl &&
2820 isa<ConstantInt>(RHSI->getOperand(0))) {
Zhou Sheng3a507fd2007-04-01 17:13:37 +00002821 const APInt& C1 = cast<ConstantInt>(RHSI->getOperand(0))->getValue();
Reid Spencerbca0e382007-03-23 20:05:17 +00002822 if (C1.isPowerOf2()) {
Reid Spencer1628cec2006-10-26 06:15:43 +00002823 Value *N = RHSI->getOperand(1);
Reid Spencer3da59db2006-11-27 01:05:10 +00002824 const Type *NTy = N->getType();
Reid Spencer2ec619a2007-03-23 21:24:59 +00002825 if (uint32_t C2 = C1.logBase2()) {
Reid Spencer1628cec2006-10-26 06:15:43 +00002826 Constant *C2V = ConstantInt::get(NTy, C2);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002827 N = InsertNewInstBefore(BinaryOperator::CreateAdd(N, C2V, "tmp"), I);
Chris Lattner5f3b0ee2006-02-05 07:54:04 +00002828 }
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002829 return BinaryOperator::CreateLShr(Op0, N);
Chris Lattner5f3b0ee2006-02-05 07:54:04 +00002830 }
2831 }
Chris Lattnerc812e5d2005-11-05 07:40:31 +00002832 }
2833
Reid Spencer1628cec2006-10-26 06:15:43 +00002834 // udiv X, (Select Cond, C1, C2) --> Select Cond, (shr X, C1), (shr X, C2)
2835 // where C1&C2 are powers of two.
Reid Spencerbaf1e4b2007-03-05 23:36:13 +00002836 if (SelectInst *SI = dyn_cast<SelectInst>(Op1))
Reid Spencer1628cec2006-10-26 06:15:43 +00002837 if (ConstantInt *STO = dyn_cast<ConstantInt>(SI->getOperand(1)))
Reid Spencerbaf1e4b2007-03-05 23:36:13 +00002838 if (ConstantInt *SFO = dyn_cast<ConstantInt>(SI->getOperand(2))) {
Zhou Sheng3a507fd2007-04-01 17:13:37 +00002839 const APInt &TVA = STO->getValue(), &FVA = SFO->getValue();
Reid Spencerbca0e382007-03-23 20:05:17 +00002840 if (TVA.isPowerOf2() && FVA.isPowerOf2()) {
Reid Spencerbaf1e4b2007-03-05 23:36:13 +00002841 // Compute the shift amounts
Reid Spencerbca0e382007-03-23 20:05:17 +00002842 uint32_t TSA = TVA.logBase2(), FSA = FVA.logBase2();
Reid Spencerbaf1e4b2007-03-05 23:36:13 +00002843 // Construct the "on true" case of the select
2844 Constant *TC = ConstantInt::get(Op0->getType(), TSA);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002845 Instruction *TSI = BinaryOperator::CreateLShr(
Reid Spencerbaf1e4b2007-03-05 23:36:13 +00002846 Op0, TC, SI->getName()+".t");
2847 TSI = InsertNewInstBefore(TSI, I);
2848
2849 // Construct the "on false" case of the select
2850 Constant *FC = ConstantInt::get(Op0->getType(), FSA);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002851 Instruction *FSI = BinaryOperator::CreateLShr(
Reid Spencerbaf1e4b2007-03-05 23:36:13 +00002852 Op0, FC, SI->getName()+".f");
2853 FSI = InsertNewInstBefore(FSI, I);
Reid Spencer1628cec2006-10-26 06:15:43 +00002854
Reid Spencerbaf1e4b2007-03-05 23:36:13 +00002855 // construct the select instruction and return it.
Gabor Greif051a9502008-04-06 20:25:17 +00002856 return SelectInst::Create(SI->getOperand(0), TSI, FSI, SI->getName());
Reid Spencer1628cec2006-10-26 06:15:43 +00002857 }
Reid Spencerbaf1e4b2007-03-05 23:36:13 +00002858 }
Chris Lattner3f5b8772002-05-06 16:14:14 +00002859 return 0;
2860}
2861
Reid Spencer1628cec2006-10-26 06:15:43 +00002862Instruction *InstCombiner::visitSDiv(BinaryOperator &I) {
2863 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2864
2865 // Handle the integer div common cases
2866 if (Instruction *Common = commonIDivTransforms(I))
2867 return Common;
2868
2869 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
2870 // sdiv X, -1 == -X
2871 if (RHS->isAllOnesValue())
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002872 return BinaryOperator::CreateNeg(Op0);
Reid Spencer1628cec2006-10-26 06:15:43 +00002873
2874 // -X/C -> X/-C
2875 if (Value *LHSNeg = dyn_castNegVal(Op0))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002876 return BinaryOperator::CreateSDiv(LHSNeg, ConstantExpr::getNeg(RHS));
Reid Spencer1628cec2006-10-26 06:15:43 +00002877 }
2878
2879 // If the sign bits of both operands are zero (i.e. we can prove they are
2880 // unsigned inputs), turn this into a udiv.
Chris Lattner42a75512007-01-15 02:27:26 +00002881 if (I.getType()->isInteger()) {
Reid Spencerbca0e382007-03-23 20:05:17 +00002882 APInt Mask(APInt::getSignBit(I.getType()->getPrimitiveSizeInBits()));
Reid Spencer1628cec2006-10-26 06:15:43 +00002883 if (MaskedValueIsZero(Op1, Mask) && MaskedValueIsZero(Op0, Mask)) {
Dan Gohmancff55092007-11-05 23:16:33 +00002884 // X sdiv Y -> X udiv Y, iff X and Y don't have sign bit set
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002885 return BinaryOperator::CreateUDiv(Op0, Op1, I.getName());
Reid Spencer1628cec2006-10-26 06:15:43 +00002886 }
2887 }
2888
2889 return 0;
2890}
2891
2892Instruction *InstCombiner::visitFDiv(BinaryOperator &I) {
2893 return commonDivTransforms(I);
2894}
Chris Lattner3f5b8772002-05-06 16:14:14 +00002895
Reid Spencer0a783f72006-11-02 01:53:59 +00002896/// This function implements the transforms on rem instructions that work
2897/// regardless of the kind of rem instruction it is (urem, srem, or frem). It
2898/// is used by the visitors to those instructions.
2899/// @brief Transforms common to all three rem instructions
2900Instruction *InstCombiner::commonRemTransforms(BinaryOperator &I) {
Chris Lattner857e8cd2004-12-12 21:48:58 +00002901 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Reid Spencer0a783f72006-11-02 01:53:59 +00002902
Chris Lattner50b2ca42008-02-19 06:12:18 +00002903 // 0 % X == 0 for integer, we don't need to preserve faults!
Chris Lattner19ccd5c2006-02-28 05:30:45 +00002904 if (Constant *LHS = dyn_cast<Constant>(Op0))
2905 if (LHS->isNullValue())
2906 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
2907
Chris Lattner50b2ca42008-02-19 06:12:18 +00002908 if (isa<UndefValue>(Op0)) { // undef % X -> 0
2909 if (I.getType()->isFPOrFPVector())
2910 return ReplaceInstUsesWith(I, Op0); // X % undef -> undef (could be SNaN)
Chris Lattner19ccd5c2006-02-28 05:30:45 +00002911 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattner50b2ca42008-02-19 06:12:18 +00002912 }
Chris Lattner19ccd5c2006-02-28 05:30:45 +00002913 if (isa<UndefValue>(Op1))
2914 return ReplaceInstUsesWith(I, Op1); // X % undef -> undef
Reid Spencer0a783f72006-11-02 01:53:59 +00002915
2916 // Handle cases involving: rem X, (select Cond, Y, Z)
Chris Lattnerfdb19e52008-07-14 00:15:52 +00002917 if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
2918 return &I;
Chris Lattner5b73c082004-07-06 07:01:22 +00002919
Reid Spencer0a783f72006-11-02 01:53:59 +00002920 return 0;
2921}
2922
2923/// This function implements the transforms common to both integer remainder
2924/// instructions (urem and srem). It is called by the visitors to those integer
2925/// remainder instructions.
2926/// @brief Common integer remainder transforms
2927Instruction *InstCombiner::commonIRemTransforms(BinaryOperator &I) {
2928 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2929
2930 if (Instruction *common = commonRemTransforms(I))
2931 return common;
2932
Chris Lattner857e8cd2004-12-12 21:48:58 +00002933 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner19ccd5c2006-02-28 05:30:45 +00002934 // X % 0 == undef, we don't need to preserve faults!
2935 if (RHS->equalsInt(0))
2936 return ReplaceInstUsesWith(I, UndefValue::get(I.getType()));
2937
Chris Lattnera2881962003-02-18 19:28:33 +00002938 if (RHS->equalsInt(1)) // X % 1 == 0
2939 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
2940
Chris Lattner97943922006-02-28 05:49:21 +00002941 if (Instruction *Op0I = dyn_cast<Instruction>(Op0)) {
2942 if (SelectInst *SI = dyn_cast<SelectInst>(Op0I)) {
2943 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
2944 return R;
2945 } else if (isa<PHINode>(Op0I)) {
2946 if (Instruction *NV = FoldOpIntoPhi(I))
2947 return NV;
Chris Lattner97943922006-02-28 05:49:21 +00002948 }
Nick Lewyckyc1a2a612008-03-06 06:48:30 +00002949
2950 // See if we can fold away this rem instruction.
2951 uint32_t BitWidth = cast<IntegerType>(I.getType())->getBitWidth();
2952 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
2953 if (SimplifyDemandedBits(&I, APInt::getAllOnesValue(BitWidth),
2954 KnownZero, KnownOne))
2955 return &I;
Chris Lattner97943922006-02-28 05:49:21 +00002956 }
Chris Lattnera2881962003-02-18 19:28:33 +00002957 }
2958
Reid Spencer0a783f72006-11-02 01:53:59 +00002959 return 0;
2960}
2961
2962Instruction *InstCombiner::visitURem(BinaryOperator &I) {
2963 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2964
2965 if (Instruction *common = commonIRemTransforms(I))
2966 return common;
2967
2968 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
2969 // X urem C^2 -> X and C
2970 // Check to see if this is an unsigned remainder with an exact power of 2,
2971 // if so, convert to a bitwise and.
2972 if (ConstantInt *C = dyn_cast<ConstantInt>(RHS))
Reid Spencerbca0e382007-03-23 20:05:17 +00002973 if (C->getValue().isPowerOf2())
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002974 return BinaryOperator::CreateAnd(Op0, SubOne(C));
Reid Spencer0a783f72006-11-02 01:53:59 +00002975 }
2976
Chris Lattner5f3b0ee2006-02-05 07:54:04 +00002977 if (Instruction *RHSI = dyn_cast<Instruction>(I.getOperand(1))) {
Reid Spencer0a783f72006-11-02 01:53:59 +00002978 // Turn A % (C << N), where C is 2^k, into A & ((C << N)-1)
2979 if (RHSI->getOpcode() == Instruction::Shl &&
2980 isa<ConstantInt>(RHSI->getOperand(0))) {
Zhou Sheng0fc50952007-03-25 05:01:29 +00002981 if (cast<ConstantInt>(RHSI->getOperand(0))->getValue().isPowerOf2()) {
Chris Lattner5f3b0ee2006-02-05 07:54:04 +00002982 Constant *N1 = ConstantInt::getAllOnesValue(I.getType());
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002983 Value *Add = InsertNewInstBefore(BinaryOperator::CreateAdd(RHSI, N1,
Chris Lattner5f3b0ee2006-02-05 07:54:04 +00002984 "tmp"), I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002985 return BinaryOperator::CreateAnd(Op0, Add);
Chris Lattner5f3b0ee2006-02-05 07:54:04 +00002986 }
2987 }
Reid Spencer0a783f72006-11-02 01:53:59 +00002988 }
Chris Lattner8e49e082006-09-09 20:26:32 +00002989
Reid Spencer0a783f72006-11-02 01:53:59 +00002990 // urem X, (select Cond, 2^C1, 2^C2) --> select Cond, (and X, C1), (and X, C2)
2991 // where C1&C2 are powers of two.
2992 if (SelectInst *SI = dyn_cast<SelectInst>(Op1)) {
2993 if (ConstantInt *STO = dyn_cast<ConstantInt>(SI->getOperand(1)))
2994 if (ConstantInt *SFO = dyn_cast<ConstantInt>(SI->getOperand(2))) {
2995 // STO == 0 and SFO == 0 handled above.
Reid Spencerbca0e382007-03-23 20:05:17 +00002996 if ((STO->getValue().isPowerOf2()) &&
2997 (SFO->getValue().isPowerOf2())) {
Reid Spencer0a783f72006-11-02 01:53:59 +00002998 Value *TrueAnd = InsertNewInstBefore(
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002999 BinaryOperator::CreateAnd(Op0, SubOne(STO), SI->getName()+".t"), I);
Reid Spencer0a783f72006-11-02 01:53:59 +00003000 Value *FalseAnd = InsertNewInstBefore(
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003001 BinaryOperator::CreateAnd(Op0, SubOne(SFO), SI->getName()+".f"), I);
Gabor Greif051a9502008-04-06 20:25:17 +00003002 return SelectInst::Create(SI->getOperand(0), TrueAnd, FalseAnd);
Reid Spencer0a783f72006-11-02 01:53:59 +00003003 }
3004 }
Chris Lattner5f3b0ee2006-02-05 07:54:04 +00003005 }
3006
Chris Lattner3f5b8772002-05-06 16:14:14 +00003007 return 0;
3008}
3009
Reid Spencer0a783f72006-11-02 01:53:59 +00003010Instruction *InstCombiner::visitSRem(BinaryOperator &I) {
3011 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
3012
Dan Gohmancff55092007-11-05 23:16:33 +00003013 // Handle the integer rem common cases
Reid Spencer0a783f72006-11-02 01:53:59 +00003014 if (Instruction *common = commonIRemTransforms(I))
3015 return common;
3016
3017 if (Value *RHSNeg = dyn_castNegVal(Op1))
Nick Lewycky23c04302008-09-03 06:24:21 +00003018 if (!isa<Constant>(RHSNeg) ||
3019 (isa<ConstantInt>(RHSNeg) &&
3020 cast<ConstantInt>(RHSNeg)->getValue().isStrictlyPositive())) {
Reid Spencer0a783f72006-11-02 01:53:59 +00003021 // X % -Y -> X % Y
3022 AddUsesToWorkList(I);
3023 I.setOperand(1, RHSNeg);
3024 return &I;
3025 }
3026
Dan Gohmancff55092007-11-05 23:16:33 +00003027 // If the sign bits of both operands are zero (i.e. we can prove they are
Reid Spencer0a783f72006-11-02 01:53:59 +00003028 // unsigned inputs), turn this into a urem.
Dan Gohmancff55092007-11-05 23:16:33 +00003029 if (I.getType()->isInteger()) {
3030 APInt Mask(APInt::getSignBit(I.getType()->getPrimitiveSizeInBits()));
3031 if (MaskedValueIsZero(Op1, Mask) && MaskedValueIsZero(Op0, Mask)) {
3032 // X srem Y -> X urem Y, iff X and Y don't have sign bit set
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003033 return BinaryOperator::CreateURem(Op0, Op1, I.getName());
Dan Gohmancff55092007-11-05 23:16:33 +00003034 }
Reid Spencer0a783f72006-11-02 01:53:59 +00003035 }
3036
3037 return 0;
3038}
3039
3040Instruction *InstCombiner::visitFRem(BinaryOperator &I) {
Reid Spencer0a783f72006-11-02 01:53:59 +00003041 return commonRemTransforms(I);
3042}
3043
Chris Lattner457dd822004-06-09 07:59:58 +00003044// isOneBitSet - Return true if there is exactly one bit set in the specified
3045// constant.
3046static bool isOneBitSet(const ConstantInt *CI) {
Reid Spencer5f6a8952007-03-20 00:16:52 +00003047 return CI->getValue().isPowerOf2();
Chris Lattner457dd822004-06-09 07:59:58 +00003048}
3049
Chris Lattnerb20ba0a2004-09-23 21:46:38 +00003050// isHighOnes - Return true if the constant is of the form 1+0+.
3051// This is the same as lowones(~X).
3052static bool isHighOnes(const ConstantInt *CI) {
Zhou Sheng2cde46c2007-03-20 12:49:06 +00003053 return (~CI->getValue() + 1).isPowerOf2();
Chris Lattnerb20ba0a2004-09-23 21:46:38 +00003054}
3055
Reid Spencere4d87aa2006-12-23 06:05:41 +00003056/// getICmpCode - Encode a icmp predicate into a three bit mask. These bits
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003057/// are carefully arranged to allow folding of expressions such as:
3058///
3059/// (A < B) | (A > B) --> (A != B)
3060///
Reid Spencere4d87aa2006-12-23 06:05:41 +00003061/// Note that this is only valid if the first and second predicates have the
3062/// same sign. Is illegal to do: (A u< B) | (A s> B)
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003063///
Reid Spencere4d87aa2006-12-23 06:05:41 +00003064/// Three bits are used to represent the condition, as follows:
3065/// 0 A > B
3066/// 1 A == B
3067/// 2 A < B
3068///
3069/// <=> Value Definition
3070/// 000 0 Always false
3071/// 001 1 A > B
3072/// 010 2 A == B
3073/// 011 3 A >= B
3074/// 100 4 A < B
3075/// 101 5 A != B
3076/// 110 6 A <= B
3077/// 111 7 Always true
3078///
3079static unsigned getICmpCode(const ICmpInst *ICI) {
3080 switch (ICI->getPredicate()) {
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003081 // False -> 0
Reid Spencere4d87aa2006-12-23 06:05:41 +00003082 case ICmpInst::ICMP_UGT: return 1; // 001
3083 case ICmpInst::ICMP_SGT: return 1; // 001
3084 case ICmpInst::ICMP_EQ: return 2; // 010
3085 case ICmpInst::ICMP_UGE: return 3; // 011
3086 case ICmpInst::ICMP_SGE: return 3; // 011
3087 case ICmpInst::ICMP_ULT: return 4; // 100
3088 case ICmpInst::ICMP_SLT: return 4; // 100
3089 case ICmpInst::ICMP_NE: return 5; // 101
3090 case ICmpInst::ICMP_ULE: return 6; // 110
3091 case ICmpInst::ICMP_SLE: return 6; // 110
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003092 // True -> 7
3093 default:
Reid Spencere4d87aa2006-12-23 06:05:41 +00003094 assert(0 && "Invalid ICmp predicate!");
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003095 return 0;
3096 }
3097}
3098
Reid Spencere4d87aa2006-12-23 06:05:41 +00003099/// getICmpValue - This is the complement of getICmpCode, which turns an
3100/// opcode and two operands into either a constant true or false, or a brand
Dan Gohman5d066ff2007-09-17 17:31:57 +00003101/// new ICmp instruction. The sign is passed in to determine which kind
Reid Spencere4d87aa2006-12-23 06:05:41 +00003102/// of predicate to use in new icmp instructions.
3103static Value *getICmpValue(bool sign, unsigned code, Value *LHS, Value *RHS) {
3104 switch (code) {
3105 default: assert(0 && "Illegal ICmp code!");
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00003106 case 0: return ConstantInt::getFalse();
Reid Spencere4d87aa2006-12-23 06:05:41 +00003107 case 1:
3108 if (sign)
3109 return new ICmpInst(ICmpInst::ICMP_SGT, LHS, RHS);
3110 else
3111 return new ICmpInst(ICmpInst::ICMP_UGT, LHS, RHS);
3112 case 2: return new ICmpInst(ICmpInst::ICMP_EQ, LHS, RHS);
3113 case 3:
3114 if (sign)
3115 return new ICmpInst(ICmpInst::ICMP_SGE, LHS, RHS);
3116 else
3117 return new ICmpInst(ICmpInst::ICMP_UGE, LHS, RHS);
3118 case 4:
3119 if (sign)
3120 return new ICmpInst(ICmpInst::ICMP_SLT, LHS, RHS);
3121 else
3122 return new ICmpInst(ICmpInst::ICMP_ULT, LHS, RHS);
3123 case 5: return new ICmpInst(ICmpInst::ICMP_NE, LHS, RHS);
3124 case 6:
3125 if (sign)
3126 return new ICmpInst(ICmpInst::ICMP_SLE, LHS, RHS);
3127 else
3128 return new ICmpInst(ICmpInst::ICMP_ULE, LHS, RHS);
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00003129 case 7: return ConstantInt::getTrue();
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003130 }
3131}
3132
Reid Spencere4d87aa2006-12-23 06:05:41 +00003133static bool PredicatesFoldable(ICmpInst::Predicate p1, ICmpInst::Predicate p2) {
3134 return (ICmpInst::isSignedPredicate(p1) == ICmpInst::isSignedPredicate(p2)) ||
3135 (ICmpInst::isSignedPredicate(p1) &&
3136 (p2 == ICmpInst::ICMP_EQ || p2 == ICmpInst::ICMP_NE)) ||
3137 (ICmpInst::isSignedPredicate(p2) &&
3138 (p1 == ICmpInst::ICMP_EQ || p1 == ICmpInst::ICMP_NE));
3139}
3140
3141namespace {
3142// FoldICmpLogical - Implements (icmp1 A, B) & (icmp2 A, B) --> (icmp3 A, B)
3143struct FoldICmpLogical {
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003144 InstCombiner &IC;
3145 Value *LHS, *RHS;
Reid Spencere4d87aa2006-12-23 06:05:41 +00003146 ICmpInst::Predicate pred;
3147 FoldICmpLogical(InstCombiner &ic, ICmpInst *ICI)
3148 : IC(ic), LHS(ICI->getOperand(0)), RHS(ICI->getOperand(1)),
3149 pred(ICI->getPredicate()) {}
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003150 bool shouldApply(Value *V) const {
Reid Spencere4d87aa2006-12-23 06:05:41 +00003151 if (ICmpInst *ICI = dyn_cast<ICmpInst>(V))
3152 if (PredicatesFoldable(pred, ICI->getPredicate()))
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00003153 return ((ICI->getOperand(0) == LHS && ICI->getOperand(1) == RHS) ||
3154 (ICI->getOperand(0) == RHS && ICI->getOperand(1) == LHS));
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003155 return false;
3156 }
Reid Spencere4d87aa2006-12-23 06:05:41 +00003157 Instruction *apply(Instruction &Log) const {
3158 ICmpInst *ICI = cast<ICmpInst>(Log.getOperand(0));
3159 if (ICI->getOperand(0) != LHS) {
3160 assert(ICI->getOperand(1) == LHS);
3161 ICI->swapOperands(); // Swap the LHS and RHS of the ICmp
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003162 }
3163
Chris Lattnerbc1dbfc2007-03-13 14:27:42 +00003164 ICmpInst *RHSICI = cast<ICmpInst>(Log.getOperand(1));
Reid Spencere4d87aa2006-12-23 06:05:41 +00003165 unsigned LHSCode = getICmpCode(ICI);
Chris Lattnerbc1dbfc2007-03-13 14:27:42 +00003166 unsigned RHSCode = getICmpCode(RHSICI);
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003167 unsigned Code;
3168 switch (Log.getOpcode()) {
3169 case Instruction::And: Code = LHSCode & RHSCode; break;
3170 case Instruction::Or: Code = LHSCode | RHSCode; break;
3171 case Instruction::Xor: Code = LHSCode ^ RHSCode; break;
Chris Lattner021c1902003-09-22 20:33:34 +00003172 default: assert(0 && "Illegal logical opcode!"); return 0;
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003173 }
3174
Chris Lattnerbc1dbfc2007-03-13 14:27:42 +00003175 bool isSigned = ICmpInst::isSignedPredicate(RHSICI->getPredicate()) ||
3176 ICmpInst::isSignedPredicate(ICI->getPredicate());
3177
3178 Value *RV = getICmpValue(isSigned, Code, LHS, RHS);
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003179 if (Instruction *I = dyn_cast<Instruction>(RV))
3180 return I;
3181 // Otherwise, it's a constant boolean value...
3182 return IC.ReplaceInstUsesWith(Log, RV);
3183 }
3184};
Chris Lattnerd23b5ba2006-11-15 04:53:24 +00003185} // end anonymous namespace
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003186
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003187// OptAndOp - This handles expressions of the form ((val OP C1) & C2). Where
3188// the Op parameter is 'OP', OpRHS is 'C1', and AndRHS is 'C2'. Op is
Reid Spencer832254e2007-02-02 02:16:23 +00003189// guaranteed to be a binary operator.
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003190Instruction *InstCombiner::OptAndOp(Instruction *Op,
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00003191 ConstantInt *OpRHS,
3192 ConstantInt *AndRHS,
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003193 BinaryOperator &TheAnd) {
3194 Value *X = Op->getOperand(0);
Chris Lattner76f7fe22004-01-12 19:47:05 +00003195 Constant *Together = 0;
Reid Spencer832254e2007-02-02 02:16:23 +00003196 if (!Op->isShift())
Reid Spencer7177c3a2007-03-25 05:33:51 +00003197 Together = And(AndRHS, OpRHS);
Chris Lattner7c4049c2004-01-12 19:35:11 +00003198
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003199 switch (Op->getOpcode()) {
3200 case Instruction::Xor:
Chris Lattner6e7ba452005-01-01 16:22:27 +00003201 if (Op->hasOneUse()) {
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003202 // (X ^ C1) & C2 --> (X & C2) ^ (C1&C2)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003203 Instruction *And = BinaryOperator::CreateAnd(X, AndRHS);
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003204 InsertNewInstBefore(And, TheAnd);
Chris Lattner6934a042007-02-11 01:23:03 +00003205 And->takeName(Op);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003206 return BinaryOperator::CreateXor(And, Together);
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003207 }
3208 break;
3209 case Instruction::Or:
Chris Lattner6e7ba452005-01-01 16:22:27 +00003210 if (Together == AndRHS) // (X | C) & C --> C
3211 return ReplaceInstUsesWith(TheAnd, AndRHS);
Misha Brukmanfd939082005-04-21 23:48:37 +00003212
Chris Lattner6e7ba452005-01-01 16:22:27 +00003213 if (Op->hasOneUse() && Together != OpRHS) {
3214 // (X | C1) & C2 --> (X | (C1&C2)) & C2
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003215 Instruction *Or = BinaryOperator::CreateOr(X, Together);
Chris Lattner6e7ba452005-01-01 16:22:27 +00003216 InsertNewInstBefore(Or, TheAnd);
Chris Lattner6934a042007-02-11 01:23:03 +00003217 Or->takeName(Op);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003218 return BinaryOperator::CreateAnd(Or, AndRHS);
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003219 }
3220 break;
3221 case Instruction::Add:
Chris Lattnerfd059242003-10-15 16:48:29 +00003222 if (Op->hasOneUse()) {
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003223 // Adding a one to a single bit bit-field should be turned into an XOR
3224 // of the bit. First thing to check is to see if this AND is with a
3225 // single bit constant.
Zhou Sheng3a507fd2007-04-01 17:13:37 +00003226 const APInt& AndRHSV = cast<ConstantInt>(AndRHS)->getValue();
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003227
3228 // If there is only one bit set...
Chris Lattner457dd822004-06-09 07:59:58 +00003229 if (isOneBitSet(cast<ConstantInt>(AndRHS))) {
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003230 // Ok, at this point, we know that we are masking the result of the
3231 // ADD down to exactly one bit. If the constant we are adding has
3232 // no bits set below this bit, then we can eliminate the ADD.
Zhou Sheng3a507fd2007-04-01 17:13:37 +00003233 const APInt& AddRHS = cast<ConstantInt>(OpRHS)->getValue();
Misha Brukmanfd939082005-04-21 23:48:37 +00003234
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003235 // Check to see if any bits below the one bit set in AndRHSV are set.
3236 if ((AddRHS & (AndRHSV-1)) == 0) {
3237 // If not, the only thing that can effect the output of the AND is
3238 // the bit specified by AndRHSV. If that bit is set, the effect of
3239 // the XOR is to toggle the bit. If it is clear, then the ADD has
3240 // no effect.
3241 if ((AddRHS & AndRHSV) == 0) { // Bit is not set, noop
3242 TheAnd.setOperand(0, X);
3243 return &TheAnd;
3244 } else {
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003245 // Pull the XOR out of the AND.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003246 Instruction *NewAnd = BinaryOperator::CreateAnd(X, AndRHS);
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003247 InsertNewInstBefore(NewAnd, TheAnd);
Chris Lattner6934a042007-02-11 01:23:03 +00003248 NewAnd->takeName(Op);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003249 return BinaryOperator::CreateXor(NewAnd, AndRHS);
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003250 }
3251 }
3252 }
3253 }
3254 break;
Chris Lattner62a355c2003-09-19 19:05:02 +00003255
3256 case Instruction::Shl: {
3257 // We know that the AND will not produce any of the bits shifted in, so if
3258 // the anded constant includes them, clear them now!
3259 //
Zhou Sheng290bec52007-03-29 08:15:12 +00003260 uint32_t BitWidth = AndRHS->getType()->getBitWidth();
Zhou Sheng0e2d3ac2007-03-30 09:29:48 +00003261 uint32_t OpRHSVal = OpRHS->getLimitedValue(BitWidth);
Zhou Sheng290bec52007-03-29 08:15:12 +00003262 APInt ShlMask(APInt::getHighBitsSet(BitWidth, BitWidth-OpRHSVal));
3263 ConstantInt *CI = ConstantInt::get(AndRHS->getValue() & ShlMask);
Misha Brukmanfd939082005-04-21 23:48:37 +00003264
Zhou Sheng290bec52007-03-29 08:15:12 +00003265 if (CI->getValue() == ShlMask) {
3266 // Masking out bits that the shift already masks
Chris Lattner0c967662004-09-24 15:21:34 +00003267 return ReplaceInstUsesWith(TheAnd, Op); // No need for the and.
3268 } else if (CI != AndRHS) { // Reducing bits set in and.
Chris Lattner62a355c2003-09-19 19:05:02 +00003269 TheAnd.setOperand(1, CI);
3270 return &TheAnd;
3271 }
3272 break;
Misha Brukmanfd939082005-04-21 23:48:37 +00003273 }
Reid Spencer3822ff52006-11-08 06:47:33 +00003274 case Instruction::LShr:
3275 {
Chris Lattner62a355c2003-09-19 19:05:02 +00003276 // We know that the AND will not produce any of the bits shifted in, so if
3277 // the anded constant includes them, clear them now! This only applies to
3278 // unsigned shifts, because a signed shr may bring in set bits!
3279 //
Zhou Sheng290bec52007-03-29 08:15:12 +00003280 uint32_t BitWidth = AndRHS->getType()->getBitWidth();
Zhou Sheng0e2d3ac2007-03-30 09:29:48 +00003281 uint32_t OpRHSVal = OpRHS->getLimitedValue(BitWidth);
Zhou Sheng290bec52007-03-29 08:15:12 +00003282 APInt ShrMask(APInt::getLowBitsSet(BitWidth, BitWidth - OpRHSVal));
3283 ConstantInt *CI = ConstantInt::get(AndRHS->getValue() & ShrMask);
Chris Lattner0c967662004-09-24 15:21:34 +00003284
Zhou Sheng290bec52007-03-29 08:15:12 +00003285 if (CI->getValue() == ShrMask) {
3286 // Masking out bits that the shift already masks.
Reid Spencer3822ff52006-11-08 06:47:33 +00003287 return ReplaceInstUsesWith(TheAnd, Op);
3288 } else if (CI != AndRHS) {
3289 TheAnd.setOperand(1, CI); // Reduce bits set in and cst.
3290 return &TheAnd;
3291 }
3292 break;
3293 }
3294 case Instruction::AShr:
3295 // Signed shr.
3296 // See if this is shifting in some sign extension, then masking it out
3297 // with an and.
3298 if (Op->hasOneUse()) {
Zhou Sheng290bec52007-03-29 08:15:12 +00003299 uint32_t BitWidth = AndRHS->getType()->getBitWidth();
Zhou Sheng0e2d3ac2007-03-30 09:29:48 +00003300 uint32_t OpRHSVal = OpRHS->getLimitedValue(BitWidth);
Zhou Sheng290bec52007-03-29 08:15:12 +00003301 APInt ShrMask(APInt::getLowBitsSet(BitWidth, BitWidth - OpRHSVal));
3302 Constant *C = ConstantInt::get(AndRHS->getValue() & ShrMask);
Reid Spencer7eb76382006-12-13 17:19:09 +00003303 if (C == AndRHS) { // Masking out bits shifted in.
Reid Spencer17212df2006-12-12 09:18:51 +00003304 // (Val ashr C1) & C2 -> (Val lshr C1) & C2
Reid Spencer3822ff52006-11-08 06:47:33 +00003305 // Make the argument unsigned.
3306 Value *ShVal = Op->getOperand(0);
Reid Spencer832254e2007-02-02 02:16:23 +00003307 ShVal = InsertNewInstBefore(
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003308 BinaryOperator::CreateLShr(ShVal, OpRHS,
Reid Spencer832254e2007-02-02 02:16:23 +00003309 Op->getName()), TheAnd);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003310 return BinaryOperator::CreateAnd(ShVal, AndRHS, TheAnd.getName());
Chris Lattner0c967662004-09-24 15:21:34 +00003311 }
Chris Lattner62a355c2003-09-19 19:05:02 +00003312 }
3313 break;
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003314 }
3315 return 0;
3316}
3317
Chris Lattner8b170942002-08-09 23:47:40 +00003318
Chris Lattnera96879a2004-09-29 17:40:11 +00003319/// InsertRangeTest - Emit a computation of: (V >= Lo && V < Hi) if Inside is
3320/// true, otherwise (V < Lo || V >= Hi). In pratice, we emit the more efficient
Reid Spencere4d87aa2006-12-23 06:05:41 +00003321/// (V-Lo) <u Hi-Lo. This method expects that Lo <= Hi. isSigned indicates
3322/// whether to treat the V, Lo and HI as signed or not. IB is the location to
Chris Lattnera96879a2004-09-29 17:40:11 +00003323/// insert new instructions.
3324Instruction *InstCombiner::InsertRangeTest(Value *V, Constant *Lo, Constant *Hi,
Reid Spencere4d87aa2006-12-23 06:05:41 +00003325 bool isSigned, bool Inside,
3326 Instruction &IB) {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00003327 assert(cast<ConstantInt>(ConstantExpr::getICmp((isSigned ?
Reid Spencer579dca12007-01-12 04:24:46 +00003328 ICmpInst::ICMP_SLE:ICmpInst::ICMP_ULE), Lo, Hi))->getZExtValue() &&
Chris Lattnera96879a2004-09-29 17:40:11 +00003329 "Lo is not <= Hi in range emission code!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00003330
Chris Lattnera96879a2004-09-29 17:40:11 +00003331 if (Inside) {
3332 if (Lo == Hi) // Trivially false.
Reid Spencere4d87aa2006-12-23 06:05:41 +00003333 return new ICmpInst(ICmpInst::ICMP_NE, V, V);
Misha Brukmanfd939082005-04-21 23:48:37 +00003334
Reid Spencere4d87aa2006-12-23 06:05:41 +00003335 // V >= Min && V < Hi --> V < Hi
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00003336 if (cast<ConstantInt>(Lo)->isMinValue(isSigned)) {
Reid Spencere4e40032007-03-21 23:19:50 +00003337 ICmpInst::Predicate pred = (isSigned ?
Reid Spencere4d87aa2006-12-23 06:05:41 +00003338 ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT);
3339 return new ICmpInst(pred, V, Hi);
3340 }
3341
3342 // Emit V-Lo <u Hi-Lo
3343 Constant *NegLo = ConstantExpr::getNeg(Lo);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003344 Instruction *Add = BinaryOperator::CreateAdd(V, NegLo, V->getName()+".off");
Chris Lattnera96879a2004-09-29 17:40:11 +00003345 InsertNewInstBefore(Add, IB);
Reid Spencere4d87aa2006-12-23 06:05:41 +00003346 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Hi);
3347 return new ICmpInst(ICmpInst::ICMP_ULT, Add, UpperBound);
Chris Lattnera96879a2004-09-29 17:40:11 +00003348 }
3349
3350 if (Lo == Hi) // Trivially true.
Reid Spencere4d87aa2006-12-23 06:05:41 +00003351 return new ICmpInst(ICmpInst::ICMP_EQ, V, V);
Chris Lattnera96879a2004-09-29 17:40:11 +00003352
Reid Spencere4e40032007-03-21 23:19:50 +00003353 // V < Min || V >= Hi -> V > Hi-1
Chris Lattnera96879a2004-09-29 17:40:11 +00003354 Hi = SubOne(cast<ConstantInt>(Hi));
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00003355 if (cast<ConstantInt>(Lo)->isMinValue(isSigned)) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00003356 ICmpInst::Predicate pred = (isSigned ?
3357 ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT);
3358 return new ICmpInst(pred, V, Hi);
3359 }
Reid Spencerb83eb642006-10-20 07:07:24 +00003360
Reid Spencere4e40032007-03-21 23:19:50 +00003361 // Emit V-Lo >u Hi-1-Lo
3362 // Note that Hi has already had one subtracted from it, above.
3363 ConstantInt *NegLo = cast<ConstantInt>(ConstantExpr::getNeg(Lo));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003364 Instruction *Add = BinaryOperator::CreateAdd(V, NegLo, V->getName()+".off");
Chris Lattnera96879a2004-09-29 17:40:11 +00003365 InsertNewInstBefore(Add, IB);
Reid Spencere4d87aa2006-12-23 06:05:41 +00003366 Constant *LowerBound = ConstantExpr::getAdd(NegLo, Hi);
3367 return new ICmpInst(ICmpInst::ICMP_UGT, Add, LowerBound);
Chris Lattnera96879a2004-09-29 17:40:11 +00003368}
3369
Chris Lattner7203e152005-09-18 07:22:02 +00003370// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s with
3371// any number of 0s on either side. The 1s are allowed to wrap from LSB to
3372// MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs. 0x0F0F0000 is
3373// not, since all 1s are not contiguous.
Zhou Sheng4351c642007-04-02 08:20:41 +00003374static bool isRunOfOnes(ConstantInt *Val, uint32_t &MB, uint32_t &ME) {
Zhou Sheng3a507fd2007-04-01 17:13:37 +00003375 const APInt& V = Val->getValue();
Reid Spencerf2442522007-03-24 00:42:08 +00003376 uint32_t BitWidth = Val->getType()->getBitWidth();
3377 if (!APIntOps::isShiftedMask(BitWidth, V)) return false;
Chris Lattner7203e152005-09-18 07:22:02 +00003378
3379 // look for the first zero bit after the run of ones
Reid Spencerf2442522007-03-24 00:42:08 +00003380 MB = BitWidth - ((V - 1) ^ V).countLeadingZeros();
Chris Lattner7203e152005-09-18 07:22:02 +00003381 // look for the first non-zero bit
Reid Spencerf2442522007-03-24 00:42:08 +00003382 ME = V.getActiveBits();
Chris Lattner7203e152005-09-18 07:22:02 +00003383 return true;
3384}
3385
Chris Lattner7203e152005-09-18 07:22:02 +00003386/// FoldLogicalPlusAnd - This is part of an expression (LHS +/- RHS) & Mask,
3387/// where isSub determines whether the operator is a sub. If we can fold one of
3388/// the following xforms:
Chris Lattnerc8e77562005-09-18 04:24:45 +00003389///
3390/// ((A & N) +/- B) & Mask -> (A +/- B) & Mask iff N&Mask == Mask
3391/// ((A | N) +/- B) & Mask -> (A +/- B) & Mask iff N&Mask == 0
3392/// ((A ^ N) +/- B) & Mask -> (A +/- B) & Mask iff N&Mask == 0
3393///
3394/// return (A +/- B).
3395///
3396Value *InstCombiner::FoldLogicalPlusAnd(Value *LHS, Value *RHS,
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00003397 ConstantInt *Mask, bool isSub,
Chris Lattnerc8e77562005-09-18 04:24:45 +00003398 Instruction &I) {
3399 Instruction *LHSI = dyn_cast<Instruction>(LHS);
3400 if (!LHSI || LHSI->getNumOperands() != 2 ||
3401 !isa<ConstantInt>(LHSI->getOperand(1))) return 0;
3402
3403 ConstantInt *N = cast<ConstantInt>(LHSI->getOperand(1));
3404
3405 switch (LHSI->getOpcode()) {
3406 default: return 0;
3407 case Instruction::And:
Reid Spencer7177c3a2007-03-25 05:33:51 +00003408 if (And(N, Mask) == Mask) {
Chris Lattner7203e152005-09-18 07:22:02 +00003409 // If the AndRHS is a power of two minus one (0+1+), this is simple.
Zhou Sheng00f436c2007-03-24 15:34:37 +00003410 if ((Mask->getValue().countLeadingZeros() +
3411 Mask->getValue().countPopulation()) ==
3412 Mask->getValue().getBitWidth())
Chris Lattner7203e152005-09-18 07:22:02 +00003413 break;
3414
3415 // Otherwise, if Mask is 0+1+0+, and if B is known to have the low 0+
3416 // part, we don't need any explicit masks to take them out of A. If that
3417 // is all N is, ignore it.
Zhou Sheng4351c642007-04-02 08:20:41 +00003418 uint32_t MB = 0, ME = 0;
Chris Lattner7203e152005-09-18 07:22:02 +00003419 if (isRunOfOnes(Mask, MB, ME)) { // begin/end bit of run, inclusive
Reid Spencerb35ae032007-03-23 18:46:34 +00003420 uint32_t BitWidth = cast<IntegerType>(RHS->getType())->getBitWidth();
Zhou Sheng290bec52007-03-29 08:15:12 +00003421 APInt Mask(APInt::getLowBitsSet(BitWidth, MB-1));
Chris Lattner3bedbd92006-02-07 07:27:52 +00003422 if (MaskedValueIsZero(RHS, Mask))
Chris Lattner7203e152005-09-18 07:22:02 +00003423 break;
3424 }
3425 }
Chris Lattnerc8e77562005-09-18 04:24:45 +00003426 return 0;
3427 case Instruction::Or:
3428 case Instruction::Xor:
Chris Lattner7203e152005-09-18 07:22:02 +00003429 // If the AndRHS is a power of two minus one (0+1+), and N&Mask == 0
Zhou Sheng00f436c2007-03-24 15:34:37 +00003430 if ((Mask->getValue().countLeadingZeros() +
3431 Mask->getValue().countPopulation()) == Mask->getValue().getBitWidth()
Reid Spencer6eb0d992007-03-26 23:58:26 +00003432 && And(N, Mask)->isZero())
Chris Lattnerc8e77562005-09-18 04:24:45 +00003433 break;
3434 return 0;
3435 }
3436
3437 Instruction *New;
3438 if (isSub)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003439 New = BinaryOperator::CreateSub(LHSI->getOperand(0), RHS, "fold");
Chris Lattnerc8e77562005-09-18 04:24:45 +00003440 else
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003441 New = BinaryOperator::CreateAdd(LHSI->getOperand(0), RHS, "fold");
Chris Lattnerc8e77562005-09-18 04:24:45 +00003442 return InsertNewInstBefore(New, I);
3443}
3444
Chris Lattner7e708292002-06-25 16:13:24 +00003445Instruction *InstCombiner::visitAnd(BinaryOperator &I) {
Chris Lattner4f98c562003-03-10 21:43:22 +00003446 bool Changed = SimplifyCommutative(I);
Chris Lattner7e708292002-06-25 16:13:24 +00003447 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattner3f5b8772002-05-06 16:14:14 +00003448
Chris Lattnere87597f2004-10-16 18:11:37 +00003449 if (isa<UndefValue>(Op1)) // X & undef -> 0
3450 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
3451
Chris Lattner6e7ba452005-01-01 16:22:27 +00003452 // and X, X = X
3453 if (Op0 == Op1)
Chris Lattner233f7dc2002-08-12 21:17:25 +00003454 return ReplaceInstUsesWith(I, Op1);
Chris Lattner3f5b8772002-05-06 16:14:14 +00003455
Chris Lattnerf8c36f52006-02-12 08:02:11 +00003456 // See if we can simplify any instructions used by the instruction whose sole
Chris Lattner9ca96412006-02-08 03:25:32 +00003457 // purpose is to compute bits we don't care about.
Reid Spencer9d6565a2007-02-15 02:26:10 +00003458 if (!isa<VectorType>(I.getType())) {
Reid Spencera03d45f2007-03-22 22:19:58 +00003459 uint32_t BitWidth = cast<IntegerType>(I.getType())->getBitWidth();
3460 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
3461 if (SimplifyDemandedBits(&I, APInt::getAllOnesValue(BitWidth),
Chris Lattner696ee0a2007-01-18 22:16:33 +00003462 KnownZero, KnownOne))
Reid Spencer6eb0d992007-03-26 23:58:26 +00003463 return &I;
Chris Lattner696ee0a2007-01-18 22:16:33 +00003464 } else {
Reid Spencer9d6565a2007-02-15 02:26:10 +00003465 if (ConstantVector *CP = dyn_cast<ConstantVector>(Op1)) {
Chris Lattner041a6c92007-06-15 05:26:55 +00003466 if (CP->isAllOnesValue()) // X & <-1,-1> -> X
Chris Lattner696ee0a2007-01-18 22:16:33 +00003467 return ReplaceInstUsesWith(I, I.getOperand(0));
Chris Lattner041a6c92007-06-15 05:26:55 +00003468 } else if (isa<ConstantAggregateZero>(Op1)) {
3469 return ReplaceInstUsesWith(I, Op1); // X & <0,0> -> <0,0>
Chris Lattner696ee0a2007-01-18 22:16:33 +00003470 }
3471 }
Chris Lattner9ca96412006-02-08 03:25:32 +00003472
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00003473 if (ConstantInt *AndRHS = dyn_cast<ConstantInt>(Op1)) {
Zhou Sheng3a507fd2007-04-01 17:13:37 +00003474 const APInt& AndRHSMask = AndRHS->getValue();
3475 APInt NotAndRHS(~AndRHSMask);
Chris Lattner6e7ba452005-01-01 16:22:27 +00003476
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003477 // Optimize a variety of ((val OP C1) & C2) combinations...
Reid Spencer832254e2007-02-02 02:16:23 +00003478 if (isa<BinaryOperator>(Op0)) {
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003479 Instruction *Op0I = cast<Instruction>(Op0);
Chris Lattner6e7ba452005-01-01 16:22:27 +00003480 Value *Op0LHS = Op0I->getOperand(0);
3481 Value *Op0RHS = Op0I->getOperand(1);
3482 switch (Op0I->getOpcode()) {
3483 case Instruction::Xor:
3484 case Instruction::Or:
Chris Lattnerad1e3022005-01-23 20:26:55 +00003485 // If the mask is only needed on one incoming arm, push it up.
3486 if (Op0I->hasOneUse()) {
3487 if (MaskedValueIsZero(Op0LHS, NotAndRHS)) {
3488 // Not masking anything out for the LHS, move to RHS.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003489 Instruction *NewRHS = BinaryOperator::CreateAnd(Op0RHS, AndRHS,
Chris Lattnerad1e3022005-01-23 20:26:55 +00003490 Op0RHS->getName()+".masked");
3491 InsertNewInstBefore(NewRHS, I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003492 return BinaryOperator::Create(
Chris Lattnerad1e3022005-01-23 20:26:55 +00003493 cast<BinaryOperator>(Op0I)->getOpcode(), Op0LHS, NewRHS);
Misha Brukmanfd939082005-04-21 23:48:37 +00003494 }
Chris Lattner3bedbd92006-02-07 07:27:52 +00003495 if (!isa<Constant>(Op0RHS) &&
Chris Lattnerad1e3022005-01-23 20:26:55 +00003496 MaskedValueIsZero(Op0RHS, NotAndRHS)) {
3497 // Not masking anything out for the RHS, move to LHS.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003498 Instruction *NewLHS = BinaryOperator::CreateAnd(Op0LHS, AndRHS,
Chris Lattnerad1e3022005-01-23 20:26:55 +00003499 Op0LHS->getName()+".masked");
3500 InsertNewInstBefore(NewLHS, I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003501 return BinaryOperator::Create(
Chris Lattnerad1e3022005-01-23 20:26:55 +00003502 cast<BinaryOperator>(Op0I)->getOpcode(), NewLHS, Op0RHS);
3503 }
3504 }
3505
Chris Lattner6e7ba452005-01-01 16:22:27 +00003506 break;
Chris Lattnerc8e77562005-09-18 04:24:45 +00003507 case Instruction::Add:
Chris Lattner7203e152005-09-18 07:22:02 +00003508 // ((A & N) + B) & AndRHS -> (A + B) & AndRHS iff N&AndRHS == AndRHS.
3509 // ((A | N) + B) & AndRHS -> (A + B) & AndRHS iff N&AndRHS == 0
3510 // ((A ^ N) + B) & AndRHS -> (A + B) & AndRHS iff N&AndRHS == 0
3511 if (Value *V = FoldLogicalPlusAnd(Op0LHS, Op0RHS, AndRHS, false, I))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003512 return BinaryOperator::CreateAnd(V, AndRHS);
Chris Lattner7203e152005-09-18 07:22:02 +00003513 if (Value *V = FoldLogicalPlusAnd(Op0RHS, Op0LHS, AndRHS, false, I))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003514 return BinaryOperator::CreateAnd(V, AndRHS); // Add commutes
Chris Lattnerc8e77562005-09-18 04:24:45 +00003515 break;
3516
3517 case Instruction::Sub:
Chris Lattner7203e152005-09-18 07:22:02 +00003518 // ((A & N) - B) & AndRHS -> (A - B) & AndRHS iff N&AndRHS == AndRHS.
3519 // ((A | N) - B) & AndRHS -> (A - B) & AndRHS iff N&AndRHS == 0
3520 // ((A ^ N) - B) & AndRHS -> (A - B) & AndRHS iff N&AndRHS == 0
3521 if (Value *V = FoldLogicalPlusAnd(Op0LHS, Op0RHS, AndRHS, true, I))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003522 return BinaryOperator::CreateAnd(V, AndRHS);
Nick Lewyckyb4d1bc92008-07-09 04:32:37 +00003523
Nick Lewycky5dcc41f2008-07-10 05:51:40 +00003524 // (A - N) & AndRHS -> -N & AndRHS iff A&AndRHS==0 and AndRHS
3525 // has 1's for all bits that the subtraction with A might affect.
3526 if (Op0I->hasOneUse()) {
3527 uint32_t BitWidth = AndRHSMask.getBitWidth();
3528 uint32_t Zeros = AndRHSMask.countLeadingZeros();
3529 APInt Mask = APInt::getLowBitsSet(BitWidth, BitWidth - Zeros);
3530
Nick Lewyckyb4d1bc92008-07-09 04:32:37 +00003531 ConstantInt *A = dyn_cast<ConstantInt>(Op0LHS);
Nick Lewycky5dcc41f2008-07-10 05:51:40 +00003532 if (!(A && A->isZero()) && // avoid infinite recursion.
3533 MaskedValueIsZero(Op0LHS, Mask)) {
Nick Lewyckyb4d1bc92008-07-09 04:32:37 +00003534 Instruction *NewNeg = BinaryOperator::CreateNeg(Op0RHS);
3535 InsertNewInstBefore(NewNeg, I);
3536 return BinaryOperator::CreateAnd(NewNeg, AndRHS);
3537 }
3538 }
Chris Lattnerc8e77562005-09-18 04:24:45 +00003539 break;
Nick Lewyckyd1f77bf2008-07-09 05:20:13 +00003540
3541 case Instruction::Shl:
3542 case Instruction::LShr:
3543 // (1 << x) & 1 --> zext(x == 0)
3544 // (1 >> x) & 1 --> zext(x == 0)
Nick Lewyckyd8ad4922008-07-09 07:35:26 +00003545 if (AndRHSMask == 1 && Op0LHS == AndRHS) {
Nick Lewyckyd1f77bf2008-07-09 05:20:13 +00003546 Instruction *NewICmp = new ICmpInst(ICmpInst::ICMP_EQ, Op0RHS,
3547 Constant::getNullValue(I.getType()));
3548 InsertNewInstBefore(NewICmp, I);
3549 return new ZExtInst(NewICmp, I.getType());
3550 }
3551 break;
Chris Lattner6e7ba452005-01-01 16:22:27 +00003552 }
3553
Chris Lattner58403262003-07-23 19:25:52 +00003554 if (ConstantInt *Op0CI = dyn_cast<ConstantInt>(Op0I->getOperand(1)))
Chris Lattner6e7ba452005-01-01 16:22:27 +00003555 if (Instruction *Res = OptAndOp(Op0I, Op0CI, AndRHS, I))
Chris Lattnerbd7b5ff2003-09-19 17:17:26 +00003556 return Res;
Chris Lattner6e7ba452005-01-01 16:22:27 +00003557 } else if (CastInst *CI = dyn_cast<CastInst>(Op0)) {
Chris Lattner2b83af22005-08-07 07:03:10 +00003558 // If this is an integer truncation or change from signed-to-unsigned, and
3559 // if the source is an and/or with immediate, transform it. This
3560 // frequently occurs for bitfield accesses.
3561 if (Instruction *CastOp = dyn_cast<Instruction>(CI->getOperand(0))) {
Reid Spencer3da59db2006-11-27 01:05:10 +00003562 if ((isa<TruncInst>(CI) || isa<BitCastInst>(CI)) &&
Chris Lattner2b83af22005-08-07 07:03:10 +00003563 CastOp->getNumOperands() == 2)
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00003564 if (ConstantInt *AndCI = dyn_cast<ConstantInt>(CastOp->getOperand(1))) {
Chris Lattner2b83af22005-08-07 07:03:10 +00003565 if (CastOp->getOpcode() == Instruction::And) {
3566 // Change: and (cast (and X, C1) to T), C2
Reid Spencer3da59db2006-11-27 01:05:10 +00003567 // into : and (cast X to T), trunc_or_bitcast(C1)&C2
3568 // This will fold the two constants together, which may allow
3569 // other simplifications.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003570 Instruction *NewCast = CastInst::CreateTruncOrBitCast(
Reid Spencerd977d862006-12-12 23:36:14 +00003571 CastOp->getOperand(0), I.getType(),
3572 CastOp->getName()+".shrunk");
Chris Lattner2b83af22005-08-07 07:03:10 +00003573 NewCast = InsertNewInstBefore(NewCast, I);
Reid Spencer3da59db2006-11-27 01:05:10 +00003574 // trunc_or_bitcast(C1)&C2
Reid Spencerd977d862006-12-12 23:36:14 +00003575 Constant *C3 = ConstantExpr::getTruncOrBitCast(AndCI,I.getType());
Reid Spencer3da59db2006-11-27 01:05:10 +00003576 C3 = ConstantExpr::getAnd(C3, AndRHS);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003577 return BinaryOperator::CreateAnd(NewCast, C3);
Chris Lattner2b83af22005-08-07 07:03:10 +00003578 } else if (CastOp->getOpcode() == Instruction::Or) {
3579 // Change: and (cast (or X, C1) to T), C2
3580 // into : trunc(C1)&C2 iff trunc(C1)&C2 == C2
Chris Lattnerbb4e7b22006-12-12 19:11:20 +00003581 Constant *C3 = ConstantExpr::getTruncOrBitCast(AndCI,I.getType());
Chris Lattner2b83af22005-08-07 07:03:10 +00003582 if (ConstantExpr::getAnd(C3, AndRHS) == AndRHS) // trunc(C1)&C2
3583 return ReplaceInstUsesWith(I, AndRHS);
3584 }
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00003585 }
Chris Lattner2b83af22005-08-07 07:03:10 +00003586 }
Chris Lattner06782f82003-07-23 19:36:21 +00003587 }
Chris Lattner2eefe512004-04-09 19:05:30 +00003588
3589 // Try to fold constant and into select arguments.
3590 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
Chris Lattner6e7ba452005-01-01 16:22:27 +00003591 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
Chris Lattner2eefe512004-04-09 19:05:30 +00003592 return R;
Chris Lattner4e998b22004-09-29 05:07:12 +00003593 if (isa<PHINode>(Op0))
3594 if (Instruction *NV = FoldOpIntoPhi(I))
3595 return NV;
Chris Lattnerc6a8aff2003-07-23 17:57:01 +00003596 }
3597
Chris Lattner8d969642003-03-10 23:06:50 +00003598 Value *Op0NotVal = dyn_castNotVal(Op0);
3599 Value *Op1NotVal = dyn_castNotVal(Op1);
Chris Lattnera2881962003-02-18 19:28:33 +00003600
Chris Lattner5b62aa72004-06-18 06:07:51 +00003601 if (Op0NotVal == Op1 || Op1NotVal == Op0) // A & ~A == ~A & A == 0
3602 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
3603
Misha Brukmancb6267b2004-07-30 12:50:08 +00003604 // (~A & ~B) == (~(A | B)) - De Morgan's Law
Chris Lattner8d969642003-03-10 23:06:50 +00003605 if (Op0NotVal && Op1NotVal && isOnlyUse(Op0) && isOnlyUse(Op1)) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003606 Instruction *Or = BinaryOperator::CreateOr(Op0NotVal, Op1NotVal,
Chris Lattner48595f12004-06-10 02:07:29 +00003607 I.getName()+".demorgan");
Chris Lattnerc6a8aff2003-07-23 17:57:01 +00003608 InsertNewInstBefore(Or, I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003609 return BinaryOperator::CreateNot(Or);
Chris Lattnera2881962003-02-18 19:28:33 +00003610 }
Chris Lattner2082ad92006-02-13 23:07:23 +00003611
3612 {
Chris Lattner003b6202007-06-15 05:58:24 +00003613 Value *A = 0, *B = 0, *C = 0, *D = 0;
3614 if (match(Op0, m_Or(m_Value(A), m_Value(B)))) {
Chris Lattner2082ad92006-02-13 23:07:23 +00003615 if (A == Op1 || B == Op1) // (A | ?) & A --> A
3616 return ReplaceInstUsesWith(I, Op1);
Chris Lattner003b6202007-06-15 05:58:24 +00003617
3618 // (A|B) & ~(A&B) -> A^B
3619 if (match(Op1, m_Not(m_And(m_Value(C), m_Value(D))))) {
3620 if ((A == C && B == D) || (A == D && B == C))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003621 return BinaryOperator::CreateXor(A, B);
Chris Lattner003b6202007-06-15 05:58:24 +00003622 }
3623 }
3624
3625 if (match(Op1, m_Or(m_Value(A), m_Value(B)))) {
Chris Lattner2082ad92006-02-13 23:07:23 +00003626 if (A == Op0 || B == Op0) // A & (A | ?) --> A
3627 return ReplaceInstUsesWith(I, Op0);
Chris Lattner003b6202007-06-15 05:58:24 +00003628
3629 // ~(A&B) & (A|B) -> A^B
3630 if (match(Op0, m_Not(m_And(m_Value(C), m_Value(D))))) {
3631 if ((A == C && B == D) || (A == D && B == C))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003632 return BinaryOperator::CreateXor(A, B);
Chris Lattner003b6202007-06-15 05:58:24 +00003633 }
3634 }
Chris Lattner64daab52006-04-01 08:03:55 +00003635
3636 if (Op0->hasOneUse() &&
3637 match(Op0, m_Xor(m_Value(A), m_Value(B)))) {
3638 if (A == Op1) { // (A^B)&A -> A&(A^B)
3639 I.swapOperands(); // Simplify below
3640 std::swap(Op0, Op1);
3641 } else if (B == Op1) { // (A^B)&B -> B&(B^A)
3642 cast<BinaryOperator>(Op0)->swapOperands();
3643 I.swapOperands(); // Simplify below
3644 std::swap(Op0, Op1);
3645 }
3646 }
3647 if (Op1->hasOneUse() &&
3648 match(Op1, m_Xor(m_Value(A), m_Value(B)))) {
3649 if (B == Op0) { // B&(A^B) -> B&(B^A)
3650 cast<BinaryOperator>(Op1)->swapOperands();
3651 std::swap(A, B);
3652 }
3653 if (A == Op0) { // A&(A^B) -> A & ~B
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003654 Instruction *NotB = BinaryOperator::CreateNot(B, "tmp");
Chris Lattner64daab52006-04-01 08:03:55 +00003655 InsertNewInstBefore(NotB, I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003656 return BinaryOperator::CreateAnd(A, NotB);
Chris Lattner64daab52006-04-01 08:03:55 +00003657 }
3658 }
Chris Lattner2082ad92006-02-13 23:07:23 +00003659 }
3660
Nick Lewyckyb30591e2008-08-06 04:54:03 +00003661 { // (icmp ult A, C) & (icmp ult B, C) --> (icmp ult (A|B), C)
3662 // where C is a power of 2
3663 Value *A, *B;
3664 ConstantInt *C1, *C2;
Evan Chengab5d5e32008-08-20 23:36:48 +00003665 ICmpInst::Predicate LHSCC = ICmpInst::BAD_ICMP_PREDICATE;
3666 ICmpInst::Predicate RHSCC = ICmpInst::BAD_ICMP_PREDICATE;
Nick Lewyckyb30591e2008-08-06 04:54:03 +00003667 if (match(&I, m_And(m_ICmp(LHSCC, m_Value(A), m_ConstantInt(C1)),
3668 m_ICmp(RHSCC, m_Value(B), m_ConstantInt(C2)))))
3669 if (C1 == C2 && LHSCC == RHSCC && LHSCC == ICmpInst::ICMP_ULT &&
3670 C1->getValue().isPowerOf2()) {
3671 Instruction *NewOr = BinaryOperator::CreateOr(A, B);
3672 InsertNewInstBefore(NewOr, I);
3673 return new ICmpInst(LHSCC, NewOr, C1);
3674 }
3675 }
3676
Reid Spencere4d87aa2006-12-23 06:05:41 +00003677 if (ICmpInst *RHS = dyn_cast<ICmpInst>(Op1)) {
3678 // (icmp1 A, B) & (icmp2 A, B) --> (icmp3 A, B)
3679 if (Instruction *R = AssociativeOpt(I, FoldICmpLogical(*this, RHS)))
Chris Lattneraa9c1f12003-08-13 20:16:26 +00003680 return R;
3681
Chris Lattner955f3312004-09-28 21:48:02 +00003682 Value *LHSVal, *RHSVal;
3683 ConstantInt *LHSCst, *RHSCst;
Reid Spencere4d87aa2006-12-23 06:05:41 +00003684 ICmpInst::Predicate LHSCC, RHSCC;
3685 if (match(Op0, m_ICmp(LHSCC, m_Value(LHSVal), m_ConstantInt(LHSCst))))
3686 if (match(RHS, m_ICmp(RHSCC, m_Value(RHSVal), m_ConstantInt(RHSCst))))
3687 if (LHSVal == RHSVal && // Found (X icmp C1) & (X icmp C2)
3688 // ICMP_[GL]E X, CST is folded to ICMP_[GL]T elsewhere.
3689 LHSCC != ICmpInst::ICMP_UGE && LHSCC != ICmpInst::ICMP_ULE &&
3690 RHSCC != ICmpInst::ICMP_UGE && RHSCC != ICmpInst::ICMP_ULE &&
3691 LHSCC != ICmpInst::ICMP_SGE && LHSCC != ICmpInst::ICMP_SLE &&
Chris Lattnereec8b9a2007-11-22 23:47:13 +00003692 RHSCC != ICmpInst::ICMP_SGE && RHSCC != ICmpInst::ICMP_SLE &&
3693
3694 // Don't try to fold ICMP_SLT + ICMP_ULT.
3695 (ICmpInst::isEquality(LHSCC) || ICmpInst::isEquality(RHSCC) ||
3696 ICmpInst::isSignedPredicate(LHSCC) ==
3697 ICmpInst::isSignedPredicate(RHSCC))) {
Chris Lattner955f3312004-09-28 21:48:02 +00003698 // Ensure that the larger constant is on the RHS.
Chris Lattneree2b7a42008-01-13 20:59:02 +00003699 ICmpInst::Predicate GT;
3700 if (ICmpInst::isSignedPredicate(LHSCC) ||
3701 (ICmpInst::isEquality(LHSCC) &&
3702 ICmpInst::isSignedPredicate(RHSCC)))
3703 GT = ICmpInst::ICMP_SGT;
3704 else
3705 GT = ICmpInst::ICMP_UGT;
3706
Reid Spencere4d87aa2006-12-23 06:05:41 +00003707 Constant *Cmp = ConstantExpr::getICmp(GT, LHSCst, RHSCst);
3708 ICmpInst *LHS = cast<ICmpInst>(Op0);
Reid Spencer579dca12007-01-12 04:24:46 +00003709 if (cast<ConstantInt>(Cmp)->getZExtValue()) {
Chris Lattner955f3312004-09-28 21:48:02 +00003710 std::swap(LHS, RHS);
3711 std::swap(LHSCst, RHSCst);
3712 std::swap(LHSCC, RHSCC);
3713 }
3714
Reid Spencere4d87aa2006-12-23 06:05:41 +00003715 // At this point, we know we have have two icmp instructions
Chris Lattner955f3312004-09-28 21:48:02 +00003716 // comparing a value against two constants and and'ing the result
3717 // together. Because of the above check, we know that we only have
Reid Spencere4d87aa2006-12-23 06:05:41 +00003718 // icmp eq, icmp ne, icmp [su]lt, and icmp [SU]gt here. We also know
3719 // (from the FoldICmpLogical check above), that the two constants
3720 // are not equal and that the larger constant is on the RHS
Chris Lattner955f3312004-09-28 21:48:02 +00003721 assert(LHSCst != RHSCst && "Compares not folded above?");
3722
3723 switch (LHSCC) {
3724 default: assert(0 && "Unknown integer condition code!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00003725 case ICmpInst::ICMP_EQ:
Chris Lattner955f3312004-09-28 21:48:02 +00003726 switch (RHSCC) {
3727 default: assert(0 && "Unknown integer condition code!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00003728 case ICmpInst::ICMP_EQ: // (X == 13 & X == 15) -> false
3729 case ICmpInst::ICMP_UGT: // (X == 13 & X > 15) -> false
3730 case ICmpInst::ICMP_SGT: // (X == 13 & X > 15) -> false
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00003731 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencere4d87aa2006-12-23 06:05:41 +00003732 case ICmpInst::ICMP_NE: // (X == 13 & X != 15) -> X == 13
3733 case ICmpInst::ICMP_ULT: // (X == 13 & X < 15) -> X == 13
3734 case ICmpInst::ICMP_SLT: // (X == 13 & X < 15) -> X == 13
Chris Lattner955f3312004-09-28 21:48:02 +00003735 return ReplaceInstUsesWith(I, LHS);
3736 }
Reid Spencere4d87aa2006-12-23 06:05:41 +00003737 case ICmpInst::ICMP_NE:
Chris Lattner955f3312004-09-28 21:48:02 +00003738 switch (RHSCC) {
3739 default: assert(0 && "Unknown integer condition code!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00003740 case ICmpInst::ICMP_ULT:
3741 if (LHSCst == SubOne(RHSCst)) // (X != 13 & X u< 14) -> X < 13
3742 return new ICmpInst(ICmpInst::ICMP_ULT, LHSVal, LHSCst);
3743 break; // (X != 13 & X u< 15) -> no change
3744 case ICmpInst::ICMP_SLT:
3745 if (LHSCst == SubOne(RHSCst)) // (X != 13 & X s< 14) -> X < 13
3746 return new ICmpInst(ICmpInst::ICMP_SLT, LHSVal, LHSCst);
3747 break; // (X != 13 & X s< 15) -> no change
3748 case ICmpInst::ICMP_EQ: // (X != 13 & X == 15) -> X == 15
3749 case ICmpInst::ICMP_UGT: // (X != 13 & X u> 15) -> X u> 15
3750 case ICmpInst::ICMP_SGT: // (X != 13 & X s> 15) -> X s> 15
Chris Lattner955f3312004-09-28 21:48:02 +00003751 return ReplaceInstUsesWith(I, RHS);
Reid Spencere4d87aa2006-12-23 06:05:41 +00003752 case ICmpInst::ICMP_NE:
3753 if (LHSCst == SubOne(RHSCst)){// (X != 13 & X != 14) -> X-13 >u 1
Chris Lattner955f3312004-09-28 21:48:02 +00003754 Constant *AddCST = ConstantExpr::getNeg(LHSCst);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003755 Instruction *Add = BinaryOperator::CreateAdd(LHSVal, AddCST,
Chris Lattner955f3312004-09-28 21:48:02 +00003756 LHSVal->getName()+".off");
3757 InsertNewInstBefore(Add, I);
Chris Lattner424db022007-01-27 23:08:34 +00003758 return new ICmpInst(ICmpInst::ICMP_UGT, Add,
3759 ConstantInt::get(Add->getType(), 1));
Chris Lattner955f3312004-09-28 21:48:02 +00003760 }
3761 break; // (X != 13 & X != 15) -> no change
3762 }
3763 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00003764 case ICmpInst::ICMP_ULT:
Chris Lattner955f3312004-09-28 21:48:02 +00003765 switch (RHSCC) {
3766 default: assert(0 && "Unknown integer condition code!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00003767 case ICmpInst::ICMP_EQ: // (X u< 13 & X == 15) -> false
3768 case ICmpInst::ICMP_UGT: // (X u< 13 & X u> 15) -> false
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00003769 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencere4d87aa2006-12-23 06:05:41 +00003770 case ICmpInst::ICMP_SGT: // (X u< 13 & X s> 15) -> no change
3771 break;
3772 case ICmpInst::ICMP_NE: // (X u< 13 & X != 15) -> X u< 13
3773 case ICmpInst::ICMP_ULT: // (X u< 13 & X u< 15) -> X u< 13
Chris Lattner955f3312004-09-28 21:48:02 +00003774 return ReplaceInstUsesWith(I, LHS);
Reid Spencere4d87aa2006-12-23 06:05:41 +00003775 case ICmpInst::ICMP_SLT: // (X u< 13 & X s< 15) -> no change
3776 break;
Chris Lattner955f3312004-09-28 21:48:02 +00003777 }
Reid Spencere4d87aa2006-12-23 06:05:41 +00003778 break;
3779 case ICmpInst::ICMP_SLT:
Chris Lattner955f3312004-09-28 21:48:02 +00003780 switch (RHSCC) {
3781 default: assert(0 && "Unknown integer condition code!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00003782 case ICmpInst::ICMP_EQ: // (X s< 13 & X == 15) -> false
3783 case ICmpInst::ICMP_SGT: // (X s< 13 & X s> 15) -> false
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00003784 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Reid Spencere4d87aa2006-12-23 06:05:41 +00003785 case ICmpInst::ICMP_UGT: // (X s< 13 & X u> 15) -> no change
3786 break;
3787 case ICmpInst::ICMP_NE: // (X s< 13 & X != 15) -> X < 13
3788 case ICmpInst::ICMP_SLT: // (X s< 13 & X s< 15) -> X < 13
Chris Lattner955f3312004-09-28 21:48:02 +00003789 return ReplaceInstUsesWith(I, LHS);
Reid Spencere4d87aa2006-12-23 06:05:41 +00003790 case ICmpInst::ICMP_ULT: // (X s< 13 & X u< 15) -> no change
3791 break;
Chris Lattner955f3312004-09-28 21:48:02 +00003792 }
Reid Spencere4d87aa2006-12-23 06:05:41 +00003793 break;
3794 case ICmpInst::ICMP_UGT:
3795 switch (RHSCC) {
3796 default: assert(0 && "Unknown integer condition code!");
Eli Friedman5c1f1722008-06-21 23:36:13 +00003797 case ICmpInst::ICMP_EQ: // (X u> 13 & X == 15) -> X == 15
Reid Spencere4d87aa2006-12-23 06:05:41 +00003798 case ICmpInst::ICMP_UGT: // (X u> 13 & X u> 15) -> X u> 15
3799 return ReplaceInstUsesWith(I, RHS);
3800 case ICmpInst::ICMP_SGT: // (X u> 13 & X s> 15) -> no change
3801 break;
3802 case ICmpInst::ICMP_NE:
3803 if (RHSCst == AddOne(LHSCst)) // (X u> 13 & X != 14) -> X u> 14
3804 return new ICmpInst(LHSCC, LHSVal, RHSCst);
3805 break; // (X u> 13 & X != 15) -> no change
3806 case ICmpInst::ICMP_ULT: // (X u> 13 & X u< 15) ->(X-14) <u 1
3807 return InsertRangeTest(LHSVal, AddOne(LHSCst), RHSCst, false,
3808 true, I);
3809 case ICmpInst::ICMP_SLT: // (X u> 13 & X s< 15) -> no change
3810 break;
3811 }
3812 break;
3813 case ICmpInst::ICMP_SGT:
3814 switch (RHSCC) {
3815 default: assert(0 && "Unknown integer condition code!");
Chris Lattnera7d1ab02007-11-16 06:04:17 +00003816 case ICmpInst::ICMP_EQ: // (X s> 13 & X == 15) -> X == 15
Reid Spencere4d87aa2006-12-23 06:05:41 +00003817 case ICmpInst::ICMP_SGT: // (X s> 13 & X s> 15) -> X s> 15
3818 return ReplaceInstUsesWith(I, RHS);
3819 case ICmpInst::ICMP_UGT: // (X s> 13 & X u> 15) -> no change
3820 break;
3821 case ICmpInst::ICMP_NE:
3822 if (RHSCst == AddOne(LHSCst)) // (X s> 13 & X != 14) -> X s> 14
3823 return new ICmpInst(LHSCC, LHSVal, RHSCst);
3824 break; // (X s> 13 & X != 15) -> no change
3825 case ICmpInst::ICMP_SLT: // (X s> 13 & X s< 15) ->(X-14) s< 1
3826 return InsertRangeTest(LHSVal, AddOne(LHSCst), RHSCst, true,
3827 true, I);
3828 case ICmpInst::ICMP_ULT: // (X s> 13 & X u< 15) -> no change
3829 break;
3830 }
3831 break;
Chris Lattner955f3312004-09-28 21:48:02 +00003832 }
3833 }
3834 }
3835
Chris Lattner6fc205f2006-05-05 06:39:07 +00003836 // fold (and (cast A), (cast B)) -> (cast (and A, B))
Reid Spencer5ae9ceb2006-12-13 08:27:15 +00003837 if (CastInst *Op0C = dyn_cast<CastInst>(Op0))
3838 if (CastInst *Op1C = dyn_cast<CastInst>(Op1))
3839 if (Op0C->getOpcode() == Op1C->getOpcode()) { // same cast kind ?
3840 const Type *SrcTy = Op0C->getOperand(0)->getType();
Chris Lattner42a75512007-01-15 02:27:26 +00003841 if (SrcTy == Op1C->getOperand(0)->getType() && SrcTy->isInteger() &&
Reid Spencer5ae9ceb2006-12-13 08:27:15 +00003842 // Only do this if the casts both really cause code to be generated.
Reid Spencere4d87aa2006-12-23 06:05:41 +00003843 ValueRequiresCast(Op0C->getOpcode(), Op0C->getOperand(0),
3844 I.getType(), TD) &&
3845 ValueRequiresCast(Op1C->getOpcode(), Op1C->getOperand(0),
3846 I.getType(), TD)) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003847 Instruction *NewOp = BinaryOperator::CreateAnd(Op0C->getOperand(0),
Reid Spencer5ae9ceb2006-12-13 08:27:15 +00003848 Op1C->getOperand(0),
3849 I.getName());
3850 InsertNewInstBefore(NewOp, I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003851 return CastInst::Create(Op0C->getOpcode(), NewOp, I.getType());
Reid Spencer5ae9ceb2006-12-13 08:27:15 +00003852 }
Chris Lattner6fc205f2006-05-05 06:39:07 +00003853 }
Chris Lattnere511b742006-11-14 07:46:50 +00003854
3855 // (X >> Z) & (Y >> Z) -> (X&Y) >> Z for all shifts.
Reid Spencer832254e2007-02-02 02:16:23 +00003856 if (BinaryOperator *SI1 = dyn_cast<BinaryOperator>(Op1)) {
3857 if (BinaryOperator *SI0 = dyn_cast<BinaryOperator>(Op0))
3858 if (SI0->isShift() && SI0->getOpcode() == SI1->getOpcode() &&
Chris Lattnere511b742006-11-14 07:46:50 +00003859 SI0->getOperand(1) == SI1->getOperand(1) &&
3860 (SI0->hasOneUse() || SI1->hasOneUse())) {
3861 Instruction *NewOp =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003862 InsertNewInstBefore(BinaryOperator::CreateAnd(SI0->getOperand(0),
Chris Lattnere511b742006-11-14 07:46:50 +00003863 SI1->getOperand(0),
3864 SI0->getName()), I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00003865 return BinaryOperator::Create(SI1->getOpcode(), NewOp,
Reid Spencer832254e2007-02-02 02:16:23 +00003866 SI1->getOperand(1));
Chris Lattnere511b742006-11-14 07:46:50 +00003867 }
Chris Lattner6fc205f2006-05-05 06:39:07 +00003868 }
3869
Chris Lattner99c65742007-10-24 05:38:08 +00003870 // (fcmp ord x, c) & (fcmp ord y, c) -> (fcmp ord x, y)
3871 if (FCmpInst *LHS = dyn_cast<FCmpInst>(I.getOperand(0))) {
3872 if (FCmpInst *RHS = dyn_cast<FCmpInst>(I.getOperand(1))) {
3873 if (LHS->getPredicate() == FCmpInst::FCMP_ORD &&
3874 RHS->getPredicate() == FCmpInst::FCMP_ORD)
3875 if (ConstantFP *LHSC = dyn_cast<ConstantFP>(LHS->getOperand(1)))
3876 if (ConstantFP *RHSC = dyn_cast<ConstantFP>(RHS->getOperand(1))) {
3877 // If either of the constants are nans, then the whole thing returns
3878 // false.
Chris Lattnerbe3e3482007-10-24 18:54:45 +00003879 if (LHSC->getValueAPF().isNaN() || RHSC->getValueAPF().isNaN())
Chris Lattner99c65742007-10-24 05:38:08 +00003880 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
3881 return new FCmpInst(FCmpInst::FCMP_ORD, LHS->getOperand(0),
3882 RHS->getOperand(0));
3883 }
3884 }
3885 }
Nick Lewyckyb4d1bc92008-07-09 04:32:37 +00003886
Chris Lattner7e708292002-06-25 16:13:24 +00003887 return Changed ? &I : 0;
Chris Lattner3f5b8772002-05-06 16:14:14 +00003888}
3889
Chris Lattnerafe91a52006-06-15 19:07:26 +00003890/// CollectBSwapParts - Look to see if the specified value defines a single byte
3891/// in the result. If it does, and if the specified byte hasn't been filled in
3892/// yet, fill it in and return false.
Chris Lattner535014f2007-02-15 22:52:10 +00003893static bool CollectBSwapParts(Value *V, SmallVector<Value*, 8> &ByteValues) {
Chris Lattnerafe91a52006-06-15 19:07:26 +00003894 Instruction *I = dyn_cast<Instruction>(V);
3895 if (I == 0) return true;
3896
3897 // If this is an or instruction, it is an inner node of the bswap.
3898 if (I->getOpcode() == Instruction::Or)
3899 return CollectBSwapParts(I->getOperand(0), ByteValues) ||
3900 CollectBSwapParts(I->getOperand(1), ByteValues);
3901
Zhou Sheng0e2d3ac2007-03-30 09:29:48 +00003902 uint32_t BitWidth = I->getType()->getPrimitiveSizeInBits();
Chris Lattnerafe91a52006-06-15 19:07:26 +00003903 // If this is a shift by a constant int, and it is "24", then its operand
3904 // defines a byte. We only handle unsigned types here.
Reid Spencer832254e2007-02-02 02:16:23 +00003905 if (I->isShift() && isa<ConstantInt>(I->getOperand(1))) {
Chris Lattnerafe91a52006-06-15 19:07:26 +00003906 // Not shifting the entire input by N-1 bytes?
Zhou Sheng0e2d3ac2007-03-30 09:29:48 +00003907 if (cast<ConstantInt>(I->getOperand(1))->getLimitedValue(BitWidth) !=
Chris Lattnerafe91a52006-06-15 19:07:26 +00003908 8*(ByteValues.size()-1))
3909 return true;
3910
3911 unsigned DestNo;
3912 if (I->getOpcode() == Instruction::Shl) {
3913 // X << 24 defines the top byte with the lowest of the input bytes.
3914 DestNo = ByteValues.size()-1;
3915 } else {
3916 // X >>u 24 defines the low byte with the highest of the input bytes.
3917 DestNo = 0;
3918 }
3919
3920 // If the destination byte value is already defined, the values are or'd
3921 // together, which isn't a bswap (unless it's an or of the same bits).
3922 if (ByteValues[DestNo] && ByteValues[DestNo] != I->getOperand(0))
3923 return true;
3924 ByteValues[DestNo] = I->getOperand(0);
3925 return false;
3926 }
3927
3928 // Otherwise, we can only handle and(shift X, imm), imm). Bail out of if we
3929 // don't have this.
3930 Value *Shift = 0, *ShiftLHS = 0;
3931 ConstantInt *AndAmt = 0, *ShiftAmt = 0;
3932 if (!match(I, m_And(m_Value(Shift), m_ConstantInt(AndAmt))) ||
3933 !match(Shift, m_Shift(m_Value(ShiftLHS), m_ConstantInt(ShiftAmt))))
3934 return true;
3935 Instruction *SI = cast<Instruction>(Shift);
3936
3937 // Make sure that the shift amount is by a multiple of 8 and isn't too big.
Zhou Sheng0e2d3ac2007-03-30 09:29:48 +00003938 if (ShiftAmt->getLimitedValue(BitWidth) & 7 ||
3939 ShiftAmt->getLimitedValue(BitWidth) > 8*ByteValues.size())
Chris Lattnerafe91a52006-06-15 19:07:26 +00003940 return true;
3941
3942 // Turn 0xFF -> 0, 0xFF00 -> 1, 0xFF0000 -> 2, etc.
3943 unsigned DestByte;
Zhou Sheng0e2d3ac2007-03-30 09:29:48 +00003944 if (AndAmt->getValue().getActiveBits() > 64)
3945 return true;
3946 uint64_t AndAmtVal = AndAmt->getZExtValue();
Chris Lattnerafe91a52006-06-15 19:07:26 +00003947 for (DestByte = 0; DestByte != ByteValues.size(); ++DestByte)
Zhou Sheng0e2d3ac2007-03-30 09:29:48 +00003948 if (AndAmtVal == uint64_t(0xFF) << 8*DestByte)
Chris Lattnerafe91a52006-06-15 19:07:26 +00003949 break;
3950 // Unknown mask for bswap.
3951 if (DestByte == ByteValues.size()) return true;
3952
Reid Spencerb83eb642006-10-20 07:07:24 +00003953 unsigned ShiftBytes = ShiftAmt->getZExtValue()/8;
Chris Lattnerafe91a52006-06-15 19:07:26 +00003954 unsigned SrcByte;
3955 if (SI->getOpcode() == Instruction::Shl)
3956 SrcByte = DestByte - ShiftBytes;
3957 else
3958 SrcByte = DestByte + ShiftBytes;
3959
3960 // If the SrcByte isn't a bswapped value from the DestByte, reject it.
3961 if (SrcByte != ByteValues.size()-DestByte-1)
3962 return true;
3963
3964 // If the destination byte value is already defined, the values are or'd
3965 // together, which isn't a bswap (unless it's an or of the same bits).
3966 if (ByteValues[DestByte] && ByteValues[DestByte] != SI->getOperand(0))
3967 return true;
3968 ByteValues[DestByte] = SI->getOperand(0);
3969 return false;
3970}
3971
3972/// MatchBSwap - Given an OR instruction, check to see if this is a bswap idiom.
3973/// If so, insert the new bswap intrinsic and return it.
3974Instruction *InstCombiner::MatchBSwap(BinaryOperator &I) {
Chris Lattner55fc8c42007-04-01 20:57:36 +00003975 const IntegerType *ITy = dyn_cast<IntegerType>(I.getType());
3976 if (!ITy || ITy->getBitWidth() % 16)
3977 return 0; // Can only bswap pairs of bytes. Can't do vectors.
Chris Lattnerafe91a52006-06-15 19:07:26 +00003978
3979 /// ByteValues - For each byte of the result, we keep track of which value
3980 /// defines each byte.
Chris Lattner535014f2007-02-15 22:52:10 +00003981 SmallVector<Value*, 8> ByteValues;
Chris Lattner55fc8c42007-04-01 20:57:36 +00003982 ByteValues.resize(ITy->getBitWidth()/8);
Chris Lattnerafe91a52006-06-15 19:07:26 +00003983
3984 // Try to find all the pieces corresponding to the bswap.
3985 if (CollectBSwapParts(I.getOperand(0), ByteValues) ||
3986 CollectBSwapParts(I.getOperand(1), ByteValues))
3987 return 0;
3988
3989 // Check to see if all of the bytes come from the same value.
3990 Value *V = ByteValues[0];
3991 if (V == 0) return 0; // Didn't find a byte? Must be zero.
3992
3993 // Check to make sure that all of the bytes come from the same value.
3994 for (unsigned i = 1, e = ByteValues.size(); i != e; ++i)
3995 if (ByteValues[i] != V)
3996 return 0;
Chandler Carruth69940402007-08-04 01:51:18 +00003997 const Type *Tys[] = { ITy };
Chris Lattnerafe91a52006-06-15 19:07:26 +00003998 Module *M = I.getParent()->getParent()->getParent();
Chandler Carruth69940402007-08-04 01:51:18 +00003999 Function *F = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1);
Gabor Greif051a9502008-04-06 20:25:17 +00004000 return CallInst::Create(F, V);
Chris Lattnerafe91a52006-06-15 19:07:26 +00004001}
4002
4003
Chris Lattner7e708292002-06-25 16:13:24 +00004004Instruction *InstCombiner::visitOr(BinaryOperator &I) {
Chris Lattner4f98c562003-03-10 21:43:22 +00004005 bool Changed = SimplifyCommutative(I);
Chris Lattner7e708292002-06-25 16:13:24 +00004006 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattner3f5b8772002-05-06 16:14:14 +00004007
Chris Lattner42593e62007-03-24 23:56:43 +00004008 if (isa<UndefValue>(Op1)) // X | undef -> -1
Chris Lattner7cbe2eb2007-06-15 06:23:19 +00004009 return ReplaceInstUsesWith(I, Constant::getAllOnesValue(I.getType()));
Chris Lattnere87597f2004-10-16 18:11:37 +00004010
Chris Lattnerf8c36f52006-02-12 08:02:11 +00004011 // or X, X = X
4012 if (Op0 == Op1)
Chris Lattner233f7dc2002-08-12 21:17:25 +00004013 return ReplaceInstUsesWith(I, Op0);
Chris Lattner3f5b8772002-05-06 16:14:14 +00004014
Chris Lattnerf8c36f52006-02-12 08:02:11 +00004015 // See if we can simplify any instructions used by the instruction whose sole
4016 // purpose is to compute bits we don't care about.
Chris Lattner42593e62007-03-24 23:56:43 +00004017 if (!isa<VectorType>(I.getType())) {
4018 uint32_t BitWidth = cast<IntegerType>(I.getType())->getBitWidth();
4019 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
4020 if (SimplifyDemandedBits(&I, APInt::getAllOnesValue(BitWidth),
4021 KnownZero, KnownOne))
4022 return &I;
Chris Lattner041a6c92007-06-15 05:26:55 +00004023 } else if (isa<ConstantAggregateZero>(Op1)) {
4024 return ReplaceInstUsesWith(I, Op0); // X | <0,0> -> X
4025 } else if (ConstantVector *CP = dyn_cast<ConstantVector>(Op1)) {
4026 if (CP->isAllOnesValue()) // X | <-1,-1> -> <-1,-1>
4027 return ReplaceInstUsesWith(I, I.getOperand(1));
Chris Lattner42593e62007-03-24 23:56:43 +00004028 }
Chris Lattner041a6c92007-06-15 05:26:55 +00004029
4030
Chris Lattnerf8c36f52006-02-12 08:02:11 +00004031
Chris Lattner3f5b8772002-05-06 16:14:14 +00004032 // or X, -1 == -1
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00004033 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner4f637d42006-01-06 17:59:59 +00004034 ConstantInt *C1 = 0; Value *X = 0;
Chris Lattneracd1f0f2004-07-30 07:50:03 +00004035 // (X & C1) | C2 --> (X | C2) & (C1|C2)
4036 if (match(Op0, m_And(m_Value(X), m_ConstantInt(C1))) && isOnlyUse(Op0)) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004037 Instruction *Or = BinaryOperator::CreateOr(X, RHS);
Chris Lattneracd1f0f2004-07-30 07:50:03 +00004038 InsertNewInstBefore(Or, I);
Chris Lattner6934a042007-02-11 01:23:03 +00004039 Or->takeName(Op0);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004040 return BinaryOperator::CreateAnd(Or,
Zhou Sheng4a1822a2007-04-02 13:45:30 +00004041 ConstantInt::get(RHS->getValue() | C1->getValue()));
Chris Lattneracd1f0f2004-07-30 07:50:03 +00004042 }
Chris Lattnerad44ebf2003-07-23 18:29:44 +00004043
Chris Lattneracd1f0f2004-07-30 07:50:03 +00004044 // (X ^ C1) | C2 --> (X | C2) ^ (C1&~C2)
4045 if (match(Op0, m_Xor(m_Value(X), m_ConstantInt(C1))) && isOnlyUse(Op0)) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004046 Instruction *Or = BinaryOperator::CreateOr(X, RHS);
Chris Lattneracd1f0f2004-07-30 07:50:03 +00004047 InsertNewInstBefore(Or, I);
Chris Lattner6934a042007-02-11 01:23:03 +00004048 Or->takeName(Op0);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004049 return BinaryOperator::CreateXor(Or,
Zhou Sheng4a1822a2007-04-02 13:45:30 +00004050 ConstantInt::get(C1->getValue() & ~RHS->getValue()));
Chris Lattnerad44ebf2003-07-23 18:29:44 +00004051 }
Chris Lattner2eefe512004-04-09 19:05:30 +00004052
4053 // Try to fold constant and into select arguments.
4054 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
Chris Lattner6e7ba452005-01-01 16:22:27 +00004055 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
Chris Lattner2eefe512004-04-09 19:05:30 +00004056 return R;
Chris Lattner4e998b22004-09-29 05:07:12 +00004057 if (isa<PHINode>(Op0))
4058 if (Instruction *NV = FoldOpIntoPhi(I))
4059 return NV;
Chris Lattnerad44ebf2003-07-23 18:29:44 +00004060 }
4061
Chris Lattner4f637d42006-01-06 17:59:59 +00004062 Value *A = 0, *B = 0;
4063 ConstantInt *C1 = 0, *C2 = 0;
Chris Lattnerf4d4c872005-05-07 23:49:08 +00004064
4065 if (match(Op0, m_And(m_Value(A), m_Value(B))))
4066 if (A == Op1 || B == Op1) // (A & ?) | A --> A
4067 return ReplaceInstUsesWith(I, Op1);
4068 if (match(Op1, m_And(m_Value(A), m_Value(B))))
4069 if (A == Op0 || B == Op0) // A | (A & ?) --> A
4070 return ReplaceInstUsesWith(I, Op0);
4071
Chris Lattner6423d4c2006-07-10 20:25:24 +00004072 // (A | B) | C and A | (B | C) -> bswap if possible.
4073 // (A >> B) | (C << D) and (A << B) | (B >> C) -> bswap if possible.
Chris Lattnerafe91a52006-06-15 19:07:26 +00004074 if (match(Op0, m_Or(m_Value(), m_Value())) ||
Chris Lattner6423d4c2006-07-10 20:25:24 +00004075 match(Op1, m_Or(m_Value(), m_Value())) ||
4076 (match(Op0, m_Shift(m_Value(), m_Value())) &&
4077 match(Op1, m_Shift(m_Value(), m_Value())))) {
Chris Lattnerafe91a52006-06-15 19:07:26 +00004078 if (Instruction *BSwap = MatchBSwap(I))
4079 return BSwap;
4080 }
4081
Chris Lattner6e4c6492005-05-09 04:58:36 +00004082 // (X^C)|Y -> (X|Y)^C iff Y&C == 0
4083 if (Op0->hasOneUse() && match(Op0, m_Xor(m_Value(A), m_ConstantInt(C1))) &&
Reid Spencera03d45f2007-03-22 22:19:58 +00004084 MaskedValueIsZero(Op1, C1->getValue())) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004085 Instruction *NOr = BinaryOperator::CreateOr(A, Op1);
Chris Lattner6934a042007-02-11 01:23:03 +00004086 InsertNewInstBefore(NOr, I);
4087 NOr->takeName(Op0);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004088 return BinaryOperator::CreateXor(NOr, C1);
Chris Lattner6e4c6492005-05-09 04:58:36 +00004089 }
4090
4091 // Y|(X^C) -> (X|Y)^C iff Y&C == 0
4092 if (Op1->hasOneUse() && match(Op1, m_Xor(m_Value(A), m_ConstantInt(C1))) &&
Reid Spencera03d45f2007-03-22 22:19:58 +00004093 MaskedValueIsZero(Op0, C1->getValue())) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004094 Instruction *NOr = BinaryOperator::CreateOr(A, Op0);
Chris Lattner6934a042007-02-11 01:23:03 +00004095 InsertNewInstBefore(NOr, I);
4096 NOr->takeName(Op0);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004097 return BinaryOperator::CreateXor(NOr, C1);
Chris Lattner6e4c6492005-05-09 04:58:36 +00004098 }
4099
Chris Lattnerc5e7ea42007-04-08 07:47:01 +00004100 // (A & C)|(B & D)
Chris Lattner2384d7b2007-06-19 05:43:49 +00004101 Value *C = 0, *D = 0;
Chris Lattnerc5e7ea42007-04-08 07:47:01 +00004102 if (match(Op0, m_And(m_Value(A), m_Value(C))) &&
4103 match(Op1, m_And(m_Value(B), m_Value(D)))) {
Chris Lattner6cae0e02007-04-08 07:55:22 +00004104 Value *V1 = 0, *V2 = 0, *V3 = 0;
4105 C1 = dyn_cast<ConstantInt>(C);
4106 C2 = dyn_cast<ConstantInt>(D);
4107 if (C1 && C2) { // (A & C1)|(B & C2)
4108 // If we have: ((V + N) & C1) | (V & C2)
4109 // .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
4110 // replace with V+N.
4111 if (C1->getValue() == ~C2->getValue()) {
4112 if ((C2->getValue() & (C2->getValue()+1)) == 0 && // C2 == 0+1+
4113 match(A, m_Add(m_Value(V1), m_Value(V2)))) {
4114 // Add commutes, try both ways.
4115 if (V1 == B && MaskedValueIsZero(V2, C2->getValue()))
4116 return ReplaceInstUsesWith(I, A);
4117 if (V2 == B && MaskedValueIsZero(V1, C2->getValue()))
4118 return ReplaceInstUsesWith(I, A);
4119 }
4120 // Or commutes, try both ways.
4121 if ((C1->getValue() & (C1->getValue()+1)) == 0 &&
4122 match(B, m_Add(m_Value(V1), m_Value(V2)))) {
4123 // Add commutes, try both ways.
4124 if (V1 == A && MaskedValueIsZero(V2, C1->getValue()))
4125 return ReplaceInstUsesWith(I, B);
4126 if (V2 == A && MaskedValueIsZero(V1, C1->getValue()))
4127 return ReplaceInstUsesWith(I, B);
4128 }
4129 }
Chris Lattner044e5332007-04-08 08:01:49 +00004130 V1 = 0; V2 = 0; V3 = 0;
Chris Lattner6cae0e02007-04-08 07:55:22 +00004131 }
4132
Chris Lattnerc5e7ea42007-04-08 07:47:01 +00004133 // Check to see if we have any common things being and'ed. If so, find the
4134 // terms for V1 & (V2|V3).
Chris Lattnerc5e7ea42007-04-08 07:47:01 +00004135 if (isOnlyUse(Op0) || isOnlyUse(Op1)) {
4136 if (A == B) // (A & C)|(A & D) == A & (C|D)
4137 V1 = A, V2 = C, V3 = D;
4138 else if (A == D) // (A & C)|(B & A) == A & (B|C)
4139 V1 = A, V2 = B, V3 = C;
4140 else if (C == B) // (A & C)|(C & D) == C & (A|D)
4141 V1 = C, V2 = A, V3 = D;
4142 else if (C == D) // (A & C)|(B & C) == C & (A|B)
4143 V1 = C, V2 = A, V3 = B;
4144
4145 if (V1) {
4146 Value *Or =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004147 InsertNewInstBefore(BinaryOperator::CreateOr(V2, V3, "tmp"), I);
4148 return BinaryOperator::CreateAnd(V1, Or);
Chris Lattner0b7c0bf2005-09-18 06:02:59 +00004149 }
Chris Lattnerc5e7ea42007-04-08 07:47:01 +00004150 }
Chris Lattnere9bed7d2005-09-18 03:42:07 +00004151 }
Chris Lattnere511b742006-11-14 07:46:50 +00004152
4153 // (X >> Z) | (Y >> Z) -> (X|Y) >> Z for all shifts.
Reid Spencer832254e2007-02-02 02:16:23 +00004154 if (BinaryOperator *SI1 = dyn_cast<BinaryOperator>(Op1)) {
4155 if (BinaryOperator *SI0 = dyn_cast<BinaryOperator>(Op0))
4156 if (SI0->isShift() && SI0->getOpcode() == SI1->getOpcode() &&
Chris Lattnere511b742006-11-14 07:46:50 +00004157 SI0->getOperand(1) == SI1->getOperand(1) &&
4158 (SI0->hasOneUse() || SI1->hasOneUse())) {
4159 Instruction *NewOp =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004160 InsertNewInstBefore(BinaryOperator::CreateOr(SI0->getOperand(0),
Chris Lattnere511b742006-11-14 07:46:50 +00004161 SI1->getOperand(0),
4162 SI0->getName()), I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004163 return BinaryOperator::Create(SI1->getOpcode(), NewOp,
Reid Spencer832254e2007-02-02 02:16:23 +00004164 SI1->getOperand(1));
Chris Lattnere511b742006-11-14 07:46:50 +00004165 }
4166 }
Chris Lattner67ca7682003-08-12 19:11:07 +00004167
Chris Lattneracd1f0f2004-07-30 07:50:03 +00004168 if (match(Op0, m_Not(m_Value(A)))) { // ~A | Op1
4169 if (A == Op1) // ~A | A == -1
Chris Lattner7cbe2eb2007-06-15 06:23:19 +00004170 return ReplaceInstUsesWith(I, Constant::getAllOnesValue(I.getType()));
Chris Lattneracd1f0f2004-07-30 07:50:03 +00004171 } else {
4172 A = 0;
4173 }
Chris Lattnerf4d4c872005-05-07 23:49:08 +00004174 // Note, A is still live here!
Chris Lattneracd1f0f2004-07-30 07:50:03 +00004175 if (match(Op1, m_Not(m_Value(B)))) { // Op0 | ~B
4176 if (Op0 == B)
Chris Lattner7cbe2eb2007-06-15 06:23:19 +00004177 return ReplaceInstUsesWith(I, Constant::getAllOnesValue(I.getType()));
Chris Lattnera27231a2003-03-10 23:13:59 +00004178
Misha Brukmancb6267b2004-07-30 12:50:08 +00004179 // (~A | ~B) == (~(A & B)) - De Morgan's Law
Chris Lattneracd1f0f2004-07-30 07:50:03 +00004180 if (A && isOnlyUse(Op0) && isOnlyUse(Op1)) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004181 Value *And = InsertNewInstBefore(BinaryOperator::CreateAnd(A, B,
Chris Lattneracd1f0f2004-07-30 07:50:03 +00004182 I.getName()+".demorgan"), I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004183 return BinaryOperator::CreateNot(And);
Chris Lattneracd1f0f2004-07-30 07:50:03 +00004184 }
Chris Lattnera27231a2003-03-10 23:13:59 +00004185 }
Chris Lattnera2881962003-02-18 19:28:33 +00004186
Reid Spencere4d87aa2006-12-23 06:05:41 +00004187 // (icmp1 A, B) | (icmp2 A, B) --> (icmp3 A, B)
4188 if (ICmpInst *RHS = dyn_cast<ICmpInst>(I.getOperand(1))) {
4189 if (Instruction *R = AssociativeOpt(I, FoldICmpLogical(*this, RHS)))
Chris Lattneraa9c1f12003-08-13 20:16:26 +00004190 return R;
4191
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004192 Value *LHSVal, *RHSVal;
4193 ConstantInt *LHSCst, *RHSCst;
Reid Spencere4d87aa2006-12-23 06:05:41 +00004194 ICmpInst::Predicate LHSCC, RHSCC;
4195 if (match(Op0, m_ICmp(LHSCC, m_Value(LHSVal), m_ConstantInt(LHSCst))))
4196 if (match(RHS, m_ICmp(RHSCC, m_Value(RHSVal), m_ConstantInt(RHSCst))))
4197 if (LHSVal == RHSVal && // Found (X icmp C1) | (X icmp C2)
4198 // icmp [us][gl]e x, cst is folded to icmp [us][gl]t elsewhere.
4199 LHSCC != ICmpInst::ICMP_UGE && LHSCC != ICmpInst::ICMP_ULE &&
4200 RHSCC != ICmpInst::ICMP_UGE && RHSCC != ICmpInst::ICMP_ULE &&
4201 LHSCC != ICmpInst::ICMP_SGE && LHSCC != ICmpInst::ICMP_SLE &&
Chris Lattner88858872007-05-11 05:55:56 +00004202 RHSCC != ICmpInst::ICMP_SGE && RHSCC != ICmpInst::ICMP_SLE &&
4203 // We can't fold (ugt x, C) | (sgt x, C2).
4204 PredicatesFoldable(LHSCC, RHSCC)) {
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004205 // Ensure that the larger constant is on the RHS.
Reid Spencere4d87aa2006-12-23 06:05:41 +00004206 ICmpInst *LHS = cast<ICmpInst>(Op0);
Chris Lattner88858872007-05-11 05:55:56 +00004207 bool NeedsSwap;
4208 if (ICmpInst::isSignedPredicate(LHSCC))
Chris Lattner3aea1bd2007-05-11 16:58:45 +00004209 NeedsSwap = LHSCst->getValue().sgt(RHSCst->getValue());
Chris Lattner88858872007-05-11 05:55:56 +00004210 else
Chris Lattner3aea1bd2007-05-11 16:58:45 +00004211 NeedsSwap = LHSCst->getValue().ugt(RHSCst->getValue());
Chris Lattner88858872007-05-11 05:55:56 +00004212
4213 if (NeedsSwap) {
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004214 std::swap(LHS, RHS);
4215 std::swap(LHSCst, RHSCst);
4216 std::swap(LHSCC, RHSCC);
4217 }
4218
Reid Spencere4d87aa2006-12-23 06:05:41 +00004219 // At this point, we know we have have two icmp instructions
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004220 // comparing a value against two constants and or'ing the result
4221 // together. Because of the above check, we know that we only have
Reid Spencere4d87aa2006-12-23 06:05:41 +00004222 // ICMP_EQ, ICMP_NE, ICMP_LT, and ICMP_GT here. We also know (from the
4223 // FoldICmpLogical check above), that the two constants are not
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004224 // equal.
4225 assert(LHSCst != RHSCst && "Compares not folded above?");
4226
4227 switch (LHSCC) {
4228 default: assert(0 && "Unknown integer condition code!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00004229 case ICmpInst::ICMP_EQ:
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004230 switch (RHSCC) {
4231 default: assert(0 && "Unknown integer condition code!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00004232 case ICmpInst::ICMP_EQ:
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004233 if (LHSCst == SubOne(RHSCst)) {// (X == 13 | X == 14) -> X-13 <u 2
4234 Constant *AddCST = ConstantExpr::getNeg(LHSCst);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004235 Instruction *Add = BinaryOperator::CreateAdd(LHSVal, AddCST,
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004236 LHSVal->getName()+".off");
4237 InsertNewInstBefore(Add, I);
Zhou Sheng4a1822a2007-04-02 13:45:30 +00004238 AddCST = Subtract(AddOne(RHSCst), LHSCst);
Reid Spencere4d87aa2006-12-23 06:05:41 +00004239 return new ICmpInst(ICmpInst::ICMP_ULT, Add, AddCST);
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004240 }
Reid Spencere4d87aa2006-12-23 06:05:41 +00004241 break; // (X == 13 | X == 15) -> no change
4242 case ICmpInst::ICMP_UGT: // (X == 13 | X u> 14) -> no change
4243 case ICmpInst::ICMP_SGT: // (X == 13 | X s> 14) -> no change
Chris Lattner240d6f42005-04-19 06:04:18 +00004244 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00004245 case ICmpInst::ICMP_NE: // (X == 13 | X != 15) -> X != 15
4246 case ICmpInst::ICMP_ULT: // (X == 13 | X u< 15) -> X u< 15
4247 case ICmpInst::ICMP_SLT: // (X == 13 | X s< 15) -> X s< 15
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004248 return ReplaceInstUsesWith(I, RHS);
4249 }
4250 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00004251 case ICmpInst::ICMP_NE:
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004252 switch (RHSCC) {
4253 default: assert(0 && "Unknown integer condition code!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00004254 case ICmpInst::ICMP_EQ: // (X != 13 | X == 15) -> X != 13
4255 case ICmpInst::ICMP_UGT: // (X != 13 | X u> 15) -> X != 13
4256 case ICmpInst::ICMP_SGT: // (X != 13 | X s> 15) -> X != 13
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004257 return ReplaceInstUsesWith(I, LHS);
Reid Spencere4d87aa2006-12-23 06:05:41 +00004258 case ICmpInst::ICMP_NE: // (X != 13 | X != 15) -> true
4259 case ICmpInst::ICMP_ULT: // (X != 13 | X u< 15) -> true
4260 case ICmpInst::ICMP_SLT: // (X != 13 | X s< 15) -> true
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00004261 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004262 }
4263 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00004264 case ICmpInst::ICMP_ULT:
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004265 switch (RHSCC) {
4266 default: assert(0 && "Unknown integer condition code!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00004267 case ICmpInst::ICMP_EQ: // (X u< 13 | X == 14) -> no change
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004268 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00004269 case ICmpInst::ICMP_UGT: // (X u< 13 | X u> 15) ->(X-13) u> 2
Chris Lattner74e012a2007-11-01 02:18:41 +00004270 // If RHSCst is [us]MAXINT, it is always false. Not handling
4271 // this can cause overflow.
4272 if (RHSCst->isMaxValue(false))
4273 return ReplaceInstUsesWith(I, LHS);
Reid Spencere4d87aa2006-12-23 06:05:41 +00004274 return InsertRangeTest(LHSVal, LHSCst, AddOne(RHSCst), false,
4275 false, I);
4276 case ICmpInst::ICMP_SGT: // (X u< 13 | X s> 15) -> no change
4277 break;
4278 case ICmpInst::ICMP_NE: // (X u< 13 | X != 15) -> X != 15
4279 case ICmpInst::ICMP_ULT: // (X u< 13 | X u< 15) -> X u< 15
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004280 return ReplaceInstUsesWith(I, RHS);
Reid Spencere4d87aa2006-12-23 06:05:41 +00004281 case ICmpInst::ICMP_SLT: // (X u< 13 | X s< 15) -> no change
4282 break;
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004283 }
4284 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00004285 case ICmpInst::ICMP_SLT:
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004286 switch (RHSCC) {
4287 default: assert(0 && "Unknown integer condition code!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00004288 case ICmpInst::ICMP_EQ: // (X s< 13 | X == 14) -> no change
4289 break;
4290 case ICmpInst::ICMP_SGT: // (X s< 13 | X s> 15) ->(X-13) s> 2
Chris Lattner74e012a2007-11-01 02:18:41 +00004291 // If RHSCst is [us]MAXINT, it is always false. Not handling
4292 // this can cause overflow.
4293 if (RHSCst->isMaxValue(true))
4294 return ReplaceInstUsesWith(I, LHS);
Reid Spencere4d87aa2006-12-23 06:05:41 +00004295 return InsertRangeTest(LHSVal, LHSCst, AddOne(RHSCst), true,
4296 false, I);
4297 case ICmpInst::ICMP_UGT: // (X s< 13 | X u> 15) -> no change
4298 break;
4299 case ICmpInst::ICMP_NE: // (X s< 13 | X != 15) -> X != 15
4300 case ICmpInst::ICMP_SLT: // (X s< 13 | X s< 15) -> X s< 15
4301 return ReplaceInstUsesWith(I, RHS);
4302 case ICmpInst::ICMP_ULT: // (X s< 13 | X u< 15) -> no change
4303 break;
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004304 }
Reid Spencere4d87aa2006-12-23 06:05:41 +00004305 break;
4306 case ICmpInst::ICMP_UGT:
4307 switch (RHSCC) {
4308 default: assert(0 && "Unknown integer condition code!");
4309 case ICmpInst::ICMP_EQ: // (X u> 13 | X == 15) -> X u> 13
4310 case ICmpInst::ICMP_UGT: // (X u> 13 | X u> 15) -> X u> 13
4311 return ReplaceInstUsesWith(I, LHS);
4312 case ICmpInst::ICMP_SGT: // (X u> 13 | X s> 15) -> no change
4313 break;
4314 case ICmpInst::ICMP_NE: // (X u> 13 | X != 15) -> true
4315 case ICmpInst::ICMP_ULT: // (X u> 13 | X u< 15) -> true
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00004316 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Reid Spencere4d87aa2006-12-23 06:05:41 +00004317 case ICmpInst::ICMP_SLT: // (X u> 13 | X s< 15) -> no change
4318 break;
4319 }
4320 break;
4321 case ICmpInst::ICMP_SGT:
4322 switch (RHSCC) {
4323 default: assert(0 && "Unknown integer condition code!");
4324 case ICmpInst::ICMP_EQ: // (X s> 13 | X == 15) -> X > 13
4325 case ICmpInst::ICMP_SGT: // (X s> 13 | X s> 15) -> X > 13
4326 return ReplaceInstUsesWith(I, LHS);
4327 case ICmpInst::ICMP_UGT: // (X s> 13 | X u> 15) -> no change
4328 break;
4329 case ICmpInst::ICMP_NE: // (X s> 13 | X != 15) -> true
4330 case ICmpInst::ICMP_SLT: // (X s> 13 | X s< 15) -> true
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00004331 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Reid Spencere4d87aa2006-12-23 06:05:41 +00004332 case ICmpInst::ICMP_ULT: // (X s> 13 | X u< 15) -> no change
4333 break;
4334 }
4335 break;
Chris Lattnerb4f40d22004-09-28 22:33:08 +00004336 }
4337 }
4338 }
Chris Lattner6fc205f2006-05-05 06:39:07 +00004339
4340 // fold (or (cast A), (cast B)) -> (cast (or A, B))
Chris Lattner99c65742007-10-24 05:38:08 +00004341 if (CastInst *Op0C = dyn_cast<CastInst>(Op0)) {
Chris Lattner6fc205f2006-05-05 06:39:07 +00004342 if (CastInst *Op1C = dyn_cast<CastInst>(Op1))
Reid Spencer5ae9ceb2006-12-13 08:27:15 +00004343 if (Op0C->getOpcode() == Op1C->getOpcode()) {// same cast kind ?
Evan Chengb98a10e2008-03-24 00:21:34 +00004344 if (!isa<ICmpInst>(Op0C->getOperand(0)) ||
4345 !isa<ICmpInst>(Op1C->getOperand(0))) {
4346 const Type *SrcTy = Op0C->getOperand(0)->getType();
4347 if (SrcTy == Op1C->getOperand(0)->getType() && SrcTy->isInteger() &&
4348 // Only do this if the casts both really cause code to be
4349 // generated.
4350 ValueRequiresCast(Op0C->getOpcode(), Op0C->getOperand(0),
4351 I.getType(), TD) &&
4352 ValueRequiresCast(Op1C->getOpcode(), Op1C->getOperand(0),
4353 I.getType(), TD)) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004354 Instruction *NewOp = BinaryOperator::CreateOr(Op0C->getOperand(0),
Evan Chengb98a10e2008-03-24 00:21:34 +00004355 Op1C->getOperand(0),
4356 I.getName());
4357 InsertNewInstBefore(NewOp, I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004358 return CastInst::Create(Op0C->getOpcode(), NewOp, I.getType());
Evan Chengb98a10e2008-03-24 00:21:34 +00004359 }
Reid Spencer5ae9ceb2006-12-13 08:27:15 +00004360 }
Chris Lattner6fc205f2006-05-05 06:39:07 +00004361 }
Chris Lattner99c65742007-10-24 05:38:08 +00004362 }
4363
4364
4365 // (fcmp uno x, c) | (fcmp uno y, c) -> (fcmp uno x, y)
4366 if (FCmpInst *LHS = dyn_cast<FCmpInst>(I.getOperand(0))) {
4367 if (FCmpInst *RHS = dyn_cast<FCmpInst>(I.getOperand(1))) {
4368 if (LHS->getPredicate() == FCmpInst::FCMP_UNO &&
Chris Lattner5ebd9362008-02-29 06:09:11 +00004369 RHS->getPredicate() == FCmpInst::FCMP_UNO &&
4370 LHS->getOperand(0)->getType() == RHS->getOperand(0)->getType())
Chris Lattner99c65742007-10-24 05:38:08 +00004371 if (ConstantFP *LHSC = dyn_cast<ConstantFP>(LHS->getOperand(1)))
4372 if (ConstantFP *RHSC = dyn_cast<ConstantFP>(RHS->getOperand(1))) {
4373 // If either of the constants are nans, then the whole thing returns
4374 // true.
Chris Lattnerbe3e3482007-10-24 18:54:45 +00004375 if (LHSC->getValueAPF().isNaN() || RHSC->getValueAPF().isNaN())
Chris Lattner99c65742007-10-24 05:38:08 +00004376 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
4377
4378 // Otherwise, no need to compare the two constants, compare the
4379 // rest.
4380 return new FCmpInst(FCmpInst::FCMP_UNO, LHS->getOperand(0),
4381 RHS->getOperand(0));
4382 }
4383 }
4384 }
Chris Lattnere9bed7d2005-09-18 03:42:07 +00004385
Chris Lattner7e708292002-06-25 16:13:24 +00004386 return Changed ? &I : 0;
Chris Lattner3f5b8772002-05-06 16:14:14 +00004387}
4388
Dan Gohman844731a2008-05-13 00:00:25 +00004389namespace {
4390
Chris Lattnerc317d392004-02-16 01:20:27 +00004391// XorSelf - Implements: X ^ X --> 0
4392struct XorSelf {
4393 Value *RHS;
4394 XorSelf(Value *rhs) : RHS(rhs) {}
4395 bool shouldApply(Value *LHS) const { return LHS == RHS; }
4396 Instruction *apply(BinaryOperator &Xor) const {
4397 return &Xor;
4398 }
4399};
Chris Lattner3f5b8772002-05-06 16:14:14 +00004400
Dan Gohman844731a2008-05-13 00:00:25 +00004401}
Chris Lattner3f5b8772002-05-06 16:14:14 +00004402
Chris Lattner7e708292002-06-25 16:13:24 +00004403Instruction *InstCombiner::visitXor(BinaryOperator &I) {
Chris Lattner4f98c562003-03-10 21:43:22 +00004404 bool Changed = SimplifyCommutative(I);
Chris Lattner7e708292002-06-25 16:13:24 +00004405 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattner3f5b8772002-05-06 16:14:14 +00004406
Evan Chengd34af782008-03-25 20:07:13 +00004407 if (isa<UndefValue>(Op1)) {
4408 if (isa<UndefValue>(Op0))
4409 // Handle undef ^ undef -> 0 special case. This is a common
4410 // idiom (misuse).
4411 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattnere87597f2004-10-16 18:11:37 +00004412 return ReplaceInstUsesWith(I, Op1); // X ^ undef -> undef
Evan Chengd34af782008-03-25 20:07:13 +00004413 }
Chris Lattnere87597f2004-10-16 18:11:37 +00004414
Chris Lattnerc317d392004-02-16 01:20:27 +00004415 // xor X, X = 0, even if X is nested in a sequence of Xor's.
4416 if (Instruction *Result = AssociativeOpt(I, XorSelf(Op1))) {
Chris Lattnera9ff5eb2007-08-05 08:47:58 +00004417 assert(Result == &I && "AssociativeOpt didn't work?"); Result=Result;
Chris Lattner233f7dc2002-08-12 21:17:25 +00004418 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattnerc317d392004-02-16 01:20:27 +00004419 }
Chris Lattnerf8c36f52006-02-12 08:02:11 +00004420
4421 // See if we can simplify any instructions used by the instruction whose sole
4422 // purpose is to compute bits we don't care about.
Reid Spencera03d45f2007-03-22 22:19:58 +00004423 if (!isa<VectorType>(I.getType())) {
4424 uint32_t BitWidth = cast<IntegerType>(I.getType())->getBitWidth();
4425 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
4426 if (SimplifyDemandedBits(&I, APInt::getAllOnesValue(BitWidth),
4427 KnownZero, KnownOne))
4428 return &I;
Chris Lattner041a6c92007-06-15 05:26:55 +00004429 } else if (isa<ConstantAggregateZero>(Op1)) {
4430 return ReplaceInstUsesWith(I, Op0); // X ^ <0,0> -> X
Reid Spencera03d45f2007-03-22 22:19:58 +00004431 }
Chris Lattner3f5b8772002-05-06 16:14:14 +00004432
Chris Lattner7cbe2eb2007-06-15 06:23:19 +00004433 // Is this a ~ operation?
4434 if (Value *NotOp = dyn_castNotVal(&I)) {
4435 // ~(~X & Y) --> (X | ~Y) - De Morgan's Law
4436 // ~(~X | Y) === (X & ~Y) - De Morgan's Law
4437 if (BinaryOperator *Op0I = dyn_cast<BinaryOperator>(NotOp)) {
4438 if (Op0I->getOpcode() == Instruction::And ||
4439 Op0I->getOpcode() == Instruction::Or) {
4440 if (dyn_castNotVal(Op0I->getOperand(1))) Op0I->swapOperands();
4441 if (Value *Op0NotVal = dyn_castNotVal(Op0I->getOperand(0))) {
4442 Instruction *NotY =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004443 BinaryOperator::CreateNot(Op0I->getOperand(1),
Chris Lattner7cbe2eb2007-06-15 06:23:19 +00004444 Op0I->getOperand(1)->getName()+".not");
4445 InsertNewInstBefore(NotY, I);
4446 if (Op0I->getOpcode() == Instruction::And)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004447 return BinaryOperator::CreateOr(Op0NotVal, NotY);
Chris Lattner7cbe2eb2007-06-15 06:23:19 +00004448 else
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004449 return BinaryOperator::CreateAnd(Op0NotVal, NotY);
Chris Lattner7cbe2eb2007-06-15 06:23:19 +00004450 }
4451 }
4452 }
4453 }
4454
4455
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00004456 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
Nick Lewyckyf947b3e2007-08-06 20:04:16 +00004457 // xor (cmp A, B), true = not (cmp A, B) = !cmp A, B
4458 if (RHS == ConstantInt::getTrue() && Op0->hasOneUse()) {
4459 if (ICmpInst *ICI = dyn_cast<ICmpInst>(Op0))
Reid Spencere4d87aa2006-12-23 06:05:41 +00004460 return new ICmpInst(ICI->getInversePredicate(),
4461 ICI->getOperand(0), ICI->getOperand(1));
Chris Lattnerad5b4fb2003-11-04 23:50:51 +00004462
Nick Lewyckyf947b3e2007-08-06 20:04:16 +00004463 if (FCmpInst *FCI = dyn_cast<FCmpInst>(Op0))
4464 return new FCmpInst(FCI->getInversePredicate(),
4465 FCI->getOperand(0), FCI->getOperand(1));
4466 }
4467
Nick Lewycky517e1f52008-05-31 19:01:33 +00004468 // fold (xor(zext(cmp)), 1) and (xor(sext(cmp)), -1) to ext(!cmp).
4469 if (CastInst *Op0C = dyn_cast<CastInst>(Op0)) {
4470 if (CmpInst *CI = dyn_cast<CmpInst>(Op0C->getOperand(0))) {
4471 if (CI->hasOneUse() && Op0C->hasOneUse()) {
4472 Instruction::CastOps Opcode = Op0C->getOpcode();
4473 if (Opcode == Instruction::ZExt || Opcode == Instruction::SExt) {
4474 if (RHS == ConstantExpr::getCast(Opcode, ConstantInt::getTrue(),
4475 Op0C->getDestTy())) {
4476 Instruction *NewCI = InsertNewInstBefore(CmpInst::Create(
4477 CI->getOpcode(), CI->getInversePredicate(),
4478 CI->getOperand(0), CI->getOperand(1)), I);
4479 NewCI->takeName(CI);
4480 return CastInst::Create(Opcode, NewCI, Op0C->getType());
4481 }
4482 }
4483 }
4484 }
4485 }
4486
Reid Spencere4d87aa2006-12-23 06:05:41 +00004487 if (BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0)) {
Chris Lattnerd65460f2003-11-05 01:06:05 +00004488 // ~(c-X) == X-c-1 == X+(-c-1)
Chris Lattner7c4049c2004-01-12 19:35:11 +00004489 if (Op0I->getOpcode() == Instruction::Sub && RHS->isAllOnesValue())
4490 if (Constant *Op0I0C = dyn_cast<Constant>(Op0I->getOperand(0))) {
Chris Lattner48595f12004-06-10 02:07:29 +00004491 Constant *NegOp0I0C = ConstantExpr::getNeg(Op0I0C);
4492 Constant *ConstantRHS = ConstantExpr::getSub(NegOp0I0C,
Chris Lattner7c4049c2004-01-12 19:35:11 +00004493 ConstantInt::get(I.getType(), 1));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004494 return BinaryOperator::CreateAdd(Op0I->getOperand(1), ConstantRHS);
Chris Lattner7c4049c2004-01-12 19:35:11 +00004495 }
Chris Lattner5c6e2db2007-04-02 05:36:22 +00004496
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00004497 if (ConstantInt *Op0CI = dyn_cast<ConstantInt>(Op0I->getOperand(1))) {
Chris Lattnerf8c36f52006-02-12 08:02:11 +00004498 if (Op0I->getOpcode() == Instruction::Add) {
Chris Lattner689d24b2003-11-04 23:37:10 +00004499 // ~(X-c) --> (-c-1)-X
Chris Lattner7c4049c2004-01-12 19:35:11 +00004500 if (RHS->isAllOnesValue()) {
Chris Lattner48595f12004-06-10 02:07:29 +00004501 Constant *NegOp0CI = ConstantExpr::getNeg(Op0CI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004502 return BinaryOperator::CreateSub(
Chris Lattner48595f12004-06-10 02:07:29 +00004503 ConstantExpr::getSub(NegOp0CI,
Chris Lattner7c4049c2004-01-12 19:35:11 +00004504 ConstantInt::get(I.getType(), 1)),
Chris Lattner689d24b2003-11-04 23:37:10 +00004505 Op0I->getOperand(0));
Chris Lattneracf4e072007-04-02 05:42:22 +00004506 } else if (RHS->getValue().isSignBit()) {
Chris Lattner5c6e2db2007-04-02 05:36:22 +00004507 // (X + C) ^ signbit -> (X + C + signbit)
4508 Constant *C = ConstantInt::get(RHS->getValue() + Op0CI->getValue());
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004509 return BinaryOperator::CreateAdd(Op0I->getOperand(0), C);
Chris Lattnercd1d6d52007-04-02 05:48:58 +00004510
Chris Lattner7c4049c2004-01-12 19:35:11 +00004511 }
Chris Lattner02bd1b32006-02-26 19:57:54 +00004512 } else if (Op0I->getOpcode() == Instruction::Or) {
4513 // (X|C1)^C2 -> X^(C1|C2) iff X&~C1 == 0
Reid Spencera03d45f2007-03-22 22:19:58 +00004514 if (MaskedValueIsZero(Op0I->getOperand(0), Op0CI->getValue())) {
Chris Lattner02bd1b32006-02-26 19:57:54 +00004515 Constant *NewRHS = ConstantExpr::getOr(Op0CI, RHS);
4516 // Anything in both C1 and C2 is known to be zero, remove it from
4517 // NewRHS.
Zhou Sheng4a1822a2007-04-02 13:45:30 +00004518 Constant *CommonBits = And(Op0CI, RHS);
Chris Lattner02bd1b32006-02-26 19:57:54 +00004519 NewRHS = ConstantExpr::getAnd(NewRHS,
4520 ConstantExpr::getNot(CommonBits));
Chris Lattnerdbab3862007-03-02 21:28:56 +00004521 AddToWorkList(Op0I);
Chris Lattner02bd1b32006-02-26 19:57:54 +00004522 I.setOperand(0, Op0I->getOperand(0));
4523 I.setOperand(1, NewRHS);
4524 return &I;
4525 }
Chris Lattnereca0c5c2003-07-23 21:37:07 +00004526 }
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00004527 }
Chris Lattner05bd1b22002-08-20 18:24:26 +00004528 }
Chris Lattner2eefe512004-04-09 19:05:30 +00004529
4530 // Try to fold constant and into select arguments.
4531 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
Chris Lattner6e7ba452005-01-01 16:22:27 +00004532 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
Chris Lattner2eefe512004-04-09 19:05:30 +00004533 return R;
Chris Lattner4e998b22004-09-29 05:07:12 +00004534 if (isa<PHINode>(Op0))
4535 if (Instruction *NV = FoldOpIntoPhi(I))
4536 return NV;
Chris Lattner3f5b8772002-05-06 16:14:14 +00004537 }
4538
Chris Lattner8d969642003-03-10 23:06:50 +00004539 if (Value *X = dyn_castNotVal(Op0)) // ~A ^ A == -1
Chris Lattnera2881962003-02-18 19:28:33 +00004540 if (X == Op1)
Chris Lattner7cbe2eb2007-06-15 06:23:19 +00004541 return ReplaceInstUsesWith(I, Constant::getAllOnesValue(I.getType()));
Chris Lattnera2881962003-02-18 19:28:33 +00004542
Chris Lattner8d969642003-03-10 23:06:50 +00004543 if (Value *X = dyn_castNotVal(Op1)) // A ^ ~A == -1
Chris Lattnera2881962003-02-18 19:28:33 +00004544 if (X == Op0)
Chris Lattner7cbe2eb2007-06-15 06:23:19 +00004545 return ReplaceInstUsesWith(I, Constant::getAllOnesValue(I.getType()));
Chris Lattnera2881962003-02-18 19:28:33 +00004546
Chris Lattner318bf792007-03-18 22:51:34 +00004547
4548 BinaryOperator *Op1I = dyn_cast<BinaryOperator>(Op1);
4549 if (Op1I) {
4550 Value *A, *B;
4551 if (match(Op1I, m_Or(m_Value(A), m_Value(B)))) {
4552 if (A == Op0) { // B^(B|A) == (A|B)^B
Chris Lattner64daab52006-04-01 08:03:55 +00004553 Op1I->swapOperands();
Chris Lattnercb40a372003-03-10 18:24:17 +00004554 I.swapOperands();
4555 std::swap(Op0, Op1);
Chris Lattner318bf792007-03-18 22:51:34 +00004556 } else if (B == Op0) { // B^(A|B) == (A|B)^B
Chris Lattner64daab52006-04-01 08:03:55 +00004557 I.swapOperands(); // Simplified below.
Chris Lattnercb40a372003-03-10 18:24:17 +00004558 std::swap(Op0, Op1);
Misha Brukmanfd939082005-04-21 23:48:37 +00004559 }
Chris Lattner318bf792007-03-18 22:51:34 +00004560 } else if (match(Op1I, m_Xor(m_Value(A), m_Value(B)))) {
4561 if (Op0 == A) // A^(A^B) == B
4562 return ReplaceInstUsesWith(I, B);
4563 else if (Op0 == B) // A^(B^A) == B
4564 return ReplaceInstUsesWith(I, A);
4565 } else if (match(Op1I, m_And(m_Value(A), m_Value(B))) && Op1I->hasOneUse()){
Chris Lattner6abbdf92007-04-01 05:36:37 +00004566 if (A == Op0) { // A^(A&B) -> A^(B&A)
Chris Lattner64daab52006-04-01 08:03:55 +00004567 Op1I->swapOperands();
Chris Lattner6abbdf92007-04-01 05:36:37 +00004568 std::swap(A, B);
4569 }
Chris Lattner318bf792007-03-18 22:51:34 +00004570 if (B == Op0) { // A^(B&A) -> (B&A)^A
Chris Lattner64daab52006-04-01 08:03:55 +00004571 I.swapOperands(); // Simplified below.
4572 std::swap(Op0, Op1);
4573 }
Chris Lattner26ca7e12004-02-16 03:54:20 +00004574 }
Chris Lattner318bf792007-03-18 22:51:34 +00004575 }
4576
4577 BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0);
4578 if (Op0I) {
4579 Value *A, *B;
4580 if (match(Op0I, m_Or(m_Value(A), m_Value(B))) && Op0I->hasOneUse()) {
4581 if (A == Op1) // (B|A)^B == (A|B)^B
4582 std::swap(A, B);
4583 if (B == Op1) { // (A|B)^B == A & ~B
4584 Instruction *NotB =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004585 InsertNewInstBefore(BinaryOperator::CreateNot(Op1, "tmp"), I);
4586 return BinaryOperator::CreateAnd(A, NotB);
Chris Lattnercb40a372003-03-10 18:24:17 +00004587 }
Chris Lattner318bf792007-03-18 22:51:34 +00004588 } else if (match(Op0I, m_Xor(m_Value(A), m_Value(B)))) {
4589 if (Op1 == A) // (A^B)^A == B
4590 return ReplaceInstUsesWith(I, B);
4591 else if (Op1 == B) // (B^A)^A == B
4592 return ReplaceInstUsesWith(I, A);
4593 } else if (match(Op0I, m_And(m_Value(A), m_Value(B))) && Op0I->hasOneUse()){
4594 if (A == Op1) // (A&B)^A -> (B&A)^A
4595 std::swap(A, B);
4596 if (B == Op1 && // (B&A)^A == ~B & A
Chris Lattnerae1ab392006-04-01 22:05:01 +00004597 !isa<ConstantInt>(Op1)) { // Canonical form is (B&C)^C
Chris Lattner318bf792007-03-18 22:51:34 +00004598 Instruction *N =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004599 InsertNewInstBefore(BinaryOperator::CreateNot(A, "tmp"), I);
4600 return BinaryOperator::CreateAnd(N, Op1);
Chris Lattner64daab52006-04-01 08:03:55 +00004601 }
Chris Lattnercb40a372003-03-10 18:24:17 +00004602 }
Chris Lattner318bf792007-03-18 22:51:34 +00004603 }
4604
4605 // (X >> Z) ^ (Y >> Z) -> (X^Y) >> Z for all shifts.
4606 if (Op0I && Op1I && Op0I->isShift() &&
4607 Op0I->getOpcode() == Op1I->getOpcode() &&
4608 Op0I->getOperand(1) == Op1I->getOperand(1) &&
4609 (Op1I->hasOneUse() || Op1I->hasOneUse())) {
4610 Instruction *NewOp =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004611 InsertNewInstBefore(BinaryOperator::CreateXor(Op0I->getOperand(0),
Chris Lattner318bf792007-03-18 22:51:34 +00004612 Op1I->getOperand(0),
4613 Op0I->getName()), I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004614 return BinaryOperator::Create(Op1I->getOpcode(), NewOp,
Chris Lattner318bf792007-03-18 22:51:34 +00004615 Op1I->getOperand(1));
4616 }
4617
4618 if (Op0I && Op1I) {
4619 Value *A, *B, *C, *D;
4620 // (A & B)^(A | B) -> A ^ B
4621 if (match(Op0I, m_And(m_Value(A), m_Value(B))) &&
4622 match(Op1I, m_Or(m_Value(C), m_Value(D)))) {
4623 if ((A == C && B == D) || (A == D && B == C))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004624 return BinaryOperator::CreateXor(A, B);
Chris Lattner318bf792007-03-18 22:51:34 +00004625 }
4626 // (A | B)^(A & B) -> A ^ B
4627 if (match(Op0I, m_Or(m_Value(A), m_Value(B))) &&
4628 match(Op1I, m_And(m_Value(C), m_Value(D)))) {
4629 if ((A == C && B == D) || (A == D && B == C))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004630 return BinaryOperator::CreateXor(A, B);
Chris Lattner318bf792007-03-18 22:51:34 +00004631 }
4632
4633 // (A & B)^(C & D)
4634 if ((Op0I->hasOneUse() || Op1I->hasOneUse()) &&
4635 match(Op0I, m_And(m_Value(A), m_Value(B))) &&
4636 match(Op1I, m_And(m_Value(C), m_Value(D)))) {
4637 // (X & Y)^(X & Y) -> (Y^Z) & X
4638 Value *X = 0, *Y = 0, *Z = 0;
4639 if (A == C)
4640 X = A, Y = B, Z = D;
4641 else if (A == D)
4642 X = A, Y = B, Z = C;
4643 else if (B == C)
4644 X = B, Y = A, Z = D;
4645 else if (B == D)
4646 X = B, Y = A, Z = C;
4647
4648 if (X) {
4649 Instruction *NewOp =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004650 InsertNewInstBefore(BinaryOperator::CreateXor(Y, Z, Op0->getName()), I);
4651 return BinaryOperator::CreateAnd(NewOp, X);
Chris Lattner318bf792007-03-18 22:51:34 +00004652 }
4653 }
4654 }
4655
Reid Spencere4d87aa2006-12-23 06:05:41 +00004656 // (icmp1 A, B) ^ (icmp2 A, B) --> (icmp3 A, B)
4657 if (ICmpInst *RHS = dyn_cast<ICmpInst>(I.getOperand(1)))
4658 if (Instruction *R = AssociativeOpt(I, FoldICmpLogical(*this, RHS)))
Chris Lattneraa9c1f12003-08-13 20:16:26 +00004659 return R;
4660
Chris Lattner6fc205f2006-05-05 06:39:07 +00004661 // fold (xor (cast A), (cast B)) -> (cast (xor A, B))
Chris Lattner99c65742007-10-24 05:38:08 +00004662 if (CastInst *Op0C = dyn_cast<CastInst>(Op0)) {
Chris Lattner6fc205f2006-05-05 06:39:07 +00004663 if (CastInst *Op1C = dyn_cast<CastInst>(Op1))
Reid Spencer5ae9ceb2006-12-13 08:27:15 +00004664 if (Op0C->getOpcode() == Op1C->getOpcode()) { // same cast kind?
4665 const Type *SrcTy = Op0C->getOperand(0)->getType();
Chris Lattner42a75512007-01-15 02:27:26 +00004666 if (SrcTy == Op1C->getOperand(0)->getType() && SrcTy->isInteger() &&
Reid Spencer5ae9ceb2006-12-13 08:27:15 +00004667 // Only do this if the casts both really cause code to be generated.
Reid Spencere4d87aa2006-12-23 06:05:41 +00004668 ValueRequiresCast(Op0C->getOpcode(), Op0C->getOperand(0),
4669 I.getType(), TD) &&
4670 ValueRequiresCast(Op1C->getOpcode(), Op1C->getOperand(0),
4671 I.getType(), TD)) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004672 Instruction *NewOp = BinaryOperator::CreateXor(Op0C->getOperand(0),
Reid Spencer5ae9ceb2006-12-13 08:27:15 +00004673 Op1C->getOperand(0),
4674 I.getName());
4675 InsertNewInstBefore(NewOp, I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004676 return CastInst::Create(Op0C->getOpcode(), NewOp, I.getType());
Reid Spencer5ae9ceb2006-12-13 08:27:15 +00004677 }
Chris Lattner6fc205f2006-05-05 06:39:07 +00004678 }
Chris Lattner99c65742007-10-24 05:38:08 +00004679 }
Nick Lewycky517e1f52008-05-31 19:01:33 +00004680
Chris Lattner7e708292002-06-25 16:13:24 +00004681 return Changed ? &I : 0;
Chris Lattner3f5b8772002-05-06 16:14:14 +00004682}
4683
Chris Lattnera96879a2004-09-29 17:40:11 +00004684/// AddWithOverflow - Compute Result = In1+In2, returning true if the result
4685/// overflowed for this type.
4686static bool AddWithOverflow(ConstantInt *&Result, ConstantInt *In1,
Reid Spencere4e40032007-03-21 23:19:50 +00004687 ConstantInt *In2, bool IsSigned = false) {
Zhou Sheng4a1822a2007-04-02 13:45:30 +00004688 Result = cast<ConstantInt>(Add(In1, In2));
Chris Lattnera96879a2004-09-29 17:40:11 +00004689
Reid Spencere4e40032007-03-21 23:19:50 +00004690 if (IsSigned)
4691 if (In2->getValue().isNegative())
4692 return Result->getValue().sgt(In1->getValue());
4693 else
4694 return Result->getValue().slt(In1->getValue());
4695 else
4696 return Result->getValue().ult(In1->getValue());
Chris Lattnera96879a2004-09-29 17:40:11 +00004697}
4698
Dan Gohman1df3fd62008-09-10 23:30:57 +00004699/// SubWithOverflow - Compute Result = In1-In2, returning true if the result
4700/// overflowed for this type.
4701static bool SubWithOverflow(ConstantInt *&Result, ConstantInt *In1,
4702 ConstantInt *In2, bool IsSigned = false) {
Dan Gohmanbcb37fd2008-09-11 18:53:02 +00004703 Result = cast<ConstantInt>(Subtract(In1, In2));
Dan Gohman1df3fd62008-09-10 23:30:57 +00004704
4705 if (IsSigned)
4706 if (In2->getValue().isNegative())
4707 return Result->getValue().slt(In1->getValue());
4708 else
4709 return Result->getValue().sgt(In1->getValue());
4710 else
4711 return Result->getValue().ugt(In1->getValue());
4712}
4713
Chris Lattner574da9b2005-01-13 20:14:25 +00004714/// EmitGEPOffset - Given a getelementptr instruction/constantexpr, emit the
4715/// code necessary to compute the offset from the base pointer (without adding
4716/// in the base pointer). Return the result as a signed integer of intptr size.
4717static Value *EmitGEPOffset(User *GEP, Instruction &I, InstCombiner &IC) {
4718 TargetData &TD = IC.getTargetData();
4719 gep_type_iterator GTI = gep_type_begin(GEP);
Reid Spencere4d87aa2006-12-23 06:05:41 +00004720 const Type *IntPtrTy = TD.getIntPtrType();
4721 Value *Result = Constant::getNullValue(IntPtrTy);
Chris Lattner574da9b2005-01-13 20:14:25 +00004722
4723 // Build a mask for high order bits.
Chris Lattner10c0d912008-04-22 02:53:33 +00004724 unsigned IntPtrWidth = TD.getPointerSizeInBits();
Chris Lattnere62f0212007-04-28 04:52:43 +00004725 uint64_t PtrSizeMask = ~0ULL >> (64-IntPtrWidth);
Chris Lattner574da9b2005-01-13 20:14:25 +00004726
Gabor Greif177dd3f2008-06-12 21:37:33 +00004727 for (User::op_iterator i = GEP->op_begin() + 1, e = GEP->op_end(); i != e;
4728 ++i, ++GTI) {
4729 Value *Op = *i;
Duncan Sands514ab342007-11-01 20:53:16 +00004730 uint64_t Size = TD.getABITypeSize(GTI.getIndexedType()) & PtrSizeMask;
Chris Lattnere62f0212007-04-28 04:52:43 +00004731 if (ConstantInt *OpC = dyn_cast<ConstantInt>(Op)) {
4732 if (OpC->isZero()) continue;
4733
4734 // Handle a struct index, which adds its field offset to the pointer.
4735 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
4736 Size = TD.getStructLayout(STy)->getElementOffset(OpC->getZExtValue());
4737
4738 if (ConstantInt *RC = dyn_cast<ConstantInt>(Result))
4739 Result = ConstantInt::get(RC->getValue() + APInt(IntPtrWidth, Size));
Chris Lattner9bc14642007-04-28 00:57:34 +00004740 else
Chris Lattnere62f0212007-04-28 04:52:43 +00004741 Result = IC.InsertNewInstBefore(
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004742 BinaryOperator::CreateAdd(Result,
Chris Lattnere62f0212007-04-28 04:52:43 +00004743 ConstantInt::get(IntPtrTy, Size),
4744 GEP->getName()+".offs"), I);
4745 continue;
Chris Lattner9bc14642007-04-28 00:57:34 +00004746 }
Chris Lattnere62f0212007-04-28 04:52:43 +00004747
4748 Constant *Scale = ConstantInt::get(IntPtrTy, Size);
4749 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
4750 Scale = ConstantExpr::getMul(OC, Scale);
4751 if (Constant *RC = dyn_cast<Constant>(Result))
4752 Result = ConstantExpr::getAdd(RC, Scale);
4753 else {
4754 // Emit an add instruction.
4755 Result = IC.InsertNewInstBefore(
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004756 BinaryOperator::CreateAdd(Result, Scale,
Chris Lattnere62f0212007-04-28 04:52:43 +00004757 GEP->getName()+".offs"), I);
Chris Lattner9bc14642007-04-28 00:57:34 +00004758 }
Chris Lattnere62f0212007-04-28 04:52:43 +00004759 continue;
Chris Lattner574da9b2005-01-13 20:14:25 +00004760 }
Chris Lattnere62f0212007-04-28 04:52:43 +00004761 // Convert to correct type.
4762 if (Op->getType() != IntPtrTy) {
4763 if (Constant *OpC = dyn_cast<Constant>(Op))
4764 Op = ConstantExpr::getSExt(OpC, IntPtrTy);
4765 else
4766 Op = IC.InsertNewInstBefore(new SExtInst(Op, IntPtrTy,
4767 Op->getName()+".c"), I);
4768 }
4769 if (Size != 1) {
4770 Constant *Scale = ConstantInt::get(IntPtrTy, Size);
4771 if (Constant *OpC = dyn_cast<Constant>(Op))
4772 Op = ConstantExpr::getMul(OpC, Scale);
4773 else // We'll let instcombine(mul) convert this to a shl if possible.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004774 Op = IC.InsertNewInstBefore(BinaryOperator::CreateMul(Op, Scale,
Chris Lattnere62f0212007-04-28 04:52:43 +00004775 GEP->getName()+".idx"), I);
4776 }
4777
4778 // Emit an add instruction.
4779 if (isa<Constant>(Op) && isa<Constant>(Result))
4780 Result = ConstantExpr::getAdd(cast<Constant>(Op),
4781 cast<Constant>(Result));
4782 else
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004783 Result = IC.InsertNewInstBefore(BinaryOperator::CreateAdd(Op, Result,
Chris Lattnere62f0212007-04-28 04:52:43 +00004784 GEP->getName()+".offs"), I);
Chris Lattner574da9b2005-01-13 20:14:25 +00004785 }
4786 return Result;
4787}
4788
Chris Lattner10c0d912008-04-22 02:53:33 +00004789
4790/// EvaluateGEPOffsetExpression - Return an value that can be used to compare of
4791/// the *offset* implied by GEP to zero. For example, if we have &A[i], we want
4792/// to return 'i' for "icmp ne i, 0". Note that, in general, indices can be
4793/// complex, and scales are involved. The above expression would also be legal
4794/// to codegen as "icmp ne (i*4), 0" (assuming A is a pointer to i32). This
4795/// later form is less amenable to optimization though, and we are allowed to
4796/// generate the first by knowing that pointer arithmetic doesn't overflow.
4797///
4798/// If we can't emit an optimized form for this expression, this returns null.
4799///
4800static Value *EvaluateGEPOffsetExpression(User *GEP, Instruction &I,
4801 InstCombiner &IC) {
Chris Lattner10c0d912008-04-22 02:53:33 +00004802 TargetData &TD = IC.getTargetData();
4803 gep_type_iterator GTI = gep_type_begin(GEP);
4804
4805 // Check to see if this gep only has a single variable index. If so, and if
4806 // any constant indices are a multiple of its scale, then we can compute this
4807 // in terms of the scale of the variable index. For example, if the GEP
4808 // implies an offset of "12 + i*4", then we can codegen this as "3 + i",
4809 // because the expression will cross zero at the same point.
4810 unsigned i, e = GEP->getNumOperands();
4811 int64_t Offset = 0;
4812 for (i = 1; i != e; ++i, ++GTI) {
4813 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i))) {
4814 // Compute the aggregate offset of constant indices.
4815 if (CI->isZero()) continue;
4816
4817 // Handle a struct index, which adds its field offset to the pointer.
4818 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
4819 Offset += TD.getStructLayout(STy)->getElementOffset(CI->getZExtValue());
4820 } else {
4821 uint64_t Size = TD.getABITypeSize(GTI.getIndexedType());
4822 Offset += Size*CI->getSExtValue();
4823 }
4824 } else {
4825 // Found our variable index.
4826 break;
4827 }
4828 }
4829
4830 // If there are no variable indices, we must have a constant offset, just
4831 // evaluate it the general way.
4832 if (i == e) return 0;
4833
4834 Value *VariableIdx = GEP->getOperand(i);
4835 // Determine the scale factor of the variable element. For example, this is
4836 // 4 if the variable index is into an array of i32.
4837 uint64_t VariableScale = TD.getABITypeSize(GTI.getIndexedType());
4838
4839 // Verify that there are no other variable indices. If so, emit the hard way.
4840 for (++i, ++GTI; i != e; ++i, ++GTI) {
4841 ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i));
4842 if (!CI) return 0;
4843
4844 // Compute the aggregate offset of constant indices.
4845 if (CI->isZero()) continue;
4846
4847 // Handle a struct index, which adds its field offset to the pointer.
4848 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
4849 Offset += TD.getStructLayout(STy)->getElementOffset(CI->getZExtValue());
4850 } else {
4851 uint64_t Size = TD.getABITypeSize(GTI.getIndexedType());
4852 Offset += Size*CI->getSExtValue();
4853 }
4854 }
4855
4856 // Okay, we know we have a single variable index, which must be a
4857 // pointer/array/vector index. If there is no offset, life is simple, return
4858 // the index.
4859 unsigned IntPtrWidth = TD.getPointerSizeInBits();
4860 if (Offset == 0) {
4861 // Cast to intptrty in case a truncation occurs. If an extension is needed,
4862 // we don't need to bother extending: the extension won't affect where the
4863 // computation crosses zero.
4864 if (VariableIdx->getType()->getPrimitiveSizeInBits() > IntPtrWidth)
4865 VariableIdx = new TruncInst(VariableIdx, TD.getIntPtrType(),
4866 VariableIdx->getNameStart(), &I);
4867 return VariableIdx;
4868 }
4869
4870 // Otherwise, there is an index. The computation we will do will be modulo
4871 // the pointer size, so get it.
4872 uint64_t PtrSizeMask = ~0ULL >> (64-IntPtrWidth);
4873
4874 Offset &= PtrSizeMask;
4875 VariableScale &= PtrSizeMask;
4876
4877 // To do this transformation, any constant index must be a multiple of the
4878 // variable scale factor. For example, we can evaluate "12 + 4*i" as "3 + i",
4879 // but we can't evaluate "10 + 3*i" in terms of i. Check that the offset is a
4880 // multiple of the variable scale.
4881 int64_t NewOffs = Offset / (int64_t)VariableScale;
4882 if (Offset != NewOffs*(int64_t)VariableScale)
4883 return 0;
4884
4885 // Okay, we can do this evaluation. Start by converting the index to intptr.
4886 const Type *IntPtrTy = TD.getIntPtrType();
4887 if (VariableIdx->getType() != IntPtrTy)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004888 VariableIdx = CastInst::CreateIntegerCast(VariableIdx, IntPtrTy,
Chris Lattner10c0d912008-04-22 02:53:33 +00004889 true /*SExt*/,
4890 VariableIdx->getNameStart(), &I);
4891 Constant *OffsetVal = ConstantInt::get(IntPtrTy, NewOffs);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00004892 return BinaryOperator::CreateAdd(VariableIdx, OffsetVal, "offset", &I);
Chris Lattner10c0d912008-04-22 02:53:33 +00004893}
4894
4895
Reid Spencere4d87aa2006-12-23 06:05:41 +00004896/// FoldGEPICmp - Fold comparisons between a GEP instruction and something
Chris Lattner574da9b2005-01-13 20:14:25 +00004897/// else. At this point we know that the GEP is on the LHS of the comparison.
Reid Spencere4d87aa2006-12-23 06:05:41 +00004898Instruction *InstCombiner::FoldGEPICmp(User *GEPLHS, Value *RHS,
4899 ICmpInst::Predicate Cond,
4900 Instruction &I) {
Chris Lattner574da9b2005-01-13 20:14:25 +00004901 assert(dyn_castGetElementPtr(GEPLHS) && "LHS is not a getelementptr!");
Chris Lattnere9d782b2005-01-13 22:25:21 +00004902
Chris Lattner10c0d912008-04-22 02:53:33 +00004903 // Look through bitcasts.
4904 if (BitCastInst *BCI = dyn_cast<BitCastInst>(RHS))
4905 RHS = BCI->getOperand(0);
Chris Lattnere9d782b2005-01-13 22:25:21 +00004906
Chris Lattner574da9b2005-01-13 20:14:25 +00004907 Value *PtrBase = GEPLHS->getOperand(0);
4908 if (PtrBase == RHS) {
Chris Lattner7c95deb2008-02-05 04:45:32 +00004909 // ((gep Ptr, OFFSET) cmp Ptr) ---> (OFFSET cmp 0).
Chris Lattner10c0d912008-04-22 02:53:33 +00004910 // This transformation (ignoring the base and scales) is valid because we
4911 // know pointers can't overflow. See if we can output an optimized form.
4912 Value *Offset = EvaluateGEPOffsetExpression(GEPLHS, I, *this);
4913
4914 // If not, synthesize the offset the hard way.
4915 if (Offset == 0)
4916 Offset = EmitGEPOffset(GEPLHS, I, *this);
Chris Lattner7c95deb2008-02-05 04:45:32 +00004917 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), Offset,
4918 Constant::getNullValue(Offset->getType()));
Chris Lattner574da9b2005-01-13 20:14:25 +00004919 } else if (User *GEPRHS = dyn_castGetElementPtr(RHS)) {
Chris Lattnera70b66d2005-04-25 20:17:30 +00004920 // If the base pointers are different, but the indices are the same, just
4921 // compare the base pointer.
4922 if (PtrBase != GEPRHS->getOperand(0)) {
4923 bool IndicesTheSame = GEPLHS->getNumOperands()==GEPRHS->getNumOperands();
Jeff Cohen00b168892005-07-27 06:12:32 +00004924 IndicesTheSame &= GEPLHS->getOperand(0)->getType() ==
Chris Lattner93b94a62005-04-26 14:40:41 +00004925 GEPRHS->getOperand(0)->getType();
Chris Lattnera70b66d2005-04-25 20:17:30 +00004926 if (IndicesTheSame)
4927 for (unsigned i = 1, e = GEPLHS->getNumOperands(); i != e; ++i)
4928 if (GEPLHS->getOperand(i) != GEPRHS->getOperand(i)) {
4929 IndicesTheSame = false;
4930 break;
4931 }
4932
4933 // If all indices are the same, just compare the base pointers.
4934 if (IndicesTheSame)
Reid Spencere4d87aa2006-12-23 06:05:41 +00004935 return new ICmpInst(ICmpInst::getSignedPredicate(Cond),
4936 GEPLHS->getOperand(0), GEPRHS->getOperand(0));
Chris Lattnera70b66d2005-04-25 20:17:30 +00004937
4938 // Otherwise, the base pointers are different and the indices are
4939 // different, bail out.
Chris Lattner574da9b2005-01-13 20:14:25 +00004940 return 0;
Chris Lattnera70b66d2005-04-25 20:17:30 +00004941 }
Chris Lattner574da9b2005-01-13 20:14:25 +00004942
Chris Lattnere9d782b2005-01-13 22:25:21 +00004943 // If one of the GEPs has all zero indices, recurse.
4944 bool AllZeros = true;
4945 for (unsigned i = 1, e = GEPLHS->getNumOperands(); i != e; ++i)
4946 if (!isa<Constant>(GEPLHS->getOperand(i)) ||
4947 !cast<Constant>(GEPLHS->getOperand(i))->isNullValue()) {
4948 AllZeros = false;
4949 break;
4950 }
4951 if (AllZeros)
Reid Spencere4d87aa2006-12-23 06:05:41 +00004952 return FoldGEPICmp(GEPRHS, GEPLHS->getOperand(0),
4953 ICmpInst::getSwappedPredicate(Cond), I);
Chris Lattner4401c9c2005-01-14 00:20:05 +00004954
4955 // If the other GEP has all zero indices, recurse.
Chris Lattnere9d782b2005-01-13 22:25:21 +00004956 AllZeros = true;
4957 for (unsigned i = 1, e = GEPRHS->getNumOperands(); i != e; ++i)
4958 if (!isa<Constant>(GEPRHS->getOperand(i)) ||
4959 !cast<Constant>(GEPRHS->getOperand(i))->isNullValue()) {
4960 AllZeros = false;
4961 break;
4962 }
4963 if (AllZeros)
Reid Spencere4d87aa2006-12-23 06:05:41 +00004964 return FoldGEPICmp(GEPLHS, GEPRHS->getOperand(0), Cond, I);
Chris Lattnere9d782b2005-01-13 22:25:21 +00004965
Chris Lattner4401c9c2005-01-14 00:20:05 +00004966 if (GEPLHS->getNumOperands() == GEPRHS->getNumOperands()) {
4967 // If the GEPs only differ by one index, compare it.
4968 unsigned NumDifferences = 0; // Keep track of # differences.
4969 unsigned DiffOperand = 0; // The operand that differs.
4970 for (unsigned i = 1, e = GEPRHS->getNumOperands(); i != e; ++i)
4971 if (GEPLHS->getOperand(i) != GEPRHS->getOperand(i)) {
Chris Lattner484d3cf2005-04-24 06:59:08 +00004972 if (GEPLHS->getOperand(i)->getType()->getPrimitiveSizeInBits() !=
4973 GEPRHS->getOperand(i)->getType()->getPrimitiveSizeInBits()) {
Chris Lattner45f57b82005-01-21 23:06:49 +00004974 // Irreconcilable differences.
Chris Lattner4401c9c2005-01-14 00:20:05 +00004975 NumDifferences = 2;
4976 break;
4977 } else {
4978 if (NumDifferences++) break;
4979 DiffOperand = i;
4980 }
4981 }
4982
4983 if (NumDifferences == 0) // SAME GEP?
4984 return ReplaceInstUsesWith(I, // No comparison is needed here.
Nick Lewycky455e1762007-09-06 02:40:25 +00004985 ConstantInt::get(Type::Int1Ty,
Nick Lewyckyfc1efbb2008-05-17 07:33:39 +00004986 ICmpInst::isTrueWhenEqual(Cond)));
Nick Lewycky455e1762007-09-06 02:40:25 +00004987
Chris Lattner4401c9c2005-01-14 00:20:05 +00004988 else if (NumDifferences == 1) {
Chris Lattner45f57b82005-01-21 23:06:49 +00004989 Value *LHSV = GEPLHS->getOperand(DiffOperand);
4990 Value *RHSV = GEPRHS->getOperand(DiffOperand);
Reid Spencere4d87aa2006-12-23 06:05:41 +00004991 // Make sure we do a signed comparison here.
4992 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), LHSV, RHSV);
Chris Lattner4401c9c2005-01-14 00:20:05 +00004993 }
4994 }
4995
Reid Spencere4d87aa2006-12-23 06:05:41 +00004996 // Only lower this if the icmp is the only user of the GEP or if we expect
Chris Lattner574da9b2005-01-13 20:14:25 +00004997 // the result to fold to a constant!
4998 if ((isa<ConstantExpr>(GEPLHS) || GEPLHS->hasOneUse()) &&
4999 (isa<ConstantExpr>(GEPRHS) || GEPRHS->hasOneUse())) {
5000 // ((gep Ptr, OFFSET1) cmp (gep Ptr, OFFSET2) ---> (OFFSET1 cmp OFFSET2)
5001 Value *L = EmitGEPOffset(GEPLHS, I, *this);
5002 Value *R = EmitGEPOffset(GEPRHS, I, *this);
Reid Spencere4d87aa2006-12-23 06:05:41 +00005003 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), L, R);
Chris Lattner574da9b2005-01-13 20:14:25 +00005004 }
5005 }
5006 return 0;
5007}
5008
Chris Lattnera5406232008-05-19 20:18:56 +00005009/// FoldFCmp_IntToFP_Cst - Fold fcmp ([us]itofp x, cst) if possible.
5010///
5011Instruction *InstCombiner::FoldFCmp_IntToFP_Cst(FCmpInst &I,
5012 Instruction *LHSI,
5013 Constant *RHSC) {
5014 if (!isa<ConstantFP>(RHSC)) return 0;
5015 const APFloat &RHS = cast<ConstantFP>(RHSC)->getValueAPF();
5016
5017 // Get the width of the mantissa. We don't want to hack on conversions that
5018 // might lose information from the integer, e.g. "i64 -> float"
Chris Lattner7be1c452008-05-19 21:17:23 +00005019 int MantissaWidth = LHSI->getType()->getFPMantissaWidth();
Chris Lattnera5406232008-05-19 20:18:56 +00005020 if (MantissaWidth == -1) return 0; // Unknown.
5021
5022 // Check to see that the input is converted from an integer type that is small
5023 // enough that preserves all bits. TODO: check here for "known" sign bits.
5024 // This would allow us to handle (fptosi (x >>s 62) to float) if x is i64 f.e.
5025 unsigned InputSize = LHSI->getOperand(0)->getType()->getPrimitiveSizeInBits();
5026
5027 // If this is a uitofp instruction, we need an extra bit to hold the sign.
5028 if (isa<UIToFPInst>(LHSI))
5029 ++InputSize;
5030
5031 // If the conversion would lose info, don't hack on this.
5032 if ((int)InputSize > MantissaWidth)
5033 return 0;
5034
5035 // Otherwise, we can potentially simplify the comparison. We know that it
5036 // will always come through as an integer value and we know the constant is
5037 // not a NAN (it would have been previously simplified).
5038 assert(!RHS.isNaN() && "NaN comparison not already folded!");
5039
5040 ICmpInst::Predicate Pred;
5041 switch (I.getPredicate()) {
5042 default: assert(0 && "Unexpected predicate!");
5043 case FCmpInst::FCMP_UEQ:
5044 case FCmpInst::FCMP_OEQ: Pred = ICmpInst::ICMP_EQ; break;
5045 case FCmpInst::FCMP_UGT:
5046 case FCmpInst::FCMP_OGT: Pred = ICmpInst::ICMP_SGT; break;
5047 case FCmpInst::FCMP_UGE:
5048 case FCmpInst::FCMP_OGE: Pred = ICmpInst::ICMP_SGE; break;
5049 case FCmpInst::FCMP_ULT:
5050 case FCmpInst::FCMP_OLT: Pred = ICmpInst::ICMP_SLT; break;
5051 case FCmpInst::FCMP_ULE:
5052 case FCmpInst::FCMP_OLE: Pred = ICmpInst::ICMP_SLE; break;
5053 case FCmpInst::FCMP_UNE:
5054 case FCmpInst::FCMP_ONE: Pred = ICmpInst::ICMP_NE; break;
5055 case FCmpInst::FCMP_ORD:
5056 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 1));
5057 case FCmpInst::FCMP_UNO:
5058 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 0));
5059 }
5060
5061 const IntegerType *IntTy = cast<IntegerType>(LHSI->getOperand(0)->getType());
5062
5063 // Now we know that the APFloat is a normal number, zero or inf.
5064
Chris Lattner85162782008-05-20 03:50:52 +00005065 // See if the FP constant is too large for the integer. For example,
Chris Lattnera5406232008-05-19 20:18:56 +00005066 // comparing an i8 to 300.0.
5067 unsigned IntWidth = IntTy->getPrimitiveSizeInBits();
5068
5069 // If the RHS value is > SignedMax, fold the comparison. This handles +INF
5070 // and large values.
5071 APFloat SMax(RHS.getSemantics(), APFloat::fcZero, false);
5072 SMax.convertFromAPInt(APInt::getSignedMaxValue(IntWidth), true,
5073 APFloat::rmNearestTiesToEven);
5074 if (SMax.compare(RHS) == APFloat::cmpLessThan) { // smax < 13123.0
Chris Lattner393f7eb2008-05-24 04:06:28 +00005075 if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_SLT ||
5076 Pred == ICmpInst::ICMP_SLE)
Chris Lattnera5406232008-05-19 20:18:56 +00005077 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 1));
5078 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 0));
5079 }
5080
5081 // See if the RHS value is < SignedMin.
5082 APFloat SMin(RHS.getSemantics(), APFloat::fcZero, false);
5083 SMin.convertFromAPInt(APInt::getSignedMinValue(IntWidth), true,
5084 APFloat::rmNearestTiesToEven);
5085 if (SMin.compare(RHS) == APFloat::cmpGreaterThan) { // smin > 12312.0
Chris Lattner393f7eb2008-05-24 04:06:28 +00005086 if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_SGT ||
5087 Pred == ICmpInst::ICMP_SGE)
Chris Lattnera5406232008-05-19 20:18:56 +00005088 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 1));
5089 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 0));
5090 }
5091
5092 // Okay, now we know that the FP constant fits in the range [SMIN, SMAX] but
5093 // it may still be fractional. See if it is fractional by casting the FP
5094 // value to the integer value and back, checking for equality. Don't do this
5095 // for zero, because -0.0 is not fractional.
5096 Constant *RHSInt = ConstantExpr::getFPToSI(RHSC, IntTy);
5097 if (!RHS.isZero() &&
5098 ConstantExpr::getSIToFP(RHSInt, RHSC->getType()) != RHSC) {
5099 // If we had a comparison against a fractional value, we have to adjust
5100 // the compare predicate and sometimes the value. RHSC is rounded towards
5101 // zero at this point.
5102 switch (Pred) {
5103 default: assert(0 && "Unexpected integer comparison!");
5104 case ICmpInst::ICMP_NE: // (float)int != 4.4 --> true
5105 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 1));
5106 case ICmpInst::ICMP_EQ: // (float)int == 4.4 --> false
5107 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 0));
5108 case ICmpInst::ICMP_SLE:
5109 // (float)int <= 4.4 --> int <= 4
5110 // (float)int <= -4.4 --> int < -4
5111 if (RHS.isNegative())
5112 Pred = ICmpInst::ICMP_SLT;
5113 break;
5114 case ICmpInst::ICMP_SLT:
5115 // (float)int < -4.4 --> int < -4
5116 // (float)int < 4.4 --> int <= 4
5117 if (!RHS.isNegative())
5118 Pred = ICmpInst::ICMP_SLE;
5119 break;
5120 case ICmpInst::ICMP_SGT:
5121 // (float)int > 4.4 --> int > 4
5122 // (float)int > -4.4 --> int >= -4
5123 if (RHS.isNegative())
5124 Pred = ICmpInst::ICMP_SGE;
5125 break;
5126 case ICmpInst::ICMP_SGE:
5127 // (float)int >= -4.4 --> int >= -4
5128 // (float)int >= 4.4 --> int > 4
5129 if (!RHS.isNegative())
5130 Pred = ICmpInst::ICMP_SGT;
5131 break;
5132 }
5133 }
5134
5135 // Lower this FP comparison into an appropriate integer version of the
5136 // comparison.
5137 return new ICmpInst(Pred, LHSI->getOperand(0), RHSInt);
5138}
5139
Reid Spencere4d87aa2006-12-23 06:05:41 +00005140Instruction *InstCombiner::visitFCmpInst(FCmpInst &I) {
5141 bool Changed = SimplifyCompare(I);
Chris Lattner8b170942002-08-09 23:47:40 +00005142 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattner3f5b8772002-05-06 16:14:14 +00005143
Chris Lattner58e97462007-01-14 19:42:17 +00005144 // Fold trivial predicates.
5145 if (I.getPredicate() == FCmpInst::FCMP_FALSE)
5146 return ReplaceInstUsesWith(I, Constant::getNullValue(Type::Int1Ty));
5147 if (I.getPredicate() == FCmpInst::FCMP_TRUE)
5148 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 1));
5149
5150 // Simplify 'fcmp pred X, X'
5151 if (Op0 == Op1) {
5152 switch (I.getPredicate()) {
5153 default: assert(0 && "Unknown predicate!");
5154 case FCmpInst::FCMP_UEQ: // True if unordered or equal
5155 case FCmpInst::FCMP_UGE: // True if unordered, greater than, or equal
5156 case FCmpInst::FCMP_ULE: // True if unordered, less than, or equal
5157 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 1));
5158 case FCmpInst::FCMP_OGT: // True if ordered and greater than
5159 case FCmpInst::FCMP_OLT: // True if ordered and less than
5160 case FCmpInst::FCMP_ONE: // True if ordered and operands are unequal
5161 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 0));
5162
5163 case FCmpInst::FCMP_UNO: // True if unordered: isnan(X) | isnan(Y)
5164 case FCmpInst::FCMP_ULT: // True if unordered or less than
5165 case FCmpInst::FCMP_UGT: // True if unordered or greater than
5166 case FCmpInst::FCMP_UNE: // True if unordered or not equal
5167 // Canonicalize these to be 'fcmp uno %X, 0.0'.
5168 I.setPredicate(FCmpInst::FCMP_UNO);
5169 I.setOperand(1, Constant::getNullValue(Op0->getType()));
5170 return &I;
5171
5172 case FCmpInst::FCMP_ORD: // True if ordered (no nans)
5173 case FCmpInst::FCMP_OEQ: // True if ordered and equal
5174 case FCmpInst::FCMP_OGE: // True if ordered and greater than or equal
5175 case FCmpInst::FCMP_OLE: // True if ordered and less than or equal
5176 // Canonicalize these to be 'fcmp ord %X, 0.0'.
5177 I.setPredicate(FCmpInst::FCMP_ORD);
5178 I.setOperand(1, Constant::getNullValue(Op0->getType()));
5179 return &I;
5180 }
5181 }
5182
Reid Spencere4d87aa2006-12-23 06:05:41 +00005183 if (isa<UndefValue>(Op1)) // fcmp pred X, undef -> undef
Reid Spencer4fe16d62007-01-11 18:21:29 +00005184 return ReplaceInstUsesWith(I, UndefValue::get(Type::Int1Ty));
Chris Lattnere87597f2004-10-16 18:11:37 +00005185
Reid Spencere4d87aa2006-12-23 06:05:41 +00005186 // Handle fcmp with constant RHS
5187 if (Constant *RHSC = dyn_cast<Constant>(Op1)) {
Chris Lattnera5406232008-05-19 20:18:56 +00005188 // If the constant is a nan, see if we can fold the comparison based on it.
5189 if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHSC)) {
5190 if (CFP->getValueAPF().isNaN()) {
5191 if (FCmpInst::isOrdered(I.getPredicate())) // True if ordered and...
5192 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 0));
Chris Lattner85162782008-05-20 03:50:52 +00005193 assert(FCmpInst::isUnordered(I.getPredicate()) &&
5194 "Comparison must be either ordered or unordered!");
5195 // True if unordered.
5196 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty, 1));
Chris Lattnera5406232008-05-19 20:18:56 +00005197 }
5198 }
5199
Reid Spencere4d87aa2006-12-23 06:05:41 +00005200 if (Instruction *LHSI = dyn_cast<Instruction>(Op0))
5201 switch (LHSI->getOpcode()) {
5202 case Instruction::PHI:
Chris Lattner7d8ab4e2008-06-08 20:52:11 +00005203 // Only fold fcmp into the PHI if the phi and fcmp are in the same
5204 // block. If in the same block, we're encouraging jump threading. If
5205 // not, we are just pessimizing the code by making an i1 phi.
5206 if (LHSI->getParent() == I.getParent())
5207 if (Instruction *NV = FoldOpIntoPhi(I))
5208 return NV;
Reid Spencere4d87aa2006-12-23 06:05:41 +00005209 break;
Chris Lattnera5406232008-05-19 20:18:56 +00005210 case Instruction::SIToFP:
5211 case Instruction::UIToFP:
5212 if (Instruction *NV = FoldFCmp_IntToFP_Cst(I, LHSI, RHSC))
5213 return NV;
5214 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00005215 case Instruction::Select:
5216 // If either operand of the select is a constant, we can fold the
5217 // comparison into the select arms, which will cause one to be
5218 // constant folded and the select turned into a bitwise or.
5219 Value *Op1 = 0, *Op2 = 0;
5220 if (LHSI->hasOneUse()) {
5221 if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(1))) {
5222 // Fold the known value into the constant operand.
5223 Op1 = ConstantExpr::getCompare(I.getPredicate(), C, RHSC);
5224 // Insert a new FCmp of the other select operand.
5225 Op2 = InsertNewInstBefore(new FCmpInst(I.getPredicate(),
5226 LHSI->getOperand(2), RHSC,
5227 I.getName()), I);
5228 } else if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(2))) {
5229 // Fold the known value into the constant operand.
5230 Op2 = ConstantExpr::getCompare(I.getPredicate(), C, RHSC);
5231 // Insert a new FCmp of the other select operand.
5232 Op1 = InsertNewInstBefore(new FCmpInst(I.getPredicate(),
5233 LHSI->getOperand(1), RHSC,
5234 I.getName()), I);
5235 }
5236 }
5237
5238 if (Op1)
Gabor Greif051a9502008-04-06 20:25:17 +00005239 return SelectInst::Create(LHSI->getOperand(0), Op1, Op2);
Reid Spencere4d87aa2006-12-23 06:05:41 +00005240 break;
5241 }
5242 }
5243
5244 return Changed ? &I : 0;
5245}
5246
5247Instruction *InstCombiner::visitICmpInst(ICmpInst &I) {
5248 bool Changed = SimplifyCompare(I);
5249 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
5250 const Type *Ty = Op0->getType();
5251
5252 // icmp X, X
5253 if (Op0 == Op1)
Reid Spencer579dca12007-01-12 04:24:46 +00005254 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty,
Nick Lewyckyfc1efbb2008-05-17 07:33:39 +00005255 I.isTrueWhenEqual()));
Reid Spencere4d87aa2006-12-23 06:05:41 +00005256
5257 if (isa<UndefValue>(Op1)) // X icmp undef -> undef
Reid Spencer4fe16d62007-01-11 18:21:29 +00005258 return ReplaceInstUsesWith(I, UndefValue::get(Type::Int1Ty));
Christopher Lamb7a0678c2007-12-18 21:32:20 +00005259
Reid Spencere4d87aa2006-12-23 06:05:41 +00005260 // icmp <global/alloca*/null>, <global/alloca*/null> - Global/Stack value
Chris Lattner711b3402004-11-14 07:33:16 +00005261 // addresses never equal each other! We already know that Op0 != Op1.
Misha Brukmanfd939082005-04-21 23:48:37 +00005262 if ((isa<GlobalValue>(Op0) || isa<AllocaInst>(Op0) ||
5263 isa<ConstantPointerNull>(Op0)) &&
5264 (isa<GlobalValue>(Op1) || isa<AllocaInst>(Op1) ||
Chris Lattner711b3402004-11-14 07:33:16 +00005265 isa<ConstantPointerNull>(Op1)))
Reid Spencer579dca12007-01-12 04:24:46 +00005266 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty,
Nick Lewyckyfc1efbb2008-05-17 07:33:39 +00005267 !I.isTrueWhenEqual()));
Chris Lattner8b170942002-08-09 23:47:40 +00005268
Reid Spencere4d87aa2006-12-23 06:05:41 +00005269 // icmp's with boolean values can always be turned into bitwise operations
Reid Spencer4fe16d62007-01-11 18:21:29 +00005270 if (Ty == Type::Int1Ty) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00005271 switch (I.getPredicate()) {
5272 default: assert(0 && "Invalid icmp instruction!");
Chris Lattner85b5eb02008-07-11 04:20:58 +00005273 case ICmpInst::ICMP_EQ: { // icmp eq i1 A, B -> ~(A^B)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00005274 Instruction *Xor = BinaryOperator::CreateXor(Op0, Op1, I.getName()+"tmp");
Chris Lattner8b170942002-08-09 23:47:40 +00005275 InsertNewInstBefore(Xor, I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00005276 return BinaryOperator::CreateNot(Xor);
Chris Lattner8b170942002-08-09 23:47:40 +00005277 }
Chris Lattner85b5eb02008-07-11 04:20:58 +00005278 case ICmpInst::ICMP_NE: // icmp eq i1 A, B -> A^B
Gabor Greif7cbd8a32008-05-16 19:29:10 +00005279 return BinaryOperator::CreateXor(Op0, Op1);
Chris Lattner8b170942002-08-09 23:47:40 +00005280
Reid Spencere4d87aa2006-12-23 06:05:41 +00005281 case ICmpInst::ICMP_UGT:
Chris Lattner85b5eb02008-07-11 04:20:58 +00005282 std::swap(Op0, Op1); // Change icmp ugt -> icmp ult
Chris Lattner5dbef222004-08-11 00:50:51 +00005283 // FALL THROUGH
Chris Lattner85b5eb02008-07-11 04:20:58 +00005284 case ICmpInst::ICMP_ULT:{ // icmp ult i1 A, B -> ~A & B
Gabor Greif7cbd8a32008-05-16 19:29:10 +00005285 Instruction *Not = BinaryOperator::CreateNot(Op0, I.getName()+"tmp");
Chris Lattner5dbef222004-08-11 00:50:51 +00005286 InsertNewInstBefore(Not, I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00005287 return BinaryOperator::CreateAnd(Not, Op1);
Chris Lattner5dbef222004-08-11 00:50:51 +00005288 }
Chris Lattner85b5eb02008-07-11 04:20:58 +00005289 case ICmpInst::ICMP_SGT:
5290 std::swap(Op0, Op1); // Change icmp sgt -> icmp slt
Chris Lattner5dbef222004-08-11 00:50:51 +00005291 // FALL THROUGH
Chris Lattner85b5eb02008-07-11 04:20:58 +00005292 case ICmpInst::ICMP_SLT: { // icmp slt i1 A, B -> A & ~B
5293 Instruction *Not = BinaryOperator::CreateNot(Op1, I.getName()+"tmp");
5294 InsertNewInstBefore(Not, I);
5295 return BinaryOperator::CreateAnd(Not, Op0);
5296 }
5297 case ICmpInst::ICMP_UGE:
5298 std::swap(Op0, Op1); // Change icmp uge -> icmp ule
5299 // FALL THROUGH
5300 case ICmpInst::ICMP_ULE: { // icmp ule i1 A, B -> ~A | B
Gabor Greif7cbd8a32008-05-16 19:29:10 +00005301 Instruction *Not = BinaryOperator::CreateNot(Op0, I.getName()+"tmp");
Chris Lattner5dbef222004-08-11 00:50:51 +00005302 InsertNewInstBefore(Not, I);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00005303 return BinaryOperator::CreateOr(Not, Op1);
Chris Lattner5dbef222004-08-11 00:50:51 +00005304 }
Chris Lattner85b5eb02008-07-11 04:20:58 +00005305 case ICmpInst::ICMP_SGE:
5306 std::swap(Op0, Op1); // Change icmp sge -> icmp sle
5307 // FALL THROUGH
5308 case ICmpInst::ICMP_SLE: { // icmp sle i1 A, B -> A | ~B
5309 Instruction *Not = BinaryOperator::CreateNot(Op1, I.getName()+"tmp");
5310 InsertNewInstBefore(Not, I);
5311 return BinaryOperator::CreateOr(Not, Op0);
5312 }
Chris Lattner5dbef222004-08-11 00:50:51 +00005313 }
Chris Lattner8b170942002-08-09 23:47:40 +00005314 }
5315
Dan Gohman81b28ce2008-09-16 18:46:06 +00005316 // See if we are doing a comparison with a constant.
Chris Lattner8b170942002-08-09 23:47:40 +00005317 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Chris Lattnerf2991842008-07-11 04:09:09 +00005318 Value *A, *B;
Christopher Lamb103e1a32007-12-20 07:21:11 +00005319
Chris Lattnerb6566012008-01-05 01:18:20 +00005320 // (icmp ne/eq (sub A B) 0) -> (icmp ne/eq A, B)
5321 if (I.isEquality() && CI->isNullValue() &&
5322 match(Op0, m_Sub(m_Value(A), m_Value(B)))) {
5323 // (icmp cond A B) if cond is equality
5324 return new ICmpInst(I.getPredicate(), A, B);
Owen Andersonf5783f82007-12-28 07:42:12 +00005325 }
Christopher Lamb103e1a32007-12-20 07:21:11 +00005326
Dan Gohman81b28ce2008-09-16 18:46:06 +00005327 // If we have an icmp le or icmp ge instruction, turn it into the
5328 // appropriate icmp lt or icmp gt instruction. This allows us to rely on
5329 // them being folded in the code below.
Chris Lattner84dff672008-07-11 05:08:55 +00005330 switch (I.getPredicate()) {
5331 default: break;
5332 case ICmpInst::ICMP_ULE:
5333 if (CI->isMaxValue(false)) // A <=u MAX -> TRUE
5334 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
5335 return new ICmpInst(ICmpInst::ICMP_ULT, Op0, AddOne(CI));
5336 case ICmpInst::ICMP_SLE:
5337 if (CI->isMaxValue(true)) // A <=s MAX -> TRUE
5338 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
5339 return new ICmpInst(ICmpInst::ICMP_SLT, Op0, AddOne(CI));
5340 case ICmpInst::ICMP_UGE:
5341 if (CI->isMinValue(false)) // A >=u MIN -> TRUE
5342 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
5343 return new ICmpInst( ICmpInst::ICMP_UGT, Op0, SubOne(CI));
5344 case ICmpInst::ICMP_SGE:
5345 if (CI->isMinValue(true)) // A >=s MIN -> TRUE
5346 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
5347 return new ICmpInst(ICmpInst::ICMP_SGT, Op0, SubOne(CI));
5348 }
5349
Chris Lattner183661e2008-07-11 05:40:05 +00005350 // See if we can fold the comparison based on range information we can get
5351 // by checking whether bits are known to be zero or one in the input.
5352 uint32_t BitWidth = cast<IntegerType>(Ty)->getBitWidth();
5353 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
5354
5355 // If this comparison is a normal comparison, it demands all
Chris Lattner4241e4d2007-07-15 20:54:51 +00005356 // bits, if it is a sign bit comparison, it only demands the sign bit.
Chris Lattner4241e4d2007-07-15 20:54:51 +00005357 bool UnusedBit;
5358 bool isSignBit = isSignBitCheck(I.getPredicate(), CI, UnusedBit);
5359
Chris Lattner4241e4d2007-07-15 20:54:51 +00005360 if (SimplifyDemandedBits(Op0,
5361 isSignBit ? APInt::getSignBit(BitWidth)
5362 : APInt::getAllOnesValue(BitWidth),
Chris Lattnerbf5d8a82006-02-12 02:07:56 +00005363 KnownZero, KnownOne, 0))
5364 return &I;
5365
5366 // Given the known and unknown bits, compute a range that the LHS could be
Chris Lattner84dff672008-07-11 05:08:55 +00005367 // in. Compute the Min, Max and RHS values based on the known bits. For the
5368 // EQ and NE we use unsigned values.
5369 APInt Min(BitWidth, 0), Max(BitWidth, 0);
Chris Lattner84dff672008-07-11 05:08:55 +00005370 if (ICmpInst::isSignedPredicate(I.getPredicate()))
5371 ComputeSignedMinMaxValuesFromKnownBits(Ty, KnownZero, KnownOne, Min, Max);
5372 else
5373 ComputeUnsignedMinMaxValuesFromKnownBits(Ty, KnownZero, KnownOne,Min,Max);
5374
Chris Lattner183661e2008-07-11 05:40:05 +00005375 // If Min and Max are known to be the same, then SimplifyDemandedBits
5376 // figured out that the LHS is a constant. Just constant fold this now so
5377 // that code below can assume that Min != Max.
5378 if (Min == Max)
5379 return ReplaceInstUsesWith(I, ConstantExpr::getICmp(I.getPredicate(),
5380 ConstantInt::get(Min),
5381 CI));
5382
5383 // Based on the range information we know about the LHS, see if we can
5384 // simplify this comparison. For example, (x&4) < 8 is always true.
5385 const APInt &RHSVal = CI->getValue();
Chris Lattner84dff672008-07-11 05:08:55 +00005386 switch (I.getPredicate()) { // LE/GE have been folded already.
5387 default: assert(0 && "Unknown icmp opcode!");
5388 case ICmpInst::ICMP_EQ:
5389 if (Max.ult(RHSVal) || Min.ugt(RHSVal))
5390 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
5391 break;
5392 case ICmpInst::ICMP_NE:
5393 if (Max.ult(RHSVal) || Min.ugt(RHSVal))
5394 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
5395 break;
5396 case ICmpInst::ICMP_ULT:
Chris Lattner183661e2008-07-11 05:40:05 +00005397 if (Max.ult(RHSVal)) // A <u C -> true iff max(A) < C
Chris Lattner84dff672008-07-11 05:08:55 +00005398 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Chris Lattner183661e2008-07-11 05:40:05 +00005399 if (Min.uge(RHSVal)) // A <u C -> false iff min(A) >= C
Chris Lattner84dff672008-07-11 05:08:55 +00005400 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Chris Lattner183661e2008-07-11 05:40:05 +00005401 if (RHSVal == Max) // A <u MAX -> A != MAX
5402 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
5403 if (RHSVal == Min+1) // A <u MIN+1 -> A == MIN
5404 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, SubOne(CI));
5405
5406 // (x <u 2147483648) -> (x >s -1) -> true if sign bit clear
5407 if (CI->isMinValue(true))
5408 return new ICmpInst(ICmpInst::ICMP_SGT, Op0,
5409 ConstantInt::getAllOnesValue(Op0->getType()));
Chris Lattner84dff672008-07-11 05:08:55 +00005410 break;
5411 case ICmpInst::ICMP_UGT:
Chris Lattner183661e2008-07-11 05:40:05 +00005412 if (Min.ugt(RHSVal)) // A >u C -> true iff min(A) > C
Chris Lattner84dff672008-07-11 05:08:55 +00005413 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Chris Lattner183661e2008-07-11 05:40:05 +00005414 if (Max.ule(RHSVal)) // A >u C -> false iff max(A) <= C
Chris Lattner84dff672008-07-11 05:08:55 +00005415 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Chris Lattner183661e2008-07-11 05:40:05 +00005416
5417 if (RHSVal == Min) // A >u MIN -> A != MIN
5418 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
5419 if (RHSVal == Max-1) // A >u MAX-1 -> A == MAX
5420 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, AddOne(CI));
5421
5422 // (x >u 2147483647) -> (x <s 0) -> true if sign bit set
5423 if (CI->isMaxValue(true))
5424 return new ICmpInst(ICmpInst::ICMP_SLT, Op0,
5425 ConstantInt::getNullValue(Op0->getType()));
Chris Lattner84dff672008-07-11 05:08:55 +00005426 break;
5427 case ICmpInst::ICMP_SLT:
Chris Lattner183661e2008-07-11 05:40:05 +00005428 if (Max.slt(RHSVal)) // A <s C -> true iff max(A) < C
Chris Lattner84dff672008-07-11 05:08:55 +00005429 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Chris Lattnerd01bee72008-07-11 06:40:29 +00005430 if (Min.sge(RHSVal)) // A <s C -> false iff min(A) >= C
Chris Lattner84dff672008-07-11 05:08:55 +00005431 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Chris Lattner183661e2008-07-11 05:40:05 +00005432 if (RHSVal == Max) // A <s MAX -> A != MAX
5433 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
Chris Lattnera8ff4a82008-07-11 06:36:01 +00005434 if (RHSVal == Min+1) // A <s MIN+1 -> A == MIN
Chris Lattnerf9685ac2008-07-11 06:38:16 +00005435 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, SubOne(CI));
Chris Lattner84dff672008-07-11 05:08:55 +00005436 break;
5437 case ICmpInst::ICMP_SGT:
Chris Lattner183661e2008-07-11 05:40:05 +00005438 if (Min.sgt(RHSVal)) // A >s C -> true iff min(A) > C
Chris Lattner84dff672008-07-11 05:08:55 +00005439 return ReplaceInstUsesWith(I, ConstantInt::getTrue());
Chris Lattner183661e2008-07-11 05:40:05 +00005440 if (Max.sle(RHSVal)) // A >s C -> false iff max(A) <= C
Chris Lattner84dff672008-07-11 05:08:55 +00005441 return ReplaceInstUsesWith(I, ConstantInt::getFalse());
Chris Lattner183661e2008-07-11 05:40:05 +00005442
5443 if (RHSVal == Min) // A >s MIN -> A != MIN
5444 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
5445 if (RHSVal == Max-1) // A >s MAX-1 -> A == MAX
5446 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, AddOne(CI));
Chris Lattner84dff672008-07-11 05:08:55 +00005447 break;
Chris Lattnerbf5d8a82006-02-12 02:07:56 +00005448 }
Dan Gohman81b28ce2008-09-16 18:46:06 +00005449 }
5450
5451 // Test if the ICmpInst instruction is used exclusively by a select as
5452 // part of a minimum or maximum operation. If so, refrain from doing
5453 // any other folding. This helps out other analyses which understand
5454 // non-obfuscated minimum and maximum idioms, such as ScalarEvolution
5455 // and CodeGen. And in this case, at least one of the comparison
5456 // operands has at least one user besides the compare (the select),
5457 // which would often largely negate the benefit of folding anyway.
5458 if (I.hasOneUse())
5459 if (SelectInst *SI = dyn_cast<SelectInst>(*I.use_begin()))
5460 if ((SI->getOperand(1) == Op0 && SI->getOperand(2) == Op1) ||
5461 (SI->getOperand(2) == Op0 && SI->getOperand(1) == Op1))
5462 return 0;
5463
5464 // See if we are doing a comparison between a constant and an instruction that
5465 // can be folded into the comparison.
5466 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00005467 // Since the RHS is a ConstantInt (CI), if the left hand side is an
Reid Spencer1628cec2006-10-26 06:15:43 +00005468 // instruction, see if that instruction also has constants so that the
Reid Spencere4d87aa2006-12-23 06:05:41 +00005469 // instruction can be folded into the icmp
Chris Lattner3c6a0d42004-05-25 06:32:08 +00005470 if (Instruction *LHSI = dyn_cast<Instruction>(Op0))
Chris Lattner01deb9d2007-04-03 17:43:25 +00005471 if (Instruction *Res = visitICmpInstWithInstAndIntCst(I, LHSI, CI))
5472 return Res;
Chris Lattner3f5b8772002-05-06 16:14:14 +00005473 }
5474
Chris Lattner01deb9d2007-04-03 17:43:25 +00005475 // Handle icmp with constant (but not simple integer constant) RHS
Chris Lattner6970b662005-04-23 15:31:55 +00005476 if (Constant *RHSC = dyn_cast<Constant>(Op1)) {
5477 if (Instruction *LHSI = dyn_cast<Instruction>(Op0))
5478 switch (LHSI->getOpcode()) {
Chris Lattner9fb25db2005-05-01 04:42:15 +00005479 case Instruction::GetElementPtr:
5480 if (RHSC->isNullValue()) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00005481 // icmp pred GEP (P, int 0, int 0, int 0), null -> icmp pred P, null
Chris Lattner9fb25db2005-05-01 04:42:15 +00005482 bool isAllZeros = true;
5483 for (unsigned i = 1, e = LHSI->getNumOperands(); i != e; ++i)
5484 if (!isa<Constant>(LHSI->getOperand(i)) ||
5485 !cast<Constant>(LHSI->getOperand(i))->isNullValue()) {
5486 isAllZeros = false;
5487 break;
5488 }
5489 if (isAllZeros)
Reid Spencere4d87aa2006-12-23 06:05:41 +00005490 return new ICmpInst(I.getPredicate(), LHSI->getOperand(0),
Chris Lattner9fb25db2005-05-01 04:42:15 +00005491 Constant::getNullValue(LHSI->getOperand(0)->getType()));
5492 }
5493 break;
5494
Chris Lattner6970b662005-04-23 15:31:55 +00005495 case Instruction::PHI:
Chris Lattner7d8ab4e2008-06-08 20:52:11 +00005496 // Only fold icmp into the PHI if the phi and fcmp are in the same
5497 // block. If in the same block, we're encouraging jump threading. If
5498 // not, we are just pessimizing the code by making an i1 phi.
5499 if (LHSI->getParent() == I.getParent())
5500 if (Instruction *NV = FoldOpIntoPhi(I))
5501 return NV;
Chris Lattner6970b662005-04-23 15:31:55 +00005502 break;
Chris Lattner4802d902007-04-06 18:57:34 +00005503 case Instruction::Select: {
Chris Lattner6970b662005-04-23 15:31:55 +00005504 // If either operand of the select is a constant, we can fold the
5505 // comparison into the select arms, which will cause one to be
5506 // constant folded and the select turned into a bitwise or.
5507 Value *Op1 = 0, *Op2 = 0;
5508 if (LHSI->hasOneUse()) {
5509 if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(1))) {
5510 // Fold the known value into the constant operand.
Reid Spencere4d87aa2006-12-23 06:05:41 +00005511 Op1 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
5512 // Insert a new ICmp of the other select operand.
5513 Op2 = InsertNewInstBefore(new ICmpInst(I.getPredicate(),
5514 LHSI->getOperand(2), RHSC,
5515 I.getName()), I);
Chris Lattner6970b662005-04-23 15:31:55 +00005516 } else if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(2))) {
5517 // Fold the known value into the constant operand.
Reid Spencere4d87aa2006-12-23 06:05:41 +00005518 Op2 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
5519 // Insert a new ICmp of the other select operand.
5520 Op1 = InsertNewInstBefore(new ICmpInst(I.getPredicate(),
5521 LHSI->getOperand(1), RHSC,
5522 I.getName()), I);
Chris Lattner6970b662005-04-23 15:31:55 +00005523 }
5524 }
Jeff Cohen9d809302005-04-23 21:38:35 +00005525
Chris Lattner6970b662005-04-23 15:31:55 +00005526 if (Op1)
Gabor Greif051a9502008-04-06 20:25:17 +00005527 return SelectInst::Create(LHSI->getOperand(0), Op1, Op2);
Chris Lattner6970b662005-04-23 15:31:55 +00005528 break;
5529 }
Chris Lattner4802d902007-04-06 18:57:34 +00005530 case Instruction::Malloc:
5531 // If we have (malloc != null), and if the malloc has a single use, we
5532 // can assume it is successful and remove the malloc.
5533 if (LHSI->hasOneUse() && isa<ConstantPointerNull>(RHSC)) {
5534 AddToWorkList(LHSI);
5535 return ReplaceInstUsesWith(I, ConstantInt::get(Type::Int1Ty,
Nick Lewyckyfc1efbb2008-05-17 07:33:39 +00005536 !I.isTrueWhenEqual()));
Chris Lattner4802d902007-04-06 18:57:34 +00005537 }
5538 break;
5539 }
Chris Lattner6970b662005-04-23 15:31:55 +00005540 }
5541
Reid Spencere4d87aa2006-12-23 06:05:41 +00005542 // If we can optimize a 'icmp GEP, P' or 'icmp P, GEP', do so now.
Chris Lattner574da9b2005-01-13 20:14:25 +00005543 if (User *GEP = dyn_castGetElementPtr(Op0))
Reid Spencere4d87aa2006-12-23 06:05:41 +00005544 if (Instruction *NI = FoldGEPICmp(GEP, Op1, I.getPredicate(), I))
Chris Lattner574da9b2005-01-13 20:14:25 +00005545 return NI;
5546 if (User *GEP = dyn_castGetElementPtr(Op1))
Reid Spencere4d87aa2006-12-23 06:05:41 +00005547 if (Instruction *NI = FoldGEPICmp(GEP, Op0,
5548 ICmpInst::getSwappedPredicate(I.getPredicate()), I))
Chris Lattner574da9b2005-01-13 20:14:25 +00005549 return NI;
5550
Reid Spencere4d87aa2006-12-23 06:05:41 +00005551 // Test to see if the operands of the icmp are casted versions of other
Chris Lattner57d86372007-01-06 01:45:59 +00005552 // values. If the ptr->ptr cast can be stripped off both arguments, we do so
5553 // now.
5554 if (BitCastInst *CI = dyn_cast<BitCastInst>(Op0)) {
5555 if (isa<PointerType>(Op0->getType()) &&
5556 (isa<Constant>(Op1) || isa<BitCastInst>(Op1))) {
Chris Lattnerde90b762003-11-03 04:25:02 +00005557 // We keep moving the cast from the left operand over to the right
5558 // operand, where it can often be eliminated completely.
Chris Lattner57d86372007-01-06 01:45:59 +00005559 Op0 = CI->getOperand(0);
Misha Brukmanfd939082005-04-21 23:48:37 +00005560
Chris Lattner57d86372007-01-06 01:45:59 +00005561 // If operand #1 is a bitcast instruction, it must also be a ptr->ptr cast
5562 // so eliminate it as well.
5563 if (BitCastInst *CI2 = dyn_cast<BitCastInst>(Op1))
5564 Op1 = CI2->getOperand(0);
Misha Brukmanfd939082005-04-21 23:48:37 +00005565
Chris Lattnerde90b762003-11-03 04:25:02 +00005566 // If Op1 is a constant, we can fold the cast into the constant.
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00005567 if (Op0->getType() != Op1->getType()) {
Chris Lattnerde90b762003-11-03 04:25:02 +00005568 if (Constant *Op1C = dyn_cast<Constant>(Op1)) {
Reid Spencerd977d862006-12-12 23:36:14 +00005569 Op1 = ConstantExpr::getBitCast(Op1C, Op0->getType());
Chris Lattnerde90b762003-11-03 04:25:02 +00005570 } else {
Reid Spencere4d87aa2006-12-23 06:05:41 +00005571 // Otherwise, cast the RHS right before the icmp
Chris Lattner6d0339d2008-01-13 22:23:22 +00005572 Op1 = InsertBitCastBefore(Op1, Op0->getType(), I);
Chris Lattnerde90b762003-11-03 04:25:02 +00005573 }
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00005574 }
Reid Spencere4d87aa2006-12-23 06:05:41 +00005575 return new ICmpInst(I.getPredicate(), Op0, Op1);
Chris Lattnerde90b762003-11-03 04:25:02 +00005576 }
Chris Lattner57d86372007-01-06 01:45:59 +00005577 }
5578
5579 if (isa<CastInst>(Op0)) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00005580 // Handle the special case of: icmp (cast bool to X), <cst>
Chris Lattner68708052003-11-03 05:17:03 +00005581 // This comes up when you have code like
5582 // int X = A < B;
5583 // if (X) ...
5584 // For generality, we handle any zero-extension of any operand comparison
Chris Lattner484d3cf2005-04-24 06:59:08 +00005585 // with a constant or another cast from the same type.
5586 if (isa<ConstantInt>(Op1) || isa<CastInst>(Op1))
Reid Spencere4d87aa2006-12-23 06:05:41 +00005587 if (Instruction *R = visitICmpInstWithCastAndCast(I))
Chris Lattner484d3cf2005-04-24 06:59:08 +00005588 return R;
Chris Lattner68708052003-11-03 05:17:03 +00005589 }
Chris Lattner26ab9a92006-02-27 01:44:11 +00005590
Nick Lewycky4bf1e592008-07-11 07:20:53 +00005591 // See if it's the same type of instruction on the left and right.
5592 if (BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0)) {
5593 if (BinaryOperator *Op1I = dyn_cast<BinaryOperator>(Op1)) {
Nick Lewycky5d52c452008-08-21 05:56:10 +00005594 if (Op0I->getOpcode() == Op1I->getOpcode() && Op0I->hasOneUse() &&
5595 Op1I->hasOneUse() && Op0I->getOperand(1) == Op1I->getOperand(1) &&
5596 I.isEquality()) {
Nick Lewycky23c04302008-09-03 06:24:21 +00005597 switch (Op0I->getOpcode()) {
Nick Lewycky4bf1e592008-07-11 07:20:53 +00005598 default: break;
5599 case Instruction::Add:
5600 case Instruction::Sub:
5601 case Instruction::Xor:
Nick Lewycky5d52c452008-08-21 05:56:10 +00005602 // a+x icmp eq/ne b+x --> a icmp b
5603 return new ICmpInst(I.getPredicate(), Op0I->getOperand(0),
5604 Op1I->getOperand(0));
Nick Lewycky4bf1e592008-07-11 07:20:53 +00005605 break;
5606 case Instruction::Mul:
Nick Lewycky5d52c452008-08-21 05:56:10 +00005607 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op0I->getOperand(1))) {
5608 // a * Cst icmp eq/ne b * Cst --> a & Mask icmp b & Mask
5609 // Mask = -1 >> count-trailing-zeros(Cst).
5610 if (!CI->isZero() && !CI->isOne()) {
5611 const APInt &AP = CI->getValue();
5612 ConstantInt *Mask = ConstantInt::get(
5613 APInt::getLowBitsSet(AP.getBitWidth(),
5614 AP.getBitWidth() -
Nick Lewycky4bf1e592008-07-11 07:20:53 +00005615 AP.countTrailingZeros()));
Nick Lewycky5d52c452008-08-21 05:56:10 +00005616 Instruction *And1 = BinaryOperator::CreateAnd(Op0I->getOperand(0),
5617 Mask);
5618 Instruction *And2 = BinaryOperator::CreateAnd(Op1I->getOperand(0),
5619 Mask);
5620 InsertNewInstBefore(And1, I);
5621 InsertNewInstBefore(And2, I);
5622 return new ICmpInst(I.getPredicate(), And1, And2);
Nick Lewycky4bf1e592008-07-11 07:20:53 +00005623 }
5624 }
5625 break;
5626 }
5627 }
5628 }
5629 }
5630
Chris Lattner7d2cbd22008-05-09 05:19:28 +00005631 // ~x < ~y --> y < x
5632 { Value *A, *B;
5633 if (match(Op0, m_Not(m_Value(A))) &&
5634 match(Op1, m_Not(m_Value(B))))
5635 return new ICmpInst(I.getPredicate(), B, A);
5636 }
5637
Chris Lattner65b72ba2006-09-18 04:22:48 +00005638 if (I.isEquality()) {
Chris Lattner4f0e33d2007-01-05 03:04:57 +00005639 Value *A, *B, *C, *D;
Chris Lattner7d2cbd22008-05-09 05:19:28 +00005640
5641 // -x == -y --> x == y
5642 if (match(Op0, m_Neg(m_Value(A))) &&
5643 match(Op1, m_Neg(m_Value(B))))
5644 return new ICmpInst(I.getPredicate(), A, B);
5645
Chris Lattner4f0e33d2007-01-05 03:04:57 +00005646 if (match(Op0, m_Xor(m_Value(A), m_Value(B)))) {
5647 if (A == Op1 || B == Op1) { // (A^B) == A -> B == 0
5648 Value *OtherVal = A == Op1 ? B : A;
5649 return new ICmpInst(I.getPredicate(), OtherVal,
5650 Constant::getNullValue(A->getType()));
5651 }
5652
5653 if (match(Op1, m_Xor(m_Value(C), m_Value(D)))) {
5654 // A^c1 == C^c2 --> A == C^(c1^c2)
5655 if (ConstantInt *C1 = dyn_cast<ConstantInt>(B))
5656 if (ConstantInt *C2 = dyn_cast<ConstantInt>(D))
5657 if (Op1->hasOneUse()) {
Zhou Sheng4a1822a2007-04-02 13:45:30 +00005658 Constant *NC = ConstantInt::get(C1->getValue() ^ C2->getValue());
Gabor Greif7cbd8a32008-05-16 19:29:10 +00005659 Instruction *Xor = BinaryOperator::CreateXor(C, NC, "tmp");
Chris Lattner4f0e33d2007-01-05 03:04:57 +00005660 return new ICmpInst(I.getPredicate(), A,
5661 InsertNewInstBefore(Xor, I));
5662 }
5663
5664 // A^B == A^D -> B == D
5665 if (A == C) return new ICmpInst(I.getPredicate(), B, D);
5666 if (A == D) return new ICmpInst(I.getPredicate(), B, C);
5667 if (B == C) return new ICmpInst(I.getPredicate(), A, D);
5668 if (B == D) return new ICmpInst(I.getPredicate(), A, C);
5669 }
5670 }
5671
5672 if (match(Op1, m_Xor(m_Value(A), m_Value(B))) &&
5673 (A == Op0 || B == Op0)) {
Chris Lattner26ab9a92006-02-27 01:44:11 +00005674 // A == (A^B) -> B == 0
5675 Value *OtherVal = A == Op0 ? B : A;
Reid Spencere4d87aa2006-12-23 06:05:41 +00005676 return new ICmpInst(I.getPredicate(), OtherVal,
5677 Constant::getNullValue(A->getType()));
Chris Lattner4f0e33d2007-01-05 03:04:57 +00005678 }
5679 if (match(Op0, m_Sub(m_Value(A), m_Value(B))) && A == Op1) {
Chris Lattner26ab9a92006-02-27 01:44:11 +00005680 // (A-B) == A -> B == 0
Reid Spencere4d87aa2006-12-23 06:05:41 +00005681 return new ICmpInst(I.getPredicate(), B,
5682 Constant::getNullValue(B->getType()));
Chris Lattner4f0e33d2007-01-05 03:04:57 +00005683 }
5684 if (match(Op1, m_Sub(m_Value(A), m_Value(B))) && A == Op0) {
Chris Lattner26ab9a92006-02-27 01:44:11 +00005685 // A == (A-B) -> B == 0
Reid Spencere4d87aa2006-12-23 06:05:41 +00005686 return new ICmpInst(I.getPredicate(), B,
5687 Constant::getNullValue(B->getType()));
Chris Lattner26ab9a92006-02-27 01:44:11 +00005688 }
Chris Lattner9c2328e2006-11-14 06:06:06 +00005689
Chris Lattner9c2328e2006-11-14 06:06:06 +00005690 // (X&Z) == (Y&Z) -> (X^Y) & Z == 0
5691 if (Op0->hasOneUse() && Op1->hasOneUse() &&
5692 match(Op0, m_And(m_Value(A), m_Value(B))) &&
5693 match(Op1, m_And(m_Value(C), m_Value(D)))) {
5694 Value *X = 0, *Y = 0, *Z = 0;
5695
5696 if (A == C) {
5697 X = B; Y = D; Z = A;
5698 } else if (A == D) {
5699 X = B; Y = C; Z = A;
5700 } else if (B == C) {
5701 X = A; Y = D; Z = B;
5702 } else if (B == D) {
5703 X = A; Y = C; Z = B;
5704 }
5705
5706 if (X) { // Build (X^Y) & Z
Gabor Greif7cbd8a32008-05-16 19:29:10 +00005707 Op1 = InsertNewInstBefore(BinaryOperator::CreateXor(X, Y, "tmp"), I);
5708 Op1 = InsertNewInstBefore(BinaryOperator::CreateAnd(Op1, Z, "tmp"), I);
Chris Lattner9c2328e2006-11-14 06:06:06 +00005709 I.setOperand(0, Op1);
5710 I.setOperand(1, Constant::getNullValue(Op1->getType()));
5711 return &I;
5712 }
5713 }
Chris Lattner26ab9a92006-02-27 01:44:11 +00005714 }
Chris Lattner7e708292002-06-25 16:13:24 +00005715 return Changed ? &I : 0;
Chris Lattner3f5b8772002-05-06 16:14:14 +00005716}
5717
Chris Lattner562ef782007-06-20 23:46:26 +00005718
5719/// FoldICmpDivCst - Fold "icmp pred, ([su]div X, DivRHS), CmpRHS" where DivRHS
5720/// and CmpRHS are both known to be integer constants.
5721Instruction *InstCombiner::FoldICmpDivCst(ICmpInst &ICI, BinaryOperator *DivI,
5722 ConstantInt *DivRHS) {
5723 ConstantInt *CmpRHS = cast<ConstantInt>(ICI.getOperand(1));
5724 const APInt &CmpRHSV = CmpRHS->getValue();
5725
5726 // FIXME: If the operand types don't match the type of the divide
5727 // then don't attempt this transform. The code below doesn't have the
5728 // logic to deal with a signed divide and an unsigned compare (and
5729 // vice versa). This is because (x /s C1) <s C2 produces different
5730 // results than (x /s C1) <u C2 or (x /u C1) <s C2 or even
5731 // (x /u C1) <u C2. Simply casting the operands and result won't
5732 // work. :( The if statement below tests that condition and bails
5733 // if it finds it.
5734 bool DivIsSigned = DivI->getOpcode() == Instruction::SDiv;
5735 if (!ICI.isEquality() && DivIsSigned != ICI.isSignedPredicate())
5736 return 0;
5737 if (DivRHS->isZero())
Chris Lattner1dbfd482007-06-21 18:11:19 +00005738 return 0; // The ProdOV computation fails on divide by zero.
Chris Lattner562ef782007-06-20 23:46:26 +00005739
5740 // Compute Prod = CI * DivRHS. We are essentially solving an equation
5741 // of form X/C1=C2. We solve for X by multiplying C1 (DivRHS) and
5742 // C2 (CI). By solving for X we can turn this into a range check
5743 // instead of computing a divide.
5744 ConstantInt *Prod = Multiply(CmpRHS, DivRHS);
5745
5746 // Determine if the product overflows by seeing if the product is
5747 // not equal to the divide. Make sure we do the same kind of divide
5748 // as in the LHS instruction that we're folding.
5749 bool ProdOV = (DivIsSigned ? ConstantExpr::getSDiv(Prod, DivRHS) :
5750 ConstantExpr::getUDiv(Prod, DivRHS)) != CmpRHS;
5751
5752 // Get the ICmp opcode
Chris Lattner1dbfd482007-06-21 18:11:19 +00005753 ICmpInst::Predicate Pred = ICI.getPredicate();
Chris Lattner562ef782007-06-20 23:46:26 +00005754
Chris Lattner1dbfd482007-06-21 18:11:19 +00005755 // Figure out the interval that is being checked. For example, a comparison
5756 // like "X /u 5 == 0" is really checking that X is in the interval [0, 5).
5757 // Compute this interval based on the constants involved and the signedness of
5758 // the compare/divide. This computes a half-open interval, keeping track of
5759 // whether either value in the interval overflows. After analysis each
5760 // overflow variable is set to 0 if it's corresponding bound variable is valid
5761 // -1 if overflowed off the bottom end, or +1 if overflowed off the top end.
5762 int LoOverflow = 0, HiOverflow = 0;
5763 ConstantInt *LoBound = 0, *HiBound = 0;
5764
5765
Chris Lattner562ef782007-06-20 23:46:26 +00005766 if (!DivIsSigned) { // udiv
Chris Lattner1dbfd482007-06-21 18:11:19 +00005767 // e.g. X/5 op 3 --> [15, 20)
Chris Lattner562ef782007-06-20 23:46:26 +00005768 LoBound = Prod;
Chris Lattner1dbfd482007-06-21 18:11:19 +00005769 HiOverflow = LoOverflow = ProdOV;
5770 if (!HiOverflow)
5771 HiOverflow = AddWithOverflow(HiBound, LoBound, DivRHS, false);
Dan Gohman76491272008-02-13 22:09:18 +00005772 } else if (DivRHS->getValue().isStrictlyPositive()) { // Divisor is > 0.
Chris Lattner562ef782007-06-20 23:46:26 +00005773 if (CmpRHSV == 0) { // (X / pos) op 0
Chris Lattner1dbfd482007-06-21 18:11:19 +00005774 // Can't overflow. e.g. X/2 op 0 --> [-1, 2)
Chris Lattner562ef782007-06-20 23:46:26 +00005775 LoBound = cast<ConstantInt>(ConstantExpr::getNeg(SubOne(DivRHS)));
5776 HiBound = DivRHS;
Dan Gohman76491272008-02-13 22:09:18 +00005777 } else if (CmpRHSV.isStrictlyPositive()) { // (X / pos) op pos
Chris Lattner1dbfd482007-06-21 18:11:19 +00005778 LoBound = Prod; // e.g. X/5 op 3 --> [15, 20)
5779 HiOverflow = LoOverflow = ProdOV;
5780 if (!HiOverflow)
5781 HiOverflow = AddWithOverflow(HiBound, Prod, DivRHS, true);
Chris Lattner562ef782007-06-20 23:46:26 +00005782 } else { // (X / pos) op neg
Chris Lattner1dbfd482007-06-21 18:11:19 +00005783 // e.g. X/5 op -3 --> [-15-4, -15+1) --> [-19, -14)
Chris Lattner562ef782007-06-20 23:46:26 +00005784 Constant *DivRHSH = ConstantExpr::getNeg(SubOne(DivRHS));
5785 LoOverflow = AddWithOverflow(LoBound, Prod,
Chris Lattner1dbfd482007-06-21 18:11:19 +00005786 cast<ConstantInt>(DivRHSH), true) ? -1 : 0;
Chris Lattner562ef782007-06-20 23:46:26 +00005787 HiBound = AddOne(Prod);
Chris Lattner1dbfd482007-06-21 18:11:19 +00005788 HiOverflow = ProdOV ? -1 : 0;
Chris Lattner562ef782007-06-20 23:46:26 +00005789 }
Dan Gohman76491272008-02-13 22:09:18 +00005790 } else if (DivRHS->getValue().isNegative()) { // Divisor is < 0.
Chris Lattner562ef782007-06-20 23:46:26 +00005791 if (CmpRHSV == 0) { // (X / neg) op 0
Chris Lattner1dbfd482007-06-21 18:11:19 +00005792 // e.g. X/-5 op 0 --> [-4, 5)
Chris Lattner562ef782007-06-20 23:46:26 +00005793 LoBound = AddOne(DivRHS);
5794 HiBound = cast<ConstantInt>(ConstantExpr::getNeg(DivRHS));
Chris Lattner1dbfd482007-06-21 18:11:19 +00005795 if (HiBound == DivRHS) { // -INTMIN = INTMIN
5796 HiOverflow = 1; // [INTMIN+1, overflow)
5797 HiBound = 0; // e.g. X/INTMIN = 0 --> X > INTMIN
5798 }
Dan Gohman76491272008-02-13 22:09:18 +00005799 } else if (CmpRHSV.isStrictlyPositive()) { // (X / neg) op pos
Chris Lattner1dbfd482007-06-21 18:11:19 +00005800 // e.g. X/-5 op 3 --> [-19, -14)
5801 HiOverflow = LoOverflow = ProdOV ? -1 : 0;
Chris Lattner562ef782007-06-20 23:46:26 +00005802 if (!LoOverflow)
Chris Lattner1dbfd482007-06-21 18:11:19 +00005803 LoOverflow = AddWithOverflow(LoBound, Prod, AddOne(DivRHS), true) ?-1:0;
Chris Lattner562ef782007-06-20 23:46:26 +00005804 HiBound = AddOne(Prod);
5805 } else { // (X / neg) op neg
Chris Lattner1dbfd482007-06-21 18:11:19 +00005806 // e.g. X/-5 op -3 --> [15, 20)
Chris Lattner562ef782007-06-20 23:46:26 +00005807 LoBound = Prod;
Chris Lattner1dbfd482007-06-21 18:11:19 +00005808 LoOverflow = HiOverflow = ProdOV ? 1 : 0;
Dan Gohman7f85fbd2008-09-11 00:25:00 +00005809 if (!HiOverflow)
5810 HiOverflow = SubWithOverflow(HiBound, Prod, DivRHS, true);
Chris Lattner562ef782007-06-20 23:46:26 +00005811 }
5812
Chris Lattner1dbfd482007-06-21 18:11:19 +00005813 // Dividing by a negative swaps the condition. LT <-> GT
5814 Pred = ICmpInst::getSwappedPredicate(Pred);
Chris Lattner562ef782007-06-20 23:46:26 +00005815 }
5816
5817 Value *X = DivI->getOperand(0);
Chris Lattner1dbfd482007-06-21 18:11:19 +00005818 switch (Pred) {
Chris Lattner562ef782007-06-20 23:46:26 +00005819 default: assert(0 && "Unhandled icmp opcode!");
5820 case ICmpInst::ICMP_EQ:
5821 if (LoOverflow && HiOverflow)
5822 return ReplaceInstUsesWith(ICI, ConstantInt::getFalse());
5823 else if (HiOverflow)
Chris Lattner1dbfd482007-06-21 18:11:19 +00005824 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SGE :
Chris Lattner562ef782007-06-20 23:46:26 +00005825 ICmpInst::ICMP_UGE, X, LoBound);
5826 else if (LoOverflow)
5827 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SLT :
5828 ICmpInst::ICMP_ULT, X, HiBound);
5829 else
Chris Lattner1dbfd482007-06-21 18:11:19 +00005830 return InsertRangeTest(X, LoBound, HiBound, DivIsSigned, true, ICI);
Chris Lattner562ef782007-06-20 23:46:26 +00005831 case ICmpInst::ICMP_NE:
5832 if (LoOverflow && HiOverflow)
5833 return ReplaceInstUsesWith(ICI, ConstantInt::getTrue());
5834 else if (HiOverflow)
Chris Lattner1dbfd482007-06-21 18:11:19 +00005835 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SLT :
Chris Lattner562ef782007-06-20 23:46:26 +00005836 ICmpInst::ICMP_ULT, X, LoBound);
5837 else if (LoOverflow)
5838 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SGE :
5839 ICmpInst::ICMP_UGE, X, HiBound);
5840 else
Chris Lattner1dbfd482007-06-21 18:11:19 +00005841 return InsertRangeTest(X, LoBound, HiBound, DivIsSigned, false, ICI);
Chris Lattner562ef782007-06-20 23:46:26 +00005842 case ICmpInst::ICMP_ULT:
5843 case ICmpInst::ICMP_SLT:
Chris Lattner1dbfd482007-06-21 18:11:19 +00005844 if (LoOverflow == +1) // Low bound is greater than input range.
5845 return ReplaceInstUsesWith(ICI, ConstantInt::getTrue());
5846 if (LoOverflow == -1) // Low bound is less than input range.
Chris Lattner562ef782007-06-20 23:46:26 +00005847 return ReplaceInstUsesWith(ICI, ConstantInt::getFalse());
Chris Lattner1dbfd482007-06-21 18:11:19 +00005848 return new ICmpInst(Pred, X, LoBound);
Chris Lattner562ef782007-06-20 23:46:26 +00005849 case ICmpInst::ICMP_UGT:
5850 case ICmpInst::ICMP_SGT:
Chris Lattner1dbfd482007-06-21 18:11:19 +00005851 if (HiOverflow == +1) // High bound greater than input range.
Chris Lattner562ef782007-06-20 23:46:26 +00005852 return ReplaceInstUsesWith(ICI, ConstantInt::getFalse());
Chris Lattner1dbfd482007-06-21 18:11:19 +00005853 else if (HiOverflow == -1) // High bound less than input range.
5854 return ReplaceInstUsesWith(ICI, ConstantInt::getTrue());
5855 if (Pred == ICmpInst::ICMP_UGT)
Chris Lattner562ef782007-06-20 23:46:26 +00005856 return new ICmpInst(ICmpInst::ICMP_UGE, X, HiBound);
5857 else
5858 return new ICmpInst(ICmpInst::ICMP_SGE, X, HiBound);
5859 }
5860}
5861
5862
Chris Lattner01deb9d2007-04-03 17:43:25 +00005863/// visitICmpInstWithInstAndIntCst - Handle "icmp (instr, intcst)".
5864///
5865Instruction *InstCombiner::visitICmpInstWithInstAndIntCst(ICmpInst &ICI,
5866 Instruction *LHSI,
5867 ConstantInt *RHS) {
5868 const APInt &RHSV = RHS->getValue();
5869
5870 switch (LHSI->getOpcode()) {
Duncan Sands0091bf22007-04-04 06:42:45 +00005871 case Instruction::Xor: // (icmp pred (xor X, XorCST), CI)
Chris Lattner01deb9d2007-04-03 17:43:25 +00005872 if (ConstantInt *XorCST = dyn_cast<ConstantInt>(LHSI->getOperand(1))) {
5873 // If this is a comparison that tests the signbit (X < 0) or (x > -1),
5874 // fold the xor.
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00005875 if ((ICI.getPredicate() == ICmpInst::ICMP_SLT && RHSV == 0) ||
5876 (ICI.getPredicate() == ICmpInst::ICMP_SGT && RHSV.isAllOnesValue())) {
Chris Lattner01deb9d2007-04-03 17:43:25 +00005877 Value *CompareVal = LHSI->getOperand(0);
5878
5879 // If the sign bit of the XorCST is not set, there is no change to
5880 // the operation, just stop using the Xor.
5881 if (!XorCST->getValue().isNegative()) {
5882 ICI.setOperand(0, CompareVal);
5883 AddToWorkList(LHSI);
5884 return &ICI;
5885 }
5886
5887 // Was the old condition true if the operand is positive?
5888 bool isTrueIfPositive = ICI.getPredicate() == ICmpInst::ICMP_SGT;
5889
5890 // If so, the new one isn't.
5891 isTrueIfPositive ^= true;
5892
5893 if (isTrueIfPositive)
5894 return new ICmpInst(ICmpInst::ICMP_SGT, CompareVal, SubOne(RHS));
5895 else
5896 return new ICmpInst(ICmpInst::ICMP_SLT, CompareVal, AddOne(RHS));
5897 }
5898 }
5899 break;
5900 case Instruction::And: // (icmp pred (and X, AndCST), RHS)
5901 if (LHSI->hasOneUse() && isa<ConstantInt>(LHSI->getOperand(1)) &&
5902 LHSI->getOperand(0)->hasOneUse()) {
5903 ConstantInt *AndCST = cast<ConstantInt>(LHSI->getOperand(1));
5904
5905 // If the LHS is an AND of a truncating cast, we can widen the
5906 // and/compare to be the input width without changing the value
5907 // produced, eliminating a cast.
5908 if (TruncInst *Cast = dyn_cast<TruncInst>(LHSI->getOperand(0))) {
5909 // We can do this transformation if either the AND constant does not
5910 // have its sign bit set or if it is an equality comparison.
5911 // Extending a relational comparison when we're checking the sign
5912 // bit would not work.
5913 if (Cast->hasOneUse() &&
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +00005914 (ICI.isEquality() ||
5915 (AndCST->getValue().isNonNegative() && RHSV.isNonNegative()))) {
Chris Lattner01deb9d2007-04-03 17:43:25 +00005916 uint32_t BitWidth =
5917 cast<IntegerType>(Cast->getOperand(0)->getType())->getBitWidth();
5918 APInt NewCST = AndCST->getValue();
5919 NewCST.zext(BitWidth);
5920 APInt NewCI = RHSV;
5921 NewCI.zext(BitWidth);
5922 Instruction *NewAnd =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00005923 BinaryOperator::CreateAnd(Cast->getOperand(0),
Chris Lattner01deb9d2007-04-03 17:43:25 +00005924 ConstantInt::get(NewCST),LHSI->getName());
5925 InsertNewInstBefore(NewAnd, ICI);
5926 return new ICmpInst(ICI.getPredicate(), NewAnd,
5927 ConstantInt::get(NewCI));
5928 }
5929 }
5930
5931 // If this is: (X >> C1) & C2 != C3 (where any shift and any compare
5932 // could exist), turn it into (X & (C2 << C1)) != (C3 << C1). This
5933 // happens a LOT in code produced by the C front-end, for bitfield
5934 // access.
5935 BinaryOperator *Shift = dyn_cast<BinaryOperator>(LHSI->getOperand(0));
5936 if (Shift && !Shift->isShift())
5937 Shift = 0;
5938
5939 ConstantInt *ShAmt;
5940 ShAmt = Shift ? dyn_cast<ConstantInt>(Shift->getOperand(1)) : 0;
5941 const Type *Ty = Shift ? Shift->getType() : 0; // Type of the shift.
5942 const Type *AndTy = AndCST->getType(); // Type of the and.
5943
5944 // We can fold this as long as we can't shift unknown bits
5945 // into the mask. This can only happen with signed shift
5946 // rights, as they sign-extend.
5947 if (ShAmt) {
5948 bool CanFold = Shift->isLogicalShift();
5949 if (!CanFold) {
5950 // To test for the bad case of the signed shr, see if any
5951 // of the bits shifted in could be tested after the mask.
5952 uint32_t TyBits = Ty->getPrimitiveSizeInBits();
5953 int ShAmtVal = TyBits - ShAmt->getLimitedValue(TyBits);
5954
5955 uint32_t BitWidth = AndTy->getPrimitiveSizeInBits();
5956 if ((APInt::getHighBitsSet(BitWidth, BitWidth-ShAmtVal) &
5957 AndCST->getValue()) == 0)
5958 CanFold = true;
5959 }
5960
5961 if (CanFold) {
5962 Constant *NewCst;
5963 if (Shift->getOpcode() == Instruction::Shl)
5964 NewCst = ConstantExpr::getLShr(RHS, ShAmt);
5965 else
5966 NewCst = ConstantExpr::getShl(RHS, ShAmt);
5967
5968 // Check to see if we are shifting out any of the bits being
5969 // compared.
5970 if (ConstantExpr::get(Shift->getOpcode(), NewCst, ShAmt) != RHS) {
5971 // If we shifted bits out, the fold is not going to work out.
5972 // As a special case, check to see if this means that the
5973 // result is always true or false now.
5974 if (ICI.getPredicate() == ICmpInst::ICMP_EQ)
5975 return ReplaceInstUsesWith(ICI, ConstantInt::getFalse());
5976 if (ICI.getPredicate() == ICmpInst::ICMP_NE)
5977 return ReplaceInstUsesWith(ICI, ConstantInt::getTrue());
5978 } else {
5979 ICI.setOperand(1, NewCst);
5980 Constant *NewAndCST;
5981 if (Shift->getOpcode() == Instruction::Shl)
5982 NewAndCST = ConstantExpr::getLShr(AndCST, ShAmt);
5983 else
5984 NewAndCST = ConstantExpr::getShl(AndCST, ShAmt);
5985 LHSI->setOperand(1, NewAndCST);
5986 LHSI->setOperand(0, Shift->getOperand(0));
5987 AddToWorkList(Shift); // Shift is dead.
5988 AddUsesToWorkList(ICI);
5989 return &ICI;
5990 }
5991 }
5992 }
5993
5994 // Turn ((X >> Y) & C) == 0 into (X & (C << Y)) == 0. The later is
5995 // preferable because it allows the C<<Y expression to be hoisted out
5996 // of a loop if Y is invariant and X is not.
5997 if (Shift && Shift->hasOneUse() && RHSV == 0 &&
5998 ICI.isEquality() && !Shift->isArithmeticShift() &&
5999 isa<Instruction>(Shift->getOperand(0))) {
6000 // Compute C << Y.
6001 Value *NS;
6002 if (Shift->getOpcode() == Instruction::LShr) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006003 NS = BinaryOperator::CreateShl(AndCST,
Chris Lattner01deb9d2007-04-03 17:43:25 +00006004 Shift->getOperand(1), "tmp");
6005 } else {
6006 // Insert a logical shift.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006007 NS = BinaryOperator::CreateLShr(AndCST,
Chris Lattner01deb9d2007-04-03 17:43:25 +00006008 Shift->getOperand(1), "tmp");
6009 }
6010 InsertNewInstBefore(cast<Instruction>(NS), ICI);
6011
6012 // Compute X & (C << Y).
6013 Instruction *NewAnd =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006014 BinaryOperator::CreateAnd(Shift->getOperand(0), NS, LHSI->getName());
Chris Lattner01deb9d2007-04-03 17:43:25 +00006015 InsertNewInstBefore(NewAnd, ICI);
6016
6017 ICI.setOperand(0, NewAnd);
6018 return &ICI;
6019 }
6020 }
6021 break;
6022
Chris Lattnera0141b92007-07-15 20:42:37 +00006023 case Instruction::Shl: { // (icmp pred (shl X, ShAmt), CI)
6024 ConstantInt *ShAmt = dyn_cast<ConstantInt>(LHSI->getOperand(1));
6025 if (!ShAmt) break;
6026
6027 uint32_t TypeBits = RHSV.getBitWidth();
6028
6029 // Check that the shift amount is in range. If not, don't perform
6030 // undefined shifts. When the shift is visited it will be
6031 // simplified.
6032 if (ShAmt->uge(TypeBits))
6033 break;
6034
6035 if (ICI.isEquality()) {
6036 // If we are comparing against bits always shifted out, the
6037 // comparison cannot succeed.
6038 Constant *Comp =
6039 ConstantExpr::getShl(ConstantExpr::getLShr(RHS, ShAmt), ShAmt);
6040 if (Comp != RHS) {// Comparing against a bit that we know is zero.
6041 bool IsICMP_NE = ICI.getPredicate() == ICmpInst::ICMP_NE;
6042 Constant *Cst = ConstantInt::get(Type::Int1Ty, IsICMP_NE);
6043 return ReplaceInstUsesWith(ICI, Cst);
6044 }
6045
6046 if (LHSI->hasOneUse()) {
6047 // Otherwise strength reduce the shift into an and.
6048 uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits);
6049 Constant *Mask =
6050 ConstantInt::get(APInt::getLowBitsSet(TypeBits, TypeBits-ShAmtVal));
Chris Lattner01deb9d2007-04-03 17:43:25 +00006051
Chris Lattnera0141b92007-07-15 20:42:37 +00006052 Instruction *AndI =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006053 BinaryOperator::CreateAnd(LHSI->getOperand(0),
Chris Lattnera0141b92007-07-15 20:42:37 +00006054 Mask, LHSI->getName()+".mask");
6055 Value *And = InsertNewInstBefore(AndI, ICI);
6056 return new ICmpInst(ICI.getPredicate(), And,
6057 ConstantInt::get(RHSV.lshr(ShAmtVal)));
Chris Lattner01deb9d2007-04-03 17:43:25 +00006058 }
6059 }
Chris Lattnera0141b92007-07-15 20:42:37 +00006060
6061 // Otherwise, if this is a comparison of the sign bit, simplify to and/test.
6062 bool TrueIfSigned = false;
6063 if (LHSI->hasOneUse() &&
6064 isSignBitCheck(ICI.getPredicate(), RHS, TrueIfSigned)) {
6065 // (X << 31) <s 0 --> (X&1) != 0
6066 Constant *Mask = ConstantInt::get(APInt(TypeBits, 1) <<
6067 (TypeBits-ShAmt->getZExtValue()-1));
6068 Instruction *AndI =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006069 BinaryOperator::CreateAnd(LHSI->getOperand(0),
Chris Lattnera0141b92007-07-15 20:42:37 +00006070 Mask, LHSI->getName()+".mask");
6071 Value *And = InsertNewInstBefore(AndI, ICI);
6072
6073 return new ICmpInst(TrueIfSigned ? ICmpInst::ICMP_NE : ICmpInst::ICMP_EQ,
6074 And, Constant::getNullValue(And->getType()));
6075 }
Chris Lattner01deb9d2007-04-03 17:43:25 +00006076 break;
Chris Lattnera0141b92007-07-15 20:42:37 +00006077 }
Chris Lattner01deb9d2007-04-03 17:43:25 +00006078
6079 case Instruction::LShr: // (icmp pred (shr X, ShAmt), CI)
Chris Lattnera0141b92007-07-15 20:42:37 +00006080 case Instruction::AShr: {
Chris Lattner41dc0fc2008-03-21 05:19:58 +00006081 // Only handle equality comparisons of shift-by-constant.
Chris Lattnera0141b92007-07-15 20:42:37 +00006082 ConstantInt *ShAmt = dyn_cast<ConstantInt>(LHSI->getOperand(1));
Chris Lattner41dc0fc2008-03-21 05:19:58 +00006083 if (!ShAmt || !ICI.isEquality()) break;
Chris Lattnera0141b92007-07-15 20:42:37 +00006084
Chris Lattner41dc0fc2008-03-21 05:19:58 +00006085 // Check that the shift amount is in range. If not, don't perform
6086 // undefined shifts. When the shift is visited it will be
6087 // simplified.
6088 uint32_t TypeBits = RHSV.getBitWidth();
6089 if (ShAmt->uge(TypeBits))
6090 break;
6091
6092 uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits);
Chris Lattnera0141b92007-07-15 20:42:37 +00006093
Chris Lattner41dc0fc2008-03-21 05:19:58 +00006094 // If we are comparing against bits always shifted out, the
6095 // comparison cannot succeed.
6096 APInt Comp = RHSV << ShAmtVal;
6097 if (LHSI->getOpcode() == Instruction::LShr)
6098 Comp = Comp.lshr(ShAmtVal);
6099 else
6100 Comp = Comp.ashr(ShAmtVal);
6101
6102 if (Comp != RHSV) { // Comparing against a bit that we know is zero.
6103 bool IsICMP_NE = ICI.getPredicate() == ICmpInst::ICMP_NE;
6104 Constant *Cst = ConstantInt::get(Type::Int1Ty, IsICMP_NE);
6105 return ReplaceInstUsesWith(ICI, Cst);
6106 }
6107
6108 // Otherwise, check to see if the bits shifted out are known to be zero.
6109 // If so, we can compare against the unshifted value:
6110 // (X & 4) >> 1 == 2 --> (X & 4) == 4.
Evan Chengf30752c2008-04-23 00:38:06 +00006111 if (LHSI->hasOneUse() &&
6112 MaskedValueIsZero(LHSI->getOperand(0),
Chris Lattner41dc0fc2008-03-21 05:19:58 +00006113 APInt::getLowBitsSet(Comp.getBitWidth(), ShAmtVal))) {
6114 return new ICmpInst(ICI.getPredicate(), LHSI->getOperand(0),
6115 ConstantExpr::getShl(RHS, ShAmt));
6116 }
Chris Lattnera0141b92007-07-15 20:42:37 +00006117
Evan Chengf30752c2008-04-23 00:38:06 +00006118 if (LHSI->hasOneUse()) {
Chris Lattner41dc0fc2008-03-21 05:19:58 +00006119 // Otherwise strength reduce the shift into an and.
6120 APInt Val(APInt::getHighBitsSet(TypeBits, TypeBits - ShAmtVal));
6121 Constant *Mask = ConstantInt::get(Val);
Chris Lattnera0141b92007-07-15 20:42:37 +00006122
Chris Lattner41dc0fc2008-03-21 05:19:58 +00006123 Instruction *AndI =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006124 BinaryOperator::CreateAnd(LHSI->getOperand(0),
Chris Lattner41dc0fc2008-03-21 05:19:58 +00006125 Mask, LHSI->getName()+".mask");
6126 Value *And = InsertNewInstBefore(AndI, ICI);
6127 return new ICmpInst(ICI.getPredicate(), And,
6128 ConstantExpr::getShl(RHS, ShAmt));
Chris Lattner01deb9d2007-04-03 17:43:25 +00006129 }
6130 break;
Chris Lattnera0141b92007-07-15 20:42:37 +00006131 }
Chris Lattner01deb9d2007-04-03 17:43:25 +00006132
6133 case Instruction::SDiv:
6134 case Instruction::UDiv:
6135 // Fold: icmp pred ([us]div X, C1), C2 -> range test
6136 // Fold this div into the comparison, producing a range check.
6137 // Determine, based on the divide type, what the range is being
6138 // checked. If there is an overflow on the low or high side, remember
6139 // it, otherwise compute the range [low, hi) bounding the new value.
6140 // See: InsertRangeTest above for the kinds of replacements possible.
Chris Lattner562ef782007-06-20 23:46:26 +00006141 if (ConstantInt *DivRHS = dyn_cast<ConstantInt>(LHSI->getOperand(1)))
6142 if (Instruction *R = FoldICmpDivCst(ICI, cast<BinaryOperator>(LHSI),
6143 DivRHS))
6144 return R;
Chris Lattner01deb9d2007-04-03 17:43:25 +00006145 break;
Nick Lewycky5be29202008-02-03 16:33:09 +00006146
6147 case Instruction::Add:
6148 // Fold: icmp pred (add, X, C1), C2
6149
6150 if (!ICI.isEquality()) {
6151 ConstantInt *LHSC = dyn_cast<ConstantInt>(LHSI->getOperand(1));
6152 if (!LHSC) break;
6153 const APInt &LHSV = LHSC->getValue();
6154
6155 ConstantRange CR = ICI.makeConstantRange(ICI.getPredicate(), RHSV)
6156 .subtract(LHSV);
6157
6158 if (ICI.isSignedPredicate()) {
6159 if (CR.getLower().isSignBit()) {
6160 return new ICmpInst(ICmpInst::ICMP_SLT, LHSI->getOperand(0),
6161 ConstantInt::get(CR.getUpper()));
6162 } else if (CR.getUpper().isSignBit()) {
6163 return new ICmpInst(ICmpInst::ICMP_SGE, LHSI->getOperand(0),
6164 ConstantInt::get(CR.getLower()));
6165 }
6166 } else {
6167 if (CR.getLower().isMinValue()) {
6168 return new ICmpInst(ICmpInst::ICMP_ULT, LHSI->getOperand(0),
6169 ConstantInt::get(CR.getUpper()));
6170 } else if (CR.getUpper().isMinValue()) {
6171 return new ICmpInst(ICmpInst::ICMP_UGE, LHSI->getOperand(0),
6172 ConstantInt::get(CR.getLower()));
6173 }
6174 }
6175 }
6176 break;
Chris Lattner01deb9d2007-04-03 17:43:25 +00006177 }
6178
6179 // Simplify icmp_eq and icmp_ne instructions with integer constant RHS.
6180 if (ICI.isEquality()) {
6181 bool isICMP_NE = ICI.getPredicate() == ICmpInst::ICMP_NE;
6182
6183 // If the first operand is (add|sub|and|or|xor|rem) with a constant, and
6184 // the second operand is a constant, simplify a bit.
6185 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(LHSI)) {
6186 switch (BO->getOpcode()) {
6187 case Instruction::SRem:
6188 // If we have a signed (X % (2^c)) == 0, turn it into an unsigned one.
6189 if (RHSV == 0 && isa<ConstantInt>(BO->getOperand(1)) &&BO->hasOneUse()){
6190 const APInt &V = cast<ConstantInt>(BO->getOperand(1))->getValue();
6191 if (V.sgt(APInt(V.getBitWidth(), 1)) && V.isPowerOf2()) {
6192 Instruction *NewRem =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006193 BinaryOperator::CreateURem(BO->getOperand(0), BO->getOperand(1),
Chris Lattner01deb9d2007-04-03 17:43:25 +00006194 BO->getName());
6195 InsertNewInstBefore(NewRem, ICI);
6196 return new ICmpInst(ICI.getPredicate(), NewRem,
6197 Constant::getNullValue(BO->getType()));
6198 }
6199 }
6200 break;
6201 case Instruction::Add:
6202 // Replace ((add A, B) != C) with (A != C-B) if B & C are constants.
6203 if (ConstantInt *BOp1C = dyn_cast<ConstantInt>(BO->getOperand(1))) {
6204 if (BO->hasOneUse())
6205 return new ICmpInst(ICI.getPredicate(), BO->getOperand(0),
6206 Subtract(RHS, BOp1C));
6207 } else if (RHSV == 0) {
6208 // Replace ((add A, B) != 0) with (A != -B) if A or B is
6209 // efficiently invertible, or if the add has just this one use.
6210 Value *BOp0 = BO->getOperand(0), *BOp1 = BO->getOperand(1);
6211
6212 if (Value *NegVal = dyn_castNegVal(BOp1))
6213 return new ICmpInst(ICI.getPredicate(), BOp0, NegVal);
6214 else if (Value *NegVal = dyn_castNegVal(BOp0))
6215 return new ICmpInst(ICI.getPredicate(), NegVal, BOp1);
6216 else if (BO->hasOneUse()) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006217 Instruction *Neg = BinaryOperator::CreateNeg(BOp1);
Chris Lattner01deb9d2007-04-03 17:43:25 +00006218 InsertNewInstBefore(Neg, ICI);
6219 Neg->takeName(BO);
6220 return new ICmpInst(ICI.getPredicate(), BOp0, Neg);
6221 }
6222 }
6223 break;
6224 case Instruction::Xor:
6225 // For the xor case, we can xor two constants together, eliminating
6226 // the explicit xor.
6227 if (Constant *BOC = dyn_cast<Constant>(BO->getOperand(1)))
6228 return new ICmpInst(ICI.getPredicate(), BO->getOperand(0),
6229 ConstantExpr::getXor(RHS, BOC));
6230
6231 // FALLTHROUGH
6232 case Instruction::Sub:
6233 // Replace (([sub|xor] A, B) != 0) with (A != B)
6234 if (RHSV == 0)
6235 return new ICmpInst(ICI.getPredicate(), BO->getOperand(0),
6236 BO->getOperand(1));
6237 break;
6238
6239 case Instruction::Or:
6240 // If bits are being or'd in that are not present in the constant we
6241 // are comparing against, then the comparison could never succeed!
6242 if (Constant *BOC = dyn_cast<Constant>(BO->getOperand(1))) {
6243 Constant *NotCI = ConstantExpr::getNot(RHS);
6244 if (!ConstantExpr::getAnd(BOC, NotCI)->isNullValue())
6245 return ReplaceInstUsesWith(ICI, ConstantInt::get(Type::Int1Ty,
6246 isICMP_NE));
6247 }
6248 break;
6249
6250 case Instruction::And:
6251 if (ConstantInt *BOC = dyn_cast<ConstantInt>(BO->getOperand(1))) {
6252 // If bits are being compared against that are and'd out, then the
6253 // comparison can never succeed!
6254 if ((RHSV & ~BOC->getValue()) != 0)
6255 return ReplaceInstUsesWith(ICI, ConstantInt::get(Type::Int1Ty,
6256 isICMP_NE));
6257
6258 // If we have ((X & C) == C), turn it into ((X & C) != 0).
6259 if (RHS == BOC && RHSV.isPowerOf2())
6260 return new ICmpInst(isICMP_NE ? ICmpInst::ICMP_EQ :
6261 ICmpInst::ICMP_NE, LHSI,
6262 Constant::getNullValue(RHS->getType()));
6263
6264 // Replace (and X, (1 << size(X)-1) != 0) with x s< 0
Chris Lattner833f25d2008-06-02 01:29:46 +00006265 if (BOC->getValue().isSignBit()) {
Chris Lattner01deb9d2007-04-03 17:43:25 +00006266 Value *X = BO->getOperand(0);
6267 Constant *Zero = Constant::getNullValue(X->getType());
6268 ICmpInst::Predicate pred = isICMP_NE ?
6269 ICmpInst::ICMP_SLT : ICmpInst::ICMP_SGE;
6270 return new ICmpInst(pred, X, Zero);
6271 }
6272
6273 // ((X & ~7) == 0) --> X < 8
6274 if (RHSV == 0 && isHighOnes(BOC)) {
6275 Value *X = BO->getOperand(0);
6276 Constant *NegX = ConstantExpr::getNeg(BOC);
6277 ICmpInst::Predicate pred = isICMP_NE ?
6278 ICmpInst::ICMP_UGE : ICmpInst::ICMP_ULT;
6279 return new ICmpInst(pred, X, NegX);
6280 }
6281 }
6282 default: break;
6283 }
6284 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(LHSI)) {
6285 // Handle icmp {eq|ne} <intrinsic>, intcst.
6286 if (II->getIntrinsicID() == Intrinsic::bswap) {
6287 AddToWorkList(II);
6288 ICI.setOperand(0, II->getOperand(1));
6289 ICI.setOperand(1, ConstantInt::get(RHSV.byteSwap()));
6290 return &ICI;
6291 }
6292 }
6293 } else { // Not a ICMP_EQ/ICMP_NE
Chris Lattnere34e9a22007-04-14 23:32:02 +00006294 // If the LHS is a cast from an integral value of the same size,
6295 // then since we know the RHS is a constant, try to simlify.
Chris Lattner01deb9d2007-04-03 17:43:25 +00006296 if (CastInst *Cast = dyn_cast<CastInst>(LHSI)) {
6297 Value *CastOp = Cast->getOperand(0);
6298 const Type *SrcTy = CastOp->getType();
6299 uint32_t SrcTySize = SrcTy->getPrimitiveSizeInBits();
6300 if (SrcTy->isInteger() &&
6301 SrcTySize == Cast->getType()->getPrimitiveSizeInBits()) {
6302 // If this is an unsigned comparison, try to make the comparison use
6303 // smaller constant values.
6304 if (ICI.getPredicate() == ICmpInst::ICMP_ULT && RHSV.isSignBit()) {
6305 // X u< 128 => X s> -1
6306 return new ICmpInst(ICmpInst::ICMP_SGT, CastOp,
6307 ConstantInt::get(APInt::getAllOnesValue(SrcTySize)));
6308 } else if (ICI.getPredicate() == ICmpInst::ICMP_UGT &&
6309 RHSV == APInt::getSignedMaxValue(SrcTySize)) {
6310 // X u> 127 => X s< 0
6311 return new ICmpInst(ICmpInst::ICMP_SLT, CastOp,
6312 Constant::getNullValue(SrcTy));
6313 }
6314 }
6315 }
6316 }
6317 return 0;
6318}
6319
6320/// visitICmpInstWithCastAndCast - Handle icmp (cast x to y), (cast/cst).
6321/// We only handle extending casts so far.
6322///
Reid Spencere4d87aa2006-12-23 06:05:41 +00006323Instruction *InstCombiner::visitICmpInstWithCastAndCast(ICmpInst &ICI) {
6324 const CastInst *LHSCI = cast<CastInst>(ICI.getOperand(0));
Reid Spencer3da59db2006-11-27 01:05:10 +00006325 Value *LHSCIOp = LHSCI->getOperand(0);
6326 const Type *SrcTy = LHSCIOp->getType();
Reid Spencere4d87aa2006-12-23 06:05:41 +00006327 const Type *DestTy = LHSCI->getType();
Chris Lattner484d3cf2005-04-24 06:59:08 +00006328 Value *RHSCIOp;
6329
Chris Lattner8c756c12007-05-05 22:41:33 +00006330 // Turn icmp (ptrtoint x), (ptrtoint/c) into a compare of the input if the
6331 // integer type is the same size as the pointer type.
6332 if (LHSCI->getOpcode() == Instruction::PtrToInt &&
6333 getTargetData().getPointerSizeInBits() ==
6334 cast<IntegerType>(DestTy)->getBitWidth()) {
6335 Value *RHSOp = 0;
6336 if (Constant *RHSC = dyn_cast<Constant>(ICI.getOperand(1))) {
Chris Lattner6f6f5122007-05-06 07:24:03 +00006337 RHSOp = ConstantExpr::getIntToPtr(RHSC, SrcTy);
Chris Lattner8c756c12007-05-05 22:41:33 +00006338 } else if (PtrToIntInst *RHSC = dyn_cast<PtrToIntInst>(ICI.getOperand(1))) {
6339 RHSOp = RHSC->getOperand(0);
6340 // If the pointer types don't match, insert a bitcast.
6341 if (LHSCIOp->getType() != RHSOp->getType())
Chris Lattner6d0339d2008-01-13 22:23:22 +00006342 RHSOp = InsertBitCastBefore(RHSOp, LHSCIOp->getType(), ICI);
Chris Lattner8c756c12007-05-05 22:41:33 +00006343 }
6344
6345 if (RHSOp)
6346 return new ICmpInst(ICI.getPredicate(), LHSCIOp, RHSOp);
6347 }
6348
6349 // The code below only handles extension cast instructions, so far.
6350 // Enforce this.
Reid Spencere4d87aa2006-12-23 06:05:41 +00006351 if (LHSCI->getOpcode() != Instruction::ZExt &&
6352 LHSCI->getOpcode() != Instruction::SExt)
Chris Lattnerb352fa52005-01-17 03:20:02 +00006353 return 0;
6354
Reid Spencere4d87aa2006-12-23 06:05:41 +00006355 bool isSignedExt = LHSCI->getOpcode() == Instruction::SExt;
6356 bool isSignedCmp = ICI.isSignedPredicate();
Chris Lattner484d3cf2005-04-24 06:59:08 +00006357
Reid Spencere4d87aa2006-12-23 06:05:41 +00006358 if (CastInst *CI = dyn_cast<CastInst>(ICI.getOperand(1))) {
Chris Lattner484d3cf2005-04-24 06:59:08 +00006359 // Not an extension from the same type?
6360 RHSCIOp = CI->getOperand(0);
Reid Spencere4d87aa2006-12-23 06:05:41 +00006361 if (RHSCIOp->getType() != LHSCIOp->getType())
6362 return 0;
Chris Lattnera5c5e772007-01-13 23:11:38 +00006363
Nick Lewycky4189a532008-01-28 03:48:02 +00006364 // If the signedness of the two casts doesn't agree (i.e. one is a sext
Chris Lattnera5c5e772007-01-13 23:11:38 +00006365 // and the other is a zext), then we can't handle this.
6366 if (CI->getOpcode() != LHSCI->getOpcode())
6367 return 0;
6368
Nick Lewycky4189a532008-01-28 03:48:02 +00006369 // Deal with equality cases early.
6370 if (ICI.isEquality())
6371 return new ICmpInst(ICI.getPredicate(), LHSCIOp, RHSCIOp);
6372
6373 // A signed comparison of sign extended values simplifies into a
6374 // signed comparison.
6375 if (isSignedCmp && isSignedExt)
6376 return new ICmpInst(ICI.getPredicate(), LHSCIOp, RHSCIOp);
6377
6378 // The other three cases all fold into an unsigned comparison.
6379 return new ICmpInst(ICI.getUnsignedPredicate(), LHSCIOp, RHSCIOp);
Reid Spencer6731d5c2004-11-28 21:31:15 +00006380 }
Chris Lattner3f5b8772002-05-06 16:14:14 +00006381
Reid Spencere4d87aa2006-12-23 06:05:41 +00006382 // If we aren't dealing with a constant on the RHS, exit early
6383 ConstantInt *CI = dyn_cast<ConstantInt>(ICI.getOperand(1));
6384 if (!CI)
6385 return 0;
6386
6387 // Compute the constant that would happen if we truncated to SrcTy then
6388 // reextended to DestTy.
6389 Constant *Res1 = ConstantExpr::getTrunc(CI, SrcTy);
6390 Constant *Res2 = ConstantExpr::getCast(LHSCI->getOpcode(), Res1, DestTy);
6391
6392 // If the re-extended constant didn't change...
6393 if (Res2 == CI) {
6394 // Make sure that sign of the Cmp and the sign of the Cast are the same.
6395 // For example, we might have:
6396 // %A = sext short %X to uint
6397 // %B = icmp ugt uint %A, 1330
6398 // It is incorrect to transform this into
6399 // %B = icmp ugt short %X, 1330
6400 // because %A may have negative value.
6401 //
Chris Lattnerf2991842008-07-11 04:09:09 +00006402 // However, we allow this when the compare is EQ/NE, because they are
6403 // signless.
6404 if (isSignedExt == isSignedCmp || ICI.isEquality())
Reid Spencere4d87aa2006-12-23 06:05:41 +00006405 return new ICmpInst(ICI.getPredicate(), LHSCIOp, Res1);
Chris Lattnerf2991842008-07-11 04:09:09 +00006406 return 0;
Reid Spencere4d87aa2006-12-23 06:05:41 +00006407 }
6408
6409 // The re-extended constant changed so the constant cannot be represented
6410 // in the shorter type. Consequently, we cannot emit a simple comparison.
6411
6412 // First, handle some easy cases. We know the result cannot be equal at this
6413 // point so handle the ICI.isEquality() cases
6414 if (ICI.getPredicate() == ICmpInst::ICMP_EQ)
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00006415 return ReplaceInstUsesWith(ICI, ConstantInt::getFalse());
Reid Spencere4d87aa2006-12-23 06:05:41 +00006416 if (ICI.getPredicate() == ICmpInst::ICMP_NE)
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00006417 return ReplaceInstUsesWith(ICI, ConstantInt::getTrue());
Reid Spencere4d87aa2006-12-23 06:05:41 +00006418
6419 // Evaluate the comparison for LT (we invert for GT below). LE and GE cases
6420 // should have been folded away previously and not enter in here.
6421 Value *Result;
6422 if (isSignedCmp) {
6423 // We're performing a signed comparison.
Reid Spencer0460fb32007-03-22 20:36:03 +00006424 if (cast<ConstantInt>(CI)->getValue().isNegative())
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00006425 Result = ConstantInt::getFalse(); // X < (small) --> false
Reid Spencere4d87aa2006-12-23 06:05:41 +00006426 else
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00006427 Result = ConstantInt::getTrue(); // X < (large) --> true
Reid Spencere4d87aa2006-12-23 06:05:41 +00006428 } else {
6429 // We're performing an unsigned comparison.
6430 if (isSignedExt) {
6431 // We're performing an unsigned comp with a sign extended value.
6432 // This is true if the input is >= 0. [aka >s -1]
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00006433 Constant *NegOne = ConstantInt::getAllOnesValue(SrcTy);
Reid Spencere4d87aa2006-12-23 06:05:41 +00006434 Result = InsertNewInstBefore(new ICmpInst(ICmpInst::ICMP_SGT, LHSCIOp,
6435 NegOne, ICI.getName()), ICI);
6436 } else {
6437 // Unsigned extend & unsigned compare -> always true.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00006438 Result = ConstantInt::getTrue();
Reid Spencere4d87aa2006-12-23 06:05:41 +00006439 }
6440 }
6441
6442 // Finally, return the value computed.
6443 if (ICI.getPredicate() == ICmpInst::ICMP_ULT ||
Chris Lattnerf2991842008-07-11 04:09:09 +00006444 ICI.getPredicate() == ICmpInst::ICMP_SLT)
Reid Spencere4d87aa2006-12-23 06:05:41 +00006445 return ReplaceInstUsesWith(ICI, Result);
Chris Lattnerf2991842008-07-11 04:09:09 +00006446
6447 assert((ICI.getPredicate()==ICmpInst::ICMP_UGT ||
6448 ICI.getPredicate()==ICmpInst::ICMP_SGT) &&
6449 "ICmp should be folded!");
6450 if (Constant *CI = dyn_cast<Constant>(Result))
6451 return ReplaceInstUsesWith(ICI, ConstantExpr::getNot(CI));
6452 return BinaryOperator::CreateNot(Result);
Chris Lattner484d3cf2005-04-24 06:59:08 +00006453}
Chris Lattner3f5b8772002-05-06 16:14:14 +00006454
Reid Spencer832254e2007-02-02 02:16:23 +00006455Instruction *InstCombiner::visitShl(BinaryOperator &I) {
6456 return commonShiftTransforms(I);
6457}
6458
6459Instruction *InstCombiner::visitLShr(BinaryOperator &I) {
6460 return commonShiftTransforms(I);
6461}
6462
6463Instruction *InstCombiner::visitAShr(BinaryOperator &I) {
Chris Lattner348f6652007-12-06 01:59:46 +00006464 if (Instruction *R = commonShiftTransforms(I))
6465 return R;
6466
6467 Value *Op0 = I.getOperand(0);
6468
6469 // ashr int -1, X = -1 (for any arithmetic shift rights of ~0)
6470 if (ConstantInt *CSI = dyn_cast<ConstantInt>(Op0))
6471 if (CSI->isAllOnesValue())
6472 return ReplaceInstUsesWith(I, CSI);
6473
6474 // See if we can turn a signed shr into an unsigned shr.
Nate Begeman5bc1ea02008-07-29 15:49:41 +00006475 if (!isa<VectorType>(I.getType()) &&
6476 MaskedValueIsZero(Op0,
Chris Lattner348f6652007-12-06 01:59:46 +00006477 APInt::getSignBit(I.getType()->getPrimitiveSizeInBits())))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006478 return BinaryOperator::CreateLShr(Op0, I.getOperand(1));
Chris Lattner348f6652007-12-06 01:59:46 +00006479
6480 return 0;
Reid Spencer832254e2007-02-02 02:16:23 +00006481}
6482
6483Instruction *InstCombiner::commonShiftTransforms(BinaryOperator &I) {
6484 assert(I.getOperand(1)->getType() == I.getOperand(0)->getType());
Chris Lattner7e708292002-06-25 16:13:24 +00006485 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattner3f5b8772002-05-06 16:14:14 +00006486
6487 // shl X, 0 == X and shr X, 0 == X
6488 // shl 0, X == 0 and shr 0, X == 0
Reid Spencer832254e2007-02-02 02:16:23 +00006489 if (Op1 == Constant::getNullValue(Op1->getType()) ||
Chris Lattner233f7dc2002-08-12 21:17:25 +00006490 Op0 == Constant::getNullValue(Op0->getType()))
6491 return ReplaceInstUsesWith(I, Op0);
Chris Lattner8d6bbdb2006-02-12 08:07:37 +00006492
Reid Spencere4d87aa2006-12-23 06:05:41 +00006493 if (isa<UndefValue>(Op0)) {
6494 if (I.getOpcode() == Instruction::AShr) // undef >>s X -> undef
Chris Lattner79a564c2004-10-16 23:28:04 +00006495 return ReplaceInstUsesWith(I, Op0);
Reid Spencere4d87aa2006-12-23 06:05:41 +00006496 else // undef << X -> 0, undef >>u X -> 0
Chris Lattnere87597f2004-10-16 18:11:37 +00006497 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
6498 }
6499 if (isa<UndefValue>(Op1)) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00006500 if (I.getOpcode() == Instruction::AShr) // X >>s undef -> X
6501 return ReplaceInstUsesWith(I, Op0);
6502 else // X << undef, X >>u undef -> 0
Chris Lattnere87597f2004-10-16 18:11:37 +00006503 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattnere87597f2004-10-16 18:11:37 +00006504 }
6505
Chris Lattner2eefe512004-04-09 19:05:30 +00006506 // Try to fold constant and into select arguments.
6507 if (isa<Constant>(Op0))
6508 if (SelectInst *SI = dyn_cast<SelectInst>(Op1))
Chris Lattner6e7ba452005-01-01 16:22:27 +00006509 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
Chris Lattner2eefe512004-04-09 19:05:30 +00006510 return R;
6511
Reid Spencerb83eb642006-10-20 07:07:24 +00006512 if (ConstantInt *CUI = dyn_cast<ConstantInt>(Op1))
Reid Spencerc5b206b2006-12-31 05:48:39 +00006513 if (Instruction *Res = FoldShiftByConstant(Op0, CUI, I))
6514 return Res;
Chris Lattner4d5542c2006-01-06 07:12:35 +00006515 return 0;
6516}
6517
Reid Spencerb83eb642006-10-20 07:07:24 +00006518Instruction *InstCombiner::FoldShiftByConstant(Value *Op0, ConstantInt *Op1,
Reid Spencer832254e2007-02-02 02:16:23 +00006519 BinaryOperator &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00006520 bool isLeftShift = I.getOpcode() == Instruction::Shl;
Chris Lattner4d5542c2006-01-06 07:12:35 +00006521
Chris Lattner8d6bbdb2006-02-12 08:07:37 +00006522 // See if we can simplify any instructions used by the instruction whose sole
6523 // purpose is to compute bits we don't care about.
Reid Spencerb35ae032007-03-23 18:46:34 +00006524 uint32_t TypeBits = Op0->getType()->getPrimitiveSizeInBits();
6525 APInt KnownZero(TypeBits, 0), KnownOne(TypeBits, 0);
6526 if (SimplifyDemandedBits(&I, APInt::getAllOnesValue(TypeBits),
Chris Lattner8d6bbdb2006-02-12 08:07:37 +00006527 KnownZero, KnownOne))
6528 return &I;
6529
Chris Lattner4d5542c2006-01-06 07:12:35 +00006530 // shl uint X, 32 = 0 and shr ubyte Y, 9 = 0, ... just don't eliminate shr
6531 // of a signed value.
6532 //
Zhou Sheng0e2d3ac2007-03-30 09:29:48 +00006533 if (Op1->uge(TypeBits)) {
Chris Lattner0737c242007-02-02 05:29:55 +00006534 if (I.getOpcode() != Instruction::AShr)
Chris Lattner4d5542c2006-01-06 07:12:35 +00006535 return ReplaceInstUsesWith(I, Constant::getNullValue(Op0->getType()));
6536 else {
Chris Lattner0737c242007-02-02 05:29:55 +00006537 I.setOperand(1, ConstantInt::get(I.getType(), TypeBits-1));
Chris Lattner4d5542c2006-01-06 07:12:35 +00006538 return &I;
Chris Lattner8adac752004-02-23 20:30:06 +00006539 }
Chris Lattner4d5542c2006-01-06 07:12:35 +00006540 }
6541
6542 // ((X*C1) << C2) == (X * (C1 << C2))
6543 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Op0))
6544 if (BO->getOpcode() == Instruction::Mul && isLeftShift)
6545 if (Constant *BOOp = dyn_cast<Constant>(BO->getOperand(1)))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006546 return BinaryOperator::CreateMul(BO->getOperand(0),
Chris Lattner4d5542c2006-01-06 07:12:35 +00006547 ConstantExpr::getShl(BOOp, Op1));
6548
6549 // Try to fold constant and into select arguments.
6550 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
6551 if (Instruction *R = FoldOpIntoSelect(I, SI, this))
6552 return R;
6553 if (isa<PHINode>(Op0))
6554 if (Instruction *NV = FoldOpIntoPhi(I))
6555 return NV;
6556
Chris Lattner8999dd32007-12-22 09:07:47 +00006557 // Fold shift2(trunc(shift1(x,c1)), c2) -> trunc(shift2(shift1(x,c1),c2))
6558 if (TruncInst *TI = dyn_cast<TruncInst>(Op0)) {
6559 Instruction *TrOp = dyn_cast<Instruction>(TI->getOperand(0));
6560 // If 'shift2' is an ashr, we would have to get the sign bit into a funny
6561 // place. Don't try to do this transformation in this case. Also, we
6562 // require that the input operand is a shift-by-constant so that we have
6563 // confidence that the shifts will get folded together. We could do this
6564 // xform in more cases, but it is unlikely to be profitable.
6565 if (TrOp && I.isLogicalShift() && TrOp->isShift() &&
6566 isa<ConstantInt>(TrOp->getOperand(1))) {
6567 // Okay, we'll do this xform. Make the shift of shift.
6568 Constant *ShAmt = ConstantExpr::getZExt(Op1, TrOp->getType());
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006569 Instruction *NSh = BinaryOperator::Create(I.getOpcode(), TrOp, ShAmt,
Chris Lattner8999dd32007-12-22 09:07:47 +00006570 I.getName());
6571 InsertNewInstBefore(NSh, I); // (shift2 (shift1 & 0x00FF), c2)
6572
6573 // For logical shifts, the truncation has the effect of making the high
6574 // part of the register be zeros. Emulate this by inserting an AND to
6575 // clear the top bits as needed. This 'and' will usually be zapped by
6576 // other xforms later if dead.
6577 unsigned SrcSize = TrOp->getType()->getPrimitiveSizeInBits();
6578 unsigned DstSize = TI->getType()->getPrimitiveSizeInBits();
6579 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize));
6580
6581 // The mask we constructed says what the trunc would do if occurring
6582 // between the shifts. We want to know the effect *after* the second
6583 // shift. We know that it is a logical shift by a constant, so adjust the
6584 // mask as appropriate.
6585 if (I.getOpcode() == Instruction::Shl)
6586 MaskV <<= Op1->getZExtValue();
6587 else {
6588 assert(I.getOpcode() == Instruction::LShr && "Unknown logical shift");
6589 MaskV = MaskV.lshr(Op1->getZExtValue());
6590 }
6591
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006592 Instruction *And = BinaryOperator::CreateAnd(NSh, ConstantInt::get(MaskV),
Chris Lattner8999dd32007-12-22 09:07:47 +00006593 TI->getName());
6594 InsertNewInstBefore(And, I); // shift1 & 0x00FF
6595
6596 // Return the value truncated to the interesting size.
6597 return new TruncInst(And, I.getType());
6598 }
6599 }
6600
Chris Lattner4d5542c2006-01-06 07:12:35 +00006601 if (Op0->hasOneUse()) {
Chris Lattner4d5542c2006-01-06 07:12:35 +00006602 if (BinaryOperator *Op0BO = dyn_cast<BinaryOperator>(Op0)) {
6603 // Turn ((X >> C) + Y) << C -> (X + (Y << C)) & (~0 << C)
6604 Value *V1, *V2;
6605 ConstantInt *CC;
6606 switch (Op0BO->getOpcode()) {
Chris Lattner11021cb2005-09-18 05:12:10 +00006607 default: break;
6608 case Instruction::Add:
6609 case Instruction::And:
6610 case Instruction::Or:
Reid Spencera07cb7d2007-02-02 14:41:37 +00006611 case Instruction::Xor: {
Chris Lattner11021cb2005-09-18 05:12:10 +00006612 // These operators commute.
6613 // Turn (Y + (X >> C)) << C -> (X + (Y << C)) & (~0 << C)
Chris Lattner150f12a2005-09-18 06:30:59 +00006614 if (isLeftShift && Op0BO->getOperand(1)->hasOneUse() &&
6615 match(Op0BO->getOperand(1),
Chris Lattner4d5542c2006-01-06 07:12:35 +00006616 m_Shr(m_Value(V1), m_ConstantInt(CC))) && CC == Op1) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006617 Instruction *YS = BinaryOperator::CreateShl(
Chris Lattner4d5542c2006-01-06 07:12:35 +00006618 Op0BO->getOperand(0), Op1,
Chris Lattner150f12a2005-09-18 06:30:59 +00006619 Op0BO->getName());
6620 InsertNewInstBefore(YS, I); // (Y << C)
Chris Lattner9a4cacb2006-02-09 07:41:14 +00006621 Instruction *X =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006622 BinaryOperator::Create(Op0BO->getOpcode(), YS, V1,
Chris Lattner9a4cacb2006-02-09 07:41:14 +00006623 Op0BO->getOperand(1)->getName());
Chris Lattner150f12a2005-09-18 06:30:59 +00006624 InsertNewInstBefore(X, I); // (X + (Y << C))
Zhou Sheng302748d2007-03-30 17:20:39 +00006625 uint32_t Op1Val = Op1->getLimitedValue(TypeBits);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006626 return BinaryOperator::CreateAnd(X, ConstantInt::get(
Zhou Sheng90b96812007-03-30 05:45:18 +00006627 APInt::getHighBitsSet(TypeBits, TypeBits-Op1Val)));
Chris Lattner150f12a2005-09-18 06:30:59 +00006628 }
Chris Lattner4d5542c2006-01-06 07:12:35 +00006629
Chris Lattner150f12a2005-09-18 06:30:59 +00006630 // Turn (Y + ((X >> C) & CC)) << C -> ((X & (CC << C)) + (Y << C))
Reid Spencera07cb7d2007-02-02 14:41:37 +00006631 Value *Op0BOOp1 = Op0BO->getOperand(1);
Chris Lattner3c698492007-03-05 00:11:19 +00006632 if (isLeftShift && Op0BOOp1->hasOneUse() &&
Reid Spencera07cb7d2007-02-02 14:41:37 +00006633 match(Op0BOOp1,
6634 m_And(m_Shr(m_Value(V1), m_Value(V2)),m_ConstantInt(CC))) &&
Chris Lattner3c698492007-03-05 00:11:19 +00006635 cast<BinaryOperator>(Op0BOOp1)->getOperand(0)->hasOneUse() &&
6636 V2 == Op1) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006637 Instruction *YS = BinaryOperator::CreateShl(
Reid Spencer832254e2007-02-02 02:16:23 +00006638 Op0BO->getOperand(0), Op1,
6639 Op0BO->getName());
Chris Lattner150f12a2005-09-18 06:30:59 +00006640 InsertNewInstBefore(YS, I); // (Y << C)
6641 Instruction *XM =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006642 BinaryOperator::CreateAnd(V1, ConstantExpr::getShl(CC, Op1),
Chris Lattner150f12a2005-09-18 06:30:59 +00006643 V1->getName()+".mask");
6644 InsertNewInstBefore(XM, I); // X & (CC << C)
6645
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006646 return BinaryOperator::Create(Op0BO->getOpcode(), YS, XM);
Chris Lattner150f12a2005-09-18 06:30:59 +00006647 }
Reid Spencera07cb7d2007-02-02 14:41:37 +00006648 }
Chris Lattner4d5542c2006-01-06 07:12:35 +00006649
Reid Spencera07cb7d2007-02-02 14:41:37 +00006650 // FALL THROUGH.
6651 case Instruction::Sub: {
Chris Lattner11021cb2005-09-18 05:12:10 +00006652 // Turn ((X >> C) + Y) << C -> (X + (Y << C)) & (~0 << C)
Chris Lattner150f12a2005-09-18 06:30:59 +00006653 if (isLeftShift && Op0BO->getOperand(0)->hasOneUse() &&
6654 match(Op0BO->getOperand(0),
Chris Lattner4d5542c2006-01-06 07:12:35 +00006655 m_Shr(m_Value(V1), m_ConstantInt(CC))) && CC == Op1) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006656 Instruction *YS = BinaryOperator::CreateShl(
Reid Spencer832254e2007-02-02 02:16:23 +00006657 Op0BO->getOperand(1), Op1,
6658 Op0BO->getName());
Chris Lattner150f12a2005-09-18 06:30:59 +00006659 InsertNewInstBefore(YS, I); // (Y << C)
Chris Lattner9a4cacb2006-02-09 07:41:14 +00006660 Instruction *X =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006661 BinaryOperator::Create(Op0BO->getOpcode(), V1, YS,
Chris Lattner9a4cacb2006-02-09 07:41:14 +00006662 Op0BO->getOperand(0)->getName());
Chris Lattner150f12a2005-09-18 06:30:59 +00006663 InsertNewInstBefore(X, I); // (X + (Y << C))
Zhou Sheng302748d2007-03-30 17:20:39 +00006664 uint32_t Op1Val = Op1->getLimitedValue(TypeBits);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006665 return BinaryOperator::CreateAnd(X, ConstantInt::get(
Zhou Sheng90b96812007-03-30 05:45:18 +00006666 APInt::getHighBitsSet(TypeBits, TypeBits-Op1Val)));
Chris Lattner150f12a2005-09-18 06:30:59 +00006667 }
Chris Lattner4d5542c2006-01-06 07:12:35 +00006668
Chris Lattner13d4ab42006-05-31 21:14:00 +00006669 // Turn (((X >> C)&CC) + Y) << C -> (X + (Y << C)) & (CC << C)
Chris Lattner150f12a2005-09-18 06:30:59 +00006670 if (isLeftShift && Op0BO->getOperand(0)->hasOneUse() &&
6671 match(Op0BO->getOperand(0),
6672 m_And(m_Shr(m_Value(V1), m_Value(V2)),
Chris Lattner4d5542c2006-01-06 07:12:35 +00006673 m_ConstantInt(CC))) && V2 == Op1 &&
Chris Lattner9a4cacb2006-02-09 07:41:14 +00006674 cast<BinaryOperator>(Op0BO->getOperand(0))
6675 ->getOperand(0)->hasOneUse()) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006676 Instruction *YS = BinaryOperator::CreateShl(
Reid Spencer832254e2007-02-02 02:16:23 +00006677 Op0BO->getOperand(1), Op1,
6678 Op0BO->getName());
Chris Lattner150f12a2005-09-18 06:30:59 +00006679 InsertNewInstBefore(YS, I); // (Y << C)
6680 Instruction *XM =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006681 BinaryOperator::CreateAnd(V1, ConstantExpr::getShl(CC, Op1),
Chris Lattner150f12a2005-09-18 06:30:59 +00006682 V1->getName()+".mask");
6683 InsertNewInstBefore(XM, I); // X & (CC << C)
6684
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006685 return BinaryOperator::Create(Op0BO->getOpcode(), XM, YS);
Chris Lattner150f12a2005-09-18 06:30:59 +00006686 }
Chris Lattner4d5542c2006-01-06 07:12:35 +00006687
Chris Lattner11021cb2005-09-18 05:12:10 +00006688 break;
Reid Spencera07cb7d2007-02-02 14:41:37 +00006689 }
Chris Lattner4d5542c2006-01-06 07:12:35 +00006690 }
6691
6692
6693 // If the operand is an bitwise operator with a constant RHS, and the
6694 // shift is the only use, we can pull it out of the shift.
6695 if (ConstantInt *Op0C = dyn_cast<ConstantInt>(Op0BO->getOperand(1))) {
6696 bool isValid = true; // Valid only for And, Or, Xor
6697 bool highBitSet = false; // Transform if high bit of constant set?
6698
6699 switch (Op0BO->getOpcode()) {
Chris Lattnerdf17af12003-08-12 21:53:41 +00006700 default: isValid = false; break; // Do not perform transform!
Chris Lattner1f7e1602004-10-08 03:46:20 +00006701 case Instruction::Add:
6702 isValid = isLeftShift;
6703 break;
Chris Lattnerdf17af12003-08-12 21:53:41 +00006704 case Instruction::Or:
6705 case Instruction::Xor:
6706 highBitSet = false;
6707 break;
6708 case Instruction::And:
6709 highBitSet = true;
6710 break;
Chris Lattner4d5542c2006-01-06 07:12:35 +00006711 }
6712
6713 // If this is a signed shift right, and the high bit is modified
6714 // by the logical operation, do not perform the transformation.
6715 // The highBitSet boolean indicates the value of the high bit of
6716 // the constant which would cause it to be modified for this
6717 // operation.
6718 //
Chris Lattnerc95ba442007-12-06 06:25:04 +00006719 if (isValid && I.getOpcode() == Instruction::AShr)
Zhou Shenge9e03f62007-03-28 15:02:20 +00006720 isValid = Op0C->getValue()[TypeBits-1] == highBitSet;
Chris Lattner4d5542c2006-01-06 07:12:35 +00006721
6722 if (isValid) {
6723 Constant *NewRHS = ConstantExpr::get(I.getOpcode(), Op0C, Op1);
6724
6725 Instruction *NewShift =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006726 BinaryOperator::Create(I.getOpcode(), Op0BO->getOperand(0), Op1);
Chris Lattner4d5542c2006-01-06 07:12:35 +00006727 InsertNewInstBefore(NewShift, I);
Chris Lattner6934a042007-02-11 01:23:03 +00006728 NewShift->takeName(Op0BO);
Chris Lattner4d5542c2006-01-06 07:12:35 +00006729
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006730 return BinaryOperator::Create(Op0BO->getOpcode(), NewShift,
Chris Lattner4d5542c2006-01-06 07:12:35 +00006731 NewRHS);
6732 }
6733 }
6734 }
6735 }
6736
Chris Lattnerad0124c2006-01-06 07:52:12 +00006737 // Find out if this is a shift of a shift by a constant.
Reid Spencer832254e2007-02-02 02:16:23 +00006738 BinaryOperator *ShiftOp = dyn_cast<BinaryOperator>(Op0);
6739 if (ShiftOp && !ShiftOp->isShift())
6740 ShiftOp = 0;
Chris Lattnerad0124c2006-01-06 07:52:12 +00006741
Reid Spencerb83eb642006-10-20 07:07:24 +00006742 if (ShiftOp && isa<ConstantInt>(ShiftOp->getOperand(1))) {
Reid Spencerb83eb642006-10-20 07:07:24 +00006743 ConstantInt *ShiftAmt1C = cast<ConstantInt>(ShiftOp->getOperand(1));
Zhou Sheng0e2d3ac2007-03-30 09:29:48 +00006744 uint32_t ShiftAmt1 = ShiftAmt1C->getLimitedValue(TypeBits);
6745 uint32_t ShiftAmt2 = Op1->getLimitedValue(TypeBits);
Chris Lattnerb87056f2007-02-05 00:57:54 +00006746 assert(ShiftAmt2 != 0 && "Should have been simplified earlier");
6747 if (ShiftAmt1 == 0) return 0; // Will be simplified in the future.
6748 Value *X = ShiftOp->getOperand(0);
Chris Lattnerad0124c2006-01-06 07:52:12 +00006749
Zhou Sheng4351c642007-04-02 08:20:41 +00006750 uint32_t AmtSum = ShiftAmt1+ShiftAmt2; // Fold into one big shift.
Reid Spencerb35ae032007-03-23 18:46:34 +00006751 if (AmtSum > TypeBits)
6752 AmtSum = TypeBits;
Chris Lattnerb87056f2007-02-05 00:57:54 +00006753
6754 const IntegerType *Ty = cast<IntegerType>(I.getType());
6755
6756 // Check for (X << c1) << c2 and (X >> c1) >> c2
Chris Lattner7f3da2d2007-02-03 23:28:07 +00006757 if (I.getOpcode() == ShiftOp->getOpcode()) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006758 return BinaryOperator::Create(I.getOpcode(), X,
Chris Lattnerb87056f2007-02-05 00:57:54 +00006759 ConstantInt::get(Ty, AmtSum));
6760 } else if (ShiftOp->getOpcode() == Instruction::LShr &&
6761 I.getOpcode() == Instruction::AShr) {
6762 // ((X >>u C1) >>s C2) -> (X >>u (C1+C2)) since C1 != 0.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006763 return BinaryOperator::CreateLShr(X, ConstantInt::get(Ty, AmtSum));
Chris Lattnerb87056f2007-02-05 00:57:54 +00006764 } else if (ShiftOp->getOpcode() == Instruction::AShr &&
6765 I.getOpcode() == Instruction::LShr) {
6766 // ((X >>s C1) >>u C2) -> ((X >>s (C1+C2)) & mask) since C1 != 0.
6767 Instruction *Shift =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006768 BinaryOperator::CreateAShr(X, ConstantInt::get(Ty, AmtSum));
Chris Lattnerb87056f2007-02-05 00:57:54 +00006769 InsertNewInstBefore(Shift, I);
6770
Zhou Shenge9e03f62007-03-28 15:02:20 +00006771 APInt Mask(APInt::getLowBitsSet(TypeBits, TypeBits - ShiftAmt2));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006772 return BinaryOperator::CreateAnd(Shift, ConstantInt::get(Mask));
Chris Lattnerad0124c2006-01-06 07:52:12 +00006773 }
6774
Chris Lattnerb87056f2007-02-05 00:57:54 +00006775 // Okay, if we get here, one shift must be left, and the other shift must be
6776 // right. See if the amounts are equal.
6777 if (ShiftAmt1 == ShiftAmt2) {
6778 // If we have ((X >>? C) << C), turn this into X & (-1 << C).
6779 if (I.getOpcode() == Instruction::Shl) {
Reid Spencer55702aa2007-03-25 21:11:44 +00006780 APInt Mask(APInt::getHighBitsSet(TypeBits, TypeBits - ShiftAmt1));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006781 return BinaryOperator::CreateAnd(X, ConstantInt::get(Mask));
Chris Lattnerb87056f2007-02-05 00:57:54 +00006782 }
6783 // If we have ((X << C) >>u C), turn this into X & (-1 >>u C).
6784 if (I.getOpcode() == Instruction::LShr) {
Zhou Sheng3a507fd2007-04-01 17:13:37 +00006785 APInt Mask(APInt::getLowBitsSet(TypeBits, TypeBits - ShiftAmt1));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006786 return BinaryOperator::CreateAnd(X, ConstantInt::get(Mask));
Chris Lattnerb87056f2007-02-05 00:57:54 +00006787 }
6788 // We can simplify ((X << C) >>s C) into a trunc + sext.
6789 // NOTE: we could do this for any C, but that would make 'unusual' integer
6790 // types. For now, just stick to ones well-supported by the code
6791 // generators.
6792 const Type *SExtType = 0;
6793 switch (Ty->getBitWidth() - ShiftAmt1) {
Zhou Shenge9e03f62007-03-28 15:02:20 +00006794 case 1 :
6795 case 8 :
6796 case 16 :
6797 case 32 :
6798 case 64 :
6799 case 128:
6800 SExtType = IntegerType::get(Ty->getBitWidth() - ShiftAmt1);
6801 break;
Chris Lattnerb87056f2007-02-05 00:57:54 +00006802 default: break;
6803 }
6804 if (SExtType) {
6805 Instruction *NewTrunc = new TruncInst(X, SExtType, "sext");
6806 InsertNewInstBefore(NewTrunc, I);
6807 return new SExtInst(NewTrunc, Ty);
6808 }
6809 // Otherwise, we can't handle it yet.
6810 } else if (ShiftAmt1 < ShiftAmt2) {
Zhou Sheng4351c642007-04-02 08:20:41 +00006811 uint32_t ShiftDiff = ShiftAmt2-ShiftAmt1;
Chris Lattnerad0124c2006-01-06 07:52:12 +00006812
Chris Lattnerb0b991a2007-02-05 05:57:49 +00006813 // (X >>? C1) << C2 --> X << (C2-C1) & (-1 << C2)
Chris Lattnerb87056f2007-02-05 00:57:54 +00006814 if (I.getOpcode() == Instruction::Shl) {
6815 assert(ShiftOp->getOpcode() == Instruction::LShr ||
6816 ShiftOp->getOpcode() == Instruction::AShr);
Chris Lattnere8d56c52006-01-07 01:32:28 +00006817 Instruction *Shift =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006818 BinaryOperator::CreateShl(X, ConstantInt::get(Ty, ShiftDiff));
Chris Lattnere8d56c52006-01-07 01:32:28 +00006819 InsertNewInstBefore(Shift, I);
6820
Reid Spencer55702aa2007-03-25 21:11:44 +00006821 APInt Mask(APInt::getHighBitsSet(TypeBits, TypeBits - ShiftAmt2));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006822 return BinaryOperator::CreateAnd(Shift, ConstantInt::get(Mask));
Chris Lattnerad0124c2006-01-06 07:52:12 +00006823 }
Chris Lattnerb87056f2007-02-05 00:57:54 +00006824
Chris Lattnerb0b991a2007-02-05 05:57:49 +00006825 // (X << C1) >>u C2 --> X >>u (C2-C1) & (-1 >> C2)
Chris Lattnerb87056f2007-02-05 00:57:54 +00006826 if (I.getOpcode() == Instruction::LShr) {
6827 assert(ShiftOp->getOpcode() == Instruction::Shl);
6828 Instruction *Shift =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006829 BinaryOperator::CreateLShr(X, ConstantInt::get(Ty, ShiftDiff));
Chris Lattnerb87056f2007-02-05 00:57:54 +00006830 InsertNewInstBefore(Shift, I);
Chris Lattnerad0124c2006-01-06 07:52:12 +00006831
Reid Spencerd5e30f02007-03-26 17:18:58 +00006832 APInt Mask(APInt::getLowBitsSet(TypeBits, TypeBits - ShiftAmt2));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006833 return BinaryOperator::CreateAnd(Shift, ConstantInt::get(Mask));
Chris Lattner11021cb2005-09-18 05:12:10 +00006834 }
Chris Lattnerb87056f2007-02-05 00:57:54 +00006835
6836 // We can't handle (X << C1) >>s C2, it shifts arbitrary bits in.
6837 } else {
6838 assert(ShiftAmt2 < ShiftAmt1);
Zhou Sheng4351c642007-04-02 08:20:41 +00006839 uint32_t ShiftDiff = ShiftAmt1-ShiftAmt2;
Chris Lattnerb87056f2007-02-05 00:57:54 +00006840
Chris Lattnerb0b991a2007-02-05 05:57:49 +00006841 // (X >>? C1) << C2 --> X >>? (C1-C2) & (-1 << C2)
Chris Lattnerb87056f2007-02-05 00:57:54 +00006842 if (I.getOpcode() == Instruction::Shl) {
6843 assert(ShiftOp->getOpcode() == Instruction::LShr ||
6844 ShiftOp->getOpcode() == Instruction::AShr);
6845 Instruction *Shift =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006846 BinaryOperator::Create(ShiftOp->getOpcode(), X,
Chris Lattnerb87056f2007-02-05 00:57:54 +00006847 ConstantInt::get(Ty, ShiftDiff));
6848 InsertNewInstBefore(Shift, I);
6849
Reid Spencer55702aa2007-03-25 21:11:44 +00006850 APInt Mask(APInt::getHighBitsSet(TypeBits, TypeBits - ShiftAmt2));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006851 return BinaryOperator::CreateAnd(Shift, ConstantInt::get(Mask));
Chris Lattnerb87056f2007-02-05 00:57:54 +00006852 }
6853
Chris Lattnerb0b991a2007-02-05 05:57:49 +00006854 // (X << C1) >>u C2 --> X << (C1-C2) & (-1 >> C2)
Chris Lattnerb87056f2007-02-05 00:57:54 +00006855 if (I.getOpcode() == Instruction::LShr) {
6856 assert(ShiftOp->getOpcode() == Instruction::Shl);
6857 Instruction *Shift =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006858 BinaryOperator::CreateShl(X, ConstantInt::get(Ty, ShiftDiff));
Chris Lattnerb87056f2007-02-05 00:57:54 +00006859 InsertNewInstBefore(Shift, I);
6860
Reid Spencer68d27cf2007-03-26 23:45:51 +00006861 APInt Mask(APInt::getLowBitsSet(TypeBits, TypeBits - ShiftAmt2));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006862 return BinaryOperator::CreateAnd(Shift, ConstantInt::get(Mask));
Chris Lattnerb87056f2007-02-05 00:57:54 +00006863 }
6864
6865 // We can't handle (X << C1) >>a C2, it shifts arbitrary bits in.
Chris Lattner6e7ba452005-01-01 16:22:27 +00006866 }
Chris Lattnerad0124c2006-01-06 07:52:12 +00006867 }
Chris Lattner3f5b8772002-05-06 16:14:14 +00006868 return 0;
6869}
6870
Chris Lattnera1be5662002-05-02 17:06:02 +00006871
Chris Lattnercfd65102005-10-29 04:36:15 +00006872/// DecomposeSimpleLinearExpr - Analyze 'Val', seeing if it is a simple linear
6873/// expression. If so, decompose it, returning some value X, such that Val is
6874/// X*Scale+Offset.
6875///
6876static Value *DecomposeSimpleLinearExpr(Value *Val, unsigned &Scale,
Jeff Cohen86796be2007-04-04 16:58:57 +00006877 int &Offset) {
Reid Spencerc5b206b2006-12-31 05:48:39 +00006878 assert(Val->getType() == Type::Int32Ty && "Unexpected allocation size type!");
Reid Spencerb83eb642006-10-20 07:07:24 +00006879 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
Reid Spencerc5b206b2006-12-31 05:48:39 +00006880 Offset = CI->getZExtValue();
Chris Lattner6a94de22007-10-12 05:30:59 +00006881 Scale = 0;
Reid Spencerc5b206b2006-12-31 05:48:39 +00006882 return ConstantInt::get(Type::Int32Ty, 0);
Chris Lattner6a94de22007-10-12 05:30:59 +00006883 } else if (BinaryOperator *I = dyn_cast<BinaryOperator>(Val)) {
6884 if (ConstantInt *RHS = dyn_cast<ConstantInt>(I->getOperand(1))) {
6885 if (I->getOpcode() == Instruction::Shl) {
6886 // This is a value scaled by '1 << the shift amt'.
6887 Scale = 1U << RHS->getZExtValue();
6888 Offset = 0;
6889 return I->getOperand(0);
6890 } else if (I->getOpcode() == Instruction::Mul) {
6891 // This value is scaled by 'RHS'.
6892 Scale = RHS->getZExtValue();
6893 Offset = 0;
6894 return I->getOperand(0);
6895 } else if (I->getOpcode() == Instruction::Add) {
6896 // We have X+C. Check to see if we really have (X*C2)+C1,
6897 // where C1 is divisible by C2.
6898 unsigned SubScale;
6899 Value *SubVal =
6900 DecomposeSimpleLinearExpr(I->getOperand(0), SubScale, Offset);
6901 Offset += RHS->getZExtValue();
6902 Scale = SubScale;
6903 return SubVal;
Chris Lattnercfd65102005-10-29 04:36:15 +00006904 }
6905 }
6906 }
6907
6908 // Otherwise, we can't look past this.
6909 Scale = 1;
6910 Offset = 0;
6911 return Val;
6912}
6913
6914
Chris Lattnerb3f83972005-10-24 06:03:58 +00006915/// PromoteCastOfAllocation - If we find a cast of an allocation instruction,
6916/// try to eliminate the cast by moving the type information into the alloc.
Chris Lattnerd3e28342007-04-27 17:44:50 +00006917Instruction *InstCombiner::PromoteCastOfAllocation(BitCastInst &CI,
Chris Lattnerb3f83972005-10-24 06:03:58 +00006918 AllocationInst &AI) {
Chris Lattnerd3e28342007-04-27 17:44:50 +00006919 const PointerType *PTy = cast<PointerType>(CI.getType());
Chris Lattnerb3f83972005-10-24 06:03:58 +00006920
Chris Lattnerb53c2382005-10-24 06:22:12 +00006921 // Remove any uses of AI that are dead.
6922 assert(!CI.use_empty() && "Dead instructions should be removed earlier!");
Chris Lattner535014f2007-02-15 22:52:10 +00006923
Chris Lattnerb53c2382005-10-24 06:22:12 +00006924 for (Value::use_iterator UI = AI.use_begin(), E = AI.use_end(); UI != E; ) {
6925 Instruction *User = cast<Instruction>(*UI++);
6926 if (isInstructionTriviallyDead(User)) {
6927 while (UI != E && *UI == User)
6928 ++UI; // If this instruction uses AI more than once, don't break UI.
6929
Chris Lattnerb53c2382005-10-24 06:22:12 +00006930 ++NumDeadInst;
Bill Wendlingb7427032006-11-26 09:46:52 +00006931 DOUT << "IC: DCE: " << *User;
Chris Lattnerf22a5c62007-03-02 19:59:19 +00006932 EraseInstFromFunction(*User);
Chris Lattnerb53c2382005-10-24 06:22:12 +00006933 }
6934 }
6935
Chris Lattnerb3f83972005-10-24 06:03:58 +00006936 // Get the type really allocated and the type casted to.
6937 const Type *AllocElTy = AI.getAllocatedType();
6938 const Type *CastElTy = PTy->getElementType();
6939 if (!AllocElTy->isSized() || !CastElTy->isSized()) return 0;
Chris Lattner18e78bb2005-10-24 06:26:18 +00006940
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00006941 unsigned AllocElTyAlign = TD->getABITypeAlignment(AllocElTy);
6942 unsigned CastElTyAlign = TD->getABITypeAlignment(CastElTy);
Chris Lattner18e78bb2005-10-24 06:26:18 +00006943 if (CastElTyAlign < AllocElTyAlign) return 0;
6944
Chris Lattner39387a52005-10-24 06:35:18 +00006945 // If the allocation has multiple uses, only promote it if we are strictly
6946 // increasing the alignment of the resultant allocation. If we keep it the
6947 // same, we open the door to infinite loops of various kinds.
6948 if (!AI.hasOneUse() && CastElTyAlign == AllocElTyAlign) return 0;
6949
Duncan Sands514ab342007-11-01 20:53:16 +00006950 uint64_t AllocElTySize = TD->getABITypeSize(AllocElTy);
6951 uint64_t CastElTySize = TD->getABITypeSize(CastElTy);
Chris Lattner0ddac2a2005-10-27 05:53:56 +00006952 if (CastElTySize == 0 || AllocElTySize == 0) return 0;
Chris Lattner18e78bb2005-10-24 06:26:18 +00006953
Chris Lattner455fcc82005-10-29 03:19:53 +00006954 // See if we can satisfy the modulus by pulling a scale out of the array
6955 // size argument.
Jeff Cohen86796be2007-04-04 16:58:57 +00006956 unsigned ArraySizeScale;
6957 int ArrayOffset;
Chris Lattnercfd65102005-10-29 04:36:15 +00006958 Value *NumElements = // See if the array size is a decomposable linear expr.
6959 DecomposeSimpleLinearExpr(AI.getOperand(0), ArraySizeScale, ArrayOffset);
6960
Chris Lattner455fcc82005-10-29 03:19:53 +00006961 // If we can now satisfy the modulus, by using a non-1 scale, we really can
6962 // do the xform.
Chris Lattnercfd65102005-10-29 04:36:15 +00006963 if ((AllocElTySize*ArraySizeScale) % CastElTySize != 0 ||
6964 (AllocElTySize*ArrayOffset ) % CastElTySize != 0) return 0;
Chris Lattner8142b0a2005-10-27 06:12:00 +00006965
Chris Lattner455fcc82005-10-29 03:19:53 +00006966 unsigned Scale = (AllocElTySize*ArraySizeScale)/CastElTySize;
6967 Value *Amt = 0;
6968 if (Scale == 1) {
6969 Amt = NumElements;
6970 } else {
Reid Spencerb83eb642006-10-20 07:07:24 +00006971 // If the allocation size is constant, form a constant mul expression
Reid Spencerc5b206b2006-12-31 05:48:39 +00006972 Amt = ConstantInt::get(Type::Int32Ty, Scale);
6973 if (isa<ConstantInt>(NumElements))
Zhou Sheng4a1822a2007-04-02 13:45:30 +00006974 Amt = Multiply(cast<ConstantInt>(NumElements), cast<ConstantInt>(Amt));
Reid Spencerb83eb642006-10-20 07:07:24 +00006975 // otherwise multiply the amount and the number of elements
Chris Lattner455fcc82005-10-29 03:19:53 +00006976 else if (Scale != 1) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006977 Instruction *Tmp = BinaryOperator::CreateMul(Amt, NumElements, "tmp");
Chris Lattner455fcc82005-10-29 03:19:53 +00006978 Amt = InsertNewInstBefore(Tmp, AI);
Chris Lattner8142b0a2005-10-27 06:12:00 +00006979 }
Chris Lattner0ddac2a2005-10-27 05:53:56 +00006980 }
6981
Jeff Cohen86796be2007-04-04 16:58:57 +00006982 if (int Offset = (AllocElTySize*ArrayOffset)/CastElTySize) {
6983 Value *Off = ConstantInt::get(Type::Int32Ty, Offset, true);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00006984 Instruction *Tmp = BinaryOperator::CreateAdd(Amt, Off, "tmp");
Chris Lattnercfd65102005-10-29 04:36:15 +00006985 Amt = InsertNewInstBefore(Tmp, AI);
6986 }
6987
Chris Lattnerb3f83972005-10-24 06:03:58 +00006988 AllocationInst *New;
6989 if (isa<MallocInst>(AI))
Chris Lattner6934a042007-02-11 01:23:03 +00006990 New = new MallocInst(CastElTy, Amt, AI.getAlignment());
Chris Lattnerb3f83972005-10-24 06:03:58 +00006991 else
Chris Lattner6934a042007-02-11 01:23:03 +00006992 New = new AllocaInst(CastElTy, Amt, AI.getAlignment());
Chris Lattnerb3f83972005-10-24 06:03:58 +00006993 InsertNewInstBefore(New, AI);
Chris Lattner6934a042007-02-11 01:23:03 +00006994 New->takeName(&AI);
Chris Lattner39387a52005-10-24 06:35:18 +00006995
6996 // If the allocation has multiple uses, insert a cast and change all things
6997 // that used it to use the new cast. This will also hack on CI, but it will
6998 // die soon.
6999 if (!AI.hasOneUse()) {
7000 AddUsesToWorkList(AI);
Reid Spencer3da59db2006-11-27 01:05:10 +00007001 // New is the allocation instruction, pointer typed. AI is the original
7002 // allocation instruction, also pointer typed. Thus, cast to use is BitCast.
7003 CastInst *NewCast = new BitCastInst(New, AI.getType(), "tmpcast");
Chris Lattner39387a52005-10-24 06:35:18 +00007004 InsertNewInstBefore(NewCast, AI);
7005 AI.replaceAllUsesWith(NewCast);
7006 }
Chris Lattnerb3f83972005-10-24 06:03:58 +00007007 return ReplaceInstUsesWith(CI, New);
7008}
7009
Chris Lattner70074e02006-05-13 02:06:03 +00007010/// CanEvaluateInDifferentType - Return true if we can take the specified value
Chris Lattnerc739cd62007-03-03 05:27:34 +00007011/// and return it as type Ty without inserting any new casts and without
7012/// changing the computed value. This is used by code that tries to decide
7013/// whether promoting or shrinking integer operations to wider or smaller types
7014/// will allow us to eliminate a truncate or extend.
7015///
7016/// This is a truncation operation if Ty is smaller than V->getType(), or an
7017/// extension operation if Ty is larger.
Chris Lattner8114b712008-06-18 04:00:49 +00007018///
7019/// If CastOpc is a truncation, then Ty will be a type smaller than V. We
7020/// should return true if trunc(V) can be computed by computing V in the smaller
7021/// type. If V is an instruction, then trunc(inst(x,y)) can be computed as
7022/// inst(trunc(x),trunc(y)), which only makes sense if x and y can be
7023/// efficiently truncated.
7024///
7025/// If CastOpc is a sext or zext, we are asking if the low bits of the value can
7026/// bit computed in a larger type, which is then and'd or sext_in_reg'd to get
7027/// the final result.
Dan Gohmaneee962e2008-04-10 18:43:06 +00007028bool InstCombiner::CanEvaluateInDifferentType(Value *V, const IntegerType *Ty,
7029 unsigned CastOpc,
7030 int &NumCastsRemoved) {
Chris Lattnerc739cd62007-03-03 05:27:34 +00007031 // We can always evaluate constants in another type.
7032 if (isa<ConstantInt>(V))
7033 return true;
Chris Lattner70074e02006-05-13 02:06:03 +00007034
7035 Instruction *I = dyn_cast<Instruction>(V);
Chris Lattnerc739cd62007-03-03 05:27:34 +00007036 if (!I) return false;
7037
7038 const IntegerType *OrigTy = cast<IntegerType>(V->getType());
Chris Lattner70074e02006-05-13 02:06:03 +00007039
Chris Lattner951626b2007-08-02 06:11:14 +00007040 // If this is an extension or truncate, we can often eliminate it.
7041 if (isa<TruncInst>(I) || isa<ZExtInst>(I) || isa<SExtInst>(I)) {
7042 // If this is a cast from the destination type, we can trivially eliminate
7043 // it, and this will remove a cast overall.
7044 if (I->getOperand(0)->getType() == Ty) {
7045 // If the first operand is itself a cast, and is eliminable, do not count
7046 // this as an eliminable cast. We would prefer to eliminate those two
7047 // casts first.
Chris Lattner8114b712008-06-18 04:00:49 +00007048 if (!isa<CastInst>(I->getOperand(0)) && I->hasOneUse())
Chris Lattner951626b2007-08-02 06:11:14 +00007049 ++NumCastsRemoved;
7050 return true;
7051 }
7052 }
7053
7054 // We can't extend or shrink something that has multiple uses: doing so would
7055 // require duplicating the instruction in general, which isn't profitable.
7056 if (!I->hasOneUse()) return false;
7057
Chris Lattner70074e02006-05-13 02:06:03 +00007058 switch (I->getOpcode()) {
Chris Lattnerc739cd62007-03-03 05:27:34 +00007059 case Instruction::Add:
7060 case Instruction::Sub:
Nick Lewyckyb8cd6a42008-07-05 21:19:34 +00007061 case Instruction::Mul:
Chris Lattner70074e02006-05-13 02:06:03 +00007062 case Instruction::And:
7063 case Instruction::Or:
7064 case Instruction::Xor:
7065 // These operators can all arbitrarily be extended or truncated.
Chris Lattner951626b2007-08-02 06:11:14 +00007066 return CanEvaluateInDifferentType(I->getOperand(0), Ty, CastOpc,
7067 NumCastsRemoved) &&
7068 CanEvaluateInDifferentType(I->getOperand(1), Ty, CastOpc,
7069 NumCastsRemoved);
Chris Lattnerc739cd62007-03-03 05:27:34 +00007070
Chris Lattner46b96052006-11-29 07:18:39 +00007071 case Instruction::Shl:
Chris Lattnerc739cd62007-03-03 05:27:34 +00007072 // If we are truncating the result of this SHL, and if it's a shift of a
7073 // constant amount, we can always perform a SHL in a smaller type.
7074 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
Zhou Sheng302748d2007-03-30 17:20:39 +00007075 uint32_t BitWidth = Ty->getBitWidth();
7076 if (BitWidth < OrigTy->getBitWidth() &&
7077 CI->getLimitedValue(BitWidth) < BitWidth)
Chris Lattner951626b2007-08-02 06:11:14 +00007078 return CanEvaluateInDifferentType(I->getOperand(0), Ty, CastOpc,
7079 NumCastsRemoved);
Chris Lattnerc739cd62007-03-03 05:27:34 +00007080 }
7081 break;
7082 case Instruction::LShr:
Chris Lattnerc739cd62007-03-03 05:27:34 +00007083 // If this is a truncate of a logical shr, we can truncate it to a smaller
7084 // lshr iff we know that the bits we would otherwise be shifting in are
7085 // already zeros.
7086 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
Zhou Sheng302748d2007-03-30 17:20:39 +00007087 uint32_t OrigBitWidth = OrigTy->getBitWidth();
7088 uint32_t BitWidth = Ty->getBitWidth();
7089 if (BitWidth < OrigBitWidth &&
Chris Lattnerc739cd62007-03-03 05:27:34 +00007090 MaskedValueIsZero(I->getOperand(0),
Zhou Sheng302748d2007-03-30 17:20:39 +00007091 APInt::getHighBitsSet(OrigBitWidth, OrigBitWidth-BitWidth)) &&
7092 CI->getLimitedValue(BitWidth) < BitWidth) {
Chris Lattner951626b2007-08-02 06:11:14 +00007093 return CanEvaluateInDifferentType(I->getOperand(0), Ty, CastOpc,
7094 NumCastsRemoved);
Chris Lattnerc739cd62007-03-03 05:27:34 +00007095 }
7096 }
Chris Lattner46b96052006-11-29 07:18:39 +00007097 break;
Reid Spencer3da59db2006-11-27 01:05:10 +00007098 case Instruction::ZExt:
7099 case Instruction::SExt:
Chris Lattner951626b2007-08-02 06:11:14 +00007100 case Instruction::Trunc:
7101 // If this is the same kind of case as our original (e.g. zext+zext), we
Chris Lattner5543a852007-08-02 17:23:38 +00007102 // can safely replace it. Note that replacing it does not reduce the number
7103 // of casts in the input.
7104 if (I->getOpcode() == CastOpc)
Chris Lattner70074e02006-05-13 02:06:03 +00007105 return true;
Reid Spencer3da59db2006-11-27 01:05:10 +00007106 break;
Nick Lewyckyb8cd6a42008-07-05 21:19:34 +00007107 case Instruction::Select: {
7108 SelectInst *SI = cast<SelectInst>(I);
7109 return CanEvaluateInDifferentType(SI->getTrueValue(), Ty, CastOpc,
7110 NumCastsRemoved) &&
7111 CanEvaluateInDifferentType(SI->getFalseValue(), Ty, CastOpc,
7112 NumCastsRemoved);
7113 }
Chris Lattner8114b712008-06-18 04:00:49 +00007114 case Instruction::PHI: {
7115 // We can change a phi if we can change all operands.
7116 PHINode *PN = cast<PHINode>(I);
7117 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
7118 if (!CanEvaluateInDifferentType(PN->getIncomingValue(i), Ty, CastOpc,
7119 NumCastsRemoved))
7120 return false;
7121 return true;
7122 }
Reid Spencer3da59db2006-11-27 01:05:10 +00007123 default:
Chris Lattner70074e02006-05-13 02:06:03 +00007124 // TODO: Can handle more cases here.
7125 break;
7126 }
7127
7128 return false;
7129}
7130
7131/// EvaluateInDifferentType - Given an expression that
7132/// CanEvaluateInDifferentType returns true for, actually insert the code to
7133/// evaluate the expression.
Reid Spencerc55b2432006-12-13 18:21:21 +00007134Value *InstCombiner::EvaluateInDifferentType(Value *V, const Type *Ty,
Chris Lattnerc739cd62007-03-03 05:27:34 +00007135 bool isSigned) {
Chris Lattner70074e02006-05-13 02:06:03 +00007136 if (Constant *C = dyn_cast<Constant>(V))
Reid Spencerc55b2432006-12-13 18:21:21 +00007137 return ConstantExpr::getIntegerCast(C, Ty, isSigned /*Sext or ZExt*/);
Chris Lattner70074e02006-05-13 02:06:03 +00007138
7139 // Otherwise, it must be an instruction.
7140 Instruction *I = cast<Instruction>(V);
Chris Lattner01859e82006-05-20 23:14:03 +00007141 Instruction *Res = 0;
Chris Lattner70074e02006-05-13 02:06:03 +00007142 switch (I->getOpcode()) {
Chris Lattnerc739cd62007-03-03 05:27:34 +00007143 case Instruction::Add:
7144 case Instruction::Sub:
Nick Lewyckye6b0c002008-01-22 05:08:48 +00007145 case Instruction::Mul:
Chris Lattner70074e02006-05-13 02:06:03 +00007146 case Instruction::And:
7147 case Instruction::Or:
Chris Lattnerc739cd62007-03-03 05:27:34 +00007148 case Instruction::Xor:
Chris Lattner46b96052006-11-29 07:18:39 +00007149 case Instruction::AShr:
7150 case Instruction::LShr:
7151 case Instruction::Shl: {
Reid Spencerc55b2432006-12-13 18:21:21 +00007152 Value *LHS = EvaluateInDifferentType(I->getOperand(0), Ty, isSigned);
Chris Lattnerc739cd62007-03-03 05:27:34 +00007153 Value *RHS = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007154 Res = BinaryOperator::Create((Instruction::BinaryOps)I->getOpcode(),
Chris Lattner8114b712008-06-18 04:00:49 +00007155 LHS, RHS);
Chris Lattner46b96052006-11-29 07:18:39 +00007156 break;
7157 }
Reid Spencer3da59db2006-11-27 01:05:10 +00007158 case Instruction::Trunc:
7159 case Instruction::ZExt:
7160 case Instruction::SExt:
Reid Spencer3da59db2006-11-27 01:05:10 +00007161 // If the source type of the cast is the type we're trying for then we can
Chris Lattner951626b2007-08-02 06:11:14 +00007162 // just return the source. There's no need to insert it because it is not
7163 // new.
Chris Lattner70074e02006-05-13 02:06:03 +00007164 if (I->getOperand(0)->getType() == Ty)
7165 return I->getOperand(0);
7166
Chris Lattner8114b712008-06-18 04:00:49 +00007167 // Otherwise, must be the same type of cast, so just reinsert a new one.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007168 Res = CastInst::Create(cast<CastInst>(I)->getOpcode(), I->getOperand(0),
Chris Lattner8114b712008-06-18 04:00:49 +00007169 Ty);
Chris Lattner951626b2007-08-02 06:11:14 +00007170 break;
Nick Lewyckyb8cd6a42008-07-05 21:19:34 +00007171 case Instruction::Select: {
7172 Value *True = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned);
7173 Value *False = EvaluateInDifferentType(I->getOperand(2), Ty, isSigned);
7174 Res = SelectInst::Create(I->getOperand(0), True, False);
7175 break;
7176 }
Chris Lattner8114b712008-06-18 04:00:49 +00007177 case Instruction::PHI: {
7178 PHINode *OPN = cast<PHINode>(I);
7179 PHINode *NPN = PHINode::Create(Ty);
7180 for (unsigned i = 0, e = OPN->getNumIncomingValues(); i != e; ++i) {
7181 Value *V =EvaluateInDifferentType(OPN->getIncomingValue(i), Ty, isSigned);
7182 NPN->addIncoming(V, OPN->getIncomingBlock(i));
7183 }
7184 Res = NPN;
7185 break;
7186 }
Reid Spencer3da59db2006-11-27 01:05:10 +00007187 default:
Chris Lattner70074e02006-05-13 02:06:03 +00007188 // TODO: Can handle more cases here.
7189 assert(0 && "Unreachable!");
7190 break;
7191 }
7192
Chris Lattner8114b712008-06-18 04:00:49 +00007193 Res->takeName(I);
Chris Lattner70074e02006-05-13 02:06:03 +00007194 return InsertNewInstBefore(Res, *I);
7195}
7196
Reid Spencer3da59db2006-11-27 01:05:10 +00007197/// @brief Implement the transforms common to all CastInst visitors.
7198Instruction *InstCombiner::commonCastTransforms(CastInst &CI) {
Chris Lattner79d35b32003-06-23 21:59:52 +00007199 Value *Src = CI.getOperand(0);
7200
Dan Gohman23d9d272007-05-11 21:10:54 +00007201 // Many cases of "cast of a cast" are eliminable. If it's eliminable we just
Reid Spencer3da59db2006-11-27 01:05:10 +00007202 // eliminate it now.
Chris Lattner6e7ba452005-01-01 16:22:27 +00007203 if (CastInst *CSrc = dyn_cast<CastInst>(Src)) { // A->B->C cast
Reid Spencer3da59db2006-11-27 01:05:10 +00007204 if (Instruction::CastOps opc =
7205 isEliminableCastPair(CSrc, CI.getOpcode(), CI.getType(), TD)) {
7206 // The first cast (CSrc) is eliminable so we need to fix up or replace
7207 // the second cast (CI). CSrc will then have a good chance of being dead.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007208 return CastInst::Create(opc, CSrc->getOperand(0), CI.getType());
Chris Lattner8fd217c2002-08-02 20:00:25 +00007209 }
7210 }
Chris Lattnera710ddc2004-05-25 04:29:21 +00007211
Reid Spencer3da59db2006-11-27 01:05:10 +00007212 // If we are casting a select then fold the cast into the select
Chris Lattner6e7ba452005-01-01 16:22:27 +00007213 if (SelectInst *SI = dyn_cast<SelectInst>(Src))
7214 if (Instruction *NV = FoldOpIntoSelect(CI, SI, this))
7215 return NV;
Reid Spencer3da59db2006-11-27 01:05:10 +00007216
7217 // If we are casting a PHI then fold the cast into the PHI
Chris Lattner4e998b22004-09-29 05:07:12 +00007218 if (isa<PHINode>(Src))
7219 if (Instruction *NV = FoldOpIntoPhi(CI))
7220 return NV;
Chris Lattner9fb92132006-04-12 18:09:35 +00007221
Reid Spencer3da59db2006-11-27 01:05:10 +00007222 return 0;
7223}
7224
Chris Lattnerd3e28342007-04-27 17:44:50 +00007225/// @brief Implement the transforms for cast of pointer (bitcast/ptrtoint)
7226Instruction *InstCombiner::commonPointerCastTransforms(CastInst &CI) {
7227 Value *Src = CI.getOperand(0);
7228
Chris Lattnerd3e28342007-04-27 17:44:50 +00007229 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Src)) {
Chris Lattner9bc14642007-04-28 00:57:34 +00007230 // If casting the result of a getelementptr instruction with no offset, turn
7231 // this into a cast of the original pointer!
Chris Lattnerd3e28342007-04-27 17:44:50 +00007232 if (GEP->hasAllZeroIndices()) {
7233 // Changing the cast operand is usually not a good idea but it is safe
7234 // here because the pointer operand is being replaced with another
7235 // pointer operand so the opcode doesn't need to change.
Chris Lattner9bc14642007-04-28 00:57:34 +00007236 AddToWorkList(GEP);
Chris Lattnerd3e28342007-04-27 17:44:50 +00007237 CI.setOperand(0, GEP->getOperand(0));
7238 return &CI;
7239 }
Chris Lattner9bc14642007-04-28 00:57:34 +00007240
7241 // If the GEP has a single use, and the base pointer is a bitcast, and the
7242 // GEP computes a constant offset, see if we can convert these three
7243 // instructions into fewer. This typically happens with unions and other
7244 // non-type-safe code.
7245 if (GEP->hasOneUse() && isa<BitCastInst>(GEP->getOperand(0))) {
7246 if (GEP->hasAllConstantIndices()) {
7247 // We are guaranteed to get a constant from EmitGEPOffset.
7248 ConstantInt *OffsetV = cast<ConstantInt>(EmitGEPOffset(GEP, CI, *this));
7249 int64_t Offset = OffsetV->getSExtValue();
7250
7251 // Get the base pointer input of the bitcast, and the type it points to.
7252 Value *OrigBase = cast<BitCastInst>(GEP->getOperand(0))->getOperand(0);
7253 const Type *GEPIdxTy =
7254 cast<PointerType>(OrigBase->getType())->getElementType();
7255 if (GEPIdxTy->isSized()) {
7256 SmallVector<Value*, 8> NewIndices;
7257
Chris Lattnerc42e2262007-05-05 01:59:31 +00007258 // Start with the index over the outer type. Note that the type size
7259 // might be zero (even if the offset isn't zero) if the indexed type
7260 // is something like [0 x {int, int}]
Chris Lattner9bc14642007-04-28 00:57:34 +00007261 const Type *IntPtrTy = TD->getIntPtrType();
Chris Lattnerc42e2262007-05-05 01:59:31 +00007262 int64_t FirstIdx = 0;
Duncan Sands514ab342007-11-01 20:53:16 +00007263 if (int64_t TySize = TD->getABITypeSize(GEPIdxTy)) {
Chris Lattnerc42e2262007-05-05 01:59:31 +00007264 FirstIdx = Offset/TySize;
7265 Offset %= TySize;
Chris Lattner9bc14642007-04-28 00:57:34 +00007266
Chris Lattnerc42e2262007-05-05 01:59:31 +00007267 // Handle silly modulus not returning values values [0..TySize).
7268 if (Offset < 0) {
7269 --FirstIdx;
7270 Offset += TySize;
7271 assert(Offset >= 0);
7272 }
Chris Lattnerd717c182007-05-05 22:32:24 +00007273 assert((uint64_t)Offset < (uint64_t)TySize &&"Out of range offset");
Chris Lattner9bc14642007-04-28 00:57:34 +00007274 }
7275
7276 NewIndices.push_back(ConstantInt::get(IntPtrTy, FirstIdx));
Chris Lattner9bc14642007-04-28 00:57:34 +00007277
7278 // Index into the types. If we fail, set OrigBase to null.
7279 while (Offset) {
7280 if (const StructType *STy = dyn_cast<StructType>(GEPIdxTy)) {
7281 const StructLayout *SL = TD->getStructLayout(STy);
Chris Lattner6b6aef82007-05-15 00:16:00 +00007282 if (Offset < (int64_t)SL->getSizeInBytes()) {
7283 unsigned Elt = SL->getElementContainingOffset(Offset);
7284 NewIndices.push_back(ConstantInt::get(Type::Int32Ty, Elt));
Chris Lattner9bc14642007-04-28 00:57:34 +00007285
Chris Lattner6b6aef82007-05-15 00:16:00 +00007286 Offset -= SL->getElementOffset(Elt);
7287 GEPIdxTy = STy->getElementType(Elt);
7288 } else {
7289 // Otherwise, we can't index into this, bail out.
7290 Offset = 0;
7291 OrigBase = 0;
7292 }
Chris Lattner9bc14642007-04-28 00:57:34 +00007293 } else if (isa<ArrayType>(GEPIdxTy) || isa<VectorType>(GEPIdxTy)) {
7294 const SequentialType *STy = cast<SequentialType>(GEPIdxTy);
Duncan Sands514ab342007-11-01 20:53:16 +00007295 if (uint64_t EltSize = TD->getABITypeSize(STy->getElementType())){
Chris Lattner6b6aef82007-05-15 00:16:00 +00007296 NewIndices.push_back(ConstantInt::get(IntPtrTy,Offset/EltSize));
7297 Offset %= EltSize;
7298 } else {
7299 NewIndices.push_back(ConstantInt::get(IntPtrTy, 0));
7300 }
Chris Lattner9bc14642007-04-28 00:57:34 +00007301 GEPIdxTy = STy->getElementType();
7302 } else {
7303 // Otherwise, we can't index into this, bail out.
7304 Offset = 0;
7305 OrigBase = 0;
7306 }
7307 }
7308 if (OrigBase) {
7309 // If we were able to index down into an element, create the GEP
7310 // and bitcast the result. This eliminates one bitcast, potentially
7311 // two.
Gabor Greif051a9502008-04-06 20:25:17 +00007312 Instruction *NGEP = GetElementPtrInst::Create(OrigBase,
7313 NewIndices.begin(),
7314 NewIndices.end(), "");
Chris Lattner9bc14642007-04-28 00:57:34 +00007315 InsertNewInstBefore(NGEP, CI);
7316 NGEP->takeName(GEP);
7317
Chris Lattner9bc14642007-04-28 00:57:34 +00007318 if (isa<BitCastInst>(CI))
7319 return new BitCastInst(NGEP, CI.getType());
7320 assert(isa<PtrToIntInst>(CI));
7321 return new PtrToIntInst(NGEP, CI.getType());
7322 }
7323 }
7324 }
7325 }
Chris Lattnerd3e28342007-04-27 17:44:50 +00007326 }
7327
7328 return commonCastTransforms(CI);
7329}
7330
7331
7332
Chris Lattnerc739cd62007-03-03 05:27:34 +00007333/// Only the TRUNC, ZEXT, SEXT, and BITCAST can both operand and result as
7334/// integer types. This function implements the common transforms for all those
Reid Spencer3da59db2006-11-27 01:05:10 +00007335/// cases.
7336/// @brief Implement the transforms common to CastInst with integer operands
7337Instruction *InstCombiner::commonIntCastTransforms(CastInst &CI) {
7338 if (Instruction *Result = commonCastTransforms(CI))
7339 return Result;
7340
7341 Value *Src = CI.getOperand(0);
7342 const Type *SrcTy = Src->getType();
7343 const Type *DestTy = CI.getType();
Zhou Sheng4351c642007-04-02 08:20:41 +00007344 uint32_t SrcBitSize = SrcTy->getPrimitiveSizeInBits();
7345 uint32_t DestBitSize = DestTy->getPrimitiveSizeInBits();
Reid Spencer3da59db2006-11-27 01:05:10 +00007346
Reid Spencer3da59db2006-11-27 01:05:10 +00007347 // See if we can simplify any instructions used by the LHS whose sole
7348 // purpose is to compute bits we don't care about.
Reid Spencerad6676e2007-03-22 20:56:53 +00007349 APInt KnownZero(DestBitSize, 0), KnownOne(DestBitSize, 0);
7350 if (SimplifyDemandedBits(&CI, APInt::getAllOnesValue(DestBitSize),
Reid Spencer3da59db2006-11-27 01:05:10 +00007351 KnownZero, KnownOne))
7352 return &CI;
7353
7354 // If the source isn't an instruction or has more than one use then we
7355 // can't do anything more.
Reid Spencere4d87aa2006-12-23 06:05:41 +00007356 Instruction *SrcI = dyn_cast<Instruction>(Src);
7357 if (!SrcI || !Src->hasOneUse())
Reid Spencer3da59db2006-11-27 01:05:10 +00007358 return 0;
7359
Chris Lattnerc739cd62007-03-03 05:27:34 +00007360 // Attempt to propagate the cast into the instruction for int->int casts.
Reid Spencer3da59db2006-11-27 01:05:10 +00007361 int NumCastsRemoved = 0;
Chris Lattnerc739cd62007-03-03 05:27:34 +00007362 if (!isa<BitCastInst>(CI) &&
7363 CanEvaluateInDifferentType(SrcI, cast<IntegerType>(DestTy),
Chris Lattner951626b2007-08-02 06:11:14 +00007364 CI.getOpcode(), NumCastsRemoved)) {
Reid Spencer3da59db2006-11-27 01:05:10 +00007365 // If this cast is a truncate, evaluting in a different type always
Chris Lattner951626b2007-08-02 06:11:14 +00007366 // eliminates the cast, so it is always a win. If this is a zero-extension,
7367 // we need to do an AND to maintain the clear top-part of the computation,
7368 // so we require that the input have eliminated at least one cast. If this
7369 // is a sign extension, we insert two new casts (to do the extension) so we
Reid Spencer3da59db2006-11-27 01:05:10 +00007370 // require that two casts have been eliminated.
Chris Lattnerc739cd62007-03-03 05:27:34 +00007371 bool DoXForm;
7372 switch (CI.getOpcode()) {
7373 default:
7374 // All the others use floating point so we shouldn't actually
7375 // get here because of the check above.
7376 assert(0 && "Unknown cast type");
7377 case Instruction::Trunc:
7378 DoXForm = true;
7379 break;
7380 case Instruction::ZExt:
7381 DoXForm = NumCastsRemoved >= 1;
7382 break;
7383 case Instruction::SExt:
7384 DoXForm = NumCastsRemoved >= 2;
7385 break;
Reid Spencer3da59db2006-11-27 01:05:10 +00007386 }
7387
7388 if (DoXForm) {
Reid Spencerc55b2432006-12-13 18:21:21 +00007389 Value *Res = EvaluateInDifferentType(SrcI, DestTy,
7390 CI.getOpcode() == Instruction::SExt);
Reid Spencer3da59db2006-11-27 01:05:10 +00007391 assert(Res->getType() == DestTy);
7392 switch (CI.getOpcode()) {
7393 default: assert(0 && "Unknown cast type!");
7394 case Instruction::Trunc:
7395 case Instruction::BitCast:
7396 // Just replace this cast with the result.
7397 return ReplaceInstUsesWith(CI, Res);
7398 case Instruction::ZExt: {
7399 // We need to emit an AND to clear the high bits.
7400 assert(SrcBitSize < DestBitSize && "Not a zext?");
Chris Lattnercd1d6d52007-04-02 05:48:58 +00007401 Constant *C = ConstantInt::get(APInt::getLowBitsSet(DestBitSize,
7402 SrcBitSize));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007403 return BinaryOperator::CreateAnd(Res, C);
Reid Spencer3da59db2006-11-27 01:05:10 +00007404 }
7405 case Instruction::SExt:
7406 // We need to emit a cast to truncate, then a cast to sext.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007407 return CastInst::Create(Instruction::SExt,
Reid Spencer17212df2006-12-12 09:18:51 +00007408 InsertCastBefore(Instruction::Trunc, Res, Src->getType(),
7409 CI), DestTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00007410 }
7411 }
7412 }
7413
7414 Value *Op0 = SrcI->getNumOperands() > 0 ? SrcI->getOperand(0) : 0;
7415 Value *Op1 = SrcI->getNumOperands() > 1 ? SrcI->getOperand(1) : 0;
7416
7417 switch (SrcI->getOpcode()) {
7418 case Instruction::Add:
7419 case Instruction::Mul:
7420 case Instruction::And:
7421 case Instruction::Or:
7422 case Instruction::Xor:
Chris Lattner01deb9d2007-04-03 17:43:25 +00007423 // If we are discarding information, rewrite.
Reid Spencer3da59db2006-11-27 01:05:10 +00007424 if (DestBitSize <= SrcBitSize && DestBitSize != 1) {
7425 // Don't insert two casts if they cannot be eliminated. We allow
7426 // two casts to be inserted if the sizes are the same. This could
7427 // only be converting signedness, which is a noop.
7428 if (DestBitSize == SrcBitSize ||
Reid Spencere4d87aa2006-12-23 06:05:41 +00007429 !ValueRequiresCast(CI.getOpcode(), Op1, DestTy,TD) ||
7430 !ValueRequiresCast(CI.getOpcode(), Op0, DestTy, TD)) {
Reid Spencer7eb76382006-12-13 17:19:09 +00007431 Instruction::CastOps opcode = CI.getOpcode();
Reid Spencer17212df2006-12-12 09:18:51 +00007432 Value *Op0c = InsertOperandCastBefore(opcode, Op0, DestTy, SrcI);
7433 Value *Op1c = InsertOperandCastBefore(opcode, Op1, DestTy, SrcI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007434 return BinaryOperator::Create(
Reid Spencer17212df2006-12-12 09:18:51 +00007435 cast<BinaryOperator>(SrcI)->getOpcode(), Op0c, Op1c);
Reid Spencer3da59db2006-11-27 01:05:10 +00007436 }
7437 }
7438
7439 // cast (xor bool X, true) to int --> xor (cast bool X to int), 1
7440 if (isa<ZExtInst>(CI) && SrcBitSize == 1 &&
7441 SrcI->getOpcode() == Instruction::Xor &&
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00007442 Op1 == ConstantInt::getTrue() &&
Reid Spencere4d87aa2006-12-23 06:05:41 +00007443 (!Op0->hasOneUse() || !isa<CmpInst>(Op0))) {
Reid Spencer17212df2006-12-12 09:18:51 +00007444 Value *New = InsertOperandCastBefore(Instruction::ZExt, Op0, DestTy, &CI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007445 return BinaryOperator::CreateXor(New, ConstantInt::get(CI.getType(), 1));
Reid Spencer3da59db2006-11-27 01:05:10 +00007446 }
7447 break;
7448 case Instruction::SDiv:
7449 case Instruction::UDiv:
7450 case Instruction::SRem:
7451 case Instruction::URem:
7452 // If we are just changing the sign, rewrite.
7453 if (DestBitSize == SrcBitSize) {
7454 // Don't insert two casts if they cannot be eliminated. We allow
7455 // two casts to be inserted if the sizes are the same. This could
7456 // only be converting signedness, which is a noop.
Reid Spencere4d87aa2006-12-23 06:05:41 +00007457 if (!ValueRequiresCast(CI.getOpcode(), Op1, DestTy, TD) ||
7458 !ValueRequiresCast(CI.getOpcode(), Op0, DestTy, TD)) {
Reid Spencer17212df2006-12-12 09:18:51 +00007459 Value *Op0c = InsertOperandCastBefore(Instruction::BitCast,
7460 Op0, DestTy, SrcI);
7461 Value *Op1c = InsertOperandCastBefore(Instruction::BitCast,
7462 Op1, DestTy, SrcI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007463 return BinaryOperator::Create(
Reid Spencer3da59db2006-11-27 01:05:10 +00007464 cast<BinaryOperator>(SrcI)->getOpcode(), Op0c, Op1c);
7465 }
7466 }
7467 break;
7468
7469 case Instruction::Shl:
7470 // Allow changing the sign of the source operand. Do not allow
7471 // changing the size of the shift, UNLESS the shift amount is a
7472 // constant. We must not change variable sized shifts to a smaller
7473 // size, because it is undefined to shift more bits out than exist
7474 // in the value.
7475 if (DestBitSize == SrcBitSize ||
7476 (DestBitSize < SrcBitSize && isa<Constant>(Op1))) {
Reid Spencer17212df2006-12-12 09:18:51 +00007477 Instruction::CastOps opcode = (DestBitSize == SrcBitSize ?
7478 Instruction::BitCast : Instruction::Trunc);
7479 Value *Op0c = InsertOperandCastBefore(opcode, Op0, DestTy, SrcI);
Reid Spencer832254e2007-02-02 02:16:23 +00007480 Value *Op1c = InsertOperandCastBefore(opcode, Op1, DestTy, SrcI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007481 return BinaryOperator::CreateShl(Op0c, Op1c);
Reid Spencer3da59db2006-11-27 01:05:10 +00007482 }
7483 break;
7484 case Instruction::AShr:
7485 // If this is a signed shr, and if all bits shifted in are about to be
7486 // truncated off, turn it into an unsigned shr to allow greater
7487 // simplifications.
7488 if (DestBitSize < SrcBitSize &&
7489 isa<ConstantInt>(Op1)) {
Zhou Sheng302748d2007-03-30 17:20:39 +00007490 uint32_t ShiftAmt = cast<ConstantInt>(Op1)->getLimitedValue(SrcBitSize);
Reid Spencer3da59db2006-11-27 01:05:10 +00007491 if (SrcBitSize > ShiftAmt && SrcBitSize-ShiftAmt >= DestBitSize) {
7492 // Insert the new logical shift right.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007493 return BinaryOperator::CreateLShr(Op0, Op1);
Reid Spencer3da59db2006-11-27 01:05:10 +00007494 }
7495 }
7496 break;
Reid Spencer3da59db2006-11-27 01:05:10 +00007497 }
7498 return 0;
7499}
7500
Chris Lattner8a9f5712007-04-11 06:57:46 +00007501Instruction *InstCombiner::visitTrunc(TruncInst &CI) {
Chris Lattner6aa5eb12006-11-29 07:04:07 +00007502 if (Instruction *Result = commonIntCastTransforms(CI))
7503 return Result;
7504
7505 Value *Src = CI.getOperand(0);
7506 const Type *Ty = CI.getType();
Zhou Sheng4351c642007-04-02 08:20:41 +00007507 uint32_t DestBitWidth = Ty->getPrimitiveSizeInBits();
7508 uint32_t SrcBitWidth = cast<IntegerType>(Src->getType())->getBitWidth();
Chris Lattner6aa5eb12006-11-29 07:04:07 +00007509
7510 if (Instruction *SrcI = dyn_cast<Instruction>(Src)) {
7511 switch (SrcI->getOpcode()) {
7512 default: break;
7513 case Instruction::LShr:
7514 // We can shrink lshr to something smaller if we know the bits shifted in
7515 // are already zeros.
7516 if (ConstantInt *ShAmtV = dyn_cast<ConstantInt>(SrcI->getOperand(1))) {
Zhou Sheng302748d2007-03-30 17:20:39 +00007517 uint32_t ShAmt = ShAmtV->getLimitedValue(SrcBitWidth);
Chris Lattner6aa5eb12006-11-29 07:04:07 +00007518
7519 // Get a mask for the bits shifting in.
Zhou Shenge82fca02007-03-28 09:19:01 +00007520 APInt Mask(APInt::getLowBitsSet(SrcBitWidth, ShAmt).shl(DestBitWidth));
Reid Spencer17212df2006-12-12 09:18:51 +00007521 Value* SrcIOp0 = SrcI->getOperand(0);
7522 if (SrcI->hasOneUse() && MaskedValueIsZero(SrcIOp0, Mask)) {
Chris Lattner6aa5eb12006-11-29 07:04:07 +00007523 if (ShAmt >= DestBitWidth) // All zeros.
7524 return ReplaceInstUsesWith(CI, Constant::getNullValue(Ty));
7525
7526 // Okay, we can shrink this. Truncate the input, then return a new
7527 // shift.
Reid Spencer832254e2007-02-02 02:16:23 +00007528 Value *V1 = InsertCastBefore(Instruction::Trunc, SrcIOp0, Ty, CI);
7529 Value *V2 = InsertCastBefore(Instruction::Trunc, SrcI->getOperand(1),
7530 Ty, CI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007531 return BinaryOperator::CreateLShr(V1, V2);
Chris Lattner6aa5eb12006-11-29 07:04:07 +00007532 }
Chris Lattnere13ab2a2006-12-05 01:26:29 +00007533 } else { // This is a variable shr.
7534
7535 // Turn 'trunc (lshr X, Y) to bool' into '(X & (1 << Y)) != 0'. This is
7536 // more LLVM instructions, but allows '1 << Y' to be hoisted if
7537 // loop-invariant and CSE'd.
Reid Spencer4fe16d62007-01-11 18:21:29 +00007538 if (CI.getType() == Type::Int1Ty && SrcI->hasOneUse()) {
Chris Lattnere13ab2a2006-12-05 01:26:29 +00007539 Value *One = ConstantInt::get(SrcI->getType(), 1);
7540
Reid Spencer832254e2007-02-02 02:16:23 +00007541 Value *V = InsertNewInstBefore(
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007542 BinaryOperator::CreateShl(One, SrcI->getOperand(1),
Reid Spencer832254e2007-02-02 02:16:23 +00007543 "tmp"), CI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007544 V = InsertNewInstBefore(BinaryOperator::CreateAnd(V,
Chris Lattnere13ab2a2006-12-05 01:26:29 +00007545 SrcI->getOperand(0),
7546 "tmp"), CI);
7547 Value *Zero = Constant::getNullValue(V->getType());
Reid Spencere4d87aa2006-12-23 06:05:41 +00007548 return new ICmpInst(ICmpInst::ICMP_NE, V, Zero);
Chris Lattnere13ab2a2006-12-05 01:26:29 +00007549 }
Chris Lattner6aa5eb12006-11-29 07:04:07 +00007550 }
7551 break;
7552 }
7553 }
7554
7555 return 0;
Reid Spencer3da59db2006-11-27 01:05:10 +00007556}
7557
Evan Chengb98a10e2008-03-24 00:21:34 +00007558/// transformZExtICmp - Transform (zext icmp) to bitwise / integer operations
7559/// in order to eliminate the icmp.
7560Instruction *InstCombiner::transformZExtICmp(ICmpInst *ICI, Instruction &CI,
7561 bool DoXform) {
7562 // If we are just checking for a icmp eq of a single bit and zext'ing it
7563 // to an integer, then shift the bit to the appropriate place and then
7564 // cast to integer to avoid the comparison.
7565 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(ICI->getOperand(1))) {
7566 const APInt &Op1CV = Op1C->getValue();
7567
7568 // zext (x <s 0) to i32 --> x>>u31 true if signbit set.
7569 // zext (x >s -1) to i32 --> (x>>u31)^1 true if signbit clear.
7570 if ((ICI->getPredicate() == ICmpInst::ICMP_SLT && Op1CV == 0) ||
7571 (ICI->getPredicate() == ICmpInst::ICMP_SGT &&Op1CV.isAllOnesValue())) {
7572 if (!DoXform) return ICI;
7573
7574 Value *In = ICI->getOperand(0);
7575 Value *Sh = ConstantInt::get(In->getType(),
7576 In->getType()->getPrimitiveSizeInBits()-1);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007577 In = InsertNewInstBefore(BinaryOperator::CreateLShr(In, Sh,
Evan Chengb98a10e2008-03-24 00:21:34 +00007578 In->getName()+".lobit"),
7579 CI);
7580 if (In->getType() != CI.getType())
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007581 In = CastInst::CreateIntegerCast(In, CI.getType(),
Evan Chengb98a10e2008-03-24 00:21:34 +00007582 false/*ZExt*/, "tmp", &CI);
7583
7584 if (ICI->getPredicate() == ICmpInst::ICMP_SGT) {
7585 Constant *One = ConstantInt::get(In->getType(), 1);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007586 In = InsertNewInstBefore(BinaryOperator::CreateXor(In, One,
Evan Chengb98a10e2008-03-24 00:21:34 +00007587 In->getName()+".not"),
7588 CI);
7589 }
7590
7591 return ReplaceInstUsesWith(CI, In);
7592 }
7593
7594
7595
7596 // zext (X == 0) to i32 --> X^1 iff X has only the low bit set.
7597 // zext (X == 0) to i32 --> (X>>1)^1 iff X has only the 2nd bit set.
7598 // zext (X == 1) to i32 --> X iff X has only the low bit set.
7599 // zext (X == 2) to i32 --> X>>1 iff X has only the 2nd bit set.
7600 // zext (X != 0) to i32 --> X iff X has only the low bit set.
7601 // zext (X != 0) to i32 --> X>>1 iff X has only the 2nd bit set.
7602 // zext (X != 1) to i32 --> X^1 iff X has only the low bit set.
7603 // zext (X != 2) to i32 --> (X>>1)^1 iff X has only the 2nd bit set.
7604 if ((Op1CV == 0 || Op1CV.isPowerOf2()) &&
7605 // This only works for EQ and NE
7606 ICI->isEquality()) {
7607 // If Op1C some other power of two, convert:
7608 uint32_t BitWidth = Op1C->getType()->getBitWidth();
7609 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
7610 APInt TypeMask(APInt::getAllOnesValue(BitWidth));
7611 ComputeMaskedBits(ICI->getOperand(0), TypeMask, KnownZero, KnownOne);
7612
7613 APInt KnownZeroMask(~KnownZero);
7614 if (KnownZeroMask.isPowerOf2()) { // Exactly 1 possible 1?
7615 if (!DoXform) return ICI;
7616
7617 bool isNE = ICI->getPredicate() == ICmpInst::ICMP_NE;
7618 if (Op1CV != 0 && (Op1CV != KnownZeroMask)) {
7619 // (X&4) == 2 --> false
7620 // (X&4) != 2 --> true
7621 Constant *Res = ConstantInt::get(Type::Int1Ty, isNE);
7622 Res = ConstantExpr::getZExt(Res, CI.getType());
7623 return ReplaceInstUsesWith(CI, Res);
7624 }
7625
7626 uint32_t ShiftAmt = KnownZeroMask.logBase2();
7627 Value *In = ICI->getOperand(0);
7628 if (ShiftAmt) {
7629 // Perform a logical shr by shiftamt.
7630 // Insert the shift to put the result in the low bit.
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007631 In = InsertNewInstBefore(BinaryOperator::CreateLShr(In,
Evan Chengb98a10e2008-03-24 00:21:34 +00007632 ConstantInt::get(In->getType(), ShiftAmt),
7633 In->getName()+".lobit"), CI);
7634 }
7635
7636 if ((Op1CV != 0) == isNE) { // Toggle the low bit.
7637 Constant *One = ConstantInt::get(In->getType(), 1);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007638 In = BinaryOperator::CreateXor(In, One, "tmp");
Evan Chengb98a10e2008-03-24 00:21:34 +00007639 InsertNewInstBefore(cast<Instruction>(In), CI);
7640 }
7641
7642 if (CI.getType() == In->getType())
7643 return ReplaceInstUsesWith(CI, In);
7644 else
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007645 return CastInst::CreateIntegerCast(In, CI.getType(), false/*ZExt*/);
Evan Chengb98a10e2008-03-24 00:21:34 +00007646 }
7647 }
7648 }
7649
7650 return 0;
7651}
7652
Chris Lattner8a9f5712007-04-11 06:57:46 +00007653Instruction *InstCombiner::visitZExt(ZExtInst &CI) {
Reid Spencer3da59db2006-11-27 01:05:10 +00007654 // If one of the common conversion will work ..
7655 if (Instruction *Result = commonIntCastTransforms(CI))
7656 return Result;
7657
7658 Value *Src = CI.getOperand(0);
7659
7660 // If this is a cast of a cast
7661 if (CastInst *CSrc = dyn_cast<CastInst>(Src)) { // A->B->C cast
Reid Spencer3da59db2006-11-27 01:05:10 +00007662 // If this is a TRUNC followed by a ZEXT then we are dealing with integral
7663 // types and if the sizes are just right we can convert this into a logical
7664 // 'and' which will be much cheaper than the pair of casts.
7665 if (isa<TruncInst>(CSrc)) {
7666 // Get the sizes of the types involved
7667 Value *A = CSrc->getOperand(0);
Zhou Sheng4351c642007-04-02 08:20:41 +00007668 uint32_t SrcSize = A->getType()->getPrimitiveSizeInBits();
7669 uint32_t MidSize = CSrc->getType()->getPrimitiveSizeInBits();
7670 uint32_t DstSize = CI.getType()->getPrimitiveSizeInBits();
Reid Spencer3da59db2006-11-27 01:05:10 +00007671 // If we're actually extending zero bits and the trunc is a no-op
7672 if (MidSize < DstSize && SrcSize == DstSize) {
7673 // Replace both of the casts with an And of the type mask.
Zhou Shenge82fca02007-03-28 09:19:01 +00007674 APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize));
Reid Spencerad6676e2007-03-22 20:56:53 +00007675 Constant *AndConst = ConstantInt::get(AndValue);
Reid Spencer3da59db2006-11-27 01:05:10 +00007676 Instruction *And =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007677 BinaryOperator::CreateAnd(CSrc->getOperand(0), AndConst);
Reid Spencer3da59db2006-11-27 01:05:10 +00007678 // Unfortunately, if the type changed, we need to cast it back.
7679 if (And->getType() != CI.getType()) {
7680 And->setName(CSrc->getName()+".mask");
7681 InsertNewInstBefore(And, CI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007682 And = CastInst::CreateIntegerCast(And, CI.getType(), false/*ZExt*/);
Reid Spencer3da59db2006-11-27 01:05:10 +00007683 }
7684 return And;
7685 }
7686 }
7687 }
7688
Evan Chengb98a10e2008-03-24 00:21:34 +00007689 if (ICmpInst *ICI = dyn_cast<ICmpInst>(Src))
7690 return transformZExtICmp(ICI, CI);
Chris Lattnera2e2c9b2007-04-11 06:53:04 +00007691
Evan Chengb98a10e2008-03-24 00:21:34 +00007692 BinaryOperator *SrcI = dyn_cast<BinaryOperator>(Src);
7693 if (SrcI && SrcI->getOpcode() == Instruction::Or) {
7694 // zext (or icmp, icmp) --> or (zext icmp), (zext icmp) if at least one
7695 // of the (zext icmp) will be transformed.
7696 ICmpInst *LHS = dyn_cast<ICmpInst>(SrcI->getOperand(0));
7697 ICmpInst *RHS = dyn_cast<ICmpInst>(SrcI->getOperand(1));
7698 if (LHS && RHS && LHS->hasOneUse() && RHS->hasOneUse() &&
7699 (transformZExtICmp(LHS, CI, false) ||
7700 transformZExtICmp(RHS, CI, false))) {
7701 Value *LCast = InsertCastBefore(Instruction::ZExt, LHS, CI.getType(), CI);
7702 Value *RCast = InsertCastBefore(Instruction::ZExt, RHS, CI.getType(), CI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007703 return BinaryOperator::Create(Instruction::Or, LCast, RCast);
Chris Lattner66bc3252007-04-11 05:45:39 +00007704 }
Evan Chengb98a10e2008-03-24 00:21:34 +00007705 }
7706
Reid Spencer3da59db2006-11-27 01:05:10 +00007707 return 0;
7708}
7709
Chris Lattner8a9f5712007-04-11 06:57:46 +00007710Instruction *InstCombiner::visitSExt(SExtInst &CI) {
Chris Lattnerba417832007-04-11 06:12:58 +00007711 if (Instruction *I = commonIntCastTransforms(CI))
7712 return I;
7713
Chris Lattner8a9f5712007-04-11 06:57:46 +00007714 Value *Src = CI.getOperand(0);
7715
7716 // sext (x <s 0) -> ashr x, 31 -> all ones if signed
7717 // sext (x >s -1) -> ashr x, 31 -> all ones if not signed
7718 if (ICmpInst *ICI = dyn_cast<ICmpInst>(Src)) {
7719 // If we are just checking for a icmp eq of a single bit and zext'ing it
7720 // to an integer, then shift the bit to the appropriate place and then
7721 // cast to integer to avoid the comparison.
7722 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(ICI->getOperand(1))) {
7723 const APInt &Op1CV = Op1C->getValue();
7724
7725 // sext (x <s 0) to i32 --> x>>s31 true if signbit set.
7726 // sext (x >s -1) to i32 --> (x>>s31)^-1 true if signbit clear.
7727 if ((ICI->getPredicate() == ICmpInst::ICMP_SLT && Op1CV == 0) ||
7728 (ICI->getPredicate() == ICmpInst::ICMP_SGT &&Op1CV.isAllOnesValue())){
7729 Value *In = ICI->getOperand(0);
7730 Value *Sh = ConstantInt::get(In->getType(),
7731 In->getType()->getPrimitiveSizeInBits()-1);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007732 In = InsertNewInstBefore(BinaryOperator::CreateAShr(In, Sh,
Chris Lattnere34e9a22007-04-14 23:32:02 +00007733 In->getName()+".lobit"),
Chris Lattner8a9f5712007-04-11 06:57:46 +00007734 CI);
7735 if (In->getType() != CI.getType())
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007736 In = CastInst::CreateIntegerCast(In, CI.getType(),
Chris Lattner8a9f5712007-04-11 06:57:46 +00007737 true/*SExt*/, "tmp", &CI);
7738
7739 if (ICI->getPredicate() == ICmpInst::ICMP_SGT)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007740 In = InsertNewInstBefore(BinaryOperator::CreateNot(In,
Chris Lattner8a9f5712007-04-11 06:57:46 +00007741 In->getName()+".not"), CI);
7742
7743 return ReplaceInstUsesWith(CI, In);
7744 }
7745 }
7746 }
Dan Gohmanf35c8822008-05-20 21:01:12 +00007747
7748 // See if the value being truncated is already sign extended. If so, just
7749 // eliminate the trunc/sext pair.
7750 if (getOpcode(Src) == Instruction::Trunc) {
7751 Value *Op = cast<User>(Src)->getOperand(0);
7752 unsigned OpBits = cast<IntegerType>(Op->getType())->getBitWidth();
7753 unsigned MidBits = cast<IntegerType>(Src->getType())->getBitWidth();
7754 unsigned DestBits = cast<IntegerType>(CI.getType())->getBitWidth();
7755 unsigned NumSignBits = ComputeNumSignBits(Op);
7756
7757 if (OpBits == DestBits) {
7758 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
7759 // bits, it is already ready.
7760 if (NumSignBits > DestBits-MidBits)
7761 return ReplaceInstUsesWith(CI, Op);
7762 } else if (OpBits < DestBits) {
7763 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
7764 // bits, just sext from i32.
7765 if (NumSignBits > OpBits-MidBits)
7766 return new SExtInst(Op, CI.getType(), "tmp");
7767 } else {
7768 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
7769 // bits, just truncate to i32.
7770 if (NumSignBits > OpBits-MidBits)
7771 return new TruncInst(Op, CI.getType(), "tmp");
7772 }
7773 }
Chris Lattner46bbad22008-08-06 07:35:52 +00007774
7775 // If the input is a shl/ashr pair of a same constant, then this is a sign
7776 // extension from a smaller value. If we could trust arbitrary bitwidth
7777 // integers, we could turn this into a truncate to the smaller bit and then
7778 // use a sext for the whole extension. Since we don't, look deeper and check
7779 // for a truncate. If the source and dest are the same type, eliminate the
7780 // trunc and extend and just do shifts. For example, turn:
7781 // %a = trunc i32 %i to i8
7782 // %b = shl i8 %a, 6
7783 // %c = ashr i8 %b, 6
7784 // %d = sext i8 %c to i32
7785 // into:
7786 // %a = shl i32 %i, 30
7787 // %d = ashr i32 %a, 30
7788 Value *A = 0;
7789 ConstantInt *BA = 0, *CA = 0;
7790 if (match(Src, m_AShr(m_Shl(m_Value(A), m_ConstantInt(BA)),
7791 m_ConstantInt(CA))) &&
7792 BA == CA && isa<TruncInst>(A)) {
7793 Value *I = cast<TruncInst>(A)->getOperand(0);
7794 if (I->getType() == CI.getType()) {
7795 unsigned MidSize = Src->getType()->getPrimitiveSizeInBits();
7796 unsigned SrcDstSize = CI.getType()->getPrimitiveSizeInBits();
7797 unsigned ShAmt = CA->getZExtValue()+SrcDstSize-MidSize;
7798 Constant *ShAmtV = ConstantInt::get(CI.getType(), ShAmt);
7799 I = InsertNewInstBefore(BinaryOperator::CreateShl(I, ShAmtV,
7800 CI.getName()), CI);
7801 return BinaryOperator::CreateAShr(I, ShAmtV);
7802 }
7803 }
7804
Chris Lattnerba417832007-04-11 06:12:58 +00007805 return 0;
Reid Spencer3da59db2006-11-27 01:05:10 +00007806}
7807
Chris Lattnerb7530652008-01-27 05:29:54 +00007808/// FitsInFPType - Return a Constant* for the specified FP constant if it fits
7809/// in the specified FP type without changing its value.
Chris Lattner02a260a2008-04-20 00:41:09 +00007810static Constant *FitsInFPType(ConstantFP *CFP, const fltSemantics &Sem) {
Chris Lattnerb7530652008-01-27 05:29:54 +00007811 APFloat F = CFP->getValueAPF();
7812 if (F.convert(Sem, APFloat::rmNearestTiesToEven) == APFloat::opOK)
Chris Lattner02a260a2008-04-20 00:41:09 +00007813 return ConstantFP::get(F);
Chris Lattnerb7530652008-01-27 05:29:54 +00007814 return 0;
7815}
7816
7817/// LookThroughFPExtensions - If this is an fp extension instruction, look
7818/// through it until we get the source value.
7819static Value *LookThroughFPExtensions(Value *V) {
7820 if (Instruction *I = dyn_cast<Instruction>(V))
7821 if (I->getOpcode() == Instruction::FPExt)
7822 return LookThroughFPExtensions(I->getOperand(0));
7823
7824 // If this value is a constant, return the constant in the smallest FP type
7825 // that can accurately represent it. This allows us to turn
7826 // (float)((double)X+2.0) into x+2.0f.
7827 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) {
7828 if (CFP->getType() == Type::PPC_FP128Ty)
7829 return V; // No constant folding of this.
7830 // See if the value can be truncated to float and then reextended.
Chris Lattner02a260a2008-04-20 00:41:09 +00007831 if (Value *V = FitsInFPType(CFP, APFloat::IEEEsingle))
Chris Lattnerb7530652008-01-27 05:29:54 +00007832 return V;
7833 if (CFP->getType() == Type::DoubleTy)
7834 return V; // Won't shrink.
Chris Lattner02a260a2008-04-20 00:41:09 +00007835 if (Value *V = FitsInFPType(CFP, APFloat::IEEEdouble))
Chris Lattnerb7530652008-01-27 05:29:54 +00007836 return V;
7837 // Don't try to shrink to various long double types.
7838 }
7839
7840 return V;
7841}
7842
7843Instruction *InstCombiner::visitFPTrunc(FPTruncInst &CI) {
7844 if (Instruction *I = commonCastTransforms(CI))
7845 return I;
7846
7847 // If we have fptrunc(add (fpextend x), (fpextend y)), where x and y are
7848 // smaller than the destination type, we can eliminate the truncate by doing
7849 // the add as the smaller type. This applies to add/sub/mul/div as well as
7850 // many builtins (sqrt, etc).
7851 BinaryOperator *OpI = dyn_cast<BinaryOperator>(CI.getOperand(0));
7852 if (OpI && OpI->hasOneUse()) {
7853 switch (OpI->getOpcode()) {
7854 default: break;
7855 case Instruction::Add:
7856 case Instruction::Sub:
7857 case Instruction::Mul:
7858 case Instruction::FDiv:
7859 case Instruction::FRem:
7860 const Type *SrcTy = OpI->getType();
7861 Value *LHSTrunc = LookThroughFPExtensions(OpI->getOperand(0));
7862 Value *RHSTrunc = LookThroughFPExtensions(OpI->getOperand(1));
7863 if (LHSTrunc->getType() != SrcTy &&
7864 RHSTrunc->getType() != SrcTy) {
7865 unsigned DstSize = CI.getType()->getPrimitiveSizeInBits();
7866 // If the source types were both smaller than the destination type of
7867 // the cast, do this xform.
7868 if (LHSTrunc->getType()->getPrimitiveSizeInBits() <= DstSize &&
7869 RHSTrunc->getType()->getPrimitiveSizeInBits() <= DstSize) {
7870 LHSTrunc = InsertCastBefore(Instruction::FPExt, LHSTrunc,
7871 CI.getType(), CI);
7872 RHSTrunc = InsertCastBefore(Instruction::FPExt, RHSTrunc,
7873 CI.getType(), CI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00007874 return BinaryOperator::Create(OpI->getOpcode(), LHSTrunc, RHSTrunc);
Chris Lattnerb7530652008-01-27 05:29:54 +00007875 }
7876 }
7877 break;
7878 }
7879 }
7880 return 0;
Reid Spencer3da59db2006-11-27 01:05:10 +00007881}
7882
7883Instruction *InstCombiner::visitFPExt(CastInst &CI) {
7884 return commonCastTransforms(CI);
7885}
7886
Chris Lattner0c7a9a02008-05-19 20:25:04 +00007887Instruction *InstCombiner::visitFPToUI(FPToUIInst &FI) {
Chris Lattner5af5f462008-08-06 05:13:06 +00007888 Instruction *OpI = dyn_cast<Instruction>(FI.getOperand(0));
7889 if (OpI == 0)
7890 return commonCastTransforms(FI);
7891
7892 // fptoui(uitofp(X)) --> X
7893 // fptoui(sitofp(X)) --> X
7894 // This is safe if the intermediate type has enough bits in its mantissa to
7895 // accurately represent all values of X. For example, do not do this with
7896 // i64->float->i64. This is also safe for sitofp case, because any negative
7897 // 'X' value would cause an undefined result for the fptoui.
7898 if ((isa<UIToFPInst>(OpI) || isa<SIToFPInst>(OpI)) &&
7899 OpI->getOperand(0)->getType() == FI.getType() &&
7900 (int)FI.getType()->getPrimitiveSizeInBits() < /*extra bit for sign */
7901 OpI->getType()->getFPMantissaWidth())
7902 return ReplaceInstUsesWith(FI, OpI->getOperand(0));
Chris Lattner0c7a9a02008-05-19 20:25:04 +00007903
7904 return commonCastTransforms(FI);
Reid Spencer3da59db2006-11-27 01:05:10 +00007905}
7906
Chris Lattner0c7a9a02008-05-19 20:25:04 +00007907Instruction *InstCombiner::visitFPToSI(FPToSIInst &FI) {
Chris Lattner5af5f462008-08-06 05:13:06 +00007908 Instruction *OpI = dyn_cast<Instruction>(FI.getOperand(0));
7909 if (OpI == 0)
7910 return commonCastTransforms(FI);
7911
7912 // fptosi(sitofp(X)) --> X
7913 // fptosi(uitofp(X)) --> X
7914 // This is safe if the intermediate type has enough bits in its mantissa to
7915 // accurately represent all values of X. For example, do not do this with
7916 // i64->float->i64. This is also safe for sitofp case, because any negative
7917 // 'X' value would cause an undefined result for the fptoui.
7918 if ((isa<UIToFPInst>(OpI) || isa<SIToFPInst>(OpI)) &&
7919 OpI->getOperand(0)->getType() == FI.getType() &&
7920 (int)FI.getType()->getPrimitiveSizeInBits() <=
7921 OpI->getType()->getFPMantissaWidth())
7922 return ReplaceInstUsesWith(FI, OpI->getOperand(0));
Chris Lattner0c7a9a02008-05-19 20:25:04 +00007923
7924 return commonCastTransforms(FI);
Reid Spencer3da59db2006-11-27 01:05:10 +00007925}
7926
7927Instruction *InstCombiner::visitUIToFP(CastInst &CI) {
7928 return commonCastTransforms(CI);
7929}
7930
7931Instruction *InstCombiner::visitSIToFP(CastInst &CI) {
7932 return commonCastTransforms(CI);
7933}
7934
7935Instruction *InstCombiner::visitPtrToInt(CastInst &CI) {
Chris Lattnerd3e28342007-04-27 17:44:50 +00007936 return commonPointerCastTransforms(CI);
Reid Spencer3da59db2006-11-27 01:05:10 +00007937}
7938
Chris Lattnerf9d9e452008-01-08 07:23:51 +00007939Instruction *InstCombiner::visitIntToPtr(IntToPtrInst &CI) {
7940 if (Instruction *I = commonCastTransforms(CI))
7941 return I;
7942
7943 const Type *DestPointee = cast<PointerType>(CI.getType())->getElementType();
7944 if (!DestPointee->isSized()) return 0;
7945
7946 // If this is inttoptr(add (ptrtoint x), cst), try to turn this into a GEP.
7947 ConstantInt *Cst;
7948 Value *X;
7949 if (match(CI.getOperand(0), m_Add(m_Cast<PtrToIntInst>(m_Value(X)),
7950 m_ConstantInt(Cst)))) {
7951 // If the source and destination operands have the same type, see if this
7952 // is a single-index GEP.
7953 if (X->getType() == CI.getType()) {
7954 // Get the size of the pointee type.
Bill Wendlingb9d4f8d2008-03-14 05:12:19 +00007955 uint64_t Size = TD->getABITypeSize(DestPointee);
Chris Lattnerf9d9e452008-01-08 07:23:51 +00007956
7957 // Convert the constant to intptr type.
7958 APInt Offset = Cst->getValue();
7959 Offset.sextOrTrunc(TD->getPointerSizeInBits());
7960
7961 // If Offset is evenly divisible by Size, we can do this xform.
7962 if (Size && !APIntOps::srem(Offset, APInt(Offset.getBitWidth(), Size))){
7963 Offset = APIntOps::sdiv(Offset, APInt(Offset.getBitWidth(), Size));
Gabor Greif051a9502008-04-06 20:25:17 +00007964 return GetElementPtrInst::Create(X, ConstantInt::get(Offset));
Chris Lattnerf9d9e452008-01-08 07:23:51 +00007965 }
7966 }
7967 // TODO: Could handle other cases, e.g. where add is indexing into field of
7968 // struct etc.
7969 } else if (CI.getOperand(0)->hasOneUse() &&
7970 match(CI.getOperand(0), m_Add(m_Value(X), m_ConstantInt(Cst)))) {
7971 // Otherwise, if this is inttoptr(add x, cst), try to turn this into an
7972 // "inttoptr+GEP" instead of "add+intptr".
7973
7974 // Get the size of the pointee type.
7975 uint64_t Size = TD->getABITypeSize(DestPointee);
7976
7977 // Convert the constant to intptr type.
7978 APInt Offset = Cst->getValue();
7979 Offset.sextOrTrunc(TD->getPointerSizeInBits());
7980
7981 // If Offset is evenly divisible by Size, we can do this xform.
7982 if (Size && !APIntOps::srem(Offset, APInt(Offset.getBitWidth(), Size))){
7983 Offset = APIntOps::sdiv(Offset, APInt(Offset.getBitWidth(), Size));
7984
7985 Instruction *P = InsertNewInstBefore(new IntToPtrInst(X, CI.getType(),
7986 "tmp"), CI);
Gabor Greif051a9502008-04-06 20:25:17 +00007987 return GetElementPtrInst::Create(P, ConstantInt::get(Offset), "tmp");
Chris Lattnerf9d9e452008-01-08 07:23:51 +00007988 }
7989 }
7990 return 0;
Reid Spencer3da59db2006-11-27 01:05:10 +00007991}
7992
Chris Lattnerd3e28342007-04-27 17:44:50 +00007993Instruction *InstCombiner::visitBitCast(BitCastInst &CI) {
Reid Spencer3da59db2006-11-27 01:05:10 +00007994 // If the operands are integer typed then apply the integer transforms,
7995 // otherwise just apply the common ones.
7996 Value *Src = CI.getOperand(0);
7997 const Type *SrcTy = Src->getType();
7998 const Type *DestTy = CI.getType();
7999
Chris Lattner42a75512007-01-15 02:27:26 +00008000 if (SrcTy->isInteger() && DestTy->isInteger()) {
Reid Spencer3da59db2006-11-27 01:05:10 +00008001 if (Instruction *Result = commonIntCastTransforms(CI))
8002 return Result;
Chris Lattnerd3e28342007-04-27 17:44:50 +00008003 } else if (isa<PointerType>(SrcTy)) {
8004 if (Instruction *I = commonPointerCastTransforms(CI))
8005 return I;
Reid Spencer3da59db2006-11-27 01:05:10 +00008006 } else {
8007 if (Instruction *Result = commonCastTransforms(CI))
8008 return Result;
8009 }
8010
8011
8012 // Get rid of casts from one type to the same type. These are useless and can
8013 // be replaced by the operand.
8014 if (DestTy == Src->getType())
8015 return ReplaceInstUsesWith(CI, Src);
8016
Reid Spencer3da59db2006-11-27 01:05:10 +00008017 if (const PointerType *DstPTy = dyn_cast<PointerType>(DestTy)) {
Chris Lattnerd3e28342007-04-27 17:44:50 +00008018 const PointerType *SrcPTy = cast<PointerType>(SrcTy);
8019 const Type *DstElTy = DstPTy->getElementType();
8020 const Type *SrcElTy = SrcPTy->getElementType();
8021
Nate Begeman83ad90a2008-03-31 00:22:16 +00008022 // If the address spaces don't match, don't eliminate the bitcast, which is
8023 // required for changing types.
8024 if (SrcPTy->getAddressSpace() != DstPTy->getAddressSpace())
8025 return 0;
8026
Chris Lattnerd3e28342007-04-27 17:44:50 +00008027 // If we are casting a malloc or alloca to a pointer to a type of the same
8028 // size, rewrite the allocation instruction to allocate the "right" type.
8029 if (AllocationInst *AI = dyn_cast<AllocationInst>(Src))
8030 if (Instruction *V = PromoteCastOfAllocation(CI, *AI))
8031 return V;
8032
Chris Lattnerd717c182007-05-05 22:32:24 +00008033 // If the source and destination are pointers, and this cast is equivalent
8034 // to a getelementptr X, 0, 0, 0... turn it into the appropriate gep.
Chris Lattnerd3e28342007-04-27 17:44:50 +00008035 // This can enhance SROA and other transforms that want type-safe pointers.
8036 Constant *ZeroUInt = Constant::getNullValue(Type::Int32Ty);
8037 unsigned NumZeros = 0;
8038 while (SrcElTy != DstElTy &&
8039 isa<CompositeType>(SrcElTy) && !isa<PointerType>(SrcElTy) &&
8040 SrcElTy->getNumContainedTypes() /* not "{}" */) {
8041 SrcElTy = cast<CompositeType>(SrcElTy)->getTypeAtIndex(ZeroUInt);
8042 ++NumZeros;
8043 }
Chris Lattner4e998b22004-09-29 05:07:12 +00008044
Chris Lattnerd3e28342007-04-27 17:44:50 +00008045 // If we found a path from the src to dest, create the getelementptr now.
8046 if (SrcElTy == DstElTy) {
8047 SmallVector<Value*, 8> Idxs(NumZeros+1, ZeroUInt);
Gabor Greif051a9502008-04-06 20:25:17 +00008048 return GetElementPtrInst::Create(Src, Idxs.begin(), Idxs.end(), "",
8049 ((Instruction*) NULL));
Chris Lattner9fb92132006-04-12 18:09:35 +00008050 }
Reid Spencer3da59db2006-11-27 01:05:10 +00008051 }
Chris Lattner24c8e382003-07-24 17:35:25 +00008052
Reid Spencer3da59db2006-11-27 01:05:10 +00008053 if (ShuffleVectorInst *SVI = dyn_cast<ShuffleVectorInst>(Src)) {
8054 if (SVI->hasOneUse()) {
8055 // Okay, we have (bitconvert (shuffle ..)). Check to see if this is
8056 // a bitconvert to a vector with the same # elts.
Reid Spencer9d6565a2007-02-15 02:26:10 +00008057 if (isa<VectorType>(DestTy) &&
8058 cast<VectorType>(DestTy)->getNumElements() ==
Reid Spencer3da59db2006-11-27 01:05:10 +00008059 SVI->getType()->getNumElements()) {
8060 CastInst *Tmp;
8061 // If either of the operands is a cast from CI.getType(), then
8062 // evaluating the shuffle in the casted destination's type will allow
8063 // us to eliminate at least one cast.
8064 if (((Tmp = dyn_cast<CastInst>(SVI->getOperand(0))) &&
8065 Tmp->getOperand(0)->getType() == DestTy) ||
8066 ((Tmp = dyn_cast<CastInst>(SVI->getOperand(1))) &&
8067 Tmp->getOperand(0)->getType() == DestTy)) {
Reid Spencer17212df2006-12-12 09:18:51 +00008068 Value *LHS = InsertOperandCastBefore(Instruction::BitCast,
8069 SVI->getOperand(0), DestTy, &CI);
8070 Value *RHS = InsertOperandCastBefore(Instruction::BitCast,
8071 SVI->getOperand(1), DestTy, &CI);
Reid Spencer3da59db2006-11-27 01:05:10 +00008072 // Return a new shuffle vector. Use the same element ID's, as we
8073 // know the vector types match #elts.
8074 return new ShuffleVectorInst(LHS, RHS, SVI->getOperand(2));
Chris Lattner01575b72006-05-25 23:24:33 +00008075 }
8076 }
8077 }
8078 }
Chris Lattnerdd841ae2002-04-18 17:39:14 +00008079 return 0;
Chris Lattner8a2a3112001-12-14 16:52:21 +00008080}
8081
Chris Lattnere576b912004-04-09 23:46:01 +00008082/// GetSelectFoldableOperands - We want to turn code that looks like this:
8083/// %C = or %A, %B
8084/// %D = select %cond, %C, %A
8085/// into:
8086/// %C = select %cond, %B, 0
8087/// %D = or %A, %C
8088///
8089/// Assuming that the specified instruction is an operand to the select, return
8090/// a bitmask indicating which operands of this instruction are foldable if they
8091/// equal the other incoming value of the select.
8092///
8093static unsigned GetSelectFoldableOperands(Instruction *I) {
8094 switch (I->getOpcode()) {
8095 case Instruction::Add:
8096 case Instruction::Mul:
8097 case Instruction::And:
8098 case Instruction::Or:
8099 case Instruction::Xor:
8100 return 3; // Can fold through either operand.
8101 case Instruction::Sub: // Can only fold on the amount subtracted.
8102 case Instruction::Shl: // Can only fold on the shift amount.
Reid Spencer3822ff52006-11-08 06:47:33 +00008103 case Instruction::LShr:
8104 case Instruction::AShr:
Misha Brukmanfd939082005-04-21 23:48:37 +00008105 return 1;
Chris Lattnere576b912004-04-09 23:46:01 +00008106 default:
8107 return 0; // Cannot fold
8108 }
8109}
8110
8111/// GetSelectFoldableConstant - For the same transformation as the previous
8112/// function, return the identity constant that goes into the select.
8113static Constant *GetSelectFoldableConstant(Instruction *I) {
8114 switch (I->getOpcode()) {
8115 default: assert(0 && "This cannot happen!"); abort();
8116 case Instruction::Add:
8117 case Instruction::Sub:
8118 case Instruction::Or:
8119 case Instruction::Xor:
Chris Lattnere576b912004-04-09 23:46:01 +00008120 case Instruction::Shl:
Reid Spencer3822ff52006-11-08 06:47:33 +00008121 case Instruction::LShr:
8122 case Instruction::AShr:
Reid Spencer832254e2007-02-02 02:16:23 +00008123 return Constant::getNullValue(I->getType());
Chris Lattnere576b912004-04-09 23:46:01 +00008124 case Instruction::And:
Chris Lattner7cbe2eb2007-06-15 06:23:19 +00008125 return Constant::getAllOnesValue(I->getType());
Chris Lattnere576b912004-04-09 23:46:01 +00008126 case Instruction::Mul:
8127 return ConstantInt::get(I->getType(), 1);
8128 }
8129}
8130
Chris Lattner6fb5a4a2005-01-19 21:50:18 +00008131/// FoldSelectOpOp - Here we have (select c, TI, FI), and we know that TI and FI
8132/// have the same opcode and only one use each. Try to simplify this.
8133Instruction *InstCombiner::FoldSelectOpOp(SelectInst &SI, Instruction *TI,
8134 Instruction *FI) {
8135 if (TI->getNumOperands() == 1) {
8136 // If this is a non-volatile load or a cast from the same type,
8137 // merge.
Reid Spencer3da59db2006-11-27 01:05:10 +00008138 if (TI->isCast()) {
Chris Lattner6fb5a4a2005-01-19 21:50:18 +00008139 if (TI->getOperand(0)->getType() != FI->getOperand(0)->getType())
8140 return 0;
8141 } else {
8142 return 0; // unknown unary op.
8143 }
Misha Brukmanfd939082005-04-21 23:48:37 +00008144
Chris Lattner6fb5a4a2005-01-19 21:50:18 +00008145 // Fold this by inserting a select from the input values.
Gabor Greif051a9502008-04-06 20:25:17 +00008146 SelectInst *NewSI = SelectInst::Create(SI.getCondition(), TI->getOperand(0),
8147 FI->getOperand(0), SI.getName()+".v");
Chris Lattner6fb5a4a2005-01-19 21:50:18 +00008148 InsertNewInstBefore(NewSI, SI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008149 return CastInst::Create(Instruction::CastOps(TI->getOpcode()), NewSI,
Reid Spencer3da59db2006-11-27 01:05:10 +00008150 TI->getType());
Chris Lattner6fb5a4a2005-01-19 21:50:18 +00008151 }
8152
Reid Spencer832254e2007-02-02 02:16:23 +00008153 // Only handle binary operators here.
8154 if (!isa<BinaryOperator>(TI))
Chris Lattner6fb5a4a2005-01-19 21:50:18 +00008155 return 0;
8156
8157 // Figure out if the operations have any operands in common.
8158 Value *MatchOp, *OtherOpT, *OtherOpF;
8159 bool MatchIsOpZero;
8160 if (TI->getOperand(0) == FI->getOperand(0)) {
8161 MatchOp = TI->getOperand(0);
8162 OtherOpT = TI->getOperand(1);
8163 OtherOpF = FI->getOperand(1);
8164 MatchIsOpZero = true;
8165 } else if (TI->getOperand(1) == FI->getOperand(1)) {
8166 MatchOp = TI->getOperand(1);
8167 OtherOpT = TI->getOperand(0);
8168 OtherOpF = FI->getOperand(0);
8169 MatchIsOpZero = false;
8170 } else if (!TI->isCommutative()) {
8171 return 0;
8172 } else if (TI->getOperand(0) == FI->getOperand(1)) {
8173 MatchOp = TI->getOperand(0);
8174 OtherOpT = TI->getOperand(1);
8175 OtherOpF = FI->getOperand(0);
8176 MatchIsOpZero = true;
8177 } else if (TI->getOperand(1) == FI->getOperand(0)) {
8178 MatchOp = TI->getOperand(1);
8179 OtherOpT = TI->getOperand(0);
8180 OtherOpF = FI->getOperand(1);
8181 MatchIsOpZero = true;
8182 } else {
8183 return 0;
8184 }
8185
8186 // If we reach here, they do have operations in common.
Gabor Greif051a9502008-04-06 20:25:17 +00008187 SelectInst *NewSI = SelectInst::Create(SI.getCondition(), OtherOpT,
8188 OtherOpF, SI.getName()+".v");
Chris Lattner6fb5a4a2005-01-19 21:50:18 +00008189 InsertNewInstBefore(NewSI, SI);
8190
8191 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(TI)) {
8192 if (MatchIsOpZero)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008193 return BinaryOperator::Create(BO->getOpcode(), MatchOp, NewSI);
Chris Lattner6fb5a4a2005-01-19 21:50:18 +00008194 else
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008195 return BinaryOperator::Create(BO->getOpcode(), NewSI, MatchOp);
Chris Lattner6fb5a4a2005-01-19 21:50:18 +00008196 }
Reid Spencera07cb7d2007-02-02 14:41:37 +00008197 assert(0 && "Shouldn't get here");
8198 return 0;
Chris Lattner6fb5a4a2005-01-19 21:50:18 +00008199}
8200
Dan Gohman81b28ce2008-09-16 18:46:06 +00008201/// visitSelectInstWithICmp - Visit a SelectInst that has an
8202/// ICmpInst as its first operand.
8203///
8204Instruction *InstCombiner::visitSelectInstWithICmp(SelectInst &SI,
8205 ICmpInst *ICI) {
8206 bool Changed = false;
8207 ICmpInst::Predicate Pred = ICI->getPredicate();
8208 Value *CmpLHS = ICI->getOperand(0);
8209 Value *CmpRHS = ICI->getOperand(1);
8210 Value *TrueVal = SI.getTrueValue();
8211 Value *FalseVal = SI.getFalseValue();
8212
8213 // Check cases where the comparison is with a constant that
8214 // can be adjusted to fit the min/max idiom. We may edit ICI in
8215 // place here, so make sure the select is the only user.
8216 if (ICI->hasOneUse())
8217 if (ConstantInt *CI = dyn_cast<ConstantInt>(CmpRHS))
8218 switch (Pred) {
8219 default: break;
8220 case ICmpInst::ICMP_ULT:
8221 case ICmpInst::ICMP_SLT: {
8222 // X < MIN ? T : F --> F
8223 if (CI->isMinValue(Pred == ICmpInst::ICMP_SLT))
8224 return ReplaceInstUsesWith(SI, FalseVal);
8225 // X < C ? X : C-1 --> X > C-1 ? C-1 : X
8226 Constant *AdjustedRHS = SubOne(CI);
8227 if ((CmpLHS == TrueVal && AdjustedRHS == FalseVal) ||
8228 (CmpLHS == FalseVal && AdjustedRHS == TrueVal)) {
8229 Pred = ICmpInst::getSwappedPredicate(Pred);
8230 CmpRHS = AdjustedRHS;
8231 std::swap(FalseVal, TrueVal);
8232 ICI->setPredicate(Pred);
8233 ICI->setOperand(1, CmpRHS);
8234 SI.setOperand(1, TrueVal);
8235 SI.setOperand(2, FalseVal);
8236 Changed = true;
8237 }
8238 break;
8239 }
8240 case ICmpInst::ICMP_UGT:
8241 case ICmpInst::ICMP_SGT: {
8242 // X > MAX ? T : F --> F
8243 if (CI->isMaxValue(Pred == ICmpInst::ICMP_SGT))
8244 return ReplaceInstUsesWith(SI, FalseVal);
8245 // X > C ? X : C+1 --> X < C+1 ? C+1 : X
8246 Constant *AdjustedRHS = AddOne(CI);
8247 if ((CmpLHS == TrueVal && AdjustedRHS == FalseVal) ||
8248 (CmpLHS == FalseVal && AdjustedRHS == TrueVal)) {
8249 Pred = ICmpInst::getSwappedPredicate(Pred);
8250 CmpRHS = AdjustedRHS;
8251 std::swap(FalseVal, TrueVal);
8252 ICI->setPredicate(Pred);
8253 ICI->setOperand(1, CmpRHS);
8254 SI.setOperand(1, TrueVal);
8255 SI.setOperand(2, FalseVal);
8256 Changed = true;
8257 }
8258 break;
8259 }
8260 }
8261
8262 if (CmpLHS == TrueVal && CmpRHS == FalseVal) {
8263 // Transform (X == Y) ? X : Y -> Y
8264 if (Pred == ICmpInst::ICMP_EQ)
8265 return ReplaceInstUsesWith(SI, FalseVal);
8266 // Transform (X != Y) ? X : Y -> X
8267 if (Pred == ICmpInst::ICMP_NE)
8268 return ReplaceInstUsesWith(SI, TrueVal);
8269 /// NOTE: if we wanted to, this is where to detect integer MIN/MAX
8270
8271 } else if (CmpLHS == FalseVal && CmpRHS == TrueVal) {
8272 // Transform (X == Y) ? Y : X -> X
8273 if (Pred == ICmpInst::ICMP_EQ)
8274 return ReplaceInstUsesWith(SI, FalseVal);
8275 // Transform (X != Y) ? Y : X -> Y
8276 if (Pred == ICmpInst::ICMP_NE)
8277 return ReplaceInstUsesWith(SI, TrueVal);
8278 /// NOTE: if we wanted to, this is where to detect integer MIN/MAX
8279 }
8280
8281 /// NOTE: if we wanted to, this is where to detect integer ABS
8282
8283 return Changed ? &SI : 0;
8284}
8285
Chris Lattner3d69f462004-03-12 05:52:32 +00008286Instruction *InstCombiner::visitSelectInst(SelectInst &SI) {
Chris Lattnerc32b30a2004-03-30 19:37:13 +00008287 Value *CondVal = SI.getCondition();
8288 Value *TrueVal = SI.getTrueValue();
8289 Value *FalseVal = SI.getFalseValue();
8290
8291 // select true, X, Y -> X
8292 // select false, X, Y -> Y
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00008293 if (ConstantInt *C = dyn_cast<ConstantInt>(CondVal))
Reid Spencer579dca12007-01-12 04:24:46 +00008294 return ReplaceInstUsesWith(SI, C->getZExtValue() ? TrueVal : FalseVal);
Chris Lattnerc32b30a2004-03-30 19:37:13 +00008295
8296 // select C, X, X -> X
8297 if (TrueVal == FalseVal)
8298 return ReplaceInstUsesWith(SI, TrueVal);
8299
Chris Lattnere87597f2004-10-16 18:11:37 +00008300 if (isa<UndefValue>(TrueVal)) // select C, undef, X -> X
8301 return ReplaceInstUsesWith(SI, FalseVal);
8302 if (isa<UndefValue>(FalseVal)) // select C, X, undef -> X
8303 return ReplaceInstUsesWith(SI, TrueVal);
8304 if (isa<UndefValue>(CondVal)) { // select undef, X, Y -> X or Y
8305 if (isa<Constant>(TrueVal))
8306 return ReplaceInstUsesWith(SI, TrueVal);
8307 else
8308 return ReplaceInstUsesWith(SI, FalseVal);
8309 }
8310
Reid Spencer4fe16d62007-01-11 18:21:29 +00008311 if (SI.getType() == Type::Int1Ty) {
Reid Spencera54b7cb2007-01-12 07:05:14 +00008312 if (ConstantInt *C = dyn_cast<ConstantInt>(TrueVal)) {
Reid Spencer579dca12007-01-12 04:24:46 +00008313 if (C->getZExtValue()) {
Chris Lattner0c199a72004-04-08 04:43:23 +00008314 // Change: A = select B, true, C --> A = or B, C
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008315 return BinaryOperator::CreateOr(CondVal, FalseVal);
Chris Lattner0c199a72004-04-08 04:43:23 +00008316 } else {
8317 // Change: A = select B, false, C --> A = and !B, C
8318 Value *NotCond =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008319 InsertNewInstBefore(BinaryOperator::CreateNot(CondVal,
Chris Lattner0c199a72004-04-08 04:43:23 +00008320 "not."+CondVal->getName()), SI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008321 return BinaryOperator::CreateAnd(NotCond, FalseVal);
Chris Lattner0c199a72004-04-08 04:43:23 +00008322 }
Reid Spencera54b7cb2007-01-12 07:05:14 +00008323 } else if (ConstantInt *C = dyn_cast<ConstantInt>(FalseVal)) {
Reid Spencer579dca12007-01-12 04:24:46 +00008324 if (C->getZExtValue() == false) {
Chris Lattner0c199a72004-04-08 04:43:23 +00008325 // Change: A = select B, C, false --> A = and B, C
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008326 return BinaryOperator::CreateAnd(CondVal, TrueVal);
Chris Lattner0c199a72004-04-08 04:43:23 +00008327 } else {
8328 // Change: A = select B, C, true --> A = or !B, C
8329 Value *NotCond =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008330 InsertNewInstBefore(BinaryOperator::CreateNot(CondVal,
Chris Lattner0c199a72004-04-08 04:43:23 +00008331 "not."+CondVal->getName()), SI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008332 return BinaryOperator::CreateOr(NotCond, TrueVal);
Chris Lattner0c199a72004-04-08 04:43:23 +00008333 }
8334 }
Chris Lattnercfa59752007-11-25 21:27:53 +00008335
8336 // select a, b, a -> a&b
8337 // select a, a, b -> a|b
8338 if (CondVal == TrueVal)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008339 return BinaryOperator::CreateOr(CondVal, FalseVal);
Chris Lattnercfa59752007-11-25 21:27:53 +00008340 else if (CondVal == FalseVal)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008341 return BinaryOperator::CreateAnd(CondVal, TrueVal);
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00008342 }
Chris Lattner0c199a72004-04-08 04:43:23 +00008343
Chris Lattner2eefe512004-04-09 19:05:30 +00008344 // Selecting between two integer constants?
8345 if (ConstantInt *TrueValC = dyn_cast<ConstantInt>(TrueVal))
8346 if (ConstantInt *FalseValC = dyn_cast<ConstantInt>(FalseVal)) {
Chris Lattnerba417832007-04-11 06:12:58 +00008347 // select C, 1, 0 -> zext C to int
Reid Spencer2ec619a2007-03-23 21:24:59 +00008348 if (FalseValC->isZero() && TrueValC->getValue() == 1) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008349 return CastInst::Create(Instruction::ZExt, CondVal, SI.getType());
Reid Spencer2ec619a2007-03-23 21:24:59 +00008350 } else if (TrueValC->isZero() && FalseValC->getValue() == 1) {
Chris Lattnerba417832007-04-11 06:12:58 +00008351 // select C, 0, 1 -> zext !C to int
Chris Lattner2eefe512004-04-09 19:05:30 +00008352 Value *NotCond =
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008353 InsertNewInstBefore(BinaryOperator::CreateNot(CondVal,
Chris Lattner82e14fe2004-04-09 18:19:44 +00008354 "not."+CondVal->getName()), SI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008355 return CastInst::Create(Instruction::ZExt, NotCond, SI.getType());
Chris Lattner82e14fe2004-04-09 18:19:44 +00008356 }
Chris Lattnerba417832007-04-11 06:12:58 +00008357
8358 // FIXME: Turn select 0/-1 and -1/0 into sext from condition!
Chris Lattner457dd822004-06-09 07:59:58 +00008359
Reid Spencere4d87aa2006-12-23 06:05:41 +00008360 if (ICmpInst *IC = dyn_cast<ICmpInst>(SI.getCondition())) {
Chris Lattnerb8456462006-09-20 04:44:59 +00008361
Reid Spencere4d87aa2006-12-23 06:05:41 +00008362 // (x <s 0) ? -1 : 0 -> ashr x, 31
Reid Spencer2ec619a2007-03-23 21:24:59 +00008363 if (TrueValC->isAllOnesValue() && FalseValC->isZero())
Chris Lattnerb8456462006-09-20 04:44:59 +00008364 if (ConstantInt *CmpCst = dyn_cast<ConstantInt>(IC->getOperand(1))) {
Chris Lattnerba417832007-04-11 06:12:58 +00008365 if (IC->getPredicate() == ICmpInst::ICMP_SLT && CmpCst->isZero()) {
Chris Lattnerb8456462006-09-20 04:44:59 +00008366 // The comparison constant and the result are not neccessarily the
Reid Spencer3da59db2006-11-27 01:05:10 +00008367 // same width. Make an all-ones value by inserting a AShr.
Chris Lattnerb8456462006-09-20 04:44:59 +00008368 Value *X = IC->getOperand(0);
Zhou Sheng4351c642007-04-02 08:20:41 +00008369 uint32_t Bits = X->getType()->getPrimitiveSizeInBits();
Reid Spencer832254e2007-02-02 02:16:23 +00008370 Constant *ShAmt = ConstantInt::get(X->getType(), Bits-1);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008371 Instruction *SRA = BinaryOperator::Create(Instruction::AShr, X,
Reid Spencer832254e2007-02-02 02:16:23 +00008372 ShAmt, "ones");
Chris Lattnerb8456462006-09-20 04:44:59 +00008373 InsertNewInstBefore(SRA, SI);
8374
Reid Spencer3da59db2006-11-27 01:05:10 +00008375 // Finally, convert to the type of the select RHS. We figure out
8376 // if this requires a SExt, Trunc or BitCast based on the sizes.
8377 Instruction::CastOps opc = Instruction::BitCast;
Zhou Sheng4351c642007-04-02 08:20:41 +00008378 uint32_t SRASize = SRA->getType()->getPrimitiveSizeInBits();
8379 uint32_t SISize = SI.getType()->getPrimitiveSizeInBits();
Reid Spencer3da59db2006-11-27 01:05:10 +00008380 if (SRASize < SISize)
8381 opc = Instruction::SExt;
8382 else if (SRASize > SISize)
8383 opc = Instruction::Trunc;
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008384 return CastInst::Create(opc, SRA, SI.getType());
Chris Lattnerb8456462006-09-20 04:44:59 +00008385 }
8386 }
8387
8388
8389 // If one of the constants is zero (we know they can't both be) and we
Chris Lattnerba417832007-04-11 06:12:58 +00008390 // have an icmp instruction with zero, and we have an 'and' with the
Chris Lattnerb8456462006-09-20 04:44:59 +00008391 // non-constant value, eliminate this whole mess. This corresponds to
8392 // cases like this: ((X & 27) ? 27 : 0)
Reid Spencer2ec619a2007-03-23 21:24:59 +00008393 if (TrueValC->isZero() || FalseValC->isZero())
Chris Lattner65b72ba2006-09-18 04:22:48 +00008394 if (IC->isEquality() && isa<ConstantInt>(IC->getOperand(1)) &&
Chris Lattner457dd822004-06-09 07:59:58 +00008395 cast<Constant>(IC->getOperand(1))->isNullValue())
8396 if (Instruction *ICA = dyn_cast<Instruction>(IC->getOperand(0)))
8397 if (ICA->getOpcode() == Instruction::And &&
Misha Brukmanfd939082005-04-21 23:48:37 +00008398 isa<ConstantInt>(ICA->getOperand(1)) &&
8399 (ICA->getOperand(1) == TrueValC ||
8400 ICA->getOperand(1) == FalseValC) &&
Chris Lattner457dd822004-06-09 07:59:58 +00008401 isOneBitSet(cast<ConstantInt>(ICA->getOperand(1)))) {
8402 // Okay, now we know that everything is set up, we just don't
Reid Spencere4d87aa2006-12-23 06:05:41 +00008403 // know whether we have a icmp_ne or icmp_eq and whether the
8404 // true or false val is the zero.
Reid Spencer2ec619a2007-03-23 21:24:59 +00008405 bool ShouldNotVal = !TrueValC->isZero();
Reid Spencere4d87aa2006-12-23 06:05:41 +00008406 ShouldNotVal ^= IC->getPredicate() == ICmpInst::ICMP_NE;
Chris Lattner457dd822004-06-09 07:59:58 +00008407 Value *V = ICA;
8408 if (ShouldNotVal)
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008409 V = InsertNewInstBefore(BinaryOperator::Create(
Chris Lattner457dd822004-06-09 07:59:58 +00008410 Instruction::Xor, V, ICA->getOperand(1)), SI);
8411 return ReplaceInstUsesWith(SI, V);
8412 }
Chris Lattnerb8456462006-09-20 04:44:59 +00008413 }
Chris Lattnerc32b30a2004-03-30 19:37:13 +00008414 }
Chris Lattnerd76956d2004-04-10 22:21:27 +00008415
8416 // See if we are selecting two values based on a comparison of the two values.
Reid Spencere4d87aa2006-12-23 06:05:41 +00008417 if (FCmpInst *FCI = dyn_cast<FCmpInst>(CondVal)) {
8418 if (FCI->getOperand(0) == TrueVal && FCI->getOperand(1) == FalseVal) {
Chris Lattnerd76956d2004-04-10 22:21:27 +00008419 // Transform (X == Y) ? X : Y -> Y
Dale Johannesen5a2174f2007-10-03 17:45:27 +00008420 if (FCI->getPredicate() == FCmpInst::FCMP_OEQ) {
8421 // This is not safe in general for floating point:
8422 // consider X== -0, Y== +0.
8423 // It becomes safe if either operand is a nonzero constant.
8424 ConstantFP *CFPt, *CFPf;
8425 if (((CFPt = dyn_cast<ConstantFP>(TrueVal)) &&
8426 !CFPt->getValueAPF().isZero()) ||
8427 ((CFPf = dyn_cast<ConstantFP>(FalseVal)) &&
8428 !CFPf->getValueAPF().isZero()))
Chris Lattnerd76956d2004-04-10 22:21:27 +00008429 return ReplaceInstUsesWith(SI, FalseVal);
Dale Johannesen5a2174f2007-10-03 17:45:27 +00008430 }
Chris Lattnerd76956d2004-04-10 22:21:27 +00008431 // Transform (X != Y) ? X : Y -> X
Reid Spencere4d87aa2006-12-23 06:05:41 +00008432 if (FCI->getPredicate() == FCmpInst::FCMP_ONE)
Chris Lattnerd76956d2004-04-10 22:21:27 +00008433 return ReplaceInstUsesWith(SI, TrueVal);
Dan Gohman81b28ce2008-09-16 18:46:06 +00008434 // NOTE: if we wanted to, this is where to detect MIN/MAX
Chris Lattnerd76956d2004-04-10 22:21:27 +00008435
Reid Spencere4d87aa2006-12-23 06:05:41 +00008436 } else if (FCI->getOperand(0) == FalseVal && FCI->getOperand(1) == TrueVal){
Chris Lattnerd76956d2004-04-10 22:21:27 +00008437 // Transform (X == Y) ? Y : X -> X
Dale Johannesen5a2174f2007-10-03 17:45:27 +00008438 if (FCI->getPredicate() == FCmpInst::FCMP_OEQ) {
8439 // This is not safe in general for floating point:
8440 // consider X== -0, Y== +0.
8441 // It becomes safe if either operand is a nonzero constant.
8442 ConstantFP *CFPt, *CFPf;
8443 if (((CFPt = dyn_cast<ConstantFP>(TrueVal)) &&
8444 !CFPt->getValueAPF().isZero()) ||
8445 ((CFPf = dyn_cast<ConstantFP>(FalseVal)) &&
8446 !CFPf->getValueAPF().isZero()))
8447 return ReplaceInstUsesWith(SI, FalseVal);
8448 }
Chris Lattnerd76956d2004-04-10 22:21:27 +00008449 // Transform (X != Y) ? Y : X -> Y
Reid Spencere4d87aa2006-12-23 06:05:41 +00008450 if (FCI->getPredicate() == FCmpInst::FCMP_ONE)
8451 return ReplaceInstUsesWith(SI, TrueVal);
Dan Gohman81b28ce2008-09-16 18:46:06 +00008452 // NOTE: if we wanted to, this is where to detect MIN/MAX
Reid Spencere4d87aa2006-12-23 06:05:41 +00008453 }
Dan Gohman81b28ce2008-09-16 18:46:06 +00008454 // NOTE: if we wanted to, this is where to detect ABS
Reid Spencere4d87aa2006-12-23 06:05:41 +00008455 }
8456
8457 // See if we are selecting two values based on a comparison of the two values.
Dan Gohman81b28ce2008-09-16 18:46:06 +00008458 if (ICmpInst *ICI = dyn_cast<ICmpInst>(CondVal))
8459 if (Instruction *Result = visitSelectInstWithICmp(SI, ICI))
8460 return Result;
Misha Brukmanfd939082005-04-21 23:48:37 +00008461
Chris Lattner87875da2005-01-13 22:52:24 +00008462 if (Instruction *TI = dyn_cast<Instruction>(TrueVal))
8463 if (Instruction *FI = dyn_cast<Instruction>(FalseVal))
8464 if (TI->hasOneUse() && FI->hasOneUse()) {
Chris Lattner87875da2005-01-13 22:52:24 +00008465 Instruction *AddOp = 0, *SubOp = 0;
8466
Chris Lattner6fb5a4a2005-01-19 21:50:18 +00008467 // Turn (select C, (op X, Y), (op X, Z)) -> (op X, (select C, Y, Z))
8468 if (TI->getOpcode() == FI->getOpcode())
8469 if (Instruction *IV = FoldSelectOpOp(SI, TI, FI))
8470 return IV;
8471
8472 // Turn select C, (X+Y), (X-Y) --> (X+(select C, Y, (-Y))). This is
8473 // even legal for FP.
Chris Lattner87875da2005-01-13 22:52:24 +00008474 if (TI->getOpcode() == Instruction::Sub &&
8475 FI->getOpcode() == Instruction::Add) {
8476 AddOp = FI; SubOp = TI;
8477 } else if (FI->getOpcode() == Instruction::Sub &&
8478 TI->getOpcode() == Instruction::Add) {
8479 AddOp = TI; SubOp = FI;
8480 }
8481
8482 if (AddOp) {
8483 Value *OtherAddOp = 0;
8484 if (SubOp->getOperand(0) == AddOp->getOperand(0)) {
8485 OtherAddOp = AddOp->getOperand(1);
8486 } else if (SubOp->getOperand(0) == AddOp->getOperand(1)) {
8487 OtherAddOp = AddOp->getOperand(0);
8488 }
8489
8490 if (OtherAddOp) {
Chris Lattner97f37a42006-02-24 18:05:58 +00008491 // So at this point we know we have (Y -> OtherAddOp):
8492 // select C, (add X, Y), (sub X, Z)
8493 Value *NegVal; // Compute -Z
8494 if (Constant *C = dyn_cast<Constant>(SubOp->getOperand(1))) {
8495 NegVal = ConstantExpr::getNeg(C);
8496 } else {
8497 NegVal = InsertNewInstBefore(
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008498 BinaryOperator::CreateNeg(SubOp->getOperand(1), "tmp"), SI);
Chris Lattner87875da2005-01-13 22:52:24 +00008499 }
Chris Lattner97f37a42006-02-24 18:05:58 +00008500
8501 Value *NewTrueOp = OtherAddOp;
8502 Value *NewFalseOp = NegVal;
8503 if (AddOp != TI)
8504 std::swap(NewTrueOp, NewFalseOp);
8505 Instruction *NewSel =
Gabor Greifb1dbcd82008-05-15 10:04:30 +00008506 SelectInst::Create(CondVal, NewTrueOp,
8507 NewFalseOp, SI.getName() + ".p");
Chris Lattner97f37a42006-02-24 18:05:58 +00008508
8509 NewSel = InsertNewInstBefore(NewSel, SI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008510 return BinaryOperator::CreateAdd(SubOp->getOperand(0), NewSel);
Chris Lattner87875da2005-01-13 22:52:24 +00008511 }
8512 }
8513 }
Misha Brukmanfd939082005-04-21 23:48:37 +00008514
Chris Lattnere576b912004-04-09 23:46:01 +00008515 // See if we can fold the select into one of our operands.
Chris Lattner42a75512007-01-15 02:27:26 +00008516 if (SI.getType()->isInteger()) {
Chris Lattnere576b912004-04-09 23:46:01 +00008517 // See the comment above GetSelectFoldableOperands for a description of the
8518 // transformation we are doing here.
8519 if (Instruction *TVI = dyn_cast<Instruction>(TrueVal))
8520 if (TVI->hasOneUse() && TVI->getNumOperands() == 2 &&
8521 !isa<Constant>(FalseVal))
8522 if (unsigned SFO = GetSelectFoldableOperands(TVI)) {
8523 unsigned OpToFold = 0;
8524 if ((SFO & 1) && FalseVal == TVI->getOperand(0)) {
8525 OpToFold = 1;
8526 } else if ((SFO & 2) && FalseVal == TVI->getOperand(1)) {
8527 OpToFold = 2;
8528 }
8529
8530 if (OpToFold) {
8531 Constant *C = GetSelectFoldableConstant(TVI);
Chris Lattnere576b912004-04-09 23:46:01 +00008532 Instruction *NewSel =
Gabor Greifb1dbcd82008-05-15 10:04:30 +00008533 SelectInst::Create(SI.getCondition(),
8534 TVI->getOperand(2-OpToFold), C);
Chris Lattnere576b912004-04-09 23:46:01 +00008535 InsertNewInstBefore(NewSel, SI);
Chris Lattner6934a042007-02-11 01:23:03 +00008536 NewSel->takeName(TVI);
Chris Lattnere576b912004-04-09 23:46:01 +00008537 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(TVI))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008538 return BinaryOperator::Create(BO->getOpcode(), FalseVal, NewSel);
Chris Lattnere576b912004-04-09 23:46:01 +00008539 else {
8540 assert(0 && "Unknown instruction!!");
8541 }
8542 }
8543 }
Chris Lattnera96879a2004-09-29 17:40:11 +00008544
Chris Lattnere576b912004-04-09 23:46:01 +00008545 if (Instruction *FVI = dyn_cast<Instruction>(FalseVal))
8546 if (FVI->hasOneUse() && FVI->getNumOperands() == 2 &&
8547 !isa<Constant>(TrueVal))
8548 if (unsigned SFO = GetSelectFoldableOperands(FVI)) {
8549 unsigned OpToFold = 0;
8550 if ((SFO & 1) && TrueVal == FVI->getOperand(0)) {
8551 OpToFold = 1;
8552 } else if ((SFO & 2) && TrueVal == FVI->getOperand(1)) {
8553 OpToFold = 2;
8554 }
8555
8556 if (OpToFold) {
8557 Constant *C = GetSelectFoldableConstant(FVI);
Chris Lattnere576b912004-04-09 23:46:01 +00008558 Instruction *NewSel =
Gabor Greifb1dbcd82008-05-15 10:04:30 +00008559 SelectInst::Create(SI.getCondition(), C,
8560 FVI->getOperand(2-OpToFold));
Chris Lattnere576b912004-04-09 23:46:01 +00008561 InsertNewInstBefore(NewSel, SI);
Chris Lattner6934a042007-02-11 01:23:03 +00008562 NewSel->takeName(FVI);
Chris Lattnere576b912004-04-09 23:46:01 +00008563 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(FVI))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00008564 return BinaryOperator::Create(BO->getOpcode(), TrueVal, NewSel);
Reid Spencer832254e2007-02-02 02:16:23 +00008565 else
Chris Lattnere576b912004-04-09 23:46:01 +00008566 assert(0 && "Unknown instruction!!");
Chris Lattnere576b912004-04-09 23:46:01 +00008567 }
8568 }
8569 }
Chris Lattnera1df33c2005-04-24 07:30:14 +00008570
8571 if (BinaryOperator::isNot(CondVal)) {
8572 SI.setOperand(0, BinaryOperator::getNotArgument(CondVal));
8573 SI.setOperand(1, FalseVal);
8574 SI.setOperand(2, TrueVal);
8575 return &SI;
8576 }
8577
Chris Lattner3d69f462004-03-12 05:52:32 +00008578 return 0;
8579}
8580
Dan Gohmaneee962e2008-04-10 18:43:06 +00008581/// EnforceKnownAlignment - If the specified pointer points to an object that
8582/// we control, modify the object's alignment to PrefAlign. This isn't
8583/// often possible though. If alignment is important, a more reliable approach
8584/// is to simply align all global variables and allocation instructions to
8585/// their preferred alignment from the beginning.
8586///
8587static unsigned EnforceKnownAlignment(Value *V,
8588 unsigned Align, unsigned PrefAlign) {
Chris Lattnerf2369f22007-08-09 19:05:49 +00008589
Dan Gohmaneee962e2008-04-10 18:43:06 +00008590 User *U = dyn_cast<User>(V);
8591 if (!U) return Align;
8592
8593 switch (getOpcode(U)) {
8594 default: break;
8595 case Instruction::BitCast:
8596 return EnforceKnownAlignment(U->getOperand(0), Align, PrefAlign);
8597 case Instruction::GetElementPtr: {
Chris Lattner95a959d2006-03-06 20:18:44 +00008598 // If all indexes are zero, it is just the alignment of the base pointer.
8599 bool AllZeroOperands = true;
Gabor Greif52ed3632008-06-12 21:51:29 +00008600 for (User::op_iterator i = U->op_begin() + 1, e = U->op_end(); i != e; ++i)
Gabor Greif177dd3f2008-06-12 21:37:33 +00008601 if (!isa<Constant>(*i) ||
8602 !cast<Constant>(*i)->isNullValue()) {
Chris Lattner95a959d2006-03-06 20:18:44 +00008603 AllZeroOperands = false;
8604 break;
8605 }
Chris Lattnerf2369f22007-08-09 19:05:49 +00008606
8607 if (AllZeroOperands) {
8608 // Treat this like a bitcast.
Dan Gohmaneee962e2008-04-10 18:43:06 +00008609 return EnforceKnownAlignment(U->getOperand(0), Align, PrefAlign);
Chris Lattnerf2369f22007-08-09 19:05:49 +00008610 }
Dan Gohmaneee962e2008-04-10 18:43:06 +00008611 break;
Chris Lattner95a959d2006-03-06 20:18:44 +00008612 }
Dan Gohmaneee962e2008-04-10 18:43:06 +00008613 }
8614
8615 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
8616 // If there is a large requested alignment and we can, bump up the alignment
8617 // of the global.
8618 if (!GV->isDeclaration()) {
8619 GV->setAlignment(PrefAlign);
8620 Align = PrefAlign;
8621 }
8622 } else if (AllocationInst *AI = dyn_cast<AllocationInst>(V)) {
8623 // If there is a requested alignment and if this is an alloca, round up. We
8624 // don't do this for malloc, because some systems can't respect the request.
8625 if (isa<AllocaInst>(AI)) {
8626 AI->setAlignment(PrefAlign);
8627 Align = PrefAlign;
8628 }
8629 }
8630
8631 return Align;
8632}
8633
8634/// GetOrEnforceKnownAlignment - If the specified pointer has an alignment that
8635/// we can determine, return it, otherwise return 0. If PrefAlign is specified,
8636/// and it is more than the alignment of the ultimate object, see if we can
8637/// increase the alignment of the ultimate object, making this check succeed.
8638unsigned InstCombiner::GetOrEnforceKnownAlignment(Value *V,
8639 unsigned PrefAlign) {
8640 unsigned BitWidth = TD ? TD->getTypeSizeInBits(V->getType()) :
8641 sizeof(PrefAlign) * CHAR_BIT;
8642 APInt Mask = APInt::getAllOnesValue(BitWidth);
8643 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
8644 ComputeMaskedBits(V, Mask, KnownZero, KnownOne);
8645 unsigned TrailZ = KnownZero.countTrailingOnes();
8646 unsigned Align = 1u << std::min(BitWidth - 1, TrailZ);
8647
8648 if (PrefAlign > Align)
8649 Align = EnforceKnownAlignment(V, Align, PrefAlign);
8650
8651 // We don't need to make any adjustment.
8652 return Align;
Chris Lattner95a959d2006-03-06 20:18:44 +00008653}
8654
Chris Lattnerf497b022008-01-13 23:50:23 +00008655Instruction *InstCombiner::SimplifyMemTransfer(MemIntrinsic *MI) {
Dan Gohmaneee962e2008-04-10 18:43:06 +00008656 unsigned DstAlign = GetOrEnforceKnownAlignment(MI->getOperand(1));
8657 unsigned SrcAlign = GetOrEnforceKnownAlignment(MI->getOperand(2));
Chris Lattnerf497b022008-01-13 23:50:23 +00008658 unsigned MinAlign = std::min(DstAlign, SrcAlign);
8659 unsigned CopyAlign = MI->getAlignment()->getZExtValue();
8660
8661 if (CopyAlign < MinAlign) {
8662 MI->setAlignment(ConstantInt::get(Type::Int32Ty, MinAlign));
8663 return MI;
8664 }
8665
8666 // If MemCpyInst length is 1/2/4/8 bytes then replace memcpy with
8667 // load/store.
8668 ConstantInt *MemOpLength = dyn_cast<ConstantInt>(MI->getOperand(3));
8669 if (MemOpLength == 0) return 0;
8670
Chris Lattner37ac6082008-01-14 00:28:35 +00008671 // Source and destination pointer types are always "i8*" for intrinsic. See
8672 // if the size is something we can handle with a single primitive load/store.
8673 // A single load+store correctly handles overlapping memory in the memmove
8674 // case.
Chris Lattnerf497b022008-01-13 23:50:23 +00008675 unsigned Size = MemOpLength->getZExtValue();
Chris Lattner69ea9d22008-04-30 06:39:11 +00008676 if (Size == 0) return MI; // Delete this mem transfer.
8677
8678 if (Size > 8 || (Size&(Size-1)))
Chris Lattner37ac6082008-01-14 00:28:35 +00008679 return 0; // If not 1/2/4/8 bytes, exit.
Chris Lattnerf497b022008-01-13 23:50:23 +00008680
Chris Lattner37ac6082008-01-14 00:28:35 +00008681 // Use an integer load+store unless we can find something better.
Chris Lattnerf497b022008-01-13 23:50:23 +00008682 Type *NewPtrTy = PointerType::getUnqual(IntegerType::get(Size<<3));
Chris Lattner37ac6082008-01-14 00:28:35 +00008683
8684 // Memcpy forces the use of i8* for the source and destination. That means
8685 // that if you're using memcpy to move one double around, you'll get a cast
8686 // from double* to i8*. We'd much rather use a double load+store rather than
8687 // an i64 load+store, here because this improves the odds that the source or
8688 // dest address will be promotable. See if we can find a better type than the
8689 // integer datatype.
8690 if (Value *Op = getBitCastOperand(MI->getOperand(1))) {
8691 const Type *SrcETy = cast<PointerType>(Op->getType())->getElementType();
8692 if (SrcETy->isSized() && TD->getTypeStoreSize(SrcETy) == Size) {
8693 // The SrcETy might be something like {{{double}}} or [1 x double]. Rip
8694 // down through these levels if so.
Dan Gohman8f8e2692008-05-23 01:52:21 +00008695 while (!SrcETy->isSingleValueType()) {
Chris Lattner37ac6082008-01-14 00:28:35 +00008696 if (const StructType *STy = dyn_cast<StructType>(SrcETy)) {
8697 if (STy->getNumElements() == 1)
8698 SrcETy = STy->getElementType(0);
8699 else
8700 break;
8701 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(SrcETy)) {
8702 if (ATy->getNumElements() == 1)
8703 SrcETy = ATy->getElementType();
8704 else
8705 break;
8706 } else
8707 break;
8708 }
8709
Dan Gohman8f8e2692008-05-23 01:52:21 +00008710 if (SrcETy->isSingleValueType())
Chris Lattner37ac6082008-01-14 00:28:35 +00008711 NewPtrTy = PointerType::getUnqual(SrcETy);
8712 }
8713 }
8714
8715
Chris Lattnerf497b022008-01-13 23:50:23 +00008716 // If the memcpy/memmove provides better alignment info than we can
8717 // infer, use it.
8718 SrcAlign = std::max(SrcAlign, CopyAlign);
8719 DstAlign = std::max(DstAlign, CopyAlign);
8720
8721 Value *Src = InsertBitCastBefore(MI->getOperand(2), NewPtrTy, *MI);
8722 Value *Dest = InsertBitCastBefore(MI->getOperand(1), NewPtrTy, *MI);
Chris Lattner37ac6082008-01-14 00:28:35 +00008723 Instruction *L = new LoadInst(Src, "tmp", false, SrcAlign);
8724 InsertNewInstBefore(L, *MI);
8725 InsertNewInstBefore(new StoreInst(L, Dest, false, DstAlign), *MI);
8726
8727 // Set the size of the copy to 0, it will be deleted on the next iteration.
8728 MI->setOperand(3, Constant::getNullValue(MemOpLength->getType()));
8729 return MI;
Chris Lattnerf497b022008-01-13 23:50:23 +00008730}
Chris Lattner3d69f462004-03-12 05:52:32 +00008731
Chris Lattner69ea9d22008-04-30 06:39:11 +00008732Instruction *InstCombiner::SimplifyMemSet(MemSetInst *MI) {
8733 unsigned Alignment = GetOrEnforceKnownAlignment(MI->getDest());
8734 if (MI->getAlignment()->getZExtValue() < Alignment) {
8735 MI->setAlignment(ConstantInt::get(Type::Int32Ty, Alignment));
8736 return MI;
8737 }
8738
8739 // Extract the length and alignment and fill if they are constant.
8740 ConstantInt *LenC = dyn_cast<ConstantInt>(MI->getLength());
8741 ConstantInt *FillC = dyn_cast<ConstantInt>(MI->getValue());
8742 if (!LenC || !FillC || FillC->getType() != Type::Int8Ty)
8743 return 0;
8744 uint64_t Len = LenC->getZExtValue();
8745 Alignment = MI->getAlignment()->getZExtValue();
8746
8747 // If the length is zero, this is a no-op
8748 if (Len == 0) return MI; // memset(d,c,0,a) -> noop
8749
8750 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
8751 if (Len <= 8 && isPowerOf2_32((uint32_t)Len)) {
8752 const Type *ITy = IntegerType::get(Len*8); // n=1 -> i8.
8753
8754 Value *Dest = MI->getDest();
8755 Dest = InsertBitCastBefore(Dest, PointerType::getUnqual(ITy), *MI);
8756
8757 // Alignment 0 is identity for alignment 1 for memset, but not store.
8758 if (Alignment == 0) Alignment = 1;
8759
8760 // Extract the fill value and store.
8761 uint64_t Fill = FillC->getZExtValue()*0x0101010101010101ULL;
8762 InsertNewInstBefore(new StoreInst(ConstantInt::get(ITy, Fill), Dest, false,
8763 Alignment), *MI);
8764
8765 // Set the size of the copy to 0, it will be deleted on the next iteration.
8766 MI->setLength(Constant::getNullValue(LenC->getType()));
8767 return MI;
8768 }
8769
8770 return 0;
8771}
8772
8773
Chris Lattner8b0ea312006-01-13 20:11:04 +00008774/// visitCallInst - CallInst simplification. This mostly only handles folding
8775/// of intrinsic instructions. For normal calls, it allows visitCallSite to do
8776/// the heavy lifting.
8777///
Chris Lattner9fe38862003-06-19 17:00:31 +00008778Instruction *InstCombiner::visitCallInst(CallInst &CI) {
Chris Lattner8b0ea312006-01-13 20:11:04 +00008779 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&CI);
8780 if (!II) return visitCallSite(&CI);
8781
Chris Lattner7bcc0e72004-02-28 05:22:00 +00008782 // Intrinsics cannot occur in an invoke, so handle them here instead of in
8783 // visitCallSite.
Chris Lattner8b0ea312006-01-13 20:11:04 +00008784 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(II)) {
Chris Lattner35b9e482004-10-12 04:52:52 +00008785 bool Changed = false;
8786
8787 // memmove/cpy/set of zero bytes is a noop.
8788 if (Constant *NumBytes = dyn_cast<Constant>(MI->getLength())) {
8789 if (NumBytes->isNullValue()) return EraseInstFromFunction(CI);
8790
Chris Lattner35b9e482004-10-12 04:52:52 +00008791 if (ConstantInt *CI = dyn_cast<ConstantInt>(NumBytes))
Reid Spencerb83eb642006-10-20 07:07:24 +00008792 if (CI->getZExtValue() == 1) {
Chris Lattner35b9e482004-10-12 04:52:52 +00008793 // Replace the instruction with just byte operations. We would
8794 // transform other cases to loads/stores, but we don't know if
8795 // alignment is sufficient.
8796 }
Chris Lattner7bcc0e72004-02-28 05:22:00 +00008797 }
8798
Chris Lattner35b9e482004-10-12 04:52:52 +00008799 // If we have a memmove and the source operation is a constant global,
8800 // then the source and dest pointers can't alias, so we can change this
8801 // into a call to memcpy.
Chris Lattnerf497b022008-01-13 23:50:23 +00008802 if (MemMoveInst *MMI = dyn_cast<MemMoveInst>(MI)) {
Chris Lattner35b9e482004-10-12 04:52:52 +00008803 if (GlobalVariable *GVSrc = dyn_cast<GlobalVariable>(MMI->getSource()))
8804 if (GVSrc->isConstant()) {
8805 Module *M = CI.getParent()->getParent()->getParent();
Chris Lattner6d0339d2008-01-13 22:23:22 +00008806 Intrinsic::ID MemCpyID;
8807 if (CI.getOperand(3)->getType() == Type::Int32Ty)
8808 MemCpyID = Intrinsic::memcpy_i32;
Chris Lattner21959392006-03-03 01:34:17 +00008809 else
Chris Lattner6d0339d2008-01-13 22:23:22 +00008810 MemCpyID = Intrinsic::memcpy_i64;
8811 CI.setOperand(0, Intrinsic::getDeclaration(M, MemCpyID));
Chris Lattner35b9e482004-10-12 04:52:52 +00008812 Changed = true;
8813 }
Chris Lattnera935db82008-05-28 05:30:41 +00008814
8815 // memmove(x,x,size) -> noop.
8816 if (MMI->getSource() == MMI->getDest())
8817 return EraseInstFromFunction(CI);
Chris Lattner95a959d2006-03-06 20:18:44 +00008818 }
Chris Lattner35b9e482004-10-12 04:52:52 +00008819
Chris Lattner95a959d2006-03-06 20:18:44 +00008820 // If we can determine a pointer alignment that is bigger than currently
8821 // set, update the alignment.
8822 if (isa<MemCpyInst>(MI) || isa<MemMoveInst>(MI)) {
Chris Lattnerf497b022008-01-13 23:50:23 +00008823 if (Instruction *I = SimplifyMemTransfer(MI))
8824 return I;
Chris Lattner69ea9d22008-04-30 06:39:11 +00008825 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(MI)) {
8826 if (Instruction *I = SimplifyMemSet(MSI))
8827 return I;
Chris Lattner95a959d2006-03-06 20:18:44 +00008828 }
8829
Chris Lattner8b0ea312006-01-13 20:11:04 +00008830 if (Changed) return II;
Chris Lattner0521e3c2008-06-18 04:33:20 +00008831 }
8832
8833 switch (II->getIntrinsicID()) {
8834 default: break;
8835 case Intrinsic::bswap:
8836 // bswap(bswap(x)) -> x
8837 if (IntrinsicInst *Operand = dyn_cast<IntrinsicInst>(II->getOperand(1)))
8838 if (Operand->getIntrinsicID() == Intrinsic::bswap)
8839 return ReplaceInstUsesWith(CI, Operand->getOperand(1));
8840 break;
8841 case Intrinsic::ppc_altivec_lvx:
8842 case Intrinsic::ppc_altivec_lvxl:
8843 case Intrinsic::x86_sse_loadu_ps:
8844 case Intrinsic::x86_sse2_loadu_pd:
8845 case Intrinsic::x86_sse2_loadu_dq:
8846 // Turn PPC lvx -> load if the pointer is known aligned.
8847 // Turn X86 loadups -> load if the pointer is known aligned.
8848 if (GetOrEnforceKnownAlignment(II->getOperand(1), 16) >= 16) {
8849 Value *Ptr = InsertBitCastBefore(II->getOperand(1),
8850 PointerType::getUnqual(II->getType()),
8851 CI);
8852 return new LoadInst(Ptr);
Chris Lattner867b99f2006-10-05 06:55:50 +00008853 }
Chris Lattner0521e3c2008-06-18 04:33:20 +00008854 break;
8855 case Intrinsic::ppc_altivec_stvx:
8856 case Intrinsic::ppc_altivec_stvxl:
8857 // Turn stvx -> store if the pointer is known aligned.
8858 if (GetOrEnforceKnownAlignment(II->getOperand(2), 16) >= 16) {
8859 const Type *OpPtrTy =
8860 PointerType::getUnqual(II->getOperand(1)->getType());
8861 Value *Ptr = InsertBitCastBefore(II->getOperand(2), OpPtrTy, CI);
8862 return new StoreInst(II->getOperand(1), Ptr);
8863 }
8864 break;
8865 case Intrinsic::x86_sse_storeu_ps:
8866 case Intrinsic::x86_sse2_storeu_pd:
8867 case Intrinsic::x86_sse2_storeu_dq:
Chris Lattner0521e3c2008-06-18 04:33:20 +00008868 // Turn X86 storeu -> store if the pointer is known aligned.
8869 if (GetOrEnforceKnownAlignment(II->getOperand(1), 16) >= 16) {
8870 const Type *OpPtrTy =
8871 PointerType::getUnqual(II->getOperand(2)->getType());
8872 Value *Ptr = InsertBitCastBefore(II->getOperand(1), OpPtrTy, CI);
8873 return new StoreInst(II->getOperand(2), Ptr);
8874 }
8875 break;
8876
8877 case Intrinsic::x86_sse_cvttss2si: {
8878 // These intrinsics only demands the 0th element of its input vector. If
8879 // we can simplify the input based on that, do so now.
8880 uint64_t UndefElts;
8881 if (Value *V = SimplifyDemandedVectorElts(II->getOperand(1), 1,
8882 UndefElts)) {
8883 II->setOperand(1, V);
8884 return II;
8885 }
8886 break;
8887 }
8888
8889 case Intrinsic::ppc_altivec_vperm:
8890 // Turn vperm(V1,V2,mask) -> shuffle(V1,V2,mask) if mask is a constant.
8891 if (ConstantVector *Mask = dyn_cast<ConstantVector>(II->getOperand(3))) {
8892 assert(Mask->getNumOperands() == 16 && "Bad type for intrinsic!");
Chris Lattner867b99f2006-10-05 06:55:50 +00008893
Chris Lattner0521e3c2008-06-18 04:33:20 +00008894 // Check that all of the elements are integer constants or undefs.
8895 bool AllEltsOk = true;
8896 for (unsigned i = 0; i != 16; ++i) {
8897 if (!isa<ConstantInt>(Mask->getOperand(i)) &&
8898 !isa<UndefValue>(Mask->getOperand(i))) {
8899 AllEltsOk = false;
8900 break;
8901 }
8902 }
8903
8904 if (AllEltsOk) {
8905 // Cast the input vectors to byte vectors.
8906 Value *Op0 =InsertBitCastBefore(II->getOperand(1),Mask->getType(),CI);
8907 Value *Op1 =InsertBitCastBefore(II->getOperand(2),Mask->getType(),CI);
8908 Value *Result = UndefValue::get(Op0->getType());
Chris Lattnere2ed0572006-04-06 19:19:17 +00008909
Chris Lattner0521e3c2008-06-18 04:33:20 +00008910 // Only extract each element once.
8911 Value *ExtractedElts[32];
8912 memset(ExtractedElts, 0, sizeof(ExtractedElts));
8913
Chris Lattnere2ed0572006-04-06 19:19:17 +00008914 for (unsigned i = 0; i != 16; ++i) {
Chris Lattner0521e3c2008-06-18 04:33:20 +00008915 if (isa<UndefValue>(Mask->getOperand(i)))
8916 continue;
8917 unsigned Idx=cast<ConstantInt>(Mask->getOperand(i))->getZExtValue();
8918 Idx &= 31; // Match the hardware behavior.
8919
8920 if (ExtractedElts[Idx] == 0) {
8921 Instruction *Elt =
8922 new ExtractElementInst(Idx < 16 ? Op0 : Op1, Idx&15, "tmp");
8923 InsertNewInstBefore(Elt, CI);
8924 ExtractedElts[Idx] = Elt;
Chris Lattnere2ed0572006-04-06 19:19:17 +00008925 }
Chris Lattnere2ed0572006-04-06 19:19:17 +00008926
Chris Lattner0521e3c2008-06-18 04:33:20 +00008927 // Insert this value into the result vector.
8928 Result = InsertElementInst::Create(Result, ExtractedElts[Idx],
8929 i, "tmp");
8930 InsertNewInstBefore(cast<Instruction>(Result), CI);
Chris Lattnere2ed0572006-04-06 19:19:17 +00008931 }
Chris Lattner0521e3c2008-06-18 04:33:20 +00008932 return CastInst::Create(Instruction::BitCast, Result, CI.getType());
Chris Lattnere2ed0572006-04-06 19:19:17 +00008933 }
Chris Lattner0521e3c2008-06-18 04:33:20 +00008934 }
8935 break;
Chris Lattnere2ed0572006-04-06 19:19:17 +00008936
Chris Lattner0521e3c2008-06-18 04:33:20 +00008937 case Intrinsic::stackrestore: {
8938 // If the save is right next to the restore, remove the restore. This can
8939 // happen when variable allocas are DCE'd.
8940 if (IntrinsicInst *SS = dyn_cast<IntrinsicInst>(II->getOperand(1))) {
8941 if (SS->getIntrinsicID() == Intrinsic::stacksave) {
8942 BasicBlock::iterator BI = SS;
8943 if (&*++BI == II)
8944 return EraseInstFromFunction(CI);
Chris Lattnera728ddc2006-01-13 21:28:09 +00008945 }
Chris Lattner0521e3c2008-06-18 04:33:20 +00008946 }
8947
8948 // Scan down this block to see if there is another stack restore in the
8949 // same block without an intervening call/alloca.
8950 BasicBlock::iterator BI = II;
8951 TerminatorInst *TI = II->getParent()->getTerminator();
8952 bool CannotRemove = false;
8953 for (++BI; &*BI != TI; ++BI) {
8954 if (isa<AllocaInst>(BI)) {
8955 CannotRemove = true;
8956 break;
8957 }
Chris Lattneraa0bf522008-06-25 05:59:28 +00008958 if (CallInst *BCI = dyn_cast<CallInst>(BI)) {
8959 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(BCI)) {
8960 // If there is a stackrestore below this one, remove this one.
8961 if (II->getIntrinsicID() == Intrinsic::stackrestore)
8962 return EraseInstFromFunction(CI);
8963 // Otherwise, ignore the intrinsic.
8964 } else {
8965 // If we found a non-intrinsic call, we can't remove the stack
8966 // restore.
Chris Lattnerbf1d8a72008-02-18 06:12:38 +00008967 CannotRemove = true;
8968 break;
8969 }
Chris Lattner0521e3c2008-06-18 04:33:20 +00008970 }
Chris Lattnera728ddc2006-01-13 21:28:09 +00008971 }
Chris Lattner0521e3c2008-06-18 04:33:20 +00008972
8973 // If the stack restore is in a return/unwind block and if there are no
8974 // allocas or calls between the restore and the return, nuke the restore.
8975 if (!CannotRemove && (isa<ReturnInst>(TI) || isa<UnwindInst>(TI)))
8976 return EraseInstFromFunction(CI);
8977 break;
8978 }
Chris Lattner35b9e482004-10-12 04:52:52 +00008979 }
8980
Chris Lattner8b0ea312006-01-13 20:11:04 +00008981 return visitCallSite(II);
Chris Lattner9fe38862003-06-19 17:00:31 +00008982}
8983
8984// InvokeInst simplification
8985//
8986Instruction *InstCombiner::visitInvokeInst(InvokeInst &II) {
Chris Lattnera44d8a22003-10-07 22:32:43 +00008987 return visitCallSite(&II);
Chris Lattner9fe38862003-06-19 17:00:31 +00008988}
8989
Dale Johannesenda30ccb2008-04-25 21:16:07 +00008990/// isSafeToEliminateVarargsCast - If this cast does not affect the value
8991/// passed through the varargs area, we can eliminate the use of the cast.
Dale Johannesen1f530a52008-04-23 18:34:37 +00008992static bool isSafeToEliminateVarargsCast(const CallSite CS,
8993 const CastInst * const CI,
8994 const TargetData * const TD,
8995 const int ix) {
8996 if (!CI->isLosslessCast())
8997 return false;
8998
8999 // The size of ByVal arguments is derived from the type, so we
9000 // can't change to a type with a different size. If the size were
9001 // passed explicitly we could avoid this check.
9002 if (!CS.paramHasAttr(ix, ParamAttr::ByVal))
9003 return true;
9004
9005 const Type* SrcTy =
9006 cast<PointerType>(CI->getOperand(0)->getType())->getElementType();
9007 const Type* DstTy = cast<PointerType>(CI->getType())->getElementType();
9008 if (!SrcTy->isSized() || !DstTy->isSized())
9009 return false;
9010 if (TD->getABITypeSize(SrcTy) != TD->getABITypeSize(DstTy))
9011 return false;
9012 return true;
9013}
9014
Chris Lattnera44d8a22003-10-07 22:32:43 +00009015// visitCallSite - Improvements for call and invoke instructions.
9016//
9017Instruction *InstCombiner::visitCallSite(CallSite CS) {
Chris Lattner6c266db2003-10-07 22:54:13 +00009018 bool Changed = false;
9019
9020 // If the callee is a constexpr cast of a function, attempt to move the cast
9021 // to the arguments of the call/invoke.
Chris Lattnera44d8a22003-10-07 22:32:43 +00009022 if (transformConstExprCastCall(CS)) return 0;
9023
Chris Lattner6c266db2003-10-07 22:54:13 +00009024 Value *Callee = CS.getCalledValue();
Chris Lattnere87597f2004-10-16 18:11:37 +00009025
Chris Lattner08b22ec2005-05-13 07:09:09 +00009026 if (Function *CalleeF = dyn_cast<Function>(Callee))
9027 if (CalleeF->getCallingConv() != CS.getCallingConv()) {
9028 Instruction *OldCall = CS.getInstruction();
9029 // If the call and callee calling conventions don't match, this call must
9030 // be unreachable, as the call is undefined.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00009031 new StoreInst(ConstantInt::getTrue(),
Christopher Lamb43ad6b32007-12-17 01:12:55 +00009032 UndefValue::get(PointerType::getUnqual(Type::Int1Ty)),
9033 OldCall);
Chris Lattner08b22ec2005-05-13 07:09:09 +00009034 if (!OldCall->use_empty())
9035 OldCall->replaceAllUsesWith(UndefValue::get(OldCall->getType()));
9036 if (isa<CallInst>(OldCall)) // Not worth removing an invoke here.
9037 return EraseInstFromFunction(*OldCall);
9038 return 0;
9039 }
9040
Chris Lattner17be6352004-10-18 02:59:09 +00009041 if (isa<ConstantPointerNull>(Callee) || isa<UndefValue>(Callee)) {
9042 // This instruction is not reachable, just remove it. We insert a store to
9043 // undef so that we know that this code is not reachable, despite the fact
9044 // that we can't modify the CFG here.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00009045 new StoreInst(ConstantInt::getTrue(),
Christopher Lamb43ad6b32007-12-17 01:12:55 +00009046 UndefValue::get(PointerType::getUnqual(Type::Int1Ty)),
Chris Lattner17be6352004-10-18 02:59:09 +00009047 CS.getInstruction());
9048
9049 if (!CS.getInstruction()->use_empty())
9050 CS.getInstruction()->
9051 replaceAllUsesWith(UndefValue::get(CS.getInstruction()->getType()));
9052
9053 if (InvokeInst *II = dyn_cast<InvokeInst>(CS.getInstruction())) {
9054 // Don't break the CFG, insert a dummy cond branch.
Gabor Greif051a9502008-04-06 20:25:17 +00009055 BranchInst::Create(II->getNormalDest(), II->getUnwindDest(),
9056 ConstantInt::getTrue(), II);
Chris Lattnere87597f2004-10-16 18:11:37 +00009057 }
Chris Lattner17be6352004-10-18 02:59:09 +00009058 return EraseInstFromFunction(*CS.getInstruction());
9059 }
Chris Lattnere87597f2004-10-16 18:11:37 +00009060
Duncan Sandscdb6d922007-09-17 10:26:40 +00009061 if (BitCastInst *BC = dyn_cast<BitCastInst>(Callee))
9062 if (IntrinsicInst *In = dyn_cast<IntrinsicInst>(BC->getOperand(0)))
9063 if (In->getIntrinsicID() == Intrinsic::init_trampoline)
9064 return transformCallThroughTrampoline(CS);
9065
Chris Lattner6c266db2003-10-07 22:54:13 +00009066 const PointerType *PTy = cast<PointerType>(Callee->getType());
9067 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
9068 if (FTy->isVarArg()) {
Dale Johannesen63e7eb42008-04-23 01:03:05 +00009069 int ix = FTy->getNumParams() + (isa<InvokeInst>(Callee) ? 3 : 1);
Chris Lattner6c266db2003-10-07 22:54:13 +00009070 // See if we can optimize any arguments passed through the varargs area of
9071 // the call.
9072 for (CallSite::arg_iterator I = CS.arg_begin()+FTy->getNumParams(),
Dale Johannesen1f530a52008-04-23 18:34:37 +00009073 E = CS.arg_end(); I != E; ++I, ++ix) {
9074 CastInst *CI = dyn_cast<CastInst>(*I);
9075 if (CI && isSafeToEliminateVarargsCast(CS, CI, TD, ix)) {
9076 *I = CI->getOperand(0);
9077 Changed = true;
Chris Lattner6c266db2003-10-07 22:54:13 +00009078 }
Dale Johannesen1f530a52008-04-23 18:34:37 +00009079 }
Chris Lattner6c266db2003-10-07 22:54:13 +00009080 }
Misha Brukmanfd939082005-04-21 23:48:37 +00009081
Duncan Sandsf0c33542007-12-19 21:13:37 +00009082 if (isa<InlineAsm>(Callee) && !CS.doesNotThrow()) {
Duncan Sandsece2c042007-12-16 15:51:49 +00009083 // Inline asm calls cannot throw - mark them 'nounwind'.
Duncan Sandsf0c33542007-12-19 21:13:37 +00009084 CS.setDoesNotThrow();
Duncan Sandsece2c042007-12-16 15:51:49 +00009085 Changed = true;
9086 }
9087
Chris Lattner6c266db2003-10-07 22:54:13 +00009088 return Changed ? CS.getInstruction() : 0;
Chris Lattnera44d8a22003-10-07 22:32:43 +00009089}
9090
Chris Lattner9fe38862003-06-19 17:00:31 +00009091// transformConstExprCastCall - If the callee is a constexpr cast of a function,
9092// attempt to move the cast to the arguments of the call/invoke.
9093//
9094bool InstCombiner::transformConstExprCastCall(CallSite CS) {
9095 if (!isa<ConstantExpr>(CS.getCalledValue())) return false;
9096 ConstantExpr *CE = cast<ConstantExpr>(CS.getCalledValue());
Reid Spencer3da59db2006-11-27 01:05:10 +00009097 if (CE->getOpcode() != Instruction::BitCast ||
9098 !isa<Function>(CE->getOperand(0)))
Chris Lattner9fe38862003-06-19 17:00:31 +00009099 return false;
Reid Spencer8863f182004-07-18 00:38:32 +00009100 Function *Callee = cast<Function>(CE->getOperand(0));
Chris Lattner9fe38862003-06-19 17:00:31 +00009101 Instruction *Caller = CS.getInstruction();
Chris Lattner58d74912008-03-12 17:45:29 +00009102 const PAListPtr &CallerPAL = CS.getParamAttrs();
Chris Lattner9fe38862003-06-19 17:00:31 +00009103
9104 // Okay, this is a cast from a function to a different type. Unless doing so
9105 // would cause a type conversion of one of our arguments, change this call to
9106 // be a direct call with arguments casted to the appropriate types.
9107 //
9108 const FunctionType *FT = Callee->getFunctionType();
9109 const Type *OldRetTy = Caller->getType();
Duncan Sandsf413cdf2008-06-01 07:38:42 +00009110 const Type *NewRetTy = FT->getReturnType();
Chris Lattner9fe38862003-06-19 17:00:31 +00009111
Duncan Sandsf413cdf2008-06-01 07:38:42 +00009112 if (isa<StructType>(NewRetTy))
Devang Patel75e6f022008-03-11 18:04:06 +00009113 return false; // TODO: Handle multiple return values.
9114
Chris Lattnerf78616b2004-01-14 06:06:08 +00009115 // Check to see if we are changing the return type...
Duncan Sandsf413cdf2008-06-01 07:38:42 +00009116 if (OldRetTy != NewRetTy) {
Bill Wendlinga6c31122008-05-14 22:45:20 +00009117 if (Callee->isDeclaration() &&
Duncan Sandsf413cdf2008-06-01 07:38:42 +00009118 // Conversion is ok if changing from one pointer type to another or from
9119 // a pointer to an integer of the same size.
9120 !((isa<PointerType>(OldRetTy) || OldRetTy == TD->getIntPtrType()) &&
Duncan Sands34b176a2008-06-17 15:55:30 +00009121 (isa<PointerType>(NewRetTy) || NewRetTy == TD->getIntPtrType())))
Chris Lattnerec479922007-01-06 02:09:32 +00009122 return false; // Cannot transform this return value.
Chris Lattnerf78616b2004-01-14 06:06:08 +00009123
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00009124 if (!Caller->use_empty() &&
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00009125 // void -> non-void is handled specially
Duncan Sandsf413cdf2008-06-01 07:38:42 +00009126 NewRetTy != Type::VoidTy && !CastInst::isCastable(NewRetTy, OldRetTy))
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00009127 return false; // Cannot transform this return value.
9128
Chris Lattner58d74912008-03-12 17:45:29 +00009129 if (!CallerPAL.isEmpty() && !Caller->use_empty()) {
Devang Pateleaf42ab2008-09-23 23:03:40 +00009130 Attributes RAttrs = CallerPAL.getParamAttrs(0);
Duncan Sandsf413cdf2008-06-01 07:38:42 +00009131 if (RAttrs & ParamAttr::typeIncompatible(NewRetTy))
Duncan Sands6c3470e2008-01-07 17:16:06 +00009132 return false; // Attribute not compatible with transformed value.
9133 }
Duncan Sandsad9a9e12008-01-06 18:27:01 +00009134
Chris Lattnerf78616b2004-01-14 06:06:08 +00009135 // If the callsite is an invoke instruction, and the return value is used by
9136 // a PHI node in a successor, we cannot change the return type of the call
9137 // because there is no place to put the cast instruction (without breaking
9138 // the critical edge). Bail out in this case.
9139 if (!Caller->use_empty())
9140 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller))
9141 for (Value::use_iterator UI = II->use_begin(), E = II->use_end();
9142 UI != E; ++UI)
9143 if (PHINode *PN = dyn_cast<PHINode>(*UI))
9144 if (PN->getParent() == II->getNormalDest() ||
Chris Lattneraeb2a1d2004-02-08 21:44:31 +00009145 PN->getParent() == II->getUnwindDest())
Chris Lattnerf78616b2004-01-14 06:06:08 +00009146 return false;
9147 }
Chris Lattner9fe38862003-06-19 17:00:31 +00009148
9149 unsigned NumActualArgs = unsigned(CS.arg_end()-CS.arg_begin());
9150 unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs);
Misha Brukmanfd939082005-04-21 23:48:37 +00009151
Chris Lattner9fe38862003-06-19 17:00:31 +00009152 CallSite::arg_iterator AI = CS.arg_begin();
9153 for (unsigned i = 0, e = NumCommonArgs; i != e; ++i, ++AI) {
9154 const Type *ParamTy = FT->getParamType(i);
Andrew Lenharthb8e604c2006-06-28 01:01:52 +00009155 const Type *ActTy = (*AI)->getType();
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00009156
9157 if (!CastInst::isCastable(ActTy, ParamTy))
Duncan Sandsad9a9e12008-01-06 18:27:01 +00009158 return false; // Cannot transform this parameter value.
9159
Chris Lattner58d74912008-03-12 17:45:29 +00009160 if (CallerPAL.getParamAttrs(i + 1) & ParamAttr::typeIncompatible(ParamTy))
9161 return false; // Attribute not compatible with transformed value.
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00009162
Duncan Sandsf413cdf2008-06-01 07:38:42 +00009163 // Converting from one pointer type to another or between a pointer and an
9164 // integer of the same size is safe even if we do not have a body.
Chris Lattnerec479922007-01-06 02:09:32 +00009165 bool isConvertible = ActTy == ParamTy ||
Duncan Sandsf413cdf2008-06-01 07:38:42 +00009166 ((isa<PointerType>(ParamTy) || ParamTy == TD->getIntPtrType()) &&
9167 (isa<PointerType>(ActTy) || ActTy == TD->getIntPtrType()));
Reid Spencer5cbf9852007-01-30 20:08:39 +00009168 if (Callee->isDeclaration() && !isConvertible) return false;
Chris Lattner9fe38862003-06-19 17:00:31 +00009169 }
9170
9171 if (FT->getNumParams() < NumActualArgs && !FT->isVarArg() &&
Reid Spencer5cbf9852007-01-30 20:08:39 +00009172 Callee->isDeclaration())
Chris Lattner58d74912008-03-12 17:45:29 +00009173 return false; // Do not delete arguments unless we have a function body.
Chris Lattner9fe38862003-06-19 17:00:31 +00009174
Chris Lattner58d74912008-03-12 17:45:29 +00009175 if (FT->getNumParams() < NumActualArgs && FT->isVarArg() &&
9176 !CallerPAL.isEmpty())
Duncan Sandsad9a9e12008-01-06 18:27:01 +00009177 // In this case we have more arguments than the new function type, but we
Duncan Sandse1e520f2008-01-13 08:02:44 +00009178 // won't be dropping them. Check that these extra arguments have attributes
9179 // that are compatible with being a vararg call argument.
Chris Lattner58d74912008-03-12 17:45:29 +00009180 for (unsigned i = CallerPAL.getNumSlots(); i; --i) {
9181 if (CallerPAL.getSlot(i - 1).Index <= FT->getNumParams())
Duncan Sandse1e520f2008-01-13 08:02:44 +00009182 break;
Devang Pateleaf42ab2008-09-23 23:03:40 +00009183 Attributes PAttrs = CallerPAL.getSlot(i - 1).Attrs;
Duncan Sandse1e520f2008-01-13 08:02:44 +00009184 if (PAttrs & ParamAttr::VarArgsIncompatible)
9185 return false;
9186 }
Duncan Sandsad9a9e12008-01-06 18:27:01 +00009187
Chris Lattner9fe38862003-06-19 17:00:31 +00009188 // Okay, we decided that this is a safe thing to do: go ahead and start
9189 // inserting cast instructions as necessary...
9190 std::vector<Value*> Args;
9191 Args.reserve(NumActualArgs);
Chris Lattner58d74912008-03-12 17:45:29 +00009192 SmallVector<ParamAttrsWithIndex, 8> attrVec;
Duncan Sandsad9a9e12008-01-06 18:27:01 +00009193 attrVec.reserve(NumCommonArgs);
9194
9195 // Get any return attributes.
Devang Pateleaf42ab2008-09-23 23:03:40 +00009196 Attributes RAttrs = CallerPAL.getParamAttrs(0);
Duncan Sandsad9a9e12008-01-06 18:27:01 +00009197
9198 // If the return value is not being used, the type may not be compatible
9199 // with the existing attributes. Wipe out any problematic attributes.
Duncan Sandsf413cdf2008-06-01 07:38:42 +00009200 RAttrs &= ~ParamAttr::typeIncompatible(NewRetTy);
Duncan Sandsad9a9e12008-01-06 18:27:01 +00009201
9202 // Add the new return attributes.
9203 if (RAttrs)
9204 attrVec.push_back(ParamAttrsWithIndex::get(0, RAttrs));
Chris Lattner9fe38862003-06-19 17:00:31 +00009205
9206 AI = CS.arg_begin();
9207 for (unsigned i = 0; i != NumCommonArgs; ++i, ++AI) {
9208 const Type *ParamTy = FT->getParamType(i);
9209 if ((*AI)->getType() == ParamTy) {
9210 Args.push_back(*AI);
9211 } else {
Reid Spencer8a903db2006-12-18 08:47:13 +00009212 Instruction::CastOps opcode = CastInst::getCastOpcode(*AI,
Reid Spencerc5b206b2006-12-31 05:48:39 +00009213 false, ParamTy, false);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00009214 CastInst *NewCast = CastInst::Create(opcode, *AI, ParamTy, "tmp");
Reid Spencer3da59db2006-11-27 01:05:10 +00009215 Args.push_back(InsertNewInstBefore(NewCast, *Caller));
Chris Lattner9fe38862003-06-19 17:00:31 +00009216 }
Duncan Sandsad9a9e12008-01-06 18:27:01 +00009217
9218 // Add any parameter attributes.
Devang Pateleaf42ab2008-09-23 23:03:40 +00009219 if (Attributes PAttrs = CallerPAL.getParamAttrs(i + 1))
Duncan Sandsad9a9e12008-01-06 18:27:01 +00009220 attrVec.push_back(ParamAttrsWithIndex::get(i + 1, PAttrs));
Chris Lattner9fe38862003-06-19 17:00:31 +00009221 }
9222
9223 // If the function takes more arguments than the call was taking, add them
9224 // now...
9225 for (unsigned i = NumCommonArgs; i != FT->getNumParams(); ++i)
9226 Args.push_back(Constant::getNullValue(FT->getParamType(i)));
9227
9228 // If we are removing arguments to the function, emit an obnoxious warning...
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00009229 if (FT->getNumParams() < NumActualArgs) {
Chris Lattner9fe38862003-06-19 17:00:31 +00009230 if (!FT->isVarArg()) {
Bill Wendlinge8156192006-12-07 01:30:32 +00009231 cerr << "WARNING: While resolving call to function '"
9232 << Callee->getName() << "' arguments were dropped!\n";
Chris Lattner9fe38862003-06-19 17:00:31 +00009233 } else {
9234 // Add all of the arguments in their promoted form to the arg list...
9235 for (unsigned i = FT->getNumParams(); i != NumActualArgs; ++i, ++AI) {
9236 const Type *PTy = getPromotedType((*AI)->getType());
9237 if (PTy != (*AI)->getType()) {
9238 // Must promote to pass through va_arg area!
Reid Spencerc5b206b2006-12-31 05:48:39 +00009239 Instruction::CastOps opcode = CastInst::getCastOpcode(*AI, false,
9240 PTy, false);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00009241 Instruction *Cast = CastInst::Create(opcode, *AI, PTy, "tmp");
Chris Lattner9fe38862003-06-19 17:00:31 +00009242 InsertNewInstBefore(Cast, *Caller);
9243 Args.push_back(Cast);
9244 } else {
9245 Args.push_back(*AI);
9246 }
Duncan Sandsad9a9e12008-01-06 18:27:01 +00009247
Duncan Sandse1e520f2008-01-13 08:02:44 +00009248 // Add any parameter attributes.
Devang Pateleaf42ab2008-09-23 23:03:40 +00009249 if (Attributes PAttrs = CallerPAL.getParamAttrs(i + 1))
Duncan Sandse1e520f2008-01-13 08:02:44 +00009250 attrVec.push_back(ParamAttrsWithIndex::get(i + 1, PAttrs));
9251 }
Chris Lattner9fe38862003-06-19 17:00:31 +00009252 }
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00009253 }
Chris Lattner9fe38862003-06-19 17:00:31 +00009254
Duncan Sandsf413cdf2008-06-01 07:38:42 +00009255 if (NewRetTy == Type::VoidTy)
Chris Lattner6934a042007-02-11 01:23:03 +00009256 Caller->setName(""); // Void type should not have a name.
Chris Lattner9fe38862003-06-19 17:00:31 +00009257
Chris Lattner58d74912008-03-12 17:45:29 +00009258 const PAListPtr &NewCallerPAL = PAListPtr::get(attrVec.begin(),attrVec.end());
Duncan Sandsad9a9e12008-01-06 18:27:01 +00009259
Chris Lattner9fe38862003-06-19 17:00:31 +00009260 Instruction *NC;
9261 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
Gabor Greif051a9502008-04-06 20:25:17 +00009262 NC = InvokeInst::Create(Callee, II->getNormalDest(), II->getUnwindDest(),
Gabor Greifb1dbcd82008-05-15 10:04:30 +00009263 Args.begin(), Args.end(),
9264 Caller->getName(), Caller);
Reid Spencered3fa852007-07-30 19:53:57 +00009265 cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv());
Duncan Sandsad9a9e12008-01-06 18:27:01 +00009266 cast<InvokeInst>(NC)->setParamAttrs(NewCallerPAL);
Chris Lattner9fe38862003-06-19 17:00:31 +00009267 } else {
Gabor Greif051a9502008-04-06 20:25:17 +00009268 NC = CallInst::Create(Callee, Args.begin(), Args.end(),
9269 Caller->getName(), Caller);
Duncan Sandsdc024672007-11-27 13:23:08 +00009270 CallInst *CI = cast<CallInst>(Caller);
9271 if (CI->isTailCall())
Chris Lattnera9e92112005-05-06 06:48:21 +00009272 cast<CallInst>(NC)->setTailCall();
Duncan Sandsdc024672007-11-27 13:23:08 +00009273 cast<CallInst>(NC)->setCallingConv(CI->getCallingConv());
Duncan Sandsad9a9e12008-01-06 18:27:01 +00009274 cast<CallInst>(NC)->setParamAttrs(NewCallerPAL);
Chris Lattner9fe38862003-06-19 17:00:31 +00009275 }
9276
Chris Lattner6934a042007-02-11 01:23:03 +00009277 // Insert a cast of the return type as necessary.
Chris Lattner9fe38862003-06-19 17:00:31 +00009278 Value *NV = NC;
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00009279 if (OldRetTy != NV->getType() && !Caller->use_empty()) {
Chris Lattner9fe38862003-06-19 17:00:31 +00009280 if (NV->getType() != Type::VoidTy) {
Reid Spencerc5b206b2006-12-31 05:48:39 +00009281 Instruction::CastOps opcode = CastInst::getCastOpcode(NC, false,
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00009282 OldRetTy, false);
Gabor Greif7cbd8a32008-05-16 19:29:10 +00009283 NV = NC = CastInst::Create(opcode, NC, OldRetTy, "tmp");
Chris Lattnerbb609042003-10-30 00:46:41 +00009284
9285 // If this is an invoke instruction, we should insert it after the first
9286 // non-phi, instruction in the normal successor block.
9287 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
Dan Gohman02dea8b2008-05-23 21:05:58 +00009288 BasicBlock::iterator I = II->getNormalDest()->getFirstNonPHI();
Chris Lattnerbb609042003-10-30 00:46:41 +00009289 InsertNewInstBefore(NC, *I);
9290 } else {
9291 // Otherwise, it's a call, just insert cast right after the call instr
9292 InsertNewInstBefore(NC, *Caller);
9293 }
Chris Lattner7bcc0e72004-02-28 05:22:00 +00009294 AddUsersToWorkList(*Caller);
Chris Lattner9fe38862003-06-19 17:00:31 +00009295 } else {
Chris Lattnerc30bda72004-10-17 21:22:38 +00009296 NV = UndefValue::get(Caller->getType());
Chris Lattner9fe38862003-06-19 17:00:31 +00009297 }
9298 }
9299
9300 if (Caller->getType() != Type::VoidTy && !Caller->use_empty())
9301 Caller->replaceAllUsesWith(NV);
Chris Lattnerf22a5c62007-03-02 19:59:19 +00009302 Caller->eraseFromParent();
Chris Lattnerdbab3862007-03-02 21:28:56 +00009303 RemoveFromWorkList(Caller);
Chris Lattner9fe38862003-06-19 17:00:31 +00009304 return true;
9305}
9306
Duncan Sandscdb6d922007-09-17 10:26:40 +00009307// transformCallThroughTrampoline - Turn a call to a function created by the
9308// init_trampoline intrinsic into a direct call to the underlying function.
9309//
9310Instruction *InstCombiner::transformCallThroughTrampoline(CallSite CS) {
9311 Value *Callee = CS.getCalledValue();
9312 const PointerType *PTy = cast<PointerType>(Callee->getType());
9313 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
Chris Lattner58d74912008-03-12 17:45:29 +00009314 const PAListPtr &Attrs = CS.getParamAttrs();
Duncan Sandsb0c9b932008-01-14 19:52:09 +00009315
9316 // If the call already has the 'nest' attribute somewhere then give up -
9317 // otherwise 'nest' would occur twice after splicing in the chain.
Chris Lattner58d74912008-03-12 17:45:29 +00009318 if (Attrs.hasAttrSomewhere(ParamAttr::Nest))
Duncan Sandsb0c9b932008-01-14 19:52:09 +00009319 return 0;
Duncan Sandscdb6d922007-09-17 10:26:40 +00009320
9321 IntrinsicInst *Tramp =
9322 cast<IntrinsicInst>(cast<BitCastInst>(Callee)->getOperand(0));
9323
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +00009324 Function *NestF = cast<Function>(Tramp->getOperand(2)->stripPointerCasts());
Duncan Sandscdb6d922007-09-17 10:26:40 +00009325 const PointerType *NestFPTy = cast<PointerType>(NestF->getType());
9326 const FunctionType *NestFTy = cast<FunctionType>(NestFPTy->getElementType());
9327
Chris Lattner58d74912008-03-12 17:45:29 +00009328 const PAListPtr &NestAttrs = NestF->getParamAttrs();
9329 if (!NestAttrs.isEmpty()) {
Duncan Sandscdb6d922007-09-17 10:26:40 +00009330 unsigned NestIdx = 1;
9331 const Type *NestTy = 0;
Devang Pateleaf42ab2008-09-23 23:03:40 +00009332 Attributes NestAttr = ParamAttr::None;
Duncan Sandscdb6d922007-09-17 10:26:40 +00009333
9334 // Look for a parameter marked with the 'nest' attribute.
9335 for (FunctionType::param_iterator I = NestFTy->param_begin(),
9336 E = NestFTy->param_end(); I != E; ++NestIdx, ++I)
Chris Lattner58d74912008-03-12 17:45:29 +00009337 if (NestAttrs.paramHasAttr(NestIdx, ParamAttr::Nest)) {
Duncan Sandscdb6d922007-09-17 10:26:40 +00009338 // Record the parameter type and any other attributes.
9339 NestTy = *I;
Chris Lattner58d74912008-03-12 17:45:29 +00009340 NestAttr = NestAttrs.getParamAttrs(NestIdx);
Duncan Sandscdb6d922007-09-17 10:26:40 +00009341 break;
9342 }
9343
9344 if (NestTy) {
9345 Instruction *Caller = CS.getInstruction();
9346 std::vector<Value*> NewArgs;
9347 NewArgs.reserve(unsigned(CS.arg_end()-CS.arg_begin())+1);
9348
Chris Lattner58d74912008-03-12 17:45:29 +00009349 SmallVector<ParamAttrsWithIndex, 8> NewAttrs;
9350 NewAttrs.reserve(Attrs.getNumSlots() + 1);
Duncan Sandsb0c9b932008-01-14 19:52:09 +00009351
Duncan Sandscdb6d922007-09-17 10:26:40 +00009352 // Insert the nest argument into the call argument list, which may
Duncan Sandsb0c9b932008-01-14 19:52:09 +00009353 // mean appending it. Likewise for attributes.
9354
9355 // Add any function result attributes.
Devang Pateleaf42ab2008-09-23 23:03:40 +00009356 if (Attributes Attr = Attrs.getParamAttrs(0))
Chris Lattner58d74912008-03-12 17:45:29 +00009357 NewAttrs.push_back(ParamAttrsWithIndex::get(0, Attr));
Duncan Sandsb0c9b932008-01-14 19:52:09 +00009358
Duncan Sandscdb6d922007-09-17 10:26:40 +00009359 {
9360 unsigned Idx = 1;
9361 CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
9362 do {
9363 if (Idx == NestIdx) {
Duncan Sandsb0c9b932008-01-14 19:52:09 +00009364 // Add the chain argument and attributes.
Duncan Sandscdb6d922007-09-17 10:26:40 +00009365 Value *NestVal = Tramp->getOperand(3);
9366 if (NestVal->getType() != NestTy)
9367 NestVal = new BitCastInst(NestVal, NestTy, "nest", Caller);
9368 NewArgs.push_back(NestVal);
Duncan Sandsb0c9b932008-01-14 19:52:09 +00009369 NewAttrs.push_back(ParamAttrsWithIndex::get(NestIdx, NestAttr));
Duncan Sandscdb6d922007-09-17 10:26:40 +00009370 }
9371
9372 if (I == E)
9373 break;
9374
Duncan Sandsb0c9b932008-01-14 19:52:09 +00009375 // Add the original argument and attributes.
Duncan Sandscdb6d922007-09-17 10:26:40 +00009376 NewArgs.push_back(*I);
Devang Pateleaf42ab2008-09-23 23:03:40 +00009377 if (Attributes Attr = Attrs.getParamAttrs(Idx))
Duncan Sandsb0c9b932008-01-14 19:52:09 +00009378 NewAttrs.push_back
9379 (ParamAttrsWithIndex::get(Idx + (Idx >= NestIdx), Attr));
Duncan Sandscdb6d922007-09-17 10:26:40 +00009380
9381 ++Idx, ++I;
9382 } while (1);
9383 }
9384
9385 // The trampoline may have been bitcast to a bogus type (FTy).
9386 // Handle this by synthesizing a new function type, equal to FTy
Duncan Sandsb0c9b932008-01-14 19:52:09 +00009387 // with the chain parameter inserted.
Duncan Sandscdb6d922007-09-17 10:26:40 +00009388
Duncan Sandscdb6d922007-09-17 10:26:40 +00009389 std::vector<const Type*> NewTypes;
Duncan Sandscdb6d922007-09-17 10:26:40 +00009390 NewTypes.reserve(FTy->getNumParams()+1);
9391
Duncan Sandscdb6d922007-09-17 10:26:40 +00009392 // Insert the chain's type into the list of parameter types, which may
Duncan Sandsb0c9b932008-01-14 19:52:09 +00009393 // mean appending it.
Duncan Sandscdb6d922007-09-17 10:26:40 +00009394 {
9395 unsigned Idx = 1;
9396 FunctionType::param_iterator I = FTy->param_begin(),
9397 E = FTy->param_end();
9398
9399 do {
Duncan Sandsb0c9b932008-01-14 19:52:09 +00009400 if (Idx == NestIdx)
9401 // Add the chain's type.
Duncan Sandscdb6d922007-09-17 10:26:40 +00009402 NewTypes.push_back(NestTy);
Duncan Sandscdb6d922007-09-17 10:26:40 +00009403
9404 if (I == E)
9405 break;
9406
Duncan Sandsb0c9b932008-01-14 19:52:09 +00009407 // Add the original type.
Duncan Sandscdb6d922007-09-17 10:26:40 +00009408 NewTypes.push_back(*I);
Duncan Sandscdb6d922007-09-17 10:26:40 +00009409
9410 ++Idx, ++I;
9411 } while (1);
9412 }
9413
9414 // Replace the trampoline call with a direct call. Let the generic
9415 // code sort out any function type mismatches.
9416 FunctionType *NewFTy =
Duncan Sandsdc024672007-11-27 13:23:08 +00009417 FunctionType::get(FTy->getReturnType(), NewTypes, FTy->isVarArg());
Christopher Lamb43ad6b32007-12-17 01:12:55 +00009418 Constant *NewCallee = NestF->getType() == PointerType::getUnqual(NewFTy) ?
9419 NestF : ConstantExpr::getBitCast(NestF, PointerType::getUnqual(NewFTy));
Chris Lattner58d74912008-03-12 17:45:29 +00009420 const PAListPtr &NewPAL = PAListPtr::get(NewAttrs.begin(),NewAttrs.end());
Duncan Sandscdb6d922007-09-17 10:26:40 +00009421
9422 Instruction *NewCaller;
9423 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
Gabor Greif051a9502008-04-06 20:25:17 +00009424 NewCaller = InvokeInst::Create(NewCallee,
9425 II->getNormalDest(), II->getUnwindDest(),
9426 NewArgs.begin(), NewArgs.end(),
9427 Caller->getName(), Caller);
Duncan Sandscdb6d922007-09-17 10:26:40 +00009428 cast<InvokeInst>(NewCaller)->setCallingConv(II->getCallingConv());
Duncan Sandsdc024672007-11-27 13:23:08 +00009429 cast<InvokeInst>(NewCaller)->setParamAttrs(NewPAL);
Duncan Sandscdb6d922007-09-17 10:26:40 +00009430 } else {
Gabor Greif051a9502008-04-06 20:25:17 +00009431 NewCaller = CallInst::Create(NewCallee, NewArgs.begin(), NewArgs.end(),
9432 Caller->getName(), Caller);
Duncan Sandscdb6d922007-09-17 10:26:40 +00009433 if (cast<CallInst>(Caller)->isTailCall())
9434 cast<CallInst>(NewCaller)->setTailCall();
9435 cast<CallInst>(NewCaller)->
9436 setCallingConv(cast<CallInst>(Caller)->getCallingConv());
Duncan Sandsdc024672007-11-27 13:23:08 +00009437 cast<CallInst>(NewCaller)->setParamAttrs(NewPAL);
Duncan Sandscdb6d922007-09-17 10:26:40 +00009438 }
9439 if (Caller->getType() != Type::VoidTy && !Caller->use_empty())
9440 Caller->replaceAllUsesWith(NewCaller);
9441 Caller->eraseFromParent();
9442 RemoveFromWorkList(Caller);
9443 return 0;
9444 }
9445 }
9446
9447 // Replace the trampoline call with a direct call. Since there is no 'nest'
9448 // parameter, there is no need to adjust the argument list. Let the generic
9449 // code sort out any function type mismatches.
9450 Constant *NewCallee =
9451 NestF->getType() == PTy ? NestF : ConstantExpr::getBitCast(NestF, PTy);
9452 CS.setCalledFunction(NewCallee);
9453 return CS.getInstruction();
9454}
9455
Chris Lattner7da52b22006-11-01 04:51:18 +00009456/// FoldPHIArgBinOpIntoPHI - If we have something like phi [add (a,b), add(c,d)]
9457/// and if a/b/c/d and the add's all have a single use, turn this into two phi's
9458/// and a single binop.
9459Instruction *InstCombiner::FoldPHIArgBinOpIntoPHI(PHINode &PN) {
9460 Instruction *FirstInst = cast<Instruction>(PN.getIncomingValue(0));
Reid Spencer832254e2007-02-02 02:16:23 +00009461 assert(isa<BinaryOperator>(FirstInst) || isa<GetElementPtrInst>(FirstInst) ||
9462 isa<CmpInst>(FirstInst));
Chris Lattner7da52b22006-11-01 04:51:18 +00009463 unsigned Opc = FirstInst->getOpcode();
Chris Lattnerf6fd94d2006-11-08 19:29:23 +00009464 Value *LHSVal = FirstInst->getOperand(0);
9465 Value *RHSVal = FirstInst->getOperand(1);
9466
9467 const Type *LHSType = LHSVal->getType();
9468 const Type *RHSType = RHSVal->getType();
Chris Lattner7da52b22006-11-01 04:51:18 +00009469
9470 // Scan to see if all operands are the same opcode, all have one use, and all
9471 // kill their operands (i.e. the operands have one use).
Chris Lattnera90a24c2006-11-01 04:55:47 +00009472 for (unsigned i = 0; i != PN.getNumIncomingValues(); ++i) {
Chris Lattner7da52b22006-11-01 04:51:18 +00009473 Instruction *I = dyn_cast<Instruction>(PN.getIncomingValue(i));
Chris Lattnera90a24c2006-11-01 04:55:47 +00009474 if (!I || I->getOpcode() != Opc || !I->hasOneUse() ||
Reid Spencere4d87aa2006-12-23 06:05:41 +00009475 // Verify type of the LHS matches so we don't fold cmp's of different
Chris Lattner9c080502006-11-01 07:43:41 +00009476 // types or GEP's with different index types.
9477 I->getOperand(0)->getType() != LHSType ||
9478 I->getOperand(1)->getType() != RHSType)
Chris Lattner7da52b22006-11-01 04:51:18 +00009479 return 0;
Reid Spencere4d87aa2006-12-23 06:05:41 +00009480
9481 // If they are CmpInst instructions, check their predicates
9482 if (Opc == Instruction::ICmp || Opc == Instruction::FCmp)
9483 if (cast<CmpInst>(I)->getPredicate() !=
9484 cast<CmpInst>(FirstInst)->getPredicate())
9485 return 0;
Chris Lattnerf6fd94d2006-11-08 19:29:23 +00009486
9487 // Keep track of which operand needs a phi node.
9488 if (I->getOperand(0) != LHSVal) LHSVal = 0;
9489 if (I->getOperand(1) != RHSVal) RHSVal = 0;
Chris Lattner7da52b22006-11-01 04:51:18 +00009490 }
9491
Chris Lattner53738a42006-11-08 19:42:28 +00009492 // Otherwise, this is safe to transform, determine if it is profitable.
9493
9494 // If this is a GEP, and if the index (not the pointer) needs a PHI, bail out.
9495 // Indexes are often folded into load/store instructions, so we don't want to
9496 // hide them behind a phi.
9497 if (isa<GetElementPtrInst>(FirstInst) && RHSVal == 0)
9498 return 0;
9499
Chris Lattner7da52b22006-11-01 04:51:18 +00009500 Value *InLHS = FirstInst->getOperand(0);
Chris Lattner7da52b22006-11-01 04:51:18 +00009501 Value *InRHS = FirstInst->getOperand(1);
Chris Lattner53738a42006-11-08 19:42:28 +00009502 PHINode *NewLHS = 0, *NewRHS = 0;
Chris Lattnerf6fd94d2006-11-08 19:29:23 +00009503 if (LHSVal == 0) {
Gabor Greifb1dbcd82008-05-15 10:04:30 +00009504 NewLHS = PHINode::Create(LHSType,
9505 FirstInst->getOperand(0)->getName() + ".pn");
Chris Lattnerf6fd94d2006-11-08 19:29:23 +00009506 NewLHS->reserveOperandSpace(PN.getNumOperands()/2);
9507 NewLHS->addIncoming(InLHS, PN.getIncomingBlock(0));
Chris Lattner9c080502006-11-01 07:43:41 +00009508 InsertNewInstBefore(NewLHS, PN);
9509 LHSVal = NewLHS;
9510 }
Chris Lattnerf6fd94d2006-11-08 19:29:23 +00009511
9512 if (RHSVal == 0) {
Gabor Greifb1dbcd82008-05-15 10:04:30 +00009513 NewRHS = PHINode::Create(RHSType,
9514 FirstInst->getOperand(1)->getName() + ".pn");
Chris Lattnerf6fd94d2006-11-08 19:29:23 +00009515 NewRHS->reserveOperandSpace(PN.getNumOperands()/2);
9516 NewRHS->addIncoming(InRHS, PN.getIncomingBlock(0));
Chris Lattner9c080502006-11-01 07:43:41 +00009517 InsertNewInstBefore(NewRHS, PN);
9518 RHSVal = NewRHS;
9519 }
9520
Chris Lattnerf6fd94d2006-11-08 19:29:23 +00009521 // Add all operands to the new PHIs.
9522 for (unsigned i = 1, e = PN.getNumIncomingValues(); i != e; ++i) {
9523 if (NewLHS) {
9524 Value *NewInLHS =cast<Instruction>(PN.getIncomingValue(i))->getOperand(0);
9525 NewLHS->addIncoming(NewInLHS, PN.getIncomingBlock(i));
9526 }
9527 if (NewRHS) {
9528 Value *NewInRHS =cast<Instruction>(PN.getIncomingValue(i))->getOperand(1);
9529 NewRHS->addIncoming(NewInRHS, PN.getIncomingBlock(i));
9530 }
9531 }
9532
Chris Lattner7da52b22006-11-01 04:51:18 +00009533 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(FirstInst))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00009534 return BinaryOperator::Create(BinOp->getOpcode(), LHSVal, RHSVal);
Reid Spencere4d87aa2006-12-23 06:05:41 +00009535 else if (CmpInst *CIOp = dyn_cast<CmpInst>(FirstInst))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00009536 return CmpInst::Create(CIOp->getOpcode(), CIOp->getPredicate(), LHSVal,
Reid Spencere4d87aa2006-12-23 06:05:41 +00009537 RHSVal);
Chris Lattner9c080502006-11-01 07:43:41 +00009538 else {
9539 assert(isa<GetElementPtrInst>(FirstInst));
Gabor Greif051a9502008-04-06 20:25:17 +00009540 return GetElementPtrInst::Create(LHSVal, RHSVal);
Chris Lattner9c080502006-11-01 07:43:41 +00009541 }
Chris Lattner7da52b22006-11-01 04:51:18 +00009542}
9543
Chris Lattner76c73142006-11-01 07:13:54 +00009544/// isSafeToSinkLoad - Return true if we know that it is safe sink the load out
9545/// of the block that defines it. This means that it must be obvious the value
9546/// of the load is not changed from the point of the load to the end of the
9547/// block it is in.
Chris Lattnerfd905ca2007-02-01 22:30:07 +00009548///
9549/// Finally, it is safe, but not profitable, to sink a load targetting a
9550/// non-address-taken alloca. Doing so will cause us to not promote the alloca
9551/// to a register.
Chris Lattner76c73142006-11-01 07:13:54 +00009552static bool isSafeToSinkLoad(LoadInst *L) {
9553 BasicBlock::iterator BBI = L, E = L->getParent()->end();
9554
9555 for (++BBI; BBI != E; ++BBI)
9556 if (BBI->mayWriteToMemory())
9557 return false;
Chris Lattnerfd905ca2007-02-01 22:30:07 +00009558
9559 // Check for non-address taken alloca. If not address-taken already, it isn't
9560 // profitable to do this xform.
9561 if (AllocaInst *AI = dyn_cast<AllocaInst>(L->getOperand(0))) {
9562 bool isAddressTaken = false;
9563 for (Value::use_iterator UI = AI->use_begin(), E = AI->use_end();
9564 UI != E; ++UI) {
9565 if (isa<LoadInst>(UI)) continue;
9566 if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
9567 // If storing TO the alloca, then the address isn't taken.
9568 if (SI->getOperand(1) == AI) continue;
9569 }
9570 isAddressTaken = true;
9571 break;
9572 }
9573
9574 if (!isAddressTaken)
9575 return false;
9576 }
9577
Chris Lattner76c73142006-11-01 07:13:54 +00009578 return true;
9579}
9580
Chris Lattner9fe38862003-06-19 17:00:31 +00009581
Chris Lattnerbac32862004-11-14 19:13:23 +00009582// FoldPHIArgOpIntoPHI - If all operands to a PHI node are the same "unary"
9583// operator and they all are only used by the PHI, PHI together their
9584// inputs, and do the operation once, to the result of the PHI.
9585Instruction *InstCombiner::FoldPHIArgOpIntoPHI(PHINode &PN) {
9586 Instruction *FirstInst = cast<Instruction>(PN.getIncomingValue(0));
9587
9588 // Scan the instruction, looking for input operations that can be folded away.
9589 // If all input operands to the phi are the same instruction (e.g. a cast from
9590 // the same type or "+42") we can pull the operation through the PHI, reducing
9591 // code size and simplifying code.
9592 Constant *ConstantOp = 0;
9593 const Type *CastSrcTy = 0;
Chris Lattner76c73142006-11-01 07:13:54 +00009594 bool isVolatile = false;
Chris Lattnerbac32862004-11-14 19:13:23 +00009595 if (isa<CastInst>(FirstInst)) {
9596 CastSrcTy = FirstInst->getOperand(0)->getType();
Reid Spencer832254e2007-02-02 02:16:23 +00009597 } else if (isa<BinaryOperator>(FirstInst) || isa<CmpInst>(FirstInst)) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00009598 // Can fold binop, compare or shift here if the RHS is a constant,
9599 // otherwise call FoldPHIArgBinOpIntoPHI.
Chris Lattnerbac32862004-11-14 19:13:23 +00009600 ConstantOp = dyn_cast<Constant>(FirstInst->getOperand(1));
Chris Lattner7da52b22006-11-01 04:51:18 +00009601 if (ConstantOp == 0)
9602 return FoldPHIArgBinOpIntoPHI(PN);
Chris Lattner76c73142006-11-01 07:13:54 +00009603 } else if (LoadInst *LI = dyn_cast<LoadInst>(FirstInst)) {
9604 isVolatile = LI->isVolatile();
9605 // We can't sink the load if the loaded value could be modified between the
9606 // load and the PHI.
9607 if (LI->getParent() != PN.getIncomingBlock(0) ||
9608 !isSafeToSinkLoad(LI))
9609 return 0;
Chris Lattner71042962008-07-08 17:18:32 +00009610
9611 // If the PHI is of volatile loads and the load block has multiple
9612 // successors, sinking it would remove a load of the volatile value from
9613 // the path through the other successor.
9614 if (isVolatile &&
9615 LI->getParent()->getTerminator()->getNumSuccessors() != 1)
9616 return 0;
9617
Chris Lattner9c080502006-11-01 07:43:41 +00009618 } else if (isa<GetElementPtrInst>(FirstInst)) {
Chris Lattner53738a42006-11-08 19:42:28 +00009619 if (FirstInst->getNumOperands() == 2)
Chris Lattner9c080502006-11-01 07:43:41 +00009620 return FoldPHIArgBinOpIntoPHI(PN);
9621 // Can't handle general GEPs yet.
9622 return 0;
Chris Lattnerbac32862004-11-14 19:13:23 +00009623 } else {
9624 return 0; // Cannot fold this operation.
9625 }
9626
9627 // Check to see if all arguments are the same operation.
9628 for (unsigned i = 1, e = PN.getNumIncomingValues(); i != e; ++i) {
9629 if (!isa<Instruction>(PN.getIncomingValue(i))) return 0;
9630 Instruction *I = cast<Instruction>(PN.getIncomingValue(i));
Reid Spencere4d87aa2006-12-23 06:05:41 +00009631 if (!I->hasOneUse() || !I->isSameOperationAs(FirstInst))
Chris Lattnerbac32862004-11-14 19:13:23 +00009632 return 0;
9633 if (CastSrcTy) {
9634 if (I->getOperand(0)->getType() != CastSrcTy)
9635 return 0; // Cast operation must match.
Chris Lattner76c73142006-11-01 07:13:54 +00009636 } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00009637 // We can't sink the load if the loaded value could be modified between
9638 // the load and the PHI.
Chris Lattner76c73142006-11-01 07:13:54 +00009639 if (LI->isVolatile() != isVolatile ||
9640 LI->getParent() != PN.getIncomingBlock(i) ||
9641 !isSafeToSinkLoad(LI))
9642 return 0;
Chris Lattner40700fe2008-04-29 17:28:22 +00009643
Chris Lattner71042962008-07-08 17:18:32 +00009644 // If the PHI is of volatile loads and the load block has multiple
9645 // successors, sinking it would remove a load of the volatile value from
9646 // the path through the other successor.
Chris Lattner40700fe2008-04-29 17:28:22 +00009647 if (isVolatile &&
9648 LI->getParent()->getTerminator()->getNumSuccessors() != 1)
9649 return 0;
9650
9651
Chris Lattnerbac32862004-11-14 19:13:23 +00009652 } else if (I->getOperand(1) != ConstantOp) {
9653 return 0;
9654 }
9655 }
9656
9657 // Okay, they are all the same operation. Create a new PHI node of the
9658 // correct type, and PHI together all of the LHS's of the instructions.
Gabor Greif051a9502008-04-06 20:25:17 +00009659 PHINode *NewPN = PHINode::Create(FirstInst->getOperand(0)->getType(),
9660 PN.getName()+".in");
Chris Lattner55517062005-01-29 00:39:08 +00009661 NewPN->reserveOperandSpace(PN.getNumOperands()/2);
Chris Lattnerb5893442004-11-14 19:29:34 +00009662
9663 Value *InVal = FirstInst->getOperand(0);
9664 NewPN->addIncoming(InVal, PN.getIncomingBlock(0));
Chris Lattnerbac32862004-11-14 19:13:23 +00009665
9666 // Add all operands to the new PHI.
Chris Lattnerb5893442004-11-14 19:29:34 +00009667 for (unsigned i = 1, e = PN.getNumIncomingValues(); i != e; ++i) {
9668 Value *NewInVal = cast<Instruction>(PN.getIncomingValue(i))->getOperand(0);
9669 if (NewInVal != InVal)
9670 InVal = 0;
9671 NewPN->addIncoming(NewInVal, PN.getIncomingBlock(i));
9672 }
9673
9674 Value *PhiVal;
9675 if (InVal) {
9676 // The new PHI unions all of the same values together. This is really
9677 // common, so we handle it intelligently here for compile-time speed.
9678 PhiVal = InVal;
9679 delete NewPN;
9680 } else {
9681 InsertNewInstBefore(NewPN, PN);
9682 PhiVal = NewPN;
9683 }
Misha Brukmanfd939082005-04-21 23:48:37 +00009684
Chris Lattnerbac32862004-11-14 19:13:23 +00009685 // Insert and return the new operation.
Reid Spencer3da59db2006-11-27 01:05:10 +00009686 if (CastInst* FirstCI = dyn_cast<CastInst>(FirstInst))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00009687 return CastInst::Create(FirstCI->getOpcode(), PhiVal, PN.getType());
Chris Lattner54545ac2008-04-29 17:13:43 +00009688 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(FirstInst))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00009689 return BinaryOperator::Create(BinOp->getOpcode(), PhiVal, ConstantOp);
Chris Lattner54545ac2008-04-29 17:13:43 +00009690 if (CmpInst *CIOp = dyn_cast<CmpInst>(FirstInst))
Gabor Greif7cbd8a32008-05-16 19:29:10 +00009691 return CmpInst::Create(CIOp->getOpcode(), CIOp->getPredicate(),
Reid Spencere4d87aa2006-12-23 06:05:41 +00009692 PhiVal, ConstantOp);
Chris Lattner54545ac2008-04-29 17:13:43 +00009693 assert(isa<LoadInst>(FirstInst) && "Unknown operation");
9694
9695 // If this was a volatile load that we are merging, make sure to loop through
9696 // and mark all the input loads as non-volatile. If we don't do this, we will
9697 // insert a new volatile load and the old ones will not be deletable.
9698 if (isVolatile)
9699 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
9700 cast<LoadInst>(PN.getIncomingValue(i))->setVolatile(false);
9701
9702 return new LoadInst(PhiVal, "", isVolatile);
Chris Lattnerbac32862004-11-14 19:13:23 +00009703}
Chris Lattnera1be5662002-05-02 17:06:02 +00009704
Chris Lattnera3fd1c52005-01-17 05:10:15 +00009705/// DeadPHICycle - Return true if this PHI node is only used by a PHI node cycle
9706/// that is dead.
Chris Lattner0e5444b2007-03-26 20:40:50 +00009707static bool DeadPHICycle(PHINode *PN,
9708 SmallPtrSet<PHINode*, 16> &PotentiallyDeadPHIs) {
Chris Lattnera3fd1c52005-01-17 05:10:15 +00009709 if (PN->use_empty()) return true;
9710 if (!PN->hasOneUse()) return false;
9711
9712 // Remember this node, and if we find the cycle, return.
Chris Lattner0e5444b2007-03-26 20:40:50 +00009713 if (!PotentiallyDeadPHIs.insert(PN))
Chris Lattnera3fd1c52005-01-17 05:10:15 +00009714 return true;
Chris Lattner92103de2007-08-28 04:23:55 +00009715
9716 // Don't scan crazily complex things.
9717 if (PotentiallyDeadPHIs.size() == 16)
9718 return false;
Chris Lattnera3fd1c52005-01-17 05:10:15 +00009719
9720 if (PHINode *PU = dyn_cast<PHINode>(PN->use_back()))
9721 return DeadPHICycle(PU, PotentiallyDeadPHIs);
Misha Brukmanfd939082005-04-21 23:48:37 +00009722
Chris Lattnera3fd1c52005-01-17 05:10:15 +00009723 return false;
9724}
9725
Chris Lattnercf5008a2007-11-06 21:52:06 +00009726/// PHIsEqualValue - Return true if this phi node is always equal to
9727/// NonPhiInVal. This happens with mutually cyclic phi nodes like:
9728/// z = some value; x = phi (y, z); y = phi (x, z)
9729static bool PHIsEqualValue(PHINode *PN, Value *NonPhiInVal,
9730 SmallPtrSet<PHINode*, 16> &ValueEqualPHIs) {
9731 // See if we already saw this PHI node.
9732 if (!ValueEqualPHIs.insert(PN))
9733 return true;
9734
9735 // Don't scan crazily complex things.
9736 if (ValueEqualPHIs.size() == 16)
9737 return false;
9738
9739 // Scan the operands to see if they are either phi nodes or are equal to
9740 // the value.
9741 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
9742 Value *Op = PN->getIncomingValue(i);
9743 if (PHINode *OpPN = dyn_cast<PHINode>(Op)) {
9744 if (!PHIsEqualValue(OpPN, NonPhiInVal, ValueEqualPHIs))
9745 return false;
9746 } else if (Op != NonPhiInVal)
9747 return false;
9748 }
9749
9750 return true;
9751}
9752
9753
Chris Lattner473945d2002-05-06 18:06:38 +00009754// PHINode simplification
9755//
Chris Lattner7e708292002-06-25 16:13:24 +00009756Instruction *InstCombiner::visitPHINode(PHINode &PN) {
Owen Andersonb64ab872006-07-10 22:15:25 +00009757 // If LCSSA is around, don't mess with Phi nodes
Chris Lattnerf964f322007-03-04 04:27:24 +00009758 if (MustPreserveLCSSA) return 0;
Owen Andersond1b78a12006-07-10 19:03:49 +00009759
Owen Anderson7e057142006-07-10 22:03:18 +00009760 if (Value *V = PN.hasConstantValue())
9761 return ReplaceInstUsesWith(PN, V);
9762
Owen Anderson7e057142006-07-10 22:03:18 +00009763 // If all PHI operands are the same operation, pull them through the PHI,
9764 // reducing code size.
9765 if (isa<Instruction>(PN.getIncomingValue(0)) &&
9766 PN.getIncomingValue(0)->hasOneUse())
9767 if (Instruction *Result = FoldPHIArgOpIntoPHI(PN))
9768 return Result;
9769
9770 // If this is a trivial cycle in the PHI node graph, remove it. Basically, if
9771 // this PHI only has a single use (a PHI), and if that PHI only has one use (a
9772 // PHI)... break the cycle.
Chris Lattnerff9f13a2007-01-15 07:30:06 +00009773 if (PN.hasOneUse()) {
9774 Instruction *PHIUser = cast<Instruction>(PN.use_back());
9775 if (PHINode *PU = dyn_cast<PHINode>(PHIUser)) {
Chris Lattner0e5444b2007-03-26 20:40:50 +00009776 SmallPtrSet<PHINode*, 16> PotentiallyDeadPHIs;
Owen Anderson7e057142006-07-10 22:03:18 +00009777 PotentiallyDeadPHIs.insert(&PN);
9778 if (DeadPHICycle(PU, PotentiallyDeadPHIs))
9779 return ReplaceInstUsesWith(PN, UndefValue::get(PN.getType()));
9780 }
Chris Lattnerff9f13a2007-01-15 07:30:06 +00009781
9782 // If this phi has a single use, and if that use just computes a value for
9783 // the next iteration of a loop, delete the phi. This occurs with unused
9784 // induction variables, e.g. "for (int j = 0; ; ++j);". Detecting this
9785 // common case here is good because the only other things that catch this
9786 // are induction variable analysis (sometimes) and ADCE, which is only run
9787 // late.
9788 if (PHIUser->hasOneUse() &&
9789 (isa<BinaryOperator>(PHIUser) || isa<GetElementPtrInst>(PHIUser)) &&
9790 PHIUser->use_back() == &PN) {
9791 return ReplaceInstUsesWith(PN, UndefValue::get(PN.getType()));
9792 }
9793 }
Owen Anderson7e057142006-07-10 22:03:18 +00009794
Chris Lattnercf5008a2007-11-06 21:52:06 +00009795 // We sometimes end up with phi cycles that non-obviously end up being the
9796 // same value, for example:
9797 // z = some value; x = phi (y, z); y = phi (x, z)
9798 // where the phi nodes don't necessarily need to be in the same block. Do a
9799 // quick check to see if the PHI node only contains a single non-phi value, if
9800 // so, scan to see if the phi cycle is actually equal to that value.
9801 {
9802 unsigned InValNo = 0, NumOperandVals = PN.getNumIncomingValues();
9803 // Scan for the first non-phi operand.
9804 while (InValNo != NumOperandVals &&
9805 isa<PHINode>(PN.getIncomingValue(InValNo)))
9806 ++InValNo;
9807
9808 if (InValNo != NumOperandVals) {
9809 Value *NonPhiInVal = PN.getOperand(InValNo);
9810
9811 // Scan the rest of the operands to see if there are any conflicts, if so
9812 // there is no need to recursively scan other phis.
9813 for (++InValNo; InValNo != NumOperandVals; ++InValNo) {
9814 Value *OpVal = PN.getIncomingValue(InValNo);
9815 if (OpVal != NonPhiInVal && !isa<PHINode>(OpVal))
9816 break;
9817 }
9818
9819 // If we scanned over all operands, then we have one unique value plus
9820 // phi values. Scan PHI nodes to see if they all merge in each other or
9821 // the value.
9822 if (InValNo == NumOperandVals) {
9823 SmallPtrSet<PHINode*, 16> ValueEqualPHIs;
9824 if (PHIsEqualValue(&PN, NonPhiInVal, ValueEqualPHIs))
9825 return ReplaceInstUsesWith(PN, NonPhiInVal);
9826 }
9827 }
9828 }
Chris Lattner60921c92003-12-19 05:58:40 +00009829 return 0;
Chris Lattner473945d2002-05-06 18:06:38 +00009830}
9831
Reid Spencer17212df2006-12-12 09:18:51 +00009832static Value *InsertCastToIntPtrTy(Value *V, const Type *DTy,
9833 Instruction *InsertPoint,
9834 InstCombiner *IC) {
Reid Spencerabaa8ca2007-01-08 16:32:00 +00009835 unsigned PtrSize = DTy->getPrimitiveSizeInBits();
9836 unsigned VTySize = V->getType()->getPrimitiveSizeInBits();
Reid Spencer17212df2006-12-12 09:18:51 +00009837 // We must cast correctly to the pointer type. Ensure that we
9838 // sign extend the integer value if it is smaller as this is
9839 // used for address computation.
9840 Instruction::CastOps opcode =
9841 (VTySize < PtrSize ? Instruction::SExt :
9842 (VTySize == PtrSize ? Instruction::BitCast : Instruction::Trunc));
9843 return IC->InsertCastBefore(opcode, V, DTy, *InsertPoint);
Chris Lattner28977af2004-04-05 01:30:19 +00009844}
9845
Chris Lattnera1be5662002-05-02 17:06:02 +00009846
Chris Lattner7e708292002-06-25 16:13:24 +00009847Instruction *InstCombiner::visitGetElementPtrInst(GetElementPtrInst &GEP) {
Chris Lattner620ce142004-05-07 22:09:22 +00009848 Value *PtrOp = GEP.getOperand(0);
Chris Lattner9bc14642007-04-28 00:57:34 +00009849 // Is it 'getelementptr %P, i32 0' or 'getelementptr %P'
Chris Lattner7e708292002-06-25 16:13:24 +00009850 // If so, eliminate the noop.
Chris Lattnerc6bd1952004-02-22 05:25:17 +00009851 if (GEP.getNumOperands() == 1)
Chris Lattner620ce142004-05-07 22:09:22 +00009852 return ReplaceInstUsesWith(GEP, PtrOp);
Chris Lattnerc6bd1952004-02-22 05:25:17 +00009853
Chris Lattnere87597f2004-10-16 18:11:37 +00009854 if (isa<UndefValue>(GEP.getOperand(0)))
9855 return ReplaceInstUsesWith(GEP, UndefValue::get(GEP.getType()));
9856
Chris Lattnerc6bd1952004-02-22 05:25:17 +00009857 bool HasZeroPointerIndex = false;
9858 if (Constant *C = dyn_cast<Constant>(GEP.getOperand(1)))
9859 HasZeroPointerIndex = C->isNullValue();
9860
9861 if (GEP.getNumOperands() == 2 && HasZeroPointerIndex)
Chris Lattner620ce142004-05-07 22:09:22 +00009862 return ReplaceInstUsesWith(GEP, PtrOp);
Chris Lattnera1be5662002-05-02 17:06:02 +00009863
Chris Lattner28977af2004-04-05 01:30:19 +00009864 // Eliminate unneeded casts for indices.
9865 bool MadeChange = false;
Chris Lattnerdb9654e2007-03-25 20:43:09 +00009866
Chris Lattnercb69a4e2004-04-07 18:38:20 +00009867 gep_type_iterator GTI = gep_type_begin(GEP);
Gabor Greif177dd3f2008-06-12 21:37:33 +00009868 for (User::op_iterator i = GEP.op_begin() + 1, e = GEP.op_end();
9869 i != e; ++i, ++GTI) {
Chris Lattnercb69a4e2004-04-07 18:38:20 +00009870 if (isa<SequentialType>(*GTI)) {
Gabor Greif177dd3f2008-06-12 21:37:33 +00009871 if (CastInst *CI = dyn_cast<CastInst>(*i)) {
Chris Lattner76b7a062007-01-15 07:02:54 +00009872 if (CI->getOpcode() == Instruction::ZExt ||
9873 CI->getOpcode() == Instruction::SExt) {
9874 const Type *SrcTy = CI->getOperand(0)->getType();
9875 // We can eliminate a cast from i32 to i64 iff the target
9876 // is a 32-bit pointer target.
9877 if (SrcTy->getPrimitiveSizeInBits() >= TD->getPointerSizeInBits()) {
9878 MadeChange = true;
Gabor Greif177dd3f2008-06-12 21:37:33 +00009879 *i = CI->getOperand(0);
Chris Lattner28977af2004-04-05 01:30:19 +00009880 }
9881 }
9882 }
Chris Lattnercb69a4e2004-04-07 18:38:20 +00009883 // If we are using a wider index than needed for this platform, shrink it
Dan Gohman4f833d42008-09-11 23:06:38 +00009884 // to what we need. If narrower, sign-extend it to what we need.
9885 // If the incoming value needs a cast instruction,
Chris Lattnercb69a4e2004-04-07 18:38:20 +00009886 // insert it. This explicit cast can make subsequent optimizations more
9887 // obvious.
Gabor Greif177dd3f2008-06-12 21:37:33 +00009888 Value *Op = *i;
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00009889 if (TD->getTypeSizeInBits(Op->getType()) > TD->getPointerSizeInBits()) {
Chris Lattner4f1134e2004-04-17 18:16:10 +00009890 if (Constant *C = dyn_cast<Constant>(Op)) {
Gabor Greif177dd3f2008-06-12 21:37:33 +00009891 *i = ConstantExpr::getTrunc(C, TD->getIntPtrType());
Chris Lattner4f1134e2004-04-17 18:16:10 +00009892 MadeChange = true;
9893 } else {
Reid Spencer17212df2006-12-12 09:18:51 +00009894 Op = InsertCastBefore(Instruction::Trunc, Op, TD->getIntPtrType(),
9895 GEP);
Gabor Greif177dd3f2008-06-12 21:37:33 +00009896 *i = Op;
Chris Lattnercb69a4e2004-04-07 18:38:20 +00009897 MadeChange = true;
9898 }
Dan Gohman4f833d42008-09-11 23:06:38 +00009899 } else if (TD->getTypeSizeInBits(Op->getType()) < TD->getPointerSizeInBits()) {
9900 if (Constant *C = dyn_cast<Constant>(Op)) {
9901 *i = ConstantExpr::getSExt(C, TD->getIntPtrType());
9902 MadeChange = true;
9903 } else {
9904 Op = InsertCastBefore(Instruction::SExt, Op, TD->getIntPtrType(),
9905 GEP);
9906 *i = Op;
9907 MadeChange = true;
9908 }
Anton Korobeynikov07e6e562008-02-20 11:26:25 +00009909 }
Chris Lattner28977af2004-04-05 01:30:19 +00009910 }
Chris Lattnerdb9654e2007-03-25 20:43:09 +00009911 }
Chris Lattner28977af2004-04-05 01:30:19 +00009912 if (MadeChange) return &GEP;
9913
Chris Lattnerdb9654e2007-03-25 20:43:09 +00009914 // If this GEP instruction doesn't move the pointer, and if the input operand
9915 // is a bitcast of another pointer, just replace the GEP with a bitcast of the
9916 // real input to the dest type.
Chris Lattner6a94de22007-10-12 05:30:59 +00009917 if (GEP.hasAllZeroIndices()) {
9918 if (BitCastInst *BCI = dyn_cast<BitCastInst>(GEP.getOperand(0))) {
9919 // If the bitcast is of an allocation, and the allocation will be
9920 // converted to match the type of the cast, don't touch this.
9921 if (isa<AllocationInst>(BCI->getOperand(0))) {
9922 // See if the bitcast simplifies, if so, don't nuke this GEP yet.
Chris Lattnera79dd432007-10-12 18:05:47 +00009923 if (Instruction *I = visitBitCast(*BCI)) {
9924 if (I != BCI) {
9925 I->takeName(BCI);
9926 BCI->getParent()->getInstList().insert(BCI, I);
9927 ReplaceInstUsesWith(*BCI, I);
9928 }
Chris Lattner6a94de22007-10-12 05:30:59 +00009929 return &GEP;
Chris Lattnera79dd432007-10-12 18:05:47 +00009930 }
Chris Lattner6a94de22007-10-12 05:30:59 +00009931 }
9932 return new BitCastInst(BCI->getOperand(0), GEP.getType());
9933 }
9934 }
9935
Chris Lattner90ac28c2002-08-02 19:29:35 +00009936 // Combine Indices - If the source pointer to this getelementptr instruction
9937 // is a getelementptr instruction, combine the indices of the two
9938 // getelementptr instructions into a single instruction.
9939 //
Chris Lattner72588fc2007-02-15 22:48:32 +00009940 SmallVector<Value*, 8> SrcGEPOperands;
Chris Lattner574da9b2005-01-13 20:14:25 +00009941 if (User *Src = dyn_castGetElementPtr(PtrOp))
Chris Lattner72588fc2007-02-15 22:48:32 +00009942 SrcGEPOperands.append(Src->op_begin(), Src->op_end());
Chris Lattnerebd985c2004-03-25 22:59:29 +00009943
9944 if (!SrcGEPOperands.empty()) {
Chris Lattner620ce142004-05-07 22:09:22 +00009945 // Note that if our source is a gep chain itself that we wait for that
9946 // chain to be resolved before we perform this transformation. This
9947 // avoids us creating a TON of code in some cases.
9948 //
9949 if (isa<GetElementPtrInst>(SrcGEPOperands[0]) &&
9950 cast<Instruction>(SrcGEPOperands[0])->getNumOperands() == 2)
9951 return 0; // Wait until our source is folded to completion.
9952
Chris Lattner72588fc2007-02-15 22:48:32 +00009953 SmallVector<Value*, 8> Indices;
Chris Lattner620ce142004-05-07 22:09:22 +00009954
9955 // Find out whether the last index in the source GEP is a sequential idx.
9956 bool EndsWithSequential = false;
9957 for (gep_type_iterator I = gep_type_begin(*cast<User>(PtrOp)),
9958 E = gep_type_end(*cast<User>(PtrOp)); I != E; ++I)
Chris Lattnerbe97b4e2004-05-08 22:41:42 +00009959 EndsWithSequential = !isa<StructType>(*I);
Misha Brukmanfd939082005-04-21 23:48:37 +00009960
Chris Lattner90ac28c2002-08-02 19:29:35 +00009961 // Can we combine the two pointer arithmetics offsets?
Chris Lattner620ce142004-05-07 22:09:22 +00009962 if (EndsWithSequential) {
Chris Lattnerdecd0812003-03-05 22:33:14 +00009963 // Replace: gep (gep %P, long B), long A, ...
9964 // With: T = long A+B; gep %P, T, ...
9965 //
Chris Lattner620ce142004-05-07 22:09:22 +00009966 Value *Sum, *SO1 = SrcGEPOperands.back(), *GO1 = GEP.getOperand(1);
Chris Lattner28977af2004-04-05 01:30:19 +00009967 if (SO1 == Constant::getNullValue(SO1->getType())) {
9968 Sum = GO1;
9969 } else if (GO1 == Constant::getNullValue(GO1->getType())) {
9970 Sum = SO1;
9971 } else {
9972 // If they aren't the same type, convert both to an integer of the
9973 // target's pointer size.
9974 if (SO1->getType() != GO1->getType()) {
9975 if (Constant *SO1C = dyn_cast<Constant>(SO1)) {
Reid Spencer17212df2006-12-12 09:18:51 +00009976 SO1 = ConstantExpr::getIntegerCast(SO1C, GO1->getType(), true);
Chris Lattner28977af2004-04-05 01:30:19 +00009977 } else if (Constant *GO1C = dyn_cast<Constant>(GO1)) {
Reid Spencer17212df2006-12-12 09:18:51 +00009978 GO1 = ConstantExpr::getIntegerCast(GO1C, SO1->getType(), true);
Chris Lattner28977af2004-04-05 01:30:19 +00009979 } else {
Duncan Sands514ab342007-11-01 20:53:16 +00009980 unsigned PS = TD->getPointerSizeInBits();
9981 if (TD->getTypeSizeInBits(SO1->getType()) == PS) {
Chris Lattner28977af2004-04-05 01:30:19 +00009982 // Convert GO1 to SO1's type.
Reid Spencer17212df2006-12-12 09:18:51 +00009983 GO1 = InsertCastToIntPtrTy(GO1, SO1->getType(), &GEP, this);
Chris Lattner28977af2004-04-05 01:30:19 +00009984
Duncan Sands514ab342007-11-01 20:53:16 +00009985 } else if (TD->getTypeSizeInBits(GO1->getType()) == PS) {
Chris Lattner28977af2004-04-05 01:30:19 +00009986 // Convert SO1 to GO1's type.
Reid Spencer17212df2006-12-12 09:18:51 +00009987 SO1 = InsertCastToIntPtrTy(SO1, GO1->getType(), &GEP, this);
Chris Lattner28977af2004-04-05 01:30:19 +00009988 } else {
9989 const Type *PT = TD->getIntPtrType();
Reid Spencer17212df2006-12-12 09:18:51 +00009990 SO1 = InsertCastToIntPtrTy(SO1, PT, &GEP, this);
9991 GO1 = InsertCastToIntPtrTy(GO1, PT, &GEP, this);
Chris Lattner28977af2004-04-05 01:30:19 +00009992 }
9993 }
9994 }
Chris Lattner620ce142004-05-07 22:09:22 +00009995 if (isa<Constant>(SO1) && isa<Constant>(GO1))
9996 Sum = ConstantExpr::getAdd(cast<Constant>(SO1), cast<Constant>(GO1));
9997 else {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00009998 Sum = BinaryOperator::CreateAdd(SO1, GO1, PtrOp->getName()+".sum");
Chris Lattner48595f12004-06-10 02:07:29 +00009999 InsertNewInstBefore(cast<Instruction>(Sum), GEP);
Chris Lattner620ce142004-05-07 22:09:22 +000010000 }
Chris Lattner28977af2004-04-05 01:30:19 +000010001 }
Chris Lattner620ce142004-05-07 22:09:22 +000010002
10003 // Recycle the GEP we already have if possible.
10004 if (SrcGEPOperands.size() == 2) {
10005 GEP.setOperand(0, SrcGEPOperands[0]);
10006 GEP.setOperand(1, Sum);
10007 return &GEP;
10008 } else {
10009 Indices.insert(Indices.end(), SrcGEPOperands.begin()+1,
10010 SrcGEPOperands.end()-1);
10011 Indices.push_back(Sum);
10012 Indices.insert(Indices.end(), GEP.op_begin()+2, GEP.op_end());
10013 }
Misha Brukmanfd939082005-04-21 23:48:37 +000010014 } else if (isa<Constant>(*GEP.idx_begin()) &&
Chris Lattner28977af2004-04-05 01:30:19 +000010015 cast<Constant>(*GEP.idx_begin())->isNullValue() &&
Misha Brukmanfd939082005-04-21 23:48:37 +000010016 SrcGEPOperands.size() != 1) {
Chris Lattner90ac28c2002-08-02 19:29:35 +000010017 // Otherwise we can do the fold if the first index of the GEP is a zero
Chris Lattnerebd985c2004-03-25 22:59:29 +000010018 Indices.insert(Indices.end(), SrcGEPOperands.begin()+1,
10019 SrcGEPOperands.end());
Chris Lattner90ac28c2002-08-02 19:29:35 +000010020 Indices.insert(Indices.end(), GEP.idx_begin()+1, GEP.idx_end());
10021 }
10022
10023 if (!Indices.empty())
Gabor Greif051a9502008-04-06 20:25:17 +000010024 return GetElementPtrInst::Create(SrcGEPOperands[0], Indices.begin(),
10025 Indices.end(), GEP.getName());
Chris Lattner9b761232002-08-17 22:21:59 +000010026
Chris Lattner620ce142004-05-07 22:09:22 +000010027 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(PtrOp)) {
Chris Lattner9b761232002-08-17 22:21:59 +000010028 // GEP of global variable. If all of the indices for this GEP are
10029 // constants, we can promote this to a constexpr instead of an instruction.
10030
10031 // Scan for nonconstants...
Chris Lattner55eb1c42007-01-31 04:40:53 +000010032 SmallVector<Constant*, 8> Indices;
Chris Lattner9b761232002-08-17 22:21:59 +000010033 User::op_iterator I = GEP.idx_begin(), E = GEP.idx_end();
10034 for (; I != E && isa<Constant>(*I); ++I)
10035 Indices.push_back(cast<Constant>(*I));
10036
10037 if (I == E) { // If they are all constants...
Chris Lattner55eb1c42007-01-31 04:40:53 +000010038 Constant *CE = ConstantExpr::getGetElementPtr(GV,
10039 &Indices[0],Indices.size());
Chris Lattner9b761232002-08-17 22:21:59 +000010040
10041 // Replace all uses of the GEP with the new constexpr...
10042 return ReplaceInstUsesWith(GEP, CE);
10043 }
Reid Spencer3da59db2006-11-27 01:05:10 +000010044 } else if (Value *X = getBitCastOperand(PtrOp)) { // Is the operand a cast?
Chris Lattnereed48272005-09-13 00:40:14 +000010045 if (!isa<PointerType>(X->getType())) {
10046 // Not interesting. Source pointer must be a cast from pointer.
10047 } else if (HasZeroPointerIndex) {
Wojciech Matyjewiczed223252007-12-12 15:21:32 +000010048 // transform: GEP (bitcast [10 x i8]* X to [0 x i8]*), i32 0, ...
10049 // into : GEP [10 x i8]* X, i32 0, ...
Chris Lattnereed48272005-09-13 00:40:14 +000010050 //
10051 // This occurs when the program declares an array extern like "int X[];"
10052 //
10053 const PointerType *CPTy = cast<PointerType>(PtrOp->getType());
10054 const PointerType *XTy = cast<PointerType>(X->getType());
10055 if (const ArrayType *XATy =
10056 dyn_cast<ArrayType>(XTy->getElementType()))
10057 if (const ArrayType *CATy =
10058 dyn_cast<ArrayType>(CPTy->getElementType()))
10059 if (CATy->getElementType() == XATy->getElementType()) {
10060 // At this point, we know that the cast source type is a pointer
10061 // to an array of the same type as the destination pointer
10062 // array. Because the array type is never stepped over (there
10063 // is a leading zero) we can fold the cast into this GEP.
10064 GEP.setOperand(0, X);
10065 return &GEP;
10066 }
10067 } else if (GEP.getNumOperands() == 2) {
10068 // Transform things like:
Wojciech Matyjewiczed223252007-12-12 15:21:32 +000010069 // %t = getelementptr i32* bitcast ([2 x i32]* %str to i32*), i32 %V
10070 // into: %t1 = getelementptr [2 x i32]* %str, i32 0, i32 %V; bitcast
Chris Lattnereed48272005-09-13 00:40:14 +000010071 const Type *SrcElTy = cast<PointerType>(X->getType())->getElementType();
10072 const Type *ResElTy=cast<PointerType>(PtrOp->getType())->getElementType();
10073 if (isa<ArrayType>(SrcElTy) &&
Duncan Sands514ab342007-11-01 20:53:16 +000010074 TD->getABITypeSize(cast<ArrayType>(SrcElTy)->getElementType()) ==
10075 TD->getABITypeSize(ResElTy)) {
David Greeneb8f74792007-09-04 15:46:09 +000010076 Value *Idx[2];
10077 Idx[0] = Constant::getNullValue(Type::Int32Ty);
10078 Idx[1] = GEP.getOperand(1);
Chris Lattnereed48272005-09-13 00:40:14 +000010079 Value *V = InsertNewInstBefore(
Gabor Greif051a9502008-04-06 20:25:17 +000010080 GetElementPtrInst::Create(X, Idx, Idx + 2, GEP.getName()), GEP);
Reid Spencer3da59db2006-11-27 01:05:10 +000010081 // V and GEP are both pointer types --> BitCast
10082 return new BitCastInst(V, GEP.getType());
Chris Lattnerc6bd1952004-02-22 05:25:17 +000010083 }
Chris Lattner7835cdd2005-09-13 18:36:04 +000010084
10085 // Transform things like:
Wojciech Matyjewiczed223252007-12-12 15:21:32 +000010086 // getelementptr i8* bitcast ([100 x double]* X to i8*), i32 %tmp
Chris Lattner7835cdd2005-09-13 18:36:04 +000010087 // (where tmp = 8*tmp2) into:
Wojciech Matyjewiczed223252007-12-12 15:21:32 +000010088 // getelementptr [100 x double]* %arr, i32 0, i32 %tmp2; bitcast
Chris Lattner7835cdd2005-09-13 18:36:04 +000010089
Wojciech Matyjewiczed223252007-12-12 15:21:32 +000010090 if (isa<ArrayType>(SrcElTy) && ResElTy == Type::Int8Ty) {
Chris Lattner7835cdd2005-09-13 18:36:04 +000010091 uint64_t ArrayEltSize =
Duncan Sands514ab342007-11-01 20:53:16 +000010092 TD->getABITypeSize(cast<ArrayType>(SrcElTy)->getElementType());
Chris Lattner7835cdd2005-09-13 18:36:04 +000010093
10094 // Check to see if "tmp" is a scale by a multiple of ArrayEltSize. We
10095 // allow either a mul, shift, or constant here.
10096 Value *NewIdx = 0;
10097 ConstantInt *Scale = 0;
10098 if (ArrayEltSize == 1) {
10099 NewIdx = GEP.getOperand(1);
10100 Scale = ConstantInt::get(NewIdx->getType(), 1);
10101 } else if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP.getOperand(1))) {
Chris Lattner6e2f8432005-09-14 17:32:56 +000010102 NewIdx = ConstantInt::get(CI->getType(), 1);
Chris Lattner7835cdd2005-09-13 18:36:04 +000010103 Scale = CI;
10104 } else if (Instruction *Inst =dyn_cast<Instruction>(GEP.getOperand(1))){
10105 if (Inst->getOpcode() == Instruction::Shl &&
10106 isa<ConstantInt>(Inst->getOperand(1))) {
Zhou Sheng0e2d3ac2007-03-30 09:29:48 +000010107 ConstantInt *ShAmt = cast<ConstantInt>(Inst->getOperand(1));
10108 uint32_t ShAmtVal = ShAmt->getLimitedValue(64);
10109 Scale = ConstantInt::get(Inst->getType(), 1ULL << ShAmtVal);
Chris Lattner7835cdd2005-09-13 18:36:04 +000010110 NewIdx = Inst->getOperand(0);
10111 } else if (Inst->getOpcode() == Instruction::Mul &&
10112 isa<ConstantInt>(Inst->getOperand(1))) {
10113 Scale = cast<ConstantInt>(Inst->getOperand(1));
10114 NewIdx = Inst->getOperand(0);
10115 }
10116 }
Wojciech Matyjewiczed223252007-12-12 15:21:32 +000010117
Chris Lattner7835cdd2005-09-13 18:36:04 +000010118 // If the index will be to exactly the right offset with the scale taken
Wojciech Matyjewiczed223252007-12-12 15:21:32 +000010119 // out, perform the transformation. Note, we don't know whether Scale is
10120 // signed or not. We'll use unsigned version of division/modulo
10121 // operation after making sure Scale doesn't have the sign bit set.
10122 if (Scale && Scale->getSExtValue() >= 0LL &&
10123 Scale->getZExtValue() % ArrayEltSize == 0) {
10124 Scale = ConstantInt::get(Scale->getType(),
10125 Scale->getZExtValue() / ArrayEltSize);
Reid Spencerb83eb642006-10-20 07:07:24 +000010126 if (Scale->getZExtValue() != 1) {
Reid Spencer17212df2006-12-12 09:18:51 +000010127 Constant *C = ConstantExpr::getIntegerCast(Scale, NewIdx->getType(),
Wojciech Matyjewiczed223252007-12-12 15:21:32 +000010128 false /*ZExt*/);
Gabor Greif7cbd8a32008-05-16 19:29:10 +000010129 Instruction *Sc = BinaryOperator::CreateMul(NewIdx, C, "idxscale");
Chris Lattner7835cdd2005-09-13 18:36:04 +000010130 NewIdx = InsertNewInstBefore(Sc, GEP);
10131 }
10132
10133 // Insert the new GEP instruction.
David Greeneb8f74792007-09-04 15:46:09 +000010134 Value *Idx[2];
10135 Idx[0] = Constant::getNullValue(Type::Int32Ty);
10136 Idx[1] = NewIdx;
Reid Spencer3da59db2006-11-27 01:05:10 +000010137 Instruction *NewGEP =
Gabor Greif051a9502008-04-06 20:25:17 +000010138 GetElementPtrInst::Create(X, Idx, Idx + 2, GEP.getName());
Reid Spencer3da59db2006-11-27 01:05:10 +000010139 NewGEP = InsertNewInstBefore(NewGEP, GEP);
10140 // The NewGEP must be pointer typed, so must the old one -> BitCast
10141 return new BitCastInst(NewGEP, GEP.getType());
Chris Lattner7835cdd2005-09-13 18:36:04 +000010142 }
10143 }
Chris Lattnerc6bd1952004-02-22 05:25:17 +000010144 }
Chris Lattner8a2a3112001-12-14 16:52:21 +000010145 }
10146
Chris Lattner8a2a3112001-12-14 16:52:21 +000010147 return 0;
10148}
10149
Chris Lattner0864acf2002-11-04 16:18:53 +000010150Instruction *InstCombiner::visitAllocationInst(AllocationInst &AI) {
10151 // Convert: malloc Ty, C - where C is a constant != 1 into: malloc [C x Ty], 1
Anton Korobeynikov07e6e562008-02-20 11:26:25 +000010152 if (AI.isArrayAllocation()) { // Check C != 1
Reid Spencerb83eb642006-10-20 07:07:24 +000010153 if (const ConstantInt *C = dyn_cast<ConstantInt>(AI.getArraySize())) {
10154 const Type *NewTy =
10155 ArrayType::get(AI.getAllocatedType(), C->getZExtValue());
Chris Lattner0006bd72002-11-09 00:49:43 +000010156 AllocationInst *New = 0;
Chris Lattner0864acf2002-11-04 16:18:53 +000010157
10158 // Create and insert the replacement instruction...
10159 if (isa<MallocInst>(AI))
Nate Begeman14b05292005-11-05 09:21:28 +000010160 New = new MallocInst(NewTy, 0, AI.getAlignment(), AI.getName());
Chris Lattner0006bd72002-11-09 00:49:43 +000010161 else {
10162 assert(isa<AllocaInst>(AI) && "Unknown type of allocation inst!");
Nate Begeman14b05292005-11-05 09:21:28 +000010163 New = new AllocaInst(NewTy, 0, AI.getAlignment(), AI.getName());
Chris Lattner0006bd72002-11-09 00:49:43 +000010164 }
Chris Lattner7c881df2004-03-19 06:08:10 +000010165
10166 InsertNewInstBefore(New, AI);
Misha Brukmanfd939082005-04-21 23:48:37 +000010167
Chris Lattner0864acf2002-11-04 16:18:53 +000010168 // Scan to the end of the allocation instructions, to skip over a block of
10169 // allocas if possible...
10170 //
10171 BasicBlock::iterator It = New;
10172 while (isa<AllocationInst>(*It)) ++It;
10173
10174 // Now that I is pointing to the first non-allocation-inst in the block,
10175 // insert our getelementptr instruction...
10176 //
Reid Spencerc5b206b2006-12-31 05:48:39 +000010177 Value *NullIdx = Constant::getNullValue(Type::Int32Ty);
David Greeneb8f74792007-09-04 15:46:09 +000010178 Value *Idx[2];
10179 Idx[0] = NullIdx;
10180 Idx[1] = NullIdx;
Gabor Greif051a9502008-04-06 20:25:17 +000010181 Value *V = GetElementPtrInst::Create(New, Idx, Idx + 2,
10182 New->getName()+".sub", It);
Chris Lattner0864acf2002-11-04 16:18:53 +000010183
10184 // Now make everything use the getelementptr instead of the original
10185 // allocation.
Chris Lattner7c881df2004-03-19 06:08:10 +000010186 return ReplaceInstUsesWith(AI, V);
Chris Lattnere87597f2004-10-16 18:11:37 +000010187 } else if (isa<UndefValue>(AI.getArraySize())) {
10188 return ReplaceInstUsesWith(AI, Constant::getNullValue(AI.getType()));
Chris Lattner0864acf2002-11-04 16:18:53 +000010189 }
Anton Korobeynikov07e6e562008-02-20 11:26:25 +000010190 }
Chris Lattner7c881df2004-03-19 06:08:10 +000010191
10192 // If alloca'ing a zero byte object, replace the alloca with a null pointer.
10193 // Note that we only do this for alloca's, because malloc should allocate and
10194 // return a unique pointer, even for a zero byte allocation.
Misha Brukmanfd939082005-04-21 23:48:37 +000010195 if (isa<AllocaInst>(AI) && AI.getAllocatedType()->isSized() &&
Duncan Sands514ab342007-11-01 20:53:16 +000010196 TD->getABITypeSize(AI.getAllocatedType()) == 0)
Chris Lattner7c881df2004-03-19 06:08:10 +000010197 return ReplaceInstUsesWith(AI, Constant::getNullValue(AI.getType()));
10198
Chris Lattner0864acf2002-11-04 16:18:53 +000010199 return 0;
10200}
10201
Chris Lattner67b1e1b2003-12-07 01:24:23 +000010202Instruction *InstCombiner::visitFreeInst(FreeInst &FI) {
10203 Value *Op = FI.getOperand(0);
10204
Chris Lattner17be6352004-10-18 02:59:09 +000010205 // free undef -> unreachable.
10206 if (isa<UndefValue>(Op)) {
10207 // Insert a new store to null because we cannot modify the CFG here.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +000010208 new StoreInst(ConstantInt::getTrue(),
Christopher Lamb43ad6b32007-12-17 01:12:55 +000010209 UndefValue::get(PointerType::getUnqual(Type::Int1Ty)), &FI);
Chris Lattner17be6352004-10-18 02:59:09 +000010210 return EraseInstFromFunction(FI);
10211 }
Chris Lattner6fe55412007-04-14 00:20:02 +000010212
Chris Lattner6160e852004-02-28 04:57:37 +000010213 // If we have 'free null' delete the instruction. This can happen in stl code
10214 // when lots of inlining happens.
Chris Lattner17be6352004-10-18 02:59:09 +000010215 if (isa<ConstantPointerNull>(Op))
Chris Lattner7bcc0e72004-02-28 05:22:00 +000010216 return EraseInstFromFunction(FI);
Chris Lattner6fe55412007-04-14 00:20:02 +000010217
10218 // Change free <ty>* (cast <ty2>* X to <ty>*) into free <ty2>* X
10219 if (BitCastInst *CI = dyn_cast<BitCastInst>(Op)) {
10220 FI.setOperand(0, CI->getOperand(0));
10221 return &FI;
10222 }
10223
10224 // Change free (gep X, 0,0,0,0) into free(X)
10225 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(Op)) {
10226 if (GEPI->hasAllZeroIndices()) {
10227 AddToWorkList(GEPI);
10228 FI.setOperand(0, GEPI->getOperand(0));
10229 return &FI;
10230 }
10231 }
10232
10233 // Change free(malloc) into nothing, if the malloc has a single use.
10234 if (MallocInst *MI = dyn_cast<MallocInst>(Op))
10235 if (MI->hasOneUse()) {
10236 EraseInstFromFunction(FI);
10237 return EraseInstFromFunction(*MI);
10238 }
Chris Lattner6160e852004-02-28 04:57:37 +000010239
Chris Lattner67b1e1b2003-12-07 01:24:23 +000010240 return 0;
10241}
10242
10243
Chris Lattnerfcfe33a2005-01-31 05:51:45 +000010244/// InstCombineLoadCast - Fold 'load (cast P)' -> cast (load P)' when possible.
Devang Patel99db6ad2007-10-18 19:52:32 +000010245static Instruction *InstCombineLoadCast(InstCombiner &IC, LoadInst &LI,
Bill Wendling587c01d2008-02-26 10:53:30 +000010246 const TargetData *TD) {
Chris Lattnerb89e0712004-07-13 01:49:43 +000010247 User *CI = cast<User>(LI.getOperand(0));
Chris Lattnerf9527852005-01-31 04:50:46 +000010248 Value *CastOp = CI->getOperand(0);
Chris Lattnerb89e0712004-07-13 01:49:43 +000010249
Devang Patel99db6ad2007-10-18 19:52:32 +000010250 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(CI)) {
10251 // Instead of loading constant c string, use corresponding integer value
10252 // directly if string length is small enough.
Evan Cheng0ff39b32008-06-30 07:31:25 +000010253 std::string Str;
10254 if (GetConstantStringInfo(CE->getOperand(0), Str) && !Str.empty()) {
Devang Patel99db6ad2007-10-18 19:52:32 +000010255 unsigned len = Str.length();
10256 const Type *Ty = cast<PointerType>(CE->getType())->getElementType();
10257 unsigned numBits = Ty->getPrimitiveSizeInBits();
10258 // Replace LI with immediate integer store.
10259 if ((numBits >> 3) == len + 1) {
Bill Wendling587c01d2008-02-26 10:53:30 +000010260 APInt StrVal(numBits, 0);
10261 APInt SingleChar(numBits, 0);
10262 if (TD->isLittleEndian()) {
10263 for (signed i = len-1; i >= 0; i--) {
10264 SingleChar = (uint64_t) Str[i];
10265 StrVal = (StrVal << 8) | SingleChar;
10266 }
10267 } else {
10268 for (unsigned i = 0; i < len; i++) {
10269 SingleChar = (uint64_t) Str[i];
10270 StrVal = (StrVal << 8) | SingleChar;
10271 }
10272 // Append NULL at the end.
10273 SingleChar = 0;
10274 StrVal = (StrVal << 8) | SingleChar;
10275 }
10276 Value *NL = ConstantInt::get(StrVal);
10277 return IC.ReplaceInstUsesWith(LI, NL);
Devang Patel99db6ad2007-10-18 19:52:32 +000010278 }
10279 }
10280 }
10281
Chris Lattnerb89e0712004-07-13 01:49:43 +000010282 const Type *DestPTy = cast<PointerType>(CI->getType())->getElementType();
Chris Lattnerf9527852005-01-31 04:50:46 +000010283 if (const PointerType *SrcTy = dyn_cast<PointerType>(CastOp->getType())) {
Chris Lattnerb89e0712004-07-13 01:49:43 +000010284 const Type *SrcPTy = SrcTy->getElementType();
Chris Lattnerf9527852005-01-31 04:50:46 +000010285
Reid Spencer42230162007-01-22 05:51:25 +000010286 if (DestPTy->isInteger() || isa<PointerType>(DestPTy) ||
Reid Spencer9d6565a2007-02-15 02:26:10 +000010287 isa<VectorType>(DestPTy)) {
Chris Lattnerf9527852005-01-31 04:50:46 +000010288 // If the source is an array, the code below will not succeed. Check to
10289 // see if a trivial 'gep P, 0, 0' will help matters. Only do this for
10290 // constants.
10291 if (const ArrayType *ASrcTy = dyn_cast<ArrayType>(SrcPTy))
10292 if (Constant *CSrc = dyn_cast<Constant>(CastOp))
10293 if (ASrcTy->getNumElements() != 0) {
Chris Lattner55eb1c42007-01-31 04:40:53 +000010294 Value *Idxs[2];
10295 Idxs[0] = Idxs[1] = Constant::getNullValue(Type::Int32Ty);
10296 CastOp = ConstantExpr::getGetElementPtr(CSrc, Idxs, 2);
Chris Lattnerf9527852005-01-31 04:50:46 +000010297 SrcTy = cast<PointerType>(CastOp->getType());
10298 SrcPTy = SrcTy->getElementType();
10299 }
10300
Reid Spencer42230162007-01-22 05:51:25 +000010301 if ((SrcPTy->isInteger() || isa<PointerType>(SrcPTy) ||
Reid Spencer9d6565a2007-02-15 02:26:10 +000010302 isa<VectorType>(SrcPTy)) &&
Chris Lattnerb1515fe2005-03-29 06:37:47 +000010303 // Do not allow turning this into a load of an integer, which is then
10304 // casted to a pointer, this pessimizes pointer analysis a lot.
10305 (isa<PointerType>(SrcPTy) == isa<PointerType>(LI.getType())) &&
Reid Spencer42230162007-01-22 05:51:25 +000010306 IC.getTargetData().getTypeSizeInBits(SrcPTy) ==
10307 IC.getTargetData().getTypeSizeInBits(DestPTy)) {
Misha Brukmanfd939082005-04-21 23:48:37 +000010308
Chris Lattnerf9527852005-01-31 04:50:46 +000010309 // Okay, we are casting from one integer or pointer type to another of
10310 // the same size. Instead of casting the pointer before the load, cast
10311 // the result of the loaded value.
10312 Value *NewLoad = IC.InsertNewInstBefore(new LoadInst(CastOp,
10313 CI->getName(),
10314 LI.isVolatile()),LI);
10315 // Now cast the result of the load.
Reid Spencerd977d862006-12-12 23:36:14 +000010316 return new BitCastInst(NewLoad, LI.getType());
Chris Lattnerf9527852005-01-31 04:50:46 +000010317 }
Chris Lattnerb89e0712004-07-13 01:49:43 +000010318 }
10319 }
10320 return 0;
10321}
10322
Chris Lattnerc10aced2004-09-19 18:43:46 +000010323/// isSafeToLoadUnconditionally - Return true if we know that executing a load
Chris Lattner8a375202004-09-19 19:18:10 +000010324/// from this value cannot trap. If it is not obviously safe to load from the
10325/// specified pointer, we do a quick local scan of the basic block containing
10326/// ScanFrom, to determine if the address is already accessed.
10327static bool isSafeToLoadUnconditionally(Value *V, Instruction *ScanFrom) {
Duncan Sands892c7e42007-09-19 10:10:31 +000010328 // If it is an alloca it is always safe to load from.
10329 if (isa<AllocaInst>(V)) return true;
10330
Duncan Sands46318cd2007-09-19 10:25:38 +000010331 // If it is a global variable it is mostly safe to load from.
Duncan Sands892c7e42007-09-19 10:10:31 +000010332 if (const GlobalValue *GV = dyn_cast<GlobalVariable>(V))
Duncan Sands46318cd2007-09-19 10:25:38 +000010333 // Don't try to evaluate aliases. External weak GV can be null.
Duncan Sands892c7e42007-09-19 10:10:31 +000010334 return !isa<GlobalAlias>(GV) && !GV->hasExternalWeakLinkage();
Chris Lattner8a375202004-09-19 19:18:10 +000010335
10336 // Otherwise, be a little bit agressive by scanning the local block where we
10337 // want to check to see if the pointer is already being loaded or stored
Alkis Evlogimenos7b6ec602004-09-20 06:42:58 +000010338 // from/to. If so, the previous load or store would have already trapped,
10339 // so there is no harm doing an extra load (also, CSE will later eliminate
10340 // the load entirely).
Chris Lattner8a375202004-09-19 19:18:10 +000010341 BasicBlock::iterator BBI = ScanFrom, E = ScanFrom->getParent()->begin();
10342
Alkis Evlogimenos7b6ec602004-09-20 06:42:58 +000010343 while (BBI != E) {
Chris Lattner8a375202004-09-19 19:18:10 +000010344 --BBI;
10345
Chris Lattner2de3fec2008-06-20 05:12:56 +000010346 // If we see a free or a call (which might do a free) the pointer could be
10347 // marked invalid.
10348 if (isa<FreeInst>(BBI) || isa<CallInst>(BBI))
10349 return false;
10350
Chris Lattner8a375202004-09-19 19:18:10 +000010351 if (LoadInst *LI = dyn_cast<LoadInst>(BBI)) {
10352 if (LI->getOperand(0) == V) return true;
Chris Lattner2de3fec2008-06-20 05:12:56 +000010353 } else if (StoreInst *SI = dyn_cast<StoreInst>(BBI)) {
Chris Lattner8a375202004-09-19 19:18:10 +000010354 if (SI->getOperand(1) == V) return true;
Chris Lattner2de3fec2008-06-20 05:12:56 +000010355 }
Misha Brukmanfd939082005-04-21 23:48:37 +000010356
Alkis Evlogimenos7b6ec602004-09-20 06:42:58 +000010357 }
Chris Lattner8a375202004-09-19 19:18:10 +000010358 return false;
Chris Lattnerc10aced2004-09-19 18:43:46 +000010359}
10360
Chris Lattner8d2e8882007-08-11 18:48:48 +000010361/// GetUnderlyingObject - Trace through a series of getelementptrs and bitcasts
10362/// until we find the underlying object a pointer is referring to or something
10363/// we don't understand. Note that the returned pointer may be offset from the
10364/// input, because we ignore GEP indices.
10365static Value *GetUnderlyingObject(Value *Ptr) {
10366 while (1) {
10367 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) {
10368 if (CE->getOpcode() == Instruction::BitCast ||
10369 CE->getOpcode() == Instruction::GetElementPtr)
10370 Ptr = CE->getOperand(0);
10371 else
10372 return Ptr;
10373 } else if (BitCastInst *BCI = dyn_cast<BitCastInst>(Ptr)) {
10374 Ptr = BCI->getOperand(0);
10375 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr)) {
10376 Ptr = GEP->getOperand(0);
10377 } else {
10378 return Ptr;
10379 }
10380 }
10381}
10382
Chris Lattner833b8a42003-06-26 05:06:25 +000010383Instruction *InstCombiner::visitLoadInst(LoadInst &LI) {
10384 Value *Op = LI.getOperand(0);
Chris Lattner5f16a132004-01-12 04:13:56 +000010385
Dan Gohman9941f742007-07-20 16:34:21 +000010386 // Attempt to improve the alignment.
Dan Gohmaneee962e2008-04-10 18:43:06 +000010387 unsigned KnownAlign = GetOrEnforceKnownAlignment(Op);
10388 if (KnownAlign >
10389 (LI.getAlignment() == 0 ? TD->getABITypeAlignment(LI.getType()) :
10390 LI.getAlignment()))
Dan Gohman9941f742007-07-20 16:34:21 +000010391 LI.setAlignment(KnownAlign);
10392
Chris Lattner37366c12005-05-01 04:24:53 +000010393 // load (cast X) --> cast (load X) iff safe
Reid Spencer3ed469c2006-11-02 20:25:50 +000010394 if (isa<CastInst>(Op))
Devang Patel99db6ad2007-10-18 19:52:32 +000010395 if (Instruction *Res = InstCombineLoadCast(*this, LI, TD))
Chris Lattner37366c12005-05-01 04:24:53 +000010396 return Res;
10397
10398 // None of the following transforms are legal for volatile loads.
10399 if (LI.isVolatile()) return 0;
Chris Lattner62f254d2005-09-12 22:00:15 +000010400
Chris Lattner62f254d2005-09-12 22:00:15 +000010401 if (&LI.getParent()->front() != &LI) {
10402 BasicBlock::iterator BBI = &LI; --BBI;
Chris Lattner9c1f0fd2005-09-12 22:21:03 +000010403 // If the instruction immediately before this is a store to the same
10404 // address, do a simple form of store->load forwarding.
Chris Lattner62f254d2005-09-12 22:00:15 +000010405 if (StoreInst *SI = dyn_cast<StoreInst>(BBI))
10406 if (SI->getOperand(1) == LI.getOperand(0))
10407 return ReplaceInstUsesWith(LI, SI->getOperand(0));
Chris Lattner9c1f0fd2005-09-12 22:21:03 +000010408 if (LoadInst *LIB = dyn_cast<LoadInst>(BBI))
10409 if (LIB->getOperand(0) == LI.getOperand(0))
10410 return ReplaceInstUsesWith(LI, LIB);
Chris Lattner62f254d2005-09-12 22:00:15 +000010411 }
Chris Lattner37366c12005-05-01 04:24:53 +000010412
Christopher Lambb15147e2007-12-29 07:56:53 +000010413 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(Op)) {
10414 const Value *GEPI0 = GEPI->getOperand(0);
10415 // TODO: Consider a target hook for valid address spaces for this xform.
10416 if (isa<ConstantPointerNull>(GEPI0) &&
10417 cast<PointerType>(GEPI0->getType())->getAddressSpace() == 0) {
Chris Lattner37366c12005-05-01 04:24:53 +000010418 // Insert a new store to null instruction before the load to indicate
10419 // that this code is not reachable. We do this instead of inserting
10420 // an unreachable instruction directly because we cannot modify the
10421 // CFG.
10422 new StoreInst(UndefValue::get(LI.getType()),
10423 Constant::getNullValue(Op->getType()), &LI);
10424 return ReplaceInstUsesWith(LI, UndefValue::get(LI.getType()));
10425 }
Christopher Lambb15147e2007-12-29 07:56:53 +000010426 }
Chris Lattner37366c12005-05-01 04:24:53 +000010427
Chris Lattnere87597f2004-10-16 18:11:37 +000010428 if (Constant *C = dyn_cast<Constant>(Op)) {
Chris Lattner37366c12005-05-01 04:24:53 +000010429 // load null/undef -> undef
Christopher Lambb15147e2007-12-29 07:56:53 +000010430 // TODO: Consider a target hook for valid address spaces for this xform.
10431 if (isa<UndefValue>(C) || (C->isNullValue() &&
10432 cast<PointerType>(Op->getType())->getAddressSpace() == 0)) {
Chris Lattner17be6352004-10-18 02:59:09 +000010433 // Insert a new store to null instruction before the load to indicate that
10434 // this code is not reachable. We do this instead of inserting an
10435 // unreachable instruction directly because we cannot modify the CFG.
Chris Lattner37366c12005-05-01 04:24:53 +000010436 new StoreInst(UndefValue::get(LI.getType()),
10437 Constant::getNullValue(Op->getType()), &LI);
Chris Lattnere87597f2004-10-16 18:11:37 +000010438 return ReplaceInstUsesWith(LI, UndefValue::get(LI.getType()));
Chris Lattner17be6352004-10-18 02:59:09 +000010439 }
Chris Lattner833b8a42003-06-26 05:06:25 +000010440
Chris Lattnere87597f2004-10-16 18:11:37 +000010441 // Instcombine load (constant global) into the value loaded.
10442 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Op))
Reid Spencer5cbf9852007-01-30 20:08:39 +000010443 if (GV->isConstant() && !GV->isDeclaration())
Chris Lattnere87597f2004-10-16 18:11:37 +000010444 return ReplaceInstUsesWith(LI, GV->getInitializer());
Misha Brukmanfd939082005-04-21 23:48:37 +000010445
Chris Lattnere87597f2004-10-16 18:11:37 +000010446 // Instcombine load (constantexpr_GEP global, 0, ...) into the value loaded.
Anton Korobeynikov07e6e562008-02-20 11:26:25 +000010447 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Op)) {
Chris Lattnere87597f2004-10-16 18:11:37 +000010448 if (CE->getOpcode() == Instruction::GetElementPtr) {
10449 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0)))
Reid Spencer5cbf9852007-01-30 20:08:39 +000010450 if (GV->isConstant() && !GV->isDeclaration())
Chris Lattner363f2a22005-09-26 05:28:06 +000010451 if (Constant *V =
10452 ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE))
Chris Lattnere87597f2004-10-16 18:11:37 +000010453 return ReplaceInstUsesWith(LI, V);
Chris Lattner37366c12005-05-01 04:24:53 +000010454 if (CE->getOperand(0)->isNullValue()) {
10455 // Insert a new store to null instruction before the load to indicate
10456 // that this code is not reachable. We do this instead of inserting
10457 // an unreachable instruction directly because we cannot modify the
10458 // CFG.
10459 new StoreInst(UndefValue::get(LI.getType()),
10460 Constant::getNullValue(Op->getType()), &LI);
10461 return ReplaceInstUsesWith(LI, UndefValue::get(LI.getType()));
10462 }
10463
Reid Spencer3da59db2006-11-27 01:05:10 +000010464 } else if (CE->isCast()) {
Devang Patel99db6ad2007-10-18 19:52:32 +000010465 if (Instruction *Res = InstCombineLoadCast(*this, LI, TD))
Chris Lattnere87597f2004-10-16 18:11:37 +000010466 return Res;
10467 }
Anton Korobeynikov07e6e562008-02-20 11:26:25 +000010468 }
Chris Lattnere87597f2004-10-16 18:11:37 +000010469 }
Chris Lattner8d2e8882007-08-11 18:48:48 +000010470
10471 // If this load comes from anywhere in a constant global, and if the global
10472 // is all undef or zero, we know what it loads.
10473 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(GetUnderlyingObject(Op))) {
10474 if (GV->isConstant() && GV->hasInitializer()) {
10475 if (GV->getInitializer()->isNullValue())
10476 return ReplaceInstUsesWith(LI, Constant::getNullValue(LI.getType()));
10477 else if (isa<UndefValue>(GV->getInitializer()))
10478 return ReplaceInstUsesWith(LI, UndefValue::get(LI.getType()));
10479 }
10480 }
Chris Lattnerf499eac2004-04-08 20:39:49 +000010481
Chris Lattner37366c12005-05-01 04:24:53 +000010482 if (Op->hasOneUse()) {
Chris Lattnerc10aced2004-09-19 18:43:46 +000010483 // Change select and PHI nodes to select values instead of addresses: this
10484 // helps alias analysis out a lot, allows many others simplifications, and
10485 // exposes redundancy in the code.
10486 //
10487 // Note that we cannot do the transformation unless we know that the
10488 // introduced loads cannot trap! Something like this is valid as long as
10489 // the condition is always false: load (select bool %C, int* null, int* %G),
10490 // but it would not be valid if we transformed it to load from null
10491 // unconditionally.
10492 //
10493 if (SelectInst *SI = dyn_cast<SelectInst>(Op)) {
10494 // load (select (Cond, &V1, &V2)) --> select(Cond, load &V1, load &V2).
Chris Lattner8a375202004-09-19 19:18:10 +000010495 if (isSafeToLoadUnconditionally(SI->getOperand(1), SI) &&
10496 isSafeToLoadUnconditionally(SI->getOperand(2), SI)) {
Chris Lattnerc10aced2004-09-19 18:43:46 +000010497 Value *V1 = InsertNewInstBefore(new LoadInst(SI->getOperand(1),
Chris Lattner79f0c8e2004-09-20 10:15:10 +000010498 SI->getOperand(1)->getName()+".val"), LI);
Chris Lattnerc10aced2004-09-19 18:43:46 +000010499 Value *V2 = InsertNewInstBefore(new LoadInst(SI->getOperand(2),
Chris Lattner79f0c8e2004-09-20 10:15:10 +000010500 SI->getOperand(2)->getName()+".val"), LI);
Gabor Greif051a9502008-04-06 20:25:17 +000010501 return SelectInst::Create(SI->getCondition(), V1, V2);
Chris Lattnerc10aced2004-09-19 18:43:46 +000010502 }
10503
Chris Lattner684fe212004-09-23 15:46:00 +000010504 // load (select (cond, null, P)) -> load P
10505 if (Constant *C = dyn_cast<Constant>(SI->getOperand(1)))
10506 if (C->isNullValue()) {
10507 LI.setOperand(0, SI->getOperand(2));
10508 return &LI;
10509 }
10510
10511 // load (select (cond, P, null)) -> load P
10512 if (Constant *C = dyn_cast<Constant>(SI->getOperand(2)))
10513 if (C->isNullValue()) {
10514 LI.setOperand(0, SI->getOperand(1));
10515 return &LI;
10516 }
Chris Lattnerc10aced2004-09-19 18:43:46 +000010517 }
10518 }
Chris Lattner833b8a42003-06-26 05:06:25 +000010519 return 0;
10520}
10521
Reid Spencer55af2b52007-01-19 21:20:31 +000010522/// InstCombineStoreToCast - Fold store V, (cast P) -> store (cast V), P
Chris Lattnerfcfe33a2005-01-31 05:51:45 +000010523/// when possible.
10524static Instruction *InstCombineStoreToCast(InstCombiner &IC, StoreInst &SI) {
10525 User *CI = cast<User>(SI.getOperand(1));
10526 Value *CastOp = CI->getOperand(0);
10527
10528 const Type *DestPTy = cast<PointerType>(CI->getType())->getElementType();
10529 if (const PointerType *SrcTy = dyn_cast<PointerType>(CastOp->getType())) {
10530 const Type *SrcPTy = SrcTy->getElementType();
10531
Reid Spencer42230162007-01-22 05:51:25 +000010532 if (DestPTy->isInteger() || isa<PointerType>(DestPTy)) {
Chris Lattnerfcfe33a2005-01-31 05:51:45 +000010533 // If the source is an array, the code below will not succeed. Check to
10534 // see if a trivial 'gep P, 0, 0' will help matters. Only do this for
10535 // constants.
10536 if (const ArrayType *ASrcTy = dyn_cast<ArrayType>(SrcPTy))
10537 if (Constant *CSrc = dyn_cast<Constant>(CastOp))
10538 if (ASrcTy->getNumElements() != 0) {
Chris Lattner55eb1c42007-01-31 04:40:53 +000010539 Value* Idxs[2];
10540 Idxs[0] = Idxs[1] = Constant::getNullValue(Type::Int32Ty);
10541 CastOp = ConstantExpr::getGetElementPtr(CSrc, Idxs, 2);
Chris Lattnerfcfe33a2005-01-31 05:51:45 +000010542 SrcTy = cast<PointerType>(CastOp->getType());
10543 SrcPTy = SrcTy->getElementType();
10544 }
10545
Reid Spencer67f827c2007-01-20 23:35:48 +000010546 if ((SrcPTy->isInteger() || isa<PointerType>(SrcPTy)) &&
10547 IC.getTargetData().getTypeSizeInBits(SrcPTy) ==
10548 IC.getTargetData().getTypeSizeInBits(DestPTy)) {
Chris Lattnerfcfe33a2005-01-31 05:51:45 +000010549
10550 // Okay, we are casting from one integer or pointer type to another of
Reid Spencer75153962007-01-18 18:54:33 +000010551 // the same size. Instead of casting the pointer before
10552 // the store, cast the value to be stored.
Chris Lattnerfcfe33a2005-01-31 05:51:45 +000010553 Value *NewCast;
Reid Spencerd977d862006-12-12 23:36:14 +000010554 Value *SIOp0 = SI.getOperand(0);
Reid Spencer75153962007-01-18 18:54:33 +000010555 Instruction::CastOps opcode = Instruction::BitCast;
10556 const Type* CastSrcTy = SIOp0->getType();
10557 const Type* CastDstTy = SrcPTy;
10558 if (isa<PointerType>(CastDstTy)) {
10559 if (CastSrcTy->isInteger())
Reid Spencerd977d862006-12-12 23:36:14 +000010560 opcode = Instruction::IntToPtr;
Reid Spencer67f827c2007-01-20 23:35:48 +000010561 } else if (isa<IntegerType>(CastDstTy)) {
Reid Spencerc55b2432006-12-13 18:21:21 +000010562 if (isa<PointerType>(SIOp0->getType()))
Reid Spencerd977d862006-12-12 23:36:14 +000010563 opcode = Instruction::PtrToInt;
10564 }
10565 if (Constant *C = dyn_cast<Constant>(SIOp0))
Reid Spencer75153962007-01-18 18:54:33 +000010566 NewCast = ConstantExpr::getCast(opcode, C, CastDstTy);
Chris Lattnerfcfe33a2005-01-31 05:51:45 +000010567 else
Reid Spencer3da59db2006-11-27 01:05:10 +000010568 NewCast = IC.InsertNewInstBefore(
Gabor Greif7cbd8a32008-05-16 19:29:10 +000010569 CastInst::Create(opcode, SIOp0, CastDstTy, SIOp0->getName()+".c"),
Reid Spencer75153962007-01-18 18:54:33 +000010570 SI);
Chris Lattnerfcfe33a2005-01-31 05:51:45 +000010571 return new StoreInst(NewCast, CastOp);
10572 }
10573 }
10574 }
10575 return 0;
10576}
10577
Chris Lattner2f503e62005-01-31 05:36:43 +000010578Instruction *InstCombiner::visitStoreInst(StoreInst &SI) {
10579 Value *Val = SI.getOperand(0);
10580 Value *Ptr = SI.getOperand(1);
10581
10582 if (isa<UndefValue>(Ptr)) { // store X, undef -> noop (even if volatile)
Chris Lattner9ca96412006-02-08 03:25:32 +000010583 EraseInstFromFunction(SI);
Chris Lattner2f503e62005-01-31 05:36:43 +000010584 ++NumCombined;
10585 return 0;
10586 }
Chris Lattner836692d2007-01-15 06:51:56 +000010587
10588 // If the RHS is an alloca with a single use, zapify the store, making the
10589 // alloca dead.
Chris Lattnercea1fdd2008-04-29 04:58:38 +000010590 if (Ptr->hasOneUse() && !SI.isVolatile()) {
Chris Lattner836692d2007-01-15 06:51:56 +000010591 if (isa<AllocaInst>(Ptr)) {
10592 EraseInstFromFunction(SI);
10593 ++NumCombined;
10594 return 0;
10595 }
10596
10597 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr))
10598 if (isa<AllocaInst>(GEP->getOperand(0)) &&
10599 GEP->getOperand(0)->hasOneUse()) {
10600 EraseInstFromFunction(SI);
10601 ++NumCombined;
10602 return 0;
10603 }
10604 }
Chris Lattner2f503e62005-01-31 05:36:43 +000010605
Dan Gohman9941f742007-07-20 16:34:21 +000010606 // Attempt to improve the alignment.
Dan Gohmaneee962e2008-04-10 18:43:06 +000010607 unsigned KnownAlign = GetOrEnforceKnownAlignment(Ptr);
10608 if (KnownAlign >
10609 (SI.getAlignment() == 0 ? TD->getABITypeAlignment(Val->getType()) :
10610 SI.getAlignment()))
Dan Gohman9941f742007-07-20 16:34:21 +000010611 SI.setAlignment(KnownAlign);
10612
Chris Lattner9ca96412006-02-08 03:25:32 +000010613 // Do really simple DSE, to catch cases where there are several consequtive
10614 // stores to the same location, separated by a few arithmetic operations. This
10615 // situation often occurs with bitfield accesses.
10616 BasicBlock::iterator BBI = &SI;
10617 for (unsigned ScanInsts = 6; BBI != SI.getParent()->begin() && ScanInsts;
10618 --ScanInsts) {
10619 --BBI;
10620
10621 if (StoreInst *PrevSI = dyn_cast<StoreInst>(BBI)) {
10622 // Prev store isn't volatile, and stores to the same location?
10623 if (!PrevSI->isVolatile() && PrevSI->getOperand(1) == SI.getOperand(1)) {
10624 ++NumDeadStore;
10625 ++BBI;
10626 EraseInstFromFunction(*PrevSI);
10627 continue;
10628 }
10629 break;
10630 }
10631
Chris Lattnerb4db97f2006-05-26 19:19:20 +000010632 // If this is a load, we have to stop. However, if the loaded value is from
10633 // the pointer we're loading and is producing the pointer we're storing,
10634 // then *this* store is dead (X = load P; store X -> P).
10635 if (LoadInst *LI = dyn_cast<LoadInst>(BBI)) {
Chris Lattnera54c7eb2007-09-07 05:33:03 +000010636 if (LI == Val && LI->getOperand(0) == Ptr && !SI.isVolatile()) {
Chris Lattnerb4db97f2006-05-26 19:19:20 +000010637 EraseInstFromFunction(SI);
10638 ++NumCombined;
10639 return 0;
10640 }
10641 // Otherwise, this is a load from some other location. Stores before it
10642 // may not be dead.
10643 break;
10644 }
10645
Chris Lattner9ca96412006-02-08 03:25:32 +000010646 // Don't skip over loads or things that can modify memory.
Chris Lattner0ef546e2008-05-08 17:20:30 +000010647 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory())
Chris Lattner9ca96412006-02-08 03:25:32 +000010648 break;
10649 }
10650
10651
10652 if (SI.isVolatile()) return 0; // Don't hack volatile stores.
Chris Lattner2f503e62005-01-31 05:36:43 +000010653
10654 // store X, null -> turns into 'unreachable' in SimplifyCFG
10655 if (isa<ConstantPointerNull>(Ptr)) {
10656 if (!isa<UndefValue>(Val)) {
10657 SI.setOperand(0, UndefValue::get(Val->getType()));
10658 if (Instruction *U = dyn_cast<Instruction>(Val))
Chris Lattnerdbab3862007-03-02 21:28:56 +000010659 AddToWorkList(U); // Dropped a use.
Chris Lattner2f503e62005-01-31 05:36:43 +000010660 ++NumCombined;
10661 }
10662 return 0; // Do not modify these!
10663 }
10664
10665 // store undef, Ptr -> noop
10666 if (isa<UndefValue>(Val)) {
Chris Lattner9ca96412006-02-08 03:25:32 +000010667 EraseInstFromFunction(SI);
Chris Lattner2f503e62005-01-31 05:36:43 +000010668 ++NumCombined;
10669 return 0;
10670 }
10671
Chris Lattnerfcfe33a2005-01-31 05:51:45 +000010672 // If the pointer destination is a cast, see if we can fold the cast into the
10673 // source instead.
Reid Spencer3ed469c2006-11-02 20:25:50 +000010674 if (isa<CastInst>(Ptr))
Chris Lattnerfcfe33a2005-01-31 05:51:45 +000010675 if (Instruction *Res = InstCombineStoreToCast(*this, SI))
10676 return Res;
10677 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr))
Reid Spencer3da59db2006-11-27 01:05:10 +000010678 if (CE->isCast())
Chris Lattnerfcfe33a2005-01-31 05:51:45 +000010679 if (Instruction *Res = InstCombineStoreToCast(*this, SI))
10680 return Res;
10681
Chris Lattner408902b2005-09-12 23:23:25 +000010682
10683 // If this store is the last instruction in the basic block, and if the block
10684 // ends with an unconditional branch, try to move it to the successor block.
Chris Lattner9ca96412006-02-08 03:25:32 +000010685 BBI = &SI; ++BBI;
Chris Lattner408902b2005-09-12 23:23:25 +000010686 if (BranchInst *BI = dyn_cast<BranchInst>(BBI))
Chris Lattner3284d1f2007-04-15 00:07:55 +000010687 if (BI->isUnconditional())
10688 if (SimplifyStoreAtEndOfBlock(SI))
10689 return 0; // xform done!
Chris Lattner408902b2005-09-12 23:23:25 +000010690
Chris Lattner2f503e62005-01-31 05:36:43 +000010691 return 0;
10692}
10693
Chris Lattner3284d1f2007-04-15 00:07:55 +000010694/// SimplifyStoreAtEndOfBlock - Turn things like:
10695/// if () { *P = v1; } else { *P = v2 }
10696/// into a phi node with a store in the successor.
10697///
Chris Lattner31755a02007-04-15 01:02:18 +000010698/// Simplify things like:
10699/// *P = v1; if () { *P = v2; }
10700/// into a phi node with a store in the successor.
10701///
Chris Lattner3284d1f2007-04-15 00:07:55 +000010702bool InstCombiner::SimplifyStoreAtEndOfBlock(StoreInst &SI) {
10703 BasicBlock *StoreBB = SI.getParent();
10704
10705 // Check to see if the successor block has exactly two incoming edges. If
10706 // so, see if the other predecessor contains a store to the same location.
10707 // if so, insert a PHI node (if needed) and move the stores down.
Chris Lattner31755a02007-04-15 01:02:18 +000010708 BasicBlock *DestBB = StoreBB->getTerminator()->getSuccessor(0);
Chris Lattner3284d1f2007-04-15 00:07:55 +000010709
10710 // Determine whether Dest has exactly two predecessors and, if so, compute
10711 // the other predecessor.
Chris Lattner31755a02007-04-15 01:02:18 +000010712 pred_iterator PI = pred_begin(DestBB);
10713 BasicBlock *OtherBB = 0;
Chris Lattner3284d1f2007-04-15 00:07:55 +000010714 if (*PI != StoreBB)
Chris Lattner31755a02007-04-15 01:02:18 +000010715 OtherBB = *PI;
Chris Lattner3284d1f2007-04-15 00:07:55 +000010716 ++PI;
Chris Lattner31755a02007-04-15 01:02:18 +000010717 if (PI == pred_end(DestBB))
Chris Lattner3284d1f2007-04-15 00:07:55 +000010718 return false;
10719
10720 if (*PI != StoreBB) {
Chris Lattner31755a02007-04-15 01:02:18 +000010721 if (OtherBB)
Chris Lattner3284d1f2007-04-15 00:07:55 +000010722 return false;
Chris Lattner31755a02007-04-15 01:02:18 +000010723 OtherBB = *PI;
Chris Lattner3284d1f2007-04-15 00:07:55 +000010724 }
Chris Lattner31755a02007-04-15 01:02:18 +000010725 if (++PI != pred_end(DestBB))
Chris Lattner3284d1f2007-04-15 00:07:55 +000010726 return false;
Eli Friedman66fe80a2008-06-13 21:17:49 +000010727
10728 // Bail out if all the relevant blocks aren't distinct (this can happen,
10729 // for example, if SI is in an infinite loop)
10730 if (StoreBB == DestBB || OtherBB == DestBB)
10731 return false;
10732
Chris Lattner31755a02007-04-15 01:02:18 +000010733 // Verify that the other block ends in a branch and is not otherwise empty.
10734 BasicBlock::iterator BBI = OtherBB->getTerminator();
Chris Lattner3284d1f2007-04-15 00:07:55 +000010735 BranchInst *OtherBr = dyn_cast<BranchInst>(BBI);
Chris Lattner31755a02007-04-15 01:02:18 +000010736 if (!OtherBr || BBI == OtherBB->begin())
Chris Lattner3284d1f2007-04-15 00:07:55 +000010737 return false;
10738
Chris Lattner31755a02007-04-15 01:02:18 +000010739 // If the other block ends in an unconditional branch, check for the 'if then
10740 // else' case. there is an instruction before the branch.
10741 StoreInst *OtherStore = 0;
10742 if (OtherBr->isUnconditional()) {
10743 // If this isn't a store, or isn't a store to the same location, bail out.
10744 --BBI;
10745 OtherStore = dyn_cast<StoreInst>(BBI);
10746 if (!OtherStore || OtherStore->getOperand(1) != SI.getOperand(1))
10747 return false;
10748 } else {
Chris Lattnerd717c182007-05-05 22:32:24 +000010749 // Otherwise, the other block ended with a conditional branch. If one of the
Chris Lattner31755a02007-04-15 01:02:18 +000010750 // destinations is StoreBB, then we have the if/then case.
10751 if (OtherBr->getSuccessor(0) != StoreBB &&
10752 OtherBr->getSuccessor(1) != StoreBB)
10753 return false;
10754
10755 // Okay, we know that OtherBr now goes to Dest and StoreBB, so this is an
Chris Lattnerd717c182007-05-05 22:32:24 +000010756 // if/then triangle. See if there is a store to the same ptr as SI that
10757 // lives in OtherBB.
Chris Lattner31755a02007-04-15 01:02:18 +000010758 for (;; --BBI) {
10759 // Check to see if we find the matching store.
10760 if ((OtherStore = dyn_cast<StoreInst>(BBI))) {
10761 if (OtherStore->getOperand(1) != SI.getOperand(1))
10762 return false;
10763 break;
10764 }
Eli Friedman6903a242008-06-13 22:02:12 +000010765 // If we find something that may be using or overwriting the stored
10766 // value, or if we run out of instructions, we can't do the xform.
10767 if (BBI->mayReadFromMemory() || BBI->mayWriteToMemory() ||
Chris Lattner31755a02007-04-15 01:02:18 +000010768 BBI == OtherBB->begin())
10769 return false;
10770 }
10771
10772 // In order to eliminate the store in OtherBr, we have to
Eli Friedman6903a242008-06-13 22:02:12 +000010773 // make sure nothing reads or overwrites the stored value in
10774 // StoreBB.
Chris Lattner31755a02007-04-15 01:02:18 +000010775 for (BasicBlock::iterator I = StoreBB->begin(); &*I != &SI; ++I) {
10776 // FIXME: This should really be AA driven.
Eli Friedman6903a242008-06-13 22:02:12 +000010777 if (I->mayReadFromMemory() || I->mayWriteToMemory())
Chris Lattner31755a02007-04-15 01:02:18 +000010778 return false;
10779 }
10780 }
Chris Lattner3284d1f2007-04-15 00:07:55 +000010781
Chris Lattner31755a02007-04-15 01:02:18 +000010782 // Insert a PHI node now if we need it.
Chris Lattner3284d1f2007-04-15 00:07:55 +000010783 Value *MergedVal = OtherStore->getOperand(0);
10784 if (MergedVal != SI.getOperand(0)) {
Gabor Greif051a9502008-04-06 20:25:17 +000010785 PHINode *PN = PHINode::Create(MergedVal->getType(), "storemerge");
Chris Lattner3284d1f2007-04-15 00:07:55 +000010786 PN->reserveOperandSpace(2);
10787 PN->addIncoming(SI.getOperand(0), SI.getParent());
Chris Lattner31755a02007-04-15 01:02:18 +000010788 PN->addIncoming(OtherStore->getOperand(0), OtherBB);
10789 MergedVal = InsertNewInstBefore(PN, DestBB->front());
Chris Lattner3284d1f2007-04-15 00:07:55 +000010790 }
10791
10792 // Advance to a place where it is safe to insert the new store and
10793 // insert it.
Dan Gohman02dea8b2008-05-23 21:05:58 +000010794 BBI = DestBB->getFirstNonPHI();
Chris Lattner3284d1f2007-04-15 00:07:55 +000010795 InsertNewInstBefore(new StoreInst(MergedVal, SI.getOperand(1),
10796 OtherStore->isVolatile()), *BBI);
10797
10798 // Nuke the old stores.
10799 EraseInstFromFunction(SI);
10800 EraseInstFromFunction(*OtherStore);
10801 ++NumCombined;
10802 return true;
10803}
10804
Chris Lattner2f503e62005-01-31 05:36:43 +000010805
Chris Lattnerc4d10eb2003-06-04 04:46:00 +000010806Instruction *InstCombiner::visitBranchInst(BranchInst &BI) {
10807 // Change br (not X), label True, label False to: br X, label False, True
Reid Spencer4b828e62005-06-18 17:37:34 +000010808 Value *X = 0;
Chris Lattneracd1f0f2004-07-30 07:50:03 +000010809 BasicBlock *TrueDest;
10810 BasicBlock *FalseDest;
10811 if (match(&BI, m_Br(m_Not(m_Value(X)), TrueDest, FalseDest)) &&
10812 !isa<Constant>(X)) {
10813 // Swap Destinations and condition...
10814 BI.setCondition(X);
10815 BI.setSuccessor(0, FalseDest);
10816 BI.setSuccessor(1, TrueDest);
10817 return &BI;
10818 }
10819
Reid Spencere4d87aa2006-12-23 06:05:41 +000010820 // Cannonicalize fcmp_one -> fcmp_oeq
10821 FCmpInst::Predicate FPred; Value *Y;
10822 if (match(&BI, m_Br(m_FCmp(FPred, m_Value(X), m_Value(Y)),
10823 TrueDest, FalseDest)))
10824 if ((FPred == FCmpInst::FCMP_ONE || FPred == FCmpInst::FCMP_OLE ||
10825 FPred == FCmpInst::FCMP_OGE) && BI.getCondition()->hasOneUse()) {
10826 FCmpInst *I = cast<FCmpInst>(BI.getCondition());
Reid Spencere4d87aa2006-12-23 06:05:41 +000010827 FCmpInst::Predicate NewPred = FCmpInst::getInversePredicate(FPred);
Chris Lattner6934a042007-02-11 01:23:03 +000010828 Instruction *NewSCC = new FCmpInst(NewPred, X, Y, "", I);
10829 NewSCC->takeName(I);
Reid Spencere4d87aa2006-12-23 06:05:41 +000010830 // Swap Destinations and condition...
10831 BI.setCondition(NewSCC);
10832 BI.setSuccessor(0, FalseDest);
10833 BI.setSuccessor(1, TrueDest);
Chris Lattnerdbab3862007-03-02 21:28:56 +000010834 RemoveFromWorkList(I);
Chris Lattner6934a042007-02-11 01:23:03 +000010835 I->eraseFromParent();
Chris Lattnerdbab3862007-03-02 21:28:56 +000010836 AddToWorkList(NewSCC);
Reid Spencere4d87aa2006-12-23 06:05:41 +000010837 return &BI;
10838 }
10839
10840 // Cannonicalize icmp_ne -> icmp_eq
10841 ICmpInst::Predicate IPred;
10842 if (match(&BI, m_Br(m_ICmp(IPred, m_Value(X), m_Value(Y)),
10843 TrueDest, FalseDest)))
10844 if ((IPred == ICmpInst::ICMP_NE || IPred == ICmpInst::ICMP_ULE ||
10845 IPred == ICmpInst::ICMP_SLE || IPred == ICmpInst::ICMP_UGE ||
10846 IPred == ICmpInst::ICMP_SGE) && BI.getCondition()->hasOneUse()) {
10847 ICmpInst *I = cast<ICmpInst>(BI.getCondition());
Reid Spencere4d87aa2006-12-23 06:05:41 +000010848 ICmpInst::Predicate NewPred = ICmpInst::getInversePredicate(IPred);
Chris Lattner6934a042007-02-11 01:23:03 +000010849 Instruction *NewSCC = new ICmpInst(NewPred, X, Y, "", I);
10850 NewSCC->takeName(I);
Chris Lattner40f5d702003-06-04 05:10:11 +000010851 // Swap Destinations and condition...
Chris Lattneracd1f0f2004-07-30 07:50:03 +000010852 BI.setCondition(NewSCC);
Chris Lattner40f5d702003-06-04 05:10:11 +000010853 BI.setSuccessor(0, FalseDest);
10854 BI.setSuccessor(1, TrueDest);
Chris Lattnerdbab3862007-03-02 21:28:56 +000010855 RemoveFromWorkList(I);
Chris Lattner6934a042007-02-11 01:23:03 +000010856 I->eraseFromParent();;
Chris Lattnerdbab3862007-03-02 21:28:56 +000010857 AddToWorkList(NewSCC);
Chris Lattner40f5d702003-06-04 05:10:11 +000010858 return &BI;
10859 }
Misha Brukmanfd939082005-04-21 23:48:37 +000010860
Chris Lattnerc4d10eb2003-06-04 04:46:00 +000010861 return 0;
10862}
Chris Lattner0864acf2002-11-04 16:18:53 +000010863
Chris Lattner46238a62004-07-03 00:26:11 +000010864Instruction *InstCombiner::visitSwitchInst(SwitchInst &SI) {
10865 Value *Cond = SI.getCondition();
10866 if (Instruction *I = dyn_cast<Instruction>(Cond)) {
10867 if (I->getOpcode() == Instruction::Add)
10868 if (ConstantInt *AddRHS = dyn_cast<ConstantInt>(I->getOperand(1))) {
10869 // change 'switch (X+4) case 1:' into 'switch (X) case -3'
10870 for (unsigned i = 2, e = SI.getNumOperands(); i != e; i += 2)
Chris Lattnere87597f2004-10-16 18:11:37 +000010871 SI.setOperand(i,ConstantExpr::getSub(cast<Constant>(SI.getOperand(i)),
Chris Lattner46238a62004-07-03 00:26:11 +000010872 AddRHS));
10873 SI.setOperand(0, I->getOperand(0));
Chris Lattnerdbab3862007-03-02 21:28:56 +000010874 AddToWorkList(I);
Chris Lattner46238a62004-07-03 00:26:11 +000010875 return &SI;
10876 }
10877 }
10878 return 0;
10879}
10880
Matthijs Kooijmana9012ec2008-06-11 14:05:05 +000010881Instruction *InstCombiner::visitExtractValueInst(ExtractValueInst &EV) {
Matthijs Kooijman780ae5e2008-07-16 12:55:45 +000010882 Value *Agg = EV.getAggregateOperand();
Matthijs Kooijmana9012ec2008-06-11 14:05:05 +000010883
Matthijs Kooijman780ae5e2008-07-16 12:55:45 +000010884 if (!EV.hasIndices())
10885 return ReplaceInstUsesWith(EV, Agg);
10886
10887 if (Constant *C = dyn_cast<Constant>(Agg)) {
10888 if (isa<UndefValue>(C))
10889 return ReplaceInstUsesWith(EV, UndefValue::get(EV.getType()));
10890
10891 if (isa<ConstantAggregateZero>(C))
10892 return ReplaceInstUsesWith(EV, Constant::getNullValue(EV.getType()));
10893
10894 if (isa<ConstantArray>(C) || isa<ConstantStruct>(C)) {
10895 // Extract the element indexed by the first index out of the constant
10896 Value *V = C->getOperand(*EV.idx_begin());
10897 if (EV.getNumIndices() > 1)
10898 // Extract the remaining indices out of the constant indexed by the
10899 // first index
10900 return ExtractValueInst::Create(V, EV.idx_begin() + 1, EV.idx_end());
10901 else
10902 return ReplaceInstUsesWith(EV, V);
10903 }
10904 return 0; // Can't handle other constants
10905 }
10906 if (InsertValueInst *IV = dyn_cast<InsertValueInst>(Agg)) {
10907 // We're extracting from an insertvalue instruction, compare the indices
10908 const unsigned *exti, *exte, *insi, *inse;
10909 for (exti = EV.idx_begin(), insi = IV->idx_begin(),
10910 exte = EV.idx_end(), inse = IV->idx_end();
10911 exti != exte && insi != inse;
10912 ++exti, ++insi) {
10913 if (*insi != *exti)
10914 // The insert and extract both reference distinctly different elements.
10915 // This means the extract is not influenced by the insert, and we can
10916 // replace the aggregate operand of the extract with the aggregate
10917 // operand of the insert. i.e., replace
10918 // %I = insertvalue { i32, { i32 } } %A, { i32 } { i32 42 }, 1
10919 // %E = extractvalue { i32, { i32 } } %I, 0
10920 // with
10921 // %E = extractvalue { i32, { i32 } } %A, 0
10922 return ExtractValueInst::Create(IV->getAggregateOperand(),
10923 EV.idx_begin(), EV.idx_end());
10924 }
10925 if (exti == exte && insi == inse)
10926 // Both iterators are at the end: Index lists are identical. Replace
10927 // %B = insertvalue { i32, { i32 } } %A, i32 42, 1, 0
10928 // %C = extractvalue { i32, { i32 } } %B, 1, 0
10929 // with "i32 42"
10930 return ReplaceInstUsesWith(EV, IV->getInsertedValueOperand());
10931 if (exti == exte) {
10932 // The extract list is a prefix of the insert list. i.e. replace
10933 // %I = insertvalue { i32, { i32 } } %A, i32 42, 1, 0
10934 // %E = extractvalue { i32, { i32 } } %I, 1
10935 // with
10936 // %X = extractvalue { i32, { i32 } } %A, 1
10937 // %E = insertvalue { i32 } %X, i32 42, 0
10938 // by switching the order of the insert and extract (though the
10939 // insertvalue should be left in, since it may have other uses).
10940 Value *NewEV = InsertNewInstBefore(
10941 ExtractValueInst::Create(IV->getAggregateOperand(),
10942 EV.idx_begin(), EV.idx_end()),
10943 EV);
10944 return InsertValueInst::Create(NewEV, IV->getInsertedValueOperand(),
10945 insi, inse);
10946 }
10947 if (insi == inse)
10948 // The insert list is a prefix of the extract list
10949 // We can simply remove the common indices from the extract and make it
10950 // operate on the inserted value instead of the insertvalue result.
10951 // i.e., replace
10952 // %I = insertvalue { i32, { i32 } } %A, { i32 } { i32 42 }, 1
10953 // %E = extractvalue { i32, { i32 } } %I, 1, 0
10954 // with
10955 // %E extractvalue { i32 } { i32 42 }, 0
10956 return ExtractValueInst::Create(IV->getInsertedValueOperand(),
10957 exti, exte);
10958 }
10959 // Can't simplify extracts from other values. Note that nested extracts are
10960 // already simplified implicitely by the above (extract ( extract (insert) )
10961 // will be translated into extract ( insert ( extract ) ) first and then just
10962 // the value inserted, if appropriate).
Matthijs Kooijmana9012ec2008-06-11 14:05:05 +000010963 return 0;
10964}
10965
Chris Lattner220b0cf2006-03-05 00:22:33 +000010966/// CheapToScalarize - Return true if the value is cheaper to scalarize than it
10967/// is to leave as a vector operation.
10968static bool CheapToScalarize(Value *V, bool isConstant) {
10969 if (isa<ConstantAggregateZero>(V))
10970 return true;
Reid Spencer9d6565a2007-02-15 02:26:10 +000010971 if (ConstantVector *C = dyn_cast<ConstantVector>(V)) {
Chris Lattner220b0cf2006-03-05 00:22:33 +000010972 if (isConstant) return true;
10973 // If all elts are the same, we can extract.
10974 Constant *Op0 = C->getOperand(0);
10975 for (unsigned i = 1; i < C->getNumOperands(); ++i)
10976 if (C->getOperand(i) != Op0)
10977 return false;
10978 return true;
10979 }
10980 Instruction *I = dyn_cast<Instruction>(V);
10981 if (!I) return false;
10982
10983 // Insert element gets simplified to the inserted element or is deleted if
10984 // this is constant idx extract element and its a constant idx insertelt.
10985 if (I->getOpcode() == Instruction::InsertElement && isConstant &&
10986 isa<ConstantInt>(I->getOperand(2)))
10987 return true;
10988 if (I->getOpcode() == Instruction::Load && I->hasOneUse())
10989 return true;
10990 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I))
10991 if (BO->hasOneUse() &&
10992 (CheapToScalarize(BO->getOperand(0), isConstant) ||
10993 CheapToScalarize(BO->getOperand(1), isConstant)))
10994 return true;
Reid Spencere4d87aa2006-12-23 06:05:41 +000010995 if (CmpInst *CI = dyn_cast<CmpInst>(I))
10996 if (CI->hasOneUse() &&
10997 (CheapToScalarize(CI->getOperand(0), isConstant) ||
10998 CheapToScalarize(CI->getOperand(1), isConstant)))
10999 return true;
Chris Lattner220b0cf2006-03-05 00:22:33 +000011000
11001 return false;
11002}
11003
Chris Lattnerd2b7cec2007-02-14 05:52:17 +000011004/// Read and decode a shufflevector mask.
11005///
11006/// It turns undef elements into values that are larger than the number of
11007/// elements in the input.
Chris Lattner863bcff2006-05-25 23:48:38 +000011008static std::vector<unsigned> getShuffleMask(const ShuffleVectorInst *SVI) {
11009 unsigned NElts = SVI->getType()->getNumElements();
11010 if (isa<ConstantAggregateZero>(SVI->getOperand(2)))
11011 return std::vector<unsigned>(NElts, 0);
11012 if (isa<UndefValue>(SVI->getOperand(2)))
11013 return std::vector<unsigned>(NElts, 2*NElts);
11014
11015 std::vector<unsigned> Result;
Reid Spencer9d6565a2007-02-15 02:26:10 +000011016 const ConstantVector *CP = cast<ConstantVector>(SVI->getOperand(2));
Gabor Greif177dd3f2008-06-12 21:37:33 +000011017 for (User::const_op_iterator i = CP->op_begin(), e = CP->op_end(); i!=e; ++i)
11018 if (isa<UndefValue>(*i))
Chris Lattner863bcff2006-05-25 23:48:38 +000011019 Result.push_back(NElts*2); // undef -> 8
11020 else
Gabor Greif177dd3f2008-06-12 21:37:33 +000011021 Result.push_back(cast<ConstantInt>(*i)->getZExtValue());
Chris Lattner863bcff2006-05-25 23:48:38 +000011022 return Result;
11023}
11024
Chris Lattner6e6b0da2006-03-31 23:01:56 +000011025/// FindScalarElement - Given a vector and an element number, see if the scalar
11026/// value is already around as a register, for example if it were inserted then
11027/// extracted from the vector.
11028static Value *FindScalarElement(Value *V, unsigned EltNo) {
Reid Spencer9d6565a2007-02-15 02:26:10 +000011029 assert(isa<VectorType>(V->getType()) && "Not looking at a vector?");
11030 const VectorType *PTy = cast<VectorType>(V->getType());
Chris Lattner389a6f52006-04-10 23:06:36 +000011031 unsigned Width = PTy->getNumElements();
11032 if (EltNo >= Width) // Out of range access.
Chris Lattner6e6b0da2006-03-31 23:01:56 +000011033 return UndefValue::get(PTy->getElementType());
11034
11035 if (isa<UndefValue>(V))
11036 return UndefValue::get(PTy->getElementType());
11037 else if (isa<ConstantAggregateZero>(V))
11038 return Constant::getNullValue(PTy->getElementType());
Reid Spencer9d6565a2007-02-15 02:26:10 +000011039 else if (ConstantVector *CP = dyn_cast<ConstantVector>(V))
Chris Lattner6e6b0da2006-03-31 23:01:56 +000011040 return CP->getOperand(EltNo);
11041 else if (InsertElementInst *III = dyn_cast<InsertElementInst>(V)) {
11042 // If this is an insert to a variable element, we don't know what it is.
Reid Spencerb83eb642006-10-20 07:07:24 +000011043 if (!isa<ConstantInt>(III->getOperand(2)))
11044 return 0;
11045 unsigned IIElt = cast<ConstantInt>(III->getOperand(2))->getZExtValue();
Chris Lattner6e6b0da2006-03-31 23:01:56 +000011046
11047 // If this is an insert to the element we are looking for, return the
11048 // inserted value.
Reid Spencerb83eb642006-10-20 07:07:24 +000011049 if (EltNo == IIElt)
11050 return III->getOperand(1);
Chris Lattner6e6b0da2006-03-31 23:01:56 +000011051
11052 // Otherwise, the insertelement doesn't modify the value, recurse on its
11053 // vector input.
11054 return FindScalarElement(III->getOperand(0), EltNo);
Chris Lattner389a6f52006-04-10 23:06:36 +000011055 } else if (ShuffleVectorInst *SVI = dyn_cast<ShuffleVectorInst>(V)) {
Chris Lattner863bcff2006-05-25 23:48:38 +000011056 unsigned InEl = getShuffleMask(SVI)[EltNo];
11057 if (InEl < Width)
11058 return FindScalarElement(SVI->getOperand(0), InEl);
11059 else if (InEl < Width*2)
11060 return FindScalarElement(SVI->getOperand(1), InEl - Width);
11061 else
11062 return UndefValue::get(PTy->getElementType());
Chris Lattner6e6b0da2006-03-31 23:01:56 +000011063 }
11064
11065 // Otherwise, we don't know.
11066 return 0;
11067}
11068
Robert Bocchino1d7456d2006-01-13 22:48:06 +000011069Instruction *InstCombiner::visitExtractElementInst(ExtractElementInst &EI) {
Dan Gohman07a96762007-07-16 14:29:03 +000011070 // If vector val is undef, replace extract with scalar undef.
Chris Lattner1f13c882006-03-31 18:25:14 +000011071 if (isa<UndefValue>(EI.getOperand(0)))
11072 return ReplaceInstUsesWith(EI, UndefValue::get(EI.getType()));
11073
Dan Gohman07a96762007-07-16 14:29:03 +000011074 // If vector val is constant 0, replace extract with scalar 0.
Chris Lattner1f13c882006-03-31 18:25:14 +000011075 if (isa<ConstantAggregateZero>(EI.getOperand(0)))
11076 return ReplaceInstUsesWith(EI, Constant::getNullValue(EI.getType()));
11077
Reid Spencer9d6565a2007-02-15 02:26:10 +000011078 if (ConstantVector *C = dyn_cast<ConstantVector>(EI.getOperand(0))) {
Matthijs Kooijmanb4d6a5a2008-06-11 09:00:12 +000011079 // If vector val is constant with all elements the same, replace EI with
11080 // that element. When the elements are not identical, we cannot replace yet
11081 // (we do that below, but only when the index is constant).
Chris Lattner220b0cf2006-03-05 00:22:33 +000011082 Constant *op0 = C->getOperand(0);
Robert Bocchino1d7456d2006-01-13 22:48:06 +000011083 for (unsigned i = 1; i < C->getNumOperands(); ++i)
Chris Lattner220b0cf2006-03-05 00:22:33 +000011084 if (C->getOperand(i) != op0) {
11085 op0 = 0;
11086 break;
11087 }
11088 if (op0)
11089 return ReplaceInstUsesWith(EI, op0);
Robert Bocchino1d7456d2006-01-13 22:48:06 +000011090 }
Chris Lattner220b0cf2006-03-05 00:22:33 +000011091
Chris Lattner6e6b0da2006-03-31 23:01:56 +000011092 // If extracting a specified index from the vector, see if we can recursively
11093 // find a previously computed scalar that was inserted into the vector.
Reid Spencerb83eb642006-10-20 07:07:24 +000011094 if (ConstantInt *IdxC = dyn_cast<ConstantInt>(EI.getOperand(1))) {
Chris Lattner85464092007-04-09 01:37:55 +000011095 unsigned IndexVal = IdxC->getZExtValue();
11096 unsigned VectorWidth =
11097 cast<VectorType>(EI.getOperand(0)->getType())->getNumElements();
11098
11099 // If this is extracting an invalid index, turn this into undef, to avoid
11100 // crashing the code below.
11101 if (IndexVal >= VectorWidth)
11102 return ReplaceInstUsesWith(EI, UndefValue::get(EI.getType()));
11103
Chris Lattner867b99f2006-10-05 06:55:50 +000011104 // This instruction only demands the single element from the input vector.
11105 // If the input vector has a single use, simplify it based on this use
11106 // property.
Chris Lattner85464092007-04-09 01:37:55 +000011107 if (EI.getOperand(0)->hasOneUse() && VectorWidth != 1) {
Chris Lattner867b99f2006-10-05 06:55:50 +000011108 uint64_t UndefElts;
11109 if (Value *V = SimplifyDemandedVectorElts(EI.getOperand(0),
Reid Spencerb83eb642006-10-20 07:07:24 +000011110 1 << IndexVal,
Chris Lattner867b99f2006-10-05 06:55:50 +000011111 UndefElts)) {
11112 EI.setOperand(0, V);
11113 return &EI;
11114 }
11115 }
11116
Reid Spencerb83eb642006-10-20 07:07:24 +000011117 if (Value *Elt = FindScalarElement(EI.getOperand(0), IndexVal))
Chris Lattner6e6b0da2006-03-31 23:01:56 +000011118 return ReplaceInstUsesWith(EI, Elt);
Chris Lattnerb7300fa2007-04-14 23:02:14 +000011119
11120 // If the this extractelement is directly using a bitcast from a vector of
11121 // the same number of elements, see if we can find the source element from
11122 // it. In this case, we will end up needing to bitcast the scalars.
11123 if (BitCastInst *BCI = dyn_cast<BitCastInst>(EI.getOperand(0))) {
11124 if (const VectorType *VT =
11125 dyn_cast<VectorType>(BCI->getOperand(0)->getType()))
11126 if (VT->getNumElements() == VectorWidth)
11127 if (Value *Elt = FindScalarElement(BCI->getOperand(0), IndexVal))
11128 return new BitCastInst(Elt, EI.getType());
11129 }
Chris Lattner389a6f52006-04-10 23:06:36 +000011130 }
Chris Lattner6e6b0da2006-03-31 23:01:56 +000011131
Chris Lattner73fa49d2006-05-25 22:53:38 +000011132 if (Instruction *I = dyn_cast<Instruction>(EI.getOperand(0))) {
Robert Bocchino1d7456d2006-01-13 22:48:06 +000011133 if (I->hasOneUse()) {
11134 // Push extractelement into predecessor operation if legal and
11135 // profitable to do so
11136 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Chris Lattner220b0cf2006-03-05 00:22:33 +000011137 bool isConstantElt = isa<ConstantInt>(EI.getOperand(1));
11138 if (CheapToScalarize(BO, isConstantElt)) {
11139 ExtractElementInst *newEI0 =
11140 new ExtractElementInst(BO->getOperand(0), EI.getOperand(1),
11141 EI.getName()+".lhs");
11142 ExtractElementInst *newEI1 =
11143 new ExtractElementInst(BO->getOperand(1), EI.getOperand(1),
11144 EI.getName()+".rhs");
11145 InsertNewInstBefore(newEI0, EI);
11146 InsertNewInstBefore(newEI1, EI);
Gabor Greif7cbd8a32008-05-16 19:29:10 +000011147 return BinaryOperator::Create(BO->getOpcode(), newEI0, newEI1);
Chris Lattner220b0cf2006-03-05 00:22:33 +000011148 }
Reid Spencer3ed469c2006-11-02 20:25:50 +000011149 } else if (isa<LoadInst>(I)) {
Christopher Lamb43ad6b32007-12-17 01:12:55 +000011150 unsigned AS =
11151 cast<PointerType>(I->getOperand(0)->getType())->getAddressSpace();
Chris Lattner6d0339d2008-01-13 22:23:22 +000011152 Value *Ptr = InsertBitCastBefore(I->getOperand(0),
11153 PointerType::get(EI.getType(), AS),EI);
Gabor Greifb1dbcd82008-05-15 10:04:30 +000011154 GetElementPtrInst *GEP =
11155 GetElementPtrInst::Create(Ptr, EI.getOperand(1), I->getName()+".gep");
Robert Bocchino1d7456d2006-01-13 22:48:06 +000011156 InsertNewInstBefore(GEP, EI);
11157 return new LoadInst(GEP);
Chris Lattner73fa49d2006-05-25 22:53:38 +000011158 }
11159 }
11160 if (InsertElementInst *IE = dyn_cast<InsertElementInst>(I)) {
11161 // Extracting the inserted element?
11162 if (IE->getOperand(2) == EI.getOperand(1))
11163 return ReplaceInstUsesWith(EI, IE->getOperand(1));
11164 // If the inserted and extracted elements are constants, they must not
11165 // be the same value, extract from the pre-inserted value instead.
11166 if (isa<Constant>(IE->getOperand(2)) &&
11167 isa<Constant>(EI.getOperand(1))) {
11168 AddUsesToWorkList(EI);
11169 EI.setOperand(0, IE->getOperand(0));
11170 return &EI;
11171 }
11172 } else if (ShuffleVectorInst *SVI = dyn_cast<ShuffleVectorInst>(I)) {
11173 // If this is extracting an element from a shufflevector, figure out where
11174 // it came from and extract from the appropriate input element instead.
Reid Spencerb83eb642006-10-20 07:07:24 +000011175 if (ConstantInt *Elt = dyn_cast<ConstantInt>(EI.getOperand(1))) {
11176 unsigned SrcIdx = getShuffleMask(SVI)[Elt->getZExtValue()];
Chris Lattner863bcff2006-05-25 23:48:38 +000011177 Value *Src;
11178 if (SrcIdx < SVI->getType()->getNumElements())
11179 Src = SVI->getOperand(0);
11180 else if (SrcIdx < SVI->getType()->getNumElements()*2) {
11181 SrcIdx -= SVI->getType()->getNumElements();
11182 Src = SVI->getOperand(1);
11183 } else {
11184 return ReplaceInstUsesWith(EI, UndefValue::get(EI.getType()));
Chris Lattnerdf084ff2006-03-30 22:02:40 +000011185 }
Chris Lattner867b99f2006-10-05 06:55:50 +000011186 return new ExtractElementInst(Src, SrcIdx);
Robert Bocchino1d7456d2006-01-13 22:48:06 +000011187 }
11188 }
Chris Lattner73fa49d2006-05-25 22:53:38 +000011189 }
Robert Bocchino1d7456d2006-01-13 22:48:06 +000011190 return 0;
11191}
11192
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011193/// CollectSingleShuffleElements - If V is a shuffle of values that ONLY returns
11194/// elements from either LHS or RHS, return the shuffle mask and true.
11195/// Otherwise, return false.
11196static bool CollectSingleShuffleElements(Value *V, Value *LHS, Value *RHS,
11197 std::vector<Constant*> &Mask) {
11198 assert(V->getType() == LHS->getType() && V->getType() == RHS->getType() &&
11199 "Invalid CollectSingleShuffleElements");
Reid Spencer9d6565a2007-02-15 02:26:10 +000011200 unsigned NumElts = cast<VectorType>(V->getType())->getNumElements();
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011201
11202 if (isa<UndefValue>(V)) {
Reid Spencerc5b206b2006-12-31 05:48:39 +000011203 Mask.assign(NumElts, UndefValue::get(Type::Int32Ty));
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011204 return true;
11205 } else if (V == LHS) {
11206 for (unsigned i = 0; i != NumElts; ++i)
Reid Spencerc5b206b2006-12-31 05:48:39 +000011207 Mask.push_back(ConstantInt::get(Type::Int32Ty, i));
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011208 return true;
11209 } else if (V == RHS) {
11210 for (unsigned i = 0; i != NumElts; ++i)
Reid Spencerc5b206b2006-12-31 05:48:39 +000011211 Mask.push_back(ConstantInt::get(Type::Int32Ty, i+NumElts));
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011212 return true;
11213 } else if (InsertElementInst *IEI = dyn_cast<InsertElementInst>(V)) {
11214 // If this is an insert of an extract from some other vector, include it.
11215 Value *VecOp = IEI->getOperand(0);
11216 Value *ScalarOp = IEI->getOperand(1);
11217 Value *IdxOp = IEI->getOperand(2);
11218
Chris Lattnerd929f062006-04-27 21:14:21 +000011219 if (!isa<ConstantInt>(IdxOp))
11220 return false;
Reid Spencerb83eb642006-10-20 07:07:24 +000011221 unsigned InsertedIdx = cast<ConstantInt>(IdxOp)->getZExtValue();
Chris Lattnerd929f062006-04-27 21:14:21 +000011222
11223 if (isa<UndefValue>(ScalarOp)) { // inserting undef into vector.
11224 // Okay, we can handle this if the vector we are insertinting into is
11225 // transitively ok.
11226 if (CollectSingleShuffleElements(VecOp, LHS, RHS, Mask)) {
11227 // If so, update the mask to reflect the inserted undef.
Reid Spencerc5b206b2006-12-31 05:48:39 +000011228 Mask[InsertedIdx] = UndefValue::get(Type::Int32Ty);
Chris Lattnerd929f062006-04-27 21:14:21 +000011229 return true;
11230 }
11231 } else if (ExtractElementInst *EI = dyn_cast<ExtractElementInst>(ScalarOp)){
11232 if (isa<ConstantInt>(EI->getOperand(1)) &&
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011233 EI->getOperand(0)->getType() == V->getType()) {
11234 unsigned ExtractedIdx =
Reid Spencerb83eb642006-10-20 07:07:24 +000011235 cast<ConstantInt>(EI->getOperand(1))->getZExtValue();
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011236
11237 // This must be extracting from either LHS or RHS.
11238 if (EI->getOperand(0) == LHS || EI->getOperand(0) == RHS) {
11239 // Okay, we can handle this if the vector we are insertinting into is
11240 // transitively ok.
11241 if (CollectSingleShuffleElements(VecOp, LHS, RHS, Mask)) {
11242 // If so, update the mask to reflect the inserted value.
11243 if (EI->getOperand(0) == LHS) {
Mon P Wang4f5ca2c2008-08-20 02:23:25 +000011244 Mask[InsertedIdx % NumElts] =
Reid Spencerc5b206b2006-12-31 05:48:39 +000011245 ConstantInt::get(Type::Int32Ty, ExtractedIdx);
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011246 } else {
11247 assert(EI->getOperand(0) == RHS);
Mon P Wang4f5ca2c2008-08-20 02:23:25 +000011248 Mask[InsertedIdx % NumElts] =
Reid Spencerc5b206b2006-12-31 05:48:39 +000011249 ConstantInt::get(Type::Int32Ty, ExtractedIdx+NumElts);
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011250
11251 }
11252 return true;
11253 }
11254 }
11255 }
11256 }
11257 }
11258 // TODO: Handle shufflevector here!
11259
11260 return false;
11261}
11262
11263/// CollectShuffleElements - We are building a shuffle of V, using RHS as the
11264/// RHS of the shuffle instruction, if it is not null. Return a shuffle mask
11265/// that computes V and the LHS value of the shuffle.
Chris Lattnerefb47352006-04-15 01:39:45 +000011266static Value *CollectShuffleElements(Value *V, std::vector<Constant*> &Mask,
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011267 Value *&RHS) {
Reid Spencer9d6565a2007-02-15 02:26:10 +000011268 assert(isa<VectorType>(V->getType()) &&
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011269 (RHS == 0 || V->getType() == RHS->getType()) &&
Chris Lattnerefb47352006-04-15 01:39:45 +000011270 "Invalid shuffle!");
Reid Spencer9d6565a2007-02-15 02:26:10 +000011271 unsigned NumElts = cast<VectorType>(V->getType())->getNumElements();
Chris Lattnerefb47352006-04-15 01:39:45 +000011272
11273 if (isa<UndefValue>(V)) {
Reid Spencerc5b206b2006-12-31 05:48:39 +000011274 Mask.assign(NumElts, UndefValue::get(Type::Int32Ty));
Chris Lattnerefb47352006-04-15 01:39:45 +000011275 return V;
11276 } else if (isa<ConstantAggregateZero>(V)) {
Reid Spencerc5b206b2006-12-31 05:48:39 +000011277 Mask.assign(NumElts, ConstantInt::get(Type::Int32Ty, 0));
Chris Lattnerefb47352006-04-15 01:39:45 +000011278 return V;
11279 } else if (InsertElementInst *IEI = dyn_cast<InsertElementInst>(V)) {
11280 // If this is an insert of an extract from some other vector, include it.
11281 Value *VecOp = IEI->getOperand(0);
11282 Value *ScalarOp = IEI->getOperand(1);
11283 Value *IdxOp = IEI->getOperand(2);
11284
11285 if (ExtractElementInst *EI = dyn_cast<ExtractElementInst>(ScalarOp)) {
11286 if (isa<ConstantInt>(EI->getOperand(1)) && isa<ConstantInt>(IdxOp) &&
11287 EI->getOperand(0)->getType() == V->getType()) {
11288 unsigned ExtractedIdx =
Reid Spencerb83eb642006-10-20 07:07:24 +000011289 cast<ConstantInt>(EI->getOperand(1))->getZExtValue();
11290 unsigned InsertedIdx = cast<ConstantInt>(IdxOp)->getZExtValue();
Chris Lattnerefb47352006-04-15 01:39:45 +000011291
11292 // Either the extracted from or inserted into vector must be RHSVec,
11293 // otherwise we'd end up with a shuffle of three inputs.
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011294 if (EI->getOperand(0) == RHS || RHS == 0) {
11295 RHS = EI->getOperand(0);
11296 Value *V = CollectShuffleElements(VecOp, Mask, RHS);
Mon P Wang4f5ca2c2008-08-20 02:23:25 +000011297 Mask[InsertedIdx % NumElts] =
Reid Spencerc5b206b2006-12-31 05:48:39 +000011298 ConstantInt::get(Type::Int32Ty, NumElts+ExtractedIdx);
Chris Lattnerefb47352006-04-15 01:39:45 +000011299 return V;
11300 }
11301
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011302 if (VecOp == RHS) {
11303 Value *V = CollectShuffleElements(EI->getOperand(0), Mask, RHS);
Chris Lattnerefb47352006-04-15 01:39:45 +000011304 // Everything but the extracted element is replaced with the RHS.
11305 for (unsigned i = 0; i != NumElts; ++i) {
11306 if (i != InsertedIdx)
Reid Spencerc5b206b2006-12-31 05:48:39 +000011307 Mask[i] = ConstantInt::get(Type::Int32Ty, NumElts+i);
Chris Lattnerefb47352006-04-15 01:39:45 +000011308 }
11309 return V;
11310 }
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011311
11312 // If this insertelement is a chain that comes from exactly these two
11313 // vectors, return the vector and the effective shuffle.
11314 if (CollectSingleShuffleElements(IEI, EI->getOperand(0), RHS, Mask))
11315 return EI->getOperand(0);
11316
Chris Lattnerefb47352006-04-15 01:39:45 +000011317 }
11318 }
11319 }
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011320 // TODO: Handle shufflevector here!
Chris Lattnerefb47352006-04-15 01:39:45 +000011321
11322 // Otherwise, can't do anything fancy. Return an identity vector.
11323 for (unsigned i = 0; i != NumElts; ++i)
Reid Spencerc5b206b2006-12-31 05:48:39 +000011324 Mask.push_back(ConstantInt::get(Type::Int32Ty, i));
Chris Lattnerefb47352006-04-15 01:39:45 +000011325 return V;
11326}
11327
11328Instruction *InstCombiner::visitInsertElementInst(InsertElementInst &IE) {
11329 Value *VecOp = IE.getOperand(0);
11330 Value *ScalarOp = IE.getOperand(1);
11331 Value *IdxOp = IE.getOperand(2);
11332
Chris Lattner599ded12007-04-09 01:11:16 +000011333 // Inserting an undef or into an undefined place, remove this.
11334 if (isa<UndefValue>(ScalarOp) || isa<UndefValue>(IdxOp))
11335 ReplaceInstUsesWith(IE, VecOp);
11336
Chris Lattnerefb47352006-04-15 01:39:45 +000011337 // If the inserted element was extracted from some other vector, and if the
11338 // indexes are constant, try to turn this into a shufflevector operation.
11339 if (ExtractElementInst *EI = dyn_cast<ExtractElementInst>(ScalarOp)) {
11340 if (isa<ConstantInt>(EI->getOperand(1)) && isa<ConstantInt>(IdxOp) &&
11341 EI->getOperand(0)->getType() == IE.getType()) {
11342 unsigned NumVectorElts = IE.getType()->getNumElements();
Chris Lattnere34e9a22007-04-14 23:32:02 +000011343 unsigned ExtractedIdx =
11344 cast<ConstantInt>(EI->getOperand(1))->getZExtValue();
Reid Spencerb83eb642006-10-20 07:07:24 +000011345 unsigned InsertedIdx = cast<ConstantInt>(IdxOp)->getZExtValue();
Chris Lattnerefb47352006-04-15 01:39:45 +000011346
11347 if (ExtractedIdx >= NumVectorElts) // Out of range extract.
11348 return ReplaceInstUsesWith(IE, VecOp);
11349
11350 if (InsertedIdx >= NumVectorElts) // Out of range insert.
11351 return ReplaceInstUsesWith(IE, UndefValue::get(IE.getType()));
11352
11353 // If we are extracting a value from a vector, then inserting it right
11354 // back into the same place, just use the input vector.
11355 if (EI->getOperand(0) == VecOp && ExtractedIdx == InsertedIdx)
11356 return ReplaceInstUsesWith(IE, VecOp);
11357
11358 // We could theoretically do this for ANY input. However, doing so could
11359 // turn chains of insertelement instructions into a chain of shufflevector
11360 // instructions, and right now we do not merge shufflevectors. As such,
11361 // only do this in a situation where it is clear that there is benefit.
11362 if (isa<UndefValue>(VecOp) || isa<ConstantAggregateZero>(VecOp)) {
11363 // Turn this into shuffle(EIOp0, VecOp, Mask). The result has all of
11364 // the values of VecOp, except then one read from EIOp0.
11365 // Build a new shuffle mask.
11366 std::vector<Constant*> Mask;
11367 if (isa<UndefValue>(VecOp))
Reid Spencerc5b206b2006-12-31 05:48:39 +000011368 Mask.assign(NumVectorElts, UndefValue::get(Type::Int32Ty));
Chris Lattnerefb47352006-04-15 01:39:45 +000011369 else {
11370 assert(isa<ConstantAggregateZero>(VecOp) && "Unknown thing");
Reid Spencerc5b206b2006-12-31 05:48:39 +000011371 Mask.assign(NumVectorElts, ConstantInt::get(Type::Int32Ty,
Chris Lattnerefb47352006-04-15 01:39:45 +000011372 NumVectorElts));
11373 }
Reid Spencerc5b206b2006-12-31 05:48:39 +000011374 Mask[InsertedIdx] = ConstantInt::get(Type::Int32Ty, ExtractedIdx);
Chris Lattnerefb47352006-04-15 01:39:45 +000011375 return new ShuffleVectorInst(EI->getOperand(0), VecOp,
Reid Spencer9d6565a2007-02-15 02:26:10 +000011376 ConstantVector::get(Mask));
Chris Lattnerefb47352006-04-15 01:39:45 +000011377 }
11378
11379 // If this insertelement isn't used by some other insertelement, turn it
11380 // (and any insertelements it points to), into one big shuffle.
11381 if (!IE.hasOneUse() || !isa<InsertElementInst>(IE.use_back())) {
11382 std::vector<Constant*> Mask;
Chris Lattner7f6cc0c2006-04-16 00:51:47 +000011383 Value *RHS = 0;
11384 Value *LHS = CollectShuffleElements(&IE, Mask, RHS);
11385 if (RHS == 0) RHS = UndefValue::get(LHS->getType());
11386 // We now have a shuffle of LHS, RHS, Mask.
Reid Spencer9d6565a2007-02-15 02:26:10 +000011387 return new ShuffleVectorInst(LHS, RHS, ConstantVector::get(Mask));
Chris Lattnerefb47352006-04-15 01:39:45 +000011388 }
11389 }
11390 }
11391
11392 return 0;
11393}
11394
11395
Chris Lattnera844fc4c2006-04-10 22:45:52 +000011396Instruction *InstCombiner::visitShuffleVectorInst(ShuffleVectorInst &SVI) {
11397 Value *LHS = SVI.getOperand(0);
11398 Value *RHS = SVI.getOperand(1);
Chris Lattner863bcff2006-05-25 23:48:38 +000011399 std::vector<unsigned> Mask = getShuffleMask(&SVI);
Chris Lattnera844fc4c2006-04-10 22:45:52 +000011400
11401 bool MadeChange = false;
11402
Chris Lattner867b99f2006-10-05 06:55:50 +000011403 // Undefined shuffle mask -> undefined value.
Chris Lattner863bcff2006-05-25 23:48:38 +000011404 if (isa<UndefValue>(SVI.getOperand(2)))
Chris Lattnera844fc4c2006-04-10 22:45:52 +000011405 return ReplaceInstUsesWith(SVI, UndefValue::get(SVI.getType()));
Dan Gohman488fbfc2008-09-09 18:11:14 +000011406
11407 uint64_t UndefElts;
11408 unsigned VWidth = cast<VectorType>(SVI.getType())->getNumElements();
11409 uint64_t AllOnesEltMask = ~0ULL >> (64-VWidth);
11410 if (VWidth <= 64 &&
Dan Gohman3139ff82008-09-11 22:47:57 +000011411 SimplifyDemandedVectorElts(&SVI, AllOnesEltMask, UndefElts)) {
11412 LHS = SVI.getOperand(0);
11413 RHS = SVI.getOperand(1);
Dan Gohman488fbfc2008-09-09 18:11:14 +000011414 MadeChange = true;
Dan Gohman3139ff82008-09-11 22:47:57 +000011415 }
Chris Lattnerefb47352006-04-15 01:39:45 +000011416
Chris Lattner863bcff2006-05-25 23:48:38 +000011417 // Canonicalize shuffle(x ,x,mask) -> shuffle(x, undef,mask')
11418 // Canonicalize shuffle(undef,x,mask) -> shuffle(x, undef,mask').
11419 if (LHS == RHS || isa<UndefValue>(LHS)) {
11420 if (isa<UndefValue>(LHS) && LHS == RHS) {
Chris Lattnera844fc4c2006-04-10 22:45:52 +000011421 // shuffle(undef,undef,mask) -> undef.
11422 return ReplaceInstUsesWith(SVI, LHS);
11423 }
11424
Chris Lattner863bcff2006-05-25 23:48:38 +000011425 // Remap any references to RHS to use LHS.
11426 std::vector<Constant*> Elts;
11427 for (unsigned i = 0, e = Mask.size(); i != e; ++i) {
Chris Lattner7b2e27922006-05-26 00:29:06 +000011428 if (Mask[i] >= 2*e)
Reid Spencerc5b206b2006-12-31 05:48:39 +000011429 Elts.push_back(UndefValue::get(Type::Int32Ty));
Chris Lattner7b2e27922006-05-26 00:29:06 +000011430 else {
11431 if ((Mask[i] >= e && isa<UndefValue>(RHS)) ||
Dan Gohman4ce96272008-08-06 18:17:32 +000011432 (Mask[i] < e && isa<UndefValue>(LHS))) {
Chris Lattner7b2e27922006-05-26 00:29:06 +000011433 Mask[i] = 2*e; // Turn into undef.
Dan Gohman4ce96272008-08-06 18:17:32 +000011434 Elts.push_back(UndefValue::get(Type::Int32Ty));
11435 } else {
Mon P Wang4f5ca2c2008-08-20 02:23:25 +000011436 Mask[i] = Mask[i] % e; // Force to LHS.
Dan Gohman4ce96272008-08-06 18:17:32 +000011437 Elts.push_back(ConstantInt::get(Type::Int32Ty, Mask[i]));
11438 }
Chris Lattner7b2e27922006-05-26 00:29:06 +000011439 }
Chris Lattnera844fc4c2006-04-10 22:45:52 +000011440 }
Chris Lattner863bcff2006-05-25 23:48:38 +000011441 SVI.setOperand(0, SVI.getOperand(1));
Chris Lattnera844fc4c2006-04-10 22:45:52 +000011442 SVI.setOperand(1, UndefValue::get(RHS->getType()));
Reid Spencer9d6565a2007-02-15 02:26:10 +000011443 SVI.setOperand(2, ConstantVector::get(Elts));
Chris Lattner7b2e27922006-05-26 00:29:06 +000011444 LHS = SVI.getOperand(0);
11445 RHS = SVI.getOperand(1);
Chris Lattnera844fc4c2006-04-10 22:45:52 +000011446 MadeChange = true;
11447 }
11448
Chris Lattner7b2e27922006-05-26 00:29:06 +000011449 // Analyze the shuffle, are the LHS or RHS and identity shuffles?
Chris Lattner863bcff2006-05-25 23:48:38 +000011450 bool isLHSID = true, isRHSID = true;
Chris Lattner706126d2006-04-16 00:03:56 +000011451
Chris Lattner863bcff2006-05-25 23:48:38 +000011452 for (unsigned i = 0, e = Mask.size(); i != e; ++i) {
11453 if (Mask[i] >= e*2) continue; // Ignore undef values.
11454 // Is this an identity shuffle of the LHS value?
11455 isLHSID &= (Mask[i] == i);
11456
11457 // Is this an identity shuffle of the RHS value?
11458 isRHSID &= (Mask[i]-e == i);
Chris Lattner706126d2006-04-16 00:03:56 +000011459 }
Chris Lattnera844fc4c2006-04-10 22:45:52 +000011460
Chris Lattner863bcff2006-05-25 23:48:38 +000011461 // Eliminate identity shuffles.
11462 if (isLHSID) return ReplaceInstUsesWith(SVI, LHS);
11463 if (isRHSID) return ReplaceInstUsesWith(SVI, RHS);
Chris Lattnera844fc4c2006-04-10 22:45:52 +000011464
Chris Lattner7b2e27922006-05-26 00:29:06 +000011465 // If the LHS is a shufflevector itself, see if we can combine it with this
11466 // one without producing an unusual shuffle. Here we are really conservative:
11467 // we are absolutely afraid of producing a shuffle mask not in the input
11468 // program, because the code gen may not be smart enough to turn a merged
11469 // shuffle into two specific shuffles: it may produce worse code. As such,
11470 // we only merge two shuffles if the result is one of the two input shuffle
11471 // masks. In this case, merging the shuffles just removes one instruction,
11472 // which we know is safe. This is good for things like turning:
11473 // (splat(splat)) -> splat.
11474 if (ShuffleVectorInst *LHSSVI = dyn_cast<ShuffleVectorInst>(LHS)) {
11475 if (isa<UndefValue>(RHS)) {
11476 std::vector<unsigned> LHSMask = getShuffleMask(LHSSVI);
11477
11478 std::vector<unsigned> NewMask;
11479 for (unsigned i = 0, e = Mask.size(); i != e; ++i)
11480 if (Mask[i] >= 2*e)
11481 NewMask.push_back(2*e);
11482 else
11483 NewMask.push_back(LHSMask[Mask[i]]);
11484
11485 // If the result mask is equal to the src shuffle or this shuffle mask, do
11486 // the replacement.
11487 if (NewMask == LHSMask || NewMask == Mask) {
11488 std::vector<Constant*> Elts;
11489 for (unsigned i = 0, e = NewMask.size(); i != e; ++i) {
11490 if (NewMask[i] >= e*2) {
Reid Spencerc5b206b2006-12-31 05:48:39 +000011491 Elts.push_back(UndefValue::get(Type::Int32Ty));
Chris Lattner7b2e27922006-05-26 00:29:06 +000011492 } else {
Reid Spencerc5b206b2006-12-31 05:48:39 +000011493 Elts.push_back(ConstantInt::get(Type::Int32Ty, NewMask[i]));
Chris Lattner7b2e27922006-05-26 00:29:06 +000011494 }
11495 }
11496 return new ShuffleVectorInst(LHSSVI->getOperand(0),
11497 LHSSVI->getOperand(1),
Reid Spencer9d6565a2007-02-15 02:26:10 +000011498 ConstantVector::get(Elts));
Chris Lattner7b2e27922006-05-26 00:29:06 +000011499 }
11500 }
11501 }
Chris Lattnerc5eff442007-01-30 22:32:46 +000011502
Chris Lattnera844fc4c2006-04-10 22:45:52 +000011503 return MadeChange ? &SVI : 0;
11504}
11505
11506
Robert Bocchino1d7456d2006-01-13 22:48:06 +000011507
Chris Lattnerea1c4542004-12-08 23:43:58 +000011508
11509/// TryToSinkInstruction - Try to move the specified instruction from its
11510/// current block into the beginning of DestBlock, which can only happen if it's
11511/// safe to move the instruction past all of the instructions between it and the
11512/// end of its block.
11513static bool TryToSinkInstruction(Instruction *I, BasicBlock *DestBlock) {
11514 assert(I->hasOneUse() && "Invariants didn't hold!");
11515
Chris Lattner108e9022005-10-27 17:13:11 +000011516 // Cannot move control-flow-involving, volatile loads, vaarg, etc.
Chris Lattnerbfc538c2008-05-09 15:07:33 +000011517 if (isa<PHINode>(I) || I->mayWriteToMemory() || isa<TerminatorInst>(I))
11518 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +000011519
Chris Lattnerea1c4542004-12-08 23:43:58 +000011520 // Do not sink alloca instructions out of the entry block.
Dan Gohmanecb7a772007-03-22 16:38:57 +000011521 if (isa<AllocaInst>(I) && I->getParent() ==
11522 &DestBlock->getParent()->getEntryBlock())
Chris Lattnerea1c4542004-12-08 23:43:58 +000011523 return false;
11524
Chris Lattner96a52a62004-12-09 07:14:34 +000011525 // We can only sink load instructions if there is nothing between the load and
11526 // the end of block that could change the value.
Chris Lattner2539e332008-05-08 17:37:37 +000011527 if (I->mayReadFromMemory()) {
11528 for (BasicBlock::iterator Scan = I, E = I->getParent()->end();
Chris Lattner96a52a62004-12-09 07:14:34 +000011529 Scan != E; ++Scan)
11530 if (Scan->mayWriteToMemory())
11531 return false;
Chris Lattner96a52a62004-12-09 07:14:34 +000011532 }
Chris Lattnerea1c4542004-12-08 23:43:58 +000011533
Dan Gohman02dea8b2008-05-23 21:05:58 +000011534 BasicBlock::iterator InsertPos = DestBlock->getFirstNonPHI();
Chris Lattnerea1c4542004-12-08 23:43:58 +000011535
Chris Lattner4bc5f802005-08-08 19:11:57 +000011536 I->moveBefore(InsertPos);
Chris Lattnerea1c4542004-12-08 23:43:58 +000011537 ++NumSunkInst;
11538 return true;
11539}
11540
Chris Lattnerf4f5a772006-05-10 19:00:36 +000011541
11542/// AddReachableCodeToWorklist - Walk the function in depth-first order, adding
11543/// all reachable code to the worklist.
11544///
11545/// This has a couple of tricks to make the code faster and more powerful. In
11546/// particular, we constant fold and DCE instructions as we go, to avoid adding
11547/// them to the worklist (this significantly speeds up instcombine on code where
11548/// many instructions are dead or constant). Additionally, if we find a branch
11549/// whose condition is a known constant, we only visit the reachable successors.
11550///
11551static void AddReachableCodeToWorklist(BasicBlock *BB,
Chris Lattner1f87a582007-02-15 19:41:52 +000011552 SmallPtrSet<BasicBlock*, 64> &Visited,
Chris Lattnerdbab3862007-03-02 21:28:56 +000011553 InstCombiner &IC,
Chris Lattner8c8c66a2006-05-11 17:11:52 +000011554 const TargetData *TD) {
Chris Lattner2806dff2008-08-15 04:03:01 +000011555 SmallVector<BasicBlock*, 256> Worklist;
Chris Lattner2c7718a2007-03-23 19:17:18 +000011556 Worklist.push_back(BB);
Chris Lattnerf4f5a772006-05-10 19:00:36 +000011557
Chris Lattner2c7718a2007-03-23 19:17:18 +000011558 while (!Worklist.empty()) {
11559 BB = Worklist.back();
11560 Worklist.pop_back();
11561
11562 // We have now visited this block! If we've already been here, ignore it.
11563 if (!Visited.insert(BB)) continue;
11564
11565 for (BasicBlock::iterator BBI = BB->begin(), E = BB->end(); BBI != E; ) {
11566 Instruction *Inst = BBI++;
Chris Lattnerf4f5a772006-05-10 19:00:36 +000011567
Chris Lattner2c7718a2007-03-23 19:17:18 +000011568 // DCE instruction if trivially dead.
11569 if (isInstructionTriviallyDead(Inst)) {
11570 ++NumDeadInst;
11571 DOUT << "IC: DCE: " << *Inst;
11572 Inst->eraseFromParent();
11573 continue;
11574 }
11575
11576 // ConstantProp instruction if trivially constant.
11577 if (Constant *C = ConstantFoldInstruction(Inst, TD)) {
11578 DOUT << "IC: ConstFold to: " << *C << " from: " << *Inst;
11579 Inst->replaceAllUsesWith(C);
11580 ++NumConstProp;
11581 Inst->eraseFromParent();
11582 continue;
11583 }
Chris Lattner3ccc6bc2007-07-20 22:06:41 +000011584
Chris Lattner2c7718a2007-03-23 19:17:18 +000011585 IC.AddToWorkList(Inst);
Chris Lattnerf4f5a772006-05-10 19:00:36 +000011586 }
Chris Lattner2c7718a2007-03-23 19:17:18 +000011587
11588 // Recursively visit successors. If this is a branch or switch on a
11589 // constant, only visit the reachable successor.
11590 TerminatorInst *TI = BB->getTerminator();
11591 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
11592 if (BI->isConditional() && isa<ConstantInt>(BI->getCondition())) {
11593 bool CondVal = cast<ConstantInt>(BI->getCondition())->getZExtValue();
Nick Lewycky91436992008-03-09 08:50:23 +000011594 BasicBlock *ReachableBB = BI->getSuccessor(!CondVal);
Nick Lewycky280a6e62008-04-25 16:53:59 +000011595 Worklist.push_back(ReachableBB);
Chris Lattner2c7718a2007-03-23 19:17:18 +000011596 continue;
11597 }
11598 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
11599 if (ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition())) {
11600 // See if this is an explicit destination.
11601 for (unsigned i = 1, e = SI->getNumSuccessors(); i != e; ++i)
11602 if (SI->getCaseValue(i) == Cond) {
Nick Lewycky91436992008-03-09 08:50:23 +000011603 BasicBlock *ReachableBB = SI->getSuccessor(i);
Nick Lewycky280a6e62008-04-25 16:53:59 +000011604 Worklist.push_back(ReachableBB);
Chris Lattner2c7718a2007-03-23 19:17:18 +000011605 continue;
11606 }
11607
11608 // Otherwise it is the default destination.
11609 Worklist.push_back(SI->getSuccessor(0));
11610 continue;
11611 }
11612 }
11613
11614 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
11615 Worklist.push_back(TI->getSuccessor(i));
Chris Lattnerf4f5a772006-05-10 19:00:36 +000011616 }
Chris Lattnerf4f5a772006-05-10 19:00:36 +000011617}
11618
Chris Lattnerec9c3582007-03-03 02:04:50 +000011619bool InstCombiner::DoOneIteration(Function &F, unsigned Iteration) {
Chris Lattnerdd841ae2002-04-18 17:39:14 +000011620 bool Changed = false;
Chris Lattnerbc61e662003-11-02 05:57:39 +000011621 TD = &getAnalysis<TargetData>();
Chris Lattnerec9c3582007-03-03 02:04:50 +000011622
11623 DEBUG(DOUT << "\n\nINSTCOMBINE ITERATION #" << Iteration << " on "
11624 << F.getNameStr() << "\n");
Chris Lattner8a2a3112001-12-14 16:52:21 +000011625
Chris Lattnerb3d59702005-07-07 20:40:38 +000011626 {
Chris Lattnerf4f5a772006-05-10 19:00:36 +000011627 // Do a depth-first traversal of the function, populate the worklist with
11628 // the reachable instructions. Ignore blocks that are not reachable. Keep
11629 // track of which blocks we visit.
Chris Lattner1f87a582007-02-15 19:41:52 +000011630 SmallPtrSet<BasicBlock*, 64> Visited;
Chris Lattnerdbab3862007-03-02 21:28:56 +000011631 AddReachableCodeToWorklist(F.begin(), Visited, *this, TD);
Jeff Cohen00b168892005-07-27 06:12:32 +000011632
Chris Lattnerb3d59702005-07-07 20:40:38 +000011633 // Do a quick scan over the function. If we find any blocks that are
11634 // unreachable, remove any instructions inside of them. This prevents
11635 // the instcombine code from having to deal with some bad special cases.
11636 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
11637 if (!Visited.count(BB)) {
11638 Instruction *Term = BB->getTerminator();
11639 while (Term != BB->begin()) { // Remove instrs bottom-up
11640 BasicBlock::iterator I = Term; --I;
Chris Lattner6ffe5512004-04-27 15:13:33 +000011641
Bill Wendlingb7427032006-11-26 09:46:52 +000011642 DOUT << "IC: DCE: " << *I;
Chris Lattnerb3d59702005-07-07 20:40:38 +000011643 ++NumDeadInst;
11644
11645 if (!I->use_empty())
11646 I->replaceAllUsesWith(UndefValue::get(I->getType()));
11647 I->eraseFromParent();
11648 }
11649 }
11650 }
Chris Lattner8a2a3112001-12-14 16:52:21 +000011651
Chris Lattnerdbab3862007-03-02 21:28:56 +000011652 while (!Worklist.empty()) {
11653 Instruction *I = RemoveOneFromWorkList();
11654 if (I == 0) continue; // skip null values.
Chris Lattner8a2a3112001-12-14 16:52:21 +000011655
Chris Lattner8c8c66a2006-05-11 17:11:52 +000011656 // Check to see if we can DCE the instruction.
Chris Lattner62b14df2002-09-02 04:59:56 +000011657 if (isInstructionTriviallyDead(I)) {
Chris Lattner8c8c66a2006-05-11 17:11:52 +000011658 // Add operands to the worklist.
Chris Lattner4bb7c022003-10-06 17:11:01 +000011659 if (I->getNumOperands() < 4)
Chris Lattner7bcc0e72004-02-28 05:22:00 +000011660 AddUsesToWorkList(*I);
Chris Lattner62b14df2002-09-02 04:59:56 +000011661 ++NumDeadInst;
Chris Lattner4bb7c022003-10-06 17:11:01 +000011662
Bill Wendlingb7427032006-11-26 09:46:52 +000011663 DOUT << "IC: DCE: " << *I;
Chris Lattnerad5fec12005-01-28 19:32:01 +000011664
11665 I->eraseFromParent();
Chris Lattnerdbab3862007-03-02 21:28:56 +000011666 RemoveFromWorkList(I);
Chris Lattner4bb7c022003-10-06 17:11:01 +000011667 continue;
11668 }
Chris Lattner62b14df2002-09-02 04:59:56 +000011669
Chris Lattner8c8c66a2006-05-11 17:11:52 +000011670 // Instruction isn't dead, see if we can constant propagate it.
Chris Lattner0a19ffa2007-01-30 23:16:15 +000011671 if (Constant *C = ConstantFoldInstruction(I, TD)) {
Bill Wendlingb7427032006-11-26 09:46:52 +000011672 DOUT << "IC: ConstFold to: " << *C << " from: " << *I;
Chris Lattnerad5fec12005-01-28 19:32:01 +000011673
Chris Lattner8c8c66a2006-05-11 17:11:52 +000011674 // Add operands to the worklist.
Chris Lattner7bcc0e72004-02-28 05:22:00 +000011675 AddUsesToWorkList(*I);
Chris Lattnerc736d562002-12-05 22:41:53 +000011676 ReplaceInstUsesWith(*I, C);
11677
Chris Lattner62b14df2002-09-02 04:59:56 +000011678 ++NumConstProp;
Chris Lattnerf4f5a772006-05-10 19:00:36 +000011679 I->eraseFromParent();
Chris Lattnerdbab3862007-03-02 21:28:56 +000011680 RemoveFromWorkList(I);
Chris Lattner4bb7c022003-10-06 17:11:01 +000011681 continue;
Chris Lattner62b14df2002-09-02 04:59:56 +000011682 }
Chris Lattner4bb7c022003-10-06 17:11:01 +000011683
Nick Lewycky3dfd7bf2008-05-25 20:56:15 +000011684 if (TD && I->getType()->getTypeID() == Type::VoidTyID) {
11685 // See if we can constant fold its operands.
11686 for (User::op_iterator i = I->op_begin(), e = I->op_end(); i != e; ++i) {
11687 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(i)) {
11688 if (Constant *NewC = ConstantFoldConstantExpression(CE, TD))
11689 i->set(NewC);
11690 }
11691 }
11692 }
11693
Chris Lattnerea1c4542004-12-08 23:43:58 +000011694 // See if we can trivially sink this instruction to a successor basic block.
Dan Gohmanfc74abf2008-07-23 00:34:11 +000011695 if (I->hasOneUse()) {
Chris Lattnerea1c4542004-12-08 23:43:58 +000011696 BasicBlock *BB = I->getParent();
11697 BasicBlock *UserParent = cast<Instruction>(I->use_back())->getParent();
11698 if (UserParent != BB) {
11699 bool UserIsSuccessor = false;
11700 // See if the user is one of our successors.
11701 for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
11702 if (*SI == UserParent) {
11703 UserIsSuccessor = true;
11704 break;
11705 }
11706
11707 // If the user is one of our immediate successors, and if that successor
11708 // only has us as a predecessors (we'd have to split the critical edge
11709 // otherwise), we can keep going.
11710 if (UserIsSuccessor && !isa<PHINode>(I->use_back()) &&
11711 next(pred_begin(UserParent)) == pred_end(UserParent))
11712 // Okay, the CFG is simple enough, try to sink this instruction.
11713 Changed |= TryToSinkInstruction(I, UserParent);
11714 }
11715 }
11716
Chris Lattner8a2a3112001-12-14 16:52:21 +000011717 // Now that we have an instruction, try combining it to simplify it...
Reid Spencera9b81012007-03-26 17:44:01 +000011718#ifndef NDEBUG
11719 std::string OrigI;
11720#endif
11721 DEBUG(std::ostringstream SS; I->print(SS); OrigI = SS.str(););
Chris Lattner90ac28c2002-08-02 19:29:35 +000011722 if (Instruction *Result = visit(*I)) {
Chris Lattner3dec1f22002-05-10 15:38:35 +000011723 ++NumCombined;
Chris Lattnerdd841ae2002-04-18 17:39:14 +000011724 // Should we replace the old instruction with a new one?
Chris Lattnerb3bc8fa2002-05-14 15:24:07 +000011725 if (Result != I) {
Bill Wendlingb7427032006-11-26 09:46:52 +000011726 DOUT << "IC: Old = " << *I
11727 << " New = " << *Result;
Chris Lattner0cea42a2004-03-13 23:54:27 +000011728
Chris Lattnerf523d062004-06-09 05:08:07 +000011729 // Everything uses the new instruction now.
11730 I->replaceAllUsesWith(Result);
11731
11732 // Push the new instruction and any users onto the worklist.
Chris Lattnerdbab3862007-03-02 21:28:56 +000011733 AddToWorkList(Result);
Chris Lattnerf523d062004-06-09 05:08:07 +000011734 AddUsersToWorkList(*Result);
Chris Lattner4bb7c022003-10-06 17:11:01 +000011735
Chris Lattner6934a042007-02-11 01:23:03 +000011736 // Move the name to the new instruction first.
11737 Result->takeName(I);
Chris Lattner4bb7c022003-10-06 17:11:01 +000011738
11739 // Insert the new instruction into the basic block...
11740 BasicBlock *InstParent = I->getParent();
Chris Lattnerbac32862004-11-14 19:13:23 +000011741 BasicBlock::iterator InsertPos = I;
11742
11743 if (!isa<PHINode>(Result)) // If combining a PHI, don't insert
11744 while (isa<PHINode>(InsertPos)) // middle of a block of PHIs.
11745 ++InsertPos;
11746
11747 InstParent->getInstList().insert(InsertPos, Result);
Chris Lattner4bb7c022003-10-06 17:11:01 +000011748
Chris Lattner00d51312004-05-01 23:27:23 +000011749 // Make sure that we reprocess all operands now that we reduced their
11750 // use counts.
Chris Lattnerdbab3862007-03-02 21:28:56 +000011751 AddUsesToWorkList(*I);
Chris Lattner216d4d82004-05-01 23:19:52 +000011752
Chris Lattnerf523d062004-06-09 05:08:07 +000011753 // Instructions can end up on the worklist more than once. Make sure
11754 // we do not process an instruction that has been deleted.
Chris Lattnerdbab3862007-03-02 21:28:56 +000011755 RemoveFromWorkList(I);
Chris Lattner4bb7c022003-10-06 17:11:01 +000011756
11757 // Erase the old instruction.
11758 InstParent->getInstList().erase(I);
Chris Lattner7e708292002-06-25 16:13:24 +000011759 } else {
Evan Chengc7baf682007-03-27 16:44:48 +000011760#ifndef NDEBUG
Reid Spencera9b81012007-03-26 17:44:01 +000011761 DOUT << "IC: Mod = " << OrigI
11762 << " New = " << *I;
Evan Chengc7baf682007-03-27 16:44:48 +000011763#endif
Chris Lattner0cea42a2004-03-13 23:54:27 +000011764
Chris Lattner90ac28c2002-08-02 19:29:35 +000011765 // If the instruction was modified, it's possible that it is now dead.
11766 // if so, remove it.
Chris Lattner00d51312004-05-01 23:27:23 +000011767 if (isInstructionTriviallyDead(I)) {
11768 // Make sure we process all operands now that we are reducing their
11769 // use counts.
Chris Lattnerec9c3582007-03-03 02:04:50 +000011770 AddUsesToWorkList(*I);
Misha Brukmanfd939082005-04-21 23:48:37 +000011771
Chris Lattner00d51312004-05-01 23:27:23 +000011772 // Instructions may end up in the worklist more than once. Erase all
Robert Bocchino1d7456d2006-01-13 22:48:06 +000011773 // occurrences of this instruction.
Chris Lattnerdbab3862007-03-02 21:28:56 +000011774 RemoveFromWorkList(I);
Chris Lattner2f503e62005-01-31 05:36:43 +000011775 I->eraseFromParent();
Chris Lattnerf523d062004-06-09 05:08:07 +000011776 } else {
Chris Lattnerec9c3582007-03-03 02:04:50 +000011777 AddToWorkList(I);
11778 AddUsersToWorkList(*I);
Chris Lattner90ac28c2002-08-02 19:29:35 +000011779 }
Chris Lattnerb3bc8fa2002-05-14 15:24:07 +000011780 }
Chris Lattnerdd841ae2002-04-18 17:39:14 +000011781 Changed = true;
Chris Lattner8a2a3112001-12-14 16:52:21 +000011782 }
11783 }
11784
Chris Lattnerec9c3582007-03-03 02:04:50 +000011785 assert(WorklistMap.empty() && "Worklist empty, but map not?");
Chris Lattnera9ff5eb2007-08-05 08:47:58 +000011786
11787 // Do an explicit clear, this shrinks the map if needed.
11788 WorklistMap.clear();
Chris Lattnerdd841ae2002-04-18 17:39:14 +000011789 return Changed;
Chris Lattnerbd0ef772002-02-26 21:46:54 +000011790}
11791
Chris Lattnerec9c3582007-03-03 02:04:50 +000011792
11793bool InstCombiner::runOnFunction(Function &F) {
Chris Lattnerf964f322007-03-04 04:27:24 +000011794 MustPreserveLCSSA = mustPreserveAnalysisID(LCSSAID);
11795
Chris Lattnerec9c3582007-03-03 02:04:50 +000011796 bool EverMadeChange = false;
11797
11798 // Iterate while there is work to do.
11799 unsigned Iteration = 0;
Bill Wendlinga6c31122008-05-14 22:45:20 +000011800 while (DoOneIteration(F, Iteration++))
Chris Lattnerec9c3582007-03-03 02:04:50 +000011801 EverMadeChange = true;
11802 return EverMadeChange;
11803}
11804
Brian Gaeke96d4bf72004-07-27 17:43:21 +000011805FunctionPass *llvm::createInstructionCombiningPass() {
Chris Lattnerdd841ae2002-04-18 17:39:14 +000011806 return new InstCombiner();
Chris Lattnerbd0ef772002-02-26 21:46:54 +000011807}
Brian Gaeked0fde302003-11-11 22:41:34 +000011808
Chris Lattnerb8cd4d32008-08-11 22:06:05 +000011809