public class com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest 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.LLVM80BitFromIntTest
  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.LLVM80BitFromIntTest this
         0: .line 40
            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.LLVM80BitFromIntTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitFromIntTest;

  public void testZero();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
         0: .line 44
            iconst_0
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromInt:(I)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 1 /* val */
        start local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
         1: .line 45
            iconst_0
            iconst_0
            lconst_0
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromRawValues:(ZIJ)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 2 /* expected */
        start local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
         2: .line 46
            aload 2 /* expected */
            aload 1 /* val */
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 47
            return
        end local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
        end local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitFromIntTest;
            1    4     1       val  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            2    4     2  expected  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
    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.LLVM80BitFromIntTest this
         0: .line 51
            iconst_1
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromInt:(I)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 1 /* val */
        start local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
         1: .line 52
            iconst_0
            sipush 16383
            lconst_1
            invokestatic java.lang.Long.reverse:(J)J
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromRawValues:(ZIJ)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 2 /* expected */
        start local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
         2: .line 53
            aload 2 /* expected */
            aload 1 /* val */
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 54
            return
        end local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
        end local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitFromIntTest;
            1    4     1       val  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            2    4     2  expected  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testPositiveInfinity();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
         0: .line 58
            iconst_0
            sipush 32767
            ldc -9223372036854775808
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromRawValues:(ZIJ)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 1 /* test */
        start local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat test
         1: .line 59
            aload 1 /* test */
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.isPositiveInfinity:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         2: .line 60
            aload 1 /* test */
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.isInfinity:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         3: .line 61
            aload 1 /* test */
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.isNegativeInfinity:()Z
            invokestatic org.junit.Assert.assertFalse:(Z)V
         4: .line 62
            return
        end local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat test
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitFromIntTest;
            1    5     1  test  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testNegativeInfinity();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
         0: .line 66
            iconst_1
            sipush 32767
            ldc -9223372036854775808
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromRawValues:(ZIJ)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 1 /* test */
        start local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat test
         1: .line 67
            aload 1 /* test */
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.isNegativeInfinity:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         2: .line 68
            aload 1 /* test */
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.isInfinity:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         3: .line 69
            aload 1 /* test */
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.isPositiveInfinity:()Z
            invokestatic org.junit.Assert.assertFalse:(Z)V
         4: .line 70
            return
        end local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat test
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitFromIntTest;
            1    5     1  test  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testQNan();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
         0: .line 74
            invokestatic com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest.nan:()Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 1 /* test */
        start local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat test
         1: .line 75
            aload 1 /* test */
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.isInfinity:()Z
            ifeq 2
            iconst_0
            goto 3
      StackMap locals: com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat
      StackMap stack:
         2: iconst_1
      StackMap locals:
      StackMap stack: int
         3: invokestatic org.junit.Assert.assertTrue:(Z)V
         4: .line 76
            aload 1 /* test */
            invokevirtual com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.isOrdered:()Z
            invokestatic org.junit.Assert.assertFalse:(Z)V
         5: .line 77
            return
        end local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat test
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitFromIntTest;
            1    6     1  test  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testTen();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
         0: .line 81
            bipush 10
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromInt:(I)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 1 /* val */
        start local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
         1: .line 82
            iconst_0
            sipush 16386
            ldc 5
            invokestatic java.lang.Long.reverse:(J)J
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromRawValues:(ZIJ)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 2 /* expected */
        start local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
         2: .line 83
            aload 2 /* expected */
            aload 1 /* val */
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 84
            return
        end local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
        end local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitFromIntTest;
            1    4     1       val  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            2    4     2  expected  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testMaxInt();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
         0: .line 88
            ldc 2147483647
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromInt:(I)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 1 /* val */
        start local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
         1: .line 89
            iconst_0
            sipush 16413
            ldc -8589934592
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromRawValues:(ZIJ)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 2 /* expected */
        start local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
         2: .line 90
            aload 2 /* expected */
            aload 1 /* val */
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 91
            return
        end local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
        end local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitFromIntTest;
            1    4     1       val  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            2    4     2  expected  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testMinInt();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
         0: .line 95
            ldc -2147483648
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromInt:(I)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 1 /* val */
        start local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
         1: .line 96
            iconst_1
            sipush 16414
            ldc -9223372036854775808
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromRawValues:(ZIJ)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 2 /* expected */
        start local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
         2: .line 97
            aload 2 /* expected */
            aload 1 /* val */
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 98
            return
        end local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
        end local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitFromIntTest;
            1    4     1       val  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            2    4     2  expected  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testMinusOne();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
         0: .line 102
            iconst_m1
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromInt:(I)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 1 /* val */
        start local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
         1: .line 103
            iconst_1
            sipush 16383
            lconst_1
            invokestatic java.lang.Long.reverse:(J)J
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromRawValues:(ZIJ)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 2 /* expected */
        start local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
         2: .line 104
            aload 2 /* expected */
            aload 1 /* val */
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 105
            return
        end local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
        end local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitFromIntTest;
            1    4     1       val  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            2    4     2  expected  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testNegative();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
         0: .line 109
            sipush -1234
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromInt:(I)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 1 /* val */
        start local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
         1: .line 110
            iconst_1
            sipush 16393
            ldc -7331860193359167488
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromRawValues:(ZIJ)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 2 /* expected */
        start local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
         2: .line 111
            aload 2 /* expected */
            aload 1 /* val */
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 112
            return
        end local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
        end local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitFromIntTest;
            1    4     1       val  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            2    4     2  expected  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testHighValue();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
         0: .line 116
            ldc 1234567
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromInt:(I)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 1 /* val */
        start local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
         1: .line 117
            iconst_0
            sipush 16403
            ldc -7587377899561287680
            invokestatic com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat.fromRawValues:(ZIJ)Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            astore 2 /* expected */
        start local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
         2: .line 118
            aload 2 /* expected */
            aload 1 /* val */
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 119
            return
        end local 2 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat expected
        end local 1 // com.oracle.truffle.llvm.runtime.floating.LLVM80BitFloat val
        end local 0 // com.oracle.truffle.llvm.tests.types.floating.LLVM80BitFromIntTest this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/oracle/truffle/llvm/tests/types/floating/LLVM80BitFromIntTest;
            1    4     1       val  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
            2    4     2  expected  Lcom/oracle/truffle/llvm/runtime/floating/LLVM80BitFloat;
    RuntimeVisibleAnnotations: 
      org.junit.Test()
}
SourceFile: "LLVM80BitFromIntTest.java"