/art/test/566-polymorphic-inlining/ |
D | polymorphic_inline.cc | 33 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in do_checks() local 39 if (code_cache->ContainsPc(pc) && in do_checks()
|
/art/tools/jvmti-agents/chain-agents/ |
D | README.md | 34 /data/data/com.android.launcher3/code_cache/libtifast32.so=ClassLoad 35 /data/data/com.android.launcher3/code_cache/libtifast64.so=ClassLoad
|
/art/test/common/ |
D | runtime_state.cc | 272 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in ForceJitCompiled() local 275 code_cache->SetGarbageCollectCode(false); in ForceJitCompiled() 292 if (code_cache->ContainsPc(entry_point)) { in ForceJitCompiled() 407 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in Java_Main_fetchProfiles() local 412 code_cache->GetProfiledMethods(unused_locations, unused_vector, /*inline_cache_threshold=*/0); in Java_Main_fetchProfiles() 612 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in Java_Main_removeJitCompiledMethod() local 618 bool removed = code_cache->RemoveMethod(method, static_cast<bool>(release_memory)); in Java_Main_removeJitCompiledMethod()
|
/art/runtime/jit/ |
D | profiling_info.cc | 87 jit::JitCodeCache* code_cache = Runtime::Current()->GetJit()->GetCodeCache(); in Create() local 88 return code_cache->AddProfilingInfo(self, method, inline_cache_entries, branch_cache_entries); in Create()
|
D | jit.cc | 86 Jit::Jit(JitCodeCache* code_cache, JitOptions* options) in Jit() argument 87 : code_cache_(code_cache), in Jit() 97 std::unique_ptr<Jit> Jit::Create(JitCodeCache* code_cache, JitOptions* options) { in Create() argument 99 std::unique_ptr<Jit> jit(new Jit(code_cache, options)); in Create() 108 if (code_cache->GetGarbageCollectCode()) { in Create() 109 code_cache->SetGarbageCollectCode(!jit_compiler_->GenerateDebugInfo() && in Create() 877 JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache(); in Run() local 878 code_cache->GetZygoteMap()->Initialize(added_to_queue); in Run()
|
D | jit.h | 189 static std::unique_ptr<Jit> Create(JitCodeCache* code_cache, JitOptions* options); 397 Jit(JitCodeCache* code_cache, JitOptions* options);
|
D | jit_code_cache.cc | 1037 MarkCodeClosure(JitCodeCache* code_cache, CodeCacheBitmap* bitmap, Barrier* barrier) in MarkCodeClosure() argument 1038 : code_cache_(code_cache), bitmap_(bitmap), barrier_(barrier) {} in MarkCodeClosure()
|
/art/compiler/jit/ |
D | jit_compiler.cc | 201 JitCodeCache* const code_cache = jit->GetCodeCache(); in CompileMethod() local 204 self, code_cache, region, method, compilation_kind, jit_logger_.get()); in CompileMethod()
|
/art/compiler/ |
D | compiler.h | 71 [[maybe_unused]] jit::JitCodeCache* code_cache, in JitCompile() argument
|
/art/compiler/optimizing/ |
D | optimizing_compiler.cc | 278 jit::JitCodeCache* code_cache, 1259 jit::JitCodeCache* code_cache, in JitCompile() argument 1266 DCHECK_EQ(compiler_options.IsJitCompilerForSharedCode(), code_cache->IsSharedRegion(*region)); in JitCompile() 1312 if (!code_cache->Reserve(self, in JitCompile() 1349 if (!code_cache->Commit(self, in JitCompile() 1361 code_cache->Free(self, region, reserved_code.data(), reserved_data.data()); in JitCompile() 1408 if (!code_cache->Reserve(self, in JitCompile() 1461 if (!code_cache->Commit(self, in JitCompile() 1475 code_cache->Free(self, region, reserved_code.data(), reserved_data.data()); in JitCompile()
|
/art/runtime/gc/space/ |
D | dlmalloc_space.cc | 450 jit::JitCodeCache* code_cache = runtime->GetJitCodeCache(); in ArtDlMallocMoreCore() local 451 if (code_cache->OwnsSpace(mspace)) { in ArtDlMallocMoreCore() 452 return code_cache->MoreCore(mspace, increment); in ArtDlMallocMoreCore()
|
/art/runtime/ |
D | art_method.cc | 629 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in GetOatQuickMethodHeader() local 630 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this); in GetOatQuickMethodHeader() 635 if (kIsDebugBuild && code_cache->ContainsPc(reinterpret_cast<const void*>(pc))) { in GetOatQuickMethodHeader() 636 code_cache->DumpAllCompiledMethods(LOG_STREAM(FATAL_WITHOUT_ABORT)); in GetOatQuickMethodHeader()
|
D | cha.cc | 675 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in InvalidateSingleImplementationMethods() local 677 code_cache->InvalidateCompiledCodeFor(pair.first, pair.second); in InvalidateSingleImplementationMethods()
|
D | class_linker.cc | 2700 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache(); in PrepareToDeleteClassLoader() local 2701 if (code_cache != nullptr) { in PrepareToDeleteClassLoader() 2703 code_cache->RemoveMethodsIn(self, *data.allocator); in PrepareToDeleteClassLoader()
|
/art/openjdkjvmti/ |
D | ti_redefine.cc | 3051 auto code_cache = jit->GetCodeCache(); in UpdateClassInPlace() local 3056 code_cache->NotifyMethodRedefined(&method); in UpdateClassInPlace()
|