Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Target/
H A DStatistics.cpp60 module.try_emplace("debugInfoByteSize", (int64_t)debug_info_size); in ToJSON()
178 uint64_t debug_info_size = 0; in ReportStatistics() local
223 module_stat.debug_info_size = sym_file->GetDebugInfoSize(); in ReportStatistics()
239 module_stat.debug_info_size > 0; in ReportStatistics()
242 if (module_stat.debug_info_size > 0) in ReportStatistics()
249 debug_info_size += module_stat.debug_info_size; in ReportStatistics()
270 {"totalDebugInfoByteSize", debug_info_size}, in ReportStatistics()
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp354 uint64_t debug_info_size = 0; in GetDebugInfoSizeInSection() local
358 debug_info_size += section.GetFileByteSize(); in GetDebugInfoSizeInSection()
361 debug_info_size += in GetDebugInfoSizeInSection()
364 return debug_info_size; in GetDebugInfoSizeInSection()
368 uint64_t debug_info_size = 0; in GetDebugInfoSize() local
371 debug_info_size += GetDebugInfoSizeInSection(module.GetSectionAtIndex(i)); in GetDebugInfoSize()
373 return debug_info_size; in GetDebugInfoSize()
406 std::string debug_info_size; in CreateModule() local
409 debug_info_size = ConvertDebugInfoSizeToString(debug_info); in CreateModule()
412 object.try_emplace("debugInfoSize", debug_info_size); in CreateModule()
/llvm-project-15.0.7/lldb/source/Core/
H A DSection.cpp666 uint64_t debug_info_size = 0; in GetDebugInfoSize() local
670 debug_info_size += sub_sections.GetDebugInfoSize(); in GetDebugInfoSize()
672 debug_info_size += section->GetFileSize(); in GetDebugInfoSize()
674 return debug_info_size; in GetDebugInfoSize()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DStatistics.h114 uint64_t debug_info_size = 0; member