Home
last modified time | relevance | path

Searched refs:code_cache_ (Results 1 – 3 of 3) sorted by relevance

/art/runtime/jit/
Djit.h56 return code_cache_.get(); in GetCodeCache()
60 return code_cache_.get(); in GetCodeCache()
189 std::unique_ptr<jit::JitCodeCache> code_cache_; variable
Djit.cc128 code_cache_->Dump(os); in DumpInfo()
157 jit->code_cache_.reset(JitCodeCache::Create( in Create()
263 if (!code_cache_->NotifyCompilationOf(method_to_compile, self, osr)) { in CompileMethod()
271 code_cache_->DoneCompiling(method_to_compile, self, osr); in CompileMethod()
314 ProfileSaver::Start(filename, code_cache_.get(), code_paths, foreign_dex_profile_path, app_dir); in StartProfileSaver()
329 return code_cache_->ContainsPc(method->GetEntryPointFromQuickCompiledCode()); in CanInvokeCompiledCode()
639 !code_cache_->ContainsPc(method->GetEntryPointFromQuickCompiledCode())) { in AddSamples()
650 if ((new_count >= osr_method_threshold_) && !code_cache_->IsOsrCompiled(method)) { in AddSamples()
Djit_code_cache.cc444 code_cache_(code_cache_in), in MarkCodeVisitor()
445 bitmap_(code_cache_->GetLiveBitmap()) {} in MarkCodeVisitor()
453 if (code_cache_->ContainsPc(code)) { in VisitFrame()
461 JitCodeCache* const code_cache_; member in art::jit::FINAL
468 : code_cache_(code_cache), barrier_(barrier) {} in MarkCodeClosure()
473 MarkCodeVisitor visitor(thread, code_cache_); in Run()
485 code_cache_->LookupMethodHeader(frame.return_pc_, nullptr); in Run()
488 CHECK(code_cache_->GetLiveBitmap()->Test(FromCodeToAllocation(code))); in Run()
496 JitCodeCache* const code_cache_; member in art::jit::FINAL