![JAR search and dependency download from the Maven repository](/logo.png)
org.jruby.ir.instructions.defined.GetBackrefInstr Maven / Gradle / Ivy
The newest version!
/*
* 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.instructions.ResultInstr;
import org.jruby.ir.operands.Operand;
import org.jruby.ir.operands.Variable;
import org.jruby.ir.transformations.inlining.InlinerInfo;
import org.jruby.runtime.Helpers;
import org.jruby.runtime.Block;
import org.jruby.runtime.DynamicScope;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
/**
*
* @author enebo
*/
public class GetBackrefInstr extends Instr implements ResultInstr {
private Variable result;
public GetBackrefInstr(Variable result) {
super(Operation.GET_BACKREF);
}
@Override
public Operand[] getOperands() {
return EMPTY_OPERANDS;
}
public Variable getResult() {
return result;
}
public void updateResult(Variable v) {
result = v;
}
@Override
public Instr cloneForInlining(InlinerInfo inlinerInfo) {
return new GetBackrefInstr((Variable) getResult().cloneForInlining(inlinerInfo));
}
@Override
public Object interpret(ThreadContext context, DynamicScope currDynScope, IRubyObject self, Object[] temp, Block block) {
// SSS: FIXME: Or use this directly? "context.getCurrentScope().getBackRef(rt)" What is the diff??
return Helpers.getBackref(context.runtime, context);
}
@Override
public void visit(IRVisitor visitor) {
visitor.GetBackrefInstr(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy