This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 714d9ba [X86][AVX512BWVL] Added support for combining target v16i16 s [...] new e4fce5a [pdb] added support for dumping globals stream
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/DebugInfo/PDB/Raw/GlobalsStream.h | 45 +++++++++++++ include/llvm/DebugInfo/PDB/Raw/PDBFile.h | 3 + include/llvm/DebugInfo/PDB/Raw/PublicsStream.h | 2 +- lib/DebugInfo/PDB/CMakeLists.txt | 2 + lib/DebugInfo/PDB/Raw/GSI.cpp | 93 ++++++++++++++++++++++++++ lib/DebugInfo/PDB/Raw/GSI.h | 70 +++++++++++++++++++ lib/DebugInfo/PDB/Raw/GlobalsStream.cpp | 46 +++++++++++++ lib/DebugInfo/PDB/Raw/PDBFile.cpp | 17 +++++ lib/DebugInfo/PDB/Raw/PublicsStream.cpp | 54 +++------------ test/DebugInfo/PDB/pdbdump-headers.test | 14 +++- tools/llvm-pdbdump/LLVMOutputStyle.cpp | 24 +++++++ tools/llvm-pdbdump/LLVMOutputStyle.h | 1 + tools/llvm-pdbdump/llvm-pdbdump.cpp | 3 + tools/llvm-pdbdump/llvm-pdbdump.h | 1 + 14 files changed, 326 insertions(+), 49 deletions(-) create mode 100644 include/llvm/DebugInfo/PDB/Raw/GlobalsStream.h create mode 100644 lib/DebugInfo/PDB/Raw/GSI.cpp create mode 100644 lib/DebugInfo/PDB/Raw/GSI.h create mode 100644 lib/DebugInfo/PDB/Raw/GlobalsStream.cpp