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

  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.IntStack this
        start local 1 // int blocksize
         0: .line 53
            aload 0 /* this */
            iload 1 /* blocksize */
            invokespecial org.apache.xml.utils.IntVector.<init>:(I)V
         1: .line 54
            return
        end local 1 // int blocksize
        end local 0 // org.apache.xml.utils.IntStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/apache/xml/utils/IntStack;
            0    2     1  blocksize  I
    MethodParameters:
           Name  Flags
      blocksize  

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

  public int push(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.apache.xml.utils.IntStack this
        start local 1 // int i
         0: .line 75
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_firstFree:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_mapSize:I
            if_icmplt 5
         1: .line 77
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.IntStack.m_mapSize:I
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_blocksize:I
            iadd
            putfield org.apache.xml.utils.IntStack.m_mapSize:I
         2: .line 79
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_mapSize:I
            newarray 10
            astore 2 /* newMap */
        start local 2 // int[] newMap
         3: .line 81
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_map:[I
            iconst_0
            aload 2 /* newMap */
            iconst_0
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.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.IntStack.m_map:[I
        end local 2 // int[] newMap
         5: .line 86
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_firstFree:I
            iload 1 /* i */
            iastore
         6: .line 88
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.IntStack.m_firstFree:I
            iconst_1
            iadd
            putfield org.apache.xml.utils.IntStack.m_firstFree:I
         7: .line 90
            iload 1 /* i */
            ireturn
        end local 1 // int i
        end local 0 // org.apache.xml.utils.IntStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/apache/xml/utils/IntStack;
            0    8     1       i  I
            3    5     2  newMap  [I
    MethodParameters:
      Name  Flags
      i     

  public final int pop();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.IntStack this
         0: .line 101
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_map:[I
            aload 0 /* this */
            dup
            getfield org.apache.xml.utils.IntStack.m_firstFree:I
            iconst_1
            isub
            dup_x1
            putfield org.apache.xml.utils.IntStack.m_firstFree:I
            iaload
            ireturn
        end local 0 // org.apache.xml.utils.IntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/xml/utils/IntStack;

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

  public final int peek();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.xml.utils.IntStack this
         0: .line 123
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_firstFree:I
            iconst_1
            isub
            iaload
         1: ireturn
         2: .line 125
      StackMap locals:
      StackMap stack: java.lang.ArrayIndexOutOfBoundsException
            pop
         3: .line 127
            new java.util.EmptyStackException
            dup
            invokespecial java.util.EmptyStackException.<init>:()V
            athrow
        end local 0 // org.apache.xml.utils.IntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/xml/utils/IntStack;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.ArrayIndexOutOfBoundsException

  public int peek(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.IntStack this
        start local 1 // int n
         0: .line 141
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_firstFree:I
            iconst_1
            iload 1 /* n */
            iadd
            isub
            iaload
         1: ireturn
         2: .line 143
      StackMap locals:
      StackMap stack: java.lang.ArrayIndexOutOfBoundsException
            pop
         3: .line 145
            new java.util.EmptyStackException
            dup
            invokespecial java.util.EmptyStackException.<init>:()V
            athrow
        end local 1 // int n
        end local 0 // org.apache.xml.utils.IntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/xml/utils/IntStack;
            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(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.xml.utils.IntStack this
        start local 1 // int val
         0: .line 159
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_map:[I
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_firstFree:I
            iconst_1
            isub
            iload 1 /* val */
            iastore
         1: .line 160
            goto 4
         2: .line 161
      StackMap locals:
      StackMap stack: java.lang.ArrayIndexOutOfBoundsException
            pop
         3: .line 163
            new java.util.EmptyStackException
            dup
            invokespecial java.util.EmptyStackException.<init>:()V
            athrow
         4: .line 165
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int val
        end local 0 // org.apache.xml.utils.IntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/xml/utils/IntStack;
            0    5     1   val  I
      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.IntStack this
         0: .line 176
            aload 0 /* this */
            getfield org.apache.xml.utils.IntStack.m_firstFree:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.xml.utils.IntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/xml/utils/IntStack;

  public int search(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.xml.utils.IntStack this
        start local 1 // int o
         0: .line 191
            aload 0 /* this */
            iload 1 /* o */
            invokevirtual org.apache.xml.utils.IntStack.lastIndexOf:(I)I
            istore 2 /* i */
        start local 2 // int i
         1: .line 193
            iload 2 /* i */
            iflt 3
         2: .line 195
            aload 0 /* this */
            invokevirtual org.apache.xml.utils.IntStack.size:()I
            iload 2 /* i */
            isub
            ireturn
         3: .line 198
      StackMap locals: int
      StackMap stack:
            iconst_m1
            ireturn
        end local 2 // int i
        end local 1 // int o
        end local 0 // org.apache.xml.utils.IntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/xml/utils/IntStack;
            0    4     1     o  I
            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.IntStack this
         0: .line 209
            aload 0 /* this */
            invokespecial org.apache.xml.utils.IntVector.clone:()Ljava/lang/Object;
            checkcast org.apache.xml.utils.IntStack
            areturn
        end local 0 // org.apache.xml.utils.IntStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/xml/utils/IntStack;
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "IntStack.java"