java.lang.Object
de.uzl.its.swat.symbolic.instruction.Instruction
de.uzl.its.swat.symbolic.instruction.DLOAD
All Implemented Interfaces:
Serializable

public class DLOAD extends Instruction
DLOAD - Load double from local variable. For more information see the Java VM specification.
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    int
     

    Fields inherited from class de.uzl.its.swat.symbolic.instruction.Instruction

    iid, mid
  • Constructor Summary

    Constructors
    Constructor
    Description
    DLOAD(int iid, int mid, int var)
    Creates a new DLOAD instruction.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(IVisitor visitor)
    Accept method for the visitor.
    Returns the string representation of the instruction.

    Methods inherited from class de.uzl.its.swat.symbolic.instruction.Instruction

    genericToString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • var

      public int var
  • Constructor Details

    • DLOAD

      public DLOAD(int iid, int mid, int var)
      Creates a new DLOAD instruction.
      Parameters:
      iid - instruction id.
      mid - method id.
      var - index of the local variable to load.
  • Method Details

    • accept

      public void accept(IVisitor visitor)
      Accept method for the visitor.
      Specified by:
      accept in class Instruction
      Parameters:
      visitor - the visitor
    • toString

      public String toString()
      Returns the string representation of the instruction.
      Overrides:
      toString in class Object
      Returns:
      the representation.