diff options
| author | Adam Izraelevitz | 2018-03-21 14:24:25 -0700 |
|---|---|---|
| committer | GitHub | 2018-03-21 14:24:25 -0700 |
| commit | 6ea4ac666e4ce8dfaca1545660f372fccff610f5 (patch) | |
| tree | 8f2125855557962d642386fe8b49ed0396f562c2 /src/main/scala/firrtl/transforms | |
| parent | 6b195e4a5348eed2e714e1183024588c5f91a283 (diff) | |
GroupModule Transform (#766)
* Added grouping pass
* Added InfoMagnet and infomappers
* Changed return type of execute to allow final CircuitState inspection
* Updated dedup. Now is name-agnostic
* Added GroupAndDedup transform
Diffstat (limited to 'src/main/scala/firrtl/transforms')
| -rw-r--r-- | src/main/scala/firrtl/transforms/Dedup.scala | 377 | ||||
| -rw-r--r-- | src/main/scala/firrtl/transforms/GroupComponents.scala | 346 |
2 files changed, 616 insertions, 107 deletions
diff --git a/src/main/scala/firrtl/transforms/Dedup.scala b/src/main/scala/firrtl/transforms/Dedup.scala index f22415f0..91c82395 100644 --- a/src/main/scala/firrtl/transforms/Dedup.scala +++ b/src/main/scala/firrtl/transforms/Dedup.scala @@ -5,8 +5,9 @@ package transforms import firrtl.ir._ import firrtl.Mappers._ +import firrtl.analyses.InstanceGraph import firrtl.annotations._ -import firrtl.passes.PassException +import firrtl.passes.{InferTypes, MemPortUtils} // Datastructures import scala.collection.mutable @@ -18,134 +19,296 @@ case class NoDedupAnnotation(target: ModuleName) extends SingleTargetAnnotation[ def duplicate(n: ModuleName) = NoDedupAnnotation(n) } -// Only use on legal Firrtl. Specifically, the restriction of -// instance loops must have been checked, or else this pass can -// infinitely recurse +/** Only use on legal Firrtl. + * + * Specifically, the restriction of instance loops must have been checked, or else this pass can + * infinitely recurse + */ class DedupModules extends Transform { - def inputForm = HighForm - def outputForm = HighForm - // Orders the modules of a circuit from leaves to root - // A module will appear *after* all modules it instantiates - private def buildModuleOrder(c: Circuit): Seq[String] = { - val moduleOrder = mutable.ArrayBuffer.empty[String] - def hasInstance(b: Statement): Boolean = { - var has = false - def onStmt(s: Statement): Statement = s map onStmt match { - case DefInstance(i, n, m) => - if(!(moduleOrder contains m)) has = true - s - case WDefInstance(i, n, m, t) => - if(!(moduleOrder contains m)) has = true - s - case _ => s - } - onStmt(b) - has + def inputForm: CircuitForm = HighForm + def outputForm: CircuitForm = HighForm + + /** + * Deduplicate a Circuit + * @param state Input Firrtl AST + * @return A transformed Firrtl AST + */ + def execute(state: CircuitState): CircuitState = { + val noDedups = state.annotations.collect { case NoDedupAnnotation(ModuleName(m, c)) => m } + val (newC, renameMap) = run(state.circuit, noDedups) + state.copy(circuit = newC, renames = Some(renameMap)) + } + + /** + * Deduplicates a circuit, and records renaming + * @param c Circuit to dedup + * @param noDedups Modules not to dedup + * @return Deduped Circuit and corresponding RenameMap + */ + def run(c: Circuit, noDedups: Seq[String]): (Circuit, RenameMap) = { + + // RenameMap + val renameMap = RenameMap() + renameMap.setCircuit(c.main) + + // Maps module name to corresponding dedup module + val dedupMap = DedupModules.deduplicate(c, noDedups.toSet, renameMap) + + // Use old module list to preserve ordering + val dedupedModules = c.modules.map(m => dedupMap(m.name)).distinct + + val cname = CircuitName(c.main) + renameMap.addMap(dedupMap.map { case (from, to) => + logger.debug(s"[Dedup] $from -> ${to.name}") + ModuleName(from, cname) -> List(ModuleName(to.name, cname)) + }) + + (InferTypes.run(c.copy(modules = dedupedModules)), renameMap) + } +} + +/** + * Utility functions for [[DedupModules]] + */ +object DedupModules { + /** + * Change's a module's internal signal names, types, infos, and modules. + * @param rename Function to rename a signal. Called on declaration and references. + * @param retype Function to retype a signal. Called on declaration, references, and subfields + * @param reinfo Function to re-info a statement + * @param renameModule Function to rename an instance's module + * @param module Module to change internals + * @return Changed Module + */ + def changeInternals(rename: String=>String, + retype: String=>Type=>Type, + reinfo: Info=>Info, + renameModule: String=>String + )(module: DefModule): DefModule = { + def onPort(p: Port): Port = Port(reinfo(p.info), rename(p.name), p.direction, retype(p.name)(p.tpe)) + def onExp(e: Expression): Expression = e match { + case WRef(n, t, k, g) => WRef(rename(n), retype(n)(t), k, g) + case WSubField(expr, n, tpe, kind) => + val fieldIndex = expr.tpe.asInstanceOf[BundleType].fields.indexWhere(f => f.name == n) + val newExpr = onExp(expr) + val newField = newExpr.tpe.asInstanceOf[BundleType].fields(fieldIndex) + val finalExpr = WSubField(newExpr, newField.name, newField.tpe, kind) + //TODO: renameMap.rename(e.serialize, finalExpr.serialize) + finalExpr + case other => other map onExp } - def addModule(m: DefModule): DefModule = m match { - case Module(info, n, ps, b) => - if (!hasInstance(b)) moduleOrder += m.name - m - case e: ExtModule => - moduleOrder += m.name - m - case _ => m + def onStmt(s: Statement): Statement = s match { + case WDefInstance(i, n, m, t) => + val newmod = renameModule(m) + WDefInstance(reinfo(i), rename(n), newmod, retype(n)(t)) + case DefInstance(i, n, m) => DefInstance(reinfo(i), rename(n), renameModule(m)) + case d: DefMemory => + val oldType = MemPortUtils.memType(d) + val newType = retype(d.name)(oldType) + val index = oldType + .asInstanceOf[BundleType].fields.headOption + .map(_.tpe.asInstanceOf[BundleType].fields.indexWhere( + { + case Field("data" | "wdata" | "rdata", _, _) => true + case _ => false + })) + val newDataType = index match { + case Some(i) => + //If index nonempty, then there exists a port + newType.asInstanceOf[BundleType].fields.head.tpe.asInstanceOf[BundleType].fields(i).tpe + case None => + //If index is empty, this mem has no ports, and so we don't need to record the dataType + // Thus, call retype with an illegal name, so we can retype the memory's datatype, but not + // associate it with the type of the memory (as the memory type is different than the datatype) + retype(d.name + ";&*^$")(d.dataType) + } + d.copy(dataType = newDataType) map rename map reinfo + case h: IsDeclaration => h map rename map retype(h.name) map onExp map reinfo + case other => other map reinfo map onExp map onStmt } - - while ((moduleOrder.size < c.modules.size)) { - c.modules.foreach(m => if (!moduleOrder.contains(m.name)) addModule(m)) + val finalModule = module match { + case m: Module => m map onPort map onStmt + case other => other } - moduleOrder + finalModule } - // Finds duplicate Modules - // Also changes DefInstances to instantiate the deduplicated module - // Returns (Deduped Module name -> Seq of identical modules, - // Deuplicate Module name -> deduped module name) - private def findDups( - moduleOrder: Seq[String], - moduleMap: Map[String, DefModule], - noDedups: Seq[String]): (Map[String, Seq[DefModule]], Map[String, String]) = { - // Module body -> Module name - val dedupModules = mutable.HashMap.empty[String, String] - // Old module name -> dup module name - val dedupMap = mutable.HashMap.empty[String, String] - // Deduplicated module name -> all identical modules - val oldModuleMap = mutable.HashMap.empty[String, Seq[DefModule]] - - def onModule(m: DefModule): Unit = { - def fixInstance(s: Statement): Statement = s map fixInstance match { - case DefInstance(i, n, m) => DefInstance(i, n, dedupMap.getOrElse(m, m)) - case WDefInstance(i, n, m, t) => WDefInstance(i, n, dedupMap.getOrElse(m, m), t) - case x => x + /** + * Turns a module into a name-agnostic module + * @param module module to change + * @return name-agnostic module + */ + def agnostify(module: DefModule, name2tag: mutable.HashMap[String, String], tag2name: mutable.HashMap[String, String]): DefModule = { + val namespace = Namespace() + val nameMap = mutable.HashMap[String, String]() + val typeMap = mutable.HashMap[String, Type]() + def rename(name: String): String = { + if (nameMap.contains(name)) nameMap(name) else { + val newName = namespace.newTemp + nameMap(name) = newName + newName } - def removeInfo(stmt: Statement): Statement = stmt map removeInfo match { - case sx: HasInfo => sx match { - case s: DefWire => s.copy(info = NoInfo) - case s: DefNode => s.copy(info = NoInfo) - case s: DefRegister => s.copy(info = NoInfo) - case s: DefInstance => s.copy(info = NoInfo) - case s: WDefInstance => s.copy(info = NoInfo) - case s: DefMemory => s.copy(info = NoInfo) - case s: Connect => s.copy(info = NoInfo) - case s: PartialConnect => s.copy(info = NoInfo) - case s: IsInvalid => s.copy(info = NoInfo) - case s: Attach => s.copy(info = NoInfo) - case s: Stop => s.copy(info = NoInfo) - case s: Print => s.copy(info = NoInfo) - case s: Conditionally => s.copy(info = NoInfo) + } + def retype(name: String)(tpe: Type): Type = { + if (typeMap.contains(name)) typeMap(name) else { + def onType(tpe: Type): Type = tpe map onType match { + case BundleType(fields) => BundleType(fields.map(f => Field(rename(f.name), f.flip, f.tpe))) + case other => other } - case sx => sx + val newType = onType(tpe) + typeMap(name) = newType + newType } - def removePortInfo(p: Port): Port = p.copy(info = NoInfo) + } + def remodule(name: String): String = tag2name(name2tag(name)) + changeInternals(rename, retype, {i: Info => NoInfo}, remodule)(module) + } + /** Dedup a module's instances based on dedup map + * + * Will fixes up module if deduped instance's ports are differently named + * + * @param moduleName Module name who's instances will be deduped + * @param moduleMap Map of module name to its original module + * @param name2name Map of module name to the module deduping it. Not mutated in this function. + * @param renameMap Will be modified to keep track of renames in this function + * @return fixed up module deduped instances + */ + def dedupInstances(moduleName: String, moduleMap: Map[String, DefModule], name2name: mutable.Map[String, String], renameMap: RenameMap): DefModule = { + val module = moduleMap(moduleName) - val mx = m map fixInstance - val mxx = (mx map removeInfo) map removePortInfo + // If black box, return it (it has no instances) + if (module.isInstanceOf[ExtModule]) return module - // If shouldn't dedup, just make it fail to be the same to any other modules - val unique = if (!noDedups.contains(mxx.name)) "" else mxx.name - val string = mxx match { - case Module(i, n, ps, b) => - ps.map(_.serialize).mkString + b.serialize + unique - case ExtModule(i, n, ps, dn, p) => - ps.map(_.serialize).mkString + dn + p.map(_.serialize).mkString + unique - } - dedupModules.get(string) match { - case Some(dupname) => - dedupMap(mx.name) = dupname - oldModuleMap(dupname) = oldModuleMap(dupname) :+ mx - case None => - dedupModules(string) = mx.name - oldModuleMap(mx.name) = Seq(mx) + // Get all instances to know what to rename in the module + val instances = mutable.Set[WDefInstance]() + InstanceGraph.collectInstances(instances)(module.asInstanceOf[Module].body) + val instanceModuleMap = instances.map(i => i.name -> i.module).toMap + val moduleNames = instances.map(_.module) + + def getNewModule(old: String): DefModule = { + moduleMap(name2name(old)) + } + // Define rename functions + def renameModule(name: String): String = getNewModule(name).name + val typeMap = mutable.HashMap[String, Type]() + def retype(name: String)(tpe: Type): Type = { + if (typeMap.contains(name)) typeMap(name) else { + if (instanceModuleMap.contains(name)) { + val newType = Utils.module_type(getNewModule(instanceModuleMap(name))) + typeMap(name) = newType + getAffectedExpressions(WRef(name, tpe)).zip(getAffectedExpressions(WRef(name, newType))).foreach { + case (old, nuu) => renameMap.rename(old.serialize, nuu.serialize) + } + newType + } else tpe } } - moduleOrder.foreach(n => onModule(moduleMap(n))) - (oldModuleMap.toMap, dedupMap.toMap) + + renameMap.setModule(module.name) + // Change module internals + changeInternals({n => n}, retype, {i => i}, renameModule)(module) } - def run(c: Circuit, noDedups: Seq[String]): (Circuit, RenameMap) = { - val moduleOrder = buildModuleOrder(c) - val moduleMap = c.modules.map(m => m.name -> m).toMap + /** + * Deduplicate + * @param circuit Circuit + * @param noDedups list of modules to not dedup + * @param renameMap rename map to populate when deduping + * @return Map of original Module name -> Deduped Module + */ + def deduplicate(circuit: Circuit, + noDedups: Set[String], + renameMap: RenameMap): Map[String, DefModule] = { - val (oldModuleMap, dedupMap) = findDups(moduleOrder, moduleMap, noDedups) + // Order of modules, from leaf to top + val moduleLinearization = new InstanceGraph(circuit).moduleOrder.map(_.name).reverse - // Use old module list to preserve ordering - val dedupedModules = c.modules.flatMap(m => oldModuleMap.get(m.name).map(_.head)) + // Maps module name to original module + val moduleMap = circuit.modules.map(m => m.name -> m).toMap - val cname = CircuitName(c.main) - val renameMap = RenameMap(dedupMap.map { case (from, to) => - logger.debug(s"[Dedup] $from -> $to") - ModuleName(from, cname) -> List(ModuleName(to, cname)) - }) + // Maps a module's tag to its deduplicated module + val tag2name = mutable.HashMap.empty[String, String] + + // Maps a module's name to its tag + val name2tag = mutable.HashMap.empty[String, String] + + // Maps a tag to all matching module names + val tag2all = mutable.HashMap.empty[String, mutable.Set[String]] + + // Build dedupMap + moduleLinearization.foreach { moduleName => + // Get original module + val originalModule = moduleMap(moduleName) + + // Replace instance references to new deduped modules + val dontcare = RenameMap() + dontcare.setCircuit("dontcare") + //val fixedModule = DedupModules.dedupInstances(originalModule, tag2module, name2tag, name2module, dontcare) + + if (noDedups.contains(originalModule.name)) { + // Don't dedup. Set dedup module to be the same as fixed module + name2tag(originalModule.name) = originalModule.name + tag2name(originalModule.name) = originalModule.name + //templateModules += originalModule.name + } else { // Try to dedup + + // Build name-agnostic module + val agnosticModule = DedupModules.agnostify(originalModule, name2tag, tag2name) + + // Build tag + val tag = (agnosticModule match { + case Module(i, n, ps, b) => + ps.map(_.serialize).mkString + b.serialize + case ExtModule(i, n, ps, dn, p) => + ps.map(_.serialize).mkString + dn + p.map(_.serialize).mkString + }).hashCode().toString + + // Match old module name to its tag + name2tag(originalModule.name) = tag + + // Set tag's module to be the first matching module + if (!tag2name.contains(tag)) { + tag2name(tag) = originalModule.name + tag2all(tag) = mutable.Set(originalModule.name) + } else { + tag2all(tag) += originalModule.name + } + } + } + + + // Set tag2name to be the best dedup module name + val moduleIndex = circuit.modules.zipWithIndex.map{case (m, i) => m.name -> i}.toMap + def order(l: String, r: String): String = if (moduleIndex(l) < moduleIndex(r)) l else r + tag2all.foreach { case (tag, all) => tag2name(tag) = all.reduce(order)} - (c.copy(modules = dedupedModules), renameMap) + // Create map from original to dedup name + val name2name = name2tag.map({ case (name, tag) => name -> tag2name(tag) }) + + // Build Remap for modules with deduped module references + val tag2module = tag2name.map({ case (tag, name) => tag -> DedupModules.dedupInstances(name, moduleMap, name2name, renameMap) }) + + // Build map from original name to corresponding deduped module + val name2module = name2tag.map({ case (name, tag) => name -> tag2module(tag) }) + + name2module.toMap } - def execute(state: CircuitState): CircuitState = { - val noDedups = state.annotations.collect { case NoDedupAnnotation(ModuleName(m, c)) => m } - val (newC, renameMap) = run(state.circuit, noDedups) - state.copy(circuit = newC, renames = Some(renameMap)) + def getAffectedExpressions(root: Expression): Seq[Expression] = { + val all = mutable.ArrayBuffer[Expression]() + + def onExp(expr: Expression): Unit = { + expr.tpe match { + case _: GroundType => + case b: BundleType => b.fields.foreach { f => onExp(WSubField(expr, f.name, f.tpe)) } + case v: VectorType => (0 until v.size).foreach { i => onExp(WSubIndex(expr, i, v.tpe, UNKNOWNGENDER)) } + } + all += expr + } + + onExp(root) + all } } diff --git a/src/main/scala/firrtl/transforms/GroupComponents.scala b/src/main/scala/firrtl/transforms/GroupComponents.scala new file mode 100644 index 00000000..43053e3d --- /dev/null +++ b/src/main/scala/firrtl/transforms/GroupComponents.scala @@ -0,0 +1,346 @@ +package firrtl.transforms + +import firrtl._ +import firrtl.Mappers._ +import firrtl.ir._ +import firrtl.annotations.{Annotation, ComponentName} +import firrtl.passes.{InferTypes, LowerTypes, MemPortUtils} +import firrtl.Utils.{kind, throwInternalError} +import firrtl.graph.{DiGraph, MutableDiGraph} + +import scala.collection.mutable + + +/** + * Specifies a group of components, within a module, to pull out into their own module + * Components that are only connected to a group's components will also be included + * + * @param components components in this group + * @param newModule suggested name of the new module + * @param newInstance suggested name of the instance of the new module + * @param outputSuffix suggested suffix of any output ports of the new module + * @param inputSuffix suggested suffix of any input ports of the new module + */ +case class GroupAnnotation(components: Seq[ComponentName], newModule: String, newInstance: String, outputSuffix: Option[String] = None, inputSuffix: Option[String] = None) extends Annotation { + if(components.nonEmpty) { + require(components.forall(_.module == components.head.module), "All components must be in the same module.") + require(components.forall(!_.name.contains('.')), "No components can be a subcomponent.") + } + + /** + * The module that all components are located in + * @return + */ + def currentModule: String = components.head.module.name + + /* Only keeps components renamed to components */ + def update(renames: RenameMap): Seq[Annotation] = { + val newComponents = components.flatMap{c => renames.get(c).getOrElse(Seq(c))}.collect { + case c: ComponentName => c + } + Seq(GroupAnnotation(newComponents, newModule, newInstance, outputSuffix, inputSuffix)) + } +} + +/** + * Splits a module into multiple modules by grouping its components via [[GroupAnnotation]]'s + */ +class GroupComponents extends firrtl.Transform { + type MSet[T] = mutable.Set[T] + + def inputForm: CircuitForm = MidForm + def outputForm: CircuitForm = MidForm + + override def execute(state: CircuitState): CircuitState = { + val groups = state.annotations.collect {case g: GroupAnnotation => g} + val module2group = groups.groupBy(_.currentModule) + val mnamespace = Namespace(state.circuit) + val newModules = state.circuit.modules.flatMap { + case m: Module if module2group.contains(m.name) => + // do stuff + groupModule(m, module2group(m.name).filter(_.components.nonEmpty), mnamespace) + case other => Seq(other) + } + val cs = state.copy(circuit = state.circuit.copy(modules = newModules)) + val csx = InferTypes.execute(cs) + csx + } + + def groupModule(m: Module, groups: Seq[GroupAnnotation], mnamespace: Namespace): Seq[Module] = { + val namespace = Namespace(m) + val groupRoots = groups.map(_.components.map(_.name)) + val totalSum = groupRoots.map(_.size).sum + val union = groupRoots.foldLeft(Set.empty[String]){(all, set) => all.union(set.toSet)} + + require(groupRoots.forall{_.forall{namespace.contains}}, "All names should be in this module") + require(totalSum == union.size, "No name can be in more than one group") + require(groupRoots.forall(_.nonEmpty), "All groupRoots must by non-empty") + + + // Order of groups, according to their label. The label is the first root in the group + val labelOrder = groups.collect({ case g: GroupAnnotation => g.components.head.name }) + + // Annotations, by label + val label2annotation = groups.collect({ case g: GroupAnnotation => g.components.head.name -> g }).toMap + + // Group roots, by label + // The label "" indicates the original module, and components belonging to that group will remain + // in the original module (not get moved into a new module) + val label2group: Map[String, MSet[String]] = groups.collect{ + case GroupAnnotation(set, module, instance, _, _) => set.head.name -> mutable.Set(set.map(_.name):_*) + }.toMap + ("" -> mutable.Set("")) + + // Name of new module containing each group, by label + val label2module: Map[String, String] = + groups.map(a => a.components.head.name -> mnamespace.newName(a.newModule)).toMap + + // Name of instance of new module, by label + val label2instance: Map[String, String] = + groups.map(a => a.components.head.name -> namespace.newName(a.newInstance)).toMap + + // Build set of components not in set + val notSet = label2group.map { case (key, value) => key -> union.diff(value) } + + + // Get all dependencies between components + val deps = getComponentConnectivity(m) + + // For each node not in the set, which group (by label) can reach it + val reachableNodes = new mutable.HashMap[String, MSet[String]]() + + // For each group (by label), add connectivity between nodes in set + // Populate reachableNodes with reachability, where blacklist is their notSet + label2group.foreach { case (label, set) => + set.foreach { x => + deps.addPairWithEdge(label, x) + } + deps.reachableFrom(label, notSet(label)) foreach { node => + reachableNodes.getOrElseUpdate(node, mutable.Set.empty[String]) += label + } + } + + // Add nodes who are reached by a single group, to that group + reachableNodes.foreach { case (node, membership) => + if(membership.size == 1) { + label2group(membership.head) += node + } else { + label2group("") += node + } + } + + applyGrouping(m, labelOrder, label2group, label2module, label2instance, label2annotation) + } + + /** + * Applies datastructures to a module, to group its components into distinct modules + * @param m module to split apart + * @param labelOrder order of groups in SeqAnnotation, to make the grouping more deterministic + * @param label2group group components, by label + * @param label2module module name, by label + * @param label2instance instance name of the group's module, by label + * @param label2annotation annotation specifying the group, by label + * @return new modules, including each group's module and the new split module + */ + def applyGrouping( m: Module, + labelOrder: Seq[String], + label2group: Map[String, MSet[String]], + label2module: Map[String, String], + label2instance: Map[String, String], + label2annotation: Map[String, GroupAnnotation] + ): Seq[Module] = { + // Maps node to group + val byNode = mutable.HashMap[String, String]() + label2group.foreach { case (group, nodes) => + nodes.foreach { node => + byNode(node) = group + } + } + val groupNamespace = label2group.map { case (head, set) => head -> Namespace(set.toSeq) } + + val groupStatements = mutable.HashMap[String, mutable.ArrayBuffer[Statement]]() + val groupPorts = mutable.HashMap[String, mutable.ArrayBuffer[Port]]() + val groupPortNames = mutable.HashMap[String, mutable.HashMap[String, String]]() + label2group.keys.foreach { group => + groupStatements(group) = new mutable.ArrayBuffer[Statement]() + groupPorts(group) = new mutable.ArrayBuffer[Port]() + groupPortNames(group) = new mutable.HashMap[String, String]() + } + + def addPort(group: String, exp: Expression, d: Direction): String = { + val source = LowerTypes.loweredName(exp) + val portNames = groupPortNames(group) + val suffix = d match { + case Output => label2annotation(group).outputSuffix.getOrElse("") + case Input => label2annotation(group).inputSuffix.getOrElse("") + } + val newName = groupNamespace(group).newName(source + suffix) + val portName = portNames.getOrElseUpdate(source, newName) + groupPorts(group) += Port(NoInfo, portName, d, exp.tpe) + portName + } + + def punchSignalOut(group: String, exp: Expression): String = { + val portName = addPort(group, exp, Output) + groupStatements(group) += Connect(NoInfo, WRef(portName), exp) + portName + } + + // Given the sink is in a group, tidy up source references + def inGroupFixExps(group: String, added: mutable.ArrayBuffer[Statement])(e: Expression): Expression = e match { + case _: Literal => e + case _: DoPrim | _: Mux | _: ValidIf => e map inGroupFixExps(group, added) + case otherExp: Expression => + val wref = getWRef(otherExp) + val source = wref.name + byNode(source) match { + // case 1: source in the same group as sink + case `group` => otherExp //do nothing + + // case 2: source in top + case "" => + // Add port to group's Module + val toPort = addPort(group, otherExp, Input) + + // Add connection in Top to group's Module port + added += Connect(NoInfo, WSubField(WRef(label2instance(group)), toPort), otherExp) + + // Return WRef with new kind (its inside the group Module now) + WRef(toPort, otherExp.tpe, PortKind, MALE) + + // case 3: source in different group + case otherGroup => + // Add port to otherGroup's Module + val fromPort = punchSignalOut(otherGroup, otherExp) + val toPort = addPort(group, otherExp, Input) + + // Add connection in Top from otherGroup's port to group's port + val groupInst = label2instance(group) + val otherInst = label2instance(otherGroup) + added += Connect(NoInfo, WSubField(WRef(groupInst), toPort), WSubField(WRef(otherInst), fromPort)) + + // Return WRef with new kind (its inside the group Module now) + WRef(toPort, otherExp.tpe, PortKind, MALE) + } + } + + // Given the sink is in the parent module, tidy up source references belonging to groups + def inTopFixExps(e: Expression): Expression = e match { + case _: DoPrim | _: Mux | _: ValidIf => e map inTopFixExps + case otherExp: Expression => + val wref = getWRef(otherExp) + if(byNode(wref.name) != "") { + // Get the name of source's group + val otherGroup = byNode(wref.name) + + // Add port to otherGroup's Module + val otherPortName = punchSignalOut(otherGroup, otherExp) + + // Return WSubField (its inside the top Module still) + WSubField(WRef(label2instance(otherGroup)), otherPortName) + + } else otherExp + } + + def onStmt(s: Statement): Statement = { + s match { + // Sink is in a group + case r: IsDeclaration if byNode(r.name) != "" => + val topStmts = mutable.ArrayBuffer[Statement]() + val group = byNode(r.name) + groupStatements(group) += r mapExpr inGroupFixExps(group, topStmts) + Block(topStmts) + case c: Connect if byNode(getWRef(c.loc).name) != "" => + // Sink is in a group + val topStmts = mutable.ArrayBuffer[Statement]() + val group = byNode(getWRef(c.loc).name) + groupStatements(group) += Connect(c.info, c.loc, inGroupFixExps(group, topStmts)(c.expr)) + Block(topStmts) + // TODO Attach if all are in a group? + case _: IsDeclaration | _: Connect | _: Attach => + // Sink is in Top + val ret = s mapExpr inTopFixExps + ret + case other => other map onStmt + } + } + + + // Build datastructures + val newTopBody = Block(labelOrder.map(g => WDefInstance(NoInfo, label2instance(g), label2module(g), UnknownType)) ++ Seq(onStmt(m.body))) + val finalTopBody = Block(Utils.squashEmpty(newTopBody).asInstanceOf[Block].stmts.distinct) + + // For all group labels (not including the original module label), return a new Module. + val newModules = labelOrder.filter(_ != "") map { group => + Module(NoInfo, label2module(group), groupPorts(group).distinct, Block(groupStatements(group).distinct)) + } + Seq(m.copy(body = finalTopBody)) ++ newModules + } + + def getWRef(e: Expression): WRef = e match { + case w: WRef => w + case other => + var w = WRef("") + other mapExpr { e => w = getWRef(e); e} + w + } + + /** + * Compute how each component connects to each other component + * It is non-directioned; there is an edge from source to sink and from sink to souce + * @param m module to compute connectivity + * @return a bi-directional representation of component connectivity + */ + def getComponentConnectivity(m: Module): MutableDiGraph[String] = { + val bidirGraph = new MutableDiGraph[String] + val simNamespace = Namespace() + val simulations = new mutable.HashMap[String, Statement] + def onExpr(sink: WRef)(e: Expression): Expression = e match { + case w @ WRef(name, _, _, _) => + bidirGraph.addPairWithEdge(sink.name, name) + bidirGraph.addPairWithEdge(name, sink.name) + w + case other => other map onExpr(sink) + } + def onStmt(stmt: Statement): Unit = stmt match { + case w: WDefInstance => + case h: IsDeclaration => h map onExpr(WRef(h.name)) + case Attach(_, exprs) => // Add edge between each expression + exprs.tail map onExpr(getWRef(exprs.head)) + case Connect(_, loc, expr) => + onExpr(getWRef(loc))(expr) + case q @ Stop(_,_, clk, en) => + val simName = simNamespace.newTemp + simulations(simName) = q + Seq(clk, en) map onExpr(WRef(simName)) + case q @ Print(_, _, args, clk, en) => + val simName = simNamespace.newTemp + simulations(simName) = q + (args :+ clk :+ en) map onExpr(WRef(simName)) + case Block(stmts) => stmts.foreach(onStmt) + case ignore @ (_: IsInvalid | EmptyStmt) => // do nothing + case other => throw new Exception(s"Unexpected Statement $other") + } + + onStmt(m.body) + m.ports.foreach { p => + bidirGraph.addPairWithEdge("", p.name) + bidirGraph.addPairWithEdge(p.name, "") + } + bidirGraph + } +} + +/** + * Splits a module into multiple modules by grouping its components via [[GroupAnnotation]]'s + * Tries to deduplicate the resulting circuit + */ +class GroupAndDedup extends Transform { + def inputForm: CircuitForm = MidForm + def outputForm: CircuitForm = MidForm + + override def execute(state: CircuitState): CircuitState = { + val cs = new GroupComponents().execute(state) + val csx = new DedupModules().execute(cs) + csx + } +} |
