final class com.oracle.truffle.llvm.runtime.floating.DoubleHelper
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.llvm.runtime.floating.DoubleHelper
  super_class: java.lang.Object
{
  static final int DOUBLE_EXPONENT_BIAS;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 1023

  static final long DOUBLE_FRACTION_BIT_WIDTH;
    descriptor: J
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 52

  static final int DOUBLE_SIGN_POS;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 63

  static final double POSITIVE_ZERO;
    descriptor: D
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 0.0

  static final double NEGATIVE_ZERO;
    descriptor: D
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: -0.0

  static final double NaN;
    descriptor: D
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: NaN

  static final double NEGATIVE_INFINITY;
    descriptor: D
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: -Infinity

  static final double POSITIVE_INFINITY;
    descriptor: D
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: Infinity

  static final long FRACTION_MASK;
    descriptor: J
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 50
            ldc 52
            invokestatic com.oracle.truffle.llvm.runtime.floating.BinaryHelper.getBitMask:(J)J
            putstatic com.oracle.truffle.llvm.runtime.floating.DoubleHelper.FRACTION_MASK:J
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.floating.DoubleHelper this
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.oracle.truffle.llvm.runtime.floating.DoubleHelper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/floating/DoubleHelper;

  static boolean isPositiveZero(double);
    descriptor: (D)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double val
         0: .line 53
            dconst_0
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            dload 0 /* val */
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // double val
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0   val  D
    MethodParameters:
      Name  Flags
      val   

  static boolean isNegativeZero(double);
    descriptor: (D)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double val
         0: .line 57
            ldc -0.0
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            dload 0 /* val */
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // double val
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0   val  D
    MethodParameters:
      Name  Flags
      val   

  static boolean isPositiveInfinty(double);
    descriptor: (D)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double val
         0: .line 61
            dload 0 /* val */
            ldc Infinity
            dcmpl
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // double val
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0   val  D
    MethodParameters:
      Name  Flags
      val   

  static boolean isNegativeInfinity(double);
    descriptor: (D)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double val
         0: .line 65
            dload 0 /* val */
            ldc -Infinity
            dcmpl
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // double val
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0   val  D
    MethodParameters:
      Name  Flags
      val   

  static boolean isNaN(double);
    descriptor: (D)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // double val
         0: .line 69
            dload 0 /* val */
            invokestatic java.lang.Double.isNaN:(D)Z
            ireturn
        end local 0 // double val
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   val  D
    MethodParameters:
      Name  Flags
      val   

  static int getUnbiasedExponent(double);
    descriptor: (D)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // double val
         0: .line 73
            dload 0 /* val */
            invokestatic java.lang.Math.getExponent:(D)I
            ireturn
        end local 0 // double val
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   val  D
    MethodParameters:
      Name  Flags
      val   
}
SourceFile: "DoubleHelper.java"