public class java.util.concurrent.atomic.AtomicLong extends java.lang.Number implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.util.concurrent.atomic.AtomicLong
  super_class: java.lang.Number
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1927816293512124184

  private static final sun.misc.Unsafe unsafe;
    descriptor: Lsun/misc/Unsafe;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final long valueOffset;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static final boolean VM_SUPPORTS_LONG_CAS;
    descriptor: Z
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  private volatile long value;
    descriptor: J
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 56
            invokestatic sun.misc.Unsafe.getUnsafe:()Lsun/misc/Unsafe;
            putstatic java.util.concurrent.atomic.AtomicLong.unsafe:Lsun/misc/Unsafe;
         1: .line 65
            invokestatic java.util.concurrent.atomic.AtomicLong.VMSupportsCS8:()Z
            putstatic java.util.concurrent.atomic.AtomicLong.VM_SUPPORTS_LONG_CAS:Z
         2: .line 75
            getstatic java.util.concurrent.atomic.AtomicLong.unsafe:Lsun/misc/Unsafe;
         3: .line 76
            ldc Ljava/util/concurrent/atomic/AtomicLong;
            ldc "value"
            invokevirtual java.lang.Class.getDeclaredField:(Ljava/lang/String;)Ljava/lang/reflect/Field;
         4: .line 75
            invokevirtual sun.misc.Unsafe.objectFieldOffset:(Ljava/lang/reflect/Field;)J
            putstatic java.util.concurrent.atomic.AtomicLong.valueOffset:J
         5: .line 77
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Exception
         6: astore 0 /* ex */
        start local 0 // java.lang.Exception ex
         7: new java.lang.Error
            dup
            aload 0 /* ex */
            invokespecial java.lang.Error.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 0 // java.lang.Exception ex
         8: .line 78
      StackMap locals:
      StackMap stack:
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            7    8     0    ex  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           2     5       6  Class java.lang.Exception

  private static native boolean VMSupportsCS8();
    descriptor: ()Z
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE

  public void <init>(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.util.concurrent.atomic.AtomicLong this
        start local 1 // long initialValue
         0: .line 87
            aload 0 /* this */
            invokespecial java.lang.Number.<init>:()V
         1: .line 88
            aload 0 /* this */
            lload 1 /* initialValue */
            putfield java.util.concurrent.atomic.AtomicLong.value:J
         2: .line 89
            return
        end local 1 // long initialValue
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Ljava/util/concurrent/atomic/AtomicLong;
            0    3     1  initialValue  J
    MethodParameters:
              Name  Flags
      initialValue  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.concurrent.atomic.AtomicLong this
         0: .line 94
            aload 0 /* this */
            invokespecial java.lang.Number.<init>:()V
         1: .line 95
            return
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/util/concurrent/atomic/AtomicLong;

  public final long get();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.concurrent.atomic.AtomicLong this
         0: .line 103
            aload 0 /* this */
            getfield java.util.concurrent.atomic.AtomicLong.value:J
            lreturn
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/concurrent/atomic/AtomicLong;

  public final void set(long);
    descriptor: (J)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.util.concurrent.atomic.AtomicLong this
        start local 1 // long newValue
         0: .line 112
            aload 0 /* this */
            lload 1 /* newValue */
            putfield java.util.concurrent.atomic.AtomicLong.value:J
         1: .line 113
            return
        end local 1 // long newValue
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljava/util/concurrent/atomic/AtomicLong;
            0    2     1  newValue  J
    MethodParameters:
          Name  Flags
      newValue  

  public final void lazySet(long);
    descriptor: (J)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // java.util.concurrent.atomic.AtomicLong this
        start local 1 // long newValue
         0: .line 122
            getstatic java.util.concurrent.atomic.AtomicLong.unsafe:Lsun/misc/Unsafe;
            aload 0 /* this */
            getstatic java.util.concurrent.atomic.AtomicLong.valueOffset:J
            lload 1 /* newValue */
            invokevirtual sun.misc.Unsafe.putOrderedLong:(Ljava/lang/Object;JJ)V
         1: .line 123
            return
        end local 1 // long newValue
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljava/util/concurrent/atomic/AtomicLong;
            0    2     1  newValue  J
    MethodParameters:
          Name  Flags
      newValue  

  public final long getAndSet(long);
    descriptor: (J)J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // java.util.concurrent.atomic.AtomicLong this
        start local 1 // long newValue
         0: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 3 /* current */
        start local 3 // long current
         1: .line 134
            aload 0 /* this */
            lload 3 /* current */
            lload 1 /* newValue */
            invokevirtual java.util.concurrent.atomic.AtomicLong.compareAndSet:(JJ)Z
            ifeq 0
         2: .line 135
            lload 3 /* current */
            lreturn
        end local 3 // long current
        end local 1 // long newValue
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Ljava/util/concurrent/atomic/AtomicLong;
            0    3     1  newValue  J
            1    3     3   current  J
    MethodParameters:
          Name  Flags
      newValue  

  public final boolean compareAndSet(long, long);
    descriptor: (JJ)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=8, locals=5, args_size=3
        start local 0 // java.util.concurrent.atomic.AtomicLong this
        start local 1 // long expect
        start local 3 // long update
         0: .line 149
            getstatic java.util.concurrent.atomic.AtomicLong.unsafe:Lsun/misc/Unsafe;
            aload 0 /* this */
            getstatic java.util.concurrent.atomic.AtomicLong.valueOffset:J
            lload 1 /* expect */
            lload 3 /* update */
            invokevirtual sun.misc.Unsafe.compareAndSwapLong:(Ljava/lang/Object;JJJ)Z
            ireturn
        end local 3 // long update
        end local 1 // long expect
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Ljava/util/concurrent/atomic/AtomicLong;
            0    1     1  expect  J
            0    1     3  update  J
    MethodParameters:
        Name  Flags
      expect  
      update  

  public final boolean weakCompareAndSet(long, long);
    descriptor: (JJ)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=8, locals=5, args_size=3
        start local 0 // java.util.concurrent.atomic.AtomicLong this
        start local 1 // long expect
        start local 3 // long update
         0: .line 165
            getstatic java.util.concurrent.atomic.AtomicLong.unsafe:Lsun/misc/Unsafe;
            aload 0 /* this */
            getstatic java.util.concurrent.atomic.AtomicLong.valueOffset:J
            lload 1 /* expect */
            lload 3 /* update */
            invokevirtual sun.misc.Unsafe.compareAndSwapLong:(Ljava/lang/Object;JJJ)Z
            ireturn
        end local 3 // long update
        end local 1 // long expect
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Ljava/util/concurrent/atomic/AtomicLong;
            0    1     1  expect  J
            0    1     3  update  J
    MethodParameters:
        Name  Flags
      expect  
      update  

  public final long getAndIncrement();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // java.util.concurrent.atomic.AtomicLong this
         0: .line 175
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 1 /* current */
        start local 1 // long current
         1: .line 176
            lload 1 /* current */
            lconst_1
            ladd
            lstore 3 /* next */
        start local 3 // long next
         2: .line 177
            aload 0 /* this */
            lload 1 /* current */
            lload 3 /* next */
            invokevirtual java.util.concurrent.atomic.AtomicLong.compareAndSet:(JJ)Z
            ifeq 0
         3: .line 178
            lload 1 /* current */
            lreturn
        end local 3 // long next
        end local 1 // long current
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Ljava/util/concurrent/atomic/AtomicLong;
            1    4     1  current  J
            2    4     3     next  J

  public final long getAndDecrement();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // java.util.concurrent.atomic.AtomicLong this
         0: .line 189
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 1 /* current */
        start local 1 // long current
         1: .line 190
            lload 1 /* current */
            lconst_1
            lsub
            lstore 3 /* next */
        start local 3 // long next
         2: .line 191
            aload 0 /* this */
            lload 1 /* current */
            lload 3 /* next */
            invokevirtual java.util.concurrent.atomic.AtomicLong.compareAndSet:(JJ)Z
            ifeq 0
         3: .line 192
            lload 1 /* current */
            lreturn
        end local 3 // long next
        end local 1 // long current
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Ljava/util/concurrent/atomic/AtomicLong;
            1    4     1  current  J
            2    4     3     next  J

  public final long getAndAdd(long);
    descriptor: (J)J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // java.util.concurrent.atomic.AtomicLong this
        start local 1 // long delta
         0: .line 204
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 3 /* current */
        start local 3 // long current
         1: .line 205
            lload 3 /* current */
            lload 1 /* delta */
            ladd
            lstore 5 /* next */
        start local 5 // long next
         2: .line 206
            aload 0 /* this */
            lload 3 /* current */
            lload 5 /* next */
            invokevirtual java.util.concurrent.atomic.AtomicLong.compareAndSet:(JJ)Z
            ifeq 0
         3: .line 207
            lload 3 /* current */
            lreturn
        end local 5 // long next
        end local 3 // long current
        end local 1 // long delta
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Ljava/util/concurrent/atomic/AtomicLong;
            0    4     1    delta  J
            1    4     3  current  J
            2    4     5     next  J
    MethodParameters:
       Name  Flags
      delta  

  public final long incrementAndGet();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // java.util.concurrent.atomic.AtomicLong this
         0: .line 218
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 1 /* current */
        start local 1 // long current
         1: .line 219
            lload 1 /* current */
            lconst_1
            ladd
            lstore 3 /* next */
        start local 3 // long next
         2: .line 220
            aload 0 /* this */
            lload 1 /* current */
            lload 3 /* next */
            invokevirtual java.util.concurrent.atomic.AtomicLong.compareAndSet:(JJ)Z
            ifeq 0
         3: .line 221
            lload 3 /* next */
            lreturn
        end local 3 // long next
        end local 1 // long current
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Ljava/util/concurrent/atomic/AtomicLong;
            1    4     1  current  J
            2    4     3     next  J

  public final long decrementAndGet();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // java.util.concurrent.atomic.AtomicLong this
         0: .line 232
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 1 /* current */
        start local 1 // long current
         1: .line 233
            lload 1 /* current */
            lconst_1
            lsub
            lstore 3 /* next */
        start local 3 // long next
         2: .line 234
            aload 0 /* this */
            lload 1 /* current */
            lload 3 /* next */
            invokevirtual java.util.concurrent.atomic.AtomicLong.compareAndSet:(JJ)Z
            ifeq 0
         3: .line 235
            lload 3 /* next */
            lreturn
        end local 3 // long next
        end local 1 // long current
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Ljava/util/concurrent/atomic/AtomicLong;
            1    4     1  current  J
            2    4     3     next  J

  public final long addAndGet(long);
    descriptor: (J)J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // java.util.concurrent.atomic.AtomicLong this
        start local 1 // long delta
         0: .line 247
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 3 /* current */
        start local 3 // long current
         1: .line 248
            lload 3 /* current */
            lload 1 /* delta */
            ladd
            lstore 5 /* next */
        start local 5 // long next
         2: .line 249
            aload 0 /* this */
            lload 3 /* current */
            lload 5 /* next */
            invokevirtual java.util.concurrent.atomic.AtomicLong.compareAndSet:(JJ)Z
            ifeq 0
         3: .line 250
            lload 5 /* next */
            lreturn
        end local 5 // long next
        end local 3 // long current
        end local 1 // long delta
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Ljava/util/concurrent/atomic/AtomicLong;
            0    4     1    delta  J
            1    4     3  current  J
            2    4     5     next  J
    MethodParameters:
       Name  Flags
      delta  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.concurrent.atomic.AtomicLong this
         0: .line 259
            aload 0 /* this */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            invokestatic java.lang.Long.toString:(J)Ljava/lang/String;
            areturn
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/concurrent/atomic/AtomicLong;

  public int intValue();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.concurrent.atomic.AtomicLong this
         0: .line 264
            aload 0 /* this */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            l2i
            ireturn
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/concurrent/atomic/AtomicLong;

  public long longValue();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.concurrent.atomic.AtomicLong this
         0: .line 268
            aload 0 /* this */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lreturn
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/concurrent/atomic/AtomicLong;

  public float floatValue();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.concurrent.atomic.AtomicLong this
         0: .line 272
            aload 0 /* this */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            l2f
            freturn
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/concurrent/atomic/AtomicLong;

  public double doubleValue();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.concurrent.atomic.AtomicLong this
         0: .line 276
            aload 0 /* this */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            l2d
            dreturn
        end local 0 // java.util.concurrent.atomic.AtomicLong this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/concurrent/atomic/AtomicLong;
}
SourceFile: "AtomicLong.java"