* config/m32c/predicates.md (m32c_psi_scale): New.
[official-gcc.git] / libgfortran / io / unit.c
blob1366a9e14a86c88c7a6335599eeb66f0d6f575bd
1 /* Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
2 Contributed by Andy Vaught
4 This file is part of the GNU Fortran 95 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 2, or (at your option)
9 any later version.
11 In addition to the permissions in the GNU General Public License, the
12 Free Software Foundation gives you unlimited permission to link the
13 compiled version of this file into combinations with other programs,
14 and to distribute those combinations without any restriction coming
15 from the use of this file. (The General Public License restrictions
16 do apply in other respects; for example, they cover modification of
17 the file, and distribution when not linked into a combine
18 executable.)
20 Libgfortran is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with Libgfortran; see the file COPYING. If not, write to
27 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
28 Boston, MA 02110-1301, USA. */
30 #include "config.h"
31 #include <stdlib.h>
32 #include <string.h>
33 #include "libgfortran.h"
34 #include "io.h"
37 /* IO locking rules:
38 UNIT_LOCK is a master lock, protecting UNIT_ROOT tree and UNIT_CACHE.
39 Concurrent use of different units should be supported, so
40 each unit has its own lock, LOCK.
41 Open should be atomic with its reopening of units and list_read.c
42 in several places needs find_unit another unit while holding stdin
43 unit's lock, so it must be possible to acquire UNIT_LOCK while holding
44 some unit's lock. Therefore to avoid deadlocks, it is forbidden
45 to acquire unit's private locks while holding UNIT_LOCK, except
46 for freshly created units (where no other thread can get at their
47 address yet) or when using just trylock rather than lock operation.
48 In addition to unit's private lock each unit has a WAITERS counter
49 and CLOSED flag. WAITERS counter must be either only
50 atomically incremented/decremented in all places (if atomic builtins
51 are supported), or protected by UNIT_LOCK in all places (otherwise).
52 CLOSED flag must be always protected by unit's LOCK.
53 After finding a unit in UNIT_CACHE or UNIT_ROOT with UNIT_LOCK held,
54 WAITERS must be incremented to avoid concurrent close from freeing
55 the unit between unlocking UNIT_LOCK and acquiring unit's LOCK.
56 Unit freeing is always done under UNIT_LOCK. If close_unit sees any
57 WAITERS, it doesn't free the unit but instead sets the CLOSED flag
58 and the thread that decrements WAITERS to zero while CLOSED flag is
59 set is responsible for freeing it (while holding UNIT_LOCK).
60 flush_all_units operation is iterating over the unit tree with
61 increasing UNIT_NUMBER while holding UNIT_LOCK and attempting to
62 flush each unit (and therefore needs the unit's LOCK held as well).
63 To avoid deadlocks, it just trylocks the LOCK and if unsuccessful,
64 remembers the current unit's UNIT_NUMBER, unlocks UNIT_LOCK, acquires
65 unit's LOCK and after flushing reacquires UNIT_LOCK and restarts with
66 the smallest UNIT_NUMBER above the last one flushed.
68 If find_unit/find_or_create_unit/find_file/get_unit routines return
69 non-NULL, the returned unit has its private lock locked and when the
70 caller is done with it, it must call either unlock_unit or close_unit
71 on it. unlock_unit or close_unit must be always called only with the
72 private lock held. */
74 /* Subroutines related to units */
77 #define CACHE_SIZE 3
78 static gfc_unit internal_unit, *unit_cache[CACHE_SIZE];
79 gfc_offset max_offset;
80 gfc_unit *unit_root;
81 #ifdef __GTHREAD_MUTEX_INIT
82 __gthread_mutex_t unit_lock = __GTHREAD_MUTEX_INIT;
83 #else
84 __gthread_mutex_t unit_lock;
85 #endif
87 /* This implementation is based on Stefan Nilsson's article in the
88 * July 1997 Doctor Dobb's Journal, "Treaps in Java". */
90 /* pseudo_random()-- Simple linear congruential pseudorandom number
91 * generator. The period of this generator is 44071, which is plenty
92 * for our purposes. */
94 static int
95 pseudo_random (void)
97 static int x0 = 5341;
99 x0 = (22611 * x0 + 10) % 44071;
100 return x0;
104 /* rotate_left()-- Rotate the treap left */
106 static gfc_unit *
107 rotate_left (gfc_unit * t)
109 gfc_unit *temp;
111 temp = t->right;
112 t->right = t->right->left;
113 temp->left = t;
115 return temp;
119 /* rotate_right()-- Rotate the treap right */
121 static gfc_unit *
122 rotate_right (gfc_unit * t)
124 gfc_unit *temp;
126 temp = t->left;
127 t->left = t->left->right;
128 temp->right = t;
130 return temp;
135 static int
136 compare (int a, int b)
138 if (a < b)
139 return -1;
140 if (a > b)
141 return 1;
143 return 0;
147 /* insert()-- Recursive insertion function. Returns the updated treap. */
149 static gfc_unit *
150 insert (gfc_unit *new, gfc_unit *t)
152 int c;
154 if (t == NULL)
155 return new;
157 c = compare (new->unit_number, t->unit_number);
159 if (c < 0)
161 t->left = insert (new, t->left);
162 if (t->priority < t->left->priority)
163 t = rotate_right (t);
166 if (c > 0)
168 t->right = insert (new, t->right);
169 if (t->priority < t->right->priority)
170 t = rotate_left (t);
173 if (c == 0)
174 internal_error (NULL, "insert(): Duplicate key found!");
176 return t;
180 /* insert_unit()-- Create a new node, insert it into the treap. */
182 static gfc_unit *
183 insert_unit (int n)
185 gfc_unit *u = get_mem (sizeof (gfc_unit));
186 memset (u, '\0', sizeof (gfc_unit));
187 u->unit_number = n;
188 #ifdef __GTHREAD_MUTEX_INIT
190 __gthread_mutex_t tmp = __GTHREAD_MUTEX_INIT;
191 u->lock = tmp;
193 #else
194 __GTHREAD_MUTEX_INIT_FUNCTION (&u->lock);
195 #endif
196 __gthread_mutex_lock (&u->lock);
197 u->priority = pseudo_random ();
198 unit_root = insert (u, unit_root);
199 return u;
203 static gfc_unit *
204 delete_root (gfc_unit * t)
206 gfc_unit *temp;
208 if (t->left == NULL)
209 return t->right;
210 if (t->right == NULL)
211 return t->left;
213 if (t->left->priority > t->right->priority)
215 temp = rotate_right (t);
216 temp->right = delete_root (t);
218 else
220 temp = rotate_left (t);
221 temp->left = delete_root (t);
224 return temp;
228 /* delete_treap()-- Delete an element from a tree. The 'old' value
229 * does not necessarily have to point to the element to be deleted, it
230 * must just point to a treap structure with the key to be deleted.
231 * Returns the new root node of the tree. */
233 static gfc_unit *
234 delete_treap (gfc_unit * old, gfc_unit * t)
236 int c;
238 if (t == NULL)
239 return NULL;
241 c = compare (old->unit_number, t->unit_number);
243 if (c < 0)
244 t->left = delete_treap (old, t->left);
245 if (c > 0)
246 t->right = delete_treap (old, t->right);
247 if (c == 0)
248 t = delete_root (t);
250 return t;
254 /* delete_unit()-- Delete a unit from a tree */
256 static void
257 delete_unit (gfc_unit * old)
259 unit_root = delete_treap (old, unit_root);
263 /* find_unit()-- Given an integer, return a pointer to the unit
264 * structure. Returns NULL if the unit does not exist,
265 * otherwise returns a locked unit. */
267 static gfc_unit *
268 find_unit_1 (int n, int do_create)
270 gfc_unit *p;
271 int c, created = 0;
273 __gthread_mutex_lock (&unit_lock);
274 retry:
275 for (c = 0; c < CACHE_SIZE; c++)
276 if (unit_cache[c] != NULL && unit_cache[c]->unit_number == n)
278 p = unit_cache[c];
279 goto found;
282 p = unit_root;
283 while (p != NULL)
285 c = compare (n, p->unit_number);
286 if (c < 0)
287 p = p->left;
288 if (c > 0)
289 p = p->right;
290 if (c == 0)
291 break;
294 if (p == NULL && do_create)
296 p = insert_unit (n);
297 created = 1;
300 if (p != NULL)
302 for (c = 0; c < CACHE_SIZE - 1; c++)
303 unit_cache[c] = unit_cache[c + 1];
305 unit_cache[CACHE_SIZE - 1] = p;
308 if (created)
310 /* Newly created units have their lock held already
311 from insert_unit. Just unlock UNIT_LOCK and return. */
312 __gthread_mutex_unlock (&unit_lock);
313 return p;
316 found:
317 if (p != NULL)
319 /* Fast path. */
320 if (! __gthread_mutex_trylock (&p->lock))
322 /* assert (p->closed == 0); */
323 __gthread_mutex_unlock (&unit_lock);
324 return p;
327 inc_waiting_locked (p);
330 __gthread_mutex_unlock (&unit_lock);
332 if (p != NULL)
334 __gthread_mutex_lock (&p->lock);
335 if (p->closed)
337 __gthread_mutex_lock (&unit_lock);
338 __gthread_mutex_unlock (&p->lock);
339 if (predec_waiting_locked (p) == 0)
340 free_mem (p);
341 goto retry;
344 dec_waiting_unlocked (p);
346 return p;
349 gfc_unit *
350 find_unit (int n)
352 return find_unit_1 (n, 0);
355 gfc_unit *
356 find_or_create_unit (int n)
358 return find_unit_1 (n, 1);
361 /* get_unit()-- Returns the unit structure associated with the integer
362 * unit or the internal file. */
364 gfc_unit *
365 get_unit (st_parameter_dt *dtp, int do_create)
367 if ((dtp->common.flags & IOPARM_DT_HAS_INTERNAL_UNIT) != 0)
369 __gthread_mutex_lock (&internal_unit.lock);
370 internal_unit.recl = dtp->internal_unit_len;
371 if (is_array_io (dtp))
373 internal_unit.rank = GFC_DESCRIPTOR_RANK (dtp->internal_unit_desc);
374 internal_unit.ls = (array_loop_spec *)
375 get_mem (internal_unit.rank * sizeof (array_loop_spec));
376 dtp->internal_unit_len *=
377 init_loop_spec (dtp->internal_unit_desc, internal_unit.ls);
380 internal_unit.s =
381 open_internal (dtp->internal_unit, dtp->internal_unit_len);
382 internal_unit.bytes_left = internal_unit.recl;
383 internal_unit.last_record=0;
384 internal_unit.maxrec=0;
385 internal_unit.current_record=0;
387 if (dtp->u.p.mode==WRITING && !is_array_io (dtp))
388 empty_internal_buffer (internal_unit.s);
390 /* Set flags for the internal unit */
392 internal_unit.flags.access = ACCESS_SEQUENTIAL;
393 internal_unit.flags.action = ACTION_READWRITE;
394 internal_unit.flags.form = FORM_FORMATTED;
395 internal_unit.flags.delim = DELIM_NONE;
396 internal_unit.flags.pad = PAD_YES;
398 return &internal_unit;
401 /* Has to be an external unit */
403 return find_unit_1 (dtp->common.unit, do_create);
407 /* is_internal_unit()-- Determine if the current unit is internal or not */
410 is_internal_unit (st_parameter_dt *dtp)
412 return dtp->u.p.current_unit == &internal_unit;
416 /* is_array_io ()-- Determine if the I/O is to/from an array */
419 is_array_io (st_parameter_dt *dtp)
421 return dtp->internal_unit_desc != NULL;
425 /*************************/
426 /* Initialize everything */
428 void
429 init_units (void)
431 gfc_unit *u;
432 unsigned int i;
434 #ifndef __GTHREAD_MUTEX_INIT
435 __GTHREAD_MUTEX_INIT_FUNCTION (&unit_lock);
436 #endif
438 #ifdef __GTHREAD_MUTEX_INIT
440 __gthread_mutex_t tmp = __GTHREAD_MUTEX_INIT;
441 internal_unit.lock = tmp;
443 #else
444 __GTHREAD_MUTEX_INIT_FUNCTION (&internal_unit.lock);
445 #endif
447 if (options.stdin_unit >= 0)
448 { /* STDIN */
449 u = insert_unit (options.stdin_unit);
450 u->s = input_stream ();
452 u->flags.action = ACTION_READ;
454 u->flags.access = ACCESS_SEQUENTIAL;
455 u->flags.form = FORM_FORMATTED;
456 u->flags.status = STATUS_OLD;
457 u->flags.blank = BLANK_NULL;
458 u->flags.pad = PAD_YES;
459 u->flags.position = POSITION_ASIS;
461 u->recl = options.default_recl;
462 u->endfile = NO_ENDFILE;
464 __gthread_mutex_unlock (&u->lock);
467 if (options.stdout_unit >= 0)
468 { /* STDOUT */
469 u = insert_unit (options.stdout_unit);
470 u->s = output_stream ();
472 u->flags.action = ACTION_WRITE;
474 u->flags.access = ACCESS_SEQUENTIAL;
475 u->flags.form = FORM_FORMATTED;
476 u->flags.status = STATUS_OLD;
477 u->flags.blank = BLANK_NULL;
478 u->flags.position = POSITION_ASIS;
480 u->recl = options.default_recl;
481 u->endfile = AT_ENDFILE;
483 __gthread_mutex_unlock (&u->lock);
486 if (options.stderr_unit >= 0)
487 { /* STDERR */
488 u = insert_unit (options.stderr_unit);
489 u->s = error_stream ();
491 u->flags.action = ACTION_WRITE;
493 u->flags.access = ACCESS_SEQUENTIAL;
494 u->flags.form = FORM_FORMATTED;
495 u->flags.status = STATUS_OLD;
496 u->flags.blank = BLANK_NULL;
497 u->flags.position = POSITION_ASIS;
499 u->recl = options.default_recl;
500 u->endfile = AT_ENDFILE;
502 __gthread_mutex_unlock (&u->lock);
505 /* Calculate the maximum file offset in a portable manner.
506 * max will be the largest signed number for the type gfc_offset.
508 * set a 1 in the LSB and keep a running sum, stopping at MSB-1 bit. */
510 max_offset = 0;
511 for (i = 0; i < sizeof (max_offset) * 8 - 1; i++)
512 max_offset = max_offset + ((gfc_offset) 1 << i);
516 static int
517 close_unit_1 (gfc_unit *u, int locked)
519 int i, rc;
521 rc = (u->s == NULL) ? 0 : sclose (u->s) == FAILURE;
523 u->closed = 1;
524 if (!locked)
525 __gthread_mutex_lock (&unit_lock);
527 for (i = 0; i < CACHE_SIZE; i++)
528 if (unit_cache[i] == u)
529 unit_cache[i] = NULL;
531 delete_unit (u);
533 if (u->file)
534 free_mem (u->file);
535 u->file = NULL;
536 u->file_len = 0;
538 if (!locked)
539 __gthread_mutex_unlock (&u->lock);
541 /* If there are any threads waiting in find_unit for this unit,
542 avoid freeing the memory, the last such thread will free it
543 instead. */
544 if (u->waiting == 0)
545 free_mem (u);
547 if (!locked)
548 __gthread_mutex_unlock (&unit_lock);
550 return rc;
553 void
554 unlock_unit (gfc_unit *u)
556 __gthread_mutex_unlock (&u->lock);
559 /* close_unit()-- Close a unit. The stream is closed, and any memory
560 * associated with the stream is freed. Returns nonzero on I/O error.
561 * Should be called with the u->lock locked. */
564 close_unit (gfc_unit *u)
566 return close_unit_1 (u, 0);
570 /* close_units()-- Delete units on completion. We just keep deleting
571 * the root of the treap until there is nothing left.
572 * Not sure what to do with locking here. Some other thread might be
573 * holding some unit's lock and perhaps hold it indefinitely
574 * (e.g. waiting for input from some pipe) and close_units shouldn't
575 * delay the program too much. */
577 void
578 close_units (void)
580 __gthread_mutex_lock (&unit_lock);
581 while (unit_root != NULL)
582 close_unit_1 (unit_root, 1);
583 __gthread_mutex_unlock (&unit_lock);