Home
last modified time | relevance | path

Searched refs:pci (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dinliner.cc739 const ProfileCompilationInfo* pci = codegen_->GetCompilerOptions().GetProfileCompilationInfo(); in GetInlineCacheAOT() local
740 if (pci == nullptr) { in GetInlineCacheAOT()
744 ProfileCompilationInfo::MethodHotness hotness = pci->GetMethodHotness(MethodReference( in GetInlineCacheAOT()
778 const char* descriptor = pci->GetTypeDescriptor(dex_file, type_index); in GetInlineCacheAOT()
/art/dex2oat/linker/
Doat_writer.cc1062 ProfileCompilationInfo* pci = writer_->profile_compilation_info_; in VisitMethod() local
1063 DCHECK(pci != nullptr); in VisitMethod()
1071 (pci->IsHotMethod(profile_index_, method_index) ? kHotBit : 0u) | in VisitMethod()
1072 (pci->IsStartupMethod(profile_index_, method_index) ? kStartupBit : 0u) | in VisitMethod()
1073 (pci->IsPostStartupMethod(profile_index_, method_index) ? kPostStartupBit : 0u); in VisitMethod()