This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 64cc1b2 Refactor the PDB Stream reading interface. new a91bcf5 Put PDB parsing code into a pdb namespace.
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/ByteStream.h | 2 + .../PDB/Raw/{PDBDbiStream.h => DbiStream.h} | 12 +++-- .../PDB/Raw/{PDBInfoStream.h => InfoStream.h} | 15 +++--- include/llvm/DebugInfo/PDB/Raw/MappedBlockStream.h | 2 + include/llvm/DebugInfo/PDB/Raw/ModInfo.h | 8 +-- .../DebugInfo/PDB/Raw/{PDBNameMap.h => NameMap.h} | 8 +-- include/llvm/DebugInfo/PDB/Raw/PDBFile.h | 18 ++++--- .../PDB/Raw/{PDBRawConstants.h => RawConstants.h} | 3 +- include/llvm/DebugInfo/PDB/Raw/RawSession.h | 4 +- include/llvm/DebugInfo/PDB/Raw/StreamInterface.h | 2 + include/llvm/DebugInfo/PDB/Raw/StreamReader.h | 5 +- lib/DebugInfo/PDB/CMakeLists.txt | 6 +-- lib/DebugInfo/PDB/PDB.cpp | 4 +- lib/DebugInfo/PDB/Raw/ByteStream.cpp | 1 + .../PDB/Raw/{PDBDbiStream.cpp => DbiStream.cpp} | 60 +++++++++++----------- .../PDB/Raw/{PDBInfoStream.cpp => InfoStream.cpp} | 19 +++---- lib/DebugInfo/PDB/Raw/MappedBlockStream.cpp | 1 + lib/DebugInfo/PDB/Raw/ModInfo.cpp | 1 + .../PDB/Raw/{PDBNameMap.cpp => NameMap.cpp} | 11 ++-- lib/DebugInfo/PDB/Raw/PDBFile.cpp | 27 +++++----- lib/DebugInfo/PDB/Raw/RawSession.cpp | 1 + lib/DebugInfo/PDB/Raw/StreamReader.cpp | 1 + tools/llvm-pdbdump/llvm-pdbdump.cpp | 44 ++++++++-------- 23 files changed, 141 insertions(+), 114 deletions(-) rename include/llvm/DebugInfo/PDB/Raw/{PDBDbiStream.h => DbiStream.h} (88%) rename include/llvm/DebugInfo/PDB/Raw/{PDBInfoStream.h => InfoStream.h} (86%) rename include/llvm/DebugInfo/PDB/Raw/{PDBNameMap.h => NameMap.h} (85%) rename include/llvm/DebugInfo/PDB/Raw/{PDBRawConstants.h => RawConstants.h} (98%) rename lib/DebugInfo/PDB/Raw/{PDBDbiStream.cpp => DbiStream.cpp} (85%) rename lib/DebugInfo/PDB/Raw/{PDBInfoStream.cpp => InfoStream.cpp} (64%) rename lib/DebugInfo/PDB/Raw/{PDBNameMap.cpp => NameMap.cpp} (92%)