public class jdk.tools.jaotc.binformat.ByteContainer implements jdk.tools.jaotc.binformat.Container
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: jdk.tools.jaotc.binformat.ByteContainer
  super_class: java.lang.Object
{
  private java.nio.ByteBuffer contentBytes;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0002) ACC_PRIVATE

  private java.io.ByteArrayOutputStream contentStream;
    descriptor: Ljava/io/ByteArrayOutputStream;
    flags: (0x0002) ACC_PRIVATE

  private boolean bufferModified;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean hasRelocations;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String containerName;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private final jdk.tools.jaotc.binformat.SymbolTable symbolTable;
    descriptor: Ljdk/tools/jaotc/binformat/SymbolTable;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int sectionId;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.lang.String, jdk.tools.jaotc.binformat.SymbolTable);
    descriptor: (Ljava/lang/String;Ljdk/tools/jaotc/binformat/SymbolTable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
        start local 1 // java.lang.String containerName
        start local 2 // jdk.tools.jaotc.binformat.SymbolTable symbolTable
         0: .line 79
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 74
            aload 0 /* this */
            iconst_m1
            putfield jdk.tools.jaotc.binformat.ByteContainer.sectionId:I
         2: .line 80
            aload 0 /* this */
            aload 1 /* containerName */
            putfield jdk.tools.jaotc.binformat.ByteContainer.containerName:Ljava/lang/String;
         3: .line 81
            aload 0 /* this */
            aload 2 /* symbolTable */
            putfield jdk.tools.jaotc.binformat.ByteContainer.symbolTable:Ljdk/tools/jaotc/binformat/SymbolTable;
         4: .line 82
            aload 0 /* this */
            aconst_null
            putfield jdk.tools.jaotc.binformat.ByteContainer.contentBytes:Ljava/nio/ByteBuffer;
         5: .line 83
            aload 0 /* this */
            iconst_0
            putfield jdk.tools.jaotc.binformat.ByteContainer.bufferModified:Z
         6: .line 84
            aload 0 /* this */
            iconst_0
            putfield jdk.tools.jaotc.binformat.ByteContainer.hasRelocations:Z
         7: .line 85
            aload 0 /* this */
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            putfield jdk.tools.jaotc.binformat.ByteContainer.contentStream:Ljava/io/ByteArrayOutputStream;
         8: .line 86
            return
        end local 2 // jdk.tools.jaotc.binformat.SymbolTable symbolTable
        end local 1 // java.lang.String containerName
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    9     0           this  Ljdk/tools/jaotc/binformat/ByteContainer;
            0    9     1  containerName  Ljava/lang/String;
            0    9     2    symbolTable  Ljdk/tools/jaotc/binformat/SymbolTable;
    MethodParameters:
               Name  Flags
      containerName  
      symbolTable    

  private void updateByteBuffer();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
         0: .line 94
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.bufferModified:Z
            ifne 4
         1: .line 95
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.contentStream:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            putfield jdk.tools.jaotc.binformat.ByteContainer.contentBytes:Ljava/nio/ByteBuffer;
         2: .line 98
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.contentBytes:Ljava/nio/ByteBuffer;
            invokestatic java.nio.ByteOrder.nativeOrder:()Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            pop
         3: .line 99
            goto 5
         4: .line 100
      StackMap locals:
      StackMap stack:
            new java.lang.InternalError
            dup
            ldc "Backing byte buffer no longer in sync with byte stream"
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 102
      StackMap locals:
      StackMap stack:
            return
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljdk/tools/jaotc/binformat/ByteContainer;

  public byte[] getByteArray();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
         0: .line 111
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.bufferModified:Z
            ifne 2
         1: .line 112
            aload 0 /* this */
            invokevirtual jdk.tools.jaotc.binformat.ByteContainer.updateByteBuffer:()V
         2: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.contentBytes:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.array:()[B
            areturn
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/tools/jaotc/binformat/ByteContainer;

  public jdk.tools.jaotc.binformat.ByteContainer appendBytes(byte[], int, int);
    descriptor: ([BII)Ljdk/tools/jaotc/binformat/ByteContainer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
        start local 1 // byte[] newBytes
        start local 2 // int off
        start local 3 // int len
         0: .line 127
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.bufferModified:Z
            ifeq 2
         1: .line 128
            new java.lang.InternalError
            dup
            ldc "Backing byte buffer no longer in sync with byte stream"
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 130
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.contentStream:Ljava/io/ByteArrayOutputStream;
            aload 1 /* newBytes */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
         3: .line 131
            aload 0 /* this */
            areturn
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] newBytes
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Ljdk/tools/jaotc/binformat/ByteContainer;
            0    4     1  newBytes  [B
            0    4     2       off  I
            0    4     3       len  I
    MethodParameters:
          Name  Flags
      newBytes  
      off       
      len       

  public jdk.tools.jaotc.binformat.ByteContainer appendBytes(byte[]);
    descriptor: ([B)Ljdk/tools/jaotc/binformat/ByteContainer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
        start local 1 // byte[] newBytes
         0: .line 135
            aload 0 /* this */
            aload 1 /* newBytes */
            iconst_0
            aload 1 /* newBytes */
            arraylength
            invokevirtual jdk.tools.jaotc.binformat.ByteContainer.appendBytes:([BII)Ljdk/tools/jaotc/binformat/ByteContainer;
            pop
         1: .line 136
            aload 0 /* this */
            areturn
        end local 1 // byte[] newBytes
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljdk/tools/jaotc/binformat/ByteContainer;
            0    2     1  newBytes  [B
    MethodParameters:
          Name  Flags
      newBytes  

  public jdk.tools.jaotc.binformat.ByteContainer appendInt(int);
    descriptor: (I)Ljdk/tools/jaotc/binformat/ByteContainer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
        start local 1 // int i
         0: .line 140
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.bufferModified:Z
            ifeq 2
         1: .line 141
            new java.lang.InternalError
            dup
            ldc "Backing byte buffer no longer in sync with byte stream"
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 143
      StackMap locals:
      StackMap stack:
            iconst_4
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            astore 2 /* b */
        start local 2 // java.nio.ByteBuffer b
         3: .line 144
            aload 2 /* b */
            invokestatic java.nio.ByteOrder.nativeOrder:()Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            pop
         4: .line 145
            aload 2 /* b */
            iload 1 /* i */
            invokevirtual java.nio.ByteBuffer.putInt:(I)Ljava/nio/ByteBuffer;
            pop
         5: .line 146
            aload 2 /* b */
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 3 /* result */
        start local 3 // byte[] result
         6: .line 147
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.contentStream:Ljava/io/ByteArrayOutputStream;
            aload 3 /* result */
            iconst_0
            aload 3 /* result */
            arraylength
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
         7: .line 148
            aload 0 /* this */
            areturn
        end local 3 // byte[] result
        end local 2 // java.nio.ByteBuffer b
        end local 1 // int i
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Ljdk/tools/jaotc/binformat/ByteContainer;
            0    8     1       i  I
            3    8     2       b  Ljava/nio/ByteBuffer;
            6    8     3  result  [B
    MethodParameters:
      Name  Flags
      i     

  public jdk.tools.jaotc.binformat.ByteContainer appendInts(int[]);
    descriptor: ([I)Ljdk/tools/jaotc/binformat/ByteContainer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
        start local 1 // int[] newInts
         0: .line 152
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.bufferModified:Z
            ifeq 2
         1: .line 153
            new java.lang.InternalError
            dup
            ldc "Backing byte buffer no longer in sync with byte stream"
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 155
      StackMap locals:
      StackMap stack:
            iconst_4
            aload 1 /* newInts */
            arraylength
            imul
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            invokestatic java.nio.ByteOrder.nativeOrder:()Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            astore 2 /* b */
        start local 2 // java.nio.ByteBuffer b
         3: .line 156
            aload 1 /* newInts */
            invokestatic java.util.Arrays.stream:([I)Ljava/util/stream/IntStream;
            aload 2 /* b */
            invokedynamic accept(Ljava/nio/ByteBuffer;)Ljava/util/function/IntConsumer;
              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:
                  (I)V
                  jdk/tools/jaotc/binformat/ByteContainer.lambda$0(Ljava/nio/ByteBuffer;I)V (6)
                  (I)V
            invokeinterface java.util.stream.IntStream.forEach:(Ljava/util/function/IntConsumer;)V
         4: .line 157
            aload 2 /* b */
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 3 /* result */
        start local 3 // byte[] result
         5: .line 158
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.contentStream:Ljava/io/ByteArrayOutputStream;
            aload 3 /* result */
            iconst_0
            aload 3 /* result */
            arraylength
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
         6: .line 159
            aload 0 /* this */
            areturn
        end local 3 // byte[] result
        end local 2 // java.nio.ByteBuffer b
        end local 1 // int[] newInts
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Ljdk/tools/jaotc/binformat/ByteContainer;
            0    7     1  newInts  [I
            3    7     2        b  Ljava/nio/ByteBuffer;
            5    7     3   result  [B
    MethodParameters:
         Name  Flags
      newInts  

  public void appendLong(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
        start local 1 // long l
         0: .line 163
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.bufferModified:Z
            ifeq 2
         1: .line 164
            new java.lang.InternalError
            dup
            ldc "Backing byte buffer no longer in sync with byte stream"
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 166
      StackMap locals:
      StackMap stack:
            bipush 8
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            astore 3 /* b */
        start local 3 // java.nio.ByteBuffer b
         3: .line 167
            aload 3 /* b */
            invokestatic java.nio.ByteOrder.nativeOrder:()Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            pop
         4: .line 168
            aload 3 /* b */
            lload 1 /* l */
            invokevirtual java.nio.ByteBuffer.putLong:(J)Ljava/nio/ByteBuffer;
            pop
         5: .line 169
            aload 3 /* b */
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 4 /* result */
        start local 4 // byte[] result
         6: .line 170
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.contentStream:Ljava/io/ByteArrayOutputStream;
            aload 4 /* result */
            iconst_0
            aload 4 /* result */
            arraylength
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
         7: .line 171
            return
        end local 4 // byte[] result
        end local 3 // java.nio.ByteBuffer b
        end local 1 // long l
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Ljdk/tools/jaotc/binformat/ByteContainer;
            0    8     1       l  J
            3    8     3       b  Ljava/nio/ByteBuffer;
            6    8     4  result  [B
    MethodParameters:
      Name  Flags
      l     

  public int getByteStreamSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
         0: .line 179
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.contentStream:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.size:()I
            ireturn
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/tools/jaotc/binformat/ByteContainer;

  public java.lang.String getContainerName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
         0: .line 188
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.containerName:Ljava/lang/String;
            areturn
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/tools/jaotc/binformat/ByteContainer;

  public void putIntAt(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
        start local 1 // int index
        start local 2 // int value
         0: .line 199
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.bufferModified:Z
            ifne 2
         1: .line 200
            aload 0 /* this */
            invokevirtual jdk.tools.jaotc.binformat.ByteContainer.updateByteBuffer:()V
         2: .line 202
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.contentBytes:Ljava/nio/ByteBuffer;
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            pop
         3: .line 203
            aload 0 /* this */
            iconst_1
            putfield jdk.tools.jaotc.binformat.ByteContainer.bufferModified:Z
         4: .line 204
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Ljdk/tools/jaotc/binformat/ByteContainer;
            0    5     1  index  I
            0    5     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public void putLongAt(int, long);
    descriptor: (IJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
        start local 1 // int index
        start local 2 // long value
         0: .line 207
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.bufferModified:Z
            ifne 2
         1: .line 208
            aload 0 /* this */
            invokevirtual jdk.tools.jaotc.binformat.ByteContainer.updateByteBuffer:()V
         2: .line 210
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.contentBytes:Ljava/nio/ByteBuffer;
            iload 1 /* index */
            lload 2 /* value */
            invokevirtual java.nio.ByteBuffer.putLong:(IJ)Ljava/nio/ByteBuffer;
            pop
         3: .line 211
            aload 0 /* this */
            iconst_1
            putfield jdk.tools.jaotc.binformat.ByteContainer.bufferModified:Z
         4: .line 212
            return
        end local 2 // long value
        end local 1 // int index
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Ljdk/tools/jaotc/binformat/ByteContainer;
            0    5     1  index  I
            0    5     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  public void setSectionId(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
        start local 1 // int id
         0: .line 215
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.sectionId:I
            iconst_m1
            if_icmpeq 2
         1: .line 216
            new java.lang.InternalError
            dup
            new java.lang.StringBuilder
            dup
            ldc "Assigning new sectionId (old: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.sectionId:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", new: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 1 /* id */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 218
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* id */
            putfield jdk.tools.jaotc.binformat.ByteContainer.sectionId:I
         3: .line 219
            return
        end local 1 // int id
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/tools/jaotc/binformat/ByteContainer;
            0    4     1    id  I
    MethodParameters:
      Name  Flags
      id    

  public int getSectionId();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
         0: .line 222
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.sectionId:I
            iconst_m1
            if_icmpne 2
         1: .line 223
            new java.lang.InternalError
            dup
            ldc "Using sectionId before assigned"
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 225
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.sectionId:I
            ireturn
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/tools/jaotc/binformat/ByteContainer;

  public jdk.tools.jaotc.binformat.Symbol createSymbol(int, jdk.tools.jaotc.binformat.Symbol$Kind, jdk.tools.jaotc.binformat.Symbol$Binding, int, java.lang.String);
    descriptor: (ILjdk/tools/jaotc/binformat/Symbol$Kind;Ljdk/tools/jaotc/binformat/Symbol$Binding;ILjava/lang/String;)Ljdk/tools/jaotc/binformat/Symbol;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=7, args_size=6
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
        start local 1 // int offset
        start local 2 // jdk.tools.jaotc.binformat.Symbol$Kind kind
        start local 3 // jdk.tools.jaotc.binformat.Symbol$Binding binding
        start local 4 // int size
        start local 5 // java.lang.String name
         0: .line 229
            new jdk.tools.jaotc.binformat.Symbol
            dup
            iload 1 /* offset */
            aload 2 /* kind */
            aload 3 /* binding */
            aload 0 /* this */
            iload 4 /* size */
            aload 5 /* name */
            invokespecial jdk.tools.jaotc.binformat.Symbol.<init>:(ILjdk/tools/jaotc/binformat/Symbol$Kind;Ljdk/tools/jaotc/binformat/Symbol$Binding;Ljdk/tools/jaotc/binformat/ByteContainer;ILjava/lang/String;)V
            astore 6 /* symbol */
        start local 6 // jdk.tools.jaotc.binformat.Symbol symbol
         1: .line 230
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.symbolTable:Ljdk/tools/jaotc/binformat/SymbolTable;
            aload 6 /* symbol */
            invokeinterface jdk.tools.jaotc.binformat.SymbolTable.addSymbol:(Ljdk/tools/jaotc/binformat/Symbol;)V
         2: .line 231
            aload 6 /* symbol */
            areturn
        end local 6 // jdk.tools.jaotc.binformat.Symbol symbol
        end local 5 // java.lang.String name
        end local 4 // int size
        end local 3 // jdk.tools.jaotc.binformat.Symbol$Binding binding
        end local 2 // jdk.tools.jaotc.binformat.Symbol$Kind kind
        end local 1 // int offset
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Ljdk/tools/jaotc/binformat/ByteContainer;
            0    3     1   offset  I
            0    3     2     kind  Ljdk/tools/jaotc/binformat/Symbol$Kind;
            0    3     3  binding  Ljdk/tools/jaotc/binformat/Symbol$Binding;
            0    3     4     size  I
            0    3     5     name  Ljava/lang/String;
            1    3     6   symbol  Ljdk/tools/jaotc/binformat/Symbol;
    MethodParameters:
         Name  Flags
      offset   
      kind     
      binding  
      size     
      name     

  public jdk.tools.jaotc.binformat.GotSymbol createGotSymbol(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljdk/tools/jaotc/binformat/GotSymbol;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
        start local 1 // java.lang.String name
         0: .line 235
            new jdk.tools.jaotc.binformat.GotSymbol
            dup
            getstatic jdk.tools.jaotc.binformat.Symbol$Kind.OBJECT:Ljdk/tools/jaotc/binformat/Symbol$Kind;
            getstatic jdk.tools.jaotc.binformat.Symbol$Binding.LOCAL:Ljdk/tools/jaotc/binformat/Symbol$Binding;
            aload 0 /* this */
            aload 1 /* name */
            invokespecial jdk.tools.jaotc.binformat.GotSymbol.<init>:(Ljdk/tools/jaotc/binformat/Symbol$Kind;Ljdk/tools/jaotc/binformat/Symbol$Binding;Ljdk/tools/jaotc/binformat/ByteContainer;Ljava/lang/String;)V
            astore 2 /* symbol */
        start local 2 // jdk.tools.jaotc.binformat.GotSymbol symbol
         1: .line 236
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.symbolTable:Ljdk/tools/jaotc/binformat/SymbolTable;
            aload 2 /* symbol */
            invokeinterface jdk.tools.jaotc.binformat.SymbolTable.addSymbol:(Ljdk/tools/jaotc/binformat/Symbol;)V
         2: .line 237
            aload 2 /* symbol */
            areturn
        end local 2 // jdk.tools.jaotc.binformat.GotSymbol symbol
        end local 1 // java.lang.String name
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Ljdk/tools/jaotc/binformat/ByteContainer;
            0    3     1    name  Ljava/lang/String;
            1    3     2  symbol  Ljdk/tools/jaotc/binformat/GotSymbol;
    MethodParameters:
      Name  Flags
      name  

  public jdk.tools.jaotc.binformat.GotSymbol createGotSymbol(int, java.lang.String);
    descriptor: (ILjava/lang/String;)Ljdk/tools/jaotc/binformat/GotSymbol;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
        start local 1 // int offset
        start local 2 // java.lang.String name
         0: .line 241
            new jdk.tools.jaotc.binformat.GotSymbol
            dup
            iload 1 /* offset */
            getstatic jdk.tools.jaotc.binformat.Symbol$Kind.OBJECT:Ljdk/tools/jaotc/binformat/Symbol$Kind;
            getstatic jdk.tools.jaotc.binformat.Symbol$Binding.LOCAL:Ljdk/tools/jaotc/binformat/Symbol$Binding;
            aload 0 /* this */
            aload 2 /* name */
            invokespecial jdk.tools.jaotc.binformat.GotSymbol.<init>:(ILjdk/tools/jaotc/binformat/Symbol$Kind;Ljdk/tools/jaotc/binformat/Symbol$Binding;Ljdk/tools/jaotc/binformat/ByteContainer;Ljava/lang/String;)V
            astore 3 /* symbol */
        start local 3 // jdk.tools.jaotc.binformat.GotSymbol symbol
         1: .line 242
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.symbolTable:Ljdk/tools/jaotc/binformat/SymbolTable;
            aload 3 /* symbol */
            invokeinterface jdk.tools.jaotc.binformat.SymbolTable.addSymbol:(Ljdk/tools/jaotc/binformat/Symbol;)V
         2: .line 243
            aload 3 /* symbol */
            areturn
        end local 3 // jdk.tools.jaotc.binformat.GotSymbol symbol
        end local 2 // java.lang.String name
        end local 1 // int offset
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Ljdk/tools/jaotc/binformat/ByteContainer;
            0    3     1  offset  I
            0    3     2    name  Ljava/lang/String;
            1    3     3  symbol  Ljdk/tools/jaotc/binformat/GotSymbol;
    MethodParameters:
        Name  Flags
      offset  
      name    

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
         0: .line 247
            aload 0 /* this */
            aconst_null
            putfield jdk.tools.jaotc.binformat.ByteContainer.contentBytes:Ljava/nio/ByteBuffer;
         1: .line 248
            aload 0 /* this */
            aconst_null
            putfield jdk.tools.jaotc.binformat.ByteContainer.contentStream:Ljava/io/ByteArrayOutputStream;
         2: .line 249
            return
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/tools/jaotc/binformat/ByteContainer;

  public void setHasRelocations();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
         0: .line 252
            aload 0 /* this */
            iconst_1
            putfield jdk.tools.jaotc.binformat.ByteContainer.hasRelocations:Z
         1: .line 253
            return
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/tools/jaotc/binformat/ByteContainer;

  public boolean hasRelocations();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.binformat.ByteContainer this
         0: .line 256
            aload 0 /* this */
            getfield jdk.tools.jaotc.binformat.ByteContainer.hasRelocations:Z
            ireturn
        end local 0 // jdk.tools.jaotc.binformat.ByteContainer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/tools/jaotc/binformat/ByteContainer;

  private static void lambda$0(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // int i
         0: .line 156
            aload 0
            iload 1 /* i */
            invokevirtual java.nio.ByteBuffer.putInt:(I)Ljava/nio/ByteBuffer;
            return
        end local 1 // int i
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     i  I
}
SourceFile: "ByteContainer.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public final Binding = jdk.tools.jaotc.binformat.Symbol$Binding of jdk.tools.jaotc.binformat.Symbol
  public final Kind = jdk.tools.jaotc.binformat.Symbol$Kind of jdk.tools.jaotc.binformat.Symbol