public abstract class org.graalvm.compiler.bytecode.BytecodeSwitch
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.graalvm.compiler.bytecode.BytecodeSwitch
  super_class: java.lang.Object
{
  protected final org.graalvm.compiler.bytecode.BytecodeStream stream;
    descriptor: Lorg/graalvm/compiler/bytecode/BytecodeStream;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final int bci;
    descriptor: I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final int alignedBci;
    descriptor: I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  public void <init>(org.graalvm.compiler.bytecode.BytecodeStream, int);
    descriptor: (Lorg/graalvm/compiler/bytecode/BytecodeStream;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.graalvm.compiler.bytecode.BytecodeSwitch this
        start local 1 // org.graalvm.compiler.bytecode.BytecodeStream stream
        start local 2 // int bci
         0: .line 53
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 54
            aload 0 /* this */
            aload 1 /* stream */
            putfield org.graalvm.compiler.bytecode.BytecodeSwitch.stream:Lorg/graalvm/compiler/bytecode/BytecodeStream;
         2: .line 55
            aload 0 /* this */
            iload 2 /* bci */
            putfield org.graalvm.compiler.bytecode.BytecodeSwitch.bci:I
         3: .line 56
            aload 0 /* this */
            iload 2 /* bci */
            iconst_4
            iadd
            bipush -4
            iand
            putfield org.graalvm.compiler.bytecode.BytecodeSwitch.alignedBci:I
         4: .line 57
            return
        end local 2 // int bci
        end local 1 // org.graalvm.compiler.bytecode.BytecodeStream stream
        end local 0 // org.graalvm.compiler.bytecode.BytecodeSwitch this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/graalvm/compiler/bytecode/BytecodeSwitch;
            0    5     1  stream  Lorg/graalvm/compiler/bytecode/BytecodeStream;
            0    5     2     bci  I
    MethodParameters:
        Name  Flags
      stream  
      bci     

  public int bci();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.bytecode.BytecodeSwitch this
         0: .line 65
            aload 0 /* this */
            getfield org.graalvm.compiler.bytecode.BytecodeSwitch.bci:I
            ireturn
        end local 0 // org.graalvm.compiler.bytecode.BytecodeSwitch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/bytecode/BytecodeSwitch;

  public int targetAt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.bytecode.BytecodeSwitch this
        start local 1 // int i
         0: .line 75
            aload 0 /* this */
            getfield org.graalvm.compiler.bytecode.BytecodeSwitch.bci:I
            aload 0 /* this */
            iload 1 /* i */
            invokevirtual org.graalvm.compiler.bytecode.BytecodeSwitch.offsetAt:(I)I
            iadd
            ireturn
        end local 1 // int i
        end local 0 // org.graalvm.compiler.bytecode.BytecodeSwitch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/bytecode/BytecodeSwitch;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public int defaultTarget();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.bytecode.BytecodeSwitch this
         0: .line 84
            aload 0 /* this */
            getfield org.graalvm.compiler.bytecode.BytecodeSwitch.bci:I
            aload 0 /* this */
            invokevirtual org.graalvm.compiler.bytecode.BytecodeSwitch.defaultOffset:()I
            iadd
            ireturn
        end local 0 // org.graalvm.compiler.bytecode.BytecodeSwitch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/bytecode/BytecodeSwitch;

  public int defaultOffset();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.bytecode.BytecodeSwitch this
         0: .line 93
            aload 0 /* this */
            getfield org.graalvm.compiler.bytecode.BytecodeSwitch.stream:Lorg/graalvm/compiler/bytecode/BytecodeStream;
            aload 0 /* this */
            getfield org.graalvm.compiler.bytecode.BytecodeSwitch.alignedBci:I
            invokevirtual org.graalvm.compiler.bytecode.BytecodeStream.readInt:(I)I
            ireturn
        end local 0 // org.graalvm.compiler.bytecode.BytecodeSwitch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/bytecode/BytecodeSwitch;

  public abstract int keyAt(int);
    descriptor: (I)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      i     

  public abstract int offsetAt(int);
    descriptor: (I)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      i     

  public abstract int numberOfCases();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int size();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
}
SourceFile: "BytecodeSwitch.java"