1 /* Miscellaneous stuff that doesn't fit anywhere else.
2 Copyright (C) 2000-2017 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"
28 /* Initialize a typespec to unknown. */
31 gfc_clear_ts (gfc_typespec
*ts
)
33 ts
->type
= BT_UNKNOWN
;
38 /* flag that says if the type is C interoperable */
40 /* says what f90 type the C kind interops with */
41 ts
->f90_type
= BT_UNKNOWN
;
42 /* flag that says whether it's from iso_c_binding or not */
48 /* Open a file for reading. */
51 gfc_open_file (const char *name
)
56 return fopen (name
, "r");
60 /* Return a string for each type. */
63 gfc_basic_typename (bt type
)
109 gfc_internal_error ("gfc_basic_typename(): Undefined type");
116 /* Return a string describing the type and kind of a typespec. Because
117 we return alternating buffers, this subroutine can appear twice in
118 the argument list of a single statement. */
121 gfc_typename (gfc_typespec
*ts
)
123 static char buffer1
[GFC_MAX_SYMBOL_LEN
+ 7]; /* 7 for "TYPE()" + '\0'. */
124 static char buffer2
[GFC_MAX_SYMBOL_LEN
+ 7];
128 buffer
= flag
? buffer1
: buffer2
;
134 sprintf (buffer
, "INTEGER(%d)", ts
->kind
);
137 sprintf (buffer
, "REAL(%d)", ts
->kind
);
140 sprintf (buffer
, "COMPLEX(%d)", ts
->kind
);
143 sprintf (buffer
, "LOGICAL(%d)", ts
->kind
);
146 sprintf (buffer
, "CHARACTER(%d)", ts
->kind
);
149 sprintf (buffer
, "HOLLERITH");
152 sprintf (buffer
, "UNION(%s)", ts
->u
.derived
->name
);
155 sprintf (buffer
, "TYPE(%s)", ts
->u
.derived
->name
);
158 ts
= &ts
->u
.derived
->components
->ts
;
159 if (ts
->u
.derived
->attr
.unlimited_polymorphic
)
160 sprintf (buffer
, "CLASS(*)");
162 sprintf (buffer
, "CLASS(%s)", ts
->u
.derived
->name
);
165 sprintf (buffer
, "TYPE(*)");
168 strcpy (buffer
, "PROCEDURE");
171 strcpy (buffer
, "UNKNOWN");
174 gfc_internal_error ("gfc_typename(): Undefined type");
181 /* Given an mstring array and a code, locate the code in the table,
182 returning a pointer to the string. */
185 gfc_code2string (const mstring
*m
, int code
)
187 while (m
->string
!= NULL
)
194 gfc_internal_error ("gfc_code2string(): Bad code");
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)
213 /* Convert an intent code to a string. */
214 /* TODO: move to gfortran.h as define. */
217 gfc_intent_string (sym_intent i
)
219 return gfc_code2string (intents
, i
);
223 /***************** Initialization functions ****************/
225 /* Top level initialization. */
231 gfc_scanner_init_1 ();
233 gfc_intrinsic_init_1 ();
237 /* Per program unit initialization. */
242 gfc_symbol_init_2 ();
243 gfc_module_init_2 ();
247 /******************* Destructor functions ******************/
249 /* Call all of the top level destructors. */
254 gfc_scanner_done_1 ();
255 gfc_intrinsic_done_1 ();
260 /* Per program unit destructors. */
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
[])
278 for (index
= 0; index
< ISOCBINDING_LAST
; index
++)
279 if (strcmp (kinds_table
[index
].name
, c_kind_name
) == 0)
282 return ISOCBINDING_INVALID
;
286 /* For a given name TYPO, determine the best candidate from CANDIDATES
287 perusing Levenshtein distance. Frees CANDIDATES before returning. */
290 gfc_closest_fuzzy_match (const char *typo
, char **candidates
)
292 /* Determine closest match. */
293 const char *best
= NULL
;
294 char **cand
= candidates
;
295 edit_distance_t best_distance
= MAX_EDIT_DISTANCE
;
296 const size_t tl
= strlen (typo
);
298 while (cand
&& *cand
)
300 edit_distance_t dist
= levenshtein_distance (typo
, tl
, *cand
,
302 if (dist
< best_distance
)
304 best_distance
= dist
;
309 /* If more than half of the letters were misspelled, the suggestion is
310 likely to be meaningless. */
313 unsigned int cutoff
= MAX (tl
, strlen (best
)) / 2;
315 if (best_distance
> cutoff
)
317 XDELETEVEC (candidates
);
320 XDELETEVEC (candidates
);