2009-06-30 02:48:55 +02:00
|
|
|
//===-- llvm/LLVMContext.h - Class for managing "global" state --*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-06-30 19:06:46 +02:00
|
|
|
//
|
|
|
|
// This file declares LLVMContext, a container of "global" state in LLVM, such
|
|
|
|
// as the global type and constant uniquing tables.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-06-30 02:48:55 +02:00
|
|
|
|
|
|
|
#ifndef LLVM_LLVMCONTEXT_H
|
|
|
|
#define LLVM_LLVMCONTEXT_H
|
|
|
|
|
|
|
|
#include "llvm/Support/DataTypes.h"
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2009-07-25 08:02:13 +02:00
|
|
|
class APFloat;
|
|
|
|
class APInt;
|
|
|
|
class ArrayType;
|
2009-06-30 02:48:55 +02:00
|
|
|
class Constant;
|
|
|
|
class ConstantAggregateZero;
|
|
|
|
class ConstantArray;
|
|
|
|
class ConstantFP;
|
2009-07-25 08:02:13 +02:00
|
|
|
class ConstantInt;
|
|
|
|
class ConstantPointerNull;
|
|
|
|
class ConstantStruct;
|
2009-06-30 02:48:55 +02:00
|
|
|
class ConstantVector;
|
2009-07-25 08:02:13 +02:00
|
|
|
class FunctionType;
|
|
|
|
class IntegerType;
|
2009-08-05 00:41:48 +02:00
|
|
|
struct LLVMContextImpl;
|
2009-07-02 19:12:48 +02:00
|
|
|
class MDNode;
|
2009-07-02 19:19:47 +02:00
|
|
|
class MDString;
|
2009-07-25 08:02:13 +02:00
|
|
|
class OpaqueType;
|
2009-06-30 02:48:55 +02:00
|
|
|
class PointerType;
|
2009-07-25 08:02:13 +02:00
|
|
|
class StringRef;
|
2009-06-30 02:48:55 +02:00
|
|
|
class StructType;
|
|
|
|
class Type;
|
2009-07-25 08:02:13 +02:00
|
|
|
class UndefValue;
|
2009-07-21 22:55:28 +02:00
|
|
|
class Use;
|
2009-07-25 08:02:13 +02:00
|
|
|
class Value;
|
|
|
|
class VectorType;
|
2009-06-30 02:48:55 +02:00
|
|
|
|
2009-06-30 19:06:46 +02:00
|
|
|
/// This is an important class for using LLVM in a threaded context. It
|
|
|
|
/// (opaquely) owns and manages the core "global" data of LLVM's core
|
|
|
|
/// infrastructure, including the type and constant uniquing tables.
|
|
|
|
/// LLVMContext itself provides no locking guarantees, so you should be careful
|
|
|
|
/// to have one context per thread.
|
2009-08-04 22:25:11 +02:00
|
|
|
struct LLVMContext {
|
2009-06-30 02:48:55 +02:00
|
|
|
LLVMContextImpl* pImpl;
|
2009-07-25 01:12:02 +02:00
|
|
|
|
2009-06-30 02:48:55 +02:00
|
|
|
LLVMContext();
|
|
|
|
~LLVMContext();
|
|
|
|
};
|
|
|
|
|
2009-07-01 01:39:59 +02:00
|
|
|
/// FOR BACKWARDS COMPATIBILITY - Returns a global context.
|
2009-07-02 01:13:44 +02:00
|
|
|
extern LLVMContext& getGlobalContext();
|
2009-07-01 01:39:59 +02:00
|
|
|
|
2009-06-30 02:48:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|