This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 2e04af78a2d [WebAssembly] Fixed AsmParser not allowing instructions with / new 429bce6ae9f MIRParser: Check that instructions only reference DILocatio [...] new a93560b336f [PDB] Add support for parsing VFTable Shape records. new b47810926d8 [PDB] Add support for dumping Typedef records.
The 3 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/NativeEnumGlobals.h | 43 +++++++++++++++++ .../llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h | 42 +++++++++++++++++ .../llvm/DebugInfo/PDB/Native/NativeTypeVTShape.h | 46 ++++++++++++++++++ include/llvm/DebugInfo/PDB/Native/SymbolCache.h | 23 +++++++++ lib/CodeGen/MIRParser/MIParser.cpp | 2 + lib/DebugInfo/PDB/CMakeLists.txt | 3 ++ lib/DebugInfo/PDB/Native/NativeEnumGlobals.cpp | 55 ++++++++++++++++++++++ lib/DebugInfo/PDB/Native/NativeExeSymbol.cpp | 4 ++ lib/DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp | 3 +- lib/DebugInfo/PDB/Native/NativeTypeTypedef.cpp | 27 +++++++++++ lib/DebugInfo/PDB/Native/NativeTypeVTShape.cpp | 35 ++++++++++++++ lib/DebugInfo/PDB/Native/SymbolCache.cpp | 51 +++++++++++++++++++- test/CodeGen/MIR/X86/invalid-debug-location.mir | 15 ++++++ test/DebugInfo/PDB/Native/pdb-native-typedefs.test | 33 +++++++++++++ test/tools/llvm-pdbdump/type-qualifiers.test | 2 +- tools/llvm-pdbutil/PrettyFunctionDumper.cpp | 12 +++-- tools/llvm-pdbutil/PrettyTypeDumper.cpp | 16 ++++++- tools/llvm-pdbutil/PrettyTypeDumper.h | 2 + tools/llvm-pdbutil/PrettyTypedefDumper.cpp | 6 ++- tools/llvm-pdbutil/llvm-pdbutil.cpp | 13 ++++- tools/llvm-pdbutil/llvm-pdbutil.h | 1 + 21 files changed, 423 insertions(+), 11 deletions(-) create mode 100644 include/llvm/DebugInfo/PDB/Native/NativeEnumGlobals.h create mode 100644 include/llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h create mode 100644 include/llvm/DebugInfo/PDB/Native/NativeTypeVTShape.h create mode 100644 lib/DebugInfo/PDB/Native/NativeEnumGlobals.cpp create mode 100644 lib/DebugInfo/PDB/Native/NativeTypeTypedef.cpp create mode 100644 lib/DebugInfo/PDB/Native/NativeTypeVTShape.cpp create mode 100644 test/CodeGen/MIR/X86/invalid-debug-location.mir create mode 100644 test/DebugInfo/PDB/Native/pdb-native-typedefs.test