]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/m4/dotprod.m4
libgfortran ChangeLog:
[thirdparty/gcc.git] / libgfortran / m4 / dotprod.m4
CommitLineData
6de9cd9a
DN
1`/* Implementation of the DOT_PRODUCT intrinsic
2 Copyright 2002 Free Software Foundation, Inc.
3 Contributed by Paul Brook <paul@nowt.org>
4
57dea9f6 5This file is part of the GNU Fortran 95 runtime library (libgfortran).
6de9cd9a
DN
6
7Libgfortran is free software; you can redistribute it and/or
57dea9f6 8modify it under the terms of the GNU General Public
6de9cd9a 9License as published by the Free Software Foundation; either
57dea9f6
TM
10version 2 of the License, or (at your option) any later version.
11
12In addition to the permissions in the GNU General Public License, the
13Free Software Foundation gives you unlimited permission to link the
14compiled version of this file into combinations with other programs,
15and to distribute those combinations without any restriction coming
16from the use of this file. (The General Public License restrictions
17do apply in other respects; for example, they cover modification of
18the file, and distribution when not linked into a combine
19executable.)
6de9cd9a
DN
20
21Libgfortran is distributed in the hope that it will be useful,
22but WITHOUT ANY WARRANTY; without even the implied warranty of
23MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
57dea9f6 24GNU General Public License for more details.
6de9cd9a 25
57dea9f6
TM
26You should have received a copy of the GNU General Public
27License along with libgfortran; see the file COPYING. If not,
fe2ae685
KC
28write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29Boston, MA 02110-1301, USA. */
6de9cd9a
DN
30
31#include "config.h"
32#include <stdlib.h>
33#include <assert.h>
34#include "libgfortran.h"'
c9e66eda 35include(iparm.m4)dnl
6de9cd9a 36
644cb69f
FXC
37`#if defined (HAVE_'rtype_name`)'
38
6de9cd9a
DN
39typedef GFC_ARRAY_DESCRIPTOR(GFC_MAX_DIMENSIONS, char) char_array;
40
64acfd99
JB
41extern rtype_name dot_product_`'rtype_code (rtype * const restrict a,
42 rtype * const restrict b);
7f68c75f 43export_proto(dot_product_`'rtype_code);
7d7b8bfe 44
6de9cd9a
DN
45/* Both parameters will already have been converted to the result type. */
46rtype_name
64acfd99 47dot_product_`'rtype_code (rtype * const restrict a, rtype * const restrict b)
6de9cd9a 48{
64acfd99
JB
49 const rtype_name * restrict pa;
50 const rtype_name * restrict pb;
6de9cd9a
DN
51 rtype_name res;
52 index_type count;
53 index_type astride;
54 index_type bstride;
55
56 assert (GFC_DESCRIPTOR_RANK (a) == 1
57 && GFC_DESCRIPTOR_RANK (b) == 1);
58
59 if (a->dim[0].stride == 0)
60 a->dim[0].stride = 1;
61 if (b->dim[0].stride == 0)
62 b->dim[0].stride = 1;
63
64 astride = a->dim[0].stride;
65 bstride = b->dim[0].stride;
66 count = a->dim[0].ubound + 1 - a->dim[0].lbound;
67 res = 0;
68 pa = a->data;
69 pb = b->data;
70sinclude(`dotprod_asm_'rtype_code`.m4')dnl
71
72 while (count--)
73 {
74 res += *pa * *pb;
75 pa += astride;
76 pb += bstride;
77 }
78
79 return res;
80}
644cb69f
FXC
81
82#endif