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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
|
// SPDX-License-Identifier: Apache-2.0
package firrtlTests.transforms
import firrtl.testutils.FirrtlFlatSpec
import firrtl._
import firrtl.passes._
import firrtl.passes.wiring.{SinkAnnotation, SourceAnnotation, WiringTransform}
import firrtl.annotations._
import firrtl.annotations.TargetToken.{Field, Index}
class InferWidthsWithAnnosSpec extends FirrtlFlatSpec {
private def executeTest(input: String, check: String, transforms: Seq[Transform], annotations: Seq[Annotation]) = {
val start = CircuitState(parse(input), ChirrtlForm, annotations)
val end = transforms.foldLeft(start) { (c: CircuitState, t: Transform) =>
t.runTransform(c)
}
val resLines = end.circuit.serialize.split("\n").map(normalized)
val checkLines = parse(check).serialize.split("\n").map(normalized)
resLines should be(checkLines)
}
"CheckWidths on wires with unknown widths" should "result in an error" in {
val transforms =
Seq(ToWorkingIR, CheckHighForm, ResolveKinds, InferTypes, CheckTypes, ResolveFlows, new InferWidths, CheckWidths)
val input =
"""circuit Top :
| module Top :
| inst b of B
| inst a of A
|
| module B :
| wire x: UInt<3>
|
| module A :
| wire y: UInt""".stripMargin
// A.y should have uninferred width
intercept[CheckWidths.UninferredWidth] {
executeTest(input, "", transforms, Seq.empty)
}
}
"InferWidthsWithAnnos" should "infer widths using WidthGeqConstraintAnnotation" in {
val transforms =
Seq(ToWorkingIR, CheckHighForm, ResolveKinds, InferTypes, CheckTypes, ResolveFlows, new InferWidths, CheckWidths)
val annos = Seq(
WidthGeqConstraintAnnotation(
ReferenceTarget("Top", "A", Nil, "y", Nil),
ReferenceTarget("Top", "B", Nil, "x", Nil)
)
)
val input =
"""circuit Top :
| module Top :
| inst b of B
| inst a of A
|
| module B :
| wire x: UInt<3>
|
| module A :
| wire y: UInt""".stripMargin
val output =
"""circuit Top :
| module Top :
| inst b of B
| inst a of A
|
| module B :
| wire x: UInt<3>
|
| module A :
| wire y: UInt<3>""".stripMargin
// A.y should have same width as B.x
executeTest(input, output, transforms, annos)
}
"InferWidthsWithAnnos" should "work with token paths" in {
val transforms =
Seq(ToWorkingIR, CheckHighForm, ResolveKinds, InferTypes, CheckTypes, ResolveFlows, new InferWidths, CheckWidths)
val tokenLists = Seq(
Seq(Field("x")),
Seq(Field("y"), Index(0), Field("yy")),
Seq(Field("y"), Index(1), Field("yy"))
)
val annos = tokenLists.map { tokens =>
WidthGeqConstraintAnnotation(
ReferenceTarget("Top", "A", Nil, "bundle", tokens),
ReferenceTarget("Top", "B", Nil, "bundle", tokens)
)
}
val input =
"""circuit Top :
| module Top :
| inst b of B
| inst a of A
|
| module B :
| wire bundle : {x : UInt<1>, y: {yy : UInt<3>}[2] }
|
| module A :
| wire bundle : {x : UInt, y: {yy : UInt}[2] }""".stripMargin
val output =
"""circuit Top :
| module Top :
| inst b of B
| inst a of A
|
| module B :
| wire bundle : {x : UInt<1>, y: {yy : UInt<3>}[2] }
|
| module A :
| wire bundle : {x : UInt<1>, y: {yy : UInt<3>}[2] }""".stripMargin
// elements of A.bundle should have same width as B.bundle
executeTest(input, output, transforms, annos)
}
"InferWidthsWithAnnos" should "work with WiringTransform" in {
def transforms() = Seq(
ToWorkingIR,
ResolveKinds,
InferTypes,
ResolveFlows,
new InferWidths,
CheckWidths,
new WiringTransform,
new ResolveAndCheck
)
val sourceTarget = ComponentName("bundle", ModuleName("A", CircuitName("Top")))
val source = SourceAnnotation(sourceTarget, "pin")
val sinkTarget = ComponentName("bundle", ModuleName("B", CircuitName("Top")))
val sink = SinkAnnotation(sinkTarget, "pin")
val tokenLists = Seq(
Seq(Field("x")),
Seq(Field("y"), Index(0), Field("yy")),
Seq(Field("y"), Index(1), Field("yy"))
)
val wgeqAnnos = tokenLists.map { tokens =>
WidthGeqConstraintAnnotation(
ReferenceTarget("Top", "A", Nil, "bundle", tokens),
ReferenceTarget("Top", "B", Nil, "bundle", tokens)
)
}
val failAnnos = Seq(source, sink)
val successAnnos = wgeqAnnos ++: failAnnos
val input =
"""circuit Top :
| module Top :
| inst b of B
| inst a of A
|
| module B :
| wire bundle : {x : UInt<1>, y: {yy : UInt<3>}[2] }
|
| module A :
| wire bundle : {x : UInt, y: {yy : UInt}[2] }""".stripMargin
val output =
"""circuit Top :
| module Top :
| wire bundle : {x : UInt<1>, y: {yy : UInt<3>}[2] }
| inst b of B
| inst a of A
| b.pin <= bundle
| bundle <= a.bundle_0
|
| module B :
| input pin : {x : UInt<1>, y: {yy : UInt<3>}[2] }
| wire bundle : {x : UInt<1>, y: {yy : UInt<3>}[2] }
| bundle <= pin
|
| module A :
| output bundle_0 : {x : UInt<1>, y: {yy : UInt<3>}[2] }
| wire bundle : {x : UInt<1>, y: {yy : UInt<3>}[2] }
| bundle_0 <= bundle""".stripMargin
// should fail without extra constraint annos due to UninferredWidths
val exceptions = intercept[PassExceptions] {
executeTest(input, "", transforms, failAnnos)
}.exceptions.reverse
val msg = exceptions.head.toString
assert(msg.contains(s"2 errors detected!"))
assert(exceptions.tail.forall(_.isInstanceOf[CheckWidths.UninferredWidth]))
// should pass with extra constraints
executeTest(input, output, transforms, successAnnos)
}
}
|