2004-05-13 08:41:07 +02:00
|
|
|
/* Generic implementation of the RESHAPE intrinsic
|
2006-06-06 10:10:09 +02:00
|
|
|
Copyright 2002, 2006 Free Software Foundation, Inc.
|
2004-05-13 08:41:07 +02:00
|
|
|
Contributed by Paul Brook <paul@nowt.org>
|
|
|
|
|
2005-01-12 22:27:33 +01:00
|
|
|
This file is part of the GNU Fortran 95 runtime library (libgfortran).
|
2004-05-13 08:41:07 +02:00
|
|
|
|
2005-01-12 22:27:33 +01:00
|
|
|
Libgfortran is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public
|
2004-05-13 08:41:07 +02:00
|
|
|
License as published by the Free Software Foundation; either
|
2005-01-12 22:27:33 +01:00
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
In addition to the permissions in the GNU General Public License, the
|
|
|
|
Free Software Foundation gives you unlimited permission to link the
|
|
|
|
compiled version of this file into combinations with other programs,
|
|
|
|
and to distribute those combinations without any restriction coming
|
|
|
|
from the use of this file. (The General Public License restrictions
|
|
|
|
do apply in other respects; for example, they cover modification of
|
|
|
|
the file, and distribution when not linked into a combine
|
|
|
|
executable.)
|
|
|
|
|
|
|
|
Ligbfortran is distributed in the hope that it will be useful,
|
2004-05-13 08:41:07 +02:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2005-01-12 22:27:33 +01:00
|
|
|
GNU General Public License for more details.
|
2004-05-13 08:41:07 +02:00
|
|
|
|
2005-01-12 22:27:33 +01:00
|
|
|
You should have received a copy of the GNU General Public
|
|
|
|
License along with libgfortran; see the file COPYING. If not,
|
2005-08-17 04:49:08 +02:00
|
|
|
write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA. */
|
2004-05-13 08:41:07 +02:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include "libgfortran.h"
|
|
|
|
|
|
|
|
typedef GFC_ARRAY_DESCRIPTOR(1, index_type) shape_type;
|
|
|
|
typedef GFC_ARRAY_DESCRIPTOR(GFC_MAX_DIMENSIONS, char) parray;
|
|
|
|
|
re PR fortran/19269 (transpose(reshape(...)) of character array segfaults.)
gcc/fortran/
PR target/19269
* iresolve.c (gfc_resolve_cshift, gfc_resolve_eoshift)
(gfc_resolve_pack, gfc_resolve_reshape, gfc_resolve_spread)
(gfc_resolve_transpose, gfc_resolve_unpack): Add "_char" to the name
for character-based operations.
(gfc_resolve_pack): Remove ATTRIBUTE_UNUSED from array argument.
(gfc_resolve_unpack): Copy the whole typespec from the vector.
* trans-array.c (gfc_conv_expr_descriptor): In the EXPR_FUNCTION
case, get the string length from the scalarization state.
libgfortran/
PR target/19269
* intrinsics/cshift0.c (cshift0): Add an extra size argument.
(cshift0_1, cshift0_2, cshift0_4, cshift0_8): Replace explicit
implementations with...
(DEFINE_CSHIFT): ...this new macro. Define character versions too.
* intrinsics/eoshift0.c (zeros): Delete.
(eoshift0): Add extra size and filler arguments. Use memset if no
bound is provided.
(eoshift0_1, eoshift0_2, eoshift0_4, eoshift0_8): Replace explicit
implementations with...
(DEFINE_EOSHIFT): ...this new macro. Define character versions too.
* intrinsics/eoshift2.c (zeros): Delete.
(eoshift2): Add extra size and filler arguments. Use memset if no
bound is provided.
(eoshift2_1, eoshift2_2, eoshift2_4, eoshift2_8): Replace explicit
implementations with...
(DEFINE_EOSHIFT): ...this new macro. Define character versions too.
* intrinsics/pack.c (pack_internal): New static function, reusing
the contents of pack and adding an extra size argument. Change
"mptr" rather than "m" when calculating the array size.
(pack): Redefine as a forwarder to pack_internal.
(pack_s_internal): New static function, reusing the contents of
pack_s and adding an extra size argument.
(pack_s): Redefine as a forwarder to pack_s_internal.
(pack_char, pack_s_char): New functions.
* intrinsics/reshape.c (reshape_internal): New static function,
reusing the contents of reshape and adding an extra size argument.
(reshape): Redefine as a forwarder to reshape_internal.
(reshape_char): New function.
* intrinsics/spread.c (spread_internal): New static function,
reusing the contents of spread and adding an extra size argument.
(spread): Redefine as a forwarder to spread_internal.
(spread_char): New function.
* intrinsics/transpose.c (transpose_internal): New static function,
reusing the contents of transpose and adding an extra size argument.
(transpose): Redefine as a forwarder to transpose_internal.
(transpose_char): New function.
* intrinsics/unpack.c (unpack_internal): New static function, reusing
the contents of unpack1 and adding extra size and fsize arguments.
(unpack1): Redefine as a forwarder to unpack_internal.
(unpack0): Call unpack_internal instead of unpack1.
(unpack1_char, unpack0_char): New functions.
* m4/cshift1.m4 (cshift1): New static function, reusing the contents
of cshift1_<kind> and adding an extra size argument.
(cshift1_<kind>): Redefine as a forwarder to cshift1.
(cshift1_<kind>_char): New function.
* m4/eoshift1.m4 (zeros): Delete.
(eoshift1): New static function, reusing the contents of
eoshift1_<kind> and adding extra size and filler arguments.
Fix calculation of hstride. Use memset if no bound is provided.
(eoshift1_<kind>): Redefine as a forwarder to eoshift1.
(eoshift1_<kind>_char): New function.
* m4/eoshift3.m4 (zeros): Delete.
(eoshift3): New static function, reusing the contents of
eoshift3_<kind> and adding extra size and filler arguments.
Use memset if no bound is provided.
(eoshift3_<kind>): Redefine as a forwarder to eoshift3.
(eoshift3_<kind>_char): New function.
* generated/cshift1_4.c, generated/cshift1_8.c,
* generated/eoshift1_4.c, generated/eoshift1_8.c,
* generated/eoshift3_4.c, generated/eoshift3_8.c: Regenerate.
From-SVN: r104217
2005-09-13 09:15:01 +02:00
|
|
|
static void
|
|
|
|
reshape_internal (parray *ret, parray *source, shape_type *shape,
|
|
|
|
parray *pad, shape_type *order, index_type size)
|
2004-05-13 08:41:07 +02:00
|
|
|
{
|
|
|
|
/* r.* indicates the return array. */
|
2005-04-17 22:26:57 +02:00
|
|
|
index_type rcount[GFC_MAX_DIMENSIONS];
|
|
|
|
index_type rextent[GFC_MAX_DIMENSIONS];
|
|
|
|
index_type rstride[GFC_MAX_DIMENSIONS];
|
2004-05-13 08:41:07 +02:00
|
|
|
index_type rstride0;
|
|
|
|
index_type rdim;
|
|
|
|
index_type rsize;
|
2005-04-22 22:02:44 +02:00
|
|
|
index_type rs;
|
|
|
|
index_type rex;
|
2004-05-13 08:41:07 +02:00
|
|
|
char *rptr;
|
|
|
|
/* s.* indicates the source array. */
|
2005-04-17 22:26:57 +02:00
|
|
|
index_type scount[GFC_MAX_DIMENSIONS];
|
|
|
|
index_type sextent[GFC_MAX_DIMENSIONS];
|
|
|
|
index_type sstride[GFC_MAX_DIMENSIONS];
|
2004-05-13 08:41:07 +02:00
|
|
|
index_type sstride0;
|
|
|
|
index_type sdim;
|
|
|
|
index_type ssize;
|
|
|
|
const char *sptr;
|
|
|
|
/* p.* indicates the pad array. */
|
2005-04-17 22:26:57 +02:00
|
|
|
index_type pcount[GFC_MAX_DIMENSIONS];
|
|
|
|
index_type pextent[GFC_MAX_DIMENSIONS];
|
|
|
|
index_type pstride[GFC_MAX_DIMENSIONS];
|
2004-05-13 08:41:07 +02:00
|
|
|
index_type pdim;
|
|
|
|
index_type psize;
|
|
|
|
const char *pptr;
|
|
|
|
|
|
|
|
const char *src;
|
|
|
|
int n;
|
|
|
|
int dim;
|
2006-11-03 12:51:09 +01:00
|
|
|
int sempty, pempty;
|
2004-05-13 08:41:07 +02:00
|
|
|
|
2005-04-22 22:02:44 +02:00
|
|
|
if (ret->data == NULL)
|
|
|
|
{
|
|
|
|
rdim = shape->dim[0].ubound - shape->dim[0].lbound + 1;
|
|
|
|
rs = 1;
|
2006-11-03 12:51:09 +01:00
|
|
|
for (n = 0; n < rdim; n++)
|
2005-04-22 22:02:44 +02:00
|
|
|
{
|
|
|
|
ret->dim[n].lbound = 0;
|
|
|
|
rex = shape->data[n * shape->dim[0].stride];
|
|
|
|
ret->dim[n].ubound = rex - 1;
|
|
|
|
ret->dim[n].stride = rs;
|
|
|
|
rs *= rex;
|
|
|
|
}
|
libgfortran.h (GFC_ARRAY_DESCRIPTOR): Replace 'type *base' by 'size_t offset'.
* libgfortran.h (GFC_ARRAY_DESCRIPTOR): Replace 'type *base' by
'size_t offset'.
* intrinsics/cshift0.c, intrinsics/eoshift0.c,
intrinsics/eoshift2.c,intrinsics/pack_generic.c,
intrinsics/reshape_generic.c, intrinsics/spread_generic.c,
intrinsics/transpose_generic.c, intrinsics/unpack_generic,
m4/cshift1.m4, m4/eoshift1.m4, m4/eoshift3.m4, m4/iforeach.m4,
m4/ifunction.m4, m4/matmul.m4, m4/matmull.m4, m4/reshape.m4,
m4,transpose.m4: Set renamed field 'offset' to zero instead of
'base'.
* generated/all_l4.c, generated/all_l8.c,
generated/any_l4.c, generated/any_l8.c, generated/count_4_l4.c,
generated/count_4_l8.c, generated/count_8_l4.c,
generated/count_8_l8.c, generated/chift1_4.c,
generated/cshift1_8.c, generated/eoshift1_4.c,
generated/eoshift1_8.c, generated/eoshift3_4.c,
generated/eoshift3_8.c, generated/matmul_c4.c,
generated/matmul_c8.c, generated/matmul_i4.c, matmul_i8.c,
generated/matmul_l4.c, generated/matmul_l8.c,
generated/matmul_r4.c, generated/matmul_r8.c,
generated/maxloc0_4_i4.c, generated/maxloc0_4_i8.c,
generated/maxloc0_4_r4.c, generated/maxloc0_4_r8.c,
generated/maxloc0_8_i4.c, generated/maxloc0_8_i8.c,
generated/maxloc0_8_r4.c, generated/maxloc0_8_r8.c,
generated/maxloc1_4_i4.c, generated/maxloc1_4_i8.c,
generated/maxloc1_4_r4.c, generated/maxloc1_4_r8.c,
generated/maxloc1_8_i4.c, generated/maxloc1_8_i8.c,
generated/maxloc1_8_r4.c, generated/maxloc1_8_r8.c,
generated/maxval_i4.c, generated/maxval_i8.c,
generated/maxval_r4.c, generated/maxval_r8.c,
generated/minloc0_4_i4.c, generated/minloc0_4_i8.c,
generated/minloc0_4_r4.c, generated/minloc0_4_r8.c,
generated/minloc0_8_i4.c, generated/minloc0_8_i8.c,
generated/minloc0_8_r4.c, generated/minloc0_8_r8.c,
generated/minloc1_4_i4.c, generated/minloc1_4_i8.c,
generated/minloc1_4_r4.c, generated/minloc1_4_r8.c,
generated/minloc1_8_i4.c, generated/minloc1_8_i8.c,
generated/minloc1_8_r4.c, generated/minloc1_8_r8.c,
generated/minval_i4.c, generated/minval_i8.c,
generated/minval_r4.c, generated/minval_r8.c,
generated/product_c4.c, generated/product_c8.c,
generated/product_i4.c, generated/product_i8.c,
generated/product_r4.c, generated/product_r8.c,
generated/reshape_c4.c, generated/reshape_c8.c,
generated/reshape_i4.c, generated/reshape_i8.c,
generated/sum_c4.c, generated/sum_c8.c, generated/sum_i4.c,
generated/sum_i8.c, generated/sum_r4.c, generated/sum_r8.c,
generated/transpose_c4.c, generated/transpose_c8.c,
generated/transpose_i4.c, generated/transpose_i8.c: Regenerate:
From-SVN: r101739
2005-07-08 00:08:06 +02:00
|
|
|
ret->offset = 0;
|
2005-04-22 22:02:44 +02:00
|
|
|
ret->data = internal_malloc_size ( rs * size );
|
|
|
|
ret->dtype = (source->dtype & ~GFC_DTYPE_RANK_MASK) | rdim;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rdim = GFC_DESCRIPTOR_RANK (ret);
|
|
|
|
}
|
|
|
|
|
2004-05-13 08:41:07 +02:00
|
|
|
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;
|
2005-04-22 22:02:44 +02:00
|
|
|
if (rextent[n] <= 0)
|
2004-05-13 08:41:07 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sdim = GFC_DESCRIPTOR_RANK (source);
|
|
|
|
ssize = 1;
|
2006-11-03 12:51:09 +01:00
|
|
|
sempty = 0;
|
2004-05-13 08:41:07 +02:00
|
|
|
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)
|
2006-11-03 12:51:09 +01:00
|
|
|
{
|
|
|
|
sempty = 1;
|
|
|
|
sextent[n] = 0;
|
|
|
|
}
|
2004-05-13 08:41:07 +02:00
|
|
|
|
2005-04-22 22:02:44 +02:00
|
|
|
if (ssize == sstride[n])
|
2004-05-13 08:41:07 +02:00
|
|
|
ssize *= sextent[n];
|
|
|
|
else
|
|
|
|
ssize = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pad)
|
|
|
|
{
|
|
|
|
pdim = GFC_DESCRIPTOR_RANK (pad);
|
|
|
|
psize = 1;
|
2006-11-03 12:51:09 +01:00
|
|
|
pempty = 0;
|
2004-05-13 08:41:07 +02:00
|
|
|
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)
|
2006-11-03 12:51:09 +01:00
|
|
|
{
|
|
|
|
pempty = 1;
|
|
|
|
pextent[n] = 0;
|
|
|
|
}
|
|
|
|
|
2004-05-13 08:41:07 +02:00
|
|
|
if (psize == pstride[n])
|
|
|
|
psize *= pextent[n];
|
|
|
|
else
|
2005-04-22 22:02:44 +02:00
|
|
|
psize = 0;
|
2004-05-13 08:41:07 +02:00
|
|
|
}
|
|
|
|
pptr = pad->data;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pdim = 0;
|
|
|
|
psize = 1;
|
2006-11-03 12:51:09 +01:00
|
|
|
pempty = 1;
|
2004-05-13 08:41:07 +02:00
|
|
|
pptr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rsize != 0 && ssize != 0 && psize != 0)
|
|
|
|
{
|
|
|
|
rsize *= size;
|
|
|
|
ssize *= size;
|
|
|
|
psize *= size;
|
|
|
|
reshape_packed (ret->data, rsize, source->data, ssize,
|
|
|
|
pad ? pad->data : NULL, psize);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
rptr = ret->data;
|
|
|
|
src = sptr = source->data;
|
|
|
|
rstride0 = rstride[0] * size;
|
|
|
|
sstride0 = sstride[0] * size;
|
|
|
|
|
2006-11-03 12:51:09 +01:00
|
|
|
if (sempty && pempty)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
if (sempty)
|
|
|
|
{
|
|
|
|
/* Switch immediately to the pad array. */
|
|
|
|
src = pptr;
|
|
|
|
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] * size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-13 08:41:07 +02:00
|
|
|
while (rptr)
|
|
|
|
{
|
|
|
|
/* Select between the source and pad arrays. */
|
|
|
|
memcpy(rptr, src, size);
|
|
|
|
/* Advance to the next element. */
|
|
|
|
rptr += rstride0;
|
|
|
|
src += sstride0;
|
|
|
|
rcount[0]++;
|
|
|
|
scount[0]++;
|
2006-11-03 12:51:09 +01:00
|
|
|
|
2004-05-13 08:41:07 +02:00
|
|
|
/* 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
|
2006-10-18 19:17:49 +02:00
|
|
|
frequently used path so probably not worth it. */
|
2004-05-13 08:41:07 +02:00
|
|
|
rptr -= rstride[n] * rextent[n] * size;
|
|
|
|
n++;
|
|
|
|
if (n == rdim)
|
|
|
|
{
|
|
|
|
/* Break out of the loop. */
|
|
|
|
rptr = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rcount[n]++;
|
|
|
|
rptr += rstride[n] * size;
|
|
|
|
}
|
2006-11-03 12:51:09 +01:00
|
|
|
}
|
|
|
|
|
2004-05-13 08:41:07 +02:00
|
|
|
/* 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
|
2006-10-18 19:17:49 +02:00
|
|
|
frequently used path so probably not worth it. */
|
2004-05-13 08:41:07 +02:00
|
|
|
src -= sstride[n] * sextent[n] * size;
|
|
|
|
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] * size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* We now start again from the beginning of the pad array. */
|
|
|
|
src = pptr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
scount[n]++;
|
2007-03-25 10:29:10 +02:00
|
|
|
src += sstride[n] * size;
|
2004-05-13 08:41:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
re PR fortran/19269 (transpose(reshape(...)) of character array segfaults.)
gcc/fortran/
PR target/19269
* iresolve.c (gfc_resolve_cshift, gfc_resolve_eoshift)
(gfc_resolve_pack, gfc_resolve_reshape, gfc_resolve_spread)
(gfc_resolve_transpose, gfc_resolve_unpack): Add "_char" to the name
for character-based operations.
(gfc_resolve_pack): Remove ATTRIBUTE_UNUSED from array argument.
(gfc_resolve_unpack): Copy the whole typespec from the vector.
* trans-array.c (gfc_conv_expr_descriptor): In the EXPR_FUNCTION
case, get the string length from the scalarization state.
libgfortran/
PR target/19269
* intrinsics/cshift0.c (cshift0): Add an extra size argument.
(cshift0_1, cshift0_2, cshift0_4, cshift0_8): Replace explicit
implementations with...
(DEFINE_CSHIFT): ...this new macro. Define character versions too.
* intrinsics/eoshift0.c (zeros): Delete.
(eoshift0): Add extra size and filler arguments. Use memset if no
bound is provided.
(eoshift0_1, eoshift0_2, eoshift0_4, eoshift0_8): Replace explicit
implementations with...
(DEFINE_EOSHIFT): ...this new macro. Define character versions too.
* intrinsics/eoshift2.c (zeros): Delete.
(eoshift2): Add extra size and filler arguments. Use memset if no
bound is provided.
(eoshift2_1, eoshift2_2, eoshift2_4, eoshift2_8): Replace explicit
implementations with...
(DEFINE_EOSHIFT): ...this new macro. Define character versions too.
* intrinsics/pack.c (pack_internal): New static function, reusing
the contents of pack and adding an extra size argument. Change
"mptr" rather than "m" when calculating the array size.
(pack): Redefine as a forwarder to pack_internal.
(pack_s_internal): New static function, reusing the contents of
pack_s and adding an extra size argument.
(pack_s): Redefine as a forwarder to pack_s_internal.
(pack_char, pack_s_char): New functions.
* intrinsics/reshape.c (reshape_internal): New static function,
reusing the contents of reshape and adding an extra size argument.
(reshape): Redefine as a forwarder to reshape_internal.
(reshape_char): New function.
* intrinsics/spread.c (spread_internal): New static function,
reusing the contents of spread and adding an extra size argument.
(spread): Redefine as a forwarder to spread_internal.
(spread_char): New function.
* intrinsics/transpose.c (transpose_internal): New static function,
reusing the contents of transpose and adding an extra size argument.
(transpose): Redefine as a forwarder to transpose_internal.
(transpose_char): New function.
* intrinsics/unpack.c (unpack_internal): New static function, reusing
the contents of unpack1 and adding extra size and fsize arguments.
(unpack1): Redefine as a forwarder to unpack_internal.
(unpack0): Call unpack_internal instead of unpack1.
(unpack1_char, unpack0_char): New functions.
* m4/cshift1.m4 (cshift1): New static function, reusing the contents
of cshift1_<kind> and adding an extra size argument.
(cshift1_<kind>): Redefine as a forwarder to cshift1.
(cshift1_<kind>_char): New function.
* m4/eoshift1.m4 (zeros): Delete.
(eoshift1): New static function, reusing the contents of
eoshift1_<kind> and adding extra size and filler arguments.
Fix calculation of hstride. Use memset if no bound is provided.
(eoshift1_<kind>): Redefine as a forwarder to eoshift1.
(eoshift1_<kind>_char): New function.
* m4/eoshift3.m4 (zeros): Delete.
(eoshift3): New static function, reusing the contents of
eoshift3_<kind> and adding extra size and filler arguments.
Use memset if no bound is provided.
(eoshift3_<kind>): Redefine as a forwarder to eoshift3.
(eoshift3_<kind>_char): New function.
* generated/cshift1_4.c, generated/cshift1_8.c,
* generated/eoshift1_4.c, generated/eoshift1_8.c,
* generated/eoshift3_4.c, generated/eoshift3_8.c: Regenerate.
From-SVN: r104217
2005-09-13 09:15:01 +02:00
|
|
|
|
|
|
|
extern void reshape (parray *, parray *, shape_type *, parray *, shape_type *);
|
|
|
|
export_proto(reshape);
|
|
|
|
|
|
|
|
void
|
|
|
|
reshape (parray *ret, parray *source, shape_type *shape, parray *pad,
|
|
|
|
shape_type *order)
|
|
|
|
{
|
|
|
|
reshape_internal (ret, source, shape, pad, order,
|
|
|
|
GFC_DESCRIPTOR_SIZE (source));
|
|
|
|
}
|
|
|
|
|
|
|
|
extern void reshape_char (parray *, GFC_INTEGER_4, parray *, shape_type *,
|
|
|
|
parray *, shape_type *, GFC_INTEGER_4,
|
|
|
|
GFC_INTEGER_4);
|
|
|
|
export_proto(reshape_char);
|
|
|
|
|
|
|
|
void
|
|
|
|
reshape_char (parray *ret, GFC_INTEGER_4 ret_length __attribute__((unused)),
|
|
|
|
parray *source, shape_type *shape, parray *pad,
|
|
|
|
shape_type *order, GFC_INTEGER_4 source_length,
|
|
|
|
GFC_INTEGER_4 pad_length __attribute__((unused)))
|
|
|
|
{
|
|
|
|
reshape_internal (ret, source, shape, pad, order, source_length);
|
|
|
|
}
|