public class com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest extends com.oracle.truffle.llvm.tests.types.floating.LLVM80BitTest
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest
  super_class: com.oracle.truffle.llvm.tests.types.floating.LLVM80BitTest
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
         0: .line 36
            aload 0 /* this */
            invokespecial com.oracle.truffle.llvm.tests.types.floating.LLVM80BitTest.<init>:()V
            return
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitGetDoubleTest;

  public void testZero();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
         0: .line 40
            dconst_0
            invokestatic com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest.zero:()Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.getDoubleValue:()D
            invokestatic com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest.assertBitEquals:(DD)V
         1: .line 41
            return
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitGetDoubleTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testMinusZero();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
         0: .line 45
            ldc -0.0
            invokestatic com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest.minusZero:()Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.getDoubleValue:()D
            invokestatic com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest.assertBitEquals:(DD)V
         1: .line 46
            return
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitGetDoubleTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testOne();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
         0: .line 50
            invokestatic com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest.one:()Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.getFloatValue:()F
            f2d
            dstore 1 /* val */
        start local 1 // double val
         1: .line 51
            ldc 4607182418800017408
            dload 1 /* val */
            invokestatic java.lang.Double.doubleToRawLongBits:(D)J
            invokestatic org.junit.Assert.assertEquals:(JJ)V
         2: .line 52
            return
        end local 1 // double val
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitGetDoubleTest;
            1    3     1   val  D
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testValue();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
         0: .line 56
            ldc 3.5
            invokestatic com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest.val:(D)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.getDoubleValue:()D
            dstore 1 /* val */
        start local 1 // double val
         1: .line 57
            ldc 3.5
            dload 1 /* val */
            invokestatic com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest.assertBitEquals:(DD)V
         2: .line 58
            return
        end local 1 // double val
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitGetDoubleTest;
            1    3     1   val  D
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testPositiveInfinity();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
         0: .line 62
            ldc Infinity
            invokestatic com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest.positiveInfinity:()Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.getDoubleValue:()D
            invokestatic com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest.assertBitEquals:(DD)V
         1: .line 63
            return
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitGetDoubleTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testNegativeInfinity();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
         0: .line 67
            ldc -Infinity
            invokestatic com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest.negativeInfinity:()Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.getDoubleValue:()D
            invokestatic com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest.assertBitEquals:(DD)V
         1: .line 68
            return
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitGetDoubleTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testQNaN();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
         0: .line 72
            ldc NaN
            invokestatic com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest.nan:()Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.getDoubleValue:()D
            invokestatic com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest.assertBitEquals:(DD)V
         1: .line 73
            return
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitGetDoubleTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitGetDoubleTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()
}
SourceFile: "LLVM80BitGetDoubleTest.java"