Packages

  • package root

    The Scala compiler and reflection APIs.

    The Scala compiler and reflection APIs.

    Definition Classes
    root
  • package scala
    Definition Classes
    root
  • package tools
    Definition Classes
    scala
  • package nsc
    Definition Classes
    tools
  • package transform
    Definition Classes
    nsc
  • abstract class SpecializeTypes extends SubComponent with InfoTransform with TypingTransformers

    Specialize code on types.

    Specialize code on types.

    Make sure you've read the thesis:

    Iulian Dragos: Compiling Scala for Performance (chapter 4)

    There are some things worth noting, (possibly) not mentioned there: 0) Make sure you understand the meaning of various SpecializedInfo descriptors defined below.

    1) Specializing traits by introducing bridges in specialized methods of the specialized trait may introduce problems during mixin composition. Concretely, it may cause cyclic calls and result in a stack overflow. See ticket #4351. This was solved by introducing an Abstract specialized info descriptor. Instead of generating a bridge in the trait, an abstract method is generated.

    2) Specialized private members sometimes have to be switched to protected. In some cases, even this is not enough. Example:

    class A[@specialized T](protected val d: T) {
      def foo(that: A[T]) = that.d
    }

    Specialization will generate a specialized class and a specialized method:

    class A$mcI$sp(protected val d: Int) extends A[Int] {
      def foo(that: A[Int]) = foo$mcI$sp(that)
      def foo(that: A[Int]) = that.d
    }

    Above, A$mcI$sp cannot access d, so the method cannot be typechecked.

    Definition Classes
    transform
  • class SpecializationTransformer extends TypingTransformer
    Definition Classes
    SpecializeTypes
  • CollectMethodBodies

class CollectMethodBodies extends Global.InternalTraverser

Collect method bodies that are concrete specialized methods.

Source
SpecializeTypes.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CollectMethodBodies
  2. InternalTraverser
  3. Traverser
  4. AnyRef
  5. 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

Instance Constructors

  1. new CollectMethodBodies()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from CollectMethodBodies toany2stringadd[CollectMethodBodies] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (CollectMethodBodies, B)
    Implicit
    This member is added by an implicit conversion from CollectMethodBodies toArrowAssoc[CollectMethodBodies] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def apply[T <: Global.Tree](tree: T): T
    Definition Classes
    Traverser
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def atOwner(owner: Global.Symbol)(traverse: => Unit): Unit
    Definition Classes
    Traverser
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. var currentOwner: Global.Symbol
    Attributes
    protected[scala]
    Definition Classes
    Traverser
  11. def ensuring(cond: (CollectMethodBodies) => Boolean, msg: => Any): CollectMethodBodies
    Implicit
    This member is added by an implicit conversion from CollectMethodBodies toEnsuring[CollectMethodBodies] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (CollectMethodBodies) => Boolean): CollectMethodBodies
    Implicit
    This member is added by an implicit conversion from CollectMethodBodies toEnsuring[CollectMethodBodies] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: => Any): CollectMethodBodies
    Implicit
    This member is added by an implicit conversion from CollectMethodBodies toEnsuring[CollectMethodBodies] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): CollectMethodBodies
    Implicit
    This member is added by an implicit conversion from CollectMethodBodies toEnsuring[CollectMethodBodies] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  18. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from CollectMethodBodies toStringFormat[CollectMethodBodies] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. def traverse(tree: Global.Tree): Unit
    Definition Classes
    CollectMethodBodies → InternalTraverser → Traverser
  28. def traverseAnnotations(annots: List[Global.Tree]): Unit
    Definition Classes
    Traverser
  29. def traverseCases(cases: List[Global.CaseDef]): Unit
    Definition Classes
    Traverser
  30. def traverseConstant(c: Global.Constant): Unit
    Definition Classes
    Traverser
  31. def traverseGuard(guard: Global.Tree): Unit
    Definition Classes
    Traverser
  32. def traverseImportSelector(sel: Global.ImportSelector): Unit
    Definition Classes
    Traverser
  33. def traverseModifiers(mods: Global.Modifiers): Unit
    Definition Classes
    Traverser
  34. def traverseName(name: Global.Name): Unit
    Definition Classes
    Traverser
  35. def traverseParams(params: List[Global.Tree]): Unit
    Definition Classes
    Traverser
  36. def traverseParamss(vparamss: List[List[Global.Tree]]): Unit
    Definition Classes
    Traverser
  37. def traverseParents(parents: List[Global.Tree]): Unit
    Definition Classes
    Traverser
  38. def traversePattern(pat: Global.Tree): Unit
    Definition Classes
    Traverser
  39. def traverseSelfType(self: Global.ValDef): Unit
    Definition Classes
    Traverser
  40. def traverseStats(stats: List[Global.Tree], exprOwner: Global.Symbol): Unit
    Definition Classes
    Traverser
  41. def traverseTrees(trees: List[Global.Tree]): Unit
    Definition Classes
    Traverser
  42. def traverseTreess(treess: List[List[Global.Tree]]): Unit
    Definition Classes
    Traverser
  43. def traverseTypeArgs(args: List[Global.Tree]): Unit
    Definition Classes
    Traverser
  44. def traverseTypeAscription(tpt: Global.Tree): Unit
    Definition Classes
    Traverser
  45. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  46. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  47. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def [B](y: B): (CollectMethodBodies, B)
    Implicit
    This member is added by an implicit conversion from CollectMethodBodies toArrowAssoc[CollectMethodBodies] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Global.Traverser

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromCollectMethodBodies to any2stringadd[CollectMethodBodies]

Inherited by implicit conversion StringFormat fromCollectMethodBodies to StringFormat[CollectMethodBodies]

Inherited by implicit conversion Ensuring fromCollectMethodBodies to Ensuring[CollectMethodBodies]

Inherited by implicit conversion ArrowAssoc fromCollectMethodBodies to ArrowAssoc[CollectMethodBodies]

Ungrouped