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

org.jruby.compiler.ir.operands.LocalVariable Maven / Gradle / Ivy

There is a newer version: 9.4.7.0
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package org.jruby.compiler.ir.operands;

import org.jruby.interpreter.InterpreterContext;

/**
 *
 * @author enebo
 */
public class LocalVariable extends Variable {
    final public String name;
    private int location;

    // FIXME: We should resolve to an index into an array but localvariable has no allocator
    public LocalVariable(String name, int location) {
        this.name = name;
        this.location = location;
    }
    
    public void setLocation(int slot) {
        this.location = slot;
    }

    public int getLocation() {
        return location;
    }

    @Override
    public String getName() {
        return name;
    }

    @Override
    public String toString() {
        return name;
    }

    @Override
    public int hashCode() {
        return name.hashCode();
    }

    public boolean isSelf() {
        return name.equals("%self");  // SSS FIXME: This is potentially bug-prone.
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == null || !(obj instanceof LocalVariable)) return false;

        return name.equals(((LocalVariable) obj).name);
    }

    public int compareTo(Object arg0) {
        // ENEBO: what should compareTo when it is not comparable?
        if (!(arg0 instanceof LocalVariable)) return 0;

        return name.compareTo(((LocalVariable) arg0).name);
    }

    @Override
    public Object retrieve(InterpreterContext interp) {
		  // SSS FIXME: Should we have a special case for self?
        //return interp.getLocalVariable(getName());
        return interp.getLocalVariable(location);
    }

    @Override
    public Object store(InterpreterContext interp, Object value) {
        return interp.setLocalVariable(location, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy