Searched defs:code_cache (Results 1 - 9 of 9) sorted by relevance

/art/test/566-polymorphic-inlining/
H A Dpolymorphic_inline.cc30 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
37 if (code_cache->ContainsPc(header->GetCode())) {
/art/runtime/jit/
H A Dprofiling_info.cc84 jit::JitCodeCache* code_cache = Runtime::Current()->GetJit()->GetCodeCache(); local
85 return code_cache->AddProfilingInfo(self, method, entries, retry_allocation) != nullptr;
H A Djit_code_cache.cc474 MarkCodeClosure(JitCodeCache* code_cache, Barrier* barrier) argument
475 : code_cache_(code_cache), barrier_(barrier) {}
/art/test/common/
H A Druntime_state.cc140 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
146 if (code_cache->ContainsPc(header->GetCode())) {
/art/compiler/jit/
H A Djit_compiler.cc220 JitCodeCache* const code_cache = runtime->GetJit()->GetCodeCache(); local
221 success = compiler_driver_->GetCompiler()->JitCompile(self, code_cache, method, osr);
228 << code_cache->GetMemorySizeOfCodePointer(ptr)
/art/runtime/gc/space/
H A Ddlmalloc_space.cc329 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache(); local
330 if (code_cache->OwnsSpace(mspace)) {
331 return code_cache->MoreCore(mspace, increment);
/art/runtime/
H A Dart_method.cc410 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
411 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
416 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
H A Dclass_linker.cc2047 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache(); local
2048 if (code_cache != nullptr) {
2049 code_cache->RemoveMethodsIn(self, *data.allocator);
/art/compiler/optimizing/
H A Doptimizing_compiler.cc295 bool JitCompile(Thread* self, jit::JitCodeCache* code_cache, ArtMethod* method, bool osr)
869 jit::JitCodeCache* code_cache,
918 uint8_t* stack_map_data = code_cache->ReserveData(self, stack_map_size, method);
924 const void* code = code_cache->CommitCode(
936 code_cache->ClearData(self, stack_map_data);
868 JitCompile(Thread* self, jit::JitCodeCache* code_cache, ArtMethod* method, bool osr) argument

Completed in 317 milliseconds