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