Package

org.opalj.br

instructions

Permalink

package instructions

Common instruction sequences.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. instructions
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. case class ALOAD(lvIndex: Int) extends LoadLocalVariableInstruction with ALoadInstruction with ExplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load reference from local variable.

  2. trait ALoadInstruction extends LoadLocalVariableInstruction

    Permalink

    Load reference from local variable.

  3. case class ANEWARRAY(componentType: ReferenceType) extends CreateNewOneDimensionalArrayInstruction with Product with Serializable

    Permalink

    Create new array of reference.

  4. case class ASTORE(lvIndex: Int) extends AStoreInstruction with ExplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store reference into local variable.

  5. abstract class AStoreInstruction extends StoreLocalVariableInstruction

    Permalink

    An instruction that stores the top-most stack value with computational type reference value OR return address in a local variable.

  6. abstract class AddInstruction extends StackBasedArithmeticInstruction with BinaryArithmeticInstruction

    Permalink

    An instruction that adds two primitive values.

  7. trait ArithmeticInstruction extends Instruction

    Permalink

    An arithmetic instruction as defined by the JVM specification.

  8. abstract class ArrayAccessInstruction extends Instruction with ConstantLengthInstruction

    Permalink

    An instruction that loads or stores a value in an array.

  9. abstract class ArrayLoadInstruction extends ArrayAccessInstruction

    Permalink

    An instruction that loads a value stored in an array.

  10. abstract class ArrayStoreInstruction extends ArrayAccessInstruction

    Permalink

    An instruction that stores a value in an array.

  11. class BIPUSH extends LoadConstantInstruction[Int]

    Permalink

    Push byte.

    Push byte.

    Note

    BIPUSH instructions are inherently cached; two BIPUSH instructions that push the same value are always reference identical.

  12. trait BinaryArithmeticInstruction extends ArithmeticInstruction

    Permalink

    Implemented by all arithmetic instructions that have two (runtime-dependent) operands.

  13. abstract class BitwiseInstruction extends StackBasedArithmeticInstruction with BinaryArithmeticInstruction

    Permalink

    An instruction that performs a manipulation of a value's bits.

  14. case class CHECKCAST(referenceType: ReferenceType) extends Instruction with ConstantLengthInstruction with Product with Serializable

    Permalink

    Check whether object is of given type.

  15. abstract class ComparisonInstruction extends StackBasedArithmeticInstruction with BinaryArithmeticInstruction

    Permalink

    An instruction that compares two primitive values.

  16. abstract class CompoundConditionalBranchInstruction extends ConditionalBranchInstruction

    Permalink

    Common super class of all compound conditional branch instructions (switch instructions!).

  17. abstract class ConditionalBranchInstruction extends ControlTransferInstruction

    Permalink

    Common super class of all conditional branch instructions.

  18. trait ConstantLengthInstruction extends Instruction

    Permalink

    Common interface of all instructions that have a fixed length (including operands!).

    Common interface of all instructions that have a fixed length (including operands!).

    Hence, instructions that may be modified by wide or where the length depends on the position in the code array are never ConstantLengthInstructions.

  19. abstract class ControlTransferInstruction extends Instruction

    Permalink

    Common superclass of all control transfer instructions.

  20. abstract class CreateNewArrayInstruction extends Instruction with ConstantLengthInstruction

    Permalink

    An instruction to create a new array.

  21. abstract class CreateNewOneDimensionalArrayInstruction extends CreateNewArrayInstruction

    Permalink

    An instruction to create a new one-dimensional array.

  22. trait DConstInstruction extends LoadConstantInstruction[Double] with ImplicitValue

    Permalink

  23. case class DLOAD(lvIndex: Int) extends LoadLocalVariableInstruction with DLoadInstruction with ExplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load double from local variable.

  24. trait DLoadInstruction extends LoadLocalVariableInstruction

    Permalink

    Load double from local variable.

  25. case class DSTORE(lvIndex: Int) extends StoreLocalVariableInstruction with DStoreInstruction with ExplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store double into local variable.

  26. trait DStoreInstruction extends StoreLocalVariableInstruction

    Permalink

    Store long into local variable.

  27. abstract class DivideInstruction extends StackBasedArithmeticInstruction with BinaryArithmeticInstruction

    Permalink

    An instruction that divides two primitive values.

  28. trait ExplicitLocalVariableIndex extends Instruction

    Permalink

    Trait that can be mixed in if the local variable index of a load or store instruction ((a,i,l,...)load/store_X) is not predefined as part of the instruction.

  29. sealed trait ExpressionResult extends AnyRef

    Permalink

    Load reference from array.

  30. trait FConstInstruction extends LoadConstantInstruction[Float] with ImplicitValue

    Permalink

  31. case class FLOAD(lvIndex: Int) extends LoadLocalVariableInstruction with FLoadInstruction with ExplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load float from local variable.

  32. trait FLoadInstruction extends LoadLocalVariableInstruction

    Permalink

    Load float from local variable.

  33. case class FSTORE(lvIndex: Int) extends StoreLocalVariableInstruction with FStoreInstruction with ExplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store float into local variable.

  34. trait FStoreInstruction extends StoreLocalVariableInstruction

    Permalink

    Store float into local variable.

  35. abstract class FieldAccess extends Instruction with ConstantLengthInstruction

    Permalink

    Instructions that access a class' field.

  36. abstract class FieldReadAccess extends FieldAccess

    Permalink

    Common superclass of all field read instructions.

  37. abstract class FieldWriteAccess extends FieldAccess

    Permalink

    Common superclass of all FieldWriteAccess instructions.

  38. abstract class FloatingPointDivideInstruction extends DivideInstruction

    Permalink

    An instruction that divides two primitive floating point values.

  39. abstract class FloatingPointRemainderInstruction extends RemainderInstruction

    Permalink

    An instruction that calculates the remainder of two primitive floating point values.

  40. case class GETFIELD(declaringClass: ObjectType, name: String, fieldType: FieldType) extends FieldReadAccess with Product with Serializable

    Permalink

    Fetch field from object.

    Fetch field from object.

    NOTE

    Getting an Array's length is translated to the special arraylength instruction. E.g., in the following case:

    Object[] os = ...; os.length

    os.length is determined using the special arraylength instruction.

    See also

    org.opalj.br.instructions.FieldAccess for additional pattern matching support.

  41. case class GETSTATIC(declaringClass: ObjectType, name: String, fieldType: FieldType) extends FieldReadAccess with Product with Serializable

    Permalink

    Getstatic field from class.

    Getstatic field from class.

    See also

    org.opalj.br.instructions.FieldAccess for additional pattern matching support.

  42. case class GOTO(branchoffset: Int) extends GotoInstruction with Product with Serializable

    Permalink

    Branch always.

  43. case class GOTO_W(branchoffset: Int) extends GotoInstruction with Product with Serializable

    Permalink

    Branch always.

  44. abstract class GotoInstruction extends UnconditionalBranchInstruction

    Permalink

    Super class of the Goto instructions.

  45. trait IConstInstruction extends LoadConstantInstruction[Int] with ImplicitValue

    Permalink

  46. abstract class IF0Instruction extends SimpleConditionalBranchInstruction

    Permalink

    Common superclass of all instructions that perform a comparison of an integer value against the constant value 0.

  47. abstract class IFACMPInstruction extends SimpleConditionalBranchInstruction

    Permalink

    Common superclass of all instructions that perform a conditional jump based on the comparison of reference values.

  48. case class IFEQ(branchoffset: Int) extends IF0Instruction with Product with Serializable

    Permalink

    Branch if int comparison with zero succeeds; succeeds if and only if value = 0.

  49. case class IFGE(branchoffset: Int) extends IF0Instruction with Product with Serializable

    Permalink

    Branch if int comparison with zero succeeds; succeeds if and only if value ≥ 0.

  50. case class IFGT(branchoffset: Int) extends IF0Instruction with Product with Serializable

    Permalink

    Branch if int comparison with zero succeeds; succeeds if and only if value > 0.

  51. abstract class IFICMPInstruction extends SimpleConditionalBranchInstruction

    Permalink

    Common superclass of all instructions that perform a conditional jump based on the comparison of two integer values.

  52. case class IFLE(branchoffset: Int) extends IF0Instruction with Product with Serializable

    Permalink

    Branch if int comparison with zero succeeds; succeeds if and only if value ≤ 0.

  53. case class IFLT(branchoffset: Int) extends IF0Instruction with Product with Serializable

    Permalink

    Branch if int comparison with zero succeeds; succeeds if and only if value < 0.

  54. case class IFNE(branchoffset: Int) extends IF0Instruction with Product with Serializable

    Permalink

    Branch if int comparison with zero succeeds; succeeds if and only if value ≠ 0.

  55. case class IFNONNULL(branchoffset: Int) extends IFXNullInstruction with Product with Serializable

    Permalink

    Branch if reference is not null.

  56. case class IFNULL(branchoffset: Int) extends IFXNullInstruction with Product with Serializable

    Permalink

    Branch if reference is null.

  57. abstract class IFXNullInstruction extends SimpleConditionalBranchInstruction

    Permalink

    Common superclass of all instructions that perform a conditional jump based on an explicit comparison with null.

  58. case class IF_ACMPEQ(branchoffset: Int) extends IFACMPInstruction with Product with Serializable

    Permalink

    Branch if reference comparison succeeds; succeeds if and only if value1 == value2.

  59. case class IF_ACMPNE(branchoffset: Int) extends IFACMPInstruction with Product with Serializable

    Permalink

    Branch if reference comparison succeeds; succeeds if and only if value1 ≠ value2.

  60. case class IF_ICMPEQ(branchoffset: Int) extends IFICMPInstruction with Product with Serializable

    Permalink

    Branch if int comparison succeeds; succeeds if and only if value1 = value2.

  61. case class IF_ICMPGE(branchoffset: Int) extends IFICMPInstruction with Product with Serializable

    Permalink

    Branch if int comparison succeeds; succeeds if and only if value1 ≥ value2.

  62. case class IF_ICMPGT(branchoffset: Int) extends IFICMPInstruction with Product with Serializable

    Permalink

    Branch if int comparison succeeds; succeeds if and only if value1 > value2.

  63. case class IF_ICMPLE(branchoffset: Int) extends IFICMPInstruction with Product with Serializable

    Permalink

    Branch if int comparison succeeds; succeeds if and only if value1 ≤ value2.

  64. case class IF_ICMPLT(branchoffset: Int) extends IFICMPInstruction with Product with Serializable

    Permalink

    Branch if int comparison succeeds; succeeds if and only if value1 < value2.

  65. case class IF_ICMPNE(branchoffset: Int) extends IFICMPInstruction with Product with Serializable

    Permalink

    Branch if int comparison succeeds; succeeds if and only if value1 ≠ value2.

  66. case class IINC(lvIndex: Int, constValue: Int) extends UnaryArithmeticInstruction with Product with Serializable

    Permalink

    Increment local variable by constant.

  67. case class ILOAD(lvIndex: Int) extends LoadLocalVariableInstruction with ILoadInstruction with ExplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load int from local variable.

  68. trait ILoadInstruction extends LoadLocalVariableInstruction

    Permalink

    Load int from local variable.

  69. case class INSTANCEOF(referenceType: ReferenceType) extends Instruction with ConstantLengthInstruction with Product with Serializable

    Permalink

    Determine if object is of given type.

  70. trait INVOKEDYNAMIC extends InvocationInstruction

    Permalink

    Represents an invokedynamic instruction.

  71. case class INVOKEINTERFACE(declaringClass: ObjectType, name: String, methodDescriptor: MethodDescriptor) extends VirtualMethodInvocationInstruction with Product with Serializable

    Permalink

    Invoke interface method.

  72. case class INVOKESPECIAL(declaringClass: ObjectType, name: String, methodDescriptor: MethodDescriptor) extends NonVirtualMethodInvocationInstruction with Product with Serializable

    Permalink

    Invoke instance method; special handling for superclass, private, and instance initialization method invocations.

  73. case class INVOKESTATIC(declaringClass: ObjectType, name: String, methodDescriptor: MethodDescriptor) extends NonVirtualMethodInvocationInstruction with Product with Serializable

    Permalink

    Invoke a class (static) method.

  74. case class INVOKEVIRTUAL(declaringClass: ReferenceType, name: String, methodDescriptor: MethodDescriptor) extends VirtualMethodInvocationInstruction with Product with Serializable

    Permalink

    Invoke instance method; dispatch based on class.

  75. case class ISTORE(lvIndex: Int) extends StoreLocalVariableInstruction with IStoreInstruction with ExplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store int into local variable.

  76. trait IStoreInstruction extends StoreLocalVariableInstruction

    Permalink
  77. trait ImplicitLocalVariableIndex extends ConstantLengthInstruction

    Permalink

    Trait that is mixed in if the local variable index of a load or store instruction ((a,i,l,...)load/store_X) is predefined.

  78. trait ImplicitValue extends ConstantLengthInstruction

    Permalink

    Trait that can be mixed in if the value of a instruction is implicitly defined.

  79. trait Instruction extends AnyRef

    Permalink

    Common superclass of all instructions.

  80. abstract class IntegerDivideInstruction extends DivideInstruction

    Permalink

    An instruction that divides two primitive integer values (long or in).

  81. abstract class IntegerRemainderInstruction extends RemainderInstruction

    Permalink

    An instruction that the remainder of an integer values (long or in).

  82. abstract class InvocationInstruction extends Instruction with ConstantLengthInstruction

    Permalink

    An instruction that "invokes" something.

    An instruction that "invokes" something. This can be, e.g., the invocation of a method or – using invokedynamic – the read of a field value.

  83. case class JDK8_LAMBDA_INVOKEDYNAMIC(bootstrapMethod: BootstrapMethod, name: String, methodDescriptor: MethodDescriptor, invocationResult: ObjectType) extends InvocationInstruction with INVOKEDYNAMIC with Product with Serializable

    Permalink

    Represents an invokedynamic instruction that is a product of Oracle's JDK8 compiler.

  84. case class JSR(branchoffset: Int) extends JSRInstruction with Product with Serializable

    Permalink

    Jump subroutine.

  85. abstract class JSRInstruction extends UnconditionalBranchInstruction

    Permalink

    Jump subroutine.

  86. case class JSR_W(branchoffset: Int) extends JSRInstruction with Product with Serializable

    Permalink

    Jump subroutine.

  87. trait LConstInstruction extends LoadConstantInstruction[Long] with ImplicitValue

    Permalink

  88. sealed abstract class LDC[T] extends LoadConstantInstruction[T]

    Permalink

    Push item from runtime constant pool.

  89. sealed abstract class LDC2_W[T] extends LoadConstantInstruction[T]

    Permalink

    Push long or double from runtime constant pool.

  90. sealed abstract class LDC_W[T] extends LoadConstantInstruction[T]

    Permalink

    Push item from runtime constant pool.

  91. case class LLOAD(lvIndex: Int) extends LoadLocalVariableInstruction with LLoadInstruction with ExplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load long from local variable.

  92. trait LLoadInstruction extends LoadLocalVariableInstruction

    Permalink

    Load long from local variable.

  93. case class LOOKUPSWITCH(defaultOffset: Int, npairs: IndexedSeq[(Int, Int)]) extends CompoundConditionalBranchInstruction with Product with Serializable

    Permalink

    Access jump table by key match and jump.

    Access jump table by key match and jump.

    npairs

    A list of tuples where the first value is the match value and the second value is the jump offset.

  94. case class LSTORE(lvIndex: Int) extends StoreLocalVariableInstruction with LStoreInstruction with ExplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store long into local variable.

  95. trait LStoreInstruction extends StoreLocalVariableInstruction

    Permalink

    Store long into local variable.

  96. final case class LoadClass(value: ReferenceType) extends LDC[ReferenceType] with Product with Serializable

    Permalink

    Note

    To match LoadClass and LoadClass_W instructions you can use LDCClass.

  97. final case class LoadClass_W(value: ReferenceType) extends LDC_W[ReferenceType] with Product with Serializable

    Permalink
  98. abstract class LoadConstantInstruction[T] extends Instruction with ConstantLengthInstruction

    Permalink

    Puts a constant value on the stack.

  99. final case class LoadDouble(value: Double) extends LDC2_W[Double] with Product with Serializable

    Permalink
  100. final case class LoadFloat(value: Float) extends LDC[Float] with Product with Serializable

    Permalink

    Note

    To match LoadFloat and LoadFloat_W instructions you can use LDCFloat.

  101. final case class LoadFloat_W(value: Float) extends LDC_W[Float] with Product with Serializable

    Permalink
  102. final case class LoadInt(value: Int) extends LDC[Int] with Product with Serializable

    Permalink

    Note

    To match LoadInt and LoadInt_W instructions you can use LDCInt.

  103. final case class LoadInt_W(value: Int) extends LDC_W[Int] with Product with Serializable

    Permalink
  104. abstract class LoadLocalVariableInstruction extends Instruction

    Permalink

    An instruction that loads a local variable and puts it on top of the stack.

  105. final case class LoadLong(value: Long) extends LDC2_W[Long] with Product with Serializable

    Permalink
  106. final case class LoadMethodHandle(value: MethodHandle) extends LDC[MethodHandle] with Product with Serializable

    Permalink

    Note

    To match LoadMethodHandle and LoadMethodHandle_W instructions you can use LDCMethodHandle.

  107. final case class LoadMethodHandle_W(value: MethodHandle) extends LDC_W[MethodHandle] with Product with Serializable

    Permalink
  108. final case class LoadMethodType(value: MethodDescriptor) extends LDC[MethodDescriptor] with Product with Serializable

    Permalink

    Note

    To match LoadMethodType and LoadMethodType_W instructions you can use LDCMethodType.

  109. final case class LoadMethodType_W(value: MethodDescriptor) extends LDC_W[MethodDescriptor] with Product with Serializable

    Permalink
  110. final case class LoadString(value: String) extends LDC[String] with Product with Serializable

    Permalink

    Note

    To match LoadString and LoadString_W instructions you can use LDCString.

  111. final case class LoadString_W(value: String) extends LDC_W[String] with Product with Serializable

    Permalink
  112. case class MULTIANEWARRAY(componentType: ArrayType, dimensions: Int) extends CreateNewArrayInstruction with Product with Serializable

    Permalink

    Create new multidimensional array.

  113. abstract class MethodInvocationInstruction extends InvocationInstruction

    Permalink

    An instruction that invokes another method (does not consider invokedynamic instructions.)

  114. abstract class MultiplyInstruction extends StackBasedArithmeticInstruction with BinaryArithmeticInstruction

    Permalink

    An instruction that multiplies two primitive values.

  115. case class NEW(objectType: ObjectType) extends Instruction with ConstantLengthInstruction with Product with Serializable

    Permalink

    Create new object.

  116. sealed abstract class NEWARRAY extends CreateNewOneDimensionalArrayInstruction

    Permalink

    Create new array handler.

  117. abstract class NegateInstruction extends StackBasedArithmeticInstruction with UnaryArithmeticInstruction

    Permalink

    An instruction that negates a primitive value.

  118. abstract class NonVirtualMethodInvocationInstruction extends MethodInvocationInstruction

    Permalink

    Invocation of a method where the target method is statically resolved.

  119. abstract class NumericConversionInstruction extends Instruction with ConstantLengthInstruction

    Permalink

    An instruction that converts between a numeric value of primitive type A and primitive type B.

  120. case class PUTFIELD(declaringClass: ObjectType, name: String, fieldType: FieldType) extends FieldWriteAccess with Product with Serializable

    Permalink

    Set field in object.

    Set field in object.

    See also

    org.opalj.br.instructions.FieldAccess for additional pattern matching support.

  121. case class PUTSTATIC(declaringClass: ObjectType, name: String, fieldType: FieldType) extends FieldWriteAccess with Product with Serializable

    Permalink

    Set static field in class.

    Set static field in class.

    See also

    org.opalj.br.instructions.FieldAccess for additional pattern matching support.

  122. trait PopInstruction extends StackManagementInstruction

    Permalink

    Pops the (two) top operand stack value(s).

  123. trait PrimitiveArrayAccess extends AnyRef

    Permalink

    Trait that can be mixed in if the value of a instruction is implicitly defined.

  124. abstract class PrimitiveArrayStoreInstruction extends ArrayStoreInstruction

    Permalink

    An instruction that stores a primitive value in an array of primitive values.

  125. case class RET(lvIndex: Int) extends ControlTransferInstruction with ConstantLengthInstruction with Product with Serializable

    Permalink

    Return from subroutine.

    Return from subroutine.

    Note

    A RET instruction always returns to an instruction immediately following a JSR(_W) instruction.

  126. case class Register(index: Int) extends ExpressionResult with Product with Serializable

    Permalink
  127. abstract class RemainderInstruction extends StackBasedArithmeticInstruction with BinaryArithmeticInstruction

    Permalink

    An instruction that calculates the remainder of a value.

  128. abstract class ReturnInstruction extends Instruction with ConstantLengthInstruction

    Permalink

    An instruction that returns from a method.

  129. abstract class ReturnValueInstruction extends ReturnInstruction

    Permalink

    An instruction that returns a value calculated by the method.

  130. case class SIPUSH(value: Int) extends LoadConstantInstruction[Int] with Product with Serializable

    Permalink

    Push short.

  131. abstract class ShiftInstruction extends StackBasedArithmeticInstruction with BinaryArithmeticInstruction

    Permalink

    An instruction that adds two primitive values.

  132. abstract class SimpleConditionalBranchInstruction extends ConditionalBranchInstruction with ConstantLengthInstruction

    Permalink

    Common superclass of all instructions that perform a conditional jump.

  133. abstract class StackBasedArithmeticInstruction extends ArithmeticInstruction with ConstantLengthInstruction

    Permalink

    An arithmetic instruction that takes all its operands from the stack and, hence, the constant length "1"; i.e., only one byte is needed to encode the instruction.

  134. abstract class StackManagementInstruction extends Instruction with ConstantLengthInstruction

    Permalink

    An instruction that directly manipulates the operand stack by popping, swapping or duplicating values.

  135. abstract class StoreLocalVariableInstruction extends Instruction

    Permalink

    An instruction that stores the top-most stack value in a local variable.

  136. abstract class SubtractInstruction extends StackBasedArithmeticInstruction with BinaryArithmeticInstruction

    Permalink

    An instruction that subtracts two primitive values.

  137. abstract class SynchronizationInstruction extends Instruction with ConstantLengthInstruction

    Permalink

    A synchronization related instruction.

  138. case class TABLESWITCH(defaultOffset: Int, low: Int, high: Int, jumpOffsets: IndexedSeq[Int]) extends CompoundConditionalBranchInstruction with Product with Serializable

    Permalink

    Access jump table by index and jump.

  139. case class UNRESOLVED_INVOKEDYNAMIC(bootstrapMethod: BootstrapMethod, name: String, methodDescriptor: MethodDescriptor) extends InvocationInstruction with INVOKEDYNAMIC with Product with Serializable

    Permalink

    Represents an invokedynamic instruction where we have no further, immediately usable information regarding the target.

  140. trait UnaryArithmeticInstruction extends ArithmeticInstruction

    Permalink

    Implemented by all arithmetic instructions that have one (runtime-dependent) operand.

    Implemented by all arithmetic instructions that have one (runtime-dependent) operand. E.g. the NegateInstruction and IINC instructions.

  141. abstract class UnconditionalBranchInstruction extends ControlTransferInstruction with ConstantLengthInstruction

    Permalink

    Super class of all bytecode instructions that always jump to a specific target instruction.

  142. abstract class VirtualMethodInvocationInstruction extends MethodInvocationInstruction

    Permalink

    Common superclass of all Invoke instructions that require virtual method resolution.

Value Members

  1. object AALOAD extends ArrayLoadInstruction with Product with Serializable

    Permalink

    Load reference from array.

  2. object AASTORE extends ArrayStoreInstruction with Product with Serializable

    Permalink

    Store into reference array.

  3. object ACONST_NULL extends LoadConstantInstruction[Null] with ImplicitValue with Product with Serializable

    Permalink

    Push null.

  4. object ALOAD extends Serializable

    Permalink
  5. object ALOAD_0 extends LoadLocalVariableInstruction with ALoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load reference from local variable with index 0.

  6. object ALOAD_1 extends LoadLocalVariableInstruction with ALoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load reference from local variable with index 1.

  7. object ALOAD_2 extends LoadLocalVariableInstruction with ALoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load reference from local variable with index 2.

  8. object ALOAD_3 extends LoadLocalVariableInstruction with ALoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load reference from local variable with index 3.

  9. object ALoadInstruction

    Permalink
  10. object ANEWARRAY extends Serializable

    Permalink
  11. object ARETURN extends ReturnValueInstruction with Product with Serializable

    Permalink

    Return reference from method.

  12. object ARRAYLENGTH extends Instruction with ConstantLengthInstruction with Product with Serializable

    Permalink

    Get length of array.

  13. object ASTORE extends Serializable

    Permalink
  14. object ASTORE_0 extends AStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store reference into local variable with index 0.

  15. object ASTORE_1 extends AStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store reference into local variable with index 1.

  16. object ASTORE_2 extends AStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store reference into local variable with index 2.

  17. object ASTORE_3 extends AStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store reference into local variable with index 3.

  18. object AStoreInstruction

    Permalink
  19. object ATHROW extends Instruction with Product with Serializable

    Permalink

    Throw exception or error.

  20. object ArithmeticInstruction

    Permalink

    Defines values and methods common to arithmetic instructions.

  21. object ArrayLoadInstruction

    Permalink

    Defines common properties of instructions that load values stored in arrays.

  22. object BALOAD extends ArrayLoadInstruction with PrimitiveArrayAccess with Product with Serializable

    Permalink

    Load byte or boolean from array.

  23. object BASTORE extends PrimitiveArrayStoreInstruction with PrimitiveArrayAccess with Product with Serializable

    Permalink

    Store into byte or boolean array.

  24. object BIPUSH

    Permalink
  25. object BinaryArithmeticInstruction

    Permalink
  26. object CALOAD extends ArrayLoadInstruction with PrimitiveArrayAccess with Product with Serializable

    Permalink

    Load char from array.

  27. object CASTORE extends PrimitiveArrayStoreInstruction with PrimitiveArrayAccess with Product with Serializable

    Permalink

    Store into char array.

  28. object CHECKCAST extends Serializable

    Permalink
  29. object ClassFileFactory

    Permalink

    Provides helper methods to facilitate the generation of classes.

    Provides helper methods to facilitate the generation of classes. In particular, functionality to create transparent proxy classes is provided.

  30. object CreateNewArrayInstruction

    Permalink
  31. object D2F extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert double to float.

  32. object D2I extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert double to int.

  33. object D2L extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert double to long.

  34. object DADD extends AddInstruction with Product with Serializable

    Permalink

    Add double.

  35. object DALOAD extends ArrayLoadInstruction with PrimitiveArrayAccess with Product with Serializable

    Permalink

    Load double from array.

  36. object DASTORE extends PrimitiveArrayStoreInstruction with PrimitiveArrayAccess with Product with Serializable

    Permalink

    Store into double array.

  37. object DCMPG extends ComparisonInstruction with Product with Serializable

    Permalink

    Compare double.

  38. object DCMPL extends ComparisonInstruction with Product with Serializable

    Permalink

    Compare double.

  39. object DCONST_0 extends LoadConstantInstruction[Double] with DConstInstruction with Product with Serializable

    Permalink

    Push the double constant 0.0 onto the operand stack.

  40. object DCONST_1 extends LoadConstantInstruction[Double] with DConstInstruction with Product with Serializable

    Permalink

    Push the double constant 1.0 onto the operand stack.

  41. object DConstInstruction

    Permalink
  42. object DDIV extends FloatingPointDivideInstruction with Product with Serializable

    Permalink

    Divide double.

  43. object DLOAD extends Serializable

    Permalink
  44. object DLOAD_0 extends LoadLocalVariableInstruction with DLoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load double from local variable with index 0.

  45. object DLOAD_1 extends LoadLocalVariableInstruction with DLoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load double from local variable with index 1.

  46. object DLOAD_2 extends LoadLocalVariableInstruction with DLoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load double from local variable with index 2.

  47. object DLOAD_3 extends LoadLocalVariableInstruction with DLoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load double from local variable with index 3.

  48. object DLoadInstruction

    Permalink
  49. object DMUL extends MultiplyInstruction with Product with Serializable

    Permalink

    Multiply double.

  50. object DNEG extends NegateInstruction with Product with Serializable

    Permalink

    Negate double.

  51. object DREM extends FloatingPointRemainderInstruction with Product with Serializable

    Permalink

    Remainder double.

  52. object DRETURN extends ReturnValueInstruction with Product with Serializable

    Permalink

    Return double from method.

  53. object DSTORE extends Serializable

    Permalink
  54. object DSTORE_0 extends StoreLocalVariableInstruction with DStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store double into local variable with index 0.

  55. object DSTORE_1 extends StoreLocalVariableInstruction with DStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store double into local variable with index 1.

  56. object DSTORE_2 extends StoreLocalVariableInstruction with DStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store double into local variable with index 2.

  57. object DSTORE_3 extends StoreLocalVariableInstruction with DStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store double into local variable with index 3.

  58. object DSUB extends SubtractInstruction with Product with Serializable

    Permalink

    Subtract double.

  59. object DStoreInstruction

    Permalink
  60. object DUP extends StackManagementInstruction with Product with Serializable

    Permalink

    Duplicate the top operand stack value.

  61. object DUP2 extends StackManagementInstruction with Product with Serializable

    Permalink

    Duplicate the top one or two operand stack values.

  62. object DUP2_X1 extends StackManagementInstruction with Product with Serializable

    Permalink

    Duplicate the top one or two operand stack values and insert two or three values down.

  63. object DUP2_X2 extends StackManagementInstruction with Product with Serializable

    Permalink

    Duplicate the top one or two operand stack values and insert two, three, or four values down.

  64. object DUP_X1 extends StackManagementInstruction with Product with Serializable

    Permalink

    Duplicate the top operand stack value and insert two values down.

  65. object DUP_X2 extends StackManagementInstruction with Product with Serializable

    Permalink

    Duplicate the top operand stack value and insert two or three values down.

  66. object F2D extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert float to double.

  67. object F2I extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert float to int.

  68. object F2L extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert float to long.

  69. object FADD extends AddInstruction with Product with Serializable

    Permalink

    Add float.

  70. object FALOAD extends ArrayLoadInstruction with PrimitiveArrayAccess with Product with Serializable

    Permalink

    Load float from array.

  71. object FASTORE extends PrimitiveArrayStoreInstruction with PrimitiveArrayAccess with Product with Serializable

    Permalink

    Store into float array.

  72. object FCMPG extends ComparisonInstruction with Product with Serializable

    Permalink

    Compare float.

  73. object FCMPL extends ComparisonInstruction with Product with Serializable

    Permalink

    Compare float.

  74. object FCONST_0 extends LoadConstantInstruction[Float] with FConstInstruction with Product with Serializable

    Permalink

    Push the float constant 0.0 onto the operand stack.

  75. object FCONST_1 extends LoadConstantInstruction[Float] with FConstInstruction with Product with Serializable

    Permalink

    Push the float constant 1.0 onto the operand stack.

  76. object FCONST_2 extends LoadConstantInstruction[Float] with FConstInstruction with Product with Serializable

    Permalink

    Push the float constant 2.0 onto the operand stack.

  77. object FConstInstruction

    Permalink
  78. object FDIV extends FloatingPointDivideInstruction with Product with Serializable

    Permalink

    Divide float.

  79. object FLOAD extends Serializable

    Permalink
  80. object FLOAD_0 extends LoadLocalVariableInstruction with FLoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load float from local variable with index 0.

  81. object FLOAD_1 extends LoadLocalVariableInstruction with FLoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load float from local variable with index 1.

  82. object FLOAD_2 extends LoadLocalVariableInstruction with FLoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load float from local variable with index 2.

  83. object FLOAD_3 extends LoadLocalVariableInstruction with FLoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load float from local variable with index 3.

  84. object FLoadInstruction

    Permalink
  85. object FMUL extends MultiplyInstruction with Product with Serializable

    Permalink

    Multiply float.

  86. object FNEG extends NegateInstruction with Product with Serializable

    Permalink

    Negate float.

  87. object FREM extends FloatingPointRemainderInstruction with Product with Serializable

    Permalink

    Remainder float.

  88. object FRETURN extends ReturnValueInstruction with Product with Serializable

    Permalink

    Return float from method.

  89. object FSTORE extends Serializable

    Permalink
  90. object FSTORE_0 extends StoreLocalVariableInstruction with FStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store float into local variable with index 0.

  91. object FSTORE_1 extends StoreLocalVariableInstruction with FStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store float into local variable with index 1.

  92. object FSTORE_2 extends StoreLocalVariableInstruction with FStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store float into local variable with index 2.

  93. object FSTORE_3 extends StoreLocalVariableInstruction with FStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store float into local variable with index 3.

  94. object FSUB extends SubtractInstruction with Product with Serializable

    Permalink

    Subtract float.

  95. object FStoreInstruction

    Permalink
  96. object FieldAccess

    Permalink

    Defines an extractor to facilitate pattern matching on field access instructions.

  97. object FieldReadAccess

    Permalink

    Defines an extractor to facilitate pattern matching on field read access instructions.

  98. object FieldWriteAccess

    Permalink

    Defines an extractor to facilitate pattern matching on field write access instructions.

  99. object GETFIELD extends Serializable

    Permalink
  100. object GETSTATIC extends Serializable

    Permalink
  101. object GOTO extends Serializable

    Permalink
  102. object GOTO_W extends Serializable

    Permalink
  103. object GotoInstruction

    Permalink
  104. object I2B extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert int to byte.

  105. object I2C extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert int to char.

  106. object I2D extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert int to double.

  107. object I2F extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert int to float.

  108. object I2L extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert int to long.

  109. object I2S extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert int to short.

  110. object IADD extends AddInstruction with Product with Serializable

    Permalink

    Add int.

  111. object IALOAD extends ArrayLoadInstruction with PrimitiveArrayAccess with Product with Serializable

    Permalink

    Load int from array.

  112. object IAND extends BitwiseInstruction with Product with Serializable

    Permalink

    Boolean AND int.

  113. object IASTORE extends PrimitiveArrayStoreInstruction with PrimitiveArrayAccess with Product with Serializable

    Permalink

    Store into int array.

  114. object ICONST_0 extends LoadConstantInstruction[Int] with IConstInstruction with Product with Serializable

    Permalink

    Push int constant value 0.

  115. object ICONST_1 extends LoadConstantInstruction[Int] with IConstInstruction with Product with Serializable

    Permalink

    Push int constant value 1.

  116. object ICONST_2 extends LoadConstantInstruction[Int] with IConstInstruction with Product with Serializable

    Permalink

    Push int constant value 2.

  117. object ICONST_3 extends LoadConstantInstruction[Int] with IConstInstruction with Product with Serializable

    Permalink

    Push int constant value 3.

  118. object ICONST_4 extends LoadConstantInstruction[Int] with IConstInstruction with Product with Serializable

    Permalink

    Push int constant value 4.

  119. object ICONST_5 extends LoadConstantInstruction[Int] with IConstInstruction with Product with Serializable

    Permalink

    Push int constant value 5.

  120. object ICONST_M1 extends LoadConstantInstruction[Int] with IConstInstruction with Product with Serializable

    Permalink

    Push int constant.

  121. object IConstInstruction

    Permalink
  122. object IDIV extends IntegerDivideInstruction with Product with Serializable

    Permalink

    Divide int.

  123. object IFEQ extends Serializable

    Permalink
  124. object IFGE extends Serializable

    Permalink
  125. object IFGT extends Serializable

    Permalink
  126. object IFLE extends Serializable

    Permalink
  127. object IFLT extends Serializable

    Permalink
  128. object IFNE extends Serializable

    Permalink
  129. object IFNONNULL extends Serializable

    Permalink
  130. object IFNULL extends Serializable

    Permalink
  131. object IF_ACMPEQ extends Serializable

    Permalink
  132. object IF_ACMPNE extends Serializable

    Permalink
  133. object IF_ICMPEQ extends Serializable

    Permalink
  134. object IF_ICMPGE extends Serializable

    Permalink
  135. object IF_ICMPGT extends Serializable

    Permalink
  136. object IF_ICMPLE extends Serializable

    Permalink
  137. object IF_ICMPLT extends Serializable

    Permalink
  138. object IF_ICMPNE extends Serializable

    Permalink
  139. object IINC extends Serializable

    Permalink
  140. object ILOAD extends Serializable

    Permalink
  141. object ILOAD_0 extends LoadLocalVariableInstruction with ILoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load int from local variable with index 0.

  142. object ILOAD_1 extends LoadLocalVariableInstruction with ILoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load int from local variable with index 1.

  143. object ILOAD_2 extends LoadLocalVariableInstruction with ILoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load int from local variable with index 2.

  144. object ILOAD_3 extends LoadLocalVariableInstruction with ILoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load int from local variable with index 3.

  145. object IMUL extends MultiplyInstruction with Product with Serializable

    Permalink

    Multiply int.

  146. object INCOMPLETE_INVOKEDYNAMIC extends InvocationInstruction with Product with Serializable

    Permalink

    Represents an "incomplete" invoke dynamic instruction.

    Represents an "incomplete" invoke dynamic instruction. Here, incomplete refers to the fact that not all information is yet available because it is not yet loaded. In case of invokedynamic instructions it is necessary to read a class file's attributes which are read in at the very end. This requires to resolve INVOKEDYNAMIC instructions in a two step process.

  147. object INEG extends NegateInstruction with Product with Serializable

    Permalink

    Negate int.

  148. object INSTANCEOF extends Serializable

    Permalink
  149. object INVOKEDYNAMIC

    Permalink

    Helper methods needed for the resolution of invokedynamic instructions.

  150. object INVOKEINTERFACE extends Serializable

    Permalink
  151. object INVOKESPECIAL extends Serializable

    Permalink
  152. object INVOKESTATIC extends Serializable

    Permalink
  153. object INVOKEVIRTUAL extends Serializable

    Permalink
  154. object IOR extends BitwiseInstruction with Product with Serializable

    Permalink

    Boolean OR int.

  155. object IREM extends IntegerRemainderInstruction with Product with Serializable

    Permalink

    Remainder int.

  156. object IRETURN extends ReturnValueInstruction with Product with Serializable

    Permalink

    Return int from method.

  157. object ISHL extends ShiftInstruction with Product with Serializable

    Permalink

    Shift left int.

  158. object ISHR extends ShiftInstruction with Product with Serializable

    Permalink

    Arithmetic shift right int.

  159. object ISTORE extends Serializable

    Permalink
  160. object ISTORE_0 extends StoreLocalVariableInstruction with IStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store int into local variable with index 0.

  161. object ISTORE_1 extends StoreLocalVariableInstruction with IStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store int into local variable with index 1.

  162. object ISTORE_2 extends StoreLocalVariableInstruction with IStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store int into local variable with index 2.

  163. object ISTORE_3 extends StoreLocalVariableInstruction with IStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store int into local variable with index 3.

  164. object ISUB extends SubtractInstruction with Product with Serializable

    Permalink

    Subtract int.

  165. object IStoreInstruction

    Permalink
  166. object IUSHR extends ShiftInstruction with Product with Serializable

    Permalink

    Logical shift right int.

  167. object IXOR extends BitwiseInstruction with Product with Serializable

    Permalink

    Boolean XOR int.

  168. object Instruction

    Permalink

    Functionality common to instructions.

  169. object JSR extends Serializable

    Permalink
  170. object JSR_W extends Serializable

    Permalink
  171. object L2D extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert long to double.

  172. object L2F extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert long to float.

  173. object L2I extends NumericConversionInstruction with Product with Serializable

    Permalink

    Convert long to int.

  174. object LADD extends AddInstruction with Product with Serializable

    Permalink

    Add long.

  175. object LALOAD extends ArrayLoadInstruction with PrimitiveArrayAccess with Product with Serializable

    Permalink

    Load long from array.

  176. object LAND extends BitwiseInstruction with Product with Serializable

    Permalink

    Boolean AND long.

  177. object LASTORE extends PrimitiveArrayStoreInstruction with PrimitiveArrayAccess with Product with Serializable

    Permalink

    Store into long array.

  178. object LCMP extends ComparisonInstruction with Product with Serializable

    Permalink

    Compare long.

  179. object LCONST_0 extends LoadConstantInstruction[Long] with LConstInstruction with Product with Serializable

    Permalink

    Push the long constant 0 onto the operand stack.

  180. object LCONST_1 extends LoadConstantInstruction[Long] with LConstInstruction with Product with Serializable

    Permalink

    Push the long constant 1 onto the operand stack.

  181. object LConstInstruction

    Permalink
  182. object LDC

    Permalink

    Defines factory and extractor methods for LDC instructions.

  183. object LDC2_W

    Permalink

    Defines factory and extractor methods for LDC2_W instructions.

  184. object LDCClass

    Permalink
  185. object LDCFloat

    Permalink
  186. object LDCInt

    Permalink
  187. object LDCMethodHandle

    Permalink
  188. object LDCMethodType

    Permalink
  189. object LDCString

    Permalink
  190. object LDC_W

    Permalink

    Defines factory and extractor methods for LDC_W instructions.

  191. object LDIV extends IntegerDivideInstruction with Product with Serializable

    Permalink

    Divide long.

  192. object LLOAD extends Serializable

    Permalink
  193. object LLOAD_0 extends LoadLocalVariableInstruction with LLoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load long from local variable with index 0.

  194. object LLOAD_1 extends LoadLocalVariableInstruction with LLoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load long from local variable with index 1.

  195. object LLOAD_2 extends LoadLocalVariableInstruction with LLoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load long from local variable with index 2.

  196. object LLOAD_3 extends LoadLocalVariableInstruction with LLoadInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Load long from local variable with index 3.

  197. object LLoadInstruction

    Permalink
  198. object LMUL extends MultiplyInstruction with Product with Serializable

    Permalink

    Multiply long.

  199. object LNEG extends NegateInstruction with Product with Serializable

    Permalink

    Negate long.

  200. object LOOKUPSWITCH extends Serializable

    Permalink
  201. object LOR extends BitwiseInstruction with Product with Serializable

    Permalink

    Boolean OR long.

  202. object LREM extends IntegerRemainderInstruction with Product with Serializable

    Permalink

    Remainder long.

  203. object LRETURN extends ReturnValueInstruction with Product with Serializable

    Permalink

    Return long from method.

  204. object LSHL extends ShiftInstruction with Product with Serializable

    Permalink

    Shift left long.

  205. object LSHR extends ShiftInstruction with Product with Serializable

    Permalink

    Arithmetic shift right long.

  206. object LSTORE extends Serializable

    Permalink
  207. object LSTORE_0 extends StoreLocalVariableInstruction with LStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store long into local variable with index 0.

  208. object LSTORE_1 extends StoreLocalVariableInstruction with LStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store long into local variable with index 1.

  209. object LSTORE_2 extends StoreLocalVariableInstruction with LStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store long into local variable with index 2.

  210. object LSTORE_3 extends StoreLocalVariableInstruction with LStoreInstruction with ImplicitLocalVariableIndex with Product with Serializable

    Permalink

    Store long into local variable with index 3.

  211. object LSUB extends SubtractInstruction with Product with Serializable

    Permalink

    Subtract long.

  212. object LStoreInstruction

    Permalink
  213. object LUSHR extends ShiftInstruction with Product with Serializable

    Permalink

    Logical shift right long.

  214. object LXOR extends BitwiseInstruction with Product with Serializable

    Permalink

    Boolean XOR long.

  215. object LoadConstantInstruction

    Permalink

    Defines factory methods for LoadConstantInstructions.

  216. object LoadLocalVariableInstruction

    Permalink

    Defines a factory method for LoadLocalVariableInstructions.

  217. object MONITORENTER extends SynchronizationInstruction with Product with Serializable

    Permalink

    Enter monitor for object.

  218. object MONITOREXIT extends SynchronizationInstruction with Product with Serializable

    Permalink

    Exit monitor for object.

  219. object MULTIANEWARRAY extends Serializable

    Permalink
  220. object MethodCompletionInstruction

    Permalink
  221. object MethodInvocationInstruction

    Permalink
  222. object NEW extends Serializable

    Permalink
  223. object NEWARRAY

    Permalink
  224. object NOP extends Instruction with ConstantLengthInstruction with Product with Serializable

    Permalink

    Do nothing.

  225. object NoExpression extends ExpressionResult with Product with Serializable

    Permalink
  226. object NoMethodCompletionInstruction

    Permalink
  227. object POP extends StackManagementInstruction with PopInstruction with Product with Serializable

    Permalink

    Pop the top operand stack value.

  228. object POP2 extends StackManagementInstruction with PopInstruction with Product with Serializable

    Permalink

    Pops the top computational type category 2 value or the two top operand stack values if both have computational type category 1.

  229. object PUTFIELD extends Serializable

    Permalink
  230. object PUTSTATIC extends Serializable

    Permalink
  231. object PrimitiveArrayAccess

    Permalink
  232. object RET extends Serializable

    Permalink
  233. object RETURN extends ReturnInstruction with Product with Serializable

    Permalink

    Return void from method.

  234. object ReturnInstruction

    Permalink

    Defines common values and a factory method to create a ReturnInstruction based on the expected type.

  235. object ReturnInstructions

    Permalink

    Defines extractor methods related to return instructions.

  236. object SALOAD extends ArrayLoadInstruction with PrimitiveArrayAccess with Product with Serializable

    Permalink

    Load short from array.

  237. object SASTORE extends PrimitiveArrayStoreInstruction with PrimitiveArrayAccess with Product with Serializable

    Permalink

    Store into short array.

  238. object SIPUSH extends Serializable

    Permalink
  239. object SWAP extends StackManagementInstruction with Product with Serializable

    Permalink

    Swap the top two operand stack values.

  240. object ShiftInstruction

    Permalink
  241. object Stack extends ExpressionResult with Product with Serializable

    Permalink
  242. object StoreLocalVariableInstruction

    Permalink

    Factory for StoreLocalVariableInstructions.

  243. object SynchronizationInstruction

    Permalink
  244. object TABLESWITCH extends Serializable

    Permalink
  245. implicit final val TypeConversionInstructions: TypeConversionFactory[Array[Instruction]] { ... /* 41 definitions in type refinement */ }

    Permalink
  246. object UnaryArithmeticInstruction

    Permalink
  247. object UnconditionalBranch

    Permalink
  248. object VirtualMethodInvocationInstruction

    Permalink
  249. object WIDE extends Instruction with ConstantLengthInstruction with Product with Serializable

    Permalink

    Extend local variable index by additional bytes.

Inherited from AnyRef

Inherited from Any

Ungrouped