public class sun.io.CharToByteUnicode extends sun.io.CharToByteConverter
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.io.CharToByteUnicode
  super_class: sun.io.CharToByteConverter
{
  static final char BYTE_ORDER_MARK;
    descriptor: C
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 65279

  protected boolean usesMark;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

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

  static final int UNKNOWN;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  static final int BIG;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  static final int LITTLE;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 2

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // sun.io.CharToByteUnicode this
         0: .line 48
            aload 0 /* this */
            invokespecial sun.io.CharToByteConverter.<init>:()V
         1: .line 40
            aload 0 /* this */
            iconst_1
            putfield sun.io.CharToByteUnicode.usesMark:Z
         2: .line 41
            aload 0 /* this */
            iconst_0
            putfield sun.io.CharToByteUnicode.markWritten:Z
         3: .line 46
            aload 0 /* this */
            iconst_0
            putfield sun.io.CharToByteUnicode.byteOrder:I
         4: .line 50
            new sun.security.action.GetPropertyAction
            dup
            ldc "sun.io.unicode.encoding"
         5: .line 51
            ldc "UnicodeBig"
         6: .line 50
            invokespecial sun.security.action.GetPropertyAction.<init>:(Ljava/lang/String;Ljava/lang/String;)V
         7: .line 49
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 1 /* enc */
        start local 1 // java.lang.String enc
         8: .line 52
            aload 1 /* enc */
            ldc "UnicodeBig"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 10
         9: .line 53
            aload 0 /* this */
            iconst_1
            putfield sun.io.CharToByteUnicode.byteOrder:I
            goto 13
        10: .line 54
      StackMap locals: sun.io.CharToByteUnicode java.lang.String
      StackMap stack:
            aload 1 /* enc */
            ldc "UnicodeLittle"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
        11: .line 55
            aload 0 /* this */
            iconst_2
            putfield sun.io.CharToByteUnicode.byteOrder:I
            goto 13
        12: .line 57
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield sun.io.CharToByteUnicode.byteOrder:I
        13: .line 58
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String enc
        end local 0 // sun.io.CharToByteUnicode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lsun/io/CharToByteUnicode;
            8   14     1   enc  Ljava/lang/String;

  public void <init>(int, boolean);
    descriptor: (IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // sun.io.CharToByteUnicode this
        start local 1 // int byteOrder
        start local 2 // boolean usesMark
         0: .line 60
            aload 0 /* this */
            invokespecial sun.io.CharToByteConverter.<init>:()V
         1: .line 40
            aload 0 /* this */
            iconst_1
            putfield sun.io.CharToByteUnicode.usesMark:Z
         2: .line 41
            aload 0 /* this */
            iconst_0
            putfield sun.io.CharToByteUnicode.markWritten:Z
         3: .line 46
            aload 0 /* this */
            iconst_0
            putfield sun.io.CharToByteUnicode.byteOrder:I
         4: .line 61
            aload 0 /* this */
            iload 1 /* byteOrder */
            putfield sun.io.CharToByteUnicode.byteOrder:I
         5: .line 62
            aload 0 /* this */
            iload 2 /* usesMark */
            putfield sun.io.CharToByteUnicode.usesMark:Z
         6: .line 63
            return
        end local 2 // boolean usesMark
        end local 1 // int byteOrder
        end local 0 // sun.io.CharToByteUnicode this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lsun/io/CharToByteUnicode;
            0    7     1  byteOrder  I
            0    7     2   usesMark  Z
    MethodParameters:
           Name  Flags
      byteOrder  
      usesMark   

  public void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.io.CharToByteUnicode this
        start local 1 // boolean usesMark
         0: .line 66
            aload 0 /* this */
            invokespecial sun.io.CharToByteUnicode.<init>:()V
         1: .line 67
            aload 0 /* this */
            iload 1 /* usesMark */
            putfield sun.io.CharToByteUnicode.usesMark:Z
         2: .line 68
            return
        end local 1 // boolean usesMark
        end local 0 // sun.io.CharToByteUnicode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lsun/io/CharToByteUnicode;
            0    3     1  usesMark  Z
    MethodParameters:
          Name  Flags
      usesMark  

  public java.lang.String getCharacterEncoding();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.io.CharToByteUnicode this
         0: .line 71
            aload 0 /* this */
            getfield sun.io.CharToByteUnicode.byteOrder:I
            tableswitch { // 1 - 2
                    1: 1
                    2: 4
              default: 7
          }
         1: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.io.CharToByteUnicode.usesMark:Z
            ifeq 2
            ldc "UnicodeBig"
            goto 3
      StackMap locals:
      StackMap stack:
         2: ldc "UnicodeBigUnmarked"
      StackMap locals:
      StackMap stack: java.lang.String
         3: areturn
         4: .line 75
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.io.CharToByteUnicode.usesMark:Z
            ifeq 5
            ldc "UnicodeLittle"
            goto 6
      StackMap locals:
      StackMap stack:
         5: ldc "UnicodeLittleUnmarked"
      StackMap locals:
      StackMap stack: java.lang.String
         6: areturn
         7: .line 77
      StackMap locals:
      StackMap stack:
            ldc "UnicodeUnknown"
            areturn
        end local 0 // sun.io.CharToByteUnicode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lsun/io/CharToByteUnicode;

  public int convert(char[], int, int, byte[], int, int);
    descriptor: ([CII[BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=11, args_size=7
        start local 0 // sun.io.CharToByteUnicode this
        start local 1 // char[] in
        start local 2 // int inOff
        start local 3 // int inEnd
        start local 4 // byte[] out
        start local 5 // int outOff
        start local 6 // int outEnd
         0: .line 85
            aload 0 /* this */
            iload 2 /* inOff */
            putfield sun.io.CharToByteUnicode.charOff:I
         1: .line 86
            aload 0 /* this */
            iload 5 /* outOff */
            putfield sun.io.CharToByteUnicode.byteOff:I
         2: .line 88
            iload 2 /* inOff */
            iload 3 /* inEnd */
            if_icmplt 4
         3: .line 89
            iconst_0
            ireturn
         4: .line 91
      StackMap locals:
      StackMap stack:
            iload 2 /* inOff */
            istore 7 /* inI */
        start local 7 // int inI
         5: .line 92
            iload 5 /* outOff */
            istore 8 /* outI */
        start local 8 // int outI
         6: .line 93
            iload 6 /* outEnd */
            iconst_2
            isub
            istore 9 /* outTop */
        start local 9 // int outTop
         7: .line 95
            aload 0 /* this */
            getfield sun.io.CharToByteUnicode.usesMark:Z
            ifeq 17
            aload 0 /* this */
            getfield sun.io.CharToByteUnicode.markWritten:Z
            ifne 17
         8: .line 96
            iload 8 /* outI */
            iload 9 /* outTop */
            if_icmple 10
         9: .line 97
            new sun.io.ConversionBufferFullException
            dup
            invokespecial sun.io.ConversionBufferFullException.<init>:()V
            athrow
        10: .line 98
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield sun.io.CharToByteUnicode.byteOrder:I
            iconst_1
            if_icmpne 14
        11: .line 99
            aload 4 /* out */
            iload 8 /* outI */
            iinc 8 /* outI */ 1
            bipush -2
            bastore
        12: .line 100
            aload 4 /* out */
            iload 8 /* outI */
            iinc 8 /* outI */ 1
            iconst_m1
            bastore
        13: .line 101
            goto 16
        14: .line 103
      StackMap locals:
      StackMap stack:
            aload 4 /* out */
            iload 8 /* outI */
            iinc 8 /* outI */ 1
            iconst_m1
            bastore
        15: .line 104
            aload 4 /* out */
            iload 8 /* outI */
            iinc 8 /* outI */ 1
            bipush -2
            bastore
        16: .line 106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield sun.io.CharToByteUnicode.markWritten:Z
        17: .line 109
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.io.CharToByteUnicode.byteOrder:I
            iconst_1
            if_icmpne 35
        18: .line 110
            goto 26
        19: .line 111
      StackMap locals:
      StackMap stack:
            iload 8 /* outI */
            iload 9 /* outTop */
            if_icmple 23
        20: .line 112
            aload 0 /* this */
            iload 7 /* inI */
            putfield sun.io.CharToByteUnicode.charOff:I
        21: .line 113
            aload 0 /* this */
            iload 8 /* outI */
            putfield sun.io.CharToByteUnicode.byteOff:I
        22: .line 114
            new sun.io.ConversionBufferFullException
            dup
            invokespecial sun.io.ConversionBufferFullException.<init>:()V
            athrow
        23: .line 116
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            iload 7 /* inI */
            iinc 7 /* inI */ 1
            caload
            istore 10 /* c */
        start local 10 // char c
        24: .line 117
            aload 4 /* out */
            iload 8 /* outI */
            iinc 8 /* outI */ 1
            iload 10 /* c */
            bipush 8
            ishr
            i2b
            bastore
        25: .line 118
            aload 4 /* out */
            iload 8 /* outI */
            iinc 8 /* outI */ 1
            iload 10 /* c */
            sipush 255
            iand
            i2b
            bastore
        end local 10 // char c
        26: .line 110
      StackMap locals:
      StackMap stack:
            iload 7 /* inI */
            iload 3 /* inEnd */
            if_icmplt 19
        27: .line 120
            goto 36
        28: .line 123
      StackMap locals:
      StackMap stack:
            iload 8 /* outI */
            iload 9 /* outTop */
            if_icmple 32
        29: .line 124
            aload 0 /* this */
            iload 7 /* inI */
            putfield sun.io.CharToByteUnicode.charOff:I
        30: .line 125
            aload 0 /* this */
            iload 8 /* outI */
            putfield sun.io.CharToByteUnicode.byteOff:I
        31: .line 126
            new sun.io.ConversionBufferFullException
            dup
            invokespecial sun.io.ConversionBufferFullException.<init>:()V
            athrow
        32: .line 128
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            iload 7 /* inI */
            iinc 7 /* inI */ 1
            caload
            istore 10 /* c */
        start local 10 // char c
        33: .line 129
            aload 4 /* out */
            iload 8 /* outI */
            iinc 8 /* outI */ 1
            iload 10 /* c */
            sipush 255
            iand
            i2b
            bastore
        34: .line 130
            aload 4 /* out */
            iload 8 /* outI */
            iinc 8 /* outI */ 1
            iload 10 /* c */
            bipush 8
            ishr
            i2b
            bastore
        end local 10 // char c
        35: .line 122
      StackMap locals:
      StackMap stack:
            iload 7 /* inI */
            iload 3 /* inEnd */
            if_icmplt 28
        36: .line 134
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 7 /* inI */
            putfield sun.io.CharToByteUnicode.charOff:I
        37: .line 135
            aload 0 /* this */
            iload 8 /* outI */
            putfield sun.io.CharToByteUnicode.byteOff:I
        38: .line 136
            iload 8 /* outI */
            iload 5 /* outOff */
            isub
            ireturn
        end local 9 // int outTop
        end local 8 // int outI
        end local 7 // int inI
        end local 6 // int outEnd
        end local 5 // int outOff
        end local 4 // byte[] out
        end local 3 // int inEnd
        end local 2 // int inOff
        end local 1 // char[] in
        end local 0 // sun.io.CharToByteUnicode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   39     0    this  Lsun/io/CharToByteUnicode;
            0   39     1      in  [C
            0   39     2   inOff  I
            0   39     3   inEnd  I
            0   39     4     out  [B
            0   39     5  outOff  I
            0   39     6  outEnd  I
            5   39     7     inI  I
            6   39     8    outI  I
            7   39     9  outTop  I
           24   26    10       c  C
           33   35    10       c  C
    Exceptions:
      throws sun.io.ConversionBufferFullException, sun.io.MalformedInputException
    MethodParameters:
        Name  Flags
      in      
      inOff   
      inEnd   
      out     
      outOff  
      outEnd  

  public int flush(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // sun.io.CharToByteUnicode this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // int inEnd
         0: .line 140
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield sun.io.CharToByteUnicode.charOff:I
            putfield sun.io.CharToByteUnicode.byteOff:I
         1: .line 141
            iconst_0
            ireturn
        end local 3 // int inEnd
        end local 2 // int inOff
        end local 1 // byte[] in
        end local 0 // sun.io.CharToByteUnicode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lsun/io/CharToByteUnicode;
            0    2     1     in  [B
            0    2     2  inOff  I
            0    2     3  inEnd  I
    MethodParameters:
       Name  Flags
      in     
      inOff  
      inEnd  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // sun.io.CharToByteUnicode this
         0: .line 145
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield sun.io.CharToByteUnicode.charOff:I
            putfield sun.io.CharToByteUnicode.byteOff:I
         1: .line 146
            aload 0 /* this */
            iconst_0
            putfield sun.io.CharToByteUnicode.markWritten:Z
         2: .line 147
            return
        end local 0 // sun.io.CharToByteUnicode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/io/CharToByteUnicode;

  public int getMaxBytesPerChar();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.io.CharToByteUnicode this
         0: .line 150
            iconst_4
            ireturn
        end local 0 // sun.io.CharToByteUnicode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/io/CharToByteUnicode;
}
SourceFile: "CharToByteUnicode.java"