OSDN Git Service

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