Home
last modified time | relevance | path

Searched refs:GetCodeCache (Results 1 – 24 of 24) sorted by relevance

/aosp_15_r20/art/test/570-checker-osr/
H A Dosr.cc69 Runtime::Current()->GetJit()->GetCodeCache()->LookupOsrMethodHeader(m); in Java_Main_isInOsrCode()
91 Runtime::Current()->GetJit()->GetCodeCache()->LookupOsrMethodHeader(m); in Java_Main_isInInterpreter()
113 while (jit->GetCodeCache()->LookupOsrMethodHeader(m) == nullptr) { in Java_Main_ensureHasOsrCode()
/aosp_15_r20/art/runtime/jit/
H A Djit.cc179 !GetCodeCache()->CanAllocateProfilingInfo()) { in CompileMethodInternal()
207 JitMemoryRegion* region = GetCodeCache()->GetCurrentRegion(); in CompileMethodInternal()
208 if ((compilation_kind == CompilationKind::kOsr) && GetCodeCache()->IsSharedRegion(*region)) { in CompileMethodInternal()
362 if (!GetCodeCache()->ContainsPc(method->GetEntryPointFromQuickCompiledCode())) { in PrepareForOsr()
376 const OatQuickMethodHeader* osr_method = GetCodeCache()->LookupOsrMethodHeader(method); in PrepareForOsr()
781 Runtime::Current()->GetJit()->GetCodeCache()->GetZygoteMap()->SetCompilationState( in Run()
880 JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache(); in Run()
1407 if (GetCodeCache()->ContainsPc(entry_point) && in EnqueueOptimizedCompilation()
1490 if (!runtime->GetJit()->GetCodeCache()->GetZygoteMap()->IsCompilationNotified()) { in Run()
1672 if (GetCodeCache()->ContainsPc(method->GetEntryPointFromQuickCompiledCode())) { in MaybeEnqueueCompilation()
[all …]
H A Dprofiling_info.cc87 jit::JitCodeCache* code_cache = Runtime::Current()->GetJit()->GetCodeCache(); in Create()
156 : jit->GetCodeCache()->NotifyCompilerUse(method, self)) in ScopedProfilingInfoUse()
161 jit_->GetCodeCache()->DoneCompilerUse(method_, self_); in ~ScopedProfilingInfoUse()
H A Djit.h199 const JitCodeCache* GetCodeCache() const { in GetCodeCache() function
203 JitCodeCache* GetCodeCache() { in GetCodeCache() function
H A Djit_code_cache.cc1231 Runtime::Current()->GetJit()->GetCodeCache()->DoCollection(self); in Run()
/aosp_15_r20/art/test/common/
H A Druntime_state.cc211 return jit->GetCodeCache()->ContainsPc( in Java_Main_hasJitCompiledEntrypoint()
227 return jit->GetCodeCache()->ContainsMethod(method); in Java_Main_hasJitCompiledCode()
272 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in ForceJitCompiled()
409 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in Java_Main_fetchProfiles()
614 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in Java_Main_removeJitCompiledMethod()
/aosp_15_r20/art/runtime/
H A Dinstrumentation.cc235 if (jit != nullptr && jit->GetCodeCache()->ContainsPc(entry_point)) { in CodeSupportsEntryExitHooks()
267 if (jit != nullptr && jit->GetCodeCache()->ContainsPc(new_code)) { in UpdateEntryPoints()
302 jit->GetCodeCache()->ContainsPc(current_entry_point)) { in UpdateEntryPoints()
303 jit->GetCodeCache()->AddZombieCode(method, current_entry_point); in UpdateEntryPoints()
365 const void* code = jit->GetCodeCache()->GetSavedEntryPointOfPreCompiledMethod(method); in GetOptimizedCodeFor()
1189 } else if (jit != nullptr && jit->GetCodeCache()->ContainsPc(code)) { in EntryPointString()
1394 jit->GetCodeCache()->InvalidateAllCompiledCode(); in MaybeSwitchRuntimeDebugState()
H A Dquick_exception_handler.cc745 runtime->GetJit()->GetCodeCache()->InvalidateCompiledCodeFor( in DeoptimizeSingleFrame()
773 runtime->GetJit()->GetCodeCache()->MaybeUpdateInlineCache( in DeoptimizeSingleFrame()
781 runtime->GetJit()->GetCodeCache()->MaybeUpdateInlineCache( in DeoptimizeSingleFrame()
H A Dart_method.cc629 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in GetOatQuickMethodHeader()
667 (jit != nullptr && jit->GetCodeCache()->ContainsPc(existing_entry_point)) || in GetOatQuickMethodHeader()
805 if (runtime->GetJit()->GetCodeCache()->ContainsPc(entry_point)) { in CopyFrom()
H A Druntime.cc903 GetJit()->GetCodeCache()->SweepRootTables(visitor); in SweepSystemWeaks()
2787 GetJit()->GetCodeCache()->DisallowInlineCacheAccess(); in DisallowNewSystemWeaks()
2803 GetJit()->GetCodeCache()->AllowInlineCacheAccess(); in AllowNewSystemWeaks()
2821 GetJit()->GetCodeCache()->BroadcastForInlineCacheAccess(); in BroadcastForNewSystemWeaks()
3073 GetJit()->GetCodeCache()->PrivateRegionContainsPc(reinterpret_cast<const void*>(code))) { in IsAsyncDeoptimizeable()
3217 Runtime::Current()->GetJit()->GetCodeCache()->IsInZygoteExecSpace(code) && in operator ()()
3257 jit->GetCodeCache()->TransitionToDebuggable(); in DeoptimizeBootImage()
H A Dstack.cc852 const void* code = runtime->GetJit()->GetCodeCache()->GetJniStubCode(method); in WalkStack()
882 code = runtime->GetJit()->GetCodeCache()->GetJniStubCode(method); in WalkStack()
H A Dcha.cc675 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in InvalidateSingleImplementationMethods()
H A Dtrace.cc819 jit->GetCodeCache()->InvalidateAllCompiledCode(); in Start()
820 jit->GetCodeCache()->TransitionToDebuggable(); in Start()
H A Dart_method-inl.h626 runtime->GetJit()->GetCodeCache()->VisitRootTables(this, visitor);
H A Dclass_linker.cc2714 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache(); in PrepareToDeleteClassLoader()
/aosp_15_r20/art/runtime/native/
H A Ddalvik_system_ZygoteHooks.cc284 Runtime::Current()->GetJit()->GetCodeCache()->PostForkChildAction( in ZygoteHooks_nativePostForkSystemServer()
360 runtime->GetJit()->GetCodeCache()->PostForkChildAction( in ZygoteHooks_nativePostForkChild()
/aosp_15_r20/art/test/664-aget-verifier/
H A Daget-verifier.cc48 if (jit != nullptr && jit->GetCodeCache()->ContainsMethod(art_method)) { in Java_Main_testCompiled()
/aosp_15_r20/art/test/667-jit-jni-stub/
H A Djit_jni_stub_test.cc41 jit::JitCodeCache* cache = Runtime::Current()->GetJit()->GetCodeCache(); in Java_Main_jitGc()
/aosp_15_r20/art/test/566-polymorphic-inlining/
H A Dpolymorphic_inline.cc33 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in do_checks()
/aosp_15_r20/art/openjdkjvmti/
H A Ddeopt_manager.cc189 jit->GetCodeCache()->InvalidateAllCompiledCode(); in FinishSetup()
190 jit->GetCodeCache()->TransitionToDebuggable(); in FinishSetup()
H A Dti_redefine.cc864 jit->GetCodeCache()->MoveObsoleteMethod(it.old_method, it.obsolete_method); in FindAndAllocateObsoleteMethods()
2974 jit->GetCodeCache()->InvalidateAllCompiledCode(); in UpdateClassStructurally()
3050 auto code_cache = jit->GetCodeCache(); in UpdateClassInPlace()
/aosp_15_r20/art/compiler/jit/
H A Djit_compiler.cc201 JitCodeCache* const code_cache = jit->GetCodeCache(); in CompileMethod()
/aosp_15_r20/art/compiler/optimizing/
H A Doptimizing_compiler.cc843 ProfilingInfo* info = jit->GetCodeCache()->GetProfilingInfo(method, Thread::Current()); in TryCompile()
H A Dinliner.cc736 Runtime::Current()->GetJit()->GetCodeCache()->CopyInlineCacheInto(*cache, classes); in GetInlineCacheJIT()