Class

scala.tools.nsc.backend.icode

ICodes

Related Doc: package icode

Permalink

abstract class ICodes extends Members with BasicBlocks with Opcodes with TypeStacks with TypeKinds with ExceptionHandlers with Primitives with Linearizers with Printers with Repository

Glue together ICode parts.

Source
ICodes.scala
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ICodes
  2. Repository
  3. Printers
  4. Linearizers
  5. Primitives
  6. ExceptionHandlers
  7. TypeKinds
  8. TypeStacks
  9. Opcodes
  10. BasicBlocks
  11. Members
  12. AnyRef
  13. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ICodes()

    Permalink

Type Members

  1. final case class ARRAY(elem: ICodes.TypeKind) extends ICodes.TypeKind with Product with Serializable

    Permalink
    Definition Classes
    TypeKinds
  2. case class Arithmetic(op: ICodes.ArithmeticOp, kind: ICodes.TypeKind) extends ICodes.Primitive with Product with Serializable

    Permalink
    Definition Classes
    Primitives
  3. class ArithmeticOp extends AnyRef

    Permalink

    This class represents an arithmetic operation.

    This class represents an arithmetic operation.

    Definition Classes
    Primitives
  4. case class ArrayLength(kind: ICodes.TypeKind) extends ICodes.Primitive with Product with Serializable

    Permalink
    Definition Classes
    Primitives
  5. case class BOXED(kind: ICodes.TypeKind) extends ICodes.TypeKind with Product with Serializable

    Permalink

    A boxed value.

    A boxed value.

    Definition Classes
    TypeKinds
  6. class BasicBlock extends ProgramPoint[ICodes.BasicBlock]

    Permalink

    This class represents a basic block.

    This class represents a basic block. Each basic block contains a list of instructions that are either executed all, or none. No jumps to/from the "middle" of the basic block are allowed (modulo exceptions).

    Definition Classes
    BasicBlocks
  7. class Code extends AnyRef

    Permalink

    This class represents the intermediate code of a method or other multi-block piece of code, like exception handlers.

    This class represents the intermediate code of a method or other multi-block piece of code, like exception handlers.

    Definition Classes
    Members
  8. case class Comparison(op: ICodes.ComparisonOp, kind: ICodes.TypeKind) extends ICodes.Primitive with Product with Serializable

    Permalink
    Definition Classes
    Primitives
  9. class ComparisonOp extends AnyRef

    Permalink

    This class represents a comparison operation.

    This class represents a comparison operation.

    Definition Classes
    Primitives
  10. case class Conversion(src: ICodes.TypeKind, dst: ICodes.TypeKind) extends ICodes.Primitive with Product with Serializable

    Permalink
    Definition Classes
    Primitives
  11. class DepthFirstLinerizer extends ICodes.Linearizer

    Permalink

    Linearize code using a depth first traversal.

    Linearize code using a depth first traversal.

    Definition Classes
    Linearizers
  12. class DumpLinearizer extends ICodes.Linearizer

    Permalink

    A 'dump' of the blocks in this method, which does not require any well-formedness of the basic blocks (like the last instruction being a jump).

    A 'dump' of the blocks in this method, which does not require any well-formedness of the basic blocks (like the last instruction being a jump).

    Definition Classes
    Linearizers
  13. class ExceptionHandler extends AnyRef

    Permalink
    Definition Classes
    ExceptionHandlers
  14. class Finalizer extends ICodes.ExceptionHandler

    Permalink
    Definition Classes
    ExceptionHandlers
  15. class IClass extends ICodes.IMember

    Permalink

    Represent a class in ICode

    Represent a class in ICode

    Definition Classes
    Members
  16. abstract class ICodePhase extends GlobalPhase

    Permalink

    A phase which works on icode.

  17. class IField extends ICodes.IMember

    Permalink

    Represent a field in ICode

    Represent a field in ICode

    Definition Classes
    Members
  18. trait IMember extends Ordered[ICodes.IMember]

    Permalink

    Common interface for IClass/IField/IMethod.

    Common interface for IClass/IField/IMethod.

    Definition Classes
    Members
  19. class IMethod extends ICodes.IMember

    Permalink

    Represents a method in ICode.

    Represents a method in ICode. Local variables contain both locals and parameters, similar to the way the JVM 'sees' them.

    Locals and parameters are added in reverse order, as they are kept in cons-lists. The 'builder' is responsible for reversing them and putting them back, when the generation is finished (GenICode does that).

    Definition Classes
    Members
  20. abstract class Instruction extends Cloneable

    Permalink

    This class represents an instruction of the intermediate code.

    This class represents an instruction of the intermediate code. Each case subclass will represent a specific operation.

    Definition Classes
    Opcodes
  21. abstract class Linearizer extends AnyRef

    Permalink
    Definition Classes
    Linearizers
  22. class Local extends AnyRef

    Permalink

    Represent local variables and parameters

    Represent local variables and parameters

    Definition Classes
    Members
  23. case class Logical(op: ICodes.LogicalOp, kind: ICodes.TypeKind) extends ICodes.Primitive with Product with Serializable

    Permalink
    Definition Classes
    Primitives
  24. class LogicalOp extends AnyRef

    Permalink

    This class represents a logical operation.

    This class represents a logical operation.

    Definition Classes
    Primitives
  25. case class Negation(kind: ICodes.TypeKind) extends ICodes.Primitive with Product with Serializable

    Permalink
    Definition Classes
    Primitives
  26. class NormalLinearizer extends ICodes.Linearizer with WorklistAlgorithm

    Permalink

    A simple linearizer which predicts all branches to take the 'success' branch and tries to schedule those blocks immediately after the test.

    A simple linearizer which predicts all branches to take the 'success' branch and tries to schedule those blocks immediately after the test. This is in sync with how 'while' statements are translated (if the test is 'true', the loop continues).

    Definition Classes
    Linearizers
  27. class Primitive extends AnyRef

    Permalink

    This class represents a primitive operation.

    This class represents a primitive operation.

    Definition Classes
    Primitives
  28. class PrimitivePrinter extends AnyRef

    Permalink

    Pretty printer for primitives

    Pretty printer for primitives

    Definition Classes
    Primitives
  29. final case class REFERENCE(cls: Global.Symbol) extends ICodes.TypeKind with Product with Serializable

    Permalink

    A class type.

    A class type.

    Definition Classes
    TypeKinds
  30. type Rep = collection.immutable.List[TypeKind]

    Permalink
    Definition Classes
    TypeStacks
  31. class ReversePostOrderLinearizer extends ICodes.Linearizer

    Permalink

    Linearize code in reverse post order.

    Linearize code in reverse post order. In fact, it does a post order traversal, prepending visited nodes to the list. This way, it is constructed already in reverse post order.

    Definition Classes
    Linearizers
  32. case class Shift(op: ICodes.ShiftOp, kind: ICodes.TypeKind) extends ICodes.Primitive with Product with Serializable

    Permalink
    Definition Classes
    Primitives
  33. class ShiftOp extends AnyRef

    Permalink

    This class represents a shift operation.

    This class represents a shift operation.

    Definition Classes
    Primitives
  34. case class StringConcat(el: ICodes.TypeKind) extends ICodes.Primitive with Product with Serializable

    Permalink
    Definition Classes
    Primitives
  35. case class Test(op: ICodes.TestOp, kind: ICodes.TypeKind, zero: Boolean) extends ICodes.Primitive with Product with Serializable

    Permalink
    Definition Classes
    Primitives
  36. sealed abstract class TestOp extends AnyRef

    Permalink

    This class represents a test operation.

    This class represents a test operation.

    Definition Classes
    Primitives
  37. class TextPrinter extends AnyRef

    Permalink
    Definition Classes
    Printers
  38. sealed abstract class TypeKind extends AnyRef

    Permalink

    This class represents a type kind.

    This class represents a type kind. Type kinds represent the types that the VM know (or the ICode view of what VMs know).

    Definition Classes
    TypeKinds
  39. class TypeStack extends AnyRef

    Permalink
    Definition Classes
    TypeStacks
  40. sealed abstract class ValueTypeKind extends ICodes.TypeKind

    Permalink
    Definition Classes
    TypeKinds

Abstract Value Members

  1. abstract val global: Global

    Permalink
    Definition Classes
    ICodesRepository

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ICodes to any2stringadd[ICodes] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ICodes, B)

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

    Permalink

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  6. object ADD extends ICodes.ArithmeticOp with Product with Serializable

    Permalink

    An arithmetic addition operation

    An arithmetic addition operation

    Definition Classes
    Primitives
  7. object AND extends ICodes.LogicalOp with Product with Serializable

    Permalink

    A bitwise AND operation

    A bitwise AND operation

    Definition Classes
    Primitives
  8. object ASR extends ICodes.ShiftOp with Product with Serializable

    Permalink

    An arithmetic shift to the right

    An arithmetic shift to the right

    Definition Classes
    Primitives
  9. lazy val AnyRefReference: TypeKind

    Permalink
  10. def ArrayN(elem: TypeKind, dims: Int): ARRAY

    Permalink
    Definition Classes
    TypeKinds
  11. object BOOL extends ICodes.ValueTypeKind with Product with Serializable

    Permalink

    A boolean value

    A boolean value

    Definition Classes
    TypeKinds
  12. object BYTE extends ICodes.ValueTypeKind with Product with Serializable

    Permalink

    A 1-byte signed integer

    A 1-byte signed integer

    Definition Classes
    TypeKinds
  13. lazy val BoxedUnitReference: TypeKind

    Permalink
  14. object CHAR extends ICodes.ValueTypeKind with Product with Serializable

    Permalink

    A 2-byte UNSIGNED integer

    A 2-byte UNSIGNED integer

    Definition Classes
    TypeKinds
  15. object CMP extends ICodes.ComparisonOp with Product with Serializable

    Permalink

    A comparison operation with no default for NaNs

    A comparison operation with no default for NaNs

    Definition Classes
    Primitives
  16. object CMPG extends ICodes.ComparisonOp with Product with Serializable

    Permalink

    A comparison operation with +1 default for NaNs

    A comparison operation with +1 default for NaNs

    Definition Classes
    Primitives
  17. object CMPL extends ICodes.ComparisonOp with Product with Serializable

    Permalink

    A comparison operation with -1 default for NaNs

    A comparison operation with -1 default for NaNs

    Definition Classes
    Primitives
  18. object ConcatClass extends ICodes.TypeKind with Product with Serializable

    Permalink

    Dummy TypeKind to represent the ConcatClass in a platform-independent way.

    Dummy TypeKind to represent the ConcatClass in a platform-independent way. For JVM it would have been a REFERENCE to 'StringBuffer'.

    Definition Classes
    TypeKinds
  19. object DIV extends ICodes.ArithmeticOp with Product with Serializable

    Permalink

    An arithmetic division operation

    An arithmetic division operation

    Definition Classes
    Primitives
  20. object DOUBLE extends ICodes.ValueTypeKind with Product with Serializable

    Permalink

    An 8-byte floating point number

    An 8-byte floating point number

    Definition Classes
    TypeKinds
  21. object EQ extends ICodes.TestOp with Product with Serializable

    Permalink

    An equality test

    An equality test

    Definition Classes
    Primitives
  22. object EndConcat extends ICodes.Primitive with Product with Serializable

    Permalink

    type: (buf) => STR jvm : It should turn the StringBuffer into a String.

    type: (buf) => STR jvm : It should turn the StringBuffer into a String.

    Definition Classes
    Primitives
  23. object FLOAT extends ICodes.ValueTypeKind with Product with Serializable

    Permalink

    A 4-byte floating point number

    A 4-byte floating point number

    Definition Classes
    TypeKinds
  24. object GE extends ICodes.TestOp with Product with Serializable

    Permalink

    A greater-than-or-equal test

    A greater-than-or-equal test

    Definition Classes
    Primitives
  25. object GT extends ICodes.TestOp with Product with Serializable

    Permalink

    A greater-than test

    A greater-than test

    Definition Classes
    Primitives
  26. object INT extends ICodes.ValueTypeKind with Product with Serializable

    Permalink

    A 4-byte signed integer

    A 4-byte signed integer

    Definition Classes
    TypeKinds
  27. object LE extends ICodes.TestOp with Product with Serializable

    Permalink

    A less-than-or-equal test

    A less-than-or-equal test

    Definition Classes
    Primitives
  28. object LONG extends ICodes.ValueTypeKind with Product with Serializable

    Permalink

    An 8-byte signed integer

    An 8-byte signed integer

    Definition Classes
    TypeKinds
  29. object LSL extends ICodes.ShiftOp with Product with Serializable

    Permalink

    A logical shift to the left

    A logical shift to the left

    Definition Classes
    Primitives
  30. object LSR extends ICodes.ShiftOp with Product with Serializable

    Permalink

    A logical shift to the right

    A logical shift to the right

    Definition Classes
    Primitives
  31. object LT extends ICodes.TestOp with Product with Serializable

    Permalink

    A less-than test

    A less-than test

    Definition Classes
    Primitives
  32. object MUL extends ICodes.ArithmeticOp with Product with Serializable

    Permalink

    An arithmetic multiplication operation

    An arithmetic multiplication operation

    Definition Classes
    Primitives
  33. object NE extends ICodes.TestOp with Product with Serializable

    Permalink

    A non-equality test

    A non-equality test

    Definition Classes
    Primitives
  34. object NOT extends ICodes.ArithmeticOp with Product with Serializable

    Permalink

    Bitwise negation.

    Bitwise negation.

    Definition Classes
    Primitives
  35. object NoBasicBlock extends ICodes.BasicBlock

    Permalink
    Definition Classes
    BasicBlocks
  36. object NoCode extends ICodes.Code

    Permalink
    Definition Classes
    Members
  37. object NoIMethod extends ICodes.IMethod

    Permalink
    Definition Classes
    Members
  38. lazy val NothingReference: TypeKind

    Permalink
  39. lazy val NullReference: TypeKind

    Permalink
  40. object OR extends ICodes.LogicalOp with Product with Serializable

    Permalink

    A bitwise OR operation

    A bitwise OR operation

    Definition Classes
    Primitives
  41. lazy val ObjectReference: TypeKind

    Permalink
  42. object REM extends ICodes.ArithmeticOp with Product with Serializable

    Permalink

    An arithmetic remainder operation

    An arithmetic remainder operation

    Definition Classes
    Primitives
  43. object SHORT extends ICodes.ValueTypeKind with Product with Serializable

    Permalink

    A 2-byte signed integer

    A 2-byte signed integer

    Definition Classes
    TypeKinds
  44. object SUB extends ICodes.ArithmeticOp with Product with Serializable

    Permalink

    An arithmetic subtraction operation

    An arithmetic subtraction operation

    Definition Classes
    Primitives
  45. object StartConcat extends ICodes.Primitive with Product with Serializable

    Permalink

    Signals the beginning of a series of concatenations.

    Signals the beginning of a series of concatenations. On the JVM platform, it should create a new StringBuffer

    Definition Classes
    Primitives
  46. lazy val StringReference: TypeKind

    Permalink
  47. object UNIT extends ICodes.ValueTypeKind with Product with Serializable

    Permalink

    The unit value

    The unit value

    Definition Classes
    TypeKinds
  48. object XOR extends ICodes.LogicalOp with Product with Serializable

    Permalink

    A bitwise XOR operation

    A bitwise XOR operation

    Definition Classes
    Primitives
  49. final val arilogCat: Int(4)

    Permalink
    Definition Classes
    Opcodes
  50. final val arraysCat: Int(9)

    Permalink
    Definition Classes
    Opcodes
  51. final def asInstanceOf[T0]: T0

    Permalink

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown

    ClassCastException if the receiver object is not an instance of the erasure of type T0.

  52. def available(sym: Global.Symbol): Boolean

    Permalink

    Is the given class available as icode?

    Is the given class available as icode?

    Definition Classes
    Repository
  53. final val castsCat: Int(5)

    Permalink
    Definition Classes
    Opcodes
  54. def checkValid(m: IMethod): Unit

    Permalink
  55. def checkerDebug(msg: String): Unit

    Permalink
  56. val classes: HashMap[Global.Symbol, IClass]

    Permalink

    The ICode representation of classes

  57. def clone(): AnyRef

    Permalink

    Create a copy of the receiver object.

    Create a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
    Note

    not specified by SLS as a member of AnyRef

  58. final val constCat: Int(3)

    Permalink
    Definition Classes
    Opcodes
  59. def dumpClassesAndAbort(msg: String): Nothing

    Permalink

    Print all classes and basic blocks.

    Print all classes and basic blocks. Used for debugging.

  60. def dumpMethodAndAbort(m: IMethod, b: BasicBlock): Nothing

    Permalink
  61. def dumpMethodAndAbort(m: IMethod, msg: String): Nothing

    Permalink
  62. def ensuring(cond: (ICodes) ⇒ Boolean, msg: ⇒ Any): ICodes

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

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

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

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

    Permalink

    Tests whether the argument (that) is a reference to the receiver object (this).

    Tests whether the argument (that) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

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

    Permalink

    The equality method for reference types.

    The equality method for reference types. Default implementation delegates to eq.

    See also equals in scala.Any.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

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

    Permalink

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
    Note

    not specified by SLS as a member of AnyRef

  69. final val fldsCat: Int(7)

    Permalink
    Definition Classes
    Opcodes
  70. def formatted(fmtstr: String): String

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

    Permalink

    A representation that corresponds to the dynamic class of the receiver object.

    A representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    Definition Classes
    AnyRef → Any
    Note

    not specified by SLS as a member of AnyRef

  72. def hashCode(): Int

    Permalink

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in scala.Any.

    returns

    the hash code value for this object.

    Definition Classes
    AnyRef → Any
  73. def icode(sym: Global.Symbol): Option[Global.icodes.IClass]

    Permalink

    The icode of the given class, if available

    The icode of the given class, if available

    Definition Classes
    Repository
  74. object icodeReader extends ICodeReader

    Permalink
  75. final def isInstanceOf[T0]: Boolean

    Permalink

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Definition Classes
    Any
  76. final val jumpsCat: Int(10)

    Permalink
    Definition Classes
    Opcodes
  77. val linearizer: Linearizer

    Permalink

    The ICode linearizer.

  78. object liveness extends Liveness

    Permalink
  79. def load(sym: Global.Symbol): Boolean

    Permalink

    Load bytecode for given symbol.

    Load bytecode for given symbol.

    Definition Classes
    Repository
  80. val loaded: Map[Global.Symbol, Global.icodes.IClass]

    Permalink
    Definition Classes
    Repository
  81. final val localsCat: Int(1)

    Permalink
    Definition Classes
    Opcodes
  82. def lub(a: TypeKind, b: TypeKind): TypeKind

    Permalink

    The least upper bound of two typekinds.

    The least upper bound of two typekinds. They have to be either REFERENCE or ARRAY kinds.

    The lub is based on the lub of scala types.

    Definition Classes
    TypeKinds
  83. final val mthdsCat: Int(8)

    Permalink
    Definition Classes
    Opcodes
  84. final def ne(arg0: AnyRef): Boolean

    Permalink

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  85. def newTextPrinter(): TextPrinter

    Permalink
  86. final def notify(): Unit

    Permalink

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  87. final def notifyAll(): Unit

    Permalink

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  88. final val objsCat: Int(6)

    Permalink
    Definition Classes
    Opcodes
  89. object opcodes

    Permalink
    Definition Classes
    Opcodes
  90. lazy val primitiveTypeMap: Map[Global.Symbol, TypeKind]

    Permalink

    A map from scala primitive Types to ICode TypeKinds

    A map from scala primitive Types to ICode TypeKinds

    Definition Classes
    TypeKinds
  91. object reachingDefinitions extends ReachingDefinitions

    Permalink
  92. final val retCat: Int(11)

    Permalink
    Definition Classes
    Opcodes
  93. def shouldCheckIcode: Boolean

    Permalink

    Debugging flag

  94. final val stackCat: Int(2)

    Permalink
    Definition Classes
    Opcodes
  95. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  96. def toString(): String

    Permalink

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    AnyRef → Any
  97. def toTypeKind(t: Global.Type): TypeKind

    Permalink

    Return the TypeKind of the given type

    Return the TypeKind of the given type

    Call to dealiasWiden fixes #3003 (follow type aliases). Otherwise, arrayOrClassType below would return ObjectReference.

    Definition Classes
    TypeKinds
  98. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  101. def [B](y: B): (ICodes, B)

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

Inherited from Repository

Inherited from Printers

Inherited from Linearizers

Inherited from Primitives

Inherited from ExceptionHandlers

Inherited from TypeKinds

Inherited from TypeStacks

Inherited from Opcodes

Inherited from BasicBlocks

Inherited from Members

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped