/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
Makefile | 1 all: toy-mcjit toy-jit 6 toy-jit : toy-jit.cpp 7 clang++ toy-jit.cpp -g -O3 -rdynamic `llvm-config --cppflags --ldflags --libs core jit native` -o toy-jit
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
Makefile | 1 all: toy-mcjit toy-jit toy-ir-gen 6 toy-jit : toy-jit.cpp 7 clang++ toy-jit.cpp -g -O3 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --libs core jit native irreader` -o toy-jit 10 toy-ir-gen : toy-jit.cpp 11 clang++ toy-jit.cpp -g -O3 -rdynamic -fno-rtti -DDUMP_FINAL_MODULE `llvm-config --cppflags --ldflags --libs core jit native irreader` -o toy-ir-gen
|
/external/llvm/bindings/ocaml/executionengine/ |
Makefile | 16 UsedComponents := executionengine jit interpreter native
|
/external/llvm/examples/BrainF/ |
Makefile | 13 LINK_COMPONENTS := jit bitwriter nativecodegen interpreter
|
/external/llvm/examples/ExceptionDemo/ |
Makefile | 14 LINK_COMPONENTS := jit mcjit nativecodegen
|
/external/llvm/examples/Fibonacci/ |
Makefile | 14 # Link in JIT support 15 LINK_COMPONENTS := jit interpreter nativecodegen
|
/external/llvm/examples/HowToUseJIT/ |
Makefile | 13 LINK_COMPONENTS := jit interpreter nativecodegen
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
Makefile | 13 LINK_COMPONENTS := core jit native
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
Makefile | 13 LINK_COMPONENTS := core jit native
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
Makefile | 13 LINK_COMPONENTS := core jit native
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
Makefile | 14 LINK_COMPONENTS := core jit native
|
/external/llvm/examples/ParallelJIT/ |
Makefile | 13 LINK_COMPONENTS := jit interpreter nativecodegen
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/ |
autoportallocator.h | 52 buzz::JingleInfoTask* jit = new buzz::JingleInfoTask(client); local 53 jit->SignalJingleInfo.connect(this, &AutoPortAllocator::OnJingleInfo); 54 jit->Start(); 55 jit->RefreshJingleInfoNow();
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
Makefile | 4 clang++ toy.cpp -g -O3 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --libs core jit mcjit native irreader` -o toy
|
/external/llvm/tools/llvm-jitlistener/ |
Makefile | 15 LINK_COMPONENTS := mcjit jit interpreter nativecodegen bitreader asmparser irreader selectiondag Object
17 # If Intel JIT Events support is configured, link against the LLVM Intel JIT
|
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
Makefile | 12 LINK_COMPONENTS := core jit mcjit native support
|
/external/llvm/tools/lli/ |
Makefile | 15 LINK_COMPONENTS := mcjit jit instrumentation interpreter nativecodegen bitreader asmparser irreader selectiondag native 17 # If Intel JIT Events support is confiured, link against the LLVM Intel JIT
|
/external/clang/examples/clang-interpreter/ |
Makefile | 18 LINK_COMPONENTS := jit interpreter nativecodegen bitreader bitwriter ipo \
|
/dalvik/vm/mterp/mips/ |
entry.S | 63 lw a2, offThread_shadowSpace(rSELF) # to find out the jit exit state 65 lw a3, offShadowSpace_jitExitState(a2) # jit exit state
|
/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.
|
/dalvik/vm/mterp/armv5te/ |
entry.S | 76 ldr r2, [rSELF, #offThread_shadowSpace] @ to find out the jit exit state 78 ldr r3, [r2, #offShadowSpace_jitExitState] @ jit exit state
|
/external/llvm/lib/ExecutionEngine/JIT/ |
JITEmitter.cpp | 10 // This file defines a MachineCodeEmitter object that is used by the JIT to 15 #define DEBUG_TYPE "jit" 16 #include "JIT.h" 68 // JIT lazy compilation code. 78 llvm_unreachable("The JIT doesn't know how to handle a" 111 /// Instance of the JIT this ResolverState serves. 112 JIT *TheJIT; 116 JITResolverState(JIT *jit) : FunctionToLazyStubMap(this), 119 TheJIT = jit; [all...] |
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...] |
/external/llvm/utils/crosstool/ARM/ |
build-install-linux.sh | 148 --disable-jit \
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
run.py | 318 jit = self.rpchandler.console.getvar("<<toggle-jit-stack-viewer>>") 319 if jit:
|