This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from c54901d3607 AMDGPU: Propagate undef flag during pre-RA exec mask optimizations new ea3b91f5a61 [SVE][IR] Scalable Vector size queries and IR instruction support
The 1 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/DenseMapInfo.h | 2 +- include/llvm/IR/DataLayout.h | 55 ++-- include/llvm/IR/DerivedTypes.h | 2 +- include/llvm/IR/InstrTypes.h | 2 +- include/llvm/IR/Type.h | 6 +- include/llvm/Support/MachineValueType.h | 2 +- include/llvm/Support/ScalableSize.h | 46 ---- include/llvm/Support/TypeSize.h | 200 ++++++++++++++ lib/Analysis/InlineCost.cpp | 6 +- lib/CodeGen/Analysis.cpp | 3 +- lib/IR/DataLayout.cpp | 6 +- lib/IR/Instructions.cpp | 17 +- lib/IR/Type.cpp | 27 +- lib/Target/AArch64/AArch64ISelLowering.cpp | 2 +- lib/Transforms/Scalar/SROA.cpp | 6 +- test/Other/scalable-vectors-core-ir.ll | 393 +++++++++++++++++++++++++++ unittests/CodeGen/ScalableVectorMVTsTest.cpp | 2 +- unittests/IR/VectorTypesTest.cpp | 116 +++++++- 18 files changed, 797 insertions(+), 96 deletions(-) delete mode 100644 include/llvm/Support/ScalableSize.h create mode 100644 include/llvm/Support/TypeSize.h create mode 100644 test/Other/scalable-vectors-core-ir.ll