public class sun.security.x509.GeneralSubtrees implements java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.security.x509.GeneralSubtrees
  super_class: java.lang.Object
{
  private final java.util.List<sun.security.x509.GeneralSubtree> trees;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lsun/security/x509/GeneralSubtree;>;

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

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

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

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.x509.GeneralSubtrees this
         0: .line 60
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield sun.security.x509.GeneralSubtrees.trees:Ljava/util/List;
         2: .line 62
            return
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/security/x509/GeneralSubtrees;

  private void <init>(sun.security.x509.GeneralSubtrees);
    descriptor: (Lsun/security/x509/GeneralSubtrees;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.security.x509.GeneralSubtrees this
        start local 1 // sun.security.x509.GeneralSubtrees source
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 65
            aload 0 /* this */
            new java.util.ArrayList
            dup
            aload 1 /* source */
            getfield sun.security.x509.GeneralSubtrees.trees:Ljava/util/List;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            putfield sun.security.x509.GeneralSubtrees.trees:Ljava/util/List;
         2: .line 66
            return
        end local 1 // sun.security.x509.GeneralSubtrees source
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lsun/security/x509/GeneralSubtrees;
            0    3     1  source  Lsun/security/x509/GeneralSubtrees;
    MethodParameters:
        Name  Flags
      source  

  public void <init>(sun.security.util.DerValue);
    descriptor: (Lsun/security/util/DerValue;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.security.x509.GeneralSubtrees this
        start local 1 // sun.security.util.DerValue val
         0: .line 74
            aload 0 /* this */
            invokespecial sun.security.x509.GeneralSubtrees.<init>:()V
         1: .line 75
            aload 1 /* val */
            getfield sun.security.util.DerValue.tag:B
            bipush 48
            if_icmpeq 6
         2: .line 76
            new java.io.IOException
            dup
            ldc "Invalid encoding of GeneralSubtrees."
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 79
      StackMap locals: sun.security.x509.GeneralSubtrees sun.security.util.DerValue
      StackMap stack:
            aload 1 /* val */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.getDerValue:()Lsun/security/util/DerValue;
            astore 2 /* opt */
        start local 2 // sun.security.util.DerValue opt
         4: .line 80
            new sun.security.x509.GeneralSubtree
            dup
            aload 2 /* opt */
            invokespecial sun.security.x509.GeneralSubtree.<init>:(Lsun/security/util/DerValue;)V
            astore 3 /* tree */
        start local 3 // sun.security.x509.GeneralSubtree tree
         5: .line 81
            aload 0 /* this */
            aload 3 /* tree */
            invokevirtual sun.security.x509.GeneralSubtrees.add:(Lsun/security/x509/GeneralSubtree;)V
        end local 3 // sun.security.x509.GeneralSubtree tree
        end local 2 // sun.security.util.DerValue opt
         6: .line 78
      StackMap locals:
      StackMap stack:
            aload 1 /* val */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.available:()I
            ifne 3
         7: .line 83
            return
        end local 1 // sun.security.util.DerValue val
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lsun/security/x509/GeneralSubtrees;
            0    8     1   val  Lsun/security/util/DerValue;
            4    6     2   opt  Lsun/security/util/DerValue;
            5    6     3  tree  Lsun/security/x509/GeneralSubtree;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      val   

  public sun.security.x509.GeneralSubtree get(int);
    descriptor: (I)Lsun/security/x509/GeneralSubtree;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.x509.GeneralSubtrees this
        start local 1 // int index
         0: .line 86
            aload 0 /* this */
            getfield sun.security.x509.GeneralSubtrees.trees:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast sun.security.x509.GeneralSubtree
            areturn
        end local 1 // int index
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lsun/security/x509/GeneralSubtrees;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public void remove(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.x509.GeneralSubtrees this
        start local 1 // int index
         0: .line 90
            aload 0 /* this */
            getfield sun.security.x509.GeneralSubtrees.trees:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            pop
         1: .line 91
            return
        end local 1 // int index
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lsun/security/x509/GeneralSubtrees;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public void add(sun.security.x509.GeneralSubtree);
    descriptor: (Lsun/security/x509/GeneralSubtree;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.x509.GeneralSubtrees this
        start local 1 // sun.security.x509.GeneralSubtree tree
         0: .line 94
            aload 1 /* tree */
            ifnonnull 2
         1: .line 95
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.x509.GeneralSubtrees.trees:Ljava/util/List;
            aload 1 /* tree */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 98
            return
        end local 1 // sun.security.x509.GeneralSubtree tree
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/security/x509/GeneralSubtrees;
            0    4     1  tree  Lsun/security/x509/GeneralSubtree;
    MethodParameters:
      Name  Flags
      tree  

  public boolean contains(sun.security.x509.GeneralSubtree);
    descriptor: (Lsun/security/x509/GeneralSubtree;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.x509.GeneralSubtrees this
        start local 1 // sun.security.x509.GeneralSubtree tree
         0: .line 101
            aload 1 /* tree */
            ifnonnull 2
         1: .line 102
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 104
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.x509.GeneralSubtrees.trees:Ljava/util/List;
            aload 1 /* tree */
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // sun.security.x509.GeneralSubtree tree
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/security/x509/GeneralSubtrees;
            0    3     1  tree  Lsun/security/x509/GeneralSubtree;
    MethodParameters:
      Name  Flags
      tree  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.x509.GeneralSubtrees this
         0: .line 108
            aload 0 /* this */
            getfield sun.security.x509.GeneralSubtrees.trees:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/x509/GeneralSubtrees;

  public java.util.Iterator<sun.security.x509.GeneralSubtree> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.x509.GeneralSubtrees this
         0: .line 112
            aload 0 /* this */
            getfield sun.security.x509.GeneralSubtrees.trees:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/x509/GeneralSubtrees;
    Signature: ()Ljava/util/Iterator<Lsun/security/x509/GeneralSubtree;>;

  public java.util.List<sun.security.x509.GeneralSubtree> trees();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.x509.GeneralSubtrees this
         0: .line 116
            aload 0 /* this */
            getfield sun.security.x509.GeneralSubtrees.trees:Ljava/util/List;
            areturn
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/x509/GeneralSubtrees;
    Signature: ()Ljava/util/List<Lsun/security/x509/GeneralSubtree;>;

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.x509.GeneralSubtrees this
         0: .line 120
            new sun.security.x509.GeneralSubtrees
            dup
            aload 0 /* this */
            invokespecial sun.security.x509.GeneralSubtrees.<init>:(Lsun/security/x509/GeneralSubtrees;)V
            areturn
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/x509/GeneralSubtrees;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.x509.GeneralSubtrees this
         0: .line 127
            new java.lang.StringBuilder
            dup
            ldc "   GeneralSubtrees:\n"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield sun.security.x509.GeneralSubtrees.trees:Ljava/util/List;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            bipush 10
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/x509/GeneralSubtrees;

  public void encode(sun.security.util.DerOutputStream);
    descriptor: (Lsun/security/util/DerOutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // sun.security.x509.GeneralSubtrees this
        start local 1 // sun.security.util.DerOutputStream out
         0: .line 136
            new sun.security.util.DerOutputStream
            dup
            invokespecial sun.security.util.DerOutputStream.<init>:()V
            astore 2 /* seq */
        start local 2 // sun.security.util.DerOutputStream seq
         1: .line 138
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: aload 0 /* this */
            invokevirtual sun.security.x509.GeneralSubtrees.size:()I
            istore 4 /* n */
        start local 4 // int n
         3: goto 6
         4: .line 139
      StackMap locals: sun.security.util.DerOutputStream int int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual sun.security.x509.GeneralSubtrees.get:(I)Lsun/security/x509/GeneralSubtree;
            aload 2 /* seq */
            invokevirtual sun.security.x509.GeneralSubtree.encode:(Lsun/security/util/DerOutputStream;)V
         5: .line 138
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            iload 4 /* n */
            if_icmplt 4
        end local 4 // int n
        end local 3 // int i
         7: .line 141
            aload 1 /* out */
            bipush 48
            aload 2 /* seq */
            invokevirtual sun.security.util.DerOutputStream.write:(BLsun/security/util/DerOutputStream;)V
         8: .line 142
            return
        end local 2 // sun.security.util.DerOutputStream seq
        end local 1 // sun.security.util.DerOutputStream out
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lsun/security/x509/GeneralSubtrees;
            0    9     1   out  Lsun/security/util/DerOutputStream;
            1    9     2   seq  Lsun/security/util/DerOutputStream;
            2    7     3     i  I
            3    7     4     n  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.security.x509.GeneralSubtrees this
        start local 1 // java.lang.Object obj
         0: .line 152
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 153
            iconst_1
            ireturn
         2: .line 155
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof sun.security.x509.GeneralSubtrees
            ifne 4
         3: .line 156
            iconst_0
            ireturn
         4: .line 158
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast sun.security.x509.GeneralSubtrees
            astore 2 /* other */
        start local 2 // sun.security.x509.GeneralSubtrees other
         5: .line 159
            aload 0 /* this */
            getfield sun.security.x509.GeneralSubtrees.trees:Ljava/util/List;
            aload 2 /* other */
            getfield sun.security.x509.GeneralSubtrees.trees:Ljava/util/List;
            invokeinterface java.util.List.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // sun.security.x509.GeneralSubtrees other
        end local 1 // java.lang.Object obj
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lsun/security/x509/GeneralSubtrees;
            0    6     1    obj  Ljava/lang/Object;
            5    6     2  other  Lsun/security/x509/GeneralSubtrees;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.x509.GeneralSubtrees this
         0: .line 163
            aload 0 /* this */
            getfield sun.security.x509.GeneralSubtrees.trees:Ljava/util/List;
            invokeinterface java.util.List.hashCode:()I
            ireturn
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/x509/GeneralSubtrees;

  private sun.security.x509.GeneralNameInterface getGeneralNameInterface(int);
    descriptor: (I)Lsun/security/x509/GeneralNameInterface;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.x509.GeneralSubtrees this
        start local 1 // int ndx
         0: .line 173
            aload 0 /* this */
            iload 1 /* ndx */
            invokevirtual sun.security.x509.GeneralSubtrees.get:(I)Lsun/security/x509/GeneralSubtree;
            invokestatic sun.security.x509.GeneralSubtrees.getGeneralNameInterface:(Lsun/security/x509/GeneralSubtree;)Lsun/security/x509/GeneralNameInterface;
            areturn
        end local 1 // int ndx
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/x509/GeneralSubtrees;
            0    1     1   ndx  I
    MethodParameters:
      Name  Flags
      ndx   

  private static sun.security.x509.GeneralNameInterface getGeneralNameInterface(sun.security.x509.GeneralSubtree);
    descriptor: (Lsun/security/x509/GeneralSubtree;)Lsun/security/x509/GeneralNameInterface;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=3, args_size=1
        start local 0 // sun.security.x509.GeneralSubtree gs
         0: .line 177
            aload 0 /* gs */
            invokevirtual sun.security.x509.GeneralSubtree.getName:()Lsun/security/x509/GeneralName;
            astore 1 /* gn */
        start local 1 // sun.security.x509.GeneralName gn
         1: .line 178
            aload 1 /* gn */
            invokevirtual sun.security.x509.GeneralName.getName:()Lsun/security/x509/GeneralNameInterface;
            astore 2 /* gni */
        start local 2 // sun.security.x509.GeneralNameInterface gni
         2: .line 179
            aload 2 /* gni */
            areturn
        end local 2 // sun.security.x509.GeneralNameInterface gni
        end local 1 // sun.security.x509.GeneralName gn
        end local 0 // sun.security.x509.GeneralSubtree gs
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0    gs  Lsun/security/x509/GeneralSubtree;
            1    3     1    gn  Lsun/security/x509/GeneralName;
            2    3     2   gni  Lsun/security/x509/GeneralNameInterface;
    MethodParameters:
      Name  Flags
      gs    

  private void minimize();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // sun.security.x509.GeneralSubtrees this
         0: .line 192
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 24
         2: .line 193
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* i */
            invokevirtual sun.security.x509.GeneralSubtrees.getGeneralNameInterface:(I)Lsun/security/x509/GeneralNameInterface;
            astore 2 /* current */
        start local 2 // sun.security.x509.GeneralNameInterface current
         3: .line 194
            iconst_0
            istore 3 /* remove1 */
        start local 3 // boolean remove1
         4: .line 197
            iload 1 /* i */
            iconst_1
            iadd
            istore 4 /* j */
        start local 4 // int j
         5: goto 19
         6: .line 198
      StackMap locals: sun.security.x509.GeneralNameInterface int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* j */
            invokevirtual sun.security.x509.GeneralSubtrees.getGeneralNameInterface:(I)Lsun/security/x509/GeneralNameInterface;
            astore 5 /* subsequent */
        start local 5 // sun.security.x509.GeneralNameInterface subsequent
         7: .line 199
            aload 2 /* current */
            aload 5 /* subsequent */
            invokeinterface sun.security.x509.GeneralNameInterface.constrains:(Lsun/security/x509/GeneralNameInterface;)I
            tableswitch { // -1 - 3
                   -1: 8
                    0: 9
                    1: 11
                    2: 14
                    3: 16
              default: 17
          }
         8: .line 202
      StackMap locals: sun.security.x509.GeneralNameInterface
      StackMap stack:
            goto 18
         9: .line 205
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 3 /* remove1 */
        10: .line 206
            goto 20
        11: .line 210
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* j */
            invokevirtual sun.security.x509.GeneralSubtrees.remove:(I)V
        12: .line 211
            iinc 4 /* j */ -1
        13: .line 212
            goto 18
        14: .line 216
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 3 /* remove1 */
        15: .line 217
            goto 20
        16: .line 220
      StackMap locals:
      StackMap stack:
            goto 18
        17: .line 222
      StackMap locals:
      StackMap stack:
            goto 20
        end local 5 // sun.security.x509.GeneralNameInterface subsequent
        18: .line 197
      StackMap locals:
      StackMap stack:
            iinc 4 /* j */ 1
      StackMap locals:
      StackMap stack:
        19: iload 4 /* j */
            aload 0 /* this */
            invokevirtual sun.security.x509.GeneralSubtrees.size:()I
            if_icmplt 6
        end local 4 // int j
        20: .line 225
      StackMap locals:
      StackMap stack:
            iload 3 /* remove1 */
            ifeq 23
        21: .line 226
            aload 0 /* this */
            iload 1 /* i */
            invokevirtual sun.security.x509.GeneralSubtrees.remove:(I)V
        22: .line 227
            iinc 1 /* i */ -1
        end local 3 // boolean remove1
        end local 2 // sun.security.x509.GeneralNameInterface current
        23: .line 192
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        24: iload 1 /* i */
            aload 0 /* this */
            invokevirtual sun.security.x509.GeneralSubtrees.size:()I
            iconst_1
            isub
            if_icmplt 2
        end local 1 // int i
        25: .line 231
            return
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   26     0        this  Lsun/security/x509/GeneralSubtrees;
            1   25     1           i  I
            3   23     2     current  Lsun/security/x509/GeneralNameInterface;
            4   23     3     remove1  Z
            5   20     4           j  I
            7   18     5  subsequent  Lsun/security/x509/GeneralNameInterface;

  private sun.security.x509.GeneralSubtree createWidestSubtree(sun.security.x509.GeneralNameInterface);
    descriptor: (Lsun/security/x509/GeneralNameInterface;)Lsun/security/x509/GeneralSubtree;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // sun.security.x509.GeneralSubtrees this
        start local 1 // sun.security.x509.GeneralNameInterface name
         0: .line 244
            aload 1 /* name */
            invokeinterface sun.security.x509.GeneralNameInterface.getType:()I
            tableswitch { // 0 - 8
                    0: 1
                    1: 4
                    2: 6
                    3: 8
                    4: 10
                    5: 12
                    6: 14
                    7: 16
                    8: 18
              default: 22
          }
         1: .line 248
      StackMap locals:
      StackMap stack:
            aload 1 /* name */
            checkcast sun.security.x509.OtherName
            invokevirtual sun.security.x509.OtherName.getOID:()Lsun/security/util/ObjectIdentifier;
            astore 3 /* otherOID */
        start local 3 // sun.security.util.ObjectIdentifier otherOID
         2: .line 249
            new sun.security.x509.GeneralName
            dup
            new sun.security.x509.OtherName
            dup
            aload 3 /* otherOID */
            aconst_null
            invokespecial sun.security.x509.OtherName.<init>:(Lsun/security/util/ObjectIdentifier;[B)V
            invokespecial sun.security.x509.GeneralName.<init>:(Lsun/security/x509/GeneralNameInterface;)V
            astore 2 /* newName */
        start local 2 // sun.security.x509.GeneralName newName
         3: .line 250
            goto 25
        end local 3 // sun.security.util.ObjectIdentifier otherOID
        end local 2 // sun.security.x509.GeneralName newName
         4: .line 252
      StackMap locals:
      StackMap stack:
            new sun.security.x509.GeneralName
            dup
            new sun.security.x509.RFC822Name
            dup
            ldc ""
            invokespecial sun.security.x509.RFC822Name.<init>:(Ljava/lang/String;)V
            invokespecial sun.security.x509.GeneralName.<init>:(Lsun/security/x509/GeneralNameInterface;)V
            astore 2 /* newName */
        start local 2 // sun.security.x509.GeneralName newName
         5: .line 253
            goto 25
        end local 2 // sun.security.x509.GeneralName newName
         6: .line 255
      StackMap locals:
      StackMap stack:
            new sun.security.x509.GeneralName
            dup
            new sun.security.x509.DNSName
            dup
            ldc ""
            invokespecial sun.security.x509.DNSName.<init>:(Ljava/lang/String;)V
            invokespecial sun.security.x509.GeneralName.<init>:(Lsun/security/x509/GeneralNameInterface;)V
            astore 2 /* newName */
        start local 2 // sun.security.x509.GeneralName newName
         7: .line 256
            goto 25
        end local 2 // sun.security.x509.GeneralName newName
         8: .line 258
      StackMap locals:
      StackMap stack:
            new sun.security.x509.GeneralName
            dup
            new sun.security.x509.X400Address
            dup
            aconst_null
            invokespecial sun.security.x509.X400Address.<init>:([B)V
            invokespecial sun.security.x509.GeneralName.<init>:(Lsun/security/x509/GeneralNameInterface;)V
            astore 2 /* newName */
        start local 2 // sun.security.x509.GeneralName newName
         9: .line 259
            goto 25
        end local 2 // sun.security.x509.GeneralName newName
        10: .line 261
      StackMap locals:
      StackMap stack:
            new sun.security.x509.GeneralName
            dup
            new sun.security.x509.X500Name
            dup
            ldc ""
            invokespecial sun.security.x509.X500Name.<init>:(Ljava/lang/String;)V
            invokespecial sun.security.x509.GeneralName.<init>:(Lsun/security/x509/GeneralNameInterface;)V
            astore 2 /* newName */
        start local 2 // sun.security.x509.GeneralName newName
        11: .line 262
            goto 25
        end local 2 // sun.security.x509.GeneralName newName
        12: .line 264
      StackMap locals:
      StackMap stack:
            new sun.security.x509.GeneralName
            dup
            new sun.security.x509.EDIPartyName
            dup
            ldc ""
            invokespecial sun.security.x509.EDIPartyName.<init>:(Ljava/lang/String;)V
            invokespecial sun.security.x509.GeneralName.<init>:(Lsun/security/x509/GeneralNameInterface;)V
            astore 2 /* newName */
        start local 2 // sun.security.x509.GeneralName newName
        13: .line 265
            goto 25
        end local 2 // sun.security.x509.GeneralName newName
        14: .line 267
      StackMap locals:
      StackMap stack:
            new sun.security.x509.GeneralName
            dup
            new sun.security.x509.URIName
            dup
            ldc ""
            invokespecial sun.security.x509.URIName.<init>:(Ljava/lang/String;)V
            invokespecial sun.security.x509.GeneralName.<init>:(Lsun/security/x509/GeneralNameInterface;)V
            astore 2 /* newName */
        start local 2 // sun.security.x509.GeneralName newName
        15: .line 268
            goto 25
        end local 2 // sun.security.x509.GeneralName newName
        16: .line 270
      StackMap locals:
      StackMap stack:
            new sun.security.x509.GeneralName
            dup
            new sun.security.x509.IPAddressName
            dup
            aconst_null
            invokespecial sun.security.x509.IPAddressName.<init>:([B)V
            invokespecial sun.security.x509.GeneralName.<init>:(Lsun/security/x509/GeneralNameInterface;)V
            astore 2 /* newName */
        start local 2 // sun.security.x509.GeneralName newName
        17: .line 271
            goto 25
        end local 2 // sun.security.x509.GeneralName newName
        18: .line 273
      StackMap locals:
      StackMap stack:
            new sun.security.x509.GeneralName
            dup
        19: .line 274
            new sun.security.x509.OIDName
            dup
            new sun.security.util.ObjectIdentifier
            dup
            aconst_null
            invokespecial sun.security.util.ObjectIdentifier.<init>:([I)V
            invokespecial sun.security.x509.OIDName.<init>:(Lsun/security/util/ObjectIdentifier;)V
        20: .line 273
            invokespecial sun.security.x509.GeneralName.<init>:(Lsun/security/x509/GeneralNameInterface;)V
            astore 2 /* newName */
        start local 2 // sun.security.x509.GeneralName newName
        21: .line 275
            goto 25
        end local 2 // sun.security.x509.GeneralName newName
        22: .line 277
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
        23: .line 278
            new java.lang.StringBuilder
            dup
            ldc "Unsupported GeneralNameInterface type: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* name */
            invokeinterface sun.security.x509.GeneralNameInterface.getType:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        24: .line 277
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        start local 2 // sun.security.x509.GeneralName newName
        25: .line 280
      StackMap locals: sun.security.x509.GeneralName
      StackMap stack:
            new sun.security.x509.GeneralSubtree
            dup
            aload 2 /* newName */
            iconst_0
            iconst_m1
            invokespecial sun.security.x509.GeneralSubtree.<init>:(Lsun/security/x509/GeneralName;II)V
        26: areturn
        end local 2 // sun.security.x509.GeneralName newName
        27: .line 281
      StackMap locals: sun.security.x509.GeneralSubtrees sun.security.x509.GeneralNameInterface
      StackMap stack: java.io.IOException
            astore 2 /* e */
        start local 2 // java.io.IOException e
        28: .line 282
            new java.lang.RuntimeException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unexpected error: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* e */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 2 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException e
        end local 1 // sun.security.x509.GeneralNameInterface name
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   29     0      this  Lsun/security/x509/GeneralSubtrees;
            0   29     1      name  Lsun/security/x509/GeneralNameInterface;
            3    4     2   newName  Lsun/security/x509/GeneralName;
            5    6     2   newName  Lsun/security/x509/GeneralName;
            7    8     2   newName  Lsun/security/x509/GeneralName;
            9   10     2   newName  Lsun/security/x509/GeneralName;
           11   12     2   newName  Lsun/security/x509/GeneralName;
           13   14     2   newName  Lsun/security/x509/GeneralName;
           15   16     2   newName  Lsun/security/x509/GeneralName;
           17   18     2   newName  Lsun/security/x509/GeneralName;
           21   22     2   newName  Lsun/security/x509/GeneralName;
           25   27     2   newName  Lsun/security/x509/GeneralName;
            2    4     3  otherOID  Lsun/security/util/ObjectIdentifier;
           28   29     2         e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0    26      27  Class java.io.IOException
    MethodParameters:
      Name  Flags
      name  

  public sun.security.x509.GeneralSubtrees intersect(sun.security.x509.GeneralSubtrees);
    descriptor: (Lsun/security/x509/GeneralSubtrees;)Lsun/security/x509/GeneralSubtrees;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=13, args_size=2
        start local 0 // sun.security.x509.GeneralSubtrees this
        start local 1 // sun.security.x509.GeneralSubtrees other
         0: .line 320
            aload 1 /* other */
            ifnonnull 2
         1: .line 321
            new java.lang.NullPointerException
            dup
            ldc "other GeneralSubtrees must not be null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 324
      StackMap locals:
      StackMap stack:
            new sun.security.x509.GeneralSubtrees
            dup
            invokespecial sun.security.x509.GeneralSubtrees.<init>:()V
            astore 2 /* newThis */
        start local 2 // sun.security.x509.GeneralSubtrees newThis
         3: .line 325
            aconst_null
            astore 3 /* newExcluded */
        start local 3 // sun.security.x509.GeneralSubtrees newExcluded
         4: .line 329
            aload 0 /* this */
            invokevirtual sun.security.x509.GeneralSubtrees.size:()I
            ifne 7
         5: .line 330
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual sun.security.x509.GeneralSubtrees.union:(Lsun/security/x509/GeneralSubtrees;)V
         6: .line 331
            aconst_null
            areturn
         7: .line 337
      StackMap locals: sun.security.x509.GeneralSubtrees sun.security.x509.GeneralSubtrees
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.security.x509.GeneralSubtrees.minimize:()V
         8: .line 338
            aload 1 /* other */
            invokevirtual sun.security.x509.GeneralSubtrees.minimize:()V
         9: .line 348
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        10: goto 61
        11: .line 349
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual sun.security.x509.GeneralSubtrees.getGeneralNameInterface:(I)Lsun/security/x509/GeneralNameInterface;
            astore 5 /* thisEntry */
        start local 5 // sun.security.x509.GeneralNameInterface thisEntry
        12: .line 357
            iconst_0
            istore 6 /* sameType */
        start local 6 // boolean sameType
        13: .line 358
            iconst_0
            istore 7 /* j */
        start local 7 // int j
        14: goto 29
        15: .line 359
      StackMap locals: sun.security.x509.GeneralNameInterface int int
      StackMap stack:
            aload 1 /* other */
            iload 7 /* j */
            invokevirtual sun.security.x509.GeneralSubtrees.get:(I)Lsun/security/x509/GeneralSubtree;
            astore 8 /* otherEntryGS */
        start local 8 // sun.security.x509.GeneralSubtree otherEntryGS
        16: .line 361
            aload 8 /* otherEntryGS */
            invokestatic sun.security.x509.GeneralSubtrees.getGeneralNameInterface:(Lsun/security/x509/GeneralSubtree;)Lsun/security/x509/GeneralNameInterface;
        17: .line 360
            astore 9 /* otherEntry */
        start local 9 // sun.security.x509.GeneralNameInterface otherEntry
        18: .line 362
            aload 5 /* thisEntry */
            aload 9 /* otherEntry */
            invokeinterface sun.security.x509.GeneralNameInterface.constrains:(Lsun/security/x509/GeneralNameInterface;)I
            tableswitch { // -1 - 3
                   -1: 28
                    0: 26
                    1: 19
                    2: 26
                    3: 24
              default: 28
          }
        19: .line 364
      StackMap locals: sun.security.x509.GeneralSubtree sun.security.x509.GeneralNameInterface
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual sun.security.x509.GeneralSubtrees.remove:(I)V
        20: .line 365
            iinc 4 /* i */ -1
        21: .line 366
            aload 2 /* newThis */
            aload 8 /* otherEntryGS */
            invokevirtual sun.security.x509.GeneralSubtrees.add:(Lsun/security/x509/GeneralSubtree;)V
        22: .line 367
            iconst_0
            istore 6 /* sameType */
        23: .line 368
            goto 30
        24: .line 370
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 6 /* sameType */
        25: .line 371
            goto 28
        26: .line 374
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 6 /* sameType */
        27: .line 375
            goto 30
        end local 9 // sun.security.x509.GeneralNameInterface otherEntry
        end local 8 // sun.security.x509.GeneralSubtree otherEntryGS
        28: .line 358
      StackMap locals:
      StackMap stack:
            iinc 7 /* j */ 1
      StackMap locals:
      StackMap stack:
        29: iload 7 /* j */
            aload 1 /* other */
            invokevirtual sun.security.x509.GeneralSubtrees.size:()I
            if_icmplt 15
        end local 7 // int j
        30: .line 387
      StackMap locals:
      StackMap stack:
            iload 6 /* sameType */
            ifeq 60
        31: .line 393
            iconst_0
            istore 7 /* intersection */
        start local 7 // boolean intersection
        32: .line 394
            iconst_0
            istore 8 /* j */
        start local 8 // int j
        33: goto 50
        34: .line 395
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 8 /* j */
            invokevirtual sun.security.x509.GeneralSubtrees.getGeneralNameInterface:(I)Lsun/security/x509/GeneralNameInterface;
            astore 9 /* thisAltEntry */
        start local 9 // sun.security.x509.GeneralNameInterface thisAltEntry
        35: .line 397
            aload 9 /* thisAltEntry */
            invokeinterface sun.security.x509.GeneralNameInterface.getType:()I
            aload 5 /* thisEntry */
            invokeinterface sun.security.x509.GeneralNameInterface.getType:()I
            if_icmpne 49
        36: .line 398
            iconst_0
            istore 10 /* k */
        start local 10 // int k
        37: goto 48
        38: .line 400
      StackMap locals: sun.security.x509.GeneralNameInterface int
      StackMap stack:
            aload 1 /* other */
            iload 10 /* k */
            invokevirtual sun.security.x509.GeneralSubtrees.getGeneralNameInterface:(I)Lsun/security/x509/GeneralNameInterface;
        39: .line 399
            astore 11 /* othAltEntry */
        start local 11 // sun.security.x509.GeneralNameInterface othAltEntry
        40: .line 403
            aload 9 /* thisAltEntry */
            aload 11 /* othAltEntry */
            invokeinterface sun.security.x509.GeneralNameInterface.constrains:(Lsun/security/x509/GeneralNameInterface;)I
        41: .line 402
            istore 12 /* constraintType */
        start local 12 // int constraintType
        42: .line 404
            iload 12 /* constraintType */
            ifeq 45
        43: .line 405
            iload 12 /* constraintType */
            iconst_2
            if_icmpeq 45
        44: .line 406
            iload 12 /* constraintType */
            iconst_1
            if_icmpne 47
        45: .line 407
      StackMap locals: sun.security.x509.GeneralNameInterface int
      StackMap stack:
            iconst_1
            istore 7 /* intersection */
        46: .line 408
            goto 49
        end local 12 // int constraintType
        end local 11 // sun.security.x509.GeneralNameInterface othAltEntry
        47: .line 398
      StackMap locals:
      StackMap stack:
            iinc 10 /* k */ 1
      StackMap locals:
      StackMap stack:
        48: iload 10 /* k */
            aload 1 /* other */
            invokevirtual sun.security.x509.GeneralSubtrees.size:()I
            if_icmplt 38
        end local 10 // int k
        end local 9 // sun.security.x509.GeneralNameInterface thisAltEntry
        49: .line 394
      StackMap locals:
      StackMap stack:
            iinc 8 /* j */ 1
      StackMap locals:
      StackMap stack:
        50: iload 8 /* j */
            aload 0 /* this */
            invokevirtual sun.security.x509.GeneralSubtrees.size:()I
            if_icmplt 34
        end local 8 // int j
        51: .line 413
            iload 7 /* intersection */
            ifne 58
        52: .line 414
            aload 3 /* newExcluded */
            ifnonnull 54
        53: .line 415
            new sun.security.x509.GeneralSubtrees
            dup
            invokespecial sun.security.x509.GeneralSubtrees.<init>:()V
            astore 3 /* newExcluded */
        54: .line 418
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 5 /* thisEntry */
            invokevirtual sun.security.x509.GeneralSubtrees.createWidestSubtree:(Lsun/security/x509/GeneralNameInterface;)Lsun/security/x509/GeneralSubtree;
        55: .line 417
            astore 8 /* widestSubtree */
        start local 8 // sun.security.x509.GeneralSubtree widestSubtree
        56: .line 419
            aload 3 /* newExcluded */
            aload 8 /* widestSubtree */
            invokevirtual sun.security.x509.GeneralSubtrees.contains:(Lsun/security/x509/GeneralSubtree;)Z
            ifne 58
        57: .line 420
            aload 3 /* newExcluded */
            aload 8 /* widestSubtree */
            invokevirtual sun.security.x509.GeneralSubtrees.add:(Lsun/security/x509/GeneralSubtree;)V
        end local 8 // sun.security.x509.GeneralSubtree widestSubtree
        58: .line 425
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual sun.security.x509.GeneralSubtrees.remove:(I)V
        59: .line 426
            iinc 4 /* i */ -1
        end local 7 // boolean intersection
        end local 6 // boolean sameType
        end local 5 // sun.security.x509.GeneralNameInterface thisEntry
        60: .line 348
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        61: iload 4 /* i */
            aload 0 /* this */
            invokevirtual sun.security.x509.GeneralSubtrees.size:()I
            if_icmplt 11
        end local 4 // int i
        62: .line 431
            aload 2 /* newThis */
            invokevirtual sun.security.x509.GeneralSubtrees.size:()I
            ifle 64
        63: .line 432
            aload 0 /* this */
            aload 2 /* newThis */
            invokevirtual sun.security.x509.GeneralSubtrees.union:(Lsun/security/x509/GeneralSubtrees;)V
        64: .line 437
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        65: goto 82
        66: .line 438
      StackMap locals: int
      StackMap stack:
            aload 1 /* other */
            iload 4 /* i */
            invokevirtual sun.security.x509.GeneralSubtrees.get:(I)Lsun/security/x509/GeneralSubtree;
            astore 5 /* otherEntryGS */
        start local 5 // sun.security.x509.GeneralSubtree otherEntryGS
        67: .line 439
            aload 5 /* otherEntryGS */
            invokestatic sun.security.x509.GeneralSubtrees.getGeneralNameInterface:(Lsun/security/x509/GeneralSubtree;)Lsun/security/x509/GeneralNameInterface;
            astore 6 /* otherEntry */
        start local 6 // sun.security.x509.GeneralNameInterface otherEntry
        68: .line 440
            iconst_0
            istore 7 /* diffType */
        start local 7 // boolean diffType
        69: .line 441
            iconst_0
            istore 8 /* j */
        start local 8 // int j
        70: goto 78
        71: .line 442
      StackMap locals: sun.security.x509.GeneralSubtrees sun.security.x509.GeneralSubtrees sun.security.x509.GeneralSubtrees sun.security.x509.GeneralSubtrees int sun.security.x509.GeneralSubtree sun.security.x509.GeneralNameInterface int int
      StackMap stack:
            aload 0 /* this */
            iload 8 /* j */
            invokevirtual sun.security.x509.GeneralSubtrees.getGeneralNameInterface:(I)Lsun/security/x509/GeneralNameInterface;
            astore 9 /* thisEntry */
        start local 9 // sun.security.x509.GeneralNameInterface thisEntry
        72: .line 443
            aload 9 /* thisEntry */
            aload 6 /* otherEntry */
            invokeinterface sun.security.x509.GeneralNameInterface.constrains:(Lsun/security/x509/GeneralNameInterface;)I
            tableswitch { // -1 - 3
                   -1: 73
                    0: 75
                    1: 75
                    2: 75
                    3: 75
              default: 77
          }
        73: .line 445
      StackMap locals: sun.security.x509.GeneralNameInterface
      StackMap stack:
            iconst_1
            istore 7 /* diffType */
        74: .line 448
            goto 77
        75: .line 453
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 7 /* diffType */
        76: .line 456
            goto 79
        end local 9 // sun.security.x509.GeneralNameInterface thisEntry
        77: .line 441
      StackMap locals:
      StackMap stack:
            iinc 8 /* j */ 1
      StackMap locals:
      StackMap stack:
        78: iload 8 /* j */
            aload 0 /* this */
            invokevirtual sun.security.x509.GeneralSubtrees.size:()I
            if_icmplt 71
        end local 8 // int j
        79: .line 462
      StackMap locals:
      StackMap stack:
            iload 7 /* diffType */
            ifeq 81
        80: .line 463
            aload 0 /* this */
            aload 5 /* otherEntryGS */
            invokevirtual sun.security.x509.GeneralSubtrees.add:(Lsun/security/x509/GeneralSubtree;)V
        end local 7 // boolean diffType
        end local 6 // sun.security.x509.GeneralNameInterface otherEntry
        end local 5 // sun.security.x509.GeneralSubtree otherEntryGS
        81: .line 437
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        82: iload 4 /* i */
            aload 1 /* other */
            invokevirtual sun.security.x509.GeneralSubtrees.size:()I
            if_icmplt 66
        end local 4 // int i
        83: .line 468
            aload 3 /* newExcluded */
            areturn
        end local 3 // sun.security.x509.GeneralSubtrees newExcluded
        end local 2 // sun.security.x509.GeneralSubtrees newThis
        end local 1 // sun.security.x509.GeneralSubtrees other
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   84     0            this  Lsun/security/x509/GeneralSubtrees;
            0   84     1           other  Lsun/security/x509/GeneralSubtrees;
            3   84     2         newThis  Lsun/security/x509/GeneralSubtrees;
            4   84     3     newExcluded  Lsun/security/x509/GeneralSubtrees;
           10   62     4               i  I
           12   60     5       thisEntry  Lsun/security/x509/GeneralNameInterface;
           13   60     6        sameType  Z
           14   30     7               j  I
           16   28     8    otherEntryGS  Lsun/security/x509/GeneralSubtree;
           18   28     9      otherEntry  Lsun/security/x509/GeneralNameInterface;
           32   60     7    intersection  Z
           33   51     8               j  I
           35   49     9    thisAltEntry  Lsun/security/x509/GeneralNameInterface;
           37   49    10               k  I
           40   47    11     othAltEntry  Lsun/security/x509/GeneralNameInterface;
           42   47    12  constraintType  I
           56   58     8   widestSubtree  Lsun/security/x509/GeneralSubtree;
           65   83     4               i  I
           67   81     5    otherEntryGS  Lsun/security/x509/GeneralSubtree;
           68   81     6      otherEntry  Lsun/security/x509/GeneralNameInterface;
           69   81     7        diffType  Z
           70   79     8               j  I
           72   77     9       thisEntry  Lsun/security/x509/GeneralNameInterface;
    MethodParameters:
       Name  Flags
      other  

  public void union(sun.security.x509.GeneralSubtrees);
    descriptor: (Lsun/security/x509/GeneralSubtrees;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.security.x509.GeneralSubtrees this
        start local 1 // sun.security.x509.GeneralSubtrees other
         0: .line 477
            aload 1 /* other */
            ifnull 8
         1: .line 478
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: aload 1 /* other */
            invokevirtual sun.security.x509.GeneralSubtrees.size:()I
            istore 3 /* n */
        start local 3 // int n
         3: goto 6
         4: .line 479
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* other */
            iload 2 /* i */
            invokevirtual sun.security.x509.GeneralSubtrees.get:(I)Lsun/security/x509/GeneralSubtree;
            invokevirtual sun.security.x509.GeneralSubtrees.add:(Lsun/security/x509/GeneralSubtree;)V
         5: .line 478
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            iload 3 /* n */
            if_icmplt 4
        end local 3 // int n
        end local 2 // int i
         7: .line 482
            aload 0 /* this */
            invokevirtual sun.security.x509.GeneralSubtrees.minimize:()V
         8: .line 484
      StackMap locals:
      StackMap stack:
            return
        end local 1 // sun.security.x509.GeneralSubtrees other
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lsun/security/x509/GeneralSubtrees;
            0    9     1  other  Lsun/security/x509/GeneralSubtrees;
            2    7     2      i  I
            3    7     3      n  I
    MethodParameters:
       Name  Flags
      other  

  public void reduce(sun.security.x509.GeneralSubtrees);
    descriptor: (Lsun/security/x509/GeneralSubtrees;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // sun.security.x509.GeneralSubtrees this
        start local 1 // sun.security.x509.GeneralSubtrees excluded
         0: .line 495
            aload 1 /* excluded */
            ifnonnull 2
         1: .line 496
            return
         2: .line 498
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: aload 1 /* excluded */
            invokevirtual sun.security.x509.GeneralSubtrees.size:()I
            istore 3 /* n */
        start local 3 // int n
         4: goto 21
         5: .line 499
      StackMap locals: int int
      StackMap stack:
            aload 1 /* excluded */
            iload 2 /* i */
            invokevirtual sun.security.x509.GeneralSubtrees.getGeneralNameInterface:(I)Lsun/security/x509/GeneralNameInterface;
            astore 4 /* excludedName */
        start local 4 // sun.security.x509.GeneralNameInterface excludedName
         6: .line 500
            iconst_0
            istore 5 /* j */
        start local 5 // int j
         7: goto 19
         8: .line 501
      StackMap locals: sun.security.x509.GeneralNameInterface int
      StackMap stack:
            aload 0 /* this */
            iload 5 /* j */
            invokevirtual sun.security.x509.GeneralSubtrees.getGeneralNameInterface:(I)Lsun/security/x509/GeneralNameInterface;
            astore 6 /* permitted */
        start local 6 // sun.security.x509.GeneralNameInterface permitted
         9: .line 502
            aload 4 /* excludedName */
            aload 6 /* permitted */
            invokeinterface sun.security.x509.GeneralNameInterface.constrains:(Lsun/security/x509/GeneralNameInterface;)I
            tableswitch { // -1 - 3
                   -1: 10
                    0: 11
                    1: 14
                    2: 17
                    3: 18
              default: 18
          }
        10: .line 504
      StackMap locals: sun.security.x509.GeneralNameInterface
      StackMap stack:
            goto 18
        11: .line 506
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* j */
            invokevirtual sun.security.x509.GeneralSubtrees.remove:(I)V
        12: .line 507
            iinc 5 /* j */ -1
        13: .line 508
            goto 18
        14: .line 511
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* j */
            invokevirtual sun.security.x509.GeneralSubtrees.remove:(I)V
        15: .line 512
            iinc 5 /* j */ -1
        16: .line 513
            goto 18
        17: .line 516
      StackMap locals:
      StackMap stack:
            goto 18
        end local 6 // sun.security.x509.GeneralNameInterface permitted
        18: .line 500
      StackMap locals:
      StackMap stack:
            iinc 5 /* j */ 1
      StackMap locals:
      StackMap stack:
        19: iload 5 /* j */
            aload 0 /* this */
            invokevirtual sun.security.x509.GeneralSubtrees.size:()I
            if_icmplt 8
        end local 5 // int j
        end local 4 // sun.security.x509.GeneralNameInterface excludedName
        20: .line 498
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        21: iload 2 /* i */
            iload 3 /* n */
            if_icmplt 5
        end local 3 // int n
        end local 2 // int i
        22: .line 522
            return
        end local 1 // sun.security.x509.GeneralSubtrees excluded
        end local 0 // sun.security.x509.GeneralSubtrees this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   23     0          this  Lsun/security/x509/GeneralSubtrees;
            0   23     1      excluded  Lsun/security/x509/GeneralSubtrees;
            3   22     2             i  I
            4   22     3             n  I
            6   20     4  excludedName  Lsun/security/x509/GeneralNameInterface;
            7   20     5             j  I
            9   18     6     permitted  Lsun/security/x509/GeneralNameInterface;
    MethodParameters:
          Name  Flags
      excluded  
}
SourceFile: "GeneralSubtrees.java"