blob: 968e7578eadb0405969c96c8c00c97d07bfd6c23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
// See LICENSE for license details.
package chiselTests
import chisel3._
import chisel3.experimental.{withClock, withReset}
class SimpleIO extends Bundle {
val in = Input(UInt(32.W))
val out = Output(UInt(32.W))
}
class PlusOne extends Module {
val io = IO(new SimpleIO)
io.out := io.in + 1.asUInt
}
class ModuleVec(val n: Int) extends Module {
val io = IO(new Bundle {
val ins = Input(Vec(n, UInt(32.W)))
val outs = Output(Vec(n, UInt(32.W)))
})
val pluses = VecInit(Seq.fill(n){ Module(new PlusOne).io })
for (i <- 0 until n) {
pluses(i).in := io.ins(i)
io.outs(i) := pluses(i).out
}
}
class ModuleWire extends Module {
val io = IO(new SimpleIO)
val inc = Wire(chiselTypeOf(Module(new PlusOne).io))
inc.in := io.in
io.out := inc.out
}
class ModuleWhen extends Module {
val io = IO(new Bundle {
val s = new SimpleIO
val en = Output(Bool())
})
when(io.en) {
val inc = Module(new PlusOne).io
inc.in := io.s.in
io.s.out := inc.out
} otherwise { io.s.out := io.s.in }
}
class ModuleForgetWrapper extends Module {
val io = IO(new SimpleIO)
val inst = new PlusOne
}
class ModuleDoubleWrap extends Module {
val io = IO(new SimpleIO)
val inst = Module(Module(new PlusOne))
}
class ModuleRewrap extends Module {
val io = IO(new SimpleIO)
val inst = Module(new PlusOne)
val inst2 = Module(inst)
}
class ModuleSpec extends ChiselPropSpec {
property("ModuleVec should elaborate") {
elaborate { new ModuleVec(2) }
}
ignore("ModuleVecTester should return the correct result") { }
property("ModuleWire should elaborate") {
elaborate { new ModuleWire }
}
ignore("ModuleWireTester should return the correct result") { }
property("ModuleWhen should elaborate") {
elaborate { new ModuleWhen }
}
ignore("ModuleWhenTester should return the correct result") { }
property("Forgetting a Module() wrapper should result in an error") {
(the [ChiselException] thrownBy {
elaborate { new ModuleForgetWrapper }
}).getMessage should include("attempted to instantiate a Module without wrapping it")
}
property("Double wrapping a Module should result in an error") {
(the [ChiselException] thrownBy {
elaborate { new ModuleDoubleWrap }
}).getMessage should include("Called Module() twice without instantiating a Module")
}
property("Rewrapping an already instantiated Module should result in an error") {
(the [ChiselException] thrownBy {
elaborate { new ModuleRewrap }
}).getMessage should include("This is probably due to rewrapping a Module instance")
}
property("object Module.clock should return a reference to the currently in scope clock") {
elaborate(new Module {
val io = IO(new Bundle {
val clock2 = Input(Clock())
})
assert(Module.clock eq this.clock)
withClock(io.clock2) { assert(Module.clock eq io.clock2) }
})
}
property("object Module.reset should return a reference to the currently in scope reset") {
elaborate(new Module {
val io = IO(new Bundle {
val reset2 = Input(Bool())
})
assert(Module.reset eq this.reset)
withReset(io.reset2) { assert(Module.reset eq io.reset2) }
})
}
property("object Module.currentModule should return an Option reference to the current Module") {
def checkModule(mod: Module): Boolean = Module.currentModule.map(_ eq mod).getOrElse(false)
elaborate(new Module {
val io = IO(new Bundle { })
assert(Module.currentModule.get eq this)
assert(checkModule(this))
})
}
property("DataMirror.modulePorts should work") {
elaborate(new Module {
val io = IO(new Bundle { })
val m = Module(new chisel3.experimental.MultiIOModule {
val a = IO(UInt(8.W))
val b = IO(Bool())
})
assert(chisel3.experimental.DataMirror.modulePorts(m) == Seq(
"clock" -> m.clock, "reset" -> m.reset,
"a" -> m.a, "b" -> m.b))
})
}
}
|