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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_popcount, mpn_hamdist -- mpn bit population count/hamming distance.
  2. Copyright 1994, 1996, 2000, 2001, 2002, 2005 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include "gmp.h"
  15. #include "gmp-impl.h"
  16. #if OPERATION_popcount
  17. #define FNAME mpn_popcount
  18. #define POPHAM(u,v) u
  19. #endif
  20. #if OPERATION_hamdist
  21. #define FNAME mpn_hamdist
  22. #define POPHAM(u,v) u ^ v
  23. #endif
  24. mp_bitcnt_t
  25. FNAME (mp_srcptr up,
  26. #if OPERATION_hamdist
  27.        mp_srcptr vp,
  28. #endif
  29.        mp_size_t n)
  30. {
  31.   mp_bitcnt_t result = 0;
  32.   mp_limb_t p0, p1, p2, p3, x, p01, p23;
  33.   mp_size_t i;
  34.   ASSERT (n >= 1); /* Actually, this code handles any n, but some
  35.    assembly implementations do not.  */
  36.   for (i = n >> 2; i != 0; i--)
  37.     {
  38.       p0 = POPHAM (up[0], vp[0]);
  39.       p0 -= (p0 >> 1) & MP_LIMB_T_MAX/3; /* 2 0-2 */
  40.       p0 = ((p0 >> 2) & MP_LIMB_T_MAX/5) + (p0 & MP_LIMB_T_MAX/5); /* 4 0-4 */
  41.       p1 = POPHAM (up[1], vp[1]);
  42.       p1 -= (p1 >> 1) & MP_LIMB_T_MAX/3; /* 2 0-2 */
  43.       p1 = ((p1 >> 2) & MP_LIMB_T_MAX/5) + (p1 & MP_LIMB_T_MAX/5); /* 4 0-4 */
  44.       p01 = p0 + p1; /* 8 0-8 */
  45.       p01 = ((p01 >> 4) & MP_LIMB_T_MAX/17) + (p01 & MP_LIMB_T_MAX/17); /* 8 0-16 */
  46.       p2 = POPHAM (up[2], vp[2]);
  47.       p2 -= (p2 >> 1) & MP_LIMB_T_MAX/3; /* 2 0-2 */
  48.       p2 = ((p2 >> 2) & MP_LIMB_T_MAX/5) + (p2 & MP_LIMB_T_MAX/5); /* 4 0-4 */
  49.       p3 = POPHAM (up[3], vp[3]);
  50.       p3 -= (p3 >> 1) & MP_LIMB_T_MAX/3; /* 2 0-2 */
  51.       p3 = ((p3 >> 2) & MP_LIMB_T_MAX/5) + (p3 & MP_LIMB_T_MAX/5); /* 4 0-4 */
  52.       p23 = p2 + p3; /* 8 0-8 */
  53.       p23 = ((p23 >> 4) & MP_LIMB_T_MAX/17) + (p23 & MP_LIMB_T_MAX/17); /* 8 0-16 */
  54.       x = p01 + p23; /* 8 0-32 */
  55.       x = (x >> 8) + x; /* 8 0-64 */
  56.       x = (x >> 16) + x; /* 8 0-128 */
  57. #if GMP_LIMB_BITS > 32
  58.       x = ((x >> 32) & 0xff) + (x & 0xff); /* 8 0-256 */
  59.       result += x;
  60. #else
  61.       result += x & 0xff;
  62. #endif
  63.       up += 4;
  64. #if OPERATION_hamdist
  65.       vp += 4;
  66. #endif
  67.     }
  68.   n &= 3;
  69.   if (n != 0)
  70.     {
  71.       x = 0;
  72.       do
  73. {
  74.   p0 = POPHAM (up[0], vp[0]);
  75.   p0 -= (p0 >> 1) & MP_LIMB_T_MAX/3; /* 2 0-2 */
  76.   p0 = ((p0 >> 2) & MP_LIMB_T_MAX/5) + (p0 & MP_LIMB_T_MAX/5); /* 4 0-4 */
  77.   p0 = ((p0 >> 4) + p0) & MP_LIMB_T_MAX/17; /* 8 0-8 */
  78.   x += p0;
  79.   up += 1;
  80. #if OPERATION_hamdist
  81.   vp += 1;
  82. #endif
  83. }
  84.       while (--n);
  85.       x = (x >> 8) + x;
  86.       x = (x >> 16) + x;
  87. #if GMP_LIMB_BITS > 32
  88.       x = (x >> 32) + x;
  89. #endif
  90.       result += x & 0xff;
  91.     }
  92.   return result;
  93. }