public class org.apache.bcel.generic.TABLESWITCH extends org.apache.bcel.generic.Select
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.bcel.generic.TABLESWITCH
  super_class: org.apache.bcel.generic.Select
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.bcel.generic.TABLESWITCH this
         0: .line 36
            aload 0 /* this */
            invokespecial org.apache.bcel.generic.Select.<init>:()V
         1: .line 37
            return
        end local 0 // org.apache.bcel.generic.TABLESWITCH this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/bcel/generic/TABLESWITCH;

  public void <init>(int[], org.apache.bcel.generic.InstructionHandle[], org.apache.bcel.generic.InstructionHandle);
    descriptor: ([I[Lorg/apache/bcel/generic/InstructionHandle;Lorg/apache/bcel/generic/InstructionHandle;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.apache.bcel.generic.TABLESWITCH this
        start local 1 // int[] match
        start local 2 // org.apache.bcel.generic.InstructionHandle[] targets
        start local 3 // org.apache.bcel.generic.InstructionHandle defaultTarget
         0: .line 47
            aload 0 /* this */
            sipush 170
            aload 1 /* match */
            aload 2 /* targets */
            aload 3 /* defaultTarget */
            invokespecial org.apache.bcel.generic.Select.<init>:(S[I[Lorg/apache/bcel/generic/InstructionHandle;Lorg/apache/bcel/generic/InstructionHandle;)V
         1: .line 49
            bipush 13
            aload 0 /* this */
            invokevirtual org.apache.bcel.generic.TABLESWITCH.getMatch_length:()I
            iconst_4
            imul
            iadd
            i2s
            istore 4 /* _length */
        start local 4 // short _length
         2: .line 50
            aload 0 /* this */
            iload 4 /* _length */
            invokespecial org.apache.bcel.generic.Select.setLength:(I)V
         3: .line 51
            aload 0 /* this */
            iload 4 /* _length */
            invokevirtual org.apache.bcel.generic.TABLESWITCH.setFixed_length:(I)V
         4: .line 52
            return
        end local 4 // short _length
        end local 3 // org.apache.bcel.generic.InstructionHandle defaultTarget
        end local 2 // org.apache.bcel.generic.InstructionHandle[] targets
        end local 1 // int[] match
        end local 0 // org.apache.bcel.generic.TABLESWITCH this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/apache/bcel/generic/TABLESWITCH;
            0    5     1          match  [I
            0    5     2        targets  [Lorg/apache/bcel/generic/InstructionHandle;
            0    5     3  defaultTarget  Lorg/apache/bcel/generic/InstructionHandle;
            2    5     4        _length  S
    MethodParameters:
               Name  Flags
      match          final
      targets        final
      defaultTarget  final

  public void dump(java.io.DataOutputStream);
    descriptor: (Ljava/io/DataOutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // org.apache.bcel.generic.TABLESWITCH this
        start local 1 // java.io.DataOutputStream out
         0: .line 61
            aload 0 /* this */
            aload 1 /* out */
            invokespecial org.apache.bcel.generic.Select.dump:(Ljava/io/DataOutputStream;)V
         1: .line 62
            aload 0 /* this */
            invokevirtual org.apache.bcel.generic.TABLESWITCH.getMatch_length:()I
            istore 2 /* _match_length */
        start local 2 // int _match_length
         2: .line 63
            iload 2 /* _match_length */
            ifle 3
            aload 0 /* this */
            iconst_0
            invokespecial org.apache.bcel.generic.Select.getMatch:(I)I
            goto 4
      StackMap locals: int
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: istore 3 /* low */
        start local 3 // int low
         5: .line 64
            aload 1 /* out */
            iload 3 /* low */
            invokevirtual java.io.DataOutputStream.writeInt:(I)V
         6: .line 65
            iload 2 /* _match_length */
            ifle 7
            aload 0 /* this */
            iload 2 /* _match_length */
            iconst_1
            isub
            invokespecial org.apache.bcel.generic.Select.getMatch:(I)I
            goto 8
      StackMap locals: int
      StackMap stack:
         7: iconst_0
      StackMap locals:
      StackMap stack: int
         8: istore 4 /* high */
        start local 4 // int high
         9: .line 66
            aload 1 /* out */
            iload 4 /* high */
            invokevirtual java.io.DataOutputStream.writeInt:(I)V
        10: .line 67
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        11: goto 14
        12: .line 68
      StackMap locals: int int
      StackMap stack:
            aload 1 /* out */
            aload 0 /* this */
            iload 5 /* i */
            aload 0 /* this */
            aload 0 /* this */
            iload 5 /* i */
            invokespecial org.apache.bcel.generic.Select.getTarget:(I)Lorg/apache/bcel/generic/InstructionHandle;
            invokevirtual org.apache.bcel.generic.TABLESWITCH.getTargetOffset:(Lorg/apache/bcel/generic/InstructionHandle;)I
            invokevirtual org.apache.bcel.generic.TABLESWITCH.setIndices:(II)I
            invokevirtual java.io.DataOutputStream.writeInt:(I)V
        13: .line 67
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 5 /* i */
            iload 2 /* _match_length */
            if_icmplt 12
        end local 5 // int i
        15: .line 70
            return
        end local 4 // int high
        end local 3 // int low
        end local 2 // int _match_length
        end local 1 // java.io.DataOutputStream out
        end local 0 // org.apache.bcel.generic.TABLESWITCH this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   16     0           this  Lorg/apache/bcel/generic/TABLESWITCH;
            0   16     1            out  Ljava/io/DataOutputStream;
            2   16     2  _match_length  I
            5   16     3            low  I
            9   16     4           high  I
           11   15     5              i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   final

  protected void initFromFile(org.apache.bcel.util.ByteSequence, boolean);
    descriptor: (Lorg/apache/bcel/util/ByteSequence;Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // org.apache.bcel.generic.TABLESWITCH this
        start local 1 // org.apache.bcel.util.ByteSequence bytes
        start local 2 // boolean wide
         0: .line 78
            aload 0 /* this */
            aload 1 /* bytes */
            iload 2 /* wide */
            invokespecial org.apache.bcel.generic.Select.initFromFile:(Lorg/apache/bcel/util/ByteSequence;Z)V
         1: .line 79
            aload 1 /* bytes */
            invokevirtual org.apache.bcel.util.ByteSequence.readInt:()I
            istore 3 /* low */
        start local 3 // int low
         2: .line 80
            aload 1 /* bytes */
            invokevirtual org.apache.bcel.util.ByteSequence.readInt:()I
            istore 4 /* high */
        start local 4 // int high
         3: .line 81
            iload 4 /* high */
            iload 3 /* low */
            isub
            iconst_1
            iadd
            istore 5 /* _match_length */
        start local 5 // int _match_length
         4: .line 82
            aload 0 /* this */
            iload 5 /* _match_length */
            invokevirtual org.apache.bcel.generic.TABLESWITCH.setMatch_length:(I)I
            pop
         5: .line 83
            bipush 13
            iload 5 /* _match_length */
            iconst_4
            imul
            iadd
            i2s
            istore 6 /* _fixed_length */
        start local 6 // short _fixed_length
         6: .line 84
            aload 0 /* this */
            iload 6 /* _fixed_length */
            invokevirtual org.apache.bcel.generic.TABLESWITCH.setFixed_length:(I)V
         7: .line 85
            aload 0 /* this */
            iload 6 /* _fixed_length */
            aload 0 /* this */
            invokespecial org.apache.bcel.generic.Select.getPadding:()I
            iadd
            i2s
            invokespecial org.apache.bcel.generic.Select.setLength:(I)V
         8: .line 86
            aload 0 /* this */
            iload 5 /* _match_length */
            newarray 10
            invokespecial org.apache.bcel.generic.Select.setMatches:([I)V
         9: .line 87
            aload 0 /* this */
            iload 5 /* _match_length */
            newarray 10
            invokespecial org.apache.bcel.generic.Select.setIndices:([I)V
        10: .line 88
            aload 0 /* this */
            iload 5 /* _match_length */
            anewarray org.apache.bcel.generic.InstructionHandle
            invokespecial org.apache.bcel.generic.Select.setTargets:([Lorg/apache/bcel/generic/InstructionHandle;)V
        11: .line 89
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        12: goto 16
        13: .line 90
      StackMap locals: org.apache.bcel.generic.TABLESWITCH org.apache.bcel.util.ByteSequence int int int int int int
      StackMap stack:
            aload 0 /* this */
            iload 7 /* i */
            iload 3 /* low */
            iload 7 /* i */
            iadd
            invokespecial org.apache.bcel.generic.Select.setMatch:(II)V
        14: .line 91
            aload 0 /* this */
            iload 7 /* i */
            aload 1 /* bytes */
            invokevirtual org.apache.bcel.util.ByteSequence.readInt:()I
            invokespecial org.apache.bcel.generic.Select.setIndices:(II)I
            pop
        15: .line 89
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 7 /* i */
            iload 5 /* _match_length */
            if_icmplt 13
        end local 7 // int i
        17: .line 93
            return
        end local 6 // short _fixed_length
        end local 5 // int _match_length
        end local 4 // int high
        end local 3 // int low
        end local 2 // boolean wide
        end local 1 // org.apache.bcel.util.ByteSequence bytes
        end local 0 // org.apache.bcel.generic.TABLESWITCH this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   18     0           this  Lorg/apache/bcel/generic/TABLESWITCH;
            0   18     1          bytes  Lorg/apache/bcel/util/ByteSequence;
            0   18     2           wide  Z
            2   18     3            low  I
            3   18     4           high  I
            4   18     5  _match_length  I
            6   18     6  _fixed_length  S
           12   17     7              i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      bytes  final
      wide   final

  public void accept(org.apache.bcel.generic.Visitor);
    descriptor: (Lorg/apache/bcel/generic/Visitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.bcel.generic.TABLESWITCH this
        start local 1 // org.apache.bcel.generic.Visitor v
         0: .line 106
            aload 1 /* v */
            aload 0 /* this */
            invokeinterface org.apache.bcel.generic.Visitor.visitVariableLengthInstruction:(Lorg/apache/bcel/generic/VariableLengthInstruction;)V
         1: .line 107
            aload 1 /* v */
            aload 0 /* this */
            invokeinterface org.apache.bcel.generic.Visitor.visitStackConsumer:(Lorg/apache/bcel/generic/StackConsumer;)V
         2: .line 108
            aload 1 /* v */
            aload 0 /* this */
            invokeinterface org.apache.bcel.generic.Visitor.visitBranchInstruction:(Lorg/apache/bcel/generic/BranchInstruction;)V
         3: .line 109
            aload 1 /* v */
            aload 0 /* this */
            invokeinterface org.apache.bcel.generic.Visitor.visitSelect:(Lorg/apache/bcel/generic/Select;)V
         4: .line 110
            aload 1 /* v */
            aload 0 /* this */
            invokeinterface org.apache.bcel.generic.Visitor.visitTABLESWITCH:(Lorg/apache/bcel/generic/TABLESWITCH;)V
         5: .line 111
            return
        end local 1 // org.apache.bcel.generic.Visitor v
        end local 0 // org.apache.bcel.generic.TABLESWITCH this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/bcel/generic/TABLESWITCH;
            0    6     1     v  Lorg/apache/bcel/generic/Visitor;
    MethodParameters:
      Name  Flags
      v     final
}
SourceFile: "TABLESWITCH.java"