org.jruby.truffle.cext.CharPointerGetSizeNodeSubNodeGen Maven / Gradle / Ivy
The newest version!
// CheckStyle: start generated
package org.jruby.truffle.cext;
import com.oracle.truffle.api.CompilerDirectives;
import com.oracle.truffle.api.CompilerDirectives.CompilationFinal;
import com.oracle.truffle.api.dsl.GeneratedBy;
import com.oracle.truffle.api.dsl.UnsupportedSpecializationException;
import com.oracle.truffle.api.frame.VirtualFrame;
import com.oracle.truffle.api.nodes.Node;
import com.oracle.truffle.api.nodes.NodeCost;
@GeneratedBy(CharPointerGetSizeNodeSub.class)
public final class CharPointerGetSizeNodeSubNodeGen extends CharPointerGetSizeNodeSub {
@CompilationFinal private boolean seenUnsupported0;
private CharPointerGetSizeNodeSubNodeGen() {
}
@Override
public NodeCost getCost() {
return NodeCost.MONOMORPHIC;
}
@Override
public Object executeWithTarget(VirtualFrame frameValue, Object arg0Value) {
if (arg0Value instanceof StringCharPointerAdapter) {
StringCharPointerAdapter arg0Value_ = (StringCharPointerAdapter) arg0Value;
return this.accessWithTarget(arg0Value_);
}
throw unsupported(arg0Value);
}
private UnsupportedSpecializationException unsupported(Object arg0Value) {
if (!seenUnsupported0) {
CompilerDirectives.transferToInterpreterAndInvalidate();
seenUnsupported0 = true;
}
return new UnsupportedSpecializationException(this, new Node[] {null}, arg0Value);
}
public static CharPointerGetSizeNodeSub create() {
return new CharPointerGetSizeNodeSubNodeGen();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy