Blame mpf/pow_ui.c

Packit 5c3484
/* mpf_pow_ui -- Compute b^e.
Packit 5c3484
Packit 5c3484
Copyright 1998, 1999, 2001, 2012, 2015 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
#include "longlong.h"
Packit 5c3484
Packit 5c3484
/* This uses a plain right-to-left square-and-multiply algorithm.
Packit 5c3484
Packit 5c3484
   FIXME: When popcount(e) is not too small, it would probably speed things up
Packit 5c3484
   to use a k-ary sliding window algorithm.  */
Packit 5c3484
Packit 5c3484
void
Packit 5c3484
mpf_pow_ui (mpf_ptr r, mpf_srcptr b, unsigned long int e)
Packit 5c3484
{
Packit 5c3484
  mpf_t t;
Packit 5c3484
  int cnt;
Packit 5c3484
Packit 5c3484
  if (e <= 1)
Packit 5c3484
    {
Packit 5c3484
      if (e == 0)
Packit 5c3484
	mpf_set_ui (r, 1);
Packit 5c3484
      else
Packit 5c3484
	mpf_set (r, b);
Packit 5c3484
      return;
Packit 5c3484
    }
Packit 5c3484
Packit 5c3484
  count_leading_zeros (cnt, (mp_limb_t) e);
Packit 5c3484
  cnt = GMP_LIMB_BITS - 1 - cnt;
Packit 5c3484
Packit 5c3484
  /* Increase computation precision as a function of the exponent.  Adding
Packit 5c3484
     log2(popcount(e) + log2(e)) bits should be sufficient, but we add log2(e),
Packit 5c3484
     i.e. much more.  With mpf's rounding of precision to whole limbs, this
Packit 5c3484
     will be excessive only when limbs are artificially small.  */
Packit 5c3484
  mpf_init2 (t, mpf_get_prec (r) + cnt);
Packit 5c3484
Packit 5c3484
  mpf_set (t, b);		/* consume most significant bit */
Packit 5c3484
  while (--cnt > 0)
Packit 5c3484
    {
Packit 5c3484
      mpf_mul (t, t, t);
Packit 5c3484
      if ((e >> cnt) & 1)
Packit 5c3484
	mpf_mul (t, t, b);
Packit 5c3484
    }
Packit 5c3484
Packit 5c3484
  /* Do the last iteration specially in order to save a copy operation.  */
Packit 5c3484
  if (e & 1)
Packit 5c3484
    {
Packit 5c3484
      mpf_mul (t, t, t);
Packit 5c3484
      mpf_mul (r, t, b);
Packit 5c3484
    }
Packit 5c3484
  else
Packit 5c3484
    {
Packit 5c3484
      mpf_mul (r, t, t);
Packit 5c3484
    }
Packit 5c3484
Packit 5c3484
  mpf_clear (t);
Packit 5c3484
}