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

数学计算

开发平台:

Unix_Linux

  1. Copyright 2003, 2004, 2006, 2008 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. AMD64 MPN SUBROUTINES
  14. This directory contains mpn functions for AMD64 chips.  It is also useful
  15. for 64-bit Pentiums, and "Core 2".
  16.      RELEVANT OPTIMIZATION ISSUES
  17. The Opteron and Athlon64 can sustain up to 3 instructions per cycle, but in
  18. practice that is only possible for integer instructions.  But almost any
  19. three integer instructions can issue simultaneously, including any 3 ALU
  20. operations, including shifts.  Up to two memory operations can issue each
  21. cycle.
  22. Scheduling typically requires that load-use instructions are split into
  23. separate load and use instructions.  That requires more decode resources,
  24. and it is rarely a win.  Opteron/Athlon64 have deep out-of-order core.
  25. Optimizing for 64-bit Pentium4 is probably a waste of time, as the most
  26. critical instructions are very poorly implemented here.  Perhaps we could
  27. save a cycle or two, but the most common loops now run at between 10 and 22
  28. cycles, so a saved cycle isn't too exciting.
  29. The new spin of the venerable P6 core, the "Core 2" is much better than the
  30. Pentium4 for the GMP loops.  Its integer pipeline is somewhat similar to to
  31. the Opteron/Athlon64 pipeline, except that the GMP favourites ADC/SBB and
  32. MUL are slower.  Furthermore, an INC/DEC followed by ADC/SBB incur a
  33. pipeline stall of around 10 cycles.  The default mpn_add_n and mpn_sub_n
  34. code suffers badly from the stall.  The code in the core2 subdirectory uses
  35. the almost forgotten instruction JRCXZ for loop control, and updates the
  36. induction variable using LEA.
  37. REFERENCES
  38. "System V Application Binary Interface AMD64 Architecture Processor
  39. Supplement", draft version 0.99, December 2007.
  40. http://www.x86-64.org/documentation/abi.pdf