This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0e4bc86 [AVX512] Fix shuffle comment printing to handle the masked ve [...] new 579bef0 Add support for writing through StreamInterface. new 90005b6 Make PDBFile take a StreamInterface instead of a MemBuffer. new e041e26 [AVX512] Add shuffle comment printing for masked VPERMPD/VPERMQ.
The 3 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/ByteStream.h | 21 +- include/llvm/DebugInfo/CodeView/CodeViewError.h | 1 + include/llvm/DebugInfo/CodeView/StreamArray.h | 2 + include/llvm/DebugInfo/CodeView/StreamInterface.h | 13 + include/llvm/DebugInfo/CodeView/StreamReader.h | 1 + include/llvm/DebugInfo/CodeView/StreamRef.h | 28 +- include/llvm/DebugInfo/CodeView/StreamWriter.h | 82 ++++++ include/llvm/DebugInfo/PDB/Raw/IPDBFile.h | 3 + include/llvm/DebugInfo/PDB/Raw/MappedBlockStream.h | 6 +- include/llvm/DebugInfo/PDB/Raw/PDBFile.h | 45 ++- include/llvm/DebugInfo/PDB/Raw/RawError.h | 4 +- include/llvm/Support/MathExtras.h | 8 + lib/DebugInfo/CodeView/ByteStream.cpp | 52 +++- lib/DebugInfo/CodeView/CMakeLists.txt | 1 + lib/DebugInfo/CodeView/CodeViewError.cpp | 2 + lib/DebugInfo/CodeView/StreamReader.cpp | 7 + lib/DebugInfo/CodeView/StreamWriter.cpp | 77 ++++++ lib/DebugInfo/CodeView/TypeDumper.cpp | 2 +- lib/DebugInfo/PDB/Raw/MappedBlockStream.cpp | 163 ++++++++++- lib/DebugInfo/PDB/Raw/PDBFile.cpp | 171 +++++------- lib/DebugInfo/PDB/Raw/RawError.cpp | 4 + lib/DebugInfo/PDB/Raw/RawSession.cpp | 25 +- lib/Target/X86/InstPrinter/X86InstComments.cpp | 10 +- test/CodeGen/X86/avx512vl-intrinsics.ll | 4 + tools/llvm-pdbdump/fuzzer/llvm-pdbdump-fuzzer.cpp | 20 +- tools/llvm-readobj/COFFDumper.cpp | 4 +- unittests/DebugInfo/PDB/MappedBlockStreamTest.cpp | 307 +++++++++++++++++++-- 27 files changed, 896 insertions(+), 167 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/StreamWriter.h create mode 100644 lib/DebugInfo/CodeView/StreamWriter.cpp