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

org.jruby.ir.transformations.inlining.SimpleCloneInfo Maven / Gradle / Ivy

package org.jruby.ir.transformations.inlining;

import org.jruby.ir.IRScope;
import org.jruby.ir.operands.Label;
import org.jruby.ir.operands.LocalVariable;
import org.jruby.ir.operands.Variable;

/**
 * Context info for simple cloning operation.
 */
public class SimpleCloneInfo extends CloneInfo {
    private boolean isEnsureBlock;
    private boolean cloneIPC;

    public SimpleCloneInfo(IRScope scope, boolean isEnsureBlock, boolean cloneIPC) {
        super(scope);

        this.isEnsureBlock = isEnsureBlock;
    }

    public SimpleCloneInfo(IRScope scope, boolean isEnsureBlock) {
        this(scope, isEnsureBlock, false);
    }

    public boolean isEnsureBlockCloneMode() {
        return this.isEnsureBlock;
    }

    public boolean shouldCloneIPC() {
        return cloneIPC;
    }

    protected Label getRenamedLabelSimple(Label l) {
        // In ensure-block-clone mode, no cloning of labels not already pre-renamed and initialized
        // FIXME: IRScope.java:prepareInstructionsForInterpretation/Compilation assumes that
        // multiple labels with the same name are identical java objects. So, reuse the object here.
        return isEnsureBlock ? l : l.clone();
    }

    public Variable getRenamedSelfVariable(Variable self) {
        return self;
    }

    protected Variable getRenamedVariableSimple(Variable v) {
        return v.clone(this);
    }

    // Unconditional renaming of labels -- used to initialize ensure region cloning
    public void renameLabel(Label l) {
        labelRenameMap.put(l, getScope().getNewLabel());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy