mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-26 12:23:59 +08:00
7d7b8bfe55
* acinclude.m4 (LIBGFOR_CHECK_ATTRIBUTE_VISIBILITY): New. (LIBGFOR_CHECK_ATTRIBUTE_DLLEXPORT): New. (LIBGFOR_CHECK_ATTRIBUTE_ALIAS): New. * configure.ac: Use them. * configure, config.h.in, aclocal.m4: Rebuild. * libgfortran.h (prefix): Remove. (PREFIX, IPREFIX): New. (sym_rename, sym_rename1, sym_rename2): New. (internal_proto, export_proto, export_proto_np): New. (iexport_proto, iexport): New. (iexport_data_proto, iexport_data): New. * intrinsics/abort.c, intrinsics/args.c, intrinsics/associated.c, intrinsics/cpu_time.c, intrinsics/cshift0.c, intrinsics/date_and_time.c, intrinsics/env.c, intrinsics/eoshift0.c, intrinsics/eoshift2.c, intrinsics/etime.c, intrinsics/exit.c, intrinsics/flush.c, intrinsics/fnum.c, intrinsics/getXid.c, intrinsics/getcwd.c, intrinsics/ishftc.c, intrinsics/mvbits.c, intrinsics/pack_generic.c, intrinsics/rand.c, intrinsics/random.c, intrinsics/reshape_generic.c, intrinsics/size.c, intrinsics/spread_generic.c, intrinsics/stat.c, intrinsics/string_intrinsics.c, intrinsics/system.c, intrinsics/system_clock.c, intrinsics/transpose_generic.c, intrinsics/umask.c, intrinsics/unlink.c, intrinsics/unpack_generic.c, io/backspace.c, io/close.c, io/endfile.c, io/inquire.c, io/io.h, io/open.c, io/rewind.c, io/transfer.c, libgfortran.h, m4/cshift1.m4, m4/dotprod.m4, m4/dotprodc.m4, m4/dotprodl.m4, m4/eoshift1.m4, m4/eoshift3.m4, m4/exponent.m4, m4/fraction.m4, m4/iforeach.m4, m4/ifunction.m4, m4/matmul.m4, m4/matmull.m4, m4/nearest.m4, m4/pow.m4, m4/reshape.m4, m4/set_exponent.m4, m4/shape.m4, m4/transpose.m4, runtime/environ.c, runtime/error.c, runtime/in_pack_generic.c, runtime/in_unpack_generic.c, runtime/main.c, runtime/memory.c, runtime/pause.c, runtime/select.c, runtime/stop.c: Use them to mark symbols internal or external. * generated/*: Rebuild. From-SVN: r92045
230 lines
6.5 KiB
C
230 lines
6.5 KiB
C
/* Implementation of the RESHAPE
|
|
Copyright 2002 Free Software Foundation, Inc.
|
|
Contributed by Paul Brook <paul@nowt.org>
|
|
|
|
This file is part of the GNU Fortran 95 runtime library (libgfor).
|
|
|
|
Libgfor is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
Ligbfor is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with libgfor; see the file COPYING.LIB. If not,
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
#include "config.h"
|
|
#include <stdlib.h>
|
|
#include <assert.h>
|
|
#include "libgfortran.h"
|
|
|
|
typedef GFC_ARRAY_DESCRIPTOR(1, index_type) shape_type;
|
|
|
|
/* The shape parameter is ignored. We can currently deduce the shape from the
|
|
return array. */
|
|
|
|
extern void __reshape_8 (gfc_array_i8 *, gfc_array_i8 *, shape_type *,
|
|
gfc_array_i8 *, shape_type *);
|
|
extern_proto_np(__reshape_8);
|
|
|
|
void
|
|
__reshape_8 (gfc_array_i8 * ret, gfc_array_i8 * source, shape_type * shape,
|
|
gfc_array_i8 * pad, shape_type * order)
|
|
{
|
|
/* r.* indicates the return array. */
|
|
index_type rcount[GFC_MAX_DIMENSIONS - 1];
|
|
index_type rextent[GFC_MAX_DIMENSIONS - 1];
|
|
index_type rstride[GFC_MAX_DIMENSIONS - 1];
|
|
index_type rstride0;
|
|
index_type rdim;
|
|
index_type rsize;
|
|
GFC_INTEGER_8 *rptr;
|
|
/* s.* indicates the source array. */
|
|
index_type scount[GFC_MAX_DIMENSIONS - 1];
|
|
index_type sextent[GFC_MAX_DIMENSIONS - 1];
|
|
index_type sstride[GFC_MAX_DIMENSIONS - 1];
|
|
index_type sstride0;
|
|
index_type sdim;
|
|
index_type ssize;
|
|
const GFC_INTEGER_8 *sptr;
|
|
/* p.* indicates the pad array. */
|
|
index_type pcount[GFC_MAX_DIMENSIONS - 1];
|
|
index_type pextent[GFC_MAX_DIMENSIONS - 1];
|
|
index_type pstride[GFC_MAX_DIMENSIONS - 1];
|
|
index_type pdim;
|
|
index_type psize;
|
|
const GFC_INTEGER_8 *pptr;
|
|
|
|
const GFC_INTEGER_8 *src;
|
|
int n;
|
|
int dim;
|
|
|
|
if (ret->dim[0].stride == 0)
|
|
ret->dim[0].stride = 1;
|
|
if (source->dim[0].stride == 0)
|
|
source->dim[0].stride = 1;
|
|
if (shape->dim[0].stride == 0)
|
|
shape->dim[0].stride = 1;
|
|
if (pad && pad->dim[0].stride == 0)
|
|
pad->dim[0].stride = 1;
|
|
if (order && order->dim[0].stride == 0)
|
|
order->dim[0].stride = 1;
|
|
|
|
rdim = GFC_DESCRIPTOR_RANK (ret);
|
|
rsize = 1;
|
|
for (n = 0; n < rdim; n++)
|
|
{
|
|
if (order)
|
|
dim = order->data[n * order->dim[0].stride] - 1;
|
|
else
|
|
dim = n;
|
|
|
|
rcount[n] = 0;
|
|
rstride[n] = ret->dim[dim].stride;
|
|
rextent[n] = ret->dim[dim].ubound + 1 - ret->dim[dim].lbound;
|
|
|
|
if (rextent[n] != shape->data[dim * shape->dim[0].stride])
|
|
runtime_error ("shape and target do not conform");
|
|
|
|
if (rsize == rstride[n])
|
|
rsize *= rextent[n];
|
|
else
|
|
rsize = 0;
|
|
if (rextent[dim] <= 0)
|
|
return;
|
|
}
|
|
|
|
sdim = GFC_DESCRIPTOR_RANK (source);
|
|
ssize = 1;
|
|
for (n = 0; n < sdim; n++)
|
|
{
|
|
scount[n] = 0;
|
|
sstride[n] = source->dim[n].stride;
|
|
sextent[n] = source->dim[n].ubound + 1 - source->dim[n].lbound;
|
|
if (sextent[n] <= 0)
|
|
abort ();
|
|
|
|
if (ssize == sstride[n])
|
|
ssize *= sextent[n];
|
|
else
|
|
ssize = 0;
|
|
}
|
|
|
|
if (pad)
|
|
{
|
|
if (pad->dim[0].stride == 0)
|
|
pad->dim[0].stride = 1;
|
|
pdim = GFC_DESCRIPTOR_RANK (pad);
|
|
psize = 1;
|
|
for (n = 0; n < pdim; n++)
|
|
{
|
|
pcount[n] = 0;
|
|
pstride[n] = pad->dim[n].stride;
|
|
pextent[n] = pad->dim[n].ubound + 1 - pad->dim[n].lbound;
|
|
if (pextent[n] <= 0)
|
|
abort ();
|
|
if (psize == pstride[n])
|
|
psize *= pextent[n];
|
|
else
|
|
psize = 0;
|
|
}
|
|
pptr = pad->data;
|
|
}
|
|
else
|
|
{
|
|
pdim = 0;
|
|
psize = 1;
|
|
pptr = NULL;
|
|
}
|
|
|
|
if (rsize != 0 && ssize != 0 && psize != 0)
|
|
{
|
|
rsize *= 8;
|
|
ssize *= 8;
|
|
psize *= 8;
|
|
reshape_packed ((char *)ret->data, rsize, (char *)source->data,
|
|
ssize, pad ? (char *)pad->data : NULL, psize);
|
|
return;
|
|
}
|
|
rptr = ret->data;
|
|
src = sptr = source->data;
|
|
rstride0 = rstride[0];
|
|
sstride0 = sstride[0];
|
|
|
|
while (rptr)
|
|
{
|
|
/* Select between the source and pad arrays. */
|
|
*rptr = *src;
|
|
/* Advance to the next element. */
|
|
rptr += rstride0;
|
|
src += sstride0;
|
|
rcount[0]++;
|
|
scount[0]++;
|
|
/* Advance to the next destination element. */
|
|
n = 0;
|
|
while (rcount[n] == rextent[n])
|
|
{
|
|
/* When we get to the end of a dimension, reset it and increment
|
|
the next dimension. */
|
|
rcount[n] = 0;
|
|
/* We could precalculate these products, but this is a less
|
|
frequently used path so proabably not worth it. */
|
|
rptr -= rstride[n] * rextent[n];
|
|
n++;
|
|
if (n == rdim)
|
|
{
|
|
/* Break out of the loop. */
|
|
rptr = NULL;
|
|
break;
|
|
}
|
|
else
|
|
{
|
|
rcount[n]++;
|
|
rptr += rstride[n];
|
|
}
|
|
}
|
|
/* Advance to the next source element. */
|
|
n = 0;
|
|
while (scount[n] == sextent[n])
|
|
{
|
|
/* When we get to the end of a dimension, reset it and increment
|
|
the next dimension. */
|
|
scount[n] = 0;
|
|
/* We could precalculate these products, but this is a less
|
|
frequently used path so proabably not worth it. */
|
|
src -= sstride[n] * sextent[n];
|
|
n++;
|
|
if (n == sdim)
|
|
{
|
|
if (sptr && pad)
|
|
{
|
|
/* Switch to the pad array. */
|
|
sptr = NULL;
|
|
sdim = pdim;
|
|
for (dim = 0; dim < pdim; dim++)
|
|
{
|
|
scount[dim] = pcount[dim];
|
|
sextent[dim] = pextent[dim];
|
|
sstride[dim] = pstride[dim];
|
|
sstride0 = sstride[0];
|
|
}
|
|
}
|
|
/* We now start again from the beginning of the pad array. */
|
|
src = pptr;
|
|
break;
|
|
}
|
|
else
|
|
{
|
|
scount[n]++;
|
|
src += sstride[n];
|
|
}
|
|
}
|
|
}
|
|
}
|