Reformat partially, where I touched for whitespace changes.
[oota-llvm.git] / lib / Transforms / InstCombine / InstCombine.h
1 //===- InstCombine.h - Main InstCombine pass definition ---------*- C++ -*-===//
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 LLVM_LIB_TRANSFORMS_INSTCOMBINE_INSTCOMBINE_H
11 #define LLVM_LIB_TRANSFORMS_INSTCOMBINE_INSTCOMBINE_H
12
13 #include "InstCombineWorklist.h"
14 #include "llvm/Analysis/AssumptionTracker.h"
15 #include "llvm/Analysis/TargetFolder.h"
16 #include "llvm/Analysis/ValueTracking.h"
17 #include "llvm/IR/IRBuilder.h"
18 #include "llvm/IR/InstVisitor.h"
19 #include "llvm/IR/IntrinsicInst.h"
20 #include "llvm/IR/Operator.h"
21 #include "llvm/IR/PatternMatch.h"
22 #include "llvm/Pass.h"
23 #include "llvm/Transforms/Utils/SimplifyLibCalls.h"
24
25 #define DEBUG_TYPE "instcombine"
26
27 namespace llvm {
28 class CallSite;
29 class DataLayout;
30 class DominatorTree;
31 class TargetLibraryInfo;
32 class DbgDeclareInst;
33 class MemIntrinsic;
34 class MemSetInst;
35
36 /// SelectPatternFlavor - We can match a variety of different patterns for
37 /// select operations.
38 enum SelectPatternFlavor {
39   SPF_UNKNOWN = 0,
40   SPF_SMIN,
41   SPF_UMIN,
42   SPF_SMAX,
43   SPF_UMAX,
44   SPF_ABS,
45   SPF_NABS
46 };
47
48 /// getComplexity:  Assign a complexity or rank value to LLVM Values...
49 ///   0 -> undef, 1 -> Const, 2 -> Other, 3 -> Arg, 3 -> Unary, 4 -> OtherInst
50 static inline unsigned getComplexity(Value *V) {
51   if (isa<Instruction>(V)) {
52     if (BinaryOperator::isNeg(V) || BinaryOperator::isFNeg(V) ||
53         BinaryOperator::isNot(V))
54       return 3;
55     return 4;
56   }
57   if (isa<Argument>(V))
58     return 3;
59   return isa<Constant>(V) ? (isa<UndefValue>(V) ? 0 : 1) : 2;
60 }
61
62 /// AddOne - Add one to a Constant
63 static inline Constant *AddOne(Constant *C) {
64   return ConstantExpr::getAdd(C, ConstantInt::get(C->getType(), 1));
65 }
66 /// SubOne - Subtract one from a Constant
67 static inline Constant *SubOne(Constant *C) {
68   return ConstantExpr::getSub(C, ConstantInt::get(C->getType(), 1));
69 }
70
71 /// InstCombineIRInserter - This is an IRBuilder insertion helper that works
72 /// just like the normal insertion helper, but also adds any new instructions
73 /// to the instcombine worklist.
74 class LLVM_LIBRARY_VISIBILITY InstCombineIRInserter
75     : public IRBuilderDefaultInserter<true> {
76   InstCombineWorklist &Worklist;
77   AssumptionTracker *AT;
78
79 public:
80   InstCombineIRInserter(InstCombineWorklist &WL, AssumptionTracker *AT)
81     : Worklist(WL), AT(AT) {}
82
83   void InsertHelper(Instruction *I, const Twine &Name, BasicBlock *BB,
84                     BasicBlock::iterator InsertPt) const {
85     IRBuilderDefaultInserter<true>::InsertHelper(I, Name, BB, InsertPt);
86     Worklist.Add(I);
87
88     using namespace llvm::PatternMatch;
89     if (match(I, m_Intrinsic<Intrinsic::assume>()))
90       AT->registerAssumption(cast<CallInst>(I));
91   }
92 };
93
94 /// InstCombiner - The -instcombine pass.
95 class LLVM_LIBRARY_VISIBILITY InstCombiner
96     : public FunctionPass,
97       public InstVisitor<InstCombiner, Instruction *> {
98   AssumptionTracker *AT;
99   const DataLayout *DL;
100   TargetLibraryInfo *TLI;
101   DominatorTree *DT; // not required
102   bool MadeIRChange;
103   LibCallSimplifier *Simplifier;
104   bool MinimizeSize;
105
106 public:
107   /// Worklist - All of the instructions that need to be simplified.
108   InstCombineWorklist Worklist;
109
110   /// Builder - This is an IRBuilder that automatically inserts new
111   /// instructions into the worklist when they are created.
112   typedef IRBuilder<true, TargetFolder, InstCombineIRInserter> BuilderTy;
113   BuilderTy *Builder;
114
115   static char ID; // Pass identification, replacement for typeid
116   InstCombiner() : FunctionPass(ID), DL(nullptr), Builder(nullptr) {
117     MinimizeSize = false;
118     initializeInstCombinerPass(*PassRegistry::getPassRegistry());
119   }
120
121 public:
122   bool runOnFunction(Function &F) override;
123
124   bool DoOneIteration(Function &F, unsigned ItNum);
125
126   void getAnalysisUsage(AnalysisUsage &AU) const override;
127
128   AssumptionTracker *getAssumptionTracker() const { return AT; }
129
130   const DataLayout *getDataLayout() const { return DL; }
131   
132   DominatorTree *getDominatorTree() const { return DT; }
133
134   TargetLibraryInfo *getTargetLibraryInfo() const { return TLI; }
135
136   // Visitation implementation - Implement instruction combining for different
137   // instruction types.  The semantics are as follows:
138   // Return Value:
139   //    null        - No change was made
140   //     I          - Change was made, I is still valid, I may be dead though
141   //   otherwise    - Change was made, replace I with returned instruction
142   //
143   Instruction *visitAdd(BinaryOperator &I);
144   Instruction *visitFAdd(BinaryOperator &I);
145   Value *OptimizePointerDifference(Value *LHS, Value *RHS, Type *Ty);
146   Instruction *visitSub(BinaryOperator &I);
147   Instruction *visitFSub(BinaryOperator &I);
148   Instruction *visitMul(BinaryOperator &I);
149   Value *foldFMulConst(Instruction *FMulOrDiv, Constant *C,
150                        Instruction *InsertBefore);
151   Instruction *visitFMul(BinaryOperator &I);
152   Instruction *visitURem(BinaryOperator &I);
153   Instruction *visitSRem(BinaryOperator &I);
154   Instruction *visitFRem(BinaryOperator &I);
155   bool SimplifyDivRemOfSelect(BinaryOperator &I);
156   Instruction *commonRemTransforms(BinaryOperator &I);
157   Instruction *commonIRemTransforms(BinaryOperator &I);
158   Instruction *commonDivTransforms(BinaryOperator &I);
159   Instruction *commonIDivTransforms(BinaryOperator &I);
160   Instruction *visitUDiv(BinaryOperator &I);
161   Instruction *visitSDiv(BinaryOperator &I);
162   Instruction *visitFDiv(BinaryOperator &I);
163   Value *FoldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS);
164   Value *FoldAndOfFCmps(FCmpInst *LHS, FCmpInst *RHS);
165   Instruction *visitAnd(BinaryOperator &I);
166   Value *FoldOrOfICmps(ICmpInst *LHS, ICmpInst *RHS, Instruction *CxtI);
167   Value *FoldOrOfFCmps(FCmpInst *LHS, FCmpInst *RHS);
168   Instruction *FoldOrWithConstants(BinaryOperator &I, Value *Op, Value *A,
169                                    Value *B, Value *C);
170   Instruction *FoldXorWithConstants(BinaryOperator &I, Value *Op, Value *A,
171                                     Value *B, Value *C);
172   Instruction *visitOr(BinaryOperator &I);
173   Instruction *visitXor(BinaryOperator &I);
174   Instruction *visitShl(BinaryOperator &I);
175   Instruction *visitAShr(BinaryOperator &I);
176   Instruction *visitLShr(BinaryOperator &I);
177   Instruction *commonShiftTransforms(BinaryOperator &I);
178   Instruction *FoldFCmp_IntToFP_Cst(FCmpInst &I, Instruction *LHSI,
179                                     Constant *RHSC);
180   Instruction *FoldCmpLoadFromIndexedGlobal(GetElementPtrInst *GEP,
181                                             GlobalVariable *GV, CmpInst &ICI,
182                                             ConstantInt *AndCst = nullptr);
183   Instruction *visitFCmpInst(FCmpInst &I);
184   Instruction *visitICmpInst(ICmpInst &I);
185   Instruction *visitICmpInstWithCastAndCast(ICmpInst &ICI);
186   Instruction *visitICmpInstWithInstAndIntCst(ICmpInst &ICI, Instruction *LHS,
187                                               ConstantInt *RHS);
188   Instruction *FoldICmpDivCst(ICmpInst &ICI, BinaryOperator *DivI,
189                               ConstantInt *DivRHS);
190   Instruction *FoldICmpShrCst(ICmpInst &ICI, BinaryOperator *DivI,
191                               ConstantInt *DivRHS);
192   Instruction *FoldICmpCstShrCst(ICmpInst &I, Value *Op, Value *A,
193                                  ConstantInt *CI1, ConstantInt *CI2);
194   Instruction *FoldICmpCstShlCst(ICmpInst &I, Value *Op, Value *A,
195                                  ConstantInt *CI1, ConstantInt *CI2);
196   Instruction *FoldICmpAddOpCst(Instruction &ICI, Value *X, ConstantInt *CI,
197                                 ICmpInst::Predicate Pred);
198   Instruction *FoldGEPICmp(GEPOperator *GEPLHS, Value *RHS,
199                            ICmpInst::Predicate Cond, Instruction &I);
200   Instruction *FoldShiftByConstant(Value *Op0, Constant *Op1,
201                                    BinaryOperator &I);
202   Instruction *commonCastTransforms(CastInst &CI);
203   Instruction *commonPointerCastTransforms(CastInst &CI);
204   Instruction *visitTrunc(TruncInst &CI);
205   Instruction *visitZExt(ZExtInst &CI);
206   Instruction *visitSExt(SExtInst &CI);
207   Instruction *visitFPTrunc(FPTruncInst &CI);
208   Instruction *visitFPExt(CastInst &CI);
209   Instruction *visitFPToUI(FPToUIInst &FI);
210   Instruction *visitFPToSI(FPToSIInst &FI);
211   Instruction *visitUIToFP(CastInst &CI);
212   Instruction *visitSIToFP(CastInst &CI);
213   Instruction *visitPtrToInt(PtrToIntInst &CI);
214   Instruction *visitIntToPtr(IntToPtrInst &CI);
215   Instruction *visitBitCast(BitCastInst &CI);
216   Instruction *visitAddrSpaceCast(AddrSpaceCastInst &CI);
217   Instruction *FoldSelectOpOp(SelectInst &SI, Instruction *TI, Instruction *FI);
218   Instruction *FoldSelectIntoOp(SelectInst &SI, Value *, Value *);
219   Instruction *FoldSPFofSPF(Instruction *Inner, SelectPatternFlavor SPF1,
220                             Value *A, Value *B, Instruction &Outer,
221                             SelectPatternFlavor SPF2, Value *C);
222   Instruction *visitSelectInst(SelectInst &SI);
223   Instruction *visitSelectInstWithICmp(SelectInst &SI, ICmpInst *ICI);
224   Instruction *visitCallInst(CallInst &CI);
225   Instruction *visitInvokeInst(InvokeInst &II);
226
227   Instruction *SliceUpIllegalIntegerPHI(PHINode &PN);
228   Instruction *visitPHINode(PHINode &PN);
229   Instruction *visitGetElementPtrInst(GetElementPtrInst &GEP);
230   Instruction *visitAllocaInst(AllocaInst &AI);
231   Instruction *visitAllocSite(Instruction &FI);
232   Instruction *visitFree(CallInst &FI);
233   Instruction *visitLoadInst(LoadInst &LI);
234   Instruction *visitStoreInst(StoreInst &SI);
235   Instruction *visitBranchInst(BranchInst &BI);
236   Instruction *visitSwitchInst(SwitchInst &SI);
237   Instruction *visitReturnInst(ReturnInst &RI);
238   Instruction *visitInsertValueInst(InsertValueInst &IV);
239   Instruction *visitInsertElementInst(InsertElementInst &IE);
240   Instruction *visitExtractElementInst(ExtractElementInst &EI);
241   Instruction *visitShuffleVectorInst(ShuffleVectorInst &SVI);
242   Instruction *visitExtractValueInst(ExtractValueInst &EV);
243   Instruction *visitLandingPadInst(LandingPadInst &LI);
244
245   // visitInstruction - Specify what to return for unhandled instructions...
246   Instruction *visitInstruction(Instruction &I) { return nullptr; }
247
248 private:
249   bool ShouldChangeType(Type *From, Type *To) const;
250   Value *dyn_castNegVal(Value *V) const;
251   Value *dyn_castFNegVal(Value *V, bool NoSignedZero = false) const;
252   Type *FindElementAtOffset(Type *PtrTy, int64_t Offset,
253                             SmallVectorImpl<Value *> &NewIndices);
254   Instruction *FoldOpIntoSelect(Instruction &Op, SelectInst *SI);
255
256   /// ShouldOptimizeCast - Return true if the cast from "V to Ty" actually
257   /// results in any code being generated and is interesting to optimize out. If
258   /// the cast can be eliminated by some other simple transformation, we prefer
259   /// to do the simplification first.
260   bool ShouldOptimizeCast(Instruction::CastOps opcode, const Value *V,
261                           Type *Ty);
262
263   Instruction *visitCallSite(CallSite CS);
264   Instruction *tryOptimizeCall(CallInst *CI, const DataLayout *DL);
265   bool transformConstExprCastCall(CallSite CS);
266   Instruction *transformCallThroughTrampoline(CallSite CS,
267                                               IntrinsicInst *Tramp);
268   Instruction *transformZExtICmp(ICmpInst *ICI, Instruction &CI,
269                                  bool DoXform = true);
270   Instruction *transformSExtICmp(ICmpInst *ICI, Instruction &CI);
271   bool WillNotOverflowSignedAdd(Value *LHS, Value *RHS, Instruction *CxtI);
272   bool WillNotOverflowUnsignedAdd(Value *LHS, Value *RHS, Instruction *CxtI);
273   bool WillNotOverflowSignedSub(Value *LHS, Value *RHS, Instruction *CxtI);
274   bool WillNotOverflowUnsignedSub(Value *LHS, Value *RHS, Instruction *CxtI);
275   Value *EmitGEPOffset(User *GEP);
276   Instruction *scalarizePHI(ExtractElementInst &EI, PHINode *PN);
277   Value *EvaluateInDifferentElementOrder(Value *V, ArrayRef<int> Mask);
278
279 public:
280   // InsertNewInstBefore - insert an instruction New before instruction Old
281   // in the program.  Add the new instruction to the worklist.
282   //
283   Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) {
284     assert(New && !New->getParent() &&
285            "New instruction already inserted into a basic block!");
286     BasicBlock *BB = Old.getParent();
287     BB->getInstList().insert(&Old, New); // Insert inst
288     Worklist.Add(New);
289     return New;
290   }
291
292   // InsertNewInstWith - same as InsertNewInstBefore, but also sets the
293   // debug loc.
294   //
295   Instruction *InsertNewInstWith(Instruction *New, Instruction &Old) {
296     New->setDebugLoc(Old.getDebugLoc());
297     return InsertNewInstBefore(New, Old);
298   }
299
300   // ReplaceInstUsesWith - This method is to be used when an instruction is
301   // found to be dead, replacable with another preexisting expression.  Here
302   // we add all uses of I to the worklist, replace all uses of I with the new
303   // value, then return I, so that the inst combiner will know that I was
304   // modified.
305   //
306   Instruction *ReplaceInstUsesWith(Instruction &I, Value *V) {
307     Worklist.AddUsersToWorkList(I); // Add all modified instrs to worklist.
308
309     // If we are replacing the instruction with itself, this must be in a
310     // segment of unreachable code, so just clobber the instruction.
311     if (&I == V)
312       V = UndefValue::get(I.getType());
313
314     DEBUG(dbgs() << "IC: Replacing " << I << "\n"
315                     "    with " << *V << '\n');
316
317     I.replaceAllUsesWith(V);
318     return &I;
319   }
320
321   // EraseInstFromFunction - When dealing with an instruction that has side
322   // effects or produces a void value, we can't rely on DCE to delete the
323   // instruction.  Instead, visit methods should return the value returned by
324   // this function.
325   Instruction *EraseInstFromFunction(Instruction &I) {
326     DEBUG(dbgs() << "IC: ERASE " << I << '\n');
327
328     assert(I.use_empty() && "Cannot erase instruction that is used!");
329     // Make sure that we reprocess all operands now that we reduced their
330     // use counts.
331     if (I.getNumOperands() < 8) {
332       for (User::op_iterator i = I.op_begin(), e = I.op_end(); i != e; ++i)
333         if (Instruction *Op = dyn_cast<Instruction>(*i))
334           Worklist.Add(Op);
335     }
336     Worklist.Remove(&I);
337     I.eraseFromParent();
338     MadeIRChange = true;
339     return nullptr; // Don't do anything with FI
340   }
341
342   void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne,
343                         unsigned Depth = 0, Instruction *CxtI = nullptr) const {
344     return llvm::computeKnownBits(V, KnownZero, KnownOne, DL, Depth,
345                                   AT, CxtI, DT);
346   }
347
348   bool MaskedValueIsZero(Value *V, const APInt &Mask,
349                          unsigned Depth = 0,
350                          Instruction *CxtI = nullptr) const {
351     return llvm::MaskedValueIsZero(V, Mask, DL, Depth, AT, CxtI, DT);
352   }
353   unsigned ComputeNumSignBits(Value *Op, unsigned Depth = 0,
354                               Instruction *CxtI = nullptr) const {
355     return llvm::ComputeNumSignBits(Op, DL, Depth, AT, CxtI, DT);
356   }
357
358 private:
359   /// SimplifyAssociativeOrCommutative - This performs a few simplifications for
360   /// operators which are associative or commutative.
361   bool SimplifyAssociativeOrCommutative(BinaryOperator &I);
362
363   /// SimplifyUsingDistributiveLaws - This tries to simplify binary operations
364   /// which some other binary operation distributes over either by factorizing
365   /// out common terms (eg "(A*B)+(A*C)" -> "A*(B+C)") or expanding out if this
366   /// results in simplifications (eg: "A & (B | C) -> (A&B) | (A&C)" if this is
367   /// a win).  Returns the simplified value, or null if it didn't simplify.
368   Value *SimplifyUsingDistributiveLaws(BinaryOperator &I);
369
370   /// SimplifyDemandedUseBits - Attempts to replace V with a simpler value
371   /// based on the demanded bits.
372   Value *SimplifyDemandedUseBits(Value *V, APInt DemandedMask, APInt &KnownZero,
373                                  APInt &KnownOne, unsigned Depth,
374                                  Instruction *CxtI = nullptr);
375   bool SimplifyDemandedBits(Use &U, APInt DemandedMask, APInt &KnownZero,
376                             APInt &KnownOne, unsigned Depth = 0);
377   /// Helper routine of SimplifyDemandedUseBits. It tries to simplify demanded
378   /// bit for "r1 = shr x, c1; r2 = shl r1, c2" instruction sequence.
379   Value *SimplifyShrShlDemandedBits(Instruction *Lsr, Instruction *Sftl,
380                                     APInt DemandedMask, APInt &KnownZero,
381                                     APInt &KnownOne);
382
383   /// SimplifyDemandedInstructionBits - Inst is an integer instruction that
384   /// SimplifyDemandedBits knows about.  See if the instruction has any
385   /// properties that allow us to simplify its operands.
386   bool SimplifyDemandedInstructionBits(Instruction &Inst);
387
388   Value *SimplifyDemandedVectorElts(Value *V, APInt DemandedElts,
389                                     APInt &UndefElts, unsigned Depth = 0);
390
391   Value *SimplifyVectorOp(BinaryOperator &Inst);
392
393   // FoldOpIntoPhi - Given a binary operator, cast instruction, or select
394   // which has a PHI node as operand #0, see if we can fold the instruction
395   // into the PHI (which is only possible if all operands to the PHI are
396   // constants).
397   //
398   Instruction *FoldOpIntoPhi(Instruction &I);
399
400   // FoldPHIArgOpIntoPHI - If all operands to a PHI node are the same "unary"
401   // operator and they all are only used by the PHI, PHI together their
402   // inputs, and do the operation once, to the result of the PHI.
403   Instruction *FoldPHIArgOpIntoPHI(PHINode &PN);
404   Instruction *FoldPHIArgBinOpIntoPHI(PHINode &PN);
405   Instruction *FoldPHIArgGEPIntoPHI(PHINode &PN);
406   Instruction *FoldPHIArgLoadIntoPHI(PHINode &PN);
407
408   Instruction *OptAndOp(Instruction *Op, ConstantInt *OpRHS,
409                         ConstantInt *AndRHS, BinaryOperator &TheAnd);
410
411   Value *FoldLogicalPlusAnd(Value *LHS, Value *RHS, ConstantInt *Mask,
412                             bool isSub, Instruction &I);
413   Value *InsertRangeTest(Value *V, Constant *Lo, Constant *Hi, bool isSigned,
414                          bool Inside);
415   Instruction *PromoteCastOfAllocation(BitCastInst &CI, AllocaInst &AI);
416   Instruction *MatchBSwap(BinaryOperator &I);
417   bool SimplifyStoreAtEndOfBlock(StoreInst &SI);
418   Instruction *SimplifyMemTransfer(MemIntrinsic *MI);
419   Instruction *SimplifyMemSet(MemSetInst *MI);
420
421   Value *EvaluateInDifferentType(Value *V, Type *Ty, bool isSigned);
422
423   /// Descale - Return a value X such that Val = X * Scale, or null if none.  If
424   /// the multiplication is known not to overflow then NoSignedWrap is set.
425   Value *Descale(Value *Val, APInt Scale, bool &NoSignedWrap);
426 };
427
428 } // end namespace llvm.
429
430 #undef DEBUG_TYPE
431
432 #endif