Home
last modified time | relevance | path

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

/art/compiler/debug/
Delf_debug_frame_writer.h176 const ArrayRef<const MethodDebugInfo>& method_infos) { in WriteCFISection() argument
182 sorted_method_infos.reserve(method_infos.size()); in WriteCFISection()
183 for (size_t i = 0; i < method_infos.size(); i++) { in WriteCFISection()
184 if (!method_infos[i].cfi.empty() && !method_infos[i].deduped) { in WriteCFISection()
185 sorted_method_infos.push_back(&method_infos[i]); in WriteCFISection()
239 if (binary_search_table_is_valid && method_infos.size() >= kMinDebugFrameHdrEntries) { in WriteCFISection()
/art/runtime/
Dtrace.cc334 std::unordered_map<ArtMethod*, std::string> method_infos; in ProcessBuffer() local
338 trace_writer->PreProcessTraceForMethodInfos(buffer, cur_offset, method_infos); in ProcessBuffer()
340 trace_writer->FlushBuffer(buffer, cur_offset, thread_id, method_infos); in ProcessBuffer()
1413 std::unordered_map<ArtMethod*, std::string>& method_infos) { in PreProcessTraceForMethodInfos() argument
1429 if (!HasMethodEncoding(method) && method_infos.find(method) == method_infos.end()) { in PreProcessTraceForMethodInfos()
1430 method_infos.emplace(method, std::move(GetMethodInfoLine(method))); in PreProcessTraceForMethodInfos()
1628 std::unordered_map<ArtMethod*, std::string> method_infos; in FlushBuffer() local
1630 PreProcessTraceForMethodInfos(method_trace_entries, *current_offset, method_infos); in FlushBuffer()
1632 FlushBuffer(method_trace_entries, *current_offset, tid, method_infos); in FlushBuffer()
1691 const std::unordered_map<ArtMethod*, std::string>& method_infos, in FlushEntriesFormatV1() argument
[all …]
Dtrace.h181 std::unordered_map<ArtMethod*, std::string>& method_infos)
189 const std::unordered_map<ArtMethod*, std::string>& method_infos)
262 const std::unordered_map<ArtMethod*, std::string>& method_infos,