cb9b05558477d1ec974d4c2f7c67892497ca9fae
[oota-llvm.git] / include / llvm / Support / ConstantFolder.h
1 //===-- llvm/Support/ConstantFolder.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 ConstantFolder class, a helper for IRBuilder.
11 // It provides IRBuilder with a set of methods for creating constants
12 // with minimal folding.  For general constant creation and folding,
13 // use ConstantExpr and the routines in llvm/Analysis/ConstantFolding.h.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #ifndef LLVM_SUPPORT_CONSTANTFOLDER_H
18 #define LLVM_SUPPORT_CONSTANTFOLDER_H
19
20 #include "llvm/Constants.h"
21
22 namespace llvm {
23
24 class LLVMContext;
25
26 /// ConstantFolder - Create constants with minimum, target independent, folding.
27 class ConstantFolder {
28 public:
29   explicit ConstantFolder(LLVMContext &) {}
30
31   //===--------------------------------------------------------------------===//
32   // Binary Operators
33   //===--------------------------------------------------------------------===//
34
35   Constant *CreateAdd(Constant *LHS, Constant *RHS) const {
36     return ConstantExpr::getAdd(LHS, RHS);
37   }
38   Constant *CreateFAdd(Constant *LHS, Constant *RHS) const {
39     return ConstantExpr::getFAdd(LHS, RHS);
40   }
41   Constant *CreateSub(Constant *LHS, Constant *RHS) const {
42     return ConstantExpr::getSub(LHS, RHS);
43   }
44   Constant *CreateFSub(Constant *LHS, Constant *RHS) const {
45     return ConstantExpr::getFSub(LHS, RHS);
46   }
47   Constant *CreateMul(Constant *LHS, Constant *RHS) const {
48     return ConstantExpr::getMul(LHS, RHS);
49   }
50   Constant *CreateFMul(Constant *LHS, Constant *RHS) const {
51     return ConstantExpr::getFMul(LHS, RHS);
52   }
53   Constant *CreateUDiv(Constant *LHS, Constant *RHS) const {
54     return ConstantExpr::getUDiv(LHS, RHS);
55   }
56   Constant *CreateSDiv(Constant *LHS, Constant *RHS) const {
57     return ConstantExpr::getSDiv(LHS, RHS);
58   }
59   Constant *CreateFDiv(Constant *LHS, Constant *RHS) const {
60     return ConstantExpr::getFDiv(LHS, RHS);
61   }
62   Constant *CreateURem(Constant *LHS, Constant *RHS) const {
63     return ConstantExpr::getURem(LHS, RHS);
64   }
65   Constant *CreateSRem(Constant *LHS, Constant *RHS) const {
66     return ConstantExpr::getSRem(LHS, RHS);
67   }
68   Constant *CreateFRem(Constant *LHS, Constant *RHS) const {
69     return ConstantExpr::getFRem(LHS, RHS);
70   }
71   Constant *CreateShl(Constant *LHS, Constant *RHS) const {
72     return ConstantExpr::getShl(LHS, RHS);
73   }
74   Constant *CreateLShr(Constant *LHS, Constant *RHS) const {
75     return ConstantExpr::getLShr(LHS, RHS);
76   }
77   Constant *CreateAShr(Constant *LHS, Constant *RHS) const {
78     return ConstantExpr::getAShr(LHS, RHS);
79   }
80   Constant *CreateAnd(Constant *LHS, Constant *RHS) const {
81     return ConstantExpr::getAnd(LHS, RHS);
82   }
83   Constant *CreateOr(Constant *LHS, Constant *RHS) const {
84     return ConstantExpr::getOr(LHS, RHS);
85   }
86   Constant *CreateXor(Constant *LHS, Constant *RHS) const {
87     return ConstantExpr::getXor(LHS, RHS);
88   }
89
90   Constant *CreateBinOp(Instruction::BinaryOps Opc,
91                         Constant *LHS, Constant *RHS) const {
92     return ConstantExpr::get(Opc, LHS, RHS);
93   }
94
95   //===--------------------------------------------------------------------===//
96   // Unary Operators
97   //===--------------------------------------------------------------------===//
98
99   Constant *CreateNeg(Constant *C) const {
100     return ConstantExpr::getNeg(C);
101   }
102   Constant *CreateFNeg(Constant *C) const {
103     return ConstantExpr::getFNeg(C);
104   }
105   Constant *CreateNot(Constant *C) const {
106     return ConstantExpr::getNot(C);
107   }
108
109   //===--------------------------------------------------------------------===//
110   // Memory Instructions
111   //===--------------------------------------------------------------------===//
112
113   Constant *CreateGetElementPtr(Constant *C, Constant* const *IdxList,
114                                 unsigned NumIdx) const {
115     return ConstantExpr::getGetElementPtr(C, IdxList, NumIdx);
116   }
117   Constant *CreateGetElementPtr(Constant *C, Value* const *IdxList,
118                                 unsigned NumIdx) const {
119     return ConstantExpr::getGetElementPtr(C, IdxList, NumIdx);
120   }
121
122   //===--------------------------------------------------------------------===//
123   // Cast/Conversion Operators
124   //===--------------------------------------------------------------------===//
125
126   Constant *CreateCast(Instruction::CastOps Op, Constant *C,
127                        const Type *DestTy) const {
128     return ConstantExpr::getCast(Op, C, DestTy);
129   }
130   Constant *CreateIntCast(Constant *C, const Type *DestTy,
131                           bool isSigned) const {
132     return ConstantExpr::getIntegerCast(C, DestTy, isSigned);
133   }
134
135   Constant *CreateBitCast(Constant *C, const Type *DestTy) const {
136     return CreateCast(Instruction::BitCast, C, DestTy);
137   }
138   Constant *CreateIntToPtr(Constant *C, const Type *DestTy) const {
139     return CreateCast(Instruction::IntToPtr, C, DestTy);
140   }
141   Constant *CreatePtrToInt(Constant *C, const Type *DestTy) const {
142     return CreateCast(Instruction::PtrToInt, C, DestTy);
143   }
144   Constant *CreateTruncOrBitCast(Constant *C, const Type *DestTy) const {
145     return ConstantExpr::getTruncOrBitCast(C, DestTy);
146   }
147
148   //===--------------------------------------------------------------------===//
149   // Compare Instructions
150   //===--------------------------------------------------------------------===//
151
152   Constant *CreateICmp(CmpInst::Predicate P, Constant *LHS,
153                        Constant *RHS) const {
154     return ConstantExpr::getCompare(P, LHS, RHS);
155   }
156   Constant *CreateFCmp(CmpInst::Predicate P, Constant *LHS,
157                        Constant *RHS) const {
158     return ConstantExpr::getCompare(P, LHS, RHS);
159   }
160
161   //===--------------------------------------------------------------------===//
162   // Other Instructions
163   //===--------------------------------------------------------------------===//
164
165   Constant *CreateSelect(Constant *C, Constant *True, Constant *False) const {
166     return ConstantExpr::getSelect(C, True, False);
167   }
168
169   Constant *CreateExtractElement(Constant *Vec, Constant *Idx) const {
170     return ConstantExpr::getExtractElement(Vec, Idx);
171   }
172
173   Constant *CreateInsertElement(Constant *Vec, Constant *NewElt,
174                                 Constant *Idx) const {
175     return ConstantExpr::getInsertElement(Vec, NewElt, Idx);
176   }
177
178   Constant *CreateShuffleVector(Constant *V1, Constant *V2,
179                                 Constant *Mask) const {
180     return ConstantExpr::getShuffleVector(V1, V2, Mask);
181   }
182
183   Constant *CreateExtractValue(Constant *Agg, const unsigned *IdxList,
184                                unsigned NumIdx) const {
185     return ConstantExpr::getExtractValue(Agg, IdxList, NumIdx);
186   }
187
188   Constant *CreateInsertValue(Constant *Agg, Constant *Val,
189                               const unsigned *IdxList, unsigned NumIdx) const {
190     return ConstantExpr::getInsertValue(Agg, Val, IdxList, NumIdx);
191   }
192 };
193
194 }
195
196 #endif