Searched defs:jit (Results 1 - 21 of 21) sorted by relevance

/art/test/141-class-unload/
H A Djni_unload.cc21 #include "jit/jit.h"
29 jit::Jit* jit = Runtime::Current()->GetJit(); local
30 if (jit != nullptr) {
31 jit->WaitForCompilationToFinish(Thread::Current());
/art/compiler/jit/
H A Djit_compiler.h31 namespace jit { namespace in namespace:art
67 } // namespace jit
H A Djit_compiler.cc29 #include "jit/debugger_interface.h"
30 #include "jit/jit.h"
31 #include "jit/jit_code_cache.h"
38 namespace jit { namespace in namespace:art
45 VLOG(jit) << "loading jit compiler";
49 VLOG(jit) << "Done loading jit compiler";
149 cumulative_logger_.reset(new CumulativeLogger("jit time
[all...]
/art/runtime/jit/
H A Djit_code_cache.h41 namespace jit { namespace in namespace:art
339 } // namespace jit
H A Dprofiling_info.h30 namespace jit { namespace in namespace:art
198 friend class jit::JitCodeCache;
H A Djit.h34 namespace jit { namespace in namespace:art
145 // into the specified class linker to the jit debug interface,
189 std::unique_ptr<jit::JitCodeCache> code_cache_;
271 } // namespace jit
H A Djit.cc17 #include "jit.h"
37 namespace jit { namespace in namespace:art
40 // At what priority to schedule jit threads. 9 is the lowest foreground priority on device.
152 std::unique_ptr<Jit> jit(new Jit);
153 jit->dump_info_on_shutdown_ = options->DumpJitInfoOnShutdown();
157 jit->code_cache_.reset(JitCodeCache::Create(
160 jit->generate_debug_info_,
162 if (jit->GetCodeCache() == nullptr) {
165 jit->use_jit_compilation_ = options->UseJitCompilation();
166 jit
353 jit::Jit* jit = Runtime::Current()->GetJit(); local
394 Jit* jit = Runtime::Current()->GetJit(); local
[all...]
H A Djit_code_cache.cc29 #include "jit/jit.h"
30 #include "jit/profiling_info.h"
38 namespace jit { namespace in namespace:art
52 PLOG(FATAL) << "Failed to mprotect jit code cache"; \
103 data_map->RemapAtEnd(divider, "jit-code-cache", kProtAll, &error_str, use_ashmem);
159 VLOG(jit) << "Created jit code cache: initial data size="
368 VLOG(jit)
533 if (!kIsDebugBuild || VLOG_IS_ON(jit)) {
[all...]
/art/test/566-polymorphic-inlining/
H A Dpolymorphic_inline.cc18 #include "jit/jit.h"
19 #include "jit/jit_code_cache.h"
29 jit::Jit* jit = Runtime::Current()->GetJit(); local
30 jit::JitCodeCache* code_cache = jit->GetCodeCache();
51 jit::Jit* jit = Runtime::Current()->GetJit(); local
52 if (jit
[all...]
/art/compiler/
H A Dcompiler.h25 namespace jit { namespace in namespace:art
63 jit::JitCodeCache* code_cache ATTRIBUTE_UNUSED,
/art/test/570-checker-osr/
H A Dosr.cc18 #include "jit/jit.h"
19 #include "jit/jit_code_cache.h"
20 #include "jit/profiling_info.h"
62 jit::Jit* jit = Runtime::Current()->GetJit(); local
63 if (jit == nullptr) {
64 // Just return true for non-jit configurations to stop the infinite loop.
135 jit::Jit* jit local
[all...]
/art/test/common/
H A Druntime_state.cc21 #include "jit/jit.h"
22 #include "jit/jit_code_cache.h"
127 jit::Jit* jit = Runtime::Current()->GetJit(); local
128 if (jit == nullptr) {
140 jit::JitCodeCache* code_cache = jit->GetCodeCache();
152 jit->CompileMethod(method, soa.Self(), /* osr */ false);
/art/runtime/interpreter/
H A Dinterpreter.cc29 #include "jit/jit.h"
30 #include "jit/jit_code_cache.h"
288 jit::Jit* jit = Runtime::Current()->GetJit(); local
289 if (jit != nullptr) {
290 jit->MethodEntered(self, shadow_frame.GetMethod());
291 if (jit->CanInvokeCompiledCode(method)) {
612 jit::Jit* jit local
[all...]
H A Dinterpreter_goto_table_impl.cc24 #include "jit/jit.h"
73 if (jit::Jit::MaybeDoOnStackReplacement(self, method, dex_pc, offset, &result)) { \
80 if (jit != nullptr) { \
81 jit->AddSamples(self, method, 1, /*with_backedges*/ true); \
197 jit::Jit* jit = Runtime::Current()->GetJit(); local
H A Dinterpreter_switch_impl.cc20 #include "jit/jit.h"
78 if (jit::Jit::MaybeDoOnStackReplacement(self, method, dex_pc, offset, &result)) { \
89 if (jit != nullptr) { \
90 jit->AddSamples(self, method, 1, /*with_backedges*/ true); \
116 jit::Jit* jit = Runtime::Current()->GetJit(); local
H A Dinterpreter_common.cc23 #include "jit/jit.h"
534 jit::Jit* jit = Runtime::Current()->GetJit(); local
535 if (jit != nullptr && caller != nullptr) {
536 jit->NotifyInterpreterToCompiledCodeTransition(self, caller);
H A Dinterpreter_common.h37 #include "jit/jit.h"
646 jit::Jit* jit = Runtime::Current()->GetJit(); local
647 if (jit != nullptr) {
649 jit->InvokeVirtualOrInterface(
652 jit->AddSamples(self, sf_method, 1, /*with_backedges*/false);
694 jit::Jit* jit = Runtime::Current()->GetJit(); local
695 if (jit !
[all...]
/art/runtime/interpreter/mterp/
H A Dmterp.cc650 int32_t countdown_value = jit::kJitHotnessDisabled;
651 jit::Jit* jit = Runtime::Current()->GetJit(); local
652 if (jit != nullptr) {
653 int32_t warm_threshold = jit->WarmMethodThreshold();
654 int32_t hot_threshold = jit->HotMethodThreshold();
655 int32_t osr_threshold = jit->OSRMethodThreshold();
663 countdown_value = jit::kJitCheckForOSR;
665 if (jit::Jit::ShouldUsePriorityThreadWeight()) {
666 int32_t priority_thread_weight = jit
689 jit::Jit* jit = Runtime::Current()->GetJit(); local
703 jit::Jit* jit = Runtime::Current()->GetJit(); local
722 jit::Jit* jit = Runtime::Current()->GetJit(); local
[all...]
/art/runtime/base/
H A Dlogging.h47 bool jit; member in struct:art::LogVerbosity
/art/runtime/
H A Dart_method.cc30 #include "jit/jit.h"
31 #include "jit/jit_code_cache.h"
32 #include "jit/profiling_info.h"
408 jit::Jit* jit = Runtime::Current()->GetJit(); local
409 if (jit != nullptr) {
410 jit::JitCodeCache* code_cache = jit->GetCodeCache();
468 jit local
[all...]
H A Druntime.h53 namespace jit { namespace in namespace:art
56 } // namespace jit
452 jit::Jit* GetJit() {
585 jit::JitOptions* GetJITOptions() {
752 std::unique_ptr<jit::Jit> jit_;
753 std::unique_ptr<jit::JitOptions> jit_options_;

Completed in 639 milliseconds