OSDN Git Service

Merge tree-ssa-20020619-branch into mainline.
[pf3gnuchains/gcc-fork.git] / libgfortran / m4 / dotprodl.m4
1 `/* Implementation of the DOT_PRODUCT 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 (libgfor).
6
7 Libgfortran is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
11
12 Libgfortran is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
18 License along with libgfor; see the file COPYING.LIB.  If not,
19 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 #include "config.h"
23 #include <stdlib.h>
24 #include <assert.h>
25 #include "libgfortran.h"'
26 include(types.m4)dnl
27 define(rtype_kind, regexp(file, `_l\([0-9]+\)\.', `\1'))dnl
28 define(rtype_code,`l'rtype_kind)dnl
29 define(rtype,get_arraytype(l,rtype_kind))dnl
30 define(rtype_name, get_typename(l, rtype_kind))dnl
31
32 rtype_name
33 `__dot_product_'rtype_code (gfc_array_l4 * a, gfc_array_l4 * b)
34 {
35   GFC_LOGICAL_4 *pa;
36   GFC_LOGICAL_4 *pb;
37   index_type count;
38   index_type astride;
39   index_type bstride;
40
41   assert (GFC_DESCRIPTOR_RANK (a) == 1
42           && GFC_DESCRIPTOR_RANK (b) == 1);
43
44   if (a->dim[0].stride == 0)
45     a->dim[0].stride = 1;
46   if (b->dim[0].stride == 0)
47     b->dim[0].stride = 1;
48
49   astride = a->dim[0].stride;
50   bstride = b->dim[0].stride;
51   count = a->dim[0].ubound + 1 - a->dim[0].lbound;
52
53   pa = a->data;
54   if (GFC_DESCRIPTOR_SIZE (a) != 4)
55     {
56       assert (GFC_DESCRIPTOR_SIZE (a) == 8);
57       pa = GFOR_POINTER_L8_TO_L4 (pa);
58       astride <<= 1;
59     }
60   pb = b->data;
61   if (GFC_DESCRIPTOR_SIZE (b) != 4)
62     {
63       assert (GFC_DESCRIPTOR_SIZE (b) == 8);
64       pb = GFOR_POINTER_L8_TO_L4 (pb);
65       bstride <<= 1;
66     }
67
68   while (count--)
69     {
70       if (*pa && *pb)
71         return 1;
72
73       pa += astride;
74       pb += bstride;
75     }
76
77   return 0;
78 }
79