muldi3.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* muldi3.c extracted from gcc-2.7.2.3/libgcc2.c and
  2. gcc-2.7.2.3/longlong.h which is: */
  3. /* Copyright (C) 1989, 1992, 1993, 1994, 1995, 2001 Free Software Foundation, Inc.
  4. This file is part of GNU CC.
  5. GNU CC is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9. GNU CC 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. You should have received a copy of the GNU General Public License
  14. along with GNU CC; see the file COPYING. If not, write to
  15. the Free Software Foundation, 59 Temple Place - Suite 330,
  16. Boston, MA 02111-1307, USA. */
  17. #define umul_ppmm(w1, w0, u, v) \
  18. __asm__ ("mulu %3, %0, %1" \
  19. : "=r" ((USItype)(w0)), \
  20. "=r" ((USItype)(w1)) \
  21. : "%0" ((USItype)(u)), \
  22. "r" ((USItype)(v)))
  23. #define __umulsidi3(u, v) \
  24. ({DIunion __w; \
  25. umul_ppmm (__w.s.high, __w.s.low, u, v); \
  26. __w.ll; })
  27. typedef int SItype __attribute__ ((mode (SI)));
  28. typedef unsigned int USItype __attribute__ ((mode (SI)));
  29. typedef int DItype __attribute__ ((mode (DI)));
  30. typedef int word_type __attribute__ ((mode (__word__)));
  31. struct DIstruct {SItype high, low;};
  32. typedef union
  33. {
  34. struct DIstruct s;
  35. DItype ll;
  36. } DIunion;
  37. DItype
  38. __muldi3 (DItype u, DItype v)
  39. {
  40. DIunion w;
  41. DIunion uu, vv;
  42. uu.ll = u,
  43. vv.ll = v;
  44. w.ll = __umulsidi3 (uu.s.low, vv.s.low);
  45. w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high
  46. + (USItype) uu.s.high * (USItype) vv.s.low);
  47. return w.ll;
  48. }