This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b0771c8 Revert "Revert "Map DynamicNoPIC to Static on non-darwin."" new 5cfb646 [pdb] Finish conversion to zero copy pdb access.
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/CodeView/ByteStream.h | 12 +- include/llvm/DebugInfo/CodeView/CVRecord.h | 47 +++++++ include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h | 6 +- include/llvm/DebugInfo/CodeView/CVTypeVisitor.h | 7 +- include/llvm/DebugInfo/CodeView/RecordIterator.h | 143 --------------------- include/llvm/DebugInfo/CodeView/StreamArray.h | 54 ++++++-- include/llvm/DebugInfo/CodeView/StreamInterface.h | 2 - include/llvm/DebugInfo/CodeView/StreamReader.h | 5 +- include/llvm/DebugInfo/CodeView/StreamRef.h | 5 - include/llvm/DebugInfo/CodeView/SymbolDumper.h | 2 +- include/llvm/DebugInfo/CodeView/SymbolRecord.h | 8 +- include/llvm/DebugInfo/CodeView/TypeDumper.h | 3 +- include/llvm/DebugInfo/CodeView/TypeRecord.h | 5 + include/llvm/DebugInfo/CodeView/TypeStream.h | 37 ------ include/llvm/DebugInfo/CodeView/TypeStreamMerger.h | 3 +- include/llvm/DebugInfo/PDB/Raw/MappedBlockStream.h | 3 +- include/llvm/DebugInfo/PDB/Raw/ModInfo.h | 13 +- include/llvm/DebugInfo/PDB/Raw/ModStream.h | 5 +- include/llvm/DebugInfo/PDB/Raw/PublicsStream.h | 6 +- include/llvm/DebugInfo/PDB/Raw/SymbolStream.h | 7 +- include/llvm/DebugInfo/PDB/Raw/TpiStream.h | 8 +- lib/DebugInfo/CodeView/ByteStream.cpp | 32 +---- lib/DebugInfo/CodeView/StreamReader.cpp | 13 +- lib/DebugInfo/CodeView/SymbolDumper.cpp | 4 +- lib/DebugInfo/CodeView/TypeDumper.cpp | 5 +- lib/DebugInfo/CodeView/TypeStreamMerger.cpp | 12 +- lib/DebugInfo/PDB/Raw/ModInfo.cpp | 29 ++--- lib/DebugInfo/PDB/Raw/ModStream.cpp | 4 +- lib/DebugInfo/PDB/Raw/PublicsStream.cpp | 11 +- lib/DebugInfo/PDB/Raw/SymbolStream.cpp | 17 +-- lib/DebugInfo/PDB/Raw/TpiStream.cpp | 7 +- tools/llvm-pdbdump/llvm-pdbdump.cpp | 18 ++- tools/llvm-readobj/COFFDumper.cpp | 45 ++++++- 33 files changed, 228 insertions(+), 350 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/CVRecord.h delete mode 100644 include/llvm/DebugInfo/CodeView/RecordIterator.h delete mode 100644 include/llvm/DebugInfo/CodeView/TypeStream.h