Searched refs:code_cache (Results 1 – 10 of 10) sorted by relevance
/art/test/566-polymorphic-inlining/ |
D | polymorphic_inline.cc | 30 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in do_checks() local 37 if (code_cache->ContainsPc(header->GetCode())) { in do_checks()
|
/art/runtime/jit/ |
D | profiling_info.cc | 61 jit::JitCodeCache* code_cache = Runtime::Current()->GetJit()->GetCodeCache(); in Create() local 62 return code_cache->AddProfilingInfo(self, method, entries, retry_allocation) != nullptr; in Create()
|
D | jit_code_cache.cc | 467 MarkCodeClosure(JitCodeCache* code_cache, Barrier* barrier) in MarkCodeClosure() argument 468 : code_cache_(code_cache), barrier_(barrier) {} in MarkCodeClosure()
|
/art/compiler/jit/ |
D | jit_compiler.cc | 220 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/ |
D | runtime_state.cc | 140 jit::JitCodeCache* code_cache = jit->GetCodeCache(); in Java_Main_ensureJitCompiled() local 146 if (code_cache->ContainsPc(header->GetCode())) { in Java_Main_ensureJitCompiled()
|
/art/compiler/ |
D | compiler.h | 63 jit::JitCodeCache* code_cache ATTRIBUTE_UNUSED, in JitCompile()
|
/art/runtime/gc/space/ |
D | dlmalloc_space.cc | 329 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/ |
D | art_method.cc | 410 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()
|
D | class_linker.cc | 2045 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/ |
D | optimizing_compiler.cc | 295 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()
|