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

1 2 3 4

  /art/test/141-class-unload/
jni_unload.cc 21 #include "jit/jit.h"
29 jit::Jit* jit = Runtime::Current()->GetJit(); local
30 if (jit != nullptr) {
31 jit->WaitForCompilationToFinish(Thread::Current());
36 jit::Jit* jit = Runtime::Current()->GetJit() local
43 jit::Jit* jit = Runtime::Current()->GetJit(); local
    [all...]
  /art/tools/cpp-define-generator/
constant_jit.def 17 // Constants within jit.h.
20 #include "jit/jit.h" // art::kSuspendRequest, etc.
26 DEFINE_JIT_CONSTANT(CHECK_OSR, int16_t, art::jit::kJitCheckForOSR)
27 DEFINE_JIT_CONSTANT(HOTNESS_DISABLE, int16_t, art::jit::kJitHotnessDisabled)
  /external/swiftshader/third_party/LLVM/bindings/ocaml/executionengine/
Makefile 16 UsedComponents := executionengine jit interpreter native
  /external/swiftshader/third_party/LLVM/examples/BrainF/
Makefile 13 LINK_COMPONENTS := jit bitwriter nativecodegen interpreter
  /external/swiftshader/third_party/LLVM/examples/ExceptionDemo/
Makefile 14 LINK_COMPONENTS := jit interpreter nativecodegen
  /external/swiftshader/third_party/LLVM/examples/Fibonacci/
Makefile 14 # Link in JIT support
15 LINK_COMPONENTS := jit interpreter nativecodegen
  /external/swiftshader/third_party/LLVM/examples/HowToUseJIT/
Makefile 13 LINK_COMPONENTS := jit interpreter nativecodegen
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
Makefile 13 LINK_COMPONENTS := core jit native
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
Makefile 13 LINK_COMPONENTS := core jit native
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
Makefile 13 LINK_COMPONENTS := core jit native
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
Makefile 14 LINK_COMPONENTS := core jit native
  /external/swiftshader/third_party/LLVM/examples/ParallelJIT/
Makefile 13 LINK_COMPONENTS := jit interpreter nativecodegen
  /art/test/566-polymorphic-inlining/
polymorphic_inline.cc 19 #include "jit/jit.h"
20 #include "jit/jit_code_cache.h"
21 #include "jit/profiling_info.h"
31 jit::Jit* jit = Runtime::Current()->GetJit(); local
32 jit::JitCodeCache* code_cache = jit->GetCodeCache();
46 jit->CompileMethod(method, soa.Self(), /* osr */ false)
63 jit::Jit* jit = Runtime::Current()->GetJit(); local
74 jit::Jit* jit = Runtime::Current()->GetJit(); local
    [all...]
  /art/test/708-jit-cache-churn/
jit.cc 20 #include "jit/jit.h"
21 #include "jit/jit_code_cache.h"
40 jit::Jit* jit = Runtime::Current()->GetJit(); local
41 jit->WaitForCompilationToFinish(Thread::Current());
46 jit::JitCodeCache* code_cache = jit->GetCodeCache();
51 ScopedSuspendAll suspend("Removing JIT compiled method", /*long_suspend*/true)
    [all...]
  /external/swiftshader/third_party/LLVM/tools/lli/
Makefile 12 LINK_COMPONENTS := mcjit jit interpreter nativecodegen bitreader asmparser selectiondag
14 # Enable JIT support
  /external/webrtc/webrtc/p2p/client/
autoportallocator.h 33 buzz::JingleInfoTask* jit = new buzz::JingleInfoTask(client); local
34 jit->SignalJingleInfo.connect(this, &AutoPortAllocator::OnJingleInfo);
35 jit->Start();
36 jit->RefreshJingleInfoNow();
  /art/tools/golem/
env 43 ALL_TARGETS=(art-interpreter art-opt art-jit art-jit-cc art-opt-cc art-opt-debuggable art-vdex)
  /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.
  /art/test/common/
runtime_state.cc 24 #include "jit/jit.h"
25 #include "jit/jit_code_cache.h"
26 #include "jit/profiling_info.h"
38 static jit::Jit* GetJitIfEnabled() {
101 // Could be JIT, which also uses optimizing, but conservatively say no.
158 jit::Jit* jit = GetJitIfEnabled() local
175 jit::Jit* jit = GetJitIfEnabled(); local
233 jit::Jit* jit = Runtime::Current()->GetJit(); local
258 jit::Jit* jit = GetJitIfEnabled(); local
    [all...]
  /art/test/570-checker-osr/
osr.cc 18 #include "jit/jit.h"
19 #include "jit/jit_code_cache.h"
20 #include "jit/profiling_info.h"
63 jit::Jit* jit = Runtime::Current()->GetJit(); local
64 if (jit == nullptr) {
65 // Just return true for non-jit configurations to stop the infinite loop.
80 // The return value is irrelevant if we're not using JIT
136 jit::Jit* jit = Runtime::Current()->GetJit(); local
    [all...]
  /art/runtime/jit/
jit.cc 17 #include "jit.h"
43 namespace jit { namespace in namespace:art
46 // At what priority to schedule jit threads. 9 is the lowest foreground priority on device.
54 // JIT compiler
55 void* Jit::jit_library_handle_= nullptr;
56 void* Jit::jit_compiler_handle_ = nullptr;
57 void* (*Jit::jit_load_)(bool*) = nullptr;
58 void (*Jit::jit_unload_)(void*) = nullptr;
59 bool (*Jit::jit_compile_method_)(void*, ArtMethod*, Thread*, bool) = nullptr;
60 void (*Jit::jit_types_loaded_)(void*, mirror::Class**, size_t count) = nullptr
400 jit::Jit* jit = Runtime::Current()->GetJit(); local
441 Jit* jit = Runtime::Current()->GetJit(); local
759 jit::Jit* jit = Runtime::Current()->GetJit(); local
    [all...]
profiling_info.h 30 namespace jit { namespace in namespace:art
32 } // namespace jit
48 friend class jit::JitCodeCache;
144 // is implicitly guarded by the JIT code cache lock.
145 // TODO: Make the JIT code cache lock global.
153 // Entry point of the corresponding ArtMethod, while the JIT code cache
160 friend class jit::JitCodeCache;
profile_saver.h 35 jit::JitCodeCache* jit_code_cache,
65 jit::JitCodeCache* jit_code_cache,
77 // Processes the existing profiling info from the jit code cache and returns
112 jit::JitCodeCache* jit_code_cache_;
  /art/compiler/
compiler.h 26 namespace jit { namespace in namespace:art
29 } // namespace jit
78 jit::JitCodeCache* code_cache ATTRIBUTE_UNUSED,
81 jit::JitLogger* jit_logger ATTRIBUTE_UNUSED)
  /art/
Android.mk 195 # All host tests that run solely on the jit.
196 .PHONY: test-art-host-jit
197 test-art-host-jit: test-art-host-run-test-jit
218 .PHONY: test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX)
219 test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(ART_PHONY_TEST_HOST_SUFFIX)
241 .PHONY: test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
242 test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX
    [all...]

Completed in 1552 milliseconds

1 2 3 4