blob: 7e20be41af67aecb04a112b6775d5ff5c1fe8d30 [file] [log] [blame]
Chris Lattnerac8f2fd2010-01-04 07:12:23 +00001//===- InstCombine.h - Main InstCombine pass definition -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef INSTCOMBINE_INSTCOMBINE_H
11#define INSTCOMBINE_INSTCOMBINE_H
12
13#include "InstCombineWorklist.h"
14#include "llvm/Pass.h"
15#include "llvm/Analysis/ValueTracking.h"
16#include "llvm/Support/IRBuilder.h"
17#include "llvm/Support/InstVisitor.h"
18#include "llvm/Support/TargetFolder.h"
19
20namespace llvm {
21 class CallSite;
22 class TargetData;
23 class DbgDeclareInst;
24 class MemIntrinsic;
25 class MemSetInst;
26
27/// SelectPatternFlavor - We can match a variety of different patterns for
28/// select operations.
29enum SelectPatternFlavor {
30 SPF_UNKNOWN = 0,
31 SPF_SMIN, SPF_UMIN,
32 SPF_SMAX, SPF_UMAX
33 //SPF_ABS - TODO.
34};
Chris Lattner02446fc2010-01-04 07:37:31 +000035
36/// getComplexity: Assign a complexity or rank value to LLVM Values...
37/// 0 -> undef, 1 -> Const, 2 -> Other, 3 -> Arg, 3 -> Unary, 4 -> OtherInst
38static inline unsigned getComplexity(Value *V) {
39 if (isa<Instruction>(V)) {
40 if (BinaryOperator::isNeg(V) ||
41 BinaryOperator::isFNeg(V) ||
42 BinaryOperator::isNot(V))
43 return 3;
44 return 4;
45 }
46 if (isa<Argument>(V)) return 3;
47 return isa<Constant>(V) ? (isa<UndefValue>(V) ? 0 : 1) : 2;
48}
Chris Lattnerac8f2fd2010-01-04 07:12:23 +000049
50
51/// InstCombineIRInserter - This is an IRBuilder insertion helper that works
52/// just like the normal insertion helper, but also adds any new instructions
53/// to the instcombine worklist.
54class VISIBILITY_HIDDEN InstCombineIRInserter
55 : public IRBuilderDefaultInserter<true> {
56 InstCombineWorklist &Worklist;
57public:
58 InstCombineIRInserter(InstCombineWorklist &WL) : Worklist(WL) {}
59
60 void InsertHelper(Instruction *I, const Twine &Name,
61 BasicBlock *BB, BasicBlock::iterator InsertPt) const {
62 IRBuilderDefaultInserter<true>::InsertHelper(I, Name, BB, InsertPt);
63 Worklist.Add(I);
64 }
65};
66
67/// InstCombiner - The -instcombine pass.
68class VISIBILITY_HIDDEN InstCombiner
69 : public FunctionPass,
70 public InstVisitor<InstCombiner, Instruction*> {
71 TargetData *TD;
72 bool MustPreserveLCSSA;
73 bool MadeIRChange;
74public:
75 /// Worklist - All of the instructions that need to be simplified.
76 InstCombineWorklist Worklist;
77
78 /// Builder - This is an IRBuilder that automatically inserts new
79 /// instructions into the worklist when they are created.
80 typedef IRBuilder<true, TargetFolder, InstCombineIRInserter> BuilderTy;
81 BuilderTy *Builder;
82
83 static char ID; // Pass identification, replacement for typeid
84 InstCombiner() : FunctionPass(&ID), TD(0), Builder(0) {}
85
86public:
87 virtual bool runOnFunction(Function &F);
88
89 bool DoOneIteration(Function &F, unsigned ItNum);
90
Chris Lattnere0b4b722010-01-04 07:17:19 +000091 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
92
Chris Lattnerac8f2fd2010-01-04 07:12:23 +000093 TargetData *getTargetData() const { return TD; }
94
95 // Visitation implementation - Implement instruction combining for different
96 // instruction types. The semantics are as follows:
97 // Return Value:
98 // null - No change was made
99 // I - Change was made, I is still valid, I may be dead though
100 // otherwise - Change was made, replace I with returned instruction
101 //
102 Instruction *visitAdd(BinaryOperator &I);
103 Instruction *visitFAdd(BinaryOperator &I);
104 Value *OptimizePointerDifference(Value *LHS, Value *RHS, const Type *Ty);
105 Instruction *visitSub(BinaryOperator &I);
106 Instruction *visitFSub(BinaryOperator &I);
107 Instruction *visitMul(BinaryOperator &I);
108 Instruction *visitFMul(BinaryOperator &I);
109 Instruction *visitURem(BinaryOperator &I);
110 Instruction *visitSRem(BinaryOperator &I);
111 Instruction *visitFRem(BinaryOperator &I);
112 bool SimplifyDivRemOfSelect(BinaryOperator &I);
113 Instruction *commonRemTransforms(BinaryOperator &I);
114 Instruction *commonIRemTransforms(BinaryOperator &I);
115 Instruction *commonDivTransforms(BinaryOperator &I);
116 Instruction *commonIDivTransforms(BinaryOperator &I);
117 Instruction *visitUDiv(BinaryOperator &I);
118 Instruction *visitSDiv(BinaryOperator &I);
119 Instruction *visitFDiv(BinaryOperator &I);
120 Instruction *FoldAndOfICmps(Instruction &I, ICmpInst *LHS, ICmpInst *RHS);
121 Instruction *FoldAndOfFCmps(Instruction &I, FCmpInst *LHS, FCmpInst *RHS);
122 Instruction *visitAnd(BinaryOperator &I);
123 Instruction *FoldOrOfICmps(Instruction &I, ICmpInst *LHS, ICmpInst *RHS);
124 Instruction *FoldOrOfFCmps(Instruction &I, FCmpInst *LHS, FCmpInst *RHS);
125 Instruction *FoldOrWithConstants(BinaryOperator &I, Value *Op,
126 Value *A, Value *B, Value *C);
127 Instruction *visitOr (BinaryOperator &I);
128 Instruction *visitXor(BinaryOperator &I);
129 Instruction *visitShl(BinaryOperator &I);
130 Instruction *visitAShr(BinaryOperator &I);
131 Instruction *visitLShr(BinaryOperator &I);
132 Instruction *commonShiftTransforms(BinaryOperator &I);
133 Instruction *FoldFCmp_IntToFP_Cst(FCmpInst &I, Instruction *LHSI,
134 Constant *RHSC);
135 Instruction *FoldCmpLoadFromIndexedGlobal(GetElementPtrInst *GEP,
136 GlobalVariable *GV, CmpInst &ICI,
137 ConstantInt *AndCst = 0);
138 Instruction *visitFCmpInst(FCmpInst &I);
139 Instruction *visitICmpInst(ICmpInst &I);
140 Instruction *visitICmpInstWithCastAndCast(ICmpInst &ICI);
141 Instruction *visitICmpInstWithInstAndIntCst(ICmpInst &ICI,
142 Instruction *LHS,
143 ConstantInt *RHS);
144 Instruction *FoldICmpDivCst(ICmpInst &ICI, BinaryOperator *DivI,
145 ConstantInt *DivRHS);
146 Instruction *FoldICmpAddOpCst(ICmpInst &ICI, Value *X, ConstantInt *CI,
147 ICmpInst::Predicate Pred, Value *TheAdd);
148 Instruction *FoldGEPICmp(GEPOperator *GEPLHS, Value *RHS,
149 ICmpInst::Predicate Cond, Instruction &I);
150 Instruction *FoldShiftByConstant(Value *Op0, ConstantInt *Op1,
151 BinaryOperator &I);
152 Instruction *commonCastTransforms(CastInst &CI);
153 Instruction *commonIntCastTransforms(CastInst &CI);
154 Instruction *commonPointerCastTransforms(CastInst &CI);
155 Instruction *visitTrunc(TruncInst &CI);
156 Instruction *visitZExt(ZExtInst &CI);
157 Instruction *visitSExt(SExtInst &CI);
158 Instruction *visitFPTrunc(FPTruncInst &CI);
159 Instruction *visitFPExt(CastInst &CI);
160 Instruction *visitFPToUI(FPToUIInst &FI);
161 Instruction *visitFPToSI(FPToSIInst &FI);
162 Instruction *visitUIToFP(CastInst &CI);
163 Instruction *visitSIToFP(CastInst &CI);
164 Instruction *visitPtrToInt(PtrToIntInst &CI);
165 Instruction *visitIntToPtr(IntToPtrInst &CI);
166 Instruction *visitBitCast(BitCastInst &CI);
167 Instruction *FoldSelectOpOp(SelectInst &SI, Instruction *TI,
168 Instruction *FI);
169 Instruction *FoldSelectIntoOp(SelectInst &SI, Value*, Value*);
170 Instruction *FoldSPFofSPF(Instruction *Inner, SelectPatternFlavor SPF1,
171 Value *A, Value *B, Instruction &Outer,
172 SelectPatternFlavor SPF2, Value *C);
173 Instruction *visitSelectInst(SelectInst &SI);
174 Instruction *visitSelectInstWithICmp(SelectInst &SI, ICmpInst *ICI);
175 Instruction *visitCallInst(CallInst &CI);
176 Instruction *visitInvokeInst(InvokeInst &II);
177
178 Instruction *SliceUpIllegalIntegerPHI(PHINode &PN);
179 Instruction *visitPHINode(PHINode &PN);
180 Instruction *visitGetElementPtrInst(GetElementPtrInst &GEP);
181 Instruction *visitAllocaInst(AllocaInst &AI);
182 Instruction *visitFree(Instruction &FI);
183 Instruction *visitLoadInst(LoadInst &LI);
184 Instruction *visitStoreInst(StoreInst &SI);
185 Instruction *visitBranchInst(BranchInst &BI);
186 Instruction *visitSwitchInst(SwitchInst &SI);
187 Instruction *visitInsertElementInst(InsertElementInst &IE);
188 Instruction *visitExtractElementInst(ExtractElementInst &EI);
189 Instruction *visitShuffleVectorInst(ShuffleVectorInst &SVI);
190 Instruction *visitExtractValueInst(ExtractValueInst &EV);
191
192 // visitInstruction - Specify what to return for unhandled instructions...
193 Instruction *visitInstruction(Instruction &I) { return 0; }
194
195private:
Chris Lattner80f43d32010-01-04 07:53:58 +0000196 bool ShouldChangeType(const Type *From, const Type *To) const;
Chris Lattner02446fc2010-01-04 07:37:31 +0000197 Value *dyn_castNegVal(Value *V) const;
Chris Lattner80f43d32010-01-04 07:53:58 +0000198 const Type *FindElementAtOffset(const Type *Ty, int64_t Offset,
199 SmallVectorImpl<Value*> &NewIndices);
200 Instruction *FoldOpIntoSelect(Instruction &Op, SelectInst *SI);
201
202 /// ValueRequiresCast - Return true if the cast from "V to Ty" actually
203 /// results in any code being generated. It does not require codegen if V is
204 /// simple enough or if the cast can be folded into other casts.
205 bool ValueRequiresCast(Instruction::CastOps opcode,const Value *V,
206 const Type *Ty);
Chris Lattner02446fc2010-01-04 07:37:31 +0000207
Chris Lattnerac8f2fd2010-01-04 07:12:23 +0000208 Instruction *visitCallSite(CallSite CS);
209 bool transformConstExprCastCall(CallSite CS);
210 Instruction *transformCallThroughTrampoline(CallSite CS);
211 Instruction *transformZExtICmp(ICmpInst *ICI, Instruction &CI,
212 bool DoXform = true);
213 bool WillNotOverflowSignedAdd(Value *LHS, Value *RHS);
214 DbgDeclareInst *hasOneUsePlusDeclare(Value *V);
Chris Lattner02446fc2010-01-04 07:37:31 +0000215 Value *EmitGEPOffset(User *GEP);
Chris Lattnerac8f2fd2010-01-04 07:12:23 +0000216
217public:
218 // InsertNewInstBefore - insert an instruction New before instruction Old
219 // in the program. Add the new instruction to the worklist.
220 //
221 Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) {
222 assert(New && New->getParent() == 0 &&
223 "New instruction already inserted into a basic block!");
224 BasicBlock *BB = Old.getParent();
225 BB->getInstList().insert(&Old, New); // Insert inst
226 Worklist.Add(New);
227 return New;
228 }
229
230 // ReplaceInstUsesWith - This method is to be used when an instruction is
231 // found to be dead, replacable with another preexisting expression. Here
232 // we add all uses of I to the worklist, replace all uses of I with the new
233 // value, then return I, so that the inst combiner will know that I was
234 // modified.
235 //
236 Instruction *ReplaceInstUsesWith(Instruction &I, Value *V) {
237 Worklist.AddUsersToWorkList(I); // Add all modified instrs to worklist.
238
239 // If we are replacing the instruction with itself, this must be in a
240 // segment of unreachable code, so just clobber the instruction.
241 if (&I == V)
242 V = UndefValue::get(I.getType());
243
244 I.replaceAllUsesWith(V);
245 return &I;
246 }
247
248 // EraseInstFromFunction - When dealing with an instruction that has side
249 // effects or produces a void value, we can't rely on DCE to delete the
250 // instruction. Instead, visit methods should return the value returned by
251 // this function.
252 Instruction *EraseInstFromFunction(Instruction &I) {
253 DEBUG(errs() << "IC: ERASE " << I << '\n');
254
255 assert(I.use_empty() && "Cannot erase instruction that is used!");
256 // Make sure that we reprocess all operands now that we reduced their
257 // use counts.
258 if (I.getNumOperands() < 8) {
259 for (User::op_iterator i = I.op_begin(), e = I.op_end(); i != e; ++i)
260 if (Instruction *Op = dyn_cast<Instruction>(*i))
261 Worklist.Add(Op);
262 }
263 Worklist.Remove(&I);
264 I.eraseFromParent();
265 MadeIRChange = true;
266 return 0; // Don't do anything with FI
267 }
268
269 void ComputeMaskedBits(Value *V, const APInt &Mask, APInt &KnownZero,
270 APInt &KnownOne, unsigned Depth = 0) const {
271 return llvm::ComputeMaskedBits(V, Mask, KnownZero, KnownOne, TD, Depth);
272 }
273
274 bool MaskedValueIsZero(Value *V, const APInt &Mask,
275 unsigned Depth = 0) const {
276 return llvm::MaskedValueIsZero(V, Mask, TD, Depth);
277 }
278 unsigned ComputeNumSignBits(Value *Op, unsigned Depth = 0) const {
279 return llvm::ComputeNumSignBits(Op, TD, Depth);
280 }
281
282private:
283
284 /// SimplifyCommutative - This performs a few simplifications for
285 /// commutative operators.
286 bool SimplifyCommutative(BinaryOperator &I);
287
288 /// SimplifyDemandedUseBits - Attempts to replace V with a simpler value
289 /// based on the demanded bits.
290 Value *SimplifyDemandedUseBits(Value *V, APInt DemandedMask,
291 APInt& KnownZero, APInt& KnownOne,
292 unsigned Depth);
293 bool SimplifyDemandedBits(Use &U, APInt DemandedMask,
294 APInt& KnownZero, APInt& KnownOne,
295 unsigned Depth=0);
296
297 /// SimplifyDemandedInstructionBits - Inst is an integer instruction that
298 /// SimplifyDemandedBits knows about. See if the instruction has any
299 /// properties that allow us to simplify its operands.
300 bool SimplifyDemandedInstructionBits(Instruction &Inst);
301
302 Value *SimplifyDemandedVectorElts(Value *V, APInt DemandedElts,
303 APInt& UndefElts, unsigned Depth = 0);
304
305 // FoldOpIntoPhi - Given a binary operator, cast instruction, or select
306 // which has a PHI node as operand #0, see if we can fold the instruction
307 // into the PHI (which is only possible if all operands to the PHI are
308 // constants).
309 //
310 // If AllowAggressive is true, FoldOpIntoPhi will allow certain transforms
311 // that would normally be unprofitable because they strongly encourage jump
312 // threading.
313 Instruction *FoldOpIntoPhi(Instruction &I, bool AllowAggressive = false);
314
315 // FoldPHIArgOpIntoPHI - If all operands to a PHI node are the same "unary"
316 // operator and they all are only used by the PHI, PHI together their
317 // inputs, and do the operation once, to the result of the PHI.
318 Instruction *FoldPHIArgOpIntoPHI(PHINode &PN);
319 Instruction *FoldPHIArgBinOpIntoPHI(PHINode &PN);
320 Instruction *FoldPHIArgGEPIntoPHI(PHINode &PN);
321 Instruction *FoldPHIArgLoadIntoPHI(PHINode &PN);
322
323
324 Instruction *OptAndOp(Instruction *Op, ConstantInt *OpRHS,
325 ConstantInt *AndRHS, BinaryOperator &TheAnd);
326
327 Value *FoldLogicalPlusAnd(Value *LHS, Value *RHS, ConstantInt *Mask,
328 bool isSub, Instruction &I);
329 Instruction *InsertRangeTest(Value *V, Constant *Lo, Constant *Hi,
330 bool isSigned, bool Inside, Instruction &IB);
331 Instruction *PromoteCastOfAllocation(BitCastInst &CI, AllocaInst &AI);
332 Instruction *MatchBSwap(BinaryOperator &I);
333 bool SimplifyStoreAtEndOfBlock(StoreInst &SI);
334 Instruction *SimplifyMemTransfer(MemIntrinsic *MI);
335 Instruction *SimplifyMemSet(MemSetInst *MI);
336
337
338 Value *EvaluateInDifferentType(Value *V, const Type *Ty, bool isSigned);
339
340 bool CanEvaluateInDifferentType(Value *V, const Type *Ty,
341 unsigned CastOpc, int &NumCastsRemoved);
342 unsigned GetOrEnforceKnownAlignment(Value *V,
343 unsigned PrefAlign = 0);
344
345};
346
347
348
349} // end namespace llvm.
350
351#endif