OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libgfortran/] [generated/] [in_unpack_c16.c] - Blame information for rev 14

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 14 jlechner
/* Helper function for repacking arrays.
2
   Copyright 2003 Free Software Foundation, Inc.
3
   Contributed by Paul Brook <paul@nowt.org>
4
 
5
This file is part of the GNU Fortran 95 runtime library (libgfortran).
6
 
7
Libgfortran is free software; you can redistribute it and/or
8
modify it under the terms of the GNU General Public
9
License as published by the Free Software Foundation; either
10
version 2 of the License, or (at your option) any later version.
11
 
12
In addition to the permissions in the GNU General Public License, the
13
Free Software Foundation gives you unlimited permission to link the
14
compiled version of this file into combinations with other programs,
15
and to distribute those combinations without any restriction coming
16
from the use of this file.  (The General Public License restrictions
17
do apply in other respects; for example, they cover modification of
18
the file, and distribution when not linked into a combine
19
executable.)
20
 
21
Libgfortran is distributed in the hope that it will be useful,
22
but WITHOUT ANY WARRANTY; without even the implied warranty of
23
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24
GNU General Public License for more details.
25
 
26
You should have received a copy of the GNU General Public
27
License along with libgfortran; see the file COPYING.  If not,
28
write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29
Boston, MA 02110-1301, USA.  */
30
 
31
#include "config.h"
32
#include <stdlib.h>
33
#include <assert.h>
34
#include <string.h>
35
#include "libgfortran.h"
36
 
37
#if defined (HAVE_GFC_COMPLEX_16)
38
 
39
void
40
internal_unpack_c16 (gfc_array_c16 * d, const GFC_COMPLEX_16 * src)
41
{
42
  index_type count[GFC_MAX_DIMENSIONS];
43
  index_type extent[GFC_MAX_DIMENSIONS];
44
  index_type stride[GFC_MAX_DIMENSIONS];
45
  index_type stride0;
46
  index_type dim;
47
  index_type dsize;
48
  GFC_COMPLEX_16 *dest;
49
  int n;
50
 
51
  dest = d->data;
52
  if (src == dest || !src)
53
    return;
54
 
55
  if (d->dim[0].stride == 0)
56
    d->dim[0].stride = 1;
57
 
58
  dim = GFC_DESCRIPTOR_RANK (d);
59
  dsize = 1;
60
  for (n = 0; n < dim; n++)
61
    {
62
      count[n] = 0;
63
      stride[n] = d->dim[n].stride;
64
      extent[n] = d->dim[n].ubound + 1 - d->dim[n].lbound;
65
      if (extent[n] <= 0)
66
        abort ();
67
 
68
      if (dsize == stride[n])
69
        dsize *= extent[n];
70
      else
71
        dsize = 0;
72
    }
73
 
74
  if (dsize != 0)
75
    {
76
      memcpy (dest, src, dsize * sizeof (GFC_COMPLEX_16));
77
      return;
78
    }
79
 
80
  stride0 = stride[0];
81
 
82
  while (dest)
83
    {
84
      /* Copy the data.  */
85
      *dest = *(src++);
86
      /* Advance to the next element.  */
87
      dest += stride0;
88
      count[0]++;
89
      /* Advance to the next source element.  */
90
      n = 0;
91
      while (count[n] == extent[n])
92
        {
93
          /* When we get to the end of a dimension, reset it and increment
94
             the next dimension.  */
95
          count[n] = 0;
96
          /* We could precalculate these products, but this is a less
97
             frequently used path so proabably not worth it.  */
98
          dest -= stride[n] * extent[n];
99
          n++;
100
          if (n == dim)
101
            {
102
              dest = NULL;
103
              break;
104
            }
105
          else
106
            {
107
              count[n]++;
108
              dest += stride[n];
109
            }
110
        }
111
    }
112
}
113
 
114
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.