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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
|
// See LICENSE for license details.
package firrtlTests
import java.io._
import org.scalatest._
import org.scalatest.prop._
import firrtl.Parser
import firrtl.ir.Circuit
import firrtl.passes.{Pass,ToWorkingIR,CheckHighForm,ResolveKinds,InferTypes,CheckTypes,PassExceptions,InferWidths,CheckWidths,ResolveGenders,CheckGenders}
class CheckSpec extends FlatSpec with Matchers {
"Connecting bundles of different types" should "throw an exception" in {
val passes = Seq(
ToWorkingIR,
CheckHighForm)
val input =
"""circuit Unit :
| module Unit :
| mem m :
| data-type => {a : {b : {flip c : UInt<32>}}}
| depth => 32
| read-latency => 0
| write-latency => 1""".stripMargin
intercept[CheckHighForm.MemWithFlipException] {
passes.foldLeft(Parser.parse(input.split("\n").toIterator)) {
(c: Circuit, p: Pass) => p.run(c)
}
}
}
"Instance loops a -> b -> a" should "be detected" in {
val passes = Seq(
ToWorkingIR,
CheckHighForm)
val input =
"""
|circuit Foo :
| module Foo :
| input a : UInt<32>
| output b : UInt<32>
| inst bar of Bar
| bar.a <= a
| b <= bar.b
|
| module Bar :
| input a : UInt<32>
| output b : UInt<32>
| inst foo of Foo
| foo.a <= a
| b <= foo.b
""".stripMargin
intercept[CheckHighForm.InstanceLoop] {
passes.foldLeft(Parser.parse(input.split("\n").toIterator)) {
(c: Circuit, p: Pass) => p.run(c)
}
}
}
"Instance loops a -> b -> c -> a" should "be detected" in {
val passes = Seq(
ToWorkingIR,
CheckHighForm)
val input =
"""
|circuit Dog :
| module Dog :
| input a : UInt<32>
| output b : UInt<32>
| inst bar of Cat
| bar.a <= a
| b <= bar.b
|
| module Cat :
| input a : UInt<32>
| output b : UInt<32>
| inst ik of Ik
| ik.a <= a
| b <= ik.b
|
| module Ik :
| input a : UInt<32>
| output b : UInt<32>
| inst foo of Dog
| foo.a <= a
| b <= foo.b
| """.stripMargin
intercept[CheckHighForm.InstanceLoop] {
passes.foldLeft(Parser.parse(input.split("\n").toIterator)) {
(c: Circuit, p: Pass) => p.run(c)
}
}
}
"Instance loops a -> a" should "be detected" in {
val passes = Seq(
ToWorkingIR,
CheckHighForm)
val input =
"""
|circuit Apple :
| module Apple :
| input a : UInt<32>
| output b : UInt<32>
| inst recurse_foo of Apple
| recurse_foo.a <= a
| b <= recurse_foo.b
| """.stripMargin
intercept[CheckHighForm.InstanceLoop] {
passes.foldLeft(Parser.parse(input.split("\n").toIterator)) {
(c: Circuit, p: Pass) => p.run(c)
}
}
}
"Instance loops should not have false positives" should "be detected" in {
val passes = Seq(
ToWorkingIR,
CheckHighForm)
val input =
"""
|circuit Hammer :
| module Hammer :
| input a : UInt<32>
| output b : UInt<32>
| inst bar of Chisel
| bar.a <= a
| b <= bar.b
|
| module Chisel :
| input a : UInt<32>
| output b : UInt<32>
| inst ik of Saw
| ik.a <= a
| b <= ik.b
|
| module Saw :
| input a : UInt<32>
| output b : UInt<32>
| b <= a
| """.stripMargin
passes.foldLeft(Parser.parse(input.split("\n").toIterator)) {
(c: Circuit, p: Pass) => p.run(c)
}
}
"Clock Types" should "be connectable" in {
val passes = Seq(
ToWorkingIR,
CheckHighForm,
ResolveKinds,
InferTypes,
CheckTypes,
ResolveGenders,
CheckGenders,
InferWidths,
CheckWidths)
val input =
"""
|circuit TheRealTop :
|
| module Top :
| output io : {flip debug_clk : Clock}
|
| extmodule BlackBoxTop :
| input jtag : {TCK : Clock}
|
| module TheRealTop :
| input clk : Clock
| input reset : UInt<1>
| output io : {flip jtag : {TCK : Clock}}
|
| io is invalid
| inst sub of Top
| sub.io is invalid
| inst bb of BlackBoxTop
| bb.jtag is invalid
| bb.jtag <- io.jtag
|
| sub.io.debug_clk <= io.jtag.TCK
|
|""".stripMargin
passes.foldLeft(Parser.parse(input.split("\n").toIterator)) {
(c: Circuit, p: Pass) => p.run(c)
}
}
}
|