Daniel Dunbar | 4c70f3e | 2011-03-25 18:45:39 +0000 | [diff] [blame] | 1 | //===-- lib/comparedf2.c - Double-precision comparisons -----------*- C -*-===// |
Stephen Canon | b1fdde1 | 2010-07-01 15:52:42 +0000 | [diff] [blame] | 2 | // |
Stephen Canon | 74eaf1f | 2010-07-01 17:58:24 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Howard Hinnant | 5b791f6 | 2010-11-16 22:13:33 +0000 | [diff] [blame] | 5 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | // Source Licenses. See LICENSE.TXT for details. |
Stephen Canon | 74eaf1f | 2010-07-01 17:58:24 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // // This file implements the following soft-float comparison routines: |
| 11 | // |
| 12 | // __eqdf2 __gedf2 __unorddf2 |
Stephen Canon | b1fdde1 | 2010-07-01 15:52:42 +0000 | [diff] [blame] | 13 | // __ledf2 __gtdf2 |
| 14 | // __ltdf2 |
| 15 | // __nedf2 |
| 16 | // |
| 17 | // The semantics of the routines grouped in each column are identical, so there |
| 18 | // is a single implementation for each, and wrappers to provide the other names. |
| 19 | // |
| 20 | // The main routines behave as follows: |
| 21 | // |
| 22 | // __ledf2(a,b) returns -1 if a < b |
| 23 | // 0 if a == b |
| 24 | // 1 if a > b |
| 25 | // 1 if either a or b is NaN |
| 26 | // |
| 27 | // __gedf2(a,b) returns -1 if a < b |
| 28 | // 0 if a == b |
| 29 | // 1 if a > b |
| 30 | // -1 if either a or b is NaN |
| 31 | // |
| 32 | // __unorddf2(a,b) returns 0 if both a and b are numbers |
| 33 | // 1 if either a or b is NaN |
| 34 | // |
| 35 | // Note that __ledf2( ) and __gedf2( ) are identical except in their handling of |
| 36 | // NaN values. |
Stephen Canon | 74eaf1f | 2010-07-01 17:58:24 +0000 | [diff] [blame] | 37 | // |
| 38 | //===----------------------------------------------------------------------===// |
| 39 | |
| 40 | #define DOUBLE_PRECISION |
| 41 | #include "fp_lib.h" |
Stephen Canon | b1fdde1 | 2010-07-01 15:52:42 +0000 | [diff] [blame] | 42 | |
Daniel Dunbar | 4c70f3e | 2011-03-25 18:45:39 +0000 | [diff] [blame] | 43 | enum LE_RESULT { |
| 44 | LE_LESS = -1, |
| 45 | LE_EQUAL = 0, |
| 46 | LE_GREATER = 1, |
| 47 | LE_UNORDERED = 1 |
| 48 | }; |
| 49 | |
Joerg Sonnenberger | 6e99daa | 2014-03-01 15:30:50 +0000 | [diff] [blame] | 50 | COMPILER_RT_ABI enum LE_RESULT |
| 51 | __ledf2(fp_t a, fp_t b) { |
Stephen Canon | b1fdde1 | 2010-07-01 15:52:42 +0000 | [diff] [blame] | 52 | |
| 53 | const srep_t aInt = toRep(a); |
| 54 | const srep_t bInt = toRep(b); |
| 55 | const rep_t aAbs = aInt & absMask; |
| 56 | const rep_t bAbs = bInt & absMask; |
| 57 | |
| 58 | // If either a or b is NaN, they are unordered. |
| 59 | if (aAbs > infRep || bAbs > infRep) return LE_UNORDERED; |
| 60 | |
| 61 | // If a and b are both zeros, they are equal. |
| 62 | if ((aAbs | bAbs) == 0) return LE_EQUAL; |
| 63 | |
| 64 | // If at least one of a and b is positive, we get the same result comparing |
| 65 | // a and b as signed integers as we would with a floating-point compare. |
| 66 | if ((aInt & bInt) >= 0) { |
| 67 | if (aInt < bInt) return LE_LESS; |
| 68 | else if (aInt == bInt) return LE_EQUAL; |
| 69 | else return LE_GREATER; |
| 70 | } |
| 71 | |
| 72 | // Otherwise, both are negative, so we need to flip the sense of the |
| 73 | // comparison to get the correct result. (This assumes a twos- or ones- |
| 74 | // complement integer representation; if integers are represented in a |
| 75 | // sign-magnitude representation, then this flip is incorrect). |
| 76 | else { |
| 77 | if (aInt > bInt) return LE_LESS; |
| 78 | else if (aInt == bInt) return LE_EQUAL; |
| 79 | else return LE_GREATER; |
| 80 | } |
| 81 | } |
Daniel Dunbar | 4c70f3e | 2011-03-25 18:45:39 +0000 | [diff] [blame] | 82 | |
Saleem Abdulrasool | 0d6094b | 2015-08-21 04:39:52 +0000 | [diff] [blame] | 83 | #if defined(__ELF__) |
Josh Gao | 772527c | 2015-08-21 02:51:17 +0000 | [diff] [blame] | 84 | // Alias for libgcc compatibility |
| 85 | FNALIAS(__cmpdf2, __ledf2); |
Saleem Abdulrasool | 0d6094b | 2015-08-21 04:39:52 +0000 | [diff] [blame] | 86 | #endif |
Josh Gao | 772527c | 2015-08-21 02:51:17 +0000 | [diff] [blame] | 87 | |
Daniel Dunbar | 4c70f3e | 2011-03-25 18:45:39 +0000 | [diff] [blame] | 88 | enum GE_RESULT { |
| 89 | GE_LESS = -1, |
| 90 | GE_EQUAL = 0, |
| 91 | GE_GREATER = 1, |
| 92 | GE_UNORDERED = -1 // Note: different from LE_UNORDERED |
| 93 | }; |
| 94 | |
Joerg Sonnenberger | 6e99daa | 2014-03-01 15:30:50 +0000 | [diff] [blame] | 95 | COMPILER_RT_ABI enum GE_RESULT |
| 96 | __gedf2(fp_t a, fp_t b) { |
Daniel Dunbar | 4c70f3e | 2011-03-25 18:45:39 +0000 | [diff] [blame] | 97 | |
| 98 | const srep_t aInt = toRep(a); |
| 99 | const srep_t bInt = toRep(b); |
| 100 | const rep_t aAbs = aInt & absMask; |
| 101 | const rep_t bAbs = bInt & absMask; |
| 102 | |
| 103 | if (aAbs > infRep || bAbs > infRep) return GE_UNORDERED; |
| 104 | if ((aAbs | bAbs) == 0) return GE_EQUAL; |
| 105 | if ((aInt & bInt) >= 0) { |
| 106 | if (aInt < bInt) return GE_LESS; |
| 107 | else if (aInt == bInt) return GE_EQUAL; |
| 108 | else return GE_GREATER; |
| 109 | } else { |
| 110 | if (aInt > bInt) return GE_LESS; |
| 111 | else if (aInt == bInt) return GE_EQUAL; |
| 112 | else return GE_GREATER; |
| 113 | } |
| 114 | } |
| 115 | |
Joerg Sonnenberger | 6e99daa | 2014-03-01 15:30:50 +0000 | [diff] [blame] | 116 | COMPILER_RT_ABI int |
| 117 | __unorddf2(fp_t a, fp_t b) { |
Daniel Dunbar | 4c70f3e | 2011-03-25 18:45:39 +0000 | [diff] [blame] | 118 | const rep_t aAbs = toRep(a) & absMask; |
| 119 | const rep_t bAbs = toRep(b) & absMask; |
| 120 | return aAbs > infRep || bAbs > infRep; |
| 121 | } |
| 122 | |
Alp Toker | 1ee7fc7 | 2014-05-15 02:22:34 +0000 | [diff] [blame] | 123 | // The following are alternative names for the preceding routines. |
Daniel Dunbar | 4c70f3e | 2011-03-25 18:45:39 +0000 | [diff] [blame] | 124 | |
Joerg Sonnenberger | 6e99daa | 2014-03-01 15:30:50 +0000 | [diff] [blame] | 125 | COMPILER_RT_ABI enum LE_RESULT |
| 126 | __eqdf2(fp_t a, fp_t b) { |
Daniel Dunbar | 4c70f3e | 2011-03-25 18:45:39 +0000 | [diff] [blame] | 127 | return __ledf2(a, b); |
| 128 | } |
| 129 | |
Joerg Sonnenberger | 6e99daa | 2014-03-01 15:30:50 +0000 | [diff] [blame] | 130 | COMPILER_RT_ABI enum LE_RESULT |
| 131 | __ltdf2(fp_t a, fp_t b) { |
Daniel Dunbar | 4c70f3e | 2011-03-25 18:45:39 +0000 | [diff] [blame] | 132 | return __ledf2(a, b); |
| 133 | } |
| 134 | |
Joerg Sonnenberger | 6e99daa | 2014-03-01 15:30:50 +0000 | [diff] [blame] | 135 | COMPILER_RT_ABI enum LE_RESULT |
| 136 | __nedf2(fp_t a, fp_t b) { |
Daniel Dunbar | 4c70f3e | 2011-03-25 18:45:39 +0000 | [diff] [blame] | 137 | return __ledf2(a, b); |
| 138 | } |
| 139 | |
Joerg Sonnenberger | 6e99daa | 2014-03-01 15:30:50 +0000 | [diff] [blame] | 140 | COMPILER_RT_ABI enum GE_RESULT |
| 141 | __gtdf2(fp_t a, fp_t b) { |
Daniel Dunbar | 4c70f3e | 2011-03-25 18:45:39 +0000 | [diff] [blame] | 142 | return __gedf2(a, b); |
| 143 | } |
| 144 | |
Saleem Abdulrasool | 36ac5dd | 2017-05-16 16:41:37 +0000 | [diff] [blame] | 145 | #if defined(__ARM_EABI__) |
| 146 | AEABI_RTABI int __aeabi_dcmpun(fp_t a, fp_t b) { |
| 147 | return __unorddf2(a, b); |
| 148 | } |
| 149 | #endif |
| 150 | |