This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from ebaf57b [libFuzzer] Add missing header needed for Windows. new adb170f Make a DWARFDIE class that can help avoid using the wrong DWA [...] new 26fec96 GlobalISel: fix GOT accesses on AArch64.
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h | 107 +----- include/llvm/DebugInfo/DWARF/DWARFDie.h | 300 ++++++++++++++++ include/llvm/DebugInfo/DWARF/DWARFUnit.h | 34 +- lib/DebugInfo/DWARF/CMakeLists.txt | 1 + lib/DebugInfo/DWARF/DWARFCompileUnit.cpp | 6 +- lib/DebugInfo/DWARF/DWARFContext.cpp | 42 +-- lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp | 399 +-------------------- lib/DebugInfo/DWARF/DWARFDie.cpp | 391 ++++++++++++++++++++ lib/DebugInfo/DWARF/DWARFTypeUnit.cpp | 9 +- lib/DebugInfo/DWARF/DWARFUnit.cpp | 90 +++-- lib/Target/AArch64/AArch64InstructionSelector.cpp | 5 +- .../AArch64/GlobalISel/arm64-instructionselect.mir | 6 +- tools/dsymutil/DwarfLinker.cpp | 249 +++++++------ unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp | 260 +++++++------- unittests/DebugInfo/DWARF/DwarfGenerator.cpp | 1 - 15 files changed, 1047 insertions(+), 853 deletions(-) create mode 100644 include/llvm/DebugInfo/DWARF/DWARFDie.h create mode 100644 lib/DebugInfo/DWARF/DWARFDie.cpp