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

数学计算

开发平台:

Unix_Linux

  1. Copyright 1996, 2001 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
  4. it under the terms of the GNU Lesser General Public License as published by
  5. the 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
  9. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  10. License for more details.
  11. You should have received a copy of the GNU Lesser General Public License
  12. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  13. This directory contains mpn functions for various SPARC chips.  Code that
  14. runs only on version 8 SPARC implementations, is in the v8 subdirectory.
  15. RELEVANT OPTIMIZATION ISSUES
  16.   Load and Store timing
  17. On most early SPARC implementations, the ST instructions takes multiple
  18. cycles, while a STD takes just a single cycle more than an ST.  For the CPUs
  19. in SPARCstation I and II, the times are 3 and 4 cycles, respectively.
  20. Therefore, combining two ST instructions into a STD when possible is a
  21. significant optimization.
  22. Later SPARC implementations have single cycle ST.
  23. For SuperSPARC, we can perform just one memory instruction per cycle, even
  24. if up to two integer instructions can be executed in its pipeline.  For
  25. programs that perform so many memory operations that there are not enough
  26. non-memory operations to issue in parallel with all memory operations, using
  27. LDD and STD when possible helps.
  28. UltraSPARC-1/2 has very slow integer multiplication.  In the v9 subdirectory,
  29. we therefore use floating-point multiplication.
  30. STATUS
  31. 1. On a SuperSPARC, mpn_lshift and mpn_rshift run at 3 cycles/limb, or 2.5
  32.    cycles/limb asymptotically.  We could optimize speed for special counts
  33.    by using ADDXCC.
  34. 2. On a SuperSPARC, mpn_add_n and mpn_sub_n runs at 2.5 cycles/limb, or 2
  35.    cycles/limb asymptotically.
  36. 3. mpn_mul_1 runs at what is believed to be optimal speed.
  37. 4. On SuperSPARC, mpn_addmul_1 and mpn_submul_1 could both be improved by a
  38.    cycle by avoiding one of the add instructions.  See a29k/addmul_1.
  39. The speed of the code for other SPARC implementations is uncertain.