This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 2cc0b076e87 [AVR] Enable the frame pointer for all functions new 4c78c0e348e [CodeView] Write CodeView line information. new 29f8995a43a Stylistic makeover of DWARFDebugLine before working on it. NFC
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: .../CodeView/ModuleDebugFileChecksumFragment.h | 24 ++ .../llvm/DebugInfo/CodeView/ModuleDebugFragment.h | 15 + .../DebugInfo/CodeView/ModuleDebugFragmentRecord.h | 16 + .../DebugInfo/CodeView/ModuleDebugLineFragment.h | 45 ++- include/llvm/DebugInfo/CodeView/TypeDatabase.h | 1 + include/llvm/DebugInfo/DWARF/DWARFDebugLine.h | 181 +++++------ .../PDB/Native/DbiModuleDescriptorBuilder.h | 20 ++ .../llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h | 1 + .../PDB/Native/ModuleDebugStreamBuilder.h | 0 .../llvm/DebugInfo/PDB/Native/StringTableBuilder.h | 1 + .../CodeView/ModuleDebugFileChecksumFragment.cpp | 47 +++ lib/DebugInfo/CodeView/ModuleDebugFragment.cpp | 2 + .../CodeView/ModuleDebugFragmentRecord.cpp | 38 ++- lib/DebugInfo/CodeView/ModuleDebugLineFragment.cpp | 89 +++++ lib/DebugInfo/CodeView/TypeDatabase.cpp | 4 + lib/DebugInfo/DWARF/DWARFDebugLine.cpp | 357 ++++++++++----------- .../PDB/Native/DbiModuleDescriptorBuilder.cpp | 59 +++- lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp | 8 + .../PDB/Native/ModuleDebugStreamBuilder.cpp | 0 lib/DebugInfo/PDB/Native/StringTableBuilder.cpp | 6 + test/DebugInfo/PDB/Inputs/simple-line-info.yaml | 38 +++ test/DebugInfo/PDB/pdbdump-headers.test | 4 +- .../DebugInfo/PDB/pdbdump-yaml-lineinfo-write.test | 52 +++ tools/llvm-pdbdump/LLVMOutputStyle.cpp | 5 +- tools/llvm-pdbdump/YAMLOutputStyle.cpp | 3 +- tools/llvm-pdbdump/llvm-pdbdump.cpp | 62 ++++ 26 files changed, 790 insertions(+), 288 deletions(-) copy bindings/python/llvm/__init__.py => include/llvm/DebugInfo/PDB/Native/ModuleD [...] copy bindings/python/llvm/__init__.py => lib/DebugInfo/PDB/Native/ModuleDebugStrea [...] create mode 100644 test/DebugInfo/PDB/Inputs/simple-line-info.yaml create mode 100644 test/DebugInfo/PDB/pdbdump-yaml-lineinfo-write.test