com.oracle.truffle.tck.ComplexInvokeNodeSubNodeGen Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truffle-tck Show documentation
Show all versions of truffle-tck Show documentation
A collection of tests that can certify language implementation to be compliant
with most recent requirements of the Truffle infrastructure and tooling.
// CheckStyle: start generated
package com.oracle.truffle.tck;
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(ComplexInvokeNodeSub.class)
final class ComplexInvokeNodeSubNodeGen extends ComplexInvokeNodeSub {
@CompilationFinal private boolean seenUnsupported0;
private ComplexInvokeNodeSubNodeGen() {
}
@Override
public NodeCost getCost() {
return NodeCost.MONOMORPHIC;
}
@Override
public Object executeWithTarget(VirtualFrame frameValue, Object arg0Value, Object arg1Value, Object arg2Value) {
if (arg0Value instanceof ComplexNumber && arg1Value instanceof String && arg2Value instanceof Object[]) {
ComplexNumber arg0Value_ = (ComplexNumber) arg0Value;
String arg1Value_ = (String) arg1Value;
Object[] arg2Value_ = (Object[]) arg2Value;
return this.accessWithTarget(arg0Value_, arg1Value_, arg2Value_);
}
throw unsupported(arg0Value, arg1Value, arg2Value);
}
private UnsupportedSpecializationException unsupported(Object arg0Value, Object arg1Value, Object arg2Value) {
if (!seenUnsupported0) {
CompilerDirectives.transferToInterpreterAndInvalidate();
seenUnsupported0 = true;
}
return new UnsupportedSpecializationException(this, new Node[] {null, null, null}, arg0Value, arg1Value, arg2Value);
}
public static ComplexInvokeNodeSub create() {
return new ComplexInvokeNodeSubNodeGen();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy