umul.asm
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:1k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. dnl PowerPC-32 umul_ppmm -- support for longlong.h
  2. dnl Copyright 2000, 2001 Free Software Foundation, Inc.
  3. dnl
  4. dnl This file is part of the GNU MP Library.
  5. dnl
  6. dnl The GNU MP Library is free software; you can redistribute it and/or
  7. dnl modify it under the terms of the GNU Lesser General Public License as
  8. dnl published by the Free Software Foundation; either version 3 of the
  9. dnl License, or (at your option) any later version.
  10. dnl
  11. dnl The GNU MP Library is distributed in the hope that it will be useful,
  12. dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser
  14. dnl General Public License for more details.
  15. dnl
  16. dnl You should have received a copy of the GNU Lesser General Public License
  17. dnl along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  18. include(`../config.m4')
  19. C mp_limb_t mpn_umul_ppmm (mp_limb_t *lowptr, mp_limb_t m1, mp_limb_t m2);
  20. C
  21. ASM_START()
  22. PROLOGUE(mpn_umul_ppmm)
  23. C r3 lowptr
  24. C r4 m1
  25. C r5 m2
  26. mullw r0, r4, r5
  27. mulhwu r9, r4, r5
  28. stw r0, 0(r3)
  29. mr r3, r9
  30. blr
  31. EPILOGUE(mpn_umul_ppmm)