- All Superinterfaces:
Attribute<CodeAttribute>,AttributedElement,ClassFileElement,CodeModel,CompoundElement<CodeElement>,Iterable<CodeElement>,MethodElement
Models the
Code attribute (JVMS ),
which contains the bytecode of this method.
This attribute only appears on methods, and does not permit multiple instances in a method. It has a data dependency on the constant pool.
This attribute was introduced in the Java Platform version 1.0.2, major version 45.
- API Note:
CodeAttributemodels properties of aCodeattribute read fromclassfiles. Generalclassfile transformation should process and traverse aCodeModelin the traversal of aMethodModel, to support transformation ofCodeattributes currently being built.- Since:
- 24
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]Returns the bytes (bytecode) of the code array.intReturns The length of the code array in bytes.intlabelToBci(Label label) Returns the position of thelabelin thecodeArray.intReturns the maximum size of the local variable table.intmaxStack()Returns the maximum size of the operand stack.Methods inherited from interface io.smallrye.classfile.Attribute
attributeMapper, attributeNameMethods inherited from interface io.smallrye.classfile.AttributedElement
attributes, findAttribute, findAttributesMethods inherited from interface io.smallrye.classfile.CodeModel
exceptionHandlers, parentMethods inherited from interface io.smallrye.classfile.CompoundElement
elementList, elementStream, forEach, iterator, toDebugStringMethods inherited from interface java.lang.Iterable
spliterator
-
Method Details
-
maxLocals
int maxLocals()Returns the maximum size of the local variable table.- Returns:
- the maximum size of the local variable table
-
maxStack
int maxStack()Returns the maximum size of the operand stack.- Returns:
- the maximum size of the operand stack
-
codeLength
int codeLength()Returns The length of the code array in bytes.- Returns:
- The length of the code array in bytes
-
codeArray
byte[] codeArray()Returns the bytes (bytecode) of the code array.- Returns:
- the bytes (bytecode) of the code array
-
labelToBci
Returns the position of thelabelin thecodeArray. The label represents a cursor pointing at immediately before the returned index into thecodearray.- Parameters:
label- a marker for a position within thisCodeAttribute- Returns:
- the position of the
labelin thecodeArray - Throws:
IllegalArgumentException- if thelabelis not from this attribute
-