]>
gcc.gnu.org Git - gcc.git/blob - gcc/longlong.h
1 /* longlong.h -- definitions for mixed size 32/64 bit arithmetic.
2 Copyright (C) 1991, 1992, 1994 Free Software Foundation, Inc.
4 This definition file is free software; you can redistribute it
5 and/or modify it under the terms of the GNU General Public
6 License as published by the Free Software Foundation; either
7 version 2, or (at your option) any later version.
9 This definition file is distributed in the hope that it will be
10 useful, but WITHOUT ANY WARRANTY; without even the implied
11 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 See the GNU General Public License for more details.
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,
17 Boston, MA 02111-1307, USA. */
20 #define SI_TYPE_SIZE 32
23 #define __BITS4 (SI_TYPE_SIZE / 4)
24 #define __ll_B (1L << (SI_TYPE_SIZE / 2))
25 #define __ll_lowpart(t) ((USItype) (t) % __ll_B)
26 #define __ll_highpart(t) ((USItype) (t) / __ll_B)
28 /* Define auxiliary asm macros.
30 1) umul_ppmm(high_prod, low_prod, multipler, multiplicand)
31 multiplies two USItype integers MULTIPLER and MULTIPLICAND,
32 and generates a two-part USItype product in HIGH_PROD and
35 2) __umulsidi3(a,b) multiplies two USItype integers A and B,
36 and returns a UDItype product. This is just a variant of umul_ppmm.
38 3) udiv_qrnnd(quotient, remainder, high_numerator, low_numerator,
39 denominator) divides a two-word unsigned integer, composed by the
40 integers HIGH_NUMERATOR and LOW_NUMERATOR, by DENOMINATOR and
41 places the quotient in QUOTIENT and the remainder in REMAINDER.
42 HIGH_NUMERATOR must be less than DENOMINATOR for correct operation.
43 If, in addition, the most significant bit of DENOMINATOR must be 1,
44 then the pre-processor symbol UDIV_NEEDS_NORMALIZATION is defined to 1.
46 4) sdiv_qrnnd(quotient, remainder, high_numerator, low_numerator,
47 denominator). Like udiv_qrnnd but the numbers are signed. The
48 quotient is rounded towards 0.
50 5) count_leading_zeros(count, x) counts the number of zero-bits from
51 the msb to the first non-zero bit. This is the number of steps X
52 needs to be shifted left to set the msb. Undefined for X == 0.
54 6) add_ssaaaa(high_sum, low_sum, high_addend_1, low_addend_1,
55 high_addend_2, low_addend_2) adds two two-word unsigned integers,
56 composed by HIGH_ADDEND_1 and LOW_ADDEND_1, and HIGH_ADDEND_2 and
57 LOW_ADDEND_2 respectively. The result is placed in HIGH_SUM and
58 LOW_SUM. Overflow (i.e. carry out) is not stored anywhere, and is
61 7) sub_ddmmss(high_difference, low_difference, high_minuend,
62 low_minuend, high_subtrahend, low_subtrahend) subtracts two
63 two-word unsigned integers, composed by HIGH_MINUEND_1 and
64 LOW_MINUEND_1, and HIGH_SUBTRAHEND_2 and LOW_SUBTRAHEND_2
65 respectively. The result is placed in HIGH_DIFFERENCE and
66 LOW_DIFFERENCE. Overflow (i.e. carry out) is not stored anywhere,
69 If any of these macros are left undefined for a particular CPU,
72 /* The CPUs come in alphabetical order below.
74 Please add support for more CPUs here, or improve the current support
76 (E.g. WE32100, IBM360.) */
78 #if defined (__GNUC__) && !defined (NO_ASM)
80 /* We sometimes need to clobber "cc" with gcc2, but that would not be
81 understood by gcc1. Use cpp to avoid major code duplication. */
84 #define __AND_CLOBBER_CC
85 #else /* __GNUC__ >= 2 */
86 #define __CLOBBER_CC : "cc"
87 #define __AND_CLOBBER_CC , "cc"
88 #endif /* __GNUC__ < 2 */
90 #if defined (__a29k__) || defined (_AM29K)
91 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
92 __asm__ ("add %1,%4,%5
94 : "=r" ((USItype)(sh)), \
95 "=&r" ((USItype)(sl)) \
96 : "%r" ((USItype)(ah)), \
97 "rI" ((USItype)(bh)), \
98 "%r" ((USItype)(al)), \
100 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
101 __asm__ ("sub %1,%4,%5
103 : "=r" ((USItype)(sh)), \
104 "=&r" ((USItype)(sl)) \
105 : "r" ((USItype)(ah)), \
106 "rI" ((USItype)(bh)), \
107 "r" ((USItype)(al)), \
108 "rI" ((USItype)(bl)))
109 #define umul_ppmm(xh, xl, m0, m1) \
111 USItype __m0 = (m0), __m1 = (m1); \
112 __asm__ ("multiplu %0,%1,%2" \
113 : "=r" ((USItype)(xl)) \
116 __asm__ ("multmu %0,%1,%2" \
117 : "=r" ((USItype)(xh)) \
121 #define udiv_qrnnd(q, r, n1, n0, d) \
122 __asm__ ("dividu %0,%3,%4" \
123 : "=r" ((USItype)(q)), \
124 "=q" ((USItype)(r)) \
125 : "1" ((USItype)(n1)), \
126 "r" ((USItype)(n0)), \
128 #define count_leading_zeros(count, x) \
129 __asm__ ("clz %0,%1" \
130 : "=r" ((USItype)(count)) \
131 : "r" ((USItype)(x)))
132 #endif /* __a29k__ */
134 #if defined (__arm__)
135 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
136 __asm__ ("adds %1, %4, %5
138 : "=r" ((USItype)(sh)), \
139 "=&r" ((USItype)(sl)) \
140 : "%r" ((USItype)(ah)), \
141 "rI" ((USItype)(bh)), \
142 "%r" ((USItype)(al)), \
143 "rI" ((USItype)(bl)))
144 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
145 __asm__ ("subs %1, %4, %5
147 : "=r" ((USItype)(sh)), \
148 "=&r" ((USItype)(sl)) \
149 : "r" ((USItype)(ah)), \
150 "rI" ((USItype)(bh)), \
151 "r" ((USItype)(al)), \
152 "rI" ((USItype)(bl)))
153 #define umul_ppmm(xh, xl, a, b) \
154 {register USItype __t0, __t1, __t2; \
155 __asm__ ("%@ Inlined umul_ppmm
158 bic %3, %5, %2, lsl #16
159 bic %4, %6, %0, lsl #16
166 adds %1, %1, %3, lsl #16
167 adc %0, %0, %3, lsr #16" \
168 : "=&r" ((USItype)(xh)), \
169 "=r" ((USItype)(xl)), \
170 "=&r" (__t0), "=&r" (__t1), "=r" (__t2) \
171 : "r" ((USItype)(a)), \
172 "r" ((USItype)(b)));}
174 #define UDIV_TIME 100
177 #if defined (__clipper__)
178 #define umul_ppmm(w1, w0, u, v) \
179 ({union {UDItype __ll; \
180 struct {USItype __l, __h;} __i; \
182 __asm__ ("mulwux %2,%0" \
184 : "%0" ((USItype)(u)), \
185 "r" ((USItype)(v))); \
186 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l;})
187 #define smul_ppmm(w1, w0, u, v) \
188 ({union {DItype __ll; \
189 struct {SItype __l, __h;} __i; \
191 __asm__ ("mulwx %2,%0" \
193 : "%0" ((SItype)(u)), \
194 "r" ((SItype)(v))); \
195 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l;})
196 #define __umulsidi3(u, v) \
198 __asm__ ("mulwux %2,%0" \
200 : "%0" ((USItype)(u)), \
201 "r" ((USItype)(v))); \
203 #endif /* __clipper__ */
205 #if defined (__gmicro__)
206 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
207 __asm__ ("add.w %5,%1
209 : "=g" ((USItype)(sh)), \
210 "=&g" ((USItype)(sl)) \
211 : "%0" ((USItype)(ah)), \
212 "g" ((USItype)(bh)), \
213 "%1" ((USItype)(al)), \
215 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
216 __asm__ ("sub.w %5,%1
218 : "=g" ((USItype)(sh)), \
219 "=&g" ((USItype)(sl)) \
220 : "0" ((USItype)(ah)), \
221 "g" ((USItype)(bh)), \
222 "1" ((USItype)(al)), \
224 #define umul_ppmm(ph, pl, m0, m1) \
225 __asm__ ("mulx %3,%0,%1" \
226 : "=g" ((USItype)(ph)), \
227 "=r" ((USItype)(pl)) \
228 : "%0" ((USItype)(m0)), \
230 #define udiv_qrnnd(q, r, nh, nl, d) \
231 __asm__ ("divx %4,%0,%1" \
232 : "=g" ((USItype)(q)), \
233 "=r" ((USItype)(r)) \
234 : "1" ((USItype)(nh)), \
235 "0" ((USItype)(nl)), \
237 #define count_leading_zeros(count, x) \
238 __asm__ ("bsch/1 %1,%0" \
240 : "g" ((USItype)(x)), \
245 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
246 __asm__ ("add %4,%5,%1
248 : "=r" ((USItype)(sh)), \
249 "=&r" ((USItype)(sl)) \
250 : "%rM" ((USItype)(ah)), \
251 "rM" ((USItype)(bh)), \
252 "%rM" ((USItype)(al)), \
253 "rM" ((USItype)(bl)))
254 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
255 __asm__ ("sub %4,%5,%1
257 : "=r" ((USItype)(sh)), \
258 "=&r" ((USItype)(sl)) \
259 : "rM" ((USItype)(ah)), \
260 "rM" ((USItype)(bh)), \
261 "rM" ((USItype)(al)), \
262 "rM" ((USItype)(bl)))
263 #if defined (_PA_RISC1_1)
264 #define umul_ppmm(w1, w0, u, v) \
269 struct {USItype __w1, __w0;} __w1w0; \
271 __asm__ ("xmpyu %1,%2,%0" \
273 : "x" ((USItype)(u)), \
274 "x" ((USItype)(v))); \
275 (w1) = __t.__w1w0.__w1; \
276 (w0) = __t.__w1w0.__w0; \
283 #define count_leading_zeros(count, x) \
288 extru,= %1,15,16,%%r0 ; Bits 31..16 zero?
289 extru,tr %1,15,16,%1 ; No. Shift down, skip add.
290 ldo 16(%0),%0 ; Yes. Perform add.
291 extru,= %1,23,8,%%r0 ; Bits 15..8 zero?
292 extru,tr %1,23,8,%1 ; No. Shift down, skip add.
293 ldo 8(%0),%0 ; Yes. Perform add.
294 extru,= %1,27,4,%%r0 ; Bits 7..4 zero?
295 extru,tr %1,27,4,%1 ; No. Shift down, skip add.
296 ldo 4(%0),%0 ; Yes. Perform add.
297 extru,= %1,29,2,%%r0 ; Bits 3..2 zero?
298 extru,tr %1,29,2,%1 ; No. Shift down, skip add.
299 ldo 2(%0),%0 ; Yes. Perform add.
300 extru %1,30,1,%1 ; Extract bit 1.
301 sub %0,%1,%0 ; Subtract it.
302 " : "=r" (count), "=r" (__tmp) : "1" (x)); \
306 #if defined (__i386__) || defined (__i486__)
307 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
310 : "=r" ((USItype)(sh)), \
311 "=&r" ((USItype)(sl)) \
312 : "%0" ((USItype)(ah)), \
313 "g" ((USItype)(bh)), \
314 "%1" ((USItype)(al)), \
316 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
319 : "=r" ((USItype)(sh)), \
320 "=&r" ((USItype)(sl)) \
321 : "0" ((USItype)(ah)), \
322 "g" ((USItype)(bh)), \
323 "1" ((USItype)(al)), \
325 #define umul_ppmm(w1, w0, u, v) \
327 : "=a" ((USItype)(w0)), \
328 "=d" ((USItype)(w1)) \
329 : "%0" ((USItype)(u)), \
331 #define udiv_qrnnd(q, r, n1, n0, d) \
333 : "=a" ((USItype)(q)), \
334 "=d" ((USItype)(r)) \
335 : "0" ((USItype)(n0)), \
336 "1" ((USItype)(n1)), \
338 #define count_leading_zeros(count, x) \
341 __asm__ ("bsrl %1,%0" \
342 : "=r" (__cbtmp) : "rm" ((USItype)(x))); \
343 (count) = __cbtmp ^ 31; \
349 #if defined (__i860__)
351 /* Make sure these patterns really improve the code before
352 switching them on. */
353 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
358 struct {USItype __l, __h;} __i; \
360 __a.__i.__l = (al); \
361 __a.__i.__h = (ah); \
362 __b.__i.__l = (bl); \
363 __b.__i.__h = (bh); \
364 __asm__ ("fiadd.dd %1,%2,%0" \
366 : "%f" (__a.__ll), "f" (__b.__ll)); \
367 (sh) = __s.__i.__h; \
368 (sl) = __s.__i.__l; \
370 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
375 struct {USItype __l, __h;} __i; \
377 __a.__i.__l = (al); \
378 __a.__i.__h = (ah); \
379 __b.__i.__l = (bl); \
380 __b.__i.__h = (bh); \
381 __asm__ ("fisub.dd %1,%2,%0" \
383 : "%f" (__a.__ll), "f" (__b.__ll)); \
384 (sh) = __s.__i.__h; \
385 (sl) = __s.__i.__l; \
388 #endif /* __i860__ */
390 #if defined (__i960__)
391 #define umul_ppmm(w1, w0, u, v) \
392 ({union {UDItype __ll; \
393 struct {USItype __l, __h;} __i; \
395 __asm__ ("emul %2,%1,%0" \
397 : "%dI" ((USItype)(u)), \
398 "dI" ((USItype)(v))); \
399 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l;})
400 #define __umulsidi3(u, v) \
402 __asm__ ("emul %2,%1,%0" \
404 : "%dI" ((USItype)(u)), \
405 "dI" ((USItype)(v))); \
407 #endif /* __i960__ */
409 #if defined (__mc68000__)
410 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
411 __asm__ ("add%.l %5,%1
413 : "=d" ((USItype)(sh)), \
414 "=&d" ((USItype)(sl)) \
415 : "%0" ((USItype)(ah)), \
416 "d" ((USItype)(bh)), \
417 "%1" ((USItype)(al)), \
419 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
420 __asm__ ("sub%.l %5,%1
422 : "=d" ((USItype)(sh)), \
423 "=&d" ((USItype)(sl)) \
424 : "0" ((USItype)(ah)), \
425 "d" ((USItype)(bh)), \
426 "1" ((USItype)(al)), \
428 #if defined (__mc68020__) || defined (__NeXT__) || defined(mc68020)
429 #define umul_ppmm(w1, w0, u, v) \
430 __asm__ ("mulu%.l %3,%1:%0" \
431 : "=d" ((USItype)(w0)), \
432 "=d" ((USItype)(w1)) \
433 : "%0" ((USItype)(u)), \
434 "dmi" ((USItype)(v)))
436 #define udiv_qrnnd(q, r, n1, n0, d) \
437 __asm__ ("divu%.l %4,%1:%0" \
438 : "=d" ((USItype)(q)), \
439 "=d" ((USItype)(r)) \
440 : "0" ((USItype)(n0)), \
441 "1" ((USItype)(n1)), \
442 "dmi" ((USItype)(d)))
444 #define sdiv_qrnnd(q, r, n1, n0, d) \
445 __asm__ ("divs%.l %4,%1:%0" \
446 : "=d" ((USItype)(q)), \
447 "=d" ((USItype)(r)) \
448 : "0" ((USItype)(n0)), \
449 "1" ((USItype)(n1)), \
450 "dmi" ((USItype)(d)))
451 #define count_leading_zeros(count, x) \
452 __asm__ ("bfffo %1{%b2:%b2},%0" \
453 : "=d" ((USItype)(count)) \
454 : "od" ((USItype)(x)), "n" (0))
455 #else /* not mc68020 */
456 /* %/ inserts REGISTER_PREFIX, %# inserts IMMEDIATE_PREFIX. */
457 #define umul_ppmm(xh, xl, a, b) \
458 __asm__ ("| Inlined umul_ppmm
484 : "=g" ((USItype)(xh)), \
485 "=g" ((USItype)(xl)) \
486 : "g" ((USItype)(a)), \
488 : "d0", "d1", "d2", "d3", "d4")
489 #define UMUL_TIME 100
490 #define UDIV_TIME 400
491 #endif /* not mc68020 */
494 #if defined (__m88000__)
495 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
496 __asm__ ("addu.co %1,%r4,%r5
497 addu.ci %0,%r2,%r3" \
498 : "=r" ((USItype)(sh)), \
499 "=&r" ((USItype)(sl)) \
500 : "%rJ" ((USItype)(ah)), \
501 "rJ" ((USItype)(bh)), \
502 "%rJ" ((USItype)(al)), \
503 "rJ" ((USItype)(bl)))
504 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
505 __asm__ ("subu.co %1,%r4,%r5
506 subu.ci %0,%r2,%r3" \
507 : "=r" ((USItype)(sh)), \
508 "=&r" ((USItype)(sl)) \
509 : "rJ" ((USItype)(ah)), \
510 "rJ" ((USItype)(bh)), \
511 "rJ" ((USItype)(al)), \
512 "rJ" ((USItype)(bl)))
513 #define count_leading_zeros(count, x) \
516 __asm__ ("ff1 %0,%1" \
518 : "r" ((USItype)(x))); \
519 (count) = __cbtmp ^ 31; \
521 #if defined (__mc88110__)
522 #define umul_ppmm(wh, wl, u, v) \
524 union {UDItype __ll; \
525 struct {USItype __h, __l;} __i; \
527 __asm__ ("mulu.d %0,%1,%2" \
529 : "r" ((USItype)(u)), \
530 "r" ((USItype)(v))); \
531 (wh) = __xx.__i.__h; \
532 (wl) = __xx.__i.__l; \
534 #define udiv_qrnnd(q, r, n1, n0, d) \
535 ({union {UDItype __ll; \
536 struct {USItype __h, __l;} __i; \
539 __xx.__i.__h = (n1); __xx.__i.__l = (n0); \
540 __asm__ ("divu.d %0,%1,%2" \
543 "r" ((USItype)(d))); \
544 (r) = (n0) - __q * (d); (q) = __q; })
549 #define UDIV_TIME 150
550 #endif /* __mc88110__ */
551 #endif /* __m88000__ */
553 #if defined (__mips__)
554 #define umul_ppmm(w1, w0, u, v) \
555 __asm__ ("multu %2,%3
558 : "=d" ((USItype)(w0)), \
559 "=d" ((USItype)(w1)) \
560 : "d" ((USItype)(u)), \
563 #define UDIV_TIME 100
564 #endif /* __mips__ */
566 #if defined (__ns32000__)
567 #define umul_ppmm(w1, w0, u, v) \
568 ({union {UDItype __ll; \
569 struct {USItype __l, __h;} __i; \
571 __asm__ ("meid %2,%0" \
573 : "%0" ((USItype)(u)), \
574 "g" ((USItype)(v))); \
575 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l;})
576 #define __umulsidi3(u, v) \
578 __asm__ ("meid %2,%0" \
580 : "%0" ((USItype)(u)), \
581 "g" ((USItype)(v))); \
583 #define udiv_qrnnd(q, r, n1, n0, d) \
584 ({union {UDItype __ll; \
585 struct {USItype __l, __h;} __i; \
587 __xx.__i.__h = (n1); __xx.__i.__l = (n0); \
588 __asm__ ("deid %2,%0" \
591 "g" ((USItype)(d))); \
592 (r) = __xx.__i.__l; (q) = __xx.__i.__h; })
593 #endif /* __ns32000__ */
595 #if (defined (_ARCH_PPC) || defined (_IBMR2)) && W_TYPE_SIZE == 32
596 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
598 if (__builtin_constant_p (bh) && (bh) == 0) \
599 __asm__ ("{a%I4|add%I4c} %1,%3,%4\n\t{aze|addze} %0,%2" \
600 : "=r" ((USItype)(sh)), \
601 "=&r" ((USItype)(sl)) \
602 : "%r" ((USItype)(ah)), \
603 "%r" ((USItype)(al)), \
604 "rI" ((USItype)(bl))); \
605 else if (__builtin_constant_p (bh) && (bh) ==~(USItype) 0) \
606 __asm__ ("{a%I4|add%I4c} %1,%3,%4\n\t{ame|addme} %0,%2" \
607 : "=r" ((USItype)(sh)), \
608 "=&r" ((USItype)(sl)) \
609 : "%r" ((USItype)(ah)), \
610 "%r" ((USItype)(al)), \
611 "rI" ((USItype)(bl))); \
613 __asm__ ("{a%I5|add%I5c} %1,%4,%5\n\t{ae|adde} %0,%2,%3" \
614 : "=r" ((USItype)(sh)), \
615 "=&r" ((USItype)(sl)) \
616 : "%r" ((USItype)(ah)), \
617 "r" ((USItype)(bh)), \
618 "%r" ((USItype)(al)), \
619 "rI" ((USItype)(bl))); \
621 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
623 if (__builtin_constant_p (ah) && (ah) == 0) \
624 __asm__ ("{sf%I3|subf%I3c} %1,%4,%3\n\t{sfze|subfze} %0,%2" \
625 : "=r" ((USItype)(sh)), \
626 "=&r" ((USItype)(sl)) \
627 : "r" ((USItype)(bh)), \
628 "rI" ((USItype)(al)), \
629 "r" ((USItype)(bl))); \
630 else if (__builtin_constant_p (ah) && (ah) ==~(USItype) 0) \
631 __asm__ ("{sf%I3|subf%I3c} %1,%4,%3\n\t{sfme|subfme} %0,%2" \
632 : "=r" ((USItype)(sh)), \
633 "=&r" ((USItype)(sl)) \
634 : "r" ((USItype)(bh)), \
635 "rI" ((USItype)(al)), \
636 "r" ((USItype)(bl))); \
637 else if (__builtin_constant_p (bh) && (bh) == 0) \
638 __asm__ ("{sf%I3|subf%I3c} %1,%4,%3\n\t{ame|addme} %0,%2" \
639 : "=r" ((USItype)(sh)), \
640 "=&r" ((USItype)(sl)) \
641 : "r" ((USItype)(ah)), \
642 "rI" ((USItype)(al)), \
643 "r" ((USItype)(bl))); \
644 else if (__builtin_constant_p (bh) && (bh) ==~(USItype) 0) \
645 __asm__ ("{sf%I3|subf%I3c} %1,%4,%3\n\t{aze|addze} %0,%2" \
646 : "=r" ((USItype)(sh)), \
647 "=&r" ((USItype)(sl)) \
648 : "r" ((USItype)(ah)), \
649 "rI" ((USItype)(al)), \
650 "r" ((USItype)(bl))); \
652 __asm__ ("{sf%I4|subf%I4c} %1,%5,%4\n\t{sfe|subfe} %0,%3,%2" \
653 : "=r" ((USItype)(sh)), \
654 "=&r" ((USItype)(sl)) \
655 : "r" ((USItype)(ah)), \
656 "r" ((USItype)(bh)), \
657 "rI" ((USItype)(al)), \
658 "r" ((USItype)(bl))); \
660 #define count_leading_zeros(count, x) \
661 __asm__ ("{cntlz|cntlzw} %0,%1" \
662 : "=r" ((USItype)(count)) \
663 : "r" ((USItype)(x)))
664 #if defined (_ARCH_PPC)
665 #define umul_ppmm(ph, pl, m0, m1) \
667 USItype __m0 = (m0), __m1 = (m1); \
668 __asm__ ("mulhwu %0,%1,%2" \
669 : "=r" ((USItype) ph) \
672 (pl) = __m0 * __m1; \
675 #define smul_ppmm(ph, pl, m0, m1) \
677 SItype __m0 = (m0), __m1 = (m1); \
678 __asm__ ("mulhw %0,%1,%2" \
679 : "=r" ((SItype) ph) \
682 (pl) = __m0 * __m1; \
685 #define UDIV_TIME 120
687 #define umul_ppmm(xh, xl, m0, m1) \
689 USItype __m0 = (m0), __m1 = (m1); \
690 __asm__ ("mul %0,%2,%3" \
691 : "=r" ((USItype)(xh)), \
692 "=q" ((USItype)(xl)) \
695 (xh) += ((((SItype) __m0 >> 31) & __m1) \
696 + (((SItype) __m1 >> 31) & __m0)); \
699 #define smul_ppmm(xh, xl, m0, m1) \
700 __asm__ ("mul %0,%2,%3" \
701 : "=r" ((SItype)(xh)), \
702 "=q" ((SItype)(xl)) \
706 #define sdiv_qrnnd(q, r, nh, nl, d) \
707 __asm__ ("div %0,%2,%4" \
708 : "=r" ((SItype)(q)), "=q" ((SItype)(r)) \
709 : "r" ((SItype)(nh)), "1" ((SItype)(nl)), "r" ((SItype)(d)))
710 #define UDIV_TIME 100
712 #endif /* Power architecture variants. */
714 #if defined (__pyr__)
715 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
718 : "=r" ((USItype)(sh)), \
719 "=&r" ((USItype)(sl)) \
720 : "%0" ((USItype)(ah)), \
721 "g" ((USItype)(bh)), \
722 "%1" ((USItype)(al)), \
724 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
727 : "=r" ((USItype)(sh)), \
728 "=&r" ((USItype)(sl)) \
729 : "0" ((USItype)(ah)), \
730 "g" ((USItype)(bh)), \
731 "1" ((USItype)(al)), \
733 /* This insn doesn't work on ancient pyramids. */
734 #define umul_ppmm(w1, w0, u, v) \
737 struct {USItype __h, __l;} __i; \
740 __asm__ ("uemul %3,%0" \
741 : "=r" (__xx.__i.__h), \
742 "=r" (__xx.__i.__l) \
743 : "1" (__xx.__i.__l), \
744 "g" ((USItype)(v))); \
745 (w1) = __xx.__i.__h; \
746 (w0) = __xx.__i.__l;})
749 #if defined (__ibm032__) /* RT/ROMP */
750 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
753 : "=r" ((USItype)(sh)), \
754 "=&r" ((USItype)(sl)) \
755 : "%0" ((USItype)(ah)), \
756 "r" ((USItype)(bh)), \
757 "%1" ((USItype)(al)), \
759 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
762 : "=r" ((USItype)(sh)), \
763 "=&r" ((USItype)(sl)) \
764 : "0" ((USItype)(ah)), \
765 "r" ((USItype)(bh)), \
766 "1" ((USItype)(al)), \
768 #define umul_ppmm(ph, pl, m0, m1) \
770 USItype __m0 = (m0), __m1 = (m1); \
792 : "=r" ((USItype)(ph)), \
793 "=r" ((USItype)(pl)) \
797 (ph) += ((((SItype) __m0 >> 31) & __m1) \
798 + (((SItype) __m1 >> 31) & __m0)); \
801 #define UDIV_TIME 200
802 #define count_leading_zeros(count, x) \
804 if ((x) >= 0x10000) \
805 __asm__ ("clz %0,%1" \
806 : "=r" ((USItype)(count)) \
807 : "r" ((USItype)(x) >> 16)); \
810 __asm__ ("clz %0,%1" \
811 : "=r" ((USItype)(count)) \
812 : "r" ((USItype)(x))); \
818 #if defined (__sparc__)
819 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
820 __asm__ ("addcc %r4,%5,%1
822 : "=r" ((USItype)(sh)), \
823 "=&r" ((USItype)(sl)) \
824 : "%rJ" ((USItype)(ah)), \
825 "rI" ((USItype)(bh)), \
826 "%rJ" ((USItype)(al)), \
827 "rI" ((USItype)(bl)) \
829 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
830 __asm__ ("subcc %r4,%5,%1
832 : "=r" ((USItype)(sh)), \
833 "=&r" ((USItype)(sl)) \
834 : "rJ" ((USItype)(ah)), \
835 "rI" ((USItype)(bh)), \
836 "rJ" ((USItype)(al)), \
837 "rI" ((USItype)(bl)) \
839 #if defined (__sparc_v8__)
840 #define umul_ppmm(w1, w0, u, v) \
841 __asm__ ("umul %2,%3,%1;rd %%y,%0" \
842 : "=r" ((USItype)(w1)), \
843 "=r" ((USItype)(w0)) \
844 : "r" ((USItype)(u)), \
846 #define udiv_qrnnd(q, r, n1, n0, d) \
847 __asm__ ("mov %2,%%y;nop;nop;nop;udiv %3,%4,%0;umul %0,%4,%1;sub %3,%1,%1"\
848 : "=&r" ((USItype)(q)), \
849 "=&r" ((USItype)(r)) \
850 : "r" ((USItype)(n1)), \
851 "r" ((USItype)(n0)), \
854 #if defined (__sparclite__)
855 /* This has hardware multiply but not divide. It also has two additional
856 instructions scan (ffs from high bit) and divscc. */
857 #define umul_ppmm(w1, w0, u, v) \
858 __asm__ ("umul %2,%3,%1;rd %%y,%0" \
859 : "=r" ((USItype)(w1)), \
860 "=r" ((USItype)(w0)) \
861 : "r" ((USItype)(u)), \
863 #define udiv_qrnnd(q, r, n1, n0, d) \
864 __asm__ ("! Inlined udiv_qrnnd
865 wr %%g0,%2,%%y ! Not a delayed write for sparclite
902 1: ! End of inline udiv_qrnnd" \
903 : "=r" ((USItype)(q)), \
904 "=r" ((USItype)(r)) \
905 : "r" ((USItype)(n1)), \
906 "r" ((USItype)(n0)), \
907 "rI" ((USItype)(d)) \
908 : "%g1" __AND_CLOBBER_CC)
910 #define count_leading_zeros(count, x) \
911 __asm__ ("scan %1,0,%0" \
912 : "=r" ((USItype)(x)) \
913 : "r" ((USItype)(count)))
915 /* SPARC without integer multiplication and divide instructions.
916 (i.e. at least Sun4/20,40,60,65,75,110,260,280,330,360,380,470,490) */
917 #define umul_ppmm(w1, w0, u, v) \
918 __asm__ ("! Inlined umul_ppmm
919 wr %%g0,%2,%%y ! SPARC has 0-3 delay insn after a wr
920 sra %3,31,%%g2 ! Don't move this insn
921 and %2,%%g2,%%g2 ! Don't move this insn
922 andcc %%g0,0,%%g1 ! Don't move this insn
958 : "=r" ((USItype)(w1)), \
959 "=r" ((USItype)(w0)) \
960 : "%rI" ((USItype)(u)), \
962 : "%g1", "%g2" __AND_CLOBBER_CC)
963 #define UMUL_TIME 39 /* 39 instructions */
964 /* It's quite necessary to add this much assembler for the sparc.
965 The default udiv_qrnnd (in C) is more than 10 times slower! */
966 #define udiv_qrnnd(q, r, n1, n0, d) \
967 __asm__ ("! Inlined udiv_qrnnd
971 addxcc %0,%0,%0 ! shift n1n0 and a q-bit in lsb
972 sub %1,%2,%1 ! this kills msb of n
973 addx %1,%1,%1 ! so this can't give carry
978 addxcc %0,%0,%0 ! shift n1n0 and a q-bit in lsb
980 sub %1,%2,%1 ! this kills msb of n
985 ! Got carry from n. Subtract next step to cancel this carry.
987 addcc %0,%0,%0 ! shift n1n0 and a 0-bit in lsb
990 ! End of inline udiv_qrnnd" \
991 : "=&r" ((USItype)(q)), \
992 "=&r" ((USItype)(r)) \
993 : "r" ((USItype)(d)), \
994 "1" ((USItype)(n1)), \
995 "0" ((USItype)(n0)) : "%g1" __AND_CLOBBER_CC)
996 #define UDIV_TIME (3+7*32) /* 7 instructions/iteration. 32 iterations. */
997 #endif /* __sparclite__ */
998 #endif /* __sparc_v8__ */
999 #endif /* __sparc__ */
1001 #if defined (__vax__)
1002 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
1003 __asm__ ("addl2 %5,%1
1005 : "=g" ((USItype)(sh)), \
1006 "=&g" ((USItype)(sl)) \
1007 : "%0" ((USItype)(ah)), \
1008 "g" ((USItype)(bh)), \
1009 "%1" ((USItype)(al)), \
1010 "g" ((USItype)(bl)))
1011 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
1012 __asm__ ("subl2 %5,%1
1014 : "=g" ((USItype)(sh)), \
1015 "=&g" ((USItype)(sl)) \
1016 : "0" ((USItype)(ah)), \
1017 "g" ((USItype)(bh)), \
1018 "1" ((USItype)(al)), \
1019 "g" ((USItype)(bl)))
1020 #define umul_ppmm(xh, xl, m0, m1) \
1024 struct {USItype __l, __h;} __i; \
1026 USItype __m0 = (m0), __m1 = (m1); \
1027 __asm__ ("emul %1,%2,$0,%0" \
1028 : "=r" (__xx.__ll) \
1031 (xh) = __xx.__i.__h; \
1032 (xl) = __xx.__i.__l; \
1033 (xh) += ((((SItype) __m0 >> 31) & __m1) \
1034 + (((SItype) __m1 >> 31) & __m0)); \
1036 #define sdiv_qrnnd(q, r, n1, n0, d) \
1038 union {DItype __ll; \
1039 struct {SItype __l, __h;} __i; \
1041 __xx.__i.__h = n1; __xx.__i.__l = n0; \
1042 __asm__ ("ediv %3,%2,%0,%1" \
1043 : "=g" (q), "=g" (r) \
1044 : "g" (__xx.__ll), "g" (d)); \
1046 #endif /* __vax__ */
1048 #endif /* __GNUC__ */
1050 /* If this machine has no inline assembler, use C macros. */
1052 #if !defined (add_ssaaaa)
1053 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
1056 __x = (al) + (bl); \
1057 (sh) = (ah) + (bh) + (__x < (al)); \
1062 #if !defined (sub_ddmmss)
1063 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
1066 __x = (al) - (bl); \
1067 (sh) = (ah) - (bh) - (__x > (al)); \
1072 #if !defined (umul_ppmm)
1073 #define umul_ppmm(w1, w0, u, v) \
1075 USItype __x0, __x1, __x2, __x3; \
1076 USItype __ul, __vl, __uh, __vh; \
1078 __ul = __ll_lowpart (u); \
1079 __uh = __ll_highpart (u); \
1080 __vl = __ll_lowpart (v); \
1081 __vh = __ll_highpart (v); \
1083 __x0 = (USItype) __ul * __vl; \
1084 __x1 = (USItype) __ul * __vh; \
1085 __x2 = (USItype) __uh * __vl; \
1086 __x3 = (USItype) __uh * __vh; \
1088 __x1 += __ll_highpart (__x0);/* this can't give carry */ \
1089 __x1 += __x2; /* but this indeed can */ \
1090 if (__x1 < __x2) /* did we get it? */ \
1091 __x3 += __ll_B; /* yes, add it in the proper pos. */ \
1093 (w1) = __x3 + __ll_highpart (__x1); \
1094 (w0) = __ll_lowpart (__x1) * __ll_B + __ll_lowpart (__x0); \
1098 #if !defined (__umulsidi3)
1099 #define __umulsidi3(u, v) \
1101 umul_ppmm (__w.s.high, __w.s.low, u, v); \
1105 /* Define this unconditionally, so it can be used for debugging. */
1106 #define __udiv_qrnnd_c(q, r, n1, n0, d) \
1108 USItype __d1, __d0, __q1, __q0; \
1109 USItype __r1, __r0, __m; \
1110 __d1 = __ll_highpart (d); \
1111 __d0 = __ll_lowpart (d); \
1113 __r1 = (n1) % __d1; \
1114 __q1 = (n1) / __d1; \
1115 __m = (USItype) __q1 * __d0; \
1116 __r1 = __r1 * __ll_B | __ll_highpart (n0); \
1119 __q1--, __r1 += (d); \
1120 if (__r1 >= (d)) /* i.e. we didn't get carry when adding to __r1 */\
1122 __q1--, __r1 += (d); \
1126 __r0 = __r1 % __d1; \
1127 __q0 = __r1 / __d1; \
1128 __m = (USItype) __q0 * __d0; \
1129 __r0 = __r0 * __ll_B | __ll_lowpart (n0); \
1132 __q0--, __r0 += (d); \
1135 __q0--, __r0 += (d); \
1139 (q) = (USItype) __q1 * __ll_B | __q0; \
1143 /* If the processor has no udiv_qrnnd but sdiv_qrnnd, go through
1144 __udiv_w_sdiv (defined in libgcc or elsewhere). */
1145 #if !defined (udiv_qrnnd) && defined (sdiv_qrnnd)
1146 #define udiv_qrnnd(q, r, nh, nl, d) \
1149 (q) = __udiv_w_sdiv (&__r, nh, nl, d); \
1154 /* If udiv_qrnnd was not defined for this processor, use __udiv_qrnnd_c. */
1155 #if !defined (udiv_qrnnd)
1156 #define UDIV_NEEDS_NORMALIZATION 1
1157 #define udiv_qrnnd __udiv_qrnnd_c
1160 #if !defined (count_leading_zeros)
1161 extern const UQItype __clz_tab
[];
1162 #define count_leading_zeros(count, x) \
1164 USItype __xr = (x); \
1167 if (SI_TYPE_SIZE <= 32) \
1169 __a = __xr < (1<<2*__BITS4) \
1170 ? (__xr < (1<<__BITS4) ? 0 : __BITS4) \
1171 : (__xr < (1<<3*__BITS4) ? 2*__BITS4 : 3*__BITS4); \
1175 for (__a = SI_TYPE_SIZE - 8; __a > 0; __a -= 8) \
1176 if (((__xr >> __a) & 0xff) != 0) \
1180 (count) = SI_TYPE_SIZE - (__clz_tab[__xr >> __a] + __a); \
1184 #ifndef UDIV_NEEDS_NORMALIZATION
1185 #define UDIV_NEEDS_NORMALIZATION 0
This page took 0.089595 seconds and 5 git commands to generate.