[4872160] | 1 | /*
|
---|
| 2 | * Copyright (c) 2006 Josef Cejka
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @file
|
---|
| 30 | */
|
---|
| 31 |
|
---|
| 32 | #include <genarch/division.h>
|
---|
| 33 |
|
---|
| 34 | #define ABSVAL(x) ((x) > 0 ? (x) : -(x))
|
---|
| 35 | #define SGN(x) ((x) >= 0 ? 1 : 0)
|
---|
| 36 |
|
---|
| 37 | static unsigned int divandmod32(unsigned int a, unsigned int b,
|
---|
| 38 | unsigned int *remainder)
|
---|
| 39 | {
|
---|
| 40 | unsigned int result;
|
---|
| 41 | int steps = sizeof(unsigned int) * 8;
|
---|
| 42 |
|
---|
| 43 | *remainder = 0;
|
---|
| 44 | result = 0;
|
---|
| 45 |
|
---|
| 46 | if (b == 0) {
|
---|
| 47 | /* FIXME: division by zero */
|
---|
| 48 | return 0;
|
---|
| 49 | }
|
---|
| 50 |
|
---|
| 51 | if (a < b) {
|
---|
| 52 | *remainder = a;
|
---|
| 53 | return 0;
|
---|
| 54 | }
|
---|
| 55 |
|
---|
| 56 | for (; steps > 0; steps--) {
|
---|
| 57 | /* shift one bit to remainder */
|
---|
| 58 | *remainder = ((*remainder) << 1) | (( a >> 31) & 0x1);
|
---|
| 59 | result <<= 1;
|
---|
| 60 |
|
---|
| 61 | if (*remainder >= b) {
|
---|
| 62 | *remainder -= b;
|
---|
| 63 | result |= 0x1;
|
---|
| 64 | }
|
---|
| 65 | a <<= 1;
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | return result;
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | static unsigned long long divandmod64(unsigned long long a,
|
---|
| 72 | unsigned long long b, unsigned long long *remainder)
|
---|
| 73 | {
|
---|
| 74 | unsigned long long result;
|
---|
| 75 | int steps = sizeof(unsigned long long) * 8;
|
---|
| 76 |
|
---|
| 77 | *remainder = 0;
|
---|
| 78 | result = 0;
|
---|
| 79 |
|
---|
| 80 | if (b == 0) {
|
---|
| 81 | /* FIXME: division by zero */
|
---|
| 82 | return 0;
|
---|
| 83 | }
|
---|
| 84 |
|
---|
| 85 | if (a < b) {
|
---|
| 86 | *remainder = a;
|
---|
| 87 | return 0;
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | for (; steps > 0; steps--) {
|
---|
| 91 | /* shift one bit to remainder */
|
---|
| 92 | *remainder = ((*remainder) << 1) | ((a >> 63) & 0x1);
|
---|
| 93 | result <<= 1;
|
---|
| 94 |
|
---|
| 95 | if (*remainder >= b) {
|
---|
| 96 | *remainder -= b;
|
---|
| 97 | result |= 0x1;
|
---|
| 98 | }
|
---|
| 99 | a <<= 1;
|
---|
| 100 | }
|
---|
| 101 |
|
---|
| 102 | return result;
|
---|
| 103 | }
|
---|
| 104 |
|
---|
| 105 | /* 32bit integer division */
|
---|
| 106 | int __divsi3(int a, int b)
|
---|
| 107 | {
|
---|
| 108 | unsigned int rem;
|
---|
| 109 | int result = (int) divandmod32(ABSVAL(a), ABSVAL(b), &rem);
|
---|
| 110 |
|
---|
| 111 | if (SGN(a) == SGN(b))
|
---|
| 112 | return result;
|
---|
| 113 |
|
---|
| 114 | return -result;
|
---|
| 115 | }
|
---|
| 116 |
|
---|
| 117 | /* 64bit integer division */
|
---|
| 118 | long long __divdi3(long long a, long long b)
|
---|
| 119 | {
|
---|
| 120 | unsigned long long rem;
|
---|
| 121 | long long result = (long long) divandmod64(ABSVAL(a), ABSVAL(b), &rem);
|
---|
| 122 |
|
---|
| 123 | if (SGN(a) == SGN(b))
|
---|
| 124 | return result;
|
---|
| 125 |
|
---|
| 126 | return -result;
|
---|
| 127 | }
|
---|
| 128 |
|
---|
| 129 | /* 32bit unsigned integer division */
|
---|
| 130 | unsigned int __udivsi3(unsigned int a, unsigned int b)
|
---|
| 131 | {
|
---|
| 132 | unsigned int rem;
|
---|
| 133 | return divandmod32(a, b, &rem);
|
---|
| 134 | }
|
---|
| 135 |
|
---|
| 136 | /* 64bit unsigned integer division */
|
---|
| 137 | unsigned long long __udivdi3(unsigned long long a, unsigned long long b)
|
---|
| 138 | {
|
---|
| 139 | unsigned long long rem;
|
---|
| 140 | return divandmod64(a, b, &rem);
|
---|
| 141 | }
|
---|
| 142 |
|
---|
| 143 | /* 32bit remainder of the signed division */
|
---|
| 144 | int __modsi3(int a, int b)
|
---|
| 145 | {
|
---|
| 146 | unsigned int rem;
|
---|
| 147 | divandmod32(a, b, &rem);
|
---|
| 148 |
|
---|
| 149 | /* if divident is negative, remainder must be too */
|
---|
| 150 | if (!(SGN(a)))
|
---|
| 151 | return -((int) rem);
|
---|
| 152 |
|
---|
| 153 | return (int) rem;
|
---|
| 154 | }
|
---|
| 155 |
|
---|
| 156 | /* 64bit remainder of the signed division */
|
---|
| 157 | long long __moddi3(long long a,long long b)
|
---|
| 158 | {
|
---|
| 159 | unsigned long long rem;
|
---|
| 160 | divandmod64(a, b, &rem);
|
---|
| 161 |
|
---|
| 162 | /* if divident is negative, remainder must be too */
|
---|
| 163 | if (!(SGN(a)))
|
---|
| 164 | return -((long long) rem);
|
---|
| 165 |
|
---|
| 166 | return (long long) rem;
|
---|
| 167 | }
|
---|
| 168 |
|
---|
| 169 | /* 32bit remainder of the unsigned division */
|
---|
| 170 | unsigned int __umodsi3(unsigned int a, unsigned int b)
|
---|
| 171 | {
|
---|
| 172 | unsigned int rem;
|
---|
| 173 | divandmod32(a, b, &rem);
|
---|
| 174 | return rem;
|
---|
| 175 | }
|
---|
| 176 |
|
---|
| 177 | /* 64bit remainder of the unsigned division */
|
---|
| 178 | unsigned long long __umoddi3(unsigned long long a, unsigned long long b)
|
---|
| 179 | {
|
---|
| 180 | unsigned long long rem;
|
---|
| 181 | divandmod64(a, b, &rem);
|
---|
| 182 | return rem;
|
---|
| 183 | }
|
---|
| 184 |
|
---|
| 185 | unsigned long long __udivmoddi3(unsigned long long a, unsigned long long b,
|
---|
| 186 | unsigned long long *c)
|
---|
| 187 | {
|
---|
| 188 | return divandmod64(a, b, c);
|
---|
| 189 | }
|
---|
| 190 |
|
---|
| 191 | /** @}
|
---|
| 192 | */
|
---|