simplify code.
[oota-llvm.git] / include / llvm / Support / NoFolder.h
1 //======-- llvm/Support/NoFolder.h - Constant folding helper -*- 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 NoFolder class, a helper for IRBuilder.  It provides
11 // IRBuilder with a set of methods for creating unfolded constants.  This is
12 // useful for learners trying to understand how LLVM IR works, and who don't
13 // want details to be hidden by the constant folder.  For general constant
14 // creation and folding, use ConstantExpr and the routines in
15 // llvm/Analysis/ConstantFolding.h.
16 //
17 // Note: since it is not actually possible to create unfolded constants, this
18 // class returns values rather than constants.  The values do not have names,
19 // even if names were provided to IRBuilder, which may be confusing.
20 //
21 //===----------------------------------------------------------------------===//
22
23 #ifndef LLVM_SUPPORT_NOFOLDER_H
24 #define LLVM_SUPPORT_NOFOLDER_H
25
26 #include "llvm/Constants.h"
27 #include "llvm/Instructions.h"
28
29 namespace llvm {
30
31 class LLVMContext;
32
33 /// NoFolder - Create "constants" (actually, values) with no folding.
34 class NoFolder {
35 public:
36   explicit NoFolder(LLVMContext &) {}
37
38   //===--------------------------------------------------------------------===//
39   // Binary Operators
40   //===--------------------------------------------------------------------===//
41
42   Value *CreateAdd(Constant *LHS, Constant *RHS) const {
43     return BinaryOperator::CreateAdd(LHS, RHS);
44   }
45   Value *CreateNSWAdd(Constant *LHS, Constant *RHS) const {
46     return BinaryOperator::CreateNSWAdd(LHS, RHS);
47   }
48   Value *CreateFAdd(Constant *LHS, Constant *RHS) const {
49     return BinaryOperator::CreateFAdd(LHS, RHS);
50   }
51   Value *CreateSub(Constant *LHS, Constant *RHS) const {
52     return BinaryOperator::CreateSub(LHS, RHS);
53   }
54   Value *CreateNSWSub(Constant *LHS, Constant *RHS) const {
55     return BinaryOperator::CreateNSWSub(LHS, RHS);
56   }
57   Value *CreateFSub(Constant *LHS, Constant *RHS) const {
58     return BinaryOperator::CreateFSub(LHS, RHS);
59   }
60   Value *CreateMul(Constant *LHS, Constant *RHS) const {
61     return BinaryOperator::CreateMul(LHS, RHS);
62   }
63   Value *CreateNSWMul(Constant *LHS, Constant *RHS) const {
64     return BinaryOperator::CreateNSWMul(LHS, RHS);
65   }
66   Value *CreateFMul(Constant *LHS, Constant *RHS) const {
67     return BinaryOperator::CreateFMul(LHS, RHS);
68   }
69   Value *CreateUDiv(Constant *LHS, Constant *RHS) const {
70     return BinaryOperator::CreateUDiv(LHS, RHS);
71   }
72   Value *CreateSDiv(Constant *LHS, Constant *RHS) const {
73     return BinaryOperator::CreateSDiv(LHS, RHS);
74   }
75   Value *CreateExactSDiv(Constant *LHS, Constant *RHS) const {
76     return BinaryOperator::CreateExactSDiv(LHS, RHS);
77   }
78   Value *CreateFDiv(Constant *LHS, Constant *RHS) const {
79     return BinaryOperator::CreateFDiv(LHS, RHS);
80   }
81   Value *CreateURem(Constant *LHS, Constant *RHS) const {
82     return BinaryOperator::CreateURem(LHS, RHS);
83   }
84   Value *CreateSRem(Constant *LHS, Constant *RHS) const {
85     return BinaryOperator::CreateSRem(LHS, RHS);
86   }
87   Value *CreateFRem(Constant *LHS, Constant *RHS) const {
88     return BinaryOperator::CreateFRem(LHS, RHS);
89   }
90   Value *CreateShl(Constant *LHS, Constant *RHS) const {
91     return BinaryOperator::CreateShl(LHS, RHS);
92   }
93   Value *CreateLShr(Constant *LHS, Constant *RHS) const {
94     return BinaryOperator::CreateLShr(LHS, RHS);
95   }
96   Value *CreateAShr(Constant *LHS, Constant *RHS) const {
97     return BinaryOperator::CreateAShr(LHS, RHS);
98   }
99   Value *CreateAnd(Constant *LHS, Constant *RHS) const {
100     return BinaryOperator::CreateAnd(LHS, RHS);
101   }
102   Value *CreateOr(Constant *LHS, Constant *RHS) const {
103     return BinaryOperator::CreateOr(LHS, RHS);
104   }
105   Value *CreateXor(Constant *LHS, Constant *RHS) const {
106     return BinaryOperator::CreateXor(LHS, RHS);
107   }
108
109   Value *CreateBinOp(Instruction::BinaryOps Opc,
110                      Constant *LHS, Constant *RHS) const {
111     return BinaryOperator::Create(Opc, LHS, RHS);
112   }
113
114   //===--------------------------------------------------------------------===//
115   // Unary Operators
116   //===--------------------------------------------------------------------===//
117
118   Value *CreateNeg(Constant *C) const {
119     return BinaryOperator::CreateNeg(C);
120   }
121   Value *CreateNSWNeg(Constant *C) const {
122     return BinaryOperator::CreateNSWNeg(C);
123   }
124   Value *CreateNot(Constant *C) const {
125     return BinaryOperator::CreateNot(C);
126   }
127
128   //===--------------------------------------------------------------------===//
129   // Memory Instructions
130   //===--------------------------------------------------------------------===//
131
132   Constant *CreateGetElementPtr(Constant *C, Constant* const *IdxList,
133                                 unsigned NumIdx) const {
134     return ConstantExpr::getGetElementPtr(C, IdxList, NumIdx);
135   }
136   Value *CreateGetElementPtr(Constant *C, Value* const *IdxList,
137                              unsigned NumIdx) const {
138     return GetElementPtrInst::Create(C, IdxList, IdxList+NumIdx);
139   }
140
141   Constant *CreateInBoundsGetElementPtr(Constant *C, Constant* const *IdxList,
142                                         unsigned NumIdx) const {
143     return ConstantExpr::getInBoundsGetElementPtr(C, IdxList, NumIdx);
144   }
145   Value *CreateInBoundsGetElementPtr(Constant *C, Value* const *IdxList,
146                                      unsigned NumIdx) const {
147     return GetElementPtrInst::CreateInBounds(C, IdxList, IdxList+NumIdx);
148   }
149
150   //===--------------------------------------------------------------------===//
151   // Cast/Conversion Operators
152   //===--------------------------------------------------------------------===//
153
154   Value *CreateCast(Instruction::CastOps Op, Constant *C,
155                     const Type *DestTy) const {
156     return CastInst::Create(Op, C, DestTy);
157   }
158   Value *CreateIntCast(Constant *C, const Type *DestTy,
159                        bool isSigned) const {
160     return CastInst::CreateIntegerCast(C, DestTy, isSigned);
161   }
162
163   //===--------------------------------------------------------------------===//
164   // Compare Instructions
165   //===--------------------------------------------------------------------===//
166
167   Value *CreateICmp(CmpInst::Predicate P, Constant *LHS, Constant *RHS) const {
168     return new ICmpInst(P, LHS, RHS);
169   }
170   Value *CreateFCmp(CmpInst::Predicate P, Constant *LHS, Constant *RHS) const {
171     return new FCmpInst(P, LHS, RHS);
172   }
173
174   //===--------------------------------------------------------------------===//
175   // Other Instructions
176   //===--------------------------------------------------------------------===//
177
178   Value *CreateSelect(Constant *C, Constant *True, Constant *False) const {
179     return SelectInst::Create(C, True, False);
180   }
181
182   Value *CreateExtractElement(Constant *Vec, Constant *Idx) const {
183     return ExtractElementInst::Create(Vec, Idx);
184   }
185
186   Value *CreateInsertElement(Constant *Vec, Constant *NewElt,
187                              Constant *Idx) const {
188     return InsertElementInst::Create(Vec, NewElt, Idx);
189   }
190
191   Value *CreateShuffleVector(Constant *V1, Constant *V2, Constant *Mask) const {
192     return new ShuffleVectorInst(V1, V2, Mask);
193   }
194
195   Value *CreateExtractValue(Constant *Agg, const unsigned *IdxList,
196                             unsigned NumIdx) const {
197     return ExtractValueInst::Create(Agg, IdxList, IdxList+NumIdx);
198   }
199
200   Value *CreateInsertValue(Constant *Agg, Constant *Val,
201                            const unsigned *IdxList, unsigned NumIdx) const {
202     return InsertValueInst::Create(Agg, Val, IdxList, IdxList+NumIdx);
203   }
204 };
205
206 }
207
208 #endif