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
|
// See license file for details
package firrtl.passes
package clocklist
import firrtl._
import firrtl.ir._
import annotations._
import Utils.error
import java.io.{File, CharArrayWriter, PrintWriter, Writer}
import wiring.Lineage
import ClockListUtils._
import Utils._
import memlib.AnalysisUtils._
import memlib._
import Mappers._
object ClockListAnnotation {
def apply(t: String): Annotation = {
val usage = """
[Optional] ClockList
List which signal drives each clock of every descendent of specified module
Usage:
--list-clocks -c:<circuit>:-m:<module>:-o:<filename>
*** Note: sub-arguments to --list-clocks should be delimited by : and not white space!
"""
//Parse pass options
val passOptions = PassConfigUtil.getPassOptions(t, usage)
val outputConfig = passOptions.getOrElse(
OutputConfigFileName,
error("No output config file provided for ClockList!" + usage)
)
val passCircuit = passOptions.getOrElse(
PassCircuitName,
error("No circuit name specified for ClockList!" + usage)
)
val passModule = passOptions.getOrElse(
PassModuleName,
error("No module name specified for ClockList!" + usage)
)
passOptions.get(InputConfigFileName) match {
case Some(x) => error("Unneeded input config file name!" + usage)
case None =>
}
val target = ModuleName(passModule, CircuitName(passCircuit))
Annotation(target, classOf[ClockListTransform], outputConfig)
}
def apply(target: ModuleName, outputConfig: String): Annotation =
Annotation(target, classOf[ClockListTransform], outputConfig)
def unapply(a: Annotation): Option[(ModuleName, String)] = a match {
case Annotation(ModuleName(m, c), t, outputConfig) if t == classOf[ClockListTransform] =>
Some((ModuleName(m, c), outputConfig))
case _ => None
}
}
class ClockListTransform extends Transform {
def inputForm = LowForm
def outputForm = LowForm
def passSeq(top: String, writer: Writer): Seq[Pass] =
Seq(new ClockList(top, writer))
def execute(state: CircuitState): CircuitState = getMyAnnotations(state) match {
case Seq(ClockListAnnotation(ModuleName(top, CircuitName(state.circuit.main)), out)) =>
val outputFile = new PrintWriter(out)
val newC = (new ClockList(top, outputFile)).run(state.circuit)
outputFile.close()
CircuitState(newC, state.form, state.annotations)
case Nil => state
case seq => error(s"Found illegal clock list annotation(s): $seq")
}
}
|