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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
|
// See LICENSE for license details.
package firrtlTests
import firrtl._
import firrtl.testutils._
import org.scalacheck.Gen
class ParserSpec extends FirrtlFlatSpec {
private object MemTests {
val prelude = Seq("circuit top :", " module top :", " mem m : ")
val fields = Map("data-type" -> "UInt<32>",
"depth" -> "4",
"read-latency" -> "1",
"write-latency" -> "1",
"reader" -> "a",
"writer" -> "b",
"readwriter" -> "c"
)
def fieldsToSeq(m: Map[String, String]): Seq[String] =
m map { case (k,v) => s" ${k} => ${v}" } toSeq
}
private object RegTests {
val prelude = Seq("circuit top :", " module top :")
val reg = " reg r : UInt<32>, clock"
val reset = "reset => (radReset, UInt(\"hdeadbeef\"))"
val finfo = "@[Reg.scala:33:10]"
}
private object KeywordTests {
val prelude = Seq("circuit top :", " module top :")
val keywords = Seq("circuit", "module", "extmodule", "parameter", "input", "output", "UInt",
"SInt", "Analog", "Fixed", "flip", "Clock", "wire", "reg", "reset", "with", "mem", "depth",
"reader", "writer", "readwriter", "inst", "of", "node", "is", "invalid", "when", "else",
"stop", "printf", "skip", "old", "new", "undefined", "mux", "validif", "cmem", "smem",
"mport", "infer", "read", "write", "rdwr") ++ PrimOps.listing
}
// ********** Memories **********
"Memories" should "allow arbitrary ordering of fields" in {
val fields = MemTests.fieldsToSeq(MemTests.fields)
val golden = firrtl.Parser.parse((MemTests.prelude ++ fields))
fields.permutations foreach { permutation =>
val circuit = firrtl.Parser.parse((MemTests.prelude ++ permutation))
assert(golden === circuit)
}
}
it should "have exactly one of each: data-type, depth, read-latency, and write-latency" in {
import MemTests._
def parseWithoutField(s: String) = firrtl.Parser.parse((prelude ++ fieldsToSeq(fields - s)))
def parseWithDuplicate(k: String, v: String) =
firrtl.Parser.parse((prelude ++ fieldsToSeq(fields) :+ s" ${k} => ${v}"))
Seq("data-type", "depth", "read-latency", "write-latency") foreach { field =>
an [ParameterNotSpecifiedException] should be thrownBy { parseWithoutField(field) }
an [ParameterRedefinedException] should be thrownBy { parseWithDuplicate(field, fields(field)) }
}
}
// ********** Registers **********
"Registers" should "allow no implicit reset" in {
import RegTests._
firrtl.Parser.parse((prelude :+ reg))
}
it should "allow same-line reset" in {
import RegTests._
firrtl.Parser.parse((prelude :+ s"${reg} with : (${reset})" :+ " wire a : UInt"))
}
it should "allow multi-line reset" in {
import RegTests._
firrtl.Parser.parse((prelude :+ s"${reg} with :\n (${reset})"))
}
it should "allow source locators with same-line reset" in {
import RegTests._
firrtl.Parser.parse((prelude :+ s"${reg} with : (${reset}) $finfo" :+ " wire a : UInt"))
}
it should "allow source locators with multi-line reset" in {
import RegTests._
firrtl.Parser.parse((prelude :+ s"${reg} with :\n (${reset}) $finfo"))
}
// ********** Keywords **********
"Keywords" should "be allowed as Ids" in {
import KeywordTests._
keywords foreach { keyword =>
firrtl.Parser.parse((prelude :+ s" wire ${keyword} : UInt"))
}
}
it should "be allowed on lhs in connects" in {
import KeywordTests._
keywords foreach { keyword =>
firrtl.Parser.parse((prelude ++ Seq(s" wire ${keyword} : UInt",
s" ${keyword} <= ${keyword}")))
}
}
// ********** Digits as Fields **********
"Digits" should "be legal fields in bundles and in subexpressions" in {
val input = """
|circuit Test :
| module Test :
| input in : { 0 : { 0 : UInt<32>, flip 1 : UInt<32> } }
| input in2 : { 4 : { 23 : { foo : UInt<32>, bar : { flip 123 : UInt<32> } } } }
| in.0.1 <= in.0.0
| in2.4.23.bar.123 <= in2.4.23.foo
""".stripMargin
val c = firrtl.Parser.parse(input)
firrtl.Parser.parse(c.serialize)
}
// ********** Literal Formats **********
"Literals of different bases and signs" should "produce correct values" in {
def circuit(lit: String): firrtl.ir.Circuit = {
val input = s"""circuit Top :
| module lits:
| output litout : SInt<16>
| litout <= SInt(${lit})
|""".stripMargin
firrtl.Parser.parse(input)
}
def check(inFormat: String, ref: Integer): Unit = {
(circuit(inFormat)) should be (circuit(ref.toString))
}
val checks = Map(
""" 12 """ -> 12,
""" -14 """ -> -14,
""" +15 """ -> 15,
""" "hA" """ -> 10,
""" "h-C" """ -> -12,
""" "h+1B" """ -> 27,
""" "o66" """ -> 54,
""" "o-33" """ -> -27,
""" "b1101" """ -> 13,
""" "b-1001" """ -> -9,
""" "b+1000" """ -> 8
)
checks.foreach { case (k, v) => check(k, v) }
}
// ********** Doubles as parameters **********
"Doubles" should "be legal parameters for extmodules" in {
val nums = Seq("1.0", "7.6", "3.00004", "1.0E10", "1.0023E-17")
val signs = Seq("", "+", "-")
val tests = "0.0" +: (signs flatMap (s => nums map (n => s + n)))
for (test <- tests) {
val input = s"""
|circuit Test :
| extmodule Ext :
| input foo : UInt<32>
|
| defname = MyExtModule
| parameter REAL = $test
|
| module Test :
| input foo : UInt<32>
| output bar : UInt<32>
""".stripMargin
val c = firrtl.Parser.parse(input)
firrtl.Parser.parse(c.serialize)
}
}
"Strings" should "be legal parameters for extmodules" in {
val input = s"""
|circuit Test :
| extmodule Ext :
| input foo : UInt<32>
|
| defname = MyExtModule
| parameter STR = "hello=%d"
|
| module Test :
| input foo : UInt<32>
| output bar : UInt<32>
""".stripMargin
val c = firrtl.Parser.parse(input)
firrtl.Parser.parse(c.serialize)
}
"Parsing errors" should "be reported as normal exceptions" in {
val input = s"""
|circuit Test
| module Test :
|""".stripMargin
val manager = new ExecutionOptionsManager("test") with HasFirrtlOptions {
firrtlOptions = FirrtlExecutionOptions(firrtlSource = Some(input))
}
a [SyntaxErrorsException] shouldBe thrownBy {
Driver.execute(manager)
}
}
"Trailing syntax errors" should "be caught in the parser" in {
val input = s"""
|circuit Foo:
| module Bar:
| input a: UInt<1>
|output b: UInt<1>
| b <- a
|
| module Foo:
| input a: UInt<1>
| output b: UInt<1>
| inst bar of Bar
| bar.a <- a
| b <- bar.b
""".stripMargin
val manager = new ExecutionOptionsManager("test") with HasFirrtlOptions {
firrtlOptions = FirrtlExecutionOptions(firrtlSource = Some(input))
}
a [SyntaxErrorsException] shouldBe thrownBy {
Driver.execute(manager)
}
}
}
class ParserPropSpec extends FirrtlPropSpec {
// Disable shrinking on error.
import org.scalacheck.Shrink
implicit val noShrinkString = Shrink[String](_ => Stream.empty)
def legalStartChar = Gen.frequency((1, '_'), (20, Gen.alphaChar))
def legalChar = Gen.frequency((1, Gen.numChar), (1, '$'), (10, legalStartChar))
def identifier = for {
x <- legalStartChar
xs <- Gen.listOf(legalChar)
} yield (x :: xs).mkString
property("Identifiers should allow [A-Za-z0-9_$] but not allow starting with a digit or $") {
forAll (identifier) { id =>
whenever(id.nonEmpty) {
val input = s"""
|circuit Test :
| module Test :
| input $id : UInt<32>
|""".stripMargin
firrtl.Parser.parse(input split "\n")
}
}
}
def bundleField = for {
xs <- Gen.nonEmptyListOf(legalChar)
} yield xs.mkString
property("Bundle fields should allow [A-Za-z0-9_] including starting with a digit or $") {
forAll (identifier, bundleField) { case (id, field) =>
whenever(id.nonEmpty && field.nonEmpty) {
val input = s"""
|circuit Test :
| module Test :
| input $id : { $field : UInt<32> }
|""".stripMargin
firrtl.Parser.parse(input split "\n")
}
}
}
}
|