HomeSort by relevance Sort by last modified time
    Searched full:executionengine (Results 101 - 125 of 143) sorted by null

1 2 3 45 6

  /external/llvm/utils/
GenLibDeps.pl 103 $libpath =~ s/^Interpreter/ExecutionEngine\/Interpreter/;
104 $libpath =~ s/^JIT/ExecutionEngine\/JIT/;
144 $libpath =~ s/^Interpreter/ExecutionEngine\/Interpreter/;
145 $libpath =~ s/^JIT/ExecutionEngine\/JIT/;
  /frameworks/compile/libbcc/include/bcc/Renderscript/
RSExecutable.h 23 #include "bcc/ExecutionEngine/ObjectLoader.h"
  /frameworks/compile/libbcc/lib/ExecutionEngine/
SymbolResolvers.cpp 17 #include "bcc/ExecutionEngine/SymbolResolvers.h"
ELFObjectLoaderImpl.cpp 27 #include "bcc/ExecutionEngine/SymbolResolverInterface.h"
  /external/llvm/bindings/ocaml/executionengine/
llvm_executionengine.mli 13 interpreter), the classes in the ExecutionEngine library. *)
83 module ExecutionEngine: sig
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 5 #include "llvm/ExecutionEngine/ExecutionEngine.h"
6 #include "llvm/ExecutionEngine/MCJIT.h"
7 #include "llvm/ExecutionEngine/ObjectCache.h"
8 #include "llvm/ExecutionEngine/SectionMemoryManager.h"
747 ExecutionEngine *compileModule(Module *M);
758 std::map<Module *, ExecutionEngine *> EngineMap;
807 std::map<Module*, ExecutionEngine*>::iterator mapIt = EngineMap.find(*it);
872 std::map<Module*, ExecutionEngine*>::iterator eeIt = EngineMap.find(*it);
878 ExecutionEngine *EE = compileModule(*it)
    [all...]
toy-jit.cpp 5 #include "llvm/ExecutionEngine/ExecutionEngine.h"
6 #include "llvm/ExecutionEngine/JIT.h"
1028 static ExecutionEngine *TheExecutionEngine;
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 20 #include "llvm/ExecutionEngine/GenericValue.h"
21 #include "llvm/ExecutionEngine/JITEventListener.h"
22 #include "llvm/ExecutionEngine/JITMemoryManager.h"
207 ExecutionEngine *JIT::createJIT(Module *M,
272 : ExecutionEngine(M), TM(tm), TJI(tji),
354 ExecutionEngine::addModule(M);
360 bool result = ExecutionEngine::removeModule(M);
  /external/llvm/docs/tutorial/
OCamlLangImpl4.rst 140 let the_execution_engine = ExecutionEngine.create Codegen.the_module in
145 DataLayout.add (ExecutionEngine.target_data the_execution_engine) the_fpm;
255 let the_execution_engine = ExecutionEngine.create Codegen.the_module in
263 Once the ``Llvm_executionengine.ExecutionEngine.t`` is created, the JIT
266 "``Llvm_executionengine.ExecutionEngine.run_function``" function. This
281 let result = ExecutionEngine.run_function the_function [||]
832 let result = ExecutionEngine.run_function the_function [||]
    [all...]
LangImpl4.rst 238 static ExecutionEngine *TheExecutionEngine;
252 Once the ``ExecutionEngine`` is created, the JIT is ready to be used.
389 ``ExecutionEngine.h`` file) for controlling how unknown functions get
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 3 #include "llvm/ExecutionEngine/ExecutionEngine.h"
4 #include "llvm/ExecutionEngine/JIT.h"
484 static ExecutionEngine *TheExecutionEngine;
579 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 16 #include "llvm/ExecutionEngine/JITEventListener.h"
26 #include "llvm/ExecutionEngine/ObjectImage.h"
  /external/llvm/include/llvm/ExecutionEngine/
SectionMemoryManager.h 19 #include "llvm/ExecutionEngine/RuntimeDyld.h"
JITMemoryManager.h 13 #include "llvm/ExecutionEngine/RuntimeDyld.h"
  /external/llvm/lib/ExecutionEngine/MCJIT/
SectionMemoryManager.cpp 16 #include "llvm/ExecutionEngine/SectionMemoryManager.h"
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileWrapper.cpp 16 #include "llvm/ExecutionEngine/OProfileWrapper.h"
  /frameworks/compile/libbcc/lib/Renderscript/
RSExecutable.cpp 24 #include "bcc/ExecutionEngine/SymbolResolverProxy.h"
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 3 #include "llvm/ExecutionEngine/ExecutionEngine.h"
4 #include "llvm/ExecutionEngine/MCJIT.h"
5 #include "llvm/ExecutionEngine/SectionMemoryManager.h"
662 typedef std::vector<ExecutionEngine*> EngineVector;
778 ExecutionEngine *NewEngine = EngineBuilder(OpenModule)
784 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 3 #include "llvm/ExecutionEngine/ExecutionEngine.h"
4 #include "llvm/ExecutionEngine/JIT.h"
729 static ExecutionEngine *TheExecutionEngine;
824 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 3 #include "llvm/ExecutionEngine/ExecutionEngine.h"
4 #include "llvm/ExecutionEngine/JIT.h"
840 static ExecutionEngine *TheExecutionEngine;
942 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 52 #include "llvm/ExecutionEngine/MCJIT.h"
53 #include "llvm/ExecutionEngine/SectionMemoryManager.h"
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 21 #include "llvm/ExecutionEngine/ObjectImage.h"
22 #include "llvm/ExecutionEngine/RuntimeDyld.h"
  /frameworks/compile/libbcc/tools/bcc_compat/
Main.cpp 35 #include <bcc/ExecutionEngine/SymbolResolverProxy.h>
36 #include <bcc/ExecutionEngine/SymbolResolvers.h>
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 3 #include "llvm/ExecutionEngine/ExecutionEngine.h"
4 #include "llvm/ExecutionEngine/JIT.h"
1003 static ExecutionEngine *TheExecutionEngine;
1106 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 5 #include "llvm/ExecutionEngine/ExecutionEngine.h"
6 #include "llvm/ExecutionEngine/JIT.h"
1010 static ExecutionEngine *TheExecutionEngine;
1125 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
    [all...]

Completed in 945 milliseconds

1 2 3 45 6