YieldInstr.java
package org.jruby.ir.instructions;
import org.jruby.ir.IRVisitor;
import org.jruby.ir.Interp;
import org.jruby.ir.Operation;
import org.jruby.ir.operands.Operand;
import org.jruby.ir.operands.UnboxedBoolean;
import org.jruby.ir.operands.UndefinedValue;
import org.jruby.ir.operands.Variable;
import org.jruby.ir.runtime.IRRuntimeHelpers;
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;
import java.util.Map;
public class YieldInstr extends Instr implements ResultInstr, FixedArityInstr {
public final boolean unwrapArray;
private Operand blockArg;
private Operand yieldArg;
private Variable result;
public YieldInstr(Variable result, Operand block, Operand arg, boolean unwrapArray) {
super(Operation.YIELD);
assert result != null: "YieldInstr result is null";
this.blockArg = block;
this.yieldArg = arg == null ? UndefinedValue.UNDEFINED : arg;
this.unwrapArray = unwrapArray;
this.result = result;
}
@Override
public Instr clone(CloneInfo ii) {
// FIXME: Is it necessary to clone a yield instruction in a method
// that is being inlined, i.e. in METHOD_INLINE clone mode?
// Fix BasicBlock.java:clone!!
return new YieldInstr(ii.getRenamedVariable(result), blockArg.cloneForInlining(ii), yieldArg.cloneForInlining(ii), unwrapArray);
}
public Operand getBlockArg() {
return blockArg;
}
public Operand getYieldArg() {
return yieldArg;
}
@Override
public String toString() {
return unwrapArray ? (super.toString() + "(" + blockArg + ", UNWRAP(" + yieldArg + "))") : (super.toString() + "(" + blockArg + ", " + yieldArg + ")");
}
public boolean isUnwrapArray() {
return unwrapArray;
}
@Override
public Operand[] getOperands() {
return new Operand[] {blockArg, yieldArg, new UnboxedBoolean(unwrapArray) };
}
@Override
public Variable getResult() {
return result;
}
@Override
public void updateResult(Variable v) {
this.result = v;
}
public Operand[] getNonBlockOperands() {
return new Operand[] {yieldArg};
}
@Override
public void simplifyOperands(Map<Operand, Operand> valueMap, boolean force) {
blockArg = blockArg.getSimplifiedOperand(valueMap, force);
yieldArg = yieldArg.getSimplifiedOperand(valueMap, force);
}
@Interp
@Override
public Object interpret(ThreadContext context, StaticScope currScope, DynamicScope currDynScope, IRubyObject self, Object[] temp) {
Object blk = blockArg.retrieve(context, self, currScope, currDynScope, temp);
if (yieldArg == UndefinedValue.UNDEFINED) {
return IRRuntimeHelpers.yieldSpecific(context, blk);
} else {
IRubyObject yieldVal = (IRubyObject)yieldArg.retrieve(context, self, currScope, currDynScope, temp);
return IRRuntimeHelpers.yield(context, blk, yieldVal, unwrapArray);
}
}
@Override
public void visit(IRVisitor visitor) {
visitor.YieldInstr(this);
}
}