public abstract class com.oracle.objectfile.debugentry.DebugInfoBase
minor version: 0
major version: 59
flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
this_class: com.oracle.objectfile.debugentry.DebugInfoBase
super_class: java.lang.Object
{
protected java.nio.ByteOrder byteOrder;
descriptor: Ljava/nio/ByteOrder;
flags: (0x0004) ACC_PROTECTED
private com.oracle.objectfile.debugentry.StringTable stringTable;
descriptor: Lcom/oracle/objectfile/debugentry/StringTable;
flags: (0x0002) ACC_PRIVATE
private java.util.Map<java.nio.file.Path, com.oracle.objectfile.debugentry.DirEntry> dirsIndex;
descriptor: Ljava/util/Map;
flags: (0x0002) ACC_PRIVATE
Signature: Ljava/util/Map<Ljava/nio/file/Path;Lcom/oracle/objectfile/debugentry/DirEntry;>;
private java.util.LinkedList<com.oracle.objectfile.debugentry.ClassEntry> primaryClasses;
descriptor: Ljava/util/LinkedList;
flags: (0x0002) ACC_PRIVATE
Signature: Ljava/util/LinkedList<Lcom/oracle/objectfile/debugentry/ClassEntry;>;
private java.util.Map<java.lang.String, com.oracle.objectfile.debugentry.ClassEntry> primaryClassesIndex;
descriptor: Ljava/util/Map;
flags: (0x0002) ACC_PRIVATE
Signature: Ljava/util/Map<Ljava/lang/String;Lcom/oracle/objectfile/debugentry/ClassEntry;>;
private java.util.Map<java.nio.file.Path, com.oracle.objectfile.debugentry.FileEntry> filesIndex;
descriptor: Ljava/util/Map;
flags: (0x0002) ACC_PRIVATE
Signature: Ljava/util/Map<Ljava/nio/file/Path;Lcom/oracle/objectfile/debugentry/FileEntry;>;
private java.util.LinkedList<com.oracle.objectfile.debugentry.FileEntry> files;
descriptor: Ljava/util/LinkedList;
flags: (0x0002) ACC_PRIVATE
Signature: Ljava/util/LinkedList<Lcom/oracle/objectfile/debugentry/FileEntry;>;
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/objectfile/debugentry/DebugInfoBase;
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.objectfile.debugentry.DebugInfoBase.$assertionsDisabled:Z
return
LocalVariableTable:
Start End Slot Name Signature
public void <init>(java.nio.ByteOrder);
descriptor: (Ljava/nio/ByteOrder;)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 com.oracle.objectfile.debugentry.StringTable
dup
invokespecial com.oracle.objectfile.debugentry.StringTable.<init>:()V
putfield com.oracle.objectfile.debugentry.DebugInfoBase.stringTable:Lcom/oracle/objectfile/debugentry/StringTable;
2: aload 0
new java.util.HashMap
dup
invokespecial java.util.HashMap.<init>:()V
putfield com.oracle.objectfile.debugentry.DebugInfoBase.dirsIndex:Ljava/util/Map;
3: aload 0
new java.util.LinkedList
dup
invokespecial java.util.LinkedList.<init>:()V
putfield com.oracle.objectfile.debugentry.DebugInfoBase.primaryClasses:Ljava/util/LinkedList;
4: aload 0
new java.util.HashMap
dup
invokespecial java.util.HashMap.<init>:()V
putfield com.oracle.objectfile.debugentry.DebugInfoBase.primaryClassesIndex:Ljava/util/Map;
5: aload 0
new java.util.HashMap
dup
invokespecial java.util.HashMap.<init>:()V
putfield com.oracle.objectfile.debugentry.DebugInfoBase.filesIndex:Ljava/util/Map;
6: aload 0
new java.util.LinkedList
dup
invokespecial java.util.LinkedList.<init>:()V
putfield com.oracle.objectfile.debugentry.DebugInfoBase.files:Ljava/util/LinkedList;
7: aload 0
aload 1
putfield com.oracle.objectfile.debugentry.DebugInfoBase.byteOrder:Ljava/nio/ByteOrder;
8: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 9 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
0 9 1 byteOrder Ljava/nio/ByteOrder;
MethodParameters:
Name Flags
byteOrder
public void installDebugInfo(com.oracle.objectfile.debuginfo.DebugInfoProvider);
descriptor: (Lcom/oracle/objectfile/debuginfo/DebugInfoProvider;)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.objectfile.debugentry.DebugInfoBase.stringTable:Lcom/oracle/objectfile/debugentry/StringTable;
ldc ""
invokevirtual com.oracle.objectfile.debugentry.StringTable.uniqueDebugString:(Ljava/lang/String;)Ljava/lang/String;
pop
1: aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider.codeInfoProvider:()Ljava/util/stream/Stream;
aload 0
invokedynamic accept(Lcom/oracle/objectfile/debugentry/DebugInfoBase;)Ljava/util/function/Consumer;
Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
Method arguments:
(Ljava/lang/Object;)V
com/oracle/objectfile/debugentry/DebugInfoBase.lambda$0(Lcom/oracle/objectfile/debuginfo/DebugInfoProvider$DebugCodeInfo;)V (7)
(Lcom/oracle/objectfile/debuginfo/DebugInfoProvider$DebugCodeInfo;)V
invokeinterface java.util.stream.Stream.forEach:(Ljava/util/function/Consumer;)V
2: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
0 3 1 debugInfoProvider Lcom/oracle/objectfile/debuginfo/DebugInfoProvider;
MethodParameters:
Name Flags
debugInfoProvider
private com.oracle.objectfile.debugentry.ClassEntry ensureClassEntry(com.oracle.objectfile.debugentry.Range);
descriptor: (Lcom/oracle/objectfile/debugentry/Range;)Lcom/oracle/objectfile/debugentry/ClassEntry;
flags: (0x0002) ACC_PRIVATE
Code:
stack=4, locals=5, args_size=2
start local 0 start local 1 0: aload 1
invokevirtual com.oracle.objectfile.debugentry.Range.getClassName:()Ljava/lang/String;
astore 2
start local 2 1: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.primaryClassesIndex:Ljava/util/Map;
aload 2
invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
checkcast com.oracle.objectfile.debugentry.ClassEntry
astore 3
start local 3 2: aload 3
ifnonnull 7
3: aload 0
aload 1
invokevirtual com.oracle.objectfile.debugentry.DebugInfoBase.ensureFileEntry:(Lcom/oracle/objectfile/debugentry/Range;)Lcom/oracle/objectfile/debugentry/FileEntry;
astore 4
start local 4 4: new com.oracle.objectfile.debugentry.ClassEntry
dup
aload 2
aload 4
invokespecial com.oracle.objectfile.debugentry.ClassEntry.<init>:(Ljava/lang/String;Lcom/oracle/objectfile/debugentry/FileEntry;)V
astore 3
5: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.primaryClasses:Ljava/util/LinkedList;
aload 3
invokevirtual java.util.LinkedList.add:(Ljava/lang/Object;)Z
pop
6: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.primaryClassesIndex:Ljava/util/Map;
aload 2
aload 3
invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
pop
end local 4 7: StackMap locals: java.lang.String com.oracle.objectfile.debugentry.ClassEntry
StackMap stack:
getstatic com.oracle.objectfile.debugentry.DebugInfoBase.$assertionsDisabled:Z
ifne 8
aload 3
invokevirtual com.oracle.objectfile.debugentry.ClassEntry.getClassName:()Ljava/lang/String;
aload 2
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifne 8
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
8: StackMap locals:
StackMap stack:
aload 3
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 9 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
0 9 1 range Lcom/oracle/objectfile/debugentry/Range;
1 9 2 className Ljava/lang/String;
2 9 3 classEntry Lcom/oracle/objectfile/debugentry/ClassEntry;
4 7 4 fileEntry Lcom/oracle/objectfile/debugentry/FileEntry;
MethodParameters:
Name Flags
range
private com.oracle.objectfile.debugentry.FileEntry ensureFileEntry(com.oracle.objectfile.debugentry.Range);
descriptor: (Lcom/oracle/objectfile/debugentry/Range;)Lcom/oracle/objectfile/debugentry/FileEntry;
flags: (0x0002) ACC_PRIVATE
Code:
stack=5, locals=9, args_size=2
start local 0 start local 1 0: aload 1
invokevirtual com.oracle.objectfile.debugentry.Range.getFileName:()Ljava/lang/String;
astore 2
start local 2 1: aload 2
ifnonnull 3
2: aconst_null
areturn
3: StackMap locals: java.lang.String
StackMap stack:
aload 1
invokevirtual com.oracle.objectfile.debugentry.Range.getFilePath:()Ljava/nio/file/Path;
astore 3
start local 3 4: aload 1
invokevirtual com.oracle.objectfile.debugentry.Range.getFileAsPath:()Ljava/nio/file/Path;
astore 4
start local 4 5: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.filesIndex:Ljava/util/Map;
aload 4
invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
checkcast com.oracle.objectfile.debugentry.FileEntry
astore 5
start local 5 6: aload 5
ifnonnull 15
7: aload 0
aload 3
invokevirtual com.oracle.objectfile.debugentry.DebugInfoBase.ensureDirEntry:(Ljava/nio/file/Path;)Lcom/oracle/objectfile/debugentry/DirEntry;
astore 6
start local 6 8: new com.oracle.objectfile.debugentry.FileEntry
dup
aload 2
aload 6
aload 1
invokevirtual com.oracle.objectfile.debugentry.Range.getCachePath:()Ljava/lang/String;
invokespecial com.oracle.objectfile.debugentry.FileEntry.<init>:(Ljava/lang/String;Lcom/oracle/objectfile/debugentry/DirEntry;Ljava/lang/String;)V
astore 5
9: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.files:Ljava/util/LinkedList;
aload 5
invokevirtual java.util.LinkedList.add:(Ljava/lang/Object;)Z
pop
10: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.filesIndex:Ljava/util/Map;
aload 4
aload 5
invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
pop
11: aload 1
invokevirtual com.oracle.objectfile.debugentry.Range.isPrimary:()Z
ifne 15
12: aload 1
invokevirtual com.oracle.objectfile.debugentry.Range.getPrimary:()Lcom/oracle/objectfile/debugentry/Range;
astore 7
start local 7 13: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.filesIndex:Ljava/util/Map;
aload 7
invokevirtual com.oracle.objectfile.debugentry.Range.getFileAsPath:()Ljava/nio/file/Path;
invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
checkcast com.oracle.objectfile.debugentry.FileEntry
astore 8
start local 8 14: getstatic com.oracle.objectfile.debugentry.DebugInfoBase.$assertionsDisabled:Z
ifne 15
aload 8
ifnonnull 15
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
end local 8 end local 7 end local 6 15: StackMap locals: java.nio.file.Path java.nio.file.Path com.oracle.objectfile.debugentry.FileEntry
StackMap stack:
aload 5
areturn
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 16 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
0 16 1 range Lcom/oracle/objectfile/debugentry/Range;
1 16 2 fileName Ljava/lang/String;
4 16 3 filePath Ljava/nio/file/Path;
5 16 4 fileAsPath Ljava/nio/file/Path;
6 16 5 fileEntry Lcom/oracle/objectfile/debugentry/FileEntry;
8 15 6 dirEntry Lcom/oracle/objectfile/debugentry/DirEntry;
13 15 7 primaryRange Lcom/oracle/objectfile/debugentry/Range;
14 15 8 primaryFileEntry Lcom/oracle/objectfile/debugentry/FileEntry;
MethodParameters:
Name Flags
range
private void addRange(com.oracle.objectfile.debugentry.Range, java.util.List<com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugFrameSizeChange>, );
descriptor: (Lcom/oracle/objectfile/debugentry/Range;Ljava/util/List;I)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=4, locals=5, args_size=4
start local 0 start local 1 start local 2 start local 3 0: getstatic com.oracle.objectfile.debugentry.DebugInfoBase.$assertionsDisabled:Z
ifne 1
aload 1
invokevirtual com.oracle.objectfile.debugentry.Range.isPrimary:()Z
ifne 1
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
1: StackMap locals:
StackMap stack:
aload 0
aload 1
invokevirtual com.oracle.objectfile.debugentry.DebugInfoBase.ensureClassEntry:(Lcom/oracle/objectfile/debugentry/Range;)Lcom/oracle/objectfile/debugentry/ClassEntry;
astore 4
start local 4 2: aload 4
aload 1
aload 2
iload 3
invokevirtual com.oracle.objectfile.debugentry.ClassEntry.addPrimary:(Lcom/oracle/objectfile/debugentry/Range;Ljava/util/List;I)V
3: return
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
0 4 1 primaryRange Lcom/oracle/objectfile/debugentry/Range;
0 4 2 frameSizeInfos Ljava/util/List<Lcom/oracle/objectfile/debuginfo/DebugInfoProvider$DebugFrameSizeChange;>;
0 4 3 frameSize I
2 4 4 classEntry Lcom/oracle/objectfile/debugentry/ClassEntry;
Signature: (Lcom/oracle/objectfile/debugentry/Range;Ljava/util/List<Lcom/oracle/objectfile/debuginfo/DebugInfoProvider$DebugFrameSizeChange;>;I)V
MethodParameters:
Name Flags
primaryRange
frameSizeInfos
frameSize
private void addSubRange(com.oracle.objectfile.debugentry.Range, com.oracle.objectfile.debugentry.Range);
descriptor: (Lcom/oracle/objectfile/debugentry/Range;Lcom/oracle/objectfile/debugentry/Range;)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=6, args_size=3
start local 0 start local 1 start local 2 0: getstatic com.oracle.objectfile.debugentry.DebugInfoBase.$assertionsDisabled:Z
ifne 1
aload 1
invokevirtual com.oracle.objectfile.debugentry.Range.isPrimary:()Z
ifne 1
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
1: StackMap locals:
StackMap stack:
getstatic com.oracle.objectfile.debugentry.DebugInfoBase.$assertionsDisabled:Z
ifne 2
aload 2
invokevirtual com.oracle.objectfile.debugentry.Range.isPrimary:()Z
ifeq 2
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
2: StackMap locals:
StackMap stack:
aload 1
invokevirtual com.oracle.objectfile.debugentry.Range.getClassName:()Ljava/lang/String;
astore 3
start local 3 3: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.primaryClassesIndex:Ljava/util/Map;
aload 3
invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
checkcast com.oracle.objectfile.debugentry.ClassEntry
astore 4
start local 4 4: aload 0
aload 2
invokevirtual com.oracle.objectfile.debugentry.DebugInfoBase.ensureFileEntry:(Lcom/oracle/objectfile/debugentry/Range;)Lcom/oracle/objectfile/debugentry/FileEntry;
astore 5
start local 5 5: getstatic com.oracle.objectfile.debugentry.DebugInfoBase.$assertionsDisabled:Z
ifne 6
aload 4
aload 1
invokevirtual com.oracle.objectfile.debugentry.ClassEntry.primaryIndexFor:(Lcom/oracle/objectfile/debugentry/Range;)Ljava/lang/Object;
ifnonnull 6
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
6: StackMap locals: java.lang.String com.oracle.objectfile.debugentry.ClassEntry com.oracle.objectfile.debugentry.FileEntry
StackMap stack:
aload 5
ifnull 8
7: aload 4
aload 2
aload 5
invokevirtual com.oracle.objectfile.debugentry.ClassEntry.addSubRange:(Lcom/oracle/objectfile/debugentry/Range;Lcom/oracle/objectfile/debugentry/FileEntry;)V
8: StackMap locals:
StackMap stack:
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 9 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
0 9 1 primaryRange Lcom/oracle/objectfile/debugentry/Range;
0 9 2 subrange Lcom/oracle/objectfile/debugentry/Range;
3 9 3 className Ljava/lang/String;
4 9 4 classEntry Lcom/oracle/objectfile/debugentry/ClassEntry;
5 9 5 subrangeFileEntry Lcom/oracle/objectfile/debugentry/FileEntry;
MethodParameters:
Name Flags
primaryRange
subrange
private com.oracle.objectfile.debugentry.DirEntry ensureDirEntry(java.nio.file.Path);
descriptor: (Ljava/nio/file/Path;)Lcom/oracle/objectfile/debugentry/DirEntry;
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 1
ifnonnull 2
1: aconst_null
areturn
2: StackMap locals:
StackMap stack:
aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.dirsIndex:Ljava/util/Map;
aload 1
invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
checkcast com.oracle.objectfile.debugentry.DirEntry
astore 2
start local 2 3: aload 2
ifnonnull 6
4: new com.oracle.objectfile.debugentry.DirEntry
dup
aload 1
invokespecial com.oracle.objectfile.debugentry.DirEntry.<init>:(Ljava/nio/file/Path;)V
astore 2
5: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.dirsIndex:Ljava/util/Map;
aload 1
aload 2
invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
pop
6: StackMap locals: com.oracle.objectfile.debugentry.DirEntry
StackMap stack:
aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
0 7 1 filePath Ljava/nio/file/Path;
3 7 2 dirEntry Lcom/oracle/objectfile/debugentry/DirEntry;
MethodParameters:
Name Flags
filePath
public java.nio.ByteOrder getByteOrder();
descriptor: ()Ljava/nio/ByteOrder;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.byteOrder:Ljava/nio/ByteOrder;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
public java.util.LinkedList<com.oracle.objectfile.debugentry.ClassEntry> getPrimaryClasses();
descriptor: ()Ljava/util/LinkedList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.primaryClasses:Ljava/util/LinkedList;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
Signature: ()Ljava/util/LinkedList<Lcom/oracle/objectfile/debugentry/ClassEntry;>;
public java.util.LinkedList<com.oracle.objectfile.debugentry.FileEntry> getFiles();
descriptor: ()Ljava/util/LinkedList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.files:Ljava/util/LinkedList;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
Signature: ()Ljava/util/LinkedList<Lcom/oracle/objectfile/debugentry/FileEntry;>;
public com.oracle.objectfile.debugentry.FileEntry findFile(java.nio.file.Path);
descriptor: (Ljava/nio/file/Path;)Lcom/oracle/objectfile/debugentry/FileEntry;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.filesIndex:Ljava/util/Map;
aload 1
invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
checkcast com.oracle.objectfile.debugentry.FileEntry
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
0 1 1 fullFileName Ljava/nio/file/Path;
MethodParameters:
Name Flags
fullFileName
public com.oracle.objectfile.debugentry.StringTable getStringTable();
descriptor: ()Lcom/oracle/objectfile/debugentry/StringTable;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.stringTable:Lcom/oracle/objectfile/debugentry/StringTable;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
public int debugStringIndex(java.lang.String);
descriptor: (Ljava/lang/String;)I
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.stringTable:Lcom/oracle/objectfile/debugentry/StringTable;
aload 1
invokevirtual com.oracle.objectfile.debugentry.StringTable.debugStringIndex:(Ljava/lang/String;)I
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
0 1 1 string Ljava/lang/String;
MethodParameters:
Name Flags
string
private void lambda$0(com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo);
descriptor: (Lcom/oracle/objectfile/debuginfo/DebugInfoProvider$DebugCodeInfo;)V
flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 1
aload 0
aload 1
invokedynamic accept(Lcom/oracle/objectfile/debugentry/DebugInfoBase;Lcom/oracle/objectfile/debuginfo/DebugInfoProvider$DebugCodeInfo;)Ljava/util/function/Consumer;
Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
Method arguments:
(Ljava/lang/Object;)V
com/oracle/objectfile/debugentry/DebugInfoBase.lambda$1(Lcom/oracle/objectfile/debuginfo/DebugInfoProvider$DebugCodeInfo;Lorg/graalvm/compiler/debug/DebugContext;)V (7)
(Lorg/graalvm/compiler/debug/DebugContext;)V
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.debugContext:(Ljava/util/function/Consumer;)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
0 2 1 debugCodeInfo Lcom/oracle/objectfile/debuginfo/DebugInfoProvider$DebugCodeInfo;
private void lambda$1(com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo, org.graalvm.compiler.debug.DebugContext);
descriptor: (Lcom/oracle/objectfile/debuginfo/DebugInfoProvider$DebugCodeInfo;Lorg/graalvm/compiler/debug/DebugContext;)V
flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
Code:
stack=15, locals=16, args_size=3
start local 0 start local 2 0: aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.fileName:()Ljava/lang/String;
astore 3
start local 3 1: aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.filePath:()Ljava/nio/file/Path;
astore 4
start local 4 2: aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.cachePath:()Ljava/nio/file/Path;
astore 5
start local 5 3: aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.className:()Ljava/lang/String;
ldc "\\$"
ldc "."
invokevirtual java.lang.String.replaceAll:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
astore 6
start local 6 4: aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.methodName:()Ljava/lang/String;
astore 7
start local 7 5: aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.symbolNameForMethod:()Ljava/lang/String;
astore 8
start local 8 6: aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.paramNames:()Ljava/lang/String;
astore 9
start local 9 7: aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.returnTypeName:()Ljava/lang/String;
astore 10
start local 10 8: aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.addressLo:()I
istore 11
start local 11 9: aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.addressHi:()I
istore 12
start local 12 10: aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.line:()I
istore 13
start local 13 11: aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.isDeoptTarget:()Z
istore 14
start local 14 12: new com.oracle.objectfile.debugentry.Range
dup
aload 3
aload 4
aload 5
aload 6
aload 7
aload 8
aload 9
aload 10
aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.stringTable:Lcom/oracle/objectfile/debugentry/StringTable;
iload 11
iload 12
iload 13
iload 14
invokespecial com.oracle.objectfile.debugentry.Range.<init>:(Ljava/lang/String;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/oracle/objectfile/debugentry/StringTable;IIIZ)V
astore 15
start local 15 13: aload 2
iconst_2
ldc "PrimaryRange %s.%s %s %s:%d [0x%x, 0x%x]"
aload 6
aload 7
aload 4
aload 3
iload 13
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
iload 11
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
iload 12
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
invokevirtual org.graalvm.compiler.debug.DebugContext.log:(ILjava/lang/String;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V
14: aload 0
aload 15
aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.getFrameSizeChanges:()Ljava/util/List;
aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.getFrameSize:()I
invokevirtual com.oracle.objectfile.debugentry.DebugInfoBase.addRange:(Lcom/oracle/objectfile/debugentry/Range;Ljava/util/List;I)V
15: aload 1
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo.lineInfoProvider:()Ljava/util/stream/Stream;
aload 0
iload 11
aload 15
aload 2
invokedynamic accept(Lcom/oracle/objectfile/debugentry/DebugInfoBase;ILcom/oracle/objectfile/debugentry/Range;Lorg/graalvm/compiler/debug/DebugContext;)Ljava/util/function/Consumer;
Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
Method arguments:
(Ljava/lang/Object;)V
com/oracle/objectfile/debugentry/DebugInfoBase.lambda$2(ILcom/oracle/objectfile/debugentry/Range;Lorg/graalvm/compiler/debug/DebugContext;Lcom/oracle/objectfile/debuginfo/DebugInfoProvider$DebugLineInfo;)V (7)
(Lcom/oracle/objectfile/debuginfo/DebugInfoProvider$DebugLineInfo;)V
invokeinterface java.util.stream.Stream.forEach:(Ljava/util/function/Consumer;)V
end local 15 end local 14 end local 13 end local 12 end local 11 end local 10 end local 9 end local 8 end local 7 end local 6 end local 5 end local 4 end local 3 16: return
end local 2 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 17 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
0 17 2 debugContext Lorg/graalvm/compiler/debug/DebugContext;
1 16 3 fileName Ljava/lang/String;
2 16 4 filePath Ljava/nio/file/Path;
3 16 5 cachePath Ljava/nio/file/Path;
4 16 6 className Ljava/lang/String;
5 16 7 methodName Ljava/lang/String;
6 16 8 symbolName Ljava/lang/String;
7 16 9 paramNames Ljava/lang/String;
8 16 10 returnTypeName Ljava/lang/String;
9 16 11 lo I
10 16 12 hi I
11 16 13 primaryLine I
12 16 14 isDeoptTarget Z
13 16 15 primaryRange Lcom/oracle/objectfile/debugentry/Range;
private void lambda$2(int, com.oracle.objectfile.debugentry.Range, org.graalvm.compiler.debug.DebugContext, com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugLineInfo);
descriptor: (ILcom/oracle/objectfile/debugentry/Range;Lorg/graalvm/compiler/debug/DebugContext;Lcom/oracle/objectfile/debuginfo/DebugInfoProvider$DebugLineInfo;)V
flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
Code:
stack=15, locals=18, args_size=5
start local 0 start local 4 0: aload 4
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugLineInfo.fileName:()Ljava/lang/String;
astore 5
start local 5 1: aload 4
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugLineInfo.filePath:()Ljava/nio/file/Path;
astore 6
start local 6 2: aload 4
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugLineInfo.className:()Ljava/lang/String;
ldc "\\$"
ldc "."
invokevirtual java.lang.String.replaceAll:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
astore 7
start local 7 3: aload 4
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugLineInfo.methodName:()Ljava/lang/String;
astore 8
start local 8 4: aload 4
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugLineInfo.symbolNameForMethod:()Ljava/lang/String;
astore 9
start local 9 5: iload 1
aload 4
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugLineInfo.addressLo:()I
iadd
istore 10
start local 10 6: iload 1
aload 4
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugLineInfo.addressHi:()I
iadd
istore 11
start local 11 7: aload 4
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugLineInfo.line:()I
istore 12
start local 12 8: aload 4
invokeinterface com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugLineInfo.cachePath:()Ljava/nio/file/Path;
astore 13
start local 13 9: new com.oracle.objectfile.debugentry.Range
dup
aload 5
aload 6
aload 13
aload 7
aload 8
aload 9
ldc ""
ldc ""
aload 0
getfield com.oracle.objectfile.debugentry.DebugInfoBase.stringTable:Lcom/oracle/objectfile/debugentry/StringTable;
iload 10
iload 11
iload 12
10: aload 2
11: invokespecial com.oracle.objectfile.debugentry.Range.<init>:(Ljava/lang/String;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/oracle/objectfile/debugentry/StringTable;IIILcom/oracle/objectfile/debugentry/Range;)V
astore 14
start local 14 12: aload 0
aload 2
aload 14
invokevirtual com.oracle.objectfile.debugentry.DebugInfoBase.addSubRange:(Lcom/oracle/objectfile/debugentry/Range;Lcom/oracle/objectfile/debugentry/Range;)V
13: aconst_null
astore 15
aconst_null
astore 16
14: aload 3
ldc "Subranges"
invokevirtual org.graalvm.compiler.debug.DebugContext.scope:(Ljava/lang/Object;)Lorg/graalvm/compiler/debug/DebugContext$Scope;
astore 17
start local 17 15: aload 3
iconst_3
ldc "SubRange %s.%s %s %s:%d 0x%x, 0x%x]"
aload 7
aload 8
aload 6
aload 5
iload 12
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
iload 10
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
iload 11
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
invokevirtual org.graalvm.compiler.debug.DebugContext.log:(ILjava/lang/String;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V
16: aload 17
ifnull 22
aload 17
invokeinterface org.graalvm.compiler.debug.DebugContext$Scope.close:()V
goto 22
StackMap locals: com.oracle.objectfile.debugentry.DebugInfoBase int com.oracle.objectfile.debugentry.Range org.graalvm.compiler.debug.DebugContext com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugLineInfo java.lang.String java.nio.file.Path java.lang.String java.lang.String java.lang.String int int int java.nio.file.Path com.oracle.objectfile.debugentry.Range java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugContext$Scope
StackMap stack: java.lang.Throwable
17: astore 15
aload 17
ifnull 18
aload 17
invokeinterface org.graalvm.compiler.debug.DebugContext$Scope.close:()V
end local 17 StackMap locals:
StackMap stack:
18: aload 15
athrow
StackMap locals:
StackMap stack: java.lang.Throwable
19: astore 16
aload 15
ifnonnull 20
aload 16
astore 15
goto 21
StackMap locals:
StackMap stack:
20: aload 15
aload 16
if_acmpeq 21
aload 15
aload 16
invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
StackMap locals:
StackMap stack:
21: aload 15
athrow
end local 14 end local 13 end local 12 end local 11 end local 10 end local 9 end local 8 end local 7 end local 6 end local 5 22: StackMap locals: com.oracle.objectfile.debugentry.DebugInfoBase int com.oracle.objectfile.debugentry.Range org.graalvm.compiler.debug.DebugContext com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugLineInfo
StackMap stack:
return
end local 4 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 23 0 this Lcom/oracle/objectfile/debugentry/DebugInfoBase;
0 23 4 debugLineInfo Lcom/oracle/objectfile/debuginfo/DebugInfoProvider$DebugLineInfo;
1 22 5 fileNameAtLine Ljava/lang/String;
2 22 6 filePathAtLine Ljava/nio/file/Path;
3 22 7 classNameAtLine Ljava/lang/String;
4 22 8 methodNameAtLine Ljava/lang/String;
5 22 9 symbolNameAtLine Ljava/lang/String;
6 22 10 loAtLine I
7 22 11 hiAtLine I
8 22 12 line I
9 22 13 cachePathAtLine Ljava/nio/file/Path;
12 22 14 subRange Lcom/oracle/objectfile/debugentry/Range;
15 18 17 s Lorg/graalvm/compiler/debug/DebugContext$Scope;
Exception table:
from to target type
15 16 17 any
14 19 19 any
}
SourceFile: "DebugInfoBase.java"
InnerClasses:
public abstract DebugCodeInfo = com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugCodeInfo of com.oracle.objectfile.debuginfo.DebugInfoProvider
public abstract DebugFrameSizeChange = com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugFrameSizeChange of com.oracle.objectfile.debuginfo.DebugInfoProvider
public abstract DebugLineInfo = com.oracle.objectfile.debuginfo.DebugInfoProvider$DebugLineInfo of com.oracle.objectfile.debuginfo.DebugInfoProvider
public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
public abstract Scope = org.graalvm.compiler.debug.DebugContext$Scope of org.graalvm.compiler.debug.DebugContext