Home
last modified time | relevance | path

Searched refs:code_cache (Results 1 – 10 of 10) sorted by relevance

/art/test/566-polymorphic-inlining/
Dpolymorphic_inline.cc30 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in do_checks() local
37 if (code_cache->ContainsPc(header->GetCode())) { in do_checks()
/art/runtime/jit/
Dprofiling_info.cc61 jit::JitCodeCache* code_cache = Runtime::Current()->GetJit()->GetCodeCache(); in Create() local
62 return code_cache->AddProfilingInfo(self, method, entries, retry_allocation) != nullptr; in Create()
Djit_code_cache.cc467 MarkCodeClosure(JitCodeCache* code_cache, Barrier* barrier) in MarkCodeClosure() argument
468 : code_cache_(code_cache), barrier_(barrier) {} in MarkCodeClosure()
/art/compiler/jit/
Djit_compiler.cc220 JitCodeCache* const code_cache = runtime->GetJit()->GetCodeCache(); in CompileMethod() local
221 success = compiler_driver_->GetCompiler()->JitCompile(self, code_cache, method, osr); in CompileMethod()
228 << code_cache->GetMemorySizeOfCodePointer(ptr) in CompileMethod()
/art/test/common/
Druntime_state.cc140 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in Java_Main_ensureJitCompiled() local
146 if (code_cache->ContainsPc(header->GetCode())) { in Java_Main_ensureJitCompiled()
/art/compiler/
Dcompiler.h63 jit::JitCodeCache* code_cache ATTRIBUTE_UNUSED, in JitCompile()
/art/runtime/gc/space/
Ddlmalloc_space.cc329 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache(); in ArtDlMallocMoreCore() local
330 if (code_cache->OwnsSpace(mspace)) { in ArtDlMallocMoreCore()
331 return code_cache->MoreCore(mspace, increment); in ArtDlMallocMoreCore()
/art/runtime/
Dart_method.cc410 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in GetOatQuickMethodHeader() local
411 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this); in GetOatQuickMethodHeader()
416 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc))) in GetOatQuickMethodHeader()
Dclass_linker.cc2045 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache(); in DeleteClassLoader() local
2046 if (code_cache != nullptr) { in DeleteClassLoader()
2047 code_cache->RemoveMethodsIn(self, *data.allocator); in DeleteClassLoader()
/art/compiler/optimizing/
Doptimizing_compiler.cc295 bool JitCompile(Thread* self, jit::JitCodeCache* code_cache, ArtMethod* method, bool osr)
869 jit::JitCodeCache* code_cache, in JitCompile() argument
918 uint8_t* stack_map_data = code_cache->ReserveData(self, stack_map_size, method); in JitCompile()
924 const void* code = code_cache->CommitCode( in JitCompile()
936 code_cache->ClearData(self, stack_map_data); in JitCompile()