[llvm-debuginfo-analyzer] (02/09) - Driver and documentation
authorCarlos Alberto Enciso <carlos.alberto.enciso@gmail.com>
Mon, 17 Oct 2022 12:46:55 +0000 (13:46 +0100)
committerCarlos Alberto Enciso <carlos.alberto.enciso@gmail.com>
Mon, 17 Oct 2022 12:46:55 +0000 (13:46 +0100)
commitfe7a3cedf77125a6309150d85cecbc20b1a31775
tree0e742f2ef1ce0f340510acd54f67e7546c33d2ab
parentf471acfd03ce9c0c9cfdf8daf4d21b5b82fbf69e
[llvm-debuginfo-analyzer] (02/09) - Driver and documentation

llvm-debuginfo-analyzer is a command line tool that processes debug
info contained in a binary file and produces a debug information
format agnostic “Logical View”, which is a high-level semantic
representation of the debug info, independent of the low-level
format.

The code has been divided into the following patches:

1) Interval tree
2) Driver and documentation
3) Logical elements
4) Locations and ranges
5) Select elements
6) Warning and internal options
7) Compare elements
8) ELF Reader
9) CodeView Reader

Full details:
https://discourse.llvm.org/t/llvm-dev-rfc-llvm-dva-debug-information-visual-analyzer/62570

This patch:

Driver and documentation
- Command line options.
- Full documentation.
- String Pool table.

Reviewed By: psamolysov, probinson

Differential Revision: https://reviews.llvm.org/D125777
28 files changed:
llvm/docs/CommandGuide/index.rst
llvm/docs/CommandGuide/llvm-debuginfo-analyzer.rst [new file with mode: 0644]
llvm/include/llvm/DebugInfo/LogicalView/Core/LVElement.h [new file with mode: 0644]
llvm/include/llvm/DebugInfo/LogicalView/Core/LVLine.h [new file with mode: 0644]
llvm/include/llvm/DebugInfo/LogicalView/Core/LVObject.h [new file with mode: 0644]
llvm/include/llvm/DebugInfo/LogicalView/Core/LVOptions.h [new file with mode: 0644]
llvm/include/llvm/DebugInfo/LogicalView/Core/LVScope.h [new file with mode: 0644]
llvm/include/llvm/DebugInfo/LogicalView/Core/LVSort.h [new file with mode: 0644]
llvm/include/llvm/DebugInfo/LogicalView/Core/LVStringPool.h [new file with mode: 0644]
llvm/include/llvm/DebugInfo/LogicalView/Core/LVSupport.h [new file with mode: 0644]
llvm/include/llvm/DebugInfo/LogicalView/Core/LVSymbol.h [new file with mode: 0644]
llvm/include/llvm/DebugInfo/LogicalView/Core/LVType.h [new file with mode: 0644]
llvm/lib/DebugInfo/CMakeLists.txt
llvm/lib/DebugInfo/LogicalView/CMakeLists.txt [new file with mode: 0644]
llvm/lib/DebugInfo/LogicalView/Core/LVOptions.cpp [new file with mode: 0644]
llvm/lib/DebugInfo/LogicalView/LLVMBuild.txt [new file with mode: 0644]
llvm/test/CMakeLists.txt
llvm/test/lit.cfg.py
llvm/test/tools/llvm-debuginfo-analyzer/cmdline.test [new file with mode: 0644]
llvm/tools/llvm-debuginfo-analyzer/CMakeLists.txt [new file with mode: 0644]
llvm/tools/llvm-debuginfo-analyzer/LLVMBuild.txt [new file with mode: 0644]
llvm/tools/llvm-debuginfo-analyzer/Options.cpp [new file with mode: 0644]
llvm/tools/llvm-debuginfo-analyzer/Options.h [new file with mode: 0644]
llvm/tools/llvm-debuginfo-analyzer/llvm-debuginfo-analyzer.cpp [new file with mode: 0644]
llvm/unittests/DebugInfo/CMakeLists.txt
llvm/unittests/DebugInfo/LogicalView/CMakeLists.txt [new file with mode: 0644]
llvm/unittests/DebugInfo/LogicalView/CommandLineOptionsTest.cpp [new file with mode: 0644]
llvm/unittests/DebugInfo/LogicalView/StringPoolTest.cpp [new file with mode: 0644]