[llvm] [SelectionDAG] Add PARTIAL_REDUCE_U/SMLA ISD Nodes (PR #125207)
Paul Walker via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 6 08:46:36 PST 2025
================
@@ -7883,6 +7854,30 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
break;
}
+ case ISD::PARTIAL_REDUCE_UMLA:
+ case ISD::PARTIAL_REDUCE_SMLA: {
+ EVT AccVT = N1.getValueType();
+ EVT Input1VT = N2.getValueType();
+ EVT Input2VT = N3.getValueType();
+ assert(Input1VT == Input2VT &&
+ "Expected the second and third operands of the PARTIAL_REDUCE_MLA "
+ "node to have the same type!");
+ assert(VT == AccVT &&
+ "Expected the first operand of the PARTIAL_REDUCE_MLA node to have "
+ "the same type as its result!");
+ assert(Input1VT.getVectorElementCount().getKnownMinValue() %
+ AccVT.getVectorElementCount().getKnownMinValue() ==
+ 0 &&
+ "Expected the element count of the second and third operands of the "
+ "PARTIAL_REDUCE_MLA node to be a positive integer multiple of the "
+ "element count of the first operand and result!");
+ assert(Input1VT.getVectorElementType().getSizeInBits() <=
+ AccVT.getVectorElementType().getSizeInBits() &&
----------------
paulwalker-arm wrote:
I think you can shrink this a little by using `Input1VT.getScalarValueSizeInBits() <= AccVT.getScalarValueSizeInBits() &&`?
FYI: Scalar and VectorElementType are kind of used interchangeably within code generation based on what looks best at the time :)
https://github.com/llvm/llvm-project/pull/125207
More information about the llvm-commits
mailing list