blob: 5ab096b7812e7666c6cb59fe9c9c8510ff23c365 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// See LICENSE for license details.
package firrtl.analyses
import firrtl.annotations.NoTargetAnnotation
import firrtl.{CircuitState, LowForm, Namespace, Transform}
case class ModuleNamespaceAnnotation(namespace: Namespace) extends NoTargetAnnotation
/** Create a namespace with this circuit
*
* namespace is used by RenameModules to get unique names
*/
class GetNamespace extends Transform {
def inputForm: LowForm.type = LowForm
def outputForm: LowForm.type = LowForm
def execute(state: CircuitState): CircuitState = {
val namespace = Namespace(state.circuit)
state.copy(annotations = new ModuleNamespaceAnnotation(namespace) +: state.annotations)
}
}
|