[llvm] [PowerPC] Add Dense Math binary integer outer-Product accumulate to DMR Instructions (PR #130791)
Maryam Moghadas via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 14:48:37 PDT 2025
================
@@ -11,6 +11,13 @@
//
//===----------------------------------------------------------------------===//
+// Mask immediates for MMA instructions (2, 4 and 8 bits).
+def Msk2Imm : ImmLeaf<i32, [{ return isUInt<2>(Imm); }]>;
+def Msk4Imm : ImmLeaf<i32, [{ return isUInt<4>(Imm); }]>;
+def Msk8Imm : ImmLeaf<i32, [{ return isUInt<8>(Imm); }]>;
+
+def MMA : Predicate<"Subtarget->hasMMA()">;
+
----------------
maryammo wrote:
You are right, it is moved to PPCInstrInfo.td.
https://github.com/llvm/llvm-project/pull/130791
More information about the llvm-commits
mailing list