public final class com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion
  super_class: java.lang.Object
{
  private long currentSlotOffset;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

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

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

  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 115
            ldc Lcom/oracle/truffle/llvm/runtime/memory/LLVMStack;
            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.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion this
         0: .line 115
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 117
            aload 0 /* this */
            lconst_0
            putfield com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.currentSlotOffset:J
         2: .line 118
            aload 0 /* this */
            bipush 8
            putfield com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.alignment:I
         3: .line 115
            return
        end local 0 // com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/oracle/truffle/llvm/runtime/memory/LLVMStack$UniquesRegion;

  public long addSlot(long, int);
    descriptor: (JI)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion this
        start local 1 // long slotSize
        start local 3 // int slotAlignment
         0: .line 122
            invokestatic com.oracle.truffle.api.CompilerAsserts.neverPartOfCompilation:()V
         1: .line 123
            getstatic com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.$assertionsDisabled:Z
            ifne 2
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.finished:Z
            ifeq 2
            new java.lang.AssertionError
            dup
            ldc "cannot add slots after size was queried"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         2: .line 124
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.$assertionsDisabled:Z
            ifne 3
            iload 3 /* slotAlignment */
            i2l
            invokestatic java.lang.Long.bitCount:(J)I
            iconst_1
            if_icmpeq 3
            new java.lang.AssertionError
            dup
            ldc "alignment must be a power of two"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         3: .line 127
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.currentSlotOffset:J
            iload 3 /* slotAlignment */
            i2l
            ladd
            lconst_1
            lsub
            iload 3 /* slotAlignment */
            ineg
            i2l
            land
            lstore 4 /* slotOffset */
        start local 4 // long slotOffset
         4: .line 128
            aload 0 /* this */
            lload 4 /* slotOffset */
            lload 1 /* slotSize */
            ladd
            putfield com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.currentSlotOffset:J
         5: .line 129
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.alignment:I
            iload 3 /* slotAlignment */
            ior
            invokestatic java.lang.Integer.highestOneBit:(I)I
            putfield com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.alignment:I
         6: .line 130
            lload 4 /* slotOffset */
            lreturn
        end local 4 // long slotOffset
        end local 3 // int slotAlignment
        end local 1 // long slotSize
        end local 0 // com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lcom/oracle/truffle/llvm/runtime/memory/LLVMStack$UniquesRegion;
            0    7     1       slotSize  J
            0    7     3  slotAlignment  I
            4    7     4     slotOffset  J
    MethodParameters:
               Name  Flags
      slotSize       
      slotAlignment  

  public long getSize();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion this
         0: .line 134
            aload 0 /* this */
            iconst_1
            putfield com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.finished:Z
         1: .line 135
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.currentSlotOffset:J
            lreturn
        end local 0 // com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/runtime/memory/LLVMStack$UniquesRegion;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion this
         0: .line 139
            aload 0 /* this */
            invokevirtual com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.getSize:()J
            lconst_0
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/runtime/memory/LLVMStack$UniquesRegion;

  public int getAlignment();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion this
         0: .line 143
            aload 0 /* this */
            iconst_1
            putfield com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.finished:Z
         1: .line 144
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion.alignment:I
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/runtime/memory/LLVMStack$UniquesRegion;
}
SourceFile: "LLVMStack.java"
NestHost: com.oracle.truffle.llvm.runtime.memory.LLVMStack
InnerClasses:
  public final UniquesRegion = com.oracle.truffle.llvm.runtime.memory.LLVMStack$UniquesRegion of com.oracle.truffle.llvm.runtime.memory.LLVMStack