Blame mpn/generic/sec_sqr.c

Packit 5c3484
/* mpn_sec_sqr.
Packit 5c3484
Packit 5c3484
   Contributed to the GNU project by Torbjörn Granlund.
Packit 5c3484
Packit 5c3484
Copyright 2013, 2014 Free Software Foundation, Inc.
Packit 5c3484
Packit 5c3484
This file is part of the GNU MP Library.
Packit 5c3484
Packit 5c3484
The GNU MP Library is free software; you can redistribute it and/or modify
Packit 5c3484
it under the terms of either:
Packit 5c3484
Packit 5c3484
  * the GNU Lesser General Public License as published by the Free
Packit 5c3484
    Software Foundation; either version 3 of the License, or (at your
Packit 5c3484
    option) any later version.
Packit 5c3484
Packit 5c3484
or
Packit 5c3484
Packit 5c3484
  * the GNU General Public License as published by the Free Software
Packit 5c3484
    Foundation; either version 2 of the License, or (at your option) any
Packit 5c3484
    later version.
Packit 5c3484
Packit 5c3484
or both in parallel, as here.
Packit 5c3484
Packit 5c3484
The GNU MP Library is distributed in the hope that it will be useful, but
Packit 5c3484
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
Packit 5c3484
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
Packit 5c3484
for more details.
Packit 5c3484
Packit 5c3484
You should have received copies of the GNU General Public License and the
Packit 5c3484
GNU Lesser General Public License along with the GNU MP Library.  If not,
Packit 5c3484
see https://www.gnu.org/licenses/.  */
Packit 5c3484
Packit 5c3484
#include "gmp.h"
Packit 5c3484
#include "gmp-impl.h"
Packit 5c3484
Packit 5c3484
#if ! HAVE_NATIVE_mpn_sqr_basecase
Packit 5c3484
/* The limit of the generic code is SQR_TOOM2_THRESHOLD.  */
Packit 5c3484
#define SQR_BASECASE_LIM  SQR_TOOM2_THRESHOLD
Packit 5c3484
#endif
Packit 5c3484
Packit 5c3484
#if HAVE_NATIVE_mpn_sqr_basecase
Packit 5c3484
#ifdef TUNE_SQR_TOOM2_MAX
Packit 5c3484
/* We slightly abuse TUNE_SQR_TOOM2_MAX here.  If it is set for an assembly
Packit 5c3484
   mpn_sqr_basecase, it comes from SQR_TOOM2_THRESHOLD_MAX in the assembly
Packit 5c3484
   file.  An assembly mpn_sqr_basecase that does not define it should allow
Packit 5c3484
   any size.  */
Packit 5c3484
#define SQR_BASECASE_LIM  SQR_TOOM2_THRESHOLD
Packit 5c3484
#endif
Packit 5c3484
#endif
Packit 5c3484
Packit 5c3484
#ifdef WANT_FAT_BINARY
Packit 5c3484
/* For fat builds, we use SQR_TOOM2_THRESHOLD which will expand to a read from
Packit 5c3484
   __gmpn_cpuvec.  Perhaps any possible sqr_basecase.asm allow any size, and we
Packit 5c3484
   limit the use unnecessarily.  We cannot tell, so play it safe.  FIXME.  */
Packit 5c3484
#define SQR_BASECASE_LIM  SQR_TOOM2_THRESHOLD
Packit 5c3484
#endif
Packit 5c3484
Packit 5c3484
void
Packit 5c3484
mpn_sec_sqr (mp_ptr rp,
Packit 5c3484
	     mp_srcptr ap, mp_size_t an,
Packit 5c3484
	     mp_ptr tp)
Packit 5c3484
{
Packit 5c3484
#ifndef SQR_BASECASE_LIM
Packit 5c3484
/* If SQR_BASECASE_LIM is now not defined, use mpn_sqr_basecase for any operand
Packit 5c3484
   size.  */
Packit 5c3484
  mpn_sqr_basecase (rp, ap, an);
Packit 5c3484
#else
Packit 5c3484
/* Else use mpn_sqr_basecase for its allowed sizes, else mpn_mul_basecase.  */
Packit 5c3484
  mpn_mul_basecase (rp, ap, an, ap, an);
Packit 5c3484
#endif
Packit 5c3484
}
Packit 5c3484
Packit 5c3484
mp_size_t
Packit 5c3484
mpn_sec_sqr_itch (mp_size_t an)
Packit 5c3484
{
Packit 5c3484
  return 0;
Packit 5c3484
}