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

org.jruby.ir.instructions.GetFieldInstr Maven / Gradle / Ivy

package org.jruby.ir.instructions;

import org.jruby.Ruby;
import org.jruby.RubyClass;
import org.jruby.RubyClass.VariableAccessor;
import org.jruby.ir.IRVisitor;
import org.jruby.ir.Operation;
import org.jruby.ir.operands.Operand;
import org.jruby.ir.operands.Variable;
import org.jruby.ir.transformations.inlining.InlinerInfo;
import org.jruby.runtime.Block;
import org.jruby.runtime.DynamicScope;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;

public class GetFieldInstr extends GetInstr {
    private VariableAccessor accessor = VariableAccessor.DUMMY_ACCESSOR;
    
    public GetFieldInstr(Variable dest, Operand obj, String fieldName) {
        super(Operation.GET_FIELD, dest, obj, fieldName);
    }

    @Override
    public Instr cloneForInlining(InlinerInfo ii) {
        return new GetFieldInstr(ii.getRenamedVariable(getResult()),
                getSource().cloneForInlining(ii), getRef());
    }

    @Override
    public Object interpret(ThreadContext context, DynamicScope currDynScope, IRubyObject self, Object[] temp, Block block) {
        Ruby runtime = context.runtime;
        IRubyObject object = (IRubyObject) getSource().retrieve(context, self, currDynScope, temp);

        RubyClass cls = object.getMetaClass().getRealClass();
        VariableAccessor localAccessor = accessor;
        IRubyObject value;
        if (localAccessor.getClassId() != cls.hashCode()) {
            localAccessor = cls.getVariableAccessorForRead(getRef());
            if (localAccessor == null) return runtime.getNil();
            value = (IRubyObject)localAccessor.get(object);
            accessor = localAccessor;
        } else {
            value = (IRubyObject)localAccessor.get(object);
        }
        return value == null ? runtime.getNil() : value;
    }

    @Override
    public void visit(IRVisitor visitor) {
        visitor.GetFieldInstr(this);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy