class jdk.internal.module.ModuleInfo$CountingDataInput implements java.io.DataInput
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: jdk.internal.module.ModuleInfo$CountingDataInput
  super_class: java.lang.Object
{
  private final java.io.DataInput delegate;
    descriptor: Ljava/io/DataInput;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private long count;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  void <init>(java.io.DataInput);
    descriptor: (Ljava/io/DataInput;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
        start local 1 // java.io.DataInput delegate
         0: .line 1099
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 1100
            aload 0 /* this */
            aload 1 /* delegate */
            putfield jdk.internal.module.ModuleInfo$CountingDataInput.delegate:Ljava/io/DataInput;
         2: .line 1101
            return
        end local 1 // java.io.DataInput delegate
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
            0    3     1  delegate  Ljava/io/DataInput;
    MethodParameters:
          Name  Flags
      delegate  

  long count();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
         0: .line 1104
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
            lreturn
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;

  public void readFully(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
        start local 1 // byte[] b
         0: .line 1109
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.delegate:Ljava/io/DataInput;
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokeinterface java.io.DataInput.readFully:([BII)V
         1: .line 1110
            aload 0 /* this */
            dup
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
            aload 1 /* b */
            arraylength
            i2l
            ladd
            putfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
         2: .line 1111
            return
        end local 1 // byte[] b
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
            0    3     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void readFully(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 1115
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.delegate:Ljava/io/DataInput;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokeinterface java.io.DataInput.readFully:([BII)V
         1: .line 1116
            aload 0 /* this */
            dup
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
            iload 3 /* len */
            i2l
            ladd
            putfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
         2: .line 1117
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
            0    3     1     b  [B
            0    3     2   off  I
            0    3     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public int skipBytes(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
        start local 1 // int n
         0: .line 1121
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.delegate:Ljava/io/DataInput;
            iload 1 /* n */
            invokeinterface java.io.DataInput.skipBytes:(I)I
            istore 2 /* skip */
        start local 2 // int skip
         1: .line 1122
            aload 0 /* this */
            dup
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
            iload 2 /* skip */
            i2l
            ladd
            putfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
         2: .line 1123
            iload 2 /* skip */
            ireturn
        end local 2 // int skip
        end local 1 // int n
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
            0    3     1     n  I
            1    3     2  skip  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public boolean readBoolean();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
         0: .line 1128
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.delegate:Ljava/io/DataInput;
            invokeinterface java.io.DataInput.readBoolean:()Z
            istore 1 /* b */
        start local 1 // boolean b
         1: .line 1129
            aload 0 /* this */
            dup
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
            lconst_1
            ladd
            putfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
         2: .line 1130
            iload 1 /* b */
            ireturn
        end local 1 // boolean b
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
            1    3     1     b  Z
    Exceptions:
      throws java.io.IOException

  public byte readByte();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
         0: .line 1135
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.delegate:Ljava/io/DataInput;
            invokeinterface java.io.DataInput.readByte:()B
            istore 1 /* b */
        start local 1 // byte b
         1: .line 1136
            aload 0 /* this */
            dup
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
            lconst_1
            ladd
            putfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
         2: .line 1137
            iload 1 /* b */
            ireturn
        end local 1 // byte b
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
            1    3     1     b  B
    Exceptions:
      throws java.io.IOException

  public int readUnsignedByte();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
         0: .line 1142
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.delegate:Ljava/io/DataInput;
            invokeinterface java.io.DataInput.readUnsignedByte:()I
            istore 1 /* i */
        start local 1 // int i
         1: .line 1143
            aload 0 /* this */
            dup
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
            lconst_1
            ladd
            putfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
         2: .line 1144
            iload 1 /* i */
            ireturn
        end local 1 // int i
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
            1    3     1     i  I
    Exceptions:
      throws java.io.IOException

  public short readShort();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
         0: .line 1149
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.delegate:Ljava/io/DataInput;
            invokeinterface java.io.DataInput.readShort:()S
            istore 1 /* s */
        start local 1 // short s
         1: .line 1150
            aload 0 /* this */
            dup
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
            ldc 2
            ladd
            putfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
         2: .line 1151
            iload 1 /* s */
            ireturn
        end local 1 // short s
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
            1    3     1     s  S
    Exceptions:
      throws java.io.IOException

  public int readUnsignedShort();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
         0: .line 1156
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.delegate:Ljava/io/DataInput;
            invokeinterface java.io.DataInput.readUnsignedShort:()I
            istore 1 /* s */
        start local 1 // int s
         1: .line 1157
            aload 0 /* this */
            dup
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
            ldc 2
            ladd
            putfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
         2: .line 1158
            iload 1 /* s */
            ireturn
        end local 1 // int s
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
            1    3     1     s  I
    Exceptions:
      throws java.io.IOException

  public char readChar();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
         0: .line 1163
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.delegate:Ljava/io/DataInput;
            invokeinterface java.io.DataInput.readChar:()C
            istore 1 /* c */
        start local 1 // char c
         1: .line 1164
            aload 0 /* this */
            dup
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
            ldc 2
            ladd
            putfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
         2: .line 1165
            iload 1 /* c */
            ireturn
        end local 1 // char c
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
            1    3     1     c  C
    Exceptions:
      throws java.io.IOException

  public int readInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
         0: .line 1170
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.delegate:Ljava/io/DataInput;
            invokeinterface java.io.DataInput.readInt:()I
            istore 1 /* i */
        start local 1 // int i
         1: .line 1171
            aload 0 /* this */
            dup
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
            ldc 4
            ladd
            putfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
         2: .line 1172
            iload 1 /* i */
            ireturn
        end local 1 // int i
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
            1    3     1     i  I
    Exceptions:
      throws java.io.IOException

  public long readLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
         0: .line 1177
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.delegate:Ljava/io/DataInput;
            invokeinterface java.io.DataInput.readLong:()J
            lstore 1 /* l */
        start local 1 // long l
         1: .line 1178
            aload 0 /* this */
            dup
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
            ldc 8
            ladd
            putfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
         2: .line 1179
            lload 1 /* l */
            lreturn
        end local 1 // long l
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
            1    3     1     l  J
    Exceptions:
      throws java.io.IOException

  public float readFloat();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
         0: .line 1184
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.delegate:Ljava/io/DataInput;
            invokeinterface java.io.DataInput.readFloat:()F
            fstore 1 /* f */
        start local 1 // float f
         1: .line 1185
            aload 0 /* this */
            dup
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
            ldc 4
            ladd
            putfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
         2: .line 1186
            fload 1 /* f */
            freturn
        end local 1 // float f
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
            1    3     1     f  F
    Exceptions:
      throws java.io.IOException

  public double readDouble();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
         0: .line 1191
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.delegate:Ljava/io/DataInput;
            invokeinterface java.io.DataInput.readDouble:()D
            dstore 1 /* d */
        start local 1 // double d
         1: .line 1192
            aload 0 /* this */
            dup
            getfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
            ldc 8
            ladd
            putfield jdk.internal.module.ModuleInfo$CountingDataInput.count:J
         2: .line 1193
            dload 1 /* d */
            dreturn
        end local 1 // double d
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
            1    3     1     d  D
    Exceptions:
      throws java.io.IOException

  public java.lang.String readLine();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
         0: .line 1198
            new java.lang.RuntimeException
            dup
            ldc "not implemented"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;

  public java.lang.String readUTF();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
         0: .line 1203
            aload 0 /* this */
            invokestatic java.io.DataInputStream.readUTF:(Ljava/io/DataInput;)Ljava/lang/String;
            areturn
        end local 0 // jdk.internal.module.ModuleInfo$CountingDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/module/ModuleInfo$CountingDataInput;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "ModuleInfo.java"
NestHost: jdk.internal.module.ModuleInfo
InnerClasses:
  private CountingDataInput = jdk.internal.module.ModuleInfo$CountingDataInput of jdk.internal.module.ModuleInfo