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

1 2 3 4 5

  /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...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
CodeGenCWrappers.h 26 inline Optional<CodeModel::Model> unwrap(LLVMCodeModel Model, bool &JIT) {
27 JIT = false;
30 JIT = true;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
CodeGenCWrappers.h 26 inline Optional<CodeModel::Model> unwrap(LLVMCodeModel Model, bool &JIT) {
27 JIT = false;
30 JIT = true;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
CodeGenCWrappers.h 26 inline Optional<CodeModel::Model> unwrap(LLVMCodeModel Model, bool &JIT) {
27 JIT = false;
30 JIT = true;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
CodeGenCWrappers.h 26 inline Optional<CodeModel::Model> unwrap(LLVMCodeModel Model, bool &JIT) {
27 JIT = false;
30 JIT = true;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
CodeGenCWrappers.h 26 inline Optional<CodeModel::Model> unwrap(LLVMCodeModel Model, bool &JIT) {
27 JIT = false;
30 JIT = true;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
CodeGenCWrappers.h 26 inline Optional<CodeModel::Model> unwrap(LLVMCodeModel Model, bool &JIT) {
27 JIT = false;
30 JIT = true;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
CodeGenCWrappers.h 26 inline Optional<CodeModel::Model> unwrap(LLVMCodeModel Model, bool &JIT) {
27 JIT = false;
30 JIT = true;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
CodeGenCWrappers.h 26 inline Optional<CodeModel::Model> unwrap(LLVMCodeModel Model, bool &JIT) {
27 JIT = false;
30 JIT = true;
  /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...]
  /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. *)

Completed in 1223 milliseconds

1 2 3 4 5