public final class com.oracle.truffle.llvm.parser.binary.BinaryParserResult
minor version: 0
major version: 59
flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
this_class: com.oracle.truffle.llvm.parser.binary.BinaryParserResult
super_class: java.lang.Object
{
private final java.util.ArrayList<java.lang.String> libraries;
descriptor: Ljava/util/ArrayList;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
Signature: Ljava/util/ArrayList<Ljava/lang/String;>;
private final java.util.ArrayList<java.lang.String> paths;
descriptor: Ljava/util/ArrayList;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
Signature: Ljava/util/ArrayList<Ljava/lang/String;>;
private final org.graalvm.polyglot.io.ByteSequence bitcode;
descriptor: Lorg/graalvm/polyglot/io/ByteSequence;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final com.oracle.truffle.llvm.runtime.LibraryLocator locator;
descriptor: Lcom/oracle/truffle/llvm/runtime/LibraryLocator;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final com.oracle.truffle.api.source.Source source;
descriptor: Lcom/oracle/truffle/api/source/Source;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
void <init>(java.util.ArrayList<java.lang.String>, java.util.ArrayList<java.lang.String>, org.graalvm.polyglot.io.ByteSequence, com.oracle.truffle.llvm.runtime.LibraryLocator, com.oracle.truffle.api.source.Source);
descriptor: (Ljava/util/ArrayList;Ljava/util/ArrayList;Lorg/graalvm/polyglot/io/ByteSequence;Lcom/oracle/truffle/llvm/runtime/LibraryLocator;Lcom/oracle/truffle/api/source/Source;)V
flags: (0x0000)
Code:
stack=2, locals=6, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
aload 1
putfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.libraries:Ljava/util/ArrayList;
2: aload 0
aload 2
putfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.paths:Ljava/util/ArrayList;
3: aload 0
aload 3
putfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.bitcode:Lorg/graalvm/polyglot/io/ByteSequence;
4: aload 0
aload 4
putfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.locator:Lcom/oracle/truffle/llvm/runtime/LibraryLocator;
5: aload 0
aload 5
putfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.source:Lcom/oracle/truffle/api/source/Source;
6: return
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lcom/oracle/truffle/llvm/parser/binary/BinaryParserResult;
0 7 1 libraries Ljava/util/ArrayList<Ljava/lang/String;>;
0 7 2 paths Ljava/util/ArrayList<Ljava/lang/String;>;
0 7 3 bitcode Lorg/graalvm/polyglot/io/ByteSequence;
0 7 4 locator Lcom/oracle/truffle/llvm/runtime/LibraryLocator;
0 7 5 source Lcom/oracle/truffle/api/source/Source;
Signature: (Ljava/util/ArrayList<Ljava/lang/String;>;Ljava/util/ArrayList<Ljava/lang/String;>;Lorg/graalvm/polyglot/io/ByteSequence;Lcom/oracle/truffle/llvm/runtime/LibraryLocator;Lcom/oracle/truffle/api/source/Source;)V
MethodParameters:
Name Flags
libraries
paths
bitcode
locator
source
public java.util.List<java.lang.String> getLibraries();
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.binary.BinaryParserResult.libraries:Ljava/util/ArrayList;
invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/oracle/truffle/llvm/parser/binary/BinaryParserResult;
Signature: ()Ljava/util/List<Ljava/lang/String;>;
public java.util.List<java.lang.String> getLibraryPaths();
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.binary.BinaryParserResult.paths:Ljava/util/ArrayList;
invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/oracle/truffle/llvm/parser/binary/BinaryParserResult;
Signature: ()Ljava/util/List<Ljava/lang/String;>;
public org.graalvm.polyglot.io.ByteSequence getBitcode();
descriptor: ()Lorg/graalvm/polyglot/io/ByteSequence;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.bitcode:Lorg/graalvm/polyglot/io/ByteSequence;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/oracle/truffle/llvm/parser/binary/BinaryParserResult;
public com.oracle.truffle.llvm.runtime.LibraryLocator getLocator();
descriptor: ()Lcom/oracle/truffle/llvm/runtime/LibraryLocator;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.locator:Lcom/oracle/truffle/llvm/runtime/LibraryLocator;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/oracle/truffle/llvm/parser/binary/BinaryParserResult;
public com.oracle.truffle.api.source.Source getSource();
descriptor: ()Lcom/oracle/truffle/api/source/Source;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.source:Lcom/oracle/truffle/api/source/Source;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/oracle/truffle/llvm/parser/binary/BinaryParserResult;
}
SourceFile: "BinaryParserResult.java"