-
Notifications
You must be signed in to change notification settings - Fork 615
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 #3993 from chipsalliance/optimize-truth-table-merge
Optimize truth table merge
- Loading branch information
Showing
5 changed files
with
174 additions
and
73 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
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,121 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package chisel3.util | ||
|
||
import chisel3._ | ||
import chisel3.util.BitPat | ||
import _root_.circt.stage.ChiselStage | ||
import org.scalatest.flatspec.AnyFlatSpec | ||
import org.scalatest.matchers.should.Matchers | ||
|
||
class BitPatSpec extends AnyFlatSpec with Matchers { | ||
behavior.of(classOf[BitPat].toString) | ||
|
||
it should "convert a BitPat to readable form" in { | ||
val testPattern = "0" * 32 + "1" * 32 + "?" * 32 + "?01" * 32 | ||
BitPat("b" + testPattern).toString should be(s"BitPat($testPattern)") | ||
} | ||
|
||
it should "convert a BitPat to raw form" in { | ||
val testPattern = "0" * 32 + "1" * 32 + "?" * 32 + "?01" * 32 | ||
BitPat("b" + testPattern).rawString should be(testPattern) | ||
} | ||
|
||
it should "not fail if BitPat width is 0" in { | ||
intercept[IllegalArgumentException] { BitPat("b") } | ||
} | ||
|
||
it should "concat BitPat via ##" in { | ||
(BitPat.Y(4) ## BitPat.dontCare(3) ## BitPat.N(2)).toString should be(s"BitPat(1111???00)") | ||
} | ||
|
||
it should "throw when BitPat apply to a Hardware" in { | ||
intercept[java.lang.IllegalArgumentException] { | ||
ChiselStage.emitCHIRRTL(new chisel3.Module { | ||
BitPat(chisel3.Reg(chisel3.Bool())) | ||
}) | ||
} | ||
} | ||
|
||
it should "index and return new BitPat" in { | ||
val b = BitPat("b1001???") | ||
b(0) should be(BitPat.dontCare(1)) | ||
b(6) should be(BitPat.Y()) | ||
b(5) should be(BitPat.N()) | ||
} | ||
|
||
it should "slice and return new BitPat" in { | ||
val b = BitPat("b1001???") | ||
b(2, 0) should be(BitPat("b???")) | ||
b(4, 3) should be(BitPat("b01")) | ||
b(6, 6) should be(BitPat("b1")) | ||
} | ||
|
||
it should "parse UInt literals correctly" in { | ||
BitPat(0.U) should be(new BitPat(0, 1, 1)) | ||
// Note that this parses as 1-bit width, there are other APIs that don't support zero-width UInts correctly | ||
BitPat(0.U(0.W)) should be(new BitPat(0, 1, 1)) | ||
BitPat(1.U) should be(new BitPat(1, 1, 1)) | ||
BitPat(2.U) should be(new BitPat(2, 3, 2)) | ||
BitPat(0xdeadbeefL.U) should be(new BitPat(BigInt("deadbeef", 16), BigInt("ffffffff", 16), 32)) | ||
} | ||
|
||
it should "support .hasDontCares" in { | ||
BitPat("b?").hasDontCares should be(true) | ||
BitPat("b??").hasDontCares should be(true) | ||
BitPat("b0?").hasDontCares should be(true) | ||
BitPat("b?1").hasDontCares should be(true) | ||
BitPat("b0").hasDontCares should be(false) | ||
BitPat("b10").hasDontCares should be(false) | ||
BitPat("b01").hasDontCares should be(false) | ||
BitPat(0xdeadbeefL.U).hasDontCares should be(false) | ||
// Zero-width not supported yet | ||
intercept[IllegalArgumentException] { BitPat("b").hasDontCares should be(false) } | ||
} | ||
|
||
it should "support .allZeros" in { | ||
BitPat("b?").allZeros should be(false) | ||
BitPat("b??").allZeros should be(false) | ||
BitPat("b0?").allZeros should be(false) | ||
BitPat("b?1").allZeros should be(false) | ||
BitPat("b0").allZeros should be(true) | ||
BitPat("b10").allZeros should be(false) | ||
BitPat("b01").allZeros should be(false) | ||
BitPat(0.U(128.W)).allZeros should be(true) | ||
BitPat.N(23).allZeros should be(true) | ||
BitPat(0xdeadbeefL.U).allZeros should be(false) | ||
// Zero-width not supported yet | ||
intercept[IllegalArgumentException] { BitPat("b").allZeros should be(true) } | ||
} | ||
|
||
it should "support .allOnes" in { | ||
BitPat("b?").allOnes should be(false) | ||
BitPat("b??").allOnes should be(false) | ||
BitPat("b0?").allOnes should be(false) | ||
BitPat("b?1").allOnes should be(false) | ||
BitPat("b0").allOnes should be(false) | ||
BitPat("b10").allOnes should be(false) | ||
BitPat("b01").allOnes should be(false) | ||
BitPat("b1").allOnes should be(true) | ||
BitPat("b" + ("1" * 128)).allOnes should be(true) | ||
BitPat.Y(23).allOnes should be(true) | ||
BitPat(0xdeadbeefL.U).allOnes should be(false) | ||
// Zero-width not supported yet | ||
intercept[IllegalArgumentException] { BitPat("b").allOnes should be(true) } | ||
} | ||
|
||
it should "support .allDontCares" in { | ||
BitPat("b?").allDontCares should be(true) | ||
BitPat("b??").allDontCares should be(true) | ||
BitPat("b0?").allDontCares should be(false) | ||
BitPat("b?1").allDontCares should be(false) | ||
BitPat("b0").allDontCares should be(false) | ||
BitPat("b10").allDontCares should be(false) | ||
BitPat("b1").allDontCares should be(false) | ||
BitPat("b" + ("1" * 128)).allDontCares should be(false) | ||
BitPat.dontCare(23).allDontCares should be(true) | ||
BitPat(0xdeadbeefL.U).allDontCares should be(false) | ||
// Zero-width not supported yet | ||
intercept[IllegalArgumentException] { BitPat("b").allDontCares should be(true) } | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.