[Mlir-commits] [mlir] [mlir] Integrate OpAsmTypeInterface with AsmPrinter (PR #124700)

Hongren Zheng llvmlistbot at llvm.org
Mon Feb 3 20:54:06 PST 2025


================
@@ -1630,6 +1648,23 @@ void SSANameState::numberValuesInOp(Operation &op) {
       asmInterface.getAsmBlockNames(setBlockNameFn);
       asmInterface.getAsmResultNames(setResultNameFn);
     }
+    if (!opAsmOpInterfaceUsed) {
+      // If the OpAsmOpInterface didn't set a name, and
+      // all results have OpAsmTypeInterface, get names from types.
+      bool allHaveOpAsmTypeInterface =
+          llvm::all_of(op.getResultTypes(), [&](Type type) {
+            return mlir::isa<OpAsmTypeInterface>(type);
+          });
----------------
ZenithalHourlyRate wrote:

For an op with multiple results, we could not suggest a meaningful result "group" name. 

For example, in the following assembly the second result should not bear the name of `type_name`. It is the responsibility of `OpAsmOpInterface` to handle the grouping behavior.

```mlir
%type_name:2 = test.some_op %arg : i32 -> (!test.type, i32)
```

We should rather suggest the following way to clearly separate them.

```mlir
%type_name, %0 = test.some_op %arg : i32 -> (!test.type, i32)
```

But the default grouping behavior is not this way, so I only apply such separation when all of the results have `OpAsmTypeInterface`.  

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


More information about the Mlir-commits mailing list