package org.jruby.ir.targets;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
import org.objectweb.asm.Handle;
import org.objectweb.asm.Opcodes;
import java.lang.invoke.CallSite;
import java.lang.invoke.MethodHandles;
import java.lang.invoke.MethodType;
import static org.jruby.util.CodegenUtils.p;
import static org.jruby.util.CodegenUtils.sig;
public class FixnumObjectSite extends LazyObjectSite {
private final long value;
public FixnumObjectSite(MethodType type, long value) {
super(type);
this.value = value;
}
public static final Handle BOOTSTRAP = new Handle(
Opcodes.H_INVOKESTATIC,
p(FixnumObjectSite.class),
"bootstrap", sig(CallSite.class, MethodHandles.Lookup.class, String.class, MethodType.class, long.class),
false);
public static CallSite bootstrap(MethodHandles.Lookup lookup, String name, MethodType type, long value) {
return new FixnumObjectSite(type, value).bootstrap(lookup);
}
public IRubyObject construct(ThreadContext context) {
return context.runtime.newFixnum(value);
}
}