1 /* Miscellaneous stuff that doesn't fit anywhere else.
2 Copyright (C) 2000-2022 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
25 #include "spellcheck.h"
29 /* Initialize a typespec to unknown. */
32 gfc_clear_ts (gfc_typespec
*ts
)
34 ts
->type
= BT_UNKNOWN
;
39 /* flag that says if the type is C interoperable */
41 /* says what f90 type the C kind interops with */
42 ts
->f90_type
= BT_UNKNOWN
;
43 /* flag that says whether it's from iso_c_binding or not */
49 /* Open a file for reading. */
52 gfc_open_file (const char *name
)
57 return fopen (name
, "r");
61 /* Return a string for each type. */
64 gfc_basic_typename (bt type
)
113 gfc_internal_error ("gfc_basic_typename(): Undefined type");
120 /* Return a string describing the type and kind of a typespec. Because
121 we return alternating buffers, this subroutine can appear twice in
122 the argument list of a single statement. */
125 gfc_typename (gfc_typespec
*ts
, bool for_hash
)
127 /* Need to add sufficient padding for "TYPE()" + '\0', "UNION()" + '\0',
128 or "CLASS()" + '\0'. */
129 static char buffer1
[GFC_MAX_SYMBOL_LEN
+ 8];
130 static char buffer2
[GFC_MAX_SYMBOL_LEN
+ 8];
133 gfc_charlen_t length
= 0;
135 buffer
= flag
? buffer1
: buffer2
;
141 sprintf (buffer
, "INTEGER(%d)", ts
->kind
);
144 sprintf (buffer
, "REAL(%d)", ts
->kind
);
147 sprintf (buffer
, "COMPLEX(%d)", ts
->kind
);
150 sprintf (buffer
, "LOGICAL(%d)", ts
->kind
);
155 sprintf (buffer
, "CHARACTER(%d)", ts
->kind
);
159 if (ts
->u
.cl
&& ts
->u
.cl
->length
)
160 length
= gfc_mpz_get_hwi (ts
->u
.cl
->length
->value
.integer
);
161 if (ts
->kind
== gfc_default_character_kind
)
162 sprintf (buffer
, "CHARACTER(" HOST_WIDE_INT_PRINT_DEC
")", length
);
164 sprintf (buffer
, "CHARACTER(" HOST_WIDE_INT_PRINT_DEC
",%d)", length
,
168 sprintf (buffer
, "HOLLERITH");
171 sprintf (buffer
, "UNION(%s)", ts
->u
.derived
->name
);
174 if (ts
->u
.derived
== NULL
)
176 sprintf (buffer
, "invalid type");
179 sprintf (buffer
, "TYPE(%s)", ts
->u
.derived
->name
);
182 if (!ts
->u
.derived
|| !ts
->u
.derived
->components
183 || !ts
->u
.derived
->components
->ts
.u
.derived
)
185 sprintf (buffer
, "invalid class");
188 if (ts
->u
.derived
->components
->ts
.u
.derived
->attr
.unlimited_polymorphic
)
189 sprintf (buffer
, "CLASS(*)");
191 sprintf (buffer
, "CLASS(%s)",
192 ts
->u
.derived
->components
->ts
.u
.derived
->name
);
195 sprintf (buffer
, "TYPE(*)");
198 strcpy (buffer
, "PROCEDURE");
201 strcpy (buffer
, "BOZ");
204 strcpy (buffer
, "UNKNOWN");
207 gfc_internal_error ("gfc_typename(): Undefined type");
215 gfc_typename (gfc_expr
*ex
)
217 /* 34 character buffer: 14 for "CHARACTER(n,4)", n can be upto 20 characters,
218 add 19 for the extra width and 1 for '\0' */
219 static char buffer1
[34];
220 static char buffer2
[34];
221 static bool flag
= false;
223 gfc_charlen_t length
;
224 buffer
= flag
? buffer1
: buffer2
;
227 if (ex
->ts
.type
== BT_CHARACTER
)
229 if (ex
->expr_type
== EXPR_CONSTANT
)
230 length
= ex
->value
.character
.length
;
231 else if (ex
->ts
.deferred
)
233 if (ex
->ts
.kind
== gfc_default_character_kind
)
234 return "CHARACTER(:)";
235 sprintf (buffer
, "CHARACTER(:,%d)", ex
->ts
.kind
);
238 else if (ex
->ts
.u
.cl
&& ex
->ts
.u
.cl
->length
== NULL
)
240 if (ex
->ts
.kind
== gfc_default_character_kind
)
241 return "CHARACTER(*)";
242 sprintf (buffer
, "CHARACTER(*,%d)", ex
->ts
.kind
);
245 else if (ex
->ts
.u
.cl
== NULL
246 || ex
->ts
.u
.cl
->length
->expr_type
!= EXPR_CONSTANT
)
248 if (ex
->ts
.kind
== gfc_default_character_kind
)
250 sprintf (buffer
, "CHARACTER(KIND=%d)", ex
->ts
.kind
);
254 length
= gfc_mpz_get_hwi (ex
->ts
.u
.cl
->length
->value
.integer
);
255 if (ex
->ts
.kind
== gfc_default_character_kind
)
256 sprintf (buffer
, "CHARACTER(" HOST_WIDE_INT_PRINT_DEC
")", length
);
258 sprintf (buffer
, "CHARACTER(" HOST_WIDE_INT_PRINT_DEC
",%d)", length
,
262 return gfc_typename(&ex
->ts
);
265 /* The type of a dummy variable can also be CHARACTER(*). */
268 gfc_dummy_typename (gfc_typespec
*ts
)
270 static char buffer1
[15]; /* 15 for "CHARACTER(*,4)" + '\0'. */
271 static char buffer2
[15];
272 static bool flag
= false;
275 buffer
= flag
? buffer1
: buffer2
;
278 if (ts
->type
== BT_CHARACTER
)
280 bool has_length
= false;
282 has_length
= ts
->u
.cl
->length
!= NULL
;
285 if (ts
->kind
== gfc_default_character_kind
)
286 sprintf(buffer
, "CHARACTER(*)");
287 else if (ts
->kind
>= 0 && ts
->kind
< 10)
288 sprintf(buffer
, "CHARACTER(*,%d)", ts
->kind
);
290 sprintf(buffer
, "CHARACTER(*,?)");
294 return gfc_typename(ts
);
298 /* Given an mstring array and a code, locate the code in the table,
299 returning a pointer to the string. */
302 gfc_code2string (const mstring
*m
, int code
)
304 while (m
->string
!= NULL
)
311 gfc_internal_error ("gfc_code2string(): Bad code");
316 /* Given an mstring array and a string, returns the value of the tag
317 field. Returns the final tag if no matches to the string are found. */
320 gfc_string2code (const mstring
*m
, const char *string
)
322 for (; m
->string
!= NULL
; m
++)
323 if (strcmp (m
->string
, string
) == 0)
330 /* Convert an intent code to a string. */
331 /* TODO: move to gfortran.h as define. */
334 gfc_intent_string (sym_intent i
)
336 return gfc_code2string (intents
, i
);
340 /***************** Initialization functions ****************/
342 /* Top level initialization. */
348 gfc_scanner_init_1 ();
350 gfc_intrinsic_init_1 ();
354 /* Per program unit initialization. */
359 gfc_symbol_init_2 ();
360 gfc_module_init_2 ();
364 /******************* Destructor functions ******************/
366 /* Call all of the top level destructors. */
371 gfc_scanner_done_1 ();
372 gfc_intrinsic_done_1 ();
377 /* Per program unit destructors. */
382 gfc_symbol_done_2 ();
383 gfc_module_done_2 ();
387 /* Returns the index into the table of C interoperable kinds where the
388 kind with the given name (c_kind_name) was found. */
391 get_c_kind(const char *c_kind_name
, CInteropKind_t kinds_table
[])
395 for (index
= 0; index
< ISOCBINDING_LAST
; index
++)
396 if (strcmp (kinds_table
[index
].name
, c_kind_name
) == 0)
399 return ISOCBINDING_INVALID
;
403 /* For a given name TYPO, determine the best candidate from CANDIDATES
404 using get_edit_distance. Frees CANDIDATES before returning. */
407 gfc_closest_fuzzy_match (const char *typo
, char **candidates
)
409 /* Determine closest match. */
410 const char *best
= NULL
;
411 char **cand
= candidates
;
412 edit_distance_t best_distance
= MAX_EDIT_DISTANCE
;
413 const size_t tl
= strlen (typo
);
415 while (cand
&& *cand
)
417 edit_distance_t dist
= get_edit_distance (typo
, tl
, *cand
,
419 if (dist
< best_distance
)
421 best_distance
= dist
;
426 /* If more than half of the letters were misspelled, the suggestion is
427 likely to be meaningless. */
430 unsigned int cutoff
= MAX (tl
, strlen (best
));
432 if (best_distance
> cutoff
)
434 XDELETEVEC (candidates
);
437 XDELETEVEC (candidates
);
442 /* Convert between GMP integers (mpz_t) and HOST_WIDE_INT. */
445 gfc_mpz_get_hwi (mpz_t op
)
447 /* Using long_long_integer_type_node as that is the integer type
448 node that closest matches HOST_WIDE_INT; both are guaranteed to
449 be at least 64 bits. */
450 const wide_int w
= wi::from_mpz (long_long_integer_type_node
, op
, true);
456 gfc_mpz_set_hwi (mpz_t rop
, const HOST_WIDE_INT op
)
458 const wide_int w
= wi::shwi (op
, HOST_BITS_PER_WIDE_INT
);
459 wi::to_mpz (w
, rop
, SIGNED
);