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
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
|
// See LICENSE for license details.
package firrtlTests
package transforms
import firrtl.RenameMap
import firrtl.annotations._
import firrtl.transforms.{DedupModules, NoCircuitDedupAnnotation}
import firrtl.testutils._
/**
* Tests inline instances transformation
*/
class DedupModuleTests extends HighTransformSpec {
case class MultiTargetDummyAnnotation(targets: Seq[Target], tag: Int) extends Annotation {
override def update(renames: RenameMap): Seq[Annotation] = {
val newTargets = targets.flatMap(renames(_))
Seq(MultiTargetDummyAnnotation(newTargets, tag))
}
}
case class SingleTargetDummyAnnotation(target: ComponentName) extends SingleTargetAnnotation[ComponentName] {
override def duplicate(n: ComponentName): Annotation = SingleTargetDummyAnnotation(n)
}
def transform = new DedupModules
"The module A" should "be deduped" in {
val input =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A :
| output x: UInt<1>
| x <= UInt(1)
| module A_ :
| output x: UInt<1>
| x <= UInt(1)
""".stripMargin
val check =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A
| module A :
| output x: UInt<1>
| x <= UInt(1)
""".stripMargin
execute(input, check, Seq.empty)
}
"The module A and B" should "be deduped" in {
val input =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A :
| output x: UInt<1>
| inst b of B
| x <= b.x
| module A_ :
| output x: UInt<1>
| inst b of B_
| x <= b.x
| module B :
| output x: UInt<1>
| x <= UInt(1)
| module B_ :
| output x: UInt<1>
| x <= UInt(1)
""".stripMargin
val check =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A
| module A :
| output x: UInt<1>
| inst b of B
| x <= b.x
| module B :
| output x: UInt<1>
| x <= UInt(1)
""".stripMargin
execute(input, check, Seq.empty)
}
"The module A and B with comments" should "be deduped" in {
val input =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A : @[yy 2:2]
| output x: UInt<1> @[yy 2:2]
| inst b of B @[yy 2:2]
| x <= b.x @[yy 2:2]
| module A_ : @[xx 1:1]
| output x: UInt<1> @[xx 1:1]
| inst b of B_ @[xx 1:1]
| x <= b.x @[xx 1:1]
| module B :
| output x: UInt<1>
| x <= UInt(1)
| module B_ :
| output x: UInt<1>
| x <= UInt(1)
""".stripMargin
val check =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A
| module A : @[yy 2:2]
| output x: UInt<1> @[yy 2:2]
| inst b of B @[yy 2:2]
| x <= b.x @[yy 2:2]
| module B :
| output x: UInt<1>
| x <= UInt(1)
""".stripMargin
execute(input, check, Seq.empty)
}
"A_ but not A" should "be deduped if not annotated" in {
val input =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A : @[yy 2:2]
| output x: UInt<1> @[yy 2:2]
| x <= UInt(1)
| module A_ : @[xx 1:1]
| output x: UInt<1> @[xx 1:1]
| x <= UInt(1)
""".stripMargin
val check =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A : @[yy 2:2]
| output x: UInt<1> @[yy 2:2]
| x <= UInt(1)
| module A_ : @[xx 1:1]
| output x: UInt<1> @[xx 1:1]
| x <= UInt(1)
""".stripMargin
execute(input, check, Seq(dontDedup("A")))
}
"The module A and A_" should "be deduped even with different port names and info, and annotations should remapped" in {
val input =
"""circuit Top :
| module Top :
| output out: UInt<1>
| inst a1 of A
| inst a2 of A_
| out <= and(a1.x, a2.y)
| module A : @[yy 2:2]
| output x: UInt<1> @[yy 2:2]
| x <= UInt(1)
| module A_ : @[xx 1:1]
| output y: UInt<1> @[xx 1:1]
| y <= UInt(1)
""".stripMargin
val check =
"""circuit Top :
| module Top :
| output out: UInt<1>
| inst a1 of A
| inst a2 of A
| out <= and(a1.x, a2.x)
| module A : @[yy 2:2]
| output x: UInt<1> @[yy 2:2]
| x <= UInt(1)
""".stripMargin
val mname = ModuleName("Top", CircuitName("Top"))
val finalState = execute(input, check, Seq(SingleTargetDummyAnnotation(ComponentName("a2.y", mname))))
finalState.annotations.collect({ case d: SingleTargetDummyAnnotation => d }).head should be(SingleTargetDummyAnnotation(ComponentName("a2.x", mname)))
}
"Extmodules" should "with the same defname and parameters should dedup" in {
val input =
"""circuit Top :
| module Top :
| output out: UInt<1>
| inst a1 of A
| inst a2 of A_
| out <= and(a1.x, a2.y)
| module A : @[yy 2:2]
| output x: UInt<1> @[yy 2:2]
| inst b of B
| x <= b.u
| module A_ : @[xx 1:1]
| output y: UInt<1> @[xx 1:1]
| inst c of C
| y <= c.v
| extmodule B : @[aa 3:3]
| output u : UInt<1> @[aa 4:4]
| defname = BB
| parameter N = 0
| extmodule C : @[bb 5:5]
| output v : UInt<1> @[bb 6:6]
| defname = BB
| parameter N = 0
""".stripMargin
val check =
"""circuit Top :
| module Top :
| output out: UInt<1>
| inst a1 of A
| inst a2 of A
| out <= and(a1.x, a2.x)
| module A : @[yy 2:2]
| output x: UInt<1> @[yy 2:2]
| inst b of B
| x <= b.u
| extmodule B : @[aa 3:3]
| output u : UInt<1> @[aa 4:4]
| defname = BB
| parameter N = 0
""".stripMargin
execute(input, check, Seq.empty)
}
"Extmodules" should "with the different defname or parameters should NOT dedup" in {
def mkfir(defnames: (String, String), params: (String, String)) =
s"""circuit Top :
| module Top :
| output out: UInt<1>
| inst a1 of A
| inst a2 of A_
| out <= and(a1.x, a2.y)
| module A : @[yy 2:2]
| output x: UInt<1> @[yy 2:2]
| inst b of B
| x <= b.u
| module A_ : @[xx 1:1]
| output y: UInt<1> @[xx 1:1]
| inst c of C
| y <= c.v
| extmodule B : @[aa 3:3]
| output u : UInt<1> @[aa 4:4]
| defname = ${defnames._1}
| parameter N = ${params._1}
| extmodule C : @[bb 5:5]
| output v : UInt<1> @[bb 6:6]
| defname = ${defnames._2}
| parameter N = ${params._2}
""".stripMargin
val diff_defname = mkfir(("BB", "CC"), ("0", "0"))
execute(diff_defname, diff_defname, Seq.empty)
val diff_params = mkfir(("BB", "BB"), ("0", "1"))
execute(diff_params, diff_params, Seq.empty)
}
"The module A and B" should "be deduped with the first module in order" in {
val input =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A :
| output x: UInt<1>
| inst b of B
| x <= b.x
| module A_ :
| output x: UInt<1>
| inst b of B_
| x <= b.x
| module B :
| output x: UInt<1>
| x <= UInt(1)
| module B_ :
| output x: UInt<1>
| x <= UInt(1)
""".stripMargin
val check =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A
| module A :
| output x: UInt<1>
| inst b of B
| x <= b.x
| module B :
| output x: UInt<1>
| x <= UInt(1)
""".stripMargin
execute(input, check, Seq.empty)
}
"The module A and A_" should "be deduped with fields that sort of match" in {
val input =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A :
| output x: UInt<1>
| wire b: {c: UInt<1>}
| x <= b.c
| module A_ :
| output x: UInt<1>
| wire b: {b: UInt<1>}
| x <= b.b
""".stripMargin
val check =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A
| module A :
| output x: UInt<1>
| wire b: {c: UInt<1>}
| x <= b.c
""".stripMargin
execute(input, check, Seq.empty)
}
"The module A and A_" should "not be deduped with different annotation targets" in {
val input =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A :
| output x: UInt<1>
| wire b: UInt<1>
| x <= b
| module A_ :
| output x: UInt<1>
| wire b: UInt<1>
| x <= b
""".stripMargin
val check =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A :
| output x: UInt<1>
| wire b: UInt<1>
| x <= b
| module A_ :
| output x: UInt<1>
| wire b: UInt<1>
| x <= b
""".stripMargin
execute(input, check, Seq(dontTouch("A.b")))
}
"The module A and A_" should "be deduped with same annotation targets" in {
val input =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A :
| output x: UInt<1>
| wire b: UInt<1>
| x <= b
| module A_ :
| output x: UInt<1>
| wire b: UInt<1>
| x <= b
""".stripMargin
val check =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A
| module A :
| output x: UInt<1>
| wire b: UInt<1>
| x <= b
""".stripMargin
execute(input, check, Seq(dontTouch("A.b"), dontTouch("A_.b")))
}
"The module A and A_" should "be deduped with same annotation targets when there are a lot" in {
val input =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A :
| output x: UInt<1>[100]
| wire b: UInt<1>[100]
| x <= b
| module A_ :
| output x: UInt<1>[100]
| wire b: UInt<1>[100]
| x <= b
""".stripMargin
val check =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A
| module A :
| output x: UInt<1>[100]
| wire b: UInt<1>[100]
| x <= b
""".stripMargin
val annos = (0 until 100).flatMap(i => Seq(dontTouch(s"A.b[$i]"), dontTouch(s"A_.b[$i]")))
execute(input, check, annos)
}
"The module A and A_" should "not be deduped with same annotations with same multi-targets, but which have different root modules" in {
val input =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A :
| output x: UInt<1>
| inst b of B
| x <= b.x
| module A_ :
| output x: UInt<1>
| inst b of B_
| x <= b.x
| module B :
| output x: UInt<1>
| x <= UInt(1)
| module B_ :
| output x: UInt<1>
| x <= UInt(1)
""".stripMargin
val check =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A :
| output x: UInt<1>
| inst b of B
| x <= b.x
| module A_ :
| output x: UInt<1>
| inst b of B_
| x <= b.x
| module B :
| output x: UInt<1>
| x <= UInt(1)
| module B_ :
| output x: UInt<1>
| x <= UInt(1)
""".stripMargin
val Top = CircuitTarget("Top")
val A = Top.module("A")
val B = Top.module("B")
val A_ = Top.module("A_")
val B_ = Top.module("B_")
val annoAB = MultiTargetDummyAnnotation(Seq(A, B), 0)
val annoA_B_ = MultiTargetDummyAnnotation(Seq(A_, B_), 0)
val cs = execute(input, check, Seq(annoAB, annoA_B_))
cs.annotations.toSeq should contain (annoAB)
cs.annotations.toSeq should contain (annoA_B_)
}
"The module A and A_" should "be deduped with same annotations with same multi-targets, that share roots" in {
val input =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A :
| output x: UInt<1>
| inst b of B
| x <= b.x
| module A_ :
| output x: UInt<1>
| inst b of B_
| x <= b.x
| module B :
| output x: UInt<1>
| x <= UInt(1)
| module B_ :
| output x: UInt<1>
| x <= UInt(1)
""".stripMargin
val check =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A
| module A :
| output x: UInt<1>
| inst b of B
| x <= b.x
| module B :
| output x: UInt<1>
| x <= UInt(1)
""".stripMargin
val Top = CircuitTarget("Top")
val A = Top.module("A")
val A_ = Top.module("A_")
val annoA = MultiTargetDummyAnnotation(Seq(A, A.instOf("b", "B")), 0)
val annoA_ = MultiTargetDummyAnnotation(Seq(A_, A_.instOf("b", "B_")), 0)
val cs = execute(input, check, Seq(annoA, annoA_))
cs.annotations.toSeq should contain (annoA)
cs.annotations.toSeq should not contain (annoA_)
cs.deletedAnnotations.isEmpty should be (true)
}
"The deduping module A and A_" should "renamed internal signals that have different names" in {
val input =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A_
| module A :
| output y: UInt<1>
| y <= UInt(1)
| module A_ :
| output x: UInt<1>
| x <= UInt(1)
""".stripMargin
val check =
"""circuit Top :
| module Top :
| inst a1 of A
| inst a2 of A
| module A :
| output y: UInt<1>
| y <= UInt<1>("h1")
""".stripMargin
val Top = CircuitTarget("Top")
val A = Top.module("A")
val A_ = Top.module("A_")
val annoA = SingleTargetDummyAnnotation(A.ref("y"))
val annoA_ = SingleTargetDummyAnnotation(A_.ref("x"))
val cs = execute(input, check, Seq(annoA, annoA_))
cs.annotations.toSeq should contain (annoA)
cs.annotations.toSeq should not contain (SingleTargetDummyAnnotation(A.ref("x")))
cs.deletedAnnotations.isEmpty should be (true)
}
"main" should "not be deduped even if it's the last module" in {
val input =
"""circuit main:
| module dupe:
| input in: UInt<8>
| output out: UInt<8>
| out <= in
| module main:
| input in: UInt<8>
| output out: UInt<8>
| out <= in
""".stripMargin
val check =
"""circuit main:
| module main:
| input in: UInt<8>
| output out: UInt<8>
| out <= in
""".stripMargin
execute(input, check, Seq.empty)
}
"modules" should "not be deduped if the NoCircuitDedupAnnotation (or --no-dedup option) is supplied" in {
val input =
"""circuit main:
| module dupe:
| input in: UInt<8>
| output out: UInt<8>
| out <= in
| module main:
| input in: UInt<8>
| output out: UInt<8>
| out <= in
""".stripMargin
val check =
"""circuit main:
| module dupe:
| input in: UInt<8>
| output out: UInt<8>
| out <= in
| module main:
| input in: UInt<8>
| output out: UInt<8>
| out <= in
""".stripMargin
execute(input, check, Seq(NoCircuitDedupAnnotation))
}
}
|