This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from ea363334ce4 [llvm-objcopy] Dwarf .debug section compression support (zl [...] new 7428f4506cb [PDB] Create a SymbolCache class. new 6d1036d22d5 [PDB] Rename some files in the native reader.
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: .../llvm/DebugInfo/PDB/Native/NativeExeSymbol.h | 16 +-- include/llvm/DebugInfo/PDB/Native/NativeSession.h | 32 ++--- .../{NativeBuiltinSymbol.h => NativeTypeBuiltin.h} | 14 +- .../{NativeEnumSymbol.h => NativeTypeEnum.h} | 18 +-- include/llvm/DebugInfo/PDB/Native/SymbolCache.h | 73 ++++++++++ lib/DebugInfo/PDB/CMakeLists.txt | 5 +- lib/DebugInfo/PDB/Native/NativeBuiltinSymbol.cpp | 47 ------- lib/DebugInfo/PDB/Native/NativeEnumModules.cpp | 4 +- lib/DebugInfo/PDB/Native/NativeEnumTypes.cpp | 4 +- lib/DebugInfo/PDB/Native/NativeExeSymbol.cpp | 56 +++----- lib/DebugInfo/PDB/Native/NativeSession.cpp | 121 ++++------------- lib/DebugInfo/PDB/Native/NativeTypeBuiltin.cpp | 45 +++++++ .../{NativeEnumSymbol.cpp => NativeTypeEnum.cpp} | 57 ++++---- lib/DebugInfo/PDB/Native/SymbolCache.cpp | 148 +++++++++++++++++++++ 14 files changed, 371 insertions(+), 269 deletions(-) rename include/llvm/DebugInfo/PDB/Native/{NativeBuiltinSymbol.h => NativeTypeBuilt [...] rename include/llvm/DebugInfo/PDB/Native/{NativeEnumSymbol.h => NativeTypeEnum.h} (76%) create mode 100644 include/llvm/DebugInfo/PDB/Native/SymbolCache.h delete mode 100644 lib/DebugInfo/PDB/Native/NativeBuiltinSymbol.cpp create mode 100644 lib/DebugInfo/PDB/Native/NativeTypeBuiltin.cpp rename lib/DebugInfo/PDB/Native/{NativeEnumSymbol.cpp => NativeTypeEnum.cpp} (52%) create mode 100644 lib/DebugInfo/PDB/Native/SymbolCache.cpp