]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/generated/pow_c8_i4.c
Update copyright years.
[thirdparty/gcc.git] / libgfortran / generated / pow_c8_i4.c
CommitLineData
5b200ac2 1/* Support routines for the intrinsic power (**) operator.
a945c346 2 Copyright (C) 2004-2024 Free Software Foundation, Inc.
5b200ac2
FW
3 Contributed by Paul Brook
4
57dea9f6 5This file is part of the GNU Fortran 95 runtime library (libgfortran).
5b200ac2 6
57dea9f6
TM
7Libgfortran is free software; you can redistribute it and/or
8modify it under the terms of the GNU General Public
5b200ac2 9License as published by the Free Software Foundation; either
748086b7 10version 3 of the License, or (at your option) any later version.
57dea9f6
TM
11
12Libgfortran is distributed in the hope that it will be useful,
5b200ac2
FW
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
57dea9f6 15GNU General Public License for more details.
5b200ac2 16
748086b7
JJ
17Under Section 7 of GPL version 3, you are granted additional
18permissions described in the GCC Runtime Library Exception, version
193.1, as published by the Free Software Foundation.
20
21You should have received a copy of the GNU General Public License and
22a copy of the GCC Runtime Library Exception along with this program;
23see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24<http://www.gnu.org/licenses/>. */
5b200ac2 25
5b200ac2
FW
26#include "libgfortran.h"
27
36ae8a61 28
7d7b8bfe 29/* Use Binary Method to calculate the powi. This is not an optimal but
5b200ac2
FW
30 a simple and reasonable arithmetic. See section 4.6.3, "Evaluation of
31 Powers" of Donald E. Knuth, "Seminumerical Algorithms", Vol. 2, "The Art
32 of Computer Programming", 3rd Edition, 1998. */
33
644cb69f
FXC
34#if defined (HAVE_GFC_COMPLEX_8) && defined (HAVE_GFC_INTEGER_4)
35
7d7b8bfe
RH
36GFC_COMPLEX_8 pow_c8_i4 (GFC_COMPLEX_8 a, GFC_INTEGER_4 b);
37export_proto(pow_c8_i4);
38
5b200ac2 39GFC_COMPLEX_8
7d7b8bfe 40pow_c8_i4 (GFC_COMPLEX_8 a, GFC_INTEGER_4 b)
5b200ac2
FW
41{
42 GFC_COMPLEX_8 pow, x;
3d1f465a
TK
43 GFC_INTEGER_4 n;
44 GFC_UINTEGER_4 u;
5b200ac2
FW
45
46 n = b;
47 x = a;
48 pow = 1;
49 if (n != 0)
50 {
51 if (n < 0)
52 {
53
3d1f465a 54 u = -n;
5b200ac2
FW
55 x = pow / x;
56 }
3d1f465a
TK
57 else
58 {
59 u = n;
60 }
5b200ac2
FW
61 for (;;)
62 {
63 if (u & 1)
64 pow *= x;
65 u >>= 1;
66 if (u)
67 x *= x;
68 else
69 break;
70 }
71 }
72 return pow;
73}
644cb69f
FXC
74
75#endif