public class sun.nio.cs.ext.ISO2022$Encoder extends java.nio.charset.CharsetEncoder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.nio.cs.ext.ISO2022$Encoder
  super_class: java.nio.charset.CharsetEncoder
{
  private static final byte ISO_ESC;
    descriptor: B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 27

  private static final byte ISO_SI;
    descriptor: B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 15

  private static final byte ISO_SO;
    descriptor: B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 14

  private static final byte ISO_SS2_7;
    descriptor: B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 78

  private static final byte ISO_SS3_7;
    descriptor: B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 79

  private final sun.nio.cs.Surrogate$Parser sgp;
    descriptor: Lsun/nio/cs/Surrogate$Parser;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public static final byte SS2;
    descriptor: B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: -114

  public static final byte PLANE2;
    descriptor: B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: -94

  public static final byte PLANE3;
    descriptor: B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: -93

  protected final byte maximumDesignatorLength;
    descriptor: B
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    ConstantValue: 4

  protected byte[] SODesig;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected byte[] SS2Desig;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected byte[] SS3Desig;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected java.nio.charset.CharsetEncoder ISOEncoder;
    descriptor: Ljava/nio/charset/CharsetEncoder;
    flags: (0x0004) ACC_PROTECTED

  private boolean shiftout;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean SODesDefined;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean SS2DesDefined;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean SS3DesDefined;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean newshiftout;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean newSODesDefined;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean newSS2DesDefined;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean newSS3DesDefined;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  protected void <init>(java.nio.charset.Charset);
    descriptor: (Ljava/nio/charset/Charset;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.nio.cs.ext.ISO2022$Encoder this
        start local 1 // java.nio.charset.Charset cs
         0: .line 89
            aload 0 /* this */
            aload 1 /* cs */
            ldc 4.0
            ldc 8.0
            invokespecial java.nio.charset.CharsetEncoder.<init>:(Ljava/nio/charset/Charset;FF)V
         1: .line 65
            aload 0 /* this */
            new sun.nio.cs.Surrogate$Parser
            dup
            invokespecial sun.nio.cs.Surrogate$Parser.<init>:()V
            putfield sun.nio.cs.ext.ISO2022$Encoder.sgp:Lsun/nio/cs/Surrogate$Parser;
         2: .line 70
            aload 0 /* this */
            iconst_4
            putfield sun.nio.cs.ext.ISO2022$Encoder.maximumDesignatorLength:B
         3: .line 73
            aload 0 /* this */
            aconst_null
            putfield sun.nio.cs.ext.ISO2022$Encoder.SS2Desig:[B
         4: .line 74
            aload 0 /* this */
            aconst_null
            putfield sun.nio.cs.ext.ISO2022$Encoder.SS3Desig:[B
         5: .line 78
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.shiftout:Z
         6: .line 79
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.SODesDefined:Z
         7: .line 80
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.SS2DesDefined:Z
         8: .line 81
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.SS3DesDefined:Z
         9: .line 83
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.newshiftout:Z
        10: .line 84
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSODesDefined:Z
        11: .line 85
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSS2DesDefined:Z
        12: .line 86
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSS3DesDefined:Z
        13: .line 90
            return
        end local 1 // java.nio.charset.Charset cs
        end local 0 // sun.nio.cs.ext.ISO2022$Encoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lsun/nio/cs/ext/ISO2022$Encoder;
            0   14     1    cs  Ljava/nio/charset/Charset;
    MethodParameters:
      Name  Flags
      cs    

  public boolean canEncode(char);
    descriptor: (C)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.nio.cs.ext.ISO2022$Encoder this
        start local 1 // char c
         0: .line 93
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.ISOEncoder:Ljava/nio/charset/CharsetEncoder;
            iload 1 /* c */
            invokevirtual java.nio.charset.CharsetEncoder.canEncode:(C)Z
            ireturn
        end local 1 // char c
        end local 0 // sun.nio.cs.ext.ISO2022$Encoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/cs/ext/ISO2022$Encoder;
            0    1     1     c  C
    MethodParameters:
      Name  Flags
      c     

  protected void implReset();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.nio.cs.ext.ISO2022$Encoder this
         0: .line 97
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.shiftout:Z
         1: .line 98
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.SODesDefined:Z
         2: .line 99
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.SS2DesDefined:Z
         3: .line 100
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.SS3DesDefined:Z
         4: .line 101
            return
        end local 0 // sun.nio.cs.ext.ISO2022$Encoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/nio/cs/ext/ISO2022$Encoder;

  private int unicodeToNative(char, byte[]);
    descriptor: (C[B)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=9, args_size=3
        start local 0 // sun.nio.cs.ext.ISO2022$Encoder this
        start local 1 // char unicode
        start local 2 // byte[] ebyte
         0: .line 104
            iconst_0
            istore 3 /* index */
        start local 3 // int index
         1: .line 105
            iconst_1
            newarray 5
            dup
            iconst_0
            iload 1 /* unicode */
            castore
            astore 4 /* convChar */
        start local 4 // char[] convChar
         2: .line 106
            iconst_4
            newarray 8
            astore 5 /* convByte */
        start local 5 // byte[] convByte
         3: .line 110
            aload 4 /* convChar */
            invokestatic java.nio.CharBuffer.wrap:([C)Ljava/nio/CharBuffer;
            astore 7 /* cc */
        start local 7 // java.nio.CharBuffer cc
         4: .line 111
            aload 5 /* convByte */
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            astore 8 /* bb */
        start local 8 // java.nio.ByteBuffer bb
         5: .line 112
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.ISOEncoder:Ljava/nio/charset/CharsetEncoder;
            aload 7 /* cc */
            aload 8 /* bb */
            iconst_1
            invokevirtual java.nio.charset.CharsetEncoder.encode:(Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;Z)Ljava/nio/charset/CoderResult;
            pop
         6: .line 113
            aload 8 /* bb */
            invokevirtual java.nio.ByteBuffer.flip:()Ljava/nio/ByteBuffer;
            pop
         7: .line 114
            aload 8 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 6 /* converted */
        end local 8 // java.nio.ByteBuffer bb
        end local 7 // java.nio.CharBuffer cc
        start local 6 // int converted
         8: .line 115
            goto 11
        end local 6 // int converted
      StackMap locals: sun.nio.cs.ext.ISO2022$Encoder int byte[] int char[] byte[]
      StackMap stack: java.lang.Exception
         9: pop
        10: .line 116
            iconst_m1
            ireturn
        start local 6 // int converted
        11: .line 119
      StackMap locals: int
      StackMap stack:
            iload 6 /* converted */
            iconst_2
            if_icmpne 23
        12: .line 120
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SODesDefined:Z
            ifne 17
        13: .line 121
            aload 0 /* this */
            iconst_1
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSODesDefined:Z
        14: .line 122
            aload 2 /* ebyte */
            iconst_0
            bipush 27
            bastore
        15: .line 123
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SODesig:[B
            iconst_0
            aload 2 /* ebyte */
            iconst_1
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SODesig:[B
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        16: .line 124
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SODesig:[B
            arraylength
            iconst_1
            iadd
            istore 3 /* index */
        17: .line 126
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.shiftout:Z
            ifne 20
        18: .line 127
            aload 0 /* this */
            iconst_1
            putfield sun.nio.cs.ext.ISO2022$Encoder.newshiftout:Z
        19: .line 128
            aload 2 /* ebyte */
            iload 3 /* index */
            iinc 3 /* index */ 1
            bipush 14
            bastore
        20: .line 130
      StackMap locals:
      StackMap stack:
            aload 2 /* ebyte */
            iload 3 /* index */
            iinc 3 /* index */ 1
            aload 5 /* convByte */
            iconst_0
            baload
            bipush 127
            iand
            i2b
            bastore
        21: .line 131
            aload 2 /* ebyte */
            iload 3 /* index */
            iinc 3 /* index */ 1
            aload 5 /* convByte */
            iconst_1
            baload
            bipush 127
            iand
            i2b
            bastore
        22: .line 132
            goto 45
        23: .line 133
      StackMap locals:
      StackMap stack:
            aload 5 /* convByte */
            iconst_0
            baload
            bipush -114
            if_icmpne 45
        24: .line 134
            aload 5 /* convByte */
            iconst_1
            baload
            bipush -94
            if_icmpne 35
        25: .line 135
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SS2DesDefined:Z
            ifne 30
        26: .line 136
            aload 0 /* this */
            iconst_1
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSS2DesDefined:Z
        27: .line 137
            aload 2 /* ebyte */
            iconst_0
            bipush 27
            bastore
        28: .line 138
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SS2Desig:[B
            iconst_0
            aload 2 /* ebyte */
            iconst_1
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SS2Desig:[B
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        29: .line 139
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SS2Desig:[B
            arraylength
            iconst_1
            iadd
            istore 3 /* index */
        30: .line 141
      StackMap locals:
      StackMap stack:
            aload 2 /* ebyte */
            iload 3 /* index */
            iinc 3 /* index */ 1
            bipush 27
            bastore
        31: .line 142
            aload 2 /* ebyte */
            iload 3 /* index */
            iinc 3 /* index */ 1
            bipush 78
            bastore
        32: .line 143
            aload 2 /* ebyte */
            iload 3 /* index */
            iinc 3 /* index */ 1
            aload 5 /* convByte */
            iconst_2
            baload
            bipush 127
            iand
            i2b
            bastore
        33: .line 144
            aload 2 /* ebyte */
            iload 3 /* index */
            iinc 3 /* index */ 1
            aload 5 /* convByte */
            iconst_3
            baload
            bipush 127
            iand
            i2b
            bastore
        34: .line 145
            goto 45
      StackMap locals:
      StackMap stack:
        35: aload 5 /* convByte */
            iconst_1
            baload
            bipush -93
            if_icmpne 45
        36: .line 146
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SS3DesDefined:Z
            ifne 41
        37: .line 147
            aload 0 /* this */
            iconst_1
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSS3DesDefined:Z
        38: .line 148
            aload 2 /* ebyte */
            iconst_0
            bipush 27
            bastore
        39: .line 149
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SS3Desig:[B
            iconst_0
            aload 2 /* ebyte */
            iconst_1
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SS3Desig:[B
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        40: .line 150
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SS3Desig:[B
            arraylength
            iconst_1
            iadd
            istore 3 /* index */
        41: .line 152
      StackMap locals:
      StackMap stack:
            aload 2 /* ebyte */
            iload 3 /* index */
            iinc 3 /* index */ 1
            bipush 27
            bastore
        42: .line 153
            aload 2 /* ebyte */
            iload 3 /* index */
            iinc 3 /* index */ 1
            bipush 79
            bastore
        43: .line 154
            aload 2 /* ebyte */
            iload 3 /* index */
            iinc 3 /* index */ 1
            aload 5 /* convByte */
            iconst_2
            baload
            bipush 127
            iand
            i2b
            bastore
        44: .line 155
            aload 2 /* ebyte */
            iload 3 /* index */
            iinc 3 /* index */ 1
            aload 5 /* convByte */
            iconst_3
            baload
            bipush 127
            iand
            i2b
            bastore
        45: .line 159
      StackMap locals:
      StackMap stack:
            iload 3 /* index */
            ireturn
        end local 6 // int converted
        end local 5 // byte[] convByte
        end local 4 // char[] convChar
        end local 3 // int index
        end local 2 // byte[] ebyte
        end local 1 // char unicode
        end local 0 // sun.nio.cs.ext.ISO2022$Encoder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   46     0       this  Lsun/nio/cs/ext/ISO2022$Encoder;
            0   46     1    unicode  C
            0   46     2      ebyte  [B
            1   46     3      index  I
            2   46     4   convChar  [C
            3   46     5   convByte  [B
            8    9     6  converted  I
           11   46     6  converted  I
            4    8     7         cc  Ljava/nio/CharBuffer;
            5    8     8         bb  Ljava/nio/ByteBuffer;
      Exception table:
        from    to  target  type
           3     8       9  Class java.lang.Exception
    MethodParameters:
         Name  Flags
      unicode  
      ebyte    

  private java.nio.charset.CoderResult encodeArrayLoop(java.nio.CharBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=15, args_size=3
        start local 0 // sun.nio.cs.ext.ISO2022$Encoder this
        start local 1 // java.nio.CharBuffer src
        start local 2 // java.nio.ByteBuffer dst
         0: .line 165
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.array:()[C
            astore 3 /* sa */
        start local 3 // char[] sa
         1: .line 166
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.position:()I
            iadd
            istore 4 /* sp */
        start local 4 // int sp
         2: .line 167
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.limit:()I
            iadd
            istore 5 /* sl */
        start local 5 // int sl
         3: .line 169
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 6 /* da */
        start local 6 // byte[] da
         4: .line 170
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.position:()I
            iadd
            istore 7 /* dp */
        start local 7 // int dp
         5: .line 171
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.limit:()I
            iadd
            istore 8 /* dl */
        start local 8 // int dl
         6: .line 174
            bipush 8
            newarray 8
            astore 10 /* outputByte */
        start local 10 // byte[] outputByte
         7: .line 175
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.shiftout:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.newshiftout:Z
         8: .line 176
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SODesDefined:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSODesDefined:Z
         9: .line 177
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SS2DesDefined:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSS2DesDefined:Z
        10: .line 178
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SS3DesDefined:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSS3DesDefined:Z
        11: .line 181
            goto 58
        12: .line 182
      StackMap locals: sun.nio.cs.ext.ISO2022$Encoder java.nio.CharBuffer java.nio.ByteBuffer char[] int int byte[] int int top byte[]
      StackMap stack:
            aload 3 /* sa */
            iload 4 /* sp */
            caload
            istore 11 /* c */
        start local 11 // char c
        13: .line 183
            iload 11 /* c */
            invokestatic java.lang.Character.isSurrogate:(C)Z
            ifeq 23
        14: .line 184
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.sgp:Lsun/nio/cs/Surrogate$Parser;
            iload 11 /* c */
            aload 3 /* sa */
            iload 4 /* sp */
            iload 5 /* sl */
            invokevirtual sun.nio.cs.Surrogate$Parser.parse:(C[CII)I
            ifge 19
        15: .line 185
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.sgp:Lsun/nio/cs/Surrogate$Parser;
            invokevirtual sun.nio.cs.Surrogate$Parser.error:()Ljava/nio/charset/CoderResult;
            astore 14
        16: .line 223
            aload 1 /* src */
            iload 4 /* sp */
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/CharBuffer;
            pop
        17: .line 224
            aload 2 /* dst */
            iload 7 /* dp */
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        18: .line 185
            aload 14
            areturn
        19: .line 186
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.sgp:Lsun/nio/cs/Surrogate$Parser;
            invokevirtual sun.nio.cs.Surrogate$Parser.unmappableResult:()Ljava/nio/charset/CoderResult;
            astore 14
        20: .line 223
            aload 1 /* src */
            iload 4 /* sp */
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/CharBuffer;
            pop
        21: .line 224
            aload 2 /* dst */
            iload 7 /* dp */
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        22: .line 186
            aload 14
            areturn
        23: .line 189
      StackMap locals:
      StackMap stack:
            iload 11 /* c */
            sipush 128
            if_icmpge 37
        24: .line 190
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.shiftout:Z
            ifeq 30
        25: .line 191
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.newshiftout:Z
        26: .line 192
            iconst_2
            istore 9 /* outputSize */
        start local 9 // int outputSize
        27: .line 193
            aload 10 /* outputByte */
            iconst_0
            bipush 15
            bastore
        28: .line 194
            aload 10 /* outputByte */
            iconst_1
            iload 11 /* c */
            bipush 127
            iand
            i2b
            bastore
        29: .line 195
            goto 32
        end local 9 // int outputSize
        30: .line 196
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 9 /* outputSize */
        start local 9 // int outputSize
        31: .line 197
            aload 10 /* outputByte */
            iconst_0
            iload 11 /* c */
            bipush 127
            iand
            i2b
            bastore
        32: .line 199
      StackMap locals: sun.nio.cs.ext.ISO2022$Encoder java.nio.CharBuffer java.nio.ByteBuffer char[] int int byte[] int int int byte[] int
      StackMap stack:
            aload 3 /* sa */
            iload 4 /* sp */
            caload
            bipush 10
            if_icmpne 43
        33: .line 200
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSODesDefined:Z
        34: .line 201
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSS2DesDefined:Z
        35: .line 202
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSS3DesDefined:Z
        36: .line 204
            goto 43
        end local 9 // int outputSize
        37: .line 205
      StackMap locals: sun.nio.cs.ext.ISO2022$Encoder java.nio.CharBuffer java.nio.ByteBuffer char[] int int byte[] int int top byte[] int
      StackMap stack:
            aload 0 /* this */
            iload 11 /* c */
            aload 10 /* outputByte */
            invokevirtual sun.nio.cs.ext.ISO2022$Encoder.unicodeToNative:(C[B)I
            istore 9 /* outputSize */
        start local 9 // int outputSize
        38: .line 206
            iload 9 /* outputSize */
            ifne 43
        39: .line 207
            iconst_1
            invokestatic java.nio.charset.CoderResult.unmappableForLength:(I)Ljava/nio/charset/CoderResult;
            astore 14
        40: .line 223
            aload 1 /* src */
            iload 4 /* sp */
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/CharBuffer;
            pop
        41: .line 224
            aload 2 /* dst */
            iload 7 /* dp */
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        42: .line 207
            aload 14
            areturn
        43: .line 210
      StackMap locals: sun.nio.cs.ext.ISO2022$Encoder java.nio.CharBuffer java.nio.ByteBuffer char[] int int byte[] int int int byte[] int
      StackMap stack:
            iload 8 /* dl */
            iload 7 /* dp */
            isub
            iload 9 /* outputSize */
            if_icmpge 48
        44: .line 211
            getstatic java.nio.charset.CoderResult.OVERFLOW:Ljava/nio/charset/CoderResult;
            astore 14
        45: .line 223
            aload 1 /* src */
            iload 4 /* sp */
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/CharBuffer;
            pop
        46: .line 224
            aload 2 /* dst */
            iload 7 /* dp */
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        47: .line 211
            aload 14
            areturn
        48: .line 213
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 12 /* i */
        start local 12 // int i
        49: goto 52
        50: .line 214
      StackMap locals: int
      StackMap stack:
            aload 6 /* da */
            iload 7 /* dp */
            iinc 7 /* dp */ 1
            aload 10 /* outputByte */
            iload 12 /* i */
            baload
            bastore
        51: .line 213
            iinc 12 /* i */ 1
      StackMap locals:
      StackMap stack:
        52: iload 12 /* i */
            iload 9 /* outputSize */
            if_icmplt 50
        end local 12 // int i
        53: .line 215
            iinc 4 /* sp */ 1
        54: .line 216
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.newshiftout:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.shiftout:Z
        55: .line 217
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.newSODesDefined:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.SODesDefined:Z
        56: .line 218
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.newSS2DesDefined:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.SS2DesDefined:Z
        57: .line 219
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.newSS3DesDefined:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.SS3DesDefined:Z
        end local 11 // char c
        end local 9 // int outputSize
        58: .line 181
      StackMap locals: sun.nio.cs.ext.ISO2022$Encoder java.nio.CharBuffer java.nio.ByteBuffer char[] int int byte[] int int top byte[]
      StackMap stack:
            iload 4 /* sp */
            iload 5 /* sl */
            if_icmplt 12
        59: .line 221
            getstatic java.nio.charset.CoderResult.UNDERFLOW:Ljava/nio/charset/CoderResult;
            astore 14
        60: .line 223
            aload 1 /* src */
            iload 4 /* sp */
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/CharBuffer;
            pop
        61: .line 224
            aload 2 /* dst */
            iload 7 /* dp */
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        62: .line 221
            aload 14
            areturn
        63: .line 222
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 13
        64: .line 223
            aload 1 /* src */
            iload 4 /* sp */
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/CharBuffer;
            pop
        65: .line 224
            aload 2 /* dst */
            iload 7 /* dp */
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        66: .line 225
            aload 13
            athrow
        end local 10 // byte[] outputByte
        end local 8 // int dl
        end local 7 // int dp
        end local 6 // byte[] da
        end local 5 // int sl
        end local 4 // int sp
        end local 3 // char[] sa
        end local 2 // java.nio.ByteBuffer dst
        end local 1 // java.nio.CharBuffer src
        end local 0 // sun.nio.cs.ext.ISO2022$Encoder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   67     0        this  Lsun/nio/cs/ext/ISO2022$Encoder;
            0   67     1         src  Ljava/nio/CharBuffer;
            0   67     2         dst  Ljava/nio/ByteBuffer;
            1   67     3          sa  [C
            2   67     4          sp  I
            3   67     5          sl  I
            4   67     6          da  [B
            5   67     7          dp  I
            6   67     8          dl  I
           27   30     9  outputSize  I
           31   37     9  outputSize  I
           38   58     9  outputSize  I
            7   67    10  outputByte  [B
           13   58    11           c  C
           49   53    12           i  I
      Exception table:
        from    to  target  type
          11    16      63  any
          19    20      63  any
          23    40      63  any
          43    45      63  any
          48    60      63  any
    MethodParameters:
      Name  Flags
      src   
      dst   

  private java.nio.charset.CoderResult encodeBufferLoop(java.nio.CharBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=10, args_size=3
        start local 0 // sun.nio.cs.ext.ISO2022$Encoder this
        start local 1 // java.nio.CharBuffer src
        start local 2 // java.nio.ByteBuffer dst
         0: .line 232
            bipush 8
            newarray 8
            astore 4 /* outputByte */
        start local 4 // byte[] outputByte
         1: .line 233
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.shiftout:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.newshiftout:Z
         2: .line 234
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SODesDefined:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSODesDefined:Z
         3: .line 235
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SS2DesDefined:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSS2DesDefined:Z
         4: .line 236
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.SS3DesDefined:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSS3DesDefined:Z
         5: .line 237
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.position:()I
            istore 5 /* mark */
        start local 5 // int mark
         6: .line 240
            goto 49
         7: .line 241
      StackMap locals: sun.nio.cs.ext.ISO2022$Encoder java.nio.CharBuffer java.nio.ByteBuffer top byte[] int
      StackMap stack:
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.get:()C
            istore 6 /* inputChar */
        start local 6 // char inputChar
         8: .line 242
            iload 6 /* inputChar */
            invokestatic java.lang.Character.isSurrogate:(C)Z
            ifeq 16
         9: .line 243
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.sgp:Lsun/nio/cs/Surrogate$Parser;
            iload 6 /* inputChar */
            aload 1 /* src */
            invokevirtual sun.nio.cs.Surrogate$Parser.parse:(CLjava/nio/CharBuffer;)I
            ifge 13
        10: .line 244
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.sgp:Lsun/nio/cs/Surrogate$Parser;
            invokevirtual sun.nio.cs.Surrogate$Parser.error:()Ljava/nio/charset/CoderResult;
            astore 9
        11: .line 281
            aload 1 /* src */
            iload 5 /* mark */
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/CharBuffer;
            pop
        12: .line 244
            aload 9
            areturn
        13: .line 245
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.sgp:Lsun/nio/cs/Surrogate$Parser;
            invokevirtual sun.nio.cs.Surrogate$Parser.unmappableResult:()Ljava/nio/charset/CoderResult;
            astore 9
        14: .line 281
            aload 1 /* src */
            iload 5 /* mark */
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/CharBuffer;
            pop
        15: .line 245
            aload 9
            areturn
        16: .line 247
      StackMap locals:
      StackMap stack:
            iload 6 /* inputChar */
            sipush 128
            if_icmpge 30
        17: .line 248
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.shiftout:Z
            ifeq 23
        18: .line 249
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.newshiftout:Z
        19: .line 250
            iconst_2
            istore 3 /* outputSize */
        start local 3 // int outputSize
        20: .line 251
            aload 4 /* outputByte */
            iconst_0
            bipush 15
            bastore
        21: .line 252
            aload 4 /* outputByte */
            iconst_1
            iload 6 /* inputChar */
            bipush 127
            iand
            i2b
            bastore
        22: .line 253
            goto 25
        end local 3 // int outputSize
        23: .line 254
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 3 /* outputSize */
        start local 3 // int outputSize
        24: .line 255
            aload 4 /* outputByte */
            iconst_0
            iload 6 /* inputChar */
            bipush 127
            iand
            i2b
            bastore
        25: .line 257
      StackMap locals: sun.nio.cs.ext.ISO2022$Encoder java.nio.CharBuffer java.nio.ByteBuffer int byte[] int int
      StackMap stack:
            iload 6 /* inputChar */
            bipush 10
            if_icmpne 35
        26: .line 258
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSODesDefined:Z
        27: .line 259
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSS2DesDefined:Z
        28: .line 260
            aload 0 /* this */
            iconst_0
            putfield sun.nio.cs.ext.ISO2022$Encoder.newSS3DesDefined:Z
        29: .line 262
            goto 35
        end local 3 // int outputSize
        30: .line 263
      StackMap locals: sun.nio.cs.ext.ISO2022$Encoder java.nio.CharBuffer java.nio.ByteBuffer top byte[] int int
      StackMap stack:
            aload 0 /* this */
            iload 6 /* inputChar */
            aload 4 /* outputByte */
            invokevirtual sun.nio.cs.ext.ISO2022$Encoder.unicodeToNative:(C[B)I
            istore 3 /* outputSize */
        start local 3 // int outputSize
        31: .line 264
            iload 3 /* outputSize */
            ifne 35
        32: .line 265
            iconst_1
            invokestatic java.nio.charset.CoderResult.unmappableForLength:(I)Ljava/nio/charset/CoderResult;
            astore 9
        33: .line 281
            aload 1 /* src */
            iload 5 /* mark */
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/CharBuffer;
            pop
        34: .line 265
            aload 9
            areturn
        35: .line 269
      StackMap locals: sun.nio.cs.ext.ISO2022$Encoder java.nio.CharBuffer java.nio.ByteBuffer int byte[] int int
      StackMap stack:
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iload 3 /* outputSize */
            if_icmpge 39
        36: .line 270
            getstatic java.nio.charset.CoderResult.OVERFLOW:Ljava/nio/charset/CoderResult;
            astore 9
        37: .line 281
            aload 1 /* src */
            iload 5 /* mark */
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/CharBuffer;
            pop
        38: .line 270
            aload 9
            areturn
        39: .line 271
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        40: goto 43
        41: .line 272
      StackMap locals: int
      StackMap stack:
            aload 2 /* dst */
            aload 4 /* outputByte */
            iload 7 /* i */
            baload
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
        42: .line 271
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        43: iload 7 /* i */
            iload 3 /* outputSize */
            if_icmplt 41
        end local 7 // int i
        44: .line 273
            iinc 5 /* mark */ 1
        45: .line 274
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.newshiftout:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.shiftout:Z
        46: .line 275
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.newSODesDefined:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.SODesDefined:Z
        47: .line 276
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.newSS2DesDefined:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.SS2DesDefined:Z
        48: .line 277
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.nio.cs.ext.ISO2022$Encoder.newSS3DesDefined:Z
            putfield sun.nio.cs.ext.ISO2022$Encoder.SS3DesDefined:Z
        end local 6 // char inputChar
        end local 3 // int outputSize
        49: .line 240
      StackMap locals: sun.nio.cs.ext.ISO2022$Encoder java.nio.CharBuffer java.nio.ByteBuffer top byte[] int
      StackMap stack:
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.hasRemaining:()Z
            ifne 7
        50: .line 279
            getstatic java.nio.charset.CoderResult.UNDERFLOW:Ljava/nio/charset/CoderResult;
            astore 9
        51: .line 281
            aload 1 /* src */
            iload 5 /* mark */
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/CharBuffer;
            pop
        52: .line 279
            aload 9
            areturn
        53: .line 280
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 8
        54: .line 281
            aload 1 /* src */
            iload 5 /* mark */
            invokevirtual java.nio.CharBuffer.position:(I)Ljava/nio/CharBuffer;
            pop
        55: .line 282
            aload 8
            athrow
        end local 5 // int mark
        end local 4 // byte[] outputByte
        end local 2 // java.nio.ByteBuffer dst
        end local 1 // java.nio.CharBuffer src
        end local 0 // sun.nio.cs.ext.ISO2022$Encoder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   56     0        this  Lsun/nio/cs/ext/ISO2022$Encoder;
            0   56     1         src  Ljava/nio/CharBuffer;
            0   56     2         dst  Ljava/nio/ByteBuffer;
           20   23     3  outputSize  I
           24   30     3  outputSize  I
           31   49     3  outputSize  I
            1   56     4  outputByte  [B
            6   56     5        mark  I
            8   49     6   inputChar  C
           40   44     7           i  I
      Exception table:
        from    to  target  type
           6    11      53  any
          13    14      53  any
          16    33      53  any
          35    37      53  any
          39    51      53  any
    MethodParameters:
      Name  Flags
      src   
      dst   

  protected java.nio.charset.CoderResult encodeLoop(java.nio.CharBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.nio.cs.ext.ISO2022$Encoder this
        start local 1 // java.nio.CharBuffer src
        start local 2 // java.nio.ByteBuffer dst
         0: .line 288
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.hasArray:()Z
            ifeq 2
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 2
         1: .line 289
            aload 0 /* this */
            aload 1 /* src */
            aload 2 /* dst */
            invokevirtual sun.nio.cs.ext.ISO2022$Encoder.encodeArrayLoop:(Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;
            areturn
         2: .line 291
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* src */
            aload 2 /* dst */
            invokevirtual sun.nio.cs.ext.ISO2022$Encoder.encodeBufferLoop:(Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;
            areturn
        end local 2 // java.nio.ByteBuffer dst
        end local 1 // java.nio.CharBuffer src
        end local 0 // sun.nio.cs.ext.ISO2022$Encoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/nio/cs/ext/ISO2022$Encoder;
            0    3     1   src  Ljava/nio/CharBuffer;
            0    3     2   dst  Ljava/nio/ByteBuffer;
    MethodParameters:
      Name  Flags
      src   
      dst   
}
SourceFile: "ISO2022.java"
NestHost: sun.nio.cs.ext.ISO2022
InnerClasses:
  public Parser = sun.nio.cs.Surrogate$Parser of sun.nio.cs.Surrogate
  protected Encoder = sun.nio.cs.ext.ISO2022$Encoder of sun.nio.cs.ext.ISO2022