This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 47f90f5 [LibFuzzer] s/dataflow sanitizer/DataflowSanitizer/ new 6e00ec1 [pdb] Use MappedBlockStream to parse the PDB directory. new 804dc35 [pdb] Fix broken unit tests after r271982.
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/StreamArray.h | 2 + include/llvm/DebugInfo/CodeView/StreamReader.h | 14 ++ include/llvm/DebugInfo/PDB/Raw/IPDBFile.h | 4 +- include/llvm/DebugInfo/PDB/Raw/IPDBStreamData.h | 38 +++++ include/llvm/DebugInfo/PDB/Raw/IndexedStreamData.h | 34 +++++ include/llvm/DebugInfo/PDB/Raw/InfoStream.h | 5 +- include/llvm/DebugInfo/PDB/Raw/MappedBlockStream.h | 12 +- include/llvm/DebugInfo/PDB/Raw/ModStream.h | 2 +- include/llvm/DebugInfo/PDB/Raw/PDBFile.h | 7 +- include/llvm/DebugInfo/PDB/Raw/SymbolStream.h | 2 +- include/llvm/DebugInfo/PDB/Raw/TpiStream.h | 4 +- lib/DebugInfo/PDB/CMakeLists.txt | 1 + lib/DebugInfo/PDB/Raw/DbiStream.cpp | 11 +- lib/DebugInfo/PDB/Raw/IndexedStreamData.cpp | 25 ++++ lib/DebugInfo/PDB/Raw/InfoStream.cpp | 4 +- lib/DebugInfo/PDB/Raw/MappedBlockStream.cpp | 25 ++-- lib/DebugInfo/PDB/Raw/ModStream.cpp | 7 +- lib/DebugInfo/PDB/Raw/PDBFile.cpp | 155 ++++++++------------- lib/DebugInfo/PDB/Raw/PublicsStream.cpp | 4 +- lib/DebugInfo/PDB/Raw/SymbolStream.cpp | 6 +- lib/DebugInfo/PDB/Raw/TpiStream.cpp | 10 +- lib/DebugInfo/PDB/Raw/TpiStream.cpp.rej | 11 ++ tools/llvm-pdbdump/LLVMOutputStyle.cpp | 7 +- unittests/DebugInfo/PDB/MappedBlockStreamTest.cpp | 24 ++-- 24 files changed, 260 insertions(+), 154 deletions(-) create mode 100644 include/llvm/DebugInfo/PDB/Raw/IPDBStreamData.h create mode 100644 include/llvm/DebugInfo/PDB/Raw/IndexedStreamData.h create mode 100644 lib/DebugInfo/PDB/Raw/IndexedStreamData.cpp create mode 100644 lib/DebugInfo/PDB/Raw/TpiStream.cpp.rej