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
|
// See LICENSE for license details.
package firrtl
import scala.collection.Seq
import Utils._
import firrtl.ir._
import WrappedExpression._
import WrappedWidth._
import firrtl.passes.CheckTypes.legalResetType
trait Kind
case object WireKind extends Kind
case object PoisonKind extends Kind
case object RegKind extends Kind
case object InstanceKind extends Kind
case object PortKind extends Kind
case object NodeKind extends Kind
case object MemKind extends Kind
case object ExpKind extends Kind
case object UnknownKind extends Kind
trait Flow
case object SourceFlow extends Flow
case object SinkFlow extends Flow
case object DuplexFlow extends Flow
case object UnknownFlow extends Flow
case class WRef(name: String, tpe: Type, kind: Kind, flow: Flow) extends Expression {
def serialize: String = name
def mapExpr(f: Expression => Expression): Expression = this
def mapType(f: Type => Type): Expression = this.copy(tpe = f(tpe))
def mapWidth(f: Width => Width): Expression = this
def foreachExpr(f: Expression => Unit): Unit = Unit
def foreachType(f: Type => Unit): Unit = f(tpe)
def foreachWidth(f: Width => Unit): Unit = Unit
}
object WRef {
/** Creates a WRef from a Wire */
def apply(wire: DefWire): WRef = new WRef(wire.name, wire.tpe, WireKind, UnknownFlow)
/** Creates a WRef from a Register */
def apply(reg: DefRegister): WRef = new WRef(reg.name, reg.tpe, RegKind, UnknownFlow)
/** Creates a WRef from a Node */
def apply(node: DefNode): WRef = new WRef(node.name, node.value.tpe, NodeKind, SourceFlow)
/** Creates a WRef from a Port */
def apply(port: Port): WRef = new WRef(port.name, port.tpe, PortKind, UnknownFlow)
/** Creates a WRef from a WDefInstance */
def apply(wi: WDefInstance): WRef = new WRef(wi.name, wi.tpe, InstanceKind, UnknownFlow)
/** Creates a WRef from a DefMemory */
def apply(mem: DefMemory): WRef = new WRef(mem.name, passes.MemPortUtils.memType(mem), MemKind, UnknownFlow)
/** Creates a WRef from an arbitrary string name */
def apply(n: String, t: Type = UnknownType, k: Kind = ExpKind): WRef = new WRef(n, t, k, UnknownFlow)
}
case class WSubField(expr: Expression, name: String, tpe: Type, flow: Flow) extends Expression {
def serialize: String = s"${expr.serialize}.$name"
def mapExpr(f: Expression => Expression): Expression = this.copy(expr = f(expr))
def mapType(f: Type => Type): Expression = this.copy(tpe = f(tpe))
def mapWidth(f: Width => Width): Expression = this
def foreachExpr(f: Expression => Unit): Unit = f(expr)
def foreachType(f: Type => Unit): Unit = f(tpe)
def foreachWidth(f: Width => Unit): Unit = Unit
}
object WSubField {
def apply(expr: Expression, n: String): WSubField = new WSubField(expr, n, field_type(expr.tpe, n), UnknownFlow)
def apply(expr: Expression, name: String, tpe: Type): WSubField = new WSubField(expr, name, tpe, UnknownFlow)
}
case class WSubIndex(expr: Expression, value: Int, tpe: Type, flow: Flow) extends Expression {
def serialize: String = s"${expr.serialize}[$value]"
def mapExpr(f: Expression => Expression): Expression = this.copy(expr = f(expr))
def mapType(f: Type => Type): Expression = this.copy(tpe = f(tpe))
def mapWidth(f: Width => Width): Expression = this
def foreachExpr(f: Expression => Unit): Unit = f(expr)
def foreachType(f: Type => Unit): Unit = f(tpe)
def foreachWidth(f: Width => Unit): Unit = Unit
}
case class WSubAccess(expr: Expression, index: Expression, tpe: Type, flow: Flow) extends Expression {
def serialize: String = s"${expr.serialize}[${index.serialize}]"
def mapExpr(f: Expression => Expression): Expression = this.copy(expr = f(expr), index = f(index))
def mapType(f: Type => Type): Expression = this.copy(tpe = f(tpe))
def mapWidth(f: Width => Width): Expression = this
def foreachExpr(f: Expression => Unit): Unit = { f(expr); f(index) }
def foreachType(f: Type => Unit): Unit = f(tpe)
def foreachWidth(f: Width => Unit): Unit = Unit
}
case object WVoid extends Expression {
def tpe = UnknownType
def serialize: String = "VOID"
def mapExpr(f: Expression => Expression): Expression = this
def mapType(f: Type => Type): Expression = this
def mapWidth(f: Width => Width): Expression = this
def foreachExpr(f: Expression => Unit): Unit = Unit
def foreachType(f: Type => Unit): Unit = Unit
def foreachWidth(f: Width => Unit): Unit = Unit
}
case object WInvalid extends Expression {
def tpe = UnknownType
def serialize: String = "INVALID"
def mapExpr(f: Expression => Expression): Expression = this
def mapType(f: Type => Type): Expression = this
def mapWidth(f: Width => Width): Expression = this
def foreachExpr(f: Expression => Unit): Unit = Unit
def foreachType(f: Type => Unit): Unit = Unit
def foreachWidth(f: Width => Unit): Unit = Unit
}
// Useful for splitting then remerging references
case object EmptyExpression extends Expression {
def tpe = UnknownType
def serialize: String = "EMPTY"
def mapExpr(f: Expression => Expression): Expression = this
def mapType(f: Type => Type): Expression = this
def mapWidth(f: Width => Width): Expression = this
def foreachExpr(f: Expression => Unit): Unit = Unit
def foreachType(f: Type => Unit): Unit = Unit
def foreachWidth(f: Width => Unit): Unit = Unit
}
case class WDefInstance(info: Info, name: String, module: String, tpe: Type) extends Statement with IsDeclaration {
def serialize: String = s"inst $name of $module" + info.serialize
def mapExpr(f: Expression => Expression): Statement = this
def mapStmt(f: Statement => Statement): Statement = this
def mapType(f: Type => Type): Statement = this.copy(tpe = f(tpe))
def mapString(f: String => String): Statement = this.copy(name = f(name))
def mapInfo(f: Info => Info): Statement = this.copy(f(info))
def foreachStmt(f: Statement => Unit): Unit = Unit
def foreachExpr(f: Expression => Unit): Unit = Unit
def foreachType(f: Type => Unit): Unit = f(tpe)
def foreachString(f: String => Unit): Unit = f(name)
def foreachInfo(f: Info => Unit): Unit = f(info)
}
object WDefInstance {
def apply(name: String, module: String): WDefInstance = new WDefInstance(NoInfo, name, module, UnknownType)
}
case class WDefInstanceConnector(
info: Info,
name: String,
module: String,
tpe: Type,
portCons: Seq[(Expression, Expression)]) extends Statement with IsDeclaration {
def serialize: String = s"inst $name of $module with ${tpe.serialize} connected to " +
portCons.map(_._2.serialize).mkString("(", ", ", ")") + info.serialize
def mapExpr(f: Expression => Expression): Statement =
this.copy(portCons = portCons map { case (e1, e2) => (f(e1), f(e2)) })
def mapStmt(f: Statement => Statement): Statement = this
def mapType(f: Type => Type): Statement = this.copy(tpe = f(tpe))
def mapString(f: String => String): Statement = this.copy(name = f(name))
def mapInfo(f: Info => Info): Statement = this.copy(f(info))
def foreachStmt(f: Statement => Unit): Unit = Unit
def foreachExpr(f: Expression => Unit): Unit = portCons foreach { case (e1, e2) => (f(e1), f(e2)) }
def foreachType(f: Type => Unit): Unit = f(tpe)
def foreachString(f: String => Unit): Unit = f(name)
def foreachInfo(f: Info => Unit): Unit = f(info)
}
// Resultant width is the same as the maximum input width
case object Addw extends PrimOp {
override def toString = "addw"
import constraint._
import PrimOps._
import Implicits.{constraint2width, width2constraint}
override def propagateType(e: DoPrim): Type = {
(e.args(0).tpe, e.args(1).tpe) match {
case (_: UIntType, _: UIntType) => UIntType(IsMax(w1(e), w2(e)))
case (_: SIntType, _: SIntType) => SIntType(IsMax(w1(e), w2(e)))
case _ => UnknownType
}
}
}
// Resultant width is the same as the maximum input width
case object Subw extends PrimOp {
override def toString = "subw"
import constraint._
import PrimOps._
import Implicits.{constraint2width, width2constraint}
override def propagateType(e: DoPrim): Type = {
(e.args(0).tpe, e.args(1).tpe) match {
case (_: UIntType, _: UIntType) => UIntType(IsMax(w1(e), w2(e)))
case (_: SIntType, _: SIntType) => SIntType(IsMax(w1(e), w2(e)))
case _ => UnknownType
}
}
}
// Resultant width is the same as input argument width
case object Dshlw extends PrimOp {
override def toString = "dshlw"
import PrimOps._
override def propagateType(e: DoPrim): Type = {
e.args(0).tpe match {
case _: UIntType => UIntType(w1(e))
case _: SIntType => SIntType(w1(e))
case _ => UnknownType
}
}
}
object WrappedExpression {
def apply(e: Expression) = new WrappedExpression(e)
def we(e: Expression) = new WrappedExpression(e)
def weq(e1: Expression, e2: Expression) = we(e1) == we(e2)
}
class WrappedExpression(val e1: Expression) {
override def equals(we: Any) = we match {
case (we: WrappedExpression) => (e1,we.e1) match {
case (e1x: UIntLiteral, e2x: UIntLiteral) => e1x.value == e2x.value && eqw(e1x.width, e2x.width)
case (e1x: SIntLiteral, e2x: SIntLiteral) => e1x.value == e2x.value && eqw(e1x.width, e2x.width)
case (e1x: WRef, e2x: WRef) => e1x.name equals e2x.name
case (e1x: WSubField, e2x: WSubField) => (e1x.name equals e2x.name) && weq(e1x.expr,e2x.expr)
case (e1x: WSubIndex, e2x: WSubIndex) => (e1x.value == e2x.value) && weq(e1x.expr,e2x.expr)
case (e1x: WSubAccess, e2x: WSubAccess) => weq(e1x.index,e2x.index) && weq(e1x.expr,e2x.expr)
case (WVoid, WVoid) => true
case (WInvalid, WInvalid) => true
case (e1x: DoPrim, e2x: DoPrim) => e1x.op == e2x.op &&
((e1x.consts zip e2x.consts) forall {case (x, y) => x == y}) &&
((e1x.args zip e2x.args) forall {case (x, y) => weq(x, y)})
case (e1x: Mux, e2x: Mux) => weq(e1x.cond,e2x.cond) && weq(e1x.tval,e2x.tval) && weq(e1x.fval,e2x.fval)
case (e1x: ValidIf, e2x: ValidIf) => weq(e1x.cond,e2x.cond) && weq(e1x.value,e2x.value)
case (e1x, e2x) => false
}
case _ => false
}
override def hashCode = e1.serialize.hashCode
override def toString = e1.serialize
}
private[firrtl] sealed trait HasMapWidth {
def mapWidth(f: Width => Width): Width
}
object WrappedType {
def apply(t: Type) = new WrappedType(t)
def wt(t: Type) = apply(t)
// Check if it is legal for the source type to drive the sink type
// Which is which matters because ResetType can be driven by itself, Bool, or AsyncResetType, but
// it cannot drive Bool nor AsyncResetType
private def compare(sink: Type, source: Type): Boolean =
(sink, source) match {
case (_: UIntType, _: UIntType) => true
case (_: SIntType, _: SIntType) => true
case (ClockType, ClockType) => true
case (AsyncResetType, AsyncResetType) => true
case (ResetType, tpe) => legalResetType(tpe)
case (tpe, ResetType) => legalResetType(tpe)
case (_: FixedType, _: FixedType) => true
case (_: IntervalType, _: IntervalType) => true
// Analog totally skips out of the Firrtl type system.
// The only way Analog can play with another Analog component is through Attach.
// Ohterwise, we'd need to special case it during ExpandWhens, Lowering,
// ExpandConnects, etc.
case (_: AnalogType, _: AnalogType) => false
case (sink: VectorType, source: VectorType) =>
sink.size == source.size && compare(sink.tpe, source.tpe)
case (sink: BundleType, source: BundleType) =>
(sink.fields.size == source.fields.size) &&
sink.fields.zip(source.fields).forall { case (f1, f2) =>
(f1.flip == f2.flip) && (f1.name == f2.name) && (f1.flip match {
case Default => compare(f1.tpe, f2.tpe)
// We allow UInt<1> and AsyncReset to drive Reset but not the other way around
case Flip => compare(f2.tpe, f1.tpe)
})
}
case _ => false
}
}
class WrappedType(val t: Type) {
def wt(tx: Type) = new WrappedType(tx)
// TODO Better name?
/** Strict comparison except Reset accepts AsyncReset, Reset, and `UInt<1>`
*/
def superTypeOf(that: WrappedType): Boolean = WrappedType.compare(this.t, that.t)
override def equals(o: Any): Boolean = o match {
case (t2: WrappedType) => WrappedType.compare(this.t, t2.t)
case _ => false
}
}
object WrappedWidth {
def eqw(w1: Width, w2: Width): Boolean = new WrappedWidth(w1) == new WrappedWidth(w2)
}
class WrappedWidth (val w: Width) {
def ww(w: Width): WrappedWidth = new WrappedWidth(w)
override def toString = w match {
case (w: VarWidth) => w.name
case (w: IntWidth) => w.width.toString
case UnknownWidth => "?"
}
override def equals(o: Any): Boolean = o match {
case (w2: WrappedWidth) => (w, w2.w) match {
case (w1: VarWidth, w2: VarWidth) => w1.name.equals(w2.name)
case (w1: IntWidth, w2: IntWidth) => w1.width == w2.width
case (UnknownWidth, UnknownWidth) => true
case _ => false
}
case _ => false
}
}
abstract class MPortDir extends FirrtlNode
case object MInfer extends MPortDir {
def serialize: String = "infer"
}
case object MRead extends MPortDir {
def serialize: String = "read"
}
case object MWrite extends MPortDir {
def serialize: String = "write"
}
case object MReadWrite extends MPortDir {
def serialize: String = "rdwr"
}
case class CDefMemory(
info: Info,
name: String,
tpe: Type,
size: BigInt,
seq: Boolean,
readUnderWrite: ReadUnderWrite.Value = ReadUnderWrite.Undefined) extends Statement with HasInfo {
def serialize: String = (if (seq) "smem" else "cmem") +
s" $name : ${tpe.serialize} [$size]" + info.serialize
def mapExpr(f: Expression => Expression): Statement = this
def mapStmt(f: Statement => Statement): Statement = this
def mapType(f: Type => Type): Statement = this.copy(tpe = f(tpe))
def mapString(f: String => String): Statement = this.copy(name = f(name))
def mapInfo(f: Info => Info): Statement = this.copy(f(info))
def foreachStmt(f: Statement => Unit): Unit = Unit
def foreachExpr(f: Expression => Unit): Unit = Unit
def foreachType(f: Type => Unit): Unit = f(tpe)
def foreachString(f: String => Unit): Unit = f(name)
def foreachInfo(f: Info => Unit): Unit = f(info)
}
case class CDefMPort(info: Info,
name: String,
tpe: Type,
mem: String,
exps: Seq[Expression],
direction: MPortDir) extends Statement with HasInfo {
def serialize: String = {
val dir = direction.serialize
s"$dir mport $name = $mem[${exps.head.serialize}], ${exps(1).serialize}" + info.serialize
}
def mapExpr(f: Expression => Expression): Statement = this.copy(exps = exps map f)
def mapStmt(f: Statement => Statement): Statement = this
def mapType(f: Type => Type): Statement = this.copy(tpe = f(tpe))
def mapString(f: String => String): Statement = this.copy(name = f(name))
def mapInfo(f: Info => Info): Statement = this.copy(f(info))
def foreachStmt(f: Statement => Unit): Unit = Unit
def foreachExpr(f: Expression => Unit): Unit = exps.foreach(f)
def foreachType(f: Type => Unit): Unit = f(tpe)
def foreachString(f: String => Unit): Unit = f(name)
def foreachInfo(f: Info => Unit): Unit = f(info)
}
|