Package org.objectweb.asm.util
Class ASMifier
java.lang.Object
org.objectweb.asm.util.Printer
org.objectweb.asm.util.ASMifier
A
Printer that prints the ASM code to generate the classes it visits.-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final intThe identifier of the annotation visitor variable in the produced code.The name of the Label variables in the produced code.protected final StringThe name of the visitor variable in the produced code.Fields inherited from class org.objectweb.asm.util.Printer
api, HANDLE_TAG, OPCODES, stringBuilder, text, TYPES -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidappendConstant(Object value) Appends a string representation of the given constant toPrinter.stringBuilder.protected voidappendLabel(org.objectweb.asm.Label label) Appends the name of the given label toPrinter.stringBuilder.protected ASMifiercreateASMifier(String visitorVariableName, int annotationVisitorId) Constructs a newASMifier.protected voiddeclareLabel(org.objectweb.asm.Label label) Appends a declaration of the given label toPrinter.stringBuilder.static voidPrints the ASM source code to generate the given class to the standard output.voidvisit(int version, int access, String name, String signature, String superName, String[] interfaces) Class header.voidAnnotation value.visitAnnotableParameterCount(int parameterCount, boolean visible) Number of method parameters that can have annotations.visitAnnotation(String descriptor, boolean visible) Visits a class, field or method annotation.visitAnnotation(String name, String descriptor) Nested annotation value.Method default annotation.voidAnnotation end.visitArray(String name) Annotation array value.voidvisitAttribute(org.objectweb.asm.Attribute attribute) Visit a class, field or method attribute.visitClassAnnotation(String descriptor, boolean visible) Class annotation.voidvisitClassAttribute(org.objectweb.asm.Attribute attribute) Class attribute.voidClass end.visitClassTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Class type annotation.voidMethod start.voidAnnotation enum value.voidvisitExport(String packaze, int access, String... modules) Module export.visitField(int access, String name, String descriptor, String signature, Object value) Class field.visitFieldAnnotation(String descriptor, boolean visible) Field annotation.voidvisitFieldAttribute(org.objectweb.asm.Attribute attribute) Field attribute.voidField end.voidvisitFieldInsn(int opcode, String owner, String name, String descriptor) Method instruction.visitFieldTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Field type annotation.voidvisitFrame(int type, int numLocal, Object[] local, int numStack, Object[] stack) Method stack frame.voidvisitIincInsn(int varIndex, int increment) Method instruction.voidvisitInnerClass(String name, String outerName, String innerName, int access) Class inner name.voidvisitInsn(int opcode) Method instruction.visitInsnAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Instruction type annotation.voidvisitIntInsn(int opcode, int operand) Method instruction.voidvisitInvokeDynamicInsn(String name, String descriptor, org.objectweb.asm.Handle bootstrapMethodHandle, Object... bootstrapMethodArguments) Method instruction.voidvisitJumpInsn(int opcode, org.objectweb.asm.Label label) Method jump instruction.voidvisitLabel(org.objectweb.asm.Label label) Method label.voidvisitLdcInsn(Object value) Method instruction.voidvisitLineNumber(int line, org.objectweb.asm.Label start) Method debug info.voidvisitLocalVariable(String name, String descriptor, String signature, org.objectweb.asm.Label start, org.objectweb.asm.Label end, int index) Method debug info.visitLocalVariableAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, org.objectweb.asm.Label[] start, org.objectweb.asm.Label[] end, int[] index, String descriptor, boolean visible) Local variable type annotation.voidvisitLookupSwitchInsn(org.objectweb.asm.Label dflt, int[] keys, org.objectweb.asm.Label[] labels) Method instruction.voidvisitMainClass(String mainClass) Module main class.voidvisitMaxs(int maxStack, int maxLocals) Method max stack and max locals.visitMethod(int access, String name, String descriptor, String signature, String[] exceptions) Class method.visitMethodAnnotation(String descriptor, boolean visible) Method annotation.voidvisitMethodAttribute(org.objectweb.asm.Attribute attribute) Method attribute.voidMethod end.voidvisitMethodInsn(int opcode, String owner, String name, String descriptor, boolean isInterface) Method instruction.visitMethodTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Method type annotation.visitModule(String name, int flags, String version) Module.voidModule end.voidvisitMultiANewArrayInsn(String descriptor, int numDimensions) Method instruction.voidvisitNestHost(String nestHost) Visits the nest host class of the class.voidvisitNestMember(String nestMember) Visits a member of the nest.voidModule open.voidvisitOuterClass(String owner, String name, String descriptor) Class outer class.voidvisitPackage(String packaze) Module package.voidvisitParameter(String parameterName, int access) Method parameter.visitParameterAnnotation(int parameter, String descriptor, boolean visible) Method parameter annotation.voidvisitPermittedSubclass(String permittedSubclass) Visits a permitted subclasses.voidvisitProvide(String service, String... providers) Module provide.visitRecordComponent(String name, String descriptor, String signature) Visits a record component of the class.visitRecordComponentAnnotation(String descriptor, boolean visible) Visits an annotation of the record component.voidvisitRecordComponentAttribute(org.objectweb.asm.Attribute attribute) Visits a non standard attribute of the record component.voidVisits the end of the record component.visitRecordComponentTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Visits an annotation on a type in the record component signature.voidvisitRequire(String module, int access, String version) Module require.voidvisitSource(String file, String debug) Class source.voidvisitTableSwitchInsn(int min, int max, org.objectweb.asm.Label dflt, org.objectweb.asm.Label... labels) Method instruction.visitTryCatchAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Try catch block type annotation.voidvisitTryCatchBlock(org.objectweb.asm.Label start, org.objectweb.asm.Label end, org.objectweb.asm.Label handler, String type) Method exception handler.visitTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Visits a class, field or method type annotation.visitTypeAnnotation(String method, int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Visits a class, field, method, instruction or try catch block type annotation.voidvisitTypeInsn(int opcode, String type) Method instruction.voidModule use.voidvisitVarInsn(int opcode, int varIndex) Method instruction.Methods inherited from class org.objectweb.asm.util.Printer
appendString, getText, print, visitMethodInsn
-
Field Details
-
name
The name of the visitor variable in the produced code. -
id
protected final int idThe identifier of the annotation visitor variable in the produced code. -
labelNames
The name of the Label variables in the produced code.
-
-
Constructor Details
-
ASMifier
public ASMifier()Constructs a newASMifier. Subclasses must not use this constructor. Instead, they must use theASMifier(int, String, int)version.- Throws:
IllegalStateException- If a subclass calls this constructor.
-
ASMifier
Constructs a newASMifier.- Parameters:
api- the ASM API version implemented by this class. Must be one of theASMx values inOpcodes.visitorVariableName- the name of the visitor variable in the produced code.annotationVisitorId- identifier of the annotation visitor variable in the produced code.
-
-
Method Details
-
main
Prints the ASM source code to generate the given class to the standard output.Usage: ASMifier [-nodebug] <binary class name or class file name>
- Parameters:
args- the command line arguments.- Throws:
IOException- if the class cannot be found, or if an IOException occurs.
-
visit
public void visit(int version, int access, String name, String signature, String superName, String[] interfaces) Description copied from class:PrinterClass header. SeeClassVisitor.visit(int, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String[]).- Specified by:
visitin classPrinter- Parameters:
version- the class version. The minor version is stored in the 16 most significant bits, and the major version in the 16 least significant bits.access- the class's access flags (seeOpcodes). This parameter also indicates if the class is deprecated.name- the internal name of the class (seeType.getInternalName()).signature- the signature of this class. May be null if the class is not a generic one, and does not extend or implement generic classes or interfaces.superName- the internal of name of the super class (seeType.getInternalName()). For interfaces, the super class isObject. May be null, but only for theObjectclass.interfaces- the internal names of the class's interfaces (seeType.getInternalName()). May be null.
-
visitSource
Description copied from class:PrinterClass source. SeeClassVisitor.visitSource(java.lang.String, java.lang.String).- Specified by:
visitSourcein classPrinter- Parameters:
file- the name of the source file from which the class was compiled. May be null.debug- additional debug information to compute the correspondence between source and compiled elements of the class. May be null.
-
visitModule
Description copied from class:PrinterModule. SeeClassVisitor.visitModule(java.lang.String, int, java.lang.String).- Overrides:
visitModulein classPrinter- Parameters:
name- the fully qualified name (using dots) of the module.flags- the module access flags, amongACC_OPEN,ACC_SYNTHETICandACC_MANDATED.version- the module version, or null.- Returns:
- the printer.
-
visitNestHost
Description copied from class:PrinterVisits the nest host class of the class. A nest is a set of classes of the same package that share access to their private members. One of these classes, called the host, lists the other members of the nest, which in turn should link to the host of their nest. This method must be called only once and only if the visited class is a non-host member of a nest. A class is implicitly its own nest, so it's invalid to call this method with the visited class name as argument.- Overrides:
visitNestHostin classPrinter- Parameters:
nestHost- the internal name of the host class of the nest (seeType.getInternalName()).
-
visitOuterClass
Description copied from class:PrinterClass outer class. SeeClassVisitor.visitOuterClass(java.lang.String, java.lang.String, java.lang.String).- Specified by:
visitOuterClassin classPrinter- Parameters:
owner- internal name of the enclosing class of the class (seeType.getInternalName()).name- the name of the method that contains the class, or null if the class is not enclosed in a method of its enclosing class.descriptor- the descriptor of the method that contains the class, or null if the class is not enclosed in a method of its enclosing class.
-
visitClassAnnotation
Description copied from class:PrinterClass annotation. SeeClassVisitor.visitAnnotation(java.lang.String, boolean).- Specified by:
visitClassAnnotationin classPrinter- Parameters:
descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- the printer.
-
visitClassTypeAnnotation
public ASMifier visitClassTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Description copied from class:PrinterClass type annotation. SeeClassVisitor.visitTypeAnnotation(int, org.objectweb.asm.TypePath, java.lang.String, boolean).- Overrides:
visitClassTypeAnnotationin classPrinter- Parameters:
typeRef- a reference to the annotated type. The sort of this type reference must beTypeReference.CLASS_TYPE_PARAMETER,TypeReference.CLASS_TYPE_PARAMETER_BOUNDorTypeReference.CLASS_EXTENDS. SeeTypeReference.typePath- the path to the annotated type argument, wildcard bound, array element type, or static inner type within 'typeRef'. May be null if the annotation targets 'typeRef' as a whole.descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- the printer.
-
visitClassAttribute
public void visitClassAttribute(org.objectweb.asm.Attribute attribute) Description copied from class:PrinterClass attribute. SeeClassVisitor.visitAttribute(org.objectweb.asm.Attribute).- Specified by:
visitClassAttributein classPrinter- Parameters:
attribute- an attribute.
-
visitNestMember
Description copied from class:PrinterVisits a member of the nest. A nest is a set of classes of the same package that share access to their private members. One of these classes, called the host, lists the other members of the nest, which in turn should link to the host of their nest. This method must be called only if the visited class is the host of a nest. A nest host is implicitly a member of its own nest, so it's invalid to call this method with the visited class name as argument.- Overrides:
visitNestMemberin classPrinter- Parameters:
nestMember- the internal name of a nest member (seeType.getInternalName()).
-
visitPermittedSubclass
Description copied from class:PrinterVisits a permitted subclasses. A permitted subclass is one of the allowed subclasses of the current class. SeeClassVisitor.visitPermittedSubclass(String).- Overrides:
visitPermittedSubclassin classPrinter- Parameters:
permittedSubclass- the internal name of a permitted subclass (seeType.getInternalName()).
-
visitInnerClass
Description copied from class:PrinterClass inner name. SeeClassVisitor.visitInnerClass(java.lang.String, java.lang.String, java.lang.String, int).- Specified by:
visitInnerClassin classPrinter- Parameters:
name- the internal name of an inner class (seeType.getInternalName()).outerName- the internal name of the class to which the inner class belongs (seeType.getInternalName()). May be null for not member classes.innerName- the (simple) name of the inner class inside its enclosing class. May be null for anonymous inner classes.access- the access flags of the inner class as originally declared in the enclosing class.
-
visitRecordComponent
Description copied from class:PrinterVisits a record component of the class. SeeClassVisitor.visitRecordComponent(String, String, String).- Overrides:
visitRecordComponentin classPrinter- Parameters:
name- the field's name.descriptor- the record component descriptor (seeType).signature- the record component signature. May be null if the record component type does not use generic types.- Returns:
- a visitor to visit this record component annotations and attributes, or null if this class visitor is not interested in visiting these annotations and attributes.
-
visitField
public ASMifier visitField(int access, String name, String descriptor, String signature, Object value) Description copied from class:PrinterClass field. SeeClassVisitor.visitField(int, java.lang.String, java.lang.String, java.lang.String, java.lang.Object).- Specified by:
visitFieldin classPrinter- Parameters:
access- the field's access flags (seeOpcodes). This parameter also indicates if the field is synthetic and/or deprecated.name- the field's name.descriptor- the field's descriptor (seeType).signature- the field's signature. May be null if the field's type does not use generic types.value- the field's initial value. This parameter, which may be null if the field does not have an initial value, must be anInteger, aFloat, aLong, aDoubleor aString(forint,float,longorStringfields respectively). This parameter is only used for static fields. Its value is ignored for non static fields, which must be initialized through bytecode instructions in constructors or methods.- Returns:
- the printer.
-
visitMethod
public ASMifier visitMethod(int access, String name, String descriptor, String signature, String[] exceptions) Description copied from class:PrinterClass method. SeeClassVisitor.visitMethod(int, java.lang.String, java.lang.String, java.lang.String, java.lang.String[]).- Specified by:
visitMethodin classPrinter- Parameters:
access- the method's access flags (seeOpcodes). This parameter also indicates if the method is synthetic and/or deprecated.name- the method's name.descriptor- the method's descriptor (seeType).signature- the method's signature. May be null if the method parameters, return type and exceptions do not use generic types.exceptions- the internal names of the method's exception classes (seeType.getInternalName()). May be null.- Returns:
- the printer.
-
visitClassEnd
public void visitClassEnd()Description copied from class:PrinterClass end. SeeClassVisitor.visitEnd().- Specified by:
visitClassEndin classPrinter
-
visitMainClass
Description copied from class:PrinterModule main class. SeeModuleVisitor.visitMainClass(java.lang.String).- Overrides:
visitMainClassin classPrinter- Parameters:
mainClass- the internal name of the main class of the current module (seeType.getInternalName()).
-
visitPackage
Description copied from class:PrinterModule package. SeeModuleVisitor.visitPackage(java.lang.String).- Overrides:
visitPackagein classPrinter- Parameters:
packaze- the internal name of a package (seeType.getInternalName()).
-
visitRequire
Description copied from class:PrinterModule require. SeeModuleVisitor.visitRequire(java.lang.String, int, java.lang.String).- Overrides:
visitRequirein classPrinter- Parameters:
module- the fully qualified name (using dots) of the dependence.access- the access flag of the dependence amongACC_TRANSITIVE,ACC_STATIC_PHASE,ACC_SYNTHETICandACC_MANDATED.version- the module version at compile time, or null.
-
visitExport
Description copied from class:PrinterModule export. SeeModuleVisitor.visitExport(java.lang.String, int, java.lang.String...).- Overrides:
visitExportin classPrinter- Parameters:
packaze- the internal name of the exported package (seeType.getInternalName()).access- the access flag of the exported package, valid values are amongACC_SYNTHETICandACC_MANDATED.modules- the fully qualified names (using dots) of the modules that can access the public classes of the exported package, or null.
-
visitOpen
Description copied from class:PrinterModule open. SeeModuleVisitor.visitOpen(java.lang.String, int, java.lang.String...).- Overrides:
visitOpenin classPrinter- Parameters:
packaze- the internal name of the opened package (seeType.getInternalName()).access- the access flag of the opened package, valid values are amongACC_SYNTHETICandACC_MANDATED.modules- the fully qualified names (using dots) of the modules that can use deep reflection to the classes of the open package, or null.
-
visitUse
Description copied from class:PrinterModule use. SeeModuleVisitor.visitUse(java.lang.String). -
visitProvide
Description copied from class:PrinterModule provide. SeeModuleVisitor.visitProvide(java.lang.String, java.lang.String...).- Overrides:
visitProvidein classPrinter- Parameters:
service- the internal name of the service (seeType.getInternalName()).providers- the internal names of the implementations of the service (there is at least one provider).
-
visitModuleEnd
public void visitModuleEnd()Description copied from class:PrinterModule end. SeeModuleVisitor.visitEnd().- Overrides:
visitModuleEndin classPrinter
-
visit
Description copied from class:PrinterAnnotation value. SeeAnnotationVisitor.visit(java.lang.String, java.lang.Object).- Specified by:
visitin classPrinter- Parameters:
name- the value name.value- the actual value, whose type must beByte,Boolean,Character,Short,Integer,Long,Float,Double,StringorTypeofType.OBJECTorType.ARRAYsort. This value can also be an array of byte, boolean, short, char, int, long, float or double values (this is equivalent to usingPrinter.visitArray(java.lang.String)and visiting each array element in turn, but is more convenient).
-
visitEnum
Description copied from class:PrinterAnnotation enum value. SeeAnnotationVisitor.visitEnum(java.lang.String, java.lang.String, java.lang.String). -
visitAnnotation
Description copied from class:PrinterNested annotation value. SeeAnnotationVisitor.visitAnnotation(java.lang.String, java.lang.String).- Specified by:
visitAnnotationin classPrinter- Parameters:
name- the value name.descriptor- the class descriptor of the nested annotation class.- Returns:
- the printer.
-
visitArray
Description copied from class:PrinterAnnotation array value. SeeAnnotationVisitor.visitArray(java.lang.String).- Specified by:
visitArrayin classPrinter- Parameters:
name- the value name.- Returns:
- the printer.
-
visitAnnotationEnd
public void visitAnnotationEnd()Description copied from class:PrinterAnnotation end. SeeAnnotationVisitor.visitEnd().- Specified by:
visitAnnotationEndin classPrinter
-
visitRecordComponentAnnotation
Description copied from class:PrinterVisits an annotation of the record component. SeeRecordComponentVisitor.visitAnnotation(java.lang.String, boolean).- Overrides:
visitRecordComponentAnnotationin classPrinter- Parameters:
descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- a visitor to visit the annotation values, or null if this visitor is not interested in visiting this annotation.
-
visitRecordComponentTypeAnnotation
public ASMifier visitRecordComponentTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Description copied from class:PrinterVisits an annotation on a type in the record component signature. SeeRecordComponentVisitor.visitTypeAnnotation(int, org.objectweb.asm.TypePath, java.lang.String, boolean).- Overrides:
visitRecordComponentTypeAnnotationin classPrinter- Parameters:
typeRef- a reference to the annotated type. The sort of this type reference must beTypeReference.CLASS_TYPE_PARAMETER,TypeReference.CLASS_TYPE_PARAMETER_BOUNDorTypeReference.CLASS_EXTENDS. SeeTypeReference.typePath- the path to the annotated type argument, wildcard bound, array element type, or static inner type within 'typeRef'. May be null if the annotation targets 'typeRef' as a whole.descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- a visitor to visit the annotation values, or null if this visitor is not interested in visiting this annotation.
-
visitRecordComponentAttribute
public void visitRecordComponentAttribute(org.objectweb.asm.Attribute attribute) Description copied from class:PrinterVisits a non standard attribute of the record component. SeeRecordComponentVisitor.visitAttribute(org.objectweb.asm.Attribute).- Overrides:
visitRecordComponentAttributein classPrinter- Parameters:
attribute- an attribute.
-
visitRecordComponentEnd
public void visitRecordComponentEnd()Description copied from class:PrinterVisits the end of the record component. SeeRecordComponentVisitor.visitEnd(). This method, which is the last one to be called, is used to inform the visitor that everything have been visited.- Overrides:
visitRecordComponentEndin classPrinter
-
visitFieldAnnotation
Description copied from class:PrinterField annotation. SeeFieldVisitor.visitAnnotation(java.lang.String, boolean).- Specified by:
visitFieldAnnotationin classPrinter- Parameters:
descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- the printer.
-
visitFieldTypeAnnotation
public ASMifier visitFieldTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Description copied from class:PrinterField type annotation. SeeFieldVisitor.visitTypeAnnotation(int, org.objectweb.asm.TypePath, java.lang.String, boolean).- Overrides:
visitFieldTypeAnnotationin classPrinter- Parameters:
typeRef- a reference to the annotated type. The sort of this type reference must beTypeReference.FIELD. SeeTypeReference.typePath- the path to the annotated type argument, wildcard bound, array element type, or static inner type within 'typeRef'. May be null if the annotation targets 'typeRef' as a whole.descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- the printer.
-
visitFieldAttribute
public void visitFieldAttribute(org.objectweb.asm.Attribute attribute) Description copied from class:PrinterField attribute. SeeFieldVisitor.visitAttribute(org.objectweb.asm.Attribute).- Specified by:
visitFieldAttributein classPrinter- Parameters:
attribute- an attribute.
-
visitFieldEnd
public void visitFieldEnd()Description copied from class:PrinterField end. SeeFieldVisitor.visitEnd().- Specified by:
visitFieldEndin classPrinter
-
visitParameter
Description copied from class:PrinterMethod parameter. SeeMethodVisitor.visitParameter(String, int).- Overrides:
visitParameterin classPrinter- Parameters:
parameterName- parameter name or null if none is provided.access- the parameter's access flags, onlyACC_FINAL,ACC_SYNTHETICor/andACC_MANDATEDare allowed (seeOpcodes).
-
visitAnnotationDefault
Description copied from class:PrinterMethod default annotation. SeeMethodVisitor.visitAnnotationDefault().- Specified by:
visitAnnotationDefaultin classPrinter- Returns:
- the printer.
-
visitMethodAnnotation
Description copied from class:PrinterMethod annotation. SeeMethodVisitor.visitAnnotation(java.lang.String, boolean).- Specified by:
visitMethodAnnotationin classPrinter- Parameters:
descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- the printer.
-
visitMethodTypeAnnotation
public ASMifier visitMethodTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Description copied from class:PrinterMethod type annotation. SeeMethodVisitor.visitTypeAnnotation(int, org.objectweb.asm.TypePath, java.lang.String, boolean).- Overrides:
visitMethodTypeAnnotationin classPrinter- Parameters:
typeRef- a reference to the annotated type. The sort of this type reference must beTypeReference.METHOD_TYPE_PARAMETER,TypeReference.METHOD_TYPE_PARAMETER_BOUND,TypeReference.METHOD_RETURN,TypeReference.METHOD_RECEIVER,TypeReference.METHOD_FORMAL_PARAMETERorTypeReference.THROWS. SeeTypeReference.typePath- the path to the annotated type argument, wildcard bound, array element type, or static inner type within 'typeRef'. May be null if the annotation targets 'typeRef' as a whole.descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- the printer.
-
visitAnnotableParameterCount
Description copied from class:PrinterNumber of method parameters that can have annotations. SeeMethodVisitor.visitAnnotableParameterCount(int, boolean).- Overrides:
visitAnnotableParameterCountin classPrinter- Parameters:
parameterCount- the number of method parameters than can have annotations. This number must be less or equal than the number of parameter types in the method descriptor. It can be strictly less when a method has synthetic parameters and when these parameters are ignored when computing parameter indices for the purpose of parameter annotations (see https://docs.oracle.com/javase/specs/jvms/se9/html/jvms-4.html#jvms-4.7.18).visible- true to define the number of method parameters that can have annotations visible at runtime, false to define the number of method parameters that can have annotations invisible at runtime.- Returns:
- the printer.
-
visitParameterAnnotation
Description copied from class:PrinterMethod parameter annotation. SeeMethodVisitor.visitParameterAnnotation(int, java.lang.String, boolean).- Specified by:
visitParameterAnnotationin classPrinter- Parameters:
parameter- the parameter index. This index must be strictly smaller than the number of parameters in the method descriptor, and strictly smaller than the parameter count specified inPrinter.visitAnnotableParameterCount(int, boolean). Important note: a parameter index i is not required to correspond to the i'th parameter descriptor in the method descriptor, in particular in case of synthetic parameters (see https://docs.oracle.com/javase/specs/jvms/se9/html/jvms-4.html#jvms-4.7.18).descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- the printer.
-
visitMethodAttribute
public void visitMethodAttribute(org.objectweb.asm.Attribute attribute) Description copied from class:PrinterMethod attribute. SeeMethodVisitor.visitAttribute(org.objectweb.asm.Attribute).- Specified by:
visitMethodAttributein classPrinter- Parameters:
attribute- an attribute.
-
visitCode
public void visitCode()Description copied from class:PrinterMethod start. SeeMethodVisitor.visitCode(). -
visitFrame
Description copied from class:PrinterMethod stack frame. SeeMethodVisitor.visitFrame(int, int, java.lang.Object[], int, java.lang.Object[]).- Specified by:
visitFramein classPrinter- Parameters:
type- the type of this stack map frame. Must beOpcodes.F_NEWfor expanded frames, orOpcodes.F_FULL,Opcodes.F_APPEND,Opcodes.F_CHOP,Opcodes.F_SAMEorOpcodes.F_APPEND,Opcodes.F_SAME1for compressed frames.numLocal- the number of local variables in the visited frame.local- the local variable types in this frame. This array must not be modified. Primitive types are represented byOpcodes.TOP,Opcodes.INTEGER,Opcodes.FLOAT,Opcodes.LONG,Opcodes.DOUBLE,Opcodes.NULLorOpcodes.UNINITIALIZED_THIS(long and double are represented by a single element). Reference types are represented by String objects (representing internal names, seeType.getInternalName()), and uninitialized types by Label objects (this label designates the NEW instruction that created this uninitialized value).numStack- the number of operand stack elements in the visited frame.stack- the operand stack types in this frame. This array must not be modified. Its content has the same format as the "local" array.
-
visitInsn
public void visitInsn(int opcode) Description copied from class:PrinterMethod instruction. SeeMethodVisitor.visitInsn(int)- Specified by:
visitInsnin classPrinter- Parameters:
opcode- the opcode of the instruction to be visited. This opcode is either NOP, ACONST_NULL, ICONST_M1, ICONST_0, ICONST_1, ICONST_2, ICONST_3, ICONST_4, ICONST_5, LCONST_0, LCONST_1, FCONST_0, FCONST_1, FCONST_2, DCONST_0, DCONST_1, IALOAD, LALOAD, FALOAD, DALOAD, AALOAD, BALOAD, CALOAD, SALOAD, IASTORE, LASTORE, FASTORE, DASTORE, AASTORE, BASTORE, CASTORE, SASTORE, POP, POP2, DUP, DUP_X1, DUP_X2, DUP2, DUP2_X1, DUP2_X2, SWAP, IADD, LADD, FADD, DADD, ISUB, LSUB, FSUB, DSUB, IMUL, LMUL, FMUL, DMUL, IDIV, LDIV, FDIV, DDIV, IREM, LREM, FREM, DREM, INEG, LNEG, FNEG, DNEG, ISHL, LSHL, ISHR, LSHR, IUSHR, LUSHR, IAND, LAND, IOR, LOR, IXOR, LXOR, I2L, I2F, I2D, L2I, L2F, L2D, F2I, F2L, F2D, D2I, D2L, D2F, I2B, I2C, I2S, LCMP, FCMPL, FCMPG, DCMPL, DCMPG, IRETURN, LRETURN, FRETURN, DRETURN, ARETURN, RETURN, ARRAYLENGTH, ATHROW, MONITORENTER, or MONITOREXIT.
-
visitIntInsn
public void visitIntInsn(int opcode, int operand) Description copied from class:PrinterMethod instruction. SeeMethodVisitor.visitIntInsn(int, int).- Specified by:
visitIntInsnin classPrinter- Parameters:
opcode- the opcode of the instruction to be visited. This opcode is either BIPUSH, SIPUSH or NEWARRAY.operand- the operand of the instruction to be visited.
When opcode is BIPUSH, operand value should be between Byte.MIN_VALUE and Byte.MAX_VALUE.
When opcode is SIPUSH, operand value should be between Short.MIN_VALUE and Short.MAX_VALUE.
When opcode is NEWARRAY, operand value should be one ofOpcodes.T_BOOLEAN,Opcodes.T_CHAR,Opcodes.T_FLOAT,Opcodes.T_DOUBLE,Opcodes.T_BYTE,Opcodes.T_SHORT,Opcodes.T_INTorOpcodes.T_LONG.
-
visitVarInsn
public void visitVarInsn(int opcode, int varIndex) Description copied from class:PrinterMethod instruction. SeeMethodVisitor.visitVarInsn(int, int).- Specified by:
visitVarInsnin classPrinter- Parameters:
opcode- the opcode of the local variable instruction to be visited. This opcode is either ILOAD, LLOAD, FLOAD, DLOAD, ALOAD, ISTORE, LSTORE, FSTORE, DSTORE, ASTORE or RET.varIndex- the operand of the instruction to be visited. This operand is the index of a local variable.
-
visitTypeInsn
Description copied from class:PrinterMethod instruction. SeeMethodVisitor.visitTypeInsn(int, java.lang.String).- Specified by:
visitTypeInsnin classPrinter- Parameters:
opcode- the opcode of the type instruction to be visited. This opcode is either NEW, ANEWARRAY, CHECKCAST or INSTANCEOF.type- the operand of the instruction to be visited. This operand must be the internal name of an object or array class (seeType.getInternalName()).
-
visitFieldInsn
Description copied from class:PrinterMethod instruction. SeeMethodVisitor.visitFieldInsn(int, java.lang.String, java.lang.String, java.lang.String).- Specified by:
visitFieldInsnin classPrinter- Parameters:
opcode- the opcode of the type instruction to be visited. This opcode is either GETSTATIC, PUTSTATIC, GETFIELD or PUTFIELD.owner- the internal name of the field's owner class (seeType.getInternalName()).name- the field's name.descriptor- the field's descriptor (seeType).
-
visitMethodInsn
public void visitMethodInsn(int opcode, String owner, String name, String descriptor, boolean isInterface) Description copied from class:PrinterMethod instruction. SeeMethodVisitor.visitMethodInsn(int, java.lang.String, java.lang.String, java.lang.String).- Overrides:
visitMethodInsnin classPrinter- Parameters:
opcode- the opcode of the type instruction to be visited. This opcode is either INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or INVOKEINTERFACE.owner- the internal name of the method's owner class (seeType.getInternalName()).name- the method's name.descriptor- the method's descriptor (seeType).isInterface- if the method's owner class is an interface.
-
visitInvokeDynamicInsn
public void visitInvokeDynamicInsn(String name, String descriptor, org.objectweb.asm.Handle bootstrapMethodHandle, Object... bootstrapMethodArguments) Description copied from class:PrinterMethod instruction. SeeMethodVisitor.visitInvokeDynamicInsn(java.lang.String, java.lang.String, org.objectweb.asm.Handle, java.lang.Object...).- Specified by:
visitInvokeDynamicInsnin classPrinter- Parameters:
name- the method's name.descriptor- the method's descriptor (seeType).bootstrapMethodHandle- the bootstrap method.bootstrapMethodArguments- the bootstrap method constant arguments. Each argument must be anInteger,Float,Long,Double,String,TypeorHandlevalue. This method is allowed to modify the content of the array so a caller should expect that this array may change.
-
visitJumpInsn
public void visitJumpInsn(int opcode, org.objectweb.asm.Label label) Description copied from class:PrinterMethod jump instruction. SeeMethodVisitor.visitJumpInsn(int, org.objectweb.asm.Label).- Specified by:
visitJumpInsnin classPrinter- Parameters:
opcode- the opcode of the type instruction to be visited. This opcode is either IFEQ, IFNE, IFLT, IFGE, IFGT, IFLE, IF_ICMPEQ, IF_ICMPNE, IF_ICMPLT, IF_ICMPGE, IF_ICMPGT, IF_ICMPLE, IF_ACMPEQ, IF_ACMPNE, GOTO, JSR, IFNULL or IFNONNULL.label- the operand of the instruction to be visited. This operand is a label that designates the instruction to which the jump instruction may jump.
-
visitLabel
public void visitLabel(org.objectweb.asm.Label label) Description copied from class:PrinterMethod label. SeeMethodVisitor.visitLabel(org.objectweb.asm.Label).- Specified by:
visitLabelin classPrinter- Parameters:
label- aLabelobject.
-
visitLdcInsn
Description copied from class:PrinterMethod instruction. SeeMethodVisitor.visitLdcInsn(java.lang.Object).- Specified by:
visitLdcInsnin classPrinter- Parameters:
value- the constant to be loaded on the stack. This parameter must be a non nullInteger, aFloat, aLong, aDouble, aString, aTypeof OBJECT or ARRAY sort for.classconstants, for classes whose version is 49, aTypeof METHOD sort for MethodType, aHandlefor MethodHandle constants, for classes whose version is 51 or aConstantDynamicfor a constant dynamic for classes whose version is 55.
-
visitIincInsn
public void visitIincInsn(int varIndex, int increment) Description copied from class:PrinterMethod instruction. SeeMethodVisitor.visitIincInsn(int, int).- Specified by:
visitIincInsnin classPrinter- Parameters:
varIndex- index of the local variable to be incremented.increment- amount to increment the local variable by.
-
visitTableSwitchInsn
public void visitTableSwitchInsn(int min, int max, org.objectweb.asm.Label dflt, org.objectweb.asm.Label... labels) Description copied from class:PrinterMethod instruction. SeeMethodVisitor.visitTableSwitchInsn(int, int, org.objectweb.asm.Label, org.objectweb.asm.Label...).- Specified by:
visitTableSwitchInsnin classPrinter- Parameters:
min- the minimum key value.max- the maximum key value.dflt- beginning of the default handler block.labels- beginnings of the handler blocks.labels[i]is the beginning of the handler block for themin + ikey.
-
visitLookupSwitchInsn
public void visitLookupSwitchInsn(org.objectweb.asm.Label dflt, int[] keys, org.objectweb.asm.Label[] labels) Description copied from class:PrinterMethod instruction. SeeMethodVisitor.visitLookupSwitchInsn(org.objectweb.asm.Label, int[], org.objectweb.asm.Label[]).- Specified by:
visitLookupSwitchInsnin classPrinter- Parameters:
dflt- beginning of the default handler block.keys- the values of the keys.labels- beginnings of the handler blocks.labels[i]is the beginning of the handler block for thekeys[i]key.
-
visitMultiANewArrayInsn
Description copied from class:PrinterMethod instruction. SeeMethodVisitor.visitMultiANewArrayInsn(java.lang.String, int).- Specified by:
visitMultiANewArrayInsnin classPrinter- Parameters:
descriptor- an array type descriptor (seeType).numDimensions- the number of dimensions of the array to allocate.
-
visitInsnAnnotation
public ASMifier visitInsnAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Description copied from class:PrinterInstruction type annotation. SeeMethodVisitor.visitInsnAnnotation(int, org.objectweb.asm.TypePath, java.lang.String, boolean).- Overrides:
visitInsnAnnotationin classPrinter- Parameters:
typeRef- a reference to the annotated type. The sort of this type reference must beTypeReference.INSTANCEOF,TypeReference.NEW,TypeReference.CONSTRUCTOR_REFERENCE,TypeReference.METHOD_REFERENCE,TypeReference.CAST,TypeReference.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT,TypeReference.METHOD_INVOCATION_TYPE_ARGUMENT,TypeReference.CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT, orTypeReference.METHOD_REFERENCE_TYPE_ARGUMENT. SeeTypeReference.typePath- the path to the annotated type argument, wildcard bound, array element type, or static inner type within 'typeRef'. May be null if the annotation targets 'typeRef' as a whole.descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- the printer.
-
visitTryCatchBlock
public void visitTryCatchBlock(org.objectweb.asm.Label start, org.objectweb.asm.Label end, org.objectweb.asm.Label handler, String type) Description copied from class:PrinterMethod exception handler. SeeMethodVisitor.visitTryCatchBlock(org.objectweb.asm.Label, org.objectweb.asm.Label, org.objectweb.asm.Label, java.lang.String).- Specified by:
visitTryCatchBlockin classPrinter- Parameters:
start- the beginning of the exception handler's scope (inclusive).end- the end of the exception handler's scope (exclusive).handler- the beginning of the exception handler's code.type- the internal name of the type of exceptions handled by the handler (seeType.getInternalName()), or null to catch any exceptions (for "finally" blocks).
-
visitTryCatchAnnotation
public ASMifier visitTryCatchAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Description copied from class:PrinterTry catch block type annotation. SeeMethodVisitor.visitTryCatchAnnotation(int, org.objectweb.asm.TypePath, java.lang.String, boolean).- Overrides:
visitTryCatchAnnotationin classPrinter- Parameters:
typeRef- a reference to the annotated type. The sort of this type reference must beTypeReference.EXCEPTION_PARAMETER. SeeTypeReference.typePath- the path to the annotated type argument, wildcard bound, array element type, or static inner type within 'typeRef'. May be null if the annotation targets 'typeRef' as a whole.descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- the printer.
-
visitLocalVariable
public void visitLocalVariable(String name, String descriptor, String signature, org.objectweb.asm.Label start, org.objectweb.asm.Label end, int index) Description copied from class:PrinterMethod debug info. SeeMethodVisitor.visitLocalVariable(java.lang.String, java.lang.String, java.lang.String, org.objectweb.asm.Label, org.objectweb.asm.Label, int).- Specified by:
visitLocalVariablein classPrinter- Parameters:
name- the name of a local variable.descriptor- the type descriptor of this local variable.signature- the type signature of this local variable. May be null if the local variable type does not use generic types.start- the first instruction corresponding to the scope of this local variable (inclusive).end- the last instruction corresponding to the scope of this local variable (exclusive).index- the local variable's index.
-
visitLocalVariableAnnotation
public Printer visitLocalVariableAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, org.objectweb.asm.Label[] start, org.objectweb.asm.Label[] end, int[] index, String descriptor, boolean visible) Description copied from class:PrinterLocal variable type annotation. SeeMethodVisitor.visitTryCatchAnnotation(int, org.objectweb.asm.TypePath, java.lang.String, boolean).- Overrides:
visitLocalVariableAnnotationin classPrinter- Parameters:
typeRef- a reference to the annotated type. The sort of this type reference must beTypeReference.LOCAL_VARIABLEorTypeReference.RESOURCE_VARIABLE. SeeTypeReference.typePath- the path to the annotated type argument, wildcard bound, array element type, or static inner type within 'typeRef'. May be null if the annotation targets 'typeRef' as a whole.start- the fist instructions corresponding to the continuous ranges that make the scope of this local variable (inclusive).end- the last instructions corresponding to the continuous ranges that make the scope of this local variable (exclusive). This array must have the same size as the 'start' array.index- the local variable's index in each range. This array must have the same size as the 'start' array.descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- the printer.
-
visitLineNumber
public void visitLineNumber(int line, org.objectweb.asm.Label start) Description copied from class:PrinterMethod debug info. SeeMethodVisitor.visitLineNumber(int, org.objectweb.asm.Label).- Specified by:
visitLineNumberin classPrinter- Parameters:
line- a line number. This number refers to the source file from which the class was compiled.start- the first instruction corresponding to this line number.
-
visitMaxs
public void visitMaxs(int maxStack, int maxLocals) Description copied from class:PrinterMethod max stack and max locals. SeeMethodVisitor.visitMaxs(int, int). -
visitMethodEnd
public void visitMethodEnd()Description copied from class:PrinterMethod end. SeeMethodVisitor.visitEnd().- Specified by:
visitMethodEndin classPrinter
-
visitAnnotation
Visits a class, field or method annotation.- Parameters:
descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- a new
ASMifierto visit the annotation values.
-
visitTypeAnnotation
public ASMifier visitTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Visits a class, field or method type annotation.- Parameters:
typeRef- a reference to the annotated type. The sort of this type reference must beTypeReference.FIELD. SeeTypeReference.typePath- the path to the annotated type argument, wildcard bound, array element type, or static inner type within 'typeRef'. May be null if the annotation targets 'typeRef' as a whole.descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- a new
ASMifierto visit the annotation values.
-
visitTypeAnnotation
public ASMifier visitTypeAnnotation(String method, int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible) Visits a class, field, method, instruction or try catch block type annotation.- Parameters:
method- the name of the visit method for this type of annotation.typeRef- a reference to the annotated type. The sort of this type reference must beTypeReference.FIELD. SeeTypeReference.typePath- the path to the annotated type argument, wildcard bound, array element type, or static inner type within 'typeRef'. May be null if the annotation targets 'typeRef' as a whole.descriptor- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- Returns:
- a new
ASMifierto visit the annotation values.
-
visitAttribute
public void visitAttribute(org.objectweb.asm.Attribute attribute) Visit a class, field or method attribute.- Parameters:
attribute- an attribute.
-
createASMifier
Constructs a newASMifier.- Parameters:
visitorVariableName- the name of the visitor variable in the produced code.annotationVisitorId- identifier of the annotation visitor variable in the produced code.- Returns:
- a new
ASMifier.
-
appendConstant
Appends a string representation of the given constant toPrinter.stringBuilder. -
declareLabel
protected void declareLabel(org.objectweb.asm.Label label) Appends a declaration of the given label toPrinter.stringBuilder. This declaration is of the form "Label labelXXX = new Label();". Does nothing if the given label has already been declared.- Parameters:
label- a label.
-
appendLabel
protected void appendLabel(org.objectweb.asm.Label label) Appends the name of the given label toPrinter.stringBuilder. The given label must already have a name. One way to ensure this is to always calldeclareLabel(org.objectweb.asm.Label)before calling this method.- Parameters:
label- a label.
-