public class sun.nio.cs.Surrogate$Generator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.nio.cs.Surrogate$Generator
  super_class: java.lang.Object
{
  private java.nio.charset.CoderResult error;
    descriptor: Ljava/nio/charset/CoderResult;
    flags: (0x0002) ACC_PRIVATE

  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 258
            ldc Lsun/nio/cs/Surrogate;
            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.Surrogate$Generator.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.nio.cs.Surrogate$Generator this
         0: .line 260
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 262
            aload 0 /* this */
            getstatic java.nio.charset.CoderResult.OVERFLOW:Ljava/nio/charset/CoderResult;
            putfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
         2: .line 260
            return
        end local 0 // sun.nio.cs.Surrogate$Generator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/nio/cs/Surrogate$Generator;

  public java.nio.charset.CoderResult error();
    descriptor: ()Ljava/nio/charset/CoderResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.nio.cs.Surrogate$Generator this
         0: .line 269
            getstatic sun.nio.cs.Surrogate$Generator.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
            ifnonnull 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 270
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
            areturn
        end local 0 // sun.nio.cs.Surrogate$Generator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/nio/cs/Surrogate$Generator;

  public int generate(int, int, java.nio.CharBuffer);
    descriptor: (IILjava/nio/CharBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=4
        start local 0 // sun.nio.cs.Surrogate$Generator this
        start local 1 // int uc
        start local 2 // int len
        start local 3 // java.nio.CharBuffer dst
         0: .line 288
            iload 1 /* uc */
            invokestatic java.lang.Character.isBmpCodePoint:(I)Z
            ifeq 11
         1: .line 289
            iload 1 /* uc */
            i2c
            istore 4 /* c */
        start local 4 // char c
         2: .line 290
            iload 4 /* c */
            invokestatic java.lang.Character.isSurrogate:(C)Z
            ifeq 5
         3: .line 291
            aload 0 /* this */
            iload 2 /* len */
            invokestatic java.nio.charset.CoderResult.malformedForLength:(I)Ljava/nio/charset/CoderResult;
            putfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
         4: .line 292
            iconst_m1
            ireturn
         5: .line 294
      StackMap locals: int
      StackMap stack:
            aload 3 /* dst */
            invokevirtual java.nio.CharBuffer.remaining:()I
            iconst_1
            if_icmpge 8
         6: .line 295
            aload 0 /* this */
            getstatic java.nio.charset.CoderResult.OVERFLOW:Ljava/nio/charset/CoderResult;
            putfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
         7: .line 296
            iconst_m1
            ireturn
         8: .line 298
      StackMap locals:
      StackMap stack:
            aload 3 /* dst */
            iload 4 /* c */
            invokevirtual java.nio.CharBuffer.put:(C)Ljava/nio/CharBuffer;
            pop
         9: .line 299
            aload 0 /* this */
            aconst_null
            putfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
        10: .line 300
            iconst_1
            ireturn
        end local 4 // char c
        11: .line 301
      StackMap locals:
      StackMap stack:
            iload 1 /* uc */
            invokestatic java.lang.Character.isValidCodePoint:(I)Z
            ifeq 19
        12: .line 302
            aload 3 /* dst */
            invokevirtual java.nio.CharBuffer.remaining:()I
            iconst_2
            if_icmpge 15
        13: .line 303
            aload 0 /* this */
            getstatic java.nio.charset.CoderResult.OVERFLOW:Ljava/nio/charset/CoderResult;
            putfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
        14: .line 304
            iconst_m1
            ireturn
        15: .line 306
      StackMap locals:
      StackMap stack:
            aload 3 /* dst */
            iload 1 /* uc */
            invokestatic java.lang.Character.highSurrogate:(I)C
            invokevirtual java.nio.CharBuffer.put:(C)Ljava/nio/CharBuffer;
            pop
        16: .line 307
            aload 3 /* dst */
            iload 1 /* uc */
            invokestatic java.lang.Character.lowSurrogate:(I)C
            invokevirtual java.nio.CharBuffer.put:(C)Ljava/nio/CharBuffer;
            pop
        17: .line 308
            aload 0 /* this */
            aconst_null
            putfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
        18: .line 309
            iconst_2
            ireturn
        19: .line 311
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* len */
            invokestatic java.nio.charset.CoderResult.unmappableForLength:(I)Ljava/nio/charset/CoderResult;
            putfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
        20: .line 312
            iconst_m1
            ireturn
        end local 3 // java.nio.CharBuffer dst
        end local 2 // int len
        end local 1 // int uc
        end local 0 // sun.nio.cs.Surrogate$Generator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   21     0  this  Lsun/nio/cs/Surrogate$Generator;
            0   21     1    uc  I
            0   21     2   len  I
            0   21     3   dst  Ljava/nio/CharBuffer;
            2   11     4     c  C
    MethodParameters:
      Name  Flags
      uc    
      len   
      dst   

  public int generate(int, int, char[], int, int);
    descriptor: (II[CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=6
        start local 0 // sun.nio.cs.Surrogate$Generator this
        start local 1 // int uc
        start local 2 // int len
        start local 3 // char[] da
        start local 4 // int dp
        start local 5 // int dl
         0: .line 333
            iload 1 /* uc */
            invokestatic java.lang.Character.isBmpCodePoint:(I)Z
            ifeq 11
         1: .line 334
            iload 1 /* uc */
            i2c
            istore 6 /* c */
        start local 6 // char c
         2: .line 335
            iload 6 /* c */
            invokestatic java.lang.Character.isSurrogate:(C)Z
            ifeq 5
         3: .line 336
            aload 0 /* this */
            iload 2 /* len */
            invokestatic java.nio.charset.CoderResult.malformedForLength:(I)Ljava/nio/charset/CoderResult;
            putfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
         4: .line 337
            iconst_m1
            ireturn
         5: .line 339
      StackMap locals: int
      StackMap stack:
            iload 5 /* dl */
            iload 4 /* dp */
            isub
            iconst_1
            if_icmpge 8
         6: .line 340
            aload 0 /* this */
            getstatic java.nio.charset.CoderResult.OVERFLOW:Ljava/nio/charset/CoderResult;
            putfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
         7: .line 341
            iconst_m1
            ireturn
         8: .line 343
      StackMap locals:
      StackMap stack:
            aload 3 /* da */
            iload 4 /* dp */
            iload 6 /* c */
            castore
         9: .line 344
            aload 0 /* this */
            aconst_null
            putfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
        10: .line 345
            iconst_1
            ireturn
        end local 6 // char c
        11: .line 346
      StackMap locals:
      StackMap stack:
            iload 1 /* uc */
            invokestatic java.lang.Character.isValidCodePoint:(I)Z
            ifeq 19
        12: .line 347
            iload 5 /* dl */
            iload 4 /* dp */
            isub
            iconst_2
            if_icmpge 15
        13: .line 348
            aload 0 /* this */
            getstatic java.nio.charset.CoderResult.OVERFLOW:Ljava/nio/charset/CoderResult;
            putfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
        14: .line 349
            iconst_m1
            ireturn
        15: .line 351
      StackMap locals:
      StackMap stack:
            aload 3 /* da */
            iload 4 /* dp */
            iload 1 /* uc */
            invokestatic java.lang.Character.highSurrogate:(I)C
            castore
        16: .line 352
            aload 3 /* da */
            iload 4 /* dp */
            iconst_1
            iadd
            iload 1 /* uc */
            invokestatic java.lang.Character.lowSurrogate:(I)C
            castore
        17: .line 353
            aload 0 /* this */
            aconst_null
            putfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
        18: .line 354
            iconst_2
            ireturn
        19: .line 356
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* len */
            invokestatic java.nio.charset.CoderResult.unmappableForLength:(I)Ljava/nio/charset/CoderResult;
            putfield sun.nio.cs.Surrogate$Generator.error:Ljava/nio/charset/CoderResult;
        20: .line 357
            iconst_m1
            ireturn
        end local 5 // int dl
        end local 4 // int dp
        end local 3 // char[] da
        end local 2 // int len
        end local 1 // int uc
        end local 0 // sun.nio.cs.Surrogate$Generator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   21     0  this  Lsun/nio/cs/Surrogate$Generator;
            0   21     1    uc  I
            0   21     2   len  I
            0   21     3    da  [C
            0   21     4    dp  I
            0   21     5    dl  I
            2   11     6     c  C
    MethodParameters:
      Name  Flags
      uc    
      len   
      da    
      dp    
      dl    
}
SourceFile: "Surrogate.java"
NestHost: sun.nio.cs.Surrogate
InnerClasses:
  public Generator = sun.nio.cs.Surrogate$Generator of sun.nio.cs.Surrogate