final class jdk.tools.jaotc.binformat.elf.ElfRelocTable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: jdk.tools.jaotc.binformat.elf.ElfRelocTable
  super_class: java.lang.Object
{
  private final java.util.ArrayList<java.util.ArrayList<jdk.tools.jaotc.binformat.elf.ElfRelocEntry>> relocEntries;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayList<Ljava/util/ArrayList<Ljdk/tools/jaotc/binformat/elf/ElfRelocEntry;>;>;

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // jdk.tools.jaotc.binformat.elf.ElfRelocTable this
        start local 1 // int numsects
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iload 1 /* numsects */
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield jdk.tools.jaotc.binformat.elf.ElfRelocTable.relocEntries:Ljava/util/ArrayList;
         2: .line 38
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 6
         4: .line 39
      StackMap locals: jdk.tools.jaotc.binformat.elf.ElfRelocTable int int
      StackMap stack:
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.elf.ElfRelocTable.relocEntries:Ljava/util/ArrayList;
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         5: .line 38
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            iload 1 /* numsects */
            if_icmplt 4
        end local 2 // int i
         7: .line 41
            return
        end local 1 // int numsects
        end local 0 // jdk.tools.jaotc.binformat.elf.ElfRelocTable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Ljdk/tools/jaotc/binformat/elf/ElfRelocTable;
            0    8     1  numsects  I
            3    7     2         i  I
    MethodParameters:
          Name  Flags
      numsects  

  void createRelocationEntry(int, int, int, int, int);
    descriptor: (IIIII)V
    flags: (0x0000) 
    Code:
      stack=6, locals=7, args_size=6
        start local 0 // jdk.tools.jaotc.binformat.elf.ElfRelocTable this
        start local 1 // int sectindex
        start local 2 // int offset
        start local 3 // int symno
        start local 4 // int type
        start local 5 // int addend
         0: .line 44
            new jdk.tools.jaotc.binformat.elf.ElfRelocEntry
            dup
            iload 2 /* offset */
            iload 3 /* symno */
            iload 4 /* type */
            iload 5 /* addend */
            invokespecial jdk.tools.jaotc.binformat.elf.ElfRelocEntry.<init>:(IIII)V
            astore 6 /* entry */
        start local 6 // jdk.tools.jaotc.binformat.elf.ElfRelocEntry entry
         1: .line 45
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.elf.ElfRelocTable.relocEntries:Ljava/util/ArrayList;
            iload 1 /* sectindex */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast java.util.ArrayList
            aload 6 /* entry */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         2: .line 46
            return
        end local 6 // jdk.tools.jaotc.binformat.elf.ElfRelocEntry entry
        end local 5 // int addend
        end local 4 // int type
        end local 3 // int symno
        end local 2 // int offset
        end local 1 // int sectindex
        end local 0 // jdk.tools.jaotc.binformat.elf.ElfRelocTable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Ljdk/tools/jaotc/binformat/elf/ElfRelocTable;
            0    3     1  sectindex  I
            0    3     2     offset  I
            0    3     3      symno  I
            0    3     4       type  I
            0    3     5     addend  I
            1    3     6      entry  Ljdk/tools/jaotc/binformat/elf/ElfRelocEntry;
    MethodParameters:
           Name  Flags
      sectindex  
      offset     
      symno      
      type       
      addend     

  int getNumRelocs(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.tools.jaotc.binformat.elf.ElfRelocTable this
        start local 1 // int section_index
         0: .line 49
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.elf.ElfRelocTable.relocEntries:Ljava/util/ArrayList;
            iload 1 /* section_index */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast java.util.ArrayList
            invokevirtual java.util.ArrayList.size:()I
            ireturn
        end local 1 // int section_index
        end local 0 // jdk.tools.jaotc.binformat.elf.ElfRelocTable this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Ljdk/tools/jaotc/binformat/elf/ElfRelocTable;
            0    1     1  section_index  I
    MethodParameters:
               Name  Flags
      section_index  

  byte[] getRelocData(int);
    descriptor: (I)[B
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // jdk.tools.jaotc.binformat.elf.ElfRelocTable this
        start local 1 // int section_index
         0: .line 55
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.elf.ElfRelocTable.relocEntries:Ljava/util/ArrayList;
            iload 1 /* section_index */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast java.util.ArrayList
            astore 2 /* entryList */
        start local 2 // java.util.ArrayList entryList
         1: .line 57
            aload 2 /* entryList */
            invokevirtual java.util.ArrayList.size:()I
            ifne 3
         2: .line 58
            aconst_null
            areturn
         3: .line 60
      StackMap locals: java.util.ArrayList
      StackMap stack:
            aload 2 /* entryList */
            invokevirtual java.util.ArrayList.size:()I
            getstatic jdk.tools.jaotc.binformat.elf.Elf$Elf64_Rela.totalsize:I
            imul
            invokestatic jdk.tools.jaotc.binformat.elf.ElfByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            astore 3 /* relocData */
        start local 3 // java.nio.ByteBuffer relocData
         4: .line 63
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         5: goto 9
         6: .line 64
      StackMap locals: java.nio.ByteBuffer int
      StackMap stack:
            aload 2 /* entryList */
            iload 4 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast jdk.tools.jaotc.binformat.elf.ElfRelocEntry
            astore 5 /* entry */
        start local 5 // jdk.tools.jaotc.binformat.elf.ElfRelocEntry entry
         7: .line 65
            aload 3 /* relocData */
            aload 5 /* entry */
            invokevirtual jdk.tools.jaotc.binformat.elf.ElfRelocEntry.getArray:()[B
            invokevirtual java.nio.ByteBuffer.put:([B)Ljava/nio/ByteBuffer;
            pop
        end local 5 // jdk.tools.jaotc.binformat.elf.ElfRelocEntry entry
         8: .line 63
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 4 /* i */
            aload 2 /* entryList */
            invokevirtual java.util.ArrayList.size:()I
            if_icmplt 6
        end local 4 // int i
        10: .line 68
            aload 3 /* relocData */
            invokevirtual java.nio.ByteBuffer.array:()[B
            areturn
        end local 3 // java.nio.ByteBuffer relocData
        end local 2 // java.util.ArrayList entryList
        end local 1 // int section_index
        end local 0 // jdk.tools.jaotc.binformat.elf.ElfRelocTable this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   11     0           this  Ljdk/tools/jaotc/binformat/elf/ElfRelocTable;
            0   11     1  section_index  I
            1   11     2      entryList  Ljava/util/ArrayList<Ljdk/tools/jaotc/binformat/elf/ElfRelocEntry;>;
            4   11     3      relocData  Ljava/nio/ByteBuffer;
            5   10     4              i  I
            7    8     5          entry  Ljdk/tools/jaotc/binformat/elf/ElfRelocEntry;
    MethodParameters:
               Name  Flags
      section_index  
}
SourceFile: "ElfRelocTable.java"
InnerClasses:
  final Elf64_Rela = jdk.tools.jaotc.binformat.elf.Elf$Elf64_Rela of jdk.tools.jaotc.binformat.elf.Elf