HomeSort by: relevance | last modified time | path
    Searched defs:ExecutionEngine (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
executionengine.go 1 //===- executionengine.go - Bindings for executionengine ------------------===//
9 // This file defines bindings for the executionengine component.
17 #include "llvm-c/ExecutionEngine.h"
30 type ExecutionEngine struct {
88 // llvm.ExecutionEngine
91 func NewExecutionEngine(m Module) (ee ExecutionEngine, err error) {
102 func NewInterpreter(m Module) (ee ExecutionEngine, err error) {
119 func NewMCJITCompiler(m Module, options MCJITCompilerOptions) (ee ExecutionEngine, err error) {
130 func (ee ExecutionEngine) Dispose() { C.LLVMDisposeExecutionEngine(ee.C)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 1 //===-- ExecutionEngine.cpp - Common Implementation shared by EEs ---------===//
16 #include "llvm/ExecutionEngine/ExecutionEngine.h"
20 #include "llvm/ExecutionEngine/GenericValue.h"
21 #include "llvm/ExecutionEngine/JITEventListener.h"
22 #include "llvm/ExecutionEngine/ObjectCache.h"
23 #include "llvm/ExecutionEngine/RTDyldMemoryManager.h"
50 ExecutionEngine *(*ExecutionEngine::MCJITCtor)(
56 ExecutionEngine *(*ExecutionEngine::InterpCtor)(std::unique_ptr<Module> M
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 1 //===- ExecutionEngine.h - Abstract Execution Engine Interface --*- C++ -*-===//
17 #include "llvm-c/ExecutionEngine.h"
23 #include "llvm/ExecutionEngine/JITSymbol.h"
24 #include "llvm/ExecutionEngine/OrcV1Deprecation.h"
100 class ExecutionEngine {
112 /// ExecutionEngine across context, we don't enforce this rule but undefined
139 static ExecutionEngine *(*MCJITCtor)(
145 static ExecutionEngine *(*InterpCtor)(std::unique_ptr<Module> M,
159 /// lock - This lock protects the ExecutionEngine and MCJIT classes. It must
164 // ExecutionEngine Startu
    [all...]

Completed in 72 milliseconds