HomeSort by relevance Sort by last modified time
    Searched refs:LLVMContext (Results 1 - 25 of 1084) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/IRReader/
IRReader.h 26 class LLVMContext;
34 getLazyIRFileModule(StringRef Filename, SMDiagnostic &Err, LLVMContext &Context,
41 LLVMContext &Context);
47 LLVMContext &Context);
  /external/swiftshader/third_party/LLVM/include/llvm/Assembly/
Parser.h 25 class LLVMContext;
36 LLVMContext &Context ///< Context in which to allocate globals info.
49 LLVMContext &Context
60 LLVMContext &Context
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IRReader/
IRReader.h 26 class LLVMContext;
34 getLazyIRFileModule(StringRef Filename, SMDiagnostic &Err, LLVMContext &Context,
41 LLVMContext &Context);
47 LLVMContext &Context);
  /external/swiftshader/third_party/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
30 /// LLVMContext itself provides no locking guarantees, so you should be careful
32 class LLVMContext {
35 LLVMContext();
36 ~LLVMContext();
47 /// This ID is uniqued across modules in the current LLVMContext.
51 /// custom metadata IDs registered in this LLVMContext.
63 /// LLVMContext doesn't take ownership or interpret either of these
88 LLVMContext(LLVMContext&)
    [all...]
Type.h 26 class LLVMContext;
74 /// Context - This refers to the LLVMContext in which this type was uniqued.
75 LLVMContext &Context;
82 explicit Type(LLVMContext &C, TypeID tid)
109 /// getContext - Return the LLVMContext in which this type was uniqued.
110 LLVMContext &getContext() const { return Context; }
302 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
307 static Type *getVoidTy(LLVMContext &C);
308 static Type *getLabelTy(LLVMContext &C);
309 static Type *getFloatTy(LLVMContext &C)
    [all...]
Metadata.h 27 class LLVMContext;
42 explicit MDString(LLVMContext &C, StringRef S);
45 static MDString *get(LLVMContext &Context, StringRef Str);
46 static MDString *get(LLVMContext &Context, const char *Str) {
114 MDNode(LLVMContext &C, ArrayRef<Value*> Vals, bool isFunctionLocal);
116 static MDNode *getMDNode(LLVMContext &C, ArrayRef<Value*> Vals,
120 static MDNode *get(LLVMContext &Context, ArrayRef<Value*> Vals);
123 static MDNode *getWhenValsUnresolved(LLVMContext &Context,
127 static MDNode *getIfExists(LLVMContext &Context, ArrayRef<Value*> Vals);
132 static MDNode *getTemporary(LLVMContext &Context, ArrayRef<Value*> Vals)
    [all...]
  /external/clang/include/clang/CodeGen/
CodeGenAction.h 17 class LLVMContext;
31 llvm::LLVMContext *VMContext;
38 CodeGenAction(unsigned _Act, llvm::LLVMContext *_VMContext = nullptr);
64 llvm::LLVMContext *takeLLVMContext();
72 EmitAssemblyAction(llvm::LLVMContext *_VMContext = nullptr);
78 EmitBCAction(llvm::LLVMContext *_VMContext = nullptr);
84 EmitLLVMAction(llvm::LLVMContext *_VMContext = nullptr);
90 EmitLLVMOnlyAction(llvm::LLVMContext *_VMContext = nullptr);
96 EmitCodeGenOnlyAction(llvm::LLVMContext *_VMContext = nullptr);
102 EmitObjAction(llvm::LLVMContext *_VMContext = nullptr)
    [all...]
  /external/swiftshader/third_party/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)) {
47 LLVMContext::~LLVMContext() { delete pImpl;
    [all...]
  /external/llvm/lib/IR/
LLVMContext.cpp 1 //===-- LLVMContext.cpp - Implement LLVMContext ---------------------------===//
10 // This file implements LLVMContext, as a wrapper around the opaque
15 #include "llvm/IR/LLVMContext.h"
35 LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl(*this)) {
142 assert(DeoptEntry->second == LLVMContext::OB_deopt &&
147 assert(FuncletEntry->second == LLVMContext::OB_funclet &&
152 assert(GCTransitionEntry->second == LLVMContext::OB_gc_transition &&
157 LLVMContext::~LLVMContext() { delete pImpl;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
LLVMContext.cpp 1 //===-- LLVMContext.cpp - Implement LLVMContext ---------------------------===//
10 // This file implements LLVMContext, as a wrapper around the opaque
15 #include "llvm/IR/LLVMContext.h"
35 LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl(*this)) {
73 assert(DeoptEntry->second == LLVMContext::OB_deopt &&
78 assert(FuncletEntry->second == LLVMContext::OB_funclet &&
83 assert(GCTransitionEntry->second == LLVMContext::OB_gc_transition &&
100 LLVMContext::~LLVMContext() { delete pImpl;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IRReader/
IRReader.h 27 class LLVMContext;
35 getLazyIRFileModule(StringRef Filename, SMDiagnostic &Err, LLVMContext &Context,
46 LLVMContext &Context,
58 LLVMContext &Context,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPULegalizerInfo.h 23 class LLVMContext;
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/llvm_gpu_backend/
utils.h 25 class LLVMContext;
37 llvm::LLVMContext* llvm_context);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
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
46 /// LLVMContext itself provides no locking guarantees, so you should be careful
48 class LLVMContext {
51 LLVMContext();
52 LLVMContext(LLVMContext &) = delete;
53 LLVMContext &operator=(const LLVMContext &) = delete;
54 ~LLVMContext();
    [all...]
Type.h 32 class LLVMContext;
79 /// This refers to the LLVMContext in which this type was uniqued.
80 LLVMContext &Context;
89 explicit Type(LLVMContext &C, TypeID tid)
127 /// Return the LLVMContext in which this type was uniqued.
128 LLVMContext &getContext() const { return Context; }
372 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
377 static Type *getVoidTy(LLVMContext &C);
378 static Type *getLabelTy(LLVMContext &C);
379 static Type *getHalfTy(LLVMContext &C)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Type.h 33 class LLVMContext;
80 /// This refers to the LLVMContext in which this type was uniqued.
81 LLVMContext &Context;
91 explicit Type(LLVMContext &C, TypeID tid)
129 /// Return the LLVMContext in which this type was uniqued.
130 LLVMContext &getContext() const { return Context; }
390 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
395 static Type *getVoidTy(LLVMContext &C);
396 static Type *getLabelTy(LLVMContext &C);
397 static Type *getHalfTy(LLVMContext &C)
    [all...]
  /external/llvm/include/llvm/IR/
Type.h 32 class LLVMContext;
79 /// This refers to the LLVMContext in which this type was uniqued.
80 LLVMContext &Context;
87 explicit Type(LLVMContext &C, TypeID tid)
125 /// Return the LLVMContext in which this type was uniqued.
126 LLVMContext &getContext() const { return Context; }
361 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
366 static Type *getVoidTy(LLVMContext &C);
367 static Type *getLabelTy(LLVMContext &C);
368 static Type *getHalfTy(LLVMContext &C)
    [all...]
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
41 /// LLVMContext itself provides no locking guarantees, so you should be careful
43 class LLVMContext {
46 LLVMContext();
47 ~LLVMContext();
85 /// This ID is uniqued across modules in the current LLVMContext.
89 /// custom metadata IDs registered in this LLVMContext.
93 /// bundle tags registered in this LLVMContext. The bundle tags are ordered
95 /// \see LLVMContext::getOperandBundleTagI
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
LeakDetector.h 29 class LLVMContext;
60 static void checkForGarbage(LLVMContext &C, const std::string &Message) {
87 static void checkForGarbageImpl(LLVMContext &C, const std::string &Message);
DebugLoc.h 22 class LLVMContext;
52 /// decoded by LLVMContext. 0 is unknown.
81 MDNode *getScope(const LLVMContext &Ctx) const;
85 MDNode *getInlinedAt(const LLVMContext &Ctx) const;
89 const LLVMContext &Ctx) const;
94 MDNode *getAsMDNode(const LLVMContext &Ctx) const;
101 void dump(const LLVMContext &Ctx) const;
  /external/llvm/include/llvm/LTO/
LTO.h 24 class LLVMContext;
30 LLVMContext &Context, bool Lazy);
36 LLVMContext &Context;
43 ModuleLoader(LLVMContext &Context, StringMap<MemoryBufferRef> &ModuleMap)
  /external/llvm/include/llvm/
LinkAllIR.h 22 #include "llvm/IR/LLVMContext.h"
46 llvm::LLVMContext Context;
  /external/llvm/unittests/ExecutionEngine/Orc/
OrcTestCommon.cpp 20 ModuleBuilder::ModuleBuilder(LLVMContext &Context, StringRef Triple,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/
LinkAllIR.h 22 #include "llvm/IR/LLVMContext.h"
44 llvm::LLVMContext Context;
  /external/llvm/tools/opt/
NewPMDriver.h 26 class LLVMContext;
50 bool runPassPipeline(StringRef Arg0, LLVMContext &Context, Module &M,

Completed in 816 milliseconds

1 2 3 4 5 6 7 8 91011>>