HomeSort by relevance Sort by last modified time
    Searched defs:LLVMContext (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/
LLVMContext.h 1 //===-- llvm/LLVMContext.h - Class for managing "global" state --*- C++ -*-===//
10 // This file declares LLVMContext, a container of "global" state in LLVM, such
31 /// LLVMContext itself provides no locking guarantees, so you should be careful
33 class LLVMContext {
36 LLVMContext();
37 ~LLVMContext();
50 /// This ID is uniqued across modules in the current LLVMContext.
54 /// custom metadata IDs registered in this LLVMContext.
66 /// LLVMContext doesn't take ownership or interpret either of these
91 LLVMContext(LLVMContext&)
    [all...]
  /external/llvm/lib/VMCore/
LLVMContext.cpp 1 //===-- LLVMContext.cpp - Implement LLVMContext -----------------------===//
10 // This file implements LLVMContext, as a wrapper around the opaque
15 #include "llvm/LLVMContext.h"
25 static ManagedStatic<LLVMContext> GlobalContext;
27 LLVMContext& llvm::getGlobalContext() {
31 LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl(*this)) {
57 LLVMContext::~LLVMContext() { delete pImpl;
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 41 #include "llvm/LLVMContext.h"
82 llvm::LLVMContext &LLVMContext = M.getContext();
83 VoidTy = llvm::Type::getVoidTy(LLVMContext);
84 Int8Ty = llvm::Type::getInt8Ty(LLVMContext);
85 Int16Ty = llvm::Type::getInt16Ty(LLVMContext);
86 Int32Ty = llvm::Type::getInt32Ty(LLVMContext);
87 Int64Ty = llvm::Type::getInt64Ty(LLVMContext);
88 FloatTy = llvm::Type::getFloatTy(LLVMContext);
89 DoubleTy = llvm::Type::getDoubleTy(LLVMContext);
    [all...]

Completed in 42 milliseconds