abstract class sun.nio.cs.ext.DoubleByteDecoder extends java.nio.charset.CharsetDecoder
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: sun.nio.cs.ext.DoubleByteDecoder
  super_class: java.nio.charset.CharsetDecoder
{
  private short[] index1;
    descriptor: [S
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String[] index2;
    descriptor: [Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  protected int start;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int end;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected static final char REPLACE_CHAR;
    descriptor: C
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 65533

  protected char highSurrogate;
    descriptor: C
    flags: (0x0004) ACC_PROTECTED

  protected char lowSurrogate;
    descriptor: C
    flags: (0x0004) ACC_PROTECTED

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 36
            ldc Lsun/nio/cs/ext/DoubleByteDecoder;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic sun.nio.cs.ext.DoubleByteDecoder.$assertionsDisabled:Z
         3: .line 51
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>(java.nio.charset.Charset, short[], java.lang.String[], int, int);
    descriptor: (Ljava/nio/charset/Charset;[S[Ljava/lang/String;II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=6, args_size=6
        start local 0 // sun.nio.cs.ext.DoubleByteDecoder this
        start local 1 // java.nio.charset.Charset cs
        start local 2 // short[] index1
        start local 3 // java.lang.String[] index2
        start local 4 // int start
        start local 5 // int end
         0: .line 57
            aload 0 /* this */
            aload 1 /* cs */
            ldc 0.5
            fconst_1
            invokespecial java.nio.charset.CharsetDecoder.<init>:(Ljava/nio/charset/Charset;FF)V
         1: .line 58
            aload 0 /* this */
            aload 2 /* index1 */
            putfield sun.nio.cs.ext.DoubleByteDecoder.index1:[S
         2: .line 59
            aload 0 /* this */
            aload 3 /* index2 */
            putfield sun.nio.cs.ext.DoubleByteDecoder.index2:[Ljava/lang/String;
         3: .line 60
            aload 0 /* this */
            iload 4 /* start */
            putfield sun.nio.cs.ext.DoubleByteDecoder.start:I
         4: .line 61
            aload 0 /* this */
            iload 5 /* end */
            putfield sun.nio.cs.ext.DoubleByteDecoder.end:I
         5: .line 62
            return
        end local 5 // int end
        end local 4 // int start
        end local 3 // java.lang.String[] index2
        end local 2 // short[] index1
        end local 1 // java.nio.charset.Charset cs
        end local 0 // sun.nio.cs.ext.DoubleByteDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/nio/cs/ext/DoubleByteDecoder;
            0    6     1      cs  Ljava/nio/charset/Charset;
            0    6     2  index1  [S
            0    6     3  index2  [Ljava/lang/String;
            0    6     4   start  I
            0    6     5     end  I
    MethodParameters:
        Name  Flags
      cs      
      index1  
      index2  
      start   
      end     

  private java.nio.charset.CoderResult decodeArrayLoop(java.nio.ByteBuffer, java.nio.CharBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=16, args_size=3
        start local 0 // sun.nio.cs.ext.DoubleByteDecoder this
        start local 1 // java.nio.ByteBuffer src
        start local 2 // java.nio.CharBuffer dst
         0: .line 65
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 3 /* sa */
        start local 3 // byte[] sa
         1: .line 66
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.position:()I
            iadd
            istore 4 /* sp */
        start local 4 // int sp
         2: .line 67
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.limit:()I
            iadd
            istore 5 /* sl */
        start local 5 // int sl
         3: .line 68
            getstatic sun.nio.cs.ext.DoubleByteDecoder.$assertionsDisabled:Z
            ifne 4
            iload 4 /* sp */
            iload 5 /* sl */
            if_icmple 4
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 69
      StackMap locals: byte[] int int
      StackMap stack:
            iload 4 /* sp */
            iload 5 /* sl */
            if_icmpgt 5
            iload 4 /* sp */
            goto 6
      StackMap locals:
      StackMap stack:
         5: iload 5 /* sl */
      StackMap locals:
      StackMap stack: int
         6: istore 4 /* sp */
         7: .line 70
            aload 2 /* dst */
            invokevirtual java.nio.CharBuffer.array:()[C
            astore 6 /* da */
        start local 6 // char[] da
         8: .line 71
            aload 2 /* dst */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            aload 2 /* dst */
            invokevirtual java.nio.CharBuffer.position:()I
            iadd
            istore 7 /* dp */
        start local 7 // int dp
         9: .line 72
            aload 2 /* dst */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            aload 2 /* dst */
            invokevirtual java.nio.CharBuffer.limit:()I
            iadd
            istore 8 /* dl */
        start local 8 // int dl
        10: .line 73
            getstatic sun.nio.cs.ext.DoubleByteDecoder.$assertionsDisabled:Z
            ifne 11
            iload 7 /* dp */
            iload 8 /* dl */
            if_icmple 11
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        11: .line 74
      StackMap locals: char[] int int
      StackMap stack:
            iload 7 /* dp */
            iload 8 /* dl */
            if_icmpgt 12
            iload 7 /* dp */
            goto 13
      StackMap locals:
      StackMap stack:
        12: iload 8 /* dl */
      StackMap locals:
      StackMap stack: int
        13: istore 7 /* dp */
        14: .line 77
            goto 49
        15: .line 79
      StackMap locals:
      StackMap stack:
            aload 3 /* sa */
            iload 4 /* sp */
            baload
            istore 9 /* b1 */
        start local 9 // int b1
        16: .line 80
            iconst_1
            istore 11 /* inputSize */
        start local 11 // int inputSize
        17: .line 81
            iconst_1
            istore 12 /* outputSize */
        start local 12 // int outputSize
        18: .line 82
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield sun.nio.cs.ext.DoubleByteDecoder.lowSurrogate:C
            putfield sun.nio.cs.ext.DoubleByteDecoder.highSurrogate:C
        19: .line 83
            aload 0 /* this */
            iload 9 /* b1 */
            invokevirtual sun.nio.cs.ext.DoubleByteDecoder.decodeSingle:(I)C
            istore 13 /* c */
        start local 13 // char c
        20: .line 84
            iload 13 /* c */
            ldc 65533
            if_icmpne 38
        21: .line 85
            iload 9 /* b1 */
            sipush 255
            iand
            istore 9 /* b1 */
        22: .line 86
            iload 5 /* sl */
            iload 4 /* sp */
            isub
            iconst_2
            if_icmpge 27
        23: .line 87
            getstatic java.nio.charset.CoderResult.UNDERFLOW:Ljava/nio/charset/CoderResult;
            astore 15
        24: .line 108
            aload 1 /* src */
            iload 4 /* sp */
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        25: .line 109
            aload 2 /* dst */
            iload 7 /* dp */
            aload 2 /* dst */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/Buffer;
            pop
        26: .line 87
            aload 15
            areturn
        27: .line 88
      StackMap locals: sun.nio.cs.ext.DoubleByteDecoder java.nio.ByteBuffer java.nio.CharBuffer byte[] int int char[] int int int top int int int
      StackMap stack:
            aload 3 /* sa */
            iload 4 /* sp */
            iconst_1
            iadd
            baload
            sipush 255
            iand
            istore 10 /* b2 */
        start local 10 // int b2
        28: .line 89
            aload 0 /* this */
            iload 9 /* b1 */
            iload 10 /* b2 */
            invokevirtual sun.nio.cs.ext.DoubleByteDecoder.decodeDouble:(II)C
            istore 13 /* c */
        29: .line 90
            iconst_2
            istore 11 /* inputSize */
        30: .line 91
            iload 13 /* c */
            ldc 65533
            if_icmpne 35
        31: .line 92
            iload 11 /* inputSize */
            invokestatic java.nio.charset.CoderResult.unmappableForLength:(I)Ljava/nio/charset/CoderResult;
            astore 15
        32: .line 108
            aload 1 /* src */
            iload 4 /* sp */
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        33: .line 109
            aload 2 /* dst */
            iload 7 /* dp */
            aload 2 /* dst */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/Buffer;
            pop
        34: .line 92
            aload 15
            areturn
        35: .line 93
      StackMap locals: sun.nio.cs.ext.DoubleByteDecoder java.nio.ByteBuffer java.nio.CharBuffer byte[] int int char[] int int int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.highSurrogate:C
            ifle 36
            iconst_2
            goto 37
      StackMap locals:
      StackMap stack:
        36: iconst_1
      StackMap locals:
      StackMap stack: int
        37: istore 12 /* outputSize */
        end local 10 // int b2
        38: .line 96
      StackMap locals: sun.nio.cs.ext.DoubleByteDecoder java.nio.ByteBuffer java.nio.CharBuffer byte[] int int char[] int int int top int int int
      StackMap stack:
            iload 8 /* dl */
            iload 7 /* dp */
            isub
            iload 12 /* outputSize */
            if_icmpge 43
        39: .line 97
            getstatic java.nio.charset.CoderResult.OVERFLOW:Ljava/nio/charset/CoderResult;
            astore 15
        40: .line 108
            aload 1 /* src */
            iload 4 /* sp */
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        41: .line 109
            aload 2 /* dst */
            iload 7 /* dp */
            aload 2 /* dst */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/Buffer;
            pop
        42: .line 97
            aload 15
            areturn
        43: .line 98
      StackMap locals:
      StackMap stack:
            iload 12 /* outputSize */
            iconst_2
            if_icmpne 47
        44: .line 99
            aload 6 /* da */
            iload 7 /* dp */
            iinc 7 /* dp */ 1
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.highSurrogate:C
            castore
        45: .line 100
            aload 6 /* da */
            iload 7 /* dp */
            iinc 7 /* dp */ 1
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.lowSurrogate:C
            castore
        46: .line 101
            goto 48
        47: .line 102
      StackMap locals:
      StackMap stack:
            aload 6 /* da */
            iload 7 /* dp */
            iinc 7 /* dp */ 1
            iload 13 /* c */
            castore
        48: .line 104
      StackMap locals:
      StackMap stack:
            iload 4 /* sp */
            iload 11 /* inputSize */
            iadd
            istore 4 /* sp */
        end local 13 // char c
        end local 12 // int outputSize
        end local 11 // int inputSize
        end local 9 // int b1
        49: .line 77
      StackMap locals: sun.nio.cs.ext.DoubleByteDecoder java.nio.ByteBuffer java.nio.CharBuffer byte[] int int char[] int int
      StackMap stack:
            iload 4 /* sp */
            iload 5 /* sl */
            if_icmplt 15
        50: .line 106
            getstatic java.nio.charset.CoderResult.UNDERFLOW:Ljava/nio/charset/CoderResult;
            astore 15
        51: .line 108
            aload 1 /* src */
            iload 4 /* sp */
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        52: .line 109
            aload 2 /* dst */
            iload 7 /* dp */
            aload 2 /* dst */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/Buffer;
            pop
        53: .line 106
            aload 15
            areturn
        54: .line 107
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 14
        55: .line 108
            aload 1 /* src */
            iload 4 /* sp */
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        56: .line 109
            aload 2 /* dst */
            iload 7 /* dp */
            aload 2 /* dst */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/Buffer;
            pop
        57: .line 110
            aload 14
            athrow
        end local 8 // int dl
        end local 7 // int dp
        end local 6 // char[] da
        end local 5 // int sl
        end local 4 // int sp
        end local 3 // byte[] sa
        end local 2 // java.nio.CharBuffer dst
        end local 1 // java.nio.ByteBuffer src
        end local 0 // sun.nio.cs.ext.DoubleByteDecoder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   58     0        this  Lsun/nio/cs/ext/DoubleByteDecoder;
            0   58     1         src  Ljava/nio/ByteBuffer;
            0   58     2         dst  Ljava/nio/CharBuffer;
            1   58     3          sa  [B
            2   58     4          sp  I
            3   58     5          sl  I
            8   58     6          da  [C
            9   58     7          dp  I
           10   58     8          dl  I
           16   49     9          b1  I
           28   38    10          b2  I
           17   49    11   inputSize  I
           18   49    12  outputSize  I
           20   49    13           c  C
      Exception table:
        from    to  target  type
          14    24      54  any
          27    32      54  any
          35    40      54  any
          43    51      54  any
    MethodParameters:
      Name  Flags
      src   
      dst   

  private java.nio.charset.CoderResult decodeBufferLoop(java.nio.ByteBuffer, java.nio.CharBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=11, args_size=3
        start local 0 // sun.nio.cs.ext.DoubleByteDecoder this
        start local 1 // java.nio.ByteBuffer src
        start local 2 // java.nio.CharBuffer dst
         0: .line 114
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 3 /* mark */
        start local 3 // int mark
         1: .line 115
            iconst_0
            istore 4 /* inputSize */
        start local 4 // int inputSize
         2: .line 116
            iconst_0
            istore 5 /* outputSize */
        start local 5 // int outputSize
         3: .line 118
            goto 35
         4: .line 119
      StackMap locals: int int int
      StackMap stack:
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 6 /* b1 */
        start local 6 // int b1
         5: .line 120
            iconst_1
            istore 4 /* inputSize */
         6: .line 121
            iconst_1
            istore 5 /* outputSize */
         7: .line 122
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield sun.nio.cs.ext.DoubleByteDecoder.lowSurrogate:C
            putfield sun.nio.cs.ext.DoubleByteDecoder.highSurrogate:C
         8: .line 124
            aload 0 /* this */
            iload 6 /* b1 */
            invokevirtual sun.nio.cs.ext.DoubleByteDecoder.decodeSingle:(I)C
            istore 7 /* c */
        start local 7 // char c
         9: .line 126
            iload 7 /* c */
            ldc 65533
            if_icmpne 25
        10: .line 127
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iconst_1
            if_icmpge 14
        11: .line 128
            getstatic java.nio.charset.CoderResult.UNDERFLOW:Ljava/nio/charset/CoderResult;
            astore 10
        12: .line 153
            aload 1 /* src */
            iload 3 /* mark */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        13: .line 128
            aload 10
            areturn
        14: .line 129
      StackMap locals: int int
      StackMap stack:
            iload 6 /* b1 */
            sipush 255
            iand
            istore 6 /* b1 */
        15: .line 130
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            istore 8 /* b2 */
        start local 8 // int b2
        16: .line 131
            iconst_2
            istore 4 /* inputSize */
        17: .line 133
            aload 0 /* this */
            iload 6 /* b1 */
            iload 8 /* b2 */
            invokevirtual sun.nio.cs.ext.DoubleByteDecoder.decodeDouble:(II)C
            istore 7 /* c */
        18: .line 135
            iload 7 /* c */
            ldc 65533
            if_icmpne 22
        19: .line 136
            iconst_2
            invokestatic java.nio.charset.CoderResult.unmappableForLength:(I)Ljava/nio/charset/CoderResult;
            astore 10
        20: .line 153
            aload 1 /* src */
            iload 3 /* mark */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        21: .line 136
            aload 10
            areturn
        22: .line 138
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.highSurrogate:C
            ifle 23
            iconst_2
            goto 24
      StackMap locals:
      StackMap stack:
        23: iconst_1
      StackMap locals:
      StackMap stack: int
        24: istore 5 /* outputSize */
        end local 8 // int b2
        25: .line 140
      StackMap locals:
      StackMap stack:
            aload 2 /* dst */
            invokevirtual java.nio.CharBuffer.remaining:()I
            iload 5 /* outputSize */
            if_icmpge 29
        26: .line 141
            getstatic java.nio.charset.CoderResult.OVERFLOW:Ljava/nio/charset/CoderResult;
            astore 10
        27: .line 153
            aload 1 /* src */
            iload 3 /* mark */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        28: .line 141
            aload 10
            areturn
        29: .line 142
      StackMap locals:
      StackMap stack:
            iload 3 /* mark */
            iload 4 /* inputSize */
            iadd
            istore 3 /* mark */
        30: .line 144
            iload 5 /* outputSize */
            iconst_2
            if_icmpne 34
        31: .line 145
            aload 2 /* dst */
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.highSurrogate:C
            invokevirtual java.nio.CharBuffer.put:(C)Ljava/nio/CharBuffer;
            pop
        32: .line 146
            aload 2 /* dst */
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.lowSurrogate:C
            invokevirtual java.nio.CharBuffer.put:(C)Ljava/nio/CharBuffer;
            pop
        33: .line 147
            goto 35
        34: .line 148
      StackMap locals:
      StackMap stack:
            aload 2 /* dst */
            iload 7 /* c */
            invokevirtual java.nio.CharBuffer.put:(C)Ljava/nio/CharBuffer;
            pop
        end local 7 // char c
        end local 6 // int b1
        35: .line 118
      StackMap locals:
      StackMap stack:
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 4
        36: .line 151
            getstatic java.nio.charset.CoderResult.UNDERFLOW:Ljava/nio/charset/CoderResult;
            astore 10
        37: .line 153
            aload 1 /* src */
            iload 3 /* mark */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        38: .line 151
            aload 10
            areturn
        39: .line 152
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 9
        40: .line 153
            aload 1 /* src */
            iload 3 /* mark */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        41: .line 154
            aload 9
            athrow
        end local 5 // int outputSize
        end local 4 // int inputSize
        end local 3 // int mark
        end local 2 // java.nio.CharBuffer dst
        end local 1 // java.nio.ByteBuffer src
        end local 0 // sun.nio.cs.ext.DoubleByteDecoder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   42     0        this  Lsun/nio/cs/ext/DoubleByteDecoder;
            0   42     1         src  Ljava/nio/ByteBuffer;
            0   42     2         dst  Ljava/nio/CharBuffer;
            1   42     3        mark  I
            2   42     4   inputSize  I
            3   42     5  outputSize  I
            5   35     6          b1  I
            9   35     7           c  C
           16   25     8          b2  I
      Exception table:
        from    to  target  type
           3    12      39  any
          14    20      39  any
          22    27      39  any
          29    37      39  any
    MethodParameters:
      Name  Flags
      src   
      dst   

  protected java.nio.charset.CoderResult decodeLoop(java.nio.ByteBuffer, java.nio.CharBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.nio.cs.ext.DoubleByteDecoder this
        start local 1 // java.nio.ByteBuffer src
        start local 2 // java.nio.CharBuffer dst
         0: .line 158
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 2
            aload 2 /* dst */
            invokevirtual java.nio.CharBuffer.hasArray:()Z
            ifeq 2
         1: .line 159
            aload 0 /* this */
            aload 1 /* src */
            aload 2 /* dst */
            invokevirtual sun.nio.cs.ext.DoubleByteDecoder.decodeArrayLoop:(Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;
            areturn
         2: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* src */
            aload 2 /* dst */
            invokevirtual sun.nio.cs.ext.DoubleByteDecoder.decodeBufferLoop:(Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;
            areturn
        end local 2 // java.nio.CharBuffer dst
        end local 1 // java.nio.ByteBuffer src
        end local 0 // sun.nio.cs.ext.DoubleByteDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/nio/cs/ext/DoubleByteDecoder;
            0    3     1   src  Ljava/nio/ByteBuffer;
            0    3     2   dst  Ljava/nio/CharBuffer;
    MethodParameters:
      Name  Flags
      src   
      dst   

  protected char decodeSingle(int);
    descriptor: (I)C
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // sun.nio.cs.ext.DoubleByteDecoder this
        start local 1 // int b
         0: .line 168
            iload 1 /* b */
            iflt 2
         1: .line 169
            iload 1 /* b */
            i2c
            ireturn
         2: .line 170
      StackMap locals:
      StackMap stack:
            ldc 65533
            ireturn
        end local 1 // int b
        end local 0 // sun.nio.cs.ext.DoubleByteDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/nio/cs/ext/DoubleByteDecoder;
            0    3     1     b  I
    MethodParameters:
      Name  Flags
      b     

  protected char decodeDouble(int, int);
    descriptor: (II)C
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // sun.nio.cs.ext.DoubleByteDecoder this
        start local 1 // int byte1
        start local 2 // int byte2
         0: .line 174
            iload 1 /* byte1 */
            iflt 2
            iload 1 /* byte1 */
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.index1:[S
            arraylength
            if_icmpgt 2
         1: .line 175
            iload 2 /* byte2 */
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.start:I
            if_icmplt 2
            iload 2 /* byte2 */
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.end:I
            if_icmple 3
         2: .line 176
      StackMap locals:
      StackMap stack:
            ldc 65533
            ireturn
         3: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.index1:[S
            iload 1 /* byte1 */
            saload
            bipush 15
            iand
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.end:I
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.start:I
            isub
            iconst_1
            iadd
            imul
            iload 2 /* byte2 */
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.start:I
            isub
            iadd
            istore 3 /* n */
        start local 3 // int n
         4: .line 179
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.index2:[Ljava/lang/String;
            aload 0 /* this */
            getfield sun.nio.cs.ext.DoubleByteDecoder.index1:[S
            iload 1 /* byte1 */
            saload
            iconst_4
            ishr
            aaload
            iload 3 /* n */
            invokevirtual java.lang.String.charAt:(I)C
            ireturn
        end local 3 // int n
        end local 2 // int byte2
        end local 1 // int byte1
        end local 0 // sun.nio.cs.ext.DoubleByteDecoder this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lsun/nio/cs/ext/DoubleByteDecoder;
            0    5     1  byte1  I
            0    5     2  byte2  I
            4    5     3      n  I
    MethodParameters:
       Name  Flags
      byte1  
      byte2  
}
SourceFile: "DoubleByteDecoder.java"