Class Code

All Implemented Interfaces:
Cloneable, Node

public final class Code extends Attribute
This class represents a chunk of Java byte code contained in a method. It is instantiated by the Attribute.readAttribute() method. A Code attribute contains informations about operand stack, local variables, byte code and the exceptions handled within this method. This attribute has attributes itself, namely LineNumberTable which is used for debugging purposes and LocalVariableTable which contains information about the local variables.
See Also:
  • Constructor Details

    • Code

      public Code(Code c)
      Initialize from another object. Note that both objects use the same references (shallow copy). Use copy() for a physical copy.
    • Code

      public Code(int name_index, int length, int maxStack, int maxLocals, byte[] code, CodeException[] exceptionTable, Attribute[] attributes, ConstantPool constant_pool)
      Parameters:
      name_index - Index pointing to the name Code
      length - Content length in bytes
      maxStack - Maximum size of stack
      maxLocals - Number of local variables
      code - Actual byte code
      exceptionTable - of handled exceptions
      attributes - Attributes of code: LineNumber or LocalVariable
      constant_pool - Array of constants
  • Method Details

    • accept

      public void accept(Visitor v)
      Called by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class. I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree of objects.
      Specified by:
      accept in interface Node
      Specified by:
      accept in class Attribute
      Parameters:
      v - Visitor object
    • dump

      public void dump(DataOutputStream file) throws IOException
      Dump code attribute to file stream in binary format.
      Overrides:
      dump in class Attribute
      Parameters:
      file - Output file stream
      Throws:
      IOException
    • getAttributes

      public Attribute[] getAttributes()
      Returns:
      Collection of code attributes.
      See Also:
    • getLineNumberTable

      public LineNumberTable getLineNumberTable()
      Returns:
      LineNumberTable of Code, if it has one
    • getLocalVariableTable

      public LocalVariableTable getLocalVariableTable()
      Returns:
      LocalVariableTable of Code, if it has one
    • getCode

      public byte[] getCode()
      Returns:
      Actual byte code of the method.
    • getExceptionTable

      public CodeException[] getExceptionTable()
      Returns:
      Table of handled exceptions.
      See Also:
    • getMaxLocals

      public int getMaxLocals()
      Returns:
      Number of local variables.
    • getMaxStack

      public int getMaxStack()
      Returns:
      Maximum size of stack used by this method.
    • setAttributes

      public void setAttributes(Attribute[] attributes)
      Parameters:
      attributes - the attributes to set for this Code
    • setCode

      public void setCode(byte[] code)
      Parameters:
      code - byte code
    • setExceptionTable

      public void setExceptionTable(CodeException[] exceptionTable)
      Parameters:
      exceptionTable - exception table
    • setMaxLocals

      public void setMaxLocals(int maxLocals)
      Parameters:
      maxLocals - maximum number of local variables
    • setMaxStack

      public void setMaxStack(int maxStack)
      Parameters:
      maxStack - maximum stack size
    • toString

      public String toString(boolean verbose)
      Returns:
      String representation of code chunk.
    • toString

      public String toString()
      Overrides:
      toString in class Attribute
      Returns:
      String representation of code chunk.
    • copy

      public Attribute copy(ConstantPool _constant_pool)
      Specified by:
      copy in class Attribute
      Parameters:
      _constant_pool - the constant pool to duplicate
      Returns:
      deep copy of this attribute