org.jruby.ir.instructions.CheckArgsArrayArityInstr Maven / Gradle / Ivy
package org.jruby.ir.instructions;
import org.jruby.RubyArray;
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.Arity;
import org.jruby.runtime.Block;
import org.jruby.runtime.DynamicScope;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
import java.util.Map;
import org.jruby.runtime.Helpers;
public class CheckArgsArrayArityInstr extends Instr {
public final int required;
public final int opt;
public final int rest;
private Operand argsArray;
public CheckArgsArrayArityInstr(Operand argsArray, int required, int opt, int rest) {
super(Operation.CHECK_ARGS_ARRAY_ARITY);
this.required = required;
this.opt = opt;
this.rest = rest;
this.argsArray = argsArray;
}
public Operand getArgsArray() {
return argsArray;
}
@Override
public Operand[] getOperands() {
return new Operand[] { argsArray };
}
@Override
public void simplifyOperands(Map valueMap, boolean force) {
argsArray = argsArray.getSimplifiedOperand(valueMap, force);
}
@Override
public String toString() {
return super.toString() + "(" + argsArray + ", " + required + ", " + opt + ", " + rest + ")";
}
@Override
public Instr cloneForInlining(InlinerInfo ii) {
return new CheckArgsArrayArityInstr(argsArray.cloneForInlining(ii), required, opt, rest);
}
@Override
public Object interpret(ThreadContext context, DynamicScope currDynScope, IRubyObject self, Object[] temp, Block block) {
RubyArray args = (RubyArray) argsArray.retrieve(context, self, currDynScope, temp);
Helpers.irCheckArgsArrayArity(context, args, required, opt, rest);
return null;
}
@Override
public void visit(IRVisitor visitor) {
visitor.CheckArgsArrayArityInstr(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy