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

1 2 3 4

  /external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/
Makefile 1 ##===- unittests/ExecutionEngine/Makefile ------------------*- Makefile -*-===##
11 TESTNAME = ExecutionEngine
  /external/swiftshader/third_party/LLVM/unittests/
Makefile 12 PARALLEL_DIRS = ADT ExecutionEngine Support Transforms VMCore Analysis
  /external/llvm/bindings/go/llvm/
executionengine.go 1 //===- executionengine.go - Bindings for executionengine ------------------===//
10 // This file defines bindings for the executionengine component.
18 #include "llvm-c/ExecutionEngine.h"
31 type ExecutionEngine struct {
89 // llvm.ExecutionEngine
92 func NewExecutionEngine(m Module) (ee ExecutionEngine, err error) {
103 func NewInterpreter(m Module) (ee ExecutionEngine, err error) {
120 func NewMCJITCompiler(m Module, options MCJITCompilerOptions) (ee ExecutionEngine, err error) {
131 func (ee ExecutionEngine) Dispose() { C.LLVMDisposeExecutionEngine(ee.C)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_misc.h 34 #include <llvm-c/ExecutionEngine.h>
lp_bld_misc.cpp 46 #include <llvm-c/ExecutionEngine.h>
48 #include <llvm/ExecutionEngine/ExecutionEngine.h>
49 #include <llvm/ExecutionEngine/JITEventListener.h>
52 #include <llvm/ExecutionEngine/JITMemoryManager.h>
239 * - llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
273 ExecutionEngine *JIT;
lp_bld_init.h 36 #include <llvm-c/ExecutionEngine.h>
  /external/swiftshader/third_party/LLVM/lib/
Makefile 14 Target ExecutionEngine Linker MC Object DebugInfo
  /external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
executionengine.ml 68 let ee = ExecutionEngine.create m in
69 ExecutionEngine.add_module m2 ee;
72 ExecutionEngine.run_static_ctors ee;
75 let res = ExecutionEngine.run_function_as_main main [|"test"|] [||] ee in
79 ExecutionEngine.free_machine_code main ee;
82 match ExecutionEngine.find_function "dne" ee with
86 match ExecutionEngine.find_function "plus" ee with
91 let res = ExecutionEngine.run_function plus
98 Llvm.dispose_module (ExecutionEngine.remove_module m2 ee);
101 ExecutionEngine.run_static_dtors ee
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/
MCJIT.h 14 #include "llvm/ExecutionEngine/ExecutionEngine.h"
15 #include "llvm/ExecutionEngine/RuntimeDyld.h"
25 class MCJIT : public ExecutionEngine {
47 /// @name ExecutionEngine interface implementation
79 static ExecutionEngine *createJIT(Module *M,
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
ExecutionEngine.cpp 1 //===-- ExecutionEngine.cpp - Common Implementation shared by EEs ---------===//
16 #include "llvm/ExecutionEngine/ExecutionEngine.h"
21 #include "llvm/ExecutionEngine/GenericValue.h"
40 ExecutionEngine *(*ExecutionEngine::JITCtor)(
47 ExecutionEngine *(*ExecutionEngine::MCJITCtor)(
54 ExecutionEngine *(*ExecutionEngine::InterpCtor)(Module *M
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
MultiJITTest.cpp 14 #include "llvm/ExecutionEngine/GenericValue.h"
15 #include "llvm/ExecutionEngine/JIT.h"
83 OwningPtr<ExecutionEngine> EE1(EngineBuilder(M1).create());
85 OwningPtr<ExecutionEngine> EE2(EngineBuilder(M2).create());
113 OwningPtr<ExecutionEngine> EE1(EngineBuilder(M1).create());
115 OwningPtr<ExecutionEngine> EE2(EngineBuilder(M2).create());
147 OwningPtr<ExecutionEngine> EE1(EngineBuilder(M1).create());
148 OwningPtr<ExecutionEngine> EE2(EngineBuilder(M2).create());
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 1 //===- ExecutionEngine.h - Abstract Execution Engine Interface --*- C++ -*-===//
19 #include "llvm-c/ExecutionEngine.h"
40 class ExecutionEngine;
97 class ExecutionEngine {
109 /// ExecutionEngine across context, we don't enforce this rule but undefined
136 static ExecutionEngine *(*MCJITCtor)(
143 static ExecutionEngine *(*OrcMCJITReplacementCtor)(
149 static ExecutionEngine *(*InterpCtor)(std::unique_ptr<Module> M,
161 /// lock - This lock protects the ExecutionEngine and MCJIT classes. It must
166 // ExecutionEngine Startu
    [all...]
RTDyldMemoryManager.h 18 #include "llvm-c/ExecutionEngine.h"
24 class ExecutionEngine;
46 virtual void notifyObjectLoaded(ExecutionEngine *EE,
  /external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
ExecutionEngine.h 1 //===- ExecutionEngine.h - Abstract Execution Engine Interface --*- C++ -*-===//
34 class ExecutionEngine;
62 ExecutionEngine &EE;
75 ExecutionEngineState(ExecutionEngine &EE);
95 class ExecutionEngine {
131 static ExecutionEngine *(*JITCtor)(
138 static ExecutionEngine *(*MCJITCtor)(
145 static ExecutionEngine *(*InterpCtor)(Module *M, std::string *ErrorStr);
162 /// lock - This lock protects the ExecutionEngine, JIT, JITResolver and
168 // ExecutionEngine Startu
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.cpp 35 ExecutionEngine *Interpreter::create(std::unique_ptr<Module> M,
52 : ExecutionEngine(std::move(M)) {
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
Interpreter.cpp 35 ExecutionEngine *Interpreter::create(Module *M, std::string* ErrStr) {
48 : ExecutionEngine(M), TD(M) {
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 1 //===-- ExecutionEngine.cpp - Common Implementation shared by EEs ---------===//
15 #include "llvm/ExecutionEngine/ExecutionEngine.h"
19 #include "llvm/ExecutionEngine/GenericValue.h"
20 #include "llvm/ExecutionEngine/JITEventListener.h"
21 #include "llvm/ExecutionEngine/RTDyldMemoryManager.h"
48 ExecutionEngine *(*ExecutionEngine::MCJITCtor)(
54 ExecutionEngine *(*ExecutionEngine::OrcMCJITReplacementCtor)
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
toy.ml 25 let the_execution_engine = ExecutionEngine.create Codegen.the_module in
30 DataLayout.add (ExecutionEngine.target_data the_execution_engine) the_fpm;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toy.ml 25 let the_execution_engine = ExecutionEngine.create Codegen.the_module in
30 DataLayout.add (ExecutionEngine.target_data the_execution_engine) the_fpm;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toy.ml 25 let the_execution_engine = ExecutionEngine.create Codegen.the_module in
30 DataLayout.add (ExecutionEngine.target_data the_execution_engine) the_fpm;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toy.ml 26 let the_execution_engine = ExecutionEngine.create Codegen.the_module in
31 DataLayout.add (ExecutionEngine.target_data the_execution_engine) the_fpm;
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
toy.ml 25 let the_execution_engine = ExecutionEngine.create Codegen.the_module in
30 TargetData.add (ExecutionEngine.target_data the_execution_engine) the_fpm;
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
toy.ml 25 let the_execution_engine = ExecutionEngine.create Codegen.the_module in
30 TargetData.add (ExecutionEngine.target_data the_execution_engine) the_fpm;
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
toy.ml 25 let the_execution_engine = ExecutionEngine.create Codegen.the_module in
30 TargetData.add (ExecutionEngine.target_data the_execution_engine) the_fpm;
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
toy.ml 26 let the_execution_engine = ExecutionEngine.create Codegen.the_module in
31 TargetData.add (ExecutionEngine.target_data the_execution_engine) the_fpm;

Completed in 462 milliseconds

1 2 3 4