This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from f79c57a MachineFunction: Return reference for getFrameInfo(); NFC new 0c78d1d Get rid of IMsfStreamData class. new 0c7a213 [pdb] Refactor library to more clearly separate reading/writing
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/CVRecord.h | 2 +- include/llvm/DebugInfo/CodeView/ModuleSubstream.h | 10 +- .../DebugInfo/CodeView/ModuleSubstreamVisitor.h | 33 +-- include/llvm/DebugInfo/Msf/ByteStream.h | 136 ++++++++-- include/llvm/DebugInfo/Msf/DirectoryStreamData.h | 39 --- include/llvm/DebugInfo/Msf/IMsfStreamData.h | 40 --- include/llvm/DebugInfo/Msf/IndexedStreamData.h | 34 --- include/llvm/DebugInfo/Msf/MappedBlockStream.h | 88 ++++++- include/llvm/DebugInfo/Msf/MsfBuilder.h | 2 +- include/llvm/DebugInfo/Msf/MsfCommon.h | 4 +- include/llvm/DebugInfo/Msf/MsfStreamLayout.h | 35 +++ include/llvm/DebugInfo/Msf/StreamArray.h | 20 +- include/llvm/DebugInfo/Msf/StreamInterface.h | 20 +- include/llvm/DebugInfo/Msf/StreamReader.h | 15 +- include/llvm/DebugInfo/Msf/StreamRef.h | 112 ++++---- include/llvm/DebugInfo/Msf/StreamWriter.h | 11 +- include/llvm/DebugInfo/PDB/PDBTypes.h | 10 +- include/llvm/DebugInfo/PDB/Raw/DbiStream.h | 16 +- include/llvm/DebugInfo/PDB/Raw/DbiStreamBuilder.h | 15 +- include/llvm/DebugInfo/PDB/Raw/InfoStream.h | 8 - include/llvm/DebugInfo/PDB/Raw/InfoStreamBuilder.h | 17 +- include/llvm/DebugInfo/PDB/Raw/ModInfo.h | 4 +- include/llvm/DebugInfo/PDB/Raw/ModStream.h | 6 +- include/llvm/DebugInfo/PDB/Raw/NameHashTable.h | 2 +- include/llvm/DebugInfo/PDB/Raw/NameMap.h | 1 - include/llvm/DebugInfo/PDB/Raw/NameMapBuilder.h | 4 + include/llvm/DebugInfo/PDB/Raw/PDBFile.h | 17 +- include/llvm/DebugInfo/PDB/Raw/PDBFileBuilder.h | 7 +- include/llvm/DebugInfo/PDB/Raw/RawTypes.h | 15 ++ lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 2 +- lib/DebugInfo/CodeView/ModuleSubstream.cpp | 8 +- lib/DebugInfo/CodeView/ModuleSubstreamVisitor.cpp | 27 +- lib/DebugInfo/CodeView/TypeDumper.cpp | 2 +- lib/DebugInfo/Msf/ByteStream.cpp | 79 ------ lib/DebugInfo/Msf/CMakeLists.txt | 2 - lib/DebugInfo/Msf/IndexedStreamData.cpp | 25 -- lib/DebugInfo/Msf/MappedBlockStream.cpp | 285 +++++++++++++-------- lib/DebugInfo/Msf/MsfBuilder.cpp | 5 +- lib/DebugInfo/Msf/StreamReader.cpp | 6 +- lib/DebugInfo/Msf/StreamWriter.cpp | 6 +- lib/DebugInfo/PDB/Raw/DbiStream.cpp | 52 +--- lib/DebugInfo/PDB/Raw/DbiStreamBuilder.cpp | 66 +++-- lib/DebugInfo/PDB/Raw/InfoStream.cpp | 18 +- lib/DebugInfo/PDB/Raw/InfoStreamBuilder.cpp | 55 ++-- lib/DebugInfo/PDB/Raw/ModInfo.cpp | 2 +- lib/DebugInfo/PDB/Raw/ModStream.cpp | 3 +- lib/DebugInfo/PDB/Raw/NameMap.cpp | 54 ---- lib/DebugInfo/PDB/Raw/NameMapBuilder.cpp | 55 ++++ lib/DebugInfo/PDB/Raw/PDBFile.cpp | 188 ++++---------- lib/DebugInfo/PDB/Raw/PDBFileBuilder.cpp | 58 ++++- lib/DebugInfo/PDB/Raw/PublicsStream.cpp | 1 - lib/DebugInfo/PDB/Raw/RawSession.cpp | 17 +- lib/DebugInfo/PDB/Raw/SymbolStream.cpp | 1 - lib/DebugInfo/PDB/Raw/TpiStream.cpp | 12 +- tools/llvm-pdbdump/LLVMOutputStyle.cpp | 31 +-- tools/llvm-pdbdump/llvm-pdbdump.cpp | 27 +- tools/llvm-readobj/COFFDumper.cpp | 4 +- unittests/DebugInfo/PDB/MappedBlockStreamTest.cpp | 246 +++++++++--------- unittests/DebugInfo/PDB/MsfBuilderTest.cpp | 16 +- 59 files changed, 1046 insertions(+), 1030 deletions(-) delete mode 100644 include/llvm/DebugInfo/Msf/DirectoryStreamData.h delete mode 100644 include/llvm/DebugInfo/Msf/IMsfStreamData.h delete mode 100644 include/llvm/DebugInfo/Msf/IndexedStreamData.h create mode 100644 include/llvm/DebugInfo/Msf/MsfStreamLayout.h delete mode 100644 lib/DebugInfo/Msf/ByteStream.cpp delete mode 100644 lib/DebugInfo/Msf/IndexedStreamData.cpp