Imported Upstream version 2.9.0
[debian/cc1111] / device / lib / pic / libsdcc / _divulong.c
1 /* ---------------------------------------------------------------------------
2    _divulong.c : 32 bit division routines for pic14 devices
3
4         Written By      Raphael Neider <rneider AT web.de> (2005)
5
6    This library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Library General Public
8    License as published by the Free Software Foundation; either
9    version 2 of the License, or (at your option) any later version.
10
11    This library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Library General Public License for more details.
15
16    You should have received a copy of the GNU Library General Public
17    License along with this library; if not, write to the 
18    Free Software Foundation, Inc., 59 Temple Place - Suite 330, 
19    Boston, MA  02111-1307  USA.
20
21    In other words, you are welcome to use, share and improve this program.
22    You are forbidden to forbid anyone else to use, share and improve
23    what you give them.   Help stamp out software-hoarding!
24
25    $Id: _divulong.c 4148 2006-05-01 20:47:12Z tecodev $
26    ------------------------------------------------------------------------ */
27
28 unsigned long
29 _divulong (unsigned long a, unsigned long b)
30 {
31   unsigned long result = 0;
32   unsigned long mask = 0x01;
33
34   /* prevent endless loop (division by zero exception?!?) */
35   if (!b) return (unsigned long)-1;
36
37   /* it would suffice to make b >= a, but that test is
38    * more complex and will fail if a has its MSB set */
39   while (!(b & (1UL << (8*sizeof(unsigned long)-1)))) {
40     b <<= 1;
41     mask <<= 1;
42   } // while
43
44   /* now add up the powers of two (of b) that "fit" into a */
45   /* we might stop if (a == 0), but that's an additional test in every iteration... */
46   while (mask) {
47     if (a >= b) {
48       result += mask;
49       a -= b;
50     } // if
51     b >>= 1;
52     mask >>= 1;
53   } // while
54
55   return result;
56 }
57