1 /* Single-image implementation of GNU Fortran Coarray Library
3 Free Software Foundation, Inc.
4 Contributed by Tobias Burnus <burnus@net-b.de>
6 This file is part of the GNU Fortran Coarray Runtime Library (libcaf).
8 Libcaf is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 Libcaf is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
28 #include <stdio.h> /* For fputs and fprintf. */
29 #include <stdlib.h> /* For exit and malloc. */
30 #include <string.h> /* For memcpy and memset. */
31 #include <stdarg.h> /* For variadic arguments. */
33 /* Define GFC_CAF_CHECK to enable run-time checking. */
34 /* #define GFC_CAF_CHECK 1 */
36 /* Single-image implementation of the CAF library.
37 Note: For performance reasons -fcoarry=single should be used
38 rather than this library. */
40 /* Global variables. */
41 caf_static_t
*caf_static_list
= NULL
;
44 /* Keep in sync with mpi.c. */
46 caf_runtime_error (const char *message
, ...)
49 fprintf (stderr
, "Fortran runtime error: ");
50 va_start (ap
, message
);
51 vfprintf (stderr
, message
, ap
);
53 fprintf (stderr
, "\n");
55 /* FIXME: Shutdown the Fortran RTL to flush the buffer. PR 43849. */
60 _gfortran_caf_init (int *argc
__attribute__ ((unused
)),
61 char ***argv
__attribute__ ((unused
)),
62 int *this_image
, int *num_images
)
70 _gfortran_caf_finalize (void)
72 while (caf_static_list
!= NULL
)
74 caf_static_t
*tmp
= caf_static_list
->prev
;
75 free (caf_static_list
->token
[0]);
76 free (caf_static_list
->token
);
77 free (caf_static_list
);
78 caf_static_list
= tmp
;
84 _gfortran_caf_register (ptrdiff_t size
, caf_register_t type
, void **token
,
85 int *stat
, char *errmsg
, int errmsg_len
)
89 local
= malloc (size
);
90 token
= malloc (sizeof (void*) * 1);
93 if (unlikely (local
== NULL
|| token
== NULL
))
95 const char msg
[] = "Failed to allocate coarray";
101 int len
= ((int) sizeof (msg
) > errmsg_len
) ? errmsg_len
102 : (int) sizeof (msg
);
103 memcpy (errmsg
, msg
, len
);
104 if (errmsg_len
> len
)
105 memset (&errmsg
[len
], ' ', errmsg_len
-len
);
110 caf_runtime_error (msg
);
116 if (type
== CAF_REGTYPE_COARRAY_STATIC
)
118 caf_static_t
*tmp
= malloc (sizeof (caf_static_t
));
119 tmp
->prev
= caf_static_list
;
121 caf_static_list
= tmp
;
128 _gfortran_caf_deregister (void **token
, int *stat
,
129 char *errmsg
__attribute__ ((unused
)),
130 int errmsg_len
__attribute__ ((unused
)))
141 _gfortran_caf_sync_all (int *stat
,
142 char *errmsg
__attribute__ ((unused
)),
143 int errmsg_len
__attribute__ ((unused
)))
151 _gfortran_caf_sync_images (int count
__attribute__ ((unused
)),
152 int images
[] __attribute__ ((unused
)),
154 char *errmsg
__attribute__ ((unused
)),
155 int errmsg_len
__attribute__ ((unused
)))
160 for (i
= 0; i
< count
; i
++)
163 fprintf (stderr
, "COARRAY ERROR: Invalid image index %d to SYNC "
164 "IMAGES", images
[i
]);
175 _gfortran_caf_error_stop_str (const char *string
, int32_t len
)
177 fputs ("ERROR STOP ", stderr
);
179 fputc (*(string
++), stderr
);
180 fputs ("\n", stderr
);
187 _gfortran_caf_error_stop (int32_t error
)
189 fprintf (stderr
, "ERROR STOP %d\n", error
);