[llvm] [AMDGPU][True16][MC] VOP3 profile in True16 format (PR #109031)

Ivan Kosarev via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 9 05:48:52 PDT 2024


================
@@ -1579,6 +1795,16 @@ multiclass VOP3beOnly_Realtriple<GFXGen Gen, bits<10> op> :
 // VOP3 GFX11
 //===----------------------------------------------------------------------===//
 
+// VOP1 and VOP2 depend on these triple defs
+
+multiclass VOP3_Realtriple_t16_gfx11<bits<10> op, string asmName, string opName = NAME,
+                                     string pseudo_mnemonic = "", bit isSingle = 0> :
+  VOP3_Realtriple_with_name<GFX11Gen, op, opName, asmName, pseudo_mnemonic, isSingle>;
+
+multiclass VOP3Only_Realtriple_t16_gfx11<bits<10> op, string asmName,
+                                     string opName = NAME, string pseudo_mnemonic = "">
+  : VOP3_Realtriple_t16_gfx11<op, asmName, opName, pseudo_mnemonic, 1>;
----------------
kosarev wrote:

Why was this moved here?

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


More information about the llvm-commits mailing list