aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorSchuyler Eldridge2019-02-05 14:03:08 -0500
committerSchuyler Eldridge2019-02-05 14:09:42 -0500
commit0a88492bfbbfe7e446b74776ec59cab69e73585b (patch)
tree3d7a3bacd8debc917cd5525d6fdecdee6a50e31c /src/test
parenta77122b4bb8756636c169473af3dc367b14698ef (diff)
Do Shr constant propagation in Legalize
This uses the foldShiftRight method of the ConstantPropagation Transform when legalizing Shr PrimOps. This has the effect of removing literals with bit extracts from the MinimumVerilogCompiler. This makes the formerly private foldShiftRight method of a public method of the ConstantPropagation companion object. Tests in the MimimumVerilogCompilerSpec are updated to check that Shr is handled as intended. Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
Diffstat (limited to 'src/test')
-rw-r--r--src/test/scala/firrtlTests/CompilerTests.scala20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/test/scala/firrtlTests/CompilerTests.scala b/src/test/scala/firrtlTests/CompilerTests.scala
index df83dd38..dc70847a 100644
--- a/src/test/scala/firrtlTests/CompilerTests.scala
+++ b/src/test/scala/firrtlTests/CompilerTests.scala
@@ -158,19 +158,25 @@ class VerilogCompilerSpec extends CompilerSpec with Matchers {
class MinimumVerilogCompilerSpec extends CompilerSpec with Matchers {
val input = """|circuit Top:
| module Top:
- | output b: UInt<1>[2]
- | node c = UInt<1>("h1")
- | b[0] <= c
- | b[1] is invalid
+ | output b: UInt<1>[3]
+ | node c = bits(UInt<3>("h7"), 2, 2)
+ | node d = shr(UInt<3>("h7"), 2)
+ | b[0] is invalid
+ | b[1] <= c
+ | b[2] <= d
|""".stripMargin
val check = """|module Top(
| output b_0,
- | output b_1
+ | output b_1,
+ | output b_2
|);
| wire c;
+ | wire d;
| assign c = 1'h1;
- | assign b_0 = c;
- | assign b_1 = 1'h0;
+ | assign d = 1'h1;
+ | assign b_0 = 1'h0;
+ | assign b_1 = c;
+ | assign b_2 = d;
|endmodule
|""".stripMargin
def compiler = new MinimumVerilogCompiler()