Class/Object

org.opalj.br.instructions

INVOKEVIRTUAL

Related Docs: object INVOKEVIRTUAL | package instructions

Permalink

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

Invoke instance method; dispatch based on class.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. INVOKEVIRTUAL
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. VirtualMethodInvocationInstruction
  7. MethodInvocationInstruction
  8. InvocationInstruction
  9. ConstantLengthInstruction
  10. Instruction
  11. InstructionLike
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new INVOKEVIRTUAL(declaringClass: ReferenceType, name: String, methodDescriptor: MethodDescriptor)

    Permalink

Value Members

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def asVirtualMethod: VirtualMethod

    Permalink
    Definition Classes
    MethodInvocationInstruction
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def count: Int

    Permalink

    Returns the number of registers required to store the method's arguments including (if required) the self reference "this".

    Returns the number of registers required to store the method's arguments including (if required) the self reference "this".

    Definition Classes
    MethodInvocationInstruction
  8. val declaringClass: ReferenceType

    Permalink
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. final def expressionResult: ExpressionResultLocation

    Permalink

    Returns the location – Stack, Register or NoExpression – where the value computed by this instruction is stored.

    Returns the location – Stack, Register or NoExpression – where the value computed by this instruction is stored. In this case an instruction is only considered to be an expression if a puts a value on the stack or in a register that is the result of some kind of computation; i.e., just copying, duplicating or moving a value between the stack and the registers is not considered to be an expression.

    Definition Classes
    InvocationInstructionInstructionLike
    Note

    The CHECKCAST instruction is special in the sense that it just inspects the top-most value.

  11. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def indexOfNextInstruction(currentPC: PC, modifiedByWide: Boolean): Int

    Permalink

    The index of the next instruction in the code array.

    The index of the next instruction in the code array.

    Definition Classes
    ConstantLengthInstructionInstructionLike
  14. final def indexOfNextInstruction(currentPC: PC)(implicit code: Code): Int

    Permalink

    The index of the next instruction in the (sparse) code array.

    The index of the next instruction in the (sparse) code array.

    Definition Classes
    ConstantLengthInstructionInstructionLike
    Note

    This is primarily a convenience method that delegates to the method indexOfNextInstrution(PC,Boolean). However, given that this is also the standard method called by clients, it is often meaningful to directly implement this. In particular since most instructions cannot be modified by wide.

  15. final def indexOfReadLocal: Int

    Permalink

    The index of the local (variable)/register that is read is returned.

    The index of the local (variable)/register that is read is returned. This method is only defined if readsLocal returns true.

    Definition Classes
    InvocationInstructionInstructionLike
  16. final def indexOfWrittenLocal: Int

    Permalink

    The index of the local (variable)/register that is written.

    The index of the local (variable)/register that is written. This method is only defined if writesLocal returns true.

    Definition Classes
    InvocationInstructionInstructionLike
  17. final def isInstanceMethod: Boolean

    Permalink

    Returns true if this method takes an implicit parameter "this".

    Returns true if this method takes an implicit parameter "this".

    Definition Classes
    INVOKEVIRTUALInvocationInstruction
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. final def isInterfaceCall: Boolean

    Permalink
  20. final def isIsomorphic(thisPC: PC, otherPC: PC)(implicit code: Code): Boolean

    Permalink

    Determines if this instruction is isomorphic to the given instruction.

    Determines if this instruction is isomorphic to the given instruction.

    Two instructions are isomporphic if they access the same operand and register values and if the instructions have the same bytecode representation, except of (A) (potential) padding bytes and (B) the branch offset of JSR(_W) instructions. In the first case the branch offsets are corrected by the number of padding bytes and in the second case the absolute addresses are compared (i.e., whether both instructions call the same subroutine).

    For example, an aload_0 instruction is only isomorphic to another aload_0 instruction and is not isomorphic to an aload(0) instruction – though the runtime effect is the same. However, a LOOKUPSWITCH (TABLESWITCH) instruction is considered isomorphic to another respective instruction if the only difference is the number of padding bytes. Furthermore, two JSR(_W) instructions are isomorphic if and only if they jump to the same subroutine.

    Definition Classes
    InvocationInstructionInstructionLike
    Note

    this.isIsomorphic(thisPC,thisPC) is always true

    ,

    The number of padding bytes is generally calculated by (otherPC % 4) - (thisPC %4) (=== "padding other" - "padding this") and should be added to the branch offsets of this (XYZ)switch instruction when the branch targets are compared to the other instructions branchoffsets.

    // "padding b" - "padding a"
    // === (3 - (bPC % 4)) - (3 - (aPC % 4))
    // === (aPC % 4) - (bPC %4)
  21. def isVirtualMethodCall: Boolean

    Permalink

    Returns true if the called method is an instance method and virtual method call resolution has to take place.

    Returns true if the called method is an instance method and virtual method call resolution has to take place. I.e., if the underlying instruction is an invokevirtual or an invokeinterface instruction.

    Definition Classes
    VirtualMethodInvocationInstructionMethodInvocationInstruction
  22. final def jvmExceptions: List[ObjectType]

    Permalink

    The exceptions that may be thrown by the JVM at runtime if the execution of this instruction fails.

    The exceptions that may be thrown by the JVM at runtime if the execution of this instruction fails. I.e., these are neither exceptions that are explicitly created and then thrown by user code nor errors that may arise due to an invalid code base (in particular LinkageErrors). However, OutOfMemoryErrors are possible.

    Definition Classes
    INVOKEVIRTUALInstructionLike
    Note

    The returned types always precisely describe the thrown exception; they are not upper bounds. All instructions – except of the InvocationInstructions and the ATHROW$ instruction – will always either succeed, throw a linkage time related exception or throw one of the specified exceptions.

  23. final def length: Int

    Permalink

    The number of bytes (in the Code array) used by the instruction.

    The number of bytes (in the Code array) used by the instruction.

    Definition Classes
    INVOKEVIRTUALConstantLengthInstruction
  24. val methodDescriptor: MethodDescriptor

    Permalink

    The method descriptor of the called method.

    The method descriptor of the called method.

    Definition Classes
    INVOKEVIRTUALInvocationInstruction
    Note

    This information is – in case of INCOMPLETE_INVOKEDYNAMIC instructions – only available after loading the entire class file.

  25. final def mnemonic: String

    Permalink

    The mnemonic of the instruction as defined by the JVM specification.

    The mnemonic of the instruction as defined by the JVM specification.

    Definition Classes
    INVOKEVIRTUALInstructionLike
  26. val name: String

    Permalink

    The simple name of the called method.

    The simple name of the called method.

    Definition Classes
    INVOKEVIRTUALInvocationInstruction
    Note

    This information is – in case of INCOMPLETE_INVOKEDYNAMIC instructions – only available after loading the entire class file.

  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. final def nextInstructions(currentPC: PC, regularSuccessorsOnly: Boolean)(implicit code: Code, classHierarchy: ClassHierarchy = Code.BasicClassHierarchy): Chain[PC]

    Permalink

    Given that we have – without any sophisticated analysis – no idea which exceptions may be thrown by the called method, we make the safe assumption that any handler is a potential successor!

    Given that we have – without any sophisticated analysis – no idea which exceptions may be thrown by the called method, we make the safe assumption that any handler is a potential successor!

    The result may contain duplicates iff multiple different exceptions are handled by the same handler. E.g., as generated in case of "Java's Multicatch instruction":

    try {} catch(IOException | NullPointerException ex) {...}
    regularSuccessorsOnly

    If true only those instructions are returned which are not related to an exception thrown by this instruction.

    returns

    The absolute addresses of all instructions that may be executed next at runtime.

    Definition Classes
    InvocationInstructionInstruction
  29. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. final def numberOfPoppedOperands(ctg: (Int) ⇒ ComputationalTypeCategory): Int

    Permalink

    The number of values that are popped from the operand stack.

    The number of values that are popped from the operand stack. Here, long and double values are also counted as one value though they use two stack slots. E.g., IADD (integer add) and LADD (long add) both pop two values and push one value.

    ctg

    A function that returns the computational type category of the value on the operand stack with a given value index. E.g., The top value on the operand stack has index '0' and may occupy one (for category 1 values) or two stack slots (for category 2 values.)

    Definition Classes
    VirtualMethodInvocationInstructionInstructionLike
    Note

    In case of some of the StackManagementInstruction the number of popped values is not fixed. In that case the number depends on the concrete layout of the operand stack. E.g., the POP2 instruction may just pop one categeory 2 value (of type long or double) or two category 1 values.

  32. final def numberOfPushedOperands(ctg: (Int) ⇒ ComputationalTypeCategory): Int

    Permalink

    The number of values that are put onto the operand stack.

    The number of values that are put onto the operand stack. Here, long and double values are also counted as one value though they use two stack slots. E.g., IADD (integer add) and LADD (long add) both pop two values and push one value.

    ctg

    A function that returns the computational type category of the value on the operand stack with a given value index. The top value on the operand stack has index '0' and may occupy one (for category 1 values) or two stack slots (for category 2 values.)

    Definition Classes
    InvocationInstructionInstructionLike
    Note

    In case of some of the StackManagementInstruction this number is not fixed. In that case the number depends on the concrete layout of the operand stack. E.g., the DUP2 instruction may just duplicate one categeory 2 value (result is 1) (of type long or double) or two category 1 values (result is 2).

  33. final def opcode: Opcode

    Permalink

    The opcode of the instruction as defined by the JVM specification.

    The opcode of the instruction as defined by the JVM specification. The opcode is a value in the range [0..255].

    Definition Classes
    INVOKEVIRTUALInstructionLike
  34. final def readsLocal: Boolean

    Permalink

    Returns true if this instruction reads/uses a local variable.

    Returns true if this instruction reads/uses a local variable.

    Definition Classes
    InvocationInstructionInstructionLike
  35. def resolveJumpTargets(pc: PC, pcs: Map[Symbol, PC]): INVOKEVIRTUAL.this.type

    Permalink

    pc

    The final pc of this instruction in the code array.

    pcs

    The map which maps all symbols to their final pcs.@return this.

    Definition Classes
    InstructionInstructionLike
  36. final def stackSlotsChange: Int

    Permalink

    The number of stack slots pushed or popped by this instruction.

    The number of stack slots pushed or popped by this instruction.

    Definition Classes
    InvocationInstructionInstructionLike
    Note

    Overall, each DUP instruction always pushes the same number of stack slots. Only the number of values that are processed may depend on the stack layout.

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

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

    Permalink
    Definition Classes
    INVOKEVIRTUALMethodInvocationInstruction → AnyRef → Any
  39. def toString(currentPC: Int): String

    Permalink

    Returns a string representation of this instruction.

    Returns a string representation of this instruction. If this instruction is a (conditional) jump instruction then the PCs of the target instructions are given absolute address.

    currentPC

    The program counter of this instruction. Used to resolve relative jump targets.

    Definition Classes
    InstructionLike
  40. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def writesLocal: Boolean

    Permalink

    Returns true if this instruction writes/updates a local variable.

    Returns true if this instruction writes/updates a local variable.

    Definition Classes
    InvocationInstructionInstructionLike

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from InvocationInstruction

Inherited from ConstantLengthInstruction

Inherited from Instruction

Inherited from InstructionLike

Inherited from AnyRef

Inherited from Any

Ungrouped