Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp357 uint64_t debug_info_size = 0; in GetDebugInfoSizeInSection() local
361 debug_info_size += section.GetFileByteSize(); in GetDebugInfoSizeInSection()
364 debug_info_size += in GetDebugInfoSizeInSection()
367 return debug_info_size; in GetDebugInfoSizeInSection()
371 uint64_t debug_info_size = 0; in GetDebugInfoSize() local
374 debug_info_size += GetDebugInfoSizeInSection(module.GetSectionAtIndex(i)); in GetDebugInfoSize()
376 return debug_info_size; in GetDebugInfoSize()
409 std::string debug_info_size; in CreateModule() local
412 debug_info_size = ConvertDebugInfoSizeToString(debug_info); in CreateModule()
415 object.try_emplace("debugInfoSize", debug_info_size); in CreateModule()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DStatistics.h117 uint64_t debug_info_size = 0; member