/art/runtime/jit/ |
D | jit.cc | 32 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 …]
|
D | jit_instrumentation.cc | 25 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()
|
D | jit.h | 37 namespace jit { 85 std::unique_ptr<jit::JitInstrumentationCache> instrumentation_cache_; 86 std::unique_ptr<jit::JitCodeCache> code_cache_;
|
D | jit_code_cache.cc | 26 namespace jit { namespace 46 VLOG(jit) << "Created jit code cache size=" << PrettySize(mem_map->Size()); in JitCodeCache()
|
D | jit_code_cache.h | 38 namespace jit {
|
D | jit_instrumentation.h | 43 namespace jit {
|
D | jit_code_cache_test.cc | 26 namespace jit { namespace
|
/art/ |
D | Android.mk | 186 .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/ |
D | jit_compiler.cc | 37 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()
|
D | jit_compiler.h | 34 namespace jit {
|
/art/build/ |
D | Android.oat.mk | 70 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)
|
D | Android.gtest.mk | 181 runtime/jit/jit_code_cache_test.cc \
|
/art/runtime/ |
D | runtime.h | 51 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_;
|
D | art_method.cc | 316 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()
|
D | Android.mk | 97 jit/jit.cc \ 98 jit/jit_code_cache.cc \ 99 jit/jit_instrumentation.cc \
|
D | runtime_options.def | 68 RUNTIME_OPTIONS_KEY (unsigned int, JITCompileThreshold, jit::Jit::kDefaultCompileThreshold) 69 RUNTIME_OPTIONS_KEY (MemoryKiB, JITCodeCacheCapacity, jit::JitCodeCache::kDefaultCapacity)
|
D | instrumentation.cc | 92 jit::Jit* jit = runtime->GetJit(); in UpdateEntrypoints() local 93 if (jit != nullptr) { in UpdateEntrypoints() 95 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in UpdateEntrypoints()
|
D | runtime.cc | 251 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()
|
D | class_linker.cc | 2076 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/ |
D | Android.run-test.mk | 115 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/ |
D | logging.h | 45 bool jit; member
|
/art/compiler/ |
D | Android.mk | 91 jit/jit_compiler.cc \
|
/art/cmdline/ |
D | cmdline_types.h | 595 log_verbosity.jit = true;
|