* Makefile.am: Remove references to types.m4.
[official-gcc.git] / libgfortran / m4 / matmull.m4
blob4ee32fb94310ee39a02cba183d05ae2170c9f5ed
1 `/* Implementation of the MATMUL intrinsic
2    Copyright 2002 Free Software Foundation, Inc.
3    Contributed by Paul Brook <paul@nowt.org>
5 This file is part of the GNU Fortran 95 runtime library (libgfor).
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.
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.
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.  */
22 #include "config.h"
23 #include <stdlib.h>
24 #include <assert.h>
25 #include "libgfortran.h"'
26 include(iparm.m4)dnl
28 /* Dimensions: retarray(x,y) a(x, count) b(count,y).
29    Either a or b can be rank 1.  In this case x or y is 1.  */
30 void
31 `__matmul_'rtype_code (rtype * retarray, gfc_array_l4 * a, gfc_array_l4 * b)
33   GFC_INTEGER_4 *abase;
34   GFC_INTEGER_4 *bbase;
35   rtype_name *dest;
36   index_type rxstride;
37   index_type rystride;
38   index_type xcount;
39   index_type ycount;
40   index_type xstride;
41   index_type ystride;
42   index_type x;
43   index_type y;
45   GFC_INTEGER_4 *pa;
46   GFC_INTEGER_4 *pb;
47   index_type astride;
48   index_type bstride;
49   index_type count;
50   index_type n;
52   assert (GFC_DESCRIPTOR_RANK (a) == 2
53           || GFC_DESCRIPTOR_RANK (b) == 2);
54   abase = a->data;
55   if (GFC_DESCRIPTOR_SIZE (a) != 4)
56     {
57       assert (GFC_DESCRIPTOR_SIZE (a) == 8);
58       abase = GFOR_POINTER_L8_TO_L4 (abase);
59       astride <<= 1;
60     }
61   bbase = b->data;
62   if (GFC_DESCRIPTOR_SIZE (b) != 4)
63     {
64       assert (GFC_DESCRIPTOR_SIZE (b) == 8);
65       bbase = GFOR_POINTER_L8_TO_L4 (bbase);
66       bstride <<= 1;
67     }
68   dest = retarray->data;
70   if (retarray->dim[0].stride == 0)
71     retarray->dim[0].stride = 1;
72   if (a->dim[0].stride == 0)
73     a->dim[0].stride = 1;
74   if (b->dim[0].stride == 0)
75     b->dim[0].stride = 1;
77 sinclude(`matmul_asm_'rtype_code`.m4')dnl
79   if (GFC_DESCRIPTOR_RANK (retarray) == 1)
80     {
81       rxstride = retarray->dim[0].stride;
82       rystride = rxstride;
83     }
84   else
85     {
86       rxstride = retarray->dim[0].stride;
87       rystride = retarray->dim[1].stride;
88     }
90   /* If we have rank 1 parameters, zero the absent stride, and set the size to
91      one.  */
92   if (GFC_DESCRIPTOR_RANK (a) == 1)
93     {
94       astride = a->dim[0].stride;
95       count = a->dim[0].ubound + 1 - a->dim[0].lbound;
96       xstride = 0;
97       rxstride = 0;
98       xcount = 1;
99     }
100   else
101     {
102       astride = a->dim[1].stride;
103       count = a->dim[1].ubound + 1 - a->dim[1].lbound;
104       xstride = a->dim[0].stride;
105       xcount = a->dim[0].ubound + 1 - a->dim[0].lbound;
106     }
107   if (GFC_DESCRIPTOR_RANK (b) == 1)
108     {
109       bstride = b->dim[0].stride;
110       assert(count == b->dim[0].ubound + 1 - b->dim[0].lbound);
111       ystride = 0;
112       rystride = 0;
113       ycount = 1;
114     }
115   else
116     {
117       bstride = b->dim[0].stride;
118       assert(count == b->dim[0].ubound + 1 - b->dim[0].lbound);
119       ystride = b->dim[1].stride;
120       ycount = b->dim[1].ubound + 1 - b->dim[1].lbound;
121     }
123   for (y = 0; y < ycount; y++)
124     {
125       for (x = 0; x < xcount; x++)
126         {
127           /* Do the summation for this element.  For real and integer types
128              this is the same as DOT_PRODUCT.  For complex types we use do
129              a*b, not conjg(a)*b.  */
130           pa = abase;
131           pb = bbase;
132           *dest = 0;
134           for (n = 0; n < count; n++)
135             {
136               if (*pa && *pb)
137                 {
138                   *dest = 1;
139                   break;
140                 }
141               pa += astride;
142               pb += bstride;
143             }
145           dest += rxstride;
146           abase += xstride;
147         }
148       abase -= xstride * xcount;
149       bbase += ystride;
150       dest += rystride - (rxstride * xcount);
151     }