Class MemberSubstitution.SubstitutingMethodVisitor
java.lang.Object
org.objectweb.asm.MethodVisitor
net.bytebuddy.utility.visitor.LocalVariableAwareMethodVisitor
net.bytebuddy.asm.MemberSubstitution.SubstitutingMethodVisitor
- Enclosing class:
MemberSubstitution
protected static class MemberSubstitution.SubstitutingMethodVisitor
extends LocalVariableAwareMethodVisitor
A method visitor that applies a substitution for matched methods.
-
Field Summary
Fields inherited from class org.objectweb.asm.MethodVisitor
api, mv -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedSubstitutingMethodVisitor(org.objectweb.asm.MethodVisitor methodVisitor, TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodGraph.Compiler methodGraphCompiler, boolean strict, boolean failIfNoMatch, MemberSubstitution.Replacement replacement, Implementation.Context implementationContext, TypePool typePool, boolean virtualPrivateCalls) Creates a new substituting method visitor. -
Method Summary
Modifier and TypeMethodDescriptionvoidvisitFieldInsn(int opcode, String owner, String internalName, String descriptor) voidvisitInvokeDynamicInsn(String name, String descriptor, org.objectweb.asm.Handle handle, Object... argument) voidvisitMaxs(int stackSize, int localVariableLength) voidvisitMethodInsn(int opcode, String owner, String internalName, String descriptor, boolean isInterface) Methods inherited from class LocalVariableAwareMethodVisitor
getFreeOffset, visitVarInsnMethods inherited from class org.objectweb.asm.MethodVisitor
getDelegate, visitAnnotableParameterCount, visitAnnotation, visitAnnotationDefault, visitAttribute, visitCode, visitEnd, visitFrame, visitIincInsn, visitInsn, visitInsnAnnotation, visitIntInsn, visitJumpInsn, visitLabel, visitLdcInsn, visitLineNumber, visitLocalVariable, visitLocalVariableAnnotation, visitLookupSwitchInsn, visitMethodInsn, visitMultiANewArrayInsn, visitParameter, visitParameterAnnotation, visitTableSwitchInsn, visitTryCatchAnnotation, visitTryCatchBlock, visitTypeAnnotation, visitTypeInsn
-
Constructor Details
-
SubstitutingMethodVisitor
protected SubstitutingMethodVisitor(org.objectweb.asm.MethodVisitor methodVisitor, TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodGraph.Compiler methodGraphCompiler, boolean strict, boolean failIfNoMatch, MemberSubstitution.Replacement replacement, Implementation.Context implementationContext, TypePool typePool, boolean virtualPrivateCalls) Creates a new substituting method visitor.- Parameters:
methodVisitor- The method visitor to delegate to.instrumentedType- The instrumented type.instrumentedMethod- The instrumented method.methodGraphCompiler- The method graph compiler to use.strict-trueif the method processing should be strict where an exception is raised if a member cannot be found.failIfNoMatch-trueif the instrumentation should fail if applied to a method without match.replacement- The replacement to use for creating substitutions.implementationContext- The implementation context to use.typePool- The type pool to use.virtualPrivateCalls-true, virtual method calls might target private methods in accordance to the nest mate specification.
-
-
Method Details
-
visitFieldInsn
-
visitMethodInsn
-
visitInvokeDynamicInsn
-
visitMaxs
public void visitMaxs(int stackSize, int localVariableLength) - Overrides:
visitMaxsin classorg.objectweb.asm.MethodVisitor
-