This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from d7bfb58 CFI-icall on Thumb new 777b5c3 Make a DWARF generator so we can unit test DWARF APIs with gtest.
The 1 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/CodeGen/DIE.h | 100 ++- include/llvm/CodeGen/DIEValue.def | 1 + include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h | 4 + include/llvm/MC/MCContext.h | 6 +- lib/CodeGen/AsmPrinter/DIE.cpp | 294 ++++++-- lib/CodeGen/AsmPrinter/DIEHash.cpp | 6 + lib/CodeGen/AsmPrinter/DwarfFile.cpp | 70 +- lib/CodeGen/AsmPrinter/DwarfFile.h | 15 +- lib/CodeGen/CMakeLists.txt | 1 + lib/CodeGen/DwarfGenerator.cpp | 262 +++++++ lib/CodeGen/DwarfGenerator.h | 231 ++++++ lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp | 9 + unittests/DebugInfo/DWARF/CMakeLists.txt | 8 + unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp | 790 +++++++++++++++++++++ 14 files changed, 1646 insertions(+), 151 deletions(-) create mode 100644 lib/CodeGen/DwarfGenerator.cpp create mode 100644 lib/CodeGen/DwarfGenerator.h create mode 100644 unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp