Home
last modified time | relevance | path

Searched refs:ExecutionEngine (Results 1 – 25 of 67) sorted by relevance

123

/external/llvm/test/Bindings/Ocaml/
Dexecutionengine.ml68 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/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp41 ExecutionEngine *(*ExecutionEngine::JITCtor)(
47 ExecutionEngine *(*ExecutionEngine::MCJITCtor)(
53 ExecutionEngine *(*ExecutionEngine::InterpCtor)(Module *M,
56 ExecutionEngine::ExecutionEngine(Module *M) in ExecutionEngine() function in ExecutionEngine
68 ExecutionEngine::~ExecutionEngine() { in ~ExecutionEngine()
74 void ExecutionEngine::DeregisterAllTables() { in DeregisterAllTables()
115 char *ExecutionEngine::getMemoryForGV(const GlobalVariable *GV) { in getMemoryForGV()
119 bool ExecutionEngine::removeModule(Module *M) { in removeModule()
132 Function *ExecutionEngine::FindFunctionNamed(const char *FnName) { in FindFunctionNamed()
159 void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) { in addGlobalMapping()
[all …]
DLLVMBuild.txt1 ;===- ./lib/ExecutionEngine/LLVMBuild.txt ----------------------*- Conf -*--===;
23 name = ExecutionEngine
DExecutionEngineBindings.cpp95 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule()
110 if (ExecutionEngine *Interp = builder.create()) { in LLVMCreateInterpreterForModule()
127 if (ExecutionEngine *JIT = builder.create()) { in LLVMCreateJITCompilerForModule()
/external/llvm/include/llvm/ExecutionEngine/
DExecutionEngine.h36 class ExecutionEngine; variable
65 ExecutionEngine ⅇ
78 ExecutionEngineState(ExecutionEngine &EE);
98 class ExecutionEngine {
134 static ExecutionEngine *(*JITCtor)(
140 static ExecutionEngine *(*MCJITCtor)(
146 static ExecutionEngine *(*InterpCtor)(Module *M, std::string *ErrorStr);
172 virtual ~ExecutionEngine();
184 static ExecutionEngine *create(Module *M,
197 static ExecutionEngine *createJIT(Module *M,
[all …]
/external/llvm/unittests/ExecutionEngine/JIT/
DMultiJITTest.cpp83 OwningPtr<ExecutionEngine> EE1(EngineBuilder(M1).create()); in TEST()
85 OwningPtr<ExecutionEngine> EE2(EngineBuilder(M2).create()); in TEST()
113 OwningPtr<ExecutionEngine> EE1(EngineBuilder(M1).create()); in TEST()
115 OwningPtr<ExecutionEngine> EE2(EngineBuilder(M2).create()); in TEST()
147 OwningPtr<ExecutionEngine> EE1(EngineBuilder(M1).create()); in TEST()
148 OwningPtr<ExecutionEngine> EE2(EngineBuilder(M2).create()); in TEST()
/external/llvm/lib/ExecutionEngine/Interpreter/
DLLVMBuild.txt1 ;===- ./lib/ExecutionEngine/Interpreter/LLVMBuild.txt ----------*- Conf -*--===;
21 parent = ExecutionEngine
22 required_libraries = CodeGen Core ExecutionEngine Support Target
DInterpreter.cpp35 ExecutionEngine *Interpreter::create(Module *M, std::string* ErrStr) { in create()
48 : ExecutionEngine(M), TD(M) { in Interpreter()
/external/llvm/lib/ExecutionEngine/JIT/
DLLVMBuild.txt1 ;===- ./lib/ExecutionEngine/JIT/LLVMBuild.txt ------------------*- Conf -*--===;
21 parent = ExecutionEngine
22 required_libraries = CodeGen Core ExecutionEngine MC RuntimeDyld Support Target
DJIT.h53 class JIT : public ExecutionEngine {
97 static ExecutionEngine *create(Module *M,
105 return ExecutionEngine::createJIT(M, Err, JMM, OptLevel, GVsWithCode,
185 static ExecutionEngine *createJIT(Module *M,
/external/llvm/lib/ExecutionEngine/MCJIT/
DLLVMBuild.txt1 ;===- ./lib/ExecutionEngine/MCJIT/LLVMBuild.txt ----------------*- Conf -*--===;
21 parent = ExecutionEngine
22 required_libraries = Core ExecutionEngine RuntimeDyld Support Target JIT
DMCJIT.h26 class MCJIT : public ExecutionEngine {
91 static ExecutionEngine *createJIT(Module *M,
/external/llvm/lib/ExecutionEngine/OProfileJIT/
DLLVMBuild.txt1 ;===- ./lib/ExecutionEngine/OProfileJIT/LLVMBuild.txt ----------*- Conf -*--===;
23 parent = ExecutionEngine
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
DLLVMBuild.txt1 ;===- ./lib/ExecutionEngine/JITProfileAmplifier/LLVMBuild.txt --*- Conf -*--===;
23 parent = ExecutionEngine
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DLLVMBuild.txt1 ;===- ./lib/ExecutionEngine/RuntimeDyld/LLVMBuild.txt ----------*- Conf -*--===;
21 parent = ExecutionEngine
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
Dtoy.ml25 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/
Dtoy.ml25 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/
Dtoy.ml25 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/
Dtoy.ml26 let the_execution_engine = ExecutionEngine.create Codegen.the_module in
31 DataLayout.add (ExecutionEngine.target_data the_execution_engine) the_fpm;
/external/llvm/include/llvm-c/
DExecutionEngine.h144 class ExecutionEngine; variable
156 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ExecutionEngine, LLVMExecutionEngineRef)
/external/llvm/docs/
DDebuggingJITedCode.rst124 …, F=0x1603020, ArgValues=...) at /home/ebenders_test/llvm_svn_rw/lib/ExecutionEngine/MCJIT/MCJIT.c…
125 …#6 0x0000000000dc8872 in llvm::ExecutionEngine::runFunctionAsMain (this=0x16151f0, Fn=0x1603020, …
126 at /home/ebenders_test/llvm_svn_rw/lib/ExecutionEngine/ExecutionEngine.cpp:397
/external/clang/examples/clang-interpreter/
Dmain.cpp48 OwningPtr<llvm::ExecutionEngine> EE( in Execute()
49 llvm::ExecutionEngine::createJIT(Mod, &Error)); in Execute()
/external/llvm/unittests/ExecutionEngine/
DMakefile11 TESTNAME = ExecutionEngine
/external/llvm/unittests/
DMakefile12 PARALLEL_DIRS = ADT ExecutionEngine Support Transforms IR Analysis Bitcode
/external/llvm/lib/
DMakefile14 Target ExecutionEngine Linker MC Object Option DebugInfo

123