/art/test/566-polymorphic-inlining/ |
D | polymorphic_inline.cc | 32 jit::Jit* jit = Runtime::Current()->GetJit(); in do_checks() local 33 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in do_checks() 49 jit->CompileMethod(method, soa.Self(), CompilationKind::kOptimized, /*prejit=*/ false); in do_checks() 64 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_Main_ensureProfilingInfo566() local 65 if (jit == nullptr) { in Java_Main_ensureProfilingInfo566() 75 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_Main_ensureJittedAndPolymorphicInline566() local 76 if (jit == nullptr) { in Java_Main_ensureJittedAndPolymorphicInline566()
|
/art/test/common/ |
D | runtime_state.cc | 48 static jit::Jit* GetJitIfEnabled() { in GetJitIfEnabled() 204 jit::Jit* jit = GetJitIfEnabled(); in Java_Main_hasJitCompiledEntrypoint() local 205 if (jit == nullptr) { in Java_Main_hasJitCompiledEntrypoint() 213 return jit->GetCodeCache()->ContainsPc( in Java_Main_hasJitCompiledEntrypoint() 221 jit::Jit* jit = GetJitIfEnabled(); in Java_Main_hasJitCompiledCode() local 222 if (jit == nullptr) { in Java_Main_hasJitCompiledCode() 229 return jit->GetCodeCache()->ContainsMethod(method); in Java_Main_hasJitCompiledCode() 267 jit::Jit* jit = GetJitIfEnabled(); in ForceJitCompiled() local 268 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in ForceJitCompiled() 279 if (!native && jit->GetCodeCache()->CanAllocateProfilingInfo()) { in ForceJitCompiled() [all …]
|
/art/test/141-class-unload/ |
D | jni_unload.cc | 29 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_IntHolder_waitForCompilation() local 30 if (jit != nullptr) { in Java_IntHolder_waitForCompilation() 31 jit->WaitForCompilationToFinish(Thread::Current()); in Java_IntHolder_waitForCompilation()
|
/art/test/708-jit-cache-churn/ |
D | jit.cc | 40 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_JitCacheChurnTest_removeJitCompiledMethod() local 41 jit->WaitForCompilationToFinish(Thread::Current()); in Java_JitCacheChurnTest_removeJitCompiledMethod() 46 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in Java_JitCacheChurnTest_removeJitCompiledMethod()
|
D | info.txt | 1 …rmission updates and CPU cache inconsistencies. Only runs when test runner permits JIT, e.g. --jit.
|
/art/tools/cpp-define-generator/ |
D | osr.def | 18 #include "jit/jit.h" 21 ASM_DEFINE(OSR_DATA_NATIVE_PC, art::jit::OsrData::NativePcOffset().Int32Value()) 22 ASM_DEFINE(OSR_DATA_FRAME_SIZE, art::jit::OsrData::FrameSizeOffset().Int32Value()) 23 ASM_DEFINE(OSR_DATA_MEMORY, art::jit::OsrData::MemoryOffset().Int32Value())
|
D | globals.def | 27 #include "jit/jit.h" 59 art::jit::kJitCheckForOSR) 61 art::jit::kJitHotnessDisabled)
|
/art/test/570-checker-osr/ |
D | osr.cc | 57 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_Main_isInOsrCode() local 58 if (jit == nullptr) { in Java_Main_isInOsrCode() 127 jit::Jit* jit = Runtime::Current()->GetJit(); in Java_Main_ensureHasOsrCode() 128 while (jit->GetCodeCache()->LookupOsrMethodHeader(m) == nullptr) { in Java_Main_ensureHasOsrCode() 132 jit->CompileMethod( in Java_Main_ensureHasOsrCode()
|
/art/compiler/ |
D | compiler.h | 30 namespace jit { 76 jit::JitCodeCache* code_cache ATTRIBUTE_UNUSED, in JitCompile() 77 jit::JitMemoryRegion* region ATTRIBUTE_UNUSED, in JitCompile() 80 jit::JitLogger* jit_logger ATTRIBUTE_UNUSED) in JitCompile()
|
/art/tools/golem/ |
D | env | 43 ALL_TARGETS=(art-interpreter art-opt art-jit art-jit-cc art-opt-cc art-opt-debuggable art-vdex)
|
/art/runtime/jit/ |
D | profiling_info.h | 31 namespace jit { 54 friend class jit::JitCodeCache; 153 friend class jit::JitCodeCache;
|
D | jit.cc | 60 namespace jit { namespace 236 std::unique_ptr<Jit> jit(new Jit(code_cache, options)); in Create() local 247 VLOG(jit) << "JIT created with initial_capacity=" in Create() 263 jit->DumpTypeInfoForLoadedTypes(Runtime::Current()->GetClassLinker()); in Create() 264 return jit.release(); in Create() 303 VLOG(jit) << "JIT not compiling " << method->PrettyMethod() in CompileMethod() 312 VLOG(jit) << "JIT not compiling " << method->PrettyMethod() << " due to method being made " in CompileMethod() 321 VLOG(jit) << "JIT not compiling " << method->PrettyMethod() << " due to deoptimization"; in CompileMethod() 327 VLOG(jit) << "JIT not osr compiling " in CompileMethod() 341 VLOG(jit) << "Compiling method " in CompileMethod() [all …]
|
D | profile_saver.h | 35 jit::JitCodeCache* jit_code_cache, 63 jit::JitCodeCache* jit_code_cache, 117 jit::JitCodeCache* jit_code_cache_;
|
D | debugger_interface.cc | 239 static jit::JitMemoryRegion* Memory() ASSERT_CAPABILITY(Locks::jit_lock_) { in Memory() 241 jit::JitCodeCache* jit_code_cache = Runtime::Current()->GetJitCodeCache(); in Memory() 243 jit::JitMemoryRegion* memory = jit_code_cache->GetCurrentRegion(); in Memory() 488 jit::Jit* jit = Runtime::Current()->GetJit(); in RepackEntries() local 489 if (jit == nullptr) { in RepackEntries() 541 std::vector<uint8_t> packed = jit->GetJitCompiler()->PackElfFileForJIT( in RepackEntries() 543 VLOG(jit) in RepackEntries() 588 VLOG(jit) in AddNativeDebugInfoForJit() 611 VLOG(jit) << "JIT mini-debug-info removed for " << code_ptr; in RemoveNativeDebugInfoForJit()
|
/art/compiler/jit/ |
D | jit_compiler.cc | 38 namespace jit { namespace 121 VLOG(jit) << "Create jit compiler"; in jit_load() 124 VLOG(jit) << "Done creating jit compiler"; in jit_load() 177 "JIT compiler timing logger", true, VLOG_IS_ON(jit), TimingLogger::TimingKind::kThreadCpu); in CompileMethod() 195 VLOG(jit) << "Compilation of " in CompileMethod()
|
/art/test/utils/ |
D | regen-test-files | 96 art-run-test-1935-get-set-current-frame-jit 109 art-run-test-1954-pop-frame-jit 110 art-run-test-1955-pop-frame-jit-called 111 art-run-test-1956-pop-frame-jit-calling 113 art-run-test-1958-transform-try-jit 115 art-run-test-1960-obsolete-jit-multithread-native 116 art-run-test-1961-obsolete-jit-multithread 187 art-run-test-655-jit-clinit 192 art-run-test-667-jit-jni-stub 198 art-run-test-689-zygote-jit-deopt [all …]
|
/art/test/597-deopt-busy-loop/ |
D | run | 18 exec ${RUN} --jit -Xcompiler-option --debuggable "${@}"
|
/art/test/667-jit-jni-stub/ |
D | jit_jni_stub_test.cc | 33 jit::JitCodeCache* cache = Runtime::Current()->GetJit()->GetCodeCache(); in isNextJitGcFull() 52 jit::JitCodeCache* cache = Runtime::Current()->GetJit()->GetCodeCache(); in Java_Main_jitGc()
|
/art/ |
D | Android.mk | 149 .PHONY: test-art-host-jit 150 test-art-host-jit: test-art-host-run-test-jit 171 .PHONY: test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX) 172 test-art-host-jit$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(ART_PHONY_TEST_HOST_SUF… 194 .PHONY: test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX) 195 test-art-host-jit$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-jit$(2ND_ART_PHONY_TEST_… 228 .PHONY: test-art-target-jit 229 test-art-target-jit: test-art-target-run-test-jit 250 .PHONY: test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX) 251 test-art-target-jit$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-jit$(ART_PHONY_TEST_TA… [all …]
|
/art/test/597-deopt-invoke-stub/ |
D | run | 21 exec ${RUN} "${@}" --jit --runtime-option -Xjitthreshold:10000 -Xcompiler-option --debuggable
|
/art/test/676-proxy-jit-at-first-use/ |
D | info.txt | 1 Regression test for "jit at first use" (-Xjitthreshold:0) crash for proxy methods. b/73718713
|
/art/test/638-checker-inline-cache-intrinsic/ |
D | run | 22 exec ${RUN} --jit --runtime-option -Xjitinitialsize:32M --runtime-option -Xjitthreshold:1000 -Xcomp…
|
/art/tools/jvmti-agents/jit-load/ |
D | jitload.cc | 40 auto* jit = art::Runtime::Current()->GetJit(); in GetJitThread() local 41 if (jit == nullptr) { in GetJitThread() 44 auto* thread_pool = jit->GetThreadPool(); in GetJitThread()
|
/art/runtime/interpreter/mterp/ |
D | mterp.cc | 886 int32_t countdown_value = jit::kJitHotnessDisabled; in MterpSetUpHotnessCountdown() 887 jit::Jit* jit = Runtime::Current()->GetJit(); in MterpSetUpHotnessCountdown() local 888 if (jit != nullptr) { in MterpSetUpHotnessCountdown() 889 int32_t warm_threshold = jit->WarmMethodThreshold(); in MterpSetUpHotnessCountdown() 890 int32_t hot_threshold = jit->HotMethodThreshold(); in MterpSetUpHotnessCountdown() 891 int32_t osr_threshold = jit->OSRMethodThreshold(); in MterpSetUpHotnessCountdown() 899 countdown_value = jit::kJitCheckForOSR; in MterpSetUpHotnessCountdown() 901 if (jit::Jit::ShouldUsePriorityThreadWeight(self)) { in MterpSetUpHotnessCountdown() 902 int32_t priority_thread_weight = jit->PriorityThreadWeight(); in MterpSetUpHotnessCountdown() 925 jit::Jit* jit = Runtime::Current()->GetJit(); in MterpAddHotnessBatch() local [all …]
|
/art/test/694-clinit-jit/ |
D | Android.bp | 3 name: "art-run-test-694-clinit-jit",
|