scala.tools.nsc.backend.icode

Primitives

trait Primitives extends AnyRef

Self Type
ICodes
Source
Primitives.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Primitives
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Type Members

  1. case class Arithmetic(op: ArithmeticOp, kind: TypeKind) extends Primitive with Product with Serializable

  2. class ArithmeticOp extends AnyRef

    This class represents an arithmetic operation.

  3. case class ArrayLength(kind: TypeKind) extends Primitive with Product with Serializable

  4. case class Comparison(op: ComparisonOp, kind: TypeKind) extends Primitive with Product with Serializable

  5. class ComparisonOp extends AnyRef

    This class represents a comparison operation.

  6. case class Conversion(src: TypeKind, dst: TypeKind) extends Primitive with Product with Serializable

  7. case class Logical(op: LogicalOp, kind: TypeKind) extends Primitive with Product with Serializable

  8. class LogicalOp extends AnyRef

    This class represents a logical operation.

  9. case class Negation(kind: TypeKind) extends Primitive with Product with Serializable

  10. class Primitive extends AnyRef

    This class represents a primitive operation.

  11. class PrimitivePrinter extends AnyRef

    Pretty printer for primitives

  12. case class Shift(op: ShiftOp, kind: TypeKind) extends Primitive with Product with Serializable

  13. class ShiftOp extends AnyRef

    This class represents a shift operation.

  14. case class StringConcat(el: TypeKind) extends Primitive with Product with Serializable

  15. case class Test(op: TestOp, kind: TypeKind, zero: Boolean) extends Primitive with Product with Serializable

  16. class TestOp extends AnyRef

    This class represents a test operation.

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

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

    An arithmetic addition operation

  7. object AND extends LogicalOp with Product with Serializable

    A bitwise AND operation

  8. object ASR extends ShiftOp with Product with Serializable

    An arithmetic shift to the right

  9. object CMP extends ComparisonOp with Product with Serializable

    A comparison operation with no default for NaNs

  10. object CMPG extends ComparisonOp with Product with Serializable

    A comparison operation with +1 default for NaNs

  11. object CMPL extends ComparisonOp with Product with Serializable

    A comparison operation with -1 default for NaNs

  12. object DIV extends ArithmeticOp with Product with Serializable

    An arithmetic division operation

  13. object EQ extends TestOp with Product with Serializable

    An equality test

  14. object EndConcat extends Primitive with Product with Serializable

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

  15. object GE extends TestOp with Product with Serializable

    A greater-than-or-equal test

  16. object GT extends TestOp with Product with Serializable

    A greater-than test

  17. object LE extends TestOp with Product with Serializable

    A less-than-or-equal test

  18. object LSL extends ShiftOp with Product with Serializable

    A logical shift to the left

  19. object LSR extends ShiftOp with Product with Serializable

    A logical shift to the right

  20. object LT extends TestOp with Product with Serializable

    A less-than test

  21. object MUL extends ArithmeticOp with Product with Serializable

    An arithmetic multiplication operation

  22. object NE extends TestOp with Product with Serializable

    A non-equality test

  23. object NOT extends ArithmeticOp with Product with Serializable

    Bitwise negation.

  24. object OR extends LogicalOp with Product with Serializable

    A bitwise OR operation

  25. object REM extends ArithmeticOp with Product with Serializable

    An arithmetic remainder operation

  26. object SUB extends ArithmeticOp with Product with Serializable

    An arithmetic subtraction operation

  27. object StartConcat extends Primitive with Product with Serializable

    Signals the beginning of a series of concatenations.

  28. object XOR extends LogicalOp with Product with Serializable

    A bitwise XOR operation

  29. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  30. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  31. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  34. final def getClass(): java.lang.Class[_]

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

    Definition Classes
    AnyRef → Any
  36. final def isInstanceOf[T0]: Boolean

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

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

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

    Definition Classes
    AnyRef
  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  41. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any