com.oracle.truffle.sl.builtins.SLNanoTimeBuiltinFactory 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.
The newest version!
// CheckStyle: start generated
package com.oracle.truffle.sl.builtins;
import com.oracle.truffle.api.dsl.GeneratedBy;
import com.oracle.truffle.api.dsl.NeverDefault;
import com.oracle.truffle.api.dsl.NodeFactory;
import com.oracle.truffle.api.frame.VirtualFrame;
import com.oracle.truffle.api.nodes.Node;
import com.oracle.truffle.sl.nodes.SLExpressionNode;
import java.util.List;
@GeneratedBy(SLNanoTimeBuiltin.class)
@SuppressWarnings({"javadoc", "unused"})
public final class SLNanoTimeBuiltinFactory implements NodeFactory {
private static final SLNanoTimeBuiltinFactory INSTANCE = new SLNanoTimeBuiltinFactory();
private SLNanoTimeBuiltinFactory() {
}
@Override
public Class getNodeClass() {
return SLNanoTimeBuiltin.class;
}
@Override
public List> getExecutionSignature() {
return List.of();
}
@Override
public List>> getNodeSignatures() {
return List.of(List.of(SLExpressionNode[].class));
}
@Override
public SLNanoTimeBuiltin 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;
}
@NeverDefault
public static SLNanoTimeBuiltin create(SLExpressionNode[] arguments) {
return new SLNanoTimeBuiltinNodeGen(arguments);
}
/**
* Debug Info:
* Specialization {@link SLNanoTimeBuiltin#nanoTime}
* Activation probability: 1.00000
* With/without class size: 16/0 bytes
*
*/
@GeneratedBy(SLNanoTimeBuiltin.class)
@SuppressWarnings("javadoc")
public static final class SLNanoTimeBuiltinNodeGen extends SLNanoTimeBuiltin {
private SLNanoTimeBuiltinNodeGen(SLExpressionNode[] arguments) {
}
@Override
protected Object execute(VirtualFrame frameValue) {
return nanoTime();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy