llvm-project/lldb/source/Plugins
Greg Clayton d4a2b37091 Huge memory and performance improvements in the DWARF parser.
Address ranges are now split up into two different tables: 
- one in DWARFDebugInfo that is compile unit specific
- one in each DWARFCompileUnit that has exact function DIE offsets

This helps keep the size of the aranges down since the main table will get
uniqued and sorted and have consecutive ranges merged. We then only parse the
compile unit one on demand once we have determined that a compile unit contains
the address in question. We also now use the .debug_aranges section if there 
is one instead of always indexing the DWARF manually.

NameToDIE now uses a UniqueCStringMap<dw_offset> map instead of a std::map.
std::map is very bulky as each node has 3 pointers and the key and value types.
This gets our NameToDIE entry down to 12 bytes each instead of 48 which saves
us a lot of memory when we have very large DWARF.

DWARFDebugAranges now has a smaller footprint for each range it contains to 
save on memory.

llvm-svn: 139557
2011-09-12 23:21:58 +00:00
..
ABI Added a new plug-in type: lldb_private::OperatingSystem. The operating system 2011-08-22 02:49:39 +00:00
Disassembler/llvm Revert the workaround patch in the last check in. With the local patch to LLVM, it is no longer necessary. 2011-08-19 17:31:59 +00:00
DynamicLoader Finishing the renaming from "MacOSX-Kernel" to "Darwin-Kernel". 2011-08-22 22:30:57 +00:00
Instruction/ARM Fix two logic errors uncovered by the static analyzer. 2011-08-16 01:16:02 +00:00
LanguageRuntime Redesign of the interaction between Python and frozen objects: 2011-09-06 19:20:51 +00:00
ObjectContainer Fixed an issue with parsing object files from .a archives. 2011-08-03 04:39:36 +00:00
ObjectFile Quick fixes to the PE COFF file loader. 2011-09-10 01:04:42 +00:00
OperatingSystem/Darwin-Kernel Redesign of the interaction between Python and frozen objects: 2011-09-06 19:20:51 +00:00
Platform Patch from Pilipe to allow "target create" on the remote-macosx platform! 2011-09-09 00:20:12 +00:00
Process Fixed the logging output to be done consistently across all plug-ins. 2011-09-12 04:05:41 +00:00
SymbolFile Huge memory and performance improvements in the DWARF parser. 2011-09-12 23:21:58 +00:00
SymbolVendor/MacOSX LLDB now has "Platform" plug-ins. Platform plug-ins are plug-ins that provide 2011-03-08 22:40:15 +00:00
UnwindAssembly Add UnwindAssembly plugins to makefile build 2011-05-19 17:34:58 +00:00
Makefile Patch by David Forsythe to build lldb on FreeBSD! 2011-08-02 20:52:42 +00:00