]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/generated/in_unpack_r8.c
PR 78534 Reinstate better string copy algorithm
[thirdparty/gcc.git] / libgfortran / generated / in_unpack_r8.c
CommitLineData
8e1d7686 1/* Helper function for repacking arrays.
85ec4feb 2 Copyright (C) 2003-2018 Free Software Foundation, Inc.
8e1d7686
TK
3 Contributed by Paul Brook <paul@nowt.org>
4
21d1335b 5This file is part of the GNU Fortran runtime library (libgfortran).
8e1d7686
TK
6
7Libgfortran is free software; you can redistribute it and/or
8modify it under the terms of the GNU General Public
9License as published by the Free Software Foundation; either
748086b7 10version 3 of the License, or (at your option) any later version.
8e1d7686
TK
11
12Libgfortran is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
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/>. */
8e1d7686
TK
25
26#include "libgfortran.h"
8e1d7686
TK
27#include <string.h>
28
29
30#if defined (HAVE_GFC_REAL_8)
31
32void
33internal_unpack_r8 (gfc_array_r8 * d, const GFC_REAL_8 * src)
34{
35 index_type count[GFC_MAX_DIMENSIONS];
36 index_type extent[GFC_MAX_DIMENSIONS];
37 index_type stride[GFC_MAX_DIMENSIONS];
38 index_type stride0;
39 index_type dim;
40 index_type dsize;
5863aacf 41 GFC_REAL_8 * restrict dest;
8e1d7686
TK
42 int n;
43
21d1335b 44 dest = d->base_addr;
8e1d7686
TK
45 if (src == dest || !src)
46 return;
47
48 dim = GFC_DESCRIPTOR_RANK (d);
49 dsize = 1;
50 for (n = 0; n < dim; n++)
51 {
52 count[n] = 0;
dfb55fdc
TK
53 stride[n] = GFC_DESCRIPTOR_STRIDE(d,n);
54 extent[n] = GFC_DESCRIPTOR_EXTENT(d,n);
8e1d7686 55 if (extent[n] <= 0)
210879b8 56 return;
8e1d7686
TK
57
58 if (dsize == stride[n])
210879b8 59 dsize *= extent[n];
8e1d7686 60 else
210879b8 61 dsize = 0;
8e1d7686
TK
62 }
63
64 if (dsize != 0)
65 {
66 memcpy (dest, src, dsize * sizeof (GFC_REAL_8));
67 return;
68 }
69
70 stride0 = stride[0];
71
72 while (dest)
73 {
74 /* Copy the data. */
75 *dest = *(src++);
76 /* Advance to the next element. */
77 dest += stride0;
78 count[0]++;
79 /* Advance to the next source element. */
80 n = 0;
81 while (count[n] == extent[n])
82 {
83 /* When we get to the end of a dimension, reset it and increment
84 the next dimension. */
85 count[n] = 0;
86 /* We could precalculate these products, but this is a less
87 frequently used path so probably not worth it. */
88 dest -= stride[n] * extent[n];
89 n++;
90 if (n == dim)
91 {
92 dest = NULL;
93 break;
94 }
95 else
96 {
97 count[n]++;
98 dest += stride[n];
99 }
100 }
101 }
102}
103
104#endif
105