LLVM debug information visual analyzer
For more information, see the RFC https://discourse.llvm.org/t/llvm-dev-rfc-llvm-dva-debug-information-visual-analyzer/62570
Patches:
01 - Interval Tree
02 - Driver and Documentation
03 - Logical Elements
04 - Locations and Ranges
05 - Select Elements
06 - Warning and Internal Options
07 - Compare Elements
08 - ELF Reader
08a - Memory Management
09 - CodeView Reader
This is a high level summary of the changes in this patch.
Memory Management
- Use SpecificBumpPtrAllocator for memory management.
Why is this using a unique_ptr - can or should this be a container of raw pointers, allocating the objects using the new bumpptr allocator?