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

org.jruby.ir.operands.Variable Maven / Gradle / Ivy

There is a newer version: 0.8.14
Show newest version
package org.jruby.ir.operands;

import org.jruby.ir.transformations.inlining.InlinerInfo;

import java.util.List;
import java.util.Map;

public abstract class Variable extends Operand implements Comparable {
    public final static String BLOCK          = "%block";
    public final static String CURRENT_SCOPE  = "%current_scope";
    public final static String CURRENT_MODULE = "%current_module";

    public abstract String getName();

    @Override
    public boolean canCopyPropagate() {
        return true;
    }

    @Override
    public Operand getSimplifiedOperand(Map valueMap, boolean force) {
        Operand v = valueMap.get(this);
        // You can only value-replace atomic values
        return (v != null) && (force || v.canCopyPropagate()) ? v : this;
    }

    public boolean isImplicitBlockArg() {
        return getName().equals(BLOCK);
    }

    @Override
    public Operand getValue(Map valueMap) {
        Operand v = valueMap.get(this);

        return (v == null) ? this : v;
    }

    /** Append the list of variables used in this operand to the input list */
    @Override
    public void addUsedVariables(List l) {
        l.add(this);
    }

    public abstract Variable cloneForCloningClosure(InlinerInfo ii);

    @Override
    public Operand cloneForInlining(InlinerInfo ii) { 
        return ii.getRenamedVariable(this);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy