1 /* Copyright (C
) 2006, 2007, 2008, 2009, 2010 Free Software Foundation
, Inc.
3 This file is part of GCC.
5 GCC is free software
; you can redistribute it and
/or modify it under
6 the terms of the GNU General Public License as published by the Free
7 Software Foundation
; either version
3, or (at your option
) any later
10 GCC is distributed in the hope that it will be useful
, but WITHOUT ANY
11 WARRANTY
; without even the implied warranty of MERCHANTABILITY or
12 FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 You should have received a copy of the GNU General Public License
16 along with GCC
; see the file COPYING3. If not see
17 <http
://www.gnu.org
/licenses
/>.
*/
19 /* This file contains the definition of the named integer constants provided
20 by the Fortran
2003 ISO_FORTRAN_ENV intrinsic module.
*/
23 # define
NAMED_INTCST(a
,b
,c
,d
)
26 #ifndef NAMED_KINDARRAY
27 # define
NAMED_KINDARRAY(a
,b
,c
,d
)
30 #ifndef NAMED_FUNCTION
31 # define
NAMED_FUNCTION(a
,b
,c
,d
)
34 /* The arguments to NAMED_INTCST are
:
36 -- the symbol name in the module
, as seen by Fortran code
38 -- the standard that supports this type
*/
40 NAMED_INTCST (ISOFORTRANENV_FILE_ATOMIC_INT_KIND
, "atomic_int_kind", \
41 gfc_default_integer_kind
, GFC_STD_F2008
)
42 NAMED_INTCST (ISOFORTRANENV_FILE_ATOMIC_LOGICAL_KIND
, "atomic_logical_kind", \
43 gfc_default_logical_kind
, GFC_STD_F2008
)
44 NAMED_INTCST (ISOFORTRANENV_CHARACTER_STORAGE_SIZE
, "character_storage_size", \
45 gfc_character_storage_size
, GFC_STD_F2003
)
46 NAMED_INTCST (ISOFORTRANENV_ERROR_UNIT
, "error_unit", GFC_STDERR_UNIT_NUMBER
, \
48 NAMED_INTCST (ISOFORTRANENV_FILE_STORAGE_SIZE
, "file_storage_size", 8, \
50 NAMED_INTCST (ISOFORTRANENV_INPUT_UNIT
, "input_unit", GFC_STDIN_UNIT_NUMBER
, \
52 NAMED_INTCST (ISOFORTRANENV_INT8
, "int8", \
53 gfc_get_int_kind_from_width_isofortranenv (8), GFC_STD_F2008
)
54 NAMED_INTCST (ISOFORTRANENV_INT16
, "int16", \
55 gfc_get_int_kind_from_width_isofortranenv (16), GFC_STD_F2008
)
56 NAMED_INTCST (ISOFORTRANENV_INT32
, "int32", \
57 gfc_get_int_kind_from_width_isofortranenv (32), GFC_STD_F2008
)
58 NAMED_INTCST (ISOFORTRANENV_INT64
, "int64", \
59 gfc_get_int_kind_from_width_isofortranenv (64), GFC_STD_F2008
)
60 NAMED_INTCST (ISOFORTRANENV_IOSTAT_END
, "iostat_end", LIBERROR_END
, \
62 NAMED_INTCST (ISOFORTRANENV_IOSTAT_EOR
, "iostat_eor", LIBERROR_EOR
, \
64 NAMED_INTCST (ISOFORTRANENV_IOSTAT_INQUIRE_INTERNAL_UNIT
, \
65 "iostat_inquire_internal_unit", LIBERROR_INQUIRE_INTERNAL_UNIT
, \
67 NAMED_INTCST (ISOFORTRANENV_NUMERIC_STORAGE_SIZE
, "numeric_storage_size", \
68 gfc_numeric_storage_size
, GFC_STD_F2003
)
69 NAMED_INTCST (ISOFORTRANENV_OUTPUT_UNIT
, "output_unit", GFC_STDOUT_UNIT_NUMBER
, \
71 NAMED_INTCST (ISOFORTRANENV_REAL32
, "real32", \
72 gfc_get_real_kind_from_width_isofortranenv (32), GFC_STD_F2008
)
73 NAMED_INTCST (ISOFORTRANENV_REAL64
, "real64", \
74 gfc_get_real_kind_from_width_isofortranenv (64), GFC_STD_F2008
)
75 NAMED_INTCST (ISOFORTRANENV_REAL128
, "real128", \
76 gfc_get_real_kind_from_width_isofortranenv (128), GFC_STD_F2008
)
77 NAMED_INTCST (ISOFORTRANENV_FILE_STAT_LOCKED
, "stat_locked", \
78 GFC_STAT_LOCKED
, GFC_STD_F2008
)
79 NAMED_INTCST (ISOFORTRANENV_FILE_STAT_LOCKED_OTHER_IMAGE
, \
80 "stat_locked_other_image", \
81 GFC_STAT_LOCKED_OTHER_IMAGE
, GFC_STD_F2008
)
82 NAMED_INTCST (ISOFORTRANENV_FILE_STAT_STOPPED_IMAGE
, "stat_stopped_image", \
83 GFC_STAT_STOPPED_IMAGE
, GFC_STD_F2008
)
84 NAMED_INTCST (ISOFORTRANENV_FILE_STAT_UNLOCKED
, "stat_unlocked", \
85 GFC_STAT_UNLOCKED
, GFC_STD_F2008
)
88 /* The arguments to NAMED_KINDARRAY are
:
90 -- the symbol name in the module
, as seen by Fortran code
91 -- the gfortran variable containing the information
92 -- the Fortran standard
*/
94 NAMED_KINDARRAY (ISOFORTRAN_CHARACTER_KINDS
, "character_kinds", \
95 gfc_character_kinds
, GFC_STD_F2008
)
96 NAMED_KINDARRAY (ISOFORTRAN_INTEGER_KINDS
, "integer_kinds", \
97 gfc_integer_kinds
, GFC_STD_F2008
)
98 NAMED_KINDARRAY (ISOFORTRAN_LOGICAL_KINDS
, "logical_kinds", \
99 gfc_logical_kinds
, GFC_STD_F2008
)
100 NAMED_KINDARRAY (ISOFORTRAN_REAL_KINDS
, "real_kinds", \
101 gfc_real_kinds
, GFC_STD_F2008
)
103 /* The arguments to NAMED_FUNCTIONS are
:
105 -- the symbol name in the module
, as seen by Fortran code
106 -- the Fortran standard
*/
108 NAMED_FUNCTION (ISOFORTRAN_COMPILER_OPTIONS
, "compiler_options", \
109 GFC_ISYM_COMPILER_OPTIONS
, GFC_STD_F2008
)
110 NAMED_FUNCTION (ISOFORTRAN_COMPILER_VERSION
, "compiler_version", \
111 GFC_ISYM_COMPILER_VERSION
, GFC_STD_F2008
)
115 #undef NAMED_KINDARRAY
116 #undef NAMED_FUNCTION