Packages

trait InlineInstance extends AnyRef

Inlines an instance of a module

Self Type
InlineInstance with BaseModule
Source
Inline.scala
Example:
  1. trait Internals { this: Module =>
      val io = IO(new Bundle{ val a = Input(Bool()) })
    }
    class Sub extends Module with Internals
    trait HasSub { this: Module with Internals =>
      val sub = Module(new Sub)
      sub.io.a := io.a
    }
    /* InlineInstance is mixed directly into Foo's definition. Every instance
     * of this will be inlined. */
    class Foo extends Module with Internals with InlineInstance with HasSub
    /* Bar will, by default, not be inlined */
    class Bar extends Module with Internals with HasSub
    /* The resulting instances will be:
     - Top
     - Top.x$sub
     - Top.y$sub
     - Top.z
     - Top.z.sub */
    class Top extends Module with Internals {
      val x = Module(new Foo)                     // x will be inlined
      val y = Module(new Bar with InlineInstance) // y will also be inlined
      val z = Module(new Bar)                     // z will not be inlined
      Seq(x, y, z).map(_.io.a := io.a)
    }
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InlineInstance
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected