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

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

There is a newer version: 9.4.9.0
Show newest version
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.transformations.inlining.InlinerInfo;

public class JumpInstr extends Instr {
    public final Label target;

    public JumpInstr(Label target) {
        super(Operation.JUMP);
        this.target = target;
    }

    public Operand[] getOperands() {
        return EMPTY_OPERANDS;
    }

    @Override
    public String toString() {
        return super.toString() + " " + target;
    }

    public Label getJumpTarget() {
        return target;
    }

    @Override
    public Instr cloneForInlinedScope(InlinerInfo ii) {
        return new JumpInstr(ii.getRenamedLabel(target));
    }

    @Override
    public Instr cloneForBlockCloning(InlinerInfo ii) {
        return new JumpInstr(target);
    }

    public void visit(IRVisitor visitor) {
        visitor.JumpInstr(this);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy