[llvm] [AMDGPU] SelectionDAG support for vector type set 0 to multiple sgpr64 (PR #128017)
Janek van Oirschot via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 08:03:10 PST 2025
================
@@ -634,6 +634,61 @@ void AMDGPUDAGToDAGISel::Select(SDNode *N) {
case ISD::BUILD_VECTOR: {
EVT VT = N->getValueType(0);
unsigned NumVectorElts = VT.getVectorNumElements();
+
+ auto IsSplatAllZeros = [this](SDNode *N) -> bool {
+ if (ISD::isConstantSplatVectorAllZeros(N))
+ return true;
+
+ // Types may have legalized by stripping the 16 bit multi-element vector
----------------
JanekvO wrote:
As in, allow vector types as long as they splat 0?
https://github.com/llvm/llvm-project/pull/128017
More information about the llvm-commits
mailing list