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

1 2 3 4

  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
Makefile 11 PARALLEL_DIRS = Interpreter JIT MCJIT RuntimeDyld
  /external/llvm/unittests/ExecutionEngine/Orc/
OrcCAPITest.cpp 83 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, wrap(M.get()), myResolver, nullptr)
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-rtdyld/
Makefile 21 LINK_COMPONENTS := $(TARGETS_TO_BUILD) support MC object RuntimeDyld JIT
  /external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/
Makefile 16 PARALLEL_DIRS = JIT
  /external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
Makefile 1 ##===- unittests/ExecutionEngine/JIT/Makefile --------------*- Makefile -*-===##
11 TESTNAME = JIT
12 LINK_COMPONENTS := asmparser bitreader bitwriter core jit native support
17 # Permit these tests to use the JIT's symbolic lookup.
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITDwarfEmitter.h 10 // This file defines a JITDwarfEmitter object that is used by the JIT to
36 JIT& Jit;
56 JITDwarfEmitter(JIT& jit);
JIT.cpp 1 //===-- 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 code generation"
    [all...]
JIT.h 1 //===-- JIT.h - Class definition for the JIT --------------------*- C++ -*-===//
10 // This file defines the top-level JIT data structure.
53 class JIT : public ExecutionEngine {
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::getPointerToFunction()
    [all...]
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 11 // which it can then run using the JIT or output as BitCode.
19 // ./BrainF -jit prog.bf #Run program now
20 // ./BrainF -jit -abc prog.bf #Run program now safely
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/
BrainFDriver.cpp 11 // which it can then run using the JIT or output as BitCode.
19 // ./BrainF -jit prog.bf #Run program now
20 // ./BrainF -jit -abc prog.bf #Run program now safely
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/
toplevel.ml 2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toplevel.ml 2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toplevel.ml 2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toplevel.ml 2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
toplevel.ml 2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
toplevel.ml 2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
toplevel.ml 2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
toplevel.ml 2 * Top-Level parsing and JIT Driver
36 (* JIT the function, returning a function pointer. *)
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86CompilationCallback_Win64.asm 1 ;;===-- 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/
toplevel.ml 2 * Top-Level parsing and JIT Driver
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 2 * Top-Level parsing and JIT Driver
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 2 * Top-Level parsing and JIT Driver
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 2 * Top-Level parsing and JIT Driver
  /external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
COFF_x86_64.s 37 # Make sure the JIT doesn't bail out on BSS sections.
  /external/pcre/dist2/
RunTest.bat 18 @rem 16 requires absence of jit support
19 @rem 17 requires presence of jit support
20 @rem Sheri P also added override tests for study and jit testing
67 %pcre2test% -C jit >NUL
68 set jit=%ERRORLEVEL% variable
313 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
    [all...]

Completed in 240 milliseconds

1 2 3 4