/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.cpp | 37 RegisterJIT() { MCJIT::Register(); } in RegisterJIT() 46 MCJIT::createJIT(std::unique_ptr<Module> M, in createJIT() 64 return new MCJIT(std::move(M), std::move(TM), std::move(MemMgr), in createJIT() 68 MCJIT::MCJIT(std::unique_ptr<Module> M, std::unique_ptr<TargetMachine> TM, in MCJIT() function in MCJIT 92 MCJIT::~MCJIT() { in ~MCJIT() 104 void MCJIT::addModule(std::unique_ptr<Module> M) { in addModule() 109 bool MCJIT::removeModule(Module *M) { in removeModule() 114 void MCJIT::addObjectFile(std::unique_ptr<object::ObjectFile> Obj) { in addObjectFile() 124 void MCJIT::addObjectFile(object::OwningBinary<object::ObjectFile> Obj) { in addObjectFile() 132 void MCJIT::addArchive(object::OwningBinary<object::Archive> A) { in addArchive() [all …]
|
D | MCJIT.h | 24 class MCJIT; variable 32 LinkingSymbolResolver(MCJIT &Parent, in LinkingSymbolResolver() 45 MCJIT &ParentEngine; 69 class MCJIT : public ExecutionEngine { 70 MCJIT(std::unique_ptr<Module> M, std::unique_ptr<TargetMachine> tm, 213 ~MCJIT() override;
|
D | LLVMBuild.txt | 1 ;===- ./lib/ExecutionEngine/MCJIT/LLVMBuild.txt ----------------*- Conf -*--===; 20 name = MCJIT
|
D | CMakeLists.txt | 2 MCJIT.cpp
|
D | Android.mk | 8 MCJIT.cpp
|
/external/llvm/docs/ |
D | MCJITDesignAndImplementation.rst | 2 MCJIT Design and Implementation 8 This document describes the internal workings of the MCJIT execution 17 the MCJIT execution engine. The EngineBuilder takes an llvm::Module 19 options that we control the later be passed along to the MCJIT engine, 20 including the selection of MCJIT as the engine type to be created. 24 will be created when the MCJIT engine is instantiated. 27 create an instance of the MCJIT engine. If the client does not use the 32 .. image:: MCJIT-engine-builder.png 34 EngineBuilder::create will call the static MCJIT::createJIT function, 36 objects, all of which will subsequently be owned by the MCJIT object. [all …]
|
D | DebuggingJITedCode.rst | 15 GDB and LLVM MCJIT. At a high level, whenever MCJIT generates new machine code, 17 DWARF format. MCJIT then adds this in-memory object file to a global list of 21 of the object files in the global list. When MCJIT calls the registration 35 Debugging MCJIT-ed code 38 The emerging MCJIT component of LLVM allows full debugging of JIT-ed code with 39 GDB. This is due to MCJIT's ability to use the MC emitter to provide full 43 MCJIT instead of the old JIT. 124 …3 in llvm::MCJIT::runFunction (this=0x16151f0, F=0x1603020, ArgValues=...) at /home/ebenders_test/…
|
/external/llvm/bindings/ocaml/executionengine/ |
D | executionengine_ocaml.c | 42 LLVMExecutionEngineRef MCJIT; in llvm_ee_create() local 56 if (LLVMCreateMCJITCompilerForModule(&MCJIT, M, &Options, in llvm_ee_create() 59 return MCJIT; in llvm_ee_create()
|
D | llvm_executionengine.mli | 20 via MCJIT. *) 28 (** MCJIT compiler options. See [llvm::TargetOptions]. *) 36 (** Default MCJIT compiler options: 41 (** [create m optlevel] creates a new MCJIT just-in-time compiler, taking
|
/external/llvm/unittests/ExecutionEngine/ |
D | CMakeLists.txt | 17 # Include MCJIT tests only if native arch is a built JIT target. 21 add_subdirectory(MCJIT)
|
D | Makefile | 19 PARALLEL_DIRS += MCJIT
|
/external/llvm/examples/Kaleidoscope/MCJIT/ |
D | README.txt | 2 // Kaleidoscope with MCJIT 6 that describe the process of porting the Kaleidoscope tutorial to use the MCJIT
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | README.txt | 2 // Kaleidoscope with MCJIT 7 to use the MCJIT execution engine instead of the older JIT engine.
|
/external/llvm/test/ExecutionEngine/MCJIT/ |
D | load-object-a.ll | 9 ; This line tests MCJIT object loading 16 ; This line test MCJIT archive loading
|
/external/llvm/test/ExecutionEngine/OrcMCJIT/ |
D | load-object-a.ll | 9 ; This line tests MCJIT object loading 16 ; This line test MCJIT archive loading
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | README.txt | 2 // Kaleidoscope with MCJIT 7 to use the MCJIT execution engine instead of the older JIT engine.
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | README.txt | 2 // Kaleidoscope with MCJIT 7 to use the MCJIT execution engine instead of the older JIT engine.
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | README.txt | 2 // Kaleidoscope with MCJIT 7 to use the MCJIT execution engine instead of the older JIT engine.
|
/external/llvm/tools/llvm-rtdyld/ |
D | Makefile | 12 LINK_COMPONENTS := all-targets support MC object RuntimeDyld MCJIT DebugInfoDWARF
|
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
D | Makefile | 11 TESTNAME = MCJIT
|
/external/clang/examples/clang-interpreter/ |
D | CMakeLists.txt | 5 MCJIT
|
/external/llvm/lib/ExecutionEngine/ |
D | Makefile | 14 PARALLEL_DIRS = Interpreter MCJIT Orc RuntimeDyld
|
D | CMakeLists.txt | 18 add_subdirectory(MCJIT)
|
/external/llvm/examples/ExceptionDemo/ |
D | CMakeLists.txt | 5 MCJIT
|
/external/llvm/test/ExecutionEngine/MCJIT/remote/ |
D | lit.local.cfg | 5 # This is temporary, until Remote MCJIT works on ARM
|