• Home
  • Raw
  • Download

Lines Matching refs:method_header

712   OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromCodePointer(code_ptr);  in GetRootTable()  local
713 uint8_t* data = method_header->GetOptimizedCodeInfoPtr(); in GetRootTable()
829 for (const OatQuickMethodHeader* method_header : method_headers) { in FreeAllMethodHeaders() local
830 FreeCodeAndData(method_header->GetCode()); in FreeAllMethodHeaders()
994 OatQuickMethodHeader* method_header = nullptr; in CommitCodeInternal() local
1020 method_header = OatQuickMethodHeader::FromCodePointer(code_ptr); in CommitCodeInternal()
1027 new (method_header) OatQuickMethodHeader( in CommitCodeInternal()
1033 method_header->SetHasShouldDeoptimizeFlag(); in CommitCodeInternal()
1038 method_header = TranslateAddress(method_header, non_exec_pages_, exec_pages_); in CommitCodeInternal()
1118 class_linker->GetClassHierarchyAnalysis()->AddDependency(single_impl, method, method_header); in CommitCodeInternal()
1132 instrum->UpdateMethodsCode(m, method_header->GetEntryPoint()); in CommitCodeInternal()
1164 method_header->GetEntryPoint()); in CommitCodeInternal()
1167 method, method_header->GetEntryPoint()); in CommitCodeInternal()
1175 << reinterpret_cast<const void*>(method_header->GetEntryPoint()) << "," in CommitCodeInternal()
1176 << reinterpret_cast<const void*>(method_header->GetEntryPoint() + in CommitCodeInternal()
1177 method_header->GetCodeSize()); in CommitCodeInternal()
1187 return reinterpret_cast<uint8_t*>(method_header); in CommitCodeInternal()
1411 const OatQuickMethodHeader* method_header = in Run() local
1413 if (method_header == nullptr) { in Run()
1416 const void* code = method_header->GetCode(); in Run()
1436 OatQuickMethodHeader* method_header = in Run() local
1438 if (method_header != nullptr) { in Run()
1439 const void* code = method_header->GetCode(); in Run()
1606 const OatQuickMethodHeader* method_header = in GarbageCollectCache() local
1609 if (method->GetEntryPointFromQuickCompiledCode() == method_header->GetEntryPoint()) { in GarbageCollectCache()
1719 const OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromCodePointer(code_ptr); in DoCollection() local
1721 if (method_header->GetEntryPoint() == method->GetEntryPointFromQuickCompiledCode()) { in DoCollection()
1733 const OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromCodePointer(code_ptr); in DoCollection() local
1734 if (method_header->GetEntryPoint() == method->GetEntryPointFromQuickCompiledCode()) { in DoCollection()
1787 const OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromCodePointer(code_ptr); in CheckLiveCompiledCodeHasProfilingInfo() local
1788 if (method_header->GetEntryPoint() == method->GetEntryPointFromQuickCompiledCode()) { in CheckLiveCompiledCodeHasProfilingInfo()
1815 OatQuickMethodHeader* method_header = nullptr; in LookupMethodHeader() local
1823 method_header = OatQuickMethodHeader::FromCodePointer(code_ptr); in LookupMethodHeader()
1824 if (!method_header->Contains(pc)) { in LookupMethodHeader()
1833 method_header = OatQuickMethodHeader::FromCodePointer(code_ptr); in LookupMethodHeader()
1837 if (method_header == nullptr && method == nullptr) { in LookupMethodHeader()
1844 method_header = OatQuickMethodHeader::FromCodePointer(data.GetCode()); in LookupMethodHeader()
1848 if (method_header == nullptr) { in LookupMethodHeader()
1867 return method_header; in LookupMethodHeader()
2079 OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromCodePointer(data->GetCode()); in NotifyCompilationOf() local
2080 const void* entrypoint = method_header->GetEntryPoint(); in NotifyCompilationOf()