-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1067 from phanrahan/mlir-add-elaborate-magma-regi…
…sters-option [MLIR] Add elaborate_magma_registers option
- Loading branch information
Showing
7 changed files
with
115 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
tests/test_backend/test_mlir/golds/complex_register_wrapper_elaborate_magma_registers.mlir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
hw.module @Register(%I: !hw.struct<x: i8, y: i1>, %CE: i1, %CLK: i1, %ASYNCRESET: i1) -> (O: !hw.struct<x: i8, y: i1>) { | ||
%1 = comb.extract %0 from 1 : (i9) -> i1 | ||
%2 = comb.extract %0 from 2 : (i9) -> i1 | ||
%3 = comb.extract %0 from 3 : (i9) -> i1 | ||
%4 = comb.extract %0 from 4 : (i9) -> i1 | ||
%5 = comb.extract %0 from 5 : (i9) -> i1 | ||
%6 = comb.extract %0 from 6 : (i9) -> i1 | ||
%7 = comb.extract %0 from 7 : (i9) -> i1 | ||
%9 = comb.concat %7, %6, %5, %4, %3, %2, %1, %8 : i1, i1, i1, i1, i1, i1, i1, i1 | ||
%10 = comb.extract %0 from 8 : (i9) -> i1 | ||
%11 = hw.struct_create (%9, %10) : !hw.struct<x: i8, y: i1> | ||
%13 = hw.array_create %11, %I : !hw.struct<x: i8, y: i1> | ||
%12 = hw.array_get %13[%CE] : !hw.array<2x!hw.struct<x: i8, y: i1>> | ||
%14 = hw.struct_extract %12["x"] : !hw.struct<x: i8, y: i1> | ||
%15 = comb.extract %14 from 0 : (i8) -> i1 | ||
%16 = comb.extract %14 from 1 : (i8) -> i1 | ||
%17 = comb.extract %14 from 2 : (i8) -> i1 | ||
%18 = comb.extract %14 from 3 : (i8) -> i1 | ||
%19 = comb.extract %14 from 4 : (i8) -> i1 | ||
%20 = comb.extract %14 from 5 : (i8) -> i1 | ||
%21 = comb.extract %14 from 6 : (i8) -> i1 | ||
%22 = comb.extract %14 from 7 : (i8) -> i1 | ||
%23 = hw.struct_extract %12["y"] : !hw.struct<x: i8, y: i1> | ||
%24 = comb.concat %23, %22, %21, %20, %19, %18, %17, %16, %15 : i1, i1, i1, i1, i1, i1, i1, i1, i1 | ||
%25 = sv.reg {name = "reg_PR9_inst0"} : !hw.inout<i9> | ||
sv.alwaysff(posedge %CLK) { | ||
sv.passign %25, %24 : i9 | ||
} (asyncreset : posedge %ASYNCRESET) { | ||
sv.passign %25, %26 : i9 | ||
} | ||
%26 = hw.constant 266 : i9 | ||
sv.initial { | ||
sv.bpassign %25, %26 : i9 | ||
} | ||
%0 = sv.read_inout %25 : !hw.inout<i9> | ||
%8 = comb.extract %0 from 0 : (i9) -> i1 | ||
%27 = comb.concat %7, %6, %5, %4, %3, %2, %1, %8 : i1, i1, i1, i1, i1, i1, i1, i1 | ||
%28 = hw.struct_create (%27, %10) : !hw.struct<x: i8, y: i1> | ||
hw.output %28 : !hw.struct<x: i8, y: i1> | ||
} | ||
hw.module @complex_register_wrapper(%a: !hw.struct<x: i8, y: i1>, %b: !hw.array<6xi16>, %CLK: i1, %CE: i1, %ASYNCRESET: i1) -> (y: !hw.struct<u: !hw.struct<x: i8, y: i1>, v: !hw.array<6xi16>>) { | ||
%0 = hw.instance "Register_inst0" @Register(I: %a: !hw.struct<x: i8, y: i1>, CE: %CE: i1, CLK: %CLK: i1, ASYNCRESET: %ASYNCRESET: i1) -> (O: !hw.struct<x: i8, y: i1>) | ||
%1 = hw.instance "Register_inst1" @Register(I: %b: !hw.array<6xi16>, CE: %CLK: i1) -> (O: !hw.array<6xi16>) | ||
%2 = hw.struct_create (%0, %1) : !hw.struct<u: !hw.struct<x: i8, y: i1>, v: !hw.array<6xi16>> | ||
%3 = hw.struct_extract %a["x"] : !hw.struct<x: i8, y: i1> | ||
%4 = hw.instance "Register_inst2" @Register(I: %3: i8, CE: %CE: i1, CLK: %CLK: i1) -> (O: i8) | ||
hw.output %2 : !hw.struct<u: !hw.struct<x: i8, y: i1>, v: !hw.array<6xi16>> | ||
} |
Empty file.
16 changes: 16 additions & 0 deletions
16
tests/test_backend/test_mlir/golds/simple_register_wrapper_elaborate_magma_registers.mlir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
hw.module @Register(%I: i8, %CLK: i1) -> (O: i8) { | ||
%1 = sv.reg {name = "reg_P8_inst0"} : !hw.inout<i8> | ||
sv.alwaysff(posedge %CLK) { | ||
sv.passign %1, %I : i8 | ||
} | ||
%2 = hw.constant 3 : i8 | ||
sv.initial { | ||
sv.bpassign %1, %2 : i8 | ||
} | ||
%0 = sv.read_inout %1 : !hw.inout<i8> | ||
hw.output %0 : i8 | ||
} | ||
hw.module @simple_register_wrapper(%a: i8, %CLK: i1) -> (y: i8) { | ||
%0 = hw.instance "reg0" @Register(I: %a: i8, CLK: %CLK: i1) -> (O: i8) | ||
hw.output %0 : i8 | ||
} |
26 changes: 26 additions & 0 deletions
26
tests/test_backend/test_mlir/golds/simple_register_wrapper_elaborate_magma_registers.v
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
module Register( // <stdin>:1:1 | ||
input [7:0] I, | ||
input CLK, | ||
output [7:0] O); | ||
|
||
reg [7:0] reg_P8_inst0; // <stdin>:2:10 | ||
|
||
always_ff @(posedge CLK) // <stdin>:3:5 | ||
reg_P8_inst0 <= I; // <stdin>:4:9 | ||
initial // <stdin>:7:5 | ||
reg_P8_inst0 = 8'h3; // <stdin>:6:10, :8:9 | ||
assign O = reg_P8_inst0; // <stdin>:10:10, :11:5 | ||
endmodule | ||
|
||
module simple_register_wrapper( // <stdin>:13:1 | ||
input [7:0] a, | ||
input CLK, | ||
output [7:0] y); | ||
|
||
Register reg0 ( // <stdin>:14:10 | ||
.I (a), | ||
.CLK (CLK), | ||
.O (y) | ||
); | ||
endmodule | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters