Home
last modified time | relevance | path

Searched refs:jit (Results 1 – 23 of 23) sorted by relevance

/art/runtime/jit/
Djit.cc32 namespace jit { namespace
65 std::unique_ptr<Jit> jit(new Jit); in Create() local
66 jit->dump_info_on_shutdown_ = options->DumpJitInfoOnShutdown(); in Create()
67 if (!jit->LoadCompiler(error_msg)) { in Create()
70 jit->code_cache_.reset(JitCodeCache::Create(options->GetCodeCacheCapacity(), error_msg)); in Create()
71 if (jit->GetCodeCache() == nullptr) { in Create()
77 return jit.release(); in Create()
111 VLOG(jit) << "Calling JitLoad interpreter_only=" in LoadCompiler()
132 VLOG(jit) << "JIT not compiling " << PrettyMethod(method) << " due to breakpoint"; in CompileMethod()
172 instrumentation_cache_.reset(new jit::JitInstrumentationCache(compile_threshold)); in CreateInstrumentationCache()
[all …]
Djit_instrumentation.cc25 namespace jit { namespace
35 VLOG(jit) << "JitCompileTask compiling method " << PrettyMethod(method_); in Run()
39 VLOG(jit) << "Failed to compile method " << PrettyMethod(method_); in Run()
108 VLOG(jit) << "Compiling hot method " << PrettyMethod(method); in AddSamples()
Djit.h37 namespace jit {
85 std::unique_ptr<jit::JitInstrumentationCache> instrumentation_cache_;
86 std::unique_ptr<jit::JitCodeCache> code_cache_;
Djit_code_cache.cc26 namespace jit { namespace
46 VLOG(jit) << "Created jit code cache size=" << PrettySize(mem_map->Size()); in JitCodeCache()
Djit_code_cache.h38 namespace jit {
Djit_instrumentation.h43 namespace jit {
Djit_code_cache_test.cc26 namespace jit { namespace
/art/
DAndroid.mk186 .PHONY: test-art-host-jit
187 test-art-host-jit: test-art-host-run-test-jit
208 .PHONY: test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX)
209 test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(ART_PHONY_TEST_HOST_SUF…
231 .PHONY: test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
232 test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(2ND_ART_PHONY_TEST_…
265 .PHONY: test-art-target-jit
266 test-art-target-jit: test-art-target-run-test-jit
287 .PHONY: test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX)
288 test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-jit$(ART_PHONY_TEST_TA…
[all …]
/art/compiler/jit/
Djit_compiler.cc37 namespace jit { namespace
44 VLOG(jit) << "loading jit compiler"; in jit_load()
48 VLOG(jit) << "Done loading jit compiler"; in jit_load()
110 TimingLogger logger("JIT compiler timing logger", true, VLOG_IS_ON(jit)); in CompileMethod()
116 VLOG(jit) << "Already compiled " << PrettyMethod(method); in CompileMethod()
123 VLOG(jit) << "JIT failed to initialize " << PrettyMethod(method); in CompileMethod()
135 VLOG(jit) << "Not compile method " << PrettyMethod(method) in CompileMethod()
260 VLOG(jit) << "JIT added " << PrettyMethod(method) << "@" << method << " ccache_size=" in AddToCodeCache()
Djit_compiler.h34 namespace jit {
/art/build/
DAndroid.oat.mk70 ifneq ($(filter-out default interpreter jit optimizing,$(1)),)
72 $$(error found $(1) expected default, interpreter, jit or optimizing)
184 ifneq ($(filter-out default interpreter jit optimizing,$(1)),)
186 $$(error found $(1) expected default, interpreter, jit or optimizing)
DAndroid.gtest.mk181 runtime/jit/jit_code_cache_test.cc \
/art/runtime/
Druntime.h51 namespace jit {
429 jit::Jit* GetJit() { in GetJit()
543 jit::JitOptions* GetJITOptions() { in GetJITOptions()
644 std::unique_ptr<jit::Jit> jit_;
645 std::unique_ptr<jit::JitOptions> jit_options_;
Dart_method.cc316 jit::Jit* const jit = Runtime::Current()->GetJit(); in AssertPcIsWithinQuickCode() local
317 if (jit != nullptr && in AssertPcIsWithinQuickCode()
318 jit->GetCodeCache()->ContainsCodePtr(reinterpret_cast<const void*>(code))) { in AssertPcIsWithinQuickCode()
DAndroid.mk97 jit/jit.cc \
98 jit/jit_code_cache.cc \
99 jit/jit_instrumentation.cc \
Druntime_options.def68 RUNTIME_OPTIONS_KEY (unsigned int, JITCompileThreshold, jit::Jit::kDefaultCompileThreshold)
69 RUNTIME_OPTIONS_KEY (MemoryKiB, JITCodeCacheCapacity, jit::JitCodeCache::kDefaultCapacity)
Dinstrumentation.cc92 jit::Jit* jit = runtime->GetJit(); in UpdateEntrypoints() local
93 if (jit != nullptr) { in UpdateEntrypoints()
95 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in UpdateEntrypoints()
Druntime.cc251 VLOG(jit) << "Deleting jit thread pool"; in ~Runtime()
267 VLOG(jit) << "Deleting jit"; in ~Runtime()
895 jit_options_.reset(jit::JitOptions::CreateFromRuntimeArguments(runtime_options)); in Init()
1705 jit_.reset(jit::Jit::Create(jit_options_.get(), &error_msg)); in CreateJit()
Dclass_linker.cc2076 jit::Jit* const jit = Runtime::Current()->GetJit(); in GetQuickOatCodeFor() local
2077 if (jit != nullptr) { in GetQuickOatCodeFor()
2078 auto* code = jit->GetCodeCache()->GetCodeFor(method); in GetQuickOatCodeFor()
2099 jit::Jit* jit = Runtime::Current()->GetJit(); in GetOatMethodQuickCodeFor() local
2100 if (jit != nullptr) { in GetOatMethodQuickCodeFor()
2101 auto* code = jit->GetCodeCache()->GetCodeFor(method); in GetOatMethodQuickCodeFor()
/art/test/
DAndroid.run-test.mk115 COMPILER_TYPES += jit
402 ifneq (,$(filter jit,$(COMPILER_TYPES)))
404 jit,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
669 ifeq ($(4),jit)
671 run_test_options += --jit
744 ifeq ($(4),jit)
/art/runtime/base/
Dlogging.h45 bool jit; member
/art/compiler/
DAndroid.mk91 jit/jit_compiler.cc \
/art/cmdline/
Dcmdline_types.h595 log_verbosity.jit = true;