public abstract class sun.text.normalizer.Trie
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: sun.text.normalizer.Trie
  super_class: java.lang.Object
{
  protected static final int LEAD_INDEX_OFFSET_;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 320

  protected static final int INDEX_STAGE_1_SHIFT_;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 5

  protected static final int INDEX_STAGE_2_SHIFT_;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  protected static final int INDEX_STAGE_3_MASK_;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 31

  protected static final int SURROGATE_MASK_;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 1023

  protected char[] m_index_;
    descriptor: [C
    flags: (0x0004) ACC_PROTECTED

  protected sun.text.normalizer.Trie$DataManipulate m_dataManipulate_;
    descriptor: Lsun/text/normalizer/Trie$DataManipulate;
    flags: (0x0004) ACC_PROTECTED

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

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

  private static final int HEADER_SIGNATURE_INDEX_;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final int HEADER_OPTIONS_INDEX_;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private static final int HEADER_INDEX_LENGTH_INDEX_;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

  private static final int HEADER_DATA_LENGTH_INDEX_;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 6

  private static final int HEADER_LENGTH_;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 8

  private static final int HEADER_OPTIONS_LATIN1_IS_LINEAR_MASK_;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 512

  private static final int HEADER_SIGNATURE_;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1416784229

  private static final int HEADER_OPTIONS_SHIFT_MASK_;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 15

  private static final int HEADER_OPTIONS_INDEX_SHIFT_;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

  private static final int HEADER_OPTIONS_DATA_IS_32_BIT_;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 256

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

  private int m_options_;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  protected void <init>(java.io.InputStream, sun.text.normalizer.Trie$DataManipulate);
    descriptor: (Ljava/io/InputStream;Lsun/text/normalizer/Trie$DataManipulate;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // sun.text.normalizer.Trie this
        start local 1 // java.io.InputStream inputStream
        start local 2 // sun.text.normalizer.Trie$DataManipulate dataManipulate
         0: .line 112
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 115
            new java.io.DataInputStream
            dup
            aload 1 /* inputStream */
            invokespecial java.io.DataInputStream.<init>:(Ljava/io/InputStream;)V
            astore 3 /* input */
        start local 3 // java.io.DataInputStream input
         2: .line 117
            aload 3 /* input */
            invokevirtual java.io.DataInputStream.readInt:()I
            istore 4 /* signature */
        start local 4 // int signature
         3: .line 118
            aload 0 /* this */
            aload 3 /* input */
            invokevirtual java.io.DataInputStream.readInt:()I
            putfield sun.text.normalizer.Trie.m_options_:I
         4: .line 120
            aload 0 /* this */
            iload 4 /* signature */
            invokevirtual sun.text.normalizer.Trie.checkHeader:(I)Z
            ifne 6
         5: .line 121
            new java.lang.IllegalArgumentException
            dup
            ldc "ICU data file error: Trie header authentication failed, please check if you have the most updated ICU data file"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 124
      StackMap locals: sun.text.normalizer.Trie java.io.InputStream sun.text.normalizer.Trie$DataManipulate java.io.DataInputStream int
      StackMap stack:
            aload 0 /* this */
            aload 2 /* dataManipulate */
            putfield sun.text.normalizer.Trie.m_dataManipulate_:Lsun/text/normalizer/Trie$DataManipulate;
         7: .line 125
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.text.normalizer.Trie.m_options_:I
         8: .line 126
            sipush 512
            iand
            ifeq 9
            iconst_1
            goto 10
      StackMap locals:
      StackMap stack: sun.text.normalizer.Trie
         9: iconst_0
        10: .line 125
      StackMap locals: sun.text.normalizer.Trie java.io.InputStream sun.text.normalizer.Trie$DataManipulate java.io.DataInputStream int
      StackMap stack: sun.text.normalizer.Trie int
            putfield sun.text.normalizer.Trie.m_isLatin1Linear_:Z
        11: .line 127
            aload 0 /* this */
            aload 3 /* input */
            invokevirtual java.io.DataInputStream.readInt:()I
            putfield sun.text.normalizer.Trie.m_dataOffset_:I
        12: .line 128
            aload 0 /* this */
            aload 3 /* input */
            invokevirtual java.io.DataInputStream.readInt:()I
            putfield sun.text.normalizer.Trie.m_dataLength_:I
        13: .line 129
            aload 0 /* this */
            aload 1 /* inputStream */
            invokevirtual sun.text.normalizer.Trie.unserialize:(Ljava/io/InputStream;)V
        14: .line 130
            return
        end local 4 // int signature
        end local 3 // java.io.DataInputStream input
        end local 2 // sun.text.normalizer.Trie$DataManipulate dataManipulate
        end local 1 // java.io.InputStream inputStream
        end local 0 // sun.text.normalizer.Trie this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   15     0            this  Lsun/text/normalizer/Trie;
            0   15     1     inputStream  Ljava/io/InputStream;
            0   15     2  dataManipulate  Lsun/text/normalizer/Trie$DataManipulate;
            2   15     3           input  Ljava/io/DataInputStream;
            3   15     4       signature  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                Name  Flags
      inputStream     
      dataManipulate  

  protected void <init>(char[], int, sun.text.normalizer.Trie$DataManipulate);
    descriptor: ([CILsun/text/normalizer/Trie$DataManipulate;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // sun.text.normalizer.Trie this
        start local 1 // char[] index
        start local 2 // int options
        start local 3 // sun.text.normalizer.Trie$DataManipulate dataManipulate
         0: .line 140
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 142
            aload 0 /* this */
            iload 2 /* options */
            putfield sun.text.normalizer.Trie.m_options_:I
         2: .line 143
            aload 0 /* this */
            aload 3 /* dataManipulate */
            putfield sun.text.normalizer.Trie.m_dataManipulate_:Lsun/text/normalizer/Trie$DataManipulate;
         3: .line 144
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.text.normalizer.Trie.m_options_:I
         4: .line 145
            sipush 512
            iand
            ifeq 5
            iconst_1
            goto 6
      StackMap locals: sun.text.normalizer.Trie char[] int sun.text.normalizer.Trie$DataManipulate
      StackMap stack: sun.text.normalizer.Trie
         5: iconst_0
         6: .line 144
      StackMap locals: sun.text.normalizer.Trie char[] int sun.text.normalizer.Trie$DataManipulate
      StackMap stack: sun.text.normalizer.Trie int
            putfield sun.text.normalizer.Trie.m_isLatin1Linear_:Z
         7: .line 146
            aload 0 /* this */
            aload 1 /* index */
            putfield sun.text.normalizer.Trie.m_index_:[C
         8: .line 147
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.text.normalizer.Trie.m_index_:[C
            arraylength
            putfield sun.text.normalizer.Trie.m_dataOffset_:I
         9: .line 148
            return
        end local 3 // sun.text.normalizer.Trie$DataManipulate dataManipulate
        end local 2 // int options
        end local 1 // char[] index
        end local 0 // sun.text.normalizer.Trie this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   10     0            this  Lsun/text/normalizer/Trie;
            0   10     1           index  [C
            0   10     2         options  I
            0   10     3  dataManipulate  Lsun/text/normalizer/Trie$DataManipulate;
    MethodParameters:
                Name  Flags
      index           
      options         
      dataManipulate  

  protected abstract int getSurrogateOffset(char, char);
    descriptor: (CC)I
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      lead   
      trail  

  protected abstract int getValue(int);
    descriptor: (I)I
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  

  protected abstract int getInitialValue();
    descriptor: ()I
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  protected final int getRawOffset(int, char);
    descriptor: (IC)I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // sun.text.normalizer.Trie this
        start local 1 // int offset
        start local 2 // char ch
         0: .line 254
            aload 0 /* this */
            getfield sun.text.normalizer.Trie.m_index_:[C
            iload 1 /* offset */
            iload 2 /* ch */
            iconst_5
            ishr
            iadd
            caload
         1: .line 255
            iconst_2
         2: .line 254
            ishl
         3: .line 256
            iload 2 /* ch */
            bipush 31
            iand
         4: .line 254
            iadd
            ireturn
        end local 2 // char ch
        end local 1 // int offset
        end local 0 // sun.text.normalizer.Trie this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lsun/text/normalizer/Trie;
            0    5     1  offset  I
            0    5     2      ch  C
    MethodParameters:
        Name  Flags
      offset  
      ch      

  protected final int getBMPOffset(char);
    descriptor: (C)I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.text.normalizer.Trie this
        start local 1 // char ch
         0: .line 268
            iload 1 /* ch */
            ldc 55296
            if_icmplt 3
         1: .line 269
            iload 1 /* ch */
            ldc 56319
            if_icmpgt 3
         2: .line 270
            aload 0 /* this */
            sipush 320
            iload 1 /* ch */
            invokevirtual sun.text.normalizer.Trie.getRawOffset:(IC)I
            goto 4
         3: .line 271
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            iload 1 /* ch */
            invokevirtual sun.text.normalizer.Trie.getRawOffset:(IC)I
         4: .line 268
      StackMap locals:
      StackMap stack: int
            ireturn
        end local 1 // char ch
        end local 0 // sun.text.normalizer.Trie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/text/normalizer/Trie;
            0    5     1    ch  C
    MethodParameters:
      Name  Flags
      ch    

  protected final int getLeadOffset(char);
    descriptor: (C)I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.text.normalizer.Trie this
        start local 1 // char ch
         0: .line 286
            aload 0 /* this */
            iconst_0
            iload 1 /* ch */
            invokevirtual sun.text.normalizer.Trie.getRawOffset:(IC)I
            ireturn
        end local 1 // char ch
        end local 0 // sun.text.normalizer.Trie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/text/normalizer/Trie;
            0    1     1    ch  C
    MethodParameters:
      Name  Flags
      ch    

  protected final int getCodePointOffset(int);
    descriptor: (I)I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.text.normalizer.Trie this
        start local 1 // int ch
         0: .line 301
            iload 1 /* ch */
            iflt 3
         1: .line 302
            iload 1 /* ch */
            ldc 65536
            if_icmpge 3
         2: .line 304
            aload 0 /* this */
            iload 1 /* ch */
            i2c
            invokevirtual sun.text.normalizer.Trie.getBMPOffset:(C)I
            ireturn
         3: .line 307
      StackMap locals:
      StackMap stack:
            iload 1 /* ch */
            iflt 8
         4: .line 308
            iload 1 /* ch */
            ldc 1114111
            if_icmpgt 8
         5: .line 311
            aload 0 /* this */
            iload 1 /* ch */
            invokestatic sun.text.normalizer.UTF16.getLeadSurrogate:(I)C
         6: .line 312
            iload 1 /* ch */
            sipush 1023
            iand
            i2c
         7: .line 311
            invokevirtual sun.text.normalizer.Trie.getSurrogateOffset:(CC)I
            ireturn
         8: .line 315
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 1 // int ch
        end local 0 // sun.text.normalizer.Trie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lsun/text/normalizer/Trie;
            0    9     1    ch  I
    MethodParameters:
      Name  Flags
      ch    

  protected void unserialize(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.text.normalizer.Trie this
        start local 1 // java.io.InputStream inputStream
         0: .line 328
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.text.normalizer.Trie.m_dataOffset_:I
            newarray 5
            putfield sun.text.normalizer.Trie.m_index_:[C
         1: .line 329
            new java.io.DataInputStream
            dup
            aload 1 /* inputStream */
            invokespecial java.io.DataInputStream.<init>:(Ljava/io/InputStream;)V
            astore 2 /* input */
        start local 2 // java.io.DataInputStream input
         2: .line 330
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 331
      StackMap locals: java.io.DataInputStream int
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.normalizer.Trie.m_index_:[C
            iload 3 /* i */
            aload 2 /* input */
            invokevirtual java.io.DataInputStream.readChar:()C
            castore
         5: .line 330
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 0 /* this */
            getfield sun.text.normalizer.Trie.m_dataOffset_:I
            if_icmplt 4
        end local 3 // int i
         7: .line 333
            return
        end local 2 // java.io.DataInputStream input
        end local 1 // java.io.InputStream inputStream
        end local 0 // sun.text.normalizer.Trie this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lsun/text/normalizer/Trie;
            0    8     1  inputStream  Ljava/io/InputStream;
            2    8     2        input  Ljava/io/DataInputStream;
            3    7     3            i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      inputStream  

  protected final boolean isIntTrie();
    descriptor: ()Z
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.text.normalizer.Trie this
         0: .line 342
            aload 0 /* this */
            getfield sun.text.normalizer.Trie.m_options_:I
            sipush 256
            iand
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // sun.text.normalizer.Trie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/text/normalizer/Trie;

  protected final boolean isCharTrie();
    descriptor: ()Z
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.text.normalizer.Trie this
         0: .line 352
            aload 0 /* this */
            getfield sun.text.normalizer.Trie.m_options_:I
            sipush 256
            iand
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // sun.text.normalizer.Trie this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/text/normalizer/Trie;

  private final boolean checkHeader(int);
    descriptor: (I)Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.text.normalizer.Trie this
        start local 1 // int signature
         0: .line 421
            iload 1 /* signature */
            ldc 1416784229
            if_icmpeq 2
         1: .line 422
            iconst_0
            ireturn
         2: .line 425
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.text.normalizer.Trie.m_options_:I
            bipush 15
            iand
         3: .line 426
            iconst_5
         4: .line 425
            if_icmpne 10
         5: .line 427
            aload 0 /* this */
            getfield sun.text.normalizer.Trie.m_options_:I
            iconst_4
            ishr
         6: .line 428
            bipush 15
         7: .line 427
            iand
         8: .line 429
            iconst_2
         9: .line 427
            if_icmpeq 11
        10: .line 430
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        11: .line 432
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // int signature
        end local 0 // sun.text.normalizer.Trie this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lsun/text/normalizer/Trie;
            0   12     1  signature  I
    MethodParameters:
           Name  Flags
      signature  
}
SourceFile: "Trie.java"
NestMembers:
  sun.text.normalizer.Trie$DataManipulate
InnerClasses:
  public abstract DataManipulate = sun.text.normalizer.Trie$DataManipulate of sun.text.normalizer.Trie