public class sun.jvm.hotspot.oops.CellTypeStateList
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.jvm.hotspot.oops.CellTypeStateList
  super_class: java.lang.Object
{
  private java.util.List list;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // sun.jvm.hotspot.oops.CellTypeStateList this
        start local 1 // int size
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 32
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iload 1 /* size */
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield sun.jvm.hotspot.oops.CellTypeStateList.list:Ljava/util/List;
         2: .line 33
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 6
         4: .line 34
      StackMap locals: sun.jvm.hotspot.oops.CellTypeStateList int int
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.oops.CellTypeStateList.list:Ljava/util/List;
            iload 2 /* i */
            invokestatic sun.jvm.hotspot.oops.CellTypeState.makeBottom:()Lsun/jvm/hotspot/oops/CellTypeState;
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         5: .line 33
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            iload 1 /* size */
            if_icmplt 4
        end local 2 // int i
         7: .line 36
            return
        end local 1 // int size
        end local 0 // sun.jvm.hotspot.oops.CellTypeStateList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lsun/jvm/hotspot/oops/CellTypeStateList;
            0    8     1  size  I
            3    7     2     i  I
    MethodParameters:
      Name  Flags
      size  

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

  public sun.jvm.hotspot.oops.CellTypeState get(int);
    descriptor: (I)Lsun/jvm/hotspot/oops/CellTypeState;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.oops.CellTypeStateList this
        start local 1 // int i
         0: .line 43
            aload 0 /* this */
            getfield sun.jvm.hotspot.oops.CellTypeStateList.list:Ljava/util/List;
            iload 1 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast sun.jvm.hotspot.oops.CellTypeState
            areturn
        end local 1 // int i
        end local 0 // sun.jvm.hotspot.oops.CellTypeStateList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/oops/CellTypeStateList;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public sun.jvm.hotspot.oops.CellTypeStateList subList(int, int);
    descriptor: (II)Lsun/jvm/hotspot/oops/CellTypeStateList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // sun.jvm.hotspot.oops.CellTypeStateList this
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 47
            new sun.jvm.hotspot.oops.CellTypeStateList
            dup
            aload 0 /* this */
            getfield sun.jvm.hotspot.oops.CellTypeStateList.list:Ljava/util/List;
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            invokeinterface java.util.List.subList:(II)Ljava/util/List;
            invokespecial sun.jvm.hotspot.oops.CellTypeStateList.<init>:(Ljava/util/List;)V
            areturn
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // sun.jvm.hotspot.oops.CellTypeStateList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lsun/jvm/hotspot/oops/CellTypeStateList;
            0    1     1  fromIndex  I
            0    1     2    toIndex  I
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    

  private void <init>(java.util.List);
    descriptor: (Ljava/util/List;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.oops.CellTypeStateList this
        start local 1 // java.util.List list
         0: .line 52
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 53
            aload 0 /* this */
            aload 1 /* list */
            putfield sun.jvm.hotspot.oops.CellTypeStateList.list:Ljava/util/List;
         2: .line 54
            return
        end local 1 // java.util.List list
        end local 0 // sun.jvm.hotspot.oops.CellTypeStateList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/jvm/hotspot/oops/CellTypeStateList;
            0    3     1  list  Ljava/util/List;
    MethodParameters:
      Name  Flags
      list  
}
SourceFile: "CellTypeStateList.java"