d4cd891d8a9f802c7848b48d8446d4b4783ea887
[oota-llvm.git] / include / llvm / LLVMContext.h
1 //===-- llvm/LLVMContext.h - Class for managing "global" state --*- 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 declares LLVMContext, a container of "global" state in LLVM, such
11 // as the global type and constant uniquing tables.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_LLVMCONTEXT_H
16 #define LLVM_LLVMCONTEXT_H
17
18 #include "llvm/Support/DataTypes.h"
19 #include <vector>
20 #include <string>
21
22 namespace llvm {
23
24 class LLVMContextImpl;
25 class Constant;
26 class ConstantInt;
27 class ConstantPointerNull;
28 class ConstantStruct;
29 class ConstantAggregateZero;
30 class ConstantArray;
31 class ConstantFP;
32 class ConstantVector;
33 class UndefValue;
34 class MDNode;
35 class MDString;
36 class IntegerType;
37 class PointerType;
38 class StructType;
39 class ArrayType;
40 class VectorType;
41 class OpaqueType;
42 class FunctionType;
43 class Type;
44 class APInt;
45 class APFloat;
46 class Value;
47
48 /// This is an important class for using LLVM in a threaded context.  It
49 /// (opaquely) owns and manages the core "global" data of LLVM's core 
50 /// infrastructure, including the type and constant uniquing tables.
51 /// LLVMContext itself provides no locking guarantees, so you should be careful
52 /// to have one context per thread.
53 class LLVMContext {
54   LLVMContextImpl* pImpl;
55 public:
56   LLVMContext();
57   ~LLVMContext();
58   
59   // Constant accessors
60   Constant* getNullValue(const Type* Ty);
61   
62   /// @returns the value for an integer constant of the given type that has all
63   /// its bits set to true.
64   /// @brief Get the all ones value
65   Constant* getAllOnesValue(const Type* Ty);
66   
67   // UndefValue accessors
68   UndefValue* getUndef(const Type* Ty);
69   
70   // ConstantInt accessors
71   ConstantInt* getConstantIntTrue();
72   ConstantInt* getConstantIntFalse();
73   
74   /// If Ty is a vector type, return a Constant with a splat of the given
75   /// value. Otherwise return a ConstantInt for the given value.
76   Constant* getConstantInt(const Type* Ty, uint64_t V,
77                               bool isSigned = false);
78                               
79   /// Return a ConstantInt with the specified integer value for the specified
80   /// type. If the type is wider than 64 bits, the value will be zero-extended
81   /// to fit the type, unless isSigned is true, in which case the value will
82   /// be interpreted as a 64-bit signed integer and sign-extended to fit
83   /// the type.
84   /// @brief Get a ConstantInt for a specific value.
85   ConstantInt* getConstantInt(const IntegerType* Ty, uint64_t V,
86                               bool isSigned = false);
87
88   /// Return a ConstantInt with the specified value for the specified type. The
89   /// value V will be canonicalized to a an unsigned APInt. Accessing it with
90   /// either getSExtValue() or getZExtValue() will yield a correctly sized and
91   /// signed value for the type Ty.
92   /// @brief Get a ConstantInt for a specific signed value.
93   ConstantInt* getConstantIntSigned(const IntegerType* Ty, int64_t V);
94   Constant *getConstantIntSigned(const Type *Ty, int64_t V);
95   
96   /// Return a ConstantInt with the specified value and an implied Type. The
97   /// type is the integer type that corresponds to the bit width of the value.
98   ConstantInt* getConstantInt(const APInt& V);
99   
100   /// If Ty is a vector type, return a Constant with a splat of the given
101   /// value. Otherwise return a ConstantInt for the given value.
102   Constant* getConstantInt(const Type* Ty, const APInt& V);
103   
104   // ConstantPointerNull accessors
105   ConstantPointerNull* getConstantPointerNull(const PointerType* T);
106   
107   // ConstantStruct accessors
108   Constant* getConstantStruct(const StructType* T,
109                               const std::vector<Constant*>& V);
110   Constant* getConstantStruct(const std::vector<Constant*>& V,
111                               bool Packed = false);
112   Constant* getConstantStruct(Constant* const *Vals, unsigned NumVals,
113                               bool Packed = false);
114                               
115   // ConstantAggregateZero accessors
116   ConstantAggregateZero* getConstantAggregateZero(const Type* Ty);
117   
118   // ConstantArray accessors
119   Constant* getConstantArray(const ArrayType* T,
120                              const std::vector<Constant*>& V);
121   Constant* getConstantArray(const ArrayType* T, Constant* const* Vals,
122                              unsigned NumVals);
123                              
124   /// This method constructs a ConstantArray and initializes it with a text
125   /// string. The default behavior (AddNull==true) causes a null terminator to
126   /// be placed at the end of the array. This effectively increases the length
127   /// of the array by one (you've been warned).  However, in some situations 
128   /// this is not desired so if AddNull==false then the string is copied without
129   /// null termination.
130   Constant* getConstantArray(const std::string& Initializer,
131                              bool AddNull = true);
132                              
133   // ConstantExpr accessors
134   Constant* getConstantExpr(unsigned Opcode, Constant* C1, Constant* C2);
135   Constant* getConstantExprTrunc(Constant* C, const Type* Ty);
136   Constant* getConstantExprSExt(Constant* C, const Type* Ty);
137   Constant* getConstantExprZExt(Constant* C, const Type* Ty);
138   Constant* getConstantExprFPTrunc(Constant* C, const Type* Ty);
139   Constant* getConstantExprFPExtend(Constant* C, const Type* Ty);
140   Constant* getConstantExprUIToFP(Constant* C, const Type* Ty);
141   Constant* getConstantExprSIToFP(Constant* C, const Type* Ty);
142   Constant* getConstantExprFPToUI(Constant* C, const Type* Ty);
143   Constant* getConstantExprFPToSI(Constant* C, const Type* Ty);
144   Constant* getConstantExprPtrToInt(Constant* C, const Type* Ty);
145   Constant* getConstantExprIntToPtr(Constant* C, const Type* Ty);
146   Constant* getConstantExprBitCast(Constant* C, const Type* Ty);
147   Constant* getConstantExprCast(unsigned ops, Constant* C, const Type* Ty);
148   Constant* getConstantExprZExtOrBitCast(Constant* C, const Type* Ty);
149   Constant* getConstantExprSExtOrBitCast(Constant* C, const Type* Ty);
150   Constant* getConstantExprTruncOrBitCast(Constant* C, const Type* Ty);
151   Constant* getConstantExprPointerCast(Constant* C, const Type* Ty);
152   Constant* getConstantExprIntegerCast(Constant* C, const Type* Ty,
153                                        bool isSigned);
154   Constant* getConstantExprFPCast(Constant* C, const Type* Ty);
155   Constant* getConstantExprSelect(Constant* C, Constant* V1, Constant* V2);
156   
157   /// getAlignOf constant expr - computes the alignment of a type in a target
158   /// independent way (Note: the return type is an i32; Note: assumes that i8
159   /// is byte aligned).
160   ///
161   Constant* getConstantExprAlignOf(const Type* Ty);
162   Constant* getConstantExprCompare(unsigned short pred,
163                                    Constant* C1, Constant* C2);
164   Constant* getConstantExprNeg(Constant* C);
165   Constant* getConstantExprFNeg(Constant* C);
166   Constant* getConstantExprNot(Constant* C);
167   Constant* getConstantExprAdd(Constant* C1, Constant* C2);
168   Constant* getConstantExprFAdd(Constant* C1, Constant* C2);
169   Constant* getConstantExprSub(Constant* C1, Constant* C2);
170   Constant* getConstantExprFSub(Constant* C1, Constant* C2);
171   Constant* getConstantExprMul(Constant* C1, Constant* C2);
172   Constant* getConstantExprFMul(Constant* C1, Constant* C2);
173   Constant* getConstantExprUDiv(Constant* C1, Constant* C2);
174   Constant* getConstantExprSDiv(Constant* C1, Constant* C2);
175   Constant* getConstantExprFDiv(Constant* C1, Constant* C2);
176   Constant* getConstantExprURem(Constant* C1, Constant* C2);
177   Constant* getConstantExprSRem(Constant* C1, Constant* C2);
178   Constant* getConstantExprFRem(Constant* C1, Constant* C2);
179   Constant* getConstantExprAnd(Constant* C1, Constant* C2);
180   Constant* getConstantExprOr(Constant* C1, Constant* C2);
181   Constant* getConstantExprXor(Constant* C1, Constant* C2);
182   Constant* getConstantExprICmp(unsigned short pred, Constant* LHS,
183                                 Constant* RHS);
184   Constant* getConstantExprFCmp(unsigned short pred, Constant* LHS,
185                                 Constant* RHS);
186   Constant* getConstantExprShl(Constant* C1, Constant* C2);
187   Constant* getConstantExprLShr(Constant* C1, Constant* C2);
188   Constant* getConstantExprAShr(Constant* C1, Constant* C2);
189   Constant* getConstantExprGetElementPtr(Constant* C, Constant* const* IdxList, 
190                                          unsigned NumIdx);
191   Constant* getConstantExprGetElementPtr(Constant* C, Value* const* IdxList, 
192                                           unsigned NumIdx);
193   Constant* getConstantExprExtractElement(Constant* Vec, Constant* Idx);
194   Constant* getConstantExprInsertElement(Constant* Vec, Constant* Elt,
195                                          Constant* Idx);
196   Constant* getConstantExprShuffleVector(Constant* V1, Constant* V2,
197                                          Constant* Mask);
198   Constant* getConstantExprExtractValue(Constant* Agg, const unsigned* IdxList, 
199                                         unsigned NumIdx);
200   Constant* getConstantExprInsertValue(Constant* Agg, Constant* Val,
201                                        const unsigned* IdxList,
202                                        unsigned NumIdx);
203
204   /// getSizeOf constant expr - computes the size of a type in a target
205   /// independent way (Note: the return type is an i64).
206   ///
207   Constant* getConstantExprSizeOf(const Type* Ty);
208   
209   /// Floating point negation must be implemented with f(x) = -0.0 - x. This
210   /// method returns the negative zero constant for floating point or vector
211   /// floating point types; for all other types, it returns the null value.
212   Constant* getZeroValueForNegation(const Type* Ty);
213   
214   // ConstantFP accessors
215   ConstantFP* getConstantFP(const APFloat& V);
216   
217   /// get() - This returns a ConstantFP, or a vector containing a splat of a
218   /// ConstantFP, for the specified value in the specified type.  This should
219   /// only be used for simple constant values like 2.0/1.0 etc, that are
220   /// known-valid both as host double and as the target format.
221   Constant* getConstantFP(const Type* Ty, double V);
222   ConstantFP* getConstantFPNegativeZero(const Type* Ty);
223   
224   // ConstantVector accessors
225   Constant* getConstantVector(const VectorType* T,
226                               const std::vector<Constant*>& V);
227   Constant* getConstantVector(const std::vector<Constant*>& V);
228   Constant* getConstantVector(Constant* const* Vals, unsigned NumVals);
229   
230   // MDNode accessors
231   MDNode* getMDNode(Value* const* Vals, unsigned NumVals);
232   
233   // MDString accessors
234   MDString* getMDString(const char *StrBegin, const char *StrEnd);
235   MDString* getMDString(const std::string &Str);
236   
237   // FunctionType accessors
238   FunctionType* getFunctionType(const Type* Result, bool isVarArg);
239   FunctionType* getFunctionType(const Type* Result,
240                                 const std::vector<const Type*>& Params,
241                                 bool isVarArg);
242                                 
243   // IntegerType accessors
244   const IntegerType* getIntegerType(unsigned NumBits);
245   
246   // OpaqueType accessors
247   OpaqueType* getOpaqueType();
248   
249   // StructType accessors
250   StructType* getStructType(bool isPacked=false);
251   StructType* getStructType(const std::vector<const Type*>& Params,
252                             bool isPacked = false);
253   StructType* getStructType(const Type* type, ...);
254   
255   // ArrayType accessors
256   ArrayType* getArrayType(const Type* ElementType, uint64_t NumElements);
257   
258   // PointerType accessors
259   PointerType* getPointerType(const Type* ElementType, unsigned AddressSpace);
260   PointerType* getPointerTypeUnqual(const Type* ElementType);
261   
262   // VectorType accessors
263   VectorType* getVectorType(const Type* ElementType, unsigned NumElements);
264   VectorType* getVectorTypeInteger(const VectorType* VTy);
265   VectorType* getVectorTypeExtendedElement(const VectorType* VTy);
266   VectorType* getVectorTypeTruncatedElement(const VectorType* VTy);
267   
268   // Other helpers
269   /// @brief Create a result type for fcmp/icmp
270   const Type* makeCmpResultType(const Type* opnd_type);
271   
272   // Methods for erasing constants
273   void erase(MDString *M);
274   void erase(MDNode *M);
275 };
276
277 /// FOR BACKWARDS COMPATIBILITY - Returns a global context.
278 extern LLVMContext& getGlobalContext();
279
280 }
281
282 #endif