Branch data Line data Source code
1 : : /* Declaration statement matcher
2 : : Copyright (C) 2002-2025 Free Software Foundation, Inc.
3 : : Contributed by Andy Vaught
4 : :
5 : : This file is part of GCC.
6 : :
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
10 : : version.
11 : :
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
15 : : for more details.
16 : :
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/>. */
20 : :
21 : : #include "config.h"
22 : : #include "system.h"
23 : : #include "coretypes.h"
24 : : #include "options.h"
25 : : #include "tree.h"
26 : : #include "gfortran.h"
27 : : #include "stringpool.h"
28 : : #include "match.h"
29 : : #include "parse.h"
30 : : #include "constructor.h"
31 : : #include "target.h"
32 : :
33 : : /* Macros to access allocate memory for gfc_data_variable,
34 : : gfc_data_value and gfc_data. */
35 : : #define gfc_get_data_variable() XCNEW (gfc_data_variable)
36 : : #define gfc_get_data_value() XCNEW (gfc_data_value)
37 : : #define gfc_get_data() XCNEW (gfc_data)
38 : :
39 : :
40 : : static bool set_binding_label (const char **, const char *, int);
41 : :
42 : :
43 : : /* This flag is set if an old-style length selector is matched
44 : : during a type-declaration statement. */
45 : :
46 : : static int old_char_selector;
47 : :
48 : : /* When variables acquire types and attributes from a declaration
49 : : statement, they get them from the following static variables. The
50 : : first part of a declaration sets these variables and the second
51 : : part copies these into symbol structures. */
52 : :
53 : : static gfc_typespec current_ts;
54 : :
55 : : static symbol_attribute current_attr;
56 : : static gfc_array_spec *current_as;
57 : : static int colon_seen;
58 : : static int attr_seen;
59 : :
60 : : /* The current binding label (if any). */
61 : : static const char* curr_binding_label;
62 : : /* Need to know how many identifiers are on the current data declaration
63 : : line in case we're given the BIND(C) attribute with a NAME= specifier. */
64 : : static int num_idents_on_line;
65 : : /* Need to know if a NAME= specifier was found during gfc_match_bind_c so we
66 : : can supply a name if the curr_binding_label is nil and NAME= was not. */
67 : : static int has_name_equals = 0;
68 : :
69 : : /* Initializer of the previous enumerator. */
70 : :
71 : : static gfc_expr *last_initializer;
72 : :
73 : : /* History of all the enumerators is maintained, so that
74 : : kind values of all the enumerators could be updated depending
75 : : upon the maximum initialized value. */
76 : :
77 : : typedef struct enumerator_history
78 : : {
79 : : gfc_symbol *sym;
80 : : gfc_expr *initializer;
81 : : struct enumerator_history *next;
82 : : }
83 : : enumerator_history;
84 : :
85 : : /* Header of enum history chain. */
86 : :
87 : : static enumerator_history *enum_history = NULL;
88 : :
89 : : /* Pointer of enum history node containing largest initializer. */
90 : :
91 : : static enumerator_history *max_enum = NULL;
92 : :
93 : : /* gfc_new_block points to the symbol of a newly matched block. */
94 : :
95 : : gfc_symbol *gfc_new_block;
96 : :
97 : : bool gfc_matching_function;
98 : :
99 : : /* Set upon parsing a !GCC$ unroll n directive for use in the next loop. */
100 : : int directive_unroll = -1;
101 : :
102 : : /* Set upon parsing supported !GCC$ pragmas for use in the next loop. */
103 : : bool directive_ivdep = false;
104 : : bool directive_vector = false;
105 : : bool directive_novector = false;
106 : :
107 : : /* Map of middle-end built-ins that should be vectorized. */
108 : : hash_map<nofree_string_hash, int> *gfc_vectorized_builtins;
109 : :
110 : : /* If a kind expression of a component of a parameterized derived type is
111 : : parameterized, temporarily store the expression here. */
112 : : static gfc_expr *saved_kind_expr = NULL;
113 : :
114 : : /* Used to store the parameter list arising in a PDT declaration and
115 : : in the typespec of a PDT variable or component. */
116 : : static gfc_actual_arglist *decl_type_param_list;
117 : : static gfc_actual_arglist *type_param_spec_list;
118 : :
119 : : /********************* DATA statement subroutines *********************/
120 : :
121 : : static bool in_match_data = false;
122 : :
123 : : bool
124 : 7936 : gfc_in_match_data (void)
125 : : {
126 : 7936 : return in_match_data;
127 : : }
128 : :
129 : : static void
130 : 5008 : set_in_match_data (bool set_value)
131 : : {
132 : 5008 : in_match_data = set_value;
133 : 2504 : }
134 : :
135 : : /* Free a gfc_data_variable structure and everything beneath it. */
136 : :
137 : : static void
138 : 5850 : free_variable (gfc_data_variable *p)
139 : : {
140 : 5850 : gfc_data_variable *q;
141 : :
142 : 9042 : for (; p; p = q)
143 : : {
144 : 3192 : q = p->next;
145 : 3192 : gfc_free_expr (p->expr);
146 : 3192 : gfc_free_iterator (&p->iter, 0);
147 : 3192 : free_variable (p->list);
148 : 3192 : free (p);
149 : : }
150 : 5850 : }
151 : :
152 : :
153 : : /* Free a gfc_data_value structure and everything beneath it. */
154 : :
155 : : static void
156 : 2658 : free_value (gfc_data_value *p)
157 : : {
158 : 2658 : gfc_data_value *q;
159 : :
160 : 11704 : for (; p; p = q)
161 : : {
162 : 9046 : q = p->next;
163 : 9046 : mpz_clear (p->repeat);
164 : 9046 : gfc_free_expr (p->expr);
165 : 9046 : free (p);
166 : : }
167 : 2658 : }
168 : :
169 : :
170 : : /* Free a list of gfc_data structures. */
171 : :
172 : : void
173 : 488268 : gfc_free_data (gfc_data *p)
174 : : {
175 : 488268 : gfc_data *q;
176 : :
177 : 490926 : for (; p; p = q)
178 : : {
179 : 2658 : q = p->next;
180 : 2658 : free_variable (p->var);
181 : 2658 : free_value (p->value);
182 : 2658 : free (p);
183 : : }
184 : 488268 : }
185 : :
186 : :
187 : : /* Free all data in a namespace. */
188 : :
189 : : static void
190 : 38 : gfc_free_data_all (gfc_namespace *ns)
191 : : {
192 : 38 : gfc_data *d;
193 : :
194 : 44 : for (;ns->data;)
195 : : {
196 : 6 : d = ns->data->next;
197 : 6 : free (ns->data);
198 : 6 : ns->data = d;
199 : : }
200 : 38 : }
201 : :
202 : : /* Reject data parsed since the last restore point was marked. */
203 : :
204 : : void
205 : 7975076 : gfc_reject_data (gfc_namespace *ns)
206 : : {
207 : 7975076 : gfc_data *d;
208 : :
209 : 7975078 : while (ns->data && ns->data != ns->old_data)
210 : : {
211 : 2 : d = ns->data->next;
212 : 2 : free (ns->data);
213 : 2 : ns->data = d;
214 : : }
215 : 7975076 : }
216 : :
217 : : static match var_element (gfc_data_variable *);
218 : :
219 : : /* Match a list of variables terminated by an iterator and a right
220 : : parenthesis. */
221 : :
222 : : static match
223 : 163 : var_list (gfc_data_variable *parent)
224 : : {
225 : 163 : gfc_data_variable *tail, var;
226 : 163 : match m;
227 : :
228 : 163 : m = var_element (&var);
229 : 163 : if (m == MATCH_ERROR)
230 : : return MATCH_ERROR;
231 : 163 : if (m == MATCH_NO)
232 : 0 : goto syntax;
233 : :
234 : 163 : tail = gfc_get_data_variable ();
235 : 163 : *tail = var;
236 : :
237 : 163 : parent->list = tail;
238 : :
239 : 165 : for (;;)
240 : : {
241 : 164 : if (gfc_match_char (',') != MATCH_YES)
242 : 0 : goto syntax;
243 : :
244 : 164 : m = gfc_match_iterator (&parent->iter, 1);
245 : 164 : if (m == MATCH_YES)
246 : : break;
247 : 1 : if (m == MATCH_ERROR)
248 : : return MATCH_ERROR;
249 : :
250 : 1 : m = var_element (&var);
251 : 1 : if (m == MATCH_ERROR)
252 : : return MATCH_ERROR;
253 : 1 : if (m == MATCH_NO)
254 : 0 : goto syntax;
255 : :
256 : 1 : tail->next = gfc_get_data_variable ();
257 : 1 : tail = tail->next;
258 : :
259 : 1 : *tail = var;
260 : : }
261 : :
262 : 163 : if (gfc_match_char (')') != MATCH_YES)
263 : 0 : goto syntax;
264 : : return MATCH_YES;
265 : :
266 : 0 : syntax:
267 : 0 : gfc_syntax_error (ST_DATA);
268 : 0 : return MATCH_ERROR;
269 : : }
270 : :
271 : :
272 : : /* Match a single element in a data variable list, which can be a
273 : : variable-iterator list. */
274 : :
275 : : static match
276 : 3150 : var_element (gfc_data_variable *new_var)
277 : : {
278 : 3150 : match m;
279 : 3150 : gfc_symbol *sym;
280 : :
281 : 3150 : memset (new_var, 0, sizeof (gfc_data_variable));
282 : :
283 : 3150 : if (gfc_match_char ('(') == MATCH_YES)
284 : 163 : return var_list (new_var);
285 : :
286 : 2987 : m = gfc_match_variable (&new_var->expr, 0);
287 : 2987 : if (m != MATCH_YES)
288 : : return m;
289 : :
290 : 2983 : if (new_var->expr->expr_type == EXPR_CONSTANT
291 : 2 : && new_var->expr->symtree == NULL)
292 : : {
293 : 2 : gfc_error ("Inquiry parameter cannot appear in a "
294 : : "data-stmt-object-list at %C");
295 : 2 : return MATCH_ERROR;
296 : : }
297 : :
298 : 2981 : sym = new_var->expr->symtree->n.sym;
299 : :
300 : : /* Symbol should already have an associated type. */
301 : 2981 : if (!gfc_check_symbol_typed (sym, gfc_current_ns, false, gfc_current_locus))
302 : : return MATCH_ERROR;
303 : :
304 : 2980 : if (!sym->attr.function && gfc_current_ns->parent
305 : 213 : && gfc_current_ns->parent == sym->ns)
306 : : {
307 : 1 : gfc_error ("Host associated variable %qs may not be in the DATA "
308 : : "statement at %C", sym->name);
309 : 1 : return MATCH_ERROR;
310 : : }
311 : :
312 : 2979 : if (gfc_current_state () != COMP_BLOCK_DATA
313 : 2843 : && sym->attr.in_common
314 : 3008 : && !gfc_notify_std (GFC_STD_GNU, "initialization of "
315 : : "common block variable %qs in DATA statement at %C",
316 : : sym->name))
317 : : return MATCH_ERROR;
318 : :
319 : 2977 : if (!gfc_add_data (&sym->attr, sym->name, &new_var->expr->where))
320 : : return MATCH_ERROR;
321 : :
322 : : return MATCH_YES;
323 : : }
324 : :
325 : :
326 : : /* Match the top-level list of data variables. */
327 : :
328 : : static match
329 : 2601 : top_var_list (gfc_data *d)
330 : : {
331 : 2601 : gfc_data_variable var, *tail, *new_var;
332 : 2601 : match m;
333 : :
334 : 2601 : tail = NULL;
335 : :
336 : 2986 : for (;;)
337 : : {
338 : 2986 : m = var_element (&var);
339 : 2986 : if (m == MATCH_NO)
340 : 0 : goto syntax;
341 : 2986 : if (m == MATCH_ERROR)
342 : : return MATCH_ERROR;
343 : :
344 : 2971 : new_var = gfc_get_data_variable ();
345 : 2971 : *new_var = var;
346 : 2971 : if (new_var->expr)
347 : 2841 : new_var->expr->where = gfc_current_locus;
348 : :
349 : 2971 : if (tail == NULL)
350 : 2586 : d->var = new_var;
351 : : else
352 : 385 : tail->next = new_var;
353 : :
354 : 2971 : tail = new_var;
355 : :
356 : 2971 : if (gfc_match_char ('/') == MATCH_YES)
357 : : break;
358 : 388 : if (gfc_match_char (',') != MATCH_YES)
359 : 3 : goto syntax;
360 : : }
361 : :
362 : : return MATCH_YES;
363 : :
364 : 3 : syntax:
365 : 3 : gfc_syntax_error (ST_DATA);
366 : 3 : gfc_free_data_all (gfc_current_ns);
367 : 3 : return MATCH_ERROR;
368 : : }
369 : :
370 : :
371 : : static match
372 : 9472 : match_data_constant (gfc_expr **result)
373 : : {
374 : 9472 : char name[GFC_MAX_SYMBOL_LEN + 1];
375 : 9472 : gfc_symbol *sym, *dt_sym = NULL;
376 : 9472 : gfc_expr *expr;
377 : 9472 : match m;
378 : 9472 : locus old_loc;
379 : 9472 : gfc_symtree *symtree;
380 : :
381 : 9472 : m = gfc_match_literal_constant (&expr, 1);
382 : 9472 : if (m == MATCH_YES)
383 : : {
384 : 9127 : *result = expr;
385 : 9127 : return MATCH_YES;
386 : : }
387 : :
388 : 345 : if (m == MATCH_ERROR)
389 : : return MATCH_ERROR;
390 : :
391 : 337 : m = gfc_match_null (result);
392 : 337 : if (m != MATCH_NO)
393 : : return m;
394 : :
395 : 329 : old_loc = gfc_current_locus;
396 : :
397 : : /* Should this be a structure component, try to match it
398 : : before matching a name. */
399 : 329 : m = gfc_match_rvalue (result);
400 : 329 : if (m == MATCH_ERROR)
401 : : return m;
402 : :
403 : 329 : if (m == MATCH_YES && (*result)->expr_type == EXPR_STRUCTURE)
404 : : {
405 : 4 : if (!gfc_simplify_expr (*result, 0))
406 : 0 : m = MATCH_ERROR;
407 : 4 : return m;
408 : : }
409 : 319 : else if (m == MATCH_YES)
410 : : {
411 : : /* If a parameter inquiry ends up here, symtree is NULL but **result
412 : : contains the right constant expression. Check here. */
413 : 319 : if ((*result)->symtree == NULL
414 : 37 : && (*result)->expr_type == EXPR_CONSTANT
415 : 37 : && ((*result)->ts.type == BT_INTEGER
416 : 1 : || (*result)->ts.type == BT_REAL))
417 : : return m;
418 : :
419 : : /* F2018:R845 data-stmt-constant is initial-data-target.
420 : : A data-stmt-constant shall be ... initial-data-target if and
421 : : only if the corresponding data-stmt-object has the POINTER
422 : : attribute. ... If data-stmt-constant is initial-data-target
423 : : the corresponding data statement object shall be
424 : : data-pointer-initialization compatible (7.5.4.6) with the initial
425 : : data target; the data statement object is initially associated
426 : : with the target. */
427 : 283 : if ((*result)->symtree
428 : 282 : && (*result)->symtree->n.sym->attr.save
429 : 218 : && (*result)->symtree->n.sym->attr.target)
430 : : return m;
431 : 250 : gfc_free_expr (*result);
432 : : }
433 : :
434 : 256 : gfc_current_locus = old_loc;
435 : :
436 : 256 : m = gfc_match_name (name);
437 : 256 : if (m != MATCH_YES)
438 : : return m;
439 : :
440 : 250 : if (gfc_find_sym_tree (name, NULL, 1, &symtree))
441 : : return MATCH_ERROR;
442 : :
443 : 250 : sym = symtree->n.sym;
444 : :
445 : 250 : if (sym && sym->attr.generic)
446 : 60 : dt_sym = gfc_find_dt_in_generic (sym);
447 : :
448 : 60 : if (sym == NULL
449 : 250 : || (sym->attr.flavor != FL_PARAMETER
450 : 65 : && (!dt_sym || !gfc_fl_struct (dt_sym->attr.flavor))))
451 : : {
452 : 5 : gfc_error ("Symbol %qs must be a PARAMETER in DATA statement at %C",
453 : : name);
454 : 5 : *result = NULL;
455 : 5 : return MATCH_ERROR;
456 : : }
457 : 245 : else if (dt_sym && gfc_fl_struct (dt_sym->attr.flavor))
458 : 60 : return gfc_match_structure_constructor (dt_sym, symtree, result);
459 : :
460 : : /* Check to see if the value is an initialization array expression. */
461 : 185 : if (sym->value->expr_type == EXPR_ARRAY)
462 : : {
463 : 67 : gfc_current_locus = old_loc;
464 : :
465 : 67 : m = gfc_match_init_expr (result);
466 : 67 : if (m == MATCH_ERROR)
467 : : return m;
468 : :
469 : 66 : if (m == MATCH_YES)
470 : : {
471 : 66 : if (!gfc_simplify_expr (*result, 0))
472 : 0 : m = MATCH_ERROR;
473 : :
474 : 66 : if ((*result)->expr_type == EXPR_CONSTANT)
475 : : return m;
476 : : else
477 : : {
478 : 2 : gfc_error ("Invalid initializer %s in Data statement at %C", name);
479 : 2 : return MATCH_ERROR;
480 : : }
481 : : }
482 : : }
483 : :
484 : 118 : *result = gfc_copy_expr (sym->value);
485 : 118 : return MATCH_YES;
486 : : }
487 : :
488 : :
489 : : /* Match a list of values in a DATA statement. The leading '/' has
490 : : already been seen at this point. */
491 : :
492 : : static match
493 : 2644 : top_val_list (gfc_data *data)
494 : : {
495 : 2644 : gfc_data_value *new_val, *tail;
496 : 2644 : gfc_expr *expr;
497 : 2644 : match m;
498 : :
499 : 2644 : tail = NULL;
500 : :
501 : 9083 : for (;;)
502 : : {
503 : 9083 : m = match_data_constant (&expr);
504 : 9083 : if (m == MATCH_NO)
505 : 3 : goto syntax;
506 : 9080 : if (m == MATCH_ERROR)
507 : : return MATCH_ERROR;
508 : :
509 : 9058 : new_val = gfc_get_data_value ();
510 : 9058 : mpz_init (new_val->repeat);
511 : :
512 : 9058 : if (tail == NULL)
513 : 2619 : data->value = new_val;
514 : : else
515 : 6439 : tail->next = new_val;
516 : :
517 : 9058 : tail = new_val;
518 : :
519 : 9058 : if (expr->ts.type != BT_INTEGER || gfc_match_char ('*') != MATCH_YES)
520 : : {
521 : 8828 : tail->expr = expr;
522 : 8828 : mpz_set_ui (tail->repeat, 1);
523 : : }
524 : : else
525 : : {
526 : 230 : mpz_set (tail->repeat, expr->value.integer);
527 : 230 : gfc_free_expr (expr);
528 : :
529 : 230 : m = match_data_constant (&tail->expr);
530 : 230 : if (m == MATCH_NO)
531 : 0 : goto syntax;
532 : 230 : if (m == MATCH_ERROR)
533 : : return MATCH_ERROR;
534 : : }
535 : :
536 : 9054 : if (gfc_match_char ('/') == MATCH_YES)
537 : : break;
538 : 6440 : if (gfc_match_char (',') == MATCH_NO)
539 : 1 : goto syntax;
540 : : }
541 : :
542 : : return MATCH_YES;
543 : :
544 : 4 : syntax:
545 : 4 : gfc_syntax_error (ST_DATA);
546 : 4 : gfc_free_data_all (gfc_current_ns);
547 : 4 : return MATCH_ERROR;
548 : : }
549 : :
550 : :
551 : : /* Matches an old style initialization. */
552 : :
553 : : static match
554 : 70 : match_old_style_init (const char *name)
555 : : {
556 : 70 : match m;
557 : 70 : gfc_symtree *st;
558 : 70 : gfc_symbol *sym;
559 : 70 : gfc_data *newdata, *nd;
560 : :
561 : : /* Set up data structure to hold initializers. */
562 : 70 : gfc_find_sym_tree (name, NULL, 0, &st);
563 : 70 : sym = st->n.sym;
564 : :
565 : 70 : newdata = gfc_get_data ();
566 : 70 : newdata->var = gfc_get_data_variable ();
567 : 70 : newdata->var->expr = gfc_get_variable_expr (st);
568 : 70 : newdata->var->expr->where = sym->declared_at;
569 : 70 : newdata->where = gfc_current_locus;
570 : :
571 : : /* Match initial value list. This also eats the terminal '/'. */
572 : 70 : m = top_val_list (newdata);
573 : 70 : if (m != MATCH_YES)
574 : : {
575 : 1 : free (newdata);
576 : 1 : return m;
577 : : }
578 : :
579 : : /* Check that a BOZ did not creep into an old-style initialization. */
580 : 137 : for (nd = newdata; nd; nd = nd->next)
581 : : {
582 : 69 : if (nd->value->expr->ts.type == BT_BOZ
583 : 69 : && gfc_invalid_boz (G_("BOZ at %L cannot appear in an old-style "
584 : : "initialization"), &nd->value->expr->where))
585 : : return MATCH_ERROR;
586 : :
587 : 68 : if (nd->var->expr->ts.type != BT_INTEGER
588 : 27 : && nd->var->expr->ts.type != BT_REAL
589 : 21 : && nd->value->expr->ts.type == BT_BOZ)
590 : : {
591 : 0 : gfc_error (G_("BOZ literal constant near %L cannot be assigned to "
592 : : "a %qs variable in an old-style initialization"),
593 : 0 : &nd->value->expr->where,
594 : : gfc_typename (&nd->value->expr->ts));
595 : 0 : return MATCH_ERROR;
596 : : }
597 : : }
598 : :
599 : 68 : if (gfc_pure (NULL))
600 : : {
601 : 1 : gfc_error ("Initialization at %C is not allowed in a PURE procedure");
602 : 1 : free (newdata);
603 : 1 : return MATCH_ERROR;
604 : : }
605 : 67 : gfc_unset_implicit_pure (gfc_current_ns->proc_name);
606 : :
607 : : /* Mark the variable as having appeared in a data statement. */
608 : 67 : if (!gfc_add_data (&sym->attr, sym->name, &sym->declared_at))
609 : : {
610 : 2 : free (newdata);
611 : 2 : return MATCH_ERROR;
612 : : }
613 : :
614 : : /* Chain in namespace list of DATA initializers. */
615 : 65 : newdata->next = gfc_current_ns->data;
616 : 65 : gfc_current_ns->data = newdata;
617 : :
618 : 65 : return m;
619 : : }
620 : :
621 : :
622 : : /* Match the stuff following a DATA statement. If ERROR_FLAG is set,
623 : : we are matching a DATA statement and are therefore issuing an error
624 : : if we encounter something unexpected, if not, we're trying to match
625 : : an old-style initialization expression of the form INTEGER I /2/. */
626 : :
627 : : match
628 : 2506 : gfc_match_data (void)
629 : : {
630 : 2506 : gfc_data *new_data;
631 : 2506 : gfc_expr *e;
632 : 2506 : gfc_ref *ref;
633 : 2506 : match m;
634 : 2506 : char c;
635 : :
636 : : /* DATA has been matched. In free form source code, the next character
637 : : needs to be whitespace or '(' from an implied do-loop. Check that
638 : : here. */
639 : 2506 : c = gfc_peek_ascii_char ();
640 : 2506 : if (gfc_current_form == FORM_FREE && !gfc_is_whitespace (c) && c != '(')
641 : : return MATCH_NO;
642 : :
643 : : /* Before parsing the rest of a DATA statement, check F2008:c1206. */
644 : 2505 : if ((gfc_current_state () == COMP_FUNCTION
645 : 2505 : || gfc_current_state () == COMP_SUBROUTINE)
646 : 1218 : && gfc_state_stack->previous->state == COMP_INTERFACE)
647 : : {
648 : 1 : gfc_error ("DATA statement at %C cannot appear within an INTERFACE");
649 : 1 : return MATCH_ERROR;
650 : : }
651 : :
652 : 2504 : set_in_match_data (true);
653 : :
654 : 2698 : for (;;)
655 : : {
656 : 2601 : new_data = gfc_get_data ();
657 : 2601 : new_data->where = gfc_current_locus;
658 : :
659 : 2601 : m = top_var_list (new_data);
660 : 2601 : if (m != MATCH_YES)
661 : 18 : goto cleanup;
662 : :
663 : 2583 : if (new_data->var->iter.var
664 : 121 : && new_data->var->iter.var->ts.type == BT_INTEGER
665 : 73 : && new_data->var->iter.var->symtree->n.sym->attr.implied_index == 1
666 : 67 : && new_data->var->list
667 : 67 : && new_data->var->list->expr
668 : 54 : && new_data->var->list->expr->ts.type == BT_CHARACTER
669 : 3 : && new_data->var->list->expr->ref
670 : 3 : && new_data->var->list->expr->ref->type == REF_SUBSTRING)
671 : : {
672 : 1 : gfc_error ("Invalid substring in data-implied-do at %L in DATA "
673 : : "statement", &new_data->var->list->expr->where);
674 : 1 : goto cleanup;
675 : : }
676 : :
677 : : /* Check for an entity with an allocatable component, which is not
678 : : allowed. */
679 : 2582 : e = new_data->var->expr;
680 : 2582 : if (e)
681 : : {
682 : 2462 : bool invalid;
683 : :
684 : 2462 : invalid = false;
685 : 3781 : for (ref = e->ref; ref; ref = ref->next)
686 : 1319 : if ((ref->type == REF_COMPONENT
687 : 139 : && ref->u.c.component->attr.allocatable)
688 : 1317 : || (ref->type == REF_ARRAY
689 : 1130 : && e->symtree->n.sym->attr.pointer != 1
690 : 1127 : && ref->u.ar.as && ref->u.ar.as->type == AS_DEFERRED))
691 : 1319 : invalid = true;
692 : :
693 : 2462 : if (invalid)
694 : : {
695 : 2 : gfc_error ("Allocatable component or deferred-shaped array "
696 : : "near %C in DATA statement");
697 : 2 : goto cleanup;
698 : : }
699 : :
700 : : /* F2008:C567 (R536) A data-i-do-object or a variable that appears
701 : : as a data-stmt-object shall not be an object designator in which
702 : : a pointer appears other than as the entire rightmost part-ref. */
703 : 2460 : if (!e->ref && e->ts.type == BT_DERIVED
704 : 43 : && e->symtree->n.sym->attr.pointer)
705 : 4 : goto partref;
706 : :
707 : 2456 : ref = e->ref;
708 : 2456 : if (e->symtree->n.sym->ts.type == BT_DERIVED
709 : 124 : && e->symtree->n.sym->attr.pointer
710 : 1 : && ref->type == REF_COMPONENT)
711 : 1 : goto partref;
712 : :
713 : 3766 : for (; ref; ref = ref->next)
714 : 1312 : if (ref->type == REF_COMPONENT
715 : 134 : && ref->u.c.component->attr.pointer
716 : 27 : && ref->next)
717 : 1 : goto partref;
718 : : }
719 : :
720 : 2574 : m = top_val_list (new_data);
721 : 2574 : if (m != MATCH_YES)
722 : 29 : goto cleanup;
723 : :
724 : 2545 : new_data->next = gfc_current_ns->data;
725 : 2545 : gfc_current_ns->data = new_data;
726 : :
727 : : /* A BOZ literal constant cannot appear in a structure constructor.
728 : : Check for that here for a data statement value. */
729 : 2545 : if (new_data->value->expr->ts.type == BT_DERIVED
730 : 37 : && new_data->value->expr->value.constructor)
731 : : {
732 : 35 : gfc_constructor *c;
733 : 35 : c = gfc_constructor_first (new_data->value->expr->value.constructor);
734 : 106 : for (; c; c = gfc_constructor_next (c))
735 : 36 : if (c->expr && c->expr->ts.type == BT_BOZ)
736 : : {
737 : 0 : gfc_error ("BOZ literal constant at %L cannot appear in a "
738 : : "structure constructor", &c->expr->where);
739 : 0 : return MATCH_ERROR;
740 : : }
741 : : }
742 : :
743 : 2545 : if (gfc_match_eos () == MATCH_YES)
744 : : break;
745 : :
746 : 97 : gfc_match_char (','); /* Optional comma */
747 : 97 : }
748 : :
749 : 2448 : set_in_match_data (false);
750 : :
751 : 2448 : if (gfc_pure (NULL))
752 : : {
753 : 0 : gfc_error ("DATA statement at %C is not allowed in a PURE procedure");
754 : 0 : return MATCH_ERROR;
755 : : }
756 : 2448 : gfc_unset_implicit_pure (gfc_current_ns->proc_name);
757 : :
758 : 2448 : return MATCH_YES;
759 : :
760 : 6 : partref:
761 : :
762 : 6 : gfc_error ("part-ref with pointer attribute near %L is not "
763 : : "rightmost part-ref of data-stmt-object",
764 : : &e->where);
765 : :
766 : 56 : cleanup:
767 : 56 : set_in_match_data (false);
768 : 56 : gfc_free_data (new_data);
769 : 56 : return MATCH_ERROR;
770 : : }
771 : :
772 : :
773 : : /************************ Declaration statements *********************/
774 : :
775 : :
776 : : /* Like gfc_match_init_expr, but matches a 'clist' (old-style initialization
777 : : list). The difference here is the expression is a list of constants
778 : : and is surrounded by '/'.
779 : : The typespec ts must match the typespec of the variable which the
780 : : clist is initializing.
781 : : The arrayspec tells whether this should match a list of constants
782 : : corresponding to array elements or a scalar (as == NULL). */
783 : :
784 : : static match
785 : 74 : match_clist_expr (gfc_expr **result, gfc_typespec *ts, gfc_array_spec *as)
786 : : {
787 : 74 : gfc_constructor_base array_head = NULL;
788 : 74 : gfc_expr *expr = NULL;
789 : 74 : match m = MATCH_ERROR;
790 : 74 : locus where;
791 : 74 : mpz_t repeat, cons_size, as_size;
792 : 74 : bool scalar;
793 : 74 : int cmp;
794 : :
795 : 74 : gcc_assert (ts);
796 : :
797 : : /* We have already matched '/' - now look for a constant list, as with
798 : : top_val_list from decl.cc, but append the result to an array. */
799 : 74 : if (gfc_match ("/") == MATCH_YES)
800 : : {
801 : 1 : gfc_error ("Empty old style initializer list at %C");
802 : 1 : return MATCH_ERROR;
803 : : }
804 : :
805 : 73 : where = gfc_current_locus;
806 : 73 : scalar = !as || !as->rank;
807 : :
808 : 42 : if (!scalar && !spec_size (as, &as_size))
809 : : {
810 : 2 : gfc_error ("Array in initializer list at %L must have an explicit shape",
811 : 1 : as->type == AS_EXPLICIT ? &as->upper[0]->where : &where);
812 : : /* Nothing to cleanup yet. */
813 : 1 : return MATCH_ERROR;
814 : : }
815 : :
816 : 72 : mpz_init_set_ui (repeat, 0);
817 : :
818 : 143 : for (;;)
819 : : {
820 : 143 : m = match_data_constant (&expr);
821 : 143 : if (m != MATCH_YES)
822 : 3 : expr = NULL; /* match_data_constant may set expr to garbage */
823 : 3 : if (m == MATCH_NO)
824 : 2 : goto syntax;
825 : 141 : if (m == MATCH_ERROR)
826 : 1 : goto cleanup;
827 : :
828 : : /* Found r in repeat spec r*c; look for the constant to repeat. */
829 : 140 : if ( gfc_match_char ('*') == MATCH_YES)
830 : : {
831 : 18 : if (scalar)
832 : : {
833 : 1 : gfc_error ("Repeat spec invalid in scalar initializer at %C");
834 : 1 : goto cleanup;
835 : : }
836 : 17 : if (expr->ts.type != BT_INTEGER)
837 : : {
838 : 1 : gfc_error ("Repeat spec must be an integer at %C");
839 : 1 : goto cleanup;
840 : : }
841 : 16 : mpz_set (repeat, expr->value.integer);
842 : 16 : gfc_free_expr (expr);
843 : 16 : expr = NULL;
844 : :
845 : 16 : m = match_data_constant (&expr);
846 : 16 : if (m == MATCH_NO)
847 : : {
848 : 1 : m = MATCH_ERROR;
849 : 1 : gfc_error ("Expected data constant after repeat spec at %C");
850 : : }
851 : 16 : if (m != MATCH_YES)
852 : 1 : goto cleanup;
853 : : }
854 : : /* No repeat spec, we matched the data constant itself. */
855 : : else
856 : 122 : mpz_set_ui (repeat, 1);
857 : :
858 : 137 : if (!scalar)
859 : : {
860 : : /* Add the constant initializer as many times as repeated. */
861 : 251 : for (; mpz_cmp_ui (repeat, 0) > 0; mpz_sub_ui (repeat, repeat, 1))
862 : : {
863 : : /* Make sure types of elements match */
864 : 144 : if(ts && !gfc_compare_types (&expr->ts, ts)
865 : 12 : && !gfc_convert_type (expr, ts, 1))
866 : 0 : goto cleanup;
867 : :
868 : 144 : gfc_constructor_append_expr (&array_head,
869 : : gfc_copy_expr (expr), &gfc_current_locus);
870 : : }
871 : :
872 : 107 : gfc_free_expr (expr);
873 : 107 : expr = NULL;
874 : : }
875 : :
876 : : /* For scalar initializers quit after one element. */
877 : : else
878 : : {
879 : 30 : if(gfc_match_char ('/') != MATCH_YES)
880 : : {
881 : 1 : gfc_error ("End of scalar initializer expected at %C");
882 : 1 : goto cleanup;
883 : : }
884 : : break;
885 : : }
886 : :
887 : 107 : if (gfc_match_char ('/') == MATCH_YES)
888 : : break;
889 : 72 : if (gfc_match_char (',') == MATCH_NO)
890 : 1 : goto syntax;
891 : : }
892 : :
893 : : /* If we break early from here out, we encountered an error. */
894 : 64 : m = MATCH_ERROR;
895 : :
896 : : /* Set up expr as an array constructor. */
897 : 64 : if (!scalar)
898 : : {
899 : 35 : expr = gfc_get_array_expr (ts->type, ts->kind, &where);
900 : 35 : expr->ts = *ts;
901 : 35 : expr->value.constructor = array_head;
902 : :
903 : : /* Validate sizes. We built expr ourselves, so cons_size will be
904 : : constant (we fail above for non-constant expressions).
905 : : We still need to verify that the sizes match. */
906 : 35 : gcc_assert (gfc_array_size (expr, &cons_size));
907 : 35 : cmp = mpz_cmp (cons_size, as_size);
908 : 35 : if (cmp < 0)
909 : 2 : gfc_error ("Not enough elements in array initializer at %C");
910 : 33 : else if (cmp > 0)
911 : 3 : gfc_error ("Too many elements in array initializer at %C");
912 : 35 : mpz_clear (cons_size);
913 : 35 : if (cmp)
914 : 5 : goto cleanup;
915 : :
916 : : /* Set the rank/shape to match the LHS as auto-reshape is implied. */
917 : 30 : expr->rank = as->rank;
918 : 30 : expr->corank = as->corank;
919 : 30 : expr->shape = gfc_get_shape (as->rank);
920 : 66 : for (int i = 0; i < as->rank; ++i)
921 : 36 : spec_dimen_size (as, i, &expr->shape[i]);
922 : : }
923 : :
924 : : /* Make sure scalar types match. */
925 : 29 : else if (!gfc_compare_types (&expr->ts, ts)
926 : 29 : && !gfc_convert_type (expr, ts, 1))
927 : 2 : goto cleanup;
928 : :
929 : 57 : if (expr->ts.u.cl)
930 : 1 : expr->ts.u.cl->length_from_typespec = 1;
931 : :
932 : 57 : *result = expr;
933 : 57 : m = MATCH_YES;
934 : 57 : goto done;
935 : :
936 : 3 : syntax:
937 : 3 : m = MATCH_ERROR;
938 : 3 : gfc_error ("Syntax error in old style initializer list at %C");
939 : :
940 : 15 : cleanup:
941 : 15 : if (expr)
942 : 10 : expr->value.constructor = NULL;
943 : 15 : gfc_free_expr (expr);
944 : 15 : gfc_constructor_free (array_head);
945 : :
946 : 72 : done:
947 : 72 : mpz_clear (repeat);
948 : 72 : if (!scalar)
949 : 41 : mpz_clear (as_size);
950 : : return m;
951 : : }
952 : :
953 : :
954 : : /* Auxiliary function to merge DIMENSION and CODIMENSION array specs. */
955 : :
956 : : static bool
957 : 88 : merge_array_spec (gfc_array_spec *from, gfc_array_spec *to, bool copy)
958 : : {
959 : 88 : if ((from->type == AS_ASSUMED_RANK && to->corank)
960 : 86 : || (to->type == AS_ASSUMED_RANK && from->corank))
961 : : {
962 : 5 : gfc_error ("The assumed-rank array at %C shall not have a codimension");
963 : 5 : return false;
964 : : }
965 : :
966 : 83 : if (to->rank == 0 && from->rank > 0)
967 : : {
968 : 36 : to->rank = from->rank;
969 : 36 : to->type = from->type;
970 : 36 : to->cray_pointee = from->cray_pointee;
971 : 36 : to->cp_was_assumed = from->cp_was_assumed;
972 : :
973 : 110 : for (int i = to->corank - 1; i >= 0; i--)
974 : : {
975 : : /* Do not exceed the limits on lower[] and upper[]. gfortran
976 : : cleans up elsewhere. */
977 : 74 : int j = from->rank + i;
978 : 74 : if (j >= GFC_MAX_DIMENSIONS)
979 : : break;
980 : :
981 : 74 : to->lower[j] = to->lower[i];
982 : 74 : to->upper[j] = to->upper[i];
983 : : }
984 : 85 : for (int i = 0; i < from->rank; i++)
985 : : {
986 : 49 : if (copy)
987 : : {
988 : 33 : to->lower[i] = gfc_copy_expr (from->lower[i]);
989 : 33 : to->upper[i] = gfc_copy_expr (from->upper[i]);
990 : : }
991 : : else
992 : : {
993 : 16 : to->lower[i] = from->lower[i];
994 : 16 : to->upper[i] = from->upper[i];
995 : : }
996 : : }
997 : : }
998 : 47 : else if (to->corank == 0 && from->corank > 0)
999 : : {
1000 : 22 : to->corank = from->corank;
1001 : 22 : to->cotype = from->cotype;
1002 : :
1003 : 75 : for (int i = 0; i < from->corank; i++)
1004 : : {
1005 : : /* Do not exceed the limits on lower[] and upper[]. gfortran
1006 : : cleans up elsewhere. */
1007 : 54 : int k = from->rank + i;
1008 : 54 : int j = to->rank + i;
1009 : 54 : if (j >= GFC_MAX_DIMENSIONS)
1010 : : break;
1011 : :
1012 : 53 : if (copy)
1013 : : {
1014 : 24 : to->lower[j] = gfc_copy_expr (from->lower[k]);
1015 : 24 : to->upper[j] = gfc_copy_expr (from->upper[k]);
1016 : : }
1017 : : else
1018 : : {
1019 : 29 : to->lower[j] = from->lower[k];
1020 : 29 : to->upper[j] = from->upper[k];
1021 : : }
1022 : : }
1023 : : }
1024 : :
1025 : 83 : if (to->rank + to->corank > GFC_MAX_DIMENSIONS)
1026 : : {
1027 : 1 : gfc_error ("Sum of array rank %d and corank %d at %C exceeds maximum "
1028 : : "allowed dimensions of %d",
1029 : : to->rank, to->corank, GFC_MAX_DIMENSIONS);
1030 : 1 : to->corank = GFC_MAX_DIMENSIONS - to->rank;
1031 : 1 : return false;
1032 : : }
1033 : : return true;
1034 : : }
1035 : :
1036 : :
1037 : : /* Match an intent specification. Since this can only happen after an
1038 : : INTENT word, a legal intent-spec must follow. */
1039 : :
1040 : : static sym_intent
1041 : 25712 : match_intent_spec (void)
1042 : : {
1043 : :
1044 : 25712 : if (gfc_match (" ( in out )") == MATCH_YES)
1045 : : return INTENT_INOUT;
1046 : 22848 : if (gfc_match (" ( in )") == MATCH_YES)
1047 : : return INTENT_IN;
1048 : 3505 : if (gfc_match (" ( out )") == MATCH_YES)
1049 : : return INTENT_OUT;
1050 : :
1051 : 2 : gfc_error ("Bad INTENT specification at %C");
1052 : 2 : return INTENT_UNKNOWN;
1053 : : }
1054 : :
1055 : :
1056 : : /* Matches a character length specification, which is either a
1057 : : specification expression, '*', or ':'. */
1058 : :
1059 : : static match
1060 : 25719 : char_len_param_value (gfc_expr **expr, bool *deferred)
1061 : : {
1062 : 25719 : match m;
1063 : 25719 : gfc_expr *p;
1064 : :
1065 : 25719 : *expr = NULL;
1066 : 25719 : *deferred = false;
1067 : :
1068 : 25719 : if (gfc_match_char ('*') == MATCH_YES)
1069 : : return MATCH_YES;
1070 : :
1071 : 19384 : if (gfc_match_char (':') == MATCH_YES)
1072 : : {
1073 : 3095 : if (!gfc_notify_std (GFC_STD_F2003, "deferred type parameter at %C"))
1074 : : return MATCH_ERROR;
1075 : :
1076 : 3093 : *deferred = true;
1077 : :
1078 : 3093 : return MATCH_YES;
1079 : : }
1080 : :
1081 : 16289 : m = gfc_match_expr (expr);
1082 : :
1083 : 16289 : if (m == MATCH_NO || m == MATCH_ERROR)
1084 : : return m;
1085 : :
1086 : 16284 : if (!gfc_expr_check_typed (*expr, gfc_current_ns, false))
1087 : : return MATCH_ERROR;
1088 : :
1089 : : /* Try to simplify the expression to catch things like CHARACTER(([1])). */
1090 : 16278 : p = gfc_copy_expr (*expr);
1091 : 16278 : if (gfc_is_constant_expr (p) && gfc_simplify_expr (p, 1))
1092 : 13770 : gfc_replace_expr (*expr, p);
1093 : : else
1094 : 2508 : gfc_free_expr (p);
1095 : :
1096 : 16278 : if ((*expr)->expr_type == EXPR_FUNCTION)
1097 : : {
1098 : 1006 : if ((*expr)->ts.type == BT_INTEGER
1099 : 1005 : || ((*expr)->ts.type == BT_UNKNOWN
1100 : 1005 : && strcmp((*expr)->symtree->name, "null") != 0))
1101 : : return MATCH_YES;
1102 : :
1103 : 2 : goto syntax;
1104 : : }
1105 : 15272 : else if ((*expr)->expr_type == EXPR_CONSTANT)
1106 : : {
1107 : : /* F2008, 4.4.3.1: The length is a type parameter; its kind is
1108 : : processor dependent and its value is greater than or equal to zero.
1109 : : F2008, 4.4.3.2: If the character length parameter value evaluates
1110 : : to a negative value, the length of character entities declared
1111 : : is zero. */
1112 : :
1113 : 13717 : if ((*expr)->ts.type == BT_INTEGER)
1114 : : {
1115 : 13699 : if (mpz_cmp_si ((*expr)->value.integer, 0) < 0)
1116 : 4 : mpz_set_si ((*expr)->value.integer, 0);
1117 : : }
1118 : : else
1119 : 18 : goto syntax;
1120 : : }
1121 : 1555 : else if ((*expr)->expr_type == EXPR_ARRAY)
1122 : 8 : goto syntax;
1123 : 1547 : else if ((*expr)->expr_type == EXPR_VARIABLE)
1124 : : {
1125 : 1160 : bool t;
1126 : 1160 : gfc_expr *e;
1127 : :
1128 : 1160 : e = gfc_copy_expr (*expr);
1129 : :
1130 : : /* This catches the invalid code "[character(m(2:3)) :: 'x', 'y']",
1131 : : which causes an ICE if gfc_reduce_init_expr() is called. */
1132 : 1160 : if (e->ref && e->ref->type == REF_ARRAY
1133 : 8 : && e->ref->u.ar.type == AR_UNKNOWN
1134 : 7 : && e->ref->u.ar.dimen_type[0] == DIMEN_RANGE)
1135 : 2 : goto syntax;
1136 : :
1137 : 1158 : t = gfc_reduce_init_expr (e);
1138 : :
1139 : 1158 : if (!t && e->ts.type == BT_UNKNOWN
1140 : 7 : && e->symtree->n.sym->attr.untyped == 1
1141 : 7 : && (flag_implicit_none
1142 : 5 : || e->symtree->n.sym->ns->seen_implicit_none == 1
1143 : 1 : || e->symtree->n.sym->ns->parent->seen_implicit_none == 1))
1144 : : {
1145 : 7 : gfc_free_expr (e);
1146 : 7 : goto syntax;
1147 : : }
1148 : :
1149 : 1151 : if ((e->ref && e->ref->type == REF_ARRAY
1150 : 4 : && e->ref->u.ar.type != AR_ELEMENT)
1151 : 1150 : || (!e->ref && e->expr_type == EXPR_ARRAY))
1152 : : {
1153 : 2 : gfc_free_expr (e);
1154 : 2 : goto syntax;
1155 : : }
1156 : :
1157 : 1149 : gfc_free_expr (e);
1158 : : }
1159 : :
1160 : 15235 : if (gfc_seen_div0)
1161 : 52 : m = MATCH_ERROR;
1162 : :
1163 : : return m;
1164 : :
1165 : 39 : syntax:
1166 : 39 : gfc_error ("Scalar INTEGER expression expected at %L", &(*expr)->where);
1167 : 39 : return MATCH_ERROR;
1168 : : }
1169 : :
1170 : :
1171 : : /* A character length is a '*' followed by a literal integer or a
1172 : : char_len_param_value in parenthesis. */
1173 : :
1174 : : static match
1175 : 59739 : match_char_length (gfc_expr **expr, bool *deferred, bool obsolescent_check)
1176 : : {
1177 : 59739 : int length;
1178 : 59739 : match m;
1179 : :
1180 : 59739 : *deferred = false;
1181 : 59739 : m = gfc_match_char ('*');
1182 : 59739 : if (m != MATCH_YES)
1183 : : return m;
1184 : :
1185 : 2713 : m = gfc_match_small_literal_int (&length, NULL);
1186 : 2713 : if (m == MATCH_ERROR)
1187 : : return m;
1188 : :
1189 : 2713 : if (m == MATCH_YES)
1190 : : {
1191 : 2197 : if (obsolescent_check
1192 : 2197 : && !gfc_notify_std (GFC_STD_F95_OBS, "Old-style character length at %C"))
1193 : : return MATCH_ERROR;
1194 : 2197 : *expr = gfc_get_int_expr (gfc_charlen_int_kind, NULL, length);
1195 : 2197 : return m;
1196 : : }
1197 : :
1198 : 516 : if (gfc_match_char ('(') == MATCH_NO)
1199 : 0 : goto syntax;
1200 : :
1201 : 516 : m = char_len_param_value (expr, deferred);
1202 : 516 : if (m != MATCH_YES && gfc_matching_function)
1203 : : {
1204 : 0 : gfc_undo_symbols ();
1205 : 0 : m = MATCH_YES;
1206 : : }
1207 : :
1208 : 1 : if (m == MATCH_ERROR)
1209 : : return m;
1210 : 515 : if (m == MATCH_NO)
1211 : 0 : goto syntax;
1212 : :
1213 : 515 : if (gfc_match_char (')') == MATCH_NO)
1214 : : {
1215 : 0 : gfc_free_expr (*expr);
1216 : 0 : *expr = NULL;
1217 : 0 : goto syntax;
1218 : : }
1219 : :
1220 : : return MATCH_YES;
1221 : :
1222 : 0 : syntax:
1223 : 0 : gfc_error ("Syntax error in character length specification at %C");
1224 : 0 : return MATCH_ERROR;
1225 : : }
1226 : :
1227 : :
1228 : : /* Special subroutine for finding a symbol. Check if the name is found
1229 : : in the current name space. If not, and we're compiling a function or
1230 : : subroutine and the parent compilation unit is an interface, then check
1231 : : to see if the name we've been given is the name of the interface
1232 : : (located in another namespace). */
1233 : :
1234 : : static int
1235 : 266512 : find_special (const char *name, gfc_symbol **result, bool allow_subroutine)
1236 : : {
1237 : 266512 : gfc_state_data *s;
1238 : 266512 : gfc_symtree *st;
1239 : 266512 : int i;
1240 : :
1241 : 266512 : i = gfc_get_sym_tree (name, NULL, &st, allow_subroutine);
1242 : 266512 : if (i == 0)
1243 : : {
1244 : 266512 : *result = st ? st->n.sym : NULL;
1245 : 266512 : goto end;
1246 : : }
1247 : :
1248 : 0 : if (gfc_current_state () != COMP_SUBROUTINE
1249 : 0 : && gfc_current_state () != COMP_FUNCTION)
1250 : 0 : goto end;
1251 : :
1252 : 0 : s = gfc_state_stack->previous;
1253 : 0 : if (s == NULL)
1254 : 0 : goto end;
1255 : :
1256 : 0 : if (s->state != COMP_INTERFACE)
1257 : 0 : goto end;
1258 : 0 : if (s->sym == NULL)
1259 : 0 : goto end; /* Nameless interface. */
1260 : :
1261 : 0 : if (strcmp (name, s->sym->name) == 0)
1262 : : {
1263 : 0 : *result = s->sym;
1264 : 0 : return 0;
1265 : : }
1266 : :
1267 : 0 : end:
1268 : : return i;
1269 : : }
1270 : :
1271 : :
1272 : : /* Special subroutine for getting a symbol node associated with a
1273 : : procedure name, used in SUBROUTINE and FUNCTION statements. The
1274 : : symbol is created in the parent using with symtree node in the
1275 : : child unit pointing to the symbol. If the current namespace has no
1276 : : parent, then the symbol is just created in the current unit. */
1277 : :
1278 : : static int
1279 : 59306 : get_proc_name (const char *name, gfc_symbol **result, bool module_fcn_entry)
1280 : : {
1281 : 59306 : gfc_symtree *st;
1282 : 59306 : gfc_symbol *sym;
1283 : 59306 : int rc = 0;
1284 : :
1285 : : /* Module functions have to be left in their own namespace because
1286 : : they have potentially (almost certainly!) already been referenced.
1287 : : In this sense, they are rather like external functions. This is
1288 : : fixed up in resolve.cc(resolve_entries), where the symbol name-
1289 : : space is set to point to the master function, so that the fake
1290 : : result mechanism can work. */
1291 : 59306 : if (module_fcn_entry)
1292 : : {
1293 : : /* Present if entry is declared to be a module procedure. */
1294 : 259 : rc = gfc_find_symbol (name, gfc_current_ns->parent, 0, result);
1295 : :
1296 : 259 : if (*result == NULL)
1297 : 216 : rc = gfc_get_symbol (name, NULL, result);
1298 : 86 : else if (!gfc_get_symbol (name, NULL, &sym) && sym
1299 : 43 : && (*result)->ts.type == BT_UNKNOWN
1300 : 86 : && sym->attr.flavor == FL_UNKNOWN)
1301 : : /* Pick up the typespec for the entry, if declared in the function
1302 : : body. Note that this symbol is FL_UNKNOWN because it will
1303 : : only have appeared in a type declaration. The local symtree
1304 : : is set to point to the module symbol and a unique symtree
1305 : : to the local version. This latter ensures a correct clearing
1306 : : of the symbols. */
1307 : : {
1308 : : /* If the ENTRY proceeds its specification, we need to ensure
1309 : : that this does not raise a "has no IMPLICIT type" error. */
1310 : 43 : if (sym->ts.type == BT_UNKNOWN)
1311 : 23 : sym->attr.untyped = 1;
1312 : :
1313 : 43 : (*result)->ts = sym->ts;
1314 : :
1315 : : /* Put the symbol in the procedure namespace so that, should
1316 : : the ENTRY precede its specification, the specification
1317 : : can be applied. */
1318 : 43 : (*result)->ns = gfc_current_ns;
1319 : :
1320 : 43 : gfc_find_sym_tree (name, gfc_current_ns, 0, &st);
1321 : 43 : st->n.sym = *result;
1322 : 43 : st = gfc_get_unique_symtree (gfc_current_ns);
1323 : 43 : sym->refs++;
1324 : 43 : st->n.sym = sym;
1325 : : }
1326 : : }
1327 : : else
1328 : 59047 : rc = gfc_get_symbol (name, gfc_current_ns->parent, result);
1329 : :
1330 : 59306 : if (rc)
1331 : : return rc;
1332 : :
1333 : 59305 : sym = *result;
1334 : 59305 : if (sym->attr.proc == PROC_ST_FUNCTION)
1335 : : return rc;
1336 : :
1337 : 59305 : if (sym->attr.module_procedure && sym->attr.if_source == IFSRC_IFBODY)
1338 : : {
1339 : : /* Create a partially populated interface symbol to carry the
1340 : : characteristics of the procedure and the result. */
1341 : 353 : sym->tlink = gfc_new_symbol (name, sym->ns);
1342 : 353 : gfc_add_type (sym->tlink, &(sym->ts), &gfc_current_locus);
1343 : 353 : gfc_copy_attr (&sym->tlink->attr, &sym->attr, NULL);
1344 : 353 : if (sym->attr.dimension)
1345 : 15 : sym->tlink->as = gfc_copy_array_spec (sym->as);
1346 : :
1347 : : /* Ideally, at this point, a copy would be made of the formal
1348 : : arguments and their namespace. However, this does not appear
1349 : : to be necessary, albeit at the expense of not being able to
1350 : : use gfc_compare_interfaces directly. */
1351 : :
1352 : 353 : if (sym->result && sym->result != sym)
1353 : : {
1354 : 54 : sym->tlink->result = sym->result;
1355 : 54 : sym->result = NULL;
1356 : : }
1357 : 299 : else if (sym->result)
1358 : : {
1359 : 62 : sym->tlink->result = sym->tlink;
1360 : : }
1361 : : }
1362 : 58952 : else if (sym && !sym->gfc_new
1363 : 22821 : && gfc_current_state () != COMP_INTERFACE)
1364 : : {
1365 : : /* Trap another encompassed procedure with the same name. All
1366 : : these conditions are necessary to avoid picking up an entry
1367 : : whose name clashes with that of the encompassing procedure;
1368 : : this is handled using gsymbols to register unique, globally
1369 : : accessible names. */
1370 : 21887 : if (sym->attr.flavor != 0
1371 : 19988 : && sym->attr.proc != 0
1372 : 2082 : && (sym->attr.subroutine || sym->attr.function || sym->attr.entry)
1373 : 6 : && sym->attr.if_source != IFSRC_UNKNOWN)
1374 : : {
1375 : 6 : gfc_error_now ("Procedure %qs at %C is already defined at %L",
1376 : : name, &sym->declared_at);
1377 : 6 : return true;
1378 : : }
1379 : 21881 : if (sym->attr.flavor != 0
1380 : 19982 : && sym->attr.entry && sym->attr.if_source != IFSRC_UNKNOWN)
1381 : : {
1382 : 1 : gfc_error_now ("Procedure %qs at %C is already defined at %L",
1383 : : name, &sym->declared_at);
1384 : 1 : return true;
1385 : : }
1386 : :
1387 : 21880 : if (sym->attr.external && sym->attr.procedure
1388 : 2 : && gfc_current_state () == COMP_CONTAINS)
1389 : : {
1390 : 1 : gfc_error_now ("Contained procedure %qs at %C clashes with "
1391 : : "procedure defined at %L",
1392 : : name, &sym->declared_at);
1393 : 1 : return true;
1394 : : }
1395 : :
1396 : : /* Trap a procedure with a name the same as interface in the
1397 : : encompassing scope. */
1398 : 21879 : if (sym->attr.generic != 0
1399 : 59 : && (sym->attr.subroutine || sym->attr.function)
1400 : 1 : && !sym->attr.mod_proc)
1401 : : {
1402 : 1 : gfc_error_now ("Name %qs at %C is already defined"
1403 : : " as a generic interface at %L",
1404 : : name, &sym->declared_at);
1405 : 1 : return true;
1406 : : }
1407 : :
1408 : : /* Trap declarations of attributes in encompassing scope. The
1409 : : signature for this is that ts.kind is nonzero for no-CLASS
1410 : : entity. For a CLASS entity, ts.kind is zero. */
1411 : 21878 : if ((sym->ts.kind != 0
1412 : 21537 : || sym->ts.type == BT_CLASS
1413 : 21536 : || sym->ts.type == BT_DERIVED)
1414 : 365 : && !sym->attr.implicit_type
1415 : 364 : && sym->attr.proc == 0
1416 : 346 : && gfc_current_ns->parent != NULL
1417 : 137 : && sym->attr.access == 0
1418 : 135 : && !module_fcn_entry)
1419 : : {
1420 : 5 : gfc_error_now ("Procedure %qs at %C has an explicit interface "
1421 : : "from a previous declaration", name);
1422 : 5 : return true;
1423 : : }
1424 : : }
1425 : :
1426 : : /* C1246 (R1225) MODULE shall appear only in the function-stmt or
1427 : : subroutine-stmt of a module subprogram or of a nonabstract interface
1428 : : body that is declared in the scoping unit of a module or submodule. */
1429 : 59291 : if (sym->attr.external
1430 : 67 : && (sym->attr.subroutine || sym->attr.function)
1431 : 66 : && sym->attr.if_source == IFSRC_IFBODY
1432 : 66 : && !current_attr.module_procedure
1433 : 3 : && sym->attr.proc == PROC_MODULE
1434 : 3 : && gfc_state_stack->state == COMP_CONTAINS)
1435 : : {
1436 : 1 : gfc_error_now ("Procedure %qs defined in interface body at %L "
1437 : : "clashes with internal procedure defined at %C",
1438 : : name, &sym->declared_at);
1439 : 1 : return true;
1440 : : }
1441 : :
1442 : 59290 : if (sym && !sym->gfc_new
1443 : 23159 : && sym->attr.flavor != FL_UNKNOWN
1444 : 20910 : && sym->attr.referenced == 0 && sym->attr.subroutine == 1
1445 : 206 : && gfc_state_stack->state == COMP_CONTAINS
1446 : 201 : && gfc_state_stack->previous->state == COMP_SUBROUTINE)
1447 : : {
1448 : 1 : gfc_error_now ("Procedure %qs at %C is already defined at %L",
1449 : : name, &sym->declared_at);
1450 : 1 : return true;
1451 : : }
1452 : :
1453 : 59289 : if (gfc_current_ns->parent == NULL || *result == NULL)
1454 : : return rc;
1455 : :
1456 : : /* Module function entries will already have a symtree in
1457 : : the current namespace but will need one at module level. */
1458 : 47596 : if (module_fcn_entry)
1459 : : {
1460 : : /* Present if entry is declared to be a module procedure. */
1461 : 257 : rc = gfc_find_sym_tree (name, gfc_current_ns->parent, 0, &st);
1462 : 257 : if (st == NULL)
1463 : 216 : st = gfc_new_symtree (&gfc_current_ns->parent->sym_root, name);
1464 : : }
1465 : : else
1466 : 47339 : st = gfc_new_symtree (&gfc_current_ns->sym_root, name);
1467 : :
1468 : 47596 : st->n.sym = sym;
1469 : 47596 : sym->refs++;
1470 : :
1471 : : /* See if the procedure should be a module procedure. */
1472 : :
1473 : 47596 : if (((sym->ns->proc_name != NULL
1474 : 47596 : && sym->ns->proc_name->attr.flavor == FL_MODULE
1475 : 19370 : && sym->attr.proc != PROC_MODULE)
1476 : 47596 : || (module_fcn_entry && sym->attr.proc != PROC_MODULE))
1477 : 64560 : && !gfc_add_procedure (&sym->attr, PROC_MODULE, sym->name, NULL))
1478 : : rc = 2;
1479 : :
1480 : : return rc;
1481 : : }
1482 : :
1483 : :
1484 : : /* Verify that the given symbol representing a parameter is C
1485 : : interoperable, by checking to see if it was marked as such after
1486 : : its declaration. If the given symbol is not interoperable, a
1487 : : warning is reported, thus removing the need to return the status to
1488 : : the calling function. The standard does not require the user use
1489 : : one of the iso_c_binding named constants to declare an
1490 : : interoperable parameter, but we can't be sure if the param is C
1491 : : interop or not if the user doesn't. For example, integer(4) may be
1492 : : legal Fortran, but doesn't have meaning in C. It may interop with
1493 : : a number of the C types, which causes a problem because the
1494 : : compiler can't know which one. This code is almost certainly not
1495 : : portable, and the user will get what they deserve if the C type
1496 : : across platforms isn't always interoperable with integer(4). If
1497 : : the user had used something like integer(c_int) or integer(c_long),
1498 : : the compiler could have automatically handled the varying sizes
1499 : : across platforms. */
1500 : :
1501 : : bool
1502 : 14630 : gfc_verify_c_interop_param (gfc_symbol *sym)
1503 : : {
1504 : 14630 : int is_c_interop = 0;
1505 : 14630 : bool retval = true;
1506 : :
1507 : : /* We check implicitly typed variables in symbol.cc:gfc_set_default_type().
1508 : : Don't repeat the checks here. */
1509 : 14630 : if (sym->attr.implicit_type)
1510 : : return true;
1511 : :
1512 : : /* For subroutines or functions that are passed to a BIND(C) procedure,
1513 : : they're interoperable if they're BIND(C) and their params are all
1514 : : interoperable. */
1515 : 14630 : if (sym->attr.flavor == FL_PROCEDURE)
1516 : : {
1517 : 2 : if (sym->attr.is_bind_c == 0)
1518 : : {
1519 : 0 : gfc_error_now ("Procedure %qs at %L must have the BIND(C) "
1520 : : "attribute to be C interoperable", sym->name,
1521 : : &(sym->declared_at));
1522 : 0 : return false;
1523 : : }
1524 : : else
1525 : : {
1526 : 2 : if (sym->attr.is_c_interop == 1)
1527 : : /* We've already checked this procedure; don't check it again. */
1528 : : return true;
1529 : : else
1530 : 2 : return verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
1531 : 2 : sym->common_block);
1532 : : }
1533 : : }
1534 : :
1535 : : /* See if we've stored a reference to a procedure that owns sym. */
1536 : 14628 : if (sym->ns != NULL && sym->ns->proc_name != NULL)
1537 : : {
1538 : 14628 : if (sym->ns->proc_name->attr.is_bind_c == 1)
1539 : : {
1540 : 14589 : is_c_interop = (gfc_verify_c_interop(&(sym->ts)) ? 1 : 0);
1541 : :
1542 : 3375 : if (is_c_interop != 1)
1543 : : {
1544 : : /* Make personalized messages to give better feedback. */
1545 : 3375 : if (sym->ts.type == BT_DERIVED)
1546 : 1 : gfc_error ("Variable %qs at %L is a dummy argument to the "
1547 : : "BIND(C) procedure %qs but is not C interoperable "
1548 : : "because derived type %qs is not C interoperable",
1549 : : sym->name, &(sym->declared_at),
1550 : 1 : sym->ns->proc_name->name,
1551 : 1 : sym->ts.u.derived->name);
1552 : 3374 : else if (sym->ts.type == BT_CLASS)
1553 : 6 : gfc_error ("Variable %qs at %L is a dummy argument to the "
1554 : : "BIND(C) procedure %qs but is not C interoperable "
1555 : : "because it is polymorphic",
1556 : : sym->name, &(sym->declared_at),
1557 : 6 : sym->ns->proc_name->name);
1558 : 3368 : else if (warn_c_binding_type)
1559 : 27 : gfc_warning (OPT_Wc_binding_type,
1560 : : "Variable %qs at %L is a dummy argument of the "
1561 : : "BIND(C) procedure %qs but may not be C "
1562 : : "interoperable",
1563 : : sym->name, &(sym->declared_at),
1564 : 27 : sym->ns->proc_name->name);
1565 : : }
1566 : :
1567 : : /* Per F2018, 18.3.6 (5), pointer + contiguous is not permitted. */
1568 : 14589 : if (sym->attr.pointer && sym->attr.contiguous)
1569 : 2 : gfc_error ("Dummy argument %qs at %L may not be a pointer with "
1570 : : "CONTIGUOUS attribute as procedure %qs is BIND(C)",
1571 : 2 : sym->name, &sym->declared_at, sym->ns->proc_name->name);
1572 : :
1573 : : /* Per F2018, C1557, pointer/allocatable dummies to a bind(c)
1574 : : procedure that are default-initialized are not permitted. */
1575 : 14589 : if ((sym->attr.pointer || sym->attr.allocatable)
1576 : 1029 : && sym->ts.type == BT_DERIVED
1577 : 14959 : && gfc_has_default_initializer (sym->ts.u.derived))
1578 : : {
1579 : 8 : gfc_error ("Default-initialized dummy argument %qs with %s "
1580 : : "attribute at %L is not permitted in BIND(C) "
1581 : : "procedure %qs", sym->name,
1582 : 4 : (sym->attr.pointer ? "POINTER" : "ALLOCATABLE"),
1583 : 4 : &sym->declared_at, sym->ns->proc_name->name);
1584 : 4 : retval = false;
1585 : : }
1586 : :
1587 : : /* Character strings are only C interoperable if they have a
1588 : : length of 1. However, as an argument they are also interoperable
1589 : : when passed as descriptor (which requires len=: or len=*). */
1590 : 14589 : if (sym->ts.type == BT_CHARACTER)
1591 : : {
1592 : 2331 : gfc_charlen *cl = sym->ts.u.cl;
1593 : :
1594 : 2331 : if (sym->attr.allocatable || sym->attr.pointer)
1595 : : {
1596 : : /* F2018, 18.3.6 (6). */
1597 : 193 : if (!sym->ts.deferred)
1598 : : {
1599 : 64 : if (sym->attr.allocatable)
1600 : 32 : gfc_error ("Allocatable character dummy argument %qs "
1601 : : "at %L must have deferred length as "
1602 : : "procedure %qs is BIND(C)", sym->name,
1603 : 32 : &sym->declared_at, sym->ns->proc_name->name);
1604 : : else
1605 : 32 : gfc_error ("Pointer character dummy argument %qs at %L "
1606 : : "must have deferred length as procedure %qs "
1607 : : "is BIND(C)", sym->name, &sym->declared_at,
1608 : 32 : sym->ns->proc_name->name);
1609 : : retval = false;
1610 : : }
1611 : 129 : else if (!gfc_notify_std (GFC_STD_F2018,
1612 : : "Deferred-length character dummy "
1613 : : "argument %qs at %L of procedure "
1614 : : "%qs with BIND(C) attribute",
1615 : : sym->name, &sym->declared_at,
1616 : 129 : sym->ns->proc_name->name))
1617 : 102 : retval = false;
1618 : : }
1619 : 2138 : else if (sym->attr.value
1620 : 351 : && (!cl || !cl->length
1621 : 351 : || cl->length->expr_type != EXPR_CONSTANT
1622 : 351 : || mpz_cmp_si (cl->length->value.integer, 1) != 0))
1623 : : {
1624 : 1 : gfc_error ("Character dummy argument %qs at %L must be "
1625 : : "of length 1 as it has the VALUE attribute",
1626 : : sym->name, &sym->declared_at);
1627 : 1 : retval = false;
1628 : : }
1629 : 2137 : else if (!cl || !cl->length)
1630 : : {
1631 : : /* Assumed length; F2018, 18.3.6 (5)(2).
1632 : : Uses the CFI array descriptor - also for scalars and
1633 : : explicit-size/assumed-size arrays. */
1634 : 956 : if (!gfc_notify_std (GFC_STD_F2018,
1635 : : "Assumed-length character dummy argument "
1636 : : "%qs at %L of procedure %qs with BIND(C) "
1637 : : "attribute", sym->name, &sym->declared_at,
1638 : 956 : sym->ns->proc_name->name))
1639 : 102 : retval = false;
1640 : : }
1641 : 1181 : else if (cl->length->expr_type != EXPR_CONSTANT
1642 : 867 : || mpz_cmp_si (cl->length->value.integer, 1) != 0)
1643 : : {
1644 : : /* F2018, 18.3.6, (5), item 4. */
1645 : 653 : if (!sym->attr.dimension
1646 : 645 : || sym->as->type == AS_ASSUMED_SIZE
1647 : 639 : || sym->as->type == AS_EXPLICIT)
1648 : : {
1649 : 20 : gfc_error ("Character dummy argument %qs at %L must be "
1650 : : "of constant length of one or assumed length, "
1651 : : "unless it has assumed shape or assumed rank, "
1652 : : "as procedure %qs has the BIND(C) attribute",
1653 : : sym->name, &sym->declared_at,
1654 : 20 : sym->ns->proc_name->name);
1655 : 20 : retval = false;
1656 : : }
1657 : : /* else: valid only since F2018 - and an assumed-shape/rank
1658 : : array; however, gfc_notify_std is already called when
1659 : : those array types are used. Thus, silently accept F200x. */
1660 : : }
1661 : : }
1662 : :
1663 : : /* We have to make sure that any param to a bind(c) routine does
1664 : : not have the allocatable, pointer, or optional attributes,
1665 : : according to J3/04-007, section 5.1. */
1666 : 14589 : if (sym->attr.allocatable == 1
1667 : 14985 : && !gfc_notify_std (GFC_STD_F2018, "Variable %qs at %L with "
1668 : : "ALLOCATABLE attribute in procedure %qs "
1669 : : "with BIND(C)", sym->name,
1670 : : &(sym->declared_at),
1671 : 396 : sym->ns->proc_name->name))
1672 : : retval = false;
1673 : :
1674 : 14589 : if (sym->attr.pointer == 1
1675 : 15222 : && !gfc_notify_std (GFC_STD_F2018, "Variable %qs at %L with "
1676 : : "POINTER attribute in procedure %qs "
1677 : : "with BIND(C)", sym->name,
1678 : : &(sym->declared_at),
1679 : 633 : sym->ns->proc_name->name))
1680 : : retval = false;
1681 : :
1682 : 14589 : if (sym->attr.optional == 1 && sym->attr.value)
1683 : : {
1684 : 9 : gfc_error ("Variable %qs at %L cannot have both the OPTIONAL "
1685 : : "and the VALUE attribute because procedure %qs "
1686 : : "is BIND(C)", sym->name, &(sym->declared_at),
1687 : 9 : sym->ns->proc_name->name);
1688 : 9 : retval = false;
1689 : : }
1690 : 14580 : else if (sym->attr.optional == 1
1691 : 15469 : && !gfc_notify_std (GFC_STD_F2018, "Variable %qs "
1692 : : "at %L with OPTIONAL attribute in "
1693 : : "procedure %qs which is BIND(C)",
1694 : : sym->name, &(sym->declared_at),
1695 : 889 : sym->ns->proc_name->name))
1696 : : retval = false;
1697 : :
1698 : : /* Make sure that if it has the dimension attribute, that it is
1699 : : either assumed size or explicit shape. Deferred shape is already
1700 : : covered by the pointer/allocatable attribute. */
1701 : 4903 : if (sym->as != NULL && sym->as->type == AS_ASSUMED_SHAPE
1702 : 15916 : && !gfc_notify_std (GFC_STD_F2018, "Assumed-shape array %qs "
1703 : : "at %L as dummy argument to the BIND(C) "
1704 : : "procedure %qs at %L", sym->name,
1705 : : &(sym->declared_at),
1706 : : sym->ns->proc_name->name,
1707 : 1327 : &(sym->ns->proc_name->declared_at)))
1708 : : retval = false;
1709 : : }
1710 : : }
1711 : :
1712 : : return retval;
1713 : : }
1714 : :
1715 : :
1716 : :
1717 : : /* Function called by variable_decl() that adds a name to the symbol table. */
1718 : :
1719 : : static bool
1720 : 246399 : build_sym (const char *name, int elem, gfc_charlen *cl, bool cl_deferred,
1721 : : gfc_array_spec **as, locus *var_locus)
1722 : : {
1723 : 246399 : symbol_attribute attr;
1724 : 246399 : gfc_symbol *sym;
1725 : 246399 : int upper;
1726 : 246399 : gfc_symtree *st;
1727 : :
1728 : : /* Symbols in a submodule are host associated from the parent module or
1729 : : submodules. Therefore, they can be overridden by declarations in the
1730 : : submodule scope. Deal with this by attaching the existing symbol to
1731 : : a new symtree and recycling the old symtree with a new symbol... */
1732 : 246399 : st = gfc_find_symtree (gfc_current_ns->sym_root, name);
1733 : 246399 : if (st != NULL && gfc_state_stack->state == COMP_SUBMODULE
1734 : 12 : && st->n.sym != NULL
1735 : 12 : && st->n.sym->attr.host_assoc && st->n.sym->attr.used_in_submodule)
1736 : : {
1737 : 12 : gfc_symtree *s = gfc_get_unique_symtree (gfc_current_ns);
1738 : 12 : s->n.sym = st->n.sym;
1739 : 12 : sym = gfc_new_symbol (name, gfc_current_ns, var_locus);
1740 : :
1741 : 12 : st->n.sym = sym;
1742 : 12 : sym->refs++;
1743 : 12 : gfc_set_sym_referenced (sym);
1744 : 12 : }
1745 : : /* ...Otherwise generate a new symtree and new symbol. */
1746 : 246387 : else if (gfc_get_symbol (name, NULL, &sym, var_locus))
1747 : : return false;
1748 : :
1749 : : /* Check if the name has already been defined as a type. The
1750 : : first letter of the symtree will be in upper case then. Of
1751 : : course, this is only necessary if the upper case letter is
1752 : : actually different. */
1753 : :
1754 : 246399 : upper = TOUPPER(name[0]);
1755 : 246399 : if (upper != name[0])
1756 : : {
1757 : 245761 : char u_name[GFC_MAX_SYMBOL_LEN + 1];
1758 : 245761 : gfc_symtree *st;
1759 : :
1760 : 245761 : gcc_assert (strlen(name) <= GFC_MAX_SYMBOL_LEN);
1761 : 245761 : strcpy (u_name, name);
1762 : 245761 : u_name[0] = upper;
1763 : :
1764 : 245761 : st = gfc_find_symtree (gfc_current_ns->sym_root, u_name);
1765 : :
1766 : : /* STRUCTURE types can alias symbol names */
1767 : 245761 : if (st != 0 && st->n.sym->attr.flavor != FL_STRUCT)
1768 : : {
1769 : 1 : gfc_error ("Symbol %qs at %C also declared as a type at %L", name,
1770 : : &st->n.sym->declared_at);
1771 : 1 : return false;
1772 : : }
1773 : : }
1774 : :
1775 : : /* Start updating the symbol table. Add basic type attribute if present. */
1776 : 246398 : if (current_ts.type != BT_UNKNOWN
1777 : 246398 : && (sym->attr.implicit_type == 0
1778 : 185 : || !gfc_compare_types (&sym->ts, ¤t_ts))
1779 : 492615 : && !gfc_add_type (sym, ¤t_ts, var_locus))
1780 : : return false;
1781 : :
1782 : 246372 : if (sym->ts.type == BT_CHARACTER)
1783 : : {
1784 : 28004 : if (elem > 1)
1785 : 3986 : sym->ts.u.cl = gfc_new_charlen (sym->ns, cl);
1786 : : else
1787 : 24018 : sym->ts.u.cl = cl;
1788 : 28004 : sym->ts.deferred = cl_deferred;
1789 : : }
1790 : :
1791 : : /* Add dimension attribute if present. */
1792 : 246372 : if (!gfc_set_array_spec (sym, *as, var_locus))
1793 : : return false;
1794 : 246370 : *as = NULL;
1795 : :
1796 : : /* Add attribute to symbol. The copy is so that we can reset the
1797 : : dimension attribute. */
1798 : 246370 : attr = current_attr;
1799 : 246370 : attr.dimension = 0;
1800 : 246370 : attr.codimension = 0;
1801 : :
1802 : 246370 : if (!gfc_copy_attr (&sym->attr, &attr, var_locus))
1803 : : return false;
1804 : :
1805 : : /* Finish any work that may need to be done for the binding label,
1806 : : if it's a bind(c). The bind(c) attr is found before the symbol
1807 : : is made, and before the symbol name (for data decls), so the
1808 : : current_ts is holding the binding label, or nothing if the
1809 : : name= attr wasn't given. Therefore, test here if we're dealing
1810 : : with a bind(c) and make sure the binding label is set correctly. */
1811 : 246356 : if (sym->attr.is_bind_c == 1)
1812 : : {
1813 : 1189 : if (!sym->binding_label)
1814 : : {
1815 : : /* Set the binding label and verify that if a NAME= was specified
1816 : : then only one identifier was in the entity-decl-list. */
1817 : 136 : if (!set_binding_label (&sym->binding_label, sym->name,
1818 : : num_idents_on_line))
1819 : : return false;
1820 : : }
1821 : : }
1822 : :
1823 : : /* See if we know we're in a common block, and if it's a bind(c)
1824 : : common then we need to make sure we're an interoperable type. */
1825 : 246354 : if (sym->attr.in_common == 1)
1826 : : {
1827 : : /* Test the common block object. */
1828 : 628 : if (sym->common_block != NULL && sym->common_block->is_bind_c == 1
1829 : 6 : && sym->ts.is_c_interop != 1)
1830 : : {
1831 : 0 : gfc_error_now ("Variable %qs in common block %qs at %C "
1832 : : "must be declared with a C interoperable "
1833 : : "kind since common block %qs is BIND(C)",
1834 : : sym->name, sym->common_block->name,
1835 : 0 : sym->common_block->name);
1836 : 0 : gfc_clear_error ();
1837 : : }
1838 : : }
1839 : :
1840 : 246354 : sym->attr.implied_index = 0;
1841 : :
1842 : : /* Use the parameter expressions for a parameterized derived type. */
1843 : 246354 : if ((sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS)
1844 : 33091 : && sym->ts.u.derived->attr.pdt_type && type_param_spec_list)
1845 : 433 : sym->param_list = gfc_copy_actual_arglist (type_param_spec_list);
1846 : :
1847 : 246354 : if (sym->ts.type == BT_CLASS)
1848 : 10315 : return gfc_build_class_symbol (&sym->ts, &sym->attr, &sym->as);
1849 : :
1850 : : return true;
1851 : : }
1852 : :
1853 : :
1854 : : /* Set character constant to the given length. The constant will be padded or
1855 : : truncated. If we're inside an array constructor without a typespec, we
1856 : : additionally check that all elements have the same length; check_len -1
1857 : : means no checking. */
1858 : :
1859 : : void
1860 : 12741 : gfc_set_constant_character_len (gfc_charlen_t len, gfc_expr *expr,
1861 : : gfc_charlen_t check_len)
1862 : : {
1863 : 12741 : gfc_char_t *s;
1864 : 12741 : gfc_charlen_t slen;
1865 : :
1866 : 12741 : if (expr->ts.type != BT_CHARACTER)
1867 : : return;
1868 : :
1869 : 12740 : if (expr->expr_type != EXPR_CONSTANT)
1870 : : {
1871 : 1 : gfc_error_now ("CHARACTER length must be a constant at %L", &expr->where);
1872 : 1 : return;
1873 : : }
1874 : :
1875 : 12739 : slen = expr->value.character.length;
1876 : 12739 : if (len != slen)
1877 : : {
1878 : 1586 : s = gfc_get_wide_string (len + 1);
1879 : 1586 : memcpy (s, expr->value.character.string,
1880 : 1586 : MIN (len, slen) * sizeof (gfc_char_t));
1881 : 1586 : if (len > slen)
1882 : 1420 : gfc_wide_memset (&s[slen], ' ', len - slen);
1883 : :
1884 : 1586 : if (warn_character_truncation && slen > len)
1885 : 1 : gfc_warning_now (OPT_Wcharacter_truncation,
1886 : : "CHARACTER expression at %L is being truncated "
1887 : : "(%ld/%ld)", &expr->where,
1888 : : (long) slen, (long) len);
1889 : :
1890 : : /* Apply the standard by 'hand' otherwise it gets cleared for
1891 : : initializers. */
1892 : 1586 : if (check_len != -1 && slen != check_len
1893 : 6 : && !(gfc_option.allow_std & GFC_STD_GNU))
1894 : 0 : gfc_error_now ("The CHARACTER elements of the array constructor "
1895 : : "at %L must have the same length (%ld/%ld)",
1896 : : &expr->where, (long) slen,
1897 : : (long) check_len);
1898 : :
1899 : 1586 : s[len] = '\0';
1900 : 1586 : free (expr->value.character.string);
1901 : 1586 : expr->value.character.string = s;
1902 : 1586 : expr->value.character.length = len;
1903 : : /* If explicit representation was given, clear it
1904 : : as it is no longer needed after padding. */
1905 : 1586 : if (expr->representation.length)
1906 : : {
1907 : 80 : expr->representation.length = 0;
1908 : 80 : free (expr->representation.string);
1909 : 80 : expr->representation.string = NULL;
1910 : : }
1911 : : }
1912 : : }
1913 : :
1914 : :
1915 : : /* Function to create and update the enumerator history
1916 : : using the information passed as arguments.
1917 : : Pointer "max_enum" is also updated, to point to
1918 : : enum history node containing largest initializer.
1919 : :
1920 : : SYM points to the symbol node of enumerator.
1921 : : INIT points to its enumerator value. */
1922 : :
1923 : : static void
1924 : 543 : create_enum_history (gfc_symbol *sym, gfc_expr *init)
1925 : : {
1926 : 543 : enumerator_history *new_enum_history;
1927 : 543 : gcc_assert (sym != NULL && init != NULL);
1928 : :
1929 : 543 : new_enum_history = XCNEW (enumerator_history);
1930 : :
1931 : 543 : new_enum_history->sym = sym;
1932 : 543 : new_enum_history->initializer = init;
1933 : 543 : new_enum_history->next = NULL;
1934 : :
1935 : 543 : if (enum_history == NULL)
1936 : : {
1937 : 160 : enum_history = new_enum_history;
1938 : 160 : max_enum = enum_history;
1939 : : }
1940 : : else
1941 : : {
1942 : 383 : new_enum_history->next = enum_history;
1943 : 383 : enum_history = new_enum_history;
1944 : :
1945 : 383 : if (mpz_cmp (max_enum->initializer->value.integer,
1946 : 383 : new_enum_history->initializer->value.integer) < 0)
1947 : 381 : max_enum = new_enum_history;
1948 : : }
1949 : 543 : }
1950 : :
1951 : :
1952 : : /* Function to free enum kind history. */
1953 : :
1954 : : void
1955 : 175 : gfc_free_enum_history (void)
1956 : : {
1957 : 175 : enumerator_history *current = enum_history;
1958 : 175 : enumerator_history *next;
1959 : :
1960 : 718 : while (current != NULL)
1961 : : {
1962 : 543 : next = current->next;
1963 : 543 : free (current);
1964 : 543 : current = next;
1965 : : }
1966 : 175 : max_enum = NULL;
1967 : 175 : enum_history = NULL;
1968 : 175 : }
1969 : :
1970 : :
1971 : : /* Function to fix initializer character length if the length of the
1972 : : symbol or component is constant. */
1973 : :
1974 : : static bool
1975 : 2622 : fix_initializer_charlen (gfc_typespec *ts, gfc_expr *init)
1976 : : {
1977 : 2622 : if (!gfc_specification_expr (ts->u.cl->length))
1978 : : return false;
1979 : :
1980 : 2622 : int k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
1981 : :
1982 : : /* resolve_charlen will complain later on if the length
1983 : : is too large. Just skip the initialization in that case. */
1984 : 2622 : if (mpz_cmp (ts->u.cl->length->value.integer,
1985 : 2622 : gfc_integer_kinds[k].huge) <= 0)
1986 : : {
1987 : 2621 : HOST_WIDE_INT len
1988 : 2621 : = gfc_mpz_get_hwi (ts->u.cl->length->value.integer);
1989 : :
1990 : 2621 : if (init->expr_type == EXPR_CONSTANT)
1991 : 1890 : gfc_set_constant_character_len (len, init, -1);
1992 : 731 : else if (init->expr_type == EXPR_ARRAY)
1993 : : {
1994 : 730 : gfc_constructor *cons;
1995 : :
1996 : : /* Build a new charlen to prevent simplification from
1997 : : deleting the length before it is resolved. */
1998 : 730 : init->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1999 : 730 : init->ts.u.cl->length = gfc_copy_expr (ts->u.cl->length);
2000 : 730 : cons = gfc_constructor_first (init->value.constructor);
2001 : 4858 : for (; cons; cons = gfc_constructor_next (cons))
2002 : 3398 : gfc_set_constant_character_len (len, cons->expr, -1);
2003 : : }
2004 : : }
2005 : :
2006 : : return true;
2007 : : }
2008 : :
2009 : :
2010 : : /* Function called by variable_decl() that adds an initialization
2011 : : expression to a symbol. */
2012 : :
2013 : : static bool
2014 : 253684 : add_init_expr_to_sym (const char *name, gfc_expr **initp, locus *var_locus)
2015 : : {
2016 : 253684 : symbol_attribute attr;
2017 : 253684 : gfc_symbol *sym;
2018 : 253684 : gfc_expr *init;
2019 : :
2020 : 253684 : init = *initp;
2021 : 253684 : if (find_special (name, &sym, false))
2022 : : return false;
2023 : :
2024 : 253684 : attr = sym->attr;
2025 : :
2026 : : /* If this symbol is confirming an implicit parameter type,
2027 : : then an initialization expression is not allowed. */
2028 : 253684 : if (attr.flavor == FL_PARAMETER && sym->value != NULL)
2029 : : {
2030 : 1 : if (*initp != NULL)
2031 : : {
2032 : 0 : gfc_error ("Initializer not allowed for PARAMETER %qs at %C",
2033 : : sym->name);
2034 : 0 : return false;
2035 : : }
2036 : : else
2037 : : return true;
2038 : : }
2039 : :
2040 : 253683 : if (init == NULL)
2041 : : {
2042 : : /* An initializer is required for PARAMETER declarations. */
2043 : 222990 : if (attr.flavor == FL_PARAMETER)
2044 : : {
2045 : 1 : gfc_error ("PARAMETER at %L is missing an initializer", var_locus);
2046 : 1 : return false;
2047 : : }
2048 : : }
2049 : : else
2050 : : {
2051 : : /* If a variable appears in a DATA block, it cannot have an
2052 : : initializer. */
2053 : 30693 : if (sym->attr.data)
2054 : : {
2055 : 0 : gfc_error ("Variable %qs at %C with an initializer already "
2056 : : "appears in a DATA statement", sym->name);
2057 : 0 : return false;
2058 : : }
2059 : :
2060 : : /* Check if the assignment can happen. This has to be put off
2061 : : until later for derived type variables and procedure pointers. */
2062 : 29636 : if (!gfc_bt_struct (sym->ts.type) && !gfc_bt_struct (init->ts.type)
2063 : 29613 : && sym->ts.type != BT_CLASS && init->ts.type != BT_CLASS
2064 : 29563 : && !sym->attr.proc_pointer
2065 : 60172 : && !gfc_check_assign_symbol (sym, NULL, init))
2066 : : return false;
2067 : :
2068 : 30662 : if (sym->ts.type == BT_CHARACTER && sym->ts.u.cl
2069 : 3246 : && init->ts.type == BT_CHARACTER)
2070 : : {
2071 : : /* Update symbol character length according initializer. */
2072 : 3136 : if (!gfc_check_assign_symbol (sym, NULL, init))
2073 : : return false;
2074 : :
2075 : 3136 : if (sym->ts.u.cl->length == NULL)
2076 : : {
2077 : 823 : gfc_charlen_t clen;
2078 : : /* If there are multiple CHARACTER variables declared on the
2079 : : same line, we don't want them to share the same length. */
2080 : 823 : sym->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
2081 : :
2082 : 823 : if (sym->attr.flavor == FL_PARAMETER)
2083 : : {
2084 : 814 : if (init->expr_type == EXPR_CONSTANT)
2085 : : {
2086 : 545 : clen = init->value.character.length;
2087 : 545 : sym->ts.u.cl->length
2088 : 545 : = gfc_get_int_expr (gfc_charlen_int_kind,
2089 : : NULL, clen);
2090 : : }
2091 : 269 : else if (init->expr_type == EXPR_ARRAY)
2092 : : {
2093 : 269 : if (init->ts.u.cl && init->ts.u.cl->length)
2094 : : {
2095 : 257 : const gfc_expr *length = init->ts.u.cl->length;
2096 : 257 : if (length->expr_type != EXPR_CONSTANT)
2097 : : {
2098 : 1 : gfc_error ("Cannot initialize parameter array "
2099 : : "at %L "
2100 : : "with variable length elements",
2101 : : &sym->declared_at);
2102 : 1 : return false;
2103 : : }
2104 : 256 : clen = mpz_get_si (length->value.integer);
2105 : 256 : }
2106 : 12 : else if (init->value.constructor)
2107 : : {
2108 : 12 : gfc_constructor *c;
2109 : 12 : c = gfc_constructor_first (init->value.constructor);
2110 : 12 : clen = c->expr->value.character.length;
2111 : : }
2112 : : else
2113 : 0 : gcc_unreachable ();
2114 : 268 : sym->ts.u.cl->length
2115 : 268 : = gfc_get_int_expr (gfc_charlen_int_kind,
2116 : : NULL, clen);
2117 : : }
2118 : 0 : else if (init->ts.u.cl && init->ts.u.cl->length)
2119 : 0 : sym->ts.u.cl->length =
2120 : 0 : gfc_copy_expr (init->ts.u.cl->length);
2121 : : }
2122 : : }
2123 : : /* Update initializer character length according to symbol. */
2124 : 2313 : else if (sym->ts.u.cl->length->expr_type == EXPR_CONSTANT
2125 : 2313 : && !fix_initializer_charlen (&sym->ts, init))
2126 : : return false;
2127 : : }
2128 : :
2129 : 30661 : if (sym->attr.flavor == FL_PARAMETER && sym->attr.dimension && sym->as
2130 : 3592 : && sym->as->rank && init->rank && init->rank != sym->as->rank)
2131 : : {
2132 : 3 : gfc_error ("Rank mismatch of array at %L and its initializer "
2133 : : "(%d/%d)", &sym->declared_at, sym->as->rank, init->rank);
2134 : 3 : return false;
2135 : : }
2136 : :
2137 : : /* If sym is implied-shape, set its upper bounds from init. */
2138 : 30658 : if (sym->attr.flavor == FL_PARAMETER && sym->attr.dimension
2139 : 3589 : && sym->as->type == AS_IMPLIED_SHAPE)
2140 : : {
2141 : 848 : int dim;
2142 : :
2143 : 848 : if (init->rank == 0)
2144 : : {
2145 : 1 : gfc_error ("Cannot initialize implied-shape array at %L"
2146 : : " with scalar", &sym->declared_at);
2147 : 1 : return false;
2148 : : }
2149 : :
2150 : : /* The shape may be NULL for EXPR_ARRAY, set it. */
2151 : 847 : if (init->shape == NULL)
2152 : : {
2153 : 5 : if (init->expr_type != EXPR_ARRAY)
2154 : : {
2155 : 2 : gfc_error ("Bad shape of initializer at %L", &init->where);
2156 : 2 : return false;
2157 : : }
2158 : :
2159 : 3 : init->shape = gfc_get_shape (1);
2160 : 3 : if (!gfc_array_size (init, &init->shape[0]))
2161 : : {
2162 : 1 : gfc_error ("Cannot determine shape of initializer at %L",
2163 : : &init->where);
2164 : 1 : free (init->shape);
2165 : 1 : init->shape = NULL;
2166 : 1 : return false;
2167 : : }
2168 : : }
2169 : :
2170 : 1777 : for (dim = 0; dim < sym->as->rank; ++dim)
2171 : : {
2172 : 934 : int k;
2173 : 934 : gfc_expr *e, *lower;
2174 : :
2175 : 934 : lower = sym->as->lower[dim];
2176 : :
2177 : : /* If the lower bound is an array element from another
2178 : : parameterized array, then it is marked with EXPR_VARIABLE and
2179 : : is an initialization expression. Try to reduce it. */
2180 : 934 : if (lower->expr_type == EXPR_VARIABLE)
2181 : 7 : gfc_reduce_init_expr (lower);
2182 : :
2183 : 934 : if (lower->expr_type == EXPR_CONSTANT)
2184 : : {
2185 : : /* All dimensions must be without upper bound. */
2186 : 933 : gcc_assert (!sym->as->upper[dim]);
2187 : :
2188 : 933 : k = lower->ts.kind;
2189 : 933 : e = gfc_get_constant_expr (BT_INTEGER, k, &sym->declared_at);
2190 : 933 : mpz_add (e->value.integer, lower->value.integer,
2191 : 933 : init->shape[dim]);
2192 : 933 : mpz_sub_ui (e->value.integer, e->value.integer, 1);
2193 : 933 : sym->as->upper[dim] = e;
2194 : : }
2195 : : else
2196 : : {
2197 : 1 : gfc_error ("Non-constant lower bound in implied-shape"
2198 : : " declaration at %L", &lower->where);
2199 : 1 : return false;
2200 : : }
2201 : : }
2202 : :
2203 : 843 : sym->as->type = AS_EXPLICIT;
2204 : : }
2205 : :
2206 : : /* Ensure that explicit bounds are simplified. */
2207 : 30653 : if (sym->attr.flavor == FL_PARAMETER && sym->attr.dimension
2208 : 3584 : && sym->as->type == AS_EXPLICIT)
2209 : : {
2210 : 7966 : for (int dim = 0; dim < sym->as->rank; ++dim)
2211 : : {
2212 : 4394 : gfc_expr *e;
2213 : :
2214 : 4394 : e = sym->as->lower[dim];
2215 : 4394 : if (e->expr_type != EXPR_CONSTANT)
2216 : 12 : gfc_reduce_init_expr (e);
2217 : :
2218 : 4394 : e = sym->as->upper[dim];
2219 : 4394 : if (e->expr_type != EXPR_CONSTANT)
2220 : 96 : gfc_reduce_init_expr (e);
2221 : : }
2222 : : }
2223 : :
2224 : : /* Need to check if the expression we initialized this
2225 : : to was one of the iso_c_binding named constants. If so,
2226 : : and we're a parameter (constant), let it be iso_c.
2227 : : For example:
2228 : : integer(c_int), parameter :: my_int = c_int
2229 : : integer(my_int) :: my_int_2
2230 : : If we mark my_int as iso_c (since we can see it's value
2231 : : is equal to one of the named constants), then my_int_2
2232 : : will be considered C interoperable. */
2233 : 30653 : if (sym->ts.type != BT_CHARACTER && !gfc_bt_struct (sym->ts.type))
2234 : : {
2235 : 26354 : sym->ts.is_iso_c |= init->ts.is_iso_c;
2236 : 26354 : sym->ts.is_c_interop |= init->ts.is_c_interop;
2237 : : /* attr bits needed for module files. */
2238 : 26354 : sym->attr.is_iso_c |= init->ts.is_iso_c;
2239 : 26354 : sym->attr.is_c_interop |= init->ts.is_c_interop;
2240 : 26354 : if (init->ts.is_iso_c)
2241 : 91 : sym->ts.f90_type = init->ts.f90_type;
2242 : : }
2243 : :
2244 : : /* Catch the case: type(t), parameter :: x = z'1'. */
2245 : 30653 : if (sym->ts.type == BT_DERIVED && init->ts.type == BT_BOZ)
2246 : : {
2247 : 1 : gfc_error ("Entity %qs at %L is incompatible with a BOZ "
2248 : : "literal constant", name, &sym->declared_at);
2249 : 1 : return false;
2250 : : }
2251 : :
2252 : : /* Add initializer. Make sure we keep the ranks sane. */
2253 : 30652 : if (sym->attr.dimension && init->rank == 0)
2254 : : {
2255 : 1184 : mpz_t size;
2256 : 1184 : gfc_expr *array;
2257 : 1184 : int n;
2258 : 1184 : if (sym->attr.flavor == FL_PARAMETER
2259 : 448 : && gfc_is_constant_expr (init)
2260 : 448 : && (init->expr_type == EXPR_CONSTANT
2261 : 31 : || init->expr_type == EXPR_STRUCTURE)
2262 : 1632 : && spec_size (sym->as, &size))
2263 : : {
2264 : 444 : array = gfc_get_array_expr (init->ts.type, init->ts.kind,
2265 : : &init->where);
2266 : 444 : if (init->ts.type == BT_DERIVED)
2267 : 31 : array->ts.u.derived = init->ts.u.derived;
2268 : 67579 : for (n = 0; n < (int)mpz_get_si (size); n++)
2269 : 133967 : gfc_constructor_append_expr (&array->value.constructor,
2270 : : n == 0
2271 : : ? init
2272 : 66832 : : gfc_copy_expr (init),
2273 : : &init->where);
2274 : :
2275 : 444 : array->shape = gfc_get_shape (sym->as->rank);
2276 : 1014 : for (n = 0; n < sym->as->rank; n++)
2277 : 570 : spec_dimen_size (sym->as, n, &array->shape[n]);
2278 : :
2279 : 444 : init = array;
2280 : 444 : mpz_clear (size);
2281 : : }
2282 : 1184 : init->rank = sym->as->rank;
2283 : 1184 : init->corank = sym->as->corank;
2284 : : }
2285 : :
2286 : 30652 : sym->value = init;
2287 : 30652 : if (sym->attr.save == SAVE_NONE)
2288 : 26421 : sym->attr.save = SAVE_IMPLICIT;
2289 : 30652 : *initp = NULL;
2290 : : }
2291 : :
2292 : : return true;
2293 : : }
2294 : :
2295 : :
2296 : : /* Function called by variable_decl() that adds a name to a structure
2297 : : being built. */
2298 : :
2299 : : static bool
2300 : 16314 : build_struct (const char *name, gfc_charlen *cl, gfc_expr **init,
2301 : : gfc_array_spec **as)
2302 : : {
2303 : 16314 : gfc_state_data *s;
2304 : 16314 : gfc_component *c;
2305 : :
2306 : : /* F03:C438/C439. If the current symbol is of the same derived type that we're
2307 : : constructing, it must have the pointer attribute. */
2308 : 16314 : if ((current_ts.type == BT_DERIVED || current_ts.type == BT_CLASS)
2309 : 2998 : && current_ts.u.derived == gfc_current_block ()
2310 : 236 : && current_attr.pointer == 0)
2311 : : {
2312 : 66 : if (current_attr.allocatable
2313 : 66 : && !gfc_notify_std(GFC_STD_F2008, "Component at %C "
2314 : : "must have the POINTER attribute"))
2315 : : {
2316 : : return false;
2317 : : }
2318 : 65 : else if (current_attr.allocatable == 0)
2319 : : {
2320 : 0 : gfc_error ("Component at %C must have the POINTER attribute");
2321 : 0 : return false;
2322 : : }
2323 : : }
2324 : :
2325 : : /* F03:C437. */
2326 : 16313 : if (current_ts.type == BT_CLASS
2327 : 777 : && !(current_attr.pointer || current_attr.allocatable))
2328 : : {
2329 : 5 : gfc_error ("Component %qs with CLASS at %C must be allocatable "
2330 : : "or pointer", name);
2331 : 5 : return false;
2332 : : }
2333 : :
2334 : 16308 : if (gfc_current_block ()->attr.pointer && (*as)->rank != 0)
2335 : : {
2336 : 0 : if ((*as)->type != AS_DEFERRED && (*as)->type != AS_EXPLICIT)
2337 : : {
2338 : 0 : gfc_error ("Array component of structure at %C must have explicit "
2339 : : "or deferred shape");
2340 : 0 : return false;
2341 : : }
2342 : : }
2343 : :
2344 : : /* If we are in a nested union/map definition, gfc_add_component will not
2345 : : properly find repeated components because:
2346 : : (i) gfc_add_component does a flat search, where components of unions
2347 : : and maps are implicity chained so nested components may conflict.
2348 : : (ii) Unions and maps are not linked as components of their parent
2349 : : structures until after they are parsed.
2350 : : For (i) we use gfc_find_component which searches recursively, and for (ii)
2351 : : we search each block directly from the parse stack until we find the top
2352 : : level structure. */
2353 : :
2354 : 16308 : s = gfc_state_stack;
2355 : 16308 : if (s->state == COMP_UNION || s->state == COMP_MAP)
2356 : : {
2357 : 1434 : while (s->state == COMP_UNION || gfc_comp_struct (s->state))
2358 : : {
2359 : 1434 : c = gfc_find_component (s->sym, name, true, true, NULL);
2360 : 1434 : if (c != NULL)
2361 : : {
2362 : 0 : gfc_error_now ("Component %qs at %C already declared at %L",
2363 : : name, &c->loc);
2364 : 0 : return false;
2365 : : }
2366 : : /* Break after we've searched the entire chain. */
2367 : 1434 : if (s->state == COMP_DERIVED || s->state == COMP_STRUCTURE)
2368 : : break;
2369 : 1000 : s = s->previous;
2370 : : }
2371 : : }
2372 : :
2373 : 16308 : if (!gfc_add_component (gfc_current_block(), name, &c))
2374 : : return false;
2375 : :
2376 : 16302 : c->ts = current_ts;
2377 : 16302 : if (c->ts.type == BT_CHARACTER)
2378 : 1842 : c->ts.u.cl = cl;
2379 : :
2380 : 16302 : if (c->ts.type != BT_CLASS && c->ts.type != BT_DERIVED
2381 : 13310 : && (c->ts.kind == 0 || c->ts.type == BT_CHARACTER)
2382 : 1919 : && saved_kind_expr != NULL)
2383 : 91 : c->kind_expr = gfc_copy_expr (saved_kind_expr);
2384 : :
2385 : 16302 : c->attr = current_attr;
2386 : :
2387 : 16302 : c->initializer = *init;
2388 : 16302 : *init = NULL;
2389 : :
2390 : : /* Update initializer character length according to component. */
2391 : 1842 : if (c->ts.type == BT_CHARACTER && c->ts.u.cl->length
2392 : 1474 : && c->ts.u.cl->length->expr_type == EXPR_CONSTANT
2393 : 1428 : && c->initializer && c->initializer->ts.type == BT_CHARACTER
2394 : 16614 : && !fix_initializer_charlen (&c->ts, c->initializer))
2395 : : return false;
2396 : :
2397 : 16302 : c->as = *as;
2398 : 16302 : if (c->as != NULL)
2399 : : {
2400 : 4092 : if (c->as->corank)
2401 : 93 : c->attr.codimension = 1;
2402 : 4092 : if (c->as->rank)
2403 : 4023 : c->attr.dimension = 1;
2404 : : }
2405 : 16302 : *as = NULL;
2406 : :
2407 : 16302 : gfc_apply_init (&c->ts, &c->attr, c->initializer);
2408 : :
2409 : : /* Check array components. */
2410 : 16302 : if (!c->attr.dimension)
2411 : 12279 : goto scalar;
2412 : :
2413 : 4023 : if (c->attr.pointer)
2414 : : {
2415 : 615 : if (c->as->type != AS_DEFERRED)
2416 : : {
2417 : 5 : gfc_error ("Pointer array component of structure at %C must have a "
2418 : : "deferred shape");
2419 : 5 : return false;
2420 : : }
2421 : : }
2422 : 3408 : else if (c->attr.allocatable)
2423 : : {
2424 : 1931 : const char *err = G_("Allocatable component of structure at %C must have "
2425 : : "a deferred shape");
2426 : 1931 : if (c->as->type != AS_DEFERRED)
2427 : : {
2428 : 14 : if (c->ts.type == BT_CLASS || c->ts.type == BT_DERIVED)
2429 : : {
2430 : : /* Issue an immediate error and allow this component to pass for
2431 : : the sake of clean error recovery. Set the error flag for the
2432 : : containing derived type so that finalizers are not built. */
2433 : 4 : gfc_error_now (err);
2434 : 4 : s->sym->error = 1;
2435 : 4 : c->as->type = AS_DEFERRED;
2436 : : }
2437 : : else
2438 : : {
2439 : 10 : gfc_error (err);
2440 : 10 : return false;
2441 : : }
2442 : : }
2443 : : }
2444 : : else
2445 : : {
2446 : 1477 : if (c->as->type != AS_EXPLICIT)
2447 : : {
2448 : 7 : gfc_error ("Array component of structure at %C must have an "
2449 : : "explicit shape");
2450 : 7 : return false;
2451 : : }
2452 : : }
2453 : :
2454 : 1470 : scalar:
2455 : 16280 : if (c->ts.type == BT_CLASS)
2456 : 769 : return gfc_build_class_symbol (&c->ts, &c->attr, &c->as);
2457 : :
2458 : 15511 : if (c->attr.pdt_kind || c->attr.pdt_len)
2459 : : {
2460 : 310 : gfc_symbol *sym;
2461 : 310 : gfc_find_symbol (c->name, gfc_current_block ()->f2k_derived,
2462 : : 0, &sym);
2463 : 310 : if (sym == NULL)
2464 : : {
2465 : 0 : gfc_error ("Type parameter %qs at %C has no corresponding entry "
2466 : : "in the type parameter name list at %L",
2467 : 0 : c->name, &gfc_current_block ()->declared_at);
2468 : 0 : return false;
2469 : : }
2470 : 310 : sym->ts = c->ts;
2471 : 310 : sym->attr.pdt_kind = c->attr.pdt_kind;
2472 : 310 : sym->attr.pdt_len = c->attr.pdt_len;
2473 : 310 : if (c->initializer)
2474 : 104 : sym->value = gfc_copy_expr (c->initializer);
2475 : 310 : sym->attr.flavor = FL_VARIABLE;
2476 : : }
2477 : :
2478 : 15511 : if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
2479 : 2220 : && c->ts.u.derived && c->ts.u.derived->attr.pdt_template
2480 : 39 : && decl_type_param_list)
2481 : 39 : c->param_list = gfc_copy_actual_arglist (decl_type_param_list);
2482 : :
2483 : : return true;
2484 : : }
2485 : :
2486 : :
2487 : : /* Match a 'NULL()', and possibly take care of some side effects. */
2488 : :
2489 : : match
2490 : 1553 : gfc_match_null (gfc_expr **result)
2491 : : {
2492 : 1553 : gfc_symbol *sym;
2493 : 1553 : match m, m2 = MATCH_NO;
2494 : :
2495 : 1553 : if ((m = gfc_match (" null ( )")) == MATCH_ERROR)
2496 : : return MATCH_ERROR;
2497 : :
2498 : 1553 : if (m == MATCH_NO)
2499 : : {
2500 : 503 : locus old_loc;
2501 : 503 : char name[GFC_MAX_SYMBOL_LEN + 1];
2502 : :
2503 : 503 : if ((m2 = gfc_match (" null (")) != MATCH_YES)
2504 : 497 : return m2;
2505 : :
2506 : 6 : old_loc = gfc_current_locus;
2507 : 6 : if ((m2 = gfc_match (" %n ) ", name)) == MATCH_ERROR)
2508 : : return MATCH_ERROR;
2509 : 6 : if (m2 != MATCH_YES
2510 : 6 : && ((m2 = gfc_match (" mold = %n )", name)) == MATCH_ERROR))
2511 : : return MATCH_ERROR;
2512 : 6 : if (m2 == MATCH_NO)
2513 : : {
2514 : 0 : gfc_current_locus = old_loc;
2515 : 0 : return MATCH_NO;
2516 : : }
2517 : : }
2518 : :
2519 : : /* The NULL symbol now has to be/become an intrinsic function. */
2520 : 1056 : if (gfc_get_symbol ("null", NULL, &sym))
2521 : : {
2522 : 0 : gfc_error ("NULL() initialization at %C is ambiguous");
2523 : 0 : return MATCH_ERROR;
2524 : : }
2525 : :
2526 : 1056 : gfc_intrinsic_symbol (sym);
2527 : :
2528 : 1056 : if (sym->attr.proc != PROC_INTRINSIC
2529 : 766 : && !(sym->attr.use_assoc && sym->attr.intrinsic)
2530 : 1821 : && (!gfc_add_procedure(&sym->attr, PROC_INTRINSIC, sym->name, NULL)
2531 : 765 : || !gfc_add_function (&sym->attr, sym->name, NULL)))
2532 : 0 : return MATCH_ERROR;
2533 : :
2534 : 1056 : *result = gfc_get_null_expr (&gfc_current_locus);
2535 : :
2536 : : /* Invalid per F2008, C512. */
2537 : 1056 : if (m2 == MATCH_YES)
2538 : : {
2539 : 6 : gfc_error ("NULL() initialization at %C may not have MOLD");
2540 : 6 : return MATCH_ERROR;
2541 : : }
2542 : :
2543 : : return MATCH_YES;
2544 : : }
2545 : :
2546 : :
2547 : : /* Match the initialization expr for a data pointer or procedure pointer. */
2548 : :
2549 : : static match
2550 : 1217 : match_pointer_init (gfc_expr **init, int procptr)
2551 : : {
2552 : 1217 : match m;
2553 : :
2554 : 1217 : if (gfc_pure (NULL) && !gfc_comp_struct (gfc_state_stack->state))
2555 : : {
2556 : 1 : gfc_error ("Initialization of pointer at %C is not allowed in "
2557 : : "a PURE procedure");
2558 : 1 : return MATCH_ERROR;
2559 : : }
2560 : 1216 : gfc_unset_implicit_pure (gfc_current_ns->proc_name);
2561 : :
2562 : : /* Match NULL() initialization. */
2563 : 1216 : m = gfc_match_null (init);
2564 : 1216 : if (m != MATCH_NO)
2565 : : return m;
2566 : :
2567 : : /* Match non-NULL initialization. */
2568 : 168 : gfc_matching_ptr_assignment = !procptr;
2569 : 168 : gfc_matching_procptr_assignment = procptr;
2570 : 168 : m = gfc_match_rvalue (init);
2571 : 168 : gfc_matching_ptr_assignment = 0;
2572 : 168 : gfc_matching_procptr_assignment = 0;
2573 : 168 : if (m == MATCH_ERROR)
2574 : : return MATCH_ERROR;
2575 : 167 : else if (m == MATCH_NO)
2576 : : {
2577 : 2 : gfc_error ("Error in pointer initialization at %C");
2578 : 2 : return MATCH_ERROR;
2579 : : }
2580 : :
2581 : 165 : if (!procptr && !gfc_resolve_expr (*init))
2582 : : return MATCH_ERROR;
2583 : :
2584 : 164 : if (!gfc_notify_std (GFC_STD_F2008, "non-NULL pointer "
2585 : : "initialization at %C"))
2586 : : return MATCH_ERROR;
2587 : :
2588 : : return MATCH_YES;
2589 : : }
2590 : :
2591 : :
2592 : : static bool
2593 : 272428 : check_function_name (char *name)
2594 : : {
2595 : : /* In functions that have a RESULT variable defined, the function name always
2596 : : refers to function calls. Therefore, the name is not allowed to appear in
2597 : : specification statements. When checking this, be careful about
2598 : : 'hidden' procedure pointer results ('ppr@'). */
2599 : :
2600 : 272428 : if (gfc_current_state () == COMP_FUNCTION)
2601 : : {
2602 : 43431 : gfc_symbol *block = gfc_current_block ();
2603 : 43431 : if (block && block->result && block->result != block
2604 : 14343 : && strcmp (block->result->name, "ppr@") != 0
2605 : 14284 : && strcmp (block->name, name) == 0)
2606 : : {
2607 : 9 : gfc_error ("RESULT variable %qs at %L prohibits FUNCTION name %qs at %C "
2608 : : "from appearing in a specification statement",
2609 : : block->result->name, &block->result->declared_at, name);
2610 : 9 : return false;
2611 : : }
2612 : : }
2613 : :
2614 : : return true;
2615 : : }
2616 : :
2617 : :
2618 : : /* Match a variable name with an optional initializer. When this
2619 : : subroutine is called, a variable is expected to be parsed next.
2620 : : Depending on what is happening at the moment, updates either the
2621 : : symbol table or the current interface. */
2622 : :
2623 : : static match
2624 : 262395 : variable_decl (int elem)
2625 : : {
2626 : 262395 : char name[GFC_MAX_SYMBOL_LEN + 1];
2627 : 262395 : static unsigned int fill_id = 0;
2628 : 262395 : gfc_expr *initializer, *char_len;
2629 : 262395 : gfc_array_spec *as;
2630 : 262395 : gfc_array_spec *cp_as; /* Extra copy for Cray Pointees. */
2631 : 262395 : gfc_charlen *cl;
2632 : 262395 : bool cl_deferred;
2633 : 262395 : locus var_locus;
2634 : 262395 : match m;
2635 : 262395 : bool t;
2636 : 262395 : gfc_symbol *sym;
2637 : 262395 : char c;
2638 : :
2639 : 262395 : initializer = NULL;
2640 : 262395 : as = NULL;
2641 : 262395 : cp_as = NULL;
2642 : :
2643 : : /* When we get here, we've just matched a list of attributes and
2644 : : maybe a type and a double colon. The next thing we expect to see
2645 : : is the name of the symbol. */
2646 : :
2647 : : /* If we are parsing a structure with legacy support, we allow the symbol
2648 : : name to be '%FILL' which gives it an anonymous (inaccessible) name. */
2649 : 262395 : m = MATCH_NO;
2650 : 262395 : gfc_gobble_whitespace ();
2651 : 262395 : var_locus = gfc_current_locus;
2652 : 262395 : c = gfc_peek_ascii_char ();
2653 : 262395 : if (c == '%')
2654 : : {
2655 : 12 : gfc_next_ascii_char (); /* Burn % character. */
2656 : 12 : m = gfc_match ("fill");
2657 : 12 : if (m == MATCH_YES)
2658 : : {
2659 : 11 : if (gfc_current_state () != COMP_STRUCTURE)
2660 : : {
2661 : 2 : if (flag_dec_structure)
2662 : 1 : gfc_error ("%qs not allowed outside STRUCTURE at %C", "%FILL");
2663 : : else
2664 : 1 : gfc_error ("%qs at %C is a DEC extension, enable with "
2665 : : "%<-fdec-structure%>", "%FILL");
2666 : 2 : m = MATCH_ERROR;
2667 : 2 : goto cleanup;
2668 : : }
2669 : :
2670 : 9 : if (attr_seen)
2671 : : {
2672 : 1 : gfc_error ("%qs entity cannot have attributes at %C", "%FILL");
2673 : 1 : m = MATCH_ERROR;
2674 : 1 : goto cleanup;
2675 : : }
2676 : :
2677 : : /* %FILL components are given invalid fortran names. */
2678 : 8 : snprintf (name, GFC_MAX_SYMBOL_LEN + 1, "%%FILL%u", fill_id++);
2679 : : }
2680 : : else
2681 : : {
2682 : 1 : gfc_error ("Invalid character %qc in variable name at %C", c);
2683 : 1 : return MATCH_ERROR;
2684 : : }
2685 : : }
2686 : : else
2687 : : {
2688 : 262383 : m = gfc_match_name (name);
2689 : 262382 : if (m != MATCH_YES)
2690 : 10 : goto cleanup;
2691 : : }
2692 : :
2693 : : /* Now we could see the optional array spec. or character length. */
2694 : 262380 : m = gfc_match_array_spec (&as, true, true);
2695 : 262379 : if (m == MATCH_ERROR)
2696 : 56 : goto cleanup;
2697 : :
2698 : 262323 : if (m == MATCH_NO)
2699 : 204971 : as = gfc_copy_array_spec (current_as);
2700 : 57352 : else if (current_as
2701 : 57352 : && !merge_array_spec (current_as, as, true))
2702 : : {
2703 : 4 : m = MATCH_ERROR;
2704 : 4 : goto cleanup;
2705 : : }
2706 : :
2707 : 262319 : var_locus = gfc_get_location_range (NULL, 0, &var_locus, 1,
2708 : : &gfc_current_locus);
2709 : 262319 : if (flag_cray_pointer)
2710 : 3063 : cp_as = gfc_copy_array_spec (as);
2711 : :
2712 : : /* At this point, we know for sure if the symbol is PARAMETER and can thus
2713 : : determine (and check) whether it can be implied-shape. If it
2714 : : was parsed as assumed-size, change it because PARAMETERs cannot
2715 : : be assumed-size.
2716 : :
2717 : : An explicit-shape-array cannot appear under several conditions.
2718 : : That check is done here as well. */
2719 : 262319 : if (as)
2720 : : {
2721 : 79281 : if (as->type == AS_IMPLIED_SHAPE && current_attr.flavor != FL_PARAMETER)
2722 : : {
2723 : 2 : m = MATCH_ERROR;
2724 : 2 : gfc_error ("Non-PARAMETER symbol %qs at %L cannot be implied-shape",
2725 : : name, &var_locus);
2726 : 2 : goto cleanup;
2727 : : }
2728 : :
2729 : 79279 : if (as->type == AS_ASSUMED_SIZE && as->rank == 1
2730 : 5899 : && current_attr.flavor == FL_PARAMETER)
2731 : 812 : as->type = AS_IMPLIED_SHAPE;
2732 : :
2733 : 79279 : if (as->type == AS_IMPLIED_SHAPE
2734 : 79279 : && !gfc_notify_std (GFC_STD_F2008, "Implied-shape array at %L",
2735 : : &var_locus))
2736 : : {
2737 : 1 : m = MATCH_ERROR;
2738 : 1 : goto cleanup;
2739 : : }
2740 : :
2741 : 79278 : gfc_seen_div0 = false;
2742 : :
2743 : : /* F2018:C830 (R816) An explicit-shape-spec whose bounds are not
2744 : : constant expressions shall appear only in a subprogram, derived
2745 : : type definition, BLOCK construct, or interface body. */
2746 : 79278 : if (as->type == AS_EXPLICIT
2747 : 40444 : && gfc_current_state () != COMP_BLOCK
2748 : : && gfc_current_state () != COMP_DERIVED
2749 : : && gfc_current_state () != COMP_FUNCTION
2750 : : && gfc_current_state () != COMP_INTERFACE
2751 : : && gfc_current_state () != COMP_SUBROUTINE)
2752 : : {
2753 : : gfc_expr *e;
2754 : 48258 : bool not_constant = false;
2755 : :
2756 : 48258 : for (int i = 0; i < as->rank; i++)
2757 : : {
2758 : 27524 : e = gfc_copy_expr (as->lower[i]);
2759 : 27524 : if (!gfc_resolve_expr (e) && gfc_seen_div0)
2760 : : {
2761 : 0 : m = MATCH_ERROR;
2762 : 0 : goto cleanup;
2763 : : }
2764 : :
2765 : 27524 : gfc_simplify_expr (e, 0);
2766 : 27524 : if (e && (e->expr_type != EXPR_CONSTANT))
2767 : : {
2768 : : not_constant = true;
2769 : : break;
2770 : : }
2771 : 27524 : gfc_free_expr (e);
2772 : :
2773 : 27524 : e = gfc_copy_expr (as->upper[i]);
2774 : 27524 : if (!gfc_resolve_expr (e) && gfc_seen_div0)
2775 : : {
2776 : 4 : m = MATCH_ERROR;
2777 : 4 : goto cleanup;
2778 : : }
2779 : :
2780 : 27520 : gfc_simplify_expr (e, 0);
2781 : 27520 : if (e && (e->expr_type != EXPR_CONSTANT))
2782 : : {
2783 : : not_constant = true;
2784 : : break;
2785 : : }
2786 : 27507 : gfc_free_expr (e);
2787 : : }
2788 : :
2789 : 20747 : if (not_constant && e->ts.type != BT_INTEGER)
2790 : : {
2791 : 4 : gfc_error ("Explicit array shape at %C must be constant of "
2792 : : "INTEGER type and not %s type",
2793 : : gfc_basic_typename (e->ts.type));
2794 : 4 : m = MATCH_ERROR;
2795 : 4 : goto cleanup;
2796 : : }
2797 : 9 : if (not_constant)
2798 : : {
2799 : 9 : gfc_error ("Explicit shaped array with nonconstant bounds at %C");
2800 : 9 : m = MATCH_ERROR;
2801 : 9 : goto cleanup;
2802 : : }
2803 : : }
2804 : 79261 : if (as->type == AS_EXPLICIT)
2805 : : {
2806 : 96827 : for (int i = 0; i < as->rank; i++)
2807 : : {
2808 : 56400 : gfc_expr *e, *n;
2809 : 56400 : e = as->lower[i];
2810 : 56400 : if (e->expr_type != EXPR_CONSTANT)
2811 : : {
2812 : 445 : n = gfc_copy_expr (e);
2813 : 445 : if (!gfc_simplify_expr (n, 1) && gfc_seen_div0)
2814 : : {
2815 : 0 : m = MATCH_ERROR;
2816 : 0 : goto cleanup;
2817 : : }
2818 : :
2819 : 445 : if (n->expr_type == EXPR_CONSTANT)
2820 : 22 : gfc_replace_expr (e, n);
2821 : : else
2822 : 423 : gfc_free_expr (n);
2823 : : }
2824 : 56400 : e = as->upper[i];
2825 : 56400 : if (e->expr_type != EXPR_CONSTANT)
2826 : : {
2827 : 6441 : n = gfc_copy_expr (e);
2828 : 6441 : if (!gfc_simplify_expr (n, 1) && gfc_seen_div0)
2829 : : {
2830 : 0 : m = MATCH_ERROR;
2831 : 0 : goto cleanup;
2832 : : }
2833 : :
2834 : 6441 : if (n->expr_type == EXPR_CONSTANT)
2835 : 45 : gfc_replace_expr (e, n);
2836 : : else
2837 : 6396 : gfc_free_expr (n);
2838 : : }
2839 : : /* For an explicit-shape spec with constant bounds, ensure
2840 : : that the effective upper bound is not lower than the
2841 : : respective lower bound minus one. Otherwise adjust it so
2842 : : that the extent is trivially derived to be zero. */
2843 : 56400 : if (as->lower[i]->expr_type == EXPR_CONSTANT
2844 : 55977 : && as->upper[i]->expr_type == EXPR_CONSTANT
2845 : 49998 : && as->lower[i]->ts.type == BT_INTEGER
2846 : 49998 : && as->upper[i]->ts.type == BT_INTEGER
2847 : 49993 : && mpz_cmp (as->upper[i]->value.integer,
2848 : 49993 : as->lower[i]->value.integer) < 0)
2849 : 1205 : mpz_sub_ui (as->upper[i]->value.integer,
2850 : : as->lower[i]->value.integer, 1);
2851 : : }
2852 : : }
2853 : : }
2854 : :
2855 : 262299 : char_len = NULL;
2856 : 262299 : cl = NULL;
2857 : 262299 : cl_deferred = false;
2858 : :
2859 : 262299 : if (current_ts.type == BT_CHARACTER)
2860 : : {
2861 : 29886 : switch (match_char_length (&char_len, &cl_deferred, false))
2862 : : {
2863 : 435 : case MATCH_YES:
2864 : 435 : cl = gfc_new_charlen (gfc_current_ns, NULL);
2865 : :
2866 : 435 : cl->length = char_len;
2867 : 435 : break;
2868 : :
2869 : : /* Non-constant lengths need to be copied after the first
2870 : : element. Also copy assumed lengths. */
2871 : 29450 : case MATCH_NO:
2872 : 29450 : if (elem > 1
2873 : 3751 : && (current_ts.u.cl->length == NULL
2874 : 2595 : || current_ts.u.cl->length->expr_type != EXPR_CONSTANT))
2875 : : {
2876 : 1211 : cl = gfc_new_charlen (gfc_current_ns, NULL);
2877 : 1211 : cl->length = gfc_copy_expr (current_ts.u.cl->length);
2878 : : }
2879 : : else
2880 : 28239 : cl = current_ts.u.cl;
2881 : :
2882 : 29450 : cl_deferred = current_ts.deferred;
2883 : :
2884 : 29450 : break;
2885 : :
2886 : 1 : case MATCH_ERROR:
2887 : 1 : goto cleanup;
2888 : : }
2889 : : }
2890 : :
2891 : : /* The dummy arguments and result of the abbreviated form of MODULE
2892 : : PROCEDUREs, used in SUBMODULES should not be redefined. */
2893 : 262298 : if (gfc_current_ns->proc_name
2894 : 257809 : && gfc_current_ns->proc_name->abr_modproc_decl)
2895 : : {
2896 : 38 : gfc_find_symbol (name, gfc_current_ns, 1, &sym);
2897 : 38 : if (sym != NULL && (sym->attr.dummy || sym->attr.result))
2898 : : {
2899 : 2 : m = MATCH_ERROR;
2900 : 2 : gfc_error ("%qs at %L is a redefinition of the declaration "
2901 : : "in the corresponding interface for MODULE "
2902 : : "PROCEDURE %qs", sym->name, &var_locus,
2903 : 2 : gfc_current_ns->proc_name->name);
2904 : 2 : goto cleanup;
2905 : : }
2906 : : }
2907 : :
2908 : : /* %FILL components may not have initializers. */
2909 : 262296 : if (startswith (name, "%FILL") && gfc_match_eos () != MATCH_YES)
2910 : : {
2911 : 1 : gfc_error ("%qs entity cannot have an initializer at %L", "%FILL",
2912 : : &var_locus);
2913 : 1 : m = MATCH_ERROR;
2914 : 1 : goto cleanup;
2915 : : }
2916 : :
2917 : : /* If this symbol has already shown up in a Cray Pointer declaration,
2918 : : and this is not a component declaration,
2919 : : then we want to set the type & bail out. */
2920 : 262295 : if (flag_cray_pointer && !gfc_comp_struct (gfc_current_state ()))
2921 : : {
2922 : 2959 : gfc_find_symbol (name, gfc_current_ns, 0, &sym);
2923 : 2959 : if (sym != NULL && sym->attr.cray_pointee)
2924 : : {
2925 : 101 : m = MATCH_YES;
2926 : 101 : if (!gfc_add_type (sym, ¤t_ts, &gfc_current_locus))
2927 : : {
2928 : 1 : m = MATCH_ERROR;
2929 : 1 : goto cleanup;
2930 : : }
2931 : :
2932 : : /* Check to see if we have an array specification. */
2933 : 100 : if (cp_as != NULL)
2934 : : {
2935 : 49 : if (sym->as != NULL)
2936 : : {
2937 : 1 : gfc_error ("Duplicate array spec for Cray pointee at %L", &var_locus);
2938 : 1 : gfc_free_array_spec (cp_as);
2939 : 1 : m = MATCH_ERROR;
2940 : 1 : goto cleanup;
2941 : : }
2942 : : else
2943 : : {
2944 : 48 : if (!gfc_set_array_spec (sym, cp_as, &var_locus))
2945 : 0 : gfc_internal_error ("Cannot set pointee array spec.");
2946 : :
2947 : : /* Fix the array spec. */
2948 : 48 : m = gfc_mod_pointee_as (sym->as);
2949 : 48 : if (m == MATCH_ERROR)
2950 : 0 : goto cleanup;
2951 : : }
2952 : : }
2953 : 99 : goto cleanup;
2954 : : }
2955 : : else
2956 : : {
2957 : 2858 : gfc_free_array_spec (cp_as);
2958 : : }
2959 : : }
2960 : :
2961 : : /* Procedure pointer as function result. */
2962 : 262194 : if (gfc_current_state () == COMP_FUNCTION
2963 : 42080 : && strcmp ("ppr@", gfc_current_block ()->name) == 0
2964 : 25 : && strcmp (name, gfc_current_block ()->ns->proc_name->name) == 0)
2965 : 7 : strcpy (name, "ppr@");
2966 : :
2967 : 262194 : if (gfc_current_state () == COMP_FUNCTION
2968 : 42080 : && strcmp (name, gfc_current_block ()->name) == 0
2969 : 7203 : && gfc_current_block ()->result
2970 : 7203 : && strcmp ("ppr@", gfc_current_block ()->result->name) == 0)
2971 : 16 : strcpy (name, "ppr@");
2972 : :
2973 : : /* OK, we've successfully matched the declaration. Now put the
2974 : : symbol in the current namespace, because it might be used in the
2975 : : optional initialization expression for this symbol, e.g. this is
2976 : : perfectly legal:
2977 : :
2978 : : integer, parameter :: i = huge(i)
2979 : :
2980 : : This is only true for parameters or variables of a basic type.
2981 : : For components of derived types, it is not true, so we don't
2982 : : create a symbol for those yet. If we fail to create the symbol,
2983 : : bail out. */
2984 : 262194 : if (!gfc_comp_struct (gfc_current_state ())
2985 : 245851 : && !build_sym (name, elem, cl, cl_deferred, &as, &var_locus))
2986 : : {
2987 : 45 : m = MATCH_ERROR;
2988 : 45 : goto cleanup;
2989 : : }
2990 : :
2991 : 262149 : if (!check_function_name (name))
2992 : : {
2993 : 0 : m = MATCH_ERROR;
2994 : 0 : goto cleanup;
2995 : : }
2996 : :
2997 : : /* We allow old-style initializations of the form
2998 : : integer i /2/, j(4) /3*3, 1/
2999 : : (if no colon has been seen). These are different from data
3000 : : statements in that initializers are only allowed to apply to the
3001 : : variable immediately preceding, i.e.
3002 : : integer i, j /1, 2/
3003 : : is not allowed. Therefore we have to do some work manually, that
3004 : : could otherwise be left to the matchers for DATA statements. */
3005 : :
3006 : 262149 : if (!colon_seen && gfc_match (" /") == MATCH_YES)
3007 : : {
3008 : 146 : if (!gfc_notify_std (GFC_STD_GNU, "Old-style "
3009 : : "initialization at %C"))
3010 : : return MATCH_ERROR;
3011 : :
3012 : : /* Allow old style initializations for components of STRUCTUREs and MAPs
3013 : : but not components of derived types. */
3014 : 146 : else if (gfc_current_state () == COMP_DERIVED)
3015 : : {
3016 : 2 : gfc_error ("Invalid old style initialization for derived type "
3017 : : "component at %C");
3018 : 2 : m = MATCH_ERROR;
3019 : 2 : goto cleanup;
3020 : : }
3021 : :
3022 : : /* For structure components, read the initializer as a special
3023 : : expression and let the rest of this function apply the initializer
3024 : : as usual. */
3025 : 144 : else if (gfc_comp_struct (gfc_current_state ()))
3026 : : {
3027 : 74 : m = match_clist_expr (&initializer, ¤t_ts, as);
3028 : 74 : if (m == MATCH_NO)
3029 : : gfc_error ("Syntax error in old style initialization of %s at %C",
3030 : : name);
3031 : 74 : if (m != MATCH_YES)
3032 : 14 : goto cleanup;
3033 : : }
3034 : :
3035 : : /* Otherwise we treat the old style initialization just like a
3036 : : DATA declaration for the current variable. */
3037 : : else
3038 : 70 : return match_old_style_init (name);
3039 : : }
3040 : :
3041 : : /* The double colon must be present in order to have initializers.
3042 : : Otherwise the statement is ambiguous with an assignment statement. */
3043 : 262063 : if (colon_seen)
3044 : : {
3045 : 218164 : if (gfc_match (" =>") == MATCH_YES)
3046 : : {
3047 : 1072 : if (!current_attr.pointer)
3048 : : {
3049 : 0 : gfc_error ("Initialization at %C isn't for a pointer variable");
3050 : 0 : m = MATCH_ERROR;
3051 : 0 : goto cleanup;
3052 : : }
3053 : :
3054 : 1072 : m = match_pointer_init (&initializer, 0);
3055 : 1072 : if (m != MATCH_YES)
3056 : 10 : goto cleanup;
3057 : :
3058 : : /* The target of a pointer initialization must have the SAVE
3059 : : attribute. A variable in PROGRAM, MODULE, or SUBMODULE scope
3060 : : is implicit SAVEd. Explicitly, set the SAVE_IMPLICIT value. */
3061 : 1062 : if (initializer->expr_type == EXPR_VARIABLE
3062 : 126 : && initializer->symtree->n.sym->attr.save == SAVE_NONE
3063 : 25 : && (gfc_current_state () == COMP_PROGRAM
3064 : : || gfc_current_state () == COMP_MODULE
3065 : 25 : || gfc_current_state () == COMP_SUBMODULE))
3066 : 11 : initializer->symtree->n.sym->attr.save = SAVE_IMPLICIT;
3067 : : }
3068 : 217092 : else if (gfc_match_char ('=') == MATCH_YES)
3069 : : {
3070 : 24407 : if (current_attr.pointer)
3071 : : {
3072 : 0 : gfc_error ("Pointer initialization at %C requires %<=>%>, "
3073 : : "not %<=%>");
3074 : 0 : m = MATCH_ERROR;
3075 : 0 : goto cleanup;
3076 : : }
3077 : :
3078 : 24407 : m = gfc_match_init_expr (&initializer);
3079 : 24407 : if (m == MATCH_NO)
3080 : : {
3081 : 0 : gfc_error ("Expected an initialization expression at %C");
3082 : 0 : m = MATCH_ERROR;
3083 : : }
3084 : :
3085 : 9090 : if (current_attr.flavor != FL_PARAMETER && gfc_pure (NULL)
3086 : 24409 : && !gfc_comp_struct (gfc_state_stack->state))
3087 : : {
3088 : 1 : gfc_error ("Initialization of variable at %C is not allowed in "
3089 : : "a PURE procedure");
3090 : 1 : m = MATCH_ERROR;
3091 : : }
3092 : :
3093 : 24407 : if (current_attr.flavor != FL_PARAMETER
3094 : 9090 : && !gfc_comp_struct (gfc_state_stack->state))
3095 : 6896 : gfc_unset_implicit_pure (gfc_current_ns->proc_name);
3096 : :
3097 : 24407 : if (m != MATCH_YES)
3098 : 149 : goto cleanup;
3099 : : }
3100 : : }
3101 : :
3102 : 261904 : if (initializer != NULL && current_attr.allocatable
3103 : 3 : && gfc_comp_struct (gfc_current_state ()))
3104 : : {
3105 : 2 : gfc_error ("Initialization of allocatable component at %C is not "
3106 : : "allowed");
3107 : 2 : m = MATCH_ERROR;
3108 : 2 : goto cleanup;
3109 : : }
3110 : :
3111 : 261902 : if (gfc_current_state () == COMP_DERIVED
3112 : 15301 : && initializer && initializer->ts.type == BT_HOLLERITH)
3113 : : {
3114 : 1 : gfc_error ("Initialization of structure component with a HOLLERITH "
3115 : : "constant at %L is not allowed", &initializer->where);
3116 : 1 : m = MATCH_ERROR;
3117 : 1 : goto cleanup;
3118 : : }
3119 : :
3120 : 261901 : if (gfc_current_state () == COMP_DERIVED
3121 : 15300 : && gfc_current_block ()->attr.pdt_template)
3122 : : {
3123 : 529 : gfc_symbol *param;
3124 : 529 : gfc_find_symbol (name, gfc_current_block ()->f2k_derived,
3125 : : 0, ¶m);
3126 : 529 : if (!param && (current_attr.pdt_kind || current_attr.pdt_len))
3127 : : {
3128 : 1 : gfc_error ("The component with KIND or LEN attribute at %C does not "
3129 : : "not appear in the type parameter list at %L",
3130 : 1 : &gfc_current_block ()->declared_at);
3131 : 1 : m = MATCH_ERROR;
3132 : 4 : goto cleanup;
3133 : : }
3134 : 528 : else if (param && !(current_attr.pdt_kind || current_attr.pdt_len))
3135 : : {
3136 : 1 : gfc_error ("The component at %C that appears in the type parameter "
3137 : : "list at %L has neither the KIND nor LEN attribute",
3138 : 1 : &gfc_current_block ()->declared_at);
3139 : 1 : m = MATCH_ERROR;
3140 : 1 : goto cleanup;
3141 : : }
3142 : 527 : else if (as && (current_attr.pdt_kind || current_attr.pdt_len))
3143 : : {
3144 : 1 : gfc_error ("The component at %C which is a type parameter must be "
3145 : : "a scalar");
3146 : 1 : m = MATCH_ERROR;
3147 : 1 : goto cleanup;
3148 : : }
3149 : 526 : else if (param && initializer)
3150 : : {
3151 : 105 : if (initializer->ts.type == BT_BOZ)
3152 : : {
3153 : 1 : gfc_error ("BOZ literal constant at %L cannot appear as an "
3154 : : "initializer", &initializer->where);
3155 : 1 : m = MATCH_ERROR;
3156 : 1 : goto cleanup;
3157 : : }
3158 : 104 : param->value = gfc_copy_expr (initializer);
3159 : : }
3160 : : }
3161 : :
3162 : : /* Before adding a possible initializer, do a simple check for compatibility
3163 : : of lhs and rhs types. Assigning a REAL value to a derived type is not a
3164 : : good thing. */
3165 : 24979 : if (current_ts.type == BT_DERIVED && initializer
3166 : 263189 : && (gfc_numeric_ts (&initializer->ts)
3167 : 1290 : || initializer->ts.type == BT_LOGICAL
3168 : 1290 : || initializer->ts.type == BT_CHARACTER))
3169 : : {
3170 : 2 : gfc_error ("Incompatible initialization between a derived type "
3171 : : "entity and an entity with %qs type at %C",
3172 : : gfc_typename (initializer));
3173 : 2 : m = MATCH_ERROR;
3174 : 2 : goto cleanup;
3175 : : }
3176 : :
3177 : :
3178 : : /* Add the initializer. Note that it is fine if initializer is
3179 : : NULL here, because we sometimes also need to check if a
3180 : : declaration *must* have an initialization expression. */
3181 : 261895 : if (!gfc_comp_struct (gfc_current_state ()))
3182 : 245581 : t = add_init_expr_to_sym (name, &initializer, &var_locus);
3183 : : else
3184 : : {
3185 : 16314 : if (current_ts.type == BT_DERIVED
3186 : 2220 : && !current_attr.pointer && !initializer)
3187 : 1693 : initializer = gfc_default_initializer (¤t_ts);
3188 : 16314 : t = build_struct (name, cl, &initializer, &as);
3189 : :
3190 : : /* If we match a nested structure definition we expect to see the
3191 : : * body even if the variable declarations blow up, so we need to keep
3192 : : * the structure declaration around. */
3193 : 16314 : if (gfc_new_block && gfc_new_block->attr.flavor == FL_STRUCT)
3194 : 34 : gfc_commit_symbol (gfc_new_block);
3195 : : }
3196 : :
3197 : 261895 : m = (t) ? MATCH_YES : MATCH_ERROR;
3198 : :
3199 : 262322 : cleanup:
3200 : : /* Free stuff up and return. */
3201 : 262322 : gfc_seen_div0 = false;
3202 : 262322 : gfc_free_expr (initializer);
3203 : 262322 : gfc_free_array_spec (as);
3204 : :
3205 : 262322 : return m;
3206 : : }
3207 : :
3208 : :
3209 : : /* Match an extended-f77 "TYPESPEC*bytesize"-style kind specification.
3210 : : This assumes that the byte size is equal to the kind number for
3211 : : non-COMPLEX types, and equal to twice the kind number for COMPLEX. */
3212 : :
3213 : : static match
3214 : 102556 : gfc_match_old_kind_spec (gfc_typespec *ts)
3215 : : {
3216 : 102556 : match m;
3217 : 102556 : int original_kind;
3218 : :
3219 : 102556 : if (gfc_match_char ('*') != MATCH_YES)
3220 : : return MATCH_NO;
3221 : :
3222 : 1151 : m = gfc_match_small_literal_int (&ts->kind, NULL);
3223 : 1151 : if (m != MATCH_YES)
3224 : : return MATCH_ERROR;
3225 : :
3226 : 1151 : original_kind = ts->kind;
3227 : :
3228 : : /* Massage the kind numbers for complex types. */
3229 : 1151 : if (ts->type == BT_COMPLEX)
3230 : : {
3231 : 89 : if (ts->kind % 2)
3232 : : {
3233 : 0 : gfc_error ("Old-style type declaration %s*%d not supported at %C",
3234 : : gfc_basic_typename (ts->type), original_kind);
3235 : 0 : return MATCH_ERROR;
3236 : : }
3237 : 89 : ts->kind /= 2;
3238 : :
3239 : : }
3240 : :
3241 : 1151 : if (ts->type == BT_INTEGER && ts->kind == 4 && flag_integer4_kind == 8)
3242 : 0 : ts->kind = 8;
3243 : :
3244 : 1151 : if (ts->type == BT_REAL || ts->type == BT_COMPLEX)
3245 : : {
3246 : 859 : if (ts->kind == 4)
3247 : : {
3248 : 217 : if (flag_real4_kind == 8)
3249 : 24 : ts->kind = 8;
3250 : 217 : if (flag_real4_kind == 10)
3251 : 24 : ts->kind = 10;
3252 : 217 : if (flag_real4_kind == 16)
3253 : 24 : ts->kind = 16;
3254 : : }
3255 : 642 : else if (ts->kind == 8)
3256 : : {
3257 : 637 : if (flag_real8_kind == 4)
3258 : 24 : ts->kind = 4;
3259 : 637 : if (flag_real8_kind == 10)
3260 : 24 : ts->kind = 10;
3261 : 637 : if (flag_real8_kind == 16)
3262 : 24 : ts->kind = 16;
3263 : : }
3264 : : }
3265 : :
3266 : 1151 : if (gfc_validate_kind (ts->type, ts->kind, true) < 0)
3267 : : {
3268 : 8 : gfc_error ("Old-style type declaration %s*%d not supported at %C",
3269 : : gfc_basic_typename (ts->type), original_kind);
3270 : 8 : return MATCH_ERROR;
3271 : : }
3272 : :
3273 : 1143 : if (!gfc_notify_std (GFC_STD_GNU,
3274 : : "Nonstandard type declaration %s*%d at %C",
3275 : : gfc_basic_typename(ts->type), original_kind))
3276 : : return MATCH_ERROR;
3277 : :
3278 : : return MATCH_YES;
3279 : : }
3280 : :
3281 : :
3282 : : /* Match a kind specification. Since kinds are generally optional, we
3283 : : usually return MATCH_NO if something goes wrong. If a "kind="
3284 : : string is found, then we know we have an error. */
3285 : :
3286 : : match
3287 : 149494 : gfc_match_kind_spec (gfc_typespec *ts, bool kind_expr_only)
3288 : : {
3289 : 149494 : locus where, loc;
3290 : 149494 : gfc_expr *e;
3291 : 149494 : match m, n;
3292 : 149494 : char c;
3293 : :
3294 : 149494 : m = MATCH_NO;
3295 : 149494 : n = MATCH_YES;
3296 : 149494 : e = NULL;
3297 : 149494 : saved_kind_expr = NULL;
3298 : :
3299 : 149494 : where = loc = gfc_current_locus;
3300 : :
3301 : 149494 : if (kind_expr_only)
3302 : 0 : goto kind_expr;
3303 : :
3304 : 149494 : if (gfc_match_char ('(') == MATCH_NO)
3305 : : return MATCH_NO;
3306 : :
3307 : : /* Also gobbles optional text. */
3308 : 45629 : if (gfc_match (" kind = ") == MATCH_YES)
3309 : 45629 : m = MATCH_ERROR;
3310 : :
3311 : 45629 : loc = gfc_current_locus;
3312 : :
3313 : 45629 : kind_expr:
3314 : :
3315 : 45629 : n = gfc_match_init_expr (&e);
3316 : :
3317 : 45629 : if (gfc_derived_parameter_expr (e))
3318 : : {
3319 : 77 : ts->kind = 0;
3320 : 77 : saved_kind_expr = gfc_copy_expr (e);
3321 : 77 : goto close_brackets;
3322 : : }
3323 : :
3324 : 45552 : if (n != MATCH_YES)
3325 : : {
3326 : 348 : if (gfc_matching_function)
3327 : : {
3328 : : /* The function kind expression might include use associated or
3329 : : imported parameters and try again after the specification
3330 : : expressions..... */
3331 : 320 : if (gfc_match_char (')') != MATCH_YES)
3332 : : {
3333 : 1 : gfc_error ("Missing right parenthesis at %C");
3334 : 1 : m = MATCH_ERROR;
3335 : 1 : goto no_match;
3336 : : }
3337 : :
3338 : 319 : gfc_free_expr (e);
3339 : 319 : gfc_undo_symbols ();
3340 : 319 : return MATCH_YES;
3341 : : }
3342 : : else
3343 : : {
3344 : : /* ....or else, the match is real. */
3345 : 28 : if (n == MATCH_NO)
3346 : 0 : gfc_error ("Expected initialization expression at %C");
3347 : 28 : if (n != MATCH_YES)
3348 : 28 : return MATCH_ERROR;
3349 : : }
3350 : : }
3351 : :
3352 : 45204 : if (e->rank != 0)
3353 : : {
3354 : 0 : gfc_error ("Expected scalar initialization expression at %C");
3355 : 0 : m = MATCH_ERROR;
3356 : 0 : goto no_match;
3357 : : }
3358 : :
3359 : 45204 : if (gfc_extract_int (e, &ts->kind, 1))
3360 : : {
3361 : 0 : m = MATCH_ERROR;
3362 : 0 : goto no_match;
3363 : : }
3364 : :
3365 : : /* Before throwing away the expression, let's see if we had a
3366 : : C interoperable kind (and store the fact). */
3367 : 45204 : if (e->ts.is_c_interop == 1)
3368 : : {
3369 : : /* Mark this as C interoperable if being declared with one
3370 : : of the named constants from iso_c_binding. */
3371 : 16701 : ts->is_c_interop = e->ts.is_iso_c;
3372 : 16701 : ts->f90_type = e->ts.f90_type;
3373 : 16701 : if (e->symtree)
3374 : 16700 : ts->interop_kind = e->symtree->n.sym;
3375 : : }
3376 : :
3377 : 45204 : gfc_free_expr (e);
3378 : 45204 : e = NULL;
3379 : :
3380 : : /* Ignore errors to this point, if we've gotten here. This means
3381 : : we ignore the m=MATCH_ERROR from above. */
3382 : 45204 : if (gfc_validate_kind (ts->type, ts->kind, true) < 0)
3383 : : {
3384 : 7 : gfc_error ("Kind %d not supported for type %s at %C", ts->kind,
3385 : : gfc_basic_typename (ts->type));
3386 : 7 : gfc_current_locus = where;
3387 : 7 : return MATCH_ERROR;
3388 : : }
3389 : :
3390 : : /* Warn if, e.g., c_int is used for a REAL variable, but not
3391 : : if, e.g., c_double is used for COMPLEX as the standard
3392 : : explicitly says that the kind type parameter for complex and real
3393 : : variable is the same, i.e. c_float == c_float_complex. */
3394 : 45197 : if (ts->f90_type != BT_UNKNOWN && ts->f90_type != ts->type
3395 : 16 : && !((ts->f90_type == BT_REAL && ts->type == BT_COMPLEX)
3396 : 1 : || (ts->f90_type == BT_COMPLEX && ts->type == BT_REAL)))
3397 : 12 : gfc_warning_now (0, "C kind type parameter is for type %s but type at %L "
3398 : : "is %s", gfc_basic_typename (ts->f90_type), &where,
3399 : : gfc_basic_typename (ts->type));
3400 : :
3401 : 45185 : close_brackets:
3402 : :
3403 : 45274 : gfc_gobble_whitespace ();
3404 : 45274 : if ((c = gfc_next_ascii_char ()) != ')'
3405 : 45274 : && (ts->type != BT_CHARACTER || c != ','))
3406 : : {
3407 : 0 : if (ts->type == BT_CHARACTER)
3408 : 0 : gfc_error ("Missing right parenthesis or comma at %C");
3409 : : else
3410 : 0 : gfc_error ("Missing right parenthesis at %C");
3411 : 0 : m = MATCH_ERROR;
3412 : 0 : goto no_match;
3413 : : }
3414 : : else
3415 : : /* All tests passed. */
3416 : 45274 : m = MATCH_YES;
3417 : :
3418 : 45274 : if(m == MATCH_ERROR)
3419 : : gfc_current_locus = where;
3420 : :
3421 : 45274 : if (ts->type == BT_INTEGER && ts->kind == 4 && flag_integer4_kind == 8)
3422 : 0 : ts->kind = 8;
3423 : :
3424 : 45274 : if (ts->type == BT_REAL || ts->type == BT_COMPLEX)
3425 : : {
3426 : 13572 : if (ts->kind == 4)
3427 : : {
3428 : 4441 : if (flag_real4_kind == 8)
3429 : 54 : ts->kind = 8;
3430 : 4441 : if (flag_real4_kind == 10)
3431 : 54 : ts->kind = 10;
3432 : 4441 : if (flag_real4_kind == 16)
3433 : 54 : ts->kind = 16;
3434 : : }
3435 : 9131 : else if (ts->kind == 8)
3436 : : {
3437 : 6223 : if (flag_real8_kind == 4)
3438 : 48 : ts->kind = 4;
3439 : 6223 : if (flag_real8_kind == 10)
3440 : 48 : ts->kind = 10;
3441 : 6223 : if (flag_real8_kind == 16)
3442 : 48 : ts->kind = 16;
3443 : : }
3444 : : }
3445 : :
3446 : : /* Return what we know from the test(s). */
3447 : : return m;
3448 : :
3449 : 1 : no_match:
3450 : 1 : gfc_free_expr (e);
3451 : 1 : gfc_current_locus = where;
3452 : 1 : return m;
3453 : : }
3454 : :
3455 : :
3456 : : static match
3457 : 4446 : match_char_kind (int * kind, int * is_iso_c)
3458 : : {
3459 : 4446 : locus where;
3460 : 4446 : gfc_expr *e;
3461 : 4446 : match m, n;
3462 : 4446 : bool fail;
3463 : :
3464 : 4446 : m = MATCH_NO;
3465 : 4446 : e = NULL;
3466 : 4446 : where = gfc_current_locus;
3467 : :
3468 : 4446 : n = gfc_match_init_expr (&e);
3469 : :
3470 : 4446 : if (n != MATCH_YES && gfc_matching_function)
3471 : : {
3472 : : /* The expression might include use-associated or imported
3473 : : parameters and try again after the specification
3474 : : expressions. */
3475 : 7 : gfc_free_expr (e);
3476 : 7 : gfc_undo_symbols ();
3477 : 7 : return MATCH_YES;
3478 : : }
3479 : :
3480 : 7 : if (n == MATCH_NO)
3481 : 2 : gfc_error ("Expected initialization expression at %C");
3482 : 4439 : if (n != MATCH_YES)
3483 : : return MATCH_ERROR;
3484 : :
3485 : 4432 : if (e->rank != 0)
3486 : : {
3487 : 0 : gfc_error ("Expected scalar initialization expression at %C");
3488 : 0 : m = MATCH_ERROR;
3489 : 0 : goto no_match;
3490 : : }
3491 : :
3492 : 4432 : if (gfc_derived_parameter_expr (e))
3493 : : {
3494 : 14 : saved_kind_expr = e;
3495 : 14 : *kind = 0;
3496 : 14 : return MATCH_YES;
3497 : : }
3498 : :
3499 : 4418 : fail = gfc_extract_int (e, kind, 1);
3500 : 4418 : *is_iso_c = e->ts.is_iso_c;
3501 : 4418 : if (fail)
3502 : : {
3503 : 0 : m = MATCH_ERROR;
3504 : 0 : goto no_match;
3505 : : }
3506 : :
3507 : 4418 : gfc_free_expr (e);
3508 : :
3509 : : /* Ignore errors to this point, if we've gotten here. This means
3510 : : we ignore the m=MATCH_ERROR from above. */
3511 : 4418 : if (gfc_validate_kind (BT_CHARACTER, *kind, true) < 0)
3512 : : {
3513 : 14 : gfc_error ("Kind %d is not supported for CHARACTER at %C", *kind);
3514 : 14 : m = MATCH_ERROR;
3515 : : }
3516 : : else
3517 : : /* All tests passed. */
3518 : : m = MATCH_YES;
3519 : :
3520 : 14 : if (m == MATCH_ERROR)
3521 : 14 : gfc_current_locus = where;
3522 : :
3523 : : /* Return what we know from the test(s). */
3524 : : return m;
3525 : :
3526 : 0 : no_match:
3527 : 0 : gfc_free_expr (e);
3528 : 0 : gfc_current_locus = where;
3529 : 0 : return m;
3530 : : }
3531 : :
3532 : :
3533 : : /* Match the various kind/length specifications in a CHARACTER
3534 : : declaration. We don't return MATCH_NO. */
3535 : :
3536 : : match
3537 : 29853 : gfc_match_char_spec (gfc_typespec *ts)
3538 : : {
3539 : 29853 : int kind, seen_length, is_iso_c;
3540 : 29853 : gfc_charlen *cl;
3541 : 29853 : gfc_expr *len;
3542 : 29853 : match m;
3543 : 29853 : bool deferred;
3544 : :
3545 : 29853 : len = NULL;
3546 : 29853 : seen_length = 0;
3547 : 29853 : kind = 0;
3548 : 29853 : is_iso_c = 0;
3549 : 29853 : deferred = false;
3550 : :
3551 : : /* Try the old-style specification first. */
3552 : 29853 : old_char_selector = 0;
3553 : :
3554 : 29853 : m = match_char_length (&len, &deferred, true);
3555 : 29853 : if (m != MATCH_NO)
3556 : : {
3557 : 2277 : if (m == MATCH_YES)
3558 : 2277 : old_char_selector = 1;
3559 : 2277 : seen_length = 1;
3560 : 2277 : goto done;
3561 : : }
3562 : :
3563 : 27576 : m = gfc_match_char ('(');
3564 : 27576 : if (m != MATCH_YES)
3565 : : {
3566 : 1843 : m = MATCH_YES; /* Character without length is a single char. */
3567 : 1843 : goto done;
3568 : : }
3569 : :
3570 : : /* Try the weird case: ( KIND = <int> [ , LEN = <len-param> ] ). */
3571 : 25733 : if (gfc_match (" kind =") == MATCH_YES)
3572 : : {
3573 : 3115 : m = match_char_kind (&kind, &is_iso_c);
3574 : :
3575 : 3115 : if (m == MATCH_ERROR)
3576 : 16 : goto done;
3577 : 3099 : if (m == MATCH_NO)
3578 : : goto syntax;
3579 : :
3580 : 3099 : if (gfc_match (" , len =") == MATCH_NO)
3581 : 514 : goto rparen;
3582 : :
3583 : 2585 : m = char_len_param_value (&len, &deferred);
3584 : 2585 : if (m == MATCH_NO)
3585 : 0 : goto syntax;
3586 : 2585 : if (m == MATCH_ERROR)
3587 : 2 : goto done;
3588 : 2583 : seen_length = 1;
3589 : :
3590 : 2583 : goto rparen;
3591 : : }
3592 : :
3593 : : /* Try to match "LEN = <len-param>" or "LEN = <len-param>, KIND = <int>". */
3594 : 22618 : if (gfc_match (" len =") == MATCH_YES)
3595 : : {
3596 : 13450 : m = char_len_param_value (&len, &deferred);
3597 : 13450 : if (m == MATCH_NO)
3598 : 2 : goto syntax;
3599 : 13448 : if (m == MATCH_ERROR)
3600 : 8 : goto done;
3601 : 13440 : seen_length = 1;
3602 : :
3603 : 13440 : if (gfc_match_char (')') == MATCH_YES)
3604 : 12251 : goto done;
3605 : :
3606 : 1189 : if (gfc_match (" , kind =") != MATCH_YES)
3607 : 0 : goto syntax;
3608 : :
3609 : 1189 : if (match_char_kind (&kind, &is_iso_c) == MATCH_ERROR)
3610 : 2 : goto done;
3611 : :
3612 : 1187 : goto rparen;
3613 : : }
3614 : :
3615 : : /* Try to match ( <len-param> ) or ( <len-param> , [ KIND = ] <int> ). */
3616 : 9168 : m = char_len_param_value (&len, &deferred);
3617 : 9168 : if (m == MATCH_NO)
3618 : 0 : goto syntax;
3619 : 9168 : if (m == MATCH_ERROR)
3620 : 44 : goto done;
3621 : 9124 : seen_length = 1;
3622 : :
3623 : 9124 : m = gfc_match_char (')');
3624 : 9124 : if (m == MATCH_YES)
3625 : 8980 : goto done;
3626 : :
3627 : 144 : if (gfc_match_char (',') != MATCH_YES)
3628 : 2 : goto syntax;
3629 : :
3630 : 142 : gfc_match (" kind ="); /* Gobble optional text. */
3631 : :
3632 : 142 : m = match_char_kind (&kind, &is_iso_c);
3633 : 142 : if (m == MATCH_ERROR)
3634 : 3 : goto done;
3635 : : if (m == MATCH_NO)
3636 : : goto syntax;
3637 : :
3638 : 4423 : rparen:
3639 : : /* Require a right-paren at this point. */
3640 : 4423 : m = gfc_match_char (')');
3641 : 4423 : if (m == MATCH_YES)
3642 : 4423 : goto done;
3643 : :
3644 : 0 : syntax:
3645 : 4 : gfc_error ("Syntax error in CHARACTER declaration at %C");
3646 : 4 : m = MATCH_ERROR;
3647 : 4 : gfc_free_expr (len);
3648 : 4 : return m;
3649 : :
3650 : 29849 : done:
3651 : : /* Deal with character functions after USE and IMPORT statements. */
3652 : 29849 : if (gfc_matching_function)
3653 : : {
3654 : 1413 : gfc_free_expr (len);
3655 : 1413 : gfc_undo_symbols ();
3656 : 1413 : return MATCH_YES;
3657 : : }
3658 : :
3659 : 28436 : if (m != MATCH_YES)
3660 : : {
3661 : 65 : gfc_free_expr (len);
3662 : 65 : return m;
3663 : : }
3664 : :
3665 : : /* Do some final massaging of the length values. */
3666 : 28371 : cl = gfc_new_charlen (gfc_current_ns, NULL);
3667 : :
3668 : 28371 : if (seen_length == 0)
3669 : 2300 : cl->length = gfc_get_int_expr (gfc_charlen_int_kind, NULL, 1);
3670 : : else
3671 : : {
3672 : : /* If gfortran ends up here, then len may be reducible to a constant.
3673 : : Try to do that here. If it does not reduce, simply assign len to
3674 : : charlen. A complication occurs with user-defined generic functions,
3675 : : which are not resolved. Use a private namespace to deal with
3676 : : generic functions. */
3677 : :
3678 : 26071 : if (len && len->expr_type != EXPR_CONSTANT)
3679 : : {
3680 : 2504 : gfc_namespace *old_ns;
3681 : 2504 : gfc_expr *e;
3682 : :
3683 : 2504 : old_ns = gfc_current_ns;
3684 : 2504 : gfc_current_ns = gfc_get_namespace (NULL, 0);
3685 : :
3686 : 2504 : e = gfc_copy_expr (len);
3687 : 2504 : gfc_push_suppress_errors ();
3688 : 2504 : gfc_reduce_init_expr (e);
3689 : 2504 : gfc_pop_suppress_errors ();
3690 : 2504 : if (e->expr_type == EXPR_CONSTANT)
3691 : : {
3692 : 291 : gfc_replace_expr (len, e);
3693 : 291 : if (mpz_cmp_si (len->value.integer, 0) < 0)
3694 : 7 : mpz_set_ui (len->value.integer, 0);
3695 : : }
3696 : : else
3697 : 2213 : gfc_free_expr (e);
3698 : :
3699 : 2504 : gfc_free_namespace (gfc_current_ns);
3700 : 2504 : gfc_current_ns = old_ns;
3701 : : }
3702 : :
3703 : 26071 : cl->length = len;
3704 : : }
3705 : :
3706 : 28371 : ts->u.cl = cl;
3707 : 28371 : ts->kind = kind == 0 ? gfc_default_character_kind : kind;
3708 : 28371 : ts->deferred = deferred;
3709 : :
3710 : : /* We have to know if it was a C interoperable kind so we can
3711 : : do accurate type checking of bind(c) procs, etc. */
3712 : 28371 : if (kind != 0)
3713 : : /* Mark this as C interoperable if being declared with one
3714 : : of the named constants from iso_c_binding. */
3715 : 4341 : ts->is_c_interop = is_iso_c;
3716 : 24030 : else if (len != NULL)
3717 : : /* Here, we might have parsed something such as: character(c_char)
3718 : : In this case, the parsing code above grabs the c_char when
3719 : : looking for the length (line 1690, roughly). it's the last
3720 : : testcase for parsing the kind params of a character variable.
3721 : : However, it's not actually the length. this seems like it
3722 : : could be an error.
3723 : : To see if the user used a C interop kind, test the expr
3724 : : of the so called length, and see if it's C interoperable. */
3725 : 15307 : ts->is_c_interop = len->ts.is_iso_c;
3726 : :
3727 : : return MATCH_YES;
3728 : : }
3729 : :
3730 : :
3731 : : /* Matches a RECORD declaration. */
3732 : :
3733 : : static match
3734 : 885907 : match_record_decl (char *name)
3735 : : {
3736 : 885907 : locus old_loc;
3737 : 885907 : old_loc = gfc_current_locus;
3738 : 885907 : match m;
3739 : :
3740 : 885907 : m = gfc_match (" record /");
3741 : 885907 : if (m == MATCH_YES)
3742 : : {
3743 : 353 : if (!flag_dec_structure)
3744 : : {
3745 : 6 : gfc_current_locus = old_loc;
3746 : 6 : gfc_error ("RECORD at %C is an extension, enable it with "
3747 : : "%<-fdec-structure%>");
3748 : 6 : return MATCH_ERROR;
3749 : : }
3750 : 347 : m = gfc_match (" %n/", name);
3751 : 347 : if (m == MATCH_YES)
3752 : : return MATCH_YES;
3753 : : }
3754 : :
3755 : 885557 : gfc_current_locus = old_loc;
3756 : 885557 : if (flag_dec_structure
3757 : 885557 : && (gfc_match (" record% ") == MATCH_YES
3758 : 8026 : || gfc_match (" record%t") == MATCH_YES))
3759 : 6 : gfc_error ("Structure name expected after RECORD at %C");
3760 : 885557 : if (m == MATCH_NO)
3761 : : return MATCH_NO;
3762 : :
3763 : : return MATCH_ERROR;
3764 : : }
3765 : :
3766 : :
3767 : : /* This function uses the gfc_actual_arglist 'type_param_spec_list' as a source
3768 : : of expressions to substitute into the possibly parameterized expression
3769 : : 'e'. Using a list is inefficient but should not be too bad since the
3770 : : number of type parameters is not likely to be large. */
3771 : : static bool
3772 : 1592 : insert_parameter_exprs (gfc_expr* e, gfc_symbol* sym ATTRIBUTE_UNUSED,
3773 : : int* f)
3774 : : {
3775 : 1592 : gfc_actual_arglist *param;
3776 : 1592 : gfc_expr *copy;
3777 : :
3778 : 1592 : if (e->expr_type != EXPR_VARIABLE)
3779 : : return false;
3780 : :
3781 : 799 : gcc_assert (e->symtree);
3782 : 799 : if (e->symtree->n.sym->attr.pdt_kind
3783 : 656 : || (*f != 0 && e->symtree->n.sym->attr.pdt_len))
3784 : : {
3785 : 812 : for (param = type_param_spec_list; param; param = param->next)
3786 : 812 : if (strcmp (e->symtree->n.sym->name, param->name) == 0)
3787 : : break;
3788 : :
3789 : 502 : if (param)
3790 : : {
3791 : 502 : copy = gfc_copy_expr (param->expr);
3792 : 502 : *e = *copy;
3793 : 502 : free (copy);
3794 : : }
3795 : : }
3796 : :
3797 : : return false;
3798 : : }
3799 : :
3800 : :
3801 : : static bool
3802 : 585 : gfc_insert_kind_parameter_exprs (gfc_expr *e)
3803 : : {
3804 : 585 : return gfc_traverse_expr (e, NULL, &insert_parameter_exprs, 0);
3805 : : }
3806 : :
3807 : :
3808 : : bool
3809 : 646 : gfc_insert_parameter_exprs (gfc_expr *e, gfc_actual_arglist *param_list)
3810 : : {
3811 : 646 : gfc_actual_arglist *old_param_spec_list = type_param_spec_list;
3812 : 646 : type_param_spec_list = param_list;
3813 : 646 : bool res = gfc_traverse_expr (e, NULL, &insert_parameter_exprs, 1);
3814 : 646 : type_param_spec_list = old_param_spec_list;
3815 : 646 : return res;
3816 : : }
3817 : :
3818 : : /* Determines the instance of a parameterized derived type to be used by
3819 : : matching determining the values of the kind parameters and using them
3820 : : in the name of the instance. If the instance exists, it is used, otherwise
3821 : : a new derived type is created. */
3822 : : match
3823 : 565 : gfc_get_pdt_instance (gfc_actual_arglist *param_list, gfc_symbol **sym,
3824 : : gfc_actual_arglist **ext_param_list)
3825 : : {
3826 : : /* The PDT template symbol. */
3827 : 565 : gfc_symbol *pdt = *sym;
3828 : : /* The symbol for the parameter in the template f2k_namespace. */
3829 : 565 : gfc_symbol *param;
3830 : : /* The hoped for instance of the PDT. */
3831 : 565 : gfc_symbol *instance;
3832 : : /* The list of parameters appearing in the PDT declaration. */
3833 : 565 : gfc_formal_arglist *type_param_name_list;
3834 : : /* Used to store the parameter specification list during recursive calls. */
3835 : 565 : gfc_actual_arglist *old_param_spec_list;
3836 : : /* Pointers to the parameter specification being used. */
3837 : 565 : gfc_actual_arglist *actual_param;
3838 : 565 : gfc_actual_arglist *tail = NULL;
3839 : : /* Used to build up the name of the PDT instance. The prefix uses 4
3840 : : characters and each KIND parameter 2 more. Allow 8 of the latter. */
3841 : 565 : char name[GFC_MAX_SYMBOL_LEN + 21];
3842 : :
3843 : 565 : bool name_seen = (param_list == NULL);
3844 : 565 : bool assumed_seen = false;
3845 : 565 : bool deferred_seen = false;
3846 : 565 : bool spec_error = false;
3847 : 565 : int kind_value, i;
3848 : 565 : gfc_expr *kind_expr;
3849 : 565 : gfc_component *c1, *c2;
3850 : 565 : match m;
3851 : :
3852 : 565 : type_param_spec_list = NULL;
3853 : :
3854 : 565 : type_param_name_list = pdt->formal;
3855 : 565 : actual_param = param_list;
3856 : 565 : sprintf (name, "Pdt%s", pdt->name);
3857 : :
3858 : : /* Run through the parameter name list and pick up the actual
3859 : : parameter values or use the default values in the PDT declaration. */
3860 : 1559 : for (; type_param_name_list;
3861 : 994 : type_param_name_list = type_param_name_list->next)
3862 : : {
3863 : 1006 : if (actual_param && actual_param->spec_type != SPEC_EXPLICIT)
3864 : : {
3865 : 929 : if (actual_param->spec_type == SPEC_ASSUMED)
3866 : : spec_error = deferred_seen;
3867 : : else
3868 : 929 : spec_error = assumed_seen;
3869 : :
3870 : 929 : if (spec_error)
3871 : : {
3872 : : gfc_error ("The type parameter spec list at %C cannot contain "
3873 : : "both ASSUMED and DEFERRED parameters");
3874 : : goto error_return;
3875 : : }
3876 : : }
3877 : :
3878 : 929 : if (actual_param && actual_param->name)
3879 : 1006 : name_seen = true;
3880 : 1006 : param = type_param_name_list->sym;
3881 : :
3882 : 1006 : if (!param || !param->name)
3883 : 1 : continue;
3884 : :
3885 : 1005 : c1 = gfc_find_component (pdt, param->name, false, true, NULL);
3886 : : /* An error should already have been thrown in resolve.cc
3887 : : (resolve_fl_derived0). */
3888 : 1005 : if (!pdt->attr.use_assoc && !c1)
3889 : 3 : goto error_return;
3890 : :
3891 : 1002 : kind_expr = NULL;
3892 : 1002 : if (!name_seen)
3893 : : {
3894 : 617 : if (!actual_param && !(c1 && c1->initializer))
3895 : : {
3896 : 1 : gfc_error ("The type parameter spec list at %C does not contain "
3897 : : "enough parameter expressions");
3898 : 1 : goto error_return;
3899 : : }
3900 : 616 : else if (!actual_param && c1 && c1->initializer)
3901 : 1 : kind_expr = gfc_copy_expr (c1->initializer);
3902 : 615 : else if (actual_param && actual_param->spec_type == SPEC_EXPLICIT)
3903 : 462 : kind_expr = gfc_copy_expr (actual_param->expr);
3904 : : }
3905 : : else
3906 : : {
3907 : : actual_param = param_list;
3908 : 526 : for (;actual_param; actual_param = actual_param->next)
3909 : 446 : if (actual_param->name
3910 : 444 : && strcmp (actual_param->name, param->name) == 0)
3911 : : break;
3912 : 385 : if (actual_param && actual_param->spec_type == SPEC_EXPLICIT)
3913 : 245 : kind_expr = gfc_copy_expr (actual_param->expr);
3914 : : else
3915 : : {
3916 : 140 : if (c1->initializer)
3917 : 111 : kind_expr = gfc_copy_expr (c1->initializer);
3918 : 29 : else if (!(actual_param && param->attr.pdt_len))
3919 : : {
3920 : 0 : gfc_error ("The derived parameter %qs at %C does not "
3921 : : "have a default value", param->name);
3922 : 0 : goto error_return;
3923 : : }
3924 : : }
3925 : : }
3926 : :
3927 : : /* Store the current parameter expressions in a temporary actual
3928 : : arglist 'list' so that they can be substituted in the corresponding
3929 : : expressions in the PDT instance. */
3930 : 1001 : if (type_param_spec_list == NULL)
3931 : : {
3932 : 563 : type_param_spec_list = gfc_get_actual_arglist ();
3933 : 563 : tail = type_param_spec_list;
3934 : : }
3935 : : else
3936 : : {
3937 : 438 : tail->next = gfc_get_actual_arglist ();
3938 : 438 : tail = tail->next;
3939 : : }
3940 : 1001 : tail->name = param->name;
3941 : :
3942 : 1001 : if (kind_expr)
3943 : : {
3944 : : /* Try simplification even for LEN expressions. */
3945 : 819 : bool ok;
3946 : 819 : gfc_resolve_expr (kind_expr);
3947 : 819 : ok = gfc_simplify_expr (kind_expr, 1);
3948 : : /* Variable expressions seem to default to BT_PROCEDURE.
3949 : : TODO find out why this is and fix it. */
3950 : 819 : if (kind_expr->ts.type != BT_INTEGER
3951 : 27 : && kind_expr->ts.type != BT_PROCEDURE)
3952 : : {
3953 : 3 : gfc_error ("The parameter expression at %C must be of "
3954 : : "INTEGER type and not %s type",
3955 : : gfc_basic_typename (kind_expr->ts.type));
3956 : 3 : goto error_return;
3957 : : }
3958 : 816 : if (kind_expr->ts.type == BT_INTEGER && !ok)
3959 : : {
3960 : 2 : gfc_error ("The parameter expression at %C does not "
3961 : : "simplify to an INTEGER constant");
3962 : 2 : goto error_return;
3963 : : }
3964 : :
3965 : 814 : tail->expr = gfc_copy_expr (kind_expr);
3966 : : }
3967 : :
3968 : 996 : if (actual_param)
3969 : 915 : tail->spec_type = actual_param->spec_type;
3970 : :
3971 : 996 : if (!param->attr.pdt_kind)
3972 : : {
3973 : 529 : if (!name_seen && actual_param)
3974 : 348 : actual_param = actual_param->next;
3975 : 529 : if (kind_expr)
3976 : : {
3977 : 349 : gfc_free_expr (kind_expr);
3978 : 349 : kind_expr = NULL;
3979 : : }
3980 : 529 : continue;
3981 : : }
3982 : :
3983 : 467 : if (actual_param
3984 : 410 : && (actual_param->spec_type == SPEC_ASSUMED
3985 : 410 : || actual_param->spec_type == SPEC_DEFERRED))
3986 : : {
3987 : 2 : gfc_error ("The KIND parameter %qs at %C cannot either be "
3988 : : "ASSUMED or DEFERRED", param->name);
3989 : 2 : goto error_return;
3990 : : }
3991 : :
3992 : 465 : if (!kind_expr || !gfc_is_constant_expr (kind_expr))
3993 : : {
3994 : 1 : gfc_error ("The value for the KIND parameter %qs at %C does not "
3995 : : "reduce to a constant expression", param->name);
3996 : 1 : goto error_return;
3997 : : }
3998 : :
3999 : 464 : gfc_extract_int (kind_expr, &kind_value);
4000 : 464 : sprintf (name + strlen (name), "_%d", kind_value);
4001 : :
4002 : 464 : if (!name_seen && actual_param)
4003 : 259 : actual_param = actual_param->next;
4004 : 464 : gfc_free_expr (kind_expr);
4005 : : }
4006 : :
4007 : 553 : if (!name_seen && actual_param)
4008 : : {
4009 : 1 : gfc_error ("The type parameter spec list at %C contains too many "
4010 : : "parameter expressions");
4011 : 1 : goto error_return;
4012 : : }
4013 : :
4014 : : /* Now we search for the PDT instance 'name'. If it doesn't exist, we
4015 : : build it, using 'pdt' as a template. */
4016 : 552 : if (gfc_get_symbol (name, pdt->ns, &instance))
4017 : : {
4018 : 0 : gfc_error ("Parameterized derived type at %C is ambiguous");
4019 : 0 : goto error_return;
4020 : : }
4021 : :
4022 : 552 : m = MATCH_YES;
4023 : :
4024 : 552 : if (instance->attr.flavor == FL_DERIVED
4025 : 552 : && instance->attr.pdt_type)
4026 : : {
4027 : 325 : instance->refs++;
4028 : 325 : if (ext_param_list)
4029 : 62 : *ext_param_list = type_param_spec_list;
4030 : 325 : *sym = instance;
4031 : 325 : gfc_commit_symbols ();
4032 : 325 : return m;
4033 : : }
4034 : :
4035 : : /* Start building the new instance of the parameterized type. */
4036 : 227 : gfc_copy_attr (&instance->attr, &pdt->attr, &pdt->declared_at);
4037 : 227 : instance->attr.pdt_template = 0;
4038 : 227 : instance->attr.pdt_type = 1;
4039 : 227 : instance->declared_at = gfc_current_locus;
4040 : :
4041 : : /* Add the components, replacing the parameters in all expressions
4042 : : with the expressions for their values in 'type_param_spec_list'. */
4043 : 227 : c1 = pdt->components;
4044 : 227 : tail = type_param_spec_list;
4045 : 918 : for (; c1; c1 = c1->next)
4046 : : {
4047 : 692 : gfc_add_component (instance, c1->name, &c2);
4048 : :
4049 : 692 : c2->ts = c1->ts;
4050 : 692 : c2->attr = c1->attr;
4051 : :
4052 : : /* The order of declaration of the type_specs might not be the
4053 : : same as that of the components. */
4054 : 692 : if (c1->attr.pdt_kind || c1->attr.pdt_len)
4055 : : {
4056 : 605 : for (tail = type_param_spec_list; tail; tail = tail->next)
4057 : 605 : if (strcmp (c1->name, tail->name) == 0)
4058 : : break;
4059 : : }
4060 : :
4061 : : /* Deal with type extension by recursively calling this function
4062 : : to obtain the instance of the extended type. */
4063 : 692 : if (gfc_current_state () != COMP_DERIVED
4064 : 692 : && c1 == pdt->components
4065 : 227 : && (c1->ts.type == BT_DERIVED || c1->ts.type == BT_CLASS)
4066 : 29 : && c1->ts.u.derived && c1->ts.u.derived->attr.pdt_template
4067 : 721 : && gfc_get_derived_super_type (*sym) == c2->ts.u.derived)
4068 : : {
4069 : 29 : gfc_formal_arglist *f;
4070 : :
4071 : 29 : old_param_spec_list = type_param_spec_list;
4072 : :
4073 : : /* Obtain a spec list appropriate to the extended type..*/
4074 : 29 : actual_param = gfc_copy_actual_arglist (type_param_spec_list);
4075 : 29 : type_param_spec_list = actual_param;
4076 : 67 : for (f = c1->ts.u.derived->formal; f && f->next; f = f->next)
4077 : 38 : actual_param = actual_param->next;
4078 : 29 : if (actual_param)
4079 : : {
4080 : 29 : gfc_free_actual_arglist (actual_param->next);
4081 : 29 : actual_param->next = NULL;
4082 : : }
4083 : :
4084 : : /* Now obtain the PDT instance for the extended type. */
4085 : 29 : c2->param_list = type_param_spec_list;
4086 : 29 : m = gfc_get_pdt_instance (type_param_spec_list, &c2->ts.u.derived,
4087 : : NULL);
4088 : 29 : type_param_spec_list = old_param_spec_list;
4089 : :
4090 : 29 : c2->ts.u.derived->refs++;
4091 : 29 : gfc_set_sym_referenced (c2->ts.u.derived);
4092 : :
4093 : : /* Set extension level. */
4094 : 29 : if (c2->ts.u.derived->attr.extension == 255)
4095 : : {
4096 : : /* Since the extension field is 8 bit wide, we can only have
4097 : : up to 255 extension levels. */
4098 : 0 : gfc_error ("Maximum extension level reached with type %qs at %L",
4099 : : c2->ts.u.derived->name,
4100 : : &c2->ts.u.derived->declared_at);
4101 : 0 : goto error_return;
4102 : : }
4103 : 29 : instance->attr.extension = c2->ts.u.derived->attr.extension + 1;
4104 : :
4105 : 29 : continue;
4106 : 29 : }
4107 : :
4108 : : /* Addressing PR82943, this will fix the issue where a function or
4109 : : subroutine is declared as not a member of the PDT instance.
4110 : : The reason for this is because the PDT instance did not have access
4111 : : to its template's f2k_derived namespace in order to find the
4112 : : typebound procedures.
4113 : :
4114 : : The number of references to the PDT template's f2k_derived will
4115 : : ensure that f2k_derived is properly freed later on. */
4116 : :
4117 : 663 : if (!instance->f2k_derived && pdt->f2k_derived)
4118 : : {
4119 : 226 : instance->f2k_derived = pdt->f2k_derived;
4120 : 226 : instance->f2k_derived->refs++;
4121 : : }
4122 : :
4123 : : /* Set the component kind using the parameterized expression. */
4124 : 663 : if ((c1->ts.kind == 0 || c1->ts.type == BT_CHARACTER)
4125 : 211 : && c1->kind_expr != NULL)
4126 : : {
4127 : 130 : gfc_expr *e = gfc_copy_expr (c1->kind_expr);
4128 : 130 : gfc_insert_kind_parameter_exprs (e);
4129 : 130 : gfc_simplify_expr (e, 1);
4130 : 130 : gfc_extract_int (e, &c2->ts.kind);
4131 : 130 : gfc_free_expr (e);
4132 : 130 : if (gfc_validate_kind (c2->ts.type, c2->ts.kind, true) < 0)
4133 : : {
4134 : 1 : gfc_error ("Kind %d not supported for type %s at %C",
4135 : : c2->ts.kind, gfc_basic_typename (c2->ts.type));
4136 : 1 : goto error_return;
4137 : : }
4138 : : }
4139 : :
4140 : : /* Similarly, set the string length if parameterized. */
4141 : 662 : if (c1->ts.type == BT_CHARACTER
4142 : 67 : && c1->ts.u.cl->length
4143 : 729 : && gfc_derived_parameter_expr (c1->ts.u.cl->length))
4144 : : {
4145 : 67 : gfc_expr *e;
4146 : 67 : e = gfc_copy_expr (c1->ts.u.cl->length);
4147 : 67 : gfc_insert_kind_parameter_exprs (e);
4148 : 67 : gfc_simplify_expr (e, 1);
4149 : 67 : c2->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4150 : 67 : c2->ts.u.cl->length = e;
4151 : 67 : c2->attr.pdt_string = 1;
4152 : : }
4153 : :
4154 : : /* Set up either the KIND/LEN initializer, if constant,
4155 : : or the parameterized expression. Use the template
4156 : : initializer if one is not already set in this instance. */
4157 : 662 : if (c2->attr.pdt_kind || c2->attr.pdt_len)
4158 : : {
4159 : 370 : if (tail && tail->expr && gfc_is_constant_expr (tail->expr))
4160 : 301 : c2->initializer = gfc_copy_expr (tail->expr);
4161 : 69 : else if (tail && tail->expr)
4162 : : {
4163 : 4 : c2->param_list = gfc_get_actual_arglist ();
4164 : 4 : c2->param_list->name = tail->name;
4165 : 4 : c2->param_list->expr = gfc_copy_expr (tail->expr);
4166 : 4 : c2->param_list->next = NULL;
4167 : : }
4168 : :
4169 : 370 : if (!c2->initializer && c1->initializer)
4170 : 17 : c2->initializer = gfc_copy_expr (c1->initializer);
4171 : : }
4172 : :
4173 : : /* Copy the array spec. */
4174 : 662 : c2->as = gfc_copy_array_spec (c1->as);
4175 : 662 : if (c1->ts.type == BT_CLASS)
4176 : 0 : CLASS_DATA (c2)->as = gfc_copy_array_spec (CLASS_DATA (c1)->as);
4177 : :
4178 : : /* Determine if an array spec is parameterized. If so, substitute
4179 : : in the parameter expressions for the bounds and set the pdt_array
4180 : : attribute. Notice that this attribute must be unconditionally set
4181 : : if this is an array of parameterized character length. */
4182 : 662 : if (c1->as && c1->as->type == AS_EXPLICIT)
4183 : : {
4184 : : bool pdt_array = false;
4185 : :
4186 : : /* Are the bounds of the array parameterized? */
4187 : 327 : for (i = 0; i < c1->as->rank; i++)
4188 : : {
4189 : 202 : if (gfc_derived_parameter_expr (c1->as->lower[i]))
4190 : 0 : pdt_array = true;
4191 : 202 : if (gfc_derived_parameter_expr (c1->as->upper[i]))
4192 : 188 : pdt_array = true;
4193 : : }
4194 : :
4195 : : /* If they are, free the expressions for the bounds and
4196 : : replace them with the template expressions with substitute
4197 : : values. */
4198 : 313 : for (i = 0; pdt_array && i < c1->as->rank; i++)
4199 : : {
4200 : 188 : gfc_expr *e;
4201 : 188 : e = gfc_copy_expr (c1->as->lower[i]);
4202 : 188 : gfc_insert_kind_parameter_exprs (e);
4203 : 188 : gfc_simplify_expr (e, 1);
4204 : 188 : gfc_free_expr (c2->as->lower[i]);
4205 : 188 : c2->as->lower[i] = e;
4206 : 188 : e = gfc_copy_expr (c1->as->upper[i]);
4207 : 188 : gfc_insert_kind_parameter_exprs (e);
4208 : 188 : gfc_simplify_expr (e, 1);
4209 : 188 : gfc_free_expr (c2->as->upper[i]);
4210 : 188 : c2->as->upper[i] = e;
4211 : : }
4212 : 125 : c2->attr.pdt_array = pdt_array ? 1 : c2->attr.pdt_string;
4213 : 125 : if (c1->initializer)
4214 : : {
4215 : 12 : c2->initializer = gfc_copy_expr (c1->initializer);
4216 : 12 : gfc_insert_kind_parameter_exprs (c2->initializer);
4217 : 12 : gfc_simplify_expr (c2->initializer, 1);
4218 : : }
4219 : : }
4220 : :
4221 : : /* Recurse into this function for PDT components. */
4222 : 662 : if ((c1->ts.type == BT_DERIVED || c1->ts.type == BT_CLASS)
4223 : 39 : && c1->ts.u.derived && c1->ts.u.derived->attr.pdt_template)
4224 : : {
4225 : 39 : gfc_actual_arglist *params;
4226 : : /* The component in the template has a list of specification
4227 : : expressions derived from its declaration. */
4228 : 39 : params = gfc_copy_actual_arglist (c1->param_list);
4229 : 39 : actual_param = params;
4230 : : /* Substitute the template parameters with the expressions
4231 : : from the specification list. */
4232 : 118 : for (;actual_param; actual_param = actual_param->next)
4233 : 40 : gfc_insert_parameter_exprs (actual_param->expr,
4234 : : type_param_spec_list);
4235 : :
4236 : : /* Now obtain the PDT instance for the component. */
4237 : 39 : old_param_spec_list = type_param_spec_list;
4238 : 39 : m = gfc_get_pdt_instance (params, &c2->ts.u.derived, NULL);
4239 : 39 : type_param_spec_list = old_param_spec_list;
4240 : :
4241 : 39 : c2->param_list = params;
4242 : 39 : if (!(c2->attr.pointer || c2->attr.allocatable))
4243 : 26 : c2->initializer = gfc_default_initializer (&c2->ts);
4244 : :
4245 : 39 : if (c2->attr.allocatable)
4246 : 7 : instance->attr.alloc_comp = 1;
4247 : : }
4248 : : }
4249 : :
4250 : 226 : gfc_commit_symbol (instance);
4251 : 226 : if (ext_param_list)
4252 : 7 : *ext_param_list = type_param_spec_list;
4253 : 226 : *sym = instance;
4254 : 226 : return m;
4255 : :
4256 : 14 : error_return:
4257 : 14 : gfc_free_actual_arglist (type_param_spec_list);
4258 : 14 : return MATCH_ERROR;
4259 : : }
4260 : :
4261 : :
4262 : : /* Match a legacy nonstandard BYTE type-spec. */
4263 : :
4264 : : static match
4265 : 1092321 : match_byte_typespec (gfc_typespec *ts)
4266 : : {
4267 : 1092321 : if (gfc_match (" byte") == MATCH_YES)
4268 : : {
4269 : 33 : if (!gfc_notify_std (GFC_STD_GNU, "BYTE type at %C"))
4270 : : return MATCH_ERROR;
4271 : :
4272 : 31 : if (gfc_current_form == FORM_FREE)
4273 : : {
4274 : 19 : char c = gfc_peek_ascii_char ();
4275 : 19 : if (!gfc_is_whitespace (c) && c != ',')
4276 : : return MATCH_NO;
4277 : : }
4278 : :
4279 : 29 : if (gfc_validate_kind (BT_INTEGER, 1, true) < 0)
4280 : : {
4281 : 0 : gfc_error ("BYTE type used at %C "
4282 : : "is not available on the target machine");
4283 : 0 : return MATCH_ERROR;
4284 : : }
4285 : :
4286 : 29 : ts->type = BT_INTEGER;
4287 : 29 : ts->kind = 1;
4288 : 29 : return MATCH_YES;
4289 : : }
4290 : : return MATCH_NO;
4291 : : }
4292 : :
4293 : :
4294 : : /* Matches a declaration-type-spec (F03:R502). If successful, sets the ts
4295 : : structure to the matched specification. This is necessary for FUNCTION and
4296 : : IMPLICIT statements.
4297 : :
4298 : : If implicit_flag is nonzero, then we don't check for the optional
4299 : : kind specification. Not doing so is needed for matching an IMPLICIT
4300 : : statement correctly. */
4301 : :
4302 : : match
4303 : 1092321 : gfc_match_decl_type_spec (gfc_typespec *ts, int implicit_flag)
4304 : : {
4305 : : /* Provide sufficient space to hold "pdtsymbol". */
4306 : 1092321 : char *name = XALLOCAVEC (char, GFC_MAX_SYMBOL_LEN + 1);
4307 : 1092321 : gfc_symbol *sym, *dt_sym;
4308 : 1092321 : match m;
4309 : 1092321 : char c;
4310 : 1092321 : bool seen_deferred_kind, matched_type;
4311 : 1092321 : const char *dt_name;
4312 : :
4313 : 1092321 : decl_type_param_list = NULL;
4314 : :
4315 : : /* A belt and braces check that the typespec is correctly being treated
4316 : : as a deferred characteristic association. */
4317 : 2184642 : seen_deferred_kind = (gfc_current_state () == COMP_FUNCTION)
4318 : 77166 : && (gfc_current_block ()->result->ts.kind == -1)
4319 : 1103685 : && (ts->kind == -1);
4320 : 1092321 : gfc_clear_ts (ts);
4321 : 1092321 : if (seen_deferred_kind)
4322 : 9206 : ts->kind = -1;
4323 : :
4324 : : /* Clear the current binding label, in case one is given. */
4325 : 1092321 : curr_binding_label = NULL;
4326 : :
4327 : : /* Match BYTE type-spec. */
4328 : 1092321 : m = match_byte_typespec (ts);
4329 : 1092321 : if (m != MATCH_NO)
4330 : : return m;
4331 : :
4332 : 1092290 : m = gfc_match (" type (");
4333 : 1092290 : matched_type = (m == MATCH_YES);
4334 : 1092290 : if (matched_type)
4335 : : {
4336 : 27427 : gfc_gobble_whitespace ();
4337 : 27427 : if (gfc_peek_ascii_char () == '*')
4338 : : {
4339 : 4741 : if ((m = gfc_match ("* ) ")) != MATCH_YES)
4340 : : return m;
4341 : 4741 : if (gfc_comp_struct (gfc_current_state ()))
4342 : : {
4343 : 2 : gfc_error ("Assumed type at %C is not allowed for components");
4344 : 2 : return MATCH_ERROR;
4345 : : }
4346 : 4739 : if (!gfc_notify_std (GFC_STD_F2018, "Assumed type at %C"))
4347 : : return MATCH_ERROR;
4348 : 4737 : ts->type = BT_ASSUMED;
4349 : 4737 : return MATCH_YES;
4350 : : }
4351 : :
4352 : 22686 : m = gfc_match ("%n", name);
4353 : 22686 : matched_type = (m == MATCH_YES);
4354 : : }
4355 : :
4356 : 22686 : if ((matched_type && strcmp ("integer", name) == 0)
4357 : 1087549 : || (!matched_type && gfc_match (" integer") == MATCH_YES))
4358 : : {
4359 : 103653 : ts->type = BT_INTEGER;
4360 : 103653 : ts->kind = gfc_default_integer_kind;
4361 : 103653 : goto get_kind;
4362 : : }
4363 : :
4364 : 983896 : if (flag_unsigned)
4365 : : {
4366 : 0 : if ((matched_type && strcmp ("unsigned", name) == 0)
4367 : 5308 : || (!matched_type && gfc_match (" unsigned") == MATCH_YES))
4368 : : {
4369 : 665 : ts->type = BT_UNSIGNED;
4370 : 665 : ts->kind = gfc_default_integer_kind;
4371 : 665 : goto get_kind;
4372 : : }
4373 : : }
4374 : :
4375 : 22681 : if ((matched_type && strcmp ("character", name) == 0)
4376 : 983231 : || (!matched_type && gfc_match (" character") == MATCH_YES))
4377 : : {
4378 : 27989 : if (matched_type
4379 : 27989 : && !gfc_notify_std (GFC_STD_F2008, "TYPE with "
4380 : : "intrinsic-type-spec at %C"))
4381 : : return MATCH_ERROR;
4382 : :
4383 : 27988 : ts->type = BT_CHARACTER;
4384 : 27988 : if (implicit_flag == 0)
4385 : 27882 : m = gfc_match_char_spec (ts);
4386 : : else
4387 : : m = MATCH_YES;
4388 : :
4389 : 27988 : if (matched_type && m == MATCH_YES && gfc_match_char (')') != MATCH_YES)
4390 : : {
4391 : 1 : gfc_error ("Malformed type-spec at %C");
4392 : 1 : return MATCH_ERROR;
4393 : : }
4394 : :
4395 : 27987 : return m;
4396 : : }
4397 : :
4398 : 22677 : if ((matched_type && strcmp ("real", name) == 0)
4399 : 955242 : || (!matched_type && gfc_match (" real") == MATCH_YES))
4400 : : {
4401 : 29120 : ts->type = BT_REAL;
4402 : 29120 : ts->kind = gfc_default_real_kind;
4403 : 29120 : goto get_kind;
4404 : : }
4405 : :
4406 : 926122 : if ((matched_type
4407 : 22674 : && (strcmp ("doubleprecision", name) == 0
4408 : 22673 : || (strcmp ("double", name) == 0
4409 : 5 : && gfc_match (" precision") == MATCH_YES)))
4410 : 926122 : || (!matched_type && gfc_match (" double precision") == MATCH_YES))
4411 : : {
4412 : 2534 : if (matched_type
4413 : 2534 : && !gfc_notify_std (GFC_STD_F2008, "TYPE with "
4414 : : "intrinsic-type-spec at %C"))
4415 : : return MATCH_ERROR;
4416 : :
4417 : 2533 : if (matched_type && gfc_match_char (')') != MATCH_YES)
4418 : : {
4419 : 2 : gfc_error ("Malformed type-spec at %C");
4420 : 2 : return MATCH_ERROR;
4421 : : }
4422 : :
4423 : 2531 : ts->type = BT_REAL;
4424 : 2531 : ts->kind = gfc_default_double_kind;
4425 : 2531 : return MATCH_YES;
4426 : : }
4427 : :
4428 : 22670 : if ((matched_type && strcmp ("complex", name) == 0)
4429 : 923588 : || (!matched_type && gfc_match (" complex") == MATCH_YES))
4430 : : {
4431 : 3897 : ts->type = BT_COMPLEX;
4432 : 3897 : ts->kind = gfc_default_complex_kind;
4433 : 3897 : goto get_kind;
4434 : : }
4435 : :
4436 : 919691 : if ((matched_type
4437 : 22670 : && (strcmp ("doublecomplex", name) == 0
4438 : 22669 : || (strcmp ("double", name) == 0
4439 : 2 : && gfc_match (" complex") == MATCH_YES)))
4440 : 919691 : || (!matched_type && gfc_match (" double complex") == MATCH_YES))
4441 : : {
4442 : 204 : if (!gfc_notify_std (GFC_STD_GNU, "DOUBLE COMPLEX at %C"))
4443 : : return MATCH_ERROR;
4444 : :
4445 : 203 : if (matched_type
4446 : 203 : && !gfc_notify_std (GFC_STD_F2008, "TYPE with "
4447 : : "intrinsic-type-spec at %C"))
4448 : : return MATCH_ERROR;
4449 : :
4450 : 203 : if (matched_type && gfc_match_char (')') != MATCH_YES)
4451 : : {
4452 : 2 : gfc_error ("Malformed type-spec at %C");
4453 : 2 : return MATCH_ERROR;
4454 : : }
4455 : :
4456 : 201 : ts->type = BT_COMPLEX;
4457 : 201 : ts->kind = gfc_default_double_kind;
4458 : 201 : return MATCH_YES;
4459 : : }
4460 : :
4461 : 22667 : if ((matched_type && strcmp ("logical", name) == 0)
4462 : 919487 : || (!matched_type && gfc_match (" logical") == MATCH_YES))
4463 : : {
4464 : 10916 : ts->type = BT_LOGICAL;
4465 : 10916 : ts->kind = gfc_default_logical_kind;
4466 : 10916 : goto get_kind;
4467 : : }
4468 : :
4469 : 908571 : if (matched_type)
4470 : : {
4471 : 22664 : m = gfc_match_actual_arglist (1, &decl_type_param_list, true);
4472 : 22664 : if (m == MATCH_ERROR)
4473 : : return m;
4474 : :
4475 : 22664 : gfc_gobble_whitespace ();
4476 : 22664 : if (gfc_peek_ascii_char () != ')')
4477 : : {
4478 : 1 : gfc_error ("Malformed type-spec at %C");
4479 : 1 : return MATCH_ERROR;
4480 : : }
4481 : 22663 : m = gfc_match_char (')'); /* Burn closing ')'. */
4482 : : }
4483 : :
4484 : 908570 : if (m != MATCH_YES)
4485 : 885907 : m = match_record_decl (name);
4486 : :
4487 : 908570 : if (matched_type || m == MATCH_YES)
4488 : : {
4489 : 23007 : ts->type = BT_DERIVED;
4490 : : /* We accept record/s/ or type(s) where s is a structure, but we
4491 : : * don't need all the extra derived-type stuff for structures. */
4492 : 23007 : if (gfc_find_symbol (gfc_dt_upper_string (name), NULL, 1, &sym))
4493 : : {
4494 : 1 : gfc_error ("Type name %qs at %C is ambiguous", name);
4495 : 1 : return MATCH_ERROR;
4496 : : }
4497 : :
4498 : 23006 : if (sym && sym->attr.flavor == FL_DERIVED
4499 : 22614 : && sym->attr.pdt_template
4500 : 406 : && gfc_current_state () != COMP_DERIVED)
4501 : : {
4502 : 367 : m = gfc_get_pdt_instance (decl_type_param_list, &sym, NULL);
4503 : 367 : if (m != MATCH_YES)
4504 : : return m;
4505 : 354 : gcc_assert (!sym->attr.pdt_template && sym->attr.pdt_type);
4506 : 354 : ts->u.derived = sym;
4507 : 354 : const char* lower = gfc_dt_lower_string (sym->name);
4508 : 354 : size_t len = strlen (lower);
4509 : : /* Reallocate with sufficient size. */
4510 : 354 : if (len > GFC_MAX_SYMBOL_LEN)
4511 : 2 : name = XALLOCAVEC (char, len + 1);
4512 : 354 : memcpy (name, lower, len);
4513 : 354 : name[len] = '\0';
4514 : : }
4515 : :
4516 : 22993 : if (sym && sym->attr.flavor == FL_STRUCT)
4517 : : {
4518 : 361 : ts->u.derived = sym;
4519 : 361 : return MATCH_YES;
4520 : : }
4521 : : /* Actually a derived type. */
4522 : : }
4523 : :
4524 : : else
4525 : : {
4526 : : /* Match nested STRUCTURE declarations; only valid within another
4527 : : structure declaration. */
4528 : 885563 : if (flag_dec_structure
4529 : 8032 : && (gfc_current_state () == COMP_STRUCTURE
4530 : 7570 : || gfc_current_state () == COMP_MAP))
4531 : : {
4532 : 732 : m = gfc_match (" structure");
4533 : 732 : if (m == MATCH_YES)
4534 : : {
4535 : 27 : m = gfc_match_structure_decl ();
4536 : 27 : if (m == MATCH_YES)
4537 : : {
4538 : : /* gfc_new_block is updated by match_structure_decl. */
4539 : 26 : ts->type = BT_DERIVED;
4540 : 26 : ts->u.derived = gfc_new_block;
4541 : 26 : return MATCH_YES;
4542 : : }
4543 : : }
4544 : 706 : if (m == MATCH_ERROR)
4545 : : return MATCH_ERROR;
4546 : : }
4547 : :
4548 : : /* Match CLASS declarations. */
4549 : 885536 : m = gfc_match (" class ( * )");
4550 : 885536 : if (m == MATCH_ERROR)
4551 : : return MATCH_ERROR;
4552 : 885536 : else if (m == MATCH_YES)
4553 : : {
4554 : 1749 : gfc_symbol *upe;
4555 : 1749 : gfc_symtree *st;
4556 : 1749 : ts->type = BT_CLASS;
4557 : 1749 : gfc_find_symbol ("STAR", gfc_current_ns, 1, &upe);
4558 : 1749 : if (upe == NULL)
4559 : : {
4560 : 1064 : upe = gfc_new_symbol ("STAR", gfc_current_ns);
4561 : 1064 : st = gfc_new_symtree (&gfc_current_ns->sym_root, "STAR");
4562 : 1064 : st->n.sym = upe;
4563 : 1064 : gfc_set_sym_referenced (upe);
4564 : 1064 : upe->refs++;
4565 : 1064 : upe->ts.type = BT_VOID;
4566 : 1064 : upe->attr.unlimited_polymorphic = 1;
4567 : : /* This is essential to force the construction of
4568 : : unlimited polymorphic component class containers. */
4569 : 1064 : upe->attr.zero_comp = 1;
4570 : 1064 : if (!gfc_add_flavor (&upe->attr, FL_DERIVED, NULL,
4571 : : &gfc_current_locus))
4572 : : return MATCH_ERROR;
4573 : : }
4574 : : else
4575 : : {
4576 : 685 : st = gfc_get_tbp_symtree (&gfc_current_ns->sym_root, "STAR");
4577 : 685 : st->n.sym = upe;
4578 : 685 : upe->refs++;
4579 : : }
4580 : 1749 : ts->u.derived = upe;
4581 : 1749 : return m;
4582 : : }
4583 : :
4584 : 883787 : m = gfc_match (" class (");
4585 : :
4586 : 883787 : if (m == MATCH_YES)
4587 : 8405 : m = gfc_match ("%n", name);
4588 : : else
4589 : : return m;
4590 : :
4591 : 8405 : if (m != MATCH_YES)
4592 : : return m;
4593 : 8405 : ts->type = BT_CLASS;
4594 : :
4595 : 8405 : if (!gfc_notify_std (GFC_STD_F2003, "CLASS statement at %C"))
4596 : : return MATCH_ERROR;
4597 : :
4598 : 8404 : m = gfc_match_actual_arglist (1, &decl_type_param_list, true);
4599 : 8404 : if (m == MATCH_ERROR)
4600 : : return m;
4601 : :
4602 : 8404 : m = gfc_match_char (')');
4603 : 8404 : if (m != MATCH_YES)
4604 : : return m;
4605 : : }
4606 : :
4607 : : /* Defer association of the derived type until the end of the
4608 : : specification block. However, if the derived type can be
4609 : : found, add it to the typespec. */
4610 : 31036 : if (gfc_matching_function)
4611 : : {
4612 : 989 : ts->u.derived = NULL;
4613 : 989 : if (gfc_current_state () != COMP_INTERFACE
4614 : 989 : && !gfc_find_symbol (name, NULL, 1, &sym) && sym)
4615 : : {
4616 : 474 : sym = gfc_find_dt_in_generic (sym);
4617 : 474 : ts->u.derived = sym;
4618 : : }
4619 : 989 : return MATCH_YES;
4620 : : }
4621 : :
4622 : : /* Search for the name but allow the components to be defined later. If
4623 : : type = -1, this typespec has been seen in a function declaration but
4624 : : the type could not be accessed at that point. The actual derived type is
4625 : : stored in a symtree with the first letter of the name capitalized; the
4626 : : symtree with the all lower-case name contains the associated
4627 : : generic function. */
4628 : 30047 : dt_name = gfc_dt_upper_string (name);
4629 : 30047 : sym = NULL;
4630 : 30047 : dt_sym = NULL;
4631 : 30047 : if (ts->kind != -1)
4632 : : {
4633 : 28904 : gfc_get_ha_symbol (name, &sym);
4634 : 28904 : if (sym->generic && gfc_find_symbol (dt_name, NULL, 0, &dt_sym))
4635 : : {
4636 : 0 : gfc_error ("Type name %qs at %C is ambiguous", name);
4637 : 0 : return MATCH_ERROR;
4638 : : }
4639 : 28904 : if (sym->generic && !dt_sym)
4640 : 12010 : dt_sym = gfc_find_dt_in_generic (sym);
4641 : :
4642 : : /* Host associated PDTs can get confused with their constructors
4643 : : because they ar instantiated in the template's namespace. */
4644 : 28904 : if (!dt_sym)
4645 : : {
4646 : 473 : if (gfc_find_symbol (dt_name, NULL, 1, &dt_sym))
4647 : : {
4648 : 0 : gfc_error ("Type name %qs at %C is ambiguous", name);
4649 : 0 : return MATCH_ERROR;
4650 : : }
4651 : 473 : if (dt_sym && !dt_sym->attr.pdt_type)
4652 : 0 : dt_sym = NULL;
4653 : : }
4654 : : }
4655 : 1143 : else if (ts->kind == -1)
4656 : : {
4657 : 2286 : int iface = gfc_state_stack->previous->state != COMP_INTERFACE
4658 : 1143 : || gfc_current_ns->has_import_set;
4659 : 1143 : gfc_find_symbol (name, NULL, iface, &sym);
4660 : 1143 : if (sym && sym->generic && gfc_find_symbol (dt_name, NULL, 1, &dt_sym))
4661 : : {
4662 : 0 : gfc_error ("Type name %qs at %C is ambiguous", name);
4663 : 0 : return MATCH_ERROR;
4664 : : }
4665 : 1143 : if (sym && sym->generic && !dt_sym)
4666 : 0 : dt_sym = gfc_find_dt_in_generic (sym);
4667 : :
4668 : 1143 : ts->kind = 0;
4669 : 1143 : if (sym == NULL)
4670 : : return MATCH_NO;
4671 : : }
4672 : :
4673 : 30038 : if ((sym->attr.flavor != FL_UNKNOWN && sym->attr.flavor != FL_STRUCT
4674 : 29687 : && !(sym->attr.flavor == FL_PROCEDURE && sym->attr.generic))
4675 : 30036 : || sym->attr.subroutine)
4676 : : {
4677 : 2 : gfc_error ("Type name %qs at %C conflicts with previously declared "
4678 : : "entity at %L, which has the same name", name,
4679 : : &sym->declared_at);
4680 : 2 : return MATCH_ERROR;
4681 : : }
4682 : :
4683 : 30036 : if (sym && sym->attr.flavor == FL_DERIVED
4684 : 30036 : && sym->attr.pdt_template
4685 : 0 : && gfc_current_state () != COMP_DERIVED)
4686 : : {
4687 : 0 : m = gfc_get_pdt_instance (decl_type_param_list, &sym, NULL);
4688 : 0 : if (m != MATCH_YES)
4689 : : return m;
4690 : 0 : gcc_assert (!sym->attr.pdt_template && sym->attr.pdt_type);
4691 : 0 : ts->u.derived = sym;
4692 : 0 : strcpy (name, gfc_dt_lower_string (sym->name));
4693 : : }
4694 : :
4695 : 30036 : gfc_save_symbol_data (sym);
4696 : 30036 : gfc_set_sym_referenced (sym);
4697 : 30036 : if (!sym->attr.generic
4698 : 30036 : && !gfc_add_generic (&sym->attr, sym->name, NULL))
4699 : : return MATCH_ERROR;
4700 : :
4701 : 30036 : if (!sym->attr.function
4702 : 30036 : && !gfc_add_function (&sym->attr, sym->name, NULL))
4703 : : return MATCH_ERROR;
4704 : :
4705 : 30036 : if (dt_sym && dt_sym->attr.flavor == FL_DERIVED
4706 : 29916 : && dt_sym->attr.pdt_template
4707 : 81 : && gfc_current_state () != COMP_DERIVED)
4708 : : {
4709 : 42 : m = gfc_get_pdt_instance (decl_type_param_list, &dt_sym, NULL);
4710 : 42 : if (m != MATCH_YES)
4711 : : return m;
4712 : 42 : gcc_assert (!dt_sym->attr.pdt_template && dt_sym->attr.pdt_type);
4713 : : }
4714 : :
4715 : 30036 : if (!dt_sym)
4716 : : {
4717 : 120 : gfc_interface *intr, *head;
4718 : :
4719 : : /* Use upper case to save the actual derived-type symbol. */
4720 : 120 : gfc_get_symbol (dt_name, NULL, &dt_sym);
4721 : 120 : dt_sym->name = gfc_get_string ("%s", sym->name);
4722 : 120 : head = sym->generic;
4723 : 120 : intr = gfc_get_interface ();
4724 : 120 : intr->sym = dt_sym;
4725 : 120 : intr->where = gfc_current_locus;
4726 : 120 : intr->next = head;
4727 : 120 : sym->generic = intr;
4728 : 120 : sym->attr.if_source = IFSRC_DECL;
4729 : : }
4730 : : else
4731 : 29916 : gfc_save_symbol_data (dt_sym);
4732 : :
4733 : 30036 : gfc_set_sym_referenced (dt_sym);
4734 : :
4735 : 120 : if (dt_sym->attr.flavor != FL_DERIVED && dt_sym->attr.flavor != FL_STRUCT
4736 : 30156 : && !gfc_add_flavor (&dt_sym->attr, FL_DERIVED, sym->name, NULL))
4737 : : return MATCH_ERROR;
4738 : :
4739 : 30036 : ts->u.derived = dt_sym;
4740 : :
4741 : 30036 : return MATCH_YES;
4742 : :
4743 : 148251 : get_kind:
4744 : 148251 : if (matched_type
4745 : 148251 : && !gfc_notify_std (GFC_STD_F2008, "TYPE with "
4746 : : "intrinsic-type-spec at %C"))
4747 : : return MATCH_ERROR;
4748 : :
4749 : : /* For all types except double, derived and character, look for an
4750 : : optional kind specifier. MATCH_NO is actually OK at this point. */
4751 : 148248 : if (implicit_flag == 1)
4752 : : {
4753 : 242 : if (matched_type && gfc_match_char (')') != MATCH_YES)
4754 : : return MATCH_ERROR;
4755 : :
4756 : 242 : return MATCH_YES;
4757 : : }
4758 : :
4759 : 148006 : if (gfc_current_form == FORM_FREE)
4760 : : {
4761 : 134974 : c = gfc_peek_ascii_char ();
4762 : 134974 : if (!gfc_is_whitespace (c) && c != '*' && c != '('
4763 : 66960 : && c != ':' && c != ',')
4764 : : {
4765 : 165 : if (matched_type && c == ')')
4766 : : {
4767 : 2 : gfc_next_ascii_char ();
4768 : 2 : return MATCH_YES;
4769 : : }
4770 : 163 : gfc_error ("Malformed type-spec at %C");
4771 : 163 : return MATCH_NO;
4772 : : }
4773 : : }
4774 : :
4775 : 147841 : m = gfc_match_kind_spec (ts, false);
4776 : 147841 : if (m == MATCH_ERROR)
4777 : : return MATCH_ERROR;
4778 : :
4779 : 147805 : if (m == MATCH_NO && ts->type != BT_CHARACTER)
4780 : : {
4781 : 102516 : m = gfc_match_old_kind_spec (ts);
4782 : 102516 : if (gfc_validate_kind (ts->type, ts->kind, true) == -1)
4783 : : return MATCH_ERROR;
4784 : : }
4785 : :
4786 : 147797 : if (matched_type && gfc_match_char (')') != MATCH_YES)
4787 : : {
4788 : 0 : gfc_error ("Malformed type-spec at %C");
4789 : 0 : return MATCH_ERROR;
4790 : : }
4791 : :
4792 : : /* Defer association of the KIND expression of function results
4793 : : until after USE and IMPORT statements. */
4794 : 4475 : if ((gfc_current_state () == COMP_NONE && gfc_error_flag_test ())
4795 : 152237 : || gfc_matching_function)
4796 : 6989 : return MATCH_YES;
4797 : :
4798 : 140808 : if (m == MATCH_NO)
4799 : 142124 : m = MATCH_YES; /* No kind specifier found. */
4800 : :
4801 : : return m;
4802 : : }
4803 : :
4804 : :
4805 : : /* Match an IMPLICIT NONE statement. Actually, this statement is
4806 : : already matched in parse.cc, or we would not end up here in the
4807 : : first place. So the only thing we need to check, is if there is
4808 : : trailing garbage. If not, the match is successful. */
4809 : :
4810 : : match
4811 : 22211 : gfc_match_implicit_none (void)
4812 : : {
4813 : 22211 : char c;
4814 : 22211 : match m;
4815 : 22211 : char name[GFC_MAX_SYMBOL_LEN + 1];
4816 : 22211 : bool type = false;
4817 : 22211 : bool external = false;
4818 : 22211 : locus cur_loc = gfc_current_locus;
4819 : :
4820 : 22211 : if (gfc_current_ns->seen_implicit_none
4821 : 22209 : || gfc_current_ns->has_implicit_none_export)
4822 : : {
4823 : 4 : gfc_error ("Duplicate IMPLICIT NONE statement at %C");
4824 : 4 : return MATCH_ERROR;
4825 : : }
4826 : :
4827 : 22207 : gfc_gobble_whitespace ();
4828 : 22207 : c = gfc_peek_ascii_char ();
4829 : 22207 : if (c == '(')
4830 : : {
4831 : 1009 : (void) gfc_next_ascii_char ();
4832 : 1009 : if (!gfc_notify_std (GFC_STD_F2018, "IMPLICIT NONE with spec list at %C"))
4833 : : return MATCH_ERROR;
4834 : :
4835 : 1008 : gfc_gobble_whitespace ();
4836 : 1008 : if (gfc_peek_ascii_char () == ')')
4837 : : {
4838 : 1 : (void) gfc_next_ascii_char ();
4839 : 1 : type = true;
4840 : : }
4841 : : else
4842 : 3001 : for(;;)
4843 : : {
4844 : 2004 : m = gfc_match (" %n", name);
4845 : 2004 : if (m != MATCH_YES)
4846 : : return MATCH_ERROR;
4847 : :
4848 : 2004 : if (strcmp (name, "type") == 0)
4849 : : type = true;
4850 : 1007 : else if (strcmp (name, "external") == 0)
4851 : : external = true;
4852 : : else
4853 : : return MATCH_ERROR;
4854 : :
4855 : 2004 : gfc_gobble_whitespace ();
4856 : 2004 : c = gfc_next_ascii_char ();
4857 : 2004 : if (c == ',')
4858 : 997 : continue;
4859 : 1007 : if (c == ')')
4860 : : break;
4861 : : return MATCH_ERROR;
4862 : : }
4863 : : }
4864 : : else
4865 : : type = true;
4866 : :
4867 : 22206 : if (gfc_match_eos () != MATCH_YES)
4868 : : return MATCH_ERROR;
4869 : :
4870 : 22206 : gfc_set_implicit_none (type, external, &cur_loc);
4871 : :
4872 : 22206 : return MATCH_YES;
4873 : : }
4874 : :
4875 : :
4876 : : /* Match the letter range(s) of an IMPLICIT statement. */
4877 : :
4878 : : static match
4879 : 634 : match_implicit_range (void)
4880 : : {
4881 : 634 : char c, c1, c2;
4882 : 634 : int inner;
4883 : 634 : locus cur_loc;
4884 : :
4885 : 634 : cur_loc = gfc_current_locus;
4886 : :
4887 : 634 : gfc_gobble_whitespace ();
4888 : 634 : c = gfc_next_ascii_char ();
4889 : 634 : if (c != '(')
4890 : : {
4891 : 59 : gfc_error ("Missing character range in IMPLICIT at %C");
4892 : 59 : goto bad;
4893 : : }
4894 : :
4895 : : inner = 1;
4896 : 1247 : while (inner)
4897 : : {
4898 : 755 : gfc_gobble_whitespace ();
4899 : 755 : c1 = gfc_next_ascii_char ();
4900 : 755 : if (!ISALPHA (c1))
4901 : 48 : goto bad;
4902 : :
4903 : 707 : gfc_gobble_whitespace ();
4904 : 707 : c = gfc_next_ascii_char ();
4905 : :
4906 : 707 : switch (c)
4907 : : {
4908 : 201 : case ')':
4909 : 201 : inner = 0; /* Fall through. */
4910 : :
4911 : : case ',':
4912 : : c2 = c1;
4913 : : break;
4914 : :
4915 : 457 : case '-':
4916 : 457 : gfc_gobble_whitespace ();
4917 : 457 : c2 = gfc_next_ascii_char ();
4918 : 457 : if (!ISALPHA (c2))
4919 : 0 : goto bad;
4920 : :
4921 : 457 : gfc_gobble_whitespace ();
4922 : 457 : c = gfc_next_ascii_char ();
4923 : :
4924 : 457 : if ((c != ',') && (c != ')'))
4925 : 0 : goto bad;
4926 : 457 : if (c == ')')
4927 : 291 : inner = 0;
4928 : :
4929 : : break;
4930 : :
4931 : 35 : default:
4932 : 35 : goto bad;
4933 : : }
4934 : :
4935 : 672 : if (c1 > c2)
4936 : : {
4937 : 0 : gfc_error ("Letters must be in alphabetic order in "
4938 : : "IMPLICIT statement at %C");
4939 : 0 : goto bad;
4940 : : }
4941 : :
4942 : : /* See if we can add the newly matched range to the pending
4943 : : implicits from this IMPLICIT statement. We do not check for
4944 : : conflicts with whatever earlier IMPLICIT statements may have
4945 : : set. This is done when we've successfully finished matching
4946 : : the current one. */
4947 : 672 : if (!gfc_add_new_implicit_range (c1, c2))
4948 : 0 : goto bad;
4949 : : }
4950 : :
4951 : : return MATCH_YES;
4952 : :
4953 : 142 : bad:
4954 : 142 : gfc_syntax_error (ST_IMPLICIT);
4955 : :
4956 : 142 : gfc_current_locus = cur_loc;
4957 : 142 : return MATCH_ERROR;
4958 : : }
4959 : :
4960 : :
4961 : : /* Match an IMPLICIT statement, storing the types for
4962 : : gfc_set_implicit() if the statement is accepted by the parser.
4963 : : There is a strange looking, but legal syntactic construction
4964 : : possible. It looks like:
4965 : :
4966 : : IMPLICIT INTEGER (a-b) (c-d)
4967 : :
4968 : : This is legal if "a-b" is a constant expression that happens to
4969 : : equal one of the legal kinds for integers. The real problem
4970 : : happens with an implicit specification that looks like:
4971 : :
4972 : : IMPLICIT INTEGER (a-b)
4973 : :
4974 : : In this case, a typespec matcher that is "greedy" (as most of the
4975 : : matchers are) gobbles the character range as a kindspec, leaving
4976 : : nothing left. We therefore have to go a bit more slowly in the
4977 : : matching process by inhibiting the kindspec checking during
4978 : : typespec matching and checking for a kind later. */
4979 : :
4980 : : match
4981 : 22656 : gfc_match_implicit (void)
4982 : : {
4983 : 22656 : gfc_typespec ts;
4984 : 22656 : locus cur_loc;
4985 : 22656 : char c;
4986 : 22656 : match m;
4987 : :
4988 : 22656 : if (gfc_current_ns->seen_implicit_none)
4989 : : {
4990 : 4 : gfc_error ("IMPLICIT statement at %C following an IMPLICIT NONE (type) "
4991 : : "statement");
4992 : 4 : return MATCH_ERROR;
4993 : : }
4994 : :
4995 : 22652 : gfc_clear_ts (&ts);
4996 : :
4997 : : /* We don't allow empty implicit statements. */
4998 : 22652 : if (gfc_match_eos () == MATCH_YES)
4999 : : {
5000 : 0 : gfc_error ("Empty IMPLICIT statement at %C");
5001 : 0 : return MATCH_ERROR;
5002 : : }
5003 : :
5004 : 22681 : do
5005 : : {
5006 : : /* First cleanup. */
5007 : 22681 : gfc_clear_new_implicit ();
5008 : :
5009 : : /* A basic type is mandatory here. */
5010 : 22681 : m = gfc_match_decl_type_spec (&ts, 1);
5011 : 22681 : if (m == MATCH_ERROR)
5012 : 0 : goto error;
5013 : 22681 : if (m == MATCH_NO)
5014 : 22209 : goto syntax;
5015 : :
5016 : 472 : cur_loc = gfc_current_locus;
5017 : 472 : m = match_implicit_range ();
5018 : :
5019 : 472 : if (m == MATCH_YES)
5020 : : {
5021 : : /* We may have <TYPE> (<RANGE>). */
5022 : 330 : gfc_gobble_whitespace ();
5023 : 330 : c = gfc_peek_ascii_char ();
5024 : 330 : if (c == ',' || c == '\n' || c == ';' || c == '!')
5025 : : {
5026 : : /* Check for CHARACTER with no length parameter. */
5027 : 303 : if (ts.type == BT_CHARACTER && !ts.u.cl)
5028 : : {
5029 : 32 : ts.kind = gfc_default_character_kind;
5030 : 32 : ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5031 : 32 : ts.u.cl->length = gfc_get_int_expr (gfc_charlen_int_kind,
5032 : : NULL, 1);
5033 : : }
5034 : :
5035 : : /* Record the Successful match. */
5036 : 303 : if (!gfc_merge_new_implicit (&ts))
5037 : : return MATCH_ERROR;
5038 : 301 : if (c == ',')
5039 : 28 : c = gfc_next_ascii_char ();
5040 : 273 : else if (gfc_match_eos () == MATCH_ERROR)
5041 : 0 : goto error;
5042 : 301 : continue;
5043 : : }
5044 : :
5045 : 27 : gfc_current_locus = cur_loc;
5046 : : }
5047 : :
5048 : : /* Discard the (incorrectly) matched range. */
5049 : 169 : gfc_clear_new_implicit ();
5050 : :
5051 : : /* Last chance -- check <TYPE> <SELECTOR> (<RANGE>). */
5052 : 169 : if (ts.type == BT_CHARACTER)
5053 : 74 : m = gfc_match_char_spec (&ts);
5054 : 95 : else if (gfc_numeric_ts(&ts) || ts.type == BT_LOGICAL)
5055 : : {
5056 : 91 : m = gfc_match_kind_spec (&ts, false);
5057 : 91 : if (m == MATCH_NO)
5058 : : {
5059 : 40 : m = gfc_match_old_kind_spec (&ts);
5060 : 40 : if (m == MATCH_ERROR)
5061 : 0 : goto error;
5062 : 40 : if (m == MATCH_NO)
5063 : 0 : goto syntax;
5064 : : }
5065 : : }
5066 : 169 : if (m == MATCH_ERROR)
5067 : 7 : goto error;
5068 : :
5069 : 162 : m = match_implicit_range ();
5070 : 162 : if (m == MATCH_ERROR)
5071 : 0 : goto error;
5072 : 162 : if (m == MATCH_NO)
5073 : : goto syntax;
5074 : :
5075 : 162 : gfc_gobble_whitespace ();
5076 : 162 : c = gfc_next_ascii_char ();
5077 : 162 : if (c != ',' && gfc_match_eos () != MATCH_YES)
5078 : 0 : goto syntax;
5079 : :
5080 : 162 : if (!gfc_merge_new_implicit (&ts))
5081 : : return MATCH_ERROR;
5082 : : }
5083 : 463 : while (c == ',');
5084 : :
5085 : : return MATCH_YES;
5086 : :
5087 : 22209 : syntax:
5088 : 22209 : gfc_syntax_error (ST_IMPLICIT);
5089 : :
5090 : : error:
5091 : : return MATCH_ERROR;
5092 : : }
5093 : :
5094 : :
5095 : : match
5096 : 3119 : gfc_match_import (void)
5097 : : {
5098 : 3119 : char name[GFC_MAX_SYMBOL_LEN + 1];
5099 : 3119 : match m;
5100 : 3119 : gfc_symbol *sym;
5101 : 3119 : gfc_symtree *st;
5102 : :
5103 : 3119 : if (gfc_current_ns->proc_name == NULL
5104 : 3118 : || gfc_current_ns->proc_name->attr.if_source != IFSRC_IFBODY)
5105 : : {
5106 : 3 : gfc_error ("IMPORT statement at %C only permitted in "
5107 : : "an INTERFACE body");
5108 : 3 : return MATCH_ERROR;
5109 : : }
5110 : :
5111 : 3116 : if (gfc_current_ns->proc_name->attr.module_procedure)
5112 : : {
5113 : 1 : gfc_error ("F2008: C1210 IMPORT statement at %C is not permitted "
5114 : : "in a module procedure interface body");
5115 : 1 : return MATCH_ERROR;
5116 : : }
5117 : :
5118 : 3115 : if (!gfc_notify_std (GFC_STD_F2003, "IMPORT statement at %C"))
5119 : : return MATCH_ERROR;
5120 : :
5121 : 3111 : if (gfc_match_eos () == MATCH_YES)
5122 : : {
5123 : : /* All host variables should be imported. */
5124 : 202 : gfc_current_ns->has_import_set = 1;
5125 : 202 : return MATCH_YES;
5126 : : }
5127 : :
5128 : 2909 : if (gfc_match (" ::") == MATCH_YES)
5129 : : {
5130 : 827 : if (gfc_match_eos () == MATCH_YES)
5131 : : {
5132 : 1 : gfc_error ("Expecting list of named entities at %C");
5133 : 1 : return MATCH_ERROR;
5134 : : }
5135 : : }
5136 : :
5137 : 3583 : for(;;)
5138 : : {
5139 : 3583 : sym = NULL;
5140 : 3583 : m = gfc_match (" %n", name);
5141 : 3583 : switch (m)
5142 : : {
5143 : 3583 : case MATCH_YES:
5144 : 3583 : if (gfc_current_ns->parent != NULL
5145 : 3583 : && gfc_find_symbol (name, gfc_current_ns->parent, 1, &sym))
5146 : : {
5147 : 0 : gfc_error ("Type name %qs at %C is ambiguous", name);
5148 : 0 : return MATCH_ERROR;
5149 : : }
5150 : 1 : else if (!sym && gfc_current_ns->proc_name->ns->parent != NULL
5151 : 3583 : && gfc_find_symbol (name,
5152 : : gfc_current_ns->proc_name->ns->parent,
5153 : : 1, &sym))
5154 : : {
5155 : 0 : gfc_error ("Type name %qs at %C is ambiguous", name);
5156 : 0 : return MATCH_ERROR;
5157 : : }
5158 : :
5159 : 3583 : if (sym == NULL)
5160 : : {
5161 : 1 : gfc_error ("Cannot IMPORT %qs from host scoping unit "
5162 : : "at %C - does not exist.", name);
5163 : 1 : return MATCH_ERROR;
5164 : : }
5165 : :
5166 : 3582 : if (gfc_find_symtree (gfc_current_ns->sym_root, name))
5167 : : {
5168 : 6 : gfc_warning (0, "%qs is already IMPORTed from host scoping unit "
5169 : : "at %C", name);
5170 : 6 : goto next_item;
5171 : : }
5172 : :
5173 : 3576 : st = gfc_new_symtree (&gfc_current_ns->sym_root, name);
5174 : 3576 : st->n.sym = sym;
5175 : 3576 : sym->refs++;
5176 : 3576 : sym->attr.imported = 1;
5177 : :
5178 : 3576 : if (sym->attr.generic && (sym = gfc_find_dt_in_generic (sym)))
5179 : : {
5180 : : /* The actual derived type is stored in a symtree with the first
5181 : : letter of the name capitalized; the symtree with the all
5182 : : lower-case name contains the associated generic function. */
5183 : 585 : st = gfc_new_symtree (&gfc_current_ns->sym_root,
5184 : : gfc_dt_upper_string (name));
5185 : 585 : st->n.sym = sym;
5186 : 585 : sym->refs++;
5187 : 585 : sym->attr.imported = 1;
5188 : : }
5189 : :
5190 : 3576 : goto next_item;
5191 : :
5192 : : case MATCH_NO:
5193 : : break;
5194 : :
5195 : : case MATCH_ERROR:
5196 : : return MATCH_ERROR;
5197 : : }
5198 : :
5199 : 3582 : next_item:
5200 : 3582 : if (gfc_match_eos () == MATCH_YES)
5201 : : break;
5202 : 675 : if (gfc_match_char (',') != MATCH_YES)
5203 : 0 : goto syntax;
5204 : : }
5205 : :
5206 : : return MATCH_YES;
5207 : :
5208 : 0 : syntax:
5209 : 0 : gfc_error ("Syntax error in IMPORT statement at %C");
5210 : 0 : return MATCH_ERROR;
5211 : : }
5212 : :
5213 : :
5214 : : /* A minimal implementation of gfc_match without whitespace, escape
5215 : : characters or variable arguments. Returns true if the next
5216 : : characters match the TARGET template exactly. */
5217 : :
5218 : : static bool
5219 : 135561 : match_string_p (const char *target)
5220 : : {
5221 : 135561 : const char *p;
5222 : :
5223 : 858967 : for (p = target; *p; p++)
5224 : 723407 : if ((char) gfc_next_ascii_char () != *p)
5225 : : return false;
5226 : : return true;
5227 : : }
5228 : :
5229 : : /* Matches an attribute specification including array specs. If
5230 : : successful, leaves the variables current_attr and current_as
5231 : : holding the specification. Also sets the colon_seen variable for
5232 : : later use by matchers associated with initializations.
5233 : :
5234 : : This subroutine is a little tricky in the sense that we don't know
5235 : : if we really have an attr-spec until we hit the double colon.
5236 : : Until that time, we can only return MATCH_NO. This forces us to
5237 : : check for duplicate specification at this level. */
5238 : :
5239 : : static match
5240 : 201154 : match_attr_spec (void)
5241 : : {
5242 : : /* Modifiers that can exist in a type statement. */
5243 : 201154 : enum
5244 : : { GFC_DECL_BEGIN = 0, DECL_ALLOCATABLE = GFC_DECL_BEGIN,
5245 : : DECL_IN = INTENT_IN, DECL_OUT = INTENT_OUT, DECL_INOUT = INTENT_INOUT,
5246 : : DECL_DIMENSION, DECL_EXTERNAL,
5247 : : DECL_INTRINSIC, DECL_OPTIONAL,
5248 : : DECL_PARAMETER, DECL_POINTER, DECL_PROTECTED, DECL_PRIVATE,
5249 : : DECL_STATIC, DECL_AUTOMATIC,
5250 : : DECL_PUBLIC, DECL_SAVE, DECL_TARGET, DECL_VALUE, DECL_VOLATILE,
5251 : : DECL_IS_BIND_C, DECL_CODIMENSION, DECL_ASYNCHRONOUS, DECL_CONTIGUOUS,
5252 : : DECL_LEN, DECL_KIND, DECL_NONE, GFC_DECL_END /* Sentinel */
5253 : : };
5254 : :
5255 : : /* GFC_DECL_END is the sentinel, index starts at 0. */
5256 : : #define NUM_DECL GFC_DECL_END
5257 : :
5258 : : /* Make sure that values from sym_intent are safe to be used here. */
5259 : 201154 : gcc_assert (INTENT_IN > 0);
5260 : :
5261 : 201154 : locus start, seen_at[NUM_DECL];
5262 : 201154 : int seen[NUM_DECL];
5263 : 201154 : unsigned int d;
5264 : 201154 : const char *attr;
5265 : 201154 : match m;
5266 : 201154 : bool t;
5267 : :
5268 : 201154 : gfc_clear_attr (¤t_attr);
5269 : 201154 : start = gfc_current_locus;
5270 : :
5271 : 201154 : current_as = NULL;
5272 : 201154 : colon_seen = 0;
5273 : 201154 : attr_seen = 0;
5274 : :
5275 : : /* See if we get all of the keywords up to the final double colon. */
5276 : 5431158 : for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
5277 : 5230004 : seen[d] = 0;
5278 : :
5279 : 311350 : for (;;)
5280 : : {
5281 : 311350 : char ch;
5282 : :
5283 : 311350 : d = DECL_NONE;
5284 : 311350 : gfc_gobble_whitespace ();
5285 : :
5286 : 311350 : ch = gfc_next_ascii_char ();
5287 : 311350 : if (ch == ':')
5288 : : {
5289 : : /* This is the successful exit condition for the loop. */
5290 : 169637 : if (gfc_next_ascii_char () == ':')
5291 : : break;
5292 : : }
5293 : 141713 : else if (ch == ',')
5294 : : {
5295 : 110208 : gfc_gobble_whitespace ();
5296 : 110208 : switch (gfc_peek_ascii_char ())
5297 : : {
5298 : 17032 : case 'a':
5299 : 17032 : gfc_next_ascii_char ();
5300 : 17032 : switch (gfc_next_ascii_char ())
5301 : : {
5302 : 16968 : case 'l':
5303 : 16968 : if (match_string_p ("locatable"))
5304 : : {
5305 : : /* Matched "allocatable". */
5306 : : d = DECL_ALLOCATABLE;
5307 : : }
5308 : : break;
5309 : :
5310 : 23 : case 's':
5311 : 23 : if (match_string_p ("ynchronous"))
5312 : : {
5313 : : /* Matched "asynchronous". */
5314 : : d = DECL_ASYNCHRONOUS;
5315 : : }
5316 : : break;
5317 : :
5318 : 41 : case 'u':
5319 : 41 : if (match_string_p ("tomatic"))
5320 : : {
5321 : : /* Matched "automatic". */
5322 : : d = DECL_AUTOMATIC;
5323 : : }
5324 : : break;
5325 : : }
5326 : : break;
5327 : :
5328 : 162 : case 'b':
5329 : : /* Try and match the bind(c). */
5330 : 162 : m = gfc_match_bind_c (NULL, true);
5331 : 162 : if (m == MATCH_YES)
5332 : : d = DECL_IS_BIND_C;
5333 : 0 : else if (m == MATCH_ERROR)
5334 : 0 : goto cleanup;
5335 : : break;
5336 : :
5337 : 1932 : case 'c':
5338 : 1932 : gfc_next_ascii_char ();
5339 : 1932 : if ('o' != gfc_next_ascii_char ())
5340 : : break;
5341 : 1931 : switch (gfc_next_ascii_char ())
5342 : : {
5343 : 46 : case 'd':
5344 : 46 : if (match_string_p ("imension"))
5345 : : {
5346 : : d = DECL_CODIMENSION;
5347 : : break;
5348 : : }
5349 : : /* FALLTHRU */
5350 : 1885 : case 'n':
5351 : 1885 : if (match_string_p ("tiguous"))
5352 : : {
5353 : : d = DECL_CONTIGUOUS;
5354 : : break;
5355 : : }
5356 : : }
5357 : : break;
5358 : :
5359 : 18858 : case 'd':
5360 : 18858 : if (match_string_p ("dimension"))
5361 : : d = DECL_DIMENSION;
5362 : : break;
5363 : :
5364 : 168 : case 'e':
5365 : 168 : if (match_string_p ("external"))
5366 : : d = DECL_EXTERNAL;
5367 : : break;
5368 : :
5369 : 25516 : case 'i':
5370 : 25516 : if (match_string_p ("int"))
5371 : : {
5372 : 25516 : ch = gfc_next_ascii_char ();
5373 : 25516 : if (ch == 'e')
5374 : : {
5375 : 25510 : if (match_string_p ("nt"))
5376 : : {
5377 : : /* Matched "intent". */
5378 : 25509 : d = match_intent_spec ();
5379 : 25509 : if (d == INTENT_UNKNOWN)
5380 : : {
5381 : 2 : m = MATCH_ERROR;
5382 : 2 : goto cleanup;
5383 : : }
5384 : : }
5385 : : }
5386 : 6 : else if (ch == 'r')
5387 : : {
5388 : 6 : if (match_string_p ("insic"))
5389 : : {
5390 : : /* Matched "intrinsic". */
5391 : : d = DECL_INTRINSIC;
5392 : : }
5393 : : }
5394 : : }
5395 : : break;
5396 : :
5397 : 136 : case 'k':
5398 : 136 : if (match_string_p ("kind"))
5399 : : d = DECL_KIND;
5400 : : break;
5401 : :
5402 : 179 : case 'l':
5403 : 179 : if (match_string_p ("len"))
5404 : : d = DECL_LEN;
5405 : : break;
5406 : :
5407 : 4800 : case 'o':
5408 : 4800 : if (match_string_p ("optional"))
5409 : : d = DECL_OPTIONAL;
5410 : : break;
5411 : :
5412 : 25891 : case 'p':
5413 : 25891 : gfc_next_ascii_char ();
5414 : 25891 : switch (gfc_next_ascii_char ())
5415 : : {
5416 : 13579 : case 'a':
5417 : 13579 : if (match_string_p ("rameter"))
5418 : : {
5419 : : /* Matched "parameter". */
5420 : : d = DECL_PARAMETER;
5421 : : }
5422 : : break;
5423 : :
5424 : 11796 : case 'o':
5425 : 11796 : if (match_string_p ("inter"))
5426 : : {
5427 : : /* Matched "pointer". */
5428 : : d = DECL_POINTER;
5429 : : }
5430 : : break;
5431 : :
5432 : 265 : case 'r':
5433 : 265 : ch = gfc_next_ascii_char ();
5434 : 265 : if (ch == 'i')
5435 : : {
5436 : 214 : if (match_string_p ("vate"))
5437 : : {
5438 : : /* Matched "private". */
5439 : : d = DECL_PRIVATE;
5440 : : }
5441 : : }
5442 : 51 : else if (ch == 'o')
5443 : : {
5444 : 51 : if (match_string_p ("tected"))
5445 : : {
5446 : : /* Matched "protected". */
5447 : : d = DECL_PROTECTED;
5448 : : }
5449 : : }
5450 : : break;
5451 : :
5452 : 251 : case 'u':
5453 : 251 : if (match_string_p ("blic"))
5454 : : {
5455 : : /* Matched "public". */
5456 : : d = DECL_PUBLIC;
5457 : : }
5458 : : break;
5459 : : }
5460 : : break;
5461 : :
5462 : 1154 : case 's':
5463 : 1154 : gfc_next_ascii_char ();
5464 : 1154 : switch (gfc_next_ascii_char ())
5465 : : {
5466 : 1141 : case 'a':
5467 : 1141 : if (match_string_p ("ve"))
5468 : : {
5469 : : /* Matched "save". */
5470 : : d = DECL_SAVE;
5471 : : }
5472 : : break;
5473 : :
5474 : 13 : case 't':
5475 : 13 : if (match_string_p ("atic"))
5476 : : {
5477 : : /* Matched "static". */
5478 : : d = DECL_STATIC;
5479 : : }
5480 : : break;
5481 : : }
5482 : : break;
5483 : :
5484 : 5101 : case 't':
5485 : 5101 : if (match_string_p ("target"))
5486 : : d = DECL_TARGET;
5487 : : break;
5488 : :
5489 : 9279 : case 'v':
5490 : 9279 : gfc_next_ascii_char ();
5491 : 9279 : ch = gfc_next_ascii_char ();
5492 : 9279 : if (ch == 'a')
5493 : : {
5494 : 8781 : if (match_string_p ("lue"))
5495 : : {
5496 : : /* Matched "value". */
5497 : : d = DECL_VALUE;
5498 : : }
5499 : : }
5500 : 498 : else if (ch == 'o')
5501 : : {
5502 : 498 : if (match_string_p ("latile"))
5503 : : {
5504 : : /* Matched "volatile". */
5505 : : d = DECL_VOLATILE;
5506 : : }
5507 : : }
5508 : : break;
5509 : : }
5510 : : }
5511 : :
5512 : : /* No double colon and no recognizable decl_type, so assume that
5513 : : we've been looking at something else the whole time. */
5514 : : if (d == DECL_NONE)
5515 : : {
5516 : 31508 : m = MATCH_NO;
5517 : 31508 : goto cleanup;
5518 : : }
5519 : :
5520 : : /* Check to make sure any parens are paired up correctly. */
5521 : 110204 : if (gfc_match_parens () == MATCH_ERROR)
5522 : : {
5523 : 1 : m = MATCH_ERROR;
5524 : 1 : goto cleanup;
5525 : : }
5526 : :
5527 : 110203 : seen[d]++;
5528 : 110203 : seen_at[d] = gfc_current_locus;
5529 : :
5530 : 110203 : if (d == DECL_DIMENSION || d == DECL_CODIMENSION)
5531 : : {
5532 : 18903 : gfc_array_spec *as = NULL;
5533 : :
5534 : 18903 : m = gfc_match_array_spec (&as, d == DECL_DIMENSION,
5535 : : d == DECL_CODIMENSION);
5536 : :
5537 : 18903 : if (current_as == NULL)
5538 : 18885 : current_as = as;
5539 : 18 : else if (m == MATCH_YES)
5540 : : {
5541 : 18 : if (!merge_array_spec (as, current_as, false))
5542 : 2 : m = MATCH_ERROR;
5543 : 18 : free (as);
5544 : : }
5545 : :
5546 : 18903 : if (m == MATCH_NO)
5547 : : {
5548 : 0 : if (d == DECL_CODIMENSION)
5549 : 0 : gfc_error ("Missing codimension specification at %C");
5550 : : else
5551 : 0 : gfc_error ("Missing dimension specification at %C");
5552 : : m = MATCH_ERROR;
5553 : : }
5554 : :
5555 : 18903 : if (m == MATCH_ERROR)
5556 : 7 : goto cleanup;
5557 : : }
5558 : : }
5559 : :
5560 : : /* Since we've seen a double colon, we have to be looking at an
5561 : : attr-spec. This means that we can now issue errors. */
5562 : 4580151 : for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
5563 : 4410517 : if (seen[d] > 1)
5564 : : {
5565 : 2 : switch (d)
5566 : : {
5567 : : case DECL_ALLOCATABLE:
5568 : : attr = "ALLOCATABLE";
5569 : : break;
5570 : 0 : case DECL_ASYNCHRONOUS:
5571 : 0 : attr = "ASYNCHRONOUS";
5572 : 0 : break;
5573 : 0 : case DECL_CODIMENSION:
5574 : 0 : attr = "CODIMENSION";
5575 : 0 : break;
5576 : 0 : case DECL_CONTIGUOUS:
5577 : 0 : attr = "CONTIGUOUS";
5578 : 0 : break;
5579 : 0 : case DECL_DIMENSION:
5580 : 0 : attr = "DIMENSION";
5581 : 0 : break;
5582 : 0 : case DECL_EXTERNAL:
5583 : 0 : attr = "EXTERNAL";
5584 : 0 : break;
5585 : 0 : case DECL_IN:
5586 : 0 : attr = "INTENT (IN)";
5587 : 0 : break;
5588 : 0 : case DECL_OUT:
5589 : 0 : attr = "INTENT (OUT)";
5590 : 0 : break;
5591 : 0 : case DECL_INOUT:
5592 : 0 : attr = "INTENT (IN OUT)";
5593 : 0 : break;
5594 : 0 : case DECL_INTRINSIC:
5595 : 0 : attr = "INTRINSIC";
5596 : 0 : break;
5597 : 0 : case DECL_OPTIONAL:
5598 : 0 : attr = "OPTIONAL";
5599 : 0 : break;
5600 : 0 : case DECL_KIND:
5601 : 0 : attr = "KIND";
5602 : 0 : break;
5603 : 0 : case DECL_LEN:
5604 : 0 : attr = "LEN";
5605 : 0 : break;
5606 : 0 : case DECL_PARAMETER:
5607 : 0 : attr = "PARAMETER";
5608 : 0 : break;
5609 : 0 : case DECL_POINTER:
5610 : 0 : attr = "POINTER";
5611 : 0 : break;
5612 : 0 : case DECL_PROTECTED:
5613 : 0 : attr = "PROTECTED";
5614 : 0 : break;
5615 : 0 : case DECL_PRIVATE:
5616 : 0 : attr = "PRIVATE";
5617 : 0 : break;
5618 : 0 : case DECL_PUBLIC:
5619 : 0 : attr = "PUBLIC";
5620 : 0 : break;
5621 : 0 : case DECL_SAVE:
5622 : 0 : attr = "SAVE";
5623 : 0 : break;
5624 : 0 : case DECL_STATIC:
5625 : 0 : attr = "STATIC";
5626 : 0 : break;
5627 : 1 : case DECL_AUTOMATIC:
5628 : 1 : attr = "AUTOMATIC";
5629 : 1 : break;
5630 : 0 : case DECL_TARGET:
5631 : 0 : attr = "TARGET";
5632 : 0 : break;
5633 : 0 : case DECL_IS_BIND_C:
5634 : 0 : attr = "IS_BIND_C";
5635 : 0 : break;
5636 : 0 : case DECL_VALUE:
5637 : 0 : attr = "VALUE";
5638 : 0 : break;
5639 : 1 : case DECL_VOLATILE:
5640 : 1 : attr = "VOLATILE";
5641 : 1 : break;
5642 : 0 : default:
5643 : 0 : attr = NULL; /* This shouldn't happen. */
5644 : : }
5645 : :
5646 : 2 : gfc_error ("Duplicate %s attribute at %L", attr, &seen_at[d]);
5647 : 2 : m = MATCH_ERROR;
5648 : 2 : goto cleanup;
5649 : : }
5650 : :
5651 : : /* Now that we've dealt with duplicate attributes, add the attributes
5652 : : to the current attribute. */
5653 : 4579331 : for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
5654 : : {
5655 : 4409770 : if (seen[d] == 0)
5656 : 4299583 : continue;
5657 : : else
5658 : 110187 : attr_seen = 1;
5659 : :
5660 : 110187 : if ((d == DECL_STATIC || d == DECL_AUTOMATIC)
5661 : 52 : && !flag_dec_static)
5662 : : {
5663 : 3 : gfc_error ("%s at %L is a DEC extension, enable with "
5664 : : "%<-fdec-static%>",
5665 : : d == DECL_STATIC ? "STATIC" : "AUTOMATIC", &seen_at[d]);
5666 : 2 : m = MATCH_ERROR;
5667 : 2 : goto cleanup;
5668 : : }
5669 : : /* Allow SAVE with STATIC, but don't complain. */
5670 : 50 : if (d == DECL_STATIC && seen[DECL_SAVE])
5671 : 0 : continue;
5672 : :
5673 : 110185 : if (gfc_comp_struct (gfc_current_state ())
5674 : 5819 : && d != DECL_DIMENSION && d != DECL_CODIMENSION
5675 : 4881 : && d != DECL_POINTER && d != DECL_PRIVATE
5676 : 3331 : && d != DECL_PUBLIC && d != DECL_CONTIGUOUS && d != DECL_NONE)
5677 : : {
5678 : 3276 : bool is_derived = gfc_current_state () == COMP_DERIVED;
5679 : 3276 : if (d == DECL_ALLOCATABLE)
5680 : : {
5681 : 2948 : if (!gfc_notify_std (GFC_STD_F2003, is_derived
5682 : : ? G_("ALLOCATABLE attribute at %C in a "
5683 : : "TYPE definition")
5684 : : : G_("ALLOCATABLE attribute at %C in a "
5685 : : "STRUCTURE definition")))
5686 : : {
5687 : 2 : m = MATCH_ERROR;
5688 : 2 : goto cleanup;
5689 : : }
5690 : : }
5691 : 328 : else if (d == DECL_KIND)
5692 : : {
5693 : 134 : if (!gfc_notify_std (GFC_STD_F2003, is_derived
5694 : : ? G_("KIND attribute at %C in a "
5695 : : "TYPE definition")
5696 : : : G_("KIND attribute at %C in a "
5697 : : "STRUCTURE definition")))
5698 : : {
5699 : 1 : m = MATCH_ERROR;
5700 : 1 : goto cleanup;
5701 : : }
5702 : 133 : if (current_ts.type != BT_INTEGER)
5703 : : {
5704 : 2 : gfc_error ("Component with KIND attribute at %C must be "
5705 : : "INTEGER");
5706 : 2 : m = MATCH_ERROR;
5707 : 2 : goto cleanup;
5708 : : }
5709 : : }
5710 : 194 : else if (d == DECL_LEN)
5711 : : {
5712 : 178 : if (!gfc_notify_std (GFC_STD_F2003, is_derived
5713 : : ? G_("LEN attribute at %C in a "
5714 : : "TYPE definition")
5715 : : : G_("LEN attribute at %C in a "
5716 : : "STRUCTURE definition")))
5717 : : {
5718 : 0 : m = MATCH_ERROR;
5719 : 0 : goto cleanup;
5720 : : }
5721 : 178 : if (current_ts.type != BT_INTEGER)
5722 : : {
5723 : 1 : gfc_error ("Component with LEN attribute at %C must be "
5724 : : "INTEGER");
5725 : 1 : m = MATCH_ERROR;
5726 : 1 : goto cleanup;
5727 : : }
5728 : : }
5729 : : else
5730 : : {
5731 : 32 : gfc_error (is_derived ? G_("Attribute at %L is not allowed in a "
5732 : : "TYPE definition")
5733 : : : G_("Attribute at %L is not allowed in a "
5734 : : "STRUCTURE definition"), &seen_at[d]);
5735 : 16 : m = MATCH_ERROR;
5736 : 16 : goto cleanup;
5737 : : }
5738 : : }
5739 : :
5740 : 110163 : if ((d == DECL_PRIVATE || d == DECL_PUBLIC)
5741 : 465 : && gfc_current_state () != COMP_MODULE)
5742 : : {
5743 : 144 : if (d == DECL_PRIVATE)
5744 : : attr = "PRIVATE";
5745 : : else
5746 : 42 : attr = "PUBLIC";
5747 : 144 : if (gfc_current_state () == COMP_DERIVED
5748 : 138 : && gfc_state_stack->previous
5749 : 138 : && gfc_state_stack->previous->state == COMP_MODULE)
5750 : : {
5751 : 135 : if (!gfc_notify_std (GFC_STD_F2003, "Attribute %s "
5752 : : "at %L in a TYPE definition", attr,
5753 : : &seen_at[d]))
5754 : : {
5755 : 2 : m = MATCH_ERROR;
5756 : 2 : goto cleanup;
5757 : : }
5758 : : }
5759 : : else
5760 : : {
5761 : 9 : gfc_error ("%s attribute at %L is not allowed outside of the "
5762 : : "specification part of a module", attr, &seen_at[d]);
5763 : 9 : m = MATCH_ERROR;
5764 : 9 : goto cleanup;
5765 : : }
5766 : : }
5767 : :
5768 : 110152 : if (gfc_current_state () != COMP_DERIVED
5769 : 104364 : && (d == DECL_KIND || d == DECL_LEN))
5770 : : {
5771 : 3 : gfc_error ("Attribute at %L is not allowed outside a TYPE "
5772 : : "definition", &seen_at[d]);
5773 : 3 : m = MATCH_ERROR;
5774 : 3 : goto cleanup;
5775 : : }
5776 : :
5777 : 110149 : switch (d)
5778 : : {
5779 : 16966 : case DECL_ALLOCATABLE:
5780 : 16966 : t = gfc_add_allocatable (¤t_attr, &seen_at[d]);
5781 : 16966 : break;
5782 : :
5783 : 22 : case DECL_ASYNCHRONOUS:
5784 : 22 : if (!gfc_notify_std (GFC_STD_F2003, "ASYNCHRONOUS attribute at %C"))
5785 : : t = false;
5786 : : else
5787 : 22 : t = gfc_add_asynchronous (¤t_attr, NULL, &seen_at[d]);
5788 : : break;
5789 : :
5790 : 44 : case DECL_CODIMENSION:
5791 : 44 : t = gfc_add_codimension (¤t_attr, NULL, &seen_at[d]);
5792 : 44 : break;
5793 : :
5794 : 1885 : case DECL_CONTIGUOUS:
5795 : 1885 : if (!gfc_notify_std (GFC_STD_F2008, "CONTIGUOUS attribute at %C"))
5796 : : t = false;
5797 : : else
5798 : 1884 : t = gfc_add_contiguous (¤t_attr, NULL, &seen_at[d]);
5799 : : break;
5800 : :
5801 : 18850 : case DECL_DIMENSION:
5802 : 18850 : t = gfc_add_dimension (¤t_attr, NULL, &seen_at[d]);
5803 : 18850 : break;
5804 : :
5805 : 167 : case DECL_EXTERNAL:
5806 : 167 : t = gfc_add_external (¤t_attr, &seen_at[d]);
5807 : 167 : break;
5808 : :
5809 : 19173 : case DECL_IN:
5810 : 19173 : t = gfc_add_intent (¤t_attr, INTENT_IN, &seen_at[d]);
5811 : 19173 : break;
5812 : :
5813 : 3499 : case DECL_OUT:
5814 : 3499 : t = gfc_add_intent (¤t_attr, INTENT_OUT, &seen_at[d]);
5815 : 3499 : break;
5816 : :
5817 : 2831 : case DECL_INOUT:
5818 : 2831 : t = gfc_add_intent (¤t_attr, INTENT_INOUT, &seen_at[d]);
5819 : 2831 : break;
5820 : :
5821 : 5 : case DECL_INTRINSIC:
5822 : 5 : t = gfc_add_intrinsic (¤t_attr, &seen_at[d]);
5823 : 5 : break;
5824 : :
5825 : 4799 : case DECL_OPTIONAL:
5826 : 4799 : t = gfc_add_optional (¤t_attr, &seen_at[d]);
5827 : 4799 : break;
5828 : :
5829 : 131 : case DECL_KIND:
5830 : 131 : t = gfc_add_kind (¤t_attr, &seen_at[d]);
5831 : 131 : break;
5832 : :
5833 : 177 : case DECL_LEN:
5834 : 177 : t = gfc_add_len (¤t_attr, &seen_at[d]);
5835 : 177 : break;
5836 : :
5837 : 13578 : case DECL_PARAMETER:
5838 : 13578 : t = gfc_add_flavor (¤t_attr, FL_PARAMETER, NULL, &seen_at[d]);
5839 : 13578 : break;
5840 : :
5841 : 11795 : case DECL_POINTER:
5842 : 11795 : t = gfc_add_pointer (¤t_attr, &seen_at[d]);
5843 : 11795 : break;
5844 : :
5845 : 50 : case DECL_PROTECTED:
5846 : 50 : if (gfc_current_state () != COMP_MODULE
5847 : 48 : || (gfc_current_ns->proc_name
5848 : 48 : && gfc_current_ns->proc_name->attr.flavor != FL_MODULE))
5849 : : {
5850 : 2 : gfc_error ("PROTECTED at %C only allowed in specification "
5851 : : "part of a module");
5852 : 2 : t = false;
5853 : 2 : break;
5854 : : }
5855 : :
5856 : 48 : if (!gfc_notify_std (GFC_STD_F2003, "PROTECTED attribute at %C"))
5857 : : t = false;
5858 : : else
5859 : 44 : t = gfc_add_protected (¤t_attr, NULL, &seen_at[d]);
5860 : : break;
5861 : :
5862 : 211 : case DECL_PRIVATE:
5863 : 211 : t = gfc_add_access (¤t_attr, ACCESS_PRIVATE, NULL,
5864 : : &seen_at[d]);
5865 : 211 : break;
5866 : :
5867 : 243 : case DECL_PUBLIC:
5868 : 243 : t = gfc_add_access (¤t_attr, ACCESS_PUBLIC, NULL,
5869 : : &seen_at[d]);
5870 : 243 : break;
5871 : :
5872 : 1151 : case DECL_STATIC:
5873 : 1151 : case DECL_SAVE:
5874 : 1151 : t = gfc_add_save (¤t_attr, SAVE_EXPLICIT, NULL, &seen_at[d]);
5875 : 1151 : break;
5876 : :
5877 : 37 : case DECL_AUTOMATIC:
5878 : 37 : t = gfc_add_automatic (¤t_attr, NULL, &seen_at[d]);
5879 : 37 : break;
5880 : :
5881 : 5099 : case DECL_TARGET:
5882 : 5099 : t = gfc_add_target (¤t_attr, &seen_at[d]);
5883 : 5099 : break;
5884 : :
5885 : 161 : case DECL_IS_BIND_C:
5886 : 161 : t = gfc_add_is_bind_c(¤t_attr, NULL, &seen_at[d], 0);
5887 : 161 : break;
5888 : :
5889 : 8780 : case DECL_VALUE:
5890 : 8780 : if (!gfc_notify_std (GFC_STD_F2003, "VALUE attribute at %C"))
5891 : : t = false;
5892 : : else
5893 : 8780 : t = gfc_add_value (¤t_attr, NULL, &seen_at[d]);
5894 : : break;
5895 : :
5896 : 495 : case DECL_VOLATILE:
5897 : 495 : if (!gfc_notify_std (GFC_STD_F2003, "VOLATILE attribute at %C"))
5898 : : t = false;
5899 : : else
5900 : 494 : t = gfc_add_volatile (¤t_attr, NULL, &seen_at[d]);
5901 : : break;
5902 : :
5903 : 0 : default:
5904 : 0 : gfc_internal_error ("match_attr_spec(): Bad attribute");
5905 : : }
5906 : :
5907 : 110143 : if (!t)
5908 : : {
5909 : 35 : m = MATCH_ERROR;
5910 : 35 : goto cleanup;
5911 : : }
5912 : : }
5913 : :
5914 : : /* Since Fortran 2008 module variables implicitly have the SAVE attribute. */
5915 : 169561 : if ((gfc_current_state () == COMP_MODULE
5916 : 169561 : || gfc_current_state () == COMP_SUBMODULE)
5917 : 5343 : && !current_attr.save
5918 : 5161 : && (gfc_option.allow_std & GFC_STD_F2008) != 0)
5919 : 5068 : current_attr.save = SAVE_IMPLICIT;
5920 : :
5921 : 169561 : colon_seen = 1;
5922 : 169561 : return MATCH_YES;
5923 : :
5924 : 31593 : cleanup:
5925 : 31593 : gfc_current_locus = start;
5926 : 31593 : gfc_free_array_spec (current_as);
5927 : 31593 : current_as = NULL;
5928 : 31593 : attr_seen = 0;
5929 : 31593 : return m;
5930 : : }
5931 : :
5932 : :
5933 : : /* Set the binding label, dest_label, either with the binding label
5934 : : stored in the given gfc_typespec, ts, or if none was provided, it
5935 : : will be the symbol name in all lower case, as required by the draft
5936 : : (J3/04-007, section 15.4.1). If a binding label was given and
5937 : : there is more than one argument (num_idents), it is an error. */
5938 : :
5939 : : static bool
5940 : 308 : set_binding_label (const char **dest_label, const char *sym_name,
5941 : : int num_idents)
5942 : : {
5943 : 308 : if (num_idents > 1 && has_name_equals)
5944 : : {
5945 : 4 : gfc_error ("Multiple identifiers provided with "
5946 : : "single NAME= specifier at %C");
5947 : 4 : return false;
5948 : : }
5949 : :
5950 : 304 : if (curr_binding_label)
5951 : : /* Binding label given; store in temp holder till have sym. */
5952 : 106 : *dest_label = curr_binding_label;
5953 : : else
5954 : : {
5955 : : /* No binding label given, and the NAME= specifier did not exist,
5956 : : which means there was no NAME="". */
5957 : 198 : if (sym_name != NULL && has_name_equals == 0)
5958 : 168 : *dest_label = IDENTIFIER_POINTER (get_identifier (sym_name));
5959 : : }
5960 : :
5961 : : return true;
5962 : : }
5963 : :
5964 : :
5965 : : /* Set the status of the given common block as being BIND(C) or not,
5966 : : depending on the given parameter, is_bind_c. */
5967 : :
5968 : : static void
5969 : 76 : set_com_block_bind_c (gfc_common_head *com_block, int is_bind_c)
5970 : : {
5971 : 76 : com_block->is_bind_c = is_bind_c;
5972 : 76 : return;
5973 : : }
5974 : :
5975 : :
5976 : : /* Verify that the given gfc_typespec is for a C interoperable type. */
5977 : :
5978 : : bool
5979 : 18033 : gfc_verify_c_interop (gfc_typespec *ts)
5980 : : {
5981 : 18033 : if (ts->type == BT_DERIVED && ts->u.derived != NULL)
5982 : 3756 : return (ts->u.derived->ts.is_c_interop || ts->u.derived->attr.is_bind_c)
5983 : 7493 : ? true : false;
5984 : 14285 : else if (ts->type == BT_CLASS)
5985 : : return false;
5986 : 14277 : else if (ts->is_c_interop != 1 && ts->type != BT_ASSUMED)
5987 : 3541 : return false;
5988 : :
5989 : : return true;
5990 : : }
5991 : :
5992 : :
5993 : : /* Verify that the variables of a given common block, which has been
5994 : : defined with the attribute specifier bind(c), to be of a C
5995 : : interoperable type. Errors will be reported here, if
5996 : : encountered. */
5997 : :
5998 : : bool
5999 : 1 : verify_com_block_vars_c_interop (gfc_common_head *com_block)
6000 : : {
6001 : 1 : gfc_symbol *curr_sym = NULL;
6002 : 1 : bool retval = true;
6003 : :
6004 : 1 : curr_sym = com_block->head;
6005 : :
6006 : : /* Make sure we have at least one symbol. */
6007 : 1 : if (curr_sym == NULL)
6008 : : return retval;
6009 : :
6010 : : /* Here we know we have a symbol, so we'll execute this loop
6011 : : at least once. */
6012 : 1 : do
6013 : : {
6014 : : /* The second to last param, 1, says this is in a common block. */
6015 : 1 : retval = verify_bind_c_sym (curr_sym, &(curr_sym->ts), 1, com_block);
6016 : 1 : curr_sym = curr_sym->common_next;
6017 : 1 : } while (curr_sym != NULL);
6018 : :
6019 : : return retval;
6020 : : }
6021 : :
6022 : :
6023 : : /* Verify that a given BIND(C) symbol is C interoperable. If it is not,
6024 : : an appropriate error message is reported. */
6025 : :
6026 : : bool
6027 : 6037 : verify_bind_c_sym (gfc_symbol *tmp_sym, gfc_typespec *ts,
6028 : : int is_in_common, gfc_common_head *com_block)
6029 : : {
6030 : 6037 : bool bind_c_function = false;
6031 : 6037 : bool retval = true;
6032 : :
6033 : 6037 : if (tmp_sym->attr.function && tmp_sym->attr.is_bind_c)
6034 : 2467 : bind_c_function = true;
6035 : :
6036 : 6037 : if (tmp_sym->attr.function && tmp_sym->result != NULL)
6037 : : {
6038 : 2467 : tmp_sym = tmp_sym->result;
6039 : : /* Make sure it wasn't an implicitly typed result. */
6040 : 2467 : if (tmp_sym->attr.implicit_type && warn_c_binding_type)
6041 : : {
6042 : 1 : gfc_warning (OPT_Wc_binding_type,
6043 : : "Implicitly declared BIND(C) function %qs at "
6044 : : "%L may not be C interoperable", tmp_sym->name,
6045 : : &tmp_sym->declared_at);
6046 : 1 : tmp_sym->ts.f90_type = tmp_sym->ts.type;
6047 : : /* Mark it as C interoperable to prevent duplicate warnings. */
6048 : 1 : tmp_sym->ts.is_c_interop = 1;
6049 : 1 : tmp_sym->attr.is_c_interop = 1;
6050 : : }
6051 : : }
6052 : :
6053 : : /* Here, we know we have the bind(c) attribute, so if we have
6054 : : enough type info, then verify that it's a C interop kind.
6055 : : The info could be in the symbol already, or possibly still in
6056 : : the given ts (current_ts), so look in both. */
6057 : 6037 : if (tmp_sym->ts.type != BT_UNKNOWN || ts->type != BT_UNKNOWN)
6058 : : {
6059 : 2625 : if (!gfc_verify_c_interop (&(tmp_sym->ts)))
6060 : : {
6061 : : /* See if we're dealing with a sym in a common block or not. */
6062 : 161 : if (is_in_common == 1 && warn_c_binding_type)
6063 : : {
6064 : 0 : gfc_warning (OPT_Wc_binding_type,
6065 : : "Variable %qs in common block %qs at %L "
6066 : : "may not be a C interoperable "
6067 : : "kind though common block %qs is BIND(C)",
6068 : : tmp_sym->name, com_block->name,
6069 : 0 : &(tmp_sym->declared_at), com_block->name);
6070 : : }
6071 : : else
6072 : : {
6073 : 161 : if (tmp_sym->ts.type == BT_DERIVED || ts->type == BT_DERIVED
6074 : 159 : || tmp_sym->ts.type == BT_CLASS || ts->type == BT_CLASS)
6075 : : {
6076 : 3 : gfc_error ("Type declaration %qs at %L is not C "
6077 : : "interoperable but it is BIND(C)",
6078 : : tmp_sym->name, &(tmp_sym->declared_at));
6079 : 3 : retval = false;
6080 : : }
6081 : 158 : else if (warn_c_binding_type)
6082 : 3 : gfc_warning (OPT_Wc_binding_type, "Variable %qs at %L "
6083 : : "may not be a C interoperable "
6084 : : "kind but it is BIND(C)",
6085 : : tmp_sym->name, &(tmp_sym->declared_at));
6086 : : }
6087 : : }
6088 : :
6089 : : /* Variables declared w/in a common block can't be bind(c)
6090 : : since there's no way for C to see these variables, so there's
6091 : : semantically no reason for the attribute. */
6092 : 2625 : if (is_in_common == 1 && tmp_sym->attr.is_bind_c == 1)
6093 : : {
6094 : 1 : gfc_error ("Variable %qs in common block %qs at "
6095 : : "%L cannot be declared with BIND(C) "
6096 : : "since it is not a global",
6097 : 1 : tmp_sym->name, com_block->name,
6098 : : &(tmp_sym->declared_at));
6099 : 1 : retval = false;
6100 : : }
6101 : :
6102 : : /* Scalar variables that are bind(c) cannot have the pointer
6103 : : or allocatable attributes. */
6104 : 2625 : if (tmp_sym->attr.is_bind_c == 1)
6105 : : {
6106 : 2107 : if (tmp_sym->attr.pointer == 1)
6107 : : {
6108 : 1 : gfc_error ("Variable %qs at %L cannot have both the "
6109 : : "POINTER and BIND(C) attributes",
6110 : : tmp_sym->name, &(tmp_sym->declared_at));
6111 : 1 : retval = false;
6112 : : }
6113 : :
6114 : 2107 : if (tmp_sym->attr.allocatable == 1)
6115 : : {
6116 : 0 : gfc_error ("Variable %qs at %L cannot have both the "
6117 : : "ALLOCATABLE and BIND(C) attributes",
6118 : : tmp_sym->name, &(tmp_sym->declared_at));
6119 : 0 : retval = false;
6120 : : }
6121 : :
6122 : : }
6123 : :
6124 : : /* If it is a BIND(C) function, make sure the return value is a
6125 : : scalar value. The previous tests in this function made sure
6126 : : the type is interoperable. */
6127 : 2625 : if (bind_c_function && tmp_sym->as != NULL)
6128 : 2 : gfc_error ("Return type of BIND(C) function %qs at %L cannot "
6129 : : "be an array", tmp_sym->name, &(tmp_sym->declared_at));
6130 : :
6131 : : /* BIND(C) functions cannot return a character string. */
6132 : 2467 : if (bind_c_function && tmp_sym->ts.type == BT_CHARACTER)
6133 : 68 : if (!gfc_length_one_character_type_p (&tmp_sym->ts))
6134 : 4 : gfc_error ("Return type of BIND(C) function %qs of character "
6135 : : "type at %L must have length 1", tmp_sym->name,
6136 : : &(tmp_sym->declared_at));
6137 : : }
6138 : :
6139 : : /* See if the symbol has been marked as private. If it has, make sure
6140 : : there is no binding label and warn the user if there is one. */
6141 : 6037 : if (tmp_sym->attr.access == ACCESS_PRIVATE
6142 : 10 : && tmp_sym->binding_label)
6143 : : /* Use gfc_warning_now because we won't say that the symbol fails
6144 : : just because of this. */
6145 : 7 : gfc_warning_now (0, "Symbol %qs at %L is marked PRIVATE but has been "
6146 : : "given the binding label %qs", tmp_sym->name,
6147 : : &(tmp_sym->declared_at), tmp_sym->binding_label);
6148 : :
6149 : 6037 : return retval;
6150 : : }
6151 : :
6152 : :
6153 : : /* Set the appropriate fields for a symbol that's been declared as
6154 : : BIND(C) (the is_bind_c flag and the binding label), and verify that
6155 : : the type is C interoperable. Errors are reported by the functions
6156 : : used to set/test these fields. */
6157 : :
6158 : : static bool
6159 : 47 : set_verify_bind_c_sym (gfc_symbol *tmp_sym, int num_idents)
6160 : : {
6161 : 47 : bool retval = true;
6162 : :
6163 : : /* TODO: Do we need to make sure the vars aren't marked private? */
6164 : :
6165 : : /* Set the is_bind_c bit in symbol_attribute. */
6166 : 47 : gfc_add_is_bind_c (&(tmp_sym->attr), tmp_sym->name, &gfc_current_locus, 0);
6167 : :
6168 : 47 : if (!set_binding_label (&tmp_sym->binding_label, tmp_sym->name, num_idents))
6169 : : return false;
6170 : :
6171 : : return retval;
6172 : : }
6173 : :
6174 : :
6175 : : /* Set the fields marking the given common block as BIND(C), including
6176 : : a binding label, and report any errors encountered. */
6177 : :
6178 : : static bool
6179 : 76 : set_verify_bind_c_com_block (gfc_common_head *com_block, int num_idents)
6180 : : {
6181 : 76 : bool retval = true;
6182 : :
6183 : : /* destLabel, common name, typespec (which may have binding label). */
6184 : 76 : if (!set_binding_label (&com_block->binding_label, com_block->name,
6185 : : num_idents))
6186 : : return false;
6187 : :
6188 : : /* Set the given common block (com_block) to being bind(c) (1). */
6189 : 76 : set_com_block_bind_c (com_block, 1);
6190 : :
6191 : 76 : return retval;
6192 : : }
6193 : :
6194 : :
6195 : : /* Retrieve the list of one or more identifiers that the given bind(c)
6196 : : attribute applies to. */
6197 : :
6198 : : static bool
6199 : 102 : get_bind_c_idents (void)
6200 : : {
6201 : 102 : char name[GFC_MAX_SYMBOL_LEN + 1];
6202 : 102 : int num_idents = 0;
6203 : 102 : gfc_symbol *tmp_sym = NULL;
6204 : 102 : match found_id;
6205 : 102 : gfc_common_head *com_block = NULL;
6206 : :
6207 : 102 : if (gfc_match_name (name) == MATCH_YES)
6208 : : {
6209 : 38 : found_id = MATCH_YES;
6210 : 38 : gfc_get_ha_symbol (name, &tmp_sym);
6211 : : }
6212 : 64 : else if (gfc_match_common_name (name) == MATCH_YES)
6213 : : {
6214 : 64 : found_id = MATCH_YES;
6215 : 64 : com_block = gfc_get_common (name, 0);
6216 : : }
6217 : : else
6218 : : {
6219 : 0 : gfc_error ("Need either entity or common block name for "
6220 : : "attribute specification statement at %C");
6221 : 0 : return false;
6222 : : }
6223 : :
6224 : : /* Save the current identifier and look for more. */
6225 : 123 : do
6226 : : {
6227 : : /* Increment the number of identifiers found for this spec stmt. */
6228 : 123 : num_idents++;
6229 : :
6230 : : /* Make sure we have a sym or com block, and verify that it can
6231 : : be bind(c). Set the appropriate field(s) and look for more
6232 : : identifiers. */
6233 : 123 : if (tmp_sym != NULL || com_block != NULL)
6234 : : {
6235 : 123 : if (tmp_sym != NULL)
6236 : : {
6237 : 47 : if (!set_verify_bind_c_sym (tmp_sym, num_idents))
6238 : : return false;
6239 : : }
6240 : : else
6241 : : {
6242 : 76 : if (!set_verify_bind_c_com_block (com_block, num_idents))
6243 : : return false;
6244 : : }
6245 : :
6246 : : /* Look to see if we have another identifier. */
6247 : 122 : tmp_sym = NULL;
6248 : 122 : if (gfc_match_eos () == MATCH_YES)
6249 : : found_id = MATCH_NO;
6250 : 21 : else if (gfc_match_char (',') != MATCH_YES)
6251 : : found_id = MATCH_NO;
6252 : 21 : else if (gfc_match_name (name) == MATCH_YES)
6253 : : {
6254 : 9 : found_id = MATCH_YES;
6255 : 9 : gfc_get_ha_symbol (name, &tmp_sym);
6256 : : }
6257 : 12 : else if (gfc_match_common_name (name) == MATCH_YES)
6258 : : {
6259 : 12 : found_id = MATCH_YES;
6260 : 12 : com_block = gfc_get_common (name, 0);
6261 : : }
6262 : : else
6263 : : {
6264 : 0 : gfc_error ("Missing entity or common block name for "
6265 : : "attribute specification statement at %C");
6266 : 0 : return false;
6267 : : }
6268 : : }
6269 : : else
6270 : : {
6271 : 0 : gfc_internal_error ("Missing symbol");
6272 : : }
6273 : 122 : } while (found_id == MATCH_YES);
6274 : :
6275 : : /* if we get here we were successful */
6276 : : return true;
6277 : : }
6278 : :
6279 : :
6280 : : /* Try and match a BIND(C) attribute specification statement. */
6281 : :
6282 : : match
6283 : 140 : gfc_match_bind_c_stmt (void)
6284 : : {
6285 : 140 : match found_match = MATCH_NO;
6286 : 140 : gfc_typespec *ts;
6287 : :
6288 : 140 : ts = ¤t_ts;
6289 : :
6290 : : /* This may not be necessary. */
6291 : 140 : gfc_clear_ts (ts);
6292 : : /* Clear the temporary binding label holder. */
6293 : 140 : curr_binding_label = NULL;
6294 : :
6295 : : /* Look for the bind(c). */
6296 : 140 : found_match = gfc_match_bind_c (NULL, true);
6297 : :
6298 : 140 : if (found_match == MATCH_YES)
6299 : : {
6300 : 103 : if (!gfc_notify_std (GFC_STD_F2003, "BIND(C) statement at %C"))
6301 : : return MATCH_ERROR;
6302 : :
6303 : : /* Look for the :: now, but it is not required. */
6304 : 102 : gfc_match (" :: ");
6305 : :
6306 : : /* Get the identifier(s) that needs to be updated. This may need to
6307 : : change to hand the flag(s) for the attr specified so all identifiers
6308 : : found can have all appropriate parts updated (assuming that the same
6309 : : spec stmt can have multiple attrs, such as both bind(c) and
6310 : : allocatable...). */
6311 : 102 : if (!get_bind_c_idents ())
6312 : : /* Error message should have printed already. */
6313 : : return MATCH_ERROR;
6314 : : }
6315 : :
6316 : : return found_match;
6317 : : }
6318 : :
6319 : :
6320 : : /* Match a data declaration statement. */
6321 : :
6322 : : match
6323 : 942666 : gfc_match_data_decl (void)
6324 : : {
6325 : 942666 : gfc_symbol *sym;
6326 : 942666 : match m;
6327 : 942666 : int elem;
6328 : :
6329 : 942666 : type_param_spec_list = NULL;
6330 : 942666 : decl_type_param_list = NULL;
6331 : :
6332 : 942666 : num_idents_on_line = 0;
6333 : :
6334 : 942666 : m = gfc_match_decl_type_spec (¤t_ts, 0);
6335 : 942666 : if (m != MATCH_YES)
6336 : : return m;
6337 : :
6338 : 200073 : if ((current_ts.type == BT_DERIVED || current_ts.type == BT_CLASS)
6339 : 31143 : && !gfc_comp_struct (gfc_current_state ()))
6340 : : {
6341 : 28197 : sym = gfc_use_derived (current_ts.u.derived);
6342 : :
6343 : 28197 : if (sym == NULL)
6344 : : {
6345 : 15 : m = MATCH_ERROR;
6346 : 15 : goto cleanup;
6347 : : }
6348 : :
6349 : 28182 : current_ts.u.derived = sym;
6350 : : }
6351 : :
6352 : 200058 : m = match_attr_spec ();
6353 : 200058 : if (m == MATCH_ERROR)
6354 : : {
6355 : 84 : m = MATCH_NO;
6356 : 84 : goto cleanup;
6357 : : }
6358 : :
6359 : : /* F2018:C708. */
6360 : 199974 : if (current_ts.type == BT_CLASS && current_attr.flavor == FL_PARAMETER)
6361 : : {
6362 : 6 : gfc_error ("CLASS entity at %C cannot have the PARAMETER attribute");
6363 : 6 : m = MATCH_ERROR;
6364 : 6 : goto cleanup;
6365 : : }
6366 : :
6367 : 199968 : if (current_ts.type == BT_CLASS
6368 : 10081 : && current_ts.u.derived->attr.unlimited_polymorphic)
6369 : 1722 : goto ok;
6370 : :
6371 : 198246 : if ((current_ts.type == BT_DERIVED || current_ts.type == BT_CLASS)
6372 : 29399 : && current_ts.u.derived->components == NULL
6373 : 2605 : && !current_ts.u.derived->attr.zero_comp)
6374 : : {
6375 : :
6376 : 205 : if (current_attr.pointer && gfc_comp_struct (gfc_current_state ()))
6377 : 140 : goto ok;
6378 : :
6379 : 65 : if (current_attr.allocatable && gfc_current_state () == COMP_DERIVED)
6380 : 38 : goto ok;
6381 : :
6382 : 27 : gfc_find_symbol (current_ts.u.derived->name,
6383 : : current_ts.u.derived->ns, 1, &sym);
6384 : :
6385 : : /* Any symbol that we find had better be a type definition
6386 : : which has its components defined, or be a structure definition
6387 : : actively being parsed. */
6388 : 27 : if (sym != NULL && gfc_fl_struct (sym->attr.flavor)
6389 : 26 : && (current_ts.u.derived->components != NULL
6390 : 26 : || current_ts.u.derived->attr.zero_comp
6391 : 26 : || current_ts.u.derived == gfc_new_block))
6392 : 26 : goto ok;
6393 : :
6394 : 1 : gfc_error ("Derived type at %C has not been previously defined "
6395 : : "and so cannot appear in a derived type definition");
6396 : 1 : m = MATCH_ERROR;
6397 : 1 : goto cleanup;
6398 : : }
6399 : :
6400 : 198041 : ok:
6401 : : /* If we have an old-style character declaration, and no new-style
6402 : : attribute specifications, then there a comma is optional between
6403 : : the type specification and the variable list. */
6404 : 199967 : if (m == MATCH_NO && current_ts.type == BT_CHARACTER && old_char_selector)
6405 : 1442 : gfc_match_char (',');
6406 : :
6407 : : /* Give the types/attributes to symbols that follow. Give the element
6408 : : a number so that repeat character length expressions can be copied. */
6409 : : elem = 1;
6410 : 262395 : for (;;)
6411 : : {
6412 : 262395 : num_idents_on_line++;
6413 : 262395 : m = variable_decl (elem++);
6414 : 262393 : if (m == MATCH_ERROR)
6415 : 398 : goto cleanup;
6416 : 261995 : if (m == MATCH_NO)
6417 : : break;
6418 : :
6419 : 261984 : if (gfc_match_eos () == MATCH_YES)
6420 : 199535 : goto cleanup;
6421 : 62449 : if (gfc_match_char (',') != MATCH_YES)
6422 : : break;
6423 : : }
6424 : :
6425 : 32 : if (!gfc_error_flag_test ())
6426 : : {
6427 : : /* An anonymous structure declaration is unambiguous; if we matched one
6428 : : according to gfc_match_structure_decl, we need to return MATCH_YES
6429 : : here to avoid confusing the remaining matchers, even if there was an
6430 : : error during variable_decl. We must flush any such errors. Note this
6431 : : causes the parser to gracefully continue parsing the remaining input
6432 : : as a structure body, which likely follows. */
6433 : 8 : if (current_ts.type == BT_DERIVED && current_ts.u.derived
6434 : 1 : && gfc_fl_struct (current_ts.u.derived->attr.flavor))
6435 : : {
6436 : 1 : gfc_error_now ("Syntax error in anonymous structure declaration"
6437 : : " at %C");
6438 : : /* Skip the bad variable_decl and line up for the start of the
6439 : : structure body. */
6440 : 1 : gfc_error_recovery ();
6441 : 1 : m = MATCH_YES;
6442 : 1 : goto cleanup;
6443 : : }
6444 : :
6445 : 7 : gfc_error ("Syntax error in data declaration at %C");
6446 : : }
6447 : :
6448 : 31 : m = MATCH_ERROR;
6449 : :
6450 : 31 : gfc_free_data_all (gfc_current_ns);
6451 : :
6452 : 200071 : cleanup:
6453 : 200071 : if (saved_kind_expr)
6454 : 91 : gfc_free_expr (saved_kind_expr);
6455 : 200071 : if (type_param_spec_list)
6456 : 396 : gfc_free_actual_arglist (type_param_spec_list);
6457 : 200071 : if (decl_type_param_list)
6458 : 423 : gfc_free_actual_arglist (decl_type_param_list);
6459 : 200071 : saved_kind_expr = NULL;
6460 : 200071 : gfc_free_array_spec (current_as);
6461 : 200071 : current_as = NULL;
6462 : 200071 : return m;
6463 : : }
6464 : :
6465 : : static bool
6466 : 22200 : in_module_or_interface(void)
6467 : : {
6468 : 22200 : if (gfc_current_state () == COMP_MODULE
6469 : 22200 : || gfc_current_state () == COMP_SUBMODULE
6470 : 22200 : || gfc_current_state () == COMP_INTERFACE)
6471 : : return true;
6472 : :
6473 : 18811 : if (gfc_state_stack->state == COMP_CONTAINS
6474 : 18169 : || gfc_state_stack->state == COMP_FUNCTION
6475 : 18090 : || gfc_state_stack->state == COMP_SUBROUTINE)
6476 : : {
6477 : 721 : gfc_state_data *p;
6478 : 756 : for (p = gfc_state_stack->previous; p ; p = p->previous)
6479 : : {
6480 : 752 : if (p->state == COMP_MODULE || p->state == COMP_SUBMODULE
6481 : 91 : || p->state == COMP_INTERFACE)
6482 : : return true;
6483 : : }
6484 : : }
6485 : : return false;
6486 : : }
6487 : :
6488 : : /* Match a prefix associated with a function or subroutine
6489 : : declaration. If the typespec pointer is nonnull, then a typespec
6490 : : can be matched. Note that if nothing matches, MATCH_YES is
6491 : : returned (the null string was matched). */
6492 : :
6493 : : match
6494 : 224634 : gfc_match_prefix (gfc_typespec *ts)
6495 : : {
6496 : 224634 : bool seen_type;
6497 : 224634 : bool seen_impure;
6498 : 224634 : bool found_prefix;
6499 : :
6500 : 224634 : gfc_clear_attr (¤t_attr);
6501 : 224634 : seen_type = false;
6502 : 224634 : seen_impure = false;
6503 : :
6504 : 224634 : gcc_assert (!gfc_matching_prefix);
6505 : 224634 : gfc_matching_prefix = true;
6506 : :
6507 : 233331 : do
6508 : : {
6509 : 251729 : found_prefix = false;
6510 : :
6511 : : /* MODULE is a prefix like PURE, ELEMENTAL, etc., having a
6512 : : corresponding attribute seems natural and distinguishes these
6513 : : procedures from procedure types of PROC_MODULE, which these are
6514 : : as well. */
6515 : 251729 : if (gfc_match ("module% ") == MATCH_YES)
6516 : : {
6517 : 22479 : if (!gfc_notify_std (GFC_STD_F2008, "MODULE prefix at %C"))
6518 : 279 : goto error;
6519 : :
6520 : 22200 : if (!in_module_or_interface ())
6521 : : {
6522 : 18094 : gfc_error ("MODULE prefix at %C found outside of a module, "
6523 : : "submodule, or interface");
6524 : 18094 : goto error;
6525 : : }
6526 : :
6527 : 4106 : current_attr.module_procedure = 1;
6528 : 4106 : found_prefix = true;
6529 : : }
6530 : :
6531 : 233356 : if (!seen_type && ts != NULL)
6532 : : {
6533 : 125478 : match m;
6534 : 125478 : m = gfc_match_decl_type_spec (ts, 0);
6535 : 125478 : if (m == MATCH_ERROR)
6536 : 15 : goto error;
6537 : 125463 : if (m == MATCH_YES && gfc_match_space () == MATCH_YES)
6538 : : {
6539 : : seen_type = true;
6540 : : found_prefix = true;
6541 : : }
6542 : : }
6543 : :
6544 : 233341 : if (gfc_match ("elemental% ") == MATCH_YES)
6545 : : {
6546 : 4663 : if (!gfc_add_elemental (¤t_attr, NULL))
6547 : 2 : goto error;
6548 : :
6549 : : found_prefix = true;
6550 : : }
6551 : :
6552 : 233339 : if (gfc_match ("pure% ") == MATCH_YES)
6553 : : {
6554 : 2181 : if (!gfc_add_pure (¤t_attr, NULL))
6555 : 2 : goto error;
6556 : :
6557 : : found_prefix = true;
6558 : : }
6559 : :
6560 : 233337 : if (gfc_match ("recursive% ") == MATCH_YES)
6561 : : {
6562 : 447 : if (!gfc_add_recursive (¤t_attr, NULL))
6563 : 2 : goto error;
6564 : :
6565 : : found_prefix = true;
6566 : : }
6567 : :
6568 : : /* IMPURE is a somewhat special case, as it needs not set an actual
6569 : : attribute but rather only prevents ELEMENTAL routines from being
6570 : : automatically PURE. */
6571 : 233335 : if (gfc_match ("impure% ") == MATCH_YES)
6572 : : {
6573 : 585 : if (!gfc_notify_std (GFC_STD_F2008, "IMPURE procedure at %C"))
6574 : 4 : goto error;
6575 : :
6576 : : seen_impure = true;
6577 : : found_prefix = true;
6578 : : }
6579 : : }
6580 : : while (found_prefix);
6581 : :
6582 : : /* IMPURE and PURE must not both appear, of course. */
6583 : 206236 : if (seen_impure && current_attr.pure)
6584 : : {
6585 : 4 : gfc_error ("PURE and IMPURE must not appear both at %C");
6586 : 4 : goto error;
6587 : : }
6588 : :
6589 : : /* If IMPURE it not seen but the procedure is ELEMENTAL, mark it as PURE. */
6590 : 205655 : if (!seen_impure && current_attr.elemental && !current_attr.pure)
6591 : : {
6592 : 4076 : if (!gfc_add_pure (¤t_attr, NULL))
6593 : 0 : goto error;
6594 : : }
6595 : :
6596 : : /* At this point, the next item is not a prefix. */
6597 : 206232 : gcc_assert (gfc_matching_prefix);
6598 : :
6599 : 206232 : gfc_matching_prefix = false;
6600 : 206232 : return MATCH_YES;
6601 : :
6602 : 18402 : error:
6603 : 18402 : gcc_assert (gfc_matching_prefix);
6604 : 18402 : gfc_matching_prefix = false;
6605 : 18402 : return MATCH_ERROR;
6606 : : }
6607 : :
6608 : :
6609 : : /* Copy attributes matched by gfc_match_prefix() to attributes on a symbol. */
6610 : :
6611 : : static bool
6612 : 58305 : copy_prefix (symbol_attribute *dest, locus *where)
6613 : : {
6614 : 58305 : if (dest->module_procedure)
6615 : : {
6616 : 555 : if (current_attr.elemental)
6617 : 4 : dest->elemental = 1;
6618 : :
6619 : 555 : if (current_attr.pure)
6620 : 12 : dest->pure = 1;
6621 : :
6622 : 555 : if (current_attr.recursive)
6623 : 8 : dest->recursive = 1;
6624 : :
6625 : : /* Module procedures are unusual in that the 'dest' is copied from
6626 : : the interface declaration. However, this is an oportunity to
6627 : : check that the submodule declaration is compliant with the
6628 : : interface. */
6629 : 555 : if (dest->elemental && !current_attr.elemental)
6630 : : {
6631 : 1 : gfc_error ("ELEMENTAL prefix in MODULE PROCEDURE interface is "
6632 : : "missing at %L", where);
6633 : 1 : return false;
6634 : : }
6635 : :
6636 : 554 : if (dest->pure && !current_attr.pure)
6637 : : {
6638 : 1 : gfc_error ("PURE prefix in MODULE PROCEDURE interface is "
6639 : : "missing at %L", where);
6640 : 1 : return false;
6641 : : }
6642 : :
6643 : 553 : if (dest->recursive && !current_attr.recursive)
6644 : : {
6645 : 1 : gfc_error ("RECURSIVE prefix in MODULE PROCEDURE interface is "
6646 : : "missing at %L", where);
6647 : 1 : return false;
6648 : : }
6649 : :
6650 : : return true;
6651 : : }
6652 : :
6653 : 57750 : if (current_attr.elemental && !gfc_add_elemental (dest, where))
6654 : : return false;
6655 : :
6656 : 57748 : if (current_attr.pure && !gfc_add_pure (dest, where))
6657 : : return false;
6658 : :
6659 : 57748 : if (current_attr.recursive && !gfc_add_recursive (dest, where))
6660 : : return false;
6661 : :
6662 : : return true;
6663 : : }
6664 : :
6665 : :
6666 : : /* Match a formal argument list or, if typeparam is true, a
6667 : : type_param_name_list. */
6668 : :
6669 : : match
6670 : 449281 : gfc_match_formal_arglist (gfc_symbol *progname, int st_flag,
6671 : : int null_flag, bool typeparam)
6672 : : {
6673 : 449281 : gfc_formal_arglist *head, *tail, *p, *q;
6674 : 449281 : char name[GFC_MAX_SYMBOL_LEN + 1];
6675 : 449281 : gfc_symbol *sym;
6676 : 449281 : match m;
6677 : 449281 : gfc_formal_arglist *formal = NULL;
6678 : :
6679 : 449281 : head = tail = NULL;
6680 : :
6681 : : /* Keep the interface formal argument list and null it so that the
6682 : : matching for the new declaration can be done. The numbers and
6683 : : names of the arguments are checked here. The interface formal
6684 : : arguments are retained in formal_arglist and the characteristics
6685 : : are compared in resolve.cc(resolve_fl_procedure). See the remark
6686 : : in get_proc_name about the eventual need to copy the formal_arglist
6687 : : and populate the formal namespace of the interface symbol. */
6688 : 449281 : if (progname->attr.module_procedure
6689 : 559 : && progname->attr.host_assoc)
6690 : : {
6691 : 163 : formal = progname->formal;
6692 : 163 : progname->formal = NULL;
6693 : : }
6694 : :
6695 : 449281 : if (gfc_match_char ('(') != MATCH_YES)
6696 : : {
6697 : 267105 : if (null_flag)
6698 : 6020 : goto ok;
6699 : : return MATCH_NO;
6700 : : }
6701 : :
6702 : 182176 : if (gfc_match_char (')') == MATCH_YES)
6703 : : {
6704 : 10007 : if (typeparam)
6705 : : {
6706 : 1 : gfc_error_now ("A type parameter list is required at %C");
6707 : 1 : m = MATCH_ERROR;
6708 : 1 : goto cleanup;
6709 : : }
6710 : : else
6711 : 10006 : goto ok;
6712 : : }
6713 : :
6714 : 230059 : for (;;)
6715 : : {
6716 : 230059 : gfc_gobble_whitespace ();
6717 : 230059 : if (gfc_match_char ('*') == MATCH_YES)
6718 : : {
6719 : 9175 : sym = NULL;
6720 : 9175 : if (!typeparam && !gfc_notify_std (GFC_STD_F95_OBS,
6721 : : "Alternate-return argument at %C"))
6722 : : {
6723 : 1 : m = MATCH_ERROR;
6724 : 1 : goto cleanup;
6725 : : }
6726 : 9174 : else if (typeparam)
6727 : 2 : gfc_error_now ("A parameter name is required at %C");
6728 : : }
6729 : : else
6730 : : {
6731 : 220884 : locus loc = gfc_current_locus;
6732 : 220884 : m = gfc_match_name (name);
6733 : 220884 : if (m != MATCH_YES)
6734 : : {
6735 : 16048 : if(typeparam)
6736 : 1 : gfc_error_now ("A parameter name is required at %C");
6737 : 16052 : goto cleanup;
6738 : : }
6739 : 204836 : loc = gfc_get_location_range (NULL, 0, &loc, 1, &gfc_current_locus);
6740 : :
6741 : 204836 : if (!typeparam && gfc_get_symbol (name, NULL, &sym, &loc))
6742 : 4 : goto cleanup;
6743 : 204832 : else if (typeparam
6744 : 204832 : && gfc_get_symbol (name, progname->f2k_derived, &sym, &loc))
6745 : 0 : goto cleanup;
6746 : : }
6747 : :
6748 : 214006 : p = gfc_get_formal_arglist ();
6749 : :
6750 : 214006 : if (head == NULL)
6751 : : head = tail = p;
6752 : : else
6753 : : {
6754 : 57188 : tail->next = p;
6755 : 57188 : tail = p;
6756 : : }
6757 : :
6758 : 214006 : tail->sym = sym;
6759 : :
6760 : : /* We don't add the VARIABLE flavor because the name could be a
6761 : : dummy procedure. We don't apply these attributes to formal
6762 : : arguments of statement functions. */
6763 : 204832 : if (sym != NULL && !st_flag
6764 : 307309 : && (!gfc_add_dummy(&sym->attr, sym->name, NULL)
6765 : 93303 : || !gfc_missing_attr (&sym->attr, NULL)))
6766 : : {
6767 : 0 : m = MATCH_ERROR;
6768 : 0 : goto cleanup;
6769 : : }
6770 : :
6771 : : /* The name of a program unit can be in a different namespace,
6772 : : so check for it explicitly. After the statement is accepted,
6773 : : the name is checked for especially in gfc_get_symbol(). */
6774 : 214006 : if (gfc_new_block != NULL && sym != NULL && !typeparam
6775 : 92338 : && strcmp (sym->name, gfc_new_block->name) == 0)
6776 : : {
6777 : 0 : gfc_error ("Name %qs at %C is the name of the procedure",
6778 : : sym->name);
6779 : 0 : m = MATCH_ERROR;
6780 : 0 : goto cleanup;
6781 : : }
6782 : :
6783 : 214006 : if (gfc_match_char (')') == MATCH_YES)
6784 : 111341 : goto ok;
6785 : :
6786 : 102665 : m = gfc_match_char (',');
6787 : 102665 : if (m != MATCH_YES)
6788 : : {
6789 : 44775 : if (typeparam)
6790 : 1 : gfc_error_now ("Expected parameter list in type declaration "
6791 : : "at %C");
6792 : : else
6793 : 44774 : gfc_error ("Unexpected junk in formal argument list at %C");
6794 : 44775 : goto cleanup;
6795 : : }
6796 : : }
6797 : :
6798 : 127367 : ok:
6799 : : /* Check for duplicate symbols in the formal argument list. */
6800 : 127367 : if (head != NULL)
6801 : : {
6802 : 166986 : for (p = head; p->next; p = p->next)
6803 : : {
6804 : 55693 : if (p->sym == NULL)
6805 : 330 : continue;
6806 : :
6807 : 225868 : for (q = p->next; q; q = q->next)
6808 : 170553 : if (p->sym == q->sym)
6809 : : {
6810 : 48 : if (typeparam)
6811 : 1 : gfc_error_now ("Duplicate name %qs in parameter "
6812 : : "list at %C", p->sym->name);
6813 : : else
6814 : 47 : gfc_error ("Duplicate symbol %qs in formal argument "
6815 : : "list at %C", p->sym->name);
6816 : :
6817 : 48 : m = MATCH_ERROR;
6818 : 48 : goto cleanup;
6819 : : }
6820 : : }
6821 : : }
6822 : :
6823 : 127319 : if (!gfc_add_explicit_interface (progname, IFSRC_DECL, head, NULL))
6824 : : {
6825 : 0 : m = MATCH_ERROR;
6826 : 0 : goto cleanup;
6827 : : }
6828 : :
6829 : : /* gfc_error_now used in following and return with MATCH_YES because
6830 : : doing otherwise results in a cascade of extraneous errors and in
6831 : : some cases an ICE in symbol.cc(gfc_release_symbol). */
6832 : 127319 : if (progname->attr.module_procedure && progname->attr.host_assoc)
6833 : : {
6834 : 162 : bool arg_count_mismatch = false;
6835 : :
6836 : 162 : if (!formal && head)
6837 : : arg_count_mismatch = true;
6838 : :
6839 : : /* Abbreviated module procedure declaration is not meant to have any
6840 : : formal arguments! */
6841 : 162 : if (!progname->abr_modproc_decl && formal && !head)
6842 : 1 : arg_count_mismatch = true;
6843 : :
6844 : 308 : for (p = formal, q = head; p && q; p = p->next, q = q->next)
6845 : : {
6846 : 146 : if ((p->next != NULL && q->next == NULL)
6847 : 145 : || (p->next == NULL && q->next != NULL))
6848 : : arg_count_mismatch = true;
6849 : 144 : else if ((p->sym == NULL && q->sym == NULL)
6850 : 144 : || (p->sym && q->sym
6851 : 142 : && strcmp (p->sym->name, q->sym->name) == 0))
6852 : 140 : continue;
6853 : : else
6854 : : {
6855 : 4 : if (q->sym == NULL)
6856 : 1 : gfc_error_now ("MODULE PROCEDURE formal argument %qs "
6857 : : "conflicts with alternate return at %C",
6858 : : p->sym->name);
6859 : 3 : else if (p->sym == NULL)
6860 : 1 : gfc_error_now ("MODULE PROCEDURE formal argument is "
6861 : : "alternate return and conflicts with "
6862 : : "%qs in the separate declaration at %C",
6863 : : q->sym->name);
6864 : : else
6865 : 2 : gfc_error_now ("Mismatch in MODULE PROCEDURE formal "
6866 : : "argument names (%s/%s) at %C",
6867 : : p->sym->name, q->sym->name);
6868 : : }
6869 : : }
6870 : :
6871 : 162 : if (arg_count_mismatch)
6872 : 4 : gfc_error_now ("Mismatch in number of MODULE PROCEDURE "
6873 : : "formal arguments at %C");
6874 : : }
6875 : :
6876 : : return MATCH_YES;
6877 : :
6878 : 60877 : cleanup:
6879 : 60877 : gfc_free_formal_arglist (head);
6880 : 60877 : return m;
6881 : : }
6882 : :
6883 : :
6884 : : /* Match a RESULT specification following a function declaration or
6885 : : ENTRY statement. Also matches the end-of-statement. */
6886 : :
6887 : : static match
6888 : 7495 : match_result (gfc_symbol *function, gfc_symbol **result)
6889 : : {
6890 : 7495 : char name[GFC_MAX_SYMBOL_LEN + 1];
6891 : 7495 : gfc_symbol *r;
6892 : 7495 : match m;
6893 : :
6894 : 7495 : if (gfc_match (" result (") != MATCH_YES)
6895 : : return MATCH_NO;
6896 : :
6897 : 5565 : m = gfc_match_name (name);
6898 : 5565 : if (m != MATCH_YES)
6899 : : return m;
6900 : :
6901 : : /* Get the right paren, and that's it because there could be the
6902 : : bind(c) attribute after the result clause. */
6903 : 5565 : if (gfc_match_char (')') != MATCH_YES)
6904 : : {
6905 : : /* TODO: should report the missing right paren here. */
6906 : : return MATCH_ERROR;
6907 : : }
6908 : :
6909 : 5565 : if (strcmp (function->name, name) == 0)
6910 : : {
6911 : 1 : gfc_error ("RESULT variable at %C must be different than function name");
6912 : 1 : return MATCH_ERROR;
6913 : : }
6914 : :
6915 : 5564 : if (gfc_get_symbol (name, NULL, &r))
6916 : : return MATCH_ERROR;
6917 : :
6918 : 5564 : if (!gfc_add_result (&r->attr, r->name, NULL))
6919 : : return MATCH_ERROR;
6920 : :
6921 : 5564 : *result = r;
6922 : :
6923 : 5564 : return MATCH_YES;
6924 : : }
6925 : :
6926 : :
6927 : : /* Match a function suffix, which could be a combination of a result
6928 : : clause and BIND(C), either one, or neither. The draft does not
6929 : : require them to come in a specific order. */
6930 : :
6931 : : static match
6932 : 7499 : gfc_match_suffix (gfc_symbol *sym, gfc_symbol **result)
6933 : : {
6934 : 7499 : match is_bind_c; /* Found bind(c). */
6935 : 7499 : match is_result; /* Found result clause. */
6936 : 7499 : match found_match; /* Status of whether we've found a good match. */
6937 : 7499 : char peek_char; /* Character we're going to peek at. */
6938 : 7499 : bool allow_binding_name;
6939 : :
6940 : : /* Initialize to having found nothing. */
6941 : 7499 : found_match = MATCH_NO;
6942 : 7499 : is_bind_c = MATCH_NO;
6943 : 7499 : is_result = MATCH_NO;
6944 : :
6945 : : /* Get the next char to narrow between result and bind(c). */
6946 : 7499 : gfc_gobble_whitespace ();
6947 : 7499 : peek_char = gfc_peek_ascii_char ();
6948 : :
6949 : : /* C binding names are not allowed for internal procedures. */
6950 : 7499 : if (gfc_current_state () == COMP_CONTAINS
6951 : 4397 : && sym->ns->proc_name->attr.flavor != FL_MODULE)
6952 : : allow_binding_name = false;
6953 : : else
6954 : 5907 : allow_binding_name = true;
6955 : :
6956 : 7499 : switch (peek_char)
6957 : : {
6958 : 5196 : case 'r':
6959 : : /* Look for result clause. */
6960 : 5196 : is_result = match_result (sym, result);
6961 : 5196 : if (is_result == MATCH_YES)
6962 : : {
6963 : : /* Now see if there is a bind(c) after it. */
6964 : 5195 : is_bind_c = gfc_match_bind_c (sym, allow_binding_name);
6965 : : /* We've found the result clause and possibly bind(c). */
6966 : 5195 : found_match = MATCH_YES;
6967 : : }
6968 : : else
6969 : : /* This should only be MATCH_ERROR. */
6970 : : found_match = is_result;
6971 : : break;
6972 : 2303 : case 'b':
6973 : : /* Look for bind(c) first. */
6974 : 2303 : is_bind_c = gfc_match_bind_c (sym, allow_binding_name);
6975 : 2303 : if (is_bind_c == MATCH_YES)
6976 : : {
6977 : : /* Now see if a result clause followed it. */
6978 : 2299 : is_result = match_result (sym, result);
6979 : 2299 : found_match = MATCH_YES;
6980 : : }
6981 : : else
6982 : : {
6983 : : /* Should only be a MATCH_ERROR if we get here after seeing 'b'. */
6984 : : found_match = MATCH_ERROR;
6985 : : }
6986 : : break;
6987 : 0 : default:
6988 : 0 : gfc_error ("Unexpected junk after function declaration at %C");
6989 : 0 : found_match = MATCH_ERROR;
6990 : 0 : break;
6991 : : }
6992 : :
6993 : 7494 : if (is_bind_c == MATCH_YES)
6994 : : {
6995 : : /* Fortran 2008 draft allows BIND(C) for internal procedures. */
6996 : 2448 : if (gfc_current_state () == COMP_CONTAINS
6997 : 414 : && sym->ns->proc_name->attr.flavor != FL_MODULE
6998 : 2460 : && !gfc_notify_std (GFC_STD_F2008, "BIND(C) attribute "
6999 : : "at %L may not be specified for an internal "
7000 : : "procedure", &gfc_current_locus))
7001 : : return MATCH_ERROR;
7002 : :
7003 : 2445 : if (!gfc_add_is_bind_c (&(sym->attr), sym->name, &gfc_current_locus, 1))
7004 : : return MATCH_ERROR;
7005 : : }
7006 : :
7007 : : return found_match;
7008 : : }
7009 : :
7010 : :
7011 : : /* Procedure pointer return value without RESULT statement:
7012 : : Add "hidden" result variable named "ppr@". */
7013 : :
7014 : : static bool
7015 : 69618 : add_hidden_procptr_result (gfc_symbol *sym)
7016 : : {
7017 : 69618 : bool case1,case2;
7018 : :
7019 : 69618 : if (gfc_notification_std (GFC_STD_F2003) == ERROR)
7020 : : return false;
7021 : :
7022 : : /* First usage case: PROCEDURE and EXTERNAL statements. */
7023 : 1496 : case1 = gfc_current_state () == COMP_FUNCTION && gfc_current_block ()
7024 : 1496 : && strcmp (gfc_current_block ()->name, sym->name) == 0
7025 : 69994 : && sym->attr.external;
7026 : : /* Second usage case: INTERFACE statements. */
7027 : 12703 : case2 = gfc_current_state () == COMP_INTERFACE && gfc_state_stack->previous
7028 : 12703 : && gfc_state_stack->previous->state == COMP_FUNCTION
7029 : 69670 : && strcmp (gfc_state_stack->previous->sym->name, sym->name) == 0;
7030 : :
7031 : 69433 : if (case1 || case2)
7032 : : {
7033 : 123 : gfc_symtree *stree;
7034 : 123 : if (case1)
7035 : 93 : gfc_get_sym_tree ("ppr@", gfc_current_ns, &stree, false);
7036 : : else
7037 : : {
7038 : 30 : gfc_symtree *st2;
7039 : 30 : gfc_get_sym_tree ("ppr@", gfc_current_ns->parent, &stree, false);
7040 : 30 : st2 = gfc_new_symtree (&gfc_current_ns->sym_root, "ppr@");
7041 : 30 : st2->n.sym = stree->n.sym;
7042 : 30 : stree->n.sym->refs++;
7043 : : }
7044 : 123 : sym->result = stree->n.sym;
7045 : :
7046 : 123 : sym->result->attr.proc_pointer = sym->attr.proc_pointer;
7047 : 123 : sym->result->attr.pointer = sym->attr.pointer;
7048 : 123 : sym->result->attr.external = sym->attr.external;
7049 : 123 : sym->result->attr.referenced = sym->attr.referenced;
7050 : 123 : sym->result->ts = sym->ts;
7051 : 123 : sym->attr.proc_pointer = 0;
7052 : 123 : sym->attr.pointer = 0;
7053 : 123 : sym->attr.external = 0;
7054 : 123 : if (sym->result->attr.external && sym->result->attr.pointer)
7055 : : {
7056 : 4 : sym->result->attr.pointer = 0;
7057 : 4 : sym->result->attr.proc_pointer = 1;
7058 : : }
7059 : :
7060 : 123 : return gfc_add_result (&sym->result->attr, sym->result->name, NULL);
7061 : : }
7062 : : /* POINTER after PROCEDURE/EXTERNAL/INTERFACE statement. */
7063 : 69340 : else if (sym->attr.function && !sym->attr.external && sym->attr.pointer
7064 : 399 : && sym->result && sym->result != sym && sym->result->attr.external
7065 : 28 : && sym == gfc_current_ns->proc_name
7066 : 28 : && sym == sym->result->ns->proc_name
7067 : 28 : && strcmp ("ppr@", sym->result->name) == 0)
7068 : : {
7069 : 28 : sym->result->attr.proc_pointer = 1;
7070 : 28 : sym->attr.pointer = 0;
7071 : 28 : return true;
7072 : : }
7073 : : else
7074 : : return false;
7075 : : }
7076 : :
7077 : :
7078 : : /* Match the interface for a PROCEDURE declaration,
7079 : : including brackets (R1212). */
7080 : :
7081 : : static match
7082 : 1497 : match_procedure_interface (gfc_symbol **proc_if)
7083 : : {
7084 : 1497 : match m;
7085 : 1497 : gfc_symtree *st;
7086 : 1497 : locus old_loc, entry_loc;
7087 : 1497 : gfc_namespace *old_ns = gfc_current_ns;
7088 : 1497 : char name[GFC_MAX_SYMBOL_LEN + 1];
7089 : :
7090 : 1497 : old_loc = entry_loc = gfc_current_locus;
7091 : 1497 : gfc_clear_ts (¤t_ts);
7092 : :
7093 : 1497 : if (gfc_match (" (") != MATCH_YES)
7094 : : {
7095 : 1 : gfc_current_locus = entry_loc;
7096 : 1 : return MATCH_NO;
7097 : : }
7098 : :
7099 : : /* Get the type spec. for the procedure interface. */
7100 : 1496 : old_loc = gfc_current_locus;
7101 : 1496 : m = gfc_match_decl_type_spec (¤t_ts, 0);
7102 : 1496 : gfc_gobble_whitespace ();
7103 : 1496 : if (m == MATCH_YES || (m == MATCH_NO && gfc_peek_ascii_char () == ')'))
7104 : 384 : goto got_ts;
7105 : :
7106 : 1112 : if (m == MATCH_ERROR)
7107 : : return m;
7108 : :
7109 : : /* Procedure interface is itself a procedure. */
7110 : 1112 : gfc_current_locus = old_loc;
7111 : 1112 : m = gfc_match_name (name);
7112 : :
7113 : : /* First look to see if it is already accessible in the current
7114 : : namespace because it is use associated or contained. */
7115 : 1112 : st = NULL;
7116 : 1112 : if (gfc_find_sym_tree (name, NULL, 0, &st))
7117 : : return MATCH_ERROR;
7118 : :
7119 : : /* If it is still not found, then try the parent namespace, if it
7120 : : exists and create the symbol there if it is still not found. */
7121 : 1112 : if (gfc_current_ns->parent)
7122 : 367 : gfc_current_ns = gfc_current_ns->parent;
7123 : 1112 : if (st == NULL && gfc_get_ha_sym_tree (name, &st))
7124 : : return MATCH_ERROR;
7125 : :
7126 : 1112 : gfc_current_ns = old_ns;
7127 : 1112 : *proc_if = st->n.sym;
7128 : :
7129 : 1112 : if (*proc_if)
7130 : : {
7131 : 1112 : (*proc_if)->refs++;
7132 : : /* Resolve interface if possible. That way, attr.procedure is only set
7133 : : if it is declared by a later procedure-declaration-stmt, which is
7134 : : invalid per F08:C1216 (cf. resolve_procedure_interface). */
7135 : 1112 : while ((*proc_if)->ts.interface
7136 : 1119 : && *proc_if != (*proc_if)->ts.interface)
7137 : 7 : *proc_if = (*proc_if)->ts.interface;
7138 : :
7139 : 1112 : if ((*proc_if)->attr.flavor == FL_UNKNOWN
7140 : 375 : && (*proc_if)->ts.type == BT_UNKNOWN
7141 : 1487 : && !gfc_add_flavor (&(*proc_if)->attr, FL_PROCEDURE,
7142 : : (*proc_if)->name, NULL))
7143 : : return MATCH_ERROR;
7144 : : }
7145 : :
7146 : 0 : got_ts:
7147 : 1496 : if (gfc_match (" )") != MATCH_YES)
7148 : : {
7149 : 0 : gfc_current_locus = entry_loc;
7150 : 0 : return MATCH_NO;
7151 : : }
7152 : :
7153 : : return MATCH_YES;
7154 : : }
7155 : :
7156 : :
7157 : : /* Match a PROCEDURE declaration (R1211). */
7158 : :
7159 : : static match
7160 : 1096 : match_procedure_decl (void)
7161 : : {
7162 : 1096 : match m;
7163 : 1096 : gfc_symbol *sym, *proc_if = NULL;
7164 : 1096 : int num;
7165 : 1096 : gfc_expr *initializer = NULL;
7166 : :
7167 : : /* Parse interface (with brackets). */
7168 : 1096 : m = match_procedure_interface (&proc_if);
7169 : 1096 : if (m != MATCH_YES)
7170 : : return m;
7171 : :
7172 : : /* Parse attributes (with colons). */
7173 : 1096 : m = match_attr_spec();
7174 : 1096 : if (m == MATCH_ERROR)
7175 : : return MATCH_ERROR;
7176 : :
7177 : 1095 : if (proc_if && proc_if->attr.is_bind_c && !current_attr.is_bind_c)
7178 : : {
7179 : 16 : current_attr.is_bind_c = 1;
7180 : 16 : has_name_equals = 0;
7181 : 16 : curr_binding_label = NULL;
7182 : : }
7183 : :
7184 : : /* Get procedure symbols. */
7185 : 79 : for(num=1;;num++)
7186 : : {
7187 : 1174 : m = gfc_match_symbol (&sym, 0);
7188 : 1174 : if (m == MATCH_NO)
7189 : 1 : goto syntax;
7190 : 1173 : else if (m == MATCH_ERROR)
7191 : : return m;
7192 : :
7193 : : /* Add current_attr to the symbol attributes. */
7194 : 1173 : if (!gfc_copy_attr (&sym->attr, ¤t_attr, NULL))
7195 : : return MATCH_ERROR;
7196 : :
7197 : 1171 : if (sym->attr.is_bind_c)
7198 : : {
7199 : : /* Check for C1218. */
7200 : 52 : if (!proc_if || !proc_if->attr.is_bind_c)
7201 : : {
7202 : 1 : gfc_error ("BIND(C) attribute at %C requires "
7203 : : "an interface with BIND(C)");
7204 : 1 : return MATCH_ERROR;
7205 : : }
7206 : : /* Check for C1217. */
7207 : 51 : if (has_name_equals && sym->attr.pointer)
7208 : : {
7209 : 1 : gfc_error ("BIND(C) procedure with NAME may not have "
7210 : : "POINTER attribute at %C");
7211 : 1 : return MATCH_ERROR;
7212 : : }
7213 : 50 : if (has_name_equals && sym->attr.dummy)
7214 : : {
7215 : 1 : gfc_error ("Dummy procedure at %C may not have "
7216 : : "BIND(C) attribute with NAME");
7217 : 1 : return MATCH_ERROR;
7218 : : }
7219 : : /* Set binding label for BIND(C). */
7220 : 49 : if (!set_binding_label (&sym->binding_label, sym->name, num))
7221 : : return MATCH_ERROR;
7222 : : }
7223 : :
7224 : 1167 : if (!gfc_add_external (&sym->attr, NULL))
7225 : : return MATCH_ERROR;
7226 : :
7227 : 1163 : if (add_hidden_procptr_result (sym))
7228 : 66 : sym = sym->result;
7229 : :
7230 : 1163 : if (!gfc_add_proc (&sym->attr, sym->name, NULL))
7231 : : return MATCH_ERROR;
7232 : :
7233 : : /* Set interface. */
7234 : 1162 : if (proc_if != NULL)
7235 : : {
7236 : 823 : if (sym->ts.type != BT_UNKNOWN)
7237 : : {
7238 : 1 : gfc_error ("Procedure %qs at %L already has basic type of %s",
7239 : : sym->name, &gfc_current_locus,
7240 : : gfc_basic_typename (sym->ts.type));
7241 : 1 : return MATCH_ERROR;
7242 : : }
7243 : 822 : sym->ts.interface = proc_if;
7244 : 822 : sym->attr.untyped = 1;
7245 : 822 : sym->attr.if_source = IFSRC_IFBODY;
7246 : : }
7247 : 339 : else if (current_ts.type != BT_UNKNOWN)
7248 : : {
7249 : 199 : if (!gfc_add_type (sym, ¤t_ts, &gfc_current_locus))
7250 : : return MATCH_ERROR;
7251 : 198 : sym->ts.interface = gfc_new_symbol ("", gfc_current_ns);
7252 : 198 : sym->ts.interface->ts = current_ts;
7253 : 198 : sym->ts.interface->attr.flavor = FL_PROCEDURE;
7254 : 198 : sym->ts.interface->attr.function = 1;
7255 : 198 : sym->attr.function = 1;
7256 : 198 : sym->attr.if_source = IFSRC_UNKNOWN;
7257 : : }
7258 : :
7259 : 1160 : if (gfc_match (" =>") == MATCH_YES)
7260 : : {
7261 : 85 : if (!current_attr.pointer)
7262 : : {
7263 : 0 : gfc_error ("Initialization at %C isn't for a pointer variable");
7264 : 0 : m = MATCH_ERROR;
7265 : 0 : goto cleanup;
7266 : : }
7267 : :
7268 : 85 : m = match_pointer_init (&initializer, 1);
7269 : 85 : if (m != MATCH_YES)
7270 : 1 : goto cleanup;
7271 : :
7272 : 84 : if (!add_init_expr_to_sym (sym->name, &initializer, &gfc_current_locus))
7273 : 0 : goto cleanup;
7274 : :
7275 : : }
7276 : :
7277 : 1159 : if (gfc_match_eos () == MATCH_YES)
7278 : : return MATCH_YES;
7279 : 79 : if (gfc_match_char (',') != MATCH_YES)
7280 : 0 : goto syntax;
7281 : : }
7282 : :
7283 : 1 : syntax:
7284 : 1 : gfc_error ("Syntax error in PROCEDURE statement at %C");
7285 : 1 : return MATCH_ERROR;
7286 : :
7287 : 1 : cleanup:
7288 : : /* Free stuff up and return. */
7289 : 1 : gfc_free_expr (initializer);
7290 : 1 : return m;
7291 : : }
7292 : :
7293 : :
7294 : : static match
7295 : : match_binding_attributes (gfc_typebound_proc* ba, bool generic, bool ppc);
7296 : :
7297 : :
7298 : : /* Match a procedure pointer component declaration (R445). */
7299 : :
7300 : : static match
7301 : 401 : match_ppc_decl (void)
7302 : : {
7303 : 401 : match m;
7304 : 401 : gfc_symbol *proc_if = NULL;
7305 : 401 : gfc_typespec ts;
7306 : 401 : int num;
7307 : 401 : gfc_component *c;
7308 : 401 : gfc_expr *initializer = NULL;
7309 : 401 : gfc_typebound_proc* tb;
7310 : 401 : char name[GFC_MAX_SYMBOL_LEN + 1];
7311 : :
7312 : : /* Parse interface (with brackets). */
7313 : 401 : m = match_procedure_interface (&proc_if);
7314 : 401 : if (m != MATCH_YES)
7315 : 1 : goto syntax;
7316 : :
7317 : : /* Parse attributes. */
7318 : 400 : tb = XCNEW (gfc_typebound_proc);
7319 : 400 : tb->where = gfc_current_locus;
7320 : 400 : m = match_binding_attributes (tb, false, true);
7321 : 400 : if (m == MATCH_ERROR)
7322 : : return m;
7323 : :
7324 : 397 : gfc_clear_attr (¤t_attr);
7325 : 397 : current_attr.procedure = 1;
7326 : 397 : current_attr.proc_pointer = 1;
7327 : 397 : current_attr.access = tb->access;
7328 : 397 : current_attr.flavor = FL_PROCEDURE;
7329 : :
7330 : : /* Match the colons (required). */
7331 : 397 : if (gfc_match (" ::") != MATCH_YES)
7332 : : {
7333 : 1 : gfc_error ("Expected %<::%> after binding-attributes at %C");
7334 : 1 : return MATCH_ERROR;
7335 : : }
7336 : :
7337 : : /* Check for C450. */
7338 : 396 : if (!tb->nopass && proc_if == NULL)
7339 : : {
7340 : 2 : gfc_error("NOPASS or explicit interface required at %C");
7341 : 2 : return MATCH_ERROR;
7342 : : }
7343 : :
7344 : 394 : if (!gfc_notify_std (GFC_STD_F2003, "Procedure pointer component at %C"))
7345 : : return MATCH_ERROR;
7346 : :
7347 : : /* Match PPC names. */
7348 : 393 : ts = current_ts;
7349 : 393 : for(num=1;;num++)
7350 : : {
7351 : 394 : m = gfc_match_name (name);
7352 : 394 : if (m == MATCH_NO)
7353 : 0 : goto syntax;
7354 : 394 : else if (m == MATCH_ERROR)
7355 : : return m;
7356 : :
7357 : 394 : if (!gfc_add_component (gfc_current_block(), name, &c))
7358 : : return MATCH_ERROR;
7359 : :
7360 : : /* Add current_attr to the symbol attributes. */
7361 : 394 : if (!gfc_copy_attr (&c->attr, ¤t_attr, NULL))
7362 : : return MATCH_ERROR;
7363 : :
7364 : 394 : if (!gfc_add_external (&c->attr, NULL))
7365 : : return MATCH_ERROR;
7366 : :
7367 : 394 : if (!gfc_add_proc (&c->attr, name, NULL))
7368 : : return MATCH_ERROR;
7369 : :
7370 : 394 : if (num == 1)
7371 : 393 : c->tb = tb;
7372 : : else
7373 : : {
7374 : 1 : c->tb = XCNEW (gfc_typebound_proc);
7375 : 1 : c->tb->where = gfc_current_locus;
7376 : 1 : *c->tb = *tb;
7377 : : }
7378 : :
7379 : : /* Set interface. */
7380 : 394 : if (proc_if != NULL)
7381 : : {
7382 : 334 : c->ts.interface = proc_if;
7383 : 334 : c->attr.untyped = 1;
7384 : 334 : c->attr.if_source = IFSRC_IFBODY;
7385 : : }
7386 : 60 : else if (ts.type != BT_UNKNOWN)
7387 : : {
7388 : 23 : c->ts = ts;
7389 : 23 : c->ts.interface = gfc_new_symbol ("", gfc_current_ns);
7390 : 23 : c->ts.interface->result = c->ts.interface;
7391 : 23 : c->ts.interface->ts = ts;
7392 : 23 : c->ts.interface->attr.flavor = FL_PROCEDURE;
7393 : 23 : c->ts.interface->attr.function = 1;
7394 : 23 : c->attr.function = 1;
7395 : 23 : c->attr.if_source = IFSRC_UNKNOWN;
7396 : : }
7397 : :
7398 : 394 : if (gfc_match (" =>") == MATCH_YES)
7399 : : {
7400 : 60 : m = match_pointer_init (&initializer, 1);
7401 : 60 : if (m != MATCH_YES)
7402 : : {
7403 : 0 : gfc_free_expr (initializer);
7404 : 0 : return m;
7405 : : }
7406 : 60 : c->initializer = initializer;
7407 : : }
7408 : :
7409 : 394 : if (gfc_match_eos () == MATCH_YES)
7410 : : return MATCH_YES;
7411 : 1 : if (gfc_match_char (',') != MATCH_YES)
7412 : 0 : goto syntax;
7413 : : }
7414 : :
7415 : 1 : syntax:
7416 : 1 : gfc_error ("Syntax error in procedure pointer component at %C");
7417 : 1 : return MATCH_ERROR;
7418 : : }
7419 : :
7420 : :
7421 : : /* Match a PROCEDURE declaration inside an interface (R1206). */
7422 : :
7423 : : static match
7424 : 1534 : match_procedure_in_interface (void)
7425 : : {
7426 : 1534 : match m;
7427 : 1534 : gfc_symbol *sym;
7428 : 1534 : char name[GFC_MAX_SYMBOL_LEN + 1];
7429 : 1534 : locus old_locus;
7430 : :
7431 : 1534 : if (current_interface.type == INTERFACE_NAMELESS
7432 : 1534 : || current_interface.type == INTERFACE_ABSTRACT)
7433 : : {
7434 : 1 : gfc_error ("PROCEDURE at %C must be in a generic interface");
7435 : 1 : return MATCH_ERROR;
7436 : : }
7437 : :
7438 : : /* Check if the F2008 optional double colon appears. */
7439 : 1533 : gfc_gobble_whitespace ();
7440 : 1533 : old_locus = gfc_current_locus;
7441 : 1533 : if (gfc_match ("::") == MATCH_YES)
7442 : : {
7443 : 848 : if (!gfc_notify_std (GFC_STD_F2008, "double colon in "
7444 : : "MODULE PROCEDURE statement at %L", &old_locus))
7445 : : return MATCH_ERROR;
7446 : : }
7447 : : else
7448 : 685 : gfc_current_locus = old_locus;
7449 : :
7450 : 2187 : for(;;)
7451 : : {
7452 : 2187 : m = gfc_match_name (name);
7453 : 2187 : if (m == MATCH_NO)
7454 : 0 : goto syntax;
7455 : 2187 : else if (m == MATCH_ERROR)
7456 : : return m;
7457 : 2187 : if (gfc_get_symbol (name, gfc_current_ns->parent, &sym))
7458 : : return MATCH_ERROR;
7459 : :
7460 : 2187 : if (!gfc_add_interface (sym))
7461 : : return MATCH_ERROR;
7462 : :
7463 : 2186 : if (gfc_match_eos () == MATCH_YES)
7464 : : break;
7465 : 655 : if (gfc_match_char (',') != MATCH_YES)
7466 : 0 : goto syntax;
7467 : : }
7468 : :
7469 : : return MATCH_YES;
7470 : :
7471 : 0 : syntax:
7472 : 0 : gfc_error ("Syntax error in PROCEDURE statement at %C");
7473 : 0 : return MATCH_ERROR;
7474 : : }
7475 : :
7476 : :
7477 : : /* General matcher for PROCEDURE declarations. */
7478 : :
7479 : : static match match_procedure_in_type (void);
7480 : :
7481 : : match
7482 : 6069 : gfc_match_procedure (void)
7483 : : {
7484 : 6069 : match m;
7485 : :
7486 : 6069 : switch (gfc_current_state ())
7487 : : {
7488 : 1096 : case COMP_NONE:
7489 : 1096 : case COMP_PROGRAM:
7490 : 1096 : case COMP_MODULE:
7491 : 1096 : case COMP_SUBMODULE:
7492 : 1096 : case COMP_SUBROUTINE:
7493 : 1096 : case COMP_FUNCTION:
7494 : 1096 : case COMP_BLOCK:
7495 : 1096 : m = match_procedure_decl ();
7496 : 1096 : break;
7497 : 1534 : case COMP_INTERFACE:
7498 : 1534 : m = match_procedure_in_interface ();
7499 : 1534 : break;
7500 : 401 : case COMP_DERIVED:
7501 : 401 : m = match_ppc_decl ();
7502 : 401 : break;
7503 : 3038 : case COMP_DERIVED_CONTAINS:
7504 : 3038 : m = match_procedure_in_type ();
7505 : 3038 : break;
7506 : : default:
7507 : : return MATCH_NO;
7508 : : }
7509 : :
7510 : 6069 : if (m != MATCH_YES)
7511 : : return m;
7512 : :
7513 : 6013 : if (!gfc_notify_std (GFC_STD_F2003, "PROCEDURE statement at %C"))
7514 : 4 : return MATCH_ERROR;
7515 : :
7516 : : return m;
7517 : : }
7518 : :
7519 : :
7520 : : /* Warn if a matched procedure has the same name as an intrinsic; this is
7521 : : simply a wrapper around gfc_warn_intrinsic_shadow that interprets the current
7522 : : parser-state-stack to find out whether we're in a module. */
7523 : :
7524 : : static void
7525 : 58302 : do_warn_intrinsic_shadow (const gfc_symbol* sym, bool func)
7526 : : {
7527 : 58302 : bool in_module;
7528 : :
7529 : 116604 : in_module = (gfc_state_stack->previous
7530 : 58302 : && (gfc_state_stack->previous->state == COMP_MODULE
7531 : 47122 : || gfc_state_stack->previous->state == COMP_SUBMODULE));
7532 : :
7533 : 58302 : gfc_warn_intrinsic_shadow (sym, in_module, func);
7534 : 58302 : }
7535 : :
7536 : :
7537 : : /* Match a function declaration. */
7538 : :
7539 : : match
7540 : 119595 : gfc_match_function_decl (void)
7541 : : {
7542 : 119595 : char name[GFC_MAX_SYMBOL_LEN + 1];
7543 : 119595 : gfc_symbol *sym, *result;
7544 : 119595 : locus old_loc;
7545 : 119595 : match m;
7546 : 119595 : match suffix_match;
7547 : 119595 : match found_match; /* Status returned by match func. */
7548 : :
7549 : 119595 : if (gfc_current_state () != COMP_NONE
7550 : 74052 : && gfc_current_state () != COMP_INTERFACE
7551 : 48838 : && gfc_current_state () != COMP_CONTAINS)
7552 : : return MATCH_NO;
7553 : :
7554 : 119595 : gfc_clear_ts (¤t_ts);
7555 : :
7556 : 119595 : old_loc = gfc_current_locus;
7557 : :
7558 : 119595 : m = gfc_match_prefix (¤t_ts);
7559 : 119595 : if (m != MATCH_YES)
7560 : : {
7561 : 9203 : gfc_current_locus = old_loc;
7562 : 9203 : return m;
7563 : : }
7564 : :
7565 : 110392 : if (gfc_match ("function% %n", name) != MATCH_YES)
7566 : : {
7567 : 92157 : gfc_current_locus = old_loc;
7568 : 92157 : return MATCH_NO;
7569 : : }
7570 : :
7571 : 18235 : if (get_proc_name (name, &sym, false))
7572 : : return MATCH_ERROR;
7573 : :
7574 : 18230 : if (add_hidden_procptr_result (sym))
7575 : 20 : sym = sym->result;
7576 : :
7577 : 18230 : if (current_attr.module_procedure)
7578 : 194 : sym->attr.module_procedure = 1;
7579 : :
7580 : 18230 : gfc_new_block = sym;
7581 : :
7582 : 18230 : m = gfc_match_formal_arglist (sym, 0, 0);
7583 : 18230 : if (m == MATCH_NO)
7584 : : {
7585 : 6 : gfc_error ("Expected formal argument list in function "
7586 : : "definition at %C");
7587 : 6 : m = MATCH_ERROR;
7588 : 6 : goto cleanup;
7589 : : }
7590 : 18224 : else if (m == MATCH_ERROR)
7591 : 0 : goto cleanup;
7592 : :
7593 : 18224 : result = NULL;
7594 : :
7595 : : /* According to the draft, the bind(c) and result clause can
7596 : : come in either order after the formal_arg_list (i.e., either
7597 : : can be first, both can exist together or by themselves or neither
7598 : : one). Therefore, the match_result can't match the end of the
7599 : : string, and check for the bind(c) or result clause in either order. */
7600 : 18224 : found_match = gfc_match_eos ();
7601 : :
7602 : : /* Make sure that it isn't already declared as BIND(C). If it is, it
7603 : : must have been marked BIND(C) with a BIND(C) attribute and that is
7604 : : not allowed for procedures. */
7605 : 18224 : if (sym->attr.is_bind_c == 1)
7606 : : {
7607 : 3 : sym->attr.is_bind_c = 0;
7608 : :
7609 : 3 : if (gfc_state_stack->previous
7610 : 3 : && gfc_state_stack->previous->state != COMP_SUBMODULE)
7611 : : {
7612 : 1 : locus loc;
7613 : 1 : loc = sym->old_symbol != NULL
7614 : 1 : ? sym->old_symbol->declared_at : gfc_current_locus;
7615 : 1 : gfc_error_now ("BIND(C) attribute at %L can only be used for "
7616 : : "variables or common blocks", &loc);
7617 : : }
7618 : : }
7619 : :
7620 : 18224 : if (found_match != MATCH_YES)
7621 : : {
7622 : : /* If we haven't found the end-of-statement, look for a suffix. */
7623 : 7268 : suffix_match = gfc_match_suffix (sym, &result);
7624 : 7268 : if (suffix_match == MATCH_YES)
7625 : : /* Need to get the eos now. */
7626 : 7260 : found_match = gfc_match_eos ();
7627 : : else
7628 : : found_match = suffix_match;
7629 : : }
7630 : :
7631 : : /* F2018 C1550 (R1526) If MODULE appears in the prefix of a module
7632 : : subprogram and a binding label is specified, it shall be the
7633 : : same as the binding label specified in the corresponding module
7634 : : procedure interface body. */
7635 : 18224 : if (sym->attr.is_bind_c && sym->attr.module_procedure && sym->old_symbol
7636 : 3 : && strcmp (sym->name, sym->old_symbol->name) == 0
7637 : 3 : && sym->binding_label && sym->old_symbol->binding_label
7638 : 2 : && strcmp (sym->binding_label, sym->old_symbol->binding_label) != 0)
7639 : : {
7640 : 1 : const char *null = "NULL", *s1, *s2;
7641 : 1 : s1 = sym->binding_label;
7642 : 1 : if (!s1) s1 = null;
7643 : 1 : s2 = sym->old_symbol->binding_label;
7644 : 1 : if (!s2) s2 = null;
7645 : 1 : gfc_error ("Mismatch in BIND(C) names (%qs/%qs) at %C", s1, s2);
7646 : 1 : sym->refs++; /* Needed to avoid an ICE in gfc_release_symbol */
7647 : 1 : return MATCH_ERROR;
7648 : : }
7649 : :
7650 : 18223 : if(found_match != MATCH_YES)
7651 : : m = MATCH_ERROR;
7652 : : else
7653 : : {
7654 : : /* Make changes to the symbol. */
7655 : 18215 : m = MATCH_ERROR;
7656 : :
7657 : 18215 : if (!gfc_add_function (&sym->attr, sym->name, NULL))
7658 : 0 : goto cleanup;
7659 : :
7660 : 18215 : if (!gfc_missing_attr (&sym->attr, NULL))
7661 : 0 : goto cleanup;
7662 : :
7663 : 18215 : if (!copy_prefix (&sym->attr, &sym->declared_at))
7664 : : {
7665 : 1 : if(!sym->attr.module_procedure)
7666 : 1 : goto cleanup;
7667 : : else
7668 : 0 : gfc_error_check ();
7669 : : }
7670 : :
7671 : : /* Delay matching the function characteristics until after the
7672 : : specification block by signalling kind=-1. */
7673 : 18214 : sym->declared_at = old_loc;
7674 : 18214 : if (current_ts.type != BT_UNKNOWN)
7675 : 6595 : current_ts.kind = -1;
7676 : : else
7677 : 11619 : current_ts.kind = 0;
7678 : :
7679 : 18214 : if (result == NULL)
7680 : : {
7681 : 12862 : if (current_ts.type != BT_UNKNOWN
7682 : 12862 : && !gfc_add_type (sym, ¤t_ts, &gfc_current_locus))
7683 : 1 : goto cleanup;
7684 : 12861 : sym->result = sym;
7685 : : }
7686 : : else
7687 : : {
7688 : 5352 : if (current_ts.type != BT_UNKNOWN
7689 : 5352 : && !gfc_add_type (result, ¤t_ts, &gfc_current_locus))
7690 : 0 : goto cleanup;
7691 : 5352 : sym->result = result;
7692 : : }
7693 : :
7694 : : /* Warn if this procedure has the same name as an intrinsic. */
7695 : 18213 : do_warn_intrinsic_shadow (sym, true);
7696 : :
7697 : 18213 : return MATCH_YES;
7698 : : }
7699 : :
7700 : 16 : cleanup:
7701 : 16 : gfc_current_locus = old_loc;
7702 : 16 : return m;
7703 : : }
7704 : :
7705 : :
7706 : : /* This is mostly a copy of parse.cc(add_global_procedure) but modified to
7707 : : pass the name of the entry, rather than the gfc_current_block name, and
7708 : : to return false upon finding an existing global entry. */
7709 : :
7710 : : static bool
7711 : 504 : add_global_entry (const char *name, const char *binding_label, bool sub,
7712 : : locus *where)
7713 : : {
7714 : 504 : gfc_gsymbol *s;
7715 : 504 : enum gfc_symbol_type type;
7716 : :
7717 : 504 : type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;
7718 : :
7719 : : /* Only in Fortran 2003: For procedures with a binding label also the Fortran
7720 : : name is a global identifier. */
7721 : 504 : if (!binding_label || gfc_notification_std (GFC_STD_F2008))
7722 : : {
7723 : 499 : s = gfc_get_gsymbol (name, false);
7724 : :
7725 : 499 : if (s->defined || (s->type != GSYM_UNKNOWN && s->type != type))
7726 : : {
7727 : 2 : gfc_global_used (s, where);
7728 : 2 : return false;
7729 : : }
7730 : : else
7731 : : {
7732 : 497 : s->type = type;
7733 : 497 : s->sym_name = name;
7734 : 497 : s->where = *where;
7735 : 497 : s->defined = 1;
7736 : 497 : s->ns = gfc_current_ns;
7737 : : }
7738 : : }
7739 : :
7740 : : /* Don't add the symbol multiple times. */
7741 : 502 : if (binding_label
7742 : 502 : && (!gfc_notification_std (GFC_STD_F2008)
7743 : 0 : || strcmp (name, binding_label) != 0))
7744 : : {
7745 : 5 : s = gfc_get_gsymbol (binding_label, true);
7746 : :
7747 : 5 : if (s->defined || (s->type != GSYM_UNKNOWN && s->type != type))
7748 : : {
7749 : 1 : gfc_global_used (s, where);
7750 : 1 : return false;
7751 : : }
7752 : : else
7753 : : {
7754 : 4 : s->type = type;
7755 : 4 : s->sym_name = name;
7756 : 4 : s->binding_label = binding_label;
7757 : 4 : s->where = *where;
7758 : 4 : s->defined = 1;
7759 : 4 : s->ns = gfc_current_ns;
7760 : : }
7761 : : }
7762 : :
7763 : : return true;
7764 : : }
7765 : :
7766 : :
7767 : : /* Match an ENTRY statement. */
7768 : :
7769 : : match
7770 : 769 : gfc_match_entry (void)
7771 : : {
7772 : 769 : gfc_symbol *proc;
7773 : 769 : gfc_symbol *result;
7774 : 769 : gfc_symbol *entry;
7775 : 769 : char name[GFC_MAX_SYMBOL_LEN + 1];
7776 : 769 : gfc_compile_state state;
7777 : 769 : match m;
7778 : 769 : gfc_entry_list *el;
7779 : 769 : locus old_loc;
7780 : 769 : bool module_procedure;
7781 : 769 : char peek_char;
7782 : 769 : match is_bind_c;
7783 : :
7784 : 769 : m = gfc_match_name (name);
7785 : 769 : if (m != MATCH_YES)
7786 : : return m;
7787 : :
7788 : 769 : if (!gfc_notify_std (GFC_STD_F2008_OBS, "ENTRY statement at %C"))
7789 : : return MATCH_ERROR;
7790 : :
7791 : 769 : state = gfc_current_state ();
7792 : 769 : if (state != COMP_SUBROUTINE && state != COMP_FUNCTION)
7793 : : {
7794 : 3 : switch (state)
7795 : : {
7796 : 0 : case COMP_PROGRAM:
7797 : 0 : gfc_error ("ENTRY statement at %C cannot appear within a PROGRAM");
7798 : 0 : break;
7799 : 0 : case COMP_MODULE:
7800 : 0 : gfc_error ("ENTRY statement at %C cannot appear within a MODULE");
7801 : 0 : break;
7802 : 0 : case COMP_SUBMODULE:
7803 : 0 : gfc_error ("ENTRY statement at %C cannot appear within a SUBMODULE");
7804 : 0 : break;
7805 : 0 : case COMP_BLOCK_DATA:
7806 : 0 : gfc_error ("ENTRY statement at %C cannot appear within "
7807 : : "a BLOCK DATA");
7808 : 0 : break;
7809 : 0 : case COMP_INTERFACE:
7810 : 0 : gfc_error ("ENTRY statement at %C cannot appear within "
7811 : : "an INTERFACE");
7812 : 0 : break;
7813 : 1 : case COMP_STRUCTURE:
7814 : 1 : gfc_error ("ENTRY statement at %C cannot appear within "
7815 : : "a STRUCTURE block");
7816 : 1 : break;
7817 : 0 : case COMP_DERIVED:
7818 : 0 : gfc_error ("ENTRY statement at %C cannot appear within "
7819 : : "a DERIVED TYPE block");
7820 : 0 : break;
7821 : 0 : case COMP_IF:
7822 : 0 : gfc_error ("ENTRY statement at %C cannot appear within "
7823 : : "an IF-THEN block");
7824 : 0 : break;
7825 : 0 : case COMP_DO:
7826 : 0 : case COMP_DO_CONCURRENT:
7827 : 0 : gfc_error ("ENTRY statement at %C cannot appear within "
7828 : : "a DO block");
7829 : 0 : break;
7830 : 0 : case COMP_SELECT:
7831 : 0 : gfc_error ("ENTRY statement at %C cannot appear within "
7832 : : "a SELECT block");
7833 : 0 : break;
7834 : 0 : case COMP_FORALL:
7835 : 0 : gfc_error ("ENTRY statement at %C cannot appear within "
7836 : : "a FORALL block");
7837 : 0 : break;
7838 : 0 : case COMP_WHERE:
7839 : 0 : gfc_error ("ENTRY statement at %C cannot appear within "
7840 : : "a WHERE block");
7841 : 0 : break;
7842 : 0 : case COMP_CONTAINS:
7843 : 0 : gfc_error ("ENTRY statement at %C cannot appear within "
7844 : : "a contained subprogram");
7845 : 0 : break;
7846 : 2 : default:
7847 : 2 : gfc_error ("Unexpected ENTRY statement at %C");
7848 : : }
7849 : 3 : return MATCH_ERROR;
7850 : : }
7851 : :
7852 : 766 : if ((state == COMP_SUBROUTINE || state == COMP_FUNCTION)
7853 : 766 : && gfc_state_stack->previous->state == COMP_INTERFACE)
7854 : : {
7855 : 1 : gfc_error ("ENTRY statement at %C cannot appear within an INTERFACE");
7856 : 1 : return MATCH_ERROR;
7857 : : }
7858 : :
7859 : 1530 : module_procedure = gfc_current_ns->parent != NULL
7860 : 259 : && gfc_current_ns->parent->proc_name
7861 : 765 : && gfc_current_ns->parent->proc_name->attr.flavor
7862 : 259 : == FL_MODULE;
7863 : :
7864 : 765 : if (gfc_current_ns->parent != NULL
7865 : 259 : && gfc_current_ns->parent->proc_name
7866 : 259 : && !module_procedure)
7867 : : {
7868 : 0 : gfc_error("ENTRY statement at %C cannot appear in a "
7869 : : "contained procedure");
7870 : 0 : return MATCH_ERROR;
7871 : : }
7872 : :
7873 : : /* Module function entries need special care in get_proc_name
7874 : : because previous references within the function will have
7875 : : created symbols attached to the current namespace. */
7876 : 765 : if (get_proc_name (name, &entry,
7877 : : gfc_current_ns->parent != NULL
7878 : 765 : && module_procedure))
7879 : : return MATCH_ERROR;
7880 : :
7881 : 763 : proc = gfc_current_block ();
7882 : :
7883 : : /* Make sure that it isn't already declared as BIND(C). If it is, it
7884 : : must have been marked BIND(C) with a BIND(C) attribute and that is
7885 : : not allowed for procedures. */
7886 : 763 : if (entry->attr.is_bind_c == 1)
7887 : : {
7888 : 0 : locus loc;
7889 : :
7890 : 0 : entry->attr.is_bind_c = 0;
7891 : :
7892 : 0 : loc = entry->old_symbol != NULL
7893 : 0 : ? entry->old_symbol->declared_at : gfc_current_locus;
7894 : 0 : gfc_error_now ("BIND(C) attribute at %L can only be used for "
7895 : : "variables or common blocks", &loc);
7896 : : }
7897 : :
7898 : : /* Check what next non-whitespace character is so we can tell if there
7899 : : is the required parens if we have a BIND(C). */
7900 : 763 : old_loc = gfc_current_locus;
7901 : 763 : gfc_gobble_whitespace ();
7902 : 763 : peek_char = gfc_peek_ascii_char ();
7903 : :
7904 : 763 : if (state == COMP_SUBROUTINE)
7905 : : {
7906 : 134 : m = gfc_match_formal_arglist (entry, 0, 1);
7907 : 134 : if (m != MATCH_YES)
7908 : : return MATCH_ERROR;
7909 : :
7910 : : /* Call gfc_match_bind_c with allow_binding_name = true as ENTRY can
7911 : : never be an internal procedure. */
7912 : 134 : is_bind_c = gfc_match_bind_c (entry, true);
7913 : 134 : if (is_bind_c == MATCH_ERROR)
7914 : : return MATCH_ERROR;
7915 : 134 : if (is_bind_c == MATCH_YES)
7916 : : {
7917 : 22 : if (peek_char != '(')
7918 : : {
7919 : 0 : gfc_error ("Missing required parentheses before BIND(C) at %C");
7920 : 0 : return MATCH_ERROR;
7921 : : }
7922 : :
7923 : 22 : if (!gfc_add_is_bind_c (&(entry->attr), entry->name,
7924 : 22 : &(entry->declared_at), 1))
7925 : : return MATCH_ERROR;
7926 : :
7927 : : }
7928 : :
7929 : 134 : if (!gfc_current_ns->parent
7930 : 134 : && !add_global_entry (name, entry->binding_label, true,
7931 : : &old_loc))
7932 : : return MATCH_ERROR;
7933 : :
7934 : : /* An entry in a subroutine. */
7935 : 131 : if (!gfc_add_entry (&entry->attr, entry->name, NULL)
7936 : 131 : || !gfc_add_subroutine (&entry->attr, entry->name, NULL))
7937 : 3 : return MATCH_ERROR;
7938 : : }
7939 : : else
7940 : : {
7941 : : /* An entry in a function.
7942 : : We need to take special care because writing
7943 : : ENTRY f()
7944 : : as
7945 : : ENTRY f
7946 : : is allowed, whereas
7947 : : ENTRY f() RESULT (r)
7948 : : can't be written as
7949 : : ENTRY f RESULT (r). */
7950 : 629 : if (gfc_match_eos () == MATCH_YES)
7951 : : {
7952 : 24 : gfc_current_locus = old_loc;
7953 : : /* Match the empty argument list, and add the interface to
7954 : : the symbol. */
7955 : 24 : m = gfc_match_formal_arglist (entry, 0, 1);
7956 : : }
7957 : : else
7958 : 605 : m = gfc_match_formal_arglist (entry, 0, 0);
7959 : :
7960 : 629 : if (m != MATCH_YES)
7961 : : return MATCH_ERROR;
7962 : :
7963 : 628 : result = NULL;
7964 : :
7965 : 628 : if (gfc_match_eos () == MATCH_YES)
7966 : : {
7967 : 397 : if (!gfc_add_entry (&entry->attr, entry->name, NULL)
7968 : 397 : || !gfc_add_function (&entry->attr, entry->name, NULL))
7969 : 2 : return MATCH_ERROR;
7970 : :
7971 : 395 : entry->result = entry;
7972 : : }
7973 : : else
7974 : : {
7975 : 231 : m = gfc_match_suffix (entry, &result);
7976 : 231 : if (m == MATCH_NO)
7977 : 0 : gfc_syntax_error (ST_ENTRY);
7978 : 231 : if (m != MATCH_YES)
7979 : : return MATCH_ERROR;
7980 : :
7981 : 231 : if (result)
7982 : : {
7983 : 212 : if (!gfc_add_result (&result->attr, result->name, NULL)
7984 : 212 : || !gfc_add_entry (&entry->attr, result->name, NULL)
7985 : 424 : || !gfc_add_function (&entry->attr, result->name, NULL))
7986 : 0 : return MATCH_ERROR;
7987 : 212 : entry->result = result;
7988 : : }
7989 : : else
7990 : : {
7991 : 19 : if (!gfc_add_entry (&entry->attr, entry->name, NULL)
7992 : 19 : || !gfc_add_function (&entry->attr, entry->name, NULL))
7993 : 0 : return MATCH_ERROR;
7994 : 19 : entry->result = entry;
7995 : : }
7996 : : }
7997 : :
7998 : 626 : if (!gfc_current_ns->parent
7999 : 626 : && !add_global_entry (name, entry->binding_label, false,
8000 : : &old_loc))
8001 : : return MATCH_ERROR;
8002 : : }
8003 : :
8004 : 754 : if (gfc_match_eos () != MATCH_YES)
8005 : : {
8006 : 0 : gfc_syntax_error (ST_ENTRY);
8007 : 0 : return MATCH_ERROR;
8008 : : }
8009 : :
8010 : : /* F2018:C1546 An elemental procedure shall not have the BIND attribute. */
8011 : 754 : if (proc->attr.elemental && entry->attr.is_bind_c)
8012 : : {
8013 : 2 : gfc_error ("ENTRY statement at %L with BIND(C) prohibited in an "
8014 : : "elemental procedure", &entry->declared_at);
8015 : 2 : return MATCH_ERROR;
8016 : : }
8017 : :
8018 : 752 : entry->attr.recursive = proc->attr.recursive;
8019 : 752 : entry->attr.elemental = proc->attr.elemental;
8020 : 752 : entry->attr.pure = proc->attr.pure;
8021 : :
8022 : 752 : el = gfc_get_entry_list ();
8023 : 752 : el->sym = entry;
8024 : 752 : el->next = gfc_current_ns->entries;
8025 : 752 : gfc_current_ns->entries = el;
8026 : 752 : if (el->next)
8027 : 84 : el->id = el->next->id + 1;
8028 : : else
8029 : 668 : el->id = 1;
8030 : :
8031 : 752 : new_st.op = EXEC_ENTRY;
8032 : 752 : new_st.ext.entry = el;
8033 : :
8034 : 752 : return MATCH_YES;
8035 : : }
8036 : :
8037 : :
8038 : : /* Match a subroutine statement, including optional prefixes. */
8039 : :
8040 : : match
8041 : 741676 : gfc_match_subroutine (void)
8042 : : {
8043 : 741676 : char name[GFC_MAX_SYMBOL_LEN + 1];
8044 : 741676 : gfc_symbol *sym;
8045 : 741676 : match m;
8046 : 741676 : match is_bind_c;
8047 : 741676 : char peek_char;
8048 : 741676 : bool allow_binding_name;
8049 : 741676 : locus loc;
8050 : :
8051 : 741676 : if (gfc_current_state () != COMP_NONE
8052 : 701890 : && gfc_current_state () != COMP_INTERFACE
8053 : 682243 : && gfc_current_state () != COMP_CONTAINS)
8054 : : return MATCH_NO;
8055 : :
8056 : 98446 : m = gfc_match_prefix (NULL);
8057 : 98446 : if (m != MATCH_YES)
8058 : : return m;
8059 : :
8060 : 89253 : loc = gfc_current_locus;
8061 : 89253 : m = gfc_match ("subroutine% %n", name);
8062 : 89253 : if (m != MATCH_YES)
8063 : : return m;
8064 : :
8065 : 40125 : if (get_proc_name (name, &sym, false))
8066 : : return MATCH_ERROR;
8067 : :
8068 : : /* Set declared_at as it might point to, e.g., a PUBLIC statement, if
8069 : : the symbol existed before. */
8070 : 40114 : sym->declared_at = gfc_get_location_range (NULL, 0, &loc, 1,
8071 : : &gfc_current_locus);
8072 : :
8073 : 40114 : if (current_attr.module_procedure)
8074 : 354 : sym->attr.module_procedure = 1;
8075 : :
8076 : 40114 : if (add_hidden_procptr_result (sym))
8077 : 9 : sym = sym->result;
8078 : :
8079 : 40114 : gfc_new_block = sym;
8080 : :
8081 : : /* Check what next non-whitespace character is so we can tell if there
8082 : : is the required parens if we have a BIND(C). */
8083 : 40114 : gfc_gobble_whitespace ();
8084 : 40114 : peek_char = gfc_peek_ascii_char ();
8085 : :
8086 : 40114 : if (!gfc_add_subroutine (&sym->attr, sym->name, NULL))
8087 : : return MATCH_ERROR;
8088 : :
8089 : 40111 : if (gfc_match_formal_arglist (sym, 0, 1) != MATCH_YES)
8090 : : return MATCH_ERROR;
8091 : :
8092 : : /* Make sure that it isn't already declared as BIND(C). If it is, it
8093 : : must have been marked BIND(C) with a BIND(C) attribute and that is
8094 : : not allowed for procedures. */
8095 : 40111 : if (sym->attr.is_bind_c == 1)
8096 : : {
8097 : 4 : sym->attr.is_bind_c = 0;
8098 : :
8099 : 4 : if (gfc_state_stack->previous
8100 : 4 : && gfc_state_stack->previous->state != COMP_SUBMODULE)
8101 : : {
8102 : 2 : locus loc;
8103 : 2 : loc = sym->old_symbol != NULL
8104 : 2 : ? sym->old_symbol->declared_at : gfc_current_locus;
8105 : 2 : gfc_error_now ("BIND(C) attribute at %L can only be used for "
8106 : : "variables or common blocks", &loc);
8107 : : }
8108 : : }
8109 : :
8110 : : /* C binding names are not allowed for internal procedures. */
8111 : 40111 : if (gfc_current_state () == COMP_CONTAINS
8112 : 24620 : && sym->ns->proc_name->attr.flavor != FL_MODULE)
8113 : : allow_binding_name = false;
8114 : : else
8115 : 25824 : allow_binding_name = true;
8116 : :
8117 : : /* Here, we are just checking if it has the bind(c) attribute, and if
8118 : : so, then we need to make sure it's all correct. If it doesn't,
8119 : : we still need to continue matching the rest of the subroutine line. */
8120 : 40111 : gfc_gobble_whitespace ();
8121 : 40111 : loc = gfc_current_locus;
8122 : 40111 : is_bind_c = gfc_match_bind_c (sym, allow_binding_name);
8123 : 40111 : if (is_bind_c == MATCH_ERROR)
8124 : : {
8125 : : /* There was an attempt at the bind(c), but it was wrong. An
8126 : : error message should have been printed w/in the gfc_match_bind_c
8127 : : so here we'll just return the MATCH_ERROR. */
8128 : : return MATCH_ERROR;
8129 : : }
8130 : :
8131 : 40098 : if (is_bind_c == MATCH_YES)
8132 : : {
8133 : 3378 : gfc_formal_arglist *arg;
8134 : :
8135 : : /* The following is allowed in the Fortran 2008 draft. */
8136 : 3378 : if (gfc_current_state () == COMP_CONTAINS
8137 : 1289 : && sym->ns->proc_name->attr.flavor != FL_MODULE
8138 : 3788 : && !gfc_notify_std (GFC_STD_F2008, "BIND(C) attribute "
8139 : : "at %L may not be specified for an internal "
8140 : : "procedure", &gfc_current_locus))
8141 : : return MATCH_ERROR;
8142 : :
8143 : 3375 : if (peek_char != '(')
8144 : : {
8145 : 1 : gfc_error ("Missing required parentheses before BIND(C) at %C");
8146 : 1 : return MATCH_ERROR;
8147 : : }
8148 : :
8149 : : /* F2018 C1550 (R1526) If MODULE appears in the prefix of a module
8150 : : subprogram and a binding label is specified, it shall be the
8151 : : same as the binding label specified in the corresponding module
8152 : : procedure interface body. */
8153 : 3374 : if (sym->attr.module_procedure && sym->old_symbol
8154 : 3 : && strcmp (sym->name, sym->old_symbol->name) == 0
8155 : 3 : && sym->binding_label && sym->old_symbol->binding_label
8156 : 2 : && strcmp (sym->binding_label, sym->old_symbol->binding_label) != 0)
8157 : : {
8158 : 1 : const char *null = "NULL", *s1, *s2;
8159 : 1 : s1 = sym->binding_label;
8160 : 1 : if (!s1) s1 = null;
8161 : 1 : s2 = sym->old_symbol->binding_label;
8162 : 1 : if (!s2) s2 = null;
8163 : 1 : gfc_error ("Mismatch in BIND(C) names (%qs/%qs) at %C", s1, s2);
8164 : 1 : sym->refs++; /* Needed to avoid an ICE in gfc_release_symbol */
8165 : 1 : return MATCH_ERROR;
8166 : : }
8167 : :
8168 : : /* Scan the dummy arguments for an alternate return. */
8169 : 10480 : for (arg = sym->formal; arg; arg = arg->next)
8170 : 7108 : if (!arg->sym)
8171 : : {
8172 : 1 : gfc_error ("Alternate return dummy argument cannot appear in a "
8173 : : "SUBROUTINE with the BIND(C) attribute at %L", &loc);
8174 : 1 : return MATCH_ERROR;
8175 : : }
8176 : :
8177 : 3372 : if (!gfc_add_is_bind_c (&(sym->attr), sym->name, &(sym->declared_at), 1))
8178 : : return MATCH_ERROR;
8179 : : }
8180 : :
8181 : 40091 : if (gfc_match_eos () != MATCH_YES)
8182 : : {
8183 : 1 : gfc_syntax_error (ST_SUBROUTINE);
8184 : 1 : return MATCH_ERROR;
8185 : : }
8186 : :
8187 : 40090 : if (!copy_prefix (&sym->attr, &sym->declared_at))
8188 : : {
8189 : 4 : if(!sym->attr.module_procedure)
8190 : : return MATCH_ERROR;
8191 : : else
8192 : 3 : gfc_error_check ();
8193 : : }
8194 : :
8195 : : /* Warn if it has the same name as an intrinsic. */
8196 : 40089 : do_warn_intrinsic_shadow (sym, false);
8197 : :
8198 : 40089 : return MATCH_YES;
8199 : : }
8200 : :
8201 : :
8202 : : /* Check that the NAME identifier in a BIND attribute or statement
8203 : : is conform to C identifier rules. */
8204 : :
8205 : : match
8206 : 1150 : check_bind_name_identifier (char **name)
8207 : : {
8208 : 1150 : char *n = *name, *p;
8209 : :
8210 : : /* Remove leading spaces. */
8211 : 1176 : while (*n == ' ')
8212 : 26 : n++;
8213 : :
8214 : : /* On an empty string, free memory and set name to NULL. */
8215 : 1150 : if (*n == '\0')
8216 : : {
8217 : 42 : free (*name);
8218 : 42 : *name = NULL;
8219 : 42 : return MATCH_YES;
8220 : : }
8221 : :
8222 : : /* Remove trailing spaces. */
8223 : 1108 : p = n + strlen(n) - 1;
8224 : 1124 : while (*p == ' ')
8225 : 16 : *(p--) = '\0';
8226 : :
8227 : : /* Insert the identifier into the symbol table. */
8228 : 1108 : p = xstrdup (n);
8229 : 1108 : free (*name);
8230 : 1108 : *name = p;
8231 : :
8232 : : /* Now check that identifier is valid under C rules. */
8233 : 1108 : if (ISDIGIT (*p))
8234 : : {
8235 : 2 : gfc_error ("Invalid C identifier in NAME= specifier at %C");
8236 : 2 : return MATCH_ERROR;
8237 : : }
8238 : :
8239 : 12104 : for (; *p; p++)
8240 : 11001 : if (!(ISALNUM (*p) || *p == '_' || *p == '$'))
8241 : : {
8242 : 3 : gfc_error ("Invalid C identifier in NAME= specifier at %C");
8243 : 3 : return MATCH_ERROR;
8244 : : }
8245 : :
8246 : : return MATCH_YES;
8247 : : }
8248 : :
8249 : :
8250 : : /* Match a BIND(C) specifier, with the optional 'name=' specifier if
8251 : : given, and set the binding label in either the given symbol (if not
8252 : : NULL), or in the current_ts. The symbol may be NULL because we may
8253 : : encounter the BIND(C) before the declaration itself. Return
8254 : : MATCH_NO if what we're looking at isn't a BIND(C) specifier,
8255 : : MATCH_ERROR if it is a BIND(C) clause but an error was encountered,
8256 : : or MATCH_YES if the specifier was correct and the binding label and
8257 : : bind(c) fields were set correctly for the given symbol or the
8258 : : current_ts. If allow_binding_name is false, no binding name may be
8259 : : given. */
8260 : :
8261 : : match
8262 : 48045 : gfc_match_bind_c (gfc_symbol *sym, bool allow_binding_name)
8263 : : {
8264 : 48045 : char *binding_label = NULL;
8265 : 48045 : gfc_expr *e = NULL;
8266 : :
8267 : : /* Initialize the flag that specifies whether we encountered a NAME=
8268 : : specifier or not. */
8269 : 48045 : has_name_equals = 0;
8270 : :
8271 : : /* This much we have to be able to match, in this order, if
8272 : : there is a bind(c) label. */
8273 : 48045 : if (gfc_match (" bind ( c ") != MATCH_YES)
8274 : : return MATCH_NO;
8275 : :
8276 : : /* Now see if there is a binding label, or if we've reached the
8277 : : end of the bind(c) attribute without one. */
8278 : 6135 : if (gfc_match_char (',') == MATCH_YES)
8279 : : {
8280 : 1157 : if (gfc_match (" name = ") != MATCH_YES)
8281 : : {
8282 : 1 : gfc_error ("Syntax error in NAME= specifier for binding label "
8283 : : "at %C");
8284 : : /* should give an error message here */
8285 : 1 : return MATCH_ERROR;
8286 : : }
8287 : :
8288 : 1156 : has_name_equals = 1;
8289 : :
8290 : 1156 : if (gfc_match_init_expr (&e) != MATCH_YES)
8291 : : {
8292 : 2 : gfc_free_expr (e);
8293 : 2 : return MATCH_ERROR;
8294 : : }
8295 : :
8296 : 1154 : if (!gfc_simplify_expr(e, 0))
8297 : : {
8298 : 0 : gfc_error ("NAME= specifier at %C should be a constant expression");
8299 : 0 : gfc_free_expr (e);
8300 : 0 : return MATCH_ERROR;
8301 : : }
8302 : :
8303 : 1154 : if (e->expr_type != EXPR_CONSTANT || e->ts.type != BT_CHARACTER
8304 : 1151 : || e->ts.kind != gfc_default_character_kind || e->rank != 0)
8305 : : {
8306 : 4 : gfc_error ("NAME= specifier at %C should be a scalar of "
8307 : : "default character kind");
8308 : 4 : gfc_free_expr(e);
8309 : 4 : return MATCH_ERROR;
8310 : : }
8311 : :
8312 : : // Get a C string from the Fortran string constant
8313 : 2300 : binding_label = gfc_widechar_to_char (e->value.character.string,
8314 : 1150 : e->value.character.length);
8315 : 1150 : gfc_free_expr(e);
8316 : :
8317 : : // Check that it is valid (old gfc_match_name_C)
8318 : 1150 : if (check_bind_name_identifier (&binding_label) != MATCH_YES)
8319 : : return MATCH_ERROR;
8320 : : }
8321 : :
8322 : : /* Get the required right paren. */
8323 : 6123 : if (gfc_match_char (')') != MATCH_YES)
8324 : : {
8325 : 1 : gfc_error ("Missing closing paren for binding label at %C");
8326 : 1 : return MATCH_ERROR;
8327 : : }
8328 : :
8329 : 6122 : if (has_name_equals && !allow_binding_name)
8330 : : {
8331 : 6 : gfc_error ("No binding name is allowed in BIND(C) at %C");
8332 : 6 : return MATCH_ERROR;
8333 : : }
8334 : :
8335 : 6116 : if (has_name_equals && sym != NULL && sym->attr.dummy)
8336 : : {
8337 : 2 : gfc_error ("For dummy procedure %s, no binding name is "
8338 : : "allowed in BIND(C) at %C", sym->name);
8339 : 2 : return MATCH_ERROR;
8340 : : }
8341 : :
8342 : :
8343 : : /* Save the binding label to the symbol. If sym is null, we're
8344 : : probably matching the typespec attributes of a declaration and
8345 : : haven't gotten the name yet, and therefore, no symbol yet. */
8346 : 6114 : if (binding_label)
8347 : : {
8348 : 1096 : if (sym != NULL)
8349 : 988 : sym->binding_label = binding_label;
8350 : : else
8351 : 108 : curr_binding_label = binding_label;
8352 : : }
8353 : 5018 : else if (allow_binding_name)
8354 : : {
8355 : : /* No binding label, but if symbol isn't null, we
8356 : : can set the label for it here.
8357 : : If name="" or allow_binding_name is false, no C binding name is
8358 : : created. */
8359 : 4596 : if (sym != NULL && sym->name != NULL && has_name_equals == 0)
8360 : 4429 : sym->binding_label = IDENTIFIER_POINTER (get_identifier (sym->name));
8361 : : }
8362 : :
8363 : 6114 : if (has_name_equals && gfc_current_state () == COMP_INTERFACE
8364 : 707 : && current_interface.type == INTERFACE_ABSTRACT)
8365 : : {
8366 : 1 : gfc_error ("NAME not allowed on BIND(C) for ABSTRACT INTERFACE at %C");
8367 : 1 : return MATCH_ERROR;
8368 : : }
8369 : :
8370 : : return MATCH_YES;
8371 : : }
8372 : :
8373 : :
8374 : : /* Return nonzero if we're currently compiling a contained procedure. */
8375 : :
8376 : : static int
8377 : 58509 : contained_procedure (void)
8378 : : {
8379 : 58509 : gfc_state_data *s = gfc_state_stack;
8380 : :
8381 : 58509 : if ((s->state == COMP_SUBROUTINE || s->state == COMP_FUNCTION)
8382 : 57717 : && s->previous != NULL && s->previous->state == COMP_CONTAINS)
8383 : 34312 : return 1;
8384 : :
8385 : : return 0;
8386 : : }
8387 : :
8388 : : /* Set the kind of each enumerator. The kind is selected such that it is
8389 : : interoperable with the corresponding C enumeration type, making
8390 : : sure that -fshort-enums is honored. */
8391 : :
8392 : : static void
8393 : 158 : set_enum_kind(void)
8394 : : {
8395 : 158 : enumerator_history *current_history = NULL;
8396 : 158 : int kind;
8397 : 158 : int i;
8398 : :
8399 : 158 : if (max_enum == NULL || enum_history == NULL)
8400 : : return;
8401 : :
8402 : 150 : if (!flag_short_enums)
8403 : : return;
8404 : :
8405 : : i = 0;
8406 : 48 : do
8407 : : {
8408 : 48 : kind = gfc_integer_kinds[i++].kind;
8409 : : }
8410 : 48 : while (kind < gfc_c_int_kind
8411 : 72 : && gfc_check_integer_range (max_enum->initializer->value.integer,
8412 : : kind) != ARITH_OK);
8413 : :
8414 : 24 : current_history = enum_history;
8415 : 96 : while (current_history != NULL)
8416 : : {
8417 : 72 : current_history->sym->ts.kind = kind;
8418 : 72 : current_history = current_history->next;
8419 : : }
8420 : : }
8421 : :
8422 : :
8423 : : /* Match any of the various end-block statements. Returns the type of
8424 : : END to the caller. The END INTERFACE, END IF, END DO, END SELECT
8425 : : and END BLOCK statements cannot be replaced by a single END statement. */
8426 : :
8427 : : match
8428 : 172949 : gfc_match_end (gfc_statement *st)
8429 : : {
8430 : 172949 : char name[GFC_MAX_SYMBOL_LEN + 1];
8431 : 172949 : gfc_compile_state state;
8432 : 172949 : locus old_loc;
8433 : 172949 : const char *block_name;
8434 : 172949 : const char *target;
8435 : 172949 : int eos_ok;
8436 : 172949 : match m;
8437 : 172949 : gfc_namespace *parent_ns, *ns, *prev_ns;
8438 : 172949 : gfc_namespace **nsp;
8439 : 172949 : bool abbreviated_modproc_decl = false;
8440 : 172949 : bool got_matching_end = false;
8441 : :
8442 : 172949 : old_loc = gfc_current_locus;
8443 : 172949 : if (gfc_match ("end") != MATCH_YES)
8444 : : return MATCH_NO;
8445 : :
8446 : 167965 : state = gfc_current_state ();
8447 : 335930 : block_name = gfc_current_block () == NULL
8448 : 167965 : ? NULL : gfc_current_block ()->name;
8449 : :
8450 : 167965 : switch (state)
8451 : : {
8452 : 2503 : case COMP_ASSOCIATE:
8453 : 2503 : case COMP_BLOCK:
8454 : 2503 : if (startswith (block_name, "block@"))
8455 : : block_name = NULL;
8456 : : break;
8457 : :
8458 : 16265 : case COMP_CONTAINS:
8459 : 16265 : case COMP_DERIVED_CONTAINS:
8460 : 16265 : state = gfc_state_stack->previous->state;
8461 : 32530 : block_name = gfc_state_stack->previous->sym == NULL
8462 : 16265 : ? NULL : gfc_state_stack->previous->sym->name;
8463 : 16265 : abbreviated_modproc_decl = gfc_state_stack->previous->sym
8464 : 16265 : && gfc_state_stack->previous->sym->abr_modproc_decl;
8465 : : break;
8466 : :
8467 : : default:
8468 : : break;
8469 : : }
8470 : :
8471 : : if (!abbreviated_modproc_decl)
8472 : 167964 : abbreviated_modproc_decl = gfc_current_block ()
8473 : 167964 : && gfc_current_block ()->abr_modproc_decl;
8474 : :
8475 : 167965 : switch (state)
8476 : : {
8477 : 26835 : case COMP_NONE:
8478 : 26835 : case COMP_PROGRAM:
8479 : 26835 : *st = ST_END_PROGRAM;
8480 : 26835 : target = " program";
8481 : 26835 : eos_ok = 1;
8482 : 26835 : break;
8483 : :
8484 : 40234 : case COMP_SUBROUTINE:
8485 : 40234 : *st = ST_END_SUBROUTINE;
8486 : 40234 : if (!abbreviated_modproc_decl)
8487 : : target = " subroutine";
8488 : : else
8489 : 126 : target = " procedure";
8490 : 40234 : eos_ok = !contained_procedure ();
8491 : 40234 : break;
8492 : :
8493 : 18275 : case COMP_FUNCTION:
8494 : 18275 : *st = ST_END_FUNCTION;
8495 : 18275 : if (!abbreviated_modproc_decl)
8496 : : target = " function";
8497 : : else
8498 : 53 : target = " procedure";
8499 : 18275 : eos_ok = !contained_procedure ();
8500 : 18275 : break;
8501 : :
8502 : 83 : case COMP_BLOCK_DATA:
8503 : 83 : *st = ST_END_BLOCK_DATA;
8504 : 83 : target = " block data";
8505 : 83 : eos_ok = 1;
8506 : 83 : break;
8507 : :
8508 : 9184 : case COMP_MODULE:
8509 : 9184 : *st = ST_END_MODULE;
8510 : 9184 : target = " module";
8511 : 9184 : eos_ok = 1;
8512 : 9184 : break;
8513 : :
8514 : 204 : case COMP_SUBMODULE:
8515 : 204 : *st = ST_END_SUBMODULE;
8516 : 204 : target = " submodule";
8517 : 204 : eos_ok = 1;
8518 : 204 : break;
8519 : :
8520 : 9557 : case COMP_INTERFACE:
8521 : 9557 : *st = ST_END_INTERFACE;
8522 : 9557 : target = " interface";
8523 : 9557 : eos_ok = 0;
8524 : 9557 : break;
8525 : :
8526 : 257 : case COMP_MAP:
8527 : 257 : *st = ST_END_MAP;
8528 : 257 : target = " map";
8529 : 257 : eos_ok = 0;
8530 : 257 : break;
8531 : :
8532 : 132 : case COMP_UNION:
8533 : 132 : *st = ST_END_UNION;
8534 : 132 : target = " union";
8535 : 132 : eos_ok = 0;
8536 : 132 : break;
8537 : :
8538 : 313 : case COMP_STRUCTURE:
8539 : 313 : *st = ST_END_STRUCTURE;
8540 : 313 : target = " structure";
8541 : 313 : eos_ok = 0;
8542 : 313 : break;
8543 : :
8544 : 11759 : case COMP_DERIVED:
8545 : 11759 : case COMP_DERIVED_CONTAINS:
8546 : 11759 : *st = ST_END_TYPE;
8547 : 11759 : target = " type";
8548 : 11759 : eos_ok = 0;
8549 : 11759 : break;
8550 : :
8551 : 1279 : case COMP_ASSOCIATE:
8552 : 1279 : *st = ST_END_ASSOCIATE;
8553 : 1279 : target = " associate";
8554 : 1279 : eos_ok = 0;
8555 : 1279 : break;
8556 : :
8557 : 1224 : case COMP_BLOCK:
8558 : 1224 : case COMP_OMP_STRICTLY_STRUCTURED_BLOCK:
8559 : 1224 : *st = ST_END_BLOCK;
8560 : 1224 : target = " block";
8561 : 1224 : eos_ok = 0;
8562 : 1224 : break;
8563 : :
8564 : 14056 : case COMP_IF:
8565 : 14056 : *st = ST_ENDIF;
8566 : 14056 : target = " if";
8567 : 14056 : eos_ok = 0;
8568 : 14056 : break;
8569 : :
8570 : 29055 : case COMP_DO:
8571 : 29055 : case COMP_DO_CONCURRENT:
8572 : 29055 : *st = ST_ENDDO;
8573 : 29055 : target = " do";
8574 : 29055 : eos_ok = 0;
8575 : 29055 : break;
8576 : :
8577 : 33 : case COMP_CRITICAL:
8578 : 33 : *st = ST_END_CRITICAL;
8579 : 33 : target = " critical";
8580 : 33 : eos_ok = 0;
8581 : 33 : break;
8582 : :
8583 : 4432 : case COMP_SELECT:
8584 : 4432 : case COMP_SELECT_TYPE:
8585 : 4432 : case COMP_SELECT_RANK:
8586 : 4432 : *st = ST_END_SELECT;
8587 : 4432 : target = " select";
8588 : 4432 : eos_ok = 0;
8589 : 4432 : break;
8590 : :
8591 : 515 : case COMP_FORALL:
8592 : 515 : *st = ST_END_FORALL;
8593 : 515 : target = " forall";
8594 : 515 : eos_ok = 0;
8595 : 515 : break;
8596 : :
8597 : 373 : case COMP_WHERE:
8598 : 373 : *st = ST_END_WHERE;
8599 : 373 : target = " where";
8600 : 373 : eos_ok = 0;
8601 : 373 : break;
8602 : :
8603 : 158 : case COMP_ENUM:
8604 : 158 : *st = ST_END_ENUM;
8605 : 158 : target = " enum";
8606 : 158 : eos_ok = 0;
8607 : 158 : last_initializer = NULL;
8608 : 158 : set_enum_kind ();
8609 : 158 : gfc_free_enum_history ();
8610 : 158 : break;
8611 : :
8612 : 7 : default:
8613 : 7 : gfc_error ("Unexpected END statement at %C");
8614 : 7 : goto cleanup;
8615 : : }
8616 : :
8617 : 167958 : old_loc = gfc_current_locus;
8618 : 167958 : if (gfc_match_eos () == MATCH_YES)
8619 : : {
8620 : 19086 : if (!eos_ok && (*st == ST_END_SUBROUTINE || *st == ST_END_FUNCTION))
8621 : : {
8622 : 6979 : if (!gfc_notify_std (GFC_STD_F2008, "END statement "
8623 : : "instead of %s statement at %L",
8624 : : abbreviated_modproc_decl ? "END PROCEDURE"
8625 : 3489 : : gfc_ascii_statement(*st), &old_loc))
8626 : 4 : goto cleanup;
8627 : : }
8628 : 7 : else if (!eos_ok)
8629 : : {
8630 : : /* We would have required END [something]. */
8631 : 7 : gfc_error ("%s statement expected at %L",
8632 : : gfc_ascii_statement (*st), &old_loc);
8633 : 7 : goto cleanup;
8634 : : }
8635 : :
8636 : 19075 : return MATCH_YES;
8637 : : }
8638 : :
8639 : : /* Verify that we've got the sort of end-block that we're expecting. */
8640 : 148872 : if (gfc_match (target) != MATCH_YES)
8641 : : {
8642 : 289 : gfc_error ("Expecting %s statement at %L", abbreviated_modproc_decl
8643 : 144 : ? "END PROCEDURE" : gfc_ascii_statement(*st), &old_loc);
8644 : 145 : goto cleanup;
8645 : : }
8646 : : else
8647 : 148727 : got_matching_end = true;
8648 : :
8649 : 148727 : old_loc = gfc_current_locus;
8650 : : /* If we're at the end, make sure a block name wasn't required. */
8651 : 148727 : if (gfc_match_eos () == MATCH_YES)
8652 : : {
8653 : :
8654 : 97452 : if (*st != ST_ENDDO && *st != ST_ENDIF && *st != ST_END_SELECT
8655 : : && *st != ST_END_FORALL && *st != ST_END_WHERE && *st != ST_END_BLOCK
8656 : : && *st != ST_END_ASSOCIATE && *st != ST_END_CRITICAL)
8657 : : return MATCH_YES;
8658 : :
8659 : 50485 : if (!block_name)
8660 : : return MATCH_YES;
8661 : :
8662 : 7 : gfc_error ("Expected block name of %qs in %s statement at %L",
8663 : : block_name, gfc_ascii_statement (*st), &old_loc);
8664 : :
8665 : 7 : return MATCH_ERROR;
8666 : : }
8667 : :
8668 : : /* END INTERFACE has a special handler for its several possible endings. */
8669 : 51275 : if (*st == ST_END_INTERFACE)
8670 : 560 : return gfc_match_end_interface ();
8671 : :
8672 : : /* We haven't hit the end of statement, so what is left must be an
8673 : : end-name. */
8674 : 50715 : m = gfc_match_space ();
8675 : 50715 : if (m == MATCH_YES)
8676 : 50715 : m = gfc_match_name (name);
8677 : :
8678 : 50715 : if (m == MATCH_NO)
8679 : 0 : gfc_error ("Expected terminating name at %C");
8680 : 50715 : if (m != MATCH_YES)
8681 : 0 : goto cleanup;
8682 : :
8683 : 50715 : if (block_name == NULL)
8684 : 15 : goto syntax;
8685 : :
8686 : : /* We have to pick out the declared submodule name from the composite
8687 : : required by F2008:11.2.3 para 2, which ends in the declared name. */
8688 : 50700 : if (state == COMP_SUBMODULE)
8689 : 112 : block_name = strchr (block_name, '.') + 1;
8690 : :
8691 : 50700 : if (strcmp (name, block_name) != 0 && strcmp (block_name, "ppr@") != 0)
8692 : : {
8693 : 8 : gfc_error ("Expected label %qs for %s statement at %C", block_name,
8694 : : gfc_ascii_statement (*st));
8695 : 8 : goto cleanup;
8696 : : }
8697 : : /* Procedure pointer as function result. */
8698 : 50692 : else if (strcmp (block_name, "ppr@") == 0
8699 : 21 : && strcmp (name, gfc_current_block ()->ns->proc_name->name) != 0)
8700 : : {
8701 : 0 : gfc_error ("Expected label %qs for %s statement at %C",
8702 : 0 : gfc_current_block ()->ns->proc_name->name,
8703 : : gfc_ascii_statement (*st));
8704 : 0 : goto cleanup;
8705 : : }
8706 : :
8707 : 50692 : if (gfc_match_eos () == MATCH_YES)
8708 : : return MATCH_YES;
8709 : :
8710 : 0 : syntax:
8711 : 15 : gfc_syntax_error (*st);
8712 : :
8713 : 186 : cleanup:
8714 : 186 : gfc_current_locus = old_loc;
8715 : :
8716 : : /* If we are missing an END BLOCK, we created a half-ready namespace.
8717 : : Remove it from the parent namespace's sibling list. */
8718 : :
8719 : 194 : while (state == COMP_BLOCK && !got_matching_end)
8720 : : {
8721 : 8 : parent_ns = gfc_current_ns->parent;
8722 : :
8723 : 8 : nsp = &(gfc_state_stack->previous->tail->ext.block.ns);
8724 : :
8725 : 8 : prev_ns = NULL;
8726 : 8 : ns = *nsp;
8727 : 16 : while (ns)
8728 : : {
8729 : 8 : if (ns == gfc_current_ns)
8730 : : {
8731 : 8 : if (prev_ns == NULL)
8732 : 8 : *nsp = NULL;
8733 : : else
8734 : 0 : prev_ns->sibling = ns->sibling;
8735 : : }
8736 : 8 : prev_ns = ns;
8737 : 8 : ns = ns->sibling;
8738 : : }
8739 : :
8740 : 8 : gfc_free_namespace (gfc_current_ns);
8741 : 8 : gfc_current_ns = parent_ns;
8742 : 8 : gfc_state_stack = gfc_state_stack->previous;
8743 : 8 : state = gfc_current_state ();
8744 : : }
8745 : :
8746 : : return MATCH_ERROR;
8747 : : }
8748 : :
8749 : :
8750 : :
8751 : : /***************** Attribute declaration statements ****************/
8752 : :
8753 : : /* Set the attribute of a single variable. */
8754 : :
8755 : : static match
8756 : 10161 : attr_decl1 (void)
8757 : : {
8758 : 10161 : char name[GFC_MAX_SYMBOL_LEN + 1];
8759 : 10161 : gfc_array_spec *as;
8760 : :
8761 : : /* Workaround -Wmaybe-uninitialized false positive during
8762 : : profiledbootstrap by initializing them. */
8763 : 10161 : gfc_symbol *sym = NULL;
8764 : 10161 : locus var_locus;
8765 : 10161 : match m;
8766 : :
8767 : 10161 : as = NULL;
8768 : :
8769 : 10161 : m = gfc_match_name (name);
8770 : 10161 : if (m != MATCH_YES)
8771 : 0 : goto cleanup;
8772 : :
8773 : 10161 : if (find_special (name, &sym, false))
8774 : : return MATCH_ERROR;
8775 : :
8776 : 10161 : if (!check_function_name (name))
8777 : : {
8778 : 7 : m = MATCH_ERROR;
8779 : 7 : goto cleanup;
8780 : : }
8781 : :
8782 : 10154 : var_locus = gfc_current_locus;
8783 : :
8784 : : /* Deal with possible array specification for certain attributes. */
8785 : 10154 : if (current_attr.dimension
8786 : : || current_attr.codimension
8787 : : || current_attr.allocatable
8788 : : || current_attr.pointer
8789 : 10154 : || current_attr.target)
8790 : : {
8791 : 5846 : m = gfc_match_array_spec (&as, !current_attr.codimension,
8792 : : !current_attr.dimension
8793 : : && !current_attr.pointer
8794 : 2923 : && !current_attr.target);
8795 : 2923 : if (m == MATCH_ERROR)
8796 : 2 : goto cleanup;
8797 : :
8798 : 2921 : if (current_attr.dimension && m == MATCH_NO)
8799 : : {
8800 : 0 : gfc_error ("Missing array specification at %L in DIMENSION "
8801 : : "statement", &var_locus);
8802 : 0 : m = MATCH_ERROR;
8803 : 0 : goto cleanup;
8804 : : }
8805 : :
8806 : 2921 : if (current_attr.dimension && sym->value)
8807 : : {
8808 : 1 : gfc_error ("Dimensions specified for %s at %L after its "
8809 : : "initialization", sym->name, &var_locus);
8810 : 1 : m = MATCH_ERROR;
8811 : 1 : goto cleanup;
8812 : : }
8813 : :
8814 : 2920 : if (current_attr.codimension && m == MATCH_NO)
8815 : : {
8816 : 0 : gfc_error ("Missing array specification at %L in CODIMENSION "
8817 : : "statement", &var_locus);
8818 : 0 : m = MATCH_ERROR;
8819 : 0 : goto cleanup;
8820 : : }
8821 : :
8822 : 2920 : if ((current_attr.allocatable || current_attr.pointer)
8823 : 1103 : && (m == MATCH_YES) && (as->type != AS_DEFERRED))
8824 : : {
8825 : 0 : gfc_error ("Array specification must be deferred at %L", &var_locus);
8826 : 0 : m = MATCH_ERROR;
8827 : 0 : goto cleanup;
8828 : : }
8829 : : }
8830 : :
8831 : 10151 : if (sym->ts.type == BT_CLASS
8832 : 199 : && sym->ts.u.derived
8833 : 199 : && sym->ts.u.derived->attr.is_class)
8834 : : {
8835 : 177 : sym->attr.pointer = CLASS_DATA(sym)->attr.class_pointer;
8836 : 177 : sym->attr.allocatable = CLASS_DATA(sym)->attr.allocatable;
8837 : 177 : sym->attr.dimension = CLASS_DATA(sym)->attr.dimension;
8838 : 177 : sym->attr.codimension = CLASS_DATA(sym)->attr.codimension;
8839 : 177 : if (CLASS_DATA (sym)->as)
8840 : 123 : sym->as = gfc_copy_array_spec (CLASS_DATA (sym)->as);
8841 : : }
8842 : 10151 : if (current_attr.dimension == 0 && current_attr.codimension == 0
8843 : 10151 : && !gfc_copy_attr (&sym->attr, ¤t_attr, &var_locus))
8844 : : {
8845 : 22 : m = MATCH_ERROR;
8846 : 22 : goto cleanup;
8847 : : }
8848 : 10129 : if (!gfc_set_array_spec (sym, as, &var_locus))
8849 : : {
8850 : 18 : m = MATCH_ERROR;
8851 : 18 : goto cleanup;
8852 : : }
8853 : :
8854 : 10111 : if (sym->attr.cray_pointee && sym->as != NULL)
8855 : : {
8856 : : /* Fix the array spec. */
8857 : 2 : m = gfc_mod_pointee_as (sym->as);
8858 : 2 : if (m == MATCH_ERROR)
8859 : 0 : goto cleanup;
8860 : : }
8861 : :
8862 : 10111 : if (!gfc_add_attribute (&sym->attr, &var_locus))
8863 : : {
8864 : 0 : m = MATCH_ERROR;
8865 : 0 : goto cleanup;
8866 : : }
8867 : :
8868 : 10111 : if ((current_attr.external || current_attr.intrinsic)
8869 : 6091 : && sym->attr.flavor != FL_PROCEDURE
8870 : 16170 : && !gfc_add_flavor (&sym->attr, FL_PROCEDURE, sym->name, NULL))
8871 : : {
8872 : 0 : m = MATCH_ERROR;
8873 : 0 : goto cleanup;
8874 : : }
8875 : :
8876 : 10111 : if (sym->ts.type == BT_CLASS && sym->ts.u.derived->attr.is_class
8877 : 169 : && !as && !current_attr.pointer && !current_attr.allocatable
8878 : 151 : && !current_attr.external)
8879 : : {
8880 : 136 : sym->attr.pointer = 0;
8881 : 136 : sym->attr.allocatable = 0;
8882 : 136 : sym->attr.dimension = 0;
8883 : 136 : sym->attr.codimension = 0;
8884 : 136 : gfc_free_array_spec (sym->as);
8885 : 136 : sym->as = NULL;
8886 : : }
8887 : 9975 : else if (sym->ts.type == BT_CLASS
8888 : 9975 : && !gfc_build_class_symbol (&sym->ts, &sym->attr, &sym->as))
8889 : : {
8890 : 0 : m = MATCH_ERROR;
8891 : 0 : goto cleanup;
8892 : : }
8893 : :
8894 : 10111 : add_hidden_procptr_result (sym);
8895 : :
8896 : 10111 : return MATCH_YES;
8897 : :
8898 : 50 : cleanup:
8899 : 50 : gfc_free_array_spec (as);
8900 : 50 : return m;
8901 : : }
8902 : :
8903 : :
8904 : : /* Generic attribute declaration subroutine. Used for attributes that
8905 : : just have a list of names. */
8906 : :
8907 : : static match
8908 : 6523 : attr_decl (void)
8909 : : {
8910 : 6523 : match m;
8911 : :
8912 : : /* Gobble the optional double colon, by simply ignoring the result
8913 : : of gfc_match(). */
8914 : 6523 : gfc_match (" ::");
8915 : :
8916 : 10161 : for (;;)
8917 : : {
8918 : 10161 : m = attr_decl1 ();
8919 : 10161 : if (m != MATCH_YES)
8920 : : break;
8921 : :
8922 : 10111 : if (gfc_match_eos () == MATCH_YES)
8923 : : {
8924 : : m = MATCH_YES;
8925 : : break;
8926 : : }
8927 : :
8928 : 3638 : if (gfc_match_char (',') != MATCH_YES)
8929 : : {
8930 : 0 : gfc_error ("Unexpected character in variable list at %C");
8931 : 0 : m = MATCH_ERROR;
8932 : 0 : break;
8933 : : }
8934 : : }
8935 : :
8936 : 6523 : return m;
8937 : : }
8938 : :
8939 : :
8940 : : /* This routine matches Cray Pointer declarations of the form:
8941 : : pointer ( <pointer>, <pointee> )
8942 : : or
8943 : : pointer ( <pointer1>, <pointee1> ), ( <pointer2>, <pointee2> ), ...
8944 : : The pointer, if already declared, should be an integer. Otherwise, we
8945 : : set it as BT_INTEGER with kind gfc_index_integer_kind. The pointee may
8946 : : be either a scalar, or an array declaration. No space is allocated for
8947 : : the pointee. For the statement
8948 : : pointer (ipt, ar(10))
8949 : : any subsequent uses of ar will be translated (in C-notation) as
8950 : : ar(i) => ((<type> *) ipt)(i)
8951 : : After gimplification, pointee variable will disappear in the code. */
8952 : :
8953 : : static match
8954 : 334 : cray_pointer_decl (void)
8955 : : {
8956 : 334 : match m;
8957 : 334 : gfc_array_spec *as = NULL;
8958 : 334 : gfc_symbol *cptr; /* Pointer symbol. */
8959 : 334 : gfc_symbol *cpte; /* Pointee symbol. */
8960 : 334 : locus var_locus;
8961 : 334 : bool done = false;
8962 : :
8963 : 334 : while (!done)
8964 : : {
8965 : 347 : if (gfc_match_char ('(') != MATCH_YES)
8966 : : {
8967 : 1 : gfc_error ("Expected %<(%> at %C");
8968 : 1 : return MATCH_ERROR;
8969 : : }
8970 : :
8971 : : /* Match pointer. */
8972 : 346 : var_locus = gfc_current_locus;
8973 : 346 : gfc_clear_attr (¤t_attr);
8974 : 346 : gfc_add_cray_pointer (¤t_attr, &var_locus);
8975 : 346 : current_ts.type = BT_INTEGER;
8976 : 346 : current_ts.kind = gfc_index_integer_kind;
8977 : :
8978 : 346 : m = gfc_match_symbol (&cptr, 0);
8979 : 346 : if (m != MATCH_YES)
8980 : : {
8981 : 2 : gfc_error ("Expected variable name at %C");
8982 : 2 : return m;
8983 : : }
8984 : :
8985 : 344 : if (!gfc_add_cray_pointer (&cptr->attr, &var_locus))
8986 : : return MATCH_ERROR;
8987 : :
8988 : 341 : gfc_set_sym_referenced (cptr);
8989 : :
8990 : 341 : if (cptr->ts.type == BT_UNKNOWN) /* Override the type, if necessary. */
8991 : : {
8992 : 327 : cptr->ts.type = BT_INTEGER;
8993 : 327 : cptr->ts.kind = gfc_index_integer_kind;
8994 : : }
8995 : 14 : else if (cptr->ts.type != BT_INTEGER)
8996 : : {
8997 : 1 : gfc_error ("Cray pointer at %C must be an integer");
8998 : 1 : return MATCH_ERROR;
8999 : : }
9000 : 13 : else if (cptr->ts.kind < gfc_index_integer_kind)
9001 : 0 : gfc_warning (0, "Cray pointer at %C has %d bytes of precision;"
9002 : : " memory addresses require %d bytes",
9003 : : cptr->ts.kind, gfc_index_integer_kind);
9004 : :
9005 : 340 : if (gfc_match_char (',') != MATCH_YES)
9006 : : {
9007 : 2 : gfc_error ("Expected \",\" at %C");
9008 : 2 : return MATCH_ERROR;
9009 : : }
9010 : :
9011 : : /* Match Pointee. */
9012 : 338 : var_locus = gfc_current_locus;
9013 : 338 : gfc_clear_attr (¤t_attr);
9014 : 338 : gfc_add_cray_pointee (¤t_attr, &var_locus);
9015 : 338 : current_ts.type = BT_UNKNOWN;
9016 : 338 : current_ts.kind = 0;
9017 : :
9018 : 338 : m = gfc_match_symbol (&cpte, 0);
9019 : 338 : if (m != MATCH_YES)
9020 : : {
9021 : 2 : gfc_error ("Expected variable name at %C");
9022 : 2 : return m;
9023 : : }
9024 : :
9025 : : /* Check for an optional array spec. */
9026 : 336 : m = gfc_match_array_spec (&as, true, false);
9027 : 336 : if (m == MATCH_ERROR)
9028 : : {
9029 : 0 : gfc_free_array_spec (as);
9030 : 0 : return m;
9031 : : }
9032 : 336 : else if (m == MATCH_NO)
9033 : : {
9034 : 226 : gfc_free_array_spec (as);
9035 : 226 : as = NULL;
9036 : : }
9037 : :
9038 : 336 : if (!gfc_add_cray_pointee (&cpte->attr, &var_locus))
9039 : : return MATCH_ERROR;
9040 : :
9041 : 329 : gfc_set_sym_referenced (cpte);
9042 : :
9043 : 329 : if (cpte->as == NULL)
9044 : : {
9045 : 247 : if (!gfc_set_array_spec (cpte, as, &var_locus))
9046 : 0 : gfc_internal_error ("Cannot set Cray pointee array spec.");
9047 : : }
9048 : 82 : else if (as != NULL)
9049 : : {
9050 : 1 : gfc_error ("Duplicate array spec for Cray pointee at %C");
9051 : 1 : gfc_free_array_spec (as);
9052 : 1 : return MATCH_ERROR;
9053 : : }
9054 : :
9055 : 328 : as = NULL;
9056 : :
9057 : 328 : if (cpte->as != NULL)
9058 : : {
9059 : : /* Fix array spec. */
9060 : 190 : m = gfc_mod_pointee_as (cpte->as);
9061 : 190 : if (m == MATCH_ERROR)
9062 : : return m;
9063 : : }
9064 : :
9065 : : /* Point the Pointee at the Pointer. */
9066 : 328 : cpte->cp_pointer = cptr;
9067 : :
9068 : 328 : if (gfc_match_char (')') != MATCH_YES)
9069 : : {
9070 : 2 : gfc_error ("Expected \")\" at %C");
9071 : 2 : return MATCH_ERROR;
9072 : : }
9073 : 326 : m = gfc_match_char (',');
9074 : 326 : if (m != MATCH_YES)
9075 : 313 : done = true; /* Stop searching for more declarations. */
9076 : :
9077 : : }
9078 : :
9079 : 313 : if (m == MATCH_ERROR /* Failed when trying to find ',' above. */
9080 : 313 : || gfc_match_eos () != MATCH_YES)
9081 : : {
9082 : 0 : gfc_error ("Expected %<,%> or end of statement at %C");
9083 : 0 : return MATCH_ERROR;
9084 : : }
9085 : : return MATCH_YES;
9086 : : }
9087 : :
9088 : :
9089 : : match
9090 : 3092 : gfc_match_external (void)
9091 : : {
9092 : :
9093 : 3092 : gfc_clear_attr (¤t_attr);
9094 : 3092 : current_attr.external = 1;
9095 : :
9096 : 3092 : return attr_decl ();
9097 : : }
9098 : :
9099 : :
9100 : : match
9101 : 205 : gfc_match_intent (void)
9102 : : {
9103 : 205 : sym_intent intent;
9104 : :
9105 : : /* This is not allowed within a BLOCK construct! */
9106 : 205 : if (gfc_current_state () == COMP_BLOCK)
9107 : : {
9108 : 2 : gfc_error ("INTENT is not allowed inside of BLOCK at %C");
9109 : 2 : return MATCH_ERROR;
9110 : : }
9111 : :
9112 : 203 : intent = match_intent_spec ();
9113 : 203 : if (intent == INTENT_UNKNOWN)
9114 : : return MATCH_ERROR;
9115 : :
9116 : 203 : gfc_clear_attr (¤t_attr);
9117 : 203 : current_attr.intent = intent;
9118 : :
9119 : 203 : return attr_decl ();
9120 : : }
9121 : :
9122 : :
9123 : : match
9124 : 1454 : gfc_match_intrinsic (void)
9125 : : {
9126 : :
9127 : 1454 : gfc_clear_attr (¤t_attr);
9128 : 1454 : current_attr.intrinsic = 1;
9129 : :
9130 : 1454 : return attr_decl ();
9131 : : }
9132 : :
9133 : :
9134 : : match
9135 : 215 : gfc_match_optional (void)
9136 : : {
9137 : : /* This is not allowed within a BLOCK construct! */
9138 : 215 : if (gfc_current_state () == COMP_BLOCK)
9139 : : {
9140 : 2 : gfc_error ("OPTIONAL is not allowed inside of BLOCK at %C");
9141 : 2 : return MATCH_ERROR;
9142 : : }
9143 : :
9144 : 213 : gfc_clear_attr (¤t_attr);
9145 : 213 : current_attr.optional = 1;
9146 : :
9147 : 213 : return attr_decl ();
9148 : : }
9149 : :
9150 : :
9151 : : match
9152 : 902 : gfc_match_pointer (void)
9153 : : {
9154 : 902 : gfc_gobble_whitespace ();
9155 : 902 : if (gfc_peek_ascii_char () == '(')
9156 : : {
9157 : 335 : if (!flag_cray_pointer)
9158 : : {
9159 : 1 : gfc_error ("Cray pointer declaration at %C requires "
9160 : : "%<-fcray-pointer%> flag");
9161 : 1 : return MATCH_ERROR;
9162 : : }
9163 : 334 : return cray_pointer_decl ();
9164 : : }
9165 : : else
9166 : : {
9167 : 567 : gfc_clear_attr (¤t_attr);
9168 : 567 : current_attr.pointer = 1;
9169 : :
9170 : 567 : return attr_decl ();
9171 : : }
9172 : : }
9173 : :
9174 : :
9175 : : match
9176 : 149 : gfc_match_allocatable (void)
9177 : : {
9178 : 149 : gfc_clear_attr (¤t_attr);
9179 : 149 : current_attr.allocatable = 1;
9180 : :
9181 : 149 : return attr_decl ();
9182 : : }
9183 : :
9184 : :
9185 : : match
9186 : 22 : gfc_match_codimension (void)
9187 : : {
9188 : 22 : gfc_clear_attr (¤t_attr);
9189 : 22 : current_attr.codimension = 1;
9190 : :
9191 : 22 : return attr_decl ();
9192 : : }
9193 : :
9194 : :
9195 : : match
9196 : 80 : gfc_match_contiguous (void)
9197 : : {
9198 : 80 : if (!gfc_notify_std (GFC_STD_F2008, "CONTIGUOUS statement at %C"))
9199 : : return MATCH_ERROR;
9200 : :
9201 : 79 : gfc_clear_attr (¤t_attr);
9202 : 79 : current_attr.contiguous = 1;
9203 : :
9204 : 79 : return attr_decl ();
9205 : : }
9206 : :
9207 : :
9208 : : match
9209 : 645 : gfc_match_dimension (void)
9210 : : {
9211 : 645 : gfc_clear_attr (¤t_attr);
9212 : 645 : current_attr.dimension = 1;
9213 : :
9214 : 645 : return attr_decl ();
9215 : : }
9216 : :
9217 : :
9218 : : match
9219 : 99 : gfc_match_target (void)
9220 : : {
9221 : 99 : gfc_clear_attr (¤t_attr);
9222 : 99 : current_attr.target = 1;
9223 : :
9224 : 99 : return attr_decl ();
9225 : : }
9226 : :
9227 : :
9228 : : /* Match the list of entities being specified in a PUBLIC or PRIVATE
9229 : : statement. */
9230 : :
9231 : : static match
9232 : 1599 : access_attr_decl (gfc_statement st)
9233 : : {
9234 : 1599 : char name[GFC_MAX_SYMBOL_LEN + 1];
9235 : 1599 : interface_type type;
9236 : 1599 : gfc_user_op *uop;
9237 : 1599 : gfc_symbol *sym, *dt_sym;
9238 : 1599 : gfc_intrinsic_op op;
9239 : 1599 : match m;
9240 : 1599 : gfc_access access = (st == ST_PUBLIC) ? ACCESS_PUBLIC : ACCESS_PRIVATE;
9241 : :
9242 : 1599 : if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
9243 : 0 : goto done;
9244 : :
9245 : 2677 : for (;;)
9246 : : {
9247 : 2677 : m = gfc_match_generic_spec (&type, name, &op);
9248 : 2677 : if (m == MATCH_NO)
9249 : 0 : goto syntax;
9250 : 2677 : if (m == MATCH_ERROR)
9251 : 0 : goto done;
9252 : :
9253 : 2677 : switch (type)
9254 : : {
9255 : 0 : case INTERFACE_NAMELESS:
9256 : 0 : case INTERFACE_ABSTRACT:
9257 : 0 : goto syntax;
9258 : :
9259 : 2609 : case INTERFACE_GENERIC:
9260 : 2609 : case INTERFACE_DTIO:
9261 : :
9262 : 2609 : if (gfc_get_symbol (name, NULL, &sym))
9263 : 0 : goto done;
9264 : :
9265 : 2609 : if (type == INTERFACE_DTIO
9266 : 20 : && gfc_current_ns->proc_name
9267 : 20 : && gfc_current_ns->proc_name->attr.flavor == FL_MODULE
9268 : 20 : && sym->attr.flavor == FL_UNKNOWN)
9269 : 2 : sym->attr.flavor = FL_PROCEDURE;
9270 : :
9271 : 2609 : if (!gfc_add_access (&sym->attr, access, sym->name, NULL))
9272 : 4 : goto done;
9273 : :
9274 : 316 : if (sym->attr.generic && (dt_sym = gfc_find_dt_in_generic (sym))
9275 : 2655 : && !gfc_add_access (&dt_sym->attr, access, sym->name, NULL))
9276 : 0 : goto done;
9277 : :
9278 : : break;
9279 : :
9280 : 64 : case INTERFACE_INTRINSIC_OP:
9281 : 64 : if (gfc_current_ns->operator_access[op] == ACCESS_UNKNOWN)
9282 : : {
9283 : 64 : gfc_intrinsic_op other_op;
9284 : :
9285 : 64 : gfc_current_ns->operator_access[op] = access;
9286 : :
9287 : : /* Handle the case if there is another op with the same
9288 : : function, for INTRINSIC_EQ vs. INTRINSIC_EQ_OS and so on. */
9289 : 64 : other_op = gfc_equivalent_op (op);
9290 : :
9291 : 64 : if (other_op != INTRINSIC_NONE)
9292 : 21 : gfc_current_ns->operator_access[other_op] = access;
9293 : : }
9294 : : else
9295 : : {
9296 : 0 : gfc_error ("Access specification of the %s operator at %C has "
9297 : : "already been specified", gfc_op2string (op));
9298 : 0 : goto done;
9299 : : }
9300 : :
9301 : : break;
9302 : :
9303 : 4 : case INTERFACE_USER_OP:
9304 : 4 : uop = gfc_get_uop (name);
9305 : :
9306 : 4 : if (uop->access == ACCESS_UNKNOWN)
9307 : : {
9308 : 3 : uop->access = access;
9309 : : }
9310 : : else
9311 : : {
9312 : 1 : gfc_error ("Access specification of the .%s. operator at %C "
9313 : : "has already been specified", uop->name);
9314 : 1 : goto done;
9315 : : }
9316 : :
9317 : 3 : break;
9318 : : }
9319 : :
9320 : 2672 : if (gfc_match_char (',') == MATCH_NO)
9321 : : break;
9322 : : }
9323 : :
9324 : 1594 : if (gfc_match_eos () != MATCH_YES)
9325 : 0 : goto syntax;
9326 : : return MATCH_YES;
9327 : :
9328 : 0 : syntax:
9329 : 0 : gfc_syntax_error (st);
9330 : :
9331 : : done:
9332 : : return MATCH_ERROR;
9333 : : }
9334 : :
9335 : :
9336 : : match
9337 : 23 : gfc_match_protected (void)
9338 : : {
9339 : 23 : gfc_symbol *sym;
9340 : 23 : match m;
9341 : 23 : char c;
9342 : :
9343 : : /* PROTECTED has already been seen, but must be followed by whitespace
9344 : : or ::. */
9345 : 23 : c = gfc_peek_ascii_char ();
9346 : 23 : if (!gfc_is_whitespace (c) && c != ':')
9347 : : return MATCH_NO;
9348 : :
9349 : 22 : if (!gfc_current_ns->proc_name
9350 : 20 : || gfc_current_ns->proc_name->attr.flavor != FL_MODULE)
9351 : : {
9352 : 3 : gfc_error ("PROTECTED at %C only allowed in specification "
9353 : : "part of a module");
9354 : 3 : return MATCH_ERROR;
9355 : :
9356 : : }
9357 : :
9358 : 19 : gfc_match (" ::");
9359 : :
9360 : 19 : if (!gfc_notify_std (GFC_STD_F2003, "PROTECTED statement at %C"))
9361 : : return MATCH_ERROR;
9362 : :
9363 : : /* PROTECTED has an entity-list. */
9364 : 18 : if (gfc_match_eos () == MATCH_YES)
9365 : 0 : goto syntax;
9366 : :
9367 : 26 : for(;;)
9368 : : {
9369 : 26 : m = gfc_match_symbol (&sym, 0);
9370 : 26 : switch (m)
9371 : : {
9372 : 26 : case MATCH_YES:
9373 : 26 : if (!gfc_add_protected (&sym->attr, sym->name, &gfc_current_locus))
9374 : : return MATCH_ERROR;
9375 : 25 : goto next_item;
9376 : :
9377 : : case MATCH_NO:
9378 : : break;
9379 : :
9380 : : case MATCH_ERROR:
9381 : : return MATCH_ERROR;
9382 : : }
9383 : :
9384 : 25 : next_item:
9385 : 25 : if (gfc_match_eos () == MATCH_YES)
9386 : : break;
9387 : 8 : if (gfc_match_char (',') != MATCH_YES)
9388 : 0 : goto syntax;
9389 : : }
9390 : :
9391 : : return MATCH_YES;
9392 : :
9393 : 0 : syntax:
9394 : 0 : gfc_error ("Syntax error in PROTECTED statement at %C");
9395 : 0 : return MATCH_ERROR;
9396 : : }
9397 : :
9398 : :
9399 : : /* The PRIVATE statement is a bit weird in that it can be an attribute
9400 : : declaration, but also works as a standalone statement inside of a
9401 : : type declaration or a module. */
9402 : :
9403 : : match
9404 : 27598 : gfc_match_private (gfc_statement *st)
9405 : : {
9406 : 27598 : gfc_state_data *prev;
9407 : :
9408 : 27598 : if (gfc_match ("private") != MATCH_YES)
9409 : : return MATCH_NO;
9410 : :
9411 : : /* Try matching PRIVATE without an access-list. */
9412 : 1481 : if (gfc_match_eos () == MATCH_YES)
9413 : : {
9414 : 1186 : prev = gfc_state_stack->previous;
9415 : 1186 : if (gfc_current_state () != COMP_MODULE
9416 : 352 : && !(gfc_current_state () == COMP_DERIVED
9417 : 319 : && prev && prev->state == COMP_MODULE)
9418 : 34 : && !(gfc_current_state () == COMP_DERIVED_CONTAINS
9419 : 32 : && prev->previous && prev->previous->state == COMP_MODULE))
9420 : : {
9421 : 2 : gfc_error ("PRIVATE statement at %C is only allowed in the "
9422 : : "specification part of a module");
9423 : 2 : return MATCH_ERROR;
9424 : : }
9425 : :
9426 : 1184 : *st = ST_PRIVATE;
9427 : 1184 : return MATCH_YES;
9428 : : }
9429 : :
9430 : : /* At this point in free-form source code, PRIVATE must be followed
9431 : : by whitespace or ::. */
9432 : 295 : if (gfc_current_form == FORM_FREE)
9433 : : {
9434 : 293 : char c = gfc_peek_ascii_char ();
9435 : 293 : if (!gfc_is_whitespace (c) && c != ':')
9436 : : return MATCH_NO;
9437 : : }
9438 : :
9439 : 294 : prev = gfc_state_stack->previous;
9440 : 294 : if (gfc_current_state () != COMP_MODULE
9441 : 1 : && !(gfc_current_state () == COMP_DERIVED
9442 : 0 : && prev && prev->state == COMP_MODULE)
9443 : 1 : && !(gfc_current_state () == COMP_DERIVED_CONTAINS
9444 : 0 : && prev->previous && prev->previous->state == COMP_MODULE))
9445 : : {
9446 : 1 : gfc_error ("PRIVATE statement at %C is only allowed in the "
9447 : : "specification part of a module");
9448 : 1 : return MATCH_ERROR;
9449 : : }
9450 : :
9451 : 293 : *st = ST_ATTR_DECL;
9452 : 293 : return access_attr_decl (ST_PRIVATE);
9453 : : }
9454 : :
9455 : :
9456 : : match
9457 : 1661 : gfc_match_public (gfc_statement *st)
9458 : : {
9459 : 1661 : if (gfc_match ("public") != MATCH_YES)
9460 : : return MATCH_NO;
9461 : :
9462 : : /* Try matching PUBLIC without an access-list. */
9463 : 1346 : if (gfc_match_eos () == MATCH_YES)
9464 : : {
9465 : 38 : if (gfc_current_state () != COMP_MODULE)
9466 : : {
9467 : 2 : gfc_error ("PUBLIC statement at %C is only allowed in the "
9468 : : "specification part of a module");
9469 : 2 : return MATCH_ERROR;
9470 : : }
9471 : :
9472 : 36 : *st = ST_PUBLIC;
9473 : 36 : return MATCH_YES;
9474 : : }
9475 : :
9476 : : /* At this point in free-form source code, PUBLIC must be followed
9477 : : by whitespace or ::. */
9478 : 1308 : if (gfc_current_form == FORM_FREE)
9479 : : {
9480 : 1306 : char c = gfc_peek_ascii_char ();
9481 : 1306 : if (!gfc_is_whitespace (c) && c != ':')
9482 : : return MATCH_NO;
9483 : : }
9484 : :
9485 : 1307 : if (gfc_current_state () != COMP_MODULE)
9486 : : {
9487 : 1 : gfc_error ("PUBLIC statement at %C is only allowed in the "
9488 : : "specification part of a module");
9489 : 1 : return MATCH_ERROR;
9490 : : }
9491 : :
9492 : 1306 : *st = ST_ATTR_DECL;
9493 : 1306 : return access_attr_decl (ST_PUBLIC);
9494 : : }
9495 : :
9496 : :
9497 : : /* Workhorse for gfc_match_parameter. */
9498 : :
9499 : : static match
9500 : 7480 : do_parm (void)
9501 : : {
9502 : 7480 : gfc_symbol *sym;
9503 : 7480 : gfc_expr *init;
9504 : 7480 : match m;
9505 : 7480 : bool t;
9506 : :
9507 : 7480 : m = gfc_match_symbol (&sym, 0);
9508 : 7480 : if (m == MATCH_NO)
9509 : 0 : gfc_error ("Expected variable name at %C in PARAMETER statement");
9510 : :
9511 : 7480 : if (m != MATCH_YES)
9512 : : return m;
9513 : :
9514 : 7480 : if (gfc_match_char ('=') == MATCH_NO)
9515 : : {
9516 : 0 : gfc_error ("Expected = sign in PARAMETER statement at %C");
9517 : 0 : return MATCH_ERROR;
9518 : : }
9519 : :
9520 : 7480 : m = gfc_match_init_expr (&init);
9521 : 7480 : if (m == MATCH_NO)
9522 : 0 : gfc_error ("Expected expression at %C in PARAMETER statement");
9523 : 7480 : if (m != MATCH_YES)
9524 : : return m;
9525 : :
9526 : 7479 : if (sym->ts.type == BT_UNKNOWN
9527 : 7479 : && !gfc_set_default_type (sym, 1, NULL))
9528 : : {
9529 : 1 : m = MATCH_ERROR;
9530 : 1 : goto cleanup;
9531 : : }
9532 : :
9533 : 7478 : if (!gfc_check_assign_symbol (sym, NULL, init)
9534 : 7478 : || !gfc_add_flavor (&sym->attr, FL_PARAMETER, sym->name, NULL))
9535 : : {
9536 : 1 : m = MATCH_ERROR;
9537 : 1 : goto cleanup;
9538 : : }
9539 : :
9540 : 7477 : if (sym->value)
9541 : : {
9542 : 1 : gfc_error ("Initializing already initialized variable at %C");
9543 : 1 : m = MATCH_ERROR;
9544 : 1 : goto cleanup;
9545 : : }
9546 : :
9547 : 7476 : t = add_init_expr_to_sym (sym->name, &init, &gfc_current_locus);
9548 : 7476 : return (t) ? MATCH_YES : MATCH_ERROR;
9549 : :
9550 : 3 : cleanup:
9551 : 3 : gfc_free_expr (init);
9552 : 3 : return m;
9553 : : }
9554 : :
9555 : :
9556 : : /* Match a parameter statement, with the weird syntax that these have. */
9557 : :
9558 : : match
9559 : 6770 : gfc_match_parameter (void)
9560 : : {
9561 : 6770 : const char *term = " )%t";
9562 : 6770 : match m;
9563 : :
9564 : 6770 : if (gfc_match_char ('(') == MATCH_NO)
9565 : : {
9566 : : /* With legacy PARAMETER statements, don't expect a terminating ')'. */
9567 : 28 : if (!gfc_notify_std (GFC_STD_LEGACY, "PARAMETER without '()' at %C"))
9568 : : return MATCH_NO;
9569 : 6769 : term = " %t";
9570 : : }
9571 : :
9572 : 7480 : for (;;)
9573 : : {
9574 : 7480 : m = do_parm ();
9575 : 7480 : if (m != MATCH_YES)
9576 : : break;
9577 : :
9578 : 7476 : if (gfc_match (term) == MATCH_YES)
9579 : : break;
9580 : :
9581 : 711 : if (gfc_match_char (',') != MATCH_YES)
9582 : : {
9583 : 0 : gfc_error ("Unexpected characters in PARAMETER statement at %C");
9584 : 0 : m = MATCH_ERROR;
9585 : 0 : break;
9586 : : }
9587 : : }
9588 : :
9589 : : return m;
9590 : : }
9591 : :
9592 : :
9593 : : match
9594 : 13 : gfc_match_automatic (void)
9595 : : {
9596 : 13 : gfc_symbol *sym;
9597 : 13 : match m;
9598 : 13 : bool seen_symbol = false;
9599 : :
9600 : 13 : if (!flag_dec_static)
9601 : : {
9602 : 2 : gfc_error ("%s at %C is a DEC extension, enable with "
9603 : : "%<-fdec-static%>",
9604 : : "AUTOMATIC"
9605 : : );
9606 : 2 : return MATCH_ERROR;
9607 : : }
9608 : :
9609 : 11 : gfc_match (" ::");
9610 : :
9611 : 11 : for (;;)
9612 : : {
9613 : 11 : m = gfc_match_symbol (&sym, 0);
9614 : 11 : switch (m)
9615 : : {
9616 : : case MATCH_NO:
9617 : : break;
9618 : :
9619 : : case MATCH_ERROR:
9620 : : return MATCH_ERROR;
9621 : :
9622 : 9 : case MATCH_YES:
9623 : 9 : if (!gfc_add_automatic (&sym->attr, sym->name, &gfc_current_locus))
9624 : : return MATCH_ERROR;
9625 : : seen_symbol = true;
9626 : : break;
9627 : : }
9628 : :
9629 : 9 : if (gfc_match_eos () == MATCH_YES)
9630 : : break;
9631 : 0 : if (gfc_match_char (',') != MATCH_YES)
9632 : 0 : goto syntax;
9633 : : }
9634 : :
9635 : 9 : if (!seen_symbol)
9636 : : {
9637 : 2 : gfc_error ("Expected entity-list in AUTOMATIC statement at %C");
9638 : 2 : return MATCH_ERROR;
9639 : : }
9640 : :
9641 : : return MATCH_YES;
9642 : :
9643 : 0 : syntax:
9644 : 0 : gfc_error ("Syntax error in AUTOMATIC statement at %C");
9645 : 0 : return MATCH_ERROR;
9646 : : }
9647 : :
9648 : :
9649 : : match
9650 : 7 : gfc_match_static (void)
9651 : : {
9652 : 7 : gfc_symbol *sym;
9653 : 7 : match m;
9654 : 7 : bool seen_symbol = false;
9655 : :
9656 : 7 : if (!flag_dec_static)
9657 : : {
9658 : 2 : gfc_error ("%s at %C is a DEC extension, enable with "
9659 : : "%<-fdec-static%>",
9660 : : "STATIC");
9661 : 2 : return MATCH_ERROR;
9662 : : }
9663 : :
9664 : 5 : gfc_match (" ::");
9665 : :
9666 : 5 : for (;;)
9667 : : {
9668 : 5 : m = gfc_match_symbol (&sym, 0);
9669 : 5 : switch (m)
9670 : : {
9671 : : case MATCH_NO:
9672 : : break;
9673 : :
9674 : : case MATCH_ERROR:
9675 : : return MATCH_ERROR;
9676 : :
9677 : 3 : case MATCH_YES:
9678 : 3 : if (!gfc_add_save (&sym->attr, SAVE_EXPLICIT, sym->name,
9679 : : &gfc_current_locus))
9680 : : return MATCH_ERROR;
9681 : : seen_symbol = true;
9682 : : break;
9683 : : }
9684 : :
9685 : 3 : if (gfc_match_eos () == MATCH_YES)
9686 : : break;
9687 : 0 : if (gfc_match_char (',') != MATCH_YES)
9688 : 0 : goto syntax;
9689 : : }
9690 : :
9691 : 3 : if (!seen_symbol)
9692 : : {
9693 : 2 : gfc_error ("Expected entity-list in STATIC statement at %C");
9694 : 2 : return MATCH_ERROR;
9695 : : }
9696 : :
9697 : : return MATCH_YES;
9698 : :
9699 : 0 : syntax:
9700 : 0 : gfc_error ("Syntax error in STATIC statement at %C");
9701 : 0 : return MATCH_ERROR;
9702 : : }
9703 : :
9704 : :
9705 : : /* Save statements have a special syntax. */
9706 : :
9707 : : match
9708 : 272 : gfc_match_save (void)
9709 : : {
9710 : 272 : char n[GFC_MAX_SYMBOL_LEN+1];
9711 : 272 : gfc_common_head *c;
9712 : 272 : gfc_symbol *sym;
9713 : 272 : match m;
9714 : :
9715 : 272 : if (gfc_match_eos () == MATCH_YES)
9716 : : {
9717 : 148 : if (gfc_current_ns->seen_save)
9718 : : {
9719 : 7 : if (!gfc_notify_std (GFC_STD_LEGACY, "Blanket SAVE statement at %C "
9720 : : "follows previous SAVE statement"))
9721 : : return MATCH_ERROR;
9722 : : }
9723 : :
9724 : 147 : gfc_current_ns->save_all = gfc_current_ns->seen_save = 1;
9725 : 147 : return MATCH_YES;
9726 : : }
9727 : :
9728 : 124 : if (gfc_current_ns->save_all)
9729 : : {
9730 : 7 : if (!gfc_notify_std (GFC_STD_LEGACY, "SAVE statement at %C follows "
9731 : : "blanket SAVE statement"))
9732 : : return MATCH_ERROR;
9733 : : }
9734 : :
9735 : 123 : gfc_match (" ::");
9736 : :
9737 : 183 : for (;;)
9738 : : {
9739 : 183 : m = gfc_match_symbol (&sym, 0);
9740 : 183 : switch (m)
9741 : : {
9742 : 183 : case MATCH_YES:
9743 : 183 : if (!gfc_add_save (&sym->attr, SAVE_EXPLICIT, sym->name,
9744 : : &gfc_current_locus))
9745 : : return MATCH_ERROR;
9746 : 181 : goto next_item;
9747 : :
9748 : : case MATCH_NO:
9749 : : break;
9750 : :
9751 : : case MATCH_ERROR:
9752 : : return MATCH_ERROR;
9753 : : }
9754 : :
9755 : 0 : m = gfc_match (" / %n /", &n);
9756 : 0 : if (m == MATCH_ERROR)
9757 : : return MATCH_ERROR;
9758 : 0 : if (m == MATCH_NO)
9759 : 0 : goto syntax;
9760 : :
9761 : 0 : c = gfc_get_common (n, 0);
9762 : 0 : c->saved = 1;
9763 : :
9764 : 0 : gfc_current_ns->seen_save = 1;
9765 : :
9766 : 181 : next_item:
9767 : 181 : if (gfc_match_eos () == MATCH_YES)
9768 : : break;
9769 : 60 : if (gfc_match_char (',') != MATCH_YES)
9770 : 0 : goto syntax;
9771 : : }
9772 : :
9773 : : return MATCH_YES;
9774 : :
9775 : 0 : syntax:
9776 : 0 : if (gfc_current_ns->seen_save)
9777 : : {
9778 : 0 : gfc_error ("Syntax error in SAVE statement at %C");
9779 : 0 : return MATCH_ERROR;
9780 : : }
9781 : : else
9782 : : return MATCH_NO;
9783 : : }
9784 : :
9785 : :
9786 : : match
9787 : 89 : gfc_match_value (void)
9788 : : {
9789 : 89 : gfc_symbol *sym;
9790 : 89 : match m;
9791 : :
9792 : : /* This is not allowed within a BLOCK construct! */
9793 : 89 : if (gfc_current_state () == COMP_BLOCK)
9794 : : {
9795 : 2 : gfc_error ("VALUE is not allowed inside of BLOCK at %C");
9796 : 2 : return MATCH_ERROR;
9797 : : }
9798 : :
9799 : 87 : if (!gfc_notify_std (GFC_STD_F2003, "VALUE statement at %C"))
9800 : : return MATCH_ERROR;
9801 : :
9802 : 86 : if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
9803 : : {
9804 : : return MATCH_ERROR;
9805 : : }
9806 : :
9807 : 86 : if (gfc_match_eos () == MATCH_YES)
9808 : 0 : goto syntax;
9809 : :
9810 : 112 : for(;;)
9811 : : {
9812 : 112 : m = gfc_match_symbol (&sym, 0);
9813 : 112 : switch (m)
9814 : : {
9815 : 112 : case MATCH_YES:
9816 : 112 : if (!gfc_add_value (&sym->attr, sym->name, &gfc_current_locus))
9817 : : return MATCH_ERROR;
9818 : 105 : goto next_item;
9819 : :
9820 : : case MATCH_NO:
9821 : : break;
9822 : :
9823 : : case MATCH_ERROR:
9824 : : return MATCH_ERROR;
9825 : : }
9826 : :
9827 : 105 : next_item:
9828 : 105 : if (gfc_match_eos () == MATCH_YES)
9829 : : break;
9830 : 26 : if (gfc_match_char (',') != MATCH_YES)
9831 : 0 : goto syntax;
9832 : : }
9833 : :
9834 : : return MATCH_YES;
9835 : :
9836 : 0 : syntax:
9837 : 0 : gfc_error ("Syntax error in VALUE statement at %C");
9838 : 0 : return MATCH_ERROR;
9839 : : }
9840 : :
9841 : :
9842 : : match
9843 : 85 : gfc_match_volatile (void)
9844 : : {
9845 : 85 : gfc_symbol *sym;
9846 : 85 : char *name;
9847 : 85 : match m;
9848 : :
9849 : 85 : if (!gfc_notify_std (GFC_STD_F2003, "VOLATILE statement at %C"))
9850 : : return MATCH_ERROR;
9851 : :
9852 : 84 : if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
9853 : : {
9854 : : return MATCH_ERROR;
9855 : : }
9856 : :
9857 : 84 : if (gfc_match_eos () == MATCH_YES)
9858 : 1 : goto syntax;
9859 : :
9860 : 108 : for(;;)
9861 : : {
9862 : : /* VOLATILE is special because it can be added to host-associated
9863 : : symbols locally. Except for coarrays. */
9864 : 108 : m = gfc_match_symbol (&sym, 1);
9865 : 108 : switch (m)
9866 : : {
9867 : 108 : case MATCH_YES:
9868 : 108 : name = XCNEWVAR (char, strlen (sym->name) + 1);
9869 : 108 : strcpy (name, sym->name);
9870 : 108 : if (!check_function_name (name))
9871 : : return MATCH_ERROR;
9872 : : /* F2008, C560+C561. VOLATILE for host-/use-associated variable or
9873 : : for variable in a BLOCK which is defined outside of the BLOCK. */
9874 : 107 : if (sym->ns != gfc_current_ns && sym->attr.codimension)
9875 : : {
9876 : 2 : gfc_error ("Specifying VOLATILE for coarray variable %qs at "
9877 : : "%C, which is use-/host-associated", sym->name);
9878 : 2 : return MATCH_ERROR;
9879 : : }
9880 : 105 : if (!gfc_add_volatile (&sym->attr, sym->name, &gfc_current_locus))
9881 : : return MATCH_ERROR;
9882 : 102 : goto next_item;
9883 : :
9884 : : case MATCH_NO:
9885 : : break;
9886 : :
9887 : : case MATCH_ERROR:
9888 : : return MATCH_ERROR;
9889 : : }
9890 : :
9891 : 102 : next_item:
9892 : 102 : if (gfc_match_eos () == MATCH_YES)
9893 : : break;
9894 : 25 : if (gfc_match_char (',') != MATCH_YES)
9895 : 0 : goto syntax;
9896 : : }
9897 : :
9898 : : return MATCH_YES;
9899 : :
9900 : 1 : syntax:
9901 : 1 : gfc_error ("Syntax error in VOLATILE statement at %C");
9902 : 1 : return MATCH_ERROR;
9903 : : }
9904 : :
9905 : :
9906 : : match
9907 : 11 : gfc_match_asynchronous (void)
9908 : : {
9909 : 11 : gfc_symbol *sym;
9910 : 11 : char *name;
9911 : 11 : match m;
9912 : :
9913 : 11 : if (!gfc_notify_std (GFC_STD_F2003, "ASYNCHRONOUS statement at %C"))
9914 : : return MATCH_ERROR;
9915 : :
9916 : 10 : if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
9917 : : {
9918 : : return MATCH_ERROR;
9919 : : }
9920 : :
9921 : 10 : if (gfc_match_eos () == MATCH_YES)
9922 : 0 : goto syntax;
9923 : :
9924 : 10 : for(;;)
9925 : : {
9926 : : /* ASYNCHRONOUS is special because it can be added to host-associated
9927 : : symbols locally. */
9928 : 10 : m = gfc_match_symbol (&sym, 1);
9929 : 10 : switch (m)
9930 : : {
9931 : 10 : case MATCH_YES:
9932 : 10 : name = XCNEWVAR (char, strlen (sym->name) + 1);
9933 : 10 : strcpy (name, sym->name);
9934 : 10 : if (!check_function_name (name))
9935 : : return MATCH_ERROR;
9936 : 9 : if (!gfc_add_asynchronous (&sym->attr, sym->name, &gfc_current_locus))
9937 : : return MATCH_ERROR;
9938 : 7 : goto next_item;
9939 : :
9940 : : case MATCH_NO:
9941 : : break;
9942 : :
9943 : : case MATCH_ERROR:
9944 : : return MATCH_ERROR;
9945 : : }
9946 : :
9947 : 7 : next_item:
9948 : 7 : if (gfc_match_eos () == MATCH_YES)
9949 : : break;
9950 : 0 : if (gfc_match_char (',') != MATCH_YES)
9951 : 0 : goto syntax;
9952 : : }
9953 : :
9954 : : return MATCH_YES;
9955 : :
9956 : 0 : syntax:
9957 : 0 : gfc_error ("Syntax error in ASYNCHRONOUS statement at %C");
9958 : 0 : return MATCH_ERROR;
9959 : : }
9960 : :
9961 : :
9962 : : /* Match a module procedure statement in a submodule. */
9963 : :
9964 : : match
9965 : 701587 : gfc_match_submod_proc (void)
9966 : : {
9967 : 701587 : char name[GFC_MAX_SYMBOL_LEN + 1];
9968 : 701587 : gfc_symbol *sym, *fsym;
9969 : 701587 : match m;
9970 : 701587 : gfc_formal_arglist *formal, *head, *tail;
9971 : :
9972 : 701587 : if (gfc_current_state () != COMP_CONTAINS
9973 : 14408 : || !(gfc_state_stack->previous
9974 : 14408 : && (gfc_state_stack->previous->state == COMP_SUBMODULE
9975 : 14408 : || gfc_state_stack->previous->state == COMP_MODULE)))
9976 : : return MATCH_NO;
9977 : :
9978 : 7135 : m = gfc_match (" module% procedure% %n", name);
9979 : 7135 : if (m != MATCH_YES)
9980 : : return m;
9981 : :
9982 : 181 : if (!gfc_notify_std (GFC_STD_F2008, "MODULE PROCEDURE declaration "
9983 : : "at %C"))
9984 : : return MATCH_ERROR;
9985 : :
9986 : 181 : if (get_proc_name (name, &sym, false))
9987 : : return MATCH_ERROR;
9988 : :
9989 : : /* Make sure that the result field is appropriately filled. */
9990 : 181 : if (sym->tlink && sym->tlink->attr.function)
9991 : : {
9992 : 53 : if (sym->tlink->result && sym->tlink->result != sym->tlink)
9993 : : {
9994 : 22 : sym->result = sym->tlink->result;
9995 : 22 : if (!sym->result->attr.use_assoc)
9996 : : {
9997 : 7 : gfc_symtree *st = gfc_new_symtree (&gfc_current_ns->sym_root,
9998 : : sym->result->name);
9999 : 7 : st->n.sym = sym->result;
10000 : 7 : sym->result->refs++;
10001 : : }
10002 : : }
10003 : : else
10004 : 31 : sym->result = sym;
10005 : : }
10006 : :
10007 : : /* Set declared_at as it might point to, e.g., a PUBLIC statement, if
10008 : : the symbol existed before. */
10009 : 181 : sym->declared_at = gfc_current_locus;
10010 : :
10011 : 181 : if (!sym->attr.module_procedure)
10012 : : return MATCH_ERROR;
10013 : :
10014 : : /* Signal match_end to expect "end procedure". */
10015 : 179 : sym->abr_modproc_decl = 1;
10016 : :
10017 : : /* Change from IFSRC_IFBODY coming from the interface declaration. */
10018 : 179 : sym->attr.if_source = IFSRC_DECL;
10019 : :
10020 : 179 : gfc_new_block = sym;
10021 : :
10022 : : /* Make a new formal arglist with the symbols in the procedure
10023 : : namespace. */
10024 : 179 : head = tail = NULL;
10025 : 392 : for (formal = sym->formal; formal && formal->sym; formal = formal->next)
10026 : : {
10027 : 213 : if (formal == sym->formal)
10028 : 154 : head = tail = gfc_get_formal_arglist ();
10029 : : else
10030 : : {
10031 : 59 : tail->next = gfc_get_formal_arglist ();
10032 : 59 : tail = tail->next;
10033 : : }
10034 : :
10035 : 213 : if (gfc_copy_dummy_sym (&fsym, formal->sym, 0))
10036 : 0 : goto cleanup;
10037 : :
10038 : 213 : tail->sym = fsym;
10039 : 213 : gfc_set_sym_referenced (fsym);
10040 : : }
10041 : :
10042 : : /* The dummy symbols get cleaned up, when the formal_namespace of the
10043 : : interface declaration is cleared. This allows us to add the
10044 : : explicit interface as is done for other type of procedure. */
10045 : 179 : if (!gfc_add_explicit_interface (sym, IFSRC_DECL, head,
10046 : : &gfc_current_locus))
10047 : : return MATCH_ERROR;
10048 : :
10049 : 179 : if (gfc_match_eos () != MATCH_YES)
10050 : : {
10051 : : /* Unset st->n.sym. Note: in reject_statement (), the symbol changes are
10052 : : undone, such that the st->n.sym->formal points to the original symbol;
10053 : : if now this namespace is finalized, the formal namespace is freed,
10054 : : but it might be still needed in the parent namespace. */
10055 : 1 : gfc_symtree *st = gfc_find_symtree (gfc_current_ns->sym_root, sym->name);
10056 : 1 : st->n.sym = NULL;
10057 : 1 : gfc_free_symbol (sym->tlink);
10058 : 1 : sym->tlink = NULL;
10059 : 1 : sym->refs--;
10060 : 1 : gfc_syntax_error (ST_MODULE_PROC);
10061 : 1 : return MATCH_ERROR;
10062 : : }
10063 : :
10064 : : return MATCH_YES;
10065 : :
10066 : 0 : cleanup:
10067 : 0 : gfc_free_formal_arglist (head);
10068 : 0 : return MATCH_ERROR;
10069 : : }
10070 : :
10071 : :
10072 : : /* Match a module procedure statement. Note that we have to modify
10073 : : symbols in the parent's namespace because the current one was there
10074 : : to receive symbols that are in an interface's formal argument list. */
10075 : :
10076 : : match
10077 : 1406 : gfc_match_modproc (void)
10078 : : {
10079 : 1406 : char name[GFC_MAX_SYMBOL_LEN + 1];
10080 : 1406 : gfc_symbol *sym;
10081 : 1406 : match m;
10082 : 1406 : locus old_locus;
10083 : 1406 : gfc_namespace *module_ns;
10084 : 1406 : gfc_interface *old_interface_head, *interface;
10085 : :
10086 : 1406 : if (gfc_state_stack->previous == NULL
10087 : 1404 : || (gfc_state_stack->state != COMP_INTERFACE
10088 : 4 : && (gfc_state_stack->state != COMP_CONTAINS
10089 : 4 : || gfc_state_stack->previous->state != COMP_INTERFACE))
10090 : 1400 : || current_interface.type == INTERFACE_NAMELESS
10091 : 1400 : || current_interface.type == INTERFACE_ABSTRACT)
10092 : : {
10093 : 7 : gfc_error ("MODULE PROCEDURE at %C must be in a generic module "
10094 : : "interface");
10095 : 7 : return MATCH_ERROR;
10096 : : }
10097 : :
10098 : 1399 : module_ns = gfc_current_ns->parent;
10099 : 1405 : for (; module_ns; module_ns = module_ns->parent)
10100 : 1405 : if (module_ns->proc_name->attr.flavor == FL_MODULE
10101 : 29 : || module_ns->proc_name->attr.flavor == FL_PROGRAM
10102 : 12 : || (module_ns->proc_name->attr.flavor == FL_PROCEDURE
10103 : 12 : && !module_ns->proc_name->attr.contained))
10104 : : break;
10105 : :
10106 : 1399 : if (module_ns == NULL)
10107 : : return MATCH_ERROR;
10108 : :
10109 : : /* Store the current state of the interface. We will need it if we
10110 : : end up with a syntax error and need to recover. */
10111 : 1399 : old_interface_head = gfc_current_interface_head ();
10112 : :
10113 : : /* Check if the F2008 optional double colon appears. */
10114 : 1399 : gfc_gobble_whitespace ();
10115 : 1399 : old_locus = gfc_current_locus;
10116 : 1399 : if (gfc_match ("::") == MATCH_YES)
10117 : : {
10118 : 25 : if (!gfc_notify_std (GFC_STD_F2008, "double colon in "
10119 : : "MODULE PROCEDURE statement at %L", &old_locus))
10120 : : return MATCH_ERROR;
10121 : : }
10122 : : else
10123 : 1374 : gfc_current_locus = old_locus;
10124 : :
10125 : 1770 : for (;;)
10126 : : {
10127 : 1770 : bool last = false;
10128 : 1770 : old_locus = gfc_current_locus;
10129 : :
10130 : 1770 : m = gfc_match_name (name);
10131 : 1770 : if (m == MATCH_NO)
10132 : 1 : goto syntax;
10133 : 1769 : if (m != MATCH_YES)
10134 : : return MATCH_ERROR;
10135 : :
10136 : : /* Check for syntax error before starting to add symbols to the
10137 : : current namespace. */
10138 : 1769 : if (gfc_match_eos () == MATCH_YES)
10139 : : last = true;
10140 : :
10141 : 376 : if (!last && gfc_match_char (',') != MATCH_YES)
10142 : 2 : goto syntax;
10143 : :
10144 : : /* Now we're sure the syntax is valid, we process this item
10145 : : further. */
10146 : 1767 : if (gfc_get_symbol (name, module_ns, &sym))
10147 : : return MATCH_ERROR;
10148 : :
10149 : 1767 : if (sym->attr.intrinsic)
10150 : : {
10151 : 1 : gfc_error ("Intrinsic procedure at %L cannot be a MODULE "
10152 : : "PROCEDURE", &old_locus);
10153 : 1 : return MATCH_ERROR;
10154 : : }
10155 : :
10156 : 1766 : if (sym->attr.proc != PROC_MODULE
10157 : 1766 : && !gfc_add_procedure (&sym->attr, PROC_MODULE, sym->name, NULL))
10158 : : return MATCH_ERROR;
10159 : :
10160 : 1763 : if (!gfc_add_interface (sym))
10161 : : return MATCH_ERROR;
10162 : :
10163 : 1760 : sym->attr.mod_proc = 1;
10164 : 1760 : sym->declared_at = old_locus;
10165 : :
10166 : 1760 : if (last)
10167 : : break;
10168 : : }
10169 : :
10170 : : return MATCH_YES;
10171 : :
10172 : 3 : syntax:
10173 : : /* Restore the previous state of the interface. */
10174 : 3 : interface = gfc_current_interface_head ();
10175 : 3 : gfc_set_current_interface_head (old_interface_head);
10176 : :
10177 : : /* Free the new interfaces. */
10178 : 10 : while (interface != old_interface_head)
10179 : : {
10180 : 4 : gfc_interface *i = interface->next;
10181 : 4 : free (interface);
10182 : 4 : interface = i;
10183 : : }
10184 : :
10185 : : /* And issue a syntax error. */
10186 : 3 : gfc_syntax_error (ST_MODULE_PROC);
10187 : 3 : return MATCH_ERROR;
10188 : : }
10189 : :
10190 : :
10191 : : /* Check a derived type that is being extended. */
10192 : :
10193 : : static gfc_symbol*
10194 : 1428 : check_extended_derived_type (char *name)
10195 : : {
10196 : 1428 : gfc_symbol *extended;
10197 : :
10198 : 1428 : if (gfc_find_symbol (name, gfc_current_ns, 1, &extended))
10199 : : {
10200 : 0 : gfc_error ("Ambiguous symbol in TYPE definition at %C");
10201 : 0 : return NULL;
10202 : : }
10203 : :
10204 : 1428 : extended = gfc_find_dt_in_generic (extended);
10205 : :
10206 : : /* F08:C428. */
10207 : 1428 : if (!extended)
10208 : : {
10209 : 2 : gfc_error ("Symbol %qs at %C has not been previously defined", name);
10210 : 2 : return NULL;
10211 : : }
10212 : :
10213 : 1426 : if (extended->attr.flavor != FL_DERIVED)
10214 : : {
10215 : 0 : gfc_error ("%qs in EXTENDS expression at %C is not a "
10216 : : "derived type", name);
10217 : 0 : return NULL;
10218 : : }
10219 : :
10220 : 1426 : if (extended->attr.is_bind_c)
10221 : : {
10222 : 1 : gfc_error ("%qs cannot be extended at %C because it "
10223 : : "is BIND(C)", extended->name);
10224 : 1 : return NULL;
10225 : : }
10226 : :
10227 : 1425 : if (extended->attr.sequence)
10228 : : {
10229 : 1 : gfc_error ("%qs cannot be extended at %C because it "
10230 : : "is a SEQUENCE type", extended->name);
10231 : 1 : return NULL;
10232 : : }
10233 : :
10234 : : return extended;
10235 : : }
10236 : :
10237 : :
10238 : : /* Match the optional attribute specifiers for a type declaration.
10239 : : Return MATCH_ERROR if an error is encountered in one of the handled
10240 : : attributes (public, private, bind(c)), MATCH_NO if what's found is
10241 : : not a handled attribute, and MATCH_YES otherwise. TODO: More error
10242 : : checking on attribute conflicts needs to be done. */
10243 : :
10244 : : static match
10245 : 17842 : gfc_get_type_attr_spec (symbol_attribute *attr, char *name)
10246 : : {
10247 : : /* See if the derived type is marked as private. */
10248 : 17842 : if (gfc_match (" , private") == MATCH_YES)
10249 : : {
10250 : 15 : if (gfc_current_state () != COMP_MODULE)
10251 : : {
10252 : 1 : gfc_error ("Derived type at %C can only be PRIVATE in the "
10253 : : "specification part of a module");
10254 : 1 : return MATCH_ERROR;
10255 : : }
10256 : :
10257 : 14 : if (!gfc_add_access (attr, ACCESS_PRIVATE, NULL, NULL))
10258 : : return MATCH_ERROR;
10259 : : }
10260 : 17827 : else if (gfc_match (" , public") == MATCH_YES)
10261 : : {
10262 : 531 : if (gfc_current_state () != COMP_MODULE)
10263 : : {
10264 : 0 : gfc_error ("Derived type at %C can only be PUBLIC in the "
10265 : : "specification part of a module");
10266 : 0 : return MATCH_ERROR;
10267 : : }
10268 : :
10269 : 531 : if (!gfc_add_access (attr, ACCESS_PUBLIC, NULL, NULL))
10270 : : return MATCH_ERROR;
10271 : : }
10272 : 17296 : else if (gfc_match (" , bind ( c )") == MATCH_YES)
10273 : : {
10274 : : /* If the type is defined to be bind(c) it then needs to make
10275 : : sure that all fields are interoperable. This will
10276 : : need to be a semantic check on the finished derived type.
10277 : : See 15.2.3 (lines 9-12) of F2003 draft. */
10278 : 400 : if (!gfc_add_is_bind_c (attr, NULL, &gfc_current_locus, 0))
10279 : : return MATCH_ERROR;
10280 : :
10281 : : /* TODO: attr conflicts need to be checked, probably in symbol.cc. */
10282 : : }
10283 : 16896 : else if (gfc_match (" , abstract") == MATCH_YES)
10284 : : {
10285 : 316 : if (!gfc_notify_std (GFC_STD_F2003, "ABSTRACT type at %C"))
10286 : : return MATCH_ERROR;
10287 : :
10288 : 315 : if (!gfc_add_abstract (attr, &gfc_current_locus))
10289 : : return MATCH_ERROR;
10290 : : }
10291 : 16580 : else if (name && gfc_match (" , extends ( %n )", name) == MATCH_YES)
10292 : : {
10293 : 1429 : if (!gfc_add_extension (attr, &gfc_current_locus))
10294 : : return MATCH_ERROR;
10295 : : }
10296 : : else
10297 : 15151 : return MATCH_NO;
10298 : :
10299 : : /* If we get here, something matched. */
10300 : : return MATCH_YES;
10301 : : }
10302 : :
10303 : :
10304 : : /* Common function for type declaration blocks similar to derived types, such
10305 : : as STRUCTURES and MAPs. Unlike derived types, a structure type
10306 : : does NOT have a generic symbol matching the name given by the user.
10307 : : STRUCTUREs can share names with variables and PARAMETERs so we must allow
10308 : : for the creation of an independent symbol.
10309 : : Other parameters are a message to prefix errors with, the name of the new
10310 : : type to be created, and the flavor to add to the resulting symbol. */
10311 : :
10312 : : static bool
10313 : 717 : get_struct_decl (const char *name, sym_flavor fl, locus *decl,
10314 : : gfc_symbol **result)
10315 : : {
10316 : 717 : gfc_symbol *sym;
10317 : 717 : locus where;
10318 : :
10319 : 717 : gcc_assert (name[0] == (char) TOUPPER (name[0]));
10320 : :
10321 : 717 : if (decl)
10322 : 717 : where = *decl;
10323 : : else
10324 : 0 : where = gfc_current_locus;
10325 : :
10326 : 717 : if (gfc_get_symbol (name, NULL, &sym))
10327 : : return false;
10328 : :
10329 : 717 : if (!sym)
10330 : : {
10331 : 0 : gfc_internal_error ("Failed to create structure type '%s' at %C", name);
10332 : : return false;
10333 : : }
10334 : :
10335 : 717 : if (sym->components != NULL || sym->attr.zero_comp)
10336 : : {
10337 : 3 : gfc_error ("Type definition of %qs at %C was already defined at %L",
10338 : : sym->name, &sym->declared_at);
10339 : 3 : return false;
10340 : : }
10341 : :
10342 : 714 : sym->declared_at = where;
10343 : :
10344 : 714 : if (sym->attr.flavor != fl
10345 : 714 : && !gfc_add_flavor (&sym->attr, fl, sym->name, NULL))
10346 : : return false;
10347 : :
10348 : 714 : if (!sym->hash_value)
10349 : : /* Set the hash for the compound name for this type. */
10350 : 713 : sym->hash_value = gfc_hash_value (sym);
10351 : :
10352 : : /* Normally the type is expected to have been completely parsed by the time
10353 : : a field declaration with this type is seen. For unions, maps, and nested
10354 : : structure declarations, we need to indicate that it is okay that we
10355 : : haven't seen any components yet. This will be updated after the structure
10356 : : is fully parsed. */
10357 : 714 : sym->attr.zero_comp = 0;
10358 : :
10359 : : /* Structures always act like derived-types with the SEQUENCE attribute */
10360 : 714 : gfc_add_sequence (&sym->attr, sym->name, NULL);
10361 : :
10362 : 714 : if (result) *result = sym;
10363 : :
10364 : : return true;
10365 : : }
10366 : :
10367 : :
10368 : : /* Match the opening of a MAP block. Like a struct within a union in C;
10369 : : behaves identical to STRUCTURE blocks. */
10370 : :
10371 : : match
10372 : 259 : gfc_match_map (void)
10373 : : {
10374 : : /* Counter used to give unique internal names to map structures. */
10375 : 259 : static unsigned int gfc_map_id = 0;
10376 : 259 : char name[GFC_MAX_SYMBOL_LEN + 1];
10377 : 259 : gfc_symbol *sym;
10378 : 259 : locus old_loc;
10379 : :
10380 : 259 : old_loc = gfc_current_locus;
10381 : :
10382 : 259 : if (gfc_match_eos () != MATCH_YES)
10383 : : {
10384 : 1 : gfc_error ("Junk after MAP statement at %C");
10385 : 1 : gfc_current_locus = old_loc;
10386 : 1 : return MATCH_ERROR;
10387 : : }
10388 : :
10389 : : /* Map blocks are anonymous so we make up unique names for the symbol table
10390 : : which are invalid Fortran identifiers. */
10391 : 258 : snprintf (name, GFC_MAX_SYMBOL_LEN + 1, "MM$%u", gfc_map_id++);
10392 : :
10393 : 258 : if (!get_struct_decl (name, FL_STRUCT, &old_loc, &sym))
10394 : : return MATCH_ERROR;
10395 : :
10396 : 258 : gfc_new_block = sym;
10397 : :
10398 : 258 : return MATCH_YES;
10399 : : }
10400 : :
10401 : :
10402 : : /* Match the opening of a UNION block. */
10403 : :
10404 : : match
10405 : 133 : gfc_match_union (void)
10406 : : {
10407 : : /* Counter used to give unique internal names to union types. */
10408 : 133 : static unsigned int gfc_union_id = 0;
10409 : 133 : char name[GFC_MAX_SYMBOL_LEN + 1];
10410 : 133 : gfc_symbol *sym;
10411 : 133 : locus old_loc;
10412 : :
10413 : 133 : old_loc = gfc_current_locus;
10414 : :
10415 : 133 : if (gfc_match_eos () != MATCH_YES)
10416 : : {
10417 : 1 : gfc_error ("Junk after UNION statement at %C");
10418 : 1 : gfc_current_locus = old_loc;
10419 : 1 : return MATCH_ERROR;
10420 : : }
10421 : :
10422 : : /* Unions are anonymous so we make up unique names for the symbol table
10423 : : which are invalid Fortran identifiers. */
10424 : 132 : snprintf (name, GFC_MAX_SYMBOL_LEN + 1, "UU$%u", gfc_union_id++);
10425 : :
10426 : 132 : if (!get_struct_decl (name, FL_UNION, &old_loc, &sym))
10427 : : return MATCH_ERROR;
10428 : :
10429 : 132 : gfc_new_block = sym;
10430 : :
10431 : 132 : return MATCH_YES;
10432 : : }
10433 : :
10434 : :
10435 : : /* Match the beginning of a STRUCTURE declaration. This is similar to
10436 : : matching the beginning of a derived type declaration with a few
10437 : : twists. The resulting type symbol has no access control or other
10438 : : interesting attributes. */
10439 : :
10440 : : match
10441 : 336 : gfc_match_structure_decl (void)
10442 : : {
10443 : : /* Counter used to give unique internal names to anonymous structures. */
10444 : 336 : static unsigned int gfc_structure_id = 0;
10445 : 336 : char name[GFC_MAX_SYMBOL_LEN + 1];
10446 : 336 : gfc_symbol *sym;
10447 : 336 : match m;
10448 : 336 : locus where;
10449 : :
10450 : 336 : if (!flag_dec_structure)
10451 : : {
10452 : 3 : gfc_error ("%s at %C is a DEC extension, enable with "
10453 : : "%<-fdec-structure%>",
10454 : : "STRUCTURE");
10455 : 3 : return MATCH_ERROR;
10456 : : }
10457 : :
10458 : 333 : name[0] = '\0';
10459 : :
10460 : 333 : m = gfc_match (" /%n/", name);
10461 : 333 : if (m != MATCH_YES)
10462 : : {
10463 : : /* Non-nested structure declarations require a structure name. */
10464 : 24 : if (!gfc_comp_struct (gfc_current_state ()))
10465 : : {
10466 : 4 : gfc_error ("Structure name expected in non-nested structure "
10467 : : "declaration at %C");
10468 : 4 : return MATCH_ERROR;
10469 : : }
10470 : : /* This is an anonymous structure; make up a unique name for it
10471 : : (upper-case letters never make it to symbol names from the source).
10472 : : The important thing is initializing the type variable
10473 : : and setting gfc_new_symbol, which is immediately used by
10474 : : parse_structure () and variable_decl () to add components of
10475 : : this type. */
10476 : 20 : snprintf (name, GFC_MAX_SYMBOL_LEN + 1, "SS$%u", gfc_structure_id++);
10477 : : }
10478 : :
10479 : 329 : where = gfc_current_locus;
10480 : : /* No field list allowed after non-nested structure declaration. */
10481 : 329 : if (!gfc_comp_struct (gfc_current_state ())
10482 : 296 : && gfc_match_eos () != MATCH_YES)
10483 : : {
10484 : 1 : gfc_error ("Junk after non-nested STRUCTURE statement at %C");
10485 : 1 : return MATCH_ERROR;
10486 : : }
10487 : :
10488 : : /* Make sure the name is not the name of an intrinsic type. */
10489 : 328 : if (gfc_is_intrinsic_typename (name))
10490 : : {
10491 : 1 : gfc_error ("Structure name %qs at %C cannot be the same as an"
10492 : : " intrinsic type", name);
10493 : 1 : return MATCH_ERROR;
10494 : : }
10495 : :
10496 : : /* Store the actual type symbol for the structure with an upper-case first
10497 : : letter (an invalid Fortran identifier). */
10498 : :
10499 : 327 : if (!get_struct_decl (gfc_dt_upper_string (name), FL_STRUCT, &where, &sym))
10500 : : return MATCH_ERROR;
10501 : :
10502 : 324 : gfc_new_block = sym;
10503 : 324 : return MATCH_YES;
10504 : : }
10505 : :
10506 : :
10507 : : /* This function does some work to determine which matcher should be used to
10508 : : * match a statement beginning with "TYPE". This is used to disambiguate TYPE
10509 : : * as an alias for PRINT from derived type declarations, TYPE IS statements,
10510 : : * and [parameterized] derived type declarations. */
10511 : :
10512 : : match
10513 : 495636 : gfc_match_type (gfc_statement *st)
10514 : : {
10515 : 495636 : char name[GFC_MAX_SYMBOL_LEN + 1];
10516 : 495636 : match m;
10517 : 495636 : locus old_loc;
10518 : :
10519 : : /* Requires -fdec. */
10520 : 495636 : if (!flag_dec)
10521 : : return MATCH_NO;
10522 : :
10523 : 2483 : m = gfc_match ("type");
10524 : 2483 : if (m != MATCH_YES)
10525 : : return m;
10526 : : /* If we already have an error in the buffer, it is probably from failing to
10527 : : * match a derived type data declaration. Let it happen. */
10528 : 20 : else if (gfc_error_flag_test ())
10529 : : return MATCH_NO;
10530 : :
10531 : 20 : old_loc = gfc_current_locus;
10532 : 20 : *st = ST_NONE;
10533 : :
10534 : : /* If we see an attribute list before anything else it's definitely a derived
10535 : : * type declaration. */
10536 : 20 : if (gfc_match (" ,") == MATCH_YES || gfc_match (" ::") == MATCH_YES)
10537 : 8 : goto derived;
10538 : :
10539 : : /* By now "TYPE" has already been matched. If we do not see a name, this may
10540 : : * be something like "TYPE *" or "TYPE <fmt>". */
10541 : 12 : m = gfc_match_name (name);
10542 : 12 : if (m != MATCH_YES)
10543 : : {
10544 : : /* Let print match if it can, otherwise throw an error from
10545 : : * gfc_match_derived_decl. */
10546 : 7 : gfc_current_locus = old_loc;
10547 : 7 : if (gfc_match_print () == MATCH_YES)
10548 : : {
10549 : 7 : *st = ST_WRITE;
10550 : 7 : return MATCH_YES;
10551 : : }
10552 : 0 : goto derived;
10553 : : }
10554 : :
10555 : : /* Check for EOS. */
10556 : 5 : if (gfc_match_eos () == MATCH_YES)
10557 : : {
10558 : : /* By now we have "TYPE <name> <EOS>". Check first if the name is an
10559 : : * intrinsic typename - if so let gfc_match_derived_decl dump an error.
10560 : : * Otherwise if gfc_match_derived_decl fails it's probably an existing
10561 : : * symbol which can be printed. */
10562 : 3 : gfc_current_locus = old_loc;
10563 : 3 : m = gfc_match_derived_decl ();
10564 : 3 : if (gfc_is_intrinsic_typename (name) || m == MATCH_YES)
10565 : : {
10566 : 2 : *st = ST_DERIVED_DECL;
10567 : 2 : return m;
10568 : : }
10569 : : }
10570 : : else
10571 : : {
10572 : : /* Here we have "TYPE <name>". Check for <TYPE IS (> or a PDT declaration
10573 : : like <type name(parameter)>. */
10574 : 2 : gfc_gobble_whitespace ();
10575 : 2 : bool paren = gfc_peek_ascii_char () == '(';
10576 : 2 : if (paren)
10577 : : {
10578 : 1 : if (strcmp ("is", name) == 0)
10579 : 1 : goto typeis;
10580 : : else
10581 : 0 : goto derived;
10582 : : }
10583 : : }
10584 : :
10585 : : /* Treat TYPE... like PRINT... */
10586 : 2 : gfc_current_locus = old_loc;
10587 : 2 : *st = ST_WRITE;
10588 : 2 : return gfc_match_print ();
10589 : :
10590 : 8 : derived:
10591 : 8 : gfc_current_locus = old_loc;
10592 : 8 : *st = ST_DERIVED_DECL;
10593 : 8 : return gfc_match_derived_decl ();
10594 : :
10595 : 1 : typeis:
10596 : 1 : gfc_current_locus = old_loc;
10597 : 1 : *st = ST_TYPE_IS;
10598 : 1 : return gfc_match_type_is ();
10599 : : }
10600 : :
10601 : :
10602 : : /* Match the beginning of a derived type declaration. If a type name
10603 : : was the result of a function, then it is possible to have a symbol
10604 : : already to be known as a derived type yet have no components. */
10605 : :
10606 : : match
10607 : 15158 : gfc_match_derived_decl (void)
10608 : : {
10609 : 15158 : char name[GFC_MAX_SYMBOL_LEN + 1];
10610 : 15158 : char parent[GFC_MAX_SYMBOL_LEN + 1];
10611 : 15158 : symbol_attribute attr;
10612 : 15158 : gfc_symbol *sym, *gensym;
10613 : 15158 : gfc_symbol *extended;
10614 : 15158 : match m;
10615 : 15158 : match is_type_attr_spec = MATCH_NO;
10616 : 15158 : bool seen_attr = false;
10617 : 15158 : gfc_interface *intr = NULL, *head;
10618 : 15158 : bool parameterized_type = false;
10619 : 15158 : bool seen_colons = false;
10620 : :
10621 : 15158 : if (gfc_comp_struct (gfc_current_state ()))
10622 : : return MATCH_NO;
10623 : :
10624 : 15154 : name[0] = '\0';
10625 : 15154 : parent[0] = '\0';
10626 : 15154 : gfc_clear_attr (&attr);
10627 : 15154 : extended = NULL;
10628 : :
10629 : 17842 : do
10630 : : {
10631 : 17842 : is_type_attr_spec = gfc_get_type_attr_spec (&attr, parent);
10632 : 17842 : if (is_type_attr_spec == MATCH_ERROR)
10633 : : return MATCH_ERROR;
10634 : 17839 : if (is_type_attr_spec == MATCH_YES)
10635 : 2688 : seen_attr = true;
10636 : 17839 : } while (is_type_attr_spec == MATCH_YES);
10637 : :
10638 : : /* Deal with derived type extensions. The extension attribute has
10639 : : been added to 'attr' but now the parent type must be found and
10640 : : checked. */
10641 : 15151 : if (parent[0])
10642 : 1428 : extended = check_extended_derived_type (parent);
10643 : :
10644 : 15151 : if (parent[0] && !extended)
10645 : : return MATCH_ERROR;
10646 : :
10647 : 15147 : m = gfc_match (" ::");
10648 : 15147 : if (m == MATCH_YES)
10649 : : {
10650 : : seen_colons = true;
10651 : : }
10652 : 9523 : else if (seen_attr)
10653 : : {
10654 : 5 : gfc_error ("Expected :: in TYPE definition at %C");
10655 : 5 : return MATCH_ERROR;
10656 : : }
10657 : :
10658 : : /* In free source form, need to check for TYPE XXX as oppose to TYPEXXX.
10659 : : But, we need to simply return for TYPE(. */
10660 : 9518 : if (m == MATCH_NO && gfc_current_form == FORM_FREE)
10661 : : {
10662 : 9470 : char c = gfc_peek_ascii_char ();
10663 : 9470 : if (c == '(')
10664 : : return m;
10665 : 9409 : if (!gfc_is_whitespace (c))
10666 : : {
10667 : 4 : gfc_error ("Mangled derived type definition at %C");
10668 : 4 : return MATCH_NO;
10669 : : }
10670 : : }
10671 : :
10672 : 15077 : m = gfc_match (" %n ", name);
10673 : 15077 : if (m != MATCH_YES)
10674 : : return m;
10675 : :
10676 : : /* Make sure that we don't identify TYPE IS (...) as a parameterized
10677 : : derived type named 'is'.
10678 : : TODO Expand the check, when 'name' = "is" by matching " (tname) "
10679 : : and checking if this is a(n intrinsic) typename. This picks up
10680 : : misplaced TYPE IS statements such as in select_type_1.f03. */
10681 : 15067 : if (gfc_peek_ascii_char () == '(')
10682 : : {
10683 : 3479 : if (gfc_current_state () == COMP_SELECT_TYPE
10684 : 208 : || (!seen_colons && !strcmp (name, "is")))
10685 : : return MATCH_NO;
10686 : : parameterized_type = true;
10687 : : }
10688 : :
10689 : 11794 : m = gfc_match_eos ();
10690 : 11794 : if (m != MATCH_YES && !parameterized_type)
10691 : : return m;
10692 : :
10693 : : /* Make sure the name is not the name of an intrinsic type. */
10694 : 11791 : if (gfc_is_intrinsic_typename (name))
10695 : : {
10696 : 18 : gfc_error ("Type name %qs at %C cannot be the same as an intrinsic "
10697 : : "type", name);
10698 : 18 : return MATCH_ERROR;
10699 : : }
10700 : :
10701 : 11773 : if (gfc_get_symbol (name, NULL, &gensym))
10702 : : return MATCH_ERROR;
10703 : :
10704 : 11773 : if (!gensym->attr.generic && gensym->ts.type != BT_UNKNOWN)
10705 : : {
10706 : 5 : if (gensym->ts.u.derived)
10707 : 0 : gfc_error ("Derived type name %qs at %C already has a basic type "
10708 : : "of %s", gensym->name, gfc_typename (&gensym->ts));
10709 : : else
10710 : 5 : gfc_error ("Derived type name %qs at %C already has a basic type",
10711 : : gensym->name);
10712 : 5 : return MATCH_ERROR;
10713 : : }
10714 : :
10715 : 11768 : if (!gensym->attr.generic
10716 : 11768 : && !gfc_add_generic (&gensym->attr, gensym->name, NULL))
10717 : : return MATCH_ERROR;
10718 : :
10719 : 11764 : if (!gensym->attr.function
10720 : 11764 : && !gfc_add_function (&gensym->attr, gensym->name, NULL))
10721 : : return MATCH_ERROR;
10722 : :
10723 : 11763 : if (gensym->attr.dummy)
10724 : : {
10725 : 1 : gfc_error ("Dummy argument %qs at %L cannot be a derived type at %C",
10726 : : name, &gensym->declared_at);
10727 : 1 : return MATCH_ERROR;
10728 : : }
10729 : :
10730 : 11762 : sym = gfc_find_dt_in_generic (gensym);
10731 : :
10732 : 11762 : if (sym && (sym->components != NULL || sym->attr.zero_comp))
10733 : : {
10734 : 1 : gfc_error ("Derived type definition of %qs at %C has already been "
10735 : : "defined", sym->name);
10736 : 1 : return MATCH_ERROR;
10737 : : }
10738 : :
10739 : 11761 : if (!sym)
10740 : : {
10741 : : /* Use upper case to save the actual derived-type symbol. */
10742 : 11676 : gfc_get_symbol (gfc_dt_upper_string (gensym->name), NULL, &sym);
10743 : 11676 : sym->name = gfc_get_string ("%s", gensym->name);
10744 : 11676 : head = gensym->generic;
10745 : 11676 : intr = gfc_get_interface ();
10746 : 11676 : intr->sym = sym;
10747 : 11676 : intr->where = gfc_current_locus;
10748 : 11676 : intr->sym->declared_at = gfc_current_locus;
10749 : 11676 : intr->next = head;
10750 : 11676 : gensym->generic = intr;
10751 : 11676 : gensym->attr.if_source = IFSRC_DECL;
10752 : : }
10753 : :
10754 : : /* The symbol may already have the derived attribute without the
10755 : : components. The ways this can happen is via a function
10756 : : definition, an INTRINSIC statement or a subtype in another
10757 : : derived type that is a pointer. The first part of the AND clause
10758 : : is true if the symbol is not the return value of a function. */
10759 : 11761 : if (sym->attr.flavor != FL_DERIVED
10760 : 11761 : && !gfc_add_flavor (&sym->attr, FL_DERIVED, sym->name, NULL))
10761 : : return MATCH_ERROR;
10762 : :
10763 : 11761 : if (attr.access != ACCESS_UNKNOWN
10764 : 11761 : && !gfc_add_access (&sym->attr, attr.access, sym->name, NULL))
10765 : : return MATCH_ERROR;
10766 : 11761 : else if (sym->attr.access == ACCESS_UNKNOWN
10767 : 11220 : && gensym->attr.access != ACCESS_UNKNOWN
10768 : 12068 : && !gfc_add_access (&sym->attr, gensym->attr.access,
10769 : : sym->name, NULL))
10770 : : return MATCH_ERROR;
10771 : :
10772 : 11761 : if (sym->attr.access != ACCESS_UNKNOWN
10773 : 848 : && gensym->attr.access == ACCESS_UNKNOWN)
10774 : 541 : gensym->attr.access = sym->attr.access;
10775 : :
10776 : : /* See if the derived type was labeled as bind(c). */
10777 : 11761 : if (attr.is_bind_c != 0)
10778 : 397 : sym->attr.is_bind_c = attr.is_bind_c;
10779 : :
10780 : : /* Construct the f2k_derived namespace if it is not yet there. */
10781 : 11761 : if (!sym->f2k_derived)
10782 : 11761 : sym->f2k_derived = gfc_get_namespace (NULL, 0);
10783 : :
10784 : 11761 : if (parameterized_type)
10785 : : {
10786 : : /* Ignore error or mismatches by going to the end of the statement
10787 : : in order to avoid the component declarations causing problems. */
10788 : 206 : m = gfc_match_formal_arglist (sym, 0, 0, true);
10789 : 206 : if (m != MATCH_YES)
10790 : 4 : gfc_error_recovery ();
10791 : : else
10792 : 202 : sym->attr.pdt_template = 1;
10793 : 206 : m = gfc_match_eos ();
10794 : 206 : if (m != MATCH_YES)
10795 : : {
10796 : 1 : gfc_error_recovery ();
10797 : 1 : gfc_error_now ("Garbage after PARAMETERIZED TYPE declaration at %C");
10798 : : }
10799 : : }
10800 : :
10801 : 11761 : if (extended && !sym->components)
10802 : : {
10803 : 1424 : gfc_component *p;
10804 : 1424 : gfc_formal_arglist *f, *g, *h;
10805 : :
10806 : : /* Add the extended derived type as the first component. */
10807 : 1424 : gfc_add_component (sym, parent, &p);
10808 : 1424 : extended->refs++;
10809 : 1424 : gfc_set_sym_referenced (extended);
10810 : :
10811 : 1424 : p->ts.type = BT_DERIVED;
10812 : 1424 : p->ts.u.derived = extended;
10813 : 1424 : p->initializer = gfc_default_initializer (&p->ts);
10814 : :
10815 : : /* Set extension level. */
10816 : 1424 : if (extended->attr.extension == 255)
10817 : : {
10818 : : /* Since the extension field is 8 bit wide, we can only have
10819 : : up to 255 extension levels. */
10820 : 0 : gfc_error ("Maximum extension level reached with type %qs at %L",
10821 : : extended->name, &extended->declared_at);
10822 : 0 : return MATCH_ERROR;
10823 : : }
10824 : 1424 : sym->attr.extension = extended->attr.extension + 1;
10825 : :
10826 : : /* Provide the links between the extended type and its extension. */
10827 : 1424 : if (!extended->f2k_derived)
10828 : 1 : extended->f2k_derived = gfc_get_namespace (NULL, 0);
10829 : :
10830 : : /* Copy the extended type-param-name-list from the extended type,
10831 : : append those of the extension and add the whole lot to the
10832 : : extension. */
10833 : 1424 : if (extended->attr.pdt_template)
10834 : : {
10835 : 22 : g = h = NULL;
10836 : 22 : sym->attr.pdt_template = 1;
10837 : 75 : for (f = extended->formal; f; f = f->next)
10838 : : {
10839 : 53 : if (f == extended->formal)
10840 : : {
10841 : 22 : g = gfc_get_formal_arglist ();
10842 : 22 : h = g;
10843 : : }
10844 : : else
10845 : : {
10846 : 31 : g->next = gfc_get_formal_arglist ();
10847 : 31 : g = g->next;
10848 : : }
10849 : 53 : g->sym = f->sym;
10850 : : }
10851 : 22 : g->next = sym->formal;
10852 : 22 : sym->formal = h;
10853 : : }
10854 : : }
10855 : :
10856 : 11761 : if (!sym->hash_value)
10857 : : /* Set the hash for the compound name for this type. */
10858 : 11761 : sym->hash_value = gfc_hash_value (sym);
10859 : :
10860 : : /* Take over the ABSTRACT attribute. */
10861 : 11761 : sym->attr.abstract = attr.abstract;
10862 : :
10863 : 11761 : gfc_new_block = sym;
10864 : :
10865 : 11761 : return MATCH_YES;
10866 : : }
10867 : :
10868 : :
10869 : : /* Cray Pointees can be declared as:
10870 : : pointer (ipt, a (n,m,...,*)) */
10871 : :
10872 : : match
10873 : 240 : gfc_mod_pointee_as (gfc_array_spec *as)
10874 : : {
10875 : 240 : as->cray_pointee = true; /* This will be useful to know later. */
10876 : 240 : if (as->type == AS_ASSUMED_SIZE)
10877 : 72 : as->cp_was_assumed = true;
10878 : 168 : else if (as->type == AS_ASSUMED_SHAPE)
10879 : : {
10880 : 0 : gfc_error ("Cray Pointee at %C cannot be assumed shape array");
10881 : 0 : return MATCH_ERROR;
10882 : : }
10883 : : return MATCH_YES;
10884 : : }
10885 : :
10886 : :
10887 : : /* Match the enum definition statement, here we are trying to match
10888 : : the first line of enum definition statement.
10889 : : Returns MATCH_YES if match is found. */
10890 : :
10891 : : match
10892 : 158 : gfc_match_enum (void)
10893 : : {
10894 : 158 : match m;
10895 : :
10896 : 158 : m = gfc_match_eos ();
10897 : 158 : if (m != MATCH_YES)
10898 : : return m;
10899 : :
10900 : 158 : if (!gfc_notify_std (GFC_STD_F2003, "ENUM and ENUMERATOR at %C"))
10901 : 0 : return MATCH_ERROR;
10902 : :
10903 : : return MATCH_YES;
10904 : : }
10905 : :
10906 : :
10907 : : /* Returns an initializer whose value is one higher than the value of the
10908 : : LAST_INITIALIZER argument. If the argument is NULL, the
10909 : : initializers value will be set to zero. The initializer's kind
10910 : : will be set to gfc_c_int_kind.
10911 : :
10912 : : If -fshort-enums is given, the appropriate kind will be selected
10913 : : later after all enumerators have been parsed. A warning is issued
10914 : : here if an initializer exceeds gfc_c_int_kind. */
10915 : :
10916 : : static gfc_expr *
10917 : 377 : enum_initializer (gfc_expr *last_initializer, locus where)
10918 : : {
10919 : 377 : gfc_expr *result;
10920 : 377 : result = gfc_get_constant_expr (BT_INTEGER, gfc_c_int_kind, &where);
10921 : :
10922 : 377 : mpz_init (result->value.integer);
10923 : :
10924 : 377 : if (last_initializer != NULL)
10925 : : {
10926 : 266 : mpz_add_ui (result->value.integer, last_initializer->value.integer, 1);
10927 : 266 : result->where = last_initializer->where;
10928 : :
10929 : 266 : if (gfc_check_integer_range (result->value.integer,
10930 : : gfc_c_int_kind) != ARITH_OK)
10931 : : {
10932 : 0 : gfc_error ("Enumerator exceeds the C integer type at %C");
10933 : 0 : return NULL;
10934 : : }
10935 : : }
10936 : : else
10937 : : {
10938 : : /* Control comes here, if it's the very first enumerator and no
10939 : : initializer has been given. It will be initialized to zero. */
10940 : 111 : mpz_set_si (result->value.integer, 0);
10941 : : }
10942 : :
10943 : : return result;
10944 : : }
10945 : :
10946 : :
10947 : : /* Match a variable name with an optional initializer. When this
10948 : : subroutine is called, a variable is expected to be parsed next.
10949 : : Depending on what is happening at the moment, updates either the
10950 : : symbol table or the current interface. */
10951 : :
10952 : : static match
10953 : 549 : enumerator_decl (void)
10954 : : {
10955 : 549 : char name[GFC_MAX_SYMBOL_LEN + 1];
10956 : 549 : gfc_expr *initializer;
10957 : 549 : gfc_array_spec *as = NULL;
10958 : 549 : gfc_symbol *sym;
10959 : 549 : locus var_locus;
10960 : 549 : match m;
10961 : 549 : bool t;
10962 : 549 : locus old_locus;
10963 : :
10964 : 549 : initializer = NULL;
10965 : 549 : old_locus = gfc_current_locus;
10966 : :
10967 : : /* When we get here, we've just matched a list of attributes and
10968 : : maybe a type and a double colon. The next thing we expect to see
10969 : : is the name of the symbol. */
10970 : 549 : m = gfc_match_name (name);
10971 : 549 : if (m != MATCH_YES)
10972 : 1 : goto cleanup;
10973 : :
10974 : 548 : var_locus = gfc_current_locus;
10975 : :
10976 : : /* OK, we've successfully matched the declaration. Now put the
10977 : : symbol in the current namespace. If we fail to create the symbol,
10978 : : bail out. */
10979 : 548 : if (!build_sym (name, 1, NULL, false, &as, &var_locus))
10980 : : {
10981 : 1 : m = MATCH_ERROR;
10982 : 1 : goto cleanup;
10983 : : }
10984 : :
10985 : : /* The double colon must be present in order to have initializers.
10986 : : Otherwise the statement is ambiguous with an assignment statement. */
10987 : 547 : if (colon_seen)
10988 : : {
10989 : 471 : if (gfc_match_char ('=') == MATCH_YES)
10990 : : {
10991 : 170 : m = gfc_match_init_expr (&initializer);
10992 : 170 : if (m == MATCH_NO)
10993 : : {
10994 : 0 : gfc_error ("Expected an initialization expression at %C");
10995 : 0 : m = MATCH_ERROR;
10996 : : }
10997 : :
10998 : 170 : if (m != MATCH_YES)
10999 : 2 : goto cleanup;
11000 : : }
11001 : : }
11002 : :
11003 : : /* If we do not have an initializer, the initialization value of the
11004 : : previous enumerator (stored in last_initializer) is incremented
11005 : : by 1 and is used to initialize the current enumerator. */
11006 : 545 : if (initializer == NULL)
11007 : 377 : initializer = enum_initializer (last_initializer, old_locus);
11008 : :
11009 : 545 : if (initializer == NULL || initializer->ts.type != BT_INTEGER)
11010 : : {
11011 : 2 : gfc_error ("ENUMERATOR %L not initialized with integer expression",
11012 : : &var_locus);
11013 : 2 : m = MATCH_ERROR;
11014 : 2 : goto cleanup;
11015 : : }
11016 : :
11017 : : /* Store this current initializer, for the next enumerator variable
11018 : : to be parsed. add_init_expr_to_sym() zeros initializer, so we
11019 : : use last_initializer below. */
11020 : 543 : last_initializer = initializer;
11021 : 543 : t = add_init_expr_to_sym (name, &initializer, &var_locus);
11022 : :
11023 : : /* Maintain enumerator history. */
11024 : 543 : gfc_find_symbol (name, NULL, 0, &sym);
11025 : 543 : create_enum_history (sym, last_initializer);
11026 : :
11027 : 543 : return (t) ? MATCH_YES : MATCH_ERROR;
11028 : :
11029 : 6 : cleanup:
11030 : : /* Free stuff up and return. */
11031 : 6 : gfc_free_expr (initializer);
11032 : :
11033 : 6 : return m;
11034 : : }
11035 : :
11036 : :
11037 : : /* Match the enumerator definition statement. */
11038 : :
11039 : : match
11040 : 743128 : gfc_match_enumerator_def (void)
11041 : : {
11042 : 743128 : match m;
11043 : 743128 : bool t;
11044 : :
11045 : 743128 : gfc_clear_ts (¤t_ts);
11046 : :
11047 : 743128 : m = gfc_match (" enumerator");
11048 : 743128 : if (m != MATCH_YES)
11049 : : return m;
11050 : :
11051 : 269 : m = gfc_match (" :: ");
11052 : 269 : if (m == MATCH_ERROR)
11053 : : return m;
11054 : :
11055 : 269 : colon_seen = (m == MATCH_YES);
11056 : :
11057 : 269 : if (gfc_current_state () != COMP_ENUM)
11058 : : {
11059 : 4 : gfc_error ("ENUM definition statement expected before %C");
11060 : 4 : gfc_free_enum_history ();
11061 : 4 : return MATCH_ERROR;
11062 : : }
11063 : :
11064 : 265 : (¤t_ts)->type = BT_INTEGER;
11065 : 265 : (¤t_ts)->kind = gfc_c_int_kind;
11066 : :
11067 : 265 : gfc_clear_attr (¤t_attr);
11068 : 265 : t = gfc_add_flavor (¤t_attr, FL_PARAMETER, NULL, NULL);
11069 : 265 : if (!t)
11070 : : {
11071 : 0 : m = MATCH_ERROR;
11072 : 0 : goto cleanup;
11073 : : }
11074 : :
11075 : 549 : for (;;)
11076 : : {
11077 : 549 : m = enumerator_decl ();
11078 : 549 : if (m == MATCH_ERROR)
11079 : : {
11080 : 6 : gfc_free_enum_history ();
11081 : 6 : goto cleanup;
11082 : : }
11083 : 543 : if (m == MATCH_NO)
11084 : : break;
11085 : :
11086 : 542 : if (gfc_match_eos () == MATCH_YES)
11087 : 256 : goto cleanup;
11088 : 286 : if (gfc_match_char (',') != MATCH_YES)
11089 : : break;
11090 : : }
11091 : :
11092 : 3 : if (gfc_current_state () == COMP_ENUM)
11093 : : {
11094 : 3 : gfc_free_enum_history ();
11095 : 3 : gfc_error ("Syntax error in ENUMERATOR definition at %C");
11096 : 3 : m = MATCH_ERROR;
11097 : : }
11098 : :
11099 : 0 : cleanup:
11100 : 265 : gfc_free_array_spec (current_as);
11101 : 265 : current_as = NULL;
11102 : 265 : return m;
11103 : :
11104 : : }
11105 : :
11106 : :
11107 : : /* Match binding attributes. */
11108 : :
11109 : : static match
11110 : 4301 : match_binding_attributes (gfc_typebound_proc* ba, bool generic, bool ppc)
11111 : : {
11112 : 4301 : bool found_passing = false;
11113 : 4301 : bool seen_ptr = false;
11114 : 4301 : match m = MATCH_YES;
11115 : :
11116 : : /* Initialize to defaults. Do so even before the MATCH_NO check so that in
11117 : : this case the defaults are in there. */
11118 : 4301 : ba->access = ACCESS_UNKNOWN;
11119 : 4301 : ba->pass_arg = NULL;
11120 : 4301 : ba->pass_arg_num = 0;
11121 : 4301 : ba->nopass = 0;
11122 : 4301 : ba->non_overridable = 0;
11123 : 4301 : ba->deferred = 0;
11124 : 4301 : ba->ppc = ppc;
11125 : :
11126 : : /* If we find a comma, we believe there are binding attributes. */
11127 : 4301 : m = gfc_match_char (',');
11128 : 4301 : if (m == MATCH_NO)
11129 : 2177 : goto done;
11130 : :
11131 : 2631 : do
11132 : : {
11133 : : /* Access specifier. */
11134 : :
11135 : 2631 : m = gfc_match (" public");
11136 : 2631 : if (m == MATCH_ERROR)
11137 : 0 : goto error;
11138 : 2631 : if (m == MATCH_YES)
11139 : : {
11140 : 231 : if (ba->access != ACCESS_UNKNOWN)
11141 : : {
11142 : 0 : gfc_error ("Duplicate access-specifier at %C");
11143 : 0 : goto error;
11144 : : }
11145 : :
11146 : 231 : ba->access = ACCESS_PUBLIC;
11147 : 231 : continue;
11148 : : }
11149 : :
11150 : 2400 : m = gfc_match (" private");
11151 : 2400 : if (m == MATCH_ERROR)
11152 : 0 : goto error;
11153 : 2400 : if (m == MATCH_YES)
11154 : : {
11155 : 127 : if (ba->access != ACCESS_UNKNOWN)
11156 : : {
11157 : 1 : gfc_error ("Duplicate access-specifier at %C");
11158 : 1 : goto error;
11159 : : }
11160 : :
11161 : 126 : ba->access = ACCESS_PRIVATE;
11162 : 126 : continue;
11163 : : }
11164 : :
11165 : : /* If inside GENERIC, the following is not allowed. */
11166 : 2273 : if (!generic)
11167 : : {
11168 : :
11169 : : /* NOPASS flag. */
11170 : 2272 : m = gfc_match (" nopass");
11171 : 2272 : if (m == MATCH_ERROR)
11172 : 0 : goto error;
11173 : 2272 : if (m == MATCH_YES)
11174 : : {
11175 : 676 : if (found_passing)
11176 : : {
11177 : 1 : gfc_error ("Binding attributes already specify passing,"
11178 : : " illegal NOPASS at %C");
11179 : 1 : goto error;
11180 : : }
11181 : :
11182 : 675 : found_passing = true;
11183 : 675 : ba->nopass = 1;
11184 : 675 : continue;
11185 : : }
11186 : :
11187 : : /* PASS possibly including argument. */
11188 : 1596 : m = gfc_match (" pass");
11189 : 1596 : if (m == MATCH_ERROR)
11190 : 0 : goto error;
11191 : 1596 : if (m == MATCH_YES)
11192 : : {
11193 : 882 : char arg[GFC_MAX_SYMBOL_LEN + 1];
11194 : :
11195 : 882 : if (found_passing)
11196 : : {
11197 : 2 : gfc_error ("Binding attributes already specify passing,"
11198 : : " illegal PASS at %C");
11199 : 2 : goto error;
11200 : : }
11201 : :
11202 : 880 : m = gfc_match (" ( %n )", arg);
11203 : 880 : if (m == MATCH_ERROR)
11204 : 0 : goto error;
11205 : 880 : if (m == MATCH_YES)
11206 : 474 : ba->pass_arg = gfc_get_string ("%s", arg);
11207 : 880 : gcc_assert ((m == MATCH_YES) == (ba->pass_arg != NULL));
11208 : :
11209 : 880 : found_passing = true;
11210 : 880 : ba->nopass = 0;
11211 : 880 : continue;
11212 : 880 : }
11213 : :
11214 : 714 : if (ppc)
11215 : : {
11216 : : /* POINTER flag. */
11217 : 399 : m = gfc_match (" pointer");
11218 : 399 : if (m == MATCH_ERROR)
11219 : 0 : goto error;
11220 : 399 : if (m == MATCH_YES)
11221 : : {
11222 : 399 : if (seen_ptr)
11223 : : {
11224 : 1 : gfc_error ("Duplicate POINTER attribute at %C");
11225 : 1 : goto error;
11226 : : }
11227 : :
11228 : 398 : seen_ptr = true;
11229 : 398 : continue;
11230 : : }
11231 : : }
11232 : : else
11233 : : {
11234 : : /* NON_OVERRIDABLE flag. */
11235 : 315 : m = gfc_match (" non_overridable");
11236 : 315 : if (m == MATCH_ERROR)
11237 : 0 : goto error;
11238 : 315 : if (m == MATCH_YES)
11239 : : {
11240 : 61 : if (ba->non_overridable)
11241 : : {
11242 : 1 : gfc_error ("Duplicate NON_OVERRIDABLE at %C");
11243 : 1 : goto error;
11244 : : }
11245 : :
11246 : 60 : ba->non_overridable = 1;
11247 : 60 : continue;
11248 : : }
11249 : :
11250 : : /* DEFERRED flag. */
11251 : 254 : m = gfc_match (" deferred");
11252 : 254 : if (m == MATCH_ERROR)
11253 : 0 : goto error;
11254 : 254 : if (m == MATCH_YES)
11255 : : {
11256 : 254 : if (ba->deferred)
11257 : : {
11258 : 1 : gfc_error ("Duplicate DEFERRED at %C");
11259 : 1 : goto error;
11260 : : }
11261 : :
11262 : 253 : ba->deferred = 1;
11263 : 253 : continue;
11264 : : }
11265 : : }
11266 : :
11267 : : }
11268 : :
11269 : : /* Nothing matching found. */
11270 : 1 : if (generic)
11271 : 1 : gfc_error ("Expected access-specifier at %C");
11272 : : else
11273 : 0 : gfc_error ("Expected binding attribute at %C");
11274 : 1 : goto error;
11275 : : }
11276 : 2623 : while (gfc_match_char (',') == MATCH_YES);
11277 : :
11278 : : /* NON_OVERRIDABLE and DEFERRED exclude themselves. */
11279 : 2116 : if (ba->non_overridable && ba->deferred)
11280 : : {
11281 : 1 : gfc_error ("NON_OVERRIDABLE and DEFERRED cannot both appear at %C");
11282 : 1 : goto error;
11283 : : }
11284 : :
11285 : : m = MATCH_YES;
11286 : :
11287 : 4292 : done:
11288 : 4292 : if (ba->access == ACCESS_UNKNOWN)
11289 : 3936 : ba->access = ppc ? gfc_current_block()->component_access
11290 : : : gfc_typebound_default_access;
11291 : :
11292 : 4292 : if (ppc && !seen_ptr)
11293 : : {
11294 : 2 : gfc_error ("POINTER attribute is required for procedure pointer component"
11295 : : " at %C");
11296 : 2 : goto error;
11297 : : }
11298 : :
11299 : : return m;
11300 : :
11301 : : error:
11302 : : return MATCH_ERROR;
11303 : : }
11304 : :
11305 : :
11306 : : /* Match a PROCEDURE specific binding inside a derived type. */
11307 : :
11308 : : static match
11309 : 3038 : match_procedure_in_type (void)
11310 : : {
11311 : 3038 : char name[GFC_MAX_SYMBOL_LEN + 1];
11312 : 3038 : char target_buf[GFC_MAX_SYMBOL_LEN + 1];
11313 : 3038 : char* target = NULL, *ifc = NULL;
11314 : 3038 : gfc_typebound_proc tb;
11315 : 3038 : bool seen_colons;
11316 : 3038 : bool seen_attrs;
11317 : 3038 : match m;
11318 : 3038 : gfc_symtree* stree;
11319 : 3038 : gfc_namespace* ns;
11320 : 3038 : gfc_symbol* block;
11321 : 3038 : int num;
11322 : :
11323 : : /* Check current state. */
11324 : 3038 : gcc_assert (gfc_state_stack->state == COMP_DERIVED_CONTAINS);
11325 : 3038 : block = gfc_state_stack->previous->sym;
11326 : 3038 : gcc_assert (block);
11327 : :
11328 : : /* Try to match PROCEDURE(interface). */
11329 : 3038 : if (gfc_match (" (") == MATCH_YES)
11330 : : {
11331 : 255 : m = gfc_match_name (target_buf);
11332 : 255 : if (m == MATCH_ERROR)
11333 : : return m;
11334 : 255 : if (m != MATCH_YES)
11335 : : {
11336 : 1 : gfc_error ("Interface-name expected after %<(%> at %C");
11337 : 1 : return MATCH_ERROR;
11338 : : }
11339 : :
11340 : 254 : if (gfc_match (" )") != MATCH_YES)
11341 : : {
11342 : 1 : gfc_error ("%<)%> expected at %C");
11343 : 1 : return MATCH_ERROR;
11344 : : }
11345 : :
11346 : : ifc = target_buf;
11347 : : }
11348 : :
11349 : : /* Construct the data structure. */
11350 : 3036 : memset (&tb, 0, sizeof (tb));
11351 : 3036 : tb.where = gfc_current_locus;
11352 : :
11353 : : /* Match binding attributes. */
11354 : 3036 : m = match_binding_attributes (&tb, false, false);
11355 : 3036 : if (m == MATCH_ERROR)
11356 : : return m;
11357 : 3029 : seen_attrs = (m == MATCH_YES);
11358 : :
11359 : : /* Check that attribute DEFERRED is given if an interface is specified. */
11360 : 3029 : if (tb.deferred && !ifc)
11361 : : {
11362 : 1 : gfc_error ("Interface must be specified for DEFERRED binding at %C");
11363 : 1 : return MATCH_ERROR;
11364 : : }
11365 : 3028 : if (ifc && !tb.deferred)
11366 : : {
11367 : 1 : gfc_error ("PROCEDURE(interface) at %C should be declared DEFERRED");
11368 : 1 : return MATCH_ERROR;
11369 : : }
11370 : :
11371 : : /* Match the colons. */
11372 : 3027 : m = gfc_match (" ::");
11373 : 3027 : if (m == MATCH_ERROR)
11374 : : return m;
11375 : 3027 : seen_colons = (m == MATCH_YES);
11376 : 3027 : if (seen_attrs && !seen_colons)
11377 : : {
11378 : 4 : gfc_error ("Expected %<::%> after binding-attributes at %C");
11379 : 4 : return MATCH_ERROR;
11380 : : }
11381 : :
11382 : : /* Match the binding names. */
11383 : 17 : for(num=1;;num++)
11384 : : {
11385 : 3040 : m = gfc_match_name (name);
11386 : 3040 : if (m == MATCH_ERROR)
11387 : : return m;
11388 : 3040 : if (m == MATCH_NO)
11389 : : {
11390 : 5 : gfc_error ("Expected binding name at %C");
11391 : 5 : return MATCH_ERROR;
11392 : : }
11393 : :
11394 : 3035 : if (num>1 && !gfc_notify_std (GFC_STD_F2008, "PROCEDURE list at %C"))
11395 : : return MATCH_ERROR;
11396 : :
11397 : : /* Try to match the '=> target', if it's there. */
11398 : 3034 : target = ifc;
11399 : 3034 : m = gfc_match (" =>");
11400 : 3034 : if (m == MATCH_ERROR)
11401 : : return m;
11402 : 3034 : if (m == MATCH_YES)
11403 : : {
11404 : 1231 : if (tb.deferred)
11405 : : {
11406 : 1 : gfc_error ("%<=> target%> is invalid for DEFERRED binding at %C");
11407 : 1 : return MATCH_ERROR;
11408 : : }
11409 : :
11410 : 1230 : if (!seen_colons)
11411 : : {
11412 : 1 : gfc_error ("%<::%> needed in PROCEDURE binding with explicit target"
11413 : : " at %C");
11414 : 1 : return MATCH_ERROR;
11415 : : }
11416 : :
11417 : 1229 : m = gfc_match_name (target_buf);
11418 : 1229 : if (m == MATCH_ERROR)
11419 : : return m;
11420 : 1229 : if (m == MATCH_NO)
11421 : : {
11422 : 2 : gfc_error ("Expected binding target after %<=>%> at %C");
11423 : 2 : return MATCH_ERROR;
11424 : : }
11425 : : target = target_buf;
11426 : : }
11427 : :
11428 : : /* If no target was found, it has the same name as the binding. */
11429 : 1803 : if (!target)
11430 : 1554 : target = name;
11431 : :
11432 : : /* Get the namespace to insert the symbols into. */
11433 : 3030 : ns = block->f2k_derived;
11434 : 3030 : gcc_assert (ns);
11435 : :
11436 : : /* If the binding is DEFERRED, check that the containing type is ABSTRACT. */
11437 : 3030 : if (tb.deferred && !block->attr.abstract)
11438 : : {
11439 : 1 : gfc_error ("Type %qs containing DEFERRED binding at %C "
11440 : : "is not ABSTRACT", block->name);
11441 : 1 : return MATCH_ERROR;
11442 : : }
11443 : :
11444 : : /* See if we already have a binding with this name in the symtree which
11445 : : would be an error. If a GENERIC already targeted this binding, it may
11446 : : be already there but then typebound is still NULL. */
11447 : 3029 : stree = gfc_find_symtree (ns->tb_sym_root, name);
11448 : 3029 : if (stree && stree->n.tb)
11449 : : {
11450 : 2 : gfc_error ("There is already a procedure with binding name %qs for "
11451 : : "the derived type %qs at %C", name, block->name);
11452 : 2 : return MATCH_ERROR;
11453 : : }
11454 : :
11455 : : /* Insert it and set attributes. */
11456 : :
11457 : 2952 : if (!stree)
11458 : : {
11459 : 2952 : stree = gfc_new_symtree (&ns->tb_sym_root, name);
11460 : 2952 : gcc_assert (stree);
11461 : : }
11462 : 3027 : stree->n.tb = gfc_get_typebound_proc (&tb);
11463 : :
11464 : 3027 : if (gfc_get_sym_tree (target, gfc_current_ns, &stree->n.tb->u.specific,
11465 : : false))
11466 : : return MATCH_ERROR;
11467 : 3027 : gfc_set_sym_referenced (stree->n.tb->u.specific->n.sym);
11468 : 3027 : gfc_add_flavor(&stree->n.tb->u.specific->n.sym->attr, FL_PROCEDURE,
11469 : 3027 : target, &stree->n.tb->u.specific->n.sym->declared_at);
11470 : :
11471 : 3027 : if (gfc_match_eos () == MATCH_YES)
11472 : : return MATCH_YES;
11473 : 18 : if (gfc_match_char (',') != MATCH_YES)
11474 : 1 : goto syntax;
11475 : : }
11476 : :
11477 : 1 : syntax:
11478 : 1 : gfc_error ("Syntax error in PROCEDURE statement at %C");
11479 : 1 : return MATCH_ERROR;
11480 : : }
11481 : :
11482 : :
11483 : : /* Match a GENERIC procedure binding inside a derived type. */
11484 : :
11485 : : match
11486 : 865 : gfc_match_generic (void)
11487 : : {
11488 : 865 : char name[GFC_MAX_SYMBOL_LEN + 1];
11489 : 865 : char bind_name[GFC_MAX_SYMBOL_LEN + 16]; /* Allow space for OPERATOR(...). */
11490 : 865 : gfc_symbol* block;
11491 : 865 : gfc_typebound_proc tbattr; /* Used for match_binding_attributes. */
11492 : 865 : gfc_typebound_proc* tb;
11493 : 865 : gfc_namespace* ns;
11494 : 865 : interface_type op_type;
11495 : 865 : gfc_intrinsic_op op;
11496 : 865 : match m;
11497 : :
11498 : : /* Check current state. */
11499 : 865 : if (gfc_current_state () == COMP_DERIVED)
11500 : : {
11501 : 0 : gfc_error ("GENERIC at %C must be inside a derived-type CONTAINS");
11502 : 0 : return MATCH_ERROR;
11503 : : }
11504 : 865 : if (gfc_current_state () != COMP_DERIVED_CONTAINS)
11505 : : return MATCH_NO;
11506 : 865 : block = gfc_state_stack->previous->sym;
11507 : 865 : ns = block->f2k_derived;
11508 : 865 : gcc_assert (block && ns);
11509 : :
11510 : 865 : memset (&tbattr, 0, sizeof (tbattr));
11511 : 865 : tbattr.where = gfc_current_locus;
11512 : :
11513 : : /* See if we get an access-specifier. */
11514 : 865 : m = match_binding_attributes (&tbattr, true, false);
11515 : 865 : if (m == MATCH_ERROR)
11516 : 1 : goto error;
11517 : :
11518 : : /* Now the colons, those are required. */
11519 : 864 : if (gfc_match (" ::") != MATCH_YES)
11520 : : {
11521 : 0 : gfc_error ("Expected %<::%> at %C");
11522 : 0 : goto error;
11523 : : }
11524 : :
11525 : : /* Match the binding name; depending on type (operator / generic) format
11526 : : it for future error messages into bind_name. */
11527 : :
11528 : 864 : m = gfc_match_generic_spec (&op_type, name, &op);
11529 : 864 : if (m == MATCH_ERROR)
11530 : : return MATCH_ERROR;
11531 : 864 : if (m == MATCH_NO)
11532 : : {
11533 : 0 : gfc_error ("Expected generic name or operator descriptor at %C");
11534 : 0 : goto error;
11535 : : }
11536 : :
11537 : 864 : switch (op_type)
11538 : : {
11539 : 441 : case INTERFACE_GENERIC:
11540 : 441 : case INTERFACE_DTIO:
11541 : 441 : snprintf (bind_name, sizeof (bind_name), "%s", name);
11542 : 441 : break;
11543 : :
11544 : 21 : case INTERFACE_USER_OP:
11545 : 21 : snprintf (bind_name, sizeof (bind_name), "OPERATOR(.%s.)", name);
11546 : 21 : break;
11547 : :
11548 : 401 : case INTERFACE_INTRINSIC_OP:
11549 : 401 : snprintf (bind_name, sizeof (bind_name), "OPERATOR(%s)",
11550 : : gfc_op2string (op));
11551 : 401 : break;
11552 : :
11553 : 1 : case INTERFACE_NAMELESS:
11554 : 1 : gfc_error ("Malformed GENERIC statement at %C");
11555 : 1 : goto error;
11556 : 0 : break;
11557 : :
11558 : 0 : default:
11559 : 0 : gcc_unreachable ();
11560 : : }
11561 : :
11562 : : /* Match the required =>. */
11563 : 863 : if (gfc_match (" =>") != MATCH_YES)
11564 : : {
11565 : 0 : gfc_error ("Expected %<=>%> at %C");
11566 : 0 : goto error;
11567 : : }
11568 : :
11569 : : /* Try to find existing GENERIC binding with this name / for this operator;
11570 : : if there is something, check that it is another GENERIC and then extend
11571 : : it rather than building a new node. Otherwise, create it and put it
11572 : : at the right position. */
11573 : :
11574 : 863 : switch (op_type)
11575 : : {
11576 : 462 : case INTERFACE_DTIO:
11577 : 462 : case INTERFACE_USER_OP:
11578 : 462 : case INTERFACE_GENERIC:
11579 : 462 : {
11580 : 462 : const bool is_op = (op_type == INTERFACE_USER_OP);
11581 : 462 : gfc_symtree* st;
11582 : :
11583 : 462 : st = gfc_find_symtree (is_op ? ns->tb_uop_root : ns->tb_sym_root, name);
11584 : 462 : tb = st ? st->n.tb : NULL;
11585 : 11 : break;
11586 : : }
11587 : :
11588 : 401 : case INTERFACE_INTRINSIC_OP:
11589 : 401 : tb = ns->tb_op[op];
11590 : 401 : break;
11591 : :
11592 : 0 : default:
11593 : 0 : gcc_unreachable ();
11594 : : }
11595 : :
11596 : 412 : if (tb)
11597 : : {
11598 : 9 : if (!tb->is_generic)
11599 : : {
11600 : 1 : gcc_assert (op_type == INTERFACE_GENERIC);
11601 : 1 : gfc_error ("There's already a non-generic procedure with binding name"
11602 : : " %qs for the derived type %qs at %C",
11603 : : bind_name, block->name);
11604 : 1 : goto error;
11605 : : }
11606 : :
11607 : 8 : if (tb->access != tbattr.access)
11608 : : {
11609 : 2 : gfc_error ("Binding at %C must have the same access as already"
11610 : : " defined binding %qs", bind_name);
11611 : 2 : goto error;
11612 : : }
11613 : : }
11614 : : else
11615 : : {
11616 : 854 : tb = gfc_get_typebound_proc (NULL);
11617 : 854 : tb->where = gfc_current_locus;
11618 : 854 : tb->access = tbattr.access;
11619 : 854 : tb->is_generic = 1;
11620 : 854 : tb->u.generic = NULL;
11621 : :
11622 : 854 : switch (op_type)
11623 : : {
11624 : 453 : case INTERFACE_DTIO:
11625 : 453 : case INTERFACE_GENERIC:
11626 : 453 : case INTERFACE_USER_OP:
11627 : 453 : {
11628 : 453 : const bool is_op = (op_type == INTERFACE_USER_OP);
11629 : 453 : gfc_symtree* st = gfc_get_tbp_symtree (is_op ? &ns->tb_uop_root :
11630 : : &ns->tb_sym_root, name);
11631 : 453 : gcc_assert (st);
11632 : 453 : st->n.tb = tb;
11633 : :
11634 : 453 : break;
11635 : : }
11636 : :
11637 : 401 : case INTERFACE_INTRINSIC_OP:
11638 : 401 : ns->tb_op[op] = tb;
11639 : 401 : break;
11640 : :
11641 : 0 : default:
11642 : 0 : gcc_unreachable ();
11643 : : }
11644 : : }
11645 : :
11646 : : /* Now, match all following names as specific targets. */
11647 : 989 : do
11648 : : {
11649 : 989 : gfc_symtree* target_st;
11650 : 989 : gfc_tbp_generic* target;
11651 : :
11652 : 989 : m = gfc_match_name (name);
11653 : 989 : if (m == MATCH_ERROR)
11654 : 0 : goto error;
11655 : 989 : if (m == MATCH_NO)
11656 : : {
11657 : 1 : gfc_error ("Expected specific binding name at %C");
11658 : 1 : goto error;
11659 : : }
11660 : :
11661 : 988 : target_st = gfc_get_tbp_symtree (&ns->tb_sym_root, name);
11662 : :
11663 : : /* See if this is a duplicate specification. */
11664 : 1177 : for (target = tb->u.generic; target; target = target->next)
11665 : 190 : if (target_st == target->specific_st)
11666 : : {
11667 : 1 : gfc_error ("%qs already defined as specific binding for the"
11668 : : " generic %qs at %C", name, bind_name);
11669 : 1 : goto error;
11670 : : }
11671 : :
11672 : 987 : target = gfc_get_tbp_generic ();
11673 : 987 : target->specific_st = target_st;
11674 : 987 : target->specific = NULL;
11675 : 987 : target->next = tb->u.generic;
11676 : 987 : target->is_operator = ((op_type == INTERFACE_USER_OP)
11677 : 987 : || (op_type == INTERFACE_INTRINSIC_OP));
11678 : 987 : tb->u.generic = target;
11679 : : }
11680 : 987 : while (gfc_match (" ,") == MATCH_YES);
11681 : :
11682 : : /* Here should be the end. */
11683 : 858 : if (gfc_match_eos () != MATCH_YES)
11684 : : {
11685 : 1 : gfc_error ("Junk after GENERIC binding at %C");
11686 : 1 : goto error;
11687 : : }
11688 : :
11689 : : return MATCH_YES;
11690 : :
11691 : : error:
11692 : : return MATCH_ERROR;
11693 : : }
11694 : :
11695 : :
11696 : : /* Match a FINAL declaration inside a derived type. */
11697 : :
11698 : : match
11699 : 384 : gfc_match_final_decl (void)
11700 : : {
11701 : 384 : char name[GFC_MAX_SYMBOL_LEN + 1];
11702 : 384 : gfc_symbol* sym;
11703 : 384 : match m;
11704 : 384 : gfc_namespace* module_ns;
11705 : 384 : bool first, last;
11706 : 384 : gfc_symbol* block;
11707 : :
11708 : 384 : if (gfc_current_form == FORM_FREE)
11709 : : {
11710 : 384 : char c = gfc_peek_ascii_char ();
11711 : 384 : if (!gfc_is_whitespace (c) && c != ':')
11712 : : return MATCH_NO;
11713 : : }
11714 : :
11715 : 383 : if (gfc_state_stack->state != COMP_DERIVED_CONTAINS)
11716 : : {
11717 : 1 : if (gfc_current_form == FORM_FIXED)
11718 : : return MATCH_NO;
11719 : :
11720 : 1 : gfc_error ("FINAL declaration at %C must be inside a derived type "
11721 : : "CONTAINS section");
11722 : 1 : return MATCH_ERROR;
11723 : : }
11724 : :
11725 : 382 : block = gfc_state_stack->previous->sym;
11726 : 382 : gcc_assert (block);
11727 : :
11728 : 382 : if (gfc_state_stack->previous->previous
11729 : 382 : && gfc_state_stack->previous->previous->state != COMP_MODULE
11730 : 6 : && gfc_state_stack->previous->previous->state != COMP_SUBMODULE)
11731 : : {
11732 : 0 : gfc_error ("Derived type declaration with FINAL at %C must be in the"
11733 : : " specification part of a MODULE");
11734 : 0 : return MATCH_ERROR;
11735 : : }
11736 : :
11737 : 382 : module_ns = gfc_current_ns;
11738 : 382 : gcc_assert (module_ns);
11739 : 382 : gcc_assert (module_ns->proc_name->attr.flavor == FL_MODULE);
11740 : :
11741 : : /* Match optional ::, don't care about MATCH_YES or MATCH_NO. */
11742 : 382 : if (gfc_match (" ::") == MATCH_ERROR)
11743 : : return MATCH_ERROR;
11744 : :
11745 : : /* Match the sequence of procedure names. */
11746 : : first = true;
11747 : : last = false;
11748 : 456 : do
11749 : : {
11750 : 456 : gfc_finalizer* f;
11751 : :
11752 : 456 : if (first && gfc_match_eos () == MATCH_YES)
11753 : : {
11754 : 2 : gfc_error ("Empty FINAL at %C");
11755 : 2 : return MATCH_ERROR;
11756 : : }
11757 : :
11758 : 454 : m = gfc_match_name (name);
11759 : 454 : if (m == MATCH_NO)
11760 : : {
11761 : 1 : gfc_error ("Expected module procedure name at %C");
11762 : 1 : return MATCH_ERROR;
11763 : : }
11764 : 453 : else if (m != MATCH_YES)
11765 : : return MATCH_ERROR;
11766 : :
11767 : 453 : if (gfc_match_eos () == MATCH_YES)
11768 : : last = true;
11769 : 75 : if (!last && gfc_match_char (',') != MATCH_YES)
11770 : : {
11771 : 1 : gfc_error ("Expected %<,%> at %C");
11772 : 1 : return MATCH_ERROR;
11773 : : }
11774 : :
11775 : 452 : if (gfc_get_symbol (name, module_ns, &sym))
11776 : : {
11777 : 0 : gfc_error ("Unknown procedure name %qs at %C", name);
11778 : 0 : return MATCH_ERROR;
11779 : : }
11780 : :
11781 : : /* Mark the symbol as module procedure. */
11782 : 452 : if (sym->attr.proc != PROC_MODULE
11783 : 452 : && !gfc_add_procedure (&sym->attr, PROC_MODULE, sym->name, NULL))
11784 : : return MATCH_ERROR;
11785 : :
11786 : : /* Check if we already have this symbol in the list, this is an error. */
11787 : 615 : for (f = block->f2k_derived->finalizers; f; f = f->next)
11788 : 164 : if (f->proc_sym == sym)
11789 : : {
11790 : 1 : gfc_error ("%qs at %C is already defined as FINAL procedure",
11791 : : name);
11792 : 1 : return MATCH_ERROR;
11793 : : }
11794 : :
11795 : : /* Add this symbol to the list of finalizers. */
11796 : 451 : gcc_assert (block->f2k_derived);
11797 : 451 : sym->refs++;
11798 : 451 : f = XCNEW (gfc_finalizer);
11799 : 451 : f->proc_sym = sym;
11800 : 451 : f->proc_tree = NULL;
11801 : 451 : f->where = gfc_current_locus;
11802 : 451 : f->next = block->f2k_derived->finalizers;
11803 : 451 : block->f2k_derived->finalizers = f;
11804 : :
11805 : 451 : first = false;
11806 : : }
11807 : 451 : while (!last);
11808 : :
11809 : : return MATCH_YES;
11810 : : }
11811 : :
11812 : :
11813 : : const ext_attr_t ext_attr_list[] = {
11814 : : { "dllimport", EXT_ATTR_DLLIMPORT, "dllimport" },
11815 : : { "dllexport", EXT_ATTR_DLLEXPORT, "dllexport" },
11816 : : { "cdecl", EXT_ATTR_CDECL, "cdecl" },
11817 : : { "stdcall", EXT_ATTR_STDCALL, "stdcall" },
11818 : : { "fastcall", EXT_ATTR_FASTCALL, "fastcall" },
11819 : : { "no_arg_check", EXT_ATTR_NO_ARG_CHECK, NULL },
11820 : : { "deprecated", EXT_ATTR_DEPRECATED, NULL },
11821 : : { "noinline", EXT_ATTR_NOINLINE, NULL },
11822 : : { "noreturn", EXT_ATTR_NORETURN, NULL },
11823 : : { "weak", EXT_ATTR_WEAK, NULL },
11824 : : { NULL, EXT_ATTR_LAST, NULL }
11825 : : };
11826 : :
11827 : : /* Match a !GCC$ ATTRIBUTES statement of the form:
11828 : : !GCC$ ATTRIBUTES attribute-list :: var-name [, var-name] ...
11829 : : When we come here, we have already matched the !GCC$ ATTRIBUTES string.
11830 : :
11831 : : TODO: We should support all GCC attributes using the same syntax for
11832 : : the attribute list, i.e. the list in C
11833 : : __attributes(( attribute-list ))
11834 : : matches then
11835 : : !GCC$ ATTRIBUTES attribute-list ::
11836 : : Cf. c-parser.cc's c_parser_attributes; the data can then directly be
11837 : : saved into a TREE.
11838 : :
11839 : : As there is absolutely no risk of confusion, we should never return
11840 : : MATCH_NO. */
11841 : : match
11842 : 2660 : gfc_match_gcc_attributes (void)
11843 : : {
11844 : 2660 : symbol_attribute attr;
11845 : 2660 : char name[GFC_MAX_SYMBOL_LEN + 1];
11846 : 2660 : unsigned id;
11847 : 2660 : gfc_symbol *sym;
11848 : 2660 : match m;
11849 : :
11850 : 2660 : gfc_clear_attr (&attr);
11851 : 2660 : for(;;)
11852 : : {
11853 : 2660 : char ch;
11854 : :
11855 : 2660 : if (gfc_match_name (name) != MATCH_YES)
11856 : : return MATCH_ERROR;
11857 : :
11858 : 16033 : for (id = 0; id < EXT_ATTR_LAST; id++)
11859 : 16033 : if (strcmp (name, ext_attr_list[id].name) == 0)
11860 : : break;
11861 : :
11862 : 2660 : if (id == EXT_ATTR_LAST)
11863 : : {
11864 : 0 : gfc_error ("Unknown attribute in !GCC$ ATTRIBUTES statement at %C");
11865 : 0 : return MATCH_ERROR;
11866 : : }
11867 : :
11868 : 2660 : if (!gfc_add_ext_attribute (&attr, (ext_attr_id_t)id, &gfc_current_locus))
11869 : : return MATCH_ERROR;
11870 : :
11871 : 2660 : gfc_gobble_whitespace ();
11872 : 2660 : ch = gfc_next_ascii_char ();
11873 : 2660 : if (ch == ':')
11874 : : {
11875 : : /* This is the successful exit condition for the loop. */
11876 : 2660 : if (gfc_next_ascii_char () == ':')
11877 : : break;
11878 : : }
11879 : :
11880 : 0 : if (ch == ',')
11881 : 0 : continue;
11882 : :
11883 : 0 : goto syntax;
11884 : 0 : }
11885 : :
11886 : 2660 : if (gfc_match_eos () == MATCH_YES)
11887 : 0 : goto syntax;
11888 : :
11889 : 2667 : for(;;)
11890 : : {
11891 : 2667 : m = gfc_match_name (name);
11892 : 2667 : if (m != MATCH_YES)
11893 : : return m;
11894 : :
11895 : 2667 : if (find_special (name, &sym, true))
11896 : : return MATCH_ERROR;
11897 : :
11898 : 2667 : sym->attr.ext_attr |= attr.ext_attr;
11899 : :
11900 : 2667 : if (gfc_match_eos () == MATCH_YES)
11901 : : break;
11902 : :
11903 : 7 : if (gfc_match_char (',') != MATCH_YES)
11904 : 0 : goto syntax;
11905 : : }
11906 : :
11907 : : return MATCH_YES;
11908 : :
11909 : 0 : syntax:
11910 : 0 : gfc_error ("Syntax error in !GCC$ ATTRIBUTES statement at %C");
11911 : 0 : return MATCH_ERROR;
11912 : : }
11913 : :
11914 : :
11915 : : /* Match a !GCC$ UNROLL statement of the form:
11916 : : !GCC$ UNROLL n
11917 : :
11918 : : The parameter n is the number of times we are supposed to unroll.
11919 : :
11920 : : When we come here, we have already matched the !GCC$ UNROLL string. */
11921 : : match
11922 : 19 : gfc_match_gcc_unroll (void)
11923 : : {
11924 : 19 : int value;
11925 : :
11926 : : /* FIXME: use gfc_match_small_literal_int instead, delete small_int */
11927 : 19 : if (gfc_match_small_int (&value) == MATCH_YES)
11928 : : {
11929 : 19 : if (value < 0 || value > USHRT_MAX)
11930 : : {
11931 : 2 : gfc_error ("%<GCC unroll%> directive requires a"
11932 : : " non-negative integral constant"
11933 : : " less than or equal to %u at %C",
11934 : : USHRT_MAX
11935 : : );
11936 : 2 : return MATCH_ERROR;
11937 : : }
11938 : 17 : if (gfc_match_eos () == MATCH_YES)
11939 : : {
11940 : 17 : directive_unroll = value == 0 ? 1 : value;
11941 : 17 : return MATCH_YES;
11942 : : }
11943 : : }
11944 : :
11945 : 0 : gfc_error ("Syntax error in !GCC$ UNROLL directive at %C");
11946 : 0 : return MATCH_ERROR;
11947 : : }
11948 : :
11949 : : /* Match a !GCC$ builtin (b) attributes simd flags if('target') form:
11950 : :
11951 : : The parameter b is name of a middle-end built-in.
11952 : : FLAGS is optional and must be one of:
11953 : : - (inbranch)
11954 : : - (notinbranch)
11955 : :
11956 : : IF('target') is optional and TARGET is a name of a multilib ABI.
11957 : :
11958 : : When we come here, we have already matched the !GCC$ builtin string. */
11959 : :
11960 : : match
11961 : 3292844 : gfc_match_gcc_builtin (void)
11962 : : {
11963 : 3292844 : char builtin[GFC_MAX_SYMBOL_LEN + 1];
11964 : 3292844 : char target[GFC_MAX_SYMBOL_LEN + 1];
11965 : :
11966 : 3292844 : if (gfc_match (" ( %n ) attributes simd", builtin) != MATCH_YES)
11967 : : return MATCH_ERROR;
11968 : :
11969 : 3292844 : gfc_simd_clause clause = SIMD_NONE;
11970 : 3292844 : if (gfc_match (" ( notinbranch ) ") == MATCH_YES)
11971 : : clause = SIMD_NOTINBRANCH;
11972 : 21 : else if (gfc_match (" ( inbranch ) ") == MATCH_YES)
11973 : 15 : clause = SIMD_INBRANCH;
11974 : :
11975 : 3292844 : if (gfc_match (" if ( '%n' ) ", target) == MATCH_YES)
11976 : : {
11977 : 3292815 : const char *abi = targetm.get_multilib_abi_name ();
11978 : 3292815 : if (abi == NULL || strcmp (abi, target) != 0)
11979 : : return MATCH_YES;
11980 : : }
11981 : :
11982 : 1624459 : if (gfc_vectorized_builtins == NULL)
11983 : 30088 : gfc_vectorized_builtins = new hash_map<nofree_string_hash, int> ();
11984 : :
11985 : 1624459 : char *r = XNEWVEC (char, strlen (builtin) + 32);
11986 : 1624459 : sprintf (r, "__builtin_%s", builtin);
11987 : :
11988 : 1624459 : bool existed;
11989 : 1624459 : int &value = gfc_vectorized_builtins->get_or_insert (r, &existed);
11990 : 1624459 : value |= clause;
11991 : 1624459 : if (existed)
11992 : 22 : free (r);
11993 : :
11994 : : return MATCH_YES;
11995 : : }
11996 : :
11997 : : /* Match an !GCC$ IVDEP statement.
11998 : : When we come here, we have already matched the !GCC$ IVDEP string. */
11999 : :
12000 : : match
12001 : 3 : gfc_match_gcc_ivdep (void)
12002 : : {
12003 : 3 : if (gfc_match_eos () == MATCH_YES)
12004 : : {
12005 : 3 : directive_ivdep = true;
12006 : 3 : return MATCH_YES;
12007 : : }
12008 : :
12009 : 0 : gfc_error ("Syntax error in !GCC$ IVDEP directive at %C");
12010 : 0 : return MATCH_ERROR;
12011 : : }
12012 : :
12013 : : /* Match an !GCC$ VECTOR statement.
12014 : : When we come here, we have already matched the !GCC$ VECTOR string. */
12015 : :
12016 : : match
12017 : 3 : gfc_match_gcc_vector (void)
12018 : : {
12019 : 3 : if (gfc_match_eos () == MATCH_YES)
12020 : : {
12021 : 3 : directive_vector = true;
12022 : 3 : directive_novector = false;
12023 : 3 : return MATCH_YES;
12024 : : }
12025 : :
12026 : 0 : gfc_error ("Syntax error in !GCC$ VECTOR directive at %C");
12027 : 0 : return MATCH_ERROR;
12028 : : }
12029 : :
12030 : : /* Match an !GCC$ NOVECTOR statement.
12031 : : When we come here, we have already matched the !GCC$ NOVECTOR string. */
12032 : :
12033 : : match
12034 : 3 : gfc_match_gcc_novector (void)
12035 : : {
12036 : 3 : if (gfc_match_eos () == MATCH_YES)
12037 : : {
12038 : 3 : directive_novector = true;
12039 : 3 : directive_vector = false;
12040 : 3 : return MATCH_YES;
12041 : : }
12042 : :
12043 : 0 : gfc_error ("Syntax error in !GCC$ NOVECTOR directive at %C");
12044 : 0 : return MATCH_ERROR;
12045 : : }
|