Searched defs:JIT (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_misc.cpp173 // 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; local
275 JIT = builder.create();
283 JIT = builder.create(builder.selectTarget(TT, MArch, MCPU, MAttrs));
285 if (JIT) {
286 *OutJIT = wrap(JIT);
/external/llvm/lib/ExecutionEngine/JIT/
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
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
[all...]
H A DJIT.cpp1 //===-- JIT.cpp - LLVM Just in Time Compiler ------------------------------===//
15 #include "JIT.h"
63 RegisterJIT() { JIT::Register(); }
71 /// createJIT - This is the factory method for creating a JIT for the current
74 ExecutionEngine *JIT::createJIT(Module *M,
84 // If the target supports JIT code generation, create the JIT.
86 return new JIT(M, *TM, *TJ, JMM, GVsWithCode);
89 *ErrorStr = "target does not support JIT code generation";
98 SmallPtrSet<JIT*,
137 JIT::JIT(Module *M, TargetMachine &tm, TargetJITInfo &tji, function in class:JIT
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_misc.cpp173 // 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; local
275 JIT = builder.create();
283 JIT = builder.create(builder.selectTarget(TT, MArch, MCPU, MAttrs));
285 if (JIT) {
286 *OutJIT = wrap(JIT);
/external/llvm/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c27 /* Force the LLVM interpreter and JIT to be linked in. */
196 LLVMExecutionEngineRef JIT; local
198 if (LLVMCreateJITCompilerForModule(&JIT, M, Int_val(OptLevel), &Error))
200 return JIT;
/external/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h103 /// designed to support both interpreter and just-in-time (JIT) compiler
116 /// Whether lazy JIT compilation is enabled.
119 /// Whether JIT compilation of external global variables is allowed.
122 /// Whether the JIT should perform lookups of external symbols (e.g.,
126 /// Whether the JIT should verify IR modules during compilation.
132 /// The list of Modules that we are JIT'ing from. We use a SmallVector to
141 // To avoid having libexecutionengine depend on the JIT and interpreter
159 /// pointer is invoked to create it. If this returns null, the JIT will
164 /// lock - This lock protects the ExecutionEngine, MCJIT, JIT, JITResolver and
192 /// createJIT - This is the factory method for creating a JIT fo
561 JIT = 0x1, enumerator in enum:llvm::EngineKind::Kind
[all...]
/external/llvm/tools/bugpoint/
H A DToolRunner.cpp575 // JIT Implementation of AbstractIntepreter interface
578 class JIT : public AbstractInterpreter { class in namespace:__anon26390
582 JIT(const std::string &Path, const std::vector<std::string> *Args) function in class:__anon26390::JIT
602 int JIT::ExecuteProgram(const std::string &Bitcode,
650 return new JIT(LLIPath, Args);

Completed in 104 milliseconds