Searched refs:JIT (Results 1 - 25 of 75) sorted by relevance

123

/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DMakefile11 PARALLEL_DIRS = Interpreter JIT MCJIT RuntimeDyld
/external/llvm/unittests/ExecutionEngine/Orc/
H A DOrcCAPITest.cpp83 LLVMOrcJITStackRef JIT =
88 LLVMOrcGetMangledSymbol(JIT, &testFuncName, "testFunc");
91 LLVMOrcAddEagerlyCompiledIR(JIT, wrap(M.get()), myResolver, nullptr);
92 MainFnTy MainFn = (MainFnTy)LLVMOrcGetSymbolAddress(JIT, "main");
95 << "Eagerly JIT'd code did not return expected result";
97 LLVMOrcRemoveModule(JIT, H);
100 LLVMOrcDisposeInstance(JIT);
107 LLVMOrcJITStackRef JIT =
112 LLVMOrcGetMangledSymbol(JIT, &testFuncName, "testFunc");
115 LLVMOrcAddLazilyCompiledIR(JIT, wra
[all...]
/external/swiftshader/third_party/LLVM/tools/llvm-rtdyld/
H A DMakefile21 LINK_COMPONENTS := $(TARGETS_TO_BUILD) support MC object RuntimeDyld JIT
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/
H A DMakefile16 PARALLEL_DIRS = JIT
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
H A DMakefile1 ##===- unittests/ExecutionEngine/JIT/Makefile --------------*- Makefile -*-===##
11 TESTNAME = JIT
17 # Permit these tests to use the JIT's symbolic lookup.
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
H A DJITDwarfEmitter.h10 // This file defines a JITDwarfEmitter object that is used by the JIT to
36 JIT& Jit;
56 JITDwarfEmitter(JIT& jit);
H A DJIT.cpp1 //===-- JIT.cpp - LLVM Just in Time Compiler ------------------------------===//
15 #include "JIT.h"
61 RegisterJIT() { JIT::Register(); }
82 // function here so that code generated by the JIT cooperates with the unwinding
203 /// createJIT - This is the factory method for creating a JIT for the current
206 ExecutionEngine *JIT::createJIT(Module *M,
217 // If the target supports JIT code generation, create the JIT.
219 return new JIT(M, *TM, *TJ, JMM, OptLevel, GVsWithCode);
222 *ErrorStr = "target does not support JIT cod
270 JIT::JIT(Module *M, TargetMachine &tm, TargetJITInfo &tji, function in class:JIT
[all...]
H A DJIT.h1 //===-- JIT.h - Class definition for the JIT --------------------*- C++ -*-===//
10 // This file defines the top-level JIT data structure.
53 class JIT : public ExecutionEngine { class in namespace:llvm
68 /// True while the JIT is generating code. Used to assert against recursive
80 JIT(Module *M, TargetMachine &tm, TargetJITInfo &tji,
84 ~JIT();
90 /// getJITInfo - Return the target JIT information structure.
94 /// create - Create an return a new JIT compiler if there is one available
166 /// just like JIT
[all...]
/external/llvm/examples/BrainF/
H A DBrainFDriver.cpp11 // which it can then run using the JIT or output as BitCode.
70 JIT("jit", cl::desc("Run program Just-In-Time"));
116 if (!JIT) {
154 if (JIT) {
157 outs() << "------- Running JIT -------\n";
/external/swiftshader/third_party/LLVM/examples/BrainF/
H A DBrainFDriver.cpp11 // which it can then run using the JIT or output as BitCode.
33 #include "llvm/ExecutionEngine/JIT.h"
54 JIT("jit", cl::desc("Run program Just-In-Time"));
101 if (!JIT) {
140 if (JIT) {
143 outs() << "------- Running JIT -------\n";
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86CompilationCallback_Win64.asm1 ;;===-- X86CompilationCallback_Win64.asm - Implement Win64 JIT callback ---===
10 ;; This file implements the JIT interfaces for the X86 target.
40 ; JIT callee
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
/external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
H A DCOFF_x86_64.s37 # Make sure the JIT doesn't bail out on BSS sections.
/external/pcre/dist2/
H A DRunTest.bat313 if %jit% EQU 1 call :runsub 1 testoutjit "Test with JIT Override" -q -jit
318 if %jit% EQU 1 call :runsub 2 testoutjit "Test with JIT Override" -q -jit
323 if %jit% EQU 1 call :runsub 3 testoutjit "Test with JIT Override" -q -jit
332 if %jit% EQU 1 call :runsub 4 testoutjit "Test with JIT Override" -q -jit
341 if %jit% EQU 1 call :runsub 5 testoutjit "Test with JIT Override" -q -jit
374 if %jit% EQU 1 call :runsub 9 testoutjit "Test with JIT Override" -q -jit
387 if %jit% EQU 1 call :runsub 10 testoutjit "Test with JIT Override" -q -jit
396 if %jit% EQU 1 call :runsub 11 testoutjit "Test with JIT Override" -q -jit
409 if %jit% EQU 1 call :runsub 12 testoutjit "Test with JIT Override" -q -jit
429 call :runsub 15 testout "Non-JIT limit
[all...]

Completed in 371 milliseconds

123