This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 5083fc5 [Support] Add a StringError convenience class to Error.h new c93d4ea [Support] Rename unconvertibleErrorCode to inconvertibleErrorCode. new 0212bc8 [codeview,pdb] Try really hard to conserve memory when reading.
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/ByteStream.h | 14 +- include/llvm/DebugInfo/CodeView/StreamArray.h | 188 +++++++++++++++++++++ include/llvm/DebugInfo/CodeView/StreamInterface.h | 11 +- include/llvm/DebugInfo/CodeView/StreamReader.h | 38 ++++- include/llvm/DebugInfo/CodeView/StreamRef.h | 82 +++++++++ include/llvm/DebugInfo/PDB/Raw/DbiStream.h | 19 ++- include/llvm/DebugInfo/PDB/Raw/MappedBlockStream.h | 11 +- include/llvm/DebugInfo/PDB/Raw/ModInfo.h | 30 ++-- include/llvm/DebugInfo/PDB/Raw/ModStream.h | 7 +- include/llvm/DebugInfo/PDB/Raw/NameHashTable.h | 4 +- include/llvm/DebugInfo/PDB/Raw/PublicsStream.h | 4 +- include/llvm/DebugInfo/PDB/Raw/TpiStream.h | 9 +- include/llvm/Support/Error.h | 2 +- lib/DebugInfo/CodeView/ByteStream.cpp | 27 ++- lib/DebugInfo/CodeView/StreamReader.cpp | 66 ++++++-- lib/DebugInfo/PDB/CMakeLists.txt | 1 + lib/DebugInfo/PDB/Raw/DbiStream.cpp | 85 +++++----- lib/DebugInfo/PDB/Raw/InfoStream.cpp | 14 +- lib/DebugInfo/PDB/Raw/MappedBlockStream.cpp | 85 +++++++--- lib/DebugInfo/PDB/Raw/ModInfo.cpp | 77 ++++----- lib/DebugInfo/PDB/Raw/ModStream.cpp | 8 +- lib/DebugInfo/PDB/Raw/NameHashTable.cpp | 30 ++-- lib/DebugInfo/PDB/Raw/NameMap.cpp | 2 +- lib/DebugInfo/PDB/Raw/PublicsStream.cpp | 7 +- lib/DebugInfo/PDB/Raw/SymbolStream.cpp | 4 +- lib/DebugInfo/PDB/Raw/TpiStream.cpp | 13 +- lib/Support/Error.cpp | 12 +- tools/llvm-pdbdump/llvm-pdbdump.cpp | 10 +- unittests/Support/ErrorTest.cpp | 2 +- 29 files changed, 619 insertions(+), 243 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/StreamArray.h create mode 100644 include/llvm/DebugInfo/CodeView/StreamRef.h