This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 265ce994cb2 ADT: add <bit> header, implement C++20 bit_cast, use new 25ccaa7421b [PDB] Support pointer types in the native reader. new 5dc5797dce8 Revert "ADT: add <bit> header, implement C++20 bit_cast, use"
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/ADT/bit.h | 37 --- include/llvm/DebugInfo/PDB/IPDBRawSymbol.h | 7 + .../DebugInfo/PDB/Native/NativeCompilandSymbol.h | 2 + include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h | 9 +- .../llvm/DebugInfo/PDB/Native/NativeTypePointer.h | 50 ++++ include/llvm/DebugInfo/PDB/Native/SymbolCache.h | 6 + lib/DebugInfo/PDB/CMakeLists.txt | 1 + lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp | 308 +++++++++------------ lib/DebugInfo/PDB/Native/NativeCompilandSymbol.cpp | 12 + lib/DebugInfo/PDB/Native/NativeEnumTypes.cpp | 7 +- lib/DebugInfo/PDB/Native/NativeExeSymbol.cpp | 2 + lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp | 8 +- lib/DebugInfo/PDB/Native/NativeTypeBuiltin.cpp | 2 +- lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp | 119 +++++++- lib/DebugInfo/PDB/Native/NativeTypePointer.cpp | 86 ++++++ lib/DebugInfo/PDB/Native/SymbolCache.cpp | 14 +- lib/Support/APInt.cpp | 21 +- .../AArch64/MCTargetDesc/AArch64AddressingModes.h | 21 +- lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h | 21 +- .../PDB/Native/pdb-native-compilands.test | 19 ++ test/DebugInfo/PDB/Native/pdb-native-enums.test | 219 +++++++++++++++ tools/llvm-pdbutil/llvm-pdbutil.cpp | 50 ++++ 22 files changed, 764 insertions(+), 257 deletions(-) delete mode 100644 include/llvm/ADT/bit.h create mode 100644 include/llvm/DebugInfo/PDB/Native/NativeTypePointer.h create mode 100644 lib/DebugInfo/PDB/Native/NativeTypePointer.cpp