public final class com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock
  super_class: java.lang.Object
{
  private final int blockIndex;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.ArrayList<com.oracle.truffle.llvm.parser.model.symbols.instructions.Instruction> instructions;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayList<Lcom/oracle/truffle/llvm/parser/model/symbols/instructions/Instruction;>;

  private java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 40
            ldc Lcom/oracle/truffle/llvm/parser/model/blocks/InstructionBlock;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
        start local 1 // int index
         0: .line 48
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
         2: .line 46
            aload 0 /* this */
            ldc "<anon>"
            putfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.name:Ljava/lang/String;
         3: .line 49
            aload 0 /* this */
            iload 1 /* index */
            putfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.blockIndex:I
         4: .line 50
            return
        end local 1 // int index
        end local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/oracle/truffle/llvm/parser/model/blocks/InstructionBlock;
            0    5     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public void accept(com.oracle.truffle.llvm.parser.model.visitors.SymbolVisitor);
    descriptor: (Lcom/oracle/truffle/llvm/parser/model/visitors/SymbolVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
        start local 1 // com.oracle.truffle.llvm.parser.model.visitors.SymbolVisitor visitor
         0: .line 53
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 3
            goto 3
      StackMap locals: com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock com.oracle.truffle.llvm.parser.model.visitors.SymbolVisitor top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.parser.model.symbols.instructions.Instruction
            astore 2 /* instruction */
        start local 2 // com.oracle.truffle.llvm.parser.model.symbols.instructions.Instruction instruction
         2: .line 54
            aload 2 /* instruction */
            aload 1 /* visitor */
            invokevirtual com.oracle.truffle.llvm.parser.model.symbols.instructions.Instruction.accept:(Lcom/oracle/truffle/llvm/parser/ValueList$ValueVisitor;)V
        end local 2 // com.oracle.truffle.llvm.parser.model.symbols.instructions.Instruction instruction
         3: .line 53
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 56
            return
        end local 1 // com.oracle.truffle.llvm.parser.model.visitors.SymbolVisitor visitor
        end local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lcom/oracle/truffle/llvm/parser/model/blocks/InstructionBlock;
            0    5     1      visitor  Lcom/oracle/truffle/llvm/parser/model/visitors/SymbolVisitor;
            2    3     2  instruction  Lcom/oracle/truffle/llvm/parser/model/symbols/instructions/Instruction;
    MethodParameters:
         Name  Flags
      visitor  

  public void append(com.oracle.truffle.llvm.parser.model.symbols.instructions.Instruction);
    descriptor: (Lcom/oracle/truffle/llvm/parser/model/symbols/instructions/Instruction;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
        start local 1 // com.oracle.truffle.llvm.parser.model.symbols.instructions.Instruction instruction
         0: .line 59
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
            aload 1 /* instruction */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         1: .line 60
            return
        end local 1 // com.oracle.truffle.llvm.parser.model.symbols.instructions.Instruction instruction
        end local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lcom/oracle/truffle/llvm/parser/model/blocks/InstructionBlock;
            0    2     1  instruction  Lcom/oracle/truffle/llvm/parser/model/symbols/instructions/Instruction;
    MethodParameters:
             Name  Flags
      instruction  

  public int getBlockIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
         0: .line 63
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.blockIndex:I
            ireturn
        end local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/model/blocks/InstructionBlock;

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
         0: .line 67
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.name:Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/model/blocks/InstructionBlock;

  public java.util.List<com.oracle.truffle.llvm.parser.model.symbols.instructions.Instruction> getInstructions();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
         0: .line 71
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/model/blocks/InstructionBlock;
    Signature: ()Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/symbols/instructions/Instruction;>;

  public com.oracle.truffle.llvm.parser.model.symbols.instructions.Instruction getInstruction(int);
    descriptor: (I)Lcom/oracle/truffle/llvm/parser/model/symbols/instructions/Instruction;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
        start local 1 // int index
         0: .line 75
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
            iload 1 /* index */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.parser.model.symbols.instructions.Instruction
            areturn
        end local 1 // int index
        end local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/oracle/truffle/llvm/parser/model/blocks/InstructionBlock;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getInstructionCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
         0: .line 79
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ireturn
        end local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/model/blocks/InstructionBlock;

  public void setName(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
        start local 1 // java.lang.String name
         0: .line 83
            aload 0 /* this */
            aload 1 /* name */
            putfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.name:Ljava/lang/String;
         1: .line 84
            return
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/parser/model/blocks/InstructionBlock;
            0    2     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public com.oracle.truffle.llvm.parser.model.symbols.instructions.TerminatingInstruction getTerminatingInstruction();
    descriptor: ()Lcom/oracle/truffle/llvm/parser/model/symbols/instructions/TerminatingInstruction;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
         0: .line 87
            getstatic com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            iconst_1
            isub
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            instanceof com.oracle.truffle.llvm.parser.model.symbols.instructions.TerminatingInstruction
            ifne 1
            new java.lang.AssertionError
            dup
            ldc "last instruction must be a terminating instruction"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            iconst_1
            isub
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.parser.model.symbols.instructions.TerminatingInstruction
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/parser/model/blocks/InstructionBlock;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
         0: .line 93
            ldc "Block (%d) %s"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.blockIndex:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.name:Ljava/lang/String;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/model/blocks/InstructionBlock;
}
SourceFile: "InstructionBlock.java"
InnerClasses:
  public abstract ValueVisitor = com.oracle.truffle.llvm.parser.ValueList$ValueVisitor of com.oracle.truffle.llvm.parser.ValueList