OSDN Git Service

* ifcvt.c (cond_exec_find_if_block): Return FALSE if no
[pf3gnuchains/gcc-fork.git] / libgfortran / generated / transpose_c4.c
1 /* Implementation of the TRANSPOSE intrinsic
2    Copyright 2003, 2005, 2006 Free Software Foundation, Inc.
3    Contributed by Tobias Schlüter
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 <assert.h>
33 #include "libgfortran.h"
34
35 #if defined (HAVE_GFC_COMPLEX_4)
36
37 extern void transpose_c4 (gfc_array_c4 * const restrict ret, 
38         gfc_array_c4 * const restrict source);
39 export_proto(transpose_c4);
40
41 void
42 transpose_c4 (gfc_array_c4 * const restrict ret, 
43         gfc_array_c4 * const restrict source)
44 {
45   /* r.* indicates the return array.  */
46   index_type rxstride, rystride;
47   GFC_COMPLEX_4 *rptr;
48   /* s.* indicates the source array.  */
49   index_type sxstride, systride;
50   const GFC_COMPLEX_4 *sptr;
51
52   index_type xcount, ycount;
53   index_type x, y;
54
55   assert (GFC_DESCRIPTOR_RANK (source) == 2);
56
57   if (ret->data == NULL)
58     {
59       assert (GFC_DESCRIPTOR_RANK (ret) == 2);
60       assert (ret->dtype == source->dtype);
61
62       ret->dim[0].lbound = 0;
63       ret->dim[0].ubound = source->dim[1].ubound - source->dim[1].lbound;
64       ret->dim[0].stride = 1;
65
66       ret->dim[1].lbound = 0;
67       ret->dim[1].ubound = source->dim[0].ubound - source->dim[0].lbound;
68       ret->dim[1].stride = ret->dim[0].ubound+1;
69
70       ret->data = internal_malloc_size (sizeof (GFC_COMPLEX_4) * size0 ((array_t *) ret));
71       ret->offset = 0;
72     }
73
74   sxstride = source->dim[0].stride;
75   systride = source->dim[1].stride;
76   xcount = source->dim[0].ubound + 1 - source->dim[0].lbound;
77   ycount = source->dim[1].ubound + 1 - source->dim[1].lbound;
78
79   rxstride = ret->dim[0].stride;
80   rystride = ret->dim[1].stride;
81
82   rptr = ret->data;
83   sptr = source->data;
84
85   for (y=0; y < ycount; y++)
86     {
87       for (x=0; x < xcount; x++)
88         {
89           *rptr = *sptr;
90
91           sptr += sxstride;
92           rptr += rystride;
93         }
94         sptr += systride - (sxstride * xcount);
95         rptr += rxstride - (rystride * xcount);
96     }
97 }
98
99 #endif