aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorJack Koenig2017-06-13 13:23:31 -0700
committerJack Koenig2017-06-13 13:52:12 -0700
commit51fb6db4fc82aba80650f6e98267b34fcea14122 (patch)
tree12a29ad4d1b2ecfe6ba6f4478064b19074846d34 /src/test
parent769f2d0a368819046a1def1e9e2050500e0b72a8 (diff)
Make ExpandWhens delete 'is invalid' for attached Analog components
Also add tests for what should happen to 'is invalid' in ExpandWhens Fixes #606
Diffstat (limited to 'src/test')
-rw-r--r--src/test/scala/firrtlTests/ExpandWhensSpec.scala44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/test/scala/firrtlTests/ExpandWhensSpec.scala b/src/test/scala/firrtlTests/ExpandWhensSpec.scala
index 4911f619..66f39a3d 100644
--- a/src/test/scala/firrtlTests/ExpandWhensSpec.scala
+++ b/src/test/scala/firrtlTests/ExpandWhensSpec.scala
@@ -78,6 +78,50 @@ class ExpandWhensSpec extends FirrtlFlatSpec {
val check = "VOID"
executeTest(input, check, true)
}
+ it should "replace 'is invalid' with validif for wires that have a connection" in {
+ val input =
+ """|circuit Tester :
+ | module Tester :
+ | input p : UInt<1>
+ | output out : UInt
+ | wire w : UInt<32>
+ | w is invalid
+ | out <= w
+ | when p :
+ | w <= UInt(123)
+ """.stripMargin
+ val check = "validif(p"
+ executeTest(input, check, true)
+ }
+ it should "leave 'is invalid' for wires that don't have a connection" in {
+ val input =
+ """|circuit Tester :
+ | module Tester :
+ | input p : UInt<1>
+ | output out : UInt
+ | wire w : UInt<32>
+ | w is invalid
+ | out <= w
+ """.stripMargin
+ val check = "w is invalid"
+ executeTest(input, check, true)
+ }
+ it should "delete 'is invalid' for attached Analog wires" in {
+ val input =
+ """|circuit Tester :
+ | extmodule Child :
+ | input bus : Analog<32>
+ | module Tester :
+ | input bus : Analog<32>
+ | inst c of Child
+ | wire w : Analog<32>
+ | attach (w, bus)
+ | attach (w, c.bus)
+ | w is invalid
+ """.stripMargin
+ val check = "w is invalid"
+ executeTest(input, check, false)
+ }
}
class ExpandWhensExecutionTest extends ExecutionTest("ExpandWhens", "/passes/ExpandWhens")