final class javassist.bytecode.LongVector
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: javassist.bytecode.LongVector
  super_class: java.lang.Object
{
  static final int ASIZE;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 128

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

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

  private javassist.bytecode.ConstInfo[][] objects;
    descriptor: [[Ljavassist/bytecode/ConstInfo;
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javassist.bytecode.LongVector this
         0: .line 26
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 27
            aload 0 /* this */
            bipush 8
            anewarray javassist.bytecode.ConstInfo[]
            putfield javassist.bytecode.LongVector.objects:[[Ljavassist/bytecode/ConstInfo;
         2: .line 28
            aload 0 /* this */
            iconst_0
            putfield javassist.bytecode.LongVector.elements:I
         3: .line 29
            return
        end local 0 // javassist.bytecode.LongVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavassist/bytecode/LongVector;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // javassist.bytecode.LongVector this
        start local 1 // int initialSize
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 32
            iload 1 /* initialSize */
            bipush 7
            ishr
            bipush -8
            iand
            bipush 8
            iadd
            istore 2 /* vsize */
        start local 2 // int vsize
         2: .line 33
            aload 0 /* this */
            iload 2 /* vsize */
            anewarray javassist.bytecode.ConstInfo[]
            putfield javassist.bytecode.LongVector.objects:[[Ljavassist/bytecode/ConstInfo;
         3: .line 34
            aload 0 /* this */
            iconst_0
            putfield javassist.bytecode.LongVector.elements:I
         4: .line 35
            return
        end local 2 // int vsize
        end local 1 // int initialSize
        end local 0 // javassist.bytecode.LongVector this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Ljavassist/bytecode/LongVector;
            0    5     1  initialSize  I
            2    5     2        vsize  I
    MethodParameters:
             Name  Flags
      initialSize  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javassist.bytecode.LongVector this
         0: .line 37
            aload 0 /* this */
            getfield javassist.bytecode.LongVector.elements:I
            ireturn
        end local 0 // javassist.bytecode.LongVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavassist/bytecode/LongVector;

  public int capacity();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javassist.bytecode.LongVector this
         0: .line 39
            aload 0 /* this */
            getfield javassist.bytecode.LongVector.objects:[[Ljavassist/bytecode/ConstInfo;
            arraylength
            sipush 128
            imul
            ireturn
        end local 0 // javassist.bytecode.LongVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavassist/bytecode/LongVector;

  public javassist.bytecode.ConstInfo elementAt(int);
    descriptor: (I)Ljavassist/bytecode/ConstInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javassist.bytecode.LongVector this
        start local 1 // int i
         0: .line 42
            iload 1 /* i */
            iflt 1
            aload 0 /* this */
            getfield javassist.bytecode.LongVector.elements:I
            iload 1 /* i */
            if_icmpgt 2
         1: .line 43
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
         2: .line 45
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javassist.bytecode.LongVector.objects:[[Ljavassist/bytecode/ConstInfo;
            iload 1 /* i */
            bipush 7
            ishr
            aaload
            iload 1 /* i */
            bipush 127
            iand
            aaload
            areturn
        end local 1 // int i
        end local 0 // javassist.bytecode.LongVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavassist/bytecode/LongVector;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public void addElement(javassist.bytecode.ConstInfo);
    descriptor: (Ljavassist/bytecode/ConstInfo;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // javassist.bytecode.LongVector this
        start local 1 // javassist.bytecode.ConstInfo value
         0: .line 49
            aload 0 /* this */
            getfield javassist.bytecode.LongVector.elements:I
            bipush 7
            ishr
            istore 2 /* nth */
        start local 2 // int nth
         1: .line 50
            aload 0 /* this */
            getfield javassist.bytecode.LongVector.elements:I
            bipush 127
            iand
            istore 3 /* offset */
        start local 3 // int offset
         2: .line 51
            aload 0 /* this */
            getfield javassist.bytecode.LongVector.objects:[[Ljavassist/bytecode/ConstInfo;
            arraylength
            istore 4 /* len */
        start local 4 // int len
         3: .line 52
            iload 2 /* nth */
            iload 4 /* len */
            if_icmplt 7
         4: .line 53
            iload 4 /* len */
            bipush 8
            iadd
            anewarray javassist.bytecode.ConstInfo[]
            astore 5 /* newObj */
        start local 5 // javassist.bytecode.ConstInfo[][] newObj
         5: .line 54
            aload 0 /* this */
            getfield javassist.bytecode.LongVector.objects:[[Ljavassist/bytecode/ConstInfo;
            iconst_0
            aload 5 /* newObj */
            iconst_0
            iload 4 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 55
            aload 0 /* this */
            aload 5 /* newObj */
            putfield javassist.bytecode.LongVector.objects:[[Ljavassist/bytecode/ConstInfo;
        end local 5 // javassist.bytecode.ConstInfo[][] newObj
         7: .line 58
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield javassist.bytecode.LongVector.objects:[[Ljavassist/bytecode/ConstInfo;
            iload 2 /* nth */
            aaload
            ifnonnull 9
         8: .line 59
            aload 0 /* this */
            getfield javassist.bytecode.LongVector.objects:[[Ljavassist/bytecode/ConstInfo;
            iload 2 /* nth */
            sipush 128
            anewarray javassist.bytecode.ConstInfo
            aastore
         9: .line 61
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javassist.bytecode.LongVector.objects:[[Ljavassist/bytecode/ConstInfo;
            iload 2 /* nth */
            aaload
            iload 3 /* offset */
            aload 1 /* value */
            aastore
        10: .line 62
            aload 0 /* this */
            dup
            getfield javassist.bytecode.LongVector.elements:I
            iconst_1
            iadd
            putfield javassist.bytecode.LongVector.elements:I
        11: .line 63
            return
        end local 4 // int len
        end local 3 // int offset
        end local 2 // int nth
        end local 1 // javassist.bytecode.ConstInfo value
        end local 0 // javassist.bytecode.LongVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Ljavassist/bytecode/LongVector;
            0   12     1   value  Ljavassist/bytecode/ConstInfo;
            1   12     2     nth  I
            2   12     3  offset  I
            3   12     4     len  I
            5    7     5  newObj  [[Ljavassist/bytecode/ConstInfo;
    MethodParameters:
       Name  Flags
      value  
}
SourceFile: "LongVector.java"