This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 1ad653993ab [MC] Avoid inlining constant symbols with variants. new a3a0a03db21 [PDB] Make the native reader support modified types. new 8d5fd87893b [PDB] Make the native reader support enumerators.
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/PDB/IPDBEnumChildren.h | 15 + .../DebugInfo/PDB/Native/NativeSymbolEnumerator.h | 50 + .../llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h | 4 +- include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h | 21 +- include/llvm/DebugInfo/PDB/Native/SymbolCache.h | 25 + include/llvm/DebugInfo/PDB/PDBTypes.h | 30 + lib/DebugInfo/PDB/CMakeLists.txt | 1 + lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp | 17 +- lib/DebugInfo/PDB/Native/NativeEnumTypes.cpp | 40 +- .../PDB/Native/NativeSymbolEnumerator.cpp | 116 ++ lib/DebugInfo/PDB/Native/NativeTypeBuiltin.cpp | 3 +- lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp | 171 ++- lib/DebugInfo/PDB/Native/NativeTypePointer.cpp | 21 +- lib/DebugInfo/PDB/Native/SymbolCache.cpp | 98 +- lib/DebugInfo/PDB/PDBExtras.cpp | 2 +- test/DebugInfo/PDB/Inputs/every-enum.cpp | 110 ++ .../PDB/Inputs/every-enum.pdb} | Bin 102400 -> 102400 bytes test/DebugInfo/PDB/Native/pdb-native-enums.test | 1133 ++++++++++++++++---- tools/llvm-pdbutil/llvm-pdbutil.cpp | 8 + 19 files changed, 1571 insertions(+), 294 deletions(-) create mode 100644 include/llvm/DebugInfo/PDB/Native/NativeSymbolEnumerator.h create mode 100644 lib/DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp create mode 100644 test/DebugInfo/PDB/Inputs/every-enum.cpp copy test/{tools/llvm-pdbdump/Inputs/TypeQualifiersTest.pdb => DebugInfo/PDB/Input [...]