public class org.eclipse.jetty.util.Atomics
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.util.Atomics
  super_class: java.lang.Object
{
  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.Atomics this
         0: .line 26
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 28
            return
        end local 0 // org.eclipse.jetty.util.Atomics this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/util/Atomics;

  public static boolean updateMin(java.util.concurrent.atomic.AtomicLong, long);
    descriptor: (Ljava/util/concurrent/atomic/AtomicLong;J)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // java.util.concurrent.atomic.AtomicLong currentMin
        start local 1 // long newValue
         0: .line 32
            aload 0 /* currentMin */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 3 /* oldValue */
        start local 3 // long oldValue
         1: .line 33
            goto 5
         2: .line 35
      StackMap locals: long
      StackMap stack:
            aload 0 /* currentMin */
            lload 3 /* oldValue */
            lload 1 /* newValue */
            invokevirtual java.util.concurrent.atomic.AtomicLong.compareAndSet:(JJ)Z
            ifeq 4
         3: .line 36
            iconst_1
            ireturn
         4: .line 37
      StackMap locals:
      StackMap stack:
            aload 0 /* currentMin */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 3 /* oldValue */
         5: .line 33
      StackMap locals:
      StackMap stack:
            lload 1 /* newValue */
            lload 3 /* oldValue */
            lcmp
            iflt 2
         6: .line 39
            iconst_0
            ireturn
        end local 3 // long oldValue
        end local 1 // long newValue
        end local 0 // java.util.concurrent.atomic.AtomicLong currentMin
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0  currentMin  Ljava/util/concurrent/atomic/AtomicLong;
            0    7     1    newValue  J
            1    7     3    oldValue  J
    MethodParameters:
            Name  Flags
      currentMin  
      newValue    

  public static boolean updateMin(java.util.concurrent.atomic.AtomicInteger, int);
    descriptor: (Ljava/util/concurrent/atomic/AtomicInteger;I)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.util.concurrent.atomic.AtomicInteger currentMin
        start local 1 // int newValue
         0: .line 44
            aload 0 /* currentMin */
            invokevirtual java.util.concurrent.atomic.AtomicInteger.get:()I
            istore 2 /* oldValue */
        start local 2 // int oldValue
         1: .line 45
            goto 5
         2: .line 47
      StackMap locals: int
      StackMap stack:
            aload 0 /* currentMin */
            iload 2 /* oldValue */
            iload 1 /* newValue */
            invokevirtual java.util.concurrent.atomic.AtomicInteger.compareAndSet:(II)Z
            ifeq 4
         3: .line 48
            iconst_1
            ireturn
         4: .line 49
      StackMap locals:
      StackMap stack:
            aload 0 /* currentMin */
            invokevirtual java.util.concurrent.atomic.AtomicInteger.get:()I
            istore 2 /* oldValue */
         5: .line 45
      StackMap locals:
      StackMap stack:
            iload 1 /* newValue */
            iload 2 /* oldValue */
            if_icmplt 2
         6: .line 51
            iconst_0
            ireturn
        end local 2 // int oldValue
        end local 1 // int newValue
        end local 0 // java.util.concurrent.atomic.AtomicInteger currentMin
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0  currentMin  Ljava/util/concurrent/atomic/AtomicInteger;
            0    7     1    newValue  I
            1    7     2    oldValue  I
    MethodParameters:
            Name  Flags
      currentMin  
      newValue    

  public static boolean updateMax(java.util.concurrent.atomic.AtomicLong, long);
    descriptor: (Ljava/util/concurrent/atomic/AtomicLong;J)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // java.util.concurrent.atomic.AtomicLong currentMax
        start local 1 // long newValue
         0: .line 56
            aload 0 /* currentMax */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 3 /* oldValue */
        start local 3 // long oldValue
         1: .line 57
            goto 5
         2: .line 59
      StackMap locals: long
      StackMap stack:
            aload 0 /* currentMax */
            lload 3 /* oldValue */
            lload 1 /* newValue */
            invokevirtual java.util.concurrent.atomic.AtomicLong.compareAndSet:(JJ)Z
            ifeq 4
         3: .line 60
            iconst_1
            ireturn
         4: .line 61
      StackMap locals:
      StackMap stack:
            aload 0 /* currentMax */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 3 /* oldValue */
         5: .line 57
      StackMap locals:
      StackMap stack:
            lload 1 /* newValue */
            lload 3 /* oldValue */
            lcmp
            ifgt 2
         6: .line 63
            iconst_0
            ireturn
        end local 3 // long oldValue
        end local 1 // long newValue
        end local 0 // java.util.concurrent.atomic.AtomicLong currentMax
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0  currentMax  Ljava/util/concurrent/atomic/AtomicLong;
            0    7     1    newValue  J
            1    7     3    oldValue  J
    MethodParameters:
            Name  Flags
      currentMax  
      newValue    

  public static boolean updateMax(java.util.concurrent.atomic.AtomicInteger, int);
    descriptor: (Ljava/util/concurrent/atomic/AtomicInteger;I)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.util.concurrent.atomic.AtomicInteger currentMax
        start local 1 // int newValue
         0: .line 68
            aload 0 /* currentMax */
            invokevirtual java.util.concurrent.atomic.AtomicInteger.get:()I
            istore 2 /* oldValue */
        start local 2 // int oldValue
         1: .line 69
            goto 5
         2: .line 71
      StackMap locals: int
      StackMap stack:
            aload 0 /* currentMax */
            iload 2 /* oldValue */
            iload 1 /* newValue */
            invokevirtual java.util.concurrent.atomic.AtomicInteger.compareAndSet:(II)Z
            ifeq 4
         3: .line 72
            iconst_1
            ireturn
         4: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* currentMax */
            invokevirtual java.util.concurrent.atomic.AtomicInteger.get:()I
            istore 2 /* oldValue */
         5: .line 69
      StackMap locals:
      StackMap stack:
            iload 1 /* newValue */
            iload 2 /* oldValue */
            if_icmpgt 2
         6: .line 75
            iconst_0
            ireturn
        end local 2 // int oldValue
        end local 1 // int newValue
        end local 0 // java.util.concurrent.atomic.AtomicInteger currentMax
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0  currentMax  Ljava/util/concurrent/atomic/AtomicInteger;
            0    7     1    newValue  I
            1    7     2    oldValue  I
    MethodParameters:
            Name  Flags
      currentMax  
      newValue    
}
SourceFile: "Atomics.java"