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
|
// SPDX-License-Identifier: Apache-2.0
package chiselTests
import chisel3._
import chisel3.experimental.{annotate, ChiselAnnotation, RunFirrtlTransform}
import chisel3.internal.InstanceId
import chisel3.stage.{ChiselGeneratorAnnotation, ChiselStage}
import chisel3.testers.BasicTester
import firrtl.{CircuitForm, CircuitState, DependencyAPIMigration, LowForm, Transform}
import firrtl.annotations.{CircuitName, CircuitTarget, SingleTargetAnnotation, Target}
import firrtl.stage.Forms
import org.scalatest._
import org.scalatest.freespec.AnyFreeSpec
import org.scalatest.matchers.should.Matchers
/** These annotations and the IdentityTransform class serve as an example of how to write a
* Chisel/Firrtl library
*/
case class IdentityAnnotation(target: Target, value: String) extends SingleTargetAnnotation[Target] {
def duplicate(n: Target): IdentityAnnotation = this.copy(target = n)
}
/** ChiselAnnotation that corresponds to the above FIRRTL annotation */
case class IdentityChiselAnnotation(target: InstanceId, value: String)
extends ChiselAnnotation
with RunFirrtlTransform {
def toFirrtl: IdentityAnnotation = IdentityAnnotation(target.toNamed, value)
def transformClass: Class[IdentityTransform] = classOf[IdentityTransform]
}
object identify {
def apply(component: InstanceId, value: String): Unit = {
val anno = IdentityChiselAnnotation(component, value)
annotate(anno)
}
}
class IdentityTransform extends Transform with DependencyAPIMigration {
override def prerequisites = Forms.LowForm
override def optionalPrerequisites = Seq.empty
override def optionalPrerequisiteOf = Forms.LowEmitters
override def invalidates(a: Transform) = false
def execute(state: CircuitState): CircuitState = {
val annosx = state.annotations.map {
case IdentityAnnotation(t, value) => IdentityAnnotation(t, value + ":seen")
case other => other
}
state.copy(annotations = annosx)
}
}
/** A diamond circuit Top instantiates A and B and both A and B instantiate C
* Illustrations of annotations of various components and modules in both
* relative and absolute cases
*
* This is currently not much of a test, read the printout to see what annotations look like
*/
/**
* This class has parameterizable widths, it will generate different hardware
* @param widthC io width
*/
class ModC(widthC: Int) extends Module {
val io = IO(new Bundle {
val in = Input(UInt(widthC.W))
val out = Output(UInt(widthC.W))
})
io.out := io.in
identify(this, s"ModC($widthC)")
identify(io.out, s"ModC(ignore param)")
}
/**
* instantiates a C of a particular size, ModA does not generate different hardware
* based on it's parameter
* @param annoParam parameter is only used in annotation not in circuit
*/
class ModA(annoParam: Int) extends Module {
val io = IO(new Bundle {
val in = Input(UInt())
val out = Output(UInt())
})
val modC = Module(new ModC(16))
modC.io.in := io.in
io.out := modC.io.out
identify(this, s"ModA(ignore param)")
identify(io.out, s"ModA.io.out($annoParam)")
identify(io.out, s"ModA.io.out(ignore_param)")
}
class ModB(widthB: Int) extends Module {
val io = IO(new Bundle {
val in = Input(UInt(widthB.W))
val out = Output(UInt(widthB.W))
})
val modC = Module(new ModC(widthB))
modC.io.in := io.in
io.out := modC.io.out
identify(io.in, s"modB.io.in annotated from inside modB")
}
class TopOfDiamond extends Module {
val io = IO(new Bundle {
val in = Input(UInt(32.W))
val out = Output(UInt(32.W))
})
val x = Reg(UInt(32.W))
val y = Reg(UInt(32.W))
val modA = Module(new ModA(64))
val modB = Module(new ModB(32))
x := io.in
modA.io.in := x
modB.io.in := x
y := modA.io.out + modB.io.out
io.out := y
identify(this, s"TopOfDiamond\nWith\nSome new lines")
identify(modB.io.in, s"modB.io.in annotated from outside modB")
}
class DiamondTester extends BasicTester {
val dut = Module(new TopOfDiamond)
stop()
}
class AnnotatingDiamondSpec extends AnyFreeSpec with Matchers {
"""|Diamond is an example of a module that has two sub-modules A and B who both instantiate their
|own instances of module C. This highlights the difference between specific and general
|annotation scopes""".stripMargin - {
"""|annotations are not resolved at after circuit elaboration,
|that happens only after emit has been called on circuit""".stripMargin in {
val annos = (new ChiselStage)
.execute(
Array("--target-dir", "test_run_dir", "--no-run-firrtl"),
Seq(ChiselGeneratorAnnotation(() => new TopOfDiamond))
)
.filter {
case _: IdentityAnnotation => true
case _ => false
}
.toSeq
info("Found ten (10) 'IdentityAnnotation's")
(annos should have).length(10)
info("Found IdentityAnnotation targeting '~*|ModC' with value 'ModC(16)'")
annos should contain(IdentityAnnotation(CircuitTarget("TopOfDiamond").module("ModC"), "ModC(16)"))
info("Found IdentityAnnotation targeting '~*|ModC_1:seen' with value 'ModC(32)'")
annos should contain(IdentityAnnotation(CircuitTarget("TopOfDiamond").module("ModC_1"), "ModC(32)"))
}
}
}
|