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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_xor -- Logical xor.
  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_xor (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, res_alloc;
  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.   MPN_NORMALIZE (res_ptr, res_size);
  69.   SIZ(res) = res_size;
  70.   return;
  71. }
  72.       else /* op2_size < 0 */
  73. {
  74.   /* Fall through to the code at the end of the function.  */
  75. }
  76.     }
  77.   else
  78.     {
  79.       if (op2_size < 0)
  80. {
  81.   mp_ptr opx;
  82.   /* Both operands are negative, the result will be positive.
  83.       (-OP1) ^ (-OP2) =
  84.      = ~(OP1 - 1) ^ ~(OP2 - 1) =
  85.      = (OP1 - 1) ^ (OP2 - 1)  */
  86.   op1_size = -op1_size;
  87.   op2_size = -op2_size;
  88.   /* Possible optimization: Decrease mpn_sub precision,
  89.      as we won't use the entire res of both.  */
  90.   opx = TMP_ALLOC_LIMBS (op1_size);
  91.   mpn_sub_1 (opx, op1_ptr, op1_size, (mp_limb_t) 1);
  92.   op1_ptr = opx;
  93.   opx = TMP_ALLOC_LIMBS (op2_size);
  94.   mpn_sub_1 (opx, op2_ptr, op2_size, (mp_limb_t) 1);
  95.   op2_ptr = opx;
  96.   res_alloc = MAX (op1_size, op2_size);
  97.   if (ALLOC(res) < res_alloc)
  98.     {
  99.       _mpz_realloc (res, res_alloc);
  100.       res_ptr = PTR(res);
  101.       /* op1_ptr and op2_ptr point to temporary space.  */
  102.     }
  103.   if (op1_size > op2_size)
  104.     {
  105.       MPN_COPY (res_ptr + op2_size, op1_ptr + op2_size,
  106. op1_size - op2_size);
  107.       for (i = op2_size - 1; i >= 0; i--)
  108. res_ptr[i] = op1_ptr[i] ^ op2_ptr[i];
  109.       res_size = op1_size;
  110.     }
  111.   else
  112.     {
  113.       MPN_COPY (res_ptr + op1_size, op2_ptr + op1_size,
  114. op2_size - op1_size);
  115.       for (i = op1_size - 1; i >= 0; i--)
  116. res_ptr[i] = op1_ptr[i] ^ op2_ptr[i];
  117.       res_size = op2_size;
  118.     }
  119.   MPN_NORMALIZE (res_ptr, res_size);
  120.   SIZ(res) = res_size;
  121.   TMP_FREE;
  122.   return;
  123. }
  124.       else
  125. {
  126.   /* We should compute -OP1 ^ OP2.  Swap OP1 and OP2 and fall
  127.      through to the code that handles OP1 ^ -OP2.  */
  128.           MPZ_SRCPTR_SWAP (op1, op2);
  129.           MPN_SRCPTR_SWAP (op1_ptr,op1_size, op2_ptr,op2_size);
  130. }
  131.     }
  132.   {
  133.     mp_ptr opx;
  134.     mp_limb_t cy;
  135.     /* Operand 2 negative, so will be the result.
  136.        -(OP1 ^ (-OP2)) = -(OP1 ^ ~(OP2 - 1)) =
  137.        = ~(OP1 ^ ~(OP2 - 1)) + 1 =
  138.        = (OP1 ^ (OP2 - 1)) + 1      */
  139.     op2_size = -op2_size;
  140.     opx = TMP_ALLOC_LIMBS (op2_size);
  141.     mpn_sub_1 (opx, op2_ptr, op2_size, (mp_limb_t) 1);
  142.     op2_ptr = opx;
  143.     res_alloc = MAX (op1_size, op2_size) + 1;
  144.     if (ALLOC(res) < res_alloc)
  145.       {
  146. _mpz_realloc (res, res_alloc);
  147. op1_ptr = PTR(op1);
  148. /* op2_ptr points to temporary space.  */
  149. res_ptr = PTR(res);
  150.       }
  151.     if (op1_size > op2_size)
  152.       {
  153. MPN_COPY (res_ptr + op2_size, op1_ptr + op2_size, op1_size - op2_size);
  154. for (i = op2_size - 1; i >= 0; i--)
  155.   res_ptr[i] = op1_ptr[i] ^ op2_ptr[i];
  156. res_size = op1_size;
  157.       }
  158.     else
  159.       {
  160. MPN_COPY (res_ptr + op1_size, op2_ptr + op1_size, op2_size - op1_size);
  161. for (i = op1_size - 1; i >= 0; i--)
  162.   res_ptr[i] = op1_ptr[i] ^ op2_ptr[i];
  163. res_size = op2_size;
  164.       }
  165.     cy = mpn_add_1 (res_ptr, res_ptr, res_size, (mp_limb_t) 1);
  166.     if (cy)
  167.       {
  168. res_ptr[res_size] = cy;
  169. res_size++;
  170.       }
  171.     MPN_NORMALIZE (res_ptr, res_size);
  172.     SIZ(res) = -res_size;
  173.     TMP_FREE;
  174.   }
  175. }