[llvm] [PowerPC] custom lower v1024i1 load/store (PR #126969)

Lei Huang via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 14 13:15:38 PST 2025


================
@@ -11766,9 +11771,13 @@ SDValue PPCTargetLowering::LowerVectorLoad(SDValue Op,
   SDValue BasePtr = LN->getBasePtr();
   EVT VT = Op.getValueType();
 
-  if (VT != MVT::v256i1 && VT != MVT::v512i1)
+  if (VT != MVT::v256i1 && VT != MVT::v512i1 && VT != MVT::v1024i1)
     return Op;
 
+  // Used for dense math registers.
+  assert((VT != MVT::v1024i1 || Subtarget.isISAFuture()) &&
+         "Type unsupported for this processor");
+
   // Type v256i1 is used for pairs and v512i1 is used for accumulators.
   // Here we create 2 or 4 v16i8 loads to load the pair or accumulator value in
   // 2 or 4 vsx registers.
----------------
lei137 wrote:

maybe this doc need to be updated since it's generating loads also for v1024i1 types now?

https://github.com/llvm/llvm-project/pull/126969


More information about the llvm-commits mailing list