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

1 2 3

  /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 ipo jit mcjit native support
  /external/llvm/tools/lli/
Makefile 17 LINK_COMPONENTS := mcjit jit instrumentation interpreter nativecodegen bitreader asmparser irreader selectiondag native
19 # 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 irreader \
  /external/llvm/unittests/ExecutionEngine/JIT/
Makefile 1 ##===- unittests/ExecutionEngine/JIT/Makefile --------------*- Makefile -*-===##
11 TESTNAME = JIT
12 LINK_COMPONENTS := asmparser bitreader bitwriter jit native
14 # The JIT tests need to dlopen things.
23 # Build the Intel JIT Events interface tests
26 # Add the Intel JIT Events include directory
29 # Link against the LLVM Intel JIT Evens interface library
34 # Build the OProfile JIT interface tests
45 # Permit these tests to use the JIT's symbolic lookup.
  /external/pcre/dist/
RunTest.bat 18 @rem 12 requires presence of jit support
19 @rem 13 requires absence of jit support
20 @rem Sheri P also added override tests for study and jit testing
62 %pcretest% -C jit >NUL
63 set jit=%ERRORLEVEL% variable
312 if %jit% EQU 1 call :runsub 1 testoutjit "Test with JIT Override" -q -s+
318 if %jit% EQU 1 call :runsub 2 testoutjit "Test with JIT Override" -q -s+
324 if %jit% EQU 1 call :runsub 3 testoutjit "Test with JIT Override" -q -s
    [all...]
RunTest 17 # When JIT support is available, all appropriate tests are also run with -s+ to
18 # test (again, almost) everything with studying and the JIT option, unless
20 # JIT-specific features, one to be run when JIT support is available (unless
40 # example, if JIT support is not compiled, test 12 is skipped, whereas if JIT
74 title12="Test 12: JIT-specific features (when JIT is available)"
75 title13="Test 13: JIT-specific features (when JIT is not available)
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 10 // This file defines a MachineCodeEmitter object that is used by the JIT to
15 #include "JIT.h"
55 #define DEBUG_TYPE "jit"
69 // JIT lazy compilation code.
79 llvm_unreachable("The JIT doesn't know how to handle a"
112 /// Instance of the JIT this ResolverState serves.
113 JIT *TheJIT;
117 JITResolverState(JIT *jit) : FunctionToLazyStubMap(this),
120 TheJIT = jit;
    [all...]
JIT.cpp 1 //===-- 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*, 1> JITs; // Optimize for process containing just 1 JIT
    [all...]
  /device/htc/flounder/
product_svelte.mk 40 PRODUCT_PROPERTY_OVERRIDES += dalvik.vm.jit.codecachesize=0
  /external/lldb/lib/
Makefile 83 instrumentation ipo irreader selectiondag jit mc mcjit \

Completed in 517 milliseconds

1 2 3