org.testifyproject.bytebuddy.implementation.bytecode.member.HandleInvocation Maven / Gradle / Ivy
package org.testifyproject.bytebuddy.implementation.bytecode.member;
import lombok.EqualsAndHashCode;
import org.testifyproject.bytebuddy.implementation.Implementation;
import org.testifyproject.bytebuddy.implementation.bytecode.StackManipulation;
import org.testifyproject.bytebuddy.utility.JavaConstant;
import org.testifyproject.bytebuddy.jar.asm.MethodVisitor;
import org.testifyproject.bytebuddy.jar.asm.Opcodes;
/**
* An exact invocation of a method handle with a polymorphic signature.
*/
@EqualsAndHashCode
public class HandleInvocation implements StackManipulation {
/**
* The name of the {@code java.lang.invoke.MethodHandle} type.
*/
private static final String METHOD_HANDLE_NAME = "java/lang/invoke/MethodHandle";
/**
* The name of the {@code invokeExact} method.
*/
private static final String INVOKE_EXACT = "invokeExact";
/**
* The method type of the invoked handle.
*/
private final JavaConstant.MethodType methodType;
/**
* Creates a public invocation of a method handle.
*
* @param methodType The method type of the invoked handle.
*/
public HandleInvocation(JavaConstant.MethodType methodType) {
this.methodType = methodType;
}
@Override
public boolean isValid() {
return true;
}
@Override
public Size apply(MethodVisitor methodVisitor, Implementation.Context implementationContext) {
methodVisitor.visitMethodInsn(Opcodes.INVOKEVIRTUAL, METHOD_HANDLE_NAME, INVOKE_EXACT, methodType.getDescriptor(), false);
int size = methodType.getReturnType().getStackSize().getSize() - methodType.getParameterTypes().getStackSize();
return new Size(size, Math.max(size, 0));
}
}