package org.jruby.ir.targets;
import org.jcodings.Encoding;
import org.jruby.RubyEncoding;
import org.jruby.RubySymbol;
import org.jruby.ir.runtime.IRRuntimeHelpers;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
import org.jruby.util.ByteList;
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 SymbolObjectSite extends LazyObjectSite {
private final String value;
private final String encoding;
public SymbolObjectSite(MethodType type, String value, String encoding) {
super(type);
this.value = value;
this.encoding = encoding;
}
public static final Handle BOOTSTRAP = new Handle(
Opcodes.H_INVOKESTATIC,
p(SymbolObjectSite.class),
"bootstrap",
sig(CallSite.class, MethodHandles.Lookup.class, String.class, MethodType.class, String.class, String.class),
false);
public static CallSite bootstrap(MethodHandles.Lookup lookup, String name, MethodType type, String value, String encoding) {
return new SymbolObjectSite(type, value, encoding).bootstrap(lookup);
}
public IRubyObject construct(ThreadContext context) {
return RubySymbol.newSymbol(context.runtime,
new ByteList(
RubyEncoding.encodeISO(value),
IRRuntimeHelpers.retrieveJCodingsEncoding(context, encoding),
false));
}
}