public class com.netflix.hystrix.util.LongAdder extends com.netflix.hystrix.util.Striped64 implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.netflix.hystrix.util.LongAdder
  super_class: com.netflix.hystrix.util.Striped64
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 7249069246863182397

  final long fn(long, long);
    descriptor: (JJ)J
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // com.netflix.hystrix.util.LongAdder this
        start local 1 // long v
        start local 3 // long x
         0: .line 64
            lload 1 /* v */
            lload 3 /* x */
            ladd
            lreturn
        end local 3 // long x
        end local 1 // long v
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/util/LongAdder;
            0    1     1     v  J
            0    1     3     x  J
    MethodParameters:
      Name  Flags
      v     
      x     

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.util.LongAdder this
         0: .line 69
            aload 0 /* this */
            invokespecial com.netflix.hystrix.util.Striped64.<init>:()V
         1: .line 70
            return
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/netflix/hystrix/util/LongAdder;

  public void add(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=13, args_size=2
        start local 0 // com.netflix.hystrix.util.LongAdder this
        start local 1 // long x
         0: .line 79
            aload 0 /* this */
            getfield com.netflix.hystrix.util.LongAdder.cells:[Lcom/netflix/hystrix/util/Striped64$Cell;
            dup
            astore 3 /* as */
        start local 3 // com.netflix.hystrix.util.Striped64$Cell[] as
         1: ifnonnull 3
            aload 0 /* this */
            aload 0 /* this */
            getfield com.netflix.hystrix.util.LongAdder.base:J
            dup2
            lstore 4 /* b */
        start local 4 // long b
         2: lload 4 /* b */
            lload 1 /* x */
            ladd
            invokevirtual com.netflix.hystrix.util.LongAdder.casBase:(JJ)Z
            ifne 13
        end local 4 // long b
         3: .line 80
      StackMap locals: com.netflix.hystrix.util.Striped64$Cell[]
      StackMap stack:
            iconst_1
            istore 11 /* uncontended */
        start local 11 // boolean uncontended
         4: .line 81
            getstatic com.netflix.hystrix.util.LongAdder.threadHashCode:Lcom/netflix/hystrix/util/Striped64$ThreadHashCode;
            invokevirtual com.netflix.hystrix.util.Striped64$ThreadHashCode.get:()Ljava/lang/Object;
            checkcast com.netflix.hystrix.util.Striped64$HashCode
            dup
            astore 8 /* hc */
        start local 8 // com.netflix.hystrix.util.Striped64$HashCode hc
         5: getfield com.netflix.hystrix.util.Striped64$HashCode.code:I
            istore 12 /* h */
        start local 12 // int h
         6: .line 82
            aload 3 /* as */
            ifnull 12
            aload 3 /* as */
            arraylength
            dup
            istore 10 /* n */
        start local 10 // int n
         7: iconst_1
            if_icmplt 12
         8: .line 83
            aload 3 /* as */
            iload 10 /* n */
            iconst_1
            isub
            iload 12 /* h */
            iand
            aaload
            dup
            astore 9 /* a */
        start local 9 // com.netflix.hystrix.util.Striped64$Cell a
         9: ifnull 12
        10: .line 84
            aload 9 /* a */
            aload 9 /* a */
            getfield com.netflix.hystrix.util.Striped64$Cell.value:J
            dup2
            lstore 6 /* v */
        start local 6 // long v
        11: lload 6 /* v */
            lload 1 /* x */
            ladd
            invokevirtual com.netflix.hystrix.util.Striped64$Cell.cas:(JJ)Z
            dup
            istore 11 /* uncontended */
            ifne 13
        end local 10 // int n
        end local 9 // com.netflix.hystrix.util.Striped64$Cell a
        end local 6 // long v
        12: .line 85
      StackMap locals: com.netflix.hystrix.util.LongAdder long com.netflix.hystrix.util.Striped64$Cell[] top top top top com.netflix.hystrix.util.Striped64$HashCode top top int int
      StackMap stack:
            aload 0 /* this */
            lload 1 /* x */
            aload 8 /* hc */
            iload 11 /* uncontended */
            invokevirtual com.netflix.hystrix.util.LongAdder.retryUpdate:(JLcom/netflix/hystrix/util/Striped64$HashCode;Z)V
        end local 12 // int h
        end local 11 // boolean uncontended
        end local 8 // com.netflix.hystrix.util.Striped64$HashCode hc
        13: .line 87
      StackMap locals: com.netflix.hystrix.util.LongAdder long com.netflix.hystrix.util.Striped64$Cell[]
      StackMap stack:
            return
        end local 3 // com.netflix.hystrix.util.Striped64$Cell[] as
        end local 1 // long x
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Lcom/netflix/hystrix/util/LongAdder;
            0   14     1            x  J
            1   14     3           as  [Lcom/netflix/hystrix/util/Striped64$Cell;
            2    3     4            b  J
           11   12     6            v  J
            5   13     8           hc  Lcom/netflix/hystrix/util/Striped64$HashCode;
            9   12     9            a  Lcom/netflix/hystrix/util/Striped64$Cell;
            7   12    10            n  I
            4   13    11  uncontended  Z
            6   13    12            h  I
    MethodParameters:
      Name  Flags
      x     

  public void increment();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.util.LongAdder this
         0: .line 93
            aload 0 /* this */
            lconst_1
            invokevirtual com.netflix.hystrix.util.LongAdder.add:(J)V
         1: .line 94
            return
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/netflix/hystrix/util/LongAdder;

  public void decrement();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.util.LongAdder this
         0: .line 100
            aload 0 /* this */
            ldc -1
            invokevirtual com.netflix.hystrix.util.LongAdder.add:(J)V
         1: .line 101
            return
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/netflix/hystrix/util/LongAdder;

  public long sum();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=1
        start local 0 // com.netflix.hystrix.util.LongAdder this
         0: .line 113
            aload 0 /* this */
            getfield com.netflix.hystrix.util.LongAdder.base:J
            lstore 1 /* sum */
        start local 1 // long sum
         1: .line 114
            aload 0 /* this */
            getfield com.netflix.hystrix.util.LongAdder.cells:[Lcom/netflix/hystrix/util/Striped64$Cell;
            astore 3 /* as */
        start local 3 // com.netflix.hystrix.util.Striped64$Cell[] as
         2: .line 115
            aload 3 /* as */
            ifnull 11
         3: .line 116
            aload 3 /* as */
            arraylength
            istore 4 /* n */
        start local 4 // int n
         4: .line 117
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         5: goto 10
         6: .line 118
      StackMap locals: com.netflix.hystrix.util.LongAdder long com.netflix.hystrix.util.Striped64$Cell[] int int
      StackMap stack:
            aload 3 /* as */
            iload 5 /* i */
            aaload
            astore 6 /* a */
        start local 6 // com.netflix.hystrix.util.Striped64$Cell a
         7: .line 119
            aload 6 /* a */
            ifnull 9
         8: .line 120
            lload 1 /* sum */
            aload 6 /* a */
            getfield com.netflix.hystrix.util.Striped64$Cell.value:J
            ladd
            lstore 1 /* sum */
        end local 6 // com.netflix.hystrix.util.Striped64$Cell a
         9: .line 117
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 5 /* i */
            iload 4 /* n */
            if_icmplt 6
        end local 5 // int i
        end local 4 // int n
        11: .line 123
      StackMap locals:
      StackMap stack:
            lload 1 /* sum */
            lreturn
        end local 3 // com.netflix.hystrix.util.Striped64$Cell[] as
        end local 1 // long sum
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lcom/netflix/hystrix/util/LongAdder;
            1   12     1   sum  J
            2   12     3    as  [Lcom/netflix/hystrix/util/Striped64$Cell;
            4   11     4     n  I
            5   11     5     i  I
            7    9     6     a  Lcom/netflix/hystrix/util/Striped64$Cell;

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.util.LongAdder this
         0: .line 134
            aload 0 /* this */
            lconst_0
            invokevirtual com.netflix.hystrix.util.LongAdder.internalReset:(J)V
         1: .line 135
            return
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/netflix/hystrix/util/LongAdder;

  public long sumThenReset();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=1
        start local 0 // com.netflix.hystrix.util.LongAdder this
         0: .line 148
            aload 0 /* this */
            getfield com.netflix.hystrix.util.LongAdder.base:J
            lstore 1 /* sum */
        start local 1 // long sum
         1: .line 149
            aload 0 /* this */
            getfield com.netflix.hystrix.util.LongAdder.cells:[Lcom/netflix/hystrix/util/Striped64$Cell;
            astore 3 /* as */
        start local 3 // com.netflix.hystrix.util.Striped64$Cell[] as
         2: .line 150
            aload 0 /* this */
            lconst_0
            putfield com.netflix.hystrix.util.LongAdder.base:J
         3: .line 151
            aload 3 /* as */
            ifnull 13
         4: .line 152
            aload 3 /* as */
            arraylength
            istore 4 /* n */
        start local 4 // int n
         5: .line 153
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         6: goto 12
         7: .line 154
      StackMap locals: com.netflix.hystrix.util.LongAdder long com.netflix.hystrix.util.Striped64$Cell[] int int
      StackMap stack:
            aload 3 /* as */
            iload 5 /* i */
            aaload
            astore 6 /* a */
        start local 6 // com.netflix.hystrix.util.Striped64$Cell a
         8: .line 155
            aload 6 /* a */
            ifnull 11
         9: .line 156
            lload 1 /* sum */
            aload 6 /* a */
            getfield com.netflix.hystrix.util.Striped64$Cell.value:J
            ladd
            lstore 1 /* sum */
        10: .line 157
            aload 6 /* a */
            lconst_0
            putfield com.netflix.hystrix.util.Striped64$Cell.value:J
        end local 6 // com.netflix.hystrix.util.Striped64$Cell a
        11: .line 153
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 5 /* i */
            iload 4 /* n */
            if_icmplt 7
        end local 5 // int i
        end local 4 // int n
        13: .line 161
      StackMap locals:
      StackMap stack:
            lload 1 /* sum */
            lreturn
        end local 3 // com.netflix.hystrix.util.Striped64$Cell[] as
        end local 1 // long sum
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lcom/netflix/hystrix/util/LongAdder;
            1   14     1   sum  J
            2   14     3    as  [Lcom/netflix/hystrix/util/Striped64$Cell;
            5   13     4     n  I
            6   13     5     i  I
            8   11     6     a  Lcom/netflix/hystrix/util/Striped64$Cell;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.util.LongAdder this
         0: .line 169
            aload 0 /* this */
            invokevirtual com.netflix.hystrix.util.LongAdder.sum:()J
            invokestatic java.lang.Long.toString:(J)Ljava/lang/String;
            areturn
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/util/LongAdder;

  public long longValue();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.util.LongAdder this
         0: .line 178
            aload 0 /* this */
            invokevirtual com.netflix.hystrix.util.LongAdder.sum:()J
            lreturn
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/util/LongAdder;

  public int intValue();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.util.LongAdder this
         0: .line 186
            aload 0 /* this */
            invokevirtual com.netflix.hystrix.util.LongAdder.sum:()J
            l2i
            ireturn
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/util/LongAdder;

  public float floatValue();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.util.LongAdder this
         0: .line 194
            aload 0 /* this */
            invokevirtual com.netflix.hystrix.util.LongAdder.sum:()J
            l2f
            freturn
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/util/LongAdder;

  public double doubleValue();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.util.LongAdder this
         0: .line 202
            aload 0 /* this */
            invokevirtual com.netflix.hystrix.util.LongAdder.sum:()J
            l2d
            dreturn
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/util/LongAdder;

  private void writeObject(java.io.ObjectOutputStream);
    descriptor: (Ljava/io/ObjectOutputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.util.LongAdder this
        start local 1 // java.io.ObjectOutputStream s
         0: .line 207
            aload 1 /* s */
            invokevirtual java.io.ObjectOutputStream.defaultWriteObject:()V
         1: .line 208
            aload 1 /* s */
            aload 0 /* this */
            invokevirtual com.netflix.hystrix.util.LongAdder.sum:()J
            invokevirtual java.io.ObjectOutputStream.writeLong:(J)V
         2: .line 209
            return
        end local 1 // java.io.ObjectOutputStream s
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/netflix/hystrix/util/LongAdder;
            0    3     1     s  Ljava/io/ObjectOutputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.util.LongAdder this
        start local 1 // java.io.ObjectInputStream s
         0: .line 213
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 214
            aload 0 /* this */
            iconst_0
            putfield com.netflix.hystrix.util.LongAdder.busy:I
         2: .line 215
            aload 0 /* this */
            aconst_null
            putfield com.netflix.hystrix.util.LongAdder.cells:[Lcom/netflix/hystrix/util/Striped64$Cell;
         3: .line 216
            aload 0 /* this */
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readLong:()J
            putfield com.netflix.hystrix.util.LongAdder.base:J
         4: .line 217
            return
        end local 1 // java.io.ObjectInputStream s
        end local 0 // com.netflix.hystrix.util.LongAdder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/netflix/hystrix/util/LongAdder;
            0    5     1     s  Ljava/io/ObjectInputStream;
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      s     
}
SourceFile: "LongAdder.java"
InnerClasses:
  final Cell = com.netflix.hystrix.util.Striped64$Cell of com.netflix.hystrix.util.Striped64
  final HashCode = com.netflix.hystrix.util.Striped64$HashCode of com.netflix.hystrix.util.Striped64
  final ThreadHashCode = com.netflix.hystrix.util.Striped64$ThreadHashCode of com.netflix.hystrix.util.Striped64