[ValueTypes] Rename MVT::getVectorNumElements() to MVT::getVectorMinNumElements(...
authorCraig Topper <craig.topper@sifive.com>
Wed, 12 May 2021 14:27:52 +0000 (07:27 -0700)
committerCraig Topper <craig.topper@sifive.com>
Wed, 12 May 2021 14:46:45 +0000 (07:46 -0700)
commit44e0e91db01abb9de1868f5acf3ff4f2648b8fc0
tree0cc67036eea9892c8782cd793d1bf08653129c55
parent8d37411e48202b490c62ee3548df4b90f5974e12
[ValueTypes] Rename MVT::getVectorNumElements() to MVT::getVectorMinNumElements(). Fix some misuses of getVectorNumElements()

getVectorNumElements() returns a value for scalable vectors
without any warning so it is effectively getVectorMinNumElements().
By renaming it and making getVectorNumElements() forward to
it, we can insert a check for scalable vectors into getVectorNumElements()
similar to EVT. I didn't do that in this patch because there are still more
fixes needed, but I was able to temporarily do it and passed the RISCV
lit tests with these changes.

The changes to isPow2VectorType and getPow2VectorType are copied from EVT.

The change to TypeInfer::EnforceSameNumElts reduces the size of AArch64's isel table.
We're now considering SameNumElts to require the scalable property to match which
removes some unneeded type checks.

This was motivated by the bug I fixed yesterday in 80b9510806cf11c57f2dd87191d3989fc45defa8

Reviewed By: frasercrmck, sdesmalen

Differential Revision: https://reviews.llvm.org/D102262
llvm/include/llvm/Support/MachineValueType.h
llvm/lib/Target/AMDGPU/SIISelLowering.cpp
llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
llvm/lib/Target/PowerPC/PPCISelLowering.h
llvm/lib/Target/X86/X86ISelLowering.cpp
llvm/utils/TableGen/CodeGenDAGPatterns.cpp
llvm/utils/TableGen/IntrinsicEmitter.cpp