BUndefInstr.java
package org.jruby.ir.instructions;
import org.jruby.ir.IRVisitor;
import org.jruby.ir.Operation;
import org.jruby.ir.operands.Label;
import org.jruby.ir.operands.Operand;
import org.jruby.ir.operands.UndefinedValue;
import org.jruby.ir.transformations.inlining.CloneInfo;
import org.jruby.parser.StaticScope;
import org.jruby.runtime.DynamicScope;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
public class BUndefInstr extends OneOperandBranchInstr implements FixedArityInstr {
public BUndefInstr(Operand v, Label jmpTarget) {
super(Operation.B_UNDEF, v, jmpTarget);
}
@Override
public Instr clone(CloneInfo ii) {
return new BUndefInstr(getArg1().cloneForInlining(ii), ii.getRenamedLabel(getJumpTarget()));
}
@Override
public int interpretAndGetNewIPC(ThreadContext context, DynamicScope currDynScope, StaticScope currScope, IRubyObject self, Object[] temp, int ipc) {
Object value1 = getArg1().retrieve(context, self, currScope, currDynScope, temp);
return value1 == UndefinedValue.UNDEFINED ? getJumpTarget().getTargetPC() : ipc;
}
@Override
public void visit(IRVisitor visitor) {
visitor.BUndefInstr(this);
}
}