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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
|
// SPDX-License-Identifier: Apache-2.0
package firrtl
import org.antlr.v4.runtime.ParserRuleContext
import org.antlr.v4.runtime.tree.{AbstractParseTreeVisitor, ParseTreeVisitor, TerminalNode}
import scala.collection.JavaConverters._
import scala.collection.mutable
import scala.annotation.tailrec
import firrtl.antlr._
import PrimOps._
import FIRRTLParser._
import Parser.{AppendInfo, GenInfo, IgnoreInfo, InfoMode, UseInfo}
import firrtl.ir._
import Utils.throwInternalError
class Visitor(infoMode: InfoMode) extends AbstractParseTreeVisitor[FirrtlNode] with ParseTreeVisitor[FirrtlNode] {
// Strip file path
private def stripPath(filename: String) = filename.drop(filename.lastIndexOf("/") + 1)
// Check if identifier is made of legal characters
private def legalId(id: String) = {
val legalChars = ('A' to 'Z').toSet ++ ('a' to 'z').toSet ++ ('0' to '9').toSet ++ Set('_', '$')
id.forall(legalChars)
}
def visit(ctx: CircuitContext): Circuit = visitCircuit(ctx)
// These regex have to change if grammar changes
private val HexPattern = """\"*h([+\-]?[a-zA-Z0-9]+)\"*""".r
private val OctalPattern = """\"*o([+\-]?[0-7]+)\"*""".r
private val BinaryPattern = """\"*b([+\-]?[01]+)\"*""".r
private val DecPattern = """([+\-]?[1-9]\d*)""".r
private val ZeroPattern = "0".r
private val DecimalPattern = """([+\-]?[0-9]\d*\.[0-9]\d*)""".r
private def string2BigInt(s: String): BigInt = {
// private define legal patterns
s match {
case ZeroPattern(_*) => BigInt(0)
case HexPattern(hexdigits) => BigInt(hexdigits, 16)
case OctalPattern(octaldigits) => BigInt(octaldigits, 8)
case BinaryPattern(binarydigits) => BigInt(binarydigits, 2)
case DecPattern(num) => BigInt(num, 10)
case _ => throw new Exception("Invalid String for conversion to BigInt " + s)
}
}
private def string2BigDecimal(s: String): BigDecimal = {
// private define legal patterns
s match {
case ZeroPattern(_*) => BigDecimal(0)
case DecPattern(num) => BigDecimal(num)
case DecimalPattern(num) => BigDecimal(num)
case _ => throw new Exception("Invalid String for conversion to BigDecimal " + s)
}
}
private def string2Int(s: String): Int = string2BigInt(s).toInt
private[firrtl] def visitInfo(ctx: Option[InfoContext], parentCtx: ParserRuleContext): Info = {
// Convert a compressed FileInfo string into either into a singular FileInfo or a MultiInfo
// consisting of several FileInfos
def parseCompressedInfo(escaped: String): Info = {
var out: Seq[FileInfo] = Seq()
// Regular expression to match and capture the general File.format line:col pattern.
// Also matches the remaining part of the string which doesn't match the expression;
// which will be passed directly into the output as a FileInfo.
val splitCompressedInfo = """([^\s:]+)((?: \d+:(?:\d+|\{\d+(?:,\d+)+\}))+)|(?:[^\s].*)""".r
// Regular expression to capture the line number and column numbers in the compressed file info pattern.
val splitLineDescriptors = """(\d+):((?:\d+|\{\d+(?:,\d+)+\}))""".r
// Regular expression to match against individual column numbers in each line:col or line:{col1,col2}
// descriptor.
val splitColDescriptors = """\d+""".r
val matches = splitCompressedInfo.findAllIn(escaped)
// Grab each File.format line:col token from the input string
splitCompressedInfo.findAllIn(escaped).matchData.foreach { info =>
Option(info.group(1)) match {
// If there were no subgroups, the regex matched against a non-conforming source locator
// pattern, so do not process it
case None => out = out :+ ir.FileInfo.fromEscaped(info.toString)
case Some(file) =>
val lineDescriptors = info.group(2)
// Grab each line:col values from the separated (compressed) FileInfo.
splitLineDescriptors.findAllIn(lineDescriptors).matchData.foreach { lineDescriptor =>
val line = lineDescriptor.group(1)
val cols = lineDescriptor.group(2)
splitColDescriptors.findAllIn(cols).matchData.foreach {
// Use all the necessary info to generate normal uncompressed FileInfos
col => out = out :+ ir.FileInfo.fromEscaped(s"$file $line:$col")
}
}
}
}
out.size match {
case 0 => NoInfo
case 1 => out.head
case _ => new MultiInfo(out)
}
}
def genInfo(filename: String): String =
stripPath(filename) + " " + parentCtx.getStart.getLine + ":" +
parentCtx.getStart.getCharPositionInLine
lazy val useInfo: String = ctx match {
case Some(info) => info.getText.drop(2).init // remove surrounding @[ ... ]
case None => ""
}
infoMode match {
case UseInfo =>
if (useInfo.length == 0) NoInfo
else parseCompressedInfo(useInfo)
case AppendInfo(filename) if (useInfo.length == 0) =>
ir.FileInfo.fromEscaped(genInfo(filename))
case AppendInfo(filename) =>
val useFileInfo = parseCompressedInfo(useInfo)
val newFileInfo = ir.FileInfo.fromEscaped(genInfo(filename))
ir.MultiInfo(useFileInfo, newFileInfo)
case GenInfo(filename) =>
ir.FileInfo.fromEscaped(genInfo(filename))
case IgnoreInfo => NoInfo
}
}
private def visitCircuit(ctx: CircuitContext): Circuit =
Circuit(visitInfo(Option(ctx.info), ctx), ctx.module.asScala.map(visitModule).toSeq, ctx.id.getText)
private[firrtl] def visitModule(ctx: ModuleContext): DefModule = {
val info = visitInfo(Option(ctx.info), ctx)
ctx.getChild(0).getText match {
case "module" =>
Module(
info,
ctx.id.getText,
ctx.port.asScala.map(visitPort).toSeq,
if (ctx.moduleBlock() != null)
visitBlock(ctx.moduleBlock())
else EmptyStmt
)
case "extmodule" =>
val defname = if (ctx.defname != null) ctx.defname.id.getText else ctx.id.getText
val ports = ctx.port.asScala.map(visitPort)
val params = ctx.parameter.asScala.map(visitParameter)
ExtModule(info, ctx.id.getText, ports.toSeq, defname, params.toSeq)
}
}
private def visitPort(ctx: PortContext): Port = {
Port(visitInfo(Option(ctx.info), ctx), ctx.id.getText, visitDir(ctx.dir), visitType(ctx.`type`))
}
private def visitParameter(ctx: ParameterContext): Param = {
val name = ctx.id.getText
(ctx.intLit, ctx.StringLit, ctx.DoubleLit, ctx.RawString) match {
case (int, null, null, null) => IntParam(name, string2BigInt(int.getText))
case (null, str, null, null) => StringParam(name, visitStringLit(str))
case (null, null, dbl, null) => DoubleParam(name, dbl.getText.toDouble)
case (null, null, null, raw) => RawStringParam(name, raw.getText.tail.init.replace("\\'", "'")) // Remove "\'"s
case _ => throwInternalError(s"visiting impossible parameter ${ctx.getText}")
}
}
private def visitDir(ctx: DirContext): Direction =
ctx.getText match {
case "input" => Input
case "output" => Output
}
private def visitMdir(ctx: MdirContext): MPortDir =
ctx.getText match {
case "infer" => MInfer
case "read" => MRead
case "write" => MWrite
case "rdwr" => MReadWrite
}
// Match on a type instead of on strings?
private def visitType(ctx: TypeContext): Type = {
def getWidth(n: IntLitContext): Width = IntWidth(string2BigInt(n.getText))
ctx.getChild(0) match {
case term: TerminalNode =>
term.getText match {
case "UInt" =>
if (ctx.getChildCount > 1) UIntType(getWidth(ctx.intLit(0)))
else UIntType(UnknownWidth)
case "SInt" =>
if (ctx.getChildCount > 1) SIntType(getWidth(ctx.intLit(0)))
else SIntType(UnknownWidth)
case "Fixed" =>
ctx.intLit.size match {
case 0 => FixedType(UnknownWidth, UnknownWidth)
case 1 =>
ctx.getChild(2).getText match {
case "<" => FixedType(UnknownWidth, getWidth(ctx.intLit(0)))
case _ => FixedType(getWidth(ctx.intLit(0)), UnknownWidth)
}
case 2 => FixedType(getWidth(ctx.intLit(0)), getWidth(ctx.intLit(1)))
}
case "Interval" =>
ctx.boundValue.size match {
case 0 =>
val point = ctx.intLit.size match {
case 0 => UnknownWidth
case 1 => IntWidth(string2BigInt(ctx.intLit(0).getText))
}
IntervalType(UnknownBound, UnknownBound, point)
case 2 =>
val lower = ((ctx.lowerBound.getText, ctx.boundValue(0).getText): @unchecked) match {
case (_, "?") => UnknownBound
case ("(", v) => Open(string2BigDecimal(v))
case ("[", v) => Closed(string2BigDecimal(v))
}
val upper = ((ctx.upperBound.getText, ctx.boundValue(1).getText): @unchecked) match {
case (_, "?") => UnknownBound
case (")", v) => Open(string2BigDecimal(v))
case ("]", v) => Closed(string2BigDecimal(v))
}
val point = ctx.intLit.size match {
case 0 => UnknownWidth
case 1 => IntWidth(string2BigInt(ctx.intLit(0).getText))
}
IntervalType(lower, upper, point)
}
case "Clock" => ClockType
case "AsyncReset" => AsyncResetType
case "Reset" => ResetType
case "Analog" =>
if (ctx.getChildCount > 1) AnalogType(getWidth(ctx.intLit(0)))
else AnalogType(UnknownWidth)
case "{" => BundleType(ctx.field.asScala.map(visitField).toSeq)
}
case typeContext: TypeContext => new VectorType(visitType(ctx.`type`), string2Int(ctx.intLit(0).getText))
}
}
// Special case "type" of CHIRRTL mems because their size can be BigInt
private def visitCMemType(ctx: TypeContext): (Type, BigInt) = {
def loc: String = s"${ctx.getStart.getLine}:${ctx.getStart.getCharPositionInLine}"
ctx.getChild(0) match {
case typeContext: TypeContext =>
val tpe = visitType(ctx.`type`)
val size = string2BigInt(ctx.intLit(0).getText)
(tpe, size)
case _ =>
throw new ParserException(s"[$loc] Must provide cmem or smem with vector type, got ${ctx.getText}")
}
}
private def visitField(ctx: FieldContext): Field = {
val flip = if (ctx.getChild(0).getText == "flip") Flip else Default
Field(ctx.fieldId.getText, flip, visitType(ctx.`type`))
}
private def visitBlock(ctx: ModuleBlockContext): Statement =
Block(ctx.simple_stmt().asScala.flatMap(x => Option(x.stmt).map(visitStmt)).toSeq)
private def visitSuite(ctx: SuiteContext): Statement =
Block(ctx.simple_stmt().asScala.flatMap(x => Option(x.stmt).map(visitStmt)).toSeq)
private def visitRuw(ctx: Option[RuwContext]): ReadUnderWrite.Value = ctx match {
case None => ReadUnderWrite.Undefined
case Some(ctx) =>
ctx.getText match {
case "undefined" => ReadUnderWrite.Undefined
case "old" => ReadUnderWrite.Old
case "new" => ReadUnderWrite.New
}
}
// Memories are fairly complicated to translate thus have a dedicated method
private def visitMem(ctx: StmtContext): Statement = {
val readers = mutable.ArrayBuffer.empty[String]
val writers = mutable.ArrayBuffer.empty[String]
val readwriters = mutable.ArrayBuffer.empty[String]
case class ParamValue(
typ: Option[Type] = None,
lit: Option[BigInt] = None,
ruw: ReadUnderWrite.Value = ReadUnderWrite.Undefined,
unique: Boolean = true)
val fieldMap = mutable.HashMap[String, ParamValue]()
val memName = ctx.id(0).getText
def parseMemFields(memFields: Seq[MemFieldContext]): Unit =
memFields.foreach { field =>
val fieldName = field.children.asScala(0).getText
fieldName match {
case "reader" => readers ++= field.id().asScala.map(_.getText)
case "writer" => writers ++= field.id().asScala.map(_.getText)
case "readwriter" => readwriters ++= field.id().asScala.map(_.getText)
case _ =>
val paramDef = fieldName match {
case "data-type" => ParamValue(typ = Some(visitType(field.`type`())))
case "read-under-write" => ParamValue(ruw = visitRuw(Option(field.ruw)))
case _ => ParamValue(lit = Some(BigInt(field.intLit().getText)))
}
if (fieldMap.contains(fieldName))
throw new ParameterRedefinedException(s"Redefinition of $fieldName in FIRRTL line:${field.start.getLine}")
else
fieldMap(fieldName) = paramDef
}
}
val info = visitInfo(Option(ctx.info), ctx)
// Build map of different Memory fields to their values
try {
parseMemFields(ctx.memField().asScala.toSeq)
} catch {
// attach line number
case e: ParameterRedefinedException => throw new ParameterRedefinedException(s"[$info] ${e.message}")
}
// Check for required fields
Seq("data-type", "depth", "read-latency", "write-latency").foreach { field =>
fieldMap.getOrElse(
field,
throw new ParameterNotSpecifiedException(s"[$info] Required mem field $field not found")
)
}
def lit(param: String) = fieldMap(param).lit.get
val ruw = fieldMap.get("read-under-write").map(_.ruw).getOrElse(ir.ReadUnderWrite.Undefined)
DefMemory(
info,
name = memName,
dataType = fieldMap("data-type").typ.get,
depth = lit("depth"),
writeLatency = lit("write-latency").toInt,
readLatency = lit("read-latency").toInt,
readers = readers.toSeq,
writers = writers.toSeq,
readwriters = readwriters.toSeq,
readUnderWrite = ruw
)
}
// visitStringLit
private def visitStringLit(node: TerminalNode): StringLit = {
val raw = node.getText.tail.init // Remove surrounding double quotes
ir.StringLit.unescape(raw)
}
private def visitWhen(ctx: WhenContext): Conditionally = {
val info = visitInfo(Option(ctx.info(0)), ctx)
val alt: Statement =
if (ctx.when() != null)
visitWhen(ctx.when())
else if (ctx.suite().asScala.length > 1)
visitSuite(ctx.suite(1))
else
EmptyStmt
Conditionally(info, visitExp(ctx.exp()), visitSuite(ctx.suite(0)), alt)
}
// visitStmt
private def visitStmt(ctx: StmtContext): Statement = {
val ctx_exp = ctx.exp.asScala
val info = visitInfo(Option(ctx.info), ctx)
def stmtName = Option(ctx.stmtName).map(_.id.getText).getOrElse("")
ctx.getChild(0) match {
case when: WhenContext => visitWhen(when)
case term: TerminalNode =>
term.getText match {
case "wire" => DefWire(info, ctx.id(0).getText, visitType(ctx.`type`()))
case "reg" =>
val name = ctx.id(0).getText
val tpe = visitType(ctx.`type`())
val (reset, init, rinfo) = {
val rb = ctx.reset_block()
if (rb != null) {
val sr = rb.simple_reset.simple_reset0()
val innerInfo = if (info == NoInfo) visitInfo(Option(rb.info), ctx) else info
(visitExp(sr.exp(0)), visitExp(sr.exp(1)), innerInfo)
} else
(UIntLiteral(0, IntWidth(1)), Reference(name, tpe), info)
}
DefRegister(rinfo, name, tpe, visitExp(ctx_exp(0)), reset, init)
case "mem" => visitMem(ctx)
case "cmem" =>
val (tpe, size) = visitCMemType(ctx.`type`())
CDefMemory(info, ctx.id(0).getText, tpe, size, seq = false)
case "smem" =>
val (tpe, size) = visitCMemType(ctx.`type`())
CDefMemory(info, ctx.id(0).getText, tpe, size, seq = true, readUnderWrite = visitRuw(Option(ctx.ruw)))
case "inst" => DefInstance(info, ctx.id(0).getText, ctx.id(1).getText)
case "node" => DefNode(info, ctx.id(0).getText, visitExp(ctx_exp(0)))
case "stop(" =>
Stop(info, string2Int(ctx.intLit().getText), visitExp(ctx_exp(0)), visitExp(ctx_exp(1)), name = stmtName)
case "attach" => Attach(info, ctx_exp.map(visitExp).toSeq)
case "printf(" =>
Print(
info,
visitStringLit(ctx.StringLit),
ctx_exp.drop(2).map(visitExp).toSeq,
visitExp(ctx_exp(0)),
visitExp(ctx_exp(1)),
name = stmtName
)
// formal
case "assert" =>
Verification(
Formal.Assert,
info,
visitExp(ctx_exp(0)),
visitExp(ctx_exp(1)),
visitExp(ctx_exp(2)),
visitStringLit(ctx.StringLit),
name = stmtName
)
case "assume" =>
Verification(
Formal.Assume,
info,
visitExp(ctx_exp(0)),
visitExp(ctx_exp(1)),
visitExp(ctx_exp(2)),
visitStringLit(ctx.StringLit),
name = stmtName
)
case "cover" =>
Verification(
Formal.Cover,
info,
visitExp(ctx_exp(0)),
visitExp(ctx_exp(1)),
visitExp(ctx_exp(2)),
visitStringLit(ctx.StringLit),
name = stmtName
)
// end formal
case "skip" => EmptyStmt
}
// If we don't match on the first child, try the next one
case _ =>
ctx.getChild(1).getText match {
case "<=" => Connect(info, visitRef(ctx.ref), visitExp(ctx_exp(0)))
case "<-" => PartialConnect(info, visitRef(ctx.ref), visitExp(ctx_exp(0)))
case "is" => IsInvalid(info, visitRef(ctx.ref))
case "mport" =>
CDefMPort(
info,
ctx.id(0).getText,
UnknownType,
ctx.id(1).getText,
Seq(visitExp(ctx_exp(0)), visitExp(ctx_exp(1))),
visitMdir(ctx.mdir)
)
}
}
}
@tailrec private def visitSubRef(ctx: SubrefContext, inner: Expression): Expression = {
val ref = ctx.getChild(0).getText match {
case "." =>
if (ctx.fieldId != null) {
SubField(inner, ctx.fieldId.getText)
} else {
ctx.DoubleLit.getText.split('.') match {
case Array(a, b) if legalId(a) && legalId(b) => SubField(SubField(inner, a), b)
case _ => throw new ParserException(s"Illegal Expression at ${ctx.getText}")
}
}
case "[" =>
if (ctx.intLit != null) {
val lit = string2Int(ctx.intLit.getText)
SubIndex(inner, lit, UnknownType)
} else {
val idx = visitExp(ctx.exp)
SubAccess(inner, idx, UnknownType)
}
}
if (ctx.subref != null) {
visitSubRef(ctx.subref, ref)
} else {
ref
}
}
private def visitRef(ctx: RefContext): Expression = {
val ref = Reference(ctx.getChild(0).getText)
if (ctx.subref != null) {
visitSubRef(ctx.subref, ref)
} else {
ref
}
}
private def visitExp(ctx: ExpContext): Expression = {
val ctx_exp = ctx.exp.asScala
ctx.getChild(0) match {
case ref: RefContext => visitRef(ref)
case _: PrimopContext =>
DoPrim(
visitPrimop(ctx.primop),
ctx_exp.map(visitExp).toSeq,
ctx.intLit.asScala.map(x => string2BigInt(x.getText)).toSeq,
UnknownType
)
case _ =>
ctx.getChild(0).getText match {
case "UInt" =>
if (ctx.getChildCount > 4) {
val width = IntWidth(string2BigInt(ctx.intLit(0).getText))
val value = string2BigInt(ctx.intLit(1).getText)
UIntLiteral(value, width)
} else {
val value = string2BigInt(ctx.intLit(0).getText)
UIntLiteral(value)
}
case "SInt" =>
if (ctx.getChildCount > 4) {
val width = string2BigInt(ctx.intLit(0).getText)
val value = string2BigInt(ctx.intLit(1).getText)
SIntLiteral(value, IntWidth(width))
} else {
val str = ctx.intLit(0).getText
val value = string2BigInt(str)
SIntLiteral(value)
}
case "validif(" => ValidIf(visitExp(ctx_exp(0)), visitExp(ctx_exp(1)), UnknownType)
case "mux(" => Mux(visitExp(ctx_exp(0)), visitExp(ctx_exp(1)), visitExp(ctx_exp(2)), UnknownType)
}
}
}
// stripSuffix("(") is included because in ANTLR concrete syntax we have to include open parentheses,
// see grammar file for more details
private def visitPrimop(ctx: PrimopContext): PrimOp = fromString(ctx.getText.stripSuffix("("))
// visit Id and Keyword?
}
|