org.jruby.compiler.ir.instructions.JumpInstr Maven / Gradle / Ivy
package org.jruby.compiler.ir.instructions;
import org.jruby.compiler.ir.Operation;
import org.jruby.compiler.ir.operands.Label;
import org.jruby.compiler.ir.representations.InlinerInfo;
import org.jruby.interpreter.InterpreterContext;
import org.jruby.runtime.builtin.IRubyObject;
public class JumpInstr extends NoOperandInstr {
public final Label target;
public JumpInstr(Label target) {
super(Operation.JUMP);
this.target = target;
}
@Override
public String toString() {
return super.toString() + " " + target;
}
public Label getJumpTarget() {
return target;
}
public Instr cloneForInlining(InlinerInfo ii) {
return new JumpInstr(ii.getRenamedLabel(target));
}
@Override
public Label interpret(InterpreterContext interp, IRubyObject self) {
return target;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy