1 /* longlong.h -- definitions for mixed size 32/64 bit arithmetic.
2 Copyright (C) 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
6 This file is part of the GNU C Library.
8 The GNU C Library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 2.1 of the License, or (at your option) any later version.
13 In addition to the permissions in the GNU Lesser General Public
14 License, the Free Software Foundation gives you unlimited
15 permission to link the compiled version of this file into
16 combinations with other programs, and to distribute those
17 combinations without any restriction coming from the use of this
18 file. (The Lesser General Public License restrictions do apply in
19 other respects; for example, they cover modification of the file,
20 and distribution when not linked into a combine executable.)
22 The GNU C Library is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 Lesser General Public License for more details.
27 You should have received a copy of the GNU Lesser General Public
28 License along with the GNU C Library; if not, write to the Free
29 Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
30 MA 02110-1301, USA. */
32 /* You have to define the following before including this file:
34 UWtype -- An unsigned type, default type for operations (typically a "word")
35 UHWtype -- An unsigned type, at least half the size of UWtype.
36 UDWtype -- An unsigned type, at least twice as large a UWtype
37 W_TYPE_SIZE -- size in bits of UWtype
39 UQItype -- Unsigned 8 bit type.
40 SItype, USItype -- Signed and unsigned 32 bit types.
41 DItype, UDItype -- Signed and unsigned 64 bit types.
43 On a 32 bit machine UWtype should typically be USItype;
44 on a 64 bit machine, UWtype should typically be UDItype. */
46 #define __BITS4 (W_TYPE_SIZE / 4)
47 #define __ll_B ((UWtype) 1 << (W_TYPE_SIZE / 2))
48 #define __ll_lowpart(t) ((UWtype) (t) & (__ll_B - 1))
49 #define __ll_highpart(t) ((UWtype) (t) >> (W_TYPE_SIZE / 2))
52 #define W_TYPE_SIZE 32
53 #define UWtype USItype
54 #define UHWtype USItype
55 #define UDWtype UDItype
58 /* Used in glibc only. */
59 #ifndef attribute_hidden
60 #define attribute_hidden
63 extern const UQItype __clz_tab
[256] attribute_hidden
;
65 /* Define auxiliary asm macros.
67 1) umul_ppmm(high_prod, low_prod, multiplier, multiplicand) multiplies two
68 UWtype integers MULTIPLIER and MULTIPLICAND, and generates a two UWtype
69 word product in HIGH_PROD and LOW_PROD.
71 2) __umulsidi3(a,b) multiplies two UWtype integers A and B, and returns a
72 UDWtype product. This is just a variant of umul_ppmm.
74 3) udiv_qrnnd(quotient, remainder, high_numerator, low_numerator,
75 denominator) divides a UDWtype, composed by the UWtype integers
76 HIGH_NUMERATOR and LOW_NUMERATOR, by DENOMINATOR and places the quotient
77 in QUOTIENT and the remainder in REMAINDER. HIGH_NUMERATOR must be less
78 than DENOMINATOR for correct operation. If, in addition, the most
79 significant bit of DENOMINATOR must be 1, then the pre-processor symbol
80 UDIV_NEEDS_NORMALIZATION is defined to 1.
82 4) sdiv_qrnnd(quotient, remainder, high_numerator, low_numerator,
83 denominator). Like udiv_qrnnd but the numbers are signed. The quotient
86 5) count_leading_zeros(count, x) counts the number of zero-bits from the
87 msb to the first nonzero bit in the UWtype X. This is the number of
88 steps X needs to be shifted left to set the msb. Undefined for X == 0,
89 unless the symbol COUNT_LEADING_ZEROS_0 is defined to some value.
91 6) count_trailing_zeros(count, x) like count_leading_zeros, but counts
92 from the least significant end.
94 7) add_ssaaaa(high_sum, low_sum, high_addend_1, low_addend_1,
95 high_addend_2, low_addend_2) adds two UWtype integers, composed by
96 HIGH_ADDEND_1 and LOW_ADDEND_1, and HIGH_ADDEND_2 and LOW_ADDEND_2
97 respectively. The result is placed in HIGH_SUM and LOW_SUM. Overflow
98 (i.e. carry out) is not stored anywhere, and is lost.
100 8) sub_ddmmss(high_difference, low_difference, high_minuend, low_minuend,
101 high_subtrahend, low_subtrahend) subtracts two two-word UWtype integers,
102 composed by HIGH_MINUEND_1 and LOW_MINUEND_1, and HIGH_SUBTRAHEND_2 and
103 LOW_SUBTRAHEND_2 respectively. The result is placed in HIGH_DIFFERENCE
104 and LOW_DIFFERENCE. Overflow (i.e. carry out) is not stored anywhere,
107 If any of these macros are left undefined for a particular CPU,
108 C macros are used. */
110 /* The CPUs come in alphabetical order below.
112 Please add support for more CPUs here, or improve the current support
114 (E.g. WE32100, IBM360.) */
116 #if defined (__GNUC__) && !defined (NO_ASM)
118 /* We sometimes need to clobber "cc" with gcc2, but that would not be
119 understood by gcc1. Use cpp to avoid major code duplication. */
122 #define __AND_CLOBBER_CC
123 #else /* __GNUC__ >= 2 */
124 #define __CLOBBER_CC : "cc"
125 #define __AND_CLOBBER_CC , "cc"
126 #endif /* __GNUC__ < 2 */
128 #if defined (__alpha) && W_TYPE_SIZE == 64
129 #define umul_ppmm(ph, pl, m0, m1) \
131 UDItype __m0 = (m0), __m1 = (m1); \
132 (ph) = __builtin_alpha_umulh (__m0, __m1); \
133 (pl) = __m0 * __m1; \
136 #ifndef LONGLONG_STANDALONE
137 #define udiv_qrnnd(q, r, n1, n0, d) \
139 (q) = __udiv_qrnnd (&__r, (n1), (n0), (d)); \
142 extern UDItype
__udiv_qrnnd (UDItype
*, UDItype
, UDItype
, UDItype
);
143 #define UDIV_TIME 220
144 #endif /* LONGLONG_STANDALONE */
146 #define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clzl (X))
147 #define count_trailing_zeros(COUNT,X) ((COUNT) = __builtin_ctzl (X))
148 #define COUNT_LEADING_ZEROS_0 64
150 #define count_leading_zeros(COUNT,X) \
152 UDItype __xr = (X), __t, __a; \
153 __t = __builtin_alpha_cmpbge (0, __xr); \
154 __a = __clz_tab[__t ^ 0xff] - 1; \
155 __t = __builtin_alpha_extbl (__xr, __a); \
156 (COUNT) = 64 - (__clz_tab[__t] + __a*8); \
158 #define count_trailing_zeros(COUNT,X) \
160 UDItype __xr = (X), __t, __a; \
161 __t = __builtin_alpha_cmpbge (0, __xr); \
162 __t = ~__t & -~__t; \
163 __a = ((__t & 0xCC) != 0) * 2; \
164 __a += ((__t & 0xF0) != 0) * 4; \
165 __a += ((__t & 0xAA) != 0); \
166 __t = __builtin_alpha_extbl (__xr, __a); \
169 __a += ((__t & 0xCC) != 0) * 2; \
170 __a += ((__t & 0xF0) != 0) * 4; \
171 __a += ((__t & 0xAA) != 0); \
174 #endif /* __alpha_cix__ */
177 #if defined (__arc__) && W_TYPE_SIZE == 32
178 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
179 __asm__ ("add.f %1, %4, %5\n\tadc %0, %2, %3" \
180 : "=r" ((USItype) (sh)), \
181 "=&r" ((USItype) (sl)) \
182 : "%r" ((USItype) (ah)), \
183 "rIJ" ((USItype) (bh)), \
184 "%r" ((USItype) (al)), \
185 "rIJ" ((USItype) (bl)))
186 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
187 __asm__ ("sub.f %1, %4, %5\n\tsbc %0, %2, %3" \
188 : "=r" ((USItype) (sh)), \
189 "=&r" ((USItype) (sl)) \
190 : "r" ((USItype) (ah)), \
191 "rIJ" ((USItype) (bh)), \
192 "r" ((USItype) (al)), \
193 "rIJ" ((USItype) (bl)))
194 /* Call libgcc routine. */
195 #define umul_ppmm(w1, w0, u, v) \
198 __w.ll = __umulsidi3 (u, v); \
202 #define __umulsidi3 __umulsidi3
203 UDItype
__umulsidi3 (USItype
, USItype
);
206 #if defined (__arm__) && !defined (__thumb__) && W_TYPE_SIZE == 32
207 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
208 __asm__ ("adds %1, %4, %5\n\tadc %0, %2, %3" \
209 : "=r" ((USItype) (sh)), \
210 "=&r" ((USItype) (sl)) \
211 : "%r" ((USItype) (ah)), \
212 "rI" ((USItype) (bh)), \
213 "%r" ((USItype) (al)), \
214 "rI" ((USItype) (bl)) __CLOBBER_CC)
215 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
216 __asm__ ("subs %1, %4, %5\n\tsbc %0, %2, %3" \
217 : "=r" ((USItype) (sh)), \
218 "=&r" ((USItype) (sl)) \
219 : "r" ((USItype) (ah)), \
220 "rI" ((USItype) (bh)), \
221 "r" ((USItype) (al)), \
222 "rI" ((USItype) (bl)) __CLOBBER_CC)
223 #define umul_ppmm(xh, xl, a, b) \
224 {register USItype __t0, __t1, __t2; \
225 __asm__ ("%@ Inlined umul_ppmm\n" \
226 " mov %2, %5, lsr #16\n" \
227 " mov %0, %6, lsr #16\n" \
228 " bic %3, %5, %2, lsl #16\n" \
229 " bic %4, %6, %0, lsl #16\n" \
230 " mul %1, %3, %4\n" \
231 " mul %4, %2, %4\n" \
232 " mul %3, %0, %3\n" \
233 " mul %0, %2, %0\n" \
234 " adds %3, %4, %3\n" \
235 " addcs %0, %0, #65536\n" \
236 " adds %1, %1, %3, lsl #16\n" \
237 " adc %0, %0, %3, lsr #16" \
238 : "=&r" ((USItype) (xh)), \
239 "=r" ((USItype) (xl)), \
240 "=&r" (__t0), "=&r" (__t1), "=r" (__t2) \
241 : "r" ((USItype) (a)), \
242 "r" ((USItype) (b)) __CLOBBER_CC );}
244 #define UDIV_TIME 100
248 /* Let gcc decide how best to implement count_leading_zeros. */
249 #define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clz (X))
250 #define COUNT_LEADING_ZEROS_0 32
253 #if defined (__AVR__)
255 #if W_TYPE_SIZE == 16
256 #define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clz (X))
257 #define count_trailing_zeros(COUNT,X) ((COUNT) = __builtin_ctz (X))
258 #define COUNT_LEADING_ZEROS_0 16
259 #endif /* W_TYPE_SIZE == 16 */
261 #if W_TYPE_SIZE == 32
262 #define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clzl (X))
263 #define count_trailing_zeros(COUNT,X) ((COUNT) = __builtin_ctzl (X))
264 #define COUNT_LEADING_ZEROS_0 32
265 #endif /* W_TYPE_SIZE == 32 */
267 #if W_TYPE_SIZE == 64
268 #define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clzll (X))
269 #define count_trailing_zeros(COUNT,X) ((COUNT) = __builtin_ctzll (X))
270 #define COUNT_LEADING_ZEROS_0 64
271 #endif /* W_TYPE_SIZE == 64 */
273 #endif /* defined (__AVR__) */
275 #if defined (__CRIS__) && __CRIS_arch_version >= 3
276 #define count_leading_zeros(COUNT, X) ((COUNT) = __builtin_clz (X))
277 #if __CRIS_arch_version >= 8
278 #define count_trailing_zeros(COUNT, X) ((COUNT) = __builtin_ctz (X))
280 #endif /* __CRIS__ */
282 #if defined (__hppa) && W_TYPE_SIZE == 32
283 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
284 __asm__ ("add %4,%5,%1\n\taddc %2,%3,%0" \
285 : "=r" ((USItype) (sh)), \
286 "=&r" ((USItype) (sl)) \
287 : "%rM" ((USItype) (ah)), \
288 "rM" ((USItype) (bh)), \
289 "%rM" ((USItype) (al)), \
290 "rM" ((USItype) (bl)))
291 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
292 __asm__ ("sub %4,%5,%1\n\tsubb %2,%3,%0" \
293 : "=r" ((USItype) (sh)), \
294 "=&r" ((USItype) (sl)) \
295 : "rM" ((USItype) (ah)), \
296 "rM" ((USItype) (bh)), \
297 "rM" ((USItype) (al)), \
298 "rM" ((USItype) (bl)))
299 #if defined (_PA_RISC1_1)
300 #define umul_ppmm(w1, w0, u, v) \
305 struct {USItype __w1, __w0;} __w1w0; \
307 __asm__ ("xmpyu %1,%2,%0" \
309 : "x" ((USItype) (u)), \
310 "x" ((USItype) (v))); \
311 (w1) = __t.__w1w0.__w1; \
312 (w0) = __t.__w1w0.__w0; \
319 #define count_leading_zeros(count, x) \
324 " extru,= %1,15,16,%%r0 ; Bits 31..16 zero?\n" \
325 " extru,tr %1,15,16,%1 ; No. Shift down, skip add.\n"\
326 " ldo 16(%0),%0 ; Yes. Perform add.\n" \
327 " extru,= %1,23,8,%%r0 ; Bits 15..8 zero?\n" \
328 " extru,tr %1,23,8,%1 ; No. Shift down, skip add.\n"\
329 " ldo 8(%0),%0 ; Yes. Perform add.\n" \
330 " extru,= %1,27,4,%%r0 ; Bits 7..4 zero?\n" \
331 " extru,tr %1,27,4,%1 ; No. Shift down, skip add.\n"\
332 " ldo 4(%0),%0 ; Yes. Perform add.\n" \
333 " extru,= %1,29,2,%%r0 ; Bits 3..2 zero?\n" \
334 " extru,tr %1,29,2,%1 ; No. Shift down, skip add.\n"\
335 " ldo 2(%0),%0 ; Yes. Perform add.\n" \
336 " extru %1,30,1,%1 ; Extract bit 1.\n" \
337 " sub %0,%1,%0 ; Subtract it.\n" \
338 : "=r" (count), "=r" (__tmp) : "1" (x)); \
342 #if (defined (__i370__) || defined (__s390__) || defined (__mvs__)) && W_TYPE_SIZE == 32
343 #if !defined (__zarch__)
344 #define smul_ppmm(xh, xl, m0, m1) \
346 union {DItype __ll; \
347 struct {USItype __h, __l;} __i; \
349 __asm__ ("lr %N0,%1\n\tmr %0,%2" \
351 : "r" (m0), "r" (m1)); \
352 (xh) = __x.__i.__h; (xl) = __x.__i.__l; \
354 #define sdiv_qrnnd(q, r, n1, n0, d) \
356 union {DItype __ll; \
357 struct {USItype __h, __l;} __i; \
359 __x.__i.__h = n1; __x.__i.__l = n0; \
360 __asm__ ("dr %0,%2" \
362 : "0" (__x.__ll), "r" (d)); \
363 (q) = __x.__i.__l; (r) = __x.__i.__h; \
366 #define smul_ppmm(xh, xl, m0, m1) \
368 register SItype __r0 __asm__ ("0"); \
369 register SItype __r1 __asm__ ("1") = (m0); \
371 __asm__ ("mr\t%%r0,%3" \
372 : "=r" (__r0), "=r" (__r1) \
373 : "r" (__r1), "r" (m1)); \
374 (xh) = __r0; (xl) = __r1; \
377 #define sdiv_qrnnd(q, r, n1, n0, d) \
379 register SItype __r0 __asm__ ("0") = (n1); \
380 register SItype __r1 __asm__ ("1") = (n0); \
382 __asm__ ("dr\t%%r0,%4" \
383 : "=r" (__r0), "=r" (__r1) \
384 : "r" (__r0), "r" (__r1), "r" (d)); \
385 (q) = __r1; (r) = __r0; \
387 #endif /* __zarch__ */
390 #if (defined (__i386__) || defined (__i486__)) && W_TYPE_SIZE == 32
391 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
392 __asm__ ("add{l} {%5,%1|%1,%5}\n\tadc{l} {%3,%0|%0,%3}" \
393 : "=r" ((USItype) (sh)), \
394 "=&r" ((USItype) (sl)) \
395 : "%0" ((USItype) (ah)), \
396 "g" ((USItype) (bh)), \
397 "%1" ((USItype) (al)), \
398 "g" ((USItype) (bl)))
399 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
400 __asm__ ("sub{l} {%5,%1|%1,%5}\n\tsbb{l} {%3,%0|%0,%3}" \
401 : "=r" ((USItype) (sh)), \
402 "=&r" ((USItype) (sl)) \
403 : "0" ((USItype) (ah)), \
404 "g" ((USItype) (bh)), \
405 "1" ((USItype) (al)), \
406 "g" ((USItype) (bl)))
407 #define umul_ppmm(w1, w0, u, v) \
408 __asm__ ("mul{l} %3" \
409 : "=a" ((USItype) (w0)), \
410 "=d" ((USItype) (w1)) \
411 : "%0" ((USItype) (u)), \
412 "rm" ((USItype) (v)))
413 #define udiv_qrnnd(q, r, n1, n0, dv) \
414 __asm__ ("div{l} %4" \
415 : "=a" ((USItype) (q)), \
416 "=d" ((USItype) (r)) \
417 : "0" ((USItype) (n0)), \
418 "1" ((USItype) (n1)), \
419 "rm" ((USItype) (dv)))
420 #define count_leading_zeros(count, x) ((count) = __builtin_clz (x))
421 #define count_trailing_zeros(count, x) ((count) = __builtin_ctz (x))
426 #if (defined (__x86_64__) || defined (__i386__)) && W_TYPE_SIZE == 64
427 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
428 __asm__ ("add{q} {%5,%1|%1,%5}\n\tadc{q} {%3,%0|%0,%3}" \
429 : "=r" ((UDItype) (sh)), \
430 "=&r" ((UDItype) (sl)) \
431 : "%0" ((UDItype) (ah)), \
432 "rme" ((UDItype) (bh)), \
433 "%1" ((UDItype) (al)), \
434 "rme" ((UDItype) (bl)))
435 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
436 __asm__ ("sub{q} {%5,%1|%1,%5}\n\tsbb{q} {%3,%0|%0,%3}" \
437 : "=r" ((UDItype) (sh)), \
438 "=&r" ((UDItype) (sl)) \
439 : "0" ((UDItype) (ah)), \
440 "rme" ((UDItype) (bh)), \
441 "1" ((UDItype) (al)), \
442 "rme" ((UDItype) (bl)))
443 #define umul_ppmm(w1, w0, u, v) \
444 __asm__ ("mul{q} %3" \
445 : "=a" ((UDItype) (w0)), \
446 "=d" ((UDItype) (w1)) \
447 : "%0" ((UDItype) (u)), \
448 "rm" ((UDItype) (v)))
449 #define udiv_qrnnd(q, r, n1, n0, dv) \
450 __asm__ ("div{q} %4" \
451 : "=a" ((UDItype) (q)), \
452 "=d" ((UDItype) (r)) \
453 : "0" ((UDItype) (n0)), \
454 "1" ((UDItype) (n1)), \
455 "rm" ((UDItype) (dv)))
456 #define count_leading_zeros(count, x) ((count) = __builtin_clzll (x))
457 #define count_trailing_zeros(count, x) ((count) = __builtin_ctzll (x))
462 #if defined (__i960__) && W_TYPE_SIZE == 32
463 #define umul_ppmm(w1, w0, u, v) \
464 ({union {UDItype __ll; \
465 struct {USItype __l, __h;} __i; \
467 __asm__ ("emul %2,%1,%0" \
469 : "%dI" ((USItype) (u)), \
470 "dI" ((USItype) (v))); \
471 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l;})
472 #define __umulsidi3(u, v) \
474 __asm__ ("emul %2,%1,%0" \
476 : "%dI" ((USItype) (u)), \
477 "dI" ((USItype) (v))); \
479 #endif /* __i960__ */
481 #if defined (__ia64) && W_TYPE_SIZE == 64
482 /* This form encourages gcc (pre-release 3.4 at least) to emit predicated
483 "sub r=r,r" and "sub r=r,r,1", giving a 2 cycle latency. The generic
484 code using "al<bl" arithmetically comes out making an actual 0 or 1 in a
485 register, which takes an extra cycle. */
486 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
491 (sh) = (ah) - (bh) - 1; \
493 (sh) = (ah) - (bh); \
497 /* Do both product parts in assembly, since that gives better code with
498 all gcc versions. Some callers will just use the upper part, and in
499 that situation we waste an instruction, but not any cycles. */
500 #define umul_ppmm(ph, pl, m0, m1) \
501 __asm__ ("xma.hu %0 = %2, %3, f0\n\txma.l %1 = %2, %3, f0" \
502 : "=&f" (ph), "=f" (pl) \
503 : "f" (m0), "f" (m1))
504 #define count_leading_zeros(count, x) \
506 UWtype _x = (x), _y, _a, _c; \
507 __asm__ ("mux1 %0 = %1, @rev" : "=r" (_y) : "r" (_x)); \
508 __asm__ ("czx1.l %0 = %1" : "=r" (_a) : "r" (-_y | _y)); \
509 _c = (_a - 1) << 3; \
516 (count) = W_TYPE_SIZE - 1 - _c; \
518 /* similar to what gcc does for __builtin_ffs, but 0 based rather than 1
519 based, and we don't need a special case for x==0 here */
520 #define count_trailing_zeros(count, x) \
522 UWtype __ctz_x = (x); \
523 __asm__ ("popcnt %0 = %1" \
525 : "r" ((__ctz_x-1) & ~__ctz_x)); \
530 #if defined (__M32R__) && W_TYPE_SIZE == 32
531 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
532 /* The cmp clears the condition bit. */ \
533 __asm__ ("cmp %0,%0\n\taddx %1,%5\n\taddx %0,%3" \
534 : "=r" ((USItype) (sh)), \
535 "=&r" ((USItype) (sl)) \
536 : "0" ((USItype) (ah)), \
537 "r" ((USItype) (bh)), \
538 "1" ((USItype) (al)), \
539 "r" ((USItype) (bl)) \
541 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
542 /* The cmp clears the condition bit. */ \
543 __asm__ ("cmp %0,%0\n\tsubx %1,%5\n\tsubx %0,%3" \
544 : "=r" ((USItype) (sh)), \
545 "=&r" ((USItype) (sl)) \
546 : "0" ((USItype) (ah)), \
547 "r" ((USItype) (bh)), \
548 "1" ((USItype) (al)), \
549 "r" ((USItype) (bl)) \
551 #endif /* __M32R__ */
553 #if defined (__mc68000__) && W_TYPE_SIZE == 32
554 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
555 __asm__ ("add%.l %5,%1\n\taddx%.l %3,%0" \
556 : "=d" ((USItype) (sh)), \
557 "=&d" ((USItype) (sl)) \
558 : "%0" ((USItype) (ah)), \
559 "d" ((USItype) (bh)), \
560 "%1" ((USItype) (al)), \
561 "g" ((USItype) (bl)))
562 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
563 __asm__ ("sub%.l %5,%1\n\tsubx%.l %3,%0" \
564 : "=d" ((USItype) (sh)), \
565 "=&d" ((USItype) (sl)) \
566 : "0" ((USItype) (ah)), \
567 "d" ((USItype) (bh)), \
568 "1" ((USItype) (al)), \
569 "g" ((USItype) (bl)))
571 /* The '020, '030, '040, '060 and CPU32 have 32x32->64 and 64/32->32q-32r. */
572 #if (defined (__mc68020__) && !defined (__mc68060__))
573 #define umul_ppmm(w1, w0, u, v) \
574 __asm__ ("mulu%.l %3,%1:%0" \
575 : "=d" ((USItype) (w0)), \
576 "=d" ((USItype) (w1)) \
577 : "%0" ((USItype) (u)), \
578 "dmi" ((USItype) (v)))
580 #define udiv_qrnnd(q, r, n1, n0, d) \
581 __asm__ ("divu%.l %4,%1:%0" \
582 : "=d" ((USItype) (q)), \
583 "=d" ((USItype) (r)) \
584 : "0" ((USItype) (n0)), \
585 "1" ((USItype) (n1)), \
586 "dmi" ((USItype) (d)))
588 #define sdiv_qrnnd(q, r, n1, n0, d) \
589 __asm__ ("divs%.l %4,%1:%0" \
590 : "=d" ((USItype) (q)), \
591 "=d" ((USItype) (r)) \
592 : "0" ((USItype) (n0)), \
593 "1" ((USItype) (n1)), \
594 "dmi" ((USItype) (d)))
596 #elif defined (__mcoldfire__) /* not mc68020 */
598 #define umul_ppmm(xh, xl, a, b) \
599 __asm__ ("| Inlined umul_ppmm\n" \
600 " move%.l %2,%/d0\n" \
601 " move%.l %3,%/d1\n" \
602 " move%.l %/d0,%/d2\n" \
604 " move%.l %/d1,%/d3\n" \
606 " move%.w %/d2,%/d4\n" \
607 " mulu %/d3,%/d4\n" \
608 " mulu %/d1,%/d2\n" \
609 " mulu %/d0,%/d3\n" \
610 " mulu %/d0,%/d1\n" \
611 " move%.l %/d4,%/d0\n" \
614 " add%.l %/d0,%/d2\n" \
615 " add%.l %/d3,%/d2\n" \
617 " add%.l %#65536,%/d1\n" \
619 " moveq %#0,%/d0\n" \
620 " move%.w %/d2,%/d0\n" \
621 " move%.w %/d4,%/d2\n" \
622 " move%.l %/d2,%1\n" \
623 " add%.l %/d1,%/d0\n" \
625 : "=g" ((USItype) (xh)), \
626 "=g" ((USItype) (xl)) \
627 : "g" ((USItype) (a)), \
628 "g" ((USItype) (b)) \
629 : "d0", "d1", "d2", "d3", "d4")
630 #define UMUL_TIME 100
631 #define UDIV_TIME 400
632 #else /* not ColdFire */
633 /* %/ inserts REGISTER_PREFIX, %# inserts IMMEDIATE_PREFIX. */
634 #define umul_ppmm(xh, xl, a, b) \
635 __asm__ ("| Inlined umul_ppmm\n" \
636 " move%.l %2,%/d0\n" \
637 " move%.l %3,%/d1\n" \
638 " move%.l %/d0,%/d2\n" \
640 " move%.l %/d1,%/d3\n" \
642 " move%.w %/d2,%/d4\n" \
643 " mulu %/d3,%/d4\n" \
644 " mulu %/d1,%/d2\n" \
645 " mulu %/d0,%/d3\n" \
646 " mulu %/d0,%/d1\n" \
647 " move%.l %/d4,%/d0\n" \
648 " eor%.w %/d0,%/d0\n" \
650 " add%.l %/d0,%/d2\n" \
651 " add%.l %/d3,%/d2\n" \
653 " add%.l %#65536,%/d1\n" \
655 " moveq %#0,%/d0\n" \
656 " move%.w %/d2,%/d0\n" \
657 " move%.w %/d4,%/d2\n" \
658 " move%.l %/d2,%1\n" \
659 " add%.l %/d1,%/d0\n" \
661 : "=g" ((USItype) (xh)), \
662 "=g" ((USItype) (xl)) \
663 : "g" ((USItype) (a)), \
664 "g" ((USItype) (b)) \
665 : "d0", "d1", "d2", "d3", "d4")
666 #define UMUL_TIME 100
667 #define UDIV_TIME 400
669 #endif /* not mc68020 */
671 /* The '020, '030, '040 and '060 have bitfield insns.
672 cpu32 disguises as a 68020, but lacks them. */
673 #if defined (__mc68020__) && !defined (__mcpu32__)
674 #define count_leading_zeros(count, x) \
675 __asm__ ("bfffo %1{%b2:%b2},%0" \
676 : "=d" ((USItype) (count)) \
677 : "od" ((USItype) (x)), "n" (0))
678 /* Some ColdFire architectures have a ff1 instruction supported via
680 #elif defined (__mcfisaaplus__) || defined (__mcfisac__)
681 #define count_leading_zeros(count,x) ((count) = __builtin_clz (x))
682 #define COUNT_LEADING_ZEROS_0 32
686 #if defined (__m88000__) && W_TYPE_SIZE == 32
687 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
688 __asm__ ("addu.co %1,%r4,%r5\n\taddu.ci %0,%r2,%r3" \
689 : "=r" ((USItype) (sh)), \
690 "=&r" ((USItype) (sl)) \
691 : "%rJ" ((USItype) (ah)), \
692 "rJ" ((USItype) (bh)), \
693 "%rJ" ((USItype) (al)), \
694 "rJ" ((USItype) (bl)))
695 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
696 __asm__ ("subu.co %1,%r4,%r5\n\tsubu.ci %0,%r2,%r3" \
697 : "=r" ((USItype) (sh)), \
698 "=&r" ((USItype) (sl)) \
699 : "rJ" ((USItype) (ah)), \
700 "rJ" ((USItype) (bh)), \
701 "rJ" ((USItype) (al)), \
702 "rJ" ((USItype) (bl)))
703 #define count_leading_zeros(count, x) \
706 __asm__ ("ff1 %0,%1" \
708 : "r" ((USItype) (x))); \
709 (count) = __cbtmp ^ 31; \
711 #define COUNT_LEADING_ZEROS_0 63 /* sic */
712 #if defined (__mc88110__)
713 #define umul_ppmm(wh, wl, u, v) \
715 union {UDItype __ll; \
716 struct {USItype __h, __l;} __i; \
718 __asm__ ("mulu.d %0,%1,%2" \
720 : "r" ((USItype) (u)), \
721 "r" ((USItype) (v))); \
722 (wh) = __xx.__i.__h; \
723 (wl) = __xx.__i.__l; \
725 #define udiv_qrnnd(q, r, n1, n0, d) \
726 ({union {UDItype __ll; \
727 struct {USItype __h, __l;} __i; \
730 __xx.__i.__h = (n1); __xx.__i.__l = (n0); \
731 __asm__ ("divu.d %0,%1,%2" \
734 "r" ((USItype) (d))); \
735 (r) = (n0) - __q * (d); (q) = __q; })
740 #define UDIV_TIME 150
741 #endif /* __mc88110__ */
742 #endif /* __m88000__ */
744 #if defined (__mn10300__)
745 # if defined (__AM33__)
746 # define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clz (X))
747 # define umul_ppmm(w1, w0, u, v) \
748 asm("mulu %3,%2,%1,%0" : "=r"(w0), "=r"(w1) : "r"(u), "r"(v))
749 # define smul_ppmm(w1, w0, u, v) \
750 asm("mul %3,%2,%1,%0" : "=r"(w0), "=r"(w1) : "r"(u), "r"(v))
752 # define umul_ppmm(w1, w0, u, v) \
753 asm("nop; nop; mulu %3,%0" : "=d"(w0), "=z"(w1) : "%0"(u), "d"(v))
754 # define smul_ppmm(w1, w0, u, v) \
755 asm("nop; nop; mul %3,%0" : "=d"(w0), "=z"(w1) : "%0"(u), "d"(v))
757 # define add_ssaaaa(sh, sl, ah, al, bh, bl) \
759 DWunion __s, __a, __b; \
760 __a.s.low = (al); __a.s.high = (ah); \
761 __b.s.low = (bl); __b.s.high = (bh); \
762 __s.ll = __a.ll + __b.ll; \
763 (sl) = __s.s.low; (sh) = __s.s.high; \
765 # define sub_ddmmss(sh, sl, ah, al, bh, bl) \
767 DWunion __s, __a, __b; \
768 __a.s.low = (al); __a.s.high = (ah); \
769 __b.s.low = (bl); __b.s.high = (bh); \
770 __s.ll = __a.ll - __b.ll; \
771 (sl) = __s.s.low; (sh) = __s.s.high; \
773 # define udiv_qrnnd(q, r, nh, nl, d) \
774 asm("divu %2,%0" : "=D"(q), "=z"(r) : "D"(d), "0"(nl), "1"(nh))
775 # define sdiv_qrnnd(q, r, nh, nl, d) \
776 asm("div %2,%0" : "=D"(q), "=z"(r) : "D"(d), "0"(nl), "1"(nh))
778 # define UDIV_TIME 38
781 #if defined (__mips__) && W_TYPE_SIZE == 32
782 #define umul_ppmm(w1, w0, u, v) \
784 UDItype __x = (UDItype) (USItype) (u) * (USItype) (v); \
785 (w1) = (USItype) (__x >> 32); \
786 (w0) = (USItype) (__x); \
789 #define UDIV_TIME 100
791 #if (__mips == 32 || __mips == 64) && ! __mips16
792 #define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clz (X))
793 #define COUNT_LEADING_ZEROS_0 32
795 #endif /* __mips__ */
797 #if defined (__ns32000__) && W_TYPE_SIZE == 32
798 #define umul_ppmm(w1, w0, u, v) \
799 ({union {UDItype __ll; \
800 struct {USItype __l, __h;} __i; \
802 __asm__ ("meid %2,%0" \
804 : "%0" ((USItype) (u)), \
805 "g" ((USItype) (v))); \
806 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l;})
807 #define __umulsidi3(u, v) \
809 __asm__ ("meid %2,%0" \
811 : "%0" ((USItype) (u)), \
812 "g" ((USItype) (v))); \
814 #define udiv_qrnnd(q, r, n1, n0, d) \
815 ({union {UDItype __ll; \
816 struct {USItype __l, __h;} __i; \
818 __xx.__i.__h = (n1); __xx.__i.__l = (n0); \
819 __asm__ ("deid %2,%0" \
822 "g" ((USItype) (d))); \
823 (r) = __xx.__i.__l; (q) = __xx.__i.__h; })
824 #define count_trailing_zeros(count,x) \
826 __asm__ ("ffsd %2,%0" \
827 : "=r" ((USItype) (count)) \
828 : "0" ((USItype) 0), \
829 "r" ((USItype) (x))); \
831 #endif /* __ns32000__ */
833 /* FIXME: We should test _IBMR2 here when we add assembly support for the
834 system vendor compilers.
835 FIXME: What's needed for gcc PowerPC VxWorks? __vxworks__ is not good
836 enough, since that hits ARM and m68k too. */
837 #if (defined (_ARCH_PPC) /* AIX */ \
838 || defined (_ARCH_PWR) /* AIX */ \
839 || defined (_ARCH_COM) /* AIX */ \
840 || defined (__powerpc__) /* gcc */ \
841 || defined (__POWERPC__) /* BEOS */ \
842 || defined (__ppc__) /* Darwin */ \
843 || (defined (PPC) && ! defined (CPU_FAMILY)) /* gcc 2.7.x GNU&SysV */ \
844 || (defined (PPC) && defined (CPU_FAMILY) /* VxWorks */ \
845 && CPU_FAMILY == PPC) \
846 ) && W_TYPE_SIZE == 32
847 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
849 if (__builtin_constant_p (bh) && (bh) == 0) \
850 __asm__ ("{a%I4|add%I4c} %1,%3,%4\n\t{aze|addze} %0,%2" \
851 : "=r" (sh), "=&r" (sl) : "r" (ah), "%r" (al), "rI" (bl));\
852 else if (__builtin_constant_p (bh) && (bh) == ~(USItype) 0) \
853 __asm__ ("{a%I4|add%I4c} %1,%3,%4\n\t{ame|addme} %0,%2" \
854 : "=r" (sh), "=&r" (sl) : "r" (ah), "%r" (al), "rI" (bl));\
856 __asm__ ("{a%I5|add%I5c} %1,%4,%5\n\t{ae|adde} %0,%2,%3" \
857 : "=r" (sh), "=&r" (sl) \
858 : "%r" (ah), "r" (bh), "%r" (al), "rI" (bl)); \
860 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
862 if (__builtin_constant_p (ah) && (ah) == 0) \
863 __asm__ ("{sf%I3|subf%I3c} %1,%4,%3\n\t{sfze|subfze} %0,%2" \
864 : "=r" (sh), "=&r" (sl) : "r" (bh), "rI" (al), "r" (bl));\
865 else if (__builtin_constant_p (ah) && (ah) == ~(USItype) 0) \
866 __asm__ ("{sf%I3|subf%I3c} %1,%4,%3\n\t{sfme|subfme} %0,%2" \
867 : "=r" (sh), "=&r" (sl) : "r" (bh), "rI" (al), "r" (bl));\
868 else if (__builtin_constant_p (bh) && (bh) == 0) \
869 __asm__ ("{sf%I3|subf%I3c} %1,%4,%3\n\t{ame|addme} %0,%2" \
870 : "=r" (sh), "=&r" (sl) : "r" (ah), "rI" (al), "r" (bl));\
871 else if (__builtin_constant_p (bh) && (bh) == ~(USItype) 0) \
872 __asm__ ("{sf%I3|subf%I3c} %1,%4,%3\n\t{aze|addze} %0,%2" \
873 : "=r" (sh), "=&r" (sl) : "r" (ah), "rI" (al), "r" (bl));\
875 __asm__ ("{sf%I4|subf%I4c} %1,%5,%4\n\t{sfe|subfe} %0,%3,%2" \
876 : "=r" (sh), "=&r" (sl) \
877 : "r" (ah), "r" (bh), "rI" (al), "r" (bl)); \
879 #define count_leading_zeros(count, x) \
880 __asm__ ("{cntlz|cntlzw} %0,%1" : "=r" (count) : "r" (x))
881 #define COUNT_LEADING_ZEROS_0 32
882 #if defined (_ARCH_PPC) || defined (__powerpc__) || defined (__POWERPC__) \
883 || defined (__ppc__) \
884 || (defined (PPC) && ! defined (CPU_FAMILY)) /* gcc 2.7.x GNU&SysV */ \
885 || (defined (PPC) && defined (CPU_FAMILY) /* VxWorks */ \
886 && CPU_FAMILY == PPC)
887 #define umul_ppmm(ph, pl, m0, m1) \
889 USItype __m0 = (m0), __m1 = (m1); \
890 __asm__ ("mulhwu %0,%1,%2" : "=r" (ph) : "%r" (m0), "r" (m1)); \
891 (pl) = __m0 * __m1; \
894 #define smul_ppmm(ph, pl, m0, m1) \
896 SItype __m0 = (m0), __m1 = (m1); \
897 __asm__ ("mulhw %0,%1,%2" : "=r" (ph) : "%r" (m0), "r" (m1)); \
898 (pl) = __m0 * __m1; \
901 #define UDIV_TIME 120
902 #elif defined (_ARCH_PWR)
904 #define smul_ppmm(xh, xl, m0, m1) \
905 __asm__ ("mul %0,%2,%3" : "=r" (xh), "=q" (xl) : "r" (m0), "r" (m1))
907 #define sdiv_qrnnd(q, r, nh, nl, d) \
908 __asm__ ("div %0,%2,%4" : "=r" (q), "=q" (r) : "r" (nh), "1" (nl), "r" (d))
909 #define UDIV_TIME 100
911 #endif /* 32-bit POWER architecture variants. */
913 /* We should test _IBMR2 here when we add assembly support for the system
915 #if (defined (_ARCH_PPC64) || defined (__powerpc64__)) && W_TYPE_SIZE == 64
916 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
918 if (__builtin_constant_p (bh) && (bh) == 0) \
919 __asm__ ("{a%I4|add%I4c} %1,%3,%4\n\t{aze|addze} %0,%2" \
920 : "=r" (sh), "=&r" (sl) : "r" (ah), "%r" (al), "rI" (bl));\
921 else if (__builtin_constant_p (bh) && (bh) == ~(UDItype) 0) \
922 __asm__ ("{a%I4|add%I4c} %1,%3,%4\n\t{ame|addme} %0,%2" \
923 : "=r" (sh), "=&r" (sl) : "r" (ah), "%r" (al), "rI" (bl));\
925 __asm__ ("{a%I5|add%I5c} %1,%4,%5\n\t{ae|adde} %0,%2,%3" \
926 : "=r" (sh), "=&r" (sl) \
927 : "%r" (ah), "r" (bh), "%r" (al), "rI" (bl)); \
929 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
931 if (__builtin_constant_p (ah) && (ah) == 0) \
932 __asm__ ("{sf%I3|subf%I3c} %1,%4,%3\n\t{sfze|subfze} %0,%2" \
933 : "=r" (sh), "=&r" (sl) : "r" (bh), "rI" (al), "r" (bl));\
934 else if (__builtin_constant_p (ah) && (ah) == ~(UDItype) 0) \
935 __asm__ ("{sf%I3|subf%I3c} %1,%4,%3\n\t{sfme|subfme} %0,%2" \
936 : "=r" (sh), "=&r" (sl) : "r" (bh), "rI" (al), "r" (bl));\
937 else if (__builtin_constant_p (bh) && (bh) == 0) \
938 __asm__ ("{sf%I3|subf%I3c} %1,%4,%3\n\t{ame|addme} %0,%2" \
939 : "=r" (sh), "=&r" (sl) : "r" (ah), "rI" (al), "r" (bl));\
940 else if (__builtin_constant_p (bh) && (bh) == ~(UDItype) 0) \
941 __asm__ ("{sf%I3|subf%I3c} %1,%4,%3\n\t{aze|addze} %0,%2" \
942 : "=r" (sh), "=&r" (sl) : "r" (ah), "rI" (al), "r" (bl));\
944 __asm__ ("{sf%I4|subf%I4c} %1,%5,%4\n\t{sfe|subfe} %0,%3,%2" \
945 : "=r" (sh), "=&r" (sl) \
946 : "r" (ah), "r" (bh), "rI" (al), "r" (bl)); \
948 #define count_leading_zeros(count, x) \
949 __asm__ ("cntlzd %0,%1" : "=r" (count) : "r" (x))
950 #define COUNT_LEADING_ZEROS_0 64
951 #define umul_ppmm(ph, pl, m0, m1) \
953 UDItype __m0 = (m0), __m1 = (m1); \
954 __asm__ ("mulhdu %0,%1,%2" : "=r" (ph) : "%r" (m0), "r" (m1)); \
955 (pl) = __m0 * __m1; \
958 #define smul_ppmm(ph, pl, m0, m1) \
960 DItype __m0 = (m0), __m1 = (m1); \
961 __asm__ ("mulhd %0,%1,%2" : "=r" (ph) : "%r" (m0), "r" (m1)); \
962 (pl) = __m0 * __m1; \
964 #define SMUL_TIME 14 /* ??? */
965 #define UDIV_TIME 120 /* ??? */
966 #endif /* 64-bit PowerPC. */
968 #if defined (__ibm032__) /* RT/ROMP */ && W_TYPE_SIZE == 32
969 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
970 __asm__ ("a %1,%5\n\tae %0,%3" \
971 : "=r" ((USItype) (sh)), \
972 "=&r" ((USItype) (sl)) \
973 : "%0" ((USItype) (ah)), \
974 "r" ((USItype) (bh)), \
975 "%1" ((USItype) (al)), \
976 "r" ((USItype) (bl)))
977 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
978 __asm__ ("s %1,%5\n\tse %0,%3" \
979 : "=r" ((USItype) (sh)), \
980 "=&r" ((USItype) (sl)) \
981 : "0" ((USItype) (ah)), \
982 "r" ((USItype) (bh)), \
983 "1" ((USItype) (al)), \
984 "r" ((USItype) (bl)))
985 #define umul_ppmm(ph, pl, m0, m1) \
987 USItype __m0 = (m0), __m1 = (m1); \
1009 : "=r" ((USItype) (ph)), \
1010 "=r" ((USItype) (pl)) \
1014 (ph) += ((((SItype) __m0 >> 31) & __m1) \
1015 + (((SItype) __m1 >> 31) & __m0)); \
1017 #define UMUL_TIME 20
1018 #define UDIV_TIME 200
1019 #define count_leading_zeros(count, x) \
1021 if ((x) >= 0x10000) \
1022 __asm__ ("clz %0,%1" \
1023 : "=r" ((USItype) (count)) \
1024 : "r" ((USItype) (x) >> 16)); \
1027 __asm__ ("clz %0,%1" \
1028 : "=r" ((USItype) (count)) \
1029 : "r" ((USItype) (x))); \
1035 #if defined(__sh__) && !__SHMEDIA__ && W_TYPE_SIZE == 32
1037 #define umul_ppmm(w1, w0, u, v) \
1039 "dmulu.l %2,%3\n\tsts%M1 macl,%1\n\tsts%M0 mach,%0" \
1040 : "=r<" ((USItype)(w1)), \
1041 "=r<" ((USItype)(w0)) \
1042 : "r" ((USItype)(u)), \
1043 "r" ((USItype)(v)) \
1048 /* This is the same algorithm as __udiv_qrnnd_c. */
1049 #define UDIV_NEEDS_NORMALIZATION 1
1051 #define udiv_qrnnd(q, r, n1, n0, d) \
1053 extern UWtype __udiv_qrnnd_16 (UWtype, UWtype) \
1054 __attribute__ ((visibility ("hidden"))); \
1055 /* r0: rn r1: qn */ /* r0: n1 r4: n0 r5: d r6: d1 */ /* r2: __m */ \
1066 : "=r" (q), "=&z" (r) \
1067 : "1" (n1), "r" (n0), "rm" (d), "r" (&__udiv_qrnnd_16) \
1068 : "r1", "r2", "r4", "r5", "r6", "pr", "t"); \
1071 #define UDIV_TIME 80
1073 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
1074 __asm__ ("clrt;subc %5,%1; subc %4,%0" \
1075 : "=r" (sh), "=r" (sl) \
1076 : "0" (ah), "1" (al), "r" (bh), "r" (bl) : "t")
1080 #if defined (__SH5__) && __SHMEDIA__ && W_TYPE_SIZE == 32
1081 #define __umulsidi3(u,v) ((UDItype)(USItype)u*(USItype)v)
1082 #define count_leading_zeros(count, x) \
1085 UDItype x_ = (USItype)(x); \
1088 __asm__ ("nsb %1, %0" : "=r" (c_) : "r" (x_)); \
1089 (count) = c_ - 31; \
1092 #define COUNT_LEADING_ZEROS_0 32
1095 #if defined (__sparc__) && !defined (__arch64__) && !defined (__sparcv9) \
1096 && W_TYPE_SIZE == 32
1097 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
1098 __asm__ ("addcc %r4,%5,%1\n\taddx %r2,%3,%0" \
1099 : "=r" ((USItype) (sh)), \
1100 "=&r" ((USItype) (sl)) \
1101 : "%rJ" ((USItype) (ah)), \
1102 "rI" ((USItype) (bh)), \
1103 "%rJ" ((USItype) (al)), \
1104 "rI" ((USItype) (bl)) \
1106 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
1107 __asm__ ("subcc %r4,%5,%1\n\tsubx %r2,%3,%0" \
1108 : "=r" ((USItype) (sh)), \
1109 "=&r" ((USItype) (sl)) \
1110 : "rJ" ((USItype) (ah)), \
1111 "rI" ((USItype) (bh)), \
1112 "rJ" ((USItype) (al)), \
1113 "rI" ((USItype) (bl)) \
1115 #if defined (__sparc_v8__)
1116 #define umul_ppmm(w1, w0, u, v) \
1117 __asm__ ("umul %2,%3,%1;rd %%y,%0" \
1118 : "=r" ((USItype) (w1)), \
1119 "=r" ((USItype) (w0)) \
1120 : "r" ((USItype) (u)), \
1121 "r" ((USItype) (v)))
1122 #define udiv_qrnnd(__q, __r, __n1, __n0, __d) \
1123 __asm__ ("mov %2,%%y;nop;nop;nop;udiv %3,%4,%0;umul %0,%4,%1;sub %3,%1,%1"\
1124 : "=&r" ((USItype) (__q)), \
1125 "=&r" ((USItype) (__r)) \
1126 : "r" ((USItype) (__n1)), \
1127 "r" ((USItype) (__n0)), \
1128 "r" ((USItype) (__d)))
1130 #if defined (__sparclite__)
1131 /* This has hardware multiply but not divide. It also has two additional
1132 instructions scan (ffs from high bit) and divscc. */
1133 #define umul_ppmm(w1, w0, u, v) \
1134 __asm__ ("umul %2,%3,%1;rd %%y,%0" \
1135 : "=r" ((USItype) (w1)), \
1136 "=r" ((USItype) (w0)) \
1137 : "r" ((USItype) (u)), \
1138 "r" ((USItype) (v)))
1139 #define udiv_qrnnd(q, r, n1, n0, d) \
1140 __asm__ ("! Inlined udiv_qrnnd\n" \
1141 " wr %%g0,%2,%%y ! Not a delayed write for sparclite\n" \
1143 " divscc %3,%4,%%g1\n" \
1144 " divscc %%g1,%4,%%g1\n" \
1145 " divscc %%g1,%4,%%g1\n" \
1146 " divscc %%g1,%4,%%g1\n" \
1147 " divscc %%g1,%4,%%g1\n" \
1148 " divscc %%g1,%4,%%g1\n" \
1149 " divscc %%g1,%4,%%g1\n" \
1150 " divscc %%g1,%4,%%g1\n" \
1151 " divscc %%g1,%4,%%g1\n" \
1152 " divscc %%g1,%4,%%g1\n" \
1153 " divscc %%g1,%4,%%g1\n" \
1154 " divscc %%g1,%4,%%g1\n" \
1155 " divscc %%g1,%4,%%g1\n" \
1156 " divscc %%g1,%4,%%g1\n" \
1157 " divscc %%g1,%4,%%g1\n" \
1158 " divscc %%g1,%4,%%g1\n" \
1159 " divscc %%g1,%4,%%g1\n" \
1160 " divscc %%g1,%4,%%g1\n" \
1161 " divscc %%g1,%4,%%g1\n" \
1162 " divscc %%g1,%4,%%g1\n" \
1163 " divscc %%g1,%4,%%g1\n" \
1164 " divscc %%g1,%4,%%g1\n" \
1165 " divscc %%g1,%4,%%g1\n" \
1166 " divscc %%g1,%4,%%g1\n" \
1167 " divscc %%g1,%4,%%g1\n" \
1168 " divscc %%g1,%4,%%g1\n" \
1169 " divscc %%g1,%4,%%g1\n" \
1170 " divscc %%g1,%4,%%g1\n" \
1171 " divscc %%g1,%4,%%g1\n" \
1172 " divscc %%g1,%4,%%g1\n" \
1173 " divscc %%g1,%4,%%g1\n" \
1174 " divscc %%g1,%4,%0\n" \
1178 "1: ! End of inline udiv_qrnnd" \
1179 : "=r" ((USItype) (q)), \
1180 "=r" ((USItype) (r)) \
1181 : "r" ((USItype) (n1)), \
1182 "r" ((USItype) (n0)), \
1183 "rI" ((USItype) (d)) \
1184 : "g1" __AND_CLOBBER_CC)
1185 #define UDIV_TIME 37
1186 #define count_leading_zeros(count, x) \
1188 __asm__ ("scan %1,1,%0" \
1189 : "=r" ((USItype) (count)) \
1190 : "r" ((USItype) (x))); \
1192 /* Early sparclites return 63 for an argument of 0, but they warn that future
1193 implementations might change this. Therefore, leave COUNT_LEADING_ZEROS_0
1196 /* SPARC without integer multiplication and divide instructions.
1197 (i.e. at least Sun4/20,40,60,65,75,110,260,280,330,360,380,470,490) */
1198 #define umul_ppmm(w1, w0, u, v) \
1199 __asm__ ("! Inlined umul_ppmm\n" \
1200 " wr %%g0,%2,%%y ! SPARC has 0-3 delay insn after a wr\n"\
1201 " sra %3,31,%%o5 ! Don't move this insn\n" \
1202 " and %2,%%o5,%%o5 ! Don't move this insn\n" \
1203 " andcc %%g0,0,%%g1 ! Don't move this insn\n" \
1204 " mulscc %%g1,%3,%%g1\n" \
1205 " mulscc %%g1,%3,%%g1\n" \
1206 " mulscc %%g1,%3,%%g1\n" \
1207 " mulscc %%g1,%3,%%g1\n" \
1208 " mulscc %%g1,%3,%%g1\n" \
1209 " mulscc %%g1,%3,%%g1\n" \
1210 " mulscc %%g1,%3,%%g1\n" \
1211 " mulscc %%g1,%3,%%g1\n" \
1212 " mulscc %%g1,%3,%%g1\n" \
1213 " mulscc %%g1,%3,%%g1\n" \
1214 " mulscc %%g1,%3,%%g1\n" \
1215 " mulscc %%g1,%3,%%g1\n" \
1216 " mulscc %%g1,%3,%%g1\n" \
1217 " mulscc %%g1,%3,%%g1\n" \
1218 " mulscc %%g1,%3,%%g1\n" \
1219 " mulscc %%g1,%3,%%g1\n" \
1220 " mulscc %%g1,%3,%%g1\n" \
1221 " mulscc %%g1,%3,%%g1\n" \
1222 " mulscc %%g1,%3,%%g1\n" \
1223 " mulscc %%g1,%3,%%g1\n" \
1224 " mulscc %%g1,%3,%%g1\n" \
1225 " mulscc %%g1,%3,%%g1\n" \
1226 " mulscc %%g1,%3,%%g1\n" \
1227 " mulscc %%g1,%3,%%g1\n" \
1228 " mulscc %%g1,%3,%%g1\n" \
1229 " mulscc %%g1,%3,%%g1\n" \
1230 " mulscc %%g1,%3,%%g1\n" \
1231 " mulscc %%g1,%3,%%g1\n" \
1232 " mulscc %%g1,%3,%%g1\n" \
1233 " mulscc %%g1,%3,%%g1\n" \
1234 " mulscc %%g1,%3,%%g1\n" \
1235 " mulscc %%g1,%3,%%g1\n" \
1236 " mulscc %%g1,0,%%g1\n" \
1237 " add %%g1,%%o5,%0\n" \
1239 : "=r" ((USItype) (w1)), \
1240 "=r" ((USItype) (w0)) \
1241 : "%rI" ((USItype) (u)), \
1242 "r" ((USItype) (v)) \
1243 : "g1", "o5" __AND_CLOBBER_CC)
1244 #define UMUL_TIME 39 /* 39 instructions */
1245 /* It's quite necessary to add this much assembler for the sparc.
1246 The default udiv_qrnnd (in C) is more than 10 times slower! */
1247 #define udiv_qrnnd(__q, __r, __n1, __n0, __d) \
1248 __asm__ ("! Inlined udiv_qrnnd\n" \
1250 " subcc %1,%2,%%g0\n" \
1252 " addxcc %0,%0,%0 ! shift n1n0 and a q-bit in lsb\n" \
1253 " sub %1,%2,%1 ! this kills msb of n\n" \
1254 " addx %1,%1,%1 ! so this can't give carry\n" \
1255 " subcc %%g1,1,%%g1\n" \
1257 " subcc %1,%2,%%g0\n" \
1259 " addxcc %0,%0,%0 ! shift n1n0 and a q-bit in lsb\n" \
1261 " sub %1,%2,%1 ! this kills msb of n\n" \
1262 "4: sub %1,%2,%1\n" \
1263 "5: addxcc %1,%1,%1\n" \
1265 " subcc %%g1,1,%%g1\n" \
1266 "! Got carry from n. Subtract next step to cancel this carry.\n" \
1268 " addcc %0,%0,%0 ! shift n1n0 and a 0-bit in lsb\n" \
1270 "3: xnor %0,0,%0\n" \
1271 " ! End of inline udiv_qrnnd" \
1272 : "=&r" ((USItype) (__q)), \
1273 "=&r" ((USItype) (__r)) \
1274 : "r" ((USItype) (__d)), \
1275 "1" ((USItype) (__n1)), \
1276 "0" ((USItype) (__n0)) : "g1" __AND_CLOBBER_CC)
1277 #define UDIV_TIME (3+7*32) /* 7 instructions/iteration. 32 iterations. */
1278 #endif /* __sparclite__ */
1279 #endif /* __sparc_v8__ */
1280 #endif /* sparc32 */
1282 #if ((defined (__sparc__) && defined (__arch64__)) || defined (__sparcv9)) \
1283 && W_TYPE_SIZE == 64
1284 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
1285 __asm__ ("addcc %r4,%5,%1\n\t" \
1286 "add %r2,%3,%0\n\t" \
1287 "bcs,a,pn %%xcc, 1f\n\t" \
1290 : "=r" ((UDItype)(sh)), \
1291 "=&r" ((UDItype)(sl)) \
1292 : "%rJ" ((UDItype)(ah)), \
1293 "rI" ((UDItype)(bh)), \
1294 "%rJ" ((UDItype)(al)), \
1295 "rI" ((UDItype)(bl)) \
1298 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
1299 __asm__ ("subcc %r4,%5,%1\n\t" \
1300 "sub %r2,%3,%0\n\t" \
1301 "bcs,a,pn %%xcc, 1f\n\t" \
1302 "sub %0, 1, %0\n\t" \
1304 : "=r" ((UDItype)(sh)), \
1305 "=&r" ((UDItype)(sl)) \
1306 : "rJ" ((UDItype)(ah)), \
1307 "rI" ((UDItype)(bh)), \
1308 "rJ" ((UDItype)(al)), \
1309 "rI" ((UDItype)(bl)) \
1312 #define umul_ppmm(wh, wl, u, v) \
1314 UDItype tmp1, tmp2, tmp3, tmp4; \
1315 __asm__ __volatile__ ( \
1317 "mulx %3,%6,%1\n\t" \
1318 "srlx %6,32,%2\n\t" \
1319 "mulx %2,%3,%4\n\t" \
1320 "sllx %4,32,%5\n\t" \
1322 "sub %1,%5,%5\n\t" \
1323 "srlx %5,32,%5\n\t" \
1324 "addcc %4,%5,%4\n\t" \
1325 "srlx %7,32,%5\n\t" \
1326 "mulx %3,%5,%3\n\t" \
1327 "mulx %2,%5,%5\n\t" \
1328 "sethi %%hi(0x80000000),%2\n\t" \
1329 "addcc %4,%3,%4\n\t" \
1330 "srlx %4,32,%4\n\t" \
1331 "add %2,%2,%2\n\t" \
1332 "movcc %%xcc,%%g0,%2\n\t" \
1333 "addcc %5,%4,%5\n\t" \
1334 "sllx %3,32,%3\n\t" \
1335 "add %1,%3,%1\n\t" \
1337 : "=r" ((UDItype)(wh)), \
1338 "=&r" ((UDItype)(wl)), \
1339 "=&r" (tmp1), "=&r" (tmp2), "=&r" (tmp3), "=&r" (tmp4) \
1340 : "r" ((UDItype)(u)), \
1341 "r" ((UDItype)(v)) \
1344 #define UMUL_TIME 96
1345 #define UDIV_TIME 230
1346 #endif /* sparc64 */
1348 #if defined (__vax__) && W_TYPE_SIZE == 32
1349 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
1350 __asm__ ("addl2 %5,%1\n\tadwc %3,%0" \
1351 : "=g" ((USItype) (sh)), \
1352 "=&g" ((USItype) (sl)) \
1353 : "%0" ((USItype) (ah)), \
1354 "g" ((USItype) (bh)), \
1355 "%1" ((USItype) (al)), \
1356 "g" ((USItype) (bl)))
1357 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
1358 __asm__ ("subl2 %5,%1\n\tsbwc %3,%0" \
1359 : "=g" ((USItype) (sh)), \
1360 "=&g" ((USItype) (sl)) \
1361 : "0" ((USItype) (ah)), \
1362 "g" ((USItype) (bh)), \
1363 "1" ((USItype) (al)), \
1364 "g" ((USItype) (bl)))
1365 #define umul_ppmm(xh, xl, m0, m1) \
1369 struct {USItype __l, __h;} __i; \
1371 USItype __m0 = (m0), __m1 = (m1); \
1372 __asm__ ("emul %1,%2,$0,%0" \
1373 : "=r" (__xx.__ll) \
1376 (xh) = __xx.__i.__h; \
1377 (xl) = __xx.__i.__l; \
1378 (xh) += ((((SItype) __m0 >> 31) & __m1) \
1379 + (((SItype) __m1 >> 31) & __m0)); \
1381 #define sdiv_qrnnd(q, r, n1, n0, d) \
1383 union {DItype __ll; \
1384 struct {SItype __l, __h;} __i; \
1386 __xx.__i.__h = n1; __xx.__i.__l = n0; \
1387 __asm__ ("ediv %3,%2,%0,%1" \
1388 : "=g" (q), "=g" (r) \
1389 : "g" (__xx.__ll), "g" (d)); \
1391 #endif /* __vax__ */
1394 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
1398 __asm__ ("addu .l1 %1, %2, %0" \
1399 : "=a" (__ll) : "a" (al), "a" (bl)); \
1400 (sl) = (USItype)__ll; \
1401 (sh) = ((USItype)(__ll >> 32)) + (ah) + (bh); \
1405 #ifdef _TMS320C6400_PLUS
1406 #define __umulsidi3(u,v) ((UDItype)(USItype)u*(USItype)v)
1407 #define umul_ppmm(w1, w0, u, v) \
1409 UDItype __x = (UDItype) (USItype) (u) * (USItype) (v); \
1410 (w1) = (USItype) (__x >> 32); \
1411 (w0) = (USItype) (__x); \
1413 #endif /* _TMS320C6400_PLUS */
1415 #define count_leading_zeros(count, x) ((count) = __builtin_clz (x))
1417 #define count_trailing_zeros(count, x) ((count) = __builtin_ctz (x))
1420 #define UDIV_TIME 40
1421 #endif /* _TMS320C6X */
1423 #if defined (__xtensa__) && W_TYPE_SIZE == 32
1424 /* This code is not Xtensa-configuration-specific, so rely on the compiler
1425 to expand builtin functions depending on what configuration features
1426 are available. This avoids library calls when the operation can be
1427 performed in-line. */
1428 #define umul_ppmm(w1, w0, u, v) \
1431 __w.ll = __builtin_umulsidi3 (u, v); \
1435 #define __umulsidi3(u, v) __builtin_umulsidi3 (u, v)
1436 #define count_leading_zeros(COUNT, X) ((COUNT) = __builtin_clz (X))
1437 #define count_trailing_zeros(COUNT, X) ((COUNT) = __builtin_ctz (X))
1438 #endif /* __xtensa__ */
1440 #if defined xstormy16
1441 extern UHItype
__stormy16_count_leading_zeros (UHItype
);
1442 #define count_leading_zeros(count, x) \
1447 /* We assume that W_TYPE_SIZE is a multiple of 16... */ \
1448 for ((count) = 0, size = W_TYPE_SIZE; size; size -= 16) \
1452 c = __clzhi2 ((x) >> (size - 16)); \
1459 #define COUNT_LEADING_ZEROS_0 W_TYPE_SIZE
1462 #if defined (__z8000__) && W_TYPE_SIZE == 16
1463 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
1464 __asm__ ("add %H1,%H5\n\tadc %H0,%H3" \
1465 : "=r" ((unsigned int)(sh)), \
1466 "=&r" ((unsigned int)(sl)) \
1467 : "%0" ((unsigned int)(ah)), \
1468 "r" ((unsigned int)(bh)), \
1469 "%1" ((unsigned int)(al)), \
1470 "rQR" ((unsigned int)(bl)))
1471 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
1472 __asm__ ("sub %H1,%H5\n\tsbc %H0,%H3" \
1473 : "=r" ((unsigned int)(sh)), \
1474 "=&r" ((unsigned int)(sl)) \
1475 : "0" ((unsigned int)(ah)), \
1476 "r" ((unsigned int)(bh)), \
1477 "1" ((unsigned int)(al)), \
1478 "rQR" ((unsigned int)(bl)))
1479 #define umul_ppmm(xh, xl, m0, m1) \
1481 union {long int __ll; \
1482 struct {unsigned int __h, __l;} __i; \
1484 unsigned int __m0 = (m0), __m1 = (m1); \
1485 __asm__ ("mult %S0,%H3" \
1486 : "=r" (__xx.__i.__h), \
1487 "=r" (__xx.__i.__l) \
1490 (xh) = __xx.__i.__h; (xl) = __xx.__i.__l; \
1491 (xh) += ((((signed int) __m0 >> 15) & __m1) \
1492 + (((signed int) __m1 >> 15) & __m0)); \
1494 #endif /* __z8000__ */
1496 #endif /* __GNUC__ */
1498 /* If this machine has no inline assembler, use C macros. */
1500 #if !defined (add_ssaaaa)
1501 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
1504 __x = (al) + (bl); \
1505 (sh) = (ah) + (bh) + (__x < (al)); \
1510 #if !defined (sub_ddmmss)
1511 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
1514 __x = (al) - (bl); \
1515 (sh) = (ah) - (bh) - (__x > (al)); \
1520 /* If we lack umul_ppmm but have smul_ppmm, define umul_ppmm in terms of
1522 #if !defined (umul_ppmm) && defined (smul_ppmm)
1523 #define umul_ppmm(w1, w0, u, v) \
1526 UWtype __xm0 = (u), __xm1 = (v); \
1527 smul_ppmm (__w1, w0, __xm0, __xm1); \
1528 (w1) = __w1 + (-(__xm0 >> (W_TYPE_SIZE - 1)) & __xm1) \
1529 + (-(__xm1 >> (W_TYPE_SIZE - 1)) & __xm0); \
1533 /* If we still don't have umul_ppmm, define it using plain C. */
1534 #if !defined (umul_ppmm)
1535 #define umul_ppmm(w1, w0, u, v) \
1537 UWtype __x0, __x1, __x2, __x3; \
1538 UHWtype __ul, __vl, __uh, __vh; \
1540 __ul = __ll_lowpart (u); \
1541 __uh = __ll_highpart (u); \
1542 __vl = __ll_lowpart (v); \
1543 __vh = __ll_highpart (v); \
1545 __x0 = (UWtype) __ul * __vl; \
1546 __x1 = (UWtype) __ul * __vh; \
1547 __x2 = (UWtype) __uh * __vl; \
1548 __x3 = (UWtype) __uh * __vh; \
1550 __x1 += __ll_highpart (__x0);/* this can't give carry */ \
1551 __x1 += __x2; /* but this indeed can */ \
1552 if (__x1 < __x2) /* did we get it? */ \
1553 __x3 += __ll_B; /* yes, add it in the proper pos. */ \
1555 (w1) = __x3 + __ll_highpart (__x1); \
1556 (w0) = __ll_lowpart (__x1) * __ll_B + __ll_lowpart (__x0); \
1560 #if !defined (__umulsidi3)
1561 #define __umulsidi3(u, v) \
1563 umul_ppmm (__w.s.high, __w.s.low, u, v); \
1567 /* Define this unconditionally, so it can be used for debugging. */
1568 #define __udiv_qrnnd_c(q, r, n1, n0, d) \
1570 UWtype __d1, __d0, __q1, __q0; \
1571 UWtype __r1, __r0, __m; \
1572 __d1 = __ll_highpart (d); \
1573 __d0 = __ll_lowpart (d); \
1575 __r1 = (n1) % __d1; \
1576 __q1 = (n1) / __d1; \
1577 __m = (UWtype) __q1 * __d0; \
1578 __r1 = __r1 * __ll_B | __ll_highpart (n0); \
1581 __q1--, __r1 += (d); \
1582 if (__r1 >= (d)) /* i.e. we didn't get carry when adding to __r1 */\
1584 __q1--, __r1 += (d); \
1588 __r0 = __r1 % __d1; \
1589 __q0 = __r1 / __d1; \
1590 __m = (UWtype) __q0 * __d0; \
1591 __r0 = __r0 * __ll_B | __ll_lowpart (n0); \
1594 __q0--, __r0 += (d); \
1597 __q0--, __r0 += (d); \
1601 (q) = (UWtype) __q1 * __ll_B | __q0; \
1605 /* If the processor has no udiv_qrnnd but sdiv_qrnnd, go through
1606 __udiv_w_sdiv (defined in libgcc or elsewhere). */
1607 #if !defined (udiv_qrnnd) && defined (sdiv_qrnnd)
1608 #define udiv_qrnnd(q, r, nh, nl, d) \
1611 (q) = __udiv_w_sdiv (&__r, nh, nl, d); \
1616 /* If udiv_qrnnd was not defined for this processor, use __udiv_qrnnd_c. */
1617 #if !defined (udiv_qrnnd)
1618 #define UDIV_NEEDS_NORMALIZATION 1
1619 #define udiv_qrnnd __udiv_qrnnd_c
1622 #if !defined (count_leading_zeros)
1623 #define count_leading_zeros(count, x) \
1625 UWtype __xr = (x); \
1628 if (W_TYPE_SIZE <= 32) \
1630 __a = __xr < ((UWtype)1<<2*__BITS4) \
1631 ? (__xr < ((UWtype)1<<__BITS4) ? 0 : __BITS4) \
1632 : (__xr < ((UWtype)1<<3*__BITS4) ? 2*__BITS4 : 3*__BITS4); \
1636 for (__a = W_TYPE_SIZE - 8; __a > 0; __a -= 8) \
1637 if (((__xr >> __a) & 0xff) != 0) \
1641 (count) = W_TYPE_SIZE - (__clz_tab[__xr >> __a] + __a); \
1643 #define COUNT_LEADING_ZEROS_0 W_TYPE_SIZE
1646 #if !defined (count_trailing_zeros)
1647 /* Define count_trailing_zeros using count_leading_zeros. The latter might be
1648 defined in asm, but if it is not, the C version above is good enough. */
1649 #define count_trailing_zeros(count, x) \
1651 UWtype __ctz_x = (x); \
1653 count_leading_zeros (__ctz_c, __ctz_x & -__ctz_x); \
1654 (count) = W_TYPE_SIZE - 1 - __ctz_c; \
1658 #ifndef UDIV_NEEDS_NORMALIZATION
1659 #define UDIV_NEEDS_NORMALIZATION 0