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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_ior -- Logical inclusive or.
  2. Copyright 1991, 1993, 1994, 1996, 1997, 2000, 2001, 2005 Free Software
  3. Foundation, Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #include "gmp.h"
  16. #include "gmp-impl.h"
  17. void
  18. mpz_ior (mpz_ptr res, mpz_srcptr op1, mpz_srcptr op2)
  19. {
  20.   mp_srcptr op1_ptr, op2_ptr;
  21.   mp_size_t op1_size, op2_size;
  22.   mp_ptr res_ptr;
  23.   mp_size_t res_size;
  24.   mp_size_t i;
  25.   TMP_DECL;
  26.   TMP_MARK;
  27.   op1_size = SIZ(op1);
  28.   op2_size = SIZ(op2);
  29.   op1_ptr = PTR(op1);
  30.   op2_ptr = PTR(op2);
  31.   res_ptr = PTR(res);
  32.   if (op1_size >= 0)
  33.     {
  34.       if (op2_size >= 0)
  35. {
  36.   if (op1_size >= op2_size)
  37.     {
  38.       if (ALLOC(res) < op1_size)
  39. {
  40.   _mpz_realloc (res, op1_size);
  41.   /* No overlapping possible: op1_ptr = PTR(op1); */
  42.   op2_ptr = PTR(op2);
  43.   res_ptr = PTR(res);
  44. }
  45.       if (res_ptr != op1_ptr)
  46. MPN_COPY (res_ptr + op2_size, op1_ptr + op2_size,
  47.   op1_size - op2_size);
  48.       for (i = op2_size - 1; i >= 0; i--)
  49. res_ptr[i] = op1_ptr[i] | op2_ptr[i];
  50.       res_size = op1_size;
  51.     }
  52.   else
  53.     {
  54.       if (ALLOC(res) < op2_size)
  55. {
  56.   _mpz_realloc (res, op2_size);
  57.   op1_ptr = PTR(op1);
  58.   /* No overlapping possible: op2_ptr = PTR(op2); */
  59.   res_ptr = PTR(res);
  60. }
  61.       if (res_ptr != op2_ptr)
  62. MPN_COPY (res_ptr + op1_size, op2_ptr + op1_size,
  63.   op2_size - op1_size);
  64.       for (i = op1_size - 1; i >= 0; i--)
  65. res_ptr[i] = op1_ptr[i] | op2_ptr[i];
  66.       res_size = op2_size;
  67.     }
  68.   SIZ(res) = res_size;
  69.   return;
  70. }
  71.       else /* op2_size < 0 */
  72. {
  73.   /* Fall through to the code at the end of the function.  */
  74. }
  75.     }
  76.   else
  77.     {
  78.       if (op2_size < 0)
  79. {
  80.   mp_ptr opx;
  81.   mp_limb_t cy;
  82.   /* Both operands are negative, so will be the result.
  83.      -((-OP1) | (-OP2)) = -(~(OP1 - 1) | ~(OP2 - 1)) =
  84.      = ~(~(OP1 - 1) | ~(OP2 - 1)) + 1 =
  85.      = ((OP1 - 1) & (OP2 - 1)) + 1      */
  86.   op1_size = -op1_size;
  87.   op2_size = -op2_size;
  88.   res_size = MIN (op1_size, op2_size);
  89.   /* Possible optimization: Decrease mpn_sub precision,
  90.      as we won't use the entire res of both.  */
  91.   opx = TMP_ALLOC_LIMBS (res_size);
  92.   mpn_sub_1 (opx, op1_ptr, res_size, (mp_limb_t) 1);
  93.   op1_ptr = opx;
  94.   opx = TMP_ALLOC_LIMBS (res_size);
  95.   mpn_sub_1 (opx, op2_ptr, res_size, (mp_limb_t) 1);
  96.   op2_ptr = opx;
  97.   if (ALLOC(res) < res_size)
  98.     {
  99.       _mpz_realloc (res, res_size);
  100.       /* op1_ptr and op2_ptr point to temporary space.  */
  101.       res_ptr = PTR(res);
  102.     }
  103.   /* First loop finds the size of the result.  */
  104.   for (i = res_size - 1; i >= 0; i--)
  105.     if ((op1_ptr[i] & op2_ptr[i]) != 0)
  106.       break;
  107.   res_size = i + 1;
  108.   if (res_size != 0)
  109.     {
  110.       /* Second loop computes the real result.  */
  111.       for (i = res_size - 1; i >= 0; i--)
  112. res_ptr[i] = op1_ptr[i] & op2_ptr[i];
  113.       cy = mpn_add_1 (res_ptr, res_ptr, res_size, (mp_limb_t) 1);
  114.       if (cy)
  115. {
  116.   res_ptr[res_size] = cy;
  117.   res_size++;
  118. }
  119.     }
  120.   else
  121.     {
  122.       res_ptr[0] = 1;
  123.       res_size = 1;
  124.     }
  125.   SIZ(res) = -res_size;
  126.   TMP_FREE;
  127.   return;
  128. }
  129.       else
  130. {
  131.   /* We should compute -OP1 | OP2.  Swap OP1 and OP2 and fall
  132.      through to the code that handles OP1 | -OP2.  */
  133.           MPZ_SRCPTR_SWAP (op1, op2);
  134.           MPN_SRCPTR_SWAP (op1_ptr,op1_size, op2_ptr,op2_size);
  135. }
  136.     }
  137.   {
  138.     mp_ptr opx;
  139.     mp_limb_t cy;
  140.     mp_size_t res_alloc;
  141.     mp_size_t count;
  142.     /* Operand 2 negative, so will be the result.
  143.        -(OP1 | (-OP2)) = -(OP1 | ~(OP2 - 1)) =
  144.        = ~(OP1 | ~(OP2 - 1)) + 1 =
  145.        = (~OP1 & (OP2 - 1)) + 1      */
  146.     op2_size = -op2_size;
  147.     res_alloc = op2_size;
  148.     opx = TMP_ALLOC_LIMBS (op2_size);
  149.     mpn_sub_1 (opx, op2_ptr, op2_size, (mp_limb_t) 1);
  150.     op2_ptr = opx;
  151.     op2_size -= op2_ptr[op2_size - 1] == 0;
  152.     if (ALLOC(res) < res_alloc)
  153.       {
  154. _mpz_realloc (res, res_alloc);
  155. op1_ptr = PTR(op1);
  156. /* op2_ptr points to temporary space.  */
  157. res_ptr = PTR(res);
  158.       }
  159.     if (op1_size >= op2_size)
  160.       {
  161. /* We can just ignore the part of OP1 that stretches above OP2,
  162.    because the result limbs are zero there.  */
  163. /* First loop finds the size of the result.  */
  164. for (i = op2_size - 1; i >= 0; i--)
  165.   if ((~op1_ptr[i] & op2_ptr[i]) != 0)
  166.     break;
  167. res_size = i + 1;
  168. count = res_size;
  169.       }
  170.     else
  171.       {
  172. res_size = op2_size;
  173. /* Copy the part of OP2 that stretches above OP1, to RES.  */
  174. MPN_COPY (res_ptr + op1_size, op2_ptr + op1_size, op2_size - op1_size);
  175. count = op1_size;
  176.       }
  177.     if (res_size != 0)
  178.       {
  179. /* Second loop computes the real result.  */
  180. for (i = count - 1; i >= 0; i--)
  181.   res_ptr[i] = ~op1_ptr[i] & op2_ptr[i];
  182. cy = mpn_add_1 (res_ptr, res_ptr, res_size, (mp_limb_t) 1);
  183. if (cy)
  184.   {
  185.     res_ptr[res_size] = cy;
  186.     res_size++;
  187.   }
  188.       }
  189.     else
  190.       {
  191. res_ptr[0] = 1;
  192. res_size = 1;
  193.       }
  194.     SIZ(res) = -res_size;
  195.   }
  196.   TMP_FREE;
  197. }