Serializable, ClassFile.Option, Comparable<ClassFile.StackMapsOption>, ConstableClassFilepublic static enum ClassFile.StackMapsOption extends Enum<ClassFile.StackMapsOption> implements ClassFile.Option
STACK_MAPS_WHEN_REQUIRED to generate stack maps or reuse existing ones if compatible. The StackMapTableAttribute is a derived property from a Code attribute to allow a Java Virtual Machine to perform verification in one pass. Thus, it is not modeled as part of a CodeModel, but computed on-demand instead via stack maps generation.
Stack map generation may fail with an IllegalArgumentException if there is unreachable code or legacy jump routine instructions. When DROP_STACK_MAPS option is used, users can provide their own stack maps by supplying a StackMapTableAttribute to a CodeBuilder.
Enum.EnumDesc<E>
| Enum Constant | Description |
|---|---|
DROP_STACK_MAPS |
Do not run stack map generation. |
GENERATE_STACK_MAPS |
Forces running stack map generation. |
STACK_MAPS_WHEN_REQUIRED |
Generate stack maps or reuse existing ones if compatible. |
| Modifier and Type | Method | Description |
|---|---|---|
static ClassFile.StackMapsOption |
valueOf |
Returns the enum constant of this class with the specified name. |
static ClassFile.StackMapsOption[] |
values() |
Returns an array containing the constants of this enum class, in the order they are declared. |
public static final ClassFile.StackMapsOption STACK_MAPS_WHEN_REQUIRED
CodeBuilder tries to reuse compatible stack maps information if the code array and exception handlers are still compatible after a transformation; otherwise, it runs stack map generation. However, it does not fail fast if the major version is 50, which allows jump subroutine instructions that are incompatible with stack maps to exist in the code array.public static final ClassFile.StackMapsOption GENERATE_STACK_MAPS
public static final ClassFile.StackMapsOption DROP_STACK_MAPS
StackMapTableAttribute to a CodeBuilder if the code has branches or exception handlers; otherwise, the generated code will fail verification (JVMS 4.10.1). This option is required for user-supplied StackMapTableAttribute to be respected. Stack maps on an existing Code attribute can be reused as below with this option:
CodeAttribute code = method.findAttribute(Attributes.code()).orElseThrow();
// Note that StackMapTable may be absent, representing code with no branching
code.findAttribute(Attributes.stackMapTable()).ifPresent(cob);
public static ClassFile.StackMapsOption[] values()
public static ClassFile.StackMapsOption valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null
© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/classfile/ClassFile.StackMapsOption.html