1 /* Copyright (C) 2018 Free Software Foundation, Inc.
2 Contributed by Nicolas Koenig
4 This file is part of the GNU Fortran runtime library (libgfortran).
6 Libgfortran is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 Libgfortran is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
28 /* Async I/O will not work on targets which do not support
29 __gthread_cond_t and __gthread_equal / __gthread_self. Check
32 #if defined(__GTHREAD_HAS_COND) && defined(__GTHREADS_CXX0X)
38 /* Defining DEBUG_ASYNC will enable somewhat verbose debugging
39 output for async I/O. */
46 /* Define this if you want to use ANSI color escape sequences in your
52 #define MPREFIX "\033[30;46mM:\033[0m "
53 #define TPREFIX "\033[37;44mT:\033[0m "
54 #define RPREFIX "\033[37;41mR:\033[0m "
55 #define DEBUG_RED "\033[31m"
56 #define DEBUG_ORANGE "\033[33m"
57 #define DEBUG_GREEN "\033[32m"
58 #define DEBUG_DARKRED "\033[31;2m"
59 #define DEBUG_PURPLE "\033[35m"
60 #define DEBUG_NORM "\033[0m"
61 #define DEBUG_REVERSE_RED "\033[41;37m"
62 #define DEBUG_BLUE "\033[34m"
70 #define DEBUG_ORANGE ""
71 #define DEBUG_GREEN ""
72 #define DEBUG_DARKRED ""
73 #define DEBUG_PURPLE ""
75 #define DEBUG_REVERSE_RED ""
80 #define DEBUG_PRINTF(...) fprintf (stderr,__VA_ARGS__)
82 #define IN_DEBUG_QUEUE(mutex) ({ \
84 aio_lock_debug *curr = aio_debug_head; \
86 if (curr->m == mutex) { \
95 #define TAIL_DEBUG_QUEUE ({ \
96 aio_lock_debug *curr = aio_debug_head; \
97 while (curr && curr->next) { \
103 #define CHECK_LOCK(mutex, status) do { \
104 aio_lock_debug *curr; \
105 INTERN_LOCK (&debug_queue_lock); \
106 if (__gthread_mutex_trylock (mutex)) { \
107 if ((curr = IN_DEBUG_QUEUE (mutex))) { \
108 sprintf (status, DEBUG_RED "%s():%d" DEBUG_NORM, curr->func, curr->line); \
110 sprintf (status, DEBUG_RED "unknown" DEBUG_NORM); \
113 __gthread_mutex_unlock (mutex); \
114 sprintf (status, DEBUG_GREEN "unlocked" DEBUG_NORM); \
116 INTERN_UNLOCK (&debug_queue_lock); \
119 #define T_ERROR(func, ...) do { \
121 t_error_temp = func(__VA_ARGS__); \
123 ERROR (t_error_temp, "args: " #__VA_ARGS__ "\n"); \
126 #define NOTE(str, ...) do{ \
127 char note_str[200]; \
128 sprintf (note_str, "%s" DEBUG_PURPLE "NOTE: " DEBUG_NORM str, aio_prefix, ##__VA_ARGS__); \
129 DEBUG_PRINTF ("%-90s %20s():%-5d\n", note_str, __FUNCTION__, __LINE__); \
132 #define ERROR(errnum, str, ...) do{ \
133 char note_str[200]; \
134 sprintf (note_str, "%s" DEBUG_REVERSE_RED "ERROR:" DEBUG_NORM " [%d] " str, aio_prefix, \
135 errnum, ##__VA_ARGS__); \
136 DEBUG_PRINTF ("%-68s %s():%-5d\n", note_str, __FUNCTION__, __LINE__); \
139 #define MUTEX_DEBUG_ADD(mutex) do { \
141 n = malloc (sizeof(aio_lock_debug)); \
142 n->prev = TAIL_DEBUG_QUEUE; \
146 n->line = __LINE__; \
147 n->func = __FUNCTION__; \
149 if (!aio_debug_head) { \
150 aio_debug_head = n; \
154 #define UNLOCK(mutex) do { \
155 aio_lock_debug *curr; \
156 DEBUG_PRINTF ("%s%-75s %20s():%-5d %18p\n", aio_prefix, DEBUG_GREEN "UNLOCK: " DEBUG_NORM #mutex, \
157 __FUNCTION__, __LINE__, (void *) mutex); \
158 INTERN_LOCK (&debug_queue_lock); \
159 curr = IN_DEBUG_QUEUE (mutex); \
163 curr->prev->next = curr->next; \
165 curr->next->prev = curr->prev; \
166 if (curr == aio_debug_head) \
167 aio_debug_head = curr->next; \
169 if (curr == aio_debug_head) \
170 aio_debug_head = NULL; \
174 INTERN_UNLOCK (&debug_queue_lock); \
175 INTERN_UNLOCK (mutex); \
178 #define TRYLOCK(mutex) ({ \
181 aio_lock_debug *curr; \
182 res = __gthread_mutex_trylock (mutex); \
183 INTERN_LOCK (&debug_queue_lock); \
185 if ((curr = IN_DEBUG_QUEUE (mutex))) { \
186 sprintf (status, DEBUG_RED "%s():%d" DEBUG_NORM, curr->func, curr->line); \
188 sprintf (status, DEBUG_RED "unknown" DEBUG_NORM); \
191 sprintf (status, DEBUG_GREEN "unlocked" DEBUG_NORM); \
192 MUTEX_DEBUG_ADD (mutex); \
194 DEBUG_PRINTF ("%s%-44s prev: %-35s %20s():%-5d %18p\n", aio_prefix, \
195 DEBUG_DARKRED "TRYLOCK: " DEBUG_NORM #mutex, status, __FUNCTION__, __LINE__, \
197 INTERN_UNLOCK (&debug_queue_lock); \
201 #define LOCK(mutex) do { \
203 CHECK_LOCK (mutex, status); \
204 DEBUG_PRINTF ("%s%-42s prev: %-35s %20s():%-5d %18p\n", aio_prefix, \
205 DEBUG_RED "LOCK: " DEBUG_NORM #mutex, status, __FUNCTION__, __LINE__, (void *) mutex); \
206 INTERN_LOCK (mutex); \
207 INTERN_LOCK (&debug_queue_lock); \
208 MUTEX_DEBUG_ADD (mutex); \
209 INTERN_UNLOCK (&debug_queue_lock); \
210 DEBUG_PRINTF ("%s" DEBUG_RED "ACQ:" DEBUG_NORM " %-30s %78p\n", aio_prefix, #mutex, mutex); \
213 #define DEBUG_LINE(...) __VA_ARGS__
216 #define DEBUG_PRINTF(...) {}
217 #define CHECK_LOCK(au, mutex, status) {}
218 #define NOTE(str, ...) {}
219 #define DEBUG_LINE(...)
220 #define T_ERROR(func, ...) func(__VA_ARGS__)
221 #define LOCK(mutex) INTERN_LOCK (mutex)
222 #define UNLOCK(mutex) INTERN_UNLOCK (mutex)
223 #define TRYLOCK(mutex) (__gthread_mutex_trylock (mutex))
226 #define INTERN_LOCK(mutex) T_ERROR (__gthread_mutex_lock, mutex);
228 #define INTERN_UNLOCK(mutex) T_ERROR (__gthread_mutex_unlock, mutex);
232 #define SIGNAL(advcond) do{ \
233 INTERN_LOCK (&(advcond)->lock); \
234 (advcond)->pending = 1; \
235 DEBUG_PRINTF ("%s%-75s %20s():%-5d %18p\n", aio_prefix, DEBUG_ORANGE "SIGNAL: " DEBUG_NORM \
236 #advcond, __FUNCTION__, __LINE__, (void *) advcond); \
237 T_ERROR (__gthread_cond_broadcast, &(advcond)->signal); \
238 INTERN_UNLOCK (&(advcond)->lock); \
241 #define WAIT_SIGNAL_MUTEX(advcond, condition, mutex) do{ \
243 INTERN_LOCK (&((advcond)->lock)); \
244 DEBUG_PRINTF ("%s%-75s %20s():%-5d %18p\n", aio_prefix, DEBUG_BLUE "WAITING: " DEBUG_NORM \
245 #advcond, __FUNCTION__, __LINE__, (void *) advcond); \
246 if ((advcond)->pending || (condition)){ \
251 while (!__gthread_cond_wait(&(advcond)->signal, &(advcond)->lock)) { \
253 LOCK (mutex); cond = condition; UNLOCK (mutex); \
255 DEBUG_PRINTF ("%s%-75s %20s():%-5d %18p\n", aio_prefix, DEBUG_ORANGE "REC: " DEBUG_NORM \
256 #advcond, __FUNCTION__, __LINE__, (void *)advcond); \
262 (advcond)->pending = 0; \
263 INTERN_UNLOCK (&((advcond)->lock)); \
266 #define REVOKE_SIGNAL(advcond) do{ \
267 INTERN_LOCK (&(advcond)->lock); \
268 (advcond)->pending = 0; \
269 INTERN_UNLOCK (&(advcond)->lock); \
274 #define SIGNAL(advcond) do{} while(0)
275 #define WAIT_SIGNAL_MUTEX(advcond, condition, mutex) do{} while(0)
276 #define REVOKE_SIGNAL(advcond) do{} while(0)
281 DEBUG_LINE (extern __thread
const char *aio_prefix
);
283 DEBUG_LINE (typedef struct aio_lock_debug
{
284 __gthread_mutex_t
*m
;
287 struct aio_lock_debug
*next
;
288 struct aio_lock_debug
*prev
;
291 DEBUG_LINE (extern aio_lock_debug
*aio_debug_head
;)
292 DEBUG_LINE (extern __gthread_mutex_t debug_queue_lock
;)
294 /* Thread - local storage of the current unit we are looking at. Needed for
297 extern __thread gfc_unit
*thread_unit
;
302 AIO_DATA_TRANSFER_INIT
,
310 typedef union transfer_args
314 void (*transfer
) (struct st_parameter_dt
*, bt
, void *, int, size_t, size_t);
323 gfc_array_char
*desc
;
325 gfc_charlen_type charlen
;
333 __gthread_mutex_t lock
;
334 __gthread_cond_t signal
;
338 typedef struct async_unit
340 __gthread_mutex_t io_lock
; /* Lock for doing actual I/O. */
341 __gthread_mutex_t lock
; /* Lock for manipulating the queue structure. */
348 struct adv_cond done
;
352 struct adv_cond work
;
353 struct adv_cond emptysignal
;
354 struct st_parameter_dt
*pdt
;
356 struct transfer_queue
*head
;
357 struct transfer_queue
*tail
;
361 st_parameter_common
*cmp
;
370 void init_async_unit (gfc_unit
*);
371 internal_proto (init_async_unit
);
373 bool async_wait (st_parameter_common
*, async_unit
*);
374 internal_proto (async_wait
);
376 bool async_wait_id (st_parameter_common
*, async_unit
*, int);
377 internal_proto (async_wait_id
);
379 bool collect_async_errors (st_parameter_common
*, async_unit
*);
380 internal_proto (collect_async_errors
);
382 void async_close (async_unit
*);
383 internal_proto (async_close
);
385 void enqueue_transfer (async_unit
* au
, transfer_args
* arg
, enum aio_do
);
386 internal_proto (enqueue_transfer
);
388 void enqueue_done (async_unit
*, enum aio_do type
);
389 internal_proto (enqueue_done
);
391 int enqueue_done_id (async_unit
*, enum aio_do type
);
392 internal_proto (enqueue_done_id
);
394 void enqueue_init (async_unit
*);
395 internal_proto (enqueue_init
);
397 void enqueue_data_transfer_init (async_unit
*, st_parameter_dt
*, int);
398 internal_proto (enqueue_data_transfer_init
);
400 void enqueue_close (async_unit
*);
401 internal_proto (enqueue_close
);