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: 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 start local 1 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
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: aload 0
ldc "<anon>"
putfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.name:Ljava/lang/String;
3: aload 0
iload 1
putfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.blockIndex:I
4: return
end local 1 end local 0 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 start local 1 0: aload 0
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
start local 2 2: aload 2
aload 1
invokevirtual com.oracle.truffle.llvm.parser.model.symbols.instructions.Instruction.accept:(Lcom/oracle/truffle/llvm/parser/ValueList$ValueVisitor;)V
end local 2 3: StackMap locals:
StackMap stack:
aload 3
invokeinterface java.util.Iterator.hasNext:()Z
ifne 1
4: return
end local 1 end local 0 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 start local 1 0: aload 0
getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
aload 1
invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
pop
1: return
end local 1 end local 0 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 0: aload 0
getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.blockIndex:I
ireturn
end local 0 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 0: aload 0
getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.name:Ljava/lang/String;
areturn
end local 0 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 0: aload 0
getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
areturn
end local 0 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 start local 1 0: aload 0
getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
iload 1
invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
checkcast com.oracle.truffle.llvm.parser.model.symbols.instructions.Instruction
areturn
end local 1 end local 0 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 0: aload 0
getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
invokevirtual java.util.ArrayList.size:()I
ireturn
end local 0 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 start local 1 0: aload 0
aload 1
putfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.name:Ljava/lang/String;
1: return
end local 1 end local 0 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 0: getstatic com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.$assertionsDisabled:Z
ifne 1
aload 0
getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
aload 0
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: StackMap locals:
StackMap stack:
aload 0
getfield com.oracle.truffle.llvm.parser.model.blocks.InstructionBlock.instructions:Ljava/util/ArrayList;
aload 0
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 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 0: ldc "Block (%d) %s"
iconst_2
anewarray java.lang.Object
dup
iconst_0
aload 0
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
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 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