diff options
| author | Albert Magyar | 2020-03-11 15:14:45 -0700 |
|---|---|---|
| committer | GitHub | 2020-03-11 15:14:45 -0700 |
| commit | 3726fba89bb70f424ac8be4ad2d4b300c471d7e8 (patch) | |
| tree | 4e921e7e809fd3071f2a1213c5dbc45af8eb3a87 /src/test | |
| parent | 026c18dd76d4e2121c7f6c582d15e4d5a3ab842b (diff) | |
Don't const-prop a register's self-init (#1441)
* Fixes #1214
Co-authored-by: Jack Koenig <koenig@sifive.com>
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/scala/firrtlTests/ConstantPropagationTests.scala | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/src/test/scala/firrtlTests/ConstantPropagationTests.scala b/src/test/scala/firrtlTests/ConstantPropagationTests.scala index 189809a6..3296b13b 100644 --- a/src/test/scala/firrtlTests/ConstantPropagationTests.scala +++ b/src/test/scala/firrtlTests/ConstantPropagationTests.scala @@ -5,6 +5,7 @@ package firrtlTests import firrtl._ import firrtl.passes._ import firrtl.transforms._ +import firrtl.annotations.Annotation class ConstantPropagationSpec extends FirrtlFlatSpec { val transforms = Seq( @@ -14,8 +15,8 @@ class ConstantPropagationSpec extends FirrtlFlatSpec { ResolveFlows, new InferWidths, new ConstantPropagation) - protected def exec(input: String) = { - transforms.foldLeft(CircuitState(parse(input), UnknownForm)) { + protected def exec(input: String, annos: Seq[Annotation] = Nil) = { + transforms.foldLeft(CircuitState(parse(input), UnknownForm, AnnotationSeq(annos))) { (c: CircuitState, t: Transform) => t.runTransform(c) }.circuit.serialize } @@ -751,6 +752,30 @@ class ConstantPropagationSingleModule extends ConstantPropagationSpec { (parse(exec(input))) should be(parse(check)) } + "ConstProp" should "NOT touch self-inits" in { + val input = + """circuit Top : + | module Top : + | input clk : Clock + | input rst : UInt<1> + | output z : UInt<4> + | reg selfinit : UInt<1>, clk with : (reset => (UInt<1>(0), selfinit)) + | selfinit <= UInt<1>(0) + | z <= mux(UInt(1), UInt<2>(0), UInt<4>(0)) + """.stripMargin + val check = + """circuit Top : + | module Top : + | input clk : Clock + | input rst : UInt<1> + | output z : UInt<4> + | reg selfinit : UInt<1>, clk with : (reset => (UInt<1>(0), selfinit)) + | selfinit <= UInt<1>(0) + | z <= UInt<4>(0) + """.stripMargin + (parse(exec(input, Seq(NoDCEAnnotation)))) should be(parse(check)) + } + def castCheck(tpe: String, cast: String): Unit = { val input = s"""circuit Top : |
