package org.jruby.ir.targets;
import org.jruby.internal.runtime.methods.DynamicMethod;
import org.jruby.runtime.CallType;
import org.jruby.runtime.builtin.IRubyObject;
import org.jruby.runtime.callsite.CacheEntry;
import org.jruby.util.JavaNameMangler;
import org.jruby.util.StringSupport;
import org.objectweb.asm.Handle;
import org.objectweb.asm.Opcodes;
import java.lang.invoke.CallSite;
import java.lang.invoke.MethodHandle;
import java.lang.invoke.MethodHandles;
import java.lang.invoke.MethodType;
import java.lang.invoke.SwitchPoint;
import java.util.List;
import static org.jruby.util.CodegenUtils.p;
import static org.jruby.util.CodegenUtils.sig;
public class SelfInvokeSite extends InvokeSite {
public SelfInvokeSite(MethodType type, String name, CallType callType, boolean literalClosure, String file, int line) {
super(type, name, callType, literalClosure, file, line);
}
public SelfInvokeSite(MethodType type, String name, CallType callType, String file, int line) {
this(type, name, callType, false, file, line);
}
public static Handle BOOTSTRAP = new Handle(
Opcodes.H_INVOKESTATIC,
p(SelfInvokeSite.class),
"bootstrap",
sig(CallSite.class, MethodHandles.Lookup.class, String.class, MethodType.class, int.class, String.class, int.class),
false);
public static CallSite bootstrap(MethodHandles.Lookup lookup, String name, MethodType type, int closureInt, String file, int line) {
boolean literalClosure = closureInt != 0;
List<String> nameComponents = StringSupport.split(name, ':');
String methodName = JavaNameMangler.demangleMethodName(nameComponents.get(1));
CallType callType = nameComponents.get(0).equals("callFunctional") ? CallType.FUNCTIONAL : CallType.VARIABLE;
InvokeSite site = new SelfInvokeSite(type, methodName, callType, literalClosure, file, line);
return InvokeSite.bootstrap(site, lookup);
}
@Override
public boolean methodMissing(CacheEntry entry, IRubyObject caller) {
DynamicMethod method = entry.method;
return method.isUndefined();
}
}