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, 59 Temple Place - Suite 330, 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 /* Given a word, return the correct article. */
111 gfc_article (const char *word
)
138 /* Return a string for each type. */
141 gfc_basic_typename (bt type
)
172 gfc_internal_error ("gfc_basic_typename(): Undefined type");
179 /* Return a string describing the type and kind of a typespec. Because
180 we return alternating buffers, this subroutine can appear twice in
181 the argument list of a single statement. */
184 gfc_typename (gfc_typespec
* ts
)
186 static char buffer1
[60], buffer2
[60];
190 buffer
= flag
? buffer1
: buffer2
;
196 sprintf (buffer
, "INTEGER(%d)", ts
->kind
);
199 sprintf (buffer
, "REAL(%d)", ts
->kind
);
202 sprintf (buffer
, "COMPLEX(%d)", ts
->kind
);
205 sprintf (buffer
, "LOGICAL(%d)", ts
->kind
);
208 sprintf (buffer
, "CHARACTER(%d)", ts
->kind
);
211 sprintf (buffer
, "TYPE(%s)", ts
->derived
->name
);
214 strcpy (buffer
, "PROCEDURE");
217 strcpy (buffer
, "UNKNOWN");
220 gfc_internal_error ("gfc_typespec(): Undefined type");
227 /* Given an mstring array and a code, locate the code in the table,
228 returning a pointer to the string. */
231 gfc_code2string (const mstring
* m
, int code
)
234 while (m
->string
!= NULL
)
241 gfc_internal_error ("gfc_code2string(): Bad code");
246 /* Given an mstring array and a string, returns the value of the tag
247 field. Returns the final tag if no matches to the string are
251 gfc_string2code (const mstring
* m
, const char *string
)
254 for (; m
->string
!= NULL
; m
++)
255 if (strcmp (m
->string
, string
) == 0)
262 /* Convert an intent code to a string. */
263 /* TODO: move to gfortran.h as define. */
265 gfc_intent_string (sym_intent i
)
268 return gfc_code2string (intents
, i
);
272 /***************** Initialization functions ****************/
274 /* Top level initialization. */
280 gfc_scanner_init_1 ();
282 gfc_intrinsic_init_1 ();
283 gfc_simplify_init_1 ();
287 /* Per program unit initialization. */
293 gfc_symbol_init_2 ();
294 gfc_module_init_2 ();
298 /******************* Destructor functions ******************/
300 /* Call all of the top level destructors. */
305 gfc_scanner_done_1 ();
306 gfc_intrinsic_done_1 ();
311 /* Per program unit destructors. */
317 gfc_symbol_done_2 ();
318 gfc_module_done_2 ();