Home | History | Annotate | Line # | Download | only in builtins
      1  1.1  joerg /* ===-- cmpdi2.c - Implement __cmpdi2 -------------------------------------===
      2  1.1  joerg  *
      3  1.1  joerg  *                     The LLVM Compiler Infrastructure
      4  1.1  joerg  *
      5  1.1  joerg  * This file is dual licensed under the MIT and the University of Illinois Open
      6  1.1  joerg  * Source Licenses. See LICENSE.TXT for details.
      7  1.1  joerg  *
      8  1.1  joerg  * ===----------------------------------------------------------------------===
      9  1.1  joerg  *
     10  1.1  joerg  * This file implements __cmpdi2 for the compiler_rt library.
     11  1.1  joerg  *
     12  1.1  joerg  * ===----------------------------------------------------------------------===
     13  1.1  joerg  */
     14  1.1  joerg 
     15  1.1  joerg #include "int_lib.h"
     16  1.1  joerg 
     17  1.1  joerg /* Returns: if (a <  b) returns 0
     18  1.1  joerg *           if (a == b) returns 1
     19  1.1  joerg *           if (a >  b) returns 2
     20  1.1  joerg */
     21  1.1  joerg 
     22  1.1  joerg COMPILER_RT_ABI si_int
     23  1.1  joerg __cmpdi2(di_int a, di_int b)
     24  1.1  joerg {
     25  1.1  joerg     dwords x;
     26  1.1  joerg     x.all = a;
     27  1.1  joerg     dwords y;
     28  1.1  joerg     y.all = b;
     29  1.1  joerg     if (x.s.high < y.s.high)
     30  1.1  joerg         return 0;
     31  1.1  joerg     if (x.s.high > y.s.high)
     32  1.1  joerg         return 2;
     33  1.1  joerg     if (x.s.low < y.s.low)
     34  1.1  joerg         return 0;
     35  1.1  joerg     if (x.s.low > y.s.low)
     36  1.1  joerg         return 2;
     37  1.1  joerg     return 1;
     38  1.1  joerg }
     39  1.1  joerg 
     40  1.1  joerg #ifdef __ARM_EABI__
     41  1.1  joerg /* Returns: if (a <  b) returns -1
     42  1.1  joerg *           if (a == b) returns  0
     43  1.1  joerg *           if (a >  b) returns  1
     44  1.1  joerg */
     45  1.1  joerg COMPILER_RT_ABI si_int
     46  1.1  joerg __aeabi_lcmp(di_int a, di_int b)
     47  1.1  joerg {
     48  1.1  joerg 	return __cmpdi2(a, b) - 1;
     49  1.1  joerg }
     50  1.1  joerg #endif
     51  1.1  joerg 
     52