Home
last modified time | relevance | path

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

/art/compiler/debug/
Delf_debug_writer.cc140 ArrayRef<const MethodDebugInfo> method_infos) { in MakeElfFileForJITInternal() argument
141 CHECK_GT(method_infos.size(), 0u); in MakeElfFileForJITInternal()
144 for (const MethodDebugInfo& mi : method_infos) { in MakeElfFileForJITInternal()
150 debug_info.compiled_methods = method_infos; in MakeElfFileForJITInternal()
159 if (method_infos.size() > 1) { in MakeElfFileForJITInternal()
194 ArrayRef<const MethodDebugInfo> method_infos) { in MakeElfFileForJIT() argument
196 return MakeElfFileForJITInternal<ElfTypes64>(isa, features, mini_debug_info, method_infos); in MakeElfFileForJIT()
198 return MakeElfFileForJITInternal<ElfTypes32>(isa, features, mini_debug_info, method_infos); in MakeElfFileForJIT()
Delf_debug_frame_writer.h172 const ArrayRef<const MethodDebugInfo>& method_infos, in WriteCFISection() argument
183 sorted_method_infos.reserve(method_infos.size()); in WriteCFISection()
184 for (size_t i = 0; i < method_infos.size(); i++) { in WriteCFISection()
185 if (!method_infos[i].cfi.empty() && !method_infos[i].deduped) { in WriteCFISection()
186 sorted_method_infos.push_back(&method_infos[i]); in WriteCFISection()
Delf_debug_writer.h57 ArrayRef<const MethodDebugInfo> method_infos);