[llvm] [AMDGPU] SelectionDAG support for vector type set 0 to multiple sgpr64 (PR #128017)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 07:32:19 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
----------------
arsenm wrote:
It would be better to adjust the legalizer to do this in the first place
https://github.com/llvm/llvm-project/pull/128017
More information about the llvm-commits
mailing list