* config/rs6000/rs6000.c (rs6000_option_override_internal): Do not
[official-gcc.git] / gcc / fortran / misc.c
blob60c3cf1ddd3d8d49cbf732aec48c444eb904c0be
1 /* Miscellaneous stuff that doesn't fit anywhere else.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011
3 Free Software Foundation, Inc.
4 Contributed by Andy Vaught
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "gfortran.h"
28 /* Get terminal width. */
30 int
31 gfc_terminal_width (void)
33 return 80;
37 /* Initialize a typespec to unknown. */
39 void
40 gfc_clear_ts (gfc_typespec *ts)
42 ts->type = BT_UNKNOWN;
43 ts->u.derived = NULL;
44 ts->kind = 0;
45 ts->u.cl = NULL;
46 ts->interface = NULL;
47 /* flag that says if the type is C interoperable */
48 ts->is_c_interop = 0;
49 /* says what f90 type the C kind interops with */
50 ts->f90_type = BT_UNKNOWN;
51 /* flag that says whether it's from iso_c_binding or not */
52 ts->is_iso_c = 0;
53 ts->deferred = false;
57 /* Open a file for reading. */
59 FILE *
60 gfc_open_file (const char *name)
62 if (!*name)
63 return stdin;
65 return fopen (name, "r");
69 /* Return a string for each type. */
71 const char *
72 gfc_basic_typename (bt type)
74 const char *p;
76 switch (type)
78 case BT_INTEGER:
79 p = "INTEGER";
80 break;
81 case BT_REAL:
82 p = "REAL";
83 break;
84 case BT_COMPLEX:
85 p = "COMPLEX";
86 break;
87 case BT_LOGICAL:
88 p = "LOGICAL";
89 break;
90 case BT_CHARACTER:
91 p = "CHARACTER";
92 break;
93 case BT_HOLLERITH:
94 p = "HOLLERITH";
95 break;
96 case BT_DERIVED:
97 p = "DERIVED";
98 break;
99 case BT_CLASS:
100 p = "CLASS";
101 break;
102 case BT_PROCEDURE:
103 p = "PROCEDURE";
104 break;
105 case BT_VOID:
106 p = "VOID";
107 break;
108 case BT_UNKNOWN:
109 p = "UNKNOWN";
110 break;
111 case BT_ASSUMED:
112 p = "TYPE(*)";
113 break;
114 default:
115 gfc_internal_error ("gfc_basic_typename(): Undefined type");
118 return p;
122 /* Return a string describing the type and kind of a typespec. Because
123 we return alternating buffers, this subroutine can appear twice in
124 the argument list of a single statement. */
126 const char *
127 gfc_typename (gfc_typespec *ts)
129 static char buffer1[GFC_MAX_SYMBOL_LEN + 7]; /* 7 for "TYPE()" + '\0'. */
130 static char buffer2[GFC_MAX_SYMBOL_LEN + 7];
131 static int flag = 0;
132 char *buffer;
134 buffer = flag ? buffer1 : buffer2;
135 flag = !flag;
137 switch (ts->type)
139 case BT_INTEGER:
140 sprintf (buffer, "INTEGER(%d)", ts->kind);
141 break;
142 case BT_REAL:
143 sprintf (buffer, "REAL(%d)", ts->kind);
144 break;
145 case BT_COMPLEX:
146 sprintf (buffer, "COMPLEX(%d)", ts->kind);
147 break;
148 case BT_LOGICAL:
149 sprintf (buffer, "LOGICAL(%d)", ts->kind);
150 break;
151 case BT_CHARACTER:
152 sprintf (buffer, "CHARACTER(%d)", ts->kind);
153 break;
154 case BT_HOLLERITH:
155 sprintf (buffer, "HOLLERITH");
156 break;
157 case BT_DERIVED:
158 sprintf (buffer, "TYPE(%s)", ts->u.derived->name);
159 break;
160 case BT_CLASS:
161 sprintf (buffer, "CLASS(%s)",
162 ts->u.derived->components->ts.u.derived->name);
163 break;
164 case BT_ASSUMED:
165 sprintf (buffer, "TYPE(*)");
166 break;
167 case BT_PROCEDURE:
168 strcpy (buffer, "PROCEDURE");
169 break;
170 case BT_UNKNOWN:
171 strcpy (buffer, "UNKNOWN");
172 break;
173 default:
174 gfc_internal_error ("gfc_typename(): Undefined type");
177 return buffer;
181 /* Given an mstring array and a code, locate the code in the table,
182 returning a pointer to the string. */
184 const char *
185 gfc_code2string (const mstring *m, int code)
187 while (m->string != NULL)
189 if (m->tag == code)
190 return m->string;
191 m++;
194 gfc_internal_error ("gfc_code2string(): Bad code");
195 /* Not reached */
199 /* Given an mstring array and a string, returns the value of the tag
200 field. Returns the final tag if no matches to the string are found. */
203 gfc_string2code (const mstring *m, const char *string)
205 for (; m->string != NULL; m++)
206 if (strcmp (m->string, string) == 0)
207 return m->tag;
209 return m->tag;
213 /* Convert an intent code to a string. */
214 /* TODO: move to gfortran.h as define. */
216 const char *
217 gfc_intent_string (sym_intent i)
219 return gfc_code2string (intents, i);
223 /***************** Initialization functions ****************/
225 /* Top level initialization. */
227 void
228 gfc_init_1 (void)
230 gfc_error_init_1 ();
231 gfc_scanner_init_1 ();
232 gfc_arith_init_1 ();
233 gfc_intrinsic_init_1 ();
237 /* Per program unit initialization. */
239 void
240 gfc_init_2 (void)
242 gfc_symbol_init_2 ();
243 gfc_module_init_2 ();
247 /******************* Destructor functions ******************/
249 /* Call all of the top level destructors. */
251 void
252 gfc_done_1 (void)
254 gfc_scanner_done_1 ();
255 gfc_intrinsic_done_1 ();
256 gfc_arith_done_1 ();
260 /* Per program unit destructors. */
262 void
263 gfc_done_2 (void)
265 gfc_symbol_done_2 ();
266 gfc_module_done_2 ();
270 /* Returns the index into the table of C interoperable kinds where the
271 kind with the given name (c_kind_name) was found. */
274 get_c_kind(const char *c_kind_name, CInteropKind_t kinds_table[])
276 int index = 0;
278 for (index = 0; index < ISOCBINDING_LAST; index++)
279 if (strcmp (kinds_table[index].name, c_kind_name) == 0)
280 return index;
282 return ISOCBINDING_INVALID;