public class org.jruby.ir.instructions.CheckArityInstr extends org.jruby.ir.instructions.NoOperandInstr 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.CheckArityInstr
  super_class: org.jruby.ir.instructions.NoOperandInstr
{
  public final int required;
    descriptor: I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

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

  public final boolean rest;
    descriptor: Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final boolean receivesKeywords;
    descriptor: Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

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

  public void <init>(int, int, boolean, boolean, int);
    descriptor: (IIZZI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=6
        start local 0 // org.jruby.ir.instructions.CheckArityInstr this
        start local 1 // int required
        start local 2 // int opt
        start local 3 // boolean rest
        start local 4 // boolean receivesKeywords
        start local 5 // int restKey
         0: .line 23
            aload 0 /* this */
            getstatic org.jruby.ir.Operation.CHECK_ARITY:Lorg/jruby/ir/Operation;
            invokespecial org.jruby.ir.instructions.NoOperandInstr.<init>:(Lorg/jruby/ir/Operation;)V
         1: .line 25
            aload 0 /* this */
            iload 1 /* required */
            putfield org.jruby.ir.instructions.CheckArityInstr.required:I
         2: .line 26
            aload 0 /* this */
            iload 2 /* opt */
            putfield org.jruby.ir.instructions.CheckArityInstr.opt:I
         3: .line 27
            aload 0 /* this */
            iload 3 /* rest */
            putfield org.jruby.ir.instructions.CheckArityInstr.rest:Z
         4: .line 28
            aload 0 /* this */
            iload 4 /* receivesKeywords */
            putfield org.jruby.ir.instructions.CheckArityInstr.receivesKeywords:Z
         5: .line 29
            aload 0 /* this */
            iload 5 /* restKey */
            putfield org.jruby.ir.instructions.CheckArityInstr.restKey:I
         6: .line 30
            return
        end local 5 // int restKey
        end local 4 // boolean receivesKeywords
        end local 3 // boolean rest
        end local 2 // int opt
        end local 1 // int required
        end local 0 // org.jruby.ir.instructions.CheckArityInstr this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    7     0              this  Lorg/jruby/ir/instructions/CheckArityInstr;
            0    7     1          required  I
            0    7     2               opt  I
            0    7     3              rest  Z
            0    7     4  receivesKeywords  Z
            0    7     5           restKey  I
    MethodParameters:
                  Name  Flags
      required          
      opt               
      rest              
      receivesKeywords  
      restKey           

  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.CheckArityInstr this
         0: .line 34
            iconst_4
            anewarray java.lang.String
            dup
            iconst_0
            new java.lang.StringBuilder
            dup
            ldc "req: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.required: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 "opt: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.opt: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 "*r: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.rest:Z
            invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aastore
            dup
            iconst_3
            new java.lang.StringBuilder
            dup
            ldc "kw: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.receivesKeywords:Z
            invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aastore
            areturn
        end local 0 // org.jruby.ir.instructions.CheckArityInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ir/instructions/CheckArityInstr;

  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=7, locals=4, args_size=2
        start local 0 // org.jruby.ir.instructions.CheckArityInstr this
        start local 1 // org.jruby.ir.transformations.inlining.CloneInfo info
         0: .line 39
            aload 1 /* info */
            instanceof org.jruby.ir.transformations.inlining.SimpleCloneInfo
            ifeq 1
            new org.jruby.ir.instructions.CheckArityInstr
            dup
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.required:I
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.opt:I
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.rest:Z
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.receivesKeywords:Z
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.restKey:I
            invokespecial org.jruby.ir.instructions.CheckArityInstr.<init>:(IIZZI)V
            areturn
         1: .line 41
      StackMap locals:
      StackMap stack:
            aload 1 /* info */
            checkcast org.jruby.ir.transformations.inlining.InlineCloneInfo
            astore 2 /* ii */
        start local 2 // org.jruby.ir.transformations.inlining.InlineCloneInfo ii
         2: .line 42
            aload 2 /* ii */
            invokevirtual org.jruby.ir.transformations.inlining.InlineCloneInfo.canMapArgsStatically:()Z
            ifeq 7
         3: .line 43
            aload 2 /* ii */
            invokevirtual org.jruby.ir.transformations.inlining.InlineCloneInfo.getArgsCount:()I
            istore 3 /* numArgs */
        start local 3 // int numArgs
         4: .line 45
            iload 3 /* numArgs */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.required:I
            if_icmplt 5
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.rest:Z
            ifne 6
            iload 3 /* numArgs */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.required:I
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.opt:I
            iadd
            if_icmple 6
         5: .line 46
      StackMap locals: org.jruby.ir.transformations.inlining.InlineCloneInfo int
      StackMap stack:
            new org.jruby.ir.instructions.RaiseArgumentErrorInstr
            dup
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.required:I
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.opt:I
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.rest:Z
            iload 3 /* numArgs */
            invokespecial org.jruby.ir.instructions.RaiseArgumentErrorInstr.<init>:(IIZI)V
            areturn
         6: .line 49
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 3 // int numArgs
         7: .line 52
      StackMap locals:
      StackMap stack:
            new org.jruby.ir.instructions.CheckArgsArrayArityInstr
            dup
            aload 2 /* ii */
            invokevirtual org.jruby.ir.transformations.inlining.InlineCloneInfo.getArgs:()Lorg/jruby/ir/operands/Operand;
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.required:I
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.opt:I
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.rest:Z
            invokespecial org.jruby.ir.instructions.CheckArgsArrayArityInstr.<init>:(Lorg/jruby/ir/operands/Operand;IIZ)V
            areturn
        end local 2 // org.jruby.ir.transformations.inlining.InlineCloneInfo ii
        end local 1 // org.jruby.ir.transformations.inlining.CloneInfo info
        end local 0 // org.jruby.ir.instructions.CheckArityInstr this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/jruby/ir/instructions/CheckArityInstr;
            0    8     1     info  Lorg/jruby/ir/transformations/inlining/CloneInfo;
            2    8     2       ii  Lorg/jruby/ir/transformations/inlining/InlineCloneInfo;
            4    7     3  numArgs  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.CheckArityInstr this
        start local 1 // org.jruby.ir.persistence.IRWriterEncoder e
         0: .line 57
            aload 0 /* this */
            aload 1 /* e */
            invokespecial org.jruby.ir.instructions.NoOperandInstr.encode:(Lorg/jruby/ir/persistence/IRWriterEncoder;)V
         1: .line 58
            aload 1 /* e */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.required:I
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(I)V
         2: .line 59
            aload 1 /* e */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.opt:I
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(I)V
         3: .line 60
            aload 1 /* e */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.rest:Z
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(Z)V
         4: .line 61
            aload 1 /* e */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.receivesKeywords:Z
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(Z)V
         5: .line 62
            aload 1 /* e */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.restKey:I
            invokeinterface org.jruby.ir.persistence.IRWriterEncoder.encode:(I)V
         6: .line 63
            return
        end local 1 // org.jruby.ir.persistence.IRWriterEncoder e
        end local 0 // org.jruby.ir.instructions.CheckArityInstr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/jruby/ir/instructions/CheckArityInstr;
            0    7     1     e  Lorg/jruby/ir/persistence/IRWriterEncoder;
    MethodParameters:
      Name  Flags
      e     

  public static org.jruby.ir.instructions.CheckArityInstr decode(org.jruby.ir.persistence.IRReaderDecoder);
    descriptor: (Lorg/jruby/ir/persistence/IRReaderDecoder;)Lorg/jruby/ir/instructions/CheckArityInstr;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // org.jruby.ir.persistence.IRReaderDecoder d
         0: .line 66
            new org.jruby.ir.instructions.CheckArityInstr
            dup
            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.decodeBoolean:()Z
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.decodeBoolean:()Z
            aload 0 /* d */
            invokeinterface org.jruby.ir.persistence.IRReaderDecoder.decodeInt:()I
            invokespecial org.jruby.ir.instructions.CheckArityInstr.<init>:(IIZZI)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 void checkArity(org.jruby.runtime.ThreadContext, org.jruby.parser.StaticScope, java.lang.Object[], org.jruby.runtime.Block);
    descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/parser/StaticScope;[Ljava/lang/Object;Lorg/jruby/runtime/Block;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=5, args_size=5
        start local 0 // org.jruby.ir.instructions.CheckArityInstr this
        start local 1 // org.jruby.runtime.ThreadContext context
        start local 2 // org.jruby.parser.StaticScope scope
        start local 3 // java.lang.Object[] args
        start local 4 // org.jruby.runtime.Block block
         0: .line 70
            aload 1 /* context */
            aload 2 /* scope */
            aload 3 /* args */
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.required:I
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.opt:I
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.rest:Z
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.receivesKeywords:Z
            aload 0 /* this */
            getfield org.jruby.ir.instructions.CheckArityInstr.restKey:I
            aload 4 /* block */
            invokestatic org.jruby.ir.runtime.IRRuntimeHelpers.checkArity:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/parser/StaticScope;[Ljava/lang/Object;IIZZILorg/jruby/runtime/Block;)V
         1: .line 71
            return
        end local 4 // org.jruby.runtime.Block block
        end local 3 // java.lang.Object[] args
        end local 2 // org.jruby.parser.StaticScope scope
        end local 1 // org.jruby.runtime.ThreadContext context
        end local 0 // org.jruby.ir.instructions.CheckArityInstr this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/ir/instructions/CheckArityInstr;
            0    2     1  context  Lorg/jruby/runtime/ThreadContext;
            0    2     2    scope  Lorg/jruby/parser/StaticScope;
            0    2     3     args  [Ljava/lang/Object;
            0    2     4    block  Lorg/jruby/runtime/Block;
    MethodParameters:
         Name  Flags
      context  
      scope    
      args     
      block    

  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.CheckArityInstr this
        start local 1 // org.jruby.ir.IRVisitor visitor
         0: .line 75
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.jruby.ir.IRVisitor.CheckArityInstr:(Lorg/jruby/ir/instructions/CheckArityInstr;)V
         1: .line 76
            return
        end local 1 // org.jruby.ir.IRVisitor visitor
        end local 0 // org.jruby.ir.instructions.CheckArityInstr this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jruby/ir/instructions/CheckArityInstr;
            0    2     1  visitor  Lorg/jruby/ir/IRVisitor;
    MethodParameters:
         Name  Flags
      visitor  
}
SourceFile: "CheckArityInstr.java"