This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 39a5a41 LangRef: Document the allowed metadata dropping transforms. new 11e1d83 NFC: Rename (PDB) RawSession to NativeSession
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: .../llvm/DebugInfo/PDB/{Raw => Native}/DbiStream.h | 8 +-- .../PDB/{Raw => Native}/DbiStreamBuilder.h | 7 +-- .../DebugInfo/PDB/{Raw => Native}/EnumTables.h | 0 .../DebugInfo/PDB/{Raw => Native}/GlobalsStream.h | 4 +- include/llvm/DebugInfo/PDB/{Raw => Native}/Hash.h | 0 .../llvm/DebugInfo/PDB/{Raw => Native}/HashTable.h | 0 .../PDB/{Raw => Native}/ISectionContribVisitor.h | 0 .../DebugInfo/PDB/{Raw => Native}/InfoStream.h | 4 +- .../PDB/{Raw => Native}/InfoStreamBuilder.h | 6 +- .../llvm/DebugInfo/PDB/{Raw => Native}/ModInfo.h | 2 +- .../llvm/DebugInfo/PDB/{Raw => Native}/ModStream.h | 0 .../DebugInfo/PDB/{Raw => Native}/NamedStreamMap.h | 2 +- .../{Raw/RawSession.h => Native/NativeSession.h} | 10 +-- .../llvm/DebugInfo/PDB/{Raw => Native}/PDBFile.h | 9 +-- .../DebugInfo/PDB/{Raw => Native}/PDBFileBuilder.h | 8 +-- .../DebugInfo/PDB/{Raw => Native}/PublicsStream.h | 4 +- .../DebugInfo/PDB/{Raw => Native}/RawConstants.h | 0 .../llvm/DebugInfo/PDB/{Raw => Native}/RawError.h | 0 .../llvm/DebugInfo/PDB/{Raw => Native}/RawTypes.h | 0 .../DebugInfo/PDB/{Raw => Native}/StringTable.h | 0 .../PDB/{Raw => Native}/StringTableBuilder.h | 0 .../DebugInfo/PDB/{Raw => Native}/SymbolStream.h | 0 .../DebugInfo/PDB/{Raw => Native}/TpiHashing.h | 2 +- .../llvm/DebugInfo/PDB/{Raw => Native}/TpiStream.h | 6 +- .../PDB/{Raw => Native}/TpiStreamBuilder.h | 2 +- include/llvm/DebugInfo/PDB/PDBTypes.h | 2 +- lib/DebugInfo/PDB/CMakeLists.txt | 50 +++++++-------- lib/DebugInfo/PDB/{Raw => Native}/DbiStream.cpp | 23 ++++--- .../PDB/{Raw => Native}/DbiStreamBuilder.cpp | 6 +- lib/DebugInfo/PDB/{Raw => Native}/EnumTables.cpp | 4 +- lib/DebugInfo/PDB/{Raw => Native}/GSI.cpp | 4 +- lib/DebugInfo/PDB/{Raw => Native}/GSI.h | 2 +- .../PDB/{Raw => Native}/GlobalsStream.cpp | 2 +- lib/DebugInfo/PDB/{Raw => Native}/Hash.cpp | 2 +- lib/DebugInfo/PDB/{Raw => Native}/HashTable.cpp | 4 +- lib/DebugInfo/PDB/{Raw => Native}/InfoStream.cpp | 10 +-- .../PDB/{Raw => Native}/InfoStreamBuilder.cpp | 12 ++-- lib/DebugInfo/PDB/{Raw => Native}/ModInfo.cpp | 4 +- lib/DebugInfo/PDB/{Raw => Native}/ModStream.cpp | 10 +-- .../PDB/{Raw => Native}/NamedStreamMap.cpp | 6 +- .../RawSession.cpp => Native/NativeSession.cpp} | 71 +++++++++++----------- lib/DebugInfo/PDB/{Raw => Native}/PDBFile.cpp | 61 +++++++++++-------- .../PDB/{Raw => Native}/PDBFileBuilder.cpp | 18 +++--- .../PDB/{Raw => Native}/PublicsStream.cpp | 8 +-- lib/DebugInfo/PDB/{Raw => Native}/RawError.cpp | 2 +- lib/DebugInfo/PDB/{Raw => Native}/StringTable.cpp | 8 +-- .../PDB/{Raw => Native}/StringTableBuilder.cpp | 6 +- lib/DebugInfo/PDB/{Raw => Native}/SymbolStream.cpp | 8 +-- lib/DebugInfo/PDB/{Raw => Native}/TpiHashing.cpp | 6 +- lib/DebugInfo/PDB/{Raw => Native}/TpiStream.cpp | 21 +++---- .../PDB/{Raw => Native}/TpiStreamBuilder.cpp | 10 +-- lib/DebugInfo/PDB/PDB.cpp | 6 +- tools/llvm-pdbdump/LLVMOutputStyle.cpp | 22 +++---- tools/llvm-pdbdump/PdbYaml.cpp | 4 +- tools/llvm-pdbdump/PdbYaml.h | 4 +- tools/llvm-pdbdump/YAMLOutputStyle.cpp | 12 ++-- tools/llvm-pdbdump/YamlTypeDumper.cpp | 2 +- tools/llvm-pdbdump/llvm-pdbdump.cpp | 28 ++++----- 58 files changed, 262 insertions(+), 250 deletions(-) rename include/llvm/DebugInfo/PDB/{Raw => Native}/DbiStream.h (94%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/DbiStreamBuilder.h (94%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/EnumTables.h (100%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/GlobalsStream.h (92%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/Hash.h (100%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/HashTable.h (100%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/ISectionContribVisitor.h (100%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/InfoStream.h (94%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/InfoStreamBuilder.h (89%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/ModInfo.h (97%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/ModStream.h (100%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/NamedStreamMap.h (96%) rename include/llvm/DebugInfo/PDB/{Raw/RawSession.h => Native/NativeSession.h} (91%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/PDBFile.h (94%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/PDBFileBuilder.h (89%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/PublicsStream.h (95%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/RawConstants.h (100%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/RawError.h (100%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/RawTypes.h (100%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/StringTable.h (100%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/StringTableBuilder.h (100%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/SymbolStream.h (100%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/TpiHashing.h (98%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/TpiStream.h (92%) rename include/llvm/DebugInfo/PDB/{Raw => Native}/TpiStreamBuilder.h (97%) rename lib/DebugInfo/PDB/{Raw => Native}/DbiStream.cpp (96%) rename lib/DebugInfo/PDB/{Raw => Native}/DbiStreamBuilder.cpp (98%) rename lib/DebugInfo/PDB/{Raw => Native}/EnumTables.cpp (92%) rename lib/DebugInfo/PDB/{Raw => Native}/GSI.cpp (97%) rename lib/DebugInfo/PDB/{Raw => Native}/GSI.h (97%) rename lib/DebugInfo/PDB/{Raw => Native}/GlobalsStream.cpp (95%) rename lib/DebugInfo/PDB/{Raw => Native}/Hash.cpp (98%) rename lib/DebugInfo/PDB/{Raw => Native}/HashTable.cpp (98%) rename lib/DebugInfo/PDB/{Raw => Native}/InfoStream.cpp (89%) rename lib/DebugInfo/PDB/{Raw => Native}/InfoStreamBuilder.cpp (84%) rename lib/DebugInfo/PDB/{Raw => Native}/ModInfo.cpp (95%) rename lib/DebugInfo/PDB/{Raw => Native}/ModStream.cpp (91%) rename lib/DebugInfo/PDB/{Raw => Native}/NamedStreamMap.cpp (96%) rename lib/DebugInfo/PDB/{Raw/RawSession.cpp => Native/NativeSession.cpp} (50%) rename lib/DebugInfo/PDB/{Raw => Native}/PDBFile.cpp (91%) rename lib/DebugInfo/PDB/{Raw => Native}/PDBFileBuilder.cpp (90%) rename lib/DebugInfo/PDB/{Raw => Native}/PublicsStream.cpp (95%) rename lib/DebugInfo/PDB/{Raw => Native}/RawError.cpp (98%) rename lib/DebugInfo/PDB/{Raw => Native}/StringTable.cpp (94%) rename lib/DebugInfo/PDB/{Raw => Native}/StringTableBuilder.cpp (95%) rename lib/DebugInfo/PDB/{Raw => Native}/SymbolStream.cpp (86%) rename lib/DebugInfo/PDB/{Raw => Native}/TpiHashing.cpp (96%) rename lib/DebugInfo/PDB/{Raw => Native}/TpiStream.cpp (91%) rename lib/DebugInfo/PDB/{Raw => Native}/TpiStreamBuilder.cpp (94%)