Skip to content

Commit a9d0048

Browse files
authored
[MooreToCore] Add nested moore.conditional support (#8125)
This code adds correct lowering for nested ternary operators like this: ```verilog module Mod(input a, input b, output logic [1:0] c); always_comb c = a ? b ? 2'd0 : 2'd1 : 2'd2; endmodule ```
1 parent 6556fa6 commit a9d0048

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

lib/Conversion/MooreToCore/MooreToCore.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -1444,6 +1444,9 @@ struct ConditionalOpConversion : public OpConversionPattern<ConditionalOp> {
14441444
!memOp.hasEffect<MemoryEffects::Free>())
14451445
return WalkResult::advance();
14461446

1447+
if (operation->hasTrait<OpTrait::HasRecursiveMemoryEffects>())
1448+
return WalkResult::advance();
1449+
14471450
return WalkResult::interrupt();
14481451
});
14491452
return !result.wasInterrupted();

test/Conversion/MooreToCore/basic.mlir

+25
Original file line numberDiff line numberDiff line change
@@ -1008,6 +1008,31 @@ moore.module @StringConstant() {
10081008
}
10091009
}
10101010

1011+
// CHECK-LABEL: func.func @RecurciveConditional
1012+
func.func @RecurciveConditional(%arg0 : !moore.l1, %arg1 : !moore.l1) {
1013+
// CHECK: [[C_2:%.+]] = hw.constant -2 : i2
1014+
// CHECK: [[C_1:%.+]] = hw.constant 1 : i2
1015+
// CHECK: [[C_0:%.+]] = hw.constant 0 : i2
1016+
%c_2 = moore.constant -2 : l2
1017+
%c_1 = moore.constant 1 : l2
1018+
%c_0 = moore.constant 0 : l2
1019+
1020+
// CHECK: [[MUX0:%.+]] = comb.mux %arg1, [[C_0]], [[C_1]] : i2
1021+
// CHECK: [[MUX1:%.+]] = comb.mux %arg0, [[MUX0]], [[C_2]] : i2
1022+
%0 = moore.conditional %arg0 : l1 -> l2 {
1023+
%1 = moore.conditional %arg1 : l1 -> l2 {
1024+
moore.yield %c_0 : l2
1025+
} {
1026+
moore.yield %c_1 : l2
1027+
}
1028+
moore.yield %1 : l2
1029+
} {
1030+
moore.yield %c_2 : l2
1031+
}
1032+
1033+
return
1034+
}
1035+
10111036
// CHECK-LABEL: func.func @Conversions
10121037
func.func @Conversions(%arg0: !moore.i16, %arg1: !moore.l16) {
10131038
// CHECK: [[TMP:%.+]] = comb.extract %arg0 from 0 : (i16) -> i8

0 commit comments

Comments
 (0)