
com.oracle.truffle.js.nodes.cast.JSToIndexNodeGen Maven / Gradle / Ivy
// CheckStyle: start generated
package com.oracle.truffle.js.nodes.cast;
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.Introspection.Provider;
import com.oracle.truffle.api.nodes.NodeCost;
import com.oracle.truffle.api.profiles.BranchProfile;
import com.oracle.truffle.js.nodes.JSGuards;
import com.oracle.truffle.js.nodes.JSTypesGen;
import com.oracle.truffle.js.runtime.SafeInteger;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.concurrent.locks.Lock;
@GeneratedBy(JSToIndexNode.class)
public final class JSToIndexNodeGen extends JSToIndexNode implements Provider {
@CompilationFinal private volatile int state_;
@CompilationFinal private BranchProfile negativeIndexBranch;
@CompilationFinal private BranchProfile double_tooLargeIndexBranch_;
@Child private JSToNumberNode object_toNumberNode_;
@Child private JSToIndexNode object_recursiveToIndexNode_;
private JSToIndexNodeGen() {
}
@Override
public long executeLong(Object arg0Value) {
int state = state_;
if ((state & 0b1) != 0 /* is-active doInt(int, BranchProfile) */ && arg0Value instanceof Integer) {
int arg0Value_ = (int) arg0Value;
return doInt(arg0Value_, this.negativeIndexBranch);
}
if ((state & 0b10) != 0 /* is-active doSafeInteger(SafeInteger, BranchProfile) */ && arg0Value instanceof SafeInteger) {
SafeInteger arg0Value_ = (SafeInteger) arg0Value;
return doSafeInteger(arg0Value_, this.negativeIndexBranch);
}
if ((state & 0b100) != 0 /* is-active doDouble(double, BranchProfile, BranchProfile) */ && JSTypesGen.isImplicitDouble((state & 0b111100000) >>> 5 /* extract-implicit-active 0:double */, arg0Value)) {
double arg0Value_ = JSTypesGen.asImplicitDouble((state & 0b111100000) >>> 5 /* extract-implicit-active 0:double */, arg0Value);
return doDouble(arg0Value_, this.negativeIndexBranch, this.double_tooLargeIndexBranch_);
}
if ((state & 0b11000) != 0 /* is-active doUndefined(Object) || doObject(Object, JSToNumberNode, JSToIndexNode) */) {
if ((state & 0b1000) != 0 /* is-active doUndefined(Object) */) {
if ((JSGuards.isUndefined(arg0Value))) {
return JSToIndexNode.doUndefined(arg0Value);
}
}
if ((state & 0b10000) != 0 /* is-active doObject(Object, JSToNumberNode, JSToIndexNode) */) {
return JSToIndexNode.doObject(arg0Value, this.object_toNumberNode_, this.object_recursiveToIndexNode_);
}
}
CompilerDirectives.transferToInterpreterAndInvalidate();
return executeAndSpecialize(arg0Value);
}
private long executeAndSpecialize(Object arg0Value) {
Lock lock = getLock();
boolean hasLock = true;
lock.lock();
int state = state_;
try {
if (arg0Value instanceof Integer) {
int arg0Value_ = (int) arg0Value;
if (this.negativeIndexBranch == null) {
this.negativeIndexBranch = (BranchProfile.create());
}
this.state_ = state = state | 0b1 /* add-active doInt(int, BranchProfile) */;
lock.unlock();
hasLock = false;
return doInt(arg0Value_, this.negativeIndexBranch);
}
if (arg0Value instanceof SafeInteger) {
SafeInteger arg0Value_ = (SafeInteger) arg0Value;
if (this.negativeIndexBranch == null) {
this.negativeIndexBranch = (BranchProfile.create());
}
this.state_ = state = state | 0b10 /* add-active doSafeInteger(SafeInteger, BranchProfile) */;
lock.unlock();
hasLock = false;
return doSafeInteger(arg0Value_, this.negativeIndexBranch);
}
{
int doubleCast0;
if ((doubleCast0 = JSTypesGen.specializeImplicitDouble(arg0Value)) != 0) {
double arg0Value_ = JSTypesGen.asImplicitDouble(doubleCast0, arg0Value);
if (this.negativeIndexBranch == null) {
this.negativeIndexBranch = (BranchProfile.create());
}
this.double_tooLargeIndexBranch_ = (BranchProfile.create());
state = (state | (doubleCast0 << 5) /* set-implicit-active 0:double */);
this.state_ = state = state | 0b100 /* add-active doDouble(double, BranchProfile, BranchProfile) */;
lock.unlock();
hasLock = false;
return doDouble(arg0Value_, this.negativeIndexBranch, this.double_tooLargeIndexBranch_);
}
}
if ((JSGuards.isUndefined(arg0Value))) {
this.state_ = state = state | 0b1000 /* add-active doUndefined(Object) */;
lock.unlock();
hasLock = false;
return JSToIndexNode.doUndefined(arg0Value);
}
this.object_toNumberNode_ = super.insert((JSToNumberNode.create()));
this.object_recursiveToIndexNode_ = super.insert((JSToIndexNode.create()));
this.state_ = state = state | 0b10000 /* add-active doObject(Object, JSToNumberNode, JSToIndexNode) */;
lock.unlock();
hasLock = false;
return JSToIndexNode.doObject(arg0Value, this.object_toNumberNode_, this.object_recursiveToIndexNode_);
} finally {
if (hasLock) {
lock.unlock();
}
}
}
@Override
public NodeCost getCost() {
int state = state_;
if ((state & 0b11111) == 0b0) {
return NodeCost.UNINITIALIZED;
} else if (((state & 0b11111) & ((state & 0b11111) - 1)) == 0 /* is-single-active */) {
return NodeCost.MONOMORPHIC;
}
return NodeCost.POLYMORPHIC;
}
@Override
public Introspection getIntrospectionData() {
Object[] data = new Object[6];
Object[] s;
data[0] = 0;
int state = state_;
s = new Object[3];
s[0] = "doInt";
if ((state & 0b1) != 0 /* is-active doInt(int, BranchProfile) */) {
s[1] = (byte)0b01 /* active */;
ArrayList
© 2015 - 2025 Weber Informatics LLC | Privacy Policy