org.jruby.ir.instructions.defined.RestoreErrorInfoInstr Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.jruby.ir.instructions.defined;
import org.jruby.ir.IRVisitor;
import org.jruby.ir.Operation;
import org.jruby.ir.instructions.Instr;
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;
import java.util.Map;
/**
*
* @author enebo
*/
public class RestoreErrorInfoInstr extends Instr {
private Operand arg;
public RestoreErrorInfoInstr(Operand arg) {
super(Operation.RESTORE_ERROR_INFO);
this.arg = arg;
}
@Override
public Operand[] getOperands() {
return new Operand[] { arg };
}
@Override
public String toString() {
return super.toString() + "(" + arg + ")";
}
@Override
public void simplifyOperands(Map valueMap, boolean force) {
arg = arg.getSimplifiedOperand(valueMap, force);
}
@Override
public Instr cloneForInlining(InlinerInfo ii) {
return new RestoreErrorInfoInstr(arg.cloneForInlining(ii));
}
@Override
public Object interpret(ThreadContext context, DynamicScope currDynScope, IRubyObject self, Object[] temp, Block block) {
context.setErrorInfo((IRubyObject) arg.retrieve(context, self, currDynScope, temp));
return null;
}
@Override
public void visit(IRVisitor visitor) {
visitor.RestoreErrorInfoInstr(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy