Package org.apache.bcel.classfile
Class Code
java.lang.Object
org.apache.bcel.classfile.Attribute
org.apache.bcel.classfile.Code
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.
Code_attribute { u2 attribute_name_index; u4 attribute_length; u2 max_stack; u2 max_locals; u4 code_length; u1 code[code_length]; u2 exception_table_length; { u2 start_pc; u2 end_pc; u2 handler_pc; u2 catch_type; } exception_table[exception_table_length]; u2 attributes_count; attribute_info attributes[attributes_count]; }
- See Also:
-
Field Summary
Fields inherited from class org.apache.bcel.classfile.Attribute
constant_pool, EMPTY_ARRAY, length, name_index, tag
-
Constructor Summary
ConstructorDescriptionCode
(int nameIndex, int length, int maxStack, int maxLocals, byte[] code, CodeException[] exceptionTable, Attribute[] attributes, ConstantPool constantPool) Initialize from another object. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Called by objects that are traversing the nodes of the tree implicitly defined by the contents of a Java class.copy
(ConstantPool constantPool) void
dump
(DataOutputStream file) Dump code attribute to file stream in binary format.byte[]
getCode()
Gets the local variable type table attributeLocalVariableTypeTable
.int
int
Finds the attribute ofStackMap
instance.void
setAttributes
(Attribute[] attributes) void
setCode
(byte[] code) void
setExceptionTable
(CodeException[] exceptionTable) void
setMaxLocals
(int maxLocals) void
setMaxStack
(int maxStack) toString()
toString
(boolean verbose) Converts this object to a String.Methods inherited from class org.apache.bcel.classfile.Attribute
addAttributeReader, addAttributeReader, clone, getConstantPool, getLength, getName, getNameIndex, getTag, println, readAttribute, readAttribute, removeAttributeReader, setConstantPool, setLength, setNameIndex
-
Constructor Details
-
Code
Initialize from another object. Note that both objects use the same references (shallow copy). Use copy() for a physical copy.- Parameters:
code
- The source Code.
-
Code
public Code(int nameIndex, int length, int maxStack, int maxLocals, byte[] code, CodeException[] exceptionTable, Attribute[] attributes, ConstantPool constantPool) - Parameters:
nameIndex
- Index pointing to the name Codelength
- Content length in bytesmaxStack
- Maximum size of stackmaxLocals
- Number of local variablescode
- Actual byte codeexceptionTable
- of handled exceptionsattributes
- Attributes of code: LineNumber or LocalVariableconstantPool
- Array of constants
-
-
Method Details
-
accept
Called by objects that are traversing the nodes of the tree implicitly defined by the contents of a Java class. I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree of objects. -
copy
-
dump
Dump code attribute to file stream in binary format.- Overrides:
dump
in classAttribute
- Parameters:
file
- Output file stream- Throws:
IOException
- if an I/O error occurs.
-
getAttributes
- Returns:
- Collection of code attributes.
- See Also:
-
getCode
- Returns:
- Actual byte code of the method.
-
getExceptionTable
- Returns:
- Table of handled exceptions.
- See Also:
-
getLineNumberTable
- Returns:
- LineNumberTable of Code, if it has one
-
getLocalVariableTable
- Returns:
- LocalVariableTable of Code, if it has one
-
getLocalVariableTypeTable
Gets the local variable type table attributeLocalVariableTypeTable
.- Returns:
- LocalVariableTypeTable of Code, if it has one, null otherwise.
- Since:
- 6.10.0
-
getMaxLocals
- Returns:
- Number of local variables.
-
getMaxStack
- Returns:
- Maximum size of stack used by this method.
-
getStackMap
Finds the attribute ofStackMap
instance.- Returns:
- StackMap of Code, if it has one, else null.
- Since:
- 6.8.0
-
setAttributes
- Parameters:
attributes
- the attributes to set for this Code
-
setCode
- Parameters:
code
- byte code
-
setExceptionTable
- Parameters:
exceptionTable
- exception table
-
setMaxLocals
- Parameters:
maxLocals
- maximum number of local variables
-
setMaxStack
- Parameters:
maxStack
- maximum stack size
-
toString
-
toString
Converts this object to a String.- Parameters:
verbose
- Provides verbose output when true.- Returns:
- String representation of code chunk.
-