Change SCEVExpander to use an IRBuilder to emit instructions.
[oota-llvm.git] / include / llvm / Analysis / ScalarEvolutionExpander.h
1 //===---- llvm/Analysis/ScalarEvolutionExpander.h - SCEV Exprs --*- 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 // This file defines the classes used to generate code from scalar expressions.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_ANALYSIS_SCALAREVOLUTION_EXPANDER_H
15 #define LLVM_ANALYSIS_SCALAREVOLUTION_EXPANDER_H
16
17 #include "llvm/Analysis/ScalarEvolutionExpressions.h"
18 #include "llvm/Support/IRBuilder.h"
19 #include "llvm/Support/TargetFolder.h"
20
21 namespace llvm {
22   /// SCEVExpander - This class uses information about analyze scalars to
23   /// rewrite expressions in canonical form.
24   ///
25   /// Clients should create an instance of this class when rewriting is needed,
26   /// and destroy it when finished to allow the release of the associated 
27   /// memory.
28   struct SCEVExpander : public SCEVVisitor<SCEVExpander, Value*> {
29     ScalarEvolution &SE;
30     std::map<std::pair<const SCEV *, Instruction *>, AssertingVH<Value> >
31       InsertedExpressions;
32     std::set<Value*> InsertedValues;
33
34     typedef IRBuilder<true, TargetFolder> BuilderType;
35     BuilderType Builder;
36
37     friend struct SCEVVisitor<SCEVExpander, Value*>;
38   public:
39     explicit SCEVExpander(ScalarEvolution &se)
40       : SE(se), Builder(TargetFolder(se.TD)) {}
41
42     /// clear - Erase the contents of the InsertedExpressions map so that users
43     /// trying to expand the same expression into multiple BasicBlocks or
44     /// different places within the same BasicBlock can do so.
45     void clear() { InsertedExpressions.clear(); }
46
47     /// getOrInsertCanonicalInductionVariable - This method returns the
48     /// canonical induction variable of the specified type for the specified
49     /// loop (inserting one if there is none).  A canonical induction variable
50     /// starts at zero and steps by one on each iteration.
51     Value *getOrInsertCanonicalInductionVariable(const Loop *L, const Type *Ty);
52
53     /// expandCodeFor - Insert code to directly compute the specified SCEV
54     /// expression into the program.  The inserted code is inserted into the
55     /// specified block.
56     Value *expandCodeFor(const SCEV* SH, const Type *Ty, Instruction *IP) {
57       Builder.SetInsertPoint(IP->getParent(), IP);
58       return expandCodeFor(SH, Ty);
59     }
60
61   private:
62     /// InsertBinop - Insert the specified binary operator, doing a small amount
63     /// of work to avoid inserting an obviously redundant operation.
64     Value *InsertBinop(Instruction::BinaryOps Opcode, Value *LHS, Value *RHS);
65
66     /// InsertNoopCastOfTo - Insert a cast of V to the specified type,
67     /// which must be possible with a noop cast, doing what we can to
68     /// share the casts.
69     Value *InsertNoopCastOfTo(Value *V, const Type *Ty);
70
71     /// expandAddToGEP - Expand a SCEVAddExpr with a pointer type into a GEP
72     /// instead of using ptrtoint+arithmetic+inttoptr.
73     Value *expandAddToGEP(const SCEV* const *op_begin,
74                           const SCEV* const *op_end,
75                           const PointerType *PTy, const Type *Ty, Value *V);
76
77     Value *expand(const SCEV *S);
78
79     /// expandCodeFor - Insert code to directly compute the specified SCEV
80     /// expression into the program.  The inserted code is inserted into the
81     /// SCEVExpander's current insertion point. If a type is specified, the
82     /// result will be expanded to have that type, with a cast if necessary.
83     Value *expandCodeFor(const SCEV* SH, const Type *Ty = 0);
84
85     /// isInsertedInstruction - Return true if the specified instruction was
86     /// inserted by the code rewriter.  If so, the client should not modify the
87     /// instruction.
88     bool isInsertedInstruction(Instruction *I) const {
89       return InsertedValues.count(I);
90     }
91
92     Value *visitConstant(const SCEVConstant *S) {
93       return S->getValue();
94     }
95
96     Value *visitTruncateExpr(const SCEVTruncateExpr *S);
97
98     Value *visitZeroExtendExpr(const SCEVZeroExtendExpr *S);
99
100     Value *visitSignExtendExpr(const SCEVSignExtendExpr *S);
101
102     Value *visitAddExpr(const SCEVAddExpr *S);
103
104     Value *visitMulExpr(const SCEVMulExpr *S);
105
106     Value *visitUDivExpr(const SCEVUDivExpr *S);
107
108     Value *visitAddRecExpr(const SCEVAddRecExpr *S);
109
110     Value *visitSMaxExpr(const SCEVSMaxExpr *S);
111
112     Value *visitUMaxExpr(const SCEVUMaxExpr *S);
113
114     Value *visitUnknown(const SCEVUnknown *S) {
115       return S->getValue();
116     }
117   };
118 }
119
120 #endif
121