This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 4c12732 Fix Clang-tidy readability-redundant-string-cstr warnings new 08f7b24 AMDGPU: Allow additional implicit operands on MOVRELS instructions new d773047 Add CodeViewRecordIO for reading and writing.
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/CodeView/CodeViewRecordIO.h | 135 +++++ include/llvm/DebugInfo/CodeView/TypeDeserializer.h | 101 +++- include/llvm/DebugInfo/CodeView/TypeIndex.h | 1 + include/llvm/DebugInfo/CodeView/TypeRecord.h | 621 +++++---------------- .../llvm/DebugInfo/CodeView/TypeRecordMapping.h | 46 ++ include/llvm/DebugInfo/MSF/StreamWriter.h | 9 +- lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 30 +- lib/DebugInfo/CodeView/CMakeLists.txt | 2 + lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 66 +-- lib/DebugInfo/CodeView/CodeViewRecordIO.cpp | 186 ++++++ lib/DebugInfo/CodeView/TypeDumper.cpp | 7 +- lib/DebugInfo/CodeView/TypeRecord.cpp | 378 ------------- lib/DebugInfo/CodeView/TypeRecordMapping.cpp | 417 ++++++++++++++ lib/DebugInfo/CodeView/TypeStreamMerger.cpp | 9 +- lib/DebugInfo/CodeView/TypeTableBuilder.cpp | 8 +- lib/DebugInfo/MSF/StreamWriter.cpp | 20 + lib/Target/AMDGPU/SIInstrInfo.cpp | 5 +- test/CodeGen/MIR/AMDGPU/movrels-bug.mir | 31 + test/DebugInfo/PDB/pdbdump-yaml-types.test | 278 ++++----- tools/llvm-pdbdump/YamlTypeDumper.cpp | 28 +- 20 files changed, 1225 insertions(+), 1153 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h create mode 100644 include/llvm/DebugInfo/CodeView/TypeRecordMapping.h create mode 100644 lib/DebugInfo/CodeView/CodeViewRecordIO.cpp create mode 100644 lib/DebugInfo/CodeView/TypeRecordMapping.cpp create mode 100644 test/CodeGen/MIR/AMDGPU/movrels-bug.mir