summaryrefslogtreecommitdiff
path: root/src/main/scala/chisel3/util/TransitName.scala
blob: f36f926fbdcd32f0dfabf6a820bc22c36ff84a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package chisel3.util

import chisel3._
import internal.HasId

object TransitName {
  // The purpose of this is to allow a library to 'move' a name call to a more
  // appropriate place.
  // For example, a library factory function may create a module and return
  // the io. The only user-exposed field is that given IO, which can't use
  // any name supplied by the user. This can add a hook so that the supplied
  // name then names the Module.
  // See Queue companion object for working example
  def apply[T<:HasId](from: T, to: HasId): T = {
    from.addPostnameHook((given_name: String) => {to.suggestName(given_name)})
    from
  }
  def withSuffix[T<:HasId](suffix: String)(from: T, to: HasId): T = {
    from.addPostnameHook((given_name: String) => {to.suggestName(given_name+suffix)})
    from
  }
}