OSDN Git Service

2005-06-14 Frank Ch. Eigler <fche@redhat.com>
[pf3gnuchains/gcc-fork.git] / libgfortran / intrinsics / size.c
1 /* Implementation of the size intrinsic.
2    Copyright 2002 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., 59 Temple Place - Suite 330,
29 Boston, MA 02111-1307, USA.  */
30
31 #include "libgfortran.h"
32
33 index_type
34 size0 (const array_t * array)
35 {
36   int n;
37   index_type size;
38   index_type len;
39
40   size = 1;
41   for (n = 0; n < GFC_DESCRIPTOR_RANK (array); n++)
42     {
43       len = array->dim[n].ubound + 1 - array->dim[n].lbound;
44       if (len < 0)
45         len = 0;
46       size *= len;
47     }
48   return size;
49 }
50 iexport(size0);
51
52 extern index_type size1 (const array_t * array, index_type dim);
53 export_proto(size1);
54
55 index_type
56 size1 (const array_t * array, index_type dim)
57 {
58   index_type size;
59
60   dim--;
61
62   size = array->dim[dim].ubound + 1 - array->dim[dim].lbound;
63   if (size < 0)
64     size = 0;
65   return size;
66 }