📄 sqr_basecase.c
字号:
/* mpn_sqr_basecase -- Internal routine to square a natural number of length n. THIS IS AN INTERNAL FUNCTION WITH A MUTABLE INTERFACE. IT IS ONLY SAFE TO REACH THIS FUNCTION THROUGH DOCUMENTED INTERFACES.Copyright 1991, 1992, 1993, 1994, 1996, 1997, 2000, 2001, 2002 Free SoftwareFoundation, Inc.This file is part of the GNU MP Library.The GNU MP Library is free software; you can redistribute it and/or modifyit under the terms of the GNU Lesser General Public License as published bythe Free Software Foundation; either version 2.1 of the License, or (at youroption) any later version.The GNU MP Library is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITYor FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General PublicLicense for more details.You should have received a copy of the GNU Lesser General Public Licensealong with the GNU MP Library; see the file COPYING.LIB. If not, write tothe Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,MA 02111-1307, USA. */#include "gmp.h"#include "gmp-impl.h"#include "longlong.h"voidmpn_sqr_basecase (mp_ptr prodp, mp_srcptr up, mp_size_t n){ mp_size_t i; ASSERT (n >= 1); ASSERT (! MPN_OVERLAP_P (prodp, 2*n, up, n)); { /* N.B.! We need the superfluous indirection through argh to work around a reloader bug in GCC 2.7.*. */#if GMP_NAIL_BITS == 0 mp_limb_t ul, argh; ul = up[0]; umul_ppmm (argh, prodp[0], ul, ul); prodp[1] = argh;#else mp_limb_t ul, lpl; ul = up[0]; umul_ppmm (prodp[1], lpl, ul, ul << GMP_NAIL_BITS); prodp[0] = lpl >> GMP_NAIL_BITS;#endif } if (n > 1) { mp_limb_t tarr[2 * SQR_KARATSUBA_THRESHOLD]; mp_ptr tp = tarr; mp_limb_t cy; /* must fit 2*n limbs in tarr */ ASSERT (n <= SQR_KARATSUBA_THRESHOLD); cy = mpn_mul_1 (tp, up + 1, n - 1, up[0]); tp[n - 1] = cy; for (i = 2; i < n; i++) { mp_limb_t cy; cy = mpn_addmul_1 (tp + 2 * i - 2, up + i, n - i, up[i - 1]); tp[n + i - 2] = cy; }#if HAVE_NATIVE_mpn_sqr_diagonal mpn_sqr_diagonal (prodp + 2, up + 1, n - 1);#else for (i = 1; i < n; i++) {#if GMP_NAIL_BITS == 0 mp_limb_t ul; ul = up[i]; umul_ppmm (prodp[2 * i + 1], prodp[2 * i], ul, ul);#else mp_limb_t ul, lpl; ul = up[i]; umul_ppmm (prodp[2 * i + 1], lpl, ul, ul << GMP_NAIL_BITS); prodp[2 * i] = lpl >> GMP_NAIL_BITS;#endif }#endif { mp_limb_t cy; cy = mpn_lshift (tp, tp, 2 * n - 2, 1); cy += mpn_add_n (prodp + 1, prodp + 1, tp, 2 * n - 2); prodp[2 * n - 1] += cy; } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -