All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jruby.ir.instructions.defined.BackrefIsMatchDataInstr Maven / Gradle / Ivy

There is a newer version: 9.4.9.0
Show newest version
package org.jruby.ir.instructions.defined;

import org.jruby.RubyMatchData;
import org.jruby.ir.IRVisitor;
import org.jruby.ir.Operation;
import org.jruby.ir.instructions.Instr;
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;

/**
 *
 */
public class BackrefIsMatchDataInstr extends DefinedInstr {
    public BackrefIsMatchDataInstr(Variable result) {
        super(Operation.BACKREF_IS_MATCH_DATA, result, EMPTY_OPERANDS);
    }

    @Override
    public Instr cloneForInlining(InlinerInfo ii) {
        return new BackrefIsMatchDataInstr(ii.getRenamedVariable(result));
    }

    @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??
        IRubyObject backref = Helpers.getBackref(context.runtime, context);

        return context.runtime.newBoolean(RubyMatchData.class.isInstance(backref));
    }

    @Override
    public void visit(IRVisitor visitor) {
        visitor.BackrefIsMatchDataInstr(this);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy