
com.oracle.truffle.js.nodes.function.JSNewNodeGen Maven / Gradle / Ivy
// CheckStyle: start generated
package com.oracle.truffle.js.nodes.function;
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.Introspection;
import com.oracle.truffle.api.dsl.UnsupportedSpecializationException;
import com.oracle.truffle.api.dsl.Introspection.Provider;
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.api.object.DynamicObject;
import com.oracle.truffle.api.profiles.ConditionProfile;
import com.oracle.truffle.js.nodes.JSGuards;
import com.oracle.truffle.js.nodes.JSTypes;
import com.oracle.truffle.js.nodes.JavaScriptNode;
import com.oracle.truffle.js.nodes.interop.ExportValueNode;
import com.oracle.truffle.js.nodes.interop.ImportValueNode;
import com.oracle.truffle.js.runtime.JSContext;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.concurrent.locks.Lock;
@GeneratedBy(JSNewNode.class)
public final class JSNewNodeGen extends JSNewNode implements Provider {
private static final LibraryFactory INTEROP_LIBRARY_ = LibraryFactory.resolve(InteropLibrary.class);
@CompilationFinal private volatile int state_;
@Child private NewForeignObjectData newForeignObject_cache;
private JSNewNodeGen(JSContext context, JavaScriptNode targetNode, AbstractFunctionArgumentsNode arguments) {
super(context, targetNode, arguments);
}
@Override
public Object execute(VirtualFrame frameValue) {
int state = state_;
Object targetNodeValue_ = super.targetNode.execute(frameValue);
if ((state & 0b1111) != 0 /* is-active doNewReturnThis(VirtualFrame, DynamicObject) || doJSAdapter(VirtualFrame, DynamicObject) || doNewJSProxy(VirtualFrame, DynamicObject) || createClassNotFoundError(VirtualFrame, DynamicObject) */ && JSTypes.isDynamicObject(targetNodeValue_)) {
DynamicObject targetNodeValue__ = (DynamicObject) targetNodeValue_;
if ((state & 0b1) != 0 /* is-active doNewReturnThis(VirtualFrame, DynamicObject) */) {
if ((JSGuards.isJSFunction(targetNodeValue__))) {
return doNewReturnThis(frameValue, targetNodeValue__);
}
}
if ((state & 0b10) != 0 /* is-active doJSAdapter(VirtualFrame, DynamicObject) */) {
if ((JSGuards.isJSAdapter(targetNodeValue__))) {
return doJSAdapter(frameValue, targetNodeValue__);
}
}
if ((state & 0b100) != 0 /* is-active doNewJSProxy(VirtualFrame, DynamicObject) */) {
if ((JSGuards.isJSProxy(targetNodeValue__))) {
return doNewJSProxy(frameValue, targetNodeValue__);
}
}
if ((state & 0b1000) != 0 /* is-active createClassNotFoundError(VirtualFrame, DynamicObject) */) {
if ((JSGuards.isJavaPackage(targetNodeValue__))) {
return createClassNotFoundError(frameValue, targetNodeValue__);
}
}
}
if ((state & 0b110000) != 0 /* is-active doNewForeignObject(VirtualFrame, Object, InteropLibrary, ExportValueNode, ImportValueNode, ConditionProfile, ConditionProfile) || createFunctionTypeError(VirtualFrame, Object) */) {
if ((state & 0b10000) != 0 /* is-active doNewForeignObject(VirtualFrame, Object, InteropLibrary, ExportValueNode, ImportValueNode, ConditionProfile, ConditionProfile) */) {
NewForeignObjectData s5_ = this.newForeignObject_cache;
if (s5_ != null) {
if ((JSGuards.isForeignObject(targetNodeValue_))) {
return doNewForeignObject(frameValue, targetNodeValue_, s5_.interop_, s5_.convert_, s5_.toJSType_, s5_.isHostClassProf_, s5_.isAbstractProf_);
}
}
}
if ((state & 0b100000) != 0 /* is-active createFunctionTypeError(VirtualFrame, Object) */) {
if ((!(JSGuards.isJSFunction(targetNodeValue_))) && (!(JSGuards.isJSAdapter(targetNodeValue_))) && (!(JSGuards.isJSProxy(targetNodeValue_))) && (!(JSGuards.isJavaPackage(targetNodeValue_))) && (!(JSGuards.isForeignObject(targetNodeValue_)))) {
return createFunctionTypeError(frameValue, targetNodeValue_);
}
}
}
CompilerDirectives.transferToInterpreterAndInvalidate();
return executeAndSpecialize(frameValue, targetNodeValue_);
}
@Override
public void executeVoid(VirtualFrame frameValue) {
execute(frameValue);
return;
}
private Object executeAndSpecialize(VirtualFrame frameValue, Object targetNodeValue) {
Lock lock = getLock();
boolean hasLock = true;
lock.lock();
int state = state_;
try {
if (JSTypes.isDynamicObject(targetNodeValue)) {
DynamicObject targetNodeValue_ = (DynamicObject) targetNodeValue;
if ((JSGuards.isJSFunction(targetNodeValue_))) {
this.state_ = state = state | 0b1 /* add-active doNewReturnThis(VirtualFrame, DynamicObject) */;
lock.unlock();
hasLock = false;
return doNewReturnThis(frameValue, targetNodeValue_);
}
if ((JSGuards.isJSAdapter(targetNodeValue_))) {
this.state_ = state = state | 0b10 /* add-active doJSAdapter(VirtualFrame, DynamicObject) */;
lock.unlock();
hasLock = false;
return doJSAdapter(frameValue, targetNodeValue_);
}
if ((JSGuards.isJSProxy(targetNodeValue_))) {
this.state_ = state = state | 0b100 /* add-active doNewJSProxy(VirtualFrame, DynamicObject) */;
lock.unlock();
hasLock = false;
return doNewJSProxy(frameValue, targetNodeValue_);
}
if ((JSGuards.isJavaPackage(targetNodeValue_))) {
this.state_ = state = state | 0b1000 /* add-active createClassNotFoundError(VirtualFrame, DynamicObject) */;
lock.unlock();
hasLock = false;
return createClassNotFoundError(frameValue, targetNodeValue_);
}
}
if ((JSGuards.isForeignObject(targetNodeValue))) {
NewForeignObjectData s5_ = super.insert(new NewForeignObjectData());
s5_.interop_ = s5_.insertAccessor((INTEROP_LIBRARY_.createDispatched(5)));
s5_.convert_ = s5_.insertAccessor((ExportValueNode.create()));
s5_.toJSType_ = s5_.insertAccessor((ImportValueNode.create()));
s5_.isHostClassProf_ = (ConditionProfile.createBinaryProfile());
s5_.isAbstractProf_ = (ConditionProfile.createBinaryProfile());
this.newForeignObject_cache = s5_;
this.state_ = state = state | 0b10000 /* add-active doNewForeignObject(VirtualFrame, Object, InteropLibrary, ExportValueNode, ImportValueNode, ConditionProfile, ConditionProfile) */;
lock.unlock();
hasLock = false;
return doNewForeignObject(frameValue, targetNodeValue, s5_.interop_, s5_.convert_, s5_.toJSType_, s5_.isHostClassProf_, s5_.isAbstractProf_);
}
if ((!(JSGuards.isJSFunction(targetNodeValue))) && (!(JSGuards.isJSAdapter(targetNodeValue))) && (!(JSGuards.isJSProxy(targetNodeValue))) && (!(JSGuards.isJavaPackage(targetNodeValue))) && (!(JSGuards.isForeignObject(targetNodeValue)))) {
this.state_ = state = state | 0b100000 /* add-active createFunctionTypeError(VirtualFrame, Object) */;
lock.unlock();
hasLock = false;
return createFunctionTypeError(frameValue, targetNodeValue);
}
throw new UnsupportedSpecializationException(this, new Node[] {super.targetNode}, targetNodeValue);
} finally {
if (hasLock) {
lock.unlock();
}
}
}
@Override
public NodeCost getCost() {
int state = state_;
if (state == 0b0) {
return NodeCost.UNINITIALIZED;
} else if ((state & (state - 1)) == 0 /* is-single-active */) {
return NodeCost.MONOMORPHIC;
}
return NodeCost.POLYMORPHIC;
}
@Override
public Introspection getIntrospectionData() {
Object[] data = new Object[7];
Object[] s;
data[0] = 0;
int state = state_;
s = new Object[3];
s[0] = "doNewReturnThis";
if ((state & 0b1) != 0 /* is-active doNewReturnThis(VirtualFrame, DynamicObject) */) {
s[1] = (byte)0b01 /* active */;
} else {
s[1] = (byte)0b00 /* inactive */;
}
data[1] = s;
s = new Object[3];
s[0] = "doJSAdapter";
if ((state & 0b10) != 0 /* is-active doJSAdapter(VirtualFrame, DynamicObject) */) {
s[1] = (byte)0b01 /* active */;
} else {
s[1] = (byte)0b00 /* inactive */;
}
data[2] = s;
s = new Object[3];
s[0] = "doNewJSProxy";
if ((state & 0b100) != 0 /* is-active doNewJSProxy(VirtualFrame, DynamicObject) */) {
s[1] = (byte)0b01 /* active */;
} else {
s[1] = (byte)0b00 /* inactive */;
}
data[3] = s;
s = new Object[3];
s[0] = "createClassNotFoundError";
if ((state & 0b1000) != 0 /* is-active createClassNotFoundError(VirtualFrame, DynamicObject) */) {
s[1] = (byte)0b01 /* active */;
} else {
s[1] = (byte)0b00 /* inactive */;
}
data[4] = s;
s = new Object[3];
s[0] = "doNewForeignObject";
if ((state & 0b10000) != 0 /* is-active doNewForeignObject(VirtualFrame, Object, InteropLibrary, ExportValueNode, ImportValueNode, ConditionProfile, ConditionProfile) */) {
s[1] = (byte)0b01 /* active */;
ArrayList
© 2015 - 2025 Weber Informatics LLC | Privacy Policy