All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oracle.truffle.js.nodes.cast.JSTrimWhitespaceNodeGen Maven / Gradle / Ivy

There is a newer version: 4.15.102
Show newest version
// 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.UnsupportedSpecializationException;
import com.oracle.truffle.api.dsl.Introspection.Provider;
import com.oracle.truffle.api.nodes.Node;
import com.oracle.truffle.api.nodes.NodeCost;
import com.oracle.truffle.api.profiles.BranchProfile;
import com.oracle.truffle.api.profiles.ConditionProfile;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.concurrent.locks.Lock;

@GeneratedBy(JSTrimWhitespaceNode.class)
public final class JSTrimWhitespaceNodeGen extends JSTrimWhitespaceNode implements Provider {

    @CompilationFinal private volatile int state_;
    @CompilationFinal private StringData string_cache;

    private JSTrimWhitespaceNodeGen() {
    }

    @Override
    public String executeString(String arg0Value) {
        int state = state_;
        if ((state & 0b111) != 0 /* is-active doStringZero(String) || doStringNoWhitespace(String) || doString(String, BranchProfile, BranchProfile, ConditionProfile) */) {
            if ((state & 0b1) != 0 /* is-active doStringZero(String) */) {
                if ((arg0Value.length() == 0)) {
                    return doStringZero(arg0Value);
                }
            }
            if ((state & 0b10) != 0 /* is-active doStringNoWhitespace(String) */) {
                if ((arg0Value.length() > 0) && (!(startsOrEndsWithWhitespace(arg0Value)))) {
                    return doStringNoWhitespace(arg0Value);
                }
            }
            if ((state & 0b100) != 0 /* is-active doString(String, BranchProfile, BranchProfile, ConditionProfile) */) {
                StringData s3_ = this.string_cache;
                if (s3_ != null) {
                    if ((arg0Value.length() > 0) && (startsOrEndsWithWhitespace(arg0Value))) {
                        return doString(arg0Value, s3_.needFirstBranch_, s3_.needLastBranch_, s3_.needSubstring_);
                    }
                }
            }
        }
        CompilerDirectives.transferToInterpreterAndInvalidate();
        return executeAndSpecialize(arg0Value);
    }

    private String executeAndSpecialize(String arg0Value) {
        Lock lock = getLock();
        boolean hasLock = true;
        lock.lock();
        int state = state_;
        try {
            if ((arg0Value.length() == 0)) {
                this.state_ = state = state | 0b1 /* add-active doStringZero(String) */;
                lock.unlock();
                hasLock = false;
                return doStringZero(arg0Value);
            }
            if ((arg0Value.length() > 0) && (!(startsOrEndsWithWhitespace(arg0Value)))) {
                this.state_ = state = state | 0b10 /* add-active doStringNoWhitespace(String) */;
                lock.unlock();
                hasLock = false;
                return doStringNoWhitespace(arg0Value);
            }
            if ((arg0Value.length() > 0) && (startsOrEndsWithWhitespace(arg0Value))) {
                StringData s3_ = new StringData();
                s3_.needFirstBranch_ = (BranchProfile.create());
                s3_.needLastBranch_ = (BranchProfile.create());
                s3_.needSubstring_ = (ConditionProfile.createBinaryProfile());
                this.string_cache = s3_;
                this.state_ = state = state | 0b100 /* add-active doString(String, BranchProfile, BranchProfile, ConditionProfile) */;
                lock.unlock();
                hasLock = false;
                return doString(arg0Value, s3_.needFirstBranch_, s3_.needLastBranch_, s3_.needSubstring_);
            }
            throw new UnsupportedSpecializationException(this, new Node[] {null}, arg0Value);
        } finally {
            if (hasLock) {
                lock.unlock();
            }
        }
    }

    @Override
    public NodeCost getCost() {
        int state = state_;
        if ((state & 0b111) == 0b0) {
            return NodeCost.UNINITIALIZED;
        } else if (((state & 0b111) & ((state & 0b111) - 1)) == 0 /* is-single-active  */) {
            return NodeCost.MONOMORPHIC;
        }
        return NodeCost.POLYMORPHIC;
    }

    @Override
    public Introspection getIntrospectionData() {
        Object[] data = new Object[4];
        Object[] s;
        data[0] = 0;
        int state = state_;
        s = new Object[3];
        s[0] = "doStringZero";
        if ((state & 0b1) != 0 /* is-active doStringZero(String) */) {
            s[1] = (byte)0b01 /* active */;
        } else {
            s[1] = (byte)0b00 /* inactive */;
        }
        data[1] = s;
        s = new Object[3];
        s[0] = "doStringNoWhitespace";
        if ((state & 0b10) != 0 /* is-active doStringNoWhitespace(String) */) {
            s[1] = (byte)0b01 /* active */;
        } else {
            s[1] = (byte)0b00 /* inactive */;
        }
        data[2] = s;
        s = new Object[3];
        s[0] = "doString";
        if ((state & 0b100) != 0 /* is-active doString(String, BranchProfile, BranchProfile, ConditionProfile) */) {
            s[1] = (byte)0b01 /* active */;
            ArrayList cached = new ArrayList<>();
            StringData s3_ = this.string_cache;
            if (s3_ != null) {
                cached.add(Arrays.asList(s3_.needFirstBranch_, s3_.needLastBranch_, s3_.needSubstring_));
            }
            s[2] = cached;
        } else {
            s[1] = (byte)0b00 /* inactive */;
        }
        data[3] = s;
        return Provider.create(data);
    }

    public static JSTrimWhitespaceNode create() {
        return new JSTrimWhitespaceNodeGen();
    }

    @GeneratedBy(JSTrimWhitespaceNode.class)
    private static final class StringData {

        @CompilationFinal BranchProfile needFirstBranch_;
        @CompilationFinal BranchProfile needLastBranch_;
        @CompilationFinal ConditionProfile needSubstring_;

        StringData() {
        }

    }
}