README
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. Copyright 2002, 2005 Free Software Foundation, Inc.
  2. This file is part of the GNU MP Library.
  3. The GNU MP Library is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU Lesser General Public License as published by the
  5. Free Software Foundation; either version 3 of the License, or (at your
  6. option) any later version.
  7. The GNU MP Library is distributed in the hope that it will be useful, but
  8. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
  10. for more details.
  11. You should have received a copy of the GNU Lesser General Public License along
  12. with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  13. This directory contains assembly code for nails-enabled 21264.  The code is not
  14. very well optimized.
  15. For addmul_N, as N grows larger, we could make multiple loads together, then do
  16. about 3.3 i/c.  10 cycles after the last load, we can increase to 4 i/c.  This
  17. would surely allow addmul_4 to run at 2 c/l, but the same should be possible
  18. also for addmul_3 and perhaps even addmul_2.
  19. current fair best
  20. Routine c/l  unroll c/l  unroll c/l  i/c
  21. mul_1 3.25 2.75 2.75 3.273
  22. addmul_1 4.0 4 3.5 4 14 3.25 3.385
  23. addmul_2 4.0 1 2.5 2 10 2.25 3.333
  24. addmul_3 3.0 1 2.33 2 14 2    3.333
  25. addmul_4 2.5 1 2.125 2 17 2    3.135
  26. addmul_5 2 1 10
  27. addmul_6 2 1 12
  28. addmul_7 2 1 14
  29. (The "best" column doesn't account for bookkeeping instructions and
  30. thereby assumes infinite unrolling.)
  31. Basecase usages:
  32. 1  addmul_1
  33. 2  addmul_2
  34. 3  addmul_3
  35. 4  addmul_4
  36. 5  addmul_3 + addmul_2 2.3998
  37. 6  addmul_4 + addmul_2
  38. 7  addmul_4 + addmul_3