org.jruby.ir.instructions.PushBindingInstr Maven / Gradle / Ivy
package org.jruby.ir.instructions;
import org.jruby.ir.IRScope;
import org.jruby.ir.IRMethod;
import org.jruby.ir.IRVisitor;
import org.jruby.ir.Operation;
import org.jruby.ir.operands.Operand;
import org.jruby.ir.transformations.inlining.InlinerInfo;
import org.jruby.runtime.Block;
import org.jruby.runtime.DynamicScope;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
public class PushBindingInstr extends Instr {
private IRScope scope; // Scope for which frame is needed
public PushBindingInstr(IRScope scope) {
super(Operation.PUSH_BINDING);
this.scope = scope;
}
public Operand[] getOperands() {
return EMPTY_OPERANDS;
}
@Override
public Instr cloneForInlining(InlinerInfo ii) {
// The frame will now be allocated in the caller's scope
return new PushBindingInstr(ii.getInlineHostScope());
}
@Override
public String toString() {
return "" + getOperation() + "(" + scope + ")";
}
@Override
public void visit(IRVisitor visitor) {
visitor.PushBindingInstr(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy