This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from decf0031c9e [AArch64][Falkor] Refine modeling of multiply accumulate fo [...] new 337b2d88dee [CodeView] Add a random access type visitor. new ac2d13ffb3a [PPC] Move the combine "a << (b % (sizeof(a) * 8)) -> (PPCs [...]
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: .../DebugInfo/CodeView/RandomAccessTypeVisitor.h | 103 ++++++ include/llvm/DebugInfo/CodeView/TypeDatabase.h | 40 +-- .../llvm/DebugInfo/CodeView/TypeDatabaseVisitor.h | 6 +- include/llvm/DebugInfo/CodeView/TypeDeserializer.h | 4 + include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h | 1 + include/llvm/DebugInfo/CodeView/TypeIndex.h | 7 + include/llvm/DebugInfo/PDB/Native/RawTypes.h | 7 - include/llvm/DebugInfo/PDB/Native/TpiStream.h | 4 +- .../llvm/DebugInfo/PDB/Native/TpiStreamBuilder.h | 2 +- include/llvm/Support/BinaryStreamArray.h | 5 +- include/llvm/Target/TargetLowering.h | 8 - lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 33 -- lib/DebugInfo/CodeView/CMakeLists.txt | 1 + lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 5 +- lib/DebugInfo/CodeView/RandomAccessTypeVisitor.cpp | 91 ++++++ lib/DebugInfo/CodeView/TypeDatabase.cpp | 102 +++--- lib/DebugInfo/CodeView/TypeDatabaseVisitor.cpp | 39 +-- lib/DebugInfo/CodeView/TypeDumpVisitor.cpp | 9 +- lib/DebugInfo/PDB/Native/TpiStreamBuilder.cpp | 2 +- lib/Target/PowerPC/PPCISelLowering.cpp | 64 ++++ lib/Target/PowerPC/PPCISelLowering.h | 21 +- lib/Target/PowerPC/PPCInstrAltivec.td | 40 ++- tools/llvm-pdbdump/LLVMOutputStyle.cpp | 2 +- unittests/DebugInfo/CMakeLists.txt | 2 +- unittests/DebugInfo/CodeView/CMakeLists.txt | 11 + .../DebugInfo/{PDB => CodeView}/ErrorChecking.h | 4 +- .../DebugInfo/CodeView/RandomAccessVisitorTest.cpp | 353 +++++++++++++++++++++ 27 files changed, 773 insertions(+), 193 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/RandomAccessTypeVisitor.h create mode 100644 lib/DebugInfo/CodeView/RandomAccessTypeVisitor.cpp create mode 100644 unittests/DebugInfo/CodeView/CMakeLists.txt copy unittests/DebugInfo/{PDB => CodeView}/ErrorChecking.h (96%) create mode 100644 unittests/DebugInfo/CodeView/RandomAccessVisitorTest.cpp