final class com.oracle.objectfile.pecoff.PECoffSectionStruct
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.oracle.objectfile.pecoff.PECoffSectionStruct
  super_class: java.lang.Object
{
  private final java.nio.ByteBuffer section;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int sectionIndex;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int align;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  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: .line 33
            ldc Lcom/oracle/objectfile/pecoff/PECoffSectionStruct;
            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.pecoff.PECoffSectionStruct.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(java.lang.String, int, int, int);
    descriptor: (Ljava/lang/String;III)V
    flags: (0x0000) 
    Code:
      stack=5, locals=9, args_size=5
        start local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
        start local 1 // java.lang.String sectName
        start local 2 // int sectFlags0
        start local 3 // int sectAlign
        start local 4 // int sectIndex
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            aload 0 /* this */
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.totalsize:I
            invokestatic com.oracle.objectfile.pecoff.PECoffByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            putfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
         2: .line 43
            aload 1 /* sectName */
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            astore 5 /* sectionName */
        start local 5 // byte[] sectionName
         3: .line 44
            aload 5 /* sectionName */
            arraylength
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.Name:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.sz:I
            if_icmpgt 4
            aload 5 /* sectionName */
            arraylength
            goto 5
      StackMap locals: com.oracle.objectfile.pecoff.PECoffSectionStruct java.lang.String int int int byte[]
      StackMap stack:
         4: getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.Name:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.sz:I
      StackMap locals:
      StackMap stack: int
         5: istore 6 /* max */
        start local 6 // int max
         6: .line 46
            getstatic com.oracle.objectfile.pecoff.PECoffSectionStruct.$assertionsDisabled:Z
            ifne 8
            iload 3 /* sectAlign */
            iconst_1
            if_icmplt 7
            iload 3 /* sectAlign */
            sipush 1024
            if_icmpgt 7
            iload 3 /* sectAlign */
            iload 3 /* sectAlign */
            iconst_1
            isub
            iand
            ifeq 8
      StackMap locals: int
      StackMap stack:
         7: new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "section alignment is not valid: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 3 /* sectAlign */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         8: .line 47
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* sectAlign */
            putfield com.oracle.objectfile.pecoff.PECoffSectionStruct.align:I
         9: .line 50
            bipush 32
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.align:I
            invokestatic java.lang.Integer.numberOfLeadingZeros:(I)I
            isub
            bipush 20
            ishl
            istore 7 /* sectAlignBits */
        start local 7 // int sectAlignBits
        10: .line 52
            iload 2 /* sectFlags0 */
            ldc -15728641
            iand
            iload 7 /* sectAlignBits */
            ldc 15728640
            iand
            ior
            istore 8 /* sectFlags */
        start local 8 // int sectFlags
        11: .line 54
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            aload 5 /* sectionName */
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.Name:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            iload 6 /* max */
            invokevirtual java.nio.ByteBuffer.put:([BII)Ljava/nio/ByteBuffer;
            pop
        12: .line 56
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.VirtualSize:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            iconst_0
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            pop
        13: .line 57
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.VirtualAddress:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            iconst_0
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            pop
        14: .line 58
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.PointerToLinenumbers:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            iconst_0
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            pop
        15: .line 59
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.NumberOfLinenumbers:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            iconst_0
            invokevirtual java.nio.ByteBuffer.putChar:(IC)Ljava/nio/ByteBuffer;
            pop
        16: .line 61
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.Characteristics:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            iload 8 /* sectFlags */
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            pop
        17: .line 63
            aload 0 /* this */
            iload 4 /* sectIndex */
            putfield com.oracle.objectfile.pecoff.PECoffSectionStruct.sectionIndex:I
        18: .line 64
            return
        end local 8 // int sectFlags
        end local 7 // int sectAlignBits
        end local 6 // int max
        end local 5 // byte[] sectionName
        end local 4 // int sectIndex
        end local 3 // int sectAlign
        end local 2 // int sectFlags0
        end local 1 // java.lang.String sectName
        end local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   19     0           this  Lcom/oracle/objectfile/pecoff/PECoffSectionStruct;
            0   19     1       sectName  Ljava/lang/String;
            0   19     2     sectFlags0  I
            0   19     3      sectAlign  I
            0   19     4      sectIndex  I
            3   19     5    sectionName  [B
            6   19     6            max  I
           10   19     7  sectAlignBits  I
           11   19     8      sectFlags  I
    MethodParameters:
            Name  Flags
      sectName    
      sectFlags0  
      sectAlign   
      sectIndex   

  int getSize();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
         0: .line 67
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.SizeOfRawData:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            invokevirtual java.nio.ByteBuffer.getInt:(I)I
            ireturn
        end local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/pecoff/PECoffSectionStruct;

  int getDataAlign();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
         0: .line 71
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.align:I
            ireturn
        end local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/pecoff/PECoffSectionStruct;

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

  byte[] getArray();
    descriptor: ()[B
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
         0: .line 80
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.array:()[B
            areturn
        end local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/pecoff/PECoffSectionStruct;

  void setOffset(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
        start local 1 // int offset
         0: .line 84
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.PointerToRawData:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            iload 1 /* offset */
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            pop
         1: .line 85
            return
        end local 1 // int offset
        end local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/oracle/objectfile/pecoff/PECoffSectionStruct;
            0    2     1  offset  I
    MethodParameters:
        Name  Flags
      offset  

  void setSize(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
        start local 1 // int size
         0: .line 88
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.SizeOfRawData:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            iload 1 /* size */
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            pop
         1: .line 89
            return
        end local 1 // int size
        end local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/objectfile/pecoff/PECoffSectionStruct;
            0    2     1  size  I
    MethodParameters:
      Name  Flags
      size  

  void setVirtualAddress(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
        start local 1 // int addr
         0: .line 92
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.VirtualAddress:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            iload 1 /* addr */
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            pop
         1: .line 93
            return
        end local 1 // int addr
        end local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/objectfile/pecoff/PECoffSectionStruct;
            0    2     1  addr  I
    MethodParameters:
      Name  Flags
      addr  

  int getOffset();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
         0: .line 96
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.PointerToRawData:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            invokevirtual java.nio.ByteBuffer.getInt:(I)I
            ireturn
        end local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/pecoff/PECoffSectionStruct;

  void setReloff(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
        start local 1 // int offset
         0: .line 100
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.PointerToRelocations:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            iload 1 /* offset */
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            pop
         1: .line 101
            return
        end local 1 // int offset
        end local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/oracle/objectfile/pecoff/PECoffSectionStruct;
            0    2     1  offset  I
    MethodParameters:
        Name  Flags
      offset  

  void setRelcount(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
        start local 1 // int count
         0: .line 107
            iload 1 /* count */
            ldc 65535
            if_icmple 6
         1: .line 109
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.NumberOfRelocations:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            ldc 65535
            invokevirtual java.nio.ByteBuffer.putChar:(IC)Ljava/nio/ByteBuffer;
            pop
         2: .line 110
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.Characteristics:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            invokevirtual java.nio.ByteBuffer.getInt:(I)I
            istore 2 /* flags */
        start local 2 // int flags
         3: .line 111
            iload 2 /* flags */
            ldc 16777216
            ior
            istore 2 /* flags */
         4: .line 112
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.Characteristics:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            iload 2 /* flags */
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            pop
        end local 2 // int flags
         5: .line 113
            goto 7
         6: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.section:Ljava/nio/ByteBuffer;
            getstatic com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.NumberOfRelocations:Lcom/oracle/objectfile/pecoff/PECoff$IMAGE_SECTION_HEADER;
            getfield com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER.off:I
            iload 1 /* count */
            i2c
            invokevirtual java.nio.ByteBuffer.putChar:(IC)Ljava/nio/ByteBuffer;
            pop
         7: .line 116
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int count
        end local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lcom/oracle/objectfile/pecoff/PECoffSectionStruct;
            0    8     1  count  I
            3    5     2  flags  I
    MethodParameters:
       Name  Flags
      count  

  int getSectionId();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
         0: .line 119
            aload 0 /* this */
            getfield com.oracle.objectfile.pecoff.PECoffSectionStruct.sectionIndex:I
            ireturn
        end local 0 // com.oracle.objectfile.pecoff.PECoffSectionStruct this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/pecoff/PECoffSectionStruct;
}
SourceFile: "PECoffSectionStruct.java"
InnerClasses:
  final IMAGE_SECTION_HEADER = com.oracle.objectfile.pecoff.PECoff$IMAGE_SECTION_HEADER of com.oracle.objectfile.pecoff.PECoff