public class org.jruby.ir.instructions.ReceiveOptArgInstr extends org.jruby.ir.instructions.ReceiveArgBase implements org.jruby.ir.instructions.FixedArityInstr
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.ir.instructions.ReceiveOptArgInstr
  super_class: org.jruby.ir.instructions.ReceiveArgBase
{
  public final int preArgs;
    descriptor: I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final int requiredArgs;
    descriptor: I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public void <init>(org.jruby.ir.operands.Variable, int, int, int);
    descriptor: (Lorg/jruby/ir/operands/Variable;III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
        start local 1 // org.jruby.ir.operands.Variable result
        start local 2 // int requiredArgs
        start local 3 // int preArgs
        start local 4 // int optArgIndex
         0: .line 24
            aload 0 /* this */
            getstatic org.jruby.ir.Operation.RECV_OPT_ARG:Lorg/jruby/ir/Operation;
            aload 1 /* result */
            iload 4 /* optArgIndex */
            invokespecial org.jruby.ir.instructions.ReceiveArgBase.<init>:(Lorg/jruby/ir/Operation;Lorg/jruby/ir/operands/Variable;I)V
         1: .line 25
            aload 0 /* this */
            iload 3 /* preArgs */
            putfield org.jruby.ir.instructions.ReceiveOptArgInstr.preArgs:I
         2: .line 26
            aload 0 /* this */
            iload 2 /* requiredArgs */
            putfield org.jruby.ir.instructions.ReceiveOptArgInstr.requiredArgs:I
         3: .line 27
            return
        end local 4 // int optArgIndex
        end local 3 // int preArgs
        end local 2 // int requiredArgs
        end local 1 // org.jruby.ir.operands.Variable result
        end local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lorg/jruby/ir/instructions/ReceiveOptArgInstr;
            0    4     1        result  Lorg/jruby/ir/operands/Variable;
            0    4     2  requiredArgs  I
            0    4     3       preArgs  I
            0    4     4   optArgIndex  I
    MethodParameters:
              Name  Flags
      result        
      requiredArgs  
      preArgs       
      optArgIndex   

  public java.lang.String[] toStringNonOperandArgs();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
         0: .line 31
            iconst_3
            anewarray java.lang.String
            dup
            iconst_0
            new java.lang.StringBuilder
            dup
            ldc "index:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.jruby.ir.instructions.ReceiveOptArgInstr.getArgIndex:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aastore
            dup
            iconst_1
            new java.lang.StringBuilder
            dup
            ldc "req: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.requiredArgs:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aastore
            dup
            iconst_2
            new java.lang.StringBuilder
            dup
            ldc "pre: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.preArgs:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aastore
            areturn
        end local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/instructions/ReceiveOptArgInstr;

  public int getPreArgs();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
         0: .line 35
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.preArgs:I
            ireturn
        end local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/instructions/ReceiveOptArgInstr;

  public int getRequiredArgs();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
         0: .line 39
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.requiredArgs:I
            ireturn
        end local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/instructions/ReceiveOptArgInstr;

  public org.jruby.ir.instructions.Instr clone(org.jruby.ir.transformations.inlining.CloneInfo);
    descriptor: (Lorg/jruby/ir/transformations/inlining/CloneInfo;)Lorg/jruby/ir/instructions/Instr;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
        start local 1 // org.jruby.ir.transformations.inlining.CloneInfo info
         0: .line 44
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.argIndex:I
            istore 2 /* optArgIndex */
        start local 2 // int optArgIndex
         1: .line 45
            aload 1 /* info */
            instanceof org.jruby.ir.transformations.inlining.SimpleCloneInfo
            ifeq 2
            new org.jruby.ir.instructions.ReceiveOptArgInstr
            dup
            aload 1 /* info */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.result:Lorg/jruby/ir/operands/Variable;
            invokevirtual org.jruby.ir.transformations.inlining.CloneInfo.getRenamedVariable:(Lorg/jruby/ir/operands/Variable;)Lorg/jruby/ir/operands/Variable;
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.requiredArgs:I
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.preArgs:I
            iload 2 /* optArgIndex */
            invokespecial org.jruby.ir.instructions.ReceiveOptArgInstr.<init>:(Lorg/jruby/ir/operands/Variable;III)V
            areturn
         2: .line 47
      StackMap locals: int
      StackMap stack:
            aload 1 /* info */
            checkcast org.jruby.ir.transformations.inlining.InlineCloneInfo
            astore 3 /* ii */
        start local 3 // org.jruby.ir.transformations.inlining.InlineCloneInfo ii
         3: .line 52
            iload 2 /* optArgIndex */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.requiredArgs:I
            iadd
            istore 4 /* minReqdArgs */
        start local 4 // int minReqdArgs
         4: .line 54
            aload 3 /* ii */
            invokevirtual org.jruby.ir.transformations.inlining.InlineCloneInfo.canMapArgsStatically:()Z
            ifeq 9
         5: .line 55
            aload 3 /* ii */
            invokevirtual org.jruby.ir.transformations.inlining.InlineCloneInfo.getArgsCount:()I
            istore 5 /* n */
        start local 5 // int n
         6: .line 56
            new org.jruby.ir.instructions.CopyInstr
            dup
            aload 3 /* ii */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.result:Lorg/jruby/ir/operands/Variable;
            invokevirtual org.jruby.ir.transformations.inlining.InlineCloneInfo.getRenamedVariable:(Lorg/jruby/ir/operands/Variable;)Lorg/jruby/ir/operands/Variable;
            iload 4 /* minReqdArgs */
            iload 5 /* n */
            if_icmpge 7
            aload 3 /* ii */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.preArgs:I
            iload 2 /* optArgIndex */
            iadd
            invokevirtual org.jruby.ir.transformations.inlining.InlineCloneInfo.getArg:(I)Lorg/jruby/ir/operands/Operand;
            goto 8
      StackMap locals: org.jruby.ir.instructions.ReceiveOptArgInstr org.jruby.ir.transformations.inlining.CloneInfo int org.jruby.ir.transformations.inlining.InlineCloneInfo int int
      StackMap stack: new 6 new 6 org.jruby.ir.operands.Variable
         7: getstatic org.jruby.ir.operands.UndefinedValue.UNDEFINED:Lorg/jruby/ir/operands/UndefinedValue;
      StackMap locals: org.jruby.ir.instructions.ReceiveOptArgInstr org.jruby.ir.transformations.inlining.CloneInfo int org.jruby.ir.transformations.inlining.InlineCloneInfo int int
      StackMap stack: new 6 new 6 org.jruby.ir.operands.Variable org.jruby.ir.operands.Operand
         8: invokespecial org.jruby.ir.instructions.CopyInstr.<init>:(Lorg/jruby/ir/operands/Variable;Lorg/jruby/ir/operands/Operand;)V
            areturn
        end local 5 // int n
         9: .line 59
      StackMap locals:
      StackMap stack:
            new org.jruby.ir.instructions.OptArgMultipleAsgnInstr
            dup
            aload 3 /* ii */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.result:Lorg/jruby/ir/operands/Variable;
            invokevirtual org.jruby.ir.transformations.inlining.InlineCloneInfo.getRenamedVariable:(Lorg/jruby/ir/operands/Variable;)Lorg/jruby/ir/operands/Variable;
            aload 3 /* ii */
            invokevirtual org.jruby.ir.transformations.inlining.InlineCloneInfo.getArgs:()Lorg/jruby/ir/operands/Operand;
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.preArgs:I
            iload 2 /* optArgIndex */
            iadd
            iload 4 /* minReqdArgs */
            invokespecial org.jruby.ir.instructions.OptArgMultipleAsgnInstr.<init>:(Lorg/jruby/ir/operands/Variable;Lorg/jruby/ir/operands/Operand;II)V
            areturn
        end local 4 // int minReqdArgs
        end local 3 // org.jruby.ir.transformations.inlining.InlineCloneInfo ii
        end local 2 // int optArgIndex
        end local 1 // org.jruby.ir.transformations.inlining.CloneInfo info
        end local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   10     0         this  Lorg/jruby/ir/instructions/ReceiveOptArgInstr;
            0   10     1         info  Lorg/jruby/ir/transformations/inlining/CloneInfo;
            1   10     2  optArgIndex  I
            3   10     3           ii  Lorg/jruby/ir/transformations/inlining/InlineCloneInfo;
            4   10     4  minReqdArgs  I
            6    9     5            n  I
    MethodParameters:
      Name  Flags
      info  

  public void encode(org.jruby.ir.persistence.IRWriterEncoder);
    descriptor: (Lorg/jruby/ir/persistence/IRWriterEncoder;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
        start local 1 // org.jruby.ir.persistence.IRWriterEncoder e
         0: .line 64
            aload 0 /* this */
            aload 1 /* e */
            invokespecial org.jruby.ir.instructions.ReceiveArgBase.encode:(Lorg/jruby/ir/persistence/IRWriterEncoder;)V
         1: .line 65
            aload 1 /* e */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.requiredArgs:I
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(I)V
         2: .line 66
            aload 1 /* e */
            aload 0 /* this */
            invokevirtual org.jruby.ir.instructions.ReceiveOptArgInstr.getPreArgs:()I
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(I)V
         3: .line 67
            aload 1 /* e */
            aload 0 /* this */
            invokevirtual org.jruby.ir.instructions.ReceiveOptArgInstr.getArgIndex:()I
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(I)V
         4: .line 68
            return
        end local 1 // org.jruby.ir.persistence.IRWriterEncoder e
        end local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/jruby/ir/instructions/ReceiveOptArgInstr;
            0    5     1     e  Lorg/jruby/ir/persistence/IRWriterEncoder;
    MethodParameters:
      Name  Flags
      e     

  public static org.jruby.ir.instructions.ReceiveOptArgInstr decode(org.jruby.ir.persistence.IRReaderDecoder);
    descriptor: (Lorg/jruby/ir/persistence/IRReaderDecoder;)Lorg/jruby/ir/instructions/ReceiveOptArgInstr;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.jruby.ir.persistence.IRReaderDecoder d
         0: .line 71
            new org.jruby.ir.instructions.ReceiveOptArgInstr
            dup
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.decodeVariable:()Lorg/jruby/ir/operands/Variable;
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.decodeInt:()I
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.decodeInt:()I
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.decodeInt:()I
            invokespecial org.jruby.ir.instructions.ReceiveOptArgInstr.<init>:(Lorg/jruby/ir/operands/Variable;III)V
            areturn
        end local 0 // org.jruby.ir.persistence.IRReaderDecoder d
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     d  Lorg/jruby/ir/persistence/IRReaderDecoder;
    MethodParameters:
      Name  Flags
      d     

  public org.jruby.runtime.builtin.IRubyObject receiveArg(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[], boolean);
    descriptor: (Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;Z)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        start local 3 // boolean acceptsKeywordArgument
         0: .line 76
            aload 1 /* context */
            aload 2 /* args */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.requiredArgs:I
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.preArgs:I
            aload 0 /* this */
            getfield org.jruby.ir.instructions.ReceiveOptArgInstr.argIndex:I
            iload 3 /* acceptsKeywordArgument */
            invokestatic org.jruby.ir.runtime.IRRuntimeHelpers.receiveOptArg:(Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;IIIZ)Lorg/jruby/runtime/builtin/IRubyObject;
            areturn
        end local 3 // boolean acceptsKeywordArgument
        end local 2 // org.jruby.runtime.builtin.IRubyObject[] args
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    1     0                    this  Lorg/jruby/ir/instructions/ReceiveOptArgInstr;
            0    1     1                 context  Lorg/jruby/runtime/ThreadContext;
            0    1     2                    args  [Lorg/jruby/runtime/builtin/IRubyObject;
            0    1     3  acceptsKeywordArgument  Z
    MethodParameters:
                        Name  Flags
      context                 
      args                    
      acceptsKeywordArgument  

  public void visit(org.jruby.ir.IRVisitor);
    descriptor: (Lorg/jruby/ir/IRVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
        start local 1 // org.jruby.ir.IRVisitor visitor
         0: .line 81
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.jruby.ir.IRVisitor.ReceiveOptArgInstr:(Lorg/jruby/ir/instructions/ReceiveOptArgInstr;)V
         1: .line 82
            return
        end local 1 // org.jruby.ir.IRVisitor visitor
        end local 0 // org.jruby.ir.instructions.ReceiveOptArgInstr this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/ir/instructions/ReceiveOptArgInstr;
            0    2     1  visitor  Lorg/jruby/ir/IRVisitor;
    MethodParameters:
         Name  Flags
      visitor  
}
SourceFile: "ReceiveOptArgInstr.java"