InstCombine.h revision 90c579de5a383cee278acc3f7e7b9d0a656e6a35
1//===- 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};
35
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}
49
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 LLVM_LIBRARY_VISIBILITY 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 LLVM_LIBRARY_VISIBILITY 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
91  virtual void getAnalysisUsage(AnalysisUsage &AU) const;
92
93  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  Value *FoldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS);
121  Value *FoldAndOfFCmps(FCmpInst *LHS, FCmpInst *RHS);
122  Instruction *visitAnd(BinaryOperator &I);
123  Value *FoldOrOfICmps(ICmpInst *LHS, ICmpInst *RHS);
124  Value *FoldOrOfFCmps(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 *commonPointerCastTransforms(CastInst &CI);
154  Instruction *visitTrunc(TruncInst &CI);
155  Instruction *visitZExt(ZExtInst &CI);
156  Instruction *visitSExt(SExtInst &CI);
157  Instruction *visitFPTrunc(FPTruncInst &CI);
158  Instruction *visitFPExt(CastInst &CI);
159  Instruction *visitFPToUI(FPToUIInst &FI);
160  Instruction *visitFPToSI(FPToSIInst &FI);
161  Instruction *visitUIToFP(CastInst &CI);
162  Instruction *visitSIToFP(CastInst &CI);
163  Instruction *visitPtrToInt(PtrToIntInst &CI);
164  Instruction *visitIntToPtr(IntToPtrInst &CI);
165  Instruction *visitBitCast(BitCastInst &CI);
166  Instruction *FoldSelectOpOp(SelectInst &SI, Instruction *TI,
167                              Instruction *FI);
168  Instruction *FoldSelectIntoOp(SelectInst &SI, Value*, Value*);
169  Instruction *FoldSPFofSPF(Instruction *Inner, SelectPatternFlavor SPF1,
170                            Value *A, Value *B, Instruction &Outer,
171                            SelectPatternFlavor SPF2, Value *C);
172  Instruction *visitSelectInst(SelectInst &SI);
173  Instruction *visitSelectInstWithICmp(SelectInst &SI, ICmpInst *ICI);
174  Instruction *visitCallInst(CallInst &CI);
175  Instruction *visitInvokeInst(InvokeInst &II);
176
177  Instruction *SliceUpIllegalIntegerPHI(PHINode &PN);
178  Instruction *visitPHINode(PHINode &PN);
179  Instruction *visitGetElementPtrInst(GetElementPtrInst &GEP);
180  Instruction *visitAllocaInst(AllocaInst &AI);
181  Instruction *visitMalloc(Instruction &FI);
182  Instruction *visitFree(CallInst &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:
196  bool ShouldChangeType(const Type *From, const Type *To) const;
197  Value *dyn_castNegVal(Value *V) const;
198  Value *dyn_castFNegVal(Value *V) const;
199  const Type *FindElementAtOffset(const Type *Ty, int64_t Offset,
200                                  SmallVectorImpl<Value*> &NewIndices);
201  Instruction *FoldOpIntoSelect(Instruction &Op, SelectInst *SI);
202
203  /// ShouldOptimizeCast - Return true if the cast from "V to Ty" actually
204  /// results in any code being generated and is interesting to optimize out. If
205  /// the cast can be eliminated by some other simple transformation, we prefer
206  /// to do the simplification first.
207  bool ShouldOptimizeCast(Instruction::CastOps opcode,const Value *V,
208                          const Type *Ty);
209
210  Instruction *visitCallSite(CallSite CS);
211  Instruction *tryOptimizeCall(CallInst *CI, const TargetData *TD);
212  bool transformConstExprCastCall(CallSite CS);
213  Instruction *transformCallThroughTrampoline(CallSite CS);
214  Instruction *transformZExtICmp(ICmpInst *ICI, Instruction &CI,
215                                 bool DoXform = true);
216  bool WillNotOverflowSignedAdd(Value *LHS, Value *RHS);
217  DbgDeclareInst *hasOneUsePlusDeclare(Value *V);
218  Value *EmitGEPOffset(User *GEP);
219
220public:
221  // InsertNewInstBefore - insert an instruction New before instruction Old
222  // in the program.  Add the new instruction to the worklist.
223  //
224  Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) {
225    assert(New && New->getParent() == 0 &&
226           "New instruction already inserted into a basic block!");
227    BasicBlock *BB = Old.getParent();
228    BB->getInstList().insert(&Old, New);  // Insert inst
229    Worklist.Add(New);
230    return New;
231  }
232
233  // ReplaceInstUsesWith - This method is to be used when an instruction is
234  // found to be dead, replacable with another preexisting expression.  Here
235  // we add all uses of I to the worklist, replace all uses of I with the new
236  // value, then return I, so that the inst combiner will know that I was
237  // modified.
238  //
239  Instruction *ReplaceInstUsesWith(Instruction &I, Value *V) {
240    Worklist.AddUsersToWorkList(I);   // Add all modified instrs to worklist.
241
242    // If we are replacing the instruction with itself, this must be in a
243    // segment of unreachable code, so just clobber the instruction.
244    if (&I == V)
245      V = UndefValue::get(I.getType());
246
247    I.replaceAllUsesWith(V);
248    return &I;
249  }
250
251  // EraseInstFromFunction - When dealing with an instruction that has side
252  // effects or produces a void value, we can't rely on DCE to delete the
253  // instruction.  Instead, visit methods should return the value returned by
254  // this function.
255  Instruction *EraseInstFromFunction(Instruction &I) {
256    DEBUG(errs() << "IC: ERASE " << I << '\n');
257
258    assert(I.use_empty() && "Cannot erase instruction that is used!");
259    // Make sure that we reprocess all operands now that we reduced their
260    // use counts.
261    if (I.getNumOperands() < 8) {
262      for (User::op_iterator i = I.op_begin(), e = I.op_end(); i != e; ++i)
263        if (Instruction *Op = dyn_cast<Instruction>(*i))
264          Worklist.Add(Op);
265    }
266    Worklist.Remove(&I);
267    I.eraseFromParent();
268    MadeIRChange = true;
269    return 0;  // Don't do anything with FI
270  }
271
272  void ComputeMaskedBits(Value *V, const APInt &Mask, APInt &KnownZero,
273                         APInt &KnownOne, unsigned Depth = 0) const {
274    return llvm::ComputeMaskedBits(V, Mask, KnownZero, KnownOne, TD, Depth);
275  }
276
277  bool MaskedValueIsZero(Value *V, const APInt &Mask,
278                         unsigned Depth = 0) const {
279    return llvm::MaskedValueIsZero(V, Mask, TD, Depth);
280  }
281  unsigned ComputeNumSignBits(Value *Op, unsigned Depth = 0) const {
282    return llvm::ComputeNumSignBits(Op, TD, Depth);
283  }
284
285private:
286
287  /// SimplifyCommutative - This performs a few simplifications for
288  /// commutative operators.
289  bool SimplifyCommutative(BinaryOperator &I);
290
291  /// SimplifyDemandedUseBits - Attempts to replace V with a simpler value
292  /// based on the demanded bits.
293  Value *SimplifyDemandedUseBits(Value *V, APInt DemandedMask,
294                                 APInt& KnownZero, APInt& KnownOne,
295                                 unsigned Depth);
296  bool SimplifyDemandedBits(Use &U, APInt DemandedMask,
297                            APInt& KnownZero, APInt& KnownOne,
298                            unsigned Depth=0);
299
300  /// SimplifyDemandedInstructionBits - Inst is an integer instruction that
301  /// SimplifyDemandedBits knows about.  See if the instruction has any
302  /// properties that allow us to simplify its operands.
303  bool SimplifyDemandedInstructionBits(Instruction &Inst);
304
305  Value *SimplifyDemandedVectorElts(Value *V, APInt DemandedElts,
306                                    APInt& UndefElts, unsigned Depth = 0);
307
308  // FoldOpIntoPhi - Given a binary operator, cast instruction, or select
309  // which has a PHI node as operand #0, see if we can fold the instruction
310  // into the PHI (which is only possible if all operands to the PHI are
311  // constants).
312  //
313  // If AllowAggressive is true, FoldOpIntoPhi will allow certain transforms
314  // that would normally be unprofitable because they strongly encourage jump
315  // threading.
316  Instruction *FoldOpIntoPhi(Instruction &I, bool AllowAggressive = false);
317
318  // FoldPHIArgOpIntoPHI - If all operands to a PHI node are the same "unary"
319  // operator and they all are only used by the PHI, PHI together their
320  // inputs, and do the operation once, to the result of the PHI.
321  Instruction *FoldPHIArgOpIntoPHI(PHINode &PN);
322  Instruction *FoldPHIArgBinOpIntoPHI(PHINode &PN);
323  Instruction *FoldPHIArgGEPIntoPHI(PHINode &PN);
324  Instruction *FoldPHIArgLoadIntoPHI(PHINode &PN);
325
326
327  Instruction *OptAndOp(Instruction *Op, ConstantInt *OpRHS,
328                        ConstantInt *AndRHS, BinaryOperator &TheAnd);
329
330  Value *FoldLogicalPlusAnd(Value *LHS, Value *RHS, ConstantInt *Mask,
331                            bool isSub, Instruction &I);
332  Value *InsertRangeTest(Value *V, Constant *Lo, Constant *Hi,
333                         bool isSigned, bool Inside);
334  Instruction *PromoteCastOfAllocation(BitCastInst &CI, AllocaInst &AI);
335  Instruction *MatchBSwap(BinaryOperator &I);
336  bool SimplifyStoreAtEndOfBlock(StoreInst &SI);
337  Instruction *SimplifyMemTransfer(MemIntrinsic *MI);
338  Instruction *SimplifyMemSet(MemSetInst *MI);
339
340
341  Value *EvaluateInDifferentType(Value *V, const Type *Ty, bool isSigned);
342
343  unsigned GetOrEnforceKnownAlignment(Value *V,
344                                      unsigned PrefAlign = 0);
345
346};
347
348
349
350} // end namespace llvm.
351
352#endif
353