Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DStatistics.cpp60 module.try_emplace("debugInfoByteSize", (int64_t)debug_info_size); in ToJSON()
198 uint64_t debug_info_size = 0; in ReportStatistics() local
245 module_stat.debug_info_size = sym_file->GetDebugInfoSize(); in ReportStatistics()
261 module_stat.debug_info_size > 0; in ReportStatistics()
266 if (module_stat.debug_info_size > 0) in ReportStatistics()
275 debug_info_size += module_stat.debug_info_size; in ReportStatistics()
306 {"totalDebugInfoByteSize", debug_info_size}, in ReportStatistics()
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp672 uint64_t debug_info_size = 0; in GetDebugInfoSize() local
676 debug_info_size += sub_sections.GetDebugInfoSize(); in GetDebugInfoSize()
678 debug_info_size += section->GetFileSize(); in GetDebugInfoSize()
680 return debug_info_size; in GetDebugInfoSize()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DStatistics.h117 uint64_t debug_info_size = 0; member