Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame^] | 1 | //===-- fixxfdi_test.c - Test __fixxfdi -----------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file tests __fixxfdi for the compiler_rt library. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #if !_ARCH_PPC |
| 15 | |
| 16 | #include "int_lib.h" |
| 17 | #include <stdio.h> |
| 18 | |
| 19 | // Returns: convert a to a signed long long, rounding toward zero. |
| 20 | |
| 21 | // Assumption: long double is an intel 80 bit floating point type padded with 6 bytes |
| 22 | // su_int is a 32 bit integral type |
| 23 | // value in long double is representable in di_int (no range checking performed) |
| 24 | |
| 25 | // gggg gggg gggg gggg gggg gggg gggg gggg | gggg gggg gggg gggg seee eeee eeee eeee | |
| 26 | // 1mmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm |
| 27 | |
| 28 | di_int __fixxfdi(long double a); |
| 29 | |
| 30 | int test__fixxfdi(long double a, di_int expected) |
| 31 | { |
| 32 | di_int x = __fixxfdi(a); |
| 33 | if (x != expected) |
| 34 | printf("error in __fixxfdi(%LA) = %llX, expected %llX\n", |
| 35 | a, x, expected); |
| 36 | return x != expected; |
| 37 | } |
| 38 | |
| 39 | char assumption_1[sizeof(di_int) == 2*sizeof(si_int)] = {0}; |
| 40 | char assumption_2[sizeof(su_int)*CHAR_BIT == 32] = {0}; |
| 41 | char assumption_3[sizeof(long double)*CHAR_BIT == 128] = {0}; |
| 42 | |
| 43 | #endif |
| 44 | |
| 45 | int main() |
| 46 | { |
| 47 | #if !_ARCH_PPC |
| 48 | if (test__fixxfdi(0.0, 0)) |
| 49 | return 1; |
| 50 | |
| 51 | if (test__fixxfdi(0.5, 0)) |
| 52 | return 1; |
| 53 | if (test__fixxfdi(0.99, 0)) |
| 54 | return 1; |
| 55 | if (test__fixxfdi(1.0, 1)) |
| 56 | return 1; |
| 57 | if (test__fixxfdi(1.5, 1)) |
| 58 | return 1; |
| 59 | if (test__fixxfdi(1.99, 1)) |
| 60 | return 1; |
| 61 | if (test__fixxfdi(2.0, 2)) |
| 62 | return 1; |
| 63 | if (test__fixxfdi(2.01, 2)) |
| 64 | return 1; |
| 65 | if (test__fixxfdi(-0.5, 0)) |
| 66 | return 1; |
| 67 | if (test__fixxfdi(-0.99, 0)) |
| 68 | return 1; |
| 69 | if (test__fixxfdi(-1.0, -1)) |
| 70 | return 1; |
| 71 | if (test__fixxfdi(-1.5, -1)) |
| 72 | return 1; |
| 73 | if (test__fixxfdi(-1.99, -1)) |
| 74 | return 1; |
| 75 | if (test__fixxfdi(-2.0, -2)) |
| 76 | return 1; |
| 77 | if (test__fixxfdi(-2.01, -2)) |
| 78 | return 1; |
| 79 | |
| 80 | if (test__fixxfdi(0x1.FFFFFEp+62, 0x7FFFFF8000000000LL)) |
| 81 | return 1; |
| 82 | if (test__fixxfdi(0x1.FFFFFCp+62, 0x7FFFFF0000000000LL)) |
| 83 | return 1; |
| 84 | |
| 85 | if (test__fixxfdi(-0x1.FFFFFEp+62, 0x8000008000000000LL)) |
| 86 | return 1; |
| 87 | if (test__fixxfdi(-0x1.FFFFFCp+62, 0x8000010000000000LL)) |
| 88 | return 1; |
| 89 | |
| 90 | if (test__fixxfdi(0x1.FFFFFFFFFFFFFp+62, 0x7FFFFFFFFFFFFC00LL)) |
| 91 | return 1; |
| 92 | if (test__fixxfdi(0x1.FFFFFFFFFFFFEp+62, 0x7FFFFFFFFFFFF800LL)) |
| 93 | return 1; |
| 94 | |
| 95 | if (test__fixxfdi(-0x1.FFFFFFFFFFFFFp+62, 0x8000000000000400LL)) |
| 96 | return 1; |
| 97 | if (test__fixxfdi(-0x1.FFFFFFFFFFFFEp+62, 0x8000000000000800LL)) |
| 98 | return 1; |
| 99 | |
| 100 | if (test__fixxfdi(0x1.FFFFFFFFFFFFFFFCp+62L, 0x7FFFFFFFFFFFFFFFLL)) |
| 101 | return 1; |
| 102 | if (test__fixxfdi(0x1.FFFFFFFFFFFFFFF8p+62L, 0x7FFFFFFFFFFFFFFELL)) |
| 103 | return 1; |
| 104 | |
| 105 | if (test__fixxfdi(-0x1.0000000000000000p+63L, 0x8000000000000000LL)) |
| 106 | return 1; |
| 107 | if (test__fixxfdi(-0x1.FFFFFFFFFFFFFFFCp+62L, 0x8000000000000001LL)) |
| 108 | return 1; |
| 109 | if (test__fixxfdi(-0x1.FFFFFFFFFFFFFFF8p+62L, 0x8000000000000002LL)) |
| 110 | return 1; |
| 111 | |
| 112 | #endif |
| 113 | return 0; |
| 114 | } |