object OpCode

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. OpCode
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class BinaryOp(dataType: DataType, op: BinaryOperation) extends OpCode with Product with Serializable

    Executes a binary operation.

  2. case class Cast(from: DataType, to: DataType) extends OpCode with Product with Serializable

    Casts types

  3. case class Constant(value: SingleElementBundle) extends OpCode with Product with Serializable

    Push a Constant to the stack.

  4. case class Equals(dataType: DataType) extends OpCode with Product with Serializable

    Compares two elements, pushes true if equal.

  5. case class Get(id: Int) extends OpCode with Product with Serializable

    Gets an input element and pushes it on to the stack.

  6. case class StructGet(idx: Int) extends OpCode with Product with Serializable

    Fetch an element from a struct.

  7. case class UnpackNullableJump(offset: Int, drop: Int = 0) extends OpCode with Product with Serializable

    Unpack a nullable value, if it's a null then emits a null and jump for a given offset

    Unpack a nullable value, if it's a null then emits a null and jump for a given offset

    drop

    if not null, then additional n elements are dropped from the stack

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val AndCode: String
  5. val ArrayGetCode: String
  6. val ArraySizeCode: String
  7. val BinaryOpCode: String
  8. val CastCode: String
  9. val ConstantCode: String
  10. val EqualsCode: String
  11. val GetCode: String
  12. val IsNullCode: String
  13. val NegCode: String
  14. val OrCode: String
  15. val PackNullableCode: String
  16. val PopCode: String
  17. val ReturnOnFalseCode: String
  18. val StructGetCode: String
  19. val UnpackNullableJumpCode: String
  20. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  21. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  22. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  24. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. object And extends OpCode with Product with Serializable

    Consumes two booleans, returns true if both are true.

  36. object ArrayGet extends OpCode with Product with Serializable
  37. object ArraySize extends OpCode with Product with Serializable
  38. object IsNull extends OpCode with Product with Serializable

    Consumes one value and returns true if it was null

  39. object Neg extends OpCode with Product with Serializable

    Negate a boolean expression.

  40. object Or extends OpCode with Product with Serializable

    Consumes two booleans, returns true if one of them is true.

  41. object PackNullable extends OpCode with Product with Serializable

    Wraps a value into a Nullable.

    Wraps a value into a Nullable. (Note: some platforms may do nothing here, if they dont distinguish between Nullable and Value itself.

  42. object Pop extends OpCode with Product with Serializable

    Just pop an element from the stack.

  43. object ReturnOnFalse extends OpCode with Product with Serializable

    Returns if false is on the stack, does not consume

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped