This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from f0c3d71794d [AMDGPU] Allow SDWA in instructions with immediates and SGPRs new 5e57487f271 [SelectionDAG] Remove special case for ISD::FPOWI from the [...] new 825457abaab [CodeView] Add more DebugSubsection implementations.
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/CodeView.h | 20 +++++++ .../DebugInfo/CodeView/DebugChecksumsSubsection.h | 13 +++-- .../DebugInfo/CodeView/DebugFrameDataSubsection.h | 59 +++++++++++++++++++++ .../CodeView/DebugInlineeLinesSubsection.h | 5 +- .../llvm/DebugInfo/CodeView/DebugLinesSubsection.h | 8 +-- ...{StringTable.h => DebugStringTableSubsection.h} | 39 +++++++++----- include/llvm/DebugInfo/CodeView/DebugSubsection.h | 8 ++- .../DebugInfo/CodeView/DebugSymbolsSubsection.h | 53 +++++++++++++++++++ .../DebugInfo/CodeView/SymbolVisitorDelegate.h | 4 +- include/llvm/DebugInfo/PDB/Native/PDBStringTable.h | 4 +- .../DebugInfo/PDB/Native/PDBStringTableBuilder.h | 10 ++-- lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 4 -- lib/DebugInfo/CodeView/CMakeLists.txt | 8 +-- .../CodeView/DebugChecksumsSubsection.cpp | 13 +++-- .../CodeView/DebugFrameDataSubsection.cpp | 44 ++++++++++++++++ .../CodeView/DebugInlineeLinesSubsection.cpp | 6 +-- lib/DebugInfo/CodeView/DebugLinesSubsection.cpp | 8 +-- ...ingTable.cpp => DebugStringTableSubsection.cpp} | 27 ++++++---- lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp | 2 +- lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp | 34 ++++++++++++ lib/DebugInfo/CodeView/SymbolDumper.cpp | 6 +-- tools/llvm-readobj/COFFDumper.cpp | 61 +++++++++++----------- tools/llvm-readobj/CodeView.h | 54 ------------------- 23 files changed, 337 insertions(+), 153 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h rename include/llvm/DebugInfo/CodeView/{StringTable.h => DebugStringTableSubsectio [...] create mode 100644 include/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h create mode 100644 lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp rename lib/DebugInfo/CodeView/{StringTable.cpp => DebugStringTableSubsection.cpp} (61%) create mode 100644 lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp delete mode 100644 tools/llvm-readobj/CodeView.h