60da89eb4acbb28e96db6a2c522d17cdb0806372
[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 = true);
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* getConstantExprShl(Constant* C1, Constant* C2);
149   Constant* getConstantExprLShr(Constant* C1, Constant* C2);
150   Constant* getConstantExprAShr(Constant* C1, Constant* C2);
151   Constant* getConstantExprGetElementPtr(Constant* C, Constant* const* IdxList, 
152                                          unsigned NumIdx);
153   Constant* getConstantExprGetElementPtr(Constant* C, Value* const* IdxList, 
154                                           unsigned NumIdx);
155   Constant* getConstantExprExtractElement(Constant* Vec, Constant* Idx);
156   Constant* getConstantExprInsertElement(Constant* Vec, Constant* Elt,
157                                          Constant* Idx);
158   Constant* getConstantExprShuffleVector(Constant* V1, Constant* V2,
159                                          Constant* Mask);
160   Constant* getConstantExprExtractValue(Constant* Agg, const unsigned* IdxList, 
161                                         unsigned NumIdx);
162   Constant* getConstantExprInsertValue(Constant* Agg, Constant* Val,
163                                        const unsigned* IdxList,
164                                        unsigned NumIdx);
165   Constant* getConstantExprSizeOf(const Type* Ty);
166   Constant* getZeroValueForNegation(const Type* Ty);
167   
168   // ConstantFP accessors
169   ConstantFP* getConstantFP(const APFloat& V);
170   Constant* getConstantFP(const Type* Ty, double V);
171   ConstantFP* getConstantFPNegativeZero(const Type* Ty);
172   
173   // ConstantVector accessors
174   Constant* getConstantVector(const VectorType* T,
175                               const std::vector<Constant*>& V);
176   Constant* getConstantVector(const std::vector<Constant*>& V);
177   Constant* getConstantVector(Constant* const* Vals, unsigned NumVals);
178   ConstantVector* getConstantVectorAllOnesValue(const VectorType* Ty);
179   
180   // MDNode accessors
181   MDNode* getMDNode(Value* const* Vals, unsigned NumVals);
182   
183   // MDString accessors
184   MDString* getMDString(const char *StrBegin, const char *StrEnd);
185   MDString* getMDString(const std::string &Str);
186   
187   // FunctionType accessors
188   FunctionType* getFunctionType(const Type* Result, bool isVarArg);
189   FunctionType* getFunctionType(const Type* Result,
190                                 const std::vector<const Type*>& Params,
191                                 bool isVarArg);
192                                 
193   // IntegerType accessors
194   const IntegerType* getIntegerType(unsigned NumBits);
195   
196   // OpaqueType accessors
197   OpaqueType* getOpaqueType();
198   
199   // StructType accessors
200   StructType* getStructType(bool isPacked=false);
201   StructType* getStructType(const std::vector<const Type*>& Params,
202                             bool isPacked = false);
203   
204   // ArrayType accessors
205   ArrayType* getArrayType(const Type* ElementType, uint64_t NumElements);
206   
207   // PointerType accessors
208   PointerType* getPointerType(const Type* ElementType, unsigned AddressSpace);
209   PointerType* getPointerTypeUnqual(const Type* ElementType);
210   
211   // VectorType accessors
212   VectorType* getVectorType(const Type* ElementType, unsigned NumElements);
213   VectorType* getVectorTypeInteger(const VectorType* VTy);
214   VectorType* getVectorTypeExtendedElement(const VectorType* VTy);
215   VectorType* getVectorTypeTruncatedElement(const VectorType* VTy);
216 };
217
218 /// FOR BACKWARDS COMPATIBILITY - Returns a global context.
219 extern LLVMContext& getGlobalContext();
220
221 }
222
223 #endif