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)
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
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, 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA. */
35 #include "libgfortran.h"
39 /* Environment scanner. Examine the environment for controlling minor
40 * aspects of the program's execution. Our philosophy here that the
41 * environment should not prevent the program from running, so an
42 * environment variable with a messed-up value will be interpreted in
45 * Most of the environment is checked early in the startup sequence,
46 * but other variables are checked during execution of the user's
49 options_t options = { };
52 typedef struct variable
56 void (*init) (struct variable *);
57 void (*show) (struct variable *);
64 /* print_spaces()-- Print a particular number of spaces */
75 for (i = 0; i < n; i++)
84 /* var_source()-- Return a string that describes where the value of a
85 * variable comes from */
88 var_source (variable * v)
90 if (getenv (v->name) == NULL)
100 /* init_integer()-- Initialize an integer environment variable. */
103 init_integer (variable * v)
107 p = getenv (v->name);
112 if (!isdigit (*q) && (p != q || *q != '-'))
127 /* init_unsigned_integer()-- Initialize an integer environment variable
128 which has to be positive. */
131 init_unsigned_integer (variable * v)
135 p = getenv (v->name);
155 /* show_integer()-- Show an integer environment variable */
158 show_integer (variable * v)
160 st_printf ("%s %d\n", var_source (v), *v->var);
164 /* init_boolean()-- Initialize a boolean environment variable. We
165 * only look at the first letter of the variable. */
168 init_boolean (variable * v)
172 p = getenv (v->name);
176 if (*p == '1' || *p == 'Y' || *p == 'y')
182 if (*p == '0' || *p == 'N' || *p == 'n')
196 /* show_boolean()-- Show a boolean environment variable */
199 show_boolean (variable * v)
201 st_printf ("%s %s\n", var_source (v), *v->var ? "Yes" : "No");
205 /* init_mem()-- Initialize environment variables that have to do with
206 * how memory from an ALLOCATE statement is filled. A single flag
207 * enables filling and a second variable gives the value that is used
208 * to initialize the memory. */
211 init_mem (variable * v)
216 p = getenv (v->name);
218 options.allocate_init_flag = 0; /* The default */
223 if (strcasecmp (p, "NONE") == 0)
226 /* IEEE-754 Quiet Not-a-Number that will work for single and double
227 * precision. Look for the 'f95' mantissa in debug dumps. */
229 if (strcasecmp (p, "NaN") == 0)
231 options.allocate_init_flag = 1;
232 options.allocate_init_value = 0xfff80f95;
236 /* Interpret the string as a hexadecimal constant */
253 n = (n << 4) | (*p++ - offset);
256 options.allocate_init_flag = 1;
257 options.allocate_init_value = n;
262 show_mem (variable * v)
266 p = getenv (v->name);
268 st_printf ("%s ", var_source (v));
270 if (options.allocate_init_flag)
271 st_printf ("0x%x", options.allocate_init_value);
278 init_sep (variable * v)
283 p = getenv (v->name);
288 options.separator = p;
289 options.separator_len = strlen (p);
291 /* Make sure the separator is valid */
293 if (options.separator_len == 0)
316 options.separator = " ";
317 options.separator_len = 1;
322 show_sep (variable * v)
324 st_printf ("%s \"%s\"\n", var_source (v), options.separator);
329 init_string (variable * v)
334 show_string (variable * v)
338 p = getenv (v->name);
342 st_printf ("%s \"%s\"\n", var_source (v), p);
346 /* Structure for associating names and values. */
357 { FP_ROUND_NEAREST, FP_ROUND_UP, FP_ROUND_DOWN, FP_ROUND_ZERO };
359 static choice rounding[] = {
360 {"NEAREST", FP_ROUND_NEAREST},
362 {"DOWN", FP_ROUND_DOWN},
363 {"ZERO", FP_ROUND_ZERO},
367 static choice precision[] =
375 static choice signal_choices[] =
384 init_choice (variable * v, choice * c)
388 p = getenv (v->name);
393 if (strcasecmp (c->name, p) == 0)
411 show_choice (variable * v, choice * c)
413 st_printf ("%s ", var_source (v));
416 if (c->value == *v->var)
420 st_printf ("%s\n", c->name);
422 st_printf ("(Unknown)\n");
427 init_round (variable * v)
429 init_choice (v, rounding);
433 show_round (variable * v)
435 show_choice (v, rounding);
439 init_precision (variable * v)
441 init_choice (v, precision);
445 show_precision (variable * v)
447 show_choice (v, precision);
451 init_signal (variable * v)
453 init_choice (v, signal_choices);
457 show_signal (variable * v)
459 show_choice (v, signal_choices);
463 static variable variable_table[] = {
464 {"GFORTRAN_STDIN_UNIT", 5, &options.stdin_unit, init_integer, show_integer,
465 "Unit number that will be preconnected to standard input\n"
466 "(No preconnection if negative)"},
468 {"GFORTRAN_STDOUT_UNIT", 6, &options.stdout_unit, init_integer,
470 "Unit number that will be preconnected to standard output\n"
471 "(No preconnection if negative)"},
473 {"GFORTRAN_STDERR_UNIT", 0, &options.stderr_unit, init_integer,
475 "Unit number that will be preconnected to standard error\n"
476 "(No preconnection if negative)"},
478 {"GFORTRAN_USE_STDERR", 1, &options.use_stderr, init_boolean,
480 "Sends library output to standard error instead of standard output."},
482 {"GFORTRAN_TMPDIR", 0, NULL, init_string, show_string,
483 "Directory for scratch files. Overrides the TMP environment variable\n"
484 "If TMP is not set " DEFAULT_TEMPDIR " is used."},
486 {"GFORTRAN_UNBUFFERED_ALL", 0, &options.all_unbuffered, init_boolean,
488 "If TRUE, all output is unbuffered. This will slow down large writes "
489 "but can be\nuseful for forcing data to be displayed immediately."},
491 {"GFORTRAN_SHOW_LOCUS", 1, &options.locus, init_boolean, show_boolean,
492 "If TRUE, print filename and line number where runtime errors happen."},
494 {"GFORTRAN_OPTIONAL_PLUS", 0, &options.optional_plus, init_boolean, show_boolean,
495 "Print optional plus signs in numbers where permitted. Default FALSE."},
497 {"GFORTRAN_DEFAULT_RECL", DEFAULT_RECL, &options.default_recl,
498 init_integer, show_unsigned_integer,
499 "Default maximum record length for sequential files. Most useful for\n"
500 "adjusting line length of preconnected units. Default "
501 stringize (DEFAULT_RECL)},
503 {"GFORTRAN_LIST_SEPARATOR", 0, NULL, init_sep, show_sep,
504 "Separatator to use when writing list output. May contain any number of "
505 "spaces\nand at most one comma. Default is a single space."},
507 /* Memory related controls */
509 {"GFORTRAN_MEM_INIT", 0, NULL, init_mem, show_mem,
510 "How to initialize allocated memory. Default value is NONE for no "
511 "initialization\n(faster), NAN for a Not-a-Number with the mantissa "
512 "0x40f95 or a custom\nhexadecimal value"},
514 {"GFORTRAN_MEM_CHECK", 0, &options.mem_check, init_boolean, show_boolean,
515 "Whether memory still allocated will be reported when the program ends."},
517 /* Signal handling (Unix). */
519 {"GFORTRAN_SIGHUP", 0, &options.sighup, init_signal, show_signal,
520 "Whether the program will IGNORE or ABORT on SIGHUP."},
522 {"GFORTRAN_SIGINT", 0, &options.sigint, init_signal, show_signal,
523 "Whether the program will IGNORE or ABORT on SIGINT."},
525 /* Floating point control */
527 {"GFORTRAN_FPU_ROUND", 0, &options.fpu_round, init_round, show_round,
528 "Set floating point rounding. Values are NEAREST, UP, DOWN, ZERO."},
530 {"GFORTRAN_FPU_PRECISION", 0, &options.fpu_precision, init_precision,
532 "Precision of intermediate results. Values are 24, 53 and 64."},
534 {"GFORTRAN_FPU_INVALID", 1, &options.fpu_invalid, init_boolean,
536 "Raise a floating point exception on invalid FP operation."},
538 {"GFORTRAN_FPU_DENORMAL", 1, &options.fpu_denormal, init_boolean,
540 "Raise a floating point exception when denormal numbers are encountered."},
542 {"GFORTRAN_FPU_ZERO", 0, &options.fpu_zerodiv, init_boolean, show_boolean,
543 "Raise a floating point exception when dividing by zero."},
545 {"GFORTRAN_FPU_OVERFLOW", 0, &options.fpu_overflow, init_boolean,
547 "Raise a floating point exception on overflow."},
549 {"GFORTRAN_FPU_UNDERFLOW", 0, &options.fpu_underflow, init_boolean,
551 "Raise a floating point exception on underflow."},
553 {"GFORTRAN_FPU_PRECISION", 0, &options.fpu_precision_loss, init_boolean,
555 "Raise a floating point exception on precision loss."},
561 /* init_variables()-- Initialize most runtime variables from
562 * environment variables. */
565 init_variables (void)
569 for (v = variable_table; v->name; v++)
574 /* check_buffered()-- Given an unit number n, determine if an override
575 * for the stream exists. Returns zero for unbuffered, one for
576 * buffered or two for not set. */
579 check_buffered (int n)
585 if (options.all_unbuffered)
588 strcpy (name, "GFORTRAN_UNBUFFERED_");
589 strcat (name, gfc_itoa (n));
602 show_variables (void)
607 /* TODO: print version number. */
608 st_printf ("GNU Fortran 95 runtime library version "
611 st_printf ("Environment variables:\n");
612 st_printf ("----------------------\n");
614 for (v = variable_table; v->name; v++)
616 n = st_printf ("%s", v->name);
617 print_spaces (25 - n);
619 if (v->show == show_integer)
620 st_printf ("Integer ");
621 else if (v->show == show_boolean)
622 st_printf ("Boolean ");
624 st_printf ("String ");
627 st_printf ("%s\n\n", v->desc);
630 /* System error codes */
632 st_printf ("\nRuntime error codes:");
633 st_printf ("\n--------------------\n");
635 for (n = ERROR_FIRST + 1; n < ERROR_LAST; n++)
637 st_printf ("%d %s\n", n, translate_error (n));
639 st_printf (" %d %s\n", n, translate_error (n));
641 st_printf ("\nCommand line arguments:\n");
642 st_printf (" --help Print this list\n");
644 /* st_printf(" --resume <dropfile> Resume program execution from dropfile\n"); */