org.jruby.ir.instructions.PushMethodFrameInstr Maven / Gradle / Ivy
package org.jruby.ir.instructions;
import org.jruby.ir.IRVisitor;
import org.jruby.ir.Operation;
import org.jruby.ir.persistence.IRReaderDecoder;
import org.jruby.ir.transformations.inlining.CloneInfo;
import org.jruby.ir.transformations.inlining.SimpleCloneInfo;
public class PushMethodFrameInstr extends NoOperandInstr implements FixedArityInstr {
private final String frameName;
public PushMethodFrameInstr(String frameName) {
super(Operation.PUSH_METHOD_FRAME);
this.frameName = frameName;
}
public String getFrameName() {
return frameName;
}
@Override
public Instr clone(CloneInfo ii) {
return ii instanceof SimpleCloneInfo ? this : NopInstr.NOP; // FIXME: Is this correct?
}
public static PushMethodFrameInstr decode(IRReaderDecoder d) {
return new PushMethodFrameInstr(d.decodeString());
}
@Override
public void visit(IRVisitor visitor) {
visitor.PushMethodFrameInstr(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy