public class org.apache.xml.utils.ObjectStack extends org.apache.xml.utils.ObjectVector
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.xml.utils.ObjectStack
  super_class: org.apache.xml.utils.ObjectVector
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.ObjectStack this
         0: .line 43
            aload 0 /* this */
            invokespecial org.apache.xml.utils.ObjectVector.<init>:()V
         1: .line 44
            return
        end local 0 // org.apache.xml.utils.ObjectStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/xml/utils/ObjectStack;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.ObjectStack this
        start local 1 // int blocksize
         0: .line 53
            aload 0 /* this */
            iload 1 /* blocksize */
            invokespecial org.apache.xml.utils.ObjectVector.<init>:(I)V
         1: .line 54
            return
        end local 1 // int blocksize
        end local 0 // org.apache.xml.utils.ObjectStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/apache/xml/utils/ObjectStack;
            0    2     1  blocksize  I
    MethodParameters:
           Name  Flags
      blocksize  

  public void <init>(org.apache.xml.utils.ObjectStack);
    descriptor: (Lorg/apache/xml/utils/ObjectStack;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.ObjectStack this
        start local 1 // org.apache.xml.utils.ObjectStack v
         0: .line 63
            aload 0 /* this */
            aload 1 /* v */
            invokespecial org.apache.xml.utils.ObjectVector.<init>:(Lorg/apache/xml/utils/ObjectVector;)V
         1: .line 64
            return
        end local 1 // org.apache.xml.utils.ObjectStack v
        end local 0 // org.apache.xml.utils.ObjectStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/xml/utils/ObjectStack;
            0    2     1     v  Lorg/apache/xml/utils/ObjectStack;
    MethodParameters:
      Name  Flags
      v     

  public java.lang.Object push(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.apache.xml.utils.ObjectStack this
        start local 1 // java.lang.Object i
         0: .line 75
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_firstFree:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_mapSize:I
            if_icmplt 5
         1: .line 77
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.ObjectStack.m_mapSize:I
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_blocksize:I
            iadd
            putfield org.apache.xml.utils.ObjectStack.m_mapSize:I
         2: .line 79
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_mapSize:I
            anewarray java.lang.Object
            astore 2 /* newMap */
        start local 2 // java.lang.Object[] newMap
         3: .line 81
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_map:[Ljava/lang/Object;
            iconst_0
            aload 2 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_firstFree:I
            iconst_1
            iadd
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 83
            aload 0 /* this */
            aload 2 /* newMap */
            putfield org.apache.xml.utils.ObjectStack.m_map:[Ljava/lang/Object;
        end local 2 // java.lang.Object[] newMap
         5: .line 86
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_map:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_firstFree:I
            aload 1 /* i */
            aastore
         6: .line 88
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.ObjectStack.m_firstFree:I
            iconst_1
            iadd
            putfield org.apache.xml.utils.ObjectStack.m_firstFree:I
         7: .line 90
            aload 1 /* i */
            areturn
        end local 1 // java.lang.Object i
        end local 0 // org.apache.xml.utils.ObjectStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/apache/xml/utils/ObjectStack;
            0    8     1       i  Ljava/lang/Object;
            3    5     2  newMap  [Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      i     

  public java.lang.Object pop();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.apache.xml.utils.ObjectStack this
         0: .line 101
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_map:[Ljava/lang/Object;
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.ObjectStack.m_firstFree:I
            iconst_1
            isub
            dup_x1
            putfield org.apache.xml.utils.ObjectStack.m_firstFree:I
            aaload
            astore 1 /* val */
        start local 1 // java.lang.Object val
         1: .line 102
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_map:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_firstFree:I
            aconst_null
            aastore
         2: .line 104
            aload 1 /* val */
            areturn
        end local 1 // java.lang.Object val
        end local 0 // org.apache.xml.utils.ObjectStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/xml/utils/ObjectStack;
            1    3     1   val  Ljava/lang/Object;

  public void quickPop(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.ObjectStack this
        start local 1 // int n
         0: .line 113
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.ObjectStack.m_firstFree:I
            iload 1 /* n */
            isub
            putfield org.apache.xml.utils.ObjectStack.m_firstFree:I
         1: .line 114
            return
        end local 1 // int n
        end local 0 // org.apache.xml.utils.ObjectStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/xml/utils/ObjectStack;
            0    2     1     n  I
    MethodParameters:
      Name  Flags
      n     

  public java.lang.Object peek();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.ObjectStack this
         0: .line 126
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_map:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_firstFree:I
            iconst_1
            isub
            aaload
         1: areturn
         2: .line 128
      StackMap locals:
      StackMap stack: java.lang.ArrayIndexOutOfBoundsException
            pop
         3: .line 130
            new java.util.EmptyStackException
            dup
            invokespecial java.util.EmptyStackException.<init>:()V
            athrow
        end local 0 // org.apache.xml.utils.ObjectStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/xml/utils/ObjectStack;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.ArrayIndexOutOfBoundsException

  public java.lang.Object peek(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.ObjectStack this
        start local 1 // int n
         0: .line 144
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_map:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_firstFree:I
            iconst_1
            iload 1 /* n */
            iadd
            isub
            aaload
         1: areturn
         2: .line 146
      StackMap locals:
      StackMap stack: java.lang.ArrayIndexOutOfBoundsException
            pop
         3: .line 148
            new java.util.EmptyStackException
            dup
            invokespecial java.util.EmptyStackException.<init>:()V
            athrow
        end local 1 // int n
        end local 0 // org.apache.xml.utils.ObjectStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/xml/utils/ObjectStack;
            0    4     1     n  I
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.ArrayIndexOutOfBoundsException
    MethodParameters:
      Name  Flags
      n     

  public void setTop(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.ObjectStack this
        start local 1 // java.lang.Object val
         0: .line 162
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_map:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_firstFree:I
            iconst_1
            isub
            aload 1 /* val */
            aastore
         1: .line 163
            goto 4
         2: .line 164
      StackMap locals:
      StackMap stack: java.lang.ArrayIndexOutOfBoundsException
            pop
         3: .line 166
            new java.util.EmptyStackException
            dup
            invokespecial java.util.EmptyStackException.<init>:()V
            athrow
         4: .line 168
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Object val
        end local 0 // org.apache.xml.utils.ObjectStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/xml/utils/ObjectStack;
            0    5     1   val  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.ArrayIndexOutOfBoundsException
    MethodParameters:
      Name  Flags
      val   

  public boolean empty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.ObjectStack this
         0: .line 179
            aload 0 /* this */
            getfield org.apache.xml.utils.ObjectStack.m_firstFree:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.xml.utils.ObjectStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/xml/utils/ObjectStack;

  public int search(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.xml.utils.ObjectStack this
        start local 1 // java.lang.Object o
         0: .line 194
            aload 0 /* this */
            aload 1 /* o */
            invokevirtual org.apache.xml.utils.ObjectStack.lastIndexOf:(Ljava/lang/Object;)I
            istore 2 /* i */
        start local 2 // int i
         1: .line 196
            iload 2 /* i */
            iflt 3
         2: .line 198
            aload 0 /* this */
            invokevirtual org.apache.xml.utils.ObjectStack.size:()I
            iload 2 /* i */
            isub
            ireturn
         3: .line 201
      StackMap locals: int
      StackMap stack:
            iconst_m1
            ireturn
        end local 2 // int i
        end local 1 // java.lang.Object o
        end local 0 // org.apache.xml.utils.ObjectStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/xml/utils/ObjectStack;
            0    4     1     o  Ljava/lang/Object;
            1    4     2     i  I
    MethodParameters:
      Name  Flags
      o     

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.ObjectStack this
         0: .line 212
            aload 0 /* this */
            invokespecial org.apache.xml.utils.ObjectVector.clone:()Ljava/lang/Object;
            checkcast org.apache.xml.utils.ObjectStack
            areturn
        end local 0 // org.apache.xml.utils.ObjectStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/xml/utils/ObjectStack;
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "ObjectStack.java"