org.jruby.ir.instructions.JumpIndirectInstr Maven / Gradle / Ivy
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.Variable;
import org.jruby.ir.transformations.inlining.InlinerInfo;
import org.jruby.runtime.DynamicScope;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
import java.util.Map;
// Used in ensure blocks to jump to the label contained in '_target'
public class JumpIndirectInstr extends Instr {
private Variable target;
public JumpIndirectInstr(Variable target) {
super(Operation.JUMP_INDIRECT);
this.target = target;
}
public Variable getJumpTarget() {
return target;
}
public Operand[] getOperands() {
return new Operand[]{target};
}
@Override
public void simplifyOperands(Map valueMap, boolean force) {
// SSS FIXME: Is this correct? Are we guaranteed this returns a variable always?
target = (Variable)target.getSimplifiedOperand(valueMap, force);
}
@Override
public String toString() {
return super.toString() + "(" + target + ")";
}
@Override
public Instr cloneForInlining(InlinerInfo ii) {
return new JumpIndirectInstr(ii.getRenamedVariable(target));
}
@Override
public int interpretAndGetNewIPC(ThreadContext context, DynamicScope currDynScope, IRubyObject self, Object[] temp, int ipc) {
return ((Label)getJumpTarget().retrieve(context, self, currDynScope, temp)).getTargetPC();
}
@Override
public void visit(IRVisitor visitor) {
visitor.JumpIndirectInstr(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy