[FIRRTL][Dedup] Fix more thoroughly re:structure
Nobody has claimed this yet.
- Dominant language
- C++
- Stars
- 2.2k
- Forks
- 524
- Avg merge
- 3d 2h
- Merged PRs (30d)
- 46
Description
This is just another example of the sort that was recently fixed (#7415), and probably the hashing should have some sort of values added to the hash that indicate the structure so that this this is fixed properly/completely.
Here's something that dedup's but shouldn't:
```firrtl
FIRRTL version 4.0.0
circuit Block: %[[
{ "class": "firrtl.passes.InlineAnnotation",
"target": "~Block|A" },
{ "class": "firrtl.passes.InlineAnnotation",
"target": "~Block|B" }
]]
module A:
input x : UInt<1>
output y : UInt<1>
connect y, UInt<1>(0)
node n = UInt<1>(1)
when x :
skip
else :
skip
connect y, n
module B:
input x : UInt<1>
output y : UInt<1>
connect y, UInt<1>(0)
node n = UInt<1>(1)
when x :
skip
else :
skip
connect y, n
public module Block:
input x : UInt<1>
output y : UInt<1>
inst a of A
connect a.x, x
inst b of B
connect b.x, x
connect y, and(a.y, b.y)
```
Note that the `connect y, n` is AFTER the when in the first module, but in the `else` of the when in the second.
This currently produces (`firtool`):
```systemverilog
// Generated by CIRCT firtool-1.79.0-24-g20cb546d1
module Block(
input x,
output y
);
assign y = 1'h1;
endmodule
```
The correct functionality for `Block` is produced if you block dedup, such as by annotation one of the modules "nodedup". Updated portion of the input:
```firrtl
circuit Block: %[[
{ "class": "firrtl.passes.InlineAnnotation",
"target": "~Block|A" },
{ "class": "firrtl.passes.InlineAnnotation",
"target": "~Block|B" },
{ "class": "firrtl.transforms.NoDedupAnnotation",
"target": "~Block|B" }
]]
```
This yields:
```systemverilog
// Generated by CIRCT firtool-1.79.0g20240801_20cb546
module Block(
input x,
output y
);
assign y = ~x;
endmodule
```
Note:
The inlining is just to make the difference in behavior easier to observe in terms of final functionality, but isn't necessary to reproduce.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Reproduce the FIRRTL example with firtool and compare the deduplicated result with the NoDedupAnnotation result. Start by tracing the Dedup pass and its hashing logic; done means modules whose control-flow structure differs are not deduplicated and the regression is covered by a test.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- cpp
- Domain
- compilers
- Issue type
- Bug
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100