* sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
[fw/sdcc] / device / lib / _fs2schar.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
25 #ifdef FLOAT_ASM_MCS51
26
27 // char __fs2schar (float x)
28 static void dummy(void) _naked
29 {
30         _asm
31         .globl  ___fs2schar
32 ___fs2schar:
33         lcall   ___fs2slong
34         jnb     sign_a, fs2schar_pos
35 fs2schar_neg:
36         cpl     a
37         jnz     fs2schar_maxval_neg
38         mov     a, b
39         cpl     a
40         jnz     fs2schar_maxval_neg
41         mov     a, dph
42         cpl     a
43         jnz     fs2schar_maxval_neg
44         mov     a, dpl
45         jnb     acc.7, fs2schar_maxval_neg
46         ret
47 fs2schar_maxval_neg:
48         mov     dpl, #0x80
49         ret
50 fs2schar_pos:
51         jnz     fs2schar_maxval_pos
52         mov     a, b
53         jnz     fs2schar_maxval_pos
54         mov     a, dph
55         jnz     fs2schar_maxval_pos
56         mov     a, dpl
57         jb      acc.7, fs2schar_maxval_pos
58         ret
59 fs2schar_maxval_pos:
60         mov     dpl, #0x7F
61         ret
62         _endasm;
63 }
64
65
66 #else
67
68
69 /* convert float to signed char */
70 signed char __fs2schar (float f) {
71   signed long sl=__fs2slong(f);
72   if (sl>=CHAR_MAX)
73     return CHAR_MAX;
74   if (sl<=CHAR_MIN) 
75     return -CHAR_MIN;
76   return sl;
77 }
78
79 #endif
80