Imported Upstream version 2.9.0
[debian/cc1111] / device / lib / _fsgt.c
1 /* Floating point library in optimized assembly for 8051
2  * Copyright (c) 2004, Paul Stoffregen, paul@pjrc.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17  */
18
19
20 #define SDCC_FLOAT_LIB
21 #include <float.h>
22
23
24 #ifdef FLOAT_ASM_MCS51
25
26 // char __fsgt (float a, float b) __reentrant
27 static void dummy(void) __naked
28 {
29         __asm
30         .globl  ___fsgt
31 ___fsgt:
32         mov     r7, a
33         mov     r0, sp
34         dec     r0
35         dec     r0
36         lcall   fs_check_negative_zeros
37         setb    sign_a
38         rlc     a
39         mov     a, @r0
40         jc      a_negative
41 a_positive:
42         jnb     acc.7, ab_positive
43         // a is positive and b is negative, so a > b
44         mov     dpl, #1
45         ret
46 a_negative:
47         jb      acc.7, ab_negative
48         // a is negative and b is positive, so a < b
49         mov     dpl, #0
50         ret
51 ab_positive:
52         clr     sign_a
53 ab_negative:
54         lcall   fs_compare_uint32
55         mov     a, r1
56         jnz     ab_different
57         // a and b are equal
58         mov     dpl, a
59         ret
60 ab_different:
61         jnb     sign_a, skip_invert
62         cpl     c
63 skip_invert:
64         clr     a
65         rlc     a
66         mov     dpl, a
67         ret
68         __endasm;
69 }
70
71 #else
72
73 /*
74 ** libgcc support for software floating point.
75 ** Copyright (C) 1991 by Pipeline Associates, Inc.  All rights reserved.
76 ** Permission is granted to do *anything* you want with this file,
77 ** commercial or otherwise, provided this message remains intact.  So there!
78 ** I would appreciate receiving any updates/patches/changes that anyone
79 ** makes, and am willing to be the repository for said changes (am I
80 ** making a big mistake?).
81 **
82 ** Pat Wood
83 ** Pipeline Associates, Inc.
84 ** pipeline!phw@motown.com or
85 ** sun!pipeline!phw or
86 ** uunet!motown!pipeline!phw
87 */
88
89 /* (c)2000/2001: hacked a little by johan.knol@iduna.nl for sdcc */
90
91 union float_long
92   {
93     float f;
94     long l;
95   };
96
97 /* compare two floats */
98 char __fsgt (float a1, float a2)
99 {
100   volatile union float_long fl1, fl2;
101
102   fl1.f = a1;
103   fl2.f = a2;
104
105   if (fl1.l<0 && fl2.l<0) {
106     if (fl2.l > fl1.l)
107       return (1);
108     return (0);
109   }
110
111   if (fl1.l > fl2.l)
112     return (1);
113   return (0);
114 }
115
116 #endif