1 /* Miscellaneous stuff that doesn't fit anywhere else.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005
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 2, or (at your option) any later
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
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
29 /* Get a block of memory. Many callers assume that the memory we
42 gfc_fatal_error ("Out of memory-- malloc() failed");
48 /* gfortran.h defines free to something that triggers a syntax error,
49 but we need free() here. */
66 /* Get terminal width */
69 gfc_terminal_width(void)
75 /* Initialize a typespec to unknown. */
78 gfc_clear_ts (gfc_typespec
* ts
)
81 ts
->type
= BT_UNKNOWN
;
88 /* Open a file for reading. */
91 gfc_open_file (const char *name
)
98 if (stat (name
, &statbuf
) < 0)
101 if (!S_ISREG (statbuf
.st_mode
))
104 return fopen (name
, "r");
108 /* Return a string for each type. */
111 gfc_basic_typename (bt type
)
145 gfc_internal_error ("gfc_basic_typename(): Undefined type");
152 /* Return a string describing the type and kind of a typespec. Because
153 we return alternating buffers, this subroutine can appear twice in
154 the argument list of a single statement. */
157 gfc_typename (gfc_typespec
* ts
)
159 static char buffer1
[60], buffer2
[60];
163 buffer
= flag
? buffer1
: buffer2
;
169 sprintf (buffer
, "INTEGER(%d)", ts
->kind
);
172 sprintf (buffer
, "REAL(%d)", ts
->kind
);
175 sprintf (buffer
, "COMPLEX(%d)", ts
->kind
);
178 sprintf (buffer
, "LOGICAL(%d)", ts
->kind
);
181 sprintf (buffer
, "CHARACTER(%d)", ts
->kind
);
184 sprintf (buffer
, "HOLLERITH");
187 sprintf (buffer
, "TYPE(%s)", ts
->derived
->name
);
190 strcpy (buffer
, "PROCEDURE");
193 strcpy (buffer
, "UNKNOWN");
196 gfc_internal_error ("gfc_typespec(): Undefined type");
203 /* Given an mstring array and a code, locate the code in the table,
204 returning a pointer to the string. */
207 gfc_code2string (const mstring
* m
, int code
)
210 while (m
->string
!= NULL
)
217 gfc_internal_error ("gfc_code2string(): Bad code");
222 /* Given an mstring array and a string, returns the value of the tag
223 field. Returns the final tag if no matches to the string are
227 gfc_string2code (const mstring
* m
, const char *string
)
230 for (; m
->string
!= NULL
; m
++)
231 if (strcmp (m
->string
, string
) == 0)
238 /* Convert an intent code to a string. */
239 /* TODO: move to gfortran.h as define. */
241 gfc_intent_string (sym_intent i
)
244 return gfc_code2string (intents
, i
);
248 /***************** Initialization functions ****************/
250 /* Top level initialization. */
256 gfc_scanner_init_1 ();
258 gfc_intrinsic_init_1 ();
259 gfc_simplify_init_1 ();
263 /* Per program unit initialization. */
269 gfc_symbol_init_2 ();
270 gfc_module_init_2 ();
274 /******************* Destructor functions ******************/
276 /* Call all of the top level destructors. */
281 gfc_scanner_done_1 ();
282 gfc_intrinsic_done_1 ();
287 /* Per program unit destructors. */
293 gfc_symbol_done_2 ();
294 gfc_module_done_2 ();