Searched refs:code_cache_ (Results 1 – 3 of 3) sorted by relevance
/art/runtime/jit/ |
D | jit.cc | 161 code_cache_->Dump(os); in DumpInfo() 177 : code_cache_(code_cache), in Jit() 272 if (!code_cache_->NotifyCompilationOf(method_to_compile, self, osr)) { in CompileMethod() 280 code_cache_->DoneCompiling(method_to_compile, self, osr); in CompileMethod() 331 ProfileSaver::Start(options_->GetProfileSaverOptions(), filename, code_cache_, code_paths); in StartProfileSaver() 346 return code_cache_->ContainsPc(method->GetEntryPointFromQuickCompiledCode()); in CanInvokeCompiledCode() 897 if (!code_cache_->ContainsPc(method->GetEntryPointFromQuickCompiledCode())) { in MaybeCompileMethod() 907 if (!code_cache_->IsOsrCompiled(method)) { in MaybeCompileMethod() 1028 code_cache_->SetGarbageCollectCode(!jit_generate_debug_info_(jit_compiler_handle_) && in PostForkChildAction() 1041 code_cache_->SetGarbageCollectCode(false); in PostForkChildAction()
|
D | jit.h | 177 return code_cache_; in GetCodeCache() 181 return code_cache_; in GetCodeCache() 350 jit::JitCodeCache* const code_cache_; variable
|
D | jit_code_cache.cc | 575 code_cache_(code_cache) { in ScopedCodeCacheWrite() 577 const MemMap* const updatable_pages = code_cache_->GetUpdatableCodeMapping(); in ScopedCodeCacheWrite() 579 int prot = code_cache_->HasDualCodeMapping() ? kProtRW : kProtRWX; in ScopedCodeCacheWrite() 586 const MemMap* const updatable_pages = code_cache_->GetUpdatableCodeMapping(); in ~ScopedCodeCacheWrite() 588 int prot = code_cache_->HasDualCodeMapping() ? kProtR : kProtRX; in ~ScopedCodeCacheWrite() 594 const JitCodeCache* const code_cache_; member in art::jit::ScopedCodeCacheWrite 1404 : code_cache_(code_cache), bitmap_(bitmap), barrier_(barrier) {} in MarkCodeClosure() 1417 if (code_cache_->ContainsPc(code) && !code_cache_->IsInZygoteExecSpace(code)) { in Run() 1437 code_cache_->LookupMethodHeader(frame.return_pc_, /* method= */ nullptr); in Run() 1448 JitCodeCache* const code_cache_; member in art::jit::MarkCodeClosure
|