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

  int fileOffset;
    descriptor: I
    flags: (0x0000) 

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // jdk.tools.jaotc.binformat.macho.MachORelocTable this
        start local 1 // int numsects
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iload 1 /* numsects */
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield jdk.tools.jaotc.binformat.macho.MachORelocTable.relocEntries:Ljava/util/ArrayList;
         2: .line 39
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 6
         4: .line 40
      StackMap locals: jdk.tools.jaotc.binformat.macho.MachORelocTable int int
      StackMap stack:
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.macho.MachORelocTable.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 39
            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 42
            return
        end local 1 // int numsects
        end local 0 // jdk.tools.jaotc.binformat.macho.MachORelocTable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Ljdk/tools/jaotc/binformat/macho/MachORelocTable;
            0    8     1  numsects  I
            3    7     2         i  I
    MethodParameters:
          Name  Flags
      numsects  

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

  static int getAlign();
    descriptor: ()I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 50
            iconst_4
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  byte[] getRelocData(int);
    descriptor: (I)[B
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // jdk.tools.jaotc.binformat.macho.MachORelocTable this
        start local 1 // int sectionIndex
         0: .line 60
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.macho.MachORelocTable.relocEntries:Ljava/util/ArrayList;
            iload 1 /* sectionIndex */
            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 62
            aload 2 /* entryList */
            invokevirtual java.util.ArrayList.size:()I
            ifne 3
         2: .line 63
            aconst_null
            areturn
         3: .line 65
      StackMap locals: java.util.ArrayList
      StackMap stack:
            aload 2 /* entryList */
            invokevirtual java.util.ArrayList.size:()I
            getstatic jdk.tools.jaotc.binformat.macho.MachO$reloc_info.totalsize:I
            imul
            invokestatic jdk.tools.jaotc.binformat.macho.MachOByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            astore 3 /* relocData */
        start local 3 // java.nio.ByteBuffer relocData
         4: .line 68
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         5: goto 9
         6: .line 69
      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.macho.MachORelocEntry
            astore 5 /* entry */
        start local 5 // jdk.tools.jaotc.binformat.macho.MachORelocEntry entry
         7: .line 70
            aload 3 /* relocData */
            aload 5 /* entry */
            invokevirtual jdk.tools.jaotc.binformat.macho.MachORelocEntry.getArray:()[B
            invokevirtual java.nio.ByteBuffer.put:([B)Ljava/nio/ByteBuffer;
            pop
        end local 5 // jdk.tools.jaotc.binformat.macho.MachORelocEntry entry
         8: .line 68
            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 73
            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 sectionIndex
        end local 0 // jdk.tools.jaotc.binformat.macho.MachORelocTable this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   11     0          this  Ljdk/tools/jaotc/binformat/macho/MachORelocTable;
            0   11     1  sectionIndex  I
            1   11     2     entryList  Ljava/util/ArrayList<Ljdk/tools/jaotc/binformat/macho/MachORelocEntry;>;
            4   11     3     relocData  Ljava/nio/ByteBuffer;
            5   10     4             i  I
            7    8     5         entry  Ljdk/tools/jaotc/binformat/macho/MachORelocEntry;
    MethodParameters:
              Name  Flags
      sectionIndex  
}
SourceFile: "MachORelocTable.java"
InnerClasses:
  final reloc_info = jdk.tools.jaotc.binformat.macho.MachO$reloc_info of jdk.tools.jaotc.binformat.macho.MachO