OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JIT
(Results
1 - 25
of
63
) sorted by null
1
2
3
/external/llvm/tools/llvm-rtdyld/
Makefile
12
LINK_COMPONENTS := all-targets support MC object RuntimeDyld
JIT
debuginfo
/external/llvm/unittests/ExecutionEngine/
Makefile
17
PARALLEL_DIRS =
JIT
MCJIT
/external/llvm/lib/ExecutionEngine/JIT/
Android.mk
8
JIT
.cpp \
JIT.cpp
1
//===--
JIT
.cpp - LLVM Just in Time Compiler ------------------------------===//
15
#include "
JIT
.h"
62
RegisterJIT() {
JIT
::Register(); }
83
// function here so that code generated by the
JIT
cooperates with the unwinding
204
/// createJIT - This is the factory method for creating a
JIT
for the current
207
ExecutionEngine *
JIT
::createJIT(Module *M,
217
// If the target supports
JIT
code generation, create the
JIT
.
219
return new
JIT
(M, *TM, *TJ, JMM, 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 {
69
/// True while the
JIT
is generating code. Used to assert against recursive
81
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/lib/ExecutionEngine/
Makefile
14
PARALLEL_DIRS = Interpreter
JIT
MCJIT RuntimeDyld
ExecutionEngineBindings.cpp
14
#define DEBUG_TYPE "
jit
"
147
builder.setEngineKind(EngineKind::
JIT
)
150
if (ExecutionEngine *
JIT
= builder.create()) {
151
*OutJIT = wrap(
JIT
);
195
builder.setEngineKind(EngineKind::
JIT
)
203
if (ExecutionEngine *
JIT
= builder.create()) {
204
*OutJIT = wrap(
JIT
);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_misc.cpp
173
// usable by the
JIT
.
254
builder.setEngineKind(EngineKind::
JIT
)
264
* yet, because the old (yet default)
JIT
engine is not capable of
273
ExecutionEngine *
JIT
;
275
JIT
= builder.create();
283
JIT
= builder.create(builder.selectTarget(TT, MArch, MCPU, MAttrs));
285
if (
JIT
) {
286
*OutJIT = wrap(
JIT
);
/external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_misc.cpp
173
// usable by the
JIT
.
254
builder.setEngineKind(EngineKind::
JIT
)
264
* yet, because the old (yet default)
JIT
engine is not capable of
273
ExecutionEngine *
JIT
;
275
JIT
= builder.create();
283
JIT
= builder.create(builder.selectTarget(TT, MArch, MCPU, MAttrs));
285
if (
JIT
) {
286
*OutJIT = wrap(
JIT
);
/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
31
#include "llvm/ExecutionEngine/
JIT
.h"
53
JIT
("
jit
", cl::desc("Run program Just-In-Time"));
100
if (!
JIT
) {
139
if (
JIT
) {
142
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. *)
toy.ml
24
(* Create the
JIT
. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toplevel.ml
2
* Top-Level parsing and
JIT
Driver
36
(*
JIT
the function, returning a function pointer. *)
toy.ml
24
(* Create the
JIT
. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toplevel.ml
2
* Top-Level parsing and
JIT
Driver
36
(*
JIT
the function, returning a function pointer. *)
toy.ml
24
(* Create the
JIT
. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toplevel.ml
2
* Top-Level parsing and
JIT
Driver
36
(*
JIT
the function, returning a function pointer. *)
toy.ml
25
(* Create the
JIT
. *)
/external/llvm/unittests/ExecutionEngine/JIT/
Makefile
1
##===- unittests/ExecutionEngine/
JIT
/Makefile --------------*- Makefile -*-===##
11
TESTNAME =
JIT
12
LINK_COMPONENTS := asmparser bitreader bitwriter
jit
native
20
# Build the Intel
JIT
Events interface tests
23
# Add the Intel
JIT
Events include directory
26
# Link against the LLVM Intel
JIT
Evens interface library
31
# Build the OProfile
JIT
interface tests
42
# Permit these tests to use the
JIT
's symbolic lookup.
JITTest.cpp
1
//===- JITTest.cpp - Unit tests for the
JIT
-------------------------------===//
10
#include "llvm/ExecutionEngine/
JIT
.h"
37
// program from the IR input to the
JIT
to assert that the
JIT
doesn't use its
39
//
JIT
tests are disabled as it is referenced from the .def file.
44
// program from the IR input to the
JIT
to assert that the
JIT
doesn't use its
46
//
JIT
tests are disabled as it is referenced from the .def file.
54
// Tests on ARM, PowerPC and SystemZ disabled as we're running the old
jit
187
TheJIT.reset(EngineBuilder(M).setEngineKind(EngineKind::
JIT
)
[
all
...]
/external/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
/dalvik/vm/mterp/armv5te/
zcmp.S
22
bne common_updateProfile @ test for
JIT
off at target
/dalvik/vm/mterp/mips/
zcmp.S
26
bnez a0, common_updateProfile # test for
JIT
off at target
/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
Completed in 338 milliseconds
1
2
3