com.oracle.truffle.sl.builtins.SLPrintlnBuiltinFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truffle-sl Show documentation
Show all versions of truffle-sl Show documentation
Truffle SL is an example language implemented using the Truffle API.
// CheckStyle: start generated
package com.oracle.truffle.sl.builtins;
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.NodeFactory;
import com.oracle.truffle.api.frame.VirtualFrame;
import com.oracle.truffle.api.interop.InteropLibrary;
import com.oracle.truffle.api.library.LibraryFactory;
import com.oracle.truffle.api.nodes.Node;
import com.oracle.truffle.api.nodes.NodeCost;
import com.oracle.truffle.sl.nodes.SLExpressionNode;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.locks.Lock;
@GeneratedBy(SLPrintlnBuiltin.class)
public final class SLPrintlnBuiltinFactory implements NodeFactory {
private static final SLPrintlnBuiltinFactory INSTANCE = new SLPrintlnBuiltinFactory();
private static final LibraryFactory INTEROP_LIBRARY_ = LibraryFactory.resolve(InteropLibrary.class);
private SLPrintlnBuiltinFactory() {
}
@Override
public Class getNodeClass() {
return SLPrintlnBuiltin.class;
}
@Override
public List> getExecutionSignature() {
return Arrays.asList(SLExpressionNode.class);
}
@Override
public List>> getNodeSignatures() {
return Arrays.asList(Arrays.asList(SLExpressionNode[].class));
}
@Override
public SLPrintlnBuiltin createNode(Object... arguments) {
if (arguments.length == 1 && (arguments[0] == null || arguments[0] instanceof SLExpressionNode[])) {
return create((SLExpressionNode[]) arguments[0]);
} else {
throw new IllegalArgumentException("Invalid create signature.");
}
}
public static NodeFactory getInstance() {
return INSTANCE;
}
public static SLPrintlnBuiltin create(SLExpressionNode[] arguments) {
return new SLPrintlnBuiltinNodeGen(arguments);
}
@GeneratedBy(SLPrintlnBuiltin.class)
public static final class SLPrintlnBuiltinNodeGen extends SLPrintlnBuiltin {
@Child private SLExpressionNode arguments0_;
@CompilationFinal private volatile int state_0_;
@Child private InteropLibrary interop_;
private SLPrintlnBuiltinNodeGen(SLExpressionNode[] arguments) {
this.arguments0_ = arguments != null && 0 < arguments.length ? arguments[0] : null;
}
@Override
protected Object execute(VirtualFrame frameValue) {
int state_0 = this.state_0_;
Object arguments0Value_ = this.arguments0_.executeGeneric(frameValue);
if (state_0 != 0 /* is-state_0 println(Object, InteropLibrary) */) {
return println(arguments0Value_, this.interop_);
}
CompilerDirectives.transferToInterpreterAndInvalidate();
return executeAndSpecialize(arguments0Value_);
}
private Object executeAndSpecialize(Object arguments0Value) {
Lock lock = getLock();
boolean hasLock = true;
lock.lock();
try {
int state_0 = this.state_0_;
this.interop_ = super.insert((INTEROP_LIBRARY_.createDispatched(3)));
this.state_0_ = state_0 = state_0 | 0b1 /* add-state_0 println(Object, InteropLibrary) */;
lock.unlock();
hasLock = false;
return println(arguments0Value, this.interop_);
} finally {
if (hasLock) {
lock.unlock();
}
}
}
@Override
public NodeCost getCost() {
int state_0 = this.state_0_;
if (state_0 == 0) {
return NodeCost.UNINITIALIZED;
} else {
return NodeCost.MONOMORPHIC;
}
}
}
}