Imported Upstream version 2.9.0
[debian/cc1111] / device / lib / _fseq.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 __fseq (float a, float b)
27 static void dummy(void) __naked
28 {
29         __asm
30         .globl  ___fseq
31 ___fseq:
32         mov     r7, a
33         mov     r0, sp
34         dec     r0
35         dec     r0
36         lcall   fs_check_negative_zeros
37         lcall   fs_compare_uint32
38         mov     a, r1
39         xrl     a, #1
40         mov     dpl, a
41         ret
42         __endasm;
43 }
44
45 #else
46
47 /*
48 ** libgcc support for software floating point.
49 ** Copyright (C) 1991 by Pipeline Associates, Inc.  All rights reserved.
50 ** Permission is granted to do *anything* you want with this file,
51 ** commercial or otherwise, provided this message remains intact.  So there!
52 ** I would appreciate receiving any updates/patches/changes that anyone
53 ** makes, and am willing to be the repository for said changes (am I
54 ** making a big mistake?).
55 **
56 ** Pat Wood
57 ** Pipeline Associates, Inc.
58 ** pipeline!phw@motown.com or
59 ** sun!pipeline!phw or
60 ** uunet!motown!pipeline!phw
61 */
62
63 /* (c)2000/2001: hacked a little by johan.knol@iduna.nl for sdcc */
64
65 union float_long
66   {
67     float f;
68     long l;
69   };
70
71 /* compare two floats */
72 char
73 __fseq (float a1, float a2)
74 {
75   volatile union float_long fl1, fl2;
76
77   fl1.f = a1;
78   fl2.f = a2;
79
80   if (fl1.l == fl2.l)
81     return (1);
82   if (((fl1.l | fl2.l) & 0x7FFFFFFF) == 0)
83     return (1);
84   return (0);
85 }
86
87 #endif