summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests
diff options
context:
space:
mode:
authormergify[bot]2022-11-07 19:13:49 +0000
committerGitHub2022-11-07 19:13:49 +0000
commit76ada881d077118384907f498576b3b338291ff6 (patch)
treedf425133f2395c25d3b21cd8ba438faa8320e5fb /src/test/scala/chiselTests
parent086c6806708d14ad5144ca064d4c644d0f62592d (diff)
Bugfix converter clearing flips (backport #2788) (#2832)
* Bugfix converter clearing flips (#2788) * Bugfix: Output on Vec of bundle with mixed field orientations * Bugfix OpaqueTypes clearing flips (cherry picked from commit f05bff1a337589bafebd08783bb0f6a72092a95a) # Conflicts: # src/test/scala/chiselTests/Direction.scala * Resolve backport conflicts Co-authored-by: Adam Izraelevitz <adam.izraelevitz@sifive.com> Co-authored-by: Jack Koenig <koenig@sifive.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Diffstat (limited to 'src/test/scala/chiselTests')
-rw-r--r--src/test/scala/chiselTests/Direction.scala61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/test/scala/chiselTests/Direction.scala b/src/test/scala/chiselTests/Direction.scala
index 0c657273..03755e83 100644
--- a/src/test/scala/chiselTests/Direction.scala
+++ b/src/test/scala/chiselTests/Direction.scala
@@ -7,6 +7,8 @@ import chisel3._
import chisel3.stage.ChiselStage
import org.scalatest.matchers.should.Matchers
+import scala.collection.immutable.SeqMap
+
class DirectionedBundle extends Bundle {
val in = Input(UInt(32.W))
val out = Output(UInt(32.W))
@@ -327,4 +329,63 @@ class DirectionSpec extends ChiselPropSpec with Matchers with Utils {
}
}
}
+ property("Bugfix: marking Vec fields with mixed directionality as Output/Input clears inner directions") {
+ class Decoupled extends Bundle {
+ val bits = UInt(3.W)
+ val valid = Bool()
+ val ready = Flipped(Bool())
+ }
+ class Coercing extends Bundle {
+ val source = Output(Vec(1, new Decoupled()))
+ val sink = Input(Vec(1, new Decoupled()))
+ }
+ class MyModule extends RawModule {
+ val io = IO(new Coercing())
+ val source = IO(Output(Vec(1, new Decoupled())))
+ val sink = IO(Input(Vec(1, new Decoupled())))
+ }
+
+ val emitted: String = ChiselStage.emitChirrtl(new MyModule)
+
+ assert(
+ emitted.contains(
+ "output io : { source : { bits : UInt<3>, valid : UInt<1>, ready : UInt<1>}[1], flip sink : { bits : UInt<3>, valid : UInt<1>, ready : UInt<1>}[1]}"
+ )
+ )
+ assert(
+ emitted.contains(
+ "output source : { bits : UInt<3>, valid : UInt<1>, ready : UInt<1>}[1]"
+ )
+ )
+ assert(
+ emitted.contains(
+ "input sink : { bits : UInt<3>, valid : UInt<1>, ready : UInt<1>}[1]"
+ )
+ )
+ }
+ property("Bugfix: clearing all flips inside an opaque type") {
+
+ class Decoupled extends Bundle {
+ val bits = UInt(3.W)
+ val valid = Bool()
+ val ready = Flipped(Bool())
+ }
+ class MyOpaqueType extends Record {
+ val k = new Decoupled()
+ val elements = SeqMap("" -> k)
+ override def opaqueType = elements.size == 1
+ override def cloneType: this.type = (new MyOpaqueType).asInstanceOf[this.type]
+ }
+ class MyModule extends RawModule {
+ val w = Wire(new MyOpaqueType())
+ }
+
+ val emitted: String = ChiselStage.emitChirrtl(new MyModule)
+
+ assert(
+ emitted.contains(
+ "wire w : { bits : UInt<3>, valid : UInt<1>, flip ready : UInt<1>}"
+ )
+ )
+ }
}