scala.tools.nsc.backend.jvm

BCodeGlue

abstract class BCodeGlue extends SubComponent

Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BCodeGlue
  2. SubComponent
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BCodeGlue()

Type Members

  1. final class BType extends AnyRef

  2. case class MethodNameAndType(mname: String, mdesc: String) extends Product with Serializable

  3. abstract class StdPhase extends GlobalPhase

    A standard phase template

Abstract Value Members

  1. abstract val global: Global

    The global environment; overridden by instantiation in Global.

    The global environment; overridden by instantiation in Global.

    Definition Classes
    SubComponent
  2. abstract def newPhase(prev: Phase): Phase

    The phase factory

    The phase factory

    Definition Classes
    SubComponent
  3. abstract val phaseName: String

    The name of the phase

    The name of the phase

    Definition Classes
    SubComponent
  4. abstract val runsAfter: List[String]

    Names of phases that must run before this phase.

    Names of phases that must run before this phase.

    Definition Classes
    SubComponent
  5. abstract val runsRightAfter: Option[String]

    Name of the phase that this phase must follow immediately.

    Name of the phase that this phase must follow immediately.

    Definition Classes
    SubComponent

Concrete 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 information
    This member is added by an implicit conversion from BCodeGlue to any2stringadd[BCodeGlue] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (BCodeGlue, B)

    Implicit information
    This member is added by an implicit conversion from BCodeGlue to ArrowAssoc[BCodeGlue] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  6. val BOOL: BType

  7. val BOXED_BOOLEAN: BType

  8. val BOXED_BYTE: BType

  9. val BOXED_CHAR: BType

  10. val BOXED_DOUBLE: BType

  11. val BOXED_FLOAT: BType

  12. val BOXED_INT: BType

  13. val BOXED_LONG: BType

  14. val BOXED_SHORT: BType

  15. val BOXED_UNIT: BType

  16. object BType

  17. val BYTE: BType

  18. val CHAR: BType

  19. val CT_NOTHING: BType

  20. val CT_NULL: BType

  21. val DOUBLE: BType

  22. val FLOAT: BType

  23. val INT: BType

  24. val LONG: BType

  25. val RT_NOTHING: BType

  26. val RT_NULL: BType

  27. val SHORT: BType

  28. val UNIT: BType

  29. final def afterOwnPhase[T](op: ⇒ T): T

    Definition Classes
    SubComponent
    Annotations
    @inline()
  30. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  31. val asmBoxTo: Map[BType, MethodNameAndType]

  32. val asmUnboxTo: Map[BType, MethodNameAndType]

  33. final def beforeOwnPhase[T](op: ⇒ T): T

    Definition Classes
    SubComponent
    Annotations
    @inline()
  34. def brefType(iname: Global.TypeName): BType

  35. def brefType(iname: String): BType

  36. val classLiteral: Map[BType, BType]

  37. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. def enabled: Boolean

    Is this component enabled? Default is true.

    Is this component enabled? Default is true.

    Definition Classes
    SubComponent
  39. def ensuring(cond: (BCodeGlue) ⇒ Boolean, msg: ⇒ Any): BCodeGlue

    Implicit information
    This member is added by an implicit conversion from BCodeGlue to Ensuring[BCodeGlue] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  40. def ensuring(cond: (BCodeGlue) ⇒ Boolean): BCodeGlue

    Implicit information
    This member is added by an implicit conversion from BCodeGlue to Ensuring[BCodeGlue] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  41. def ensuring(cond: Boolean, msg: ⇒ Any): BCodeGlue

    Implicit information
    This member is added by an implicit conversion from BCodeGlue to Ensuring[BCodeGlue] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  42. def ensuring(cond: Boolean): BCodeGlue

    Implicit information
    This member is added by an implicit conversion from BCodeGlue to Ensuring[BCodeGlue] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  43. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  44. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  45. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  46. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from BCodeGlue to StringFormat[BCodeGlue] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  47. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  48. def hashCode(): Int

    SubComponent are added to a HashSet and two phases are the same if they have the same name

    SubComponent are added to a HashSet and two phases are the same if they have the same name

    Definition Classes
    SubComponent → AnyRef → Any
  49. val initial: Boolean

    True if this phase runs before all other phases.

    True if this phase runs before all other phases. Usually, parser.

    Definition Classes
    SubComponent
  50. val internal: Boolean

    True if this phase is not provided by a plug-in.

    True if this phase is not provided by a plug-in.

    Definition Classes
    SubComponent
  51. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  52. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  53. final def notify(): Unit

    Definition Classes
    AnyRef
  54. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  55. def ownPhase: Phase

    The phase corresponding to this subcomponent in the current compiler run

    The phase corresponding to this subcomponent in the current compiler run

    Definition Classes
    SubComponent
  56. def phaseNewFlags: Long

    New flags defined by the phase which are not valid before

    New flags defined by the phase which are not valid before

    Definition Classes
    SubComponent
  57. def phaseNextFlags: Long

    New flags defined by the phase which are not valid until immediately after it

    New flags defined by the phase which are not valid until immediately after it

    Definition Classes
    SubComponent
  58. val requires: List[String]

    Names of phases required by this component.

    Names of phases required by this component. Default is Nil.

    Definition Classes
    SubComponent
  59. val runsBefore: List[String]

    Names of phases that must run after this phase.

    Names of phases that must run after this phase. Default is Nil.

    Definition Classes
    SubComponent
  60. val srBooleanRef: BType

  61. val srByteRef: BType

  62. val srCharRef: BType

  63. val srDoubleRef: BType

  64. val srFloatRef: BType

  65. val srIntRef: BType

  66. val srLongRef: BType

  67. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  68. val terminal: Boolean

    True if this phase runs after all other phases.

    True if this phase runs after all other phases. Usually, terminal.

    Definition Classes
    SubComponent
  69. def toString(): String

    Definition Classes
    AnyRef → Any
  70. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  71. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  72. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  73. def [B](y: B): (BCodeGlue, B)

    Implicit information
    This member is added by an implicit conversion from BCodeGlue to ArrowAssoc[BCodeGlue] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from SubComponent

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from BCodeGlue to any2stringadd[BCodeGlue]

Inherited by implicit conversion StringFormat from BCodeGlue to StringFormat[BCodeGlue]

Inherited by implicit conversion Ensuring from BCodeGlue to Ensuring[BCodeGlue]

Inherited by implicit conversion ArrowAssoc from BCodeGlue to ArrowAssoc[BCodeGlue]

Ungrouped