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

org.jruby.ir.instructions.specialized.OneFixnumArgNoBlockCallInstr Maven / Gradle / Ivy

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

import org.jruby.ir.instructions.CallInstr;
import org.jruby.ir.operands.Fixnum;
import org.jruby.ir.operands.Operand;
import org.jruby.ir.Operation;
import org.jruby.runtime.Block;
import org.jruby.runtime.DynamicScope;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;

/**
 *
 */
public class OneFixnumArgNoBlockCallInstr extends CallInstr {
    private final long fixNum;

    public OneFixnumArgNoBlockCallInstr(CallInstr call) {
        super(Operation.CALL_1F, call);

        assert getCallArgs().length == 1;

        this.fixNum = ((Fixnum) getCallArgs()[0]).value;
    }

    @Override
    public String toString() {
        return super.toString() + "{1F}";
    }

    public Operand getReceiver() {
        return receiver;
    }

    public long getFixnumArg() {
        return fixNum;
    }

    @Override
    public Object interpret(ThreadContext context, DynamicScope dynamicScope, IRubyObject self, Object[] temp, Block block) {
        IRubyObject object = (IRubyObject) receiver.retrieve(context, self, dynamicScope, temp);
        return getCallSite().call(context, self, object, fixNum);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy