blob: 41017c52879370519ff1fc0968c1a75390e770be [file] [log] [blame]
Chris Lattner35522b72010-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"
Chandler Carruthaafe0912012-06-29 12:38:19 +000014#include "llvm/IRBuilder.h"
Duncan Sandsa0984362011-09-06 13:37:06 +000015#include "llvm/IntrinsicInst.h"
Jay Foad7c14a552011-04-11 09:35:34 +000016#include "llvm/Operator.h"
Chris Lattner35522b72010-01-04 07:12:23 +000017#include "llvm/Pass.h"
18#include "llvm/Analysis/ValueTracking.h"
Chris Lattner35522b72010-01-04 07:12:23 +000019#include "llvm/Support/InstVisitor.h"
20#include "llvm/Support/TargetFolder.h"
Meador Ingedf796f82012-10-13 16:45:24 +000021#include "llvm/Transforms/Utils/SimplifyLibCalls.h"
Chris Lattner35522b72010-01-04 07:12:23 +000022
23namespace llvm {
24 class CallSite;
Micah Villmowcdfe20b2012-10-08 16:38:25 +000025 class DataLayout;
Chad Rosiere6de63d2011-12-01 21:29:16 +000026 class TargetLibraryInfo;
Chris Lattner27acfcd2010-01-05 05:21:26 +000027 class DbgDeclareInst;
28 class MemIntrinsic;
29 class MemSetInst;
Chris Lattner35522b72010-01-04 07:12:23 +000030
31/// SelectPatternFlavor - We can match a variety of different patterns for
32/// select operations.
33enum SelectPatternFlavor {
34 SPF_UNKNOWN = 0,
35 SPF_SMIN, SPF_UMIN,
36 SPF_SMAX, SPF_UMAX
37 //SPF_ABS - TODO.
38};
Chris Lattner2188e402010-01-04 07:37:31 +000039
40/// getComplexity: Assign a complexity or rank value to LLVM Values...
41/// 0 -> undef, 1 -> Const, 2 -> Other, 3 -> Arg, 3 -> Unary, 4 -> OtherInst
42static inline unsigned getComplexity(Value *V) {
43 if (isa<Instruction>(V)) {
44 if (BinaryOperator::isNeg(V) ||
45 BinaryOperator::isFNeg(V) ||
46 BinaryOperator::isNot(V))
47 return 3;
48 return 4;
49 }
50 if (isa<Argument>(V)) return 3;
51 return isa<Constant>(V) ? (isa<UndefValue>(V) ? 0 : 1) : 2;
52}
Chris Lattner35522b72010-01-04 07:12:23 +000053
54
55/// InstCombineIRInserter - This is an IRBuilder insertion helper that works
56/// just like the normal insertion helper, but also adds any new instructions
57/// to the instcombine worklist.
Duncan Sands6c5e4352010-05-11 20:16:09 +000058class LLVM_LIBRARY_VISIBILITY InstCombineIRInserter
Chris Lattner35522b72010-01-04 07:12:23 +000059 : public IRBuilderDefaultInserter<true> {
60 InstCombineWorklist &Worklist;
61public:
62 InstCombineIRInserter(InstCombineWorklist &WL) : Worklist(WL) {}
63
64 void InsertHelper(Instruction *I, const Twine &Name,
65 BasicBlock *BB, BasicBlock::iterator InsertPt) const {
66 IRBuilderDefaultInserter<true>::InsertHelper(I, Name, BB, InsertPt);
67 Worklist.Add(I);
68 }
69};
70
71/// InstCombiner - The -instcombine pass.
Duncan Sands6c5e4352010-05-11 20:16:09 +000072class LLVM_LIBRARY_VISIBILITY InstCombiner
Chris Lattner35522b72010-01-04 07:12:23 +000073 : public FunctionPass,
74 public InstVisitor<InstCombiner, Instruction*> {
Micah Villmowcdfe20b2012-10-08 16:38:25 +000075 DataLayout *TD;
Chad Rosiere6de63d2011-12-01 21:29:16 +000076 TargetLibraryInfo *TLI;
Chris Lattner35522b72010-01-04 07:12:23 +000077 bool MadeIRChange;
Meador Ingedf796f82012-10-13 16:45:24 +000078 LibCallSimplifier *Simplifier;
Chris Lattner35522b72010-01-04 07:12:23 +000079public:
80 /// Worklist - All of the instructions that need to be simplified.
81 InstCombineWorklist Worklist;
82
83 /// Builder - This is an IRBuilder that automatically inserts new
84 /// instructions into the worklist when they are created.
85 typedef IRBuilder<true, TargetFolder, InstCombineIRInserter> BuilderTy;
86 BuilderTy *Builder;
87
88 static char ID; // Pass identification, replacement for typeid
Owen Anderson6c18d1a2010-10-19 17:21:58 +000089 InstCombiner() : FunctionPass(ID), TD(0), Builder(0) {
90 initializeInstCombinerPass(*PassRegistry::getPassRegistry());
91 }
Chris Lattner35522b72010-01-04 07:12:23 +000092
93public:
94 virtual bool runOnFunction(Function &F);
95
96 bool DoOneIteration(Function &F, unsigned ItNum);
97
Chris Lattner7e044912010-01-04 07:17:19 +000098 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
Chad Rosiere6de63d2011-12-01 21:29:16 +000099
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000100 DataLayout *getDataLayout() const { return TD; }
Chris Lattner35522b72010-01-04 07:12:23 +0000101
Chad Rosier43a33062011-12-02 01:26:24 +0000102 TargetLibraryInfo *getTargetLibraryInfo() const { return TLI; }
103
Chris Lattner35522b72010-01-04 07:12:23 +0000104 // Visitation implementation - Implement instruction combining for different
105 // instruction types. The semantics are as follows:
106 // Return Value:
107 // null - No change was made
108 // I - Change was made, I is still valid, I may be dead though
109 // otherwise - Change was made, replace I with returned instruction
110 //
111 Instruction *visitAdd(BinaryOperator &I);
112 Instruction *visitFAdd(BinaryOperator &I);
Chris Lattner229907c2011-07-18 04:54:35 +0000113 Value *OptimizePointerDifference(Value *LHS, Value *RHS, Type *Ty);
Chris Lattner35522b72010-01-04 07:12:23 +0000114 Instruction *visitSub(BinaryOperator &I);
115 Instruction *visitFSub(BinaryOperator &I);
116 Instruction *visitMul(BinaryOperator &I);
117 Instruction *visitFMul(BinaryOperator &I);
118 Instruction *visitURem(BinaryOperator &I);
119 Instruction *visitSRem(BinaryOperator &I);
120 Instruction *visitFRem(BinaryOperator &I);
121 bool SimplifyDivRemOfSelect(BinaryOperator &I);
122 Instruction *commonRemTransforms(BinaryOperator &I);
123 Instruction *commonIRemTransforms(BinaryOperator &I);
124 Instruction *commonDivTransforms(BinaryOperator &I);
125 Instruction *commonIDivTransforms(BinaryOperator &I);
126 Instruction *visitUDiv(BinaryOperator &I);
127 Instruction *visitSDiv(BinaryOperator &I);
Frits van Bommel2a559512011-01-29 17:50:27 +0000128 Instruction *visitFDiv(BinaryOperator &I);
Chris Lattner067459c2010-03-05 08:46:26 +0000129 Value *FoldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS);
130 Value *FoldAndOfFCmps(FCmpInst *LHS, FCmpInst *RHS);
Chris Lattner35522b72010-01-04 07:12:23 +0000131 Instruction *visitAnd(BinaryOperator &I);
Chris Lattner067459c2010-03-05 08:46:26 +0000132 Value *FoldOrOfICmps(ICmpInst *LHS, ICmpInst *RHS);
133 Value *FoldOrOfFCmps(FCmpInst *LHS, FCmpInst *RHS);
Chris Lattner35522b72010-01-04 07:12:23 +0000134 Instruction *FoldOrWithConstants(BinaryOperator &I, Value *Op,
135 Value *A, Value *B, Value *C);
136 Instruction *visitOr (BinaryOperator &I);
137 Instruction *visitXor(BinaryOperator &I);
138 Instruction *visitShl(BinaryOperator &I);
139 Instruction *visitAShr(BinaryOperator &I);
140 Instruction *visitLShr(BinaryOperator &I);
141 Instruction *commonShiftTransforms(BinaryOperator &I);
142 Instruction *FoldFCmp_IntToFP_Cst(FCmpInst &I, Instruction *LHSI,
143 Constant *RHSC);
144 Instruction *FoldCmpLoadFromIndexedGlobal(GetElementPtrInst *GEP,
145 GlobalVariable *GV, CmpInst &ICI,
146 ConstantInt *AndCst = 0);
147 Instruction *visitFCmpInst(FCmpInst &I);
148 Instruction *visitICmpInst(ICmpInst &I);
149 Instruction *visitICmpInstWithCastAndCast(ICmpInst &ICI);
150 Instruction *visitICmpInstWithInstAndIntCst(ICmpInst &ICI,
151 Instruction *LHS,
152 ConstantInt *RHS);
153 Instruction *FoldICmpDivCst(ICmpInst &ICI, BinaryOperator *DivI,
154 ConstantInt *DivRHS);
Chris Lattnerd369f572011-02-13 07:43:07 +0000155 Instruction *FoldICmpShrCst(ICmpInst &ICI, BinaryOperator *DivI,
156 ConstantInt *DivRHS);
Chris Lattner35522b72010-01-04 07:12:23 +0000157 Instruction *FoldICmpAddOpCst(ICmpInst &ICI, Value *X, ConstantInt *CI,
158 ICmpInst::Predicate Pred, Value *TheAdd);
159 Instruction *FoldGEPICmp(GEPOperator *GEPLHS, Value *RHS,
160 ICmpInst::Predicate Cond, Instruction &I);
161 Instruction *FoldShiftByConstant(Value *Op0, ConstantInt *Op1,
162 BinaryOperator &I);
163 Instruction *commonCastTransforms(CastInst &CI);
Chris Lattner35522b72010-01-04 07:12:23 +0000164 Instruction *commonPointerCastTransforms(CastInst &CI);
165 Instruction *visitTrunc(TruncInst &CI);
166 Instruction *visitZExt(ZExtInst &CI);
167 Instruction *visitSExt(SExtInst &CI);
168 Instruction *visitFPTrunc(FPTruncInst &CI);
169 Instruction *visitFPExt(CastInst &CI);
170 Instruction *visitFPToUI(FPToUIInst &FI);
171 Instruction *visitFPToSI(FPToSIInst &FI);
172 Instruction *visitUIToFP(CastInst &CI);
173 Instruction *visitSIToFP(CastInst &CI);
174 Instruction *visitPtrToInt(PtrToIntInst &CI);
175 Instruction *visitIntToPtr(IntToPtrInst &CI);
176 Instruction *visitBitCast(BitCastInst &CI);
177 Instruction *FoldSelectOpOp(SelectInst &SI, Instruction *TI,
178 Instruction *FI);
179 Instruction *FoldSelectIntoOp(SelectInst &SI, Value*, Value*);
180 Instruction *FoldSPFofSPF(Instruction *Inner, SelectPatternFlavor SPF1,
181 Value *A, Value *B, Instruction &Outer,
182 SelectPatternFlavor SPF2, Value *C);
183 Instruction *visitSelectInst(SelectInst &SI);
184 Instruction *visitSelectInstWithICmp(SelectInst &SI, ICmpInst *ICI);
185 Instruction *visitCallInst(CallInst &CI);
186 Instruction *visitInvokeInst(InvokeInst &II);
187
188 Instruction *SliceUpIllegalIntegerPHI(PHINode &PN);
189 Instruction *visitPHINode(PHINode &PN);
190 Instruction *visitGetElementPtrInst(GetElementPtrInst &GEP);
191 Instruction *visitAllocaInst(AllocaInst &AI);
Nuno Lopes95cc4f32012-07-09 18:38:20 +0000192 Instruction *visitAllocSite(Instruction &FI);
Gabor Greif75f69432010-06-24 12:21:15 +0000193 Instruction *visitFree(CallInst &FI);
Chris Lattner35522b72010-01-04 07:12:23 +0000194 Instruction *visitLoadInst(LoadInst &LI);
195 Instruction *visitStoreInst(StoreInst &SI);
196 Instruction *visitBranchInst(BranchInst &BI);
197 Instruction *visitSwitchInst(SwitchInst &SI);
198 Instruction *visitInsertElementInst(InsertElementInst &IE);
199 Instruction *visitExtractElementInst(ExtractElementInst &EI);
200 Instruction *visitShuffleVectorInst(ShuffleVectorInst &SVI);
201 Instruction *visitExtractValueInst(ExtractValueInst &EV);
Duncan Sands5c055792011-09-30 13:12:16 +0000202 Instruction *visitLandingPadInst(LandingPadInst &LI);
Chris Lattner35522b72010-01-04 07:12:23 +0000203
204 // visitInstruction - Specify what to return for unhandled instructions...
205 Instruction *visitInstruction(Instruction &I) { return 0; }
206
207private:
Chris Lattner229907c2011-07-18 04:54:35 +0000208 bool ShouldChangeType(Type *From, Type *To) const;
Chris Lattner2188e402010-01-04 07:37:31 +0000209 Value *dyn_castNegVal(Value *V) const;
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000210 Value *dyn_castFNegVal(Value *V) const;
Chris Lattner229907c2011-07-18 04:54:35 +0000211 Type *FindElementAtOffset(Type *Ty, int64_t Offset,
Chris Lattner2b295a02010-01-04 07:53:58 +0000212 SmallVectorImpl<Value*> &NewIndices);
213 Instruction *FoldOpIntoSelect(Instruction &Op, SelectInst *SI);
214
Chris Lattner4e8137d2010-02-11 06:26:33 +0000215 /// ShouldOptimizeCast - Return true if the cast from "V to Ty" actually
216 /// results in any code being generated and is interesting to optimize out. If
217 /// the cast can be eliminated by some other simple transformation, we prefer
218 /// to do the simplification first.
219 bool ShouldOptimizeCast(Instruction::CastOps opcode,const Value *V,
Chris Lattner229907c2011-07-18 04:54:35 +0000220 Type *Ty);
Chris Lattner2188e402010-01-04 07:37:31 +0000221
Chris Lattner35522b72010-01-04 07:12:23 +0000222 Instruction *visitCallSite(CallSite CS);
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000223 Instruction *tryOptimizeCall(CallInst *CI, const DataLayout *TD);
Chris Lattner35522b72010-01-04 07:12:23 +0000224 bool transformConstExprCastCall(CallSite CS);
Duncan Sandsa0984362011-09-06 13:37:06 +0000225 Instruction *transformCallThroughTrampoline(CallSite CS,
226 IntrinsicInst *Tramp);
Chris Lattner35522b72010-01-04 07:12:23 +0000227 Instruction *transformZExtICmp(ICmpInst *ICI, Instruction &CI,
228 bool DoXform = true);
Benjamin Kramer398b8c52011-04-01 20:09:03 +0000229 Instruction *transformSExtICmp(ICmpInst *ICI, Instruction &CI);
Chris Lattner35522b72010-01-04 07:12:23 +0000230 bool WillNotOverflowSignedAdd(Value *LHS, Value *RHS);
Nuno Lopesa2f6cec2012-05-22 17:19:09 +0000231 Value *EmitGEPOffset(User *GEP);
Chris Lattner35522b72010-01-04 07:12:23 +0000232
233public:
234 // InsertNewInstBefore - insert an instruction New before instruction Old
235 // in the program. Add the new instruction to the worklist.
236 //
237 Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) {
238 assert(New && New->getParent() == 0 &&
239 "New instruction already inserted into a basic block!");
240 BasicBlock *BB = Old.getParent();
241 BB->getInstList().insert(&Old, New); // Insert inst
242 Worklist.Add(New);
243 return New;
244 }
Eli Friedman6efb64e2011-05-19 01:20:42 +0000245
246 // InsertNewInstWith - same as InsertNewInstBefore, but also sets the
247 // debug loc.
248 //
249 Instruction *InsertNewInstWith(Instruction *New, Instruction &Old) {
250 New->setDebugLoc(Old.getDebugLoc());
251 return InsertNewInstBefore(New, Old);
252 }
253
Chris Lattner35522b72010-01-04 07:12:23 +0000254 // ReplaceInstUsesWith - This method is to be used when an instruction is
255 // found to be dead, replacable with another preexisting expression. Here
256 // we add all uses of I to the worklist, replace all uses of I with the new
257 // value, then return I, so that the inst combiner will know that I was
258 // modified.
259 //
260 Instruction *ReplaceInstUsesWith(Instruction &I, Value *V) {
261 Worklist.AddUsersToWorkList(I); // Add all modified instrs to worklist.
262
263 // If we are replacing the instruction with itself, this must be in a
264 // segment of unreachable code, so just clobber the instruction.
265 if (&I == V)
266 V = UndefValue::get(I.getType());
Frits van Bommeld14d9912011-03-27 23:32:31 +0000267
268 DEBUG(errs() << "IC: Replacing " << I << "\n"
269 " with " << *V << '\n');
270
Chris Lattner35522b72010-01-04 07:12:23 +0000271 I.replaceAllUsesWith(V);
272 return &I;
273 }
274
275 // EraseInstFromFunction - When dealing with an instruction that has side
276 // effects or produces a void value, we can't rely on DCE to delete the
277 // instruction. Instead, visit methods should return the value returned by
278 // this function.
279 Instruction *EraseInstFromFunction(Instruction &I) {
280 DEBUG(errs() << "IC: ERASE " << I << '\n');
281
282 assert(I.use_empty() && "Cannot erase instruction that is used!");
283 // Make sure that we reprocess all operands now that we reduced their
284 // use counts.
285 if (I.getNumOperands() < 8) {
286 for (User::op_iterator i = I.op_begin(), e = I.op_end(); i != e; ++i)
287 if (Instruction *Op = dyn_cast<Instruction>(*i))
288 Worklist.Add(Op);
289 }
290 Worklist.Remove(&I);
291 I.eraseFromParent();
292 MadeIRChange = true;
293 return 0; // Don't do anything with FI
294 }
295
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +0000296 void ComputeMaskedBits(Value *V, APInt &KnownZero,
Chris Lattner35522b72010-01-04 07:12:23 +0000297 APInt &KnownOne, unsigned Depth = 0) const {
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +0000298 return llvm::ComputeMaskedBits(V, KnownZero, KnownOne, TD, Depth);
Chris Lattner35522b72010-01-04 07:12:23 +0000299 }
300
301 bool MaskedValueIsZero(Value *V, const APInt &Mask,
302 unsigned Depth = 0) const {
303 return llvm::MaskedValueIsZero(V, Mask, TD, Depth);
304 }
305 unsigned ComputeNumSignBits(Value *Op, unsigned Depth = 0) const {
306 return llvm::ComputeNumSignBits(Op, TD, Depth);
307 }
308
309private:
310
Duncan Sands641baf12010-11-13 15:10:37 +0000311 /// SimplifyAssociativeOrCommutative - This performs a few simplifications for
312 /// operators which are associative or commutative.
313 bool SimplifyAssociativeOrCommutative(BinaryOperator &I);
Chris Lattner35522b72010-01-04 07:12:23 +0000314
Duncan Sandsfbb9ac32010-12-22 13:36:08 +0000315 /// SimplifyUsingDistributiveLaws - This tries to simplify binary operations
316 /// which some other binary operation distributes over either by factorizing
317 /// out common terms (eg "(A*B)+(A*C)" -> "A*(B+C)") or expanding out if this
318 /// results in simplifications (eg: "A & (B | C) -> (A&B) | (A&C)" if this is
319 /// a win). Returns the simplified value, or null if it didn't simplify.
320 Value *SimplifyUsingDistributiveLaws(BinaryOperator &I);
Duncan Sandsadc7771f2010-11-23 14:23:47 +0000321
Chris Lattner35522b72010-01-04 07:12:23 +0000322 /// SimplifyDemandedUseBits - Attempts to replace V with a simpler value
323 /// based on the demanded bits.
324 Value *SimplifyDemandedUseBits(Value *V, APInt DemandedMask,
325 APInt& KnownZero, APInt& KnownOne,
326 unsigned Depth);
327 bool SimplifyDemandedBits(Use &U, APInt DemandedMask,
328 APInt& KnownZero, APInt& KnownOne,
329 unsigned Depth=0);
330
331 /// SimplifyDemandedInstructionBits - Inst is an integer instruction that
332 /// SimplifyDemandedBits knows about. See if the instruction has any
333 /// properties that allow us to simplify its operands.
334 bool SimplifyDemandedInstructionBits(Instruction &Inst);
335
336 Value *SimplifyDemandedVectorElts(Value *V, APInt DemandedElts,
337 APInt& UndefElts, unsigned Depth = 0);
338
339 // FoldOpIntoPhi - Given a binary operator, cast instruction, or select
340 // which has a PHI node as operand #0, see if we can fold the instruction
341 // into the PHI (which is only possible if all operands to the PHI are
342 // constants).
343 //
Chris Lattnerea7131a2011-01-16 05:14:26 +0000344 Instruction *FoldOpIntoPhi(Instruction &I);
Chris Lattner35522b72010-01-04 07:12:23 +0000345
346 // FoldPHIArgOpIntoPHI - If all operands to a PHI node are the same "unary"
347 // operator and they all are only used by the PHI, PHI together their
348 // inputs, and do the operation once, to the result of the PHI.
349 Instruction *FoldPHIArgOpIntoPHI(PHINode &PN);
350 Instruction *FoldPHIArgBinOpIntoPHI(PHINode &PN);
351 Instruction *FoldPHIArgGEPIntoPHI(PHINode &PN);
352 Instruction *FoldPHIArgLoadIntoPHI(PHINode &PN);
353
354
355 Instruction *OptAndOp(Instruction *Op, ConstantInt *OpRHS,
356 ConstantInt *AndRHS, BinaryOperator &TheAnd);
357
358 Value *FoldLogicalPlusAnd(Value *LHS, Value *RHS, ConstantInt *Mask,
359 bool isSub, Instruction &I);
Chris Lattner067459c2010-03-05 08:46:26 +0000360 Value *InsertRangeTest(Value *V, Constant *Lo, Constant *Hi,
361 bool isSigned, bool Inside);
Chris Lattner35522b72010-01-04 07:12:23 +0000362 Instruction *PromoteCastOfAllocation(BitCastInst &CI, AllocaInst &AI);
363 Instruction *MatchBSwap(BinaryOperator &I);
364 bool SimplifyStoreAtEndOfBlock(StoreInst &SI);
365 Instruction *SimplifyMemTransfer(MemIntrinsic *MI);
366 Instruction *SimplifyMemSet(MemSetInst *MI);
367
368
Chris Lattner229907c2011-07-18 04:54:35 +0000369 Value *EvaluateInDifferentType(Value *V, Type *Ty, bool isSigned);
Chris Lattner35522b72010-01-04 07:12:23 +0000370};
371
372
373
374} // end namespace llvm.
375
376#endif