org.jruby.truffle.cext.CharPointerHasSizeNodeSub Maven / Gradle / Ivy
The newest version!
package org.jruby.truffle.cext;
import com.oracle.truffle.api.frame.VirtualFrame;
import com.oracle.truffle.api.dsl.Specialization;
import com.oracle.truffle.api.nodes.RootNode;
import com.oracle.truffle.api.TruffleLanguage;
import com.oracle.truffle.api.interop.ForeignAccess;
import com.oracle.truffle.api.dsl.UnsupportedSpecializationException;
import com.oracle.truffle.api.interop.UnsupportedTypeException;
/**
* This message resolution is generated by {@link org.jruby.truffle.cext.StringCharPointerMessageResolution.CharPointerHasSizeNode}
* It is used by the foreign access factory {@link org.jruby.truffle.cext.StringCharPointerMessageResolutionForeign}
*/
public abstract class CharPointerHasSizeNodeSub extends org.jruby.truffle.cext.StringCharPointerMessageResolution.CharPointerHasSizeNode {
public abstract Object executeWithTarget(VirtualFrame frame, Object o0);
@Specialization
protected Object accessWithTarget(org.jruby.truffle.cext.StringCharPointerAdapter object) {
return access(object);
}
private static final class HAS_SIZERootNode extends RootNode {
protected HAS_SIZERootNode(Class extends TruffleLanguage>> language) {
super(language, null, null);
}
@Child private CharPointerHasSizeNodeSub node = org.jruby.truffle.cext.CharPointerHasSizeNodeSubNodeGen.create();
@Override
public Object execute(VirtualFrame frame) {
Object receiver = ForeignAccess.getReceiver(frame);
try {
return node.executeWithTarget(frame, receiver);
} catch (UnsupportedSpecializationException e) {
if (e.getNode() instanceof CharPointerHasSizeNodeSub) {
throw UnsupportedTypeException.raise(e, e.getSuppliedValues());
} else {
throw e;
}
}
}
}
public static RootNode createRoot(Class extends TruffleLanguage>> language) {
return new HAS_SIZERootNode(language);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy