76b0ac8177c7eacd1452e25d61376c50fe199cad
[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   Constant* getAllOnesValue(const Type* Ty);
62   
63   // UndefValue accessors
64   UndefValue* getUndef(const Type* Ty);
65   
66   // ConstantInt accessors
67   ConstantInt* getConstantIntTrue();
68   ConstantInt* getConstantIntFalse();
69   Constant* getConstantInt(const Type* Ty, uint64_t V,
70                               bool isSigned = false);
71   ConstantInt* getConstantInt(const IntegerType* Ty, uint64_t V,
72                               bool isSigned = false);
73   ConstantInt* getConstantIntSigned(const IntegerType* Ty, int64_t V);
74   ConstantInt* getConstantInt(const APInt& V);
75   Constant* getConstantInt(const Type* Ty, const APInt& V);
76   ConstantInt* getConstantIntAllOnesValue(const Type* Ty);
77   
78   // ConstantPointerNull accessors
79   ConstantPointerNull* getConstantPointerNull(const PointerType* T);
80   
81   // ConstantStruct accessors
82   Constant* getConstantStruct(const StructType* T,
83                               const std::vector<Constant*>& V);
84   Constant* getConstantStruct(const std::vector<Constant*>& V,
85                               bool Packed = false);
86   Constant* getConstantStruct(Constant* const *Vals, unsigned NumVals,
87                               bool Packed = false);
88                               
89   // ConstantAggregateZero accessors
90   ConstantAggregateZero* getConstantAggregateZero(const Type* Ty);
91   
92   // ConstantArray accessors
93   Constant* getConstantArray(const ArrayType* T,
94                              const std::vector<Constant*>& V);
95   Constant* getConstantArray(const ArrayType* T, Constant* const* Vals,
96                              unsigned NumVals);
97   Constant* getConstantArray(const std::string& Initializer,
98                              bool AddNull = false);
99                              
100   // ConstantExpr accessors
101   Constant* getConstantExpr(unsigned Opcode, Constant* C1, Constant* C2);
102   Constant* getConstantExprTrunc(Constant* C, const Type* Ty);
103   Constant* getConstantExprSExt(Constant* C, const Type* Ty);
104   Constant* getConstantExprZExt(Constant* C, const Type* Ty);
105   Constant* getConstantExprFPTrunc(Constant* C, const Type* Ty);
106   Constant* getConstantExprFPExtend(Constant* C, const Type* Ty);
107   Constant* getConstantExprUIToFP(Constant* C, const Type* Ty);
108   Constant* getConstantExprSIToFP(Constant* C, const Type* Ty);
109   Constant* getConstantExprFPToUI(Constant* C, const Type* Ty);
110   Constant* getConstantExprFPToSI(Constant* C, const Type* Ty);
111   Constant* getConstantExprPtrToInt(Constant* C, const Type* Ty);
112   Constant* getConstantExprIntToPtr(Constant* C, const Type* Ty);
113   Constant* getConstantExprBitCast(Constant* C, const Type* Ty);
114   Constant* getConstantExprCast(unsigned ops, Constant* C, const Type* Ty);
115   Constant* getConstantExprZExtOrBitCast(Constant* C, const Type* Ty);
116   Constant* getConstantExprSExtOrBitCast(Constant* C, const Type* Ty);
117   Constant* getConstantExprTruncOrBitCast(Constant* C, const Type* Ty);
118   Constant* getConstantExprPointerCast(Constant* C, const Type* Ty);
119   Constant* getConstantExprIntegerCast(Constant* C, const Type* Ty,
120                                        bool isSigned);
121   Constant* getConstantExprFPCast(Constant* C, const Type* Ty);
122   Constant* getConstantExprSelect(Constant* C, Constant* V1, Constant* V2);
123   Constant* getConstantExprAlignOf(const Type* Ty);
124   Constant* getConstantExprCompare(unsigned short pred,
125                                    Constant* C1, Constant* C2);
126   Constant* getConstantExprNeg(Constant* C);
127   Constant* getConstantExprFNeg(Constant* C);
128   Constant* getConstantExprNot(Constant* C);
129   Constant* getConstantExprAdd(Constant* C1, Constant* C2);
130   Constant* getConstantExprFAdd(Constant* C1, Constant* C2);
131   Constant* getConstantExprSub(Constant* C1, Constant* C2);
132   Constant* getConstantExprFSub(Constant* C1, Constant* C2);
133   Constant* getConstantExprMul(Constant* C1, Constant* C2);
134   Constant* getConstantExprFMul(Constant* C1, Constant* C2);
135   Constant* getConstantExprUDiv(Constant* C1, Constant* C2);
136   Constant* getConstantExprSDiv(Constant* C1, Constant* C2);
137   Constant* getConstantExprFDiv(Constant* C1, Constant* C2);
138   Constant* getConstantExprURem(Constant* C1, Constant* C2);
139   Constant* getConstantExprSRem(Constant* C1, Constant* C2);
140   Constant* getConstantExprFRem(Constant* C1, Constant* C2);
141   Constant* getConstantExprAnd(Constant* C1, Constant* C2);
142   Constant* getConstantExprOr(Constant* C1, Constant* C2);
143   Constant* getConstantExprXor(Constant* C1, Constant* C2);
144   Constant* getConstantExprICmp(unsigned short pred, Constant* LHS,
145                                 Constant* RHS);
146   Constant* getConstantExprFCmp(unsigned short pred, Constant* LHS,
147                                 Constant* RHS);
148   Constant* getConstantExprVICmp(unsigned short pred, Constant* LHS,
149                                  Constant* RHS);
150   Constant* getConstantExprVFCmp(unsigned short pred, Constant* LHS,
151                                  Constant* RHS);
152   Constant* getConstantExprShl(Constant* C1, Constant* C2);
153   Constant* getConstantExprLShr(Constant* C1, Constant* C2);
154   Constant* getConstantExprAShr(Constant* C1, Constant* C2);
155   Constant* getConstantExprGetElementPtr(Constant* C, Constant* const* IdxList, 
156                                          unsigned NumIdx);
157   Constant* getConstantExprGetElementPtr(Constant* C, Value* const* IdxList, 
158                                           unsigned NumIdx);
159   Constant* getConstantExprExtractElement(Constant* Vec, Constant* Idx);
160   Constant* getConstantExprInsertElement(Constant* Vec, Constant* Elt,
161                                          Constant* Idx);
162   Constant* getConstantExprShuffleVector(Constant* V1, Constant* V2,
163                                          Constant* Mask);
164   Constant* getConstantExprExtractValue(Constant* Agg, const unsigned* IdxList, 
165                                         unsigned NumIdx);
166   Constant* getConstantExprInsertValue(Constant* Agg, Constant* Val,
167                                        const unsigned* IdxList,
168                                        unsigned NumIdx);
169   Constant* getZeroValueForNegation(const Type* Ty);
170   
171   // ConstantFP accessors
172   ConstantFP* getConstantFP(const APFloat& V);
173   Constant* getConstantFP(const Type* Ty, double V);
174   ConstantFP* getConstantFPNegativeZero(const Type* Ty);
175   
176   // ConstantVector accessors
177   Constant* getConstantVector(const VectorType* T,
178                               const std::vector<Constant*>& V);
179   Constant* getConstantVector(const std::vector<Constant*>& V);
180   Constant* getConstantVector(Constant* const* Vals, unsigned NumVals);
181   ConstantVector* getConstantVectorAllOnes(const VectorType* Ty);
182   
183   // MDNode accessors
184   MDNode* getMDNode(Value* const* Vals, unsigned NumVals);
185   
186   // MDString accessors
187   MDString* getMDString(const char *StrBegin, const char *StrEnd);
188   MDString* getMDString(const std::string &Str);
189   
190   // FunctionType accessors
191   FunctionType* getFunctionType(const Type* Result,
192                                 const std::vector<const Type*>& Params,
193                                 bool isVarArg);
194                                 
195   // IntegerType accessors
196   const IntegerType* getIntegerType(unsigned NumBits);
197   
198   // OpaqueType accessors
199   OpaqueType* getOpaqueType();
200   
201   // StructType accessors
202   StructType* getStructType(bool isPacked=false);
203   StructType* getStructType(const std::vector<const Type*>& Params,
204                             bool isPacked = false);
205   
206   // ArrayType accessors
207   ArrayType* getArrayType(const Type* ElementType, uint64_t NumElements);
208   
209   // PointerType accessors
210   PointerType* getPointerType(const Type* ElementType, unsigned AddressSpace);
211   PointerType* getPointerTypeUnqual(const Type* ElementType);
212   
213   // VectorType accessors
214   VectorType* getVectorType(const Type* ElementType, unsigned NumElements);
215   VectorType* getVectorTypeInteger(const VectorType* VTy);
216   VectorType* getVectorTypeExtendedElement(const VectorType* VTy);
217   VectorType* getVectorTypeTruncatedElement(const VectorType* VTy);
218 };
219
220 /// FOR BACKWARDS COMPATIBILITY - Returns a global context.
221 extern LLVMContext& getGlobalContext();
222
223 }
224
225 #endif