arith.c (gfc_enum_initializer): Move function ...
[gcc.git] / gcc / fortran / decl.c
1 /* Declaration statement matcher
2 Copyright (C) 2002, 2004, 2005, 2006, 2007, 2008, 2009
3 Free Software Foundation, Inc.
4 Contributed by Andy Vaught
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 #include "config.h"
23 #include "system.h"
24 #include "gfortran.h"
25 #include "match.h"
26 #include "parse.h"
27 #include "flags.h"
28
29
30 /* Macros to access allocate memory for gfc_data_variable,
31 gfc_data_value and gfc_data. */
32 #define gfc_get_data_variable() XCNEW (gfc_data_variable)
33 #define gfc_get_data_value() XCNEW (gfc_data_value)
34 #define gfc_get_data() XCNEW (gfc_data)
35
36
37 /* This flag is set if an old-style length selector is matched
38 during a type-declaration statement. */
39
40 static int old_char_selector;
41
42 /* When variables acquire types and attributes from a declaration
43 statement, they get them from the following static variables. The
44 first part of a declaration sets these variables and the second
45 part copies these into symbol structures. */
46
47 static gfc_typespec current_ts;
48
49 static symbol_attribute current_attr;
50 static gfc_array_spec *current_as;
51 static int colon_seen;
52
53 /* The current binding label (if any). */
54 static char curr_binding_label[GFC_MAX_BINDING_LABEL_LEN + 1];
55 /* Need to know how many identifiers are on the current data declaration
56 line in case we're given the BIND(C) attribute with a NAME= specifier. */
57 static int num_idents_on_line;
58 /* Need to know if a NAME= specifier was found during gfc_match_bind_c so we
59 can supply a name if the curr_binding_label is nil and NAME= was not. */
60 static int has_name_equals = 0;
61
62 /* Initializer of the previous enumerator. */
63
64 static gfc_expr *last_initializer;
65
66 /* History of all the enumerators is maintained, so that
67 kind values of all the enumerators could be updated depending
68 upon the maximum initialized value. */
69
70 typedef struct enumerator_history
71 {
72 gfc_symbol *sym;
73 gfc_expr *initializer;
74 struct enumerator_history *next;
75 }
76 enumerator_history;
77
78 /* Header of enum history chain. */
79
80 static enumerator_history *enum_history = NULL;
81
82 /* Pointer of enum history node containing largest initializer. */
83
84 static enumerator_history *max_enum = NULL;
85
86 /* gfc_new_block points to the symbol of a newly matched block. */
87
88 gfc_symbol *gfc_new_block;
89
90 bool gfc_matching_function;
91
92
93 /********************* DATA statement subroutines *********************/
94
95 static bool in_match_data = false;
96
97 bool
98 gfc_in_match_data (void)
99 {
100 return in_match_data;
101 }
102
103 static void
104 set_in_match_data (bool set_value)
105 {
106 in_match_data = set_value;
107 }
108
109 /* Free a gfc_data_variable structure and everything beneath it. */
110
111 static void
112 free_variable (gfc_data_variable *p)
113 {
114 gfc_data_variable *q;
115
116 for (; p; p = q)
117 {
118 q = p->next;
119 gfc_free_expr (p->expr);
120 gfc_free_iterator (&p->iter, 0);
121 free_variable (p->list);
122 gfc_free (p);
123 }
124 }
125
126
127 /* Free a gfc_data_value structure and everything beneath it. */
128
129 static void
130 free_value (gfc_data_value *p)
131 {
132 gfc_data_value *q;
133
134 for (; p; p = q)
135 {
136 q = p->next;
137 gfc_free_expr (p->expr);
138 gfc_free (p);
139 }
140 }
141
142
143 /* Free a list of gfc_data structures. */
144
145 void
146 gfc_free_data (gfc_data *p)
147 {
148 gfc_data *q;
149
150 for (; p; p = q)
151 {
152 q = p->next;
153 free_variable (p->var);
154 free_value (p->value);
155 gfc_free (p);
156 }
157 }
158
159
160 /* Free all data in a namespace. */
161
162 static void
163 gfc_free_data_all (gfc_namespace *ns)
164 {
165 gfc_data *d;
166
167 for (;ns->data;)
168 {
169 d = ns->data->next;
170 gfc_free (ns->data);
171 ns->data = d;
172 }
173 }
174
175
176 static match var_element (gfc_data_variable *);
177
178 /* Match a list of variables terminated by an iterator and a right
179 parenthesis. */
180
181 static match
182 var_list (gfc_data_variable *parent)
183 {
184 gfc_data_variable *tail, var;
185 match m;
186
187 m = var_element (&var);
188 if (m == MATCH_ERROR)
189 return MATCH_ERROR;
190 if (m == MATCH_NO)
191 goto syntax;
192
193 tail = gfc_get_data_variable ();
194 *tail = var;
195
196 parent->list = tail;
197
198 for (;;)
199 {
200 if (gfc_match_char (',') != MATCH_YES)
201 goto syntax;
202
203 m = gfc_match_iterator (&parent->iter, 1);
204 if (m == MATCH_YES)
205 break;
206 if (m == MATCH_ERROR)
207 return MATCH_ERROR;
208
209 m = var_element (&var);
210 if (m == MATCH_ERROR)
211 return MATCH_ERROR;
212 if (m == MATCH_NO)
213 goto syntax;
214
215 tail->next = gfc_get_data_variable ();
216 tail = tail->next;
217
218 *tail = var;
219 }
220
221 if (gfc_match_char (')') != MATCH_YES)
222 goto syntax;
223 return MATCH_YES;
224
225 syntax:
226 gfc_syntax_error (ST_DATA);
227 return MATCH_ERROR;
228 }
229
230
231 /* Match a single element in a data variable list, which can be a
232 variable-iterator list. */
233
234 static match
235 var_element (gfc_data_variable *new_var)
236 {
237 match m;
238 gfc_symbol *sym;
239
240 memset (new_var, 0, sizeof (gfc_data_variable));
241
242 if (gfc_match_char ('(') == MATCH_YES)
243 return var_list (new_var);
244
245 m = gfc_match_variable (&new_var->expr, 0);
246 if (m != MATCH_YES)
247 return m;
248
249 sym = new_var->expr->symtree->n.sym;
250
251 /* Symbol should already have an associated type. */
252 if (gfc_check_symbol_typed (sym, gfc_current_ns,
253 false, gfc_current_locus) == FAILURE)
254 return MATCH_ERROR;
255
256 if (!sym->attr.function && gfc_current_ns->parent
257 && gfc_current_ns->parent == sym->ns)
258 {
259 gfc_error ("Host associated variable '%s' may not be in the DATA "
260 "statement at %C", sym->name);
261 return MATCH_ERROR;
262 }
263
264 if (gfc_current_state () != COMP_BLOCK_DATA
265 && sym->attr.in_common
266 && gfc_notify_std (GFC_STD_GNU, "Extension: initialization of "
267 "common block variable '%s' in DATA statement at %C",
268 sym->name) == FAILURE)
269 return MATCH_ERROR;
270
271 if (gfc_add_data (&sym->attr, sym->name, &new_var->expr->where) == FAILURE)
272 return MATCH_ERROR;
273
274 return MATCH_YES;
275 }
276
277
278 /* Match the top-level list of data variables. */
279
280 static match
281 top_var_list (gfc_data *d)
282 {
283 gfc_data_variable var, *tail, *new_var;
284 match m;
285
286 tail = NULL;
287
288 for (;;)
289 {
290 m = var_element (&var);
291 if (m == MATCH_NO)
292 goto syntax;
293 if (m == MATCH_ERROR)
294 return MATCH_ERROR;
295
296 new_var = gfc_get_data_variable ();
297 *new_var = var;
298
299 if (tail == NULL)
300 d->var = new_var;
301 else
302 tail->next = new_var;
303
304 tail = new_var;
305
306 if (gfc_match_char ('/') == MATCH_YES)
307 break;
308 if (gfc_match_char (',') != MATCH_YES)
309 goto syntax;
310 }
311
312 return MATCH_YES;
313
314 syntax:
315 gfc_syntax_error (ST_DATA);
316 gfc_free_data_all (gfc_current_ns);
317 return MATCH_ERROR;
318 }
319
320
321 static match
322 match_data_constant (gfc_expr **result)
323 {
324 char name[GFC_MAX_SYMBOL_LEN + 1];
325 gfc_symbol *sym;
326 gfc_expr *expr;
327 match m;
328 locus old_loc;
329
330 m = gfc_match_literal_constant (&expr, 1);
331 if (m == MATCH_YES)
332 {
333 *result = expr;
334 return MATCH_YES;
335 }
336
337 if (m == MATCH_ERROR)
338 return MATCH_ERROR;
339
340 m = gfc_match_null (result);
341 if (m != MATCH_NO)
342 return m;
343
344 old_loc = gfc_current_locus;
345
346 /* Should this be a structure component, try to match it
347 before matching a name. */
348 m = gfc_match_rvalue (result);
349 if (m == MATCH_ERROR)
350 return m;
351
352 if (m == MATCH_YES && (*result)->expr_type == EXPR_STRUCTURE)
353 {
354 if (gfc_simplify_expr (*result, 0) == FAILURE)
355 m = MATCH_ERROR;
356 return m;
357 }
358
359 gfc_current_locus = old_loc;
360
361 m = gfc_match_name (name);
362 if (m != MATCH_YES)
363 return m;
364
365 if (gfc_find_symbol (name, NULL, 1, &sym))
366 return MATCH_ERROR;
367
368 if (sym == NULL
369 || (sym->attr.flavor != FL_PARAMETER && sym->attr.flavor != FL_DERIVED))
370 {
371 gfc_error ("Symbol '%s' must be a PARAMETER in DATA statement at %C",
372 name);
373 return MATCH_ERROR;
374 }
375 else if (sym->attr.flavor == FL_DERIVED)
376 return gfc_match_structure_constructor (sym, result, false);
377
378 /* Check to see if the value is an initialization array expression. */
379 if (sym->value->expr_type == EXPR_ARRAY)
380 {
381 gfc_current_locus = old_loc;
382
383 m = gfc_match_init_expr (result);
384 if (m == MATCH_ERROR)
385 return m;
386
387 if (m == MATCH_YES)
388 {
389 if (gfc_simplify_expr (*result, 0) == FAILURE)
390 m = MATCH_ERROR;
391
392 if ((*result)->expr_type == EXPR_CONSTANT)
393 return m;
394 else
395 {
396 gfc_error ("Invalid initializer %s in Data statement at %C", name);
397 return MATCH_ERROR;
398 }
399 }
400 }
401
402 *result = gfc_copy_expr (sym->value);
403 return MATCH_YES;
404 }
405
406
407 /* Match a list of values in a DATA statement. The leading '/' has
408 already been seen at this point. */
409
410 static match
411 top_val_list (gfc_data *data)
412 {
413 gfc_data_value *new_val, *tail;
414 gfc_expr *expr;
415 match m;
416
417 tail = NULL;
418
419 for (;;)
420 {
421 m = match_data_constant (&expr);
422 if (m == MATCH_NO)
423 goto syntax;
424 if (m == MATCH_ERROR)
425 return MATCH_ERROR;
426
427 new_val = gfc_get_data_value ();
428 mpz_init (new_val->repeat);
429
430 if (tail == NULL)
431 data->value = new_val;
432 else
433 tail->next = new_val;
434
435 tail = new_val;
436
437 if (expr->ts.type != BT_INTEGER || gfc_match_char ('*') != MATCH_YES)
438 {
439 tail->expr = expr;
440 mpz_set_ui (tail->repeat, 1);
441 }
442 else
443 {
444 if (expr->ts.type == BT_INTEGER)
445 mpz_set (tail->repeat, expr->value.integer);
446 gfc_free_expr (expr);
447
448 m = match_data_constant (&tail->expr);
449 if (m == MATCH_NO)
450 goto syntax;
451 if (m == MATCH_ERROR)
452 return MATCH_ERROR;
453 }
454
455 if (gfc_match_char ('/') == MATCH_YES)
456 break;
457 if (gfc_match_char (',') == MATCH_NO)
458 goto syntax;
459 }
460
461 return MATCH_YES;
462
463 syntax:
464 gfc_syntax_error (ST_DATA);
465 gfc_free_data_all (gfc_current_ns);
466 return MATCH_ERROR;
467 }
468
469
470 /* Matches an old style initialization. */
471
472 static match
473 match_old_style_init (const char *name)
474 {
475 match m;
476 gfc_symtree *st;
477 gfc_symbol *sym;
478 gfc_data *newdata;
479
480 /* Set up data structure to hold initializers. */
481 gfc_find_sym_tree (name, NULL, 0, &st);
482 sym = st->n.sym;
483
484 newdata = gfc_get_data ();
485 newdata->var = gfc_get_data_variable ();
486 newdata->var->expr = gfc_get_variable_expr (st);
487 newdata->where = gfc_current_locus;
488
489 /* Match initial value list. This also eats the terminal '/'. */
490 m = top_val_list (newdata);
491 if (m != MATCH_YES)
492 {
493 gfc_free (newdata);
494 return m;
495 }
496
497 if (gfc_pure (NULL))
498 {
499 gfc_error ("Initialization at %C is not allowed in a PURE procedure");
500 gfc_free (newdata);
501 return MATCH_ERROR;
502 }
503
504 /* Mark the variable as having appeared in a data statement. */
505 if (gfc_add_data (&sym->attr, sym->name, &sym->declared_at) == FAILURE)
506 {
507 gfc_free (newdata);
508 return MATCH_ERROR;
509 }
510
511 /* Chain in namespace list of DATA initializers. */
512 newdata->next = gfc_current_ns->data;
513 gfc_current_ns->data = newdata;
514
515 return m;
516 }
517
518
519 /* Match the stuff following a DATA statement. If ERROR_FLAG is set,
520 we are matching a DATA statement and are therefore issuing an error
521 if we encounter something unexpected, if not, we're trying to match
522 an old-style initialization expression of the form INTEGER I /2/. */
523
524 match
525 gfc_match_data (void)
526 {
527 gfc_data *new_data;
528 match m;
529
530 set_in_match_data (true);
531
532 for (;;)
533 {
534 new_data = gfc_get_data ();
535 new_data->where = gfc_current_locus;
536
537 m = top_var_list (new_data);
538 if (m != MATCH_YES)
539 goto cleanup;
540
541 m = top_val_list (new_data);
542 if (m != MATCH_YES)
543 goto cleanup;
544
545 new_data->next = gfc_current_ns->data;
546 gfc_current_ns->data = new_data;
547
548 if (gfc_match_eos () == MATCH_YES)
549 break;
550
551 gfc_match_char (','); /* Optional comma */
552 }
553
554 set_in_match_data (false);
555
556 if (gfc_pure (NULL))
557 {
558 gfc_error ("DATA statement at %C is not allowed in a PURE procedure");
559 return MATCH_ERROR;
560 }
561
562 return MATCH_YES;
563
564 cleanup:
565 set_in_match_data (false);
566 gfc_free_data (new_data);
567 return MATCH_ERROR;
568 }
569
570
571 /************************ Declaration statements *********************/
572
573 /* Match an intent specification. Since this can only happen after an
574 INTENT word, a legal intent-spec must follow. */
575
576 static sym_intent
577 match_intent_spec (void)
578 {
579
580 if (gfc_match (" ( in out )") == MATCH_YES)
581 return INTENT_INOUT;
582 if (gfc_match (" ( in )") == MATCH_YES)
583 return INTENT_IN;
584 if (gfc_match (" ( out )") == MATCH_YES)
585 return INTENT_OUT;
586
587 gfc_error ("Bad INTENT specification at %C");
588 return INTENT_UNKNOWN;
589 }
590
591
592 /* Matches a character length specification, which is either a
593 specification expression or a '*'. */
594
595 static match
596 char_len_param_value (gfc_expr **expr)
597 {
598 match m;
599
600 if (gfc_match_char ('*') == MATCH_YES)
601 {
602 *expr = NULL;
603 return MATCH_YES;
604 }
605
606 m = gfc_match_expr (expr);
607
608 if (m == MATCH_YES
609 && gfc_expr_check_typed (*expr, gfc_current_ns, false) == FAILURE)
610 return MATCH_ERROR;
611
612 if (m == MATCH_YES && (*expr)->expr_type == EXPR_FUNCTION)
613 {
614 if ((*expr)->value.function.actual
615 && (*expr)->value.function.actual->expr->symtree)
616 {
617 gfc_expr *e;
618 e = (*expr)->value.function.actual->expr;
619 if (e->symtree->n.sym->attr.flavor == FL_PROCEDURE
620 && e->expr_type == EXPR_VARIABLE)
621 {
622 if (e->symtree->n.sym->ts.type == BT_UNKNOWN)
623 goto syntax;
624 if (e->symtree->n.sym->ts.type == BT_CHARACTER
625 && e->symtree->n.sym->ts.cl
626 && e->symtree->n.sym->ts.cl->length->ts.type == BT_UNKNOWN)
627 goto syntax;
628 }
629 }
630 }
631 return m;
632
633 syntax:
634 gfc_error ("Conflict in attributes of function argument at %C");
635 return MATCH_ERROR;
636 }
637
638
639 /* A character length is a '*' followed by a literal integer or a
640 char_len_param_value in parenthesis. */
641
642 static match
643 match_char_length (gfc_expr **expr)
644 {
645 int length;
646 match m;
647
648 m = gfc_match_char ('*');
649 if (m != MATCH_YES)
650 return m;
651
652 m = gfc_match_small_literal_int (&length, NULL);
653 if (m == MATCH_ERROR)
654 return m;
655
656 if (m == MATCH_YES)
657 {
658 *expr = gfc_int_expr (length);
659 return m;
660 }
661
662 if (gfc_match_char ('(') == MATCH_NO)
663 goto syntax;
664
665 m = char_len_param_value (expr);
666 if (m != MATCH_YES && gfc_matching_function)
667 {
668 gfc_undo_symbols ();
669 m = MATCH_YES;
670 }
671
672 if (m == MATCH_ERROR)
673 return m;
674 if (m == MATCH_NO)
675 goto syntax;
676
677 if (gfc_match_char (')') == MATCH_NO)
678 {
679 gfc_free_expr (*expr);
680 *expr = NULL;
681 goto syntax;
682 }
683
684 return MATCH_YES;
685
686 syntax:
687 gfc_error ("Syntax error in character length specification at %C");
688 return MATCH_ERROR;
689 }
690
691
692 /* Special subroutine for finding a symbol. Check if the name is found
693 in the current name space. If not, and we're compiling a function or
694 subroutine and the parent compilation unit is an interface, then check
695 to see if the name we've been given is the name of the interface
696 (located in another namespace). */
697
698 static int
699 find_special (const char *name, gfc_symbol **result)
700 {
701 gfc_state_data *s;
702 int i;
703
704 i = gfc_get_symbol (name, NULL, result);
705 if (i == 0)
706 goto end;
707
708 if (gfc_current_state () != COMP_SUBROUTINE
709 && gfc_current_state () != COMP_FUNCTION)
710 goto end;
711
712 s = gfc_state_stack->previous;
713 if (s == NULL)
714 goto end;
715
716 if (s->state != COMP_INTERFACE)
717 goto end;
718 if (s->sym == NULL)
719 goto end; /* Nameless interface. */
720
721 if (strcmp (name, s->sym->name) == 0)
722 {
723 *result = s->sym;
724 return 0;
725 }
726
727 end:
728 return i;
729 }
730
731
732 /* Special subroutine for getting a symbol node associated with a
733 procedure name, used in SUBROUTINE and FUNCTION statements. The
734 symbol is created in the parent using with symtree node in the
735 child unit pointing to the symbol. If the current namespace has no
736 parent, then the symbol is just created in the current unit. */
737
738 static int
739 get_proc_name (const char *name, gfc_symbol **result, bool module_fcn_entry)
740 {
741 gfc_symtree *st;
742 gfc_symbol *sym;
743 int rc = 0;
744
745 /* Module functions have to be left in their own namespace because
746 they have potentially (almost certainly!) already been referenced.
747 In this sense, they are rather like external functions. This is
748 fixed up in resolve.c(resolve_entries), where the symbol name-
749 space is set to point to the master function, so that the fake
750 result mechanism can work. */
751 if (module_fcn_entry)
752 {
753 /* Present if entry is declared to be a module procedure. */
754 rc = gfc_find_symbol (name, gfc_current_ns->parent, 0, result);
755
756 if (*result == NULL)
757 rc = gfc_get_symbol (name, NULL, result);
758 else if (!gfc_get_symbol (name, NULL, &sym) && sym
759 && (*result)->ts.type == BT_UNKNOWN
760 && sym->attr.flavor == FL_UNKNOWN)
761 /* Pick up the typespec for the entry, if declared in the function
762 body. Note that this symbol is FL_UNKNOWN because it will
763 only have appeared in a type declaration. The local symtree
764 is set to point to the module symbol and a unique symtree
765 to the local version. This latter ensures a correct clearing
766 of the symbols. */
767 {
768 /* If the ENTRY proceeds its specification, we need to ensure
769 that this does not raise a "has no IMPLICIT type" error. */
770 if (sym->ts.type == BT_UNKNOWN)
771 sym->attr.untyped = 1;
772
773 (*result)->ts = sym->ts;
774
775 /* Put the symbol in the procedure namespace so that, should
776 the ENTRY precede its specification, the specification
777 can be applied. */
778 (*result)->ns = gfc_current_ns;
779
780 gfc_find_sym_tree (name, gfc_current_ns, 0, &st);
781 st->n.sym = *result;
782 st = gfc_get_unique_symtree (gfc_current_ns);
783 st->n.sym = sym;
784 }
785 }
786 else
787 rc = gfc_get_symbol (name, gfc_current_ns->parent, result);
788
789 if (rc)
790 return rc;
791
792 sym = *result;
793 gfc_current_ns->refs++;
794
795 if (sym && !sym->gfc_new && gfc_current_state () != COMP_INTERFACE)
796 {
797 /* Trap another encompassed procedure with the same name. All
798 these conditions are necessary to avoid picking up an entry
799 whose name clashes with that of the encompassing procedure;
800 this is handled using gsymbols to register unique,globally
801 accessible names. */
802 if (sym->attr.flavor != 0
803 && sym->attr.proc != 0
804 && (sym->attr.subroutine || sym->attr.function)
805 && sym->attr.if_source != IFSRC_UNKNOWN)
806 gfc_error_now ("Procedure '%s' at %C is already defined at %L",
807 name, &sym->declared_at);
808
809 /* Trap a procedure with a name the same as interface in the
810 encompassing scope. */
811 if (sym->attr.generic != 0
812 && (sym->attr.subroutine || sym->attr.function)
813 && !sym->attr.mod_proc)
814 gfc_error_now ("Name '%s' at %C is already defined"
815 " as a generic interface at %L",
816 name, &sym->declared_at);
817
818 /* Trap declarations of attributes in encompassing scope. The
819 signature for this is that ts.kind is set. Legitimate
820 references only set ts.type. */
821 if (sym->ts.kind != 0
822 && !sym->attr.implicit_type
823 && sym->attr.proc == 0
824 && gfc_current_ns->parent != NULL
825 && sym->attr.access == 0
826 && !module_fcn_entry)
827 gfc_error_now ("Procedure '%s' at %C has an explicit interface "
828 "and must not have attributes declared at %L",
829 name, &sym->declared_at);
830 }
831
832 if (gfc_current_ns->parent == NULL || *result == NULL)
833 return rc;
834
835 /* Module function entries will already have a symtree in
836 the current namespace but will need one at module level. */
837 if (module_fcn_entry)
838 {
839 /* Present if entry is declared to be a module procedure. */
840 rc = gfc_find_sym_tree (name, gfc_current_ns->parent, 0, &st);
841 if (st == NULL)
842 st = gfc_new_symtree (&gfc_current_ns->parent->sym_root, name);
843 }
844 else
845 st = gfc_new_symtree (&gfc_current_ns->sym_root, name);
846
847 st->n.sym = sym;
848 sym->refs++;
849
850 /* See if the procedure should be a module procedure. */
851
852 if (((sym->ns->proc_name != NULL
853 && sym->ns->proc_name->attr.flavor == FL_MODULE
854 && sym->attr.proc != PROC_MODULE)
855 || (module_fcn_entry && sym->attr.proc != PROC_MODULE))
856 && gfc_add_procedure (&sym->attr, PROC_MODULE,
857 sym->name, NULL) == FAILURE)
858 rc = 2;
859
860 return rc;
861 }
862
863
864 /* Verify that the given symbol representing a parameter is C
865 interoperable, by checking to see if it was marked as such after
866 its declaration. If the given symbol is not interoperable, a
867 warning is reported, thus removing the need to return the status to
868 the calling function. The standard does not require the user use
869 one of the iso_c_binding named constants to declare an
870 interoperable parameter, but we can't be sure if the param is C
871 interop or not if the user doesn't. For example, integer(4) may be
872 legal Fortran, but doesn't have meaning in C. It may interop with
873 a number of the C types, which causes a problem because the
874 compiler can't know which one. This code is almost certainly not
875 portable, and the user will get what they deserve if the C type
876 across platforms isn't always interoperable with integer(4). If
877 the user had used something like integer(c_int) or integer(c_long),
878 the compiler could have automatically handled the varying sizes
879 across platforms. */
880
881 gfc_try
882 verify_c_interop_param (gfc_symbol *sym)
883 {
884 int is_c_interop = 0;
885 gfc_try retval = SUCCESS;
886
887 /* We check implicitly typed variables in symbol.c:gfc_set_default_type().
888 Don't repeat the checks here. */
889 if (sym->attr.implicit_type)
890 return SUCCESS;
891
892 /* For subroutines or functions that are passed to a BIND(C) procedure,
893 they're interoperable if they're BIND(C) and their params are all
894 interoperable. */
895 if (sym->attr.flavor == FL_PROCEDURE)
896 {
897 if (sym->attr.is_bind_c == 0)
898 {
899 gfc_error_now ("Procedure '%s' at %L must have the BIND(C) "
900 "attribute to be C interoperable", sym->name,
901 &(sym->declared_at));
902
903 return FAILURE;
904 }
905 else
906 {
907 if (sym->attr.is_c_interop == 1)
908 /* We've already checked this procedure; don't check it again. */
909 return SUCCESS;
910 else
911 return verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
912 sym->common_block);
913 }
914 }
915
916 /* See if we've stored a reference to a procedure that owns sym. */
917 if (sym->ns != NULL && sym->ns->proc_name != NULL)
918 {
919 if (sym->ns->proc_name->attr.is_bind_c == 1)
920 {
921 is_c_interop =
922 (verify_c_interop (&(sym->ts))
923 == SUCCESS ? 1 : 0);
924
925 if (is_c_interop != 1)
926 {
927 /* Make personalized messages to give better feedback. */
928 if (sym->ts.type == BT_DERIVED)
929 gfc_error ("Type '%s' at %L is a parameter to the BIND(C) "
930 " procedure '%s' but is not C interoperable "
931 "because derived type '%s' is not C interoperable",
932 sym->name, &(sym->declared_at),
933 sym->ns->proc_name->name,
934 sym->ts.derived->name);
935 else
936 gfc_warning ("Variable '%s' at %L is a parameter to the "
937 "BIND(C) procedure '%s' but may not be C "
938 "interoperable",
939 sym->name, &(sym->declared_at),
940 sym->ns->proc_name->name);
941 }
942
943 /* Character strings are only C interoperable if they have a
944 length of 1. */
945 if (sym->ts.type == BT_CHARACTER)
946 {
947 gfc_charlen *cl = sym->ts.cl;
948 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT
949 || mpz_cmp_si (cl->length->value.integer, 1) != 0)
950 {
951 gfc_error ("Character argument '%s' at %L "
952 "must be length 1 because "
953 "procedure '%s' is BIND(C)",
954 sym->name, &sym->declared_at,
955 sym->ns->proc_name->name);
956 retval = FAILURE;
957 }
958 }
959
960 /* We have to make sure that any param to a bind(c) routine does
961 not have the allocatable, pointer, or optional attributes,
962 according to J3/04-007, section 5.1. */
963 if (sym->attr.allocatable == 1)
964 {
965 gfc_error ("Variable '%s' at %L cannot have the "
966 "ALLOCATABLE attribute because procedure '%s'"
967 " is BIND(C)", sym->name, &(sym->declared_at),
968 sym->ns->proc_name->name);
969 retval = FAILURE;
970 }
971
972 if (sym->attr.pointer == 1)
973 {
974 gfc_error ("Variable '%s' at %L cannot have the "
975 "POINTER attribute because procedure '%s'"
976 " is BIND(C)", sym->name, &(sym->declared_at),
977 sym->ns->proc_name->name);
978 retval = FAILURE;
979 }
980
981 if (sym->attr.optional == 1)
982 {
983 gfc_error ("Variable '%s' at %L cannot have the "
984 "OPTIONAL attribute because procedure '%s'"
985 " is BIND(C)", sym->name, &(sym->declared_at),
986 sym->ns->proc_name->name);
987 retval = FAILURE;
988 }
989
990 /* Make sure that if it has the dimension attribute, that it is
991 either assumed size or explicit shape. */
992 if (sym->as != NULL)
993 {
994 if (sym->as->type == AS_ASSUMED_SHAPE)
995 {
996 gfc_error ("Assumed-shape array '%s' at %L cannot be an "
997 "argument to the procedure '%s' at %L because "
998 "the procedure is BIND(C)", sym->name,
999 &(sym->declared_at), sym->ns->proc_name->name,
1000 &(sym->ns->proc_name->declared_at));
1001 retval = FAILURE;
1002 }
1003
1004 if (sym->as->type == AS_DEFERRED)
1005 {
1006 gfc_error ("Deferred-shape array '%s' at %L cannot be an "
1007 "argument to the procedure '%s' at %L because "
1008 "the procedure is BIND(C)", sym->name,
1009 &(sym->declared_at), sym->ns->proc_name->name,
1010 &(sym->ns->proc_name->declared_at));
1011 retval = FAILURE;
1012 }
1013 }
1014 }
1015 }
1016
1017 return retval;
1018 }
1019
1020
1021 /* Function called by variable_decl() that adds a name to the symbol table. */
1022
1023 static gfc_try
1024 build_sym (const char *name, gfc_charlen *cl,
1025 gfc_array_spec **as, locus *var_locus)
1026 {
1027 symbol_attribute attr;
1028 gfc_symbol *sym;
1029
1030 if (gfc_get_symbol (name, NULL, &sym))
1031 return FAILURE;
1032
1033 /* Start updating the symbol table. Add basic type attribute if present. */
1034 if (current_ts.type != BT_UNKNOWN
1035 && (sym->attr.implicit_type == 0
1036 || !gfc_compare_types (&sym->ts, &current_ts))
1037 && gfc_add_type (sym, &current_ts, var_locus) == FAILURE)
1038 return FAILURE;
1039
1040 if (sym->ts.type == BT_CHARACTER)
1041 sym->ts.cl = cl;
1042
1043 /* Add dimension attribute if present. */
1044 if (gfc_set_array_spec (sym, *as, var_locus) == FAILURE)
1045 return FAILURE;
1046 *as = NULL;
1047
1048 /* Add attribute to symbol. The copy is so that we can reset the
1049 dimension attribute. */
1050 attr = current_attr;
1051 attr.dimension = 0;
1052
1053 if (gfc_copy_attr (&sym->attr, &attr, var_locus) == FAILURE)
1054 return FAILURE;
1055
1056 /* Finish any work that may need to be done for the binding label,
1057 if it's a bind(c). The bind(c) attr is found before the symbol
1058 is made, and before the symbol name (for data decls), so the
1059 current_ts is holding the binding label, or nothing if the
1060 name= attr wasn't given. Therefore, test here if we're dealing
1061 with a bind(c) and make sure the binding label is set correctly. */
1062 if (sym->attr.is_bind_c == 1)
1063 {
1064 if (sym->binding_label[0] == '\0')
1065 {
1066 /* Set the binding label and verify that if a NAME= was specified
1067 then only one identifier was in the entity-decl-list. */
1068 if (set_binding_label (sym->binding_label, sym->name,
1069 num_idents_on_line) == FAILURE)
1070 return FAILURE;
1071 }
1072 }
1073
1074 /* See if we know we're in a common block, and if it's a bind(c)
1075 common then we need to make sure we're an interoperable type. */
1076 if (sym->attr.in_common == 1)
1077 {
1078 /* Test the common block object. */
1079 if (sym->common_block != NULL && sym->common_block->is_bind_c == 1
1080 && sym->ts.is_c_interop != 1)
1081 {
1082 gfc_error_now ("Variable '%s' in common block '%s' at %C "
1083 "must be declared with a C interoperable "
1084 "kind since common block '%s' is BIND(C)",
1085 sym->name, sym->common_block->name,
1086 sym->common_block->name);
1087 gfc_clear_error ();
1088 }
1089 }
1090
1091 sym->attr.implied_index = 0;
1092
1093 return SUCCESS;
1094 }
1095
1096
1097 /* Set character constant to the given length. The constant will be padded or
1098 truncated. If we're inside an array constructor without a typespec, we
1099 additionally check that all elements have the same length; check_len -1
1100 means no checking. */
1101
1102 void
1103 gfc_set_constant_character_len (int len, gfc_expr *expr, int check_len)
1104 {
1105 gfc_char_t *s;
1106 int slen;
1107
1108 gcc_assert (expr->expr_type == EXPR_CONSTANT);
1109 gcc_assert (expr->ts.type == BT_CHARACTER);
1110
1111 slen = expr->value.character.length;
1112 if (len != slen)
1113 {
1114 s = gfc_get_wide_string (len + 1);
1115 memcpy (s, expr->value.character.string,
1116 MIN (len, slen) * sizeof (gfc_char_t));
1117 if (len > slen)
1118 gfc_wide_memset (&s[slen], ' ', len - slen);
1119
1120 if (gfc_option.warn_character_truncation && slen > len)
1121 gfc_warning_now ("CHARACTER expression at %L is being truncated "
1122 "(%d/%d)", &expr->where, slen, len);
1123
1124 /* Apply the standard by 'hand' otherwise it gets cleared for
1125 initializers. */
1126 if (check_len != -1 && slen != check_len
1127 && !(gfc_option.allow_std & GFC_STD_GNU))
1128 gfc_error_now ("The CHARACTER elements of the array constructor "
1129 "at %L must have the same length (%d/%d)",
1130 &expr->where, slen, check_len);
1131
1132 s[len] = '\0';
1133 gfc_free (expr->value.character.string);
1134 expr->value.character.string = s;
1135 expr->value.character.length = len;
1136 }
1137 }
1138
1139
1140 /* Function to create and update the enumerator history
1141 using the information passed as arguments.
1142 Pointer "max_enum" is also updated, to point to
1143 enum history node containing largest initializer.
1144
1145 SYM points to the symbol node of enumerator.
1146 INIT points to its enumerator value. */
1147
1148 static void
1149 create_enum_history (gfc_symbol *sym, gfc_expr *init)
1150 {
1151 enumerator_history *new_enum_history;
1152 gcc_assert (sym != NULL && init != NULL);
1153
1154 new_enum_history = XCNEW (enumerator_history);
1155
1156 new_enum_history->sym = sym;
1157 new_enum_history->initializer = init;
1158 new_enum_history->next = NULL;
1159
1160 if (enum_history == NULL)
1161 {
1162 enum_history = new_enum_history;
1163 max_enum = enum_history;
1164 }
1165 else
1166 {
1167 new_enum_history->next = enum_history;
1168 enum_history = new_enum_history;
1169
1170 if (mpz_cmp (max_enum->initializer->value.integer,
1171 new_enum_history->initializer->value.integer) < 0)
1172 max_enum = new_enum_history;
1173 }
1174 }
1175
1176
1177 /* Function to free enum kind history. */
1178
1179 void
1180 gfc_free_enum_history (void)
1181 {
1182 enumerator_history *current = enum_history;
1183 enumerator_history *next;
1184
1185 while (current != NULL)
1186 {
1187 next = current->next;
1188 gfc_free (current);
1189 current = next;
1190 }
1191 max_enum = NULL;
1192 enum_history = NULL;
1193 }
1194
1195
1196 /* Function called by variable_decl() that adds an initialization
1197 expression to a symbol. */
1198
1199 static gfc_try
1200 add_init_expr_to_sym (const char *name, gfc_expr **initp, locus *var_locus)
1201 {
1202 symbol_attribute attr;
1203 gfc_symbol *sym;
1204 gfc_expr *init;
1205
1206 init = *initp;
1207 if (find_special (name, &sym))
1208 return FAILURE;
1209
1210 attr = sym->attr;
1211
1212 /* If this symbol is confirming an implicit parameter type,
1213 then an initialization expression is not allowed. */
1214 if (attr.flavor == FL_PARAMETER
1215 && sym->value != NULL
1216 && *initp != NULL)
1217 {
1218 gfc_error ("Initializer not allowed for PARAMETER '%s' at %C",
1219 sym->name);
1220 return FAILURE;
1221 }
1222
1223 if (init == NULL)
1224 {
1225 /* An initializer is required for PARAMETER declarations. */
1226 if (attr.flavor == FL_PARAMETER)
1227 {
1228 gfc_error ("PARAMETER at %L is missing an initializer", var_locus);
1229 return FAILURE;
1230 }
1231 }
1232 else
1233 {
1234 /* If a variable appears in a DATA block, it cannot have an
1235 initializer. */
1236 if (sym->attr.data)
1237 {
1238 gfc_error ("Variable '%s' at %C with an initializer already "
1239 "appears in a DATA statement", sym->name);
1240 return FAILURE;
1241 }
1242
1243 /* Check if the assignment can happen. This has to be put off
1244 until later for a derived type variable. */
1245 if (sym->ts.type != BT_DERIVED && init->ts.type != BT_DERIVED
1246 && gfc_check_assign_symbol (sym, init) == FAILURE)
1247 return FAILURE;
1248
1249 if (sym->ts.type == BT_CHARACTER && sym->ts.cl)
1250 {
1251 /* Update symbol character length according initializer. */
1252 if (sym->ts.cl->length == NULL)
1253 {
1254 int clen;
1255 /* If there are multiple CHARACTER variables declared on the
1256 same line, we don't want them to share the same length. */
1257 sym->ts.cl = gfc_get_charlen ();
1258 sym->ts.cl->next = gfc_current_ns->cl_list;
1259 gfc_current_ns->cl_list = sym->ts.cl;
1260
1261 if (sym->attr.flavor == FL_PARAMETER)
1262 {
1263 if (init->expr_type == EXPR_CONSTANT)
1264 {
1265 clen = init->value.character.length;
1266 sym->ts.cl->length = gfc_int_expr (clen);
1267 }
1268 else if (init->expr_type == EXPR_ARRAY)
1269 {
1270 gfc_expr *p = init->value.constructor->expr;
1271 clen = p->value.character.length;
1272 sym->ts.cl->length = gfc_int_expr (clen);
1273 }
1274 else if (init->ts.cl && init->ts.cl->length)
1275 sym->ts.cl->length =
1276 gfc_copy_expr (sym->value->ts.cl->length);
1277 }
1278 }
1279 /* Update initializer character length according symbol. */
1280 else if (sym->ts.cl->length->expr_type == EXPR_CONSTANT)
1281 {
1282 int len = mpz_get_si (sym->ts.cl->length->value.integer);
1283 gfc_constructor * p;
1284
1285 if (init->expr_type == EXPR_CONSTANT)
1286 gfc_set_constant_character_len (len, init, -1);
1287 else if (init->expr_type == EXPR_ARRAY)
1288 {
1289 /* Build a new charlen to prevent simplification from
1290 deleting the length before it is resolved. */
1291 init->ts.cl = gfc_get_charlen ();
1292 init->ts.cl->next = gfc_current_ns->cl_list;
1293 gfc_current_ns->cl_list = sym->ts.cl;
1294 init->ts.cl->length = gfc_copy_expr (sym->ts.cl->length);
1295
1296 for (p = init->value.constructor; p; p = p->next)
1297 gfc_set_constant_character_len (len, p->expr, -1);
1298 }
1299 }
1300 }
1301
1302 /* Need to check if the expression we initialized this
1303 to was one of the iso_c_binding named constants. If so,
1304 and we're a parameter (constant), let it be iso_c.
1305 For example:
1306 integer(c_int), parameter :: my_int = c_int
1307 integer(my_int) :: my_int_2
1308 If we mark my_int as iso_c (since we can see it's value
1309 is equal to one of the named constants), then my_int_2
1310 will be considered C interoperable. */
1311 if (sym->ts.type != BT_CHARACTER && sym->ts.type != BT_DERIVED)
1312 {
1313 sym->ts.is_iso_c |= init->ts.is_iso_c;
1314 sym->ts.is_c_interop |= init->ts.is_c_interop;
1315 /* attr bits needed for module files. */
1316 sym->attr.is_iso_c |= init->ts.is_iso_c;
1317 sym->attr.is_c_interop |= init->ts.is_c_interop;
1318 if (init->ts.is_iso_c)
1319 sym->ts.f90_type = init->ts.f90_type;
1320 }
1321
1322 /* Add initializer. Make sure we keep the ranks sane. */
1323 if (sym->attr.dimension && init->rank == 0)
1324 {
1325 mpz_t size;
1326 gfc_expr *array;
1327 gfc_constructor *c;
1328 int n;
1329 if (sym->attr.flavor == FL_PARAMETER
1330 && init->expr_type == EXPR_CONSTANT
1331 && spec_size (sym->as, &size) == SUCCESS
1332 && mpz_cmp_si (size, 0) > 0)
1333 {
1334 array = gfc_start_constructor (init->ts.type, init->ts.kind,
1335 &init->where);
1336
1337 array->value.constructor = c = NULL;
1338 for (n = 0; n < (int)mpz_get_si (size); n++)
1339 {
1340 if (array->value.constructor == NULL)
1341 {
1342 array->value.constructor = c = gfc_get_constructor ();
1343 c->expr = init;
1344 }
1345 else
1346 {
1347 c->next = gfc_get_constructor ();
1348 c = c->next;
1349 c->expr = gfc_copy_expr (init);
1350 }
1351 }
1352
1353 array->shape = gfc_get_shape (sym->as->rank);
1354 for (n = 0; n < sym->as->rank; n++)
1355 spec_dimen_size (sym->as, n, &array->shape[n]);
1356
1357 init = array;
1358 mpz_clear (size);
1359 }
1360 init->rank = sym->as->rank;
1361 }
1362
1363 sym->value = init;
1364 if (sym->attr.save == SAVE_NONE)
1365 sym->attr.save = SAVE_IMPLICIT;
1366 *initp = NULL;
1367 }
1368
1369 return SUCCESS;
1370 }
1371
1372
1373 /* Function called by variable_decl() that adds a name to a structure
1374 being built. */
1375
1376 static gfc_try
1377 build_struct (const char *name, gfc_charlen *cl, gfc_expr **init,
1378 gfc_array_spec **as)
1379 {
1380 gfc_component *c;
1381
1382 /* If the current symbol is of the same derived type that we're
1383 constructing, it must have the pointer attribute. */
1384 if (current_ts.type == BT_DERIVED
1385 && current_ts.derived == gfc_current_block ()
1386 && current_attr.pointer == 0)
1387 {
1388 gfc_error ("Component at %C must have the POINTER attribute");
1389 return FAILURE;
1390 }
1391
1392 if (gfc_current_block ()->attr.pointer && (*as)->rank != 0)
1393 {
1394 if ((*as)->type != AS_DEFERRED && (*as)->type != AS_EXPLICIT)
1395 {
1396 gfc_error ("Array component of structure at %C must have explicit "
1397 "or deferred shape");
1398 return FAILURE;
1399 }
1400 }
1401
1402 if (gfc_add_component (gfc_current_block (), name, &c) == FAILURE)
1403 return FAILURE;
1404
1405 c->ts = current_ts;
1406 c->ts.cl = cl;
1407 c->attr = current_attr;
1408
1409 c->initializer = *init;
1410 *init = NULL;
1411
1412 c->as = *as;
1413 if (c->as != NULL)
1414 c->attr.dimension = 1;
1415 *as = NULL;
1416
1417 /* Should this ever get more complicated, combine with similar section
1418 in add_init_expr_to_sym into a separate function. */
1419 if (c->ts.type == BT_CHARACTER && !c->attr.pointer && c->initializer && c->ts.cl
1420 && c->ts.cl->length && c->ts.cl->length->expr_type == EXPR_CONSTANT)
1421 {
1422 int len;
1423
1424 gcc_assert (c->ts.cl && c->ts.cl->length);
1425 gcc_assert (c->ts.cl->length->expr_type == EXPR_CONSTANT);
1426 gcc_assert (c->ts.cl->length->ts.type == BT_INTEGER);
1427
1428 len = mpz_get_si (c->ts.cl->length->value.integer);
1429
1430 if (c->initializer->expr_type == EXPR_CONSTANT)
1431 gfc_set_constant_character_len (len, c->initializer, -1);
1432 else if (mpz_cmp (c->ts.cl->length->value.integer,
1433 c->initializer->ts.cl->length->value.integer))
1434 {
1435 bool has_ts;
1436 gfc_constructor *ctor = c->initializer->value.constructor;
1437
1438 bool first = true;
1439 int first_len;
1440
1441 has_ts = (c->initializer->ts.cl
1442 && c->initializer->ts.cl->length_from_typespec);
1443
1444 for (; ctor; ctor = ctor->next)
1445 {
1446 /* Remember the length of the first element for checking that
1447 all elements *in the constructor* have the same length. This
1448 need not be the length of the LHS! */
1449 if (first)
1450 {
1451 gcc_assert (ctor->expr->expr_type == EXPR_CONSTANT);
1452 gcc_assert (ctor->expr->ts.type == BT_CHARACTER);
1453 first_len = ctor->expr->value.character.length;
1454 first = false;
1455 }
1456
1457 if (ctor->expr->expr_type == EXPR_CONSTANT)
1458 gfc_set_constant_character_len (len, ctor->expr,
1459 has_ts ? -1 : first_len);
1460 }
1461 }
1462 }
1463
1464 /* Check array components. */
1465 if (!c->attr.dimension)
1466 {
1467 if (c->attr.allocatable)
1468 {
1469 gfc_error ("Allocatable component at %C must be an array");
1470 return FAILURE;
1471 }
1472 else
1473 return SUCCESS;
1474 }
1475
1476 if (c->attr.pointer)
1477 {
1478 if (c->as->type != AS_DEFERRED)
1479 {
1480 gfc_error ("Pointer array component of structure at %C must have a "
1481 "deferred shape");
1482 return FAILURE;
1483 }
1484 }
1485 else if (c->attr.allocatable)
1486 {
1487 if (c->as->type != AS_DEFERRED)
1488 {
1489 gfc_error ("Allocatable component of structure at %C must have a "
1490 "deferred shape");
1491 return FAILURE;
1492 }
1493 }
1494 else
1495 {
1496 if (c->as->type != AS_EXPLICIT)
1497 {
1498 gfc_error ("Array component of structure at %C must have an "
1499 "explicit shape");
1500 return FAILURE;
1501 }
1502 }
1503
1504 return SUCCESS;
1505 }
1506
1507
1508 /* Match a 'NULL()', and possibly take care of some side effects. */
1509
1510 match
1511 gfc_match_null (gfc_expr **result)
1512 {
1513 gfc_symbol *sym;
1514 gfc_expr *e;
1515 match m;
1516
1517 m = gfc_match (" null ( )");
1518 if (m != MATCH_YES)
1519 return m;
1520
1521 /* The NULL symbol now has to be/become an intrinsic function. */
1522 if (gfc_get_symbol ("null", NULL, &sym))
1523 {
1524 gfc_error ("NULL() initialization at %C is ambiguous");
1525 return MATCH_ERROR;
1526 }
1527
1528 gfc_intrinsic_symbol (sym);
1529
1530 if (sym->attr.proc != PROC_INTRINSIC
1531 && (gfc_add_procedure (&sym->attr, PROC_INTRINSIC,
1532 sym->name, NULL) == FAILURE
1533 || gfc_add_function (&sym->attr, sym->name, NULL) == FAILURE))
1534 return MATCH_ERROR;
1535
1536 e = gfc_get_expr ();
1537 e->where = gfc_current_locus;
1538 e->expr_type = EXPR_NULL;
1539 e->ts.type = BT_UNKNOWN;
1540
1541 *result = e;
1542
1543 return MATCH_YES;
1544 }
1545
1546
1547 /* Match a variable name with an optional initializer. When this
1548 subroutine is called, a variable is expected to be parsed next.
1549 Depending on what is happening at the moment, updates either the
1550 symbol table or the current interface. */
1551
1552 static match
1553 variable_decl (int elem)
1554 {
1555 char name[GFC_MAX_SYMBOL_LEN + 1];
1556 gfc_expr *initializer, *char_len;
1557 gfc_array_spec *as;
1558 gfc_array_spec *cp_as; /* Extra copy for Cray Pointees. */
1559 gfc_charlen *cl;
1560 locus var_locus;
1561 match m;
1562 gfc_try t;
1563 gfc_symbol *sym;
1564 locus old_locus;
1565
1566 initializer = NULL;
1567 as = NULL;
1568 cp_as = NULL;
1569 old_locus = gfc_current_locus;
1570
1571 /* When we get here, we've just matched a list of attributes and
1572 maybe a type and a double colon. The next thing we expect to see
1573 is the name of the symbol. */
1574 m = gfc_match_name (name);
1575 if (m != MATCH_YES)
1576 goto cleanup;
1577
1578 var_locus = gfc_current_locus;
1579
1580 /* Now we could see the optional array spec. or character length. */
1581 m = gfc_match_array_spec (&as);
1582 if (gfc_option.flag_cray_pointer && m == MATCH_YES)
1583 cp_as = gfc_copy_array_spec (as);
1584 else if (m == MATCH_ERROR)
1585 goto cleanup;
1586
1587 if (m == MATCH_NO)
1588 as = gfc_copy_array_spec (current_as);
1589
1590 char_len = NULL;
1591 cl = NULL;
1592
1593 if (current_ts.type == BT_CHARACTER)
1594 {
1595 switch (match_char_length (&char_len))
1596 {
1597 case MATCH_YES:
1598 cl = gfc_get_charlen ();
1599 cl->next = gfc_current_ns->cl_list;
1600 gfc_current_ns->cl_list = cl;
1601
1602 cl->length = char_len;
1603 break;
1604
1605 /* Non-constant lengths need to be copied after the first
1606 element. Also copy assumed lengths. */
1607 case MATCH_NO:
1608 if (elem > 1
1609 && (current_ts.cl->length == NULL
1610 || current_ts.cl->length->expr_type != EXPR_CONSTANT))
1611 {
1612 cl = gfc_get_charlen ();
1613 cl->next = gfc_current_ns->cl_list;
1614 gfc_current_ns->cl_list = cl;
1615 cl->length = gfc_copy_expr (current_ts.cl->length);
1616 }
1617 else
1618 cl = current_ts.cl;
1619
1620 break;
1621
1622 case MATCH_ERROR:
1623 goto cleanup;
1624 }
1625 }
1626
1627 /* If this symbol has already shown up in a Cray Pointer declaration,
1628 then we want to set the type & bail out. */
1629 if (gfc_option.flag_cray_pointer)
1630 {
1631 gfc_find_symbol (name, gfc_current_ns, 1, &sym);
1632 if (sym != NULL && sym->attr.cray_pointee)
1633 {
1634 sym->ts.type = current_ts.type;
1635 sym->ts.kind = current_ts.kind;
1636 sym->ts.cl = cl;
1637 sym->ts.derived = current_ts.derived;
1638 sym->ts.is_c_interop = current_ts.is_c_interop;
1639 sym->ts.is_iso_c = current_ts.is_iso_c;
1640 m = MATCH_YES;
1641
1642 /* Check to see if we have an array specification. */
1643 if (cp_as != NULL)
1644 {
1645 if (sym->as != NULL)
1646 {
1647 gfc_error ("Duplicate array spec for Cray pointee at %C");
1648 gfc_free_array_spec (cp_as);
1649 m = MATCH_ERROR;
1650 goto cleanup;
1651 }
1652 else
1653 {
1654 if (gfc_set_array_spec (sym, cp_as, &var_locus) == FAILURE)
1655 gfc_internal_error ("Couldn't set pointee array spec.");
1656
1657 /* Fix the array spec. */
1658 m = gfc_mod_pointee_as (sym->as);
1659 if (m == MATCH_ERROR)
1660 goto cleanup;
1661 }
1662 }
1663 goto cleanup;
1664 }
1665 else
1666 {
1667 gfc_free_array_spec (cp_as);
1668 }
1669 }
1670
1671 /* Procedure pointer as function result. */
1672 if (gfc_current_state () == COMP_FUNCTION
1673 && strcmp ("ppr@", gfc_current_block ()->name) == 0
1674 && strcmp (name, gfc_current_block ()->ns->proc_name->name) == 0)
1675 strcpy (name, "ppr@");
1676
1677 if (gfc_current_state () == COMP_FUNCTION
1678 && strcmp (name, gfc_current_block ()->name) == 0
1679 && gfc_current_block ()->result
1680 && strcmp ("ppr@", gfc_current_block ()->result->name) == 0)
1681 strcpy (name, "ppr@");
1682
1683 /* OK, we've successfully matched the declaration. Now put the
1684 symbol in the current namespace, because it might be used in the
1685 optional initialization expression for this symbol, e.g. this is
1686 perfectly legal:
1687
1688 integer, parameter :: i = huge(i)
1689
1690 This is only true for parameters or variables of a basic type.
1691 For components of derived types, it is not true, so we don't
1692 create a symbol for those yet. If we fail to create the symbol,
1693 bail out. */
1694 if (gfc_current_state () != COMP_DERIVED
1695 && build_sym (name, cl, &as, &var_locus) == FAILURE)
1696 {
1697 m = MATCH_ERROR;
1698 goto cleanup;
1699 }
1700
1701 /* An interface body specifies all of the procedure's
1702 characteristics and these shall be consistent with those
1703 specified in the procedure definition, except that the interface
1704 may specify a procedure that is not pure if the procedure is
1705 defined to be pure(12.3.2). */
1706 if (current_ts.type == BT_DERIVED
1707 && gfc_current_ns->proc_name
1708 && gfc_current_ns->proc_name->attr.if_source == IFSRC_IFBODY
1709 && current_ts.derived->ns != gfc_current_ns)
1710 {
1711 gfc_symtree *st;
1712 st = gfc_find_symtree (gfc_current_ns->sym_root, current_ts.derived->name);
1713 if (!(current_ts.derived->attr.imported
1714 && st != NULL
1715 && st->n.sym == current_ts.derived)
1716 && !gfc_current_ns->has_import_set)
1717 {
1718 gfc_error ("the type of '%s' at %C has not been declared within the "
1719 "interface", name);
1720 m = MATCH_ERROR;
1721 goto cleanup;
1722 }
1723 }
1724
1725 /* In functions that have a RESULT variable defined, the function
1726 name always refers to function calls. Therefore, the name is
1727 not allowed to appear in specification statements. */
1728 if (gfc_current_state () == COMP_FUNCTION
1729 && gfc_current_block () != NULL
1730 && gfc_current_block ()->result != NULL
1731 && gfc_current_block ()->result != gfc_current_block ()
1732 && strcmp (gfc_current_block ()->name, name) == 0)
1733 {
1734 gfc_error ("Function name '%s' not allowed at %C", name);
1735 m = MATCH_ERROR;
1736 goto cleanup;
1737 }
1738
1739 /* We allow old-style initializations of the form
1740 integer i /2/, j(4) /3*3, 1/
1741 (if no colon has been seen). These are different from data
1742 statements in that initializers are only allowed to apply to the
1743 variable immediately preceding, i.e.
1744 integer i, j /1, 2/
1745 is not allowed. Therefore we have to do some work manually, that
1746 could otherwise be left to the matchers for DATA statements. */
1747
1748 if (!colon_seen && gfc_match (" /") == MATCH_YES)
1749 {
1750 if (gfc_notify_std (GFC_STD_GNU, "Extension: Old-style "
1751 "initialization at %C") == FAILURE)
1752 return MATCH_ERROR;
1753
1754 return match_old_style_init (name);
1755 }
1756
1757 /* The double colon must be present in order to have initializers.
1758 Otherwise the statement is ambiguous with an assignment statement. */
1759 if (colon_seen)
1760 {
1761 if (gfc_match (" =>") == MATCH_YES)
1762 {
1763 if (!current_attr.pointer)
1764 {
1765 gfc_error ("Initialization at %C isn't for a pointer variable");
1766 m = MATCH_ERROR;
1767 goto cleanup;
1768 }
1769
1770 m = gfc_match_null (&initializer);
1771 if (m == MATCH_NO)
1772 {
1773 gfc_error ("Pointer initialization requires a NULL() at %C");
1774 m = MATCH_ERROR;
1775 }
1776
1777 if (gfc_pure (NULL))
1778 {
1779 gfc_error ("Initialization of pointer at %C is not allowed in "
1780 "a PURE procedure");
1781 m = MATCH_ERROR;
1782 }
1783
1784 if (m != MATCH_YES)
1785 goto cleanup;
1786
1787 }
1788 else if (gfc_match_char ('=') == MATCH_YES)
1789 {
1790 if (current_attr.pointer)
1791 {
1792 gfc_error ("Pointer initialization at %C requires '=>', "
1793 "not '='");
1794 m = MATCH_ERROR;
1795 goto cleanup;
1796 }
1797
1798 m = gfc_match_init_expr (&initializer);
1799 if (m == MATCH_NO)
1800 {
1801 gfc_error ("Expected an initialization expression at %C");
1802 m = MATCH_ERROR;
1803 }
1804
1805 if (current_attr.flavor != FL_PARAMETER && gfc_pure (NULL))
1806 {
1807 gfc_error ("Initialization of variable at %C is not allowed in "
1808 "a PURE procedure");
1809 m = MATCH_ERROR;
1810 }
1811
1812 if (m != MATCH_YES)
1813 goto cleanup;
1814 }
1815 }
1816
1817 if (initializer != NULL && current_attr.allocatable
1818 && gfc_current_state () == COMP_DERIVED)
1819 {
1820 gfc_error ("Initialization of allocatable component at %C is not "
1821 "allowed");
1822 m = MATCH_ERROR;
1823 goto cleanup;
1824 }
1825
1826 /* Add the initializer. Note that it is fine if initializer is
1827 NULL here, because we sometimes also need to check if a
1828 declaration *must* have an initialization expression. */
1829 if (gfc_current_state () != COMP_DERIVED)
1830 t = add_init_expr_to_sym (name, &initializer, &var_locus);
1831 else
1832 {
1833 if (current_ts.type == BT_DERIVED
1834 && !current_attr.pointer && !initializer)
1835 initializer = gfc_default_initializer (&current_ts);
1836 t = build_struct (name, cl, &initializer, &as);
1837 }
1838
1839 m = (t == SUCCESS) ? MATCH_YES : MATCH_ERROR;
1840
1841 cleanup:
1842 /* Free stuff up and return. */
1843 gfc_free_expr (initializer);
1844 gfc_free_array_spec (as);
1845
1846 return m;
1847 }
1848
1849
1850 /* Match an extended-f77 "TYPESPEC*bytesize"-style kind specification.
1851 This assumes that the byte size is equal to the kind number for
1852 non-COMPLEX types, and equal to twice the kind number for COMPLEX. */
1853
1854 match
1855 gfc_match_old_kind_spec (gfc_typespec *ts)
1856 {
1857 match m;
1858 int original_kind;
1859
1860 if (gfc_match_char ('*') != MATCH_YES)
1861 return MATCH_NO;
1862
1863 m = gfc_match_small_literal_int (&ts->kind, NULL);
1864 if (m != MATCH_YES)
1865 return MATCH_ERROR;
1866
1867 original_kind = ts->kind;
1868
1869 /* Massage the kind numbers for complex types. */
1870 if (ts->type == BT_COMPLEX)
1871 {
1872 if (ts->kind % 2)
1873 {
1874 gfc_error ("Old-style type declaration %s*%d not supported at %C",
1875 gfc_basic_typename (ts->type), original_kind);
1876 return MATCH_ERROR;
1877 }
1878 ts->kind /= 2;
1879 }
1880
1881 if (gfc_validate_kind (ts->type, ts->kind, true) < 0)
1882 {
1883 gfc_error ("Old-style type declaration %s*%d not supported at %C",
1884 gfc_basic_typename (ts->type), original_kind);
1885 return MATCH_ERROR;
1886 }
1887
1888 if (gfc_notify_std (GFC_STD_GNU, "Nonstandard type declaration %s*%d at %C",
1889 gfc_basic_typename (ts->type), original_kind) == FAILURE)
1890 return MATCH_ERROR;
1891
1892 return MATCH_YES;
1893 }
1894
1895
1896 /* Match a kind specification. Since kinds are generally optional, we
1897 usually return MATCH_NO if something goes wrong. If a "kind="
1898 string is found, then we know we have an error. */
1899
1900 match
1901 gfc_match_kind_spec (gfc_typespec *ts, bool kind_expr_only)
1902 {
1903 locus where, loc;
1904 gfc_expr *e;
1905 match m, n;
1906 char c;
1907 const char *msg;
1908
1909 m = MATCH_NO;
1910 n = MATCH_YES;
1911 e = NULL;
1912
1913 where = loc = gfc_current_locus;
1914
1915 if (kind_expr_only)
1916 goto kind_expr;
1917
1918 if (gfc_match_char ('(') == MATCH_NO)
1919 return MATCH_NO;
1920
1921 /* Also gobbles optional text. */
1922 if (gfc_match (" kind = ") == MATCH_YES)
1923 m = MATCH_ERROR;
1924
1925 loc = gfc_current_locus;
1926
1927 kind_expr:
1928 n = gfc_match_init_expr (&e);
1929
1930 if (n != MATCH_YES)
1931 {
1932 if (gfc_matching_function)
1933 {
1934 /* The function kind expression might include use associated or
1935 imported parameters and try again after the specification
1936 expressions..... */
1937 if (gfc_match_char (')') != MATCH_YES)
1938 {
1939 gfc_error ("Missing right parenthesis at %C");
1940 m = MATCH_ERROR;
1941 goto no_match;
1942 }
1943
1944 gfc_free_expr (e);
1945 gfc_undo_symbols ();
1946 return MATCH_YES;
1947 }
1948 else
1949 {
1950 /* ....or else, the match is real. */
1951 if (n == MATCH_NO)
1952 gfc_error ("Expected initialization expression at %C");
1953 if (n != MATCH_YES)
1954 return MATCH_ERROR;
1955 }
1956 }
1957
1958 if (e->rank != 0)
1959 {
1960 gfc_error ("Expected scalar initialization expression at %C");
1961 m = MATCH_ERROR;
1962 goto no_match;
1963 }
1964
1965 msg = gfc_extract_int (e, &ts->kind);
1966
1967 if (msg != NULL)
1968 {
1969 gfc_error (msg);
1970 m = MATCH_ERROR;
1971 goto no_match;
1972 }
1973
1974 /* Before throwing away the expression, let's see if we had a
1975 C interoperable kind (and store the fact). */
1976 if (e->ts.is_c_interop == 1)
1977 {
1978 /* Mark this as c interoperable if being declared with one
1979 of the named constants from iso_c_binding. */
1980 ts->is_c_interop = e->ts.is_iso_c;
1981 ts->f90_type = e->ts.f90_type;
1982 }
1983
1984 gfc_free_expr (e);
1985 e = NULL;
1986
1987 /* Ignore errors to this point, if we've gotten here. This means
1988 we ignore the m=MATCH_ERROR from above. */
1989 if (gfc_validate_kind (ts->type, ts->kind, true) < 0)
1990 {
1991 gfc_error ("Kind %d not supported for type %s at %C", ts->kind,
1992 gfc_basic_typename (ts->type));
1993 gfc_current_locus = where;
1994 return MATCH_ERROR;
1995 }
1996
1997 /* Warn if, e.g., c_int is used for a REAL variable, but not
1998 if, e.g., c_double is used for COMPLEX as the standard
1999 explicitly says that the kind type parameter for complex and real
2000 variable is the same, i.e. c_float == c_float_complex. */
2001 if (ts->f90_type != BT_UNKNOWN && ts->f90_type != ts->type
2002 && !((ts->f90_type == BT_REAL && ts->type == BT_COMPLEX)
2003 || (ts->f90_type == BT_COMPLEX && ts->type == BT_REAL)))
2004 gfc_warning_now ("C kind type parameter is for type %s but type at %L "
2005 "is %s", gfc_basic_typename (ts->f90_type), &where,
2006 gfc_basic_typename (ts->type));
2007
2008 gfc_gobble_whitespace ();
2009 if ((c = gfc_next_ascii_char ()) != ')'
2010 && (ts->type != BT_CHARACTER || c != ','))
2011 {
2012 if (ts->type == BT_CHARACTER)
2013 gfc_error ("Missing right parenthesis or comma at %C");
2014 else
2015 gfc_error ("Missing right parenthesis at %C");
2016 m = MATCH_ERROR;
2017 }
2018 else
2019 /* All tests passed. */
2020 m = MATCH_YES;
2021
2022 if(m == MATCH_ERROR)
2023 gfc_current_locus = where;
2024
2025 /* Return what we know from the test(s). */
2026 return m;
2027
2028 no_match:
2029 gfc_free_expr (e);
2030 gfc_current_locus = where;
2031 return m;
2032 }
2033
2034
2035 static match
2036 match_char_kind (int * kind, int * is_iso_c)
2037 {
2038 locus where;
2039 gfc_expr *e;
2040 match m, n;
2041 const char *msg;
2042
2043 m = MATCH_NO;
2044 e = NULL;
2045 where = gfc_current_locus;
2046
2047 n = gfc_match_init_expr (&e);
2048
2049 if (n != MATCH_YES && gfc_matching_function)
2050 {
2051 /* The expression might include use-associated or imported
2052 parameters and try again after the specification
2053 expressions. */
2054 gfc_free_expr (e);
2055 gfc_undo_symbols ();
2056 return MATCH_YES;
2057 }
2058
2059 if (n == MATCH_NO)
2060 gfc_error ("Expected initialization expression at %C");
2061 if (n != MATCH_YES)
2062 return MATCH_ERROR;
2063
2064 if (e->rank != 0)
2065 {
2066 gfc_error ("Expected scalar initialization expression at %C");
2067 m = MATCH_ERROR;
2068 goto no_match;
2069 }
2070
2071 msg = gfc_extract_int (e, kind);
2072 *is_iso_c = e->ts.is_iso_c;
2073 if (msg != NULL)
2074 {
2075 gfc_error (msg);
2076 m = MATCH_ERROR;
2077 goto no_match;
2078 }
2079
2080 gfc_free_expr (e);
2081
2082 /* Ignore errors to this point, if we've gotten here. This means
2083 we ignore the m=MATCH_ERROR from above. */
2084 if (gfc_validate_kind (BT_CHARACTER, *kind, true) < 0)
2085 {
2086 gfc_error ("Kind %d is not supported for CHARACTER at %C", *kind);
2087 m = MATCH_ERROR;
2088 }
2089 else
2090 /* All tests passed. */
2091 m = MATCH_YES;
2092
2093 if (m == MATCH_ERROR)
2094 gfc_current_locus = where;
2095
2096 /* Return what we know from the test(s). */
2097 return m;
2098
2099 no_match:
2100 gfc_free_expr (e);
2101 gfc_current_locus = where;
2102 return m;
2103 }
2104
2105 /* Match the various kind/length specifications in a CHARACTER
2106 declaration. We don't return MATCH_NO. */
2107
2108 static match
2109 match_char_spec (gfc_typespec *ts)
2110 {
2111 int kind, seen_length, is_iso_c;
2112 gfc_charlen *cl;
2113 gfc_expr *len;
2114 match m;
2115
2116 len = NULL;
2117 seen_length = 0;
2118 kind = 0;
2119 is_iso_c = 0;
2120
2121 /* Try the old-style specification first. */
2122 old_char_selector = 0;
2123
2124 m = match_char_length (&len);
2125 if (m != MATCH_NO)
2126 {
2127 if (m == MATCH_YES)
2128 old_char_selector = 1;
2129 seen_length = 1;
2130 goto done;
2131 }
2132
2133 m = gfc_match_char ('(');
2134 if (m != MATCH_YES)
2135 {
2136 m = MATCH_YES; /* Character without length is a single char. */
2137 goto done;
2138 }
2139
2140 /* Try the weird case: ( KIND = <int> [ , LEN = <len-param> ] ). */
2141 if (gfc_match (" kind =") == MATCH_YES)
2142 {
2143 m = match_char_kind (&kind, &is_iso_c);
2144
2145 if (m == MATCH_ERROR)
2146 goto done;
2147 if (m == MATCH_NO)
2148 goto syntax;
2149
2150 if (gfc_match (" , len =") == MATCH_NO)
2151 goto rparen;
2152
2153 m = char_len_param_value (&len);
2154 if (m == MATCH_NO)
2155 goto syntax;
2156 if (m == MATCH_ERROR)
2157 goto done;
2158 seen_length = 1;
2159
2160 goto rparen;
2161 }
2162
2163 /* Try to match "LEN = <len-param>" or "LEN = <len-param>, KIND = <int>". */
2164 if (gfc_match (" len =") == MATCH_YES)
2165 {
2166 m = char_len_param_value (&len);
2167 if (m == MATCH_NO)
2168 goto syntax;
2169 if (m == MATCH_ERROR)
2170 goto done;
2171 seen_length = 1;
2172
2173 if (gfc_match_char (')') == MATCH_YES)
2174 goto done;
2175
2176 if (gfc_match (" , kind =") != MATCH_YES)
2177 goto syntax;
2178
2179 if (match_char_kind (&kind, &is_iso_c) == MATCH_ERROR)
2180 goto done;
2181
2182 goto rparen;
2183 }
2184
2185 /* Try to match ( <len-param> ) or ( <len-param> , [ KIND = ] <int> ). */
2186 m = char_len_param_value (&len);
2187 if (m == MATCH_NO)
2188 goto syntax;
2189 if (m == MATCH_ERROR)
2190 goto done;
2191 seen_length = 1;
2192
2193 m = gfc_match_char (')');
2194 if (m == MATCH_YES)
2195 goto done;
2196
2197 if (gfc_match_char (',') != MATCH_YES)
2198 goto syntax;
2199
2200 gfc_match (" kind ="); /* Gobble optional text. */
2201
2202 m = match_char_kind (&kind, &is_iso_c);
2203 if (m == MATCH_ERROR)
2204 goto done;
2205 if (m == MATCH_NO)
2206 goto syntax;
2207
2208 rparen:
2209 /* Require a right-paren at this point. */
2210 m = gfc_match_char (')');
2211 if (m == MATCH_YES)
2212 goto done;
2213
2214 syntax:
2215 gfc_error ("Syntax error in CHARACTER declaration at %C");
2216 m = MATCH_ERROR;
2217 gfc_free_expr (len);
2218 return m;
2219
2220 done:
2221 /* Deal with character functions after USE and IMPORT statements. */
2222 if (gfc_matching_function)
2223 {
2224 gfc_free_expr (len);
2225 gfc_undo_symbols ();
2226 return MATCH_YES;
2227 }
2228
2229 if (m != MATCH_YES)
2230 {
2231 gfc_free_expr (len);
2232 return m;
2233 }
2234
2235 /* Do some final massaging of the length values. */
2236 cl = gfc_get_charlen ();
2237 cl->next = gfc_current_ns->cl_list;
2238 gfc_current_ns->cl_list = cl;
2239
2240 if (seen_length == 0)
2241 cl->length = gfc_int_expr (1);
2242 else
2243 cl->length = len;
2244
2245 ts->cl = cl;
2246 ts->kind = kind == 0 ? gfc_default_character_kind : kind;
2247
2248 /* We have to know if it was a c interoperable kind so we can
2249 do accurate type checking of bind(c) procs, etc. */
2250 if (kind != 0)
2251 /* Mark this as c interoperable if being declared with one
2252 of the named constants from iso_c_binding. */
2253 ts->is_c_interop = is_iso_c;
2254 else if (len != NULL)
2255 /* Here, we might have parsed something such as: character(c_char)
2256 In this case, the parsing code above grabs the c_char when
2257 looking for the length (line 1690, roughly). it's the last
2258 testcase for parsing the kind params of a character variable.
2259 However, it's not actually the length. this seems like it
2260 could be an error.
2261 To see if the user used a C interop kind, test the expr
2262 of the so called length, and see if it's C interoperable. */
2263 ts->is_c_interop = len->ts.is_iso_c;
2264
2265 return MATCH_YES;
2266 }
2267
2268
2269 /* Matches a type specification. If successful, sets the ts structure
2270 to the matched specification. This is necessary for FUNCTION and
2271 IMPLICIT statements.
2272
2273 If implicit_flag is nonzero, then we don't check for the optional
2274 kind specification. Not doing so is needed for matching an IMPLICIT
2275 statement correctly. */
2276
2277 match
2278 gfc_match_type_spec (gfc_typespec *ts, int implicit_flag)
2279 {
2280 char name[GFC_MAX_SYMBOL_LEN + 1];
2281 gfc_symbol *sym;
2282 match m;
2283 char c;
2284 bool seen_deferred_kind;
2285
2286 /* A belt and braces check that the typespec is correctly being treated
2287 as a deferred characteristic association. */
2288 seen_deferred_kind = (gfc_current_state () == COMP_FUNCTION)
2289 && (gfc_current_block ()->result->ts.kind == -1)
2290 && (ts->kind == -1);
2291 gfc_clear_ts (ts);
2292 if (seen_deferred_kind)
2293 ts->kind = -1;
2294
2295 /* Clear the current binding label, in case one is given. */
2296 curr_binding_label[0] = '\0';
2297
2298 if (gfc_match (" byte") == MATCH_YES)
2299 {
2300 if (gfc_notify_std(GFC_STD_GNU, "Extension: BYTE type at %C")
2301 == FAILURE)
2302 return MATCH_ERROR;
2303
2304 if (gfc_validate_kind (BT_INTEGER, 1, true) < 0)
2305 {
2306 gfc_error ("BYTE type used at %C "
2307 "is not available on the target machine");
2308 return MATCH_ERROR;
2309 }
2310
2311 ts->type = BT_INTEGER;
2312 ts->kind = 1;
2313 return MATCH_YES;
2314 }
2315
2316 if (gfc_match (" integer") == MATCH_YES)
2317 {
2318 ts->type = BT_INTEGER;
2319 ts->kind = gfc_default_integer_kind;
2320 goto get_kind;
2321 }
2322
2323 if (gfc_match (" character") == MATCH_YES)
2324 {
2325 ts->type = BT_CHARACTER;
2326 if (implicit_flag == 0)
2327 return match_char_spec (ts);
2328 else
2329 return MATCH_YES;
2330 }
2331
2332 if (gfc_match (" real") == MATCH_YES)
2333 {
2334 ts->type = BT_REAL;
2335 ts->kind = gfc_default_real_kind;
2336 goto get_kind;
2337 }
2338
2339 if (gfc_match (" double precision") == MATCH_YES)
2340 {
2341 ts->type = BT_REAL;
2342 ts->kind = gfc_default_double_kind;
2343 return MATCH_YES;
2344 }
2345
2346 if (gfc_match (" complex") == MATCH_YES)
2347 {
2348 ts->type = BT_COMPLEX;
2349 ts->kind = gfc_default_complex_kind;
2350 goto get_kind;
2351 }
2352
2353 if (gfc_match (" double complex") == MATCH_YES)
2354 {
2355 if (gfc_notify_std (GFC_STD_GNU, "DOUBLE COMPLEX at %C does not "
2356 "conform to the Fortran 95 standard") == FAILURE)
2357 return MATCH_ERROR;
2358
2359 ts->type = BT_COMPLEX;
2360 ts->kind = gfc_default_double_kind;
2361 return MATCH_YES;
2362 }
2363
2364 if (gfc_match (" logical") == MATCH_YES)
2365 {
2366 ts->type = BT_LOGICAL;
2367 ts->kind = gfc_default_logical_kind;
2368 goto get_kind;
2369 }
2370
2371 m = gfc_match (" type ( %n )", name);
2372 if (m != MATCH_YES)
2373 return m;
2374
2375 ts->type = BT_DERIVED;
2376
2377 /* Defer association of the derived type until the end of the
2378 specification block. However, if the derived type can be
2379 found, add it to the typespec. */
2380 if (gfc_matching_function)
2381 {
2382 ts->derived = NULL;
2383 if (gfc_current_state () != COMP_INTERFACE
2384 && !gfc_find_symbol (name, NULL, 1, &sym) && sym)
2385 ts->derived = sym;
2386 return MATCH_YES;
2387 }
2388
2389 /* Search for the name but allow the components to be defined later. If
2390 type = -1, this typespec has been seen in a function declaration but
2391 the type could not be accessed at that point. */
2392 sym = NULL;
2393 if (ts->kind != -1 && gfc_get_ha_symbol (name, &sym))
2394 {
2395 gfc_error ("Type name '%s' at %C is ambiguous", name);
2396 return MATCH_ERROR;
2397 }
2398 else if (ts->kind == -1)
2399 {
2400 int iface = gfc_state_stack->previous->state != COMP_INTERFACE
2401 || gfc_current_ns->has_import_set;
2402 if (gfc_find_symbol (name, NULL, iface, &sym))
2403 {
2404 gfc_error ("Type name '%s' at %C is ambiguous", name);
2405 return MATCH_ERROR;
2406 }
2407
2408 ts->kind = 0;
2409 if (sym == NULL)
2410 return MATCH_NO;
2411 }
2412
2413 if (sym->attr.flavor != FL_DERIVED
2414 && gfc_add_flavor (&sym->attr, FL_DERIVED, sym->name, NULL) == FAILURE)
2415 return MATCH_ERROR;
2416
2417 gfc_set_sym_referenced (sym);
2418 ts->derived = sym;
2419
2420 return MATCH_YES;
2421
2422 get_kind:
2423 /* For all types except double, derived and character, look for an
2424 optional kind specifier. MATCH_NO is actually OK at this point. */
2425 if (implicit_flag == 1)
2426 return MATCH_YES;
2427
2428 if (gfc_current_form == FORM_FREE)
2429 {
2430 c = gfc_peek_ascii_char();
2431 if (!gfc_is_whitespace(c) && c != '*' && c != '('
2432 && c != ':' && c != ',')
2433 return MATCH_NO;
2434 }
2435
2436 m = gfc_match_kind_spec (ts, false);
2437 if (m == MATCH_NO && ts->type != BT_CHARACTER)
2438 m = gfc_match_old_kind_spec (ts);
2439
2440 /* Defer association of the KIND expression of function results
2441 until after USE and IMPORT statements. */
2442 if ((gfc_current_state () == COMP_NONE && gfc_error_flag_test ())
2443 || gfc_matching_function)
2444 return MATCH_YES;
2445
2446 if (m == MATCH_NO)
2447 m = MATCH_YES; /* No kind specifier found. */
2448
2449 return m;
2450 }
2451
2452
2453 /* Match an IMPLICIT NONE statement. Actually, this statement is
2454 already matched in parse.c, or we would not end up here in the
2455 first place. So the only thing we need to check, is if there is
2456 trailing garbage. If not, the match is successful. */
2457
2458 match
2459 gfc_match_implicit_none (void)
2460 {
2461 return (gfc_match_eos () == MATCH_YES) ? MATCH_YES : MATCH_NO;
2462 }
2463
2464
2465 /* Match the letter range(s) of an IMPLICIT statement. */
2466
2467 static match
2468 match_implicit_range (void)
2469 {
2470 char c, c1, c2;
2471 int inner;
2472 locus cur_loc;
2473
2474 cur_loc = gfc_current_locus;
2475
2476 gfc_gobble_whitespace ();
2477 c = gfc_next_ascii_char ();
2478 if (c != '(')
2479 {
2480 gfc_error ("Missing character range in IMPLICIT at %C");
2481 goto bad;
2482 }
2483
2484 inner = 1;
2485 while (inner)
2486 {
2487 gfc_gobble_whitespace ();
2488 c1 = gfc_next_ascii_char ();
2489 if (!ISALPHA (c1))
2490 goto bad;
2491
2492 gfc_gobble_whitespace ();
2493 c = gfc_next_ascii_char ();
2494
2495 switch (c)
2496 {
2497 case ')':
2498 inner = 0; /* Fall through. */
2499
2500 case ',':
2501 c2 = c1;
2502 break;
2503
2504 case '-':
2505 gfc_gobble_whitespace ();
2506 c2 = gfc_next_ascii_char ();
2507 if (!ISALPHA (c2))
2508 goto bad;
2509
2510 gfc_gobble_whitespace ();
2511 c = gfc_next_ascii_char ();
2512
2513 if ((c != ',') && (c != ')'))
2514 goto bad;
2515 if (c == ')')
2516 inner = 0;
2517
2518 break;
2519
2520 default:
2521 goto bad;
2522 }
2523
2524 if (c1 > c2)
2525 {
2526 gfc_error ("Letters must be in alphabetic order in "
2527 "IMPLICIT statement at %C");
2528 goto bad;
2529 }
2530
2531 /* See if we can add the newly matched range to the pending
2532 implicits from this IMPLICIT statement. We do not check for
2533 conflicts with whatever earlier IMPLICIT statements may have
2534 set. This is done when we've successfully finished matching
2535 the current one. */
2536 if (gfc_add_new_implicit_range (c1, c2) != SUCCESS)
2537 goto bad;
2538 }
2539
2540 return MATCH_YES;
2541
2542 bad:
2543 gfc_syntax_error (ST_IMPLICIT);
2544
2545 gfc_current_locus = cur_loc;
2546 return MATCH_ERROR;
2547 }
2548
2549
2550 /* Match an IMPLICIT statement, storing the types for
2551 gfc_set_implicit() if the statement is accepted by the parser.
2552 There is a strange looking, but legal syntactic construction
2553 possible. It looks like:
2554
2555 IMPLICIT INTEGER (a-b) (c-d)
2556
2557 This is legal if "a-b" is a constant expression that happens to
2558 equal one of the legal kinds for integers. The real problem
2559 happens with an implicit specification that looks like:
2560
2561 IMPLICIT INTEGER (a-b)
2562
2563 In this case, a typespec matcher that is "greedy" (as most of the
2564 matchers are) gobbles the character range as a kindspec, leaving
2565 nothing left. We therefore have to go a bit more slowly in the
2566 matching process by inhibiting the kindspec checking during
2567 typespec matching and checking for a kind later. */
2568
2569 match
2570 gfc_match_implicit (void)
2571 {
2572 gfc_typespec ts;
2573 locus cur_loc;
2574 char c;
2575 match m;
2576
2577 gfc_clear_ts (&ts);
2578
2579 /* We don't allow empty implicit statements. */
2580 if (gfc_match_eos () == MATCH_YES)
2581 {
2582 gfc_error ("Empty IMPLICIT statement at %C");
2583 return MATCH_ERROR;
2584 }
2585
2586 do
2587 {
2588 /* First cleanup. */
2589 gfc_clear_new_implicit ();
2590
2591 /* A basic type is mandatory here. */
2592 m = gfc_match_type_spec (&ts, 1);
2593 if (m == MATCH_ERROR)
2594 goto error;
2595 if (m == MATCH_NO)
2596 goto syntax;
2597
2598 cur_loc = gfc_current_locus;
2599 m = match_implicit_range ();
2600
2601 if (m == MATCH_YES)
2602 {
2603 /* We may have <TYPE> (<RANGE>). */
2604 gfc_gobble_whitespace ();
2605 c = gfc_next_ascii_char ();
2606 if ((c == '\n') || (c == ','))
2607 {
2608 /* Check for CHARACTER with no length parameter. */
2609 if (ts.type == BT_CHARACTER && !ts.cl)
2610 {
2611 ts.kind = gfc_default_character_kind;
2612 ts.cl = gfc_get_charlen ();
2613 ts.cl->next = gfc_current_ns->cl_list;
2614 gfc_current_ns->cl_list = ts.cl;
2615 ts.cl->length = gfc_int_expr (1);
2616 }
2617
2618 /* Record the Successful match. */
2619 if (gfc_merge_new_implicit (&ts) != SUCCESS)
2620 return MATCH_ERROR;
2621 continue;
2622 }
2623
2624 gfc_current_locus = cur_loc;
2625 }
2626
2627 /* Discard the (incorrectly) matched range. */
2628 gfc_clear_new_implicit ();
2629
2630 /* Last chance -- check <TYPE> <SELECTOR> (<RANGE>). */
2631 if (ts.type == BT_CHARACTER)
2632 m = match_char_spec (&ts);
2633 else
2634 {
2635 m = gfc_match_kind_spec (&ts, false);
2636 if (m == MATCH_NO)
2637 {
2638 m = gfc_match_old_kind_spec (&ts);
2639 if (m == MATCH_ERROR)
2640 goto error;
2641 if (m == MATCH_NO)
2642 goto syntax;
2643 }
2644 }
2645 if (m == MATCH_ERROR)
2646 goto error;
2647
2648 m = match_implicit_range ();
2649 if (m == MATCH_ERROR)
2650 goto error;
2651 if (m == MATCH_NO)
2652 goto syntax;
2653
2654 gfc_gobble_whitespace ();
2655 c = gfc_next_ascii_char ();
2656 if ((c != '\n') && (c != ','))
2657 goto syntax;
2658
2659 if (gfc_merge_new_implicit (&ts) != SUCCESS)
2660 return MATCH_ERROR;
2661 }
2662 while (c == ',');
2663
2664 return MATCH_YES;
2665
2666 syntax:
2667 gfc_syntax_error (ST_IMPLICIT);
2668
2669 error:
2670 return MATCH_ERROR;
2671 }
2672
2673
2674 match
2675 gfc_match_import (void)
2676 {
2677 char name[GFC_MAX_SYMBOL_LEN + 1];
2678 match m;
2679 gfc_symbol *sym;
2680 gfc_symtree *st;
2681
2682 if (gfc_current_ns->proc_name == NULL
2683 || gfc_current_ns->proc_name->attr.if_source != IFSRC_IFBODY)
2684 {
2685 gfc_error ("IMPORT statement at %C only permitted in "
2686 "an INTERFACE body");
2687 return MATCH_ERROR;
2688 }
2689
2690 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: IMPORT statement at %C")
2691 == FAILURE)
2692 return MATCH_ERROR;
2693
2694 if (gfc_match_eos () == MATCH_YES)
2695 {
2696 /* All host variables should be imported. */
2697 gfc_current_ns->has_import_set = 1;
2698 return MATCH_YES;
2699 }
2700
2701 if (gfc_match (" ::") == MATCH_YES)
2702 {
2703 if (gfc_match_eos () == MATCH_YES)
2704 {
2705 gfc_error ("Expecting list of named entities at %C");
2706 return MATCH_ERROR;
2707 }
2708 }
2709
2710 for(;;)
2711 {
2712 m = gfc_match (" %n", name);
2713 switch (m)
2714 {
2715 case MATCH_YES:
2716 if (gfc_current_ns->parent != NULL
2717 && gfc_find_symbol (name, gfc_current_ns->parent, 1, &sym))
2718 {
2719 gfc_error ("Type name '%s' at %C is ambiguous", name);
2720 return MATCH_ERROR;
2721 }
2722 else if (gfc_current_ns->proc_name->ns->parent != NULL
2723 && gfc_find_symbol (name,
2724 gfc_current_ns->proc_name->ns->parent,
2725 1, &sym))
2726 {
2727 gfc_error ("Type name '%s' at %C is ambiguous", name);
2728 return MATCH_ERROR;
2729 }
2730
2731 if (sym == NULL)
2732 {
2733 gfc_error ("Cannot IMPORT '%s' from host scoping unit "
2734 "at %C - does not exist.", name);
2735 return MATCH_ERROR;
2736 }
2737
2738 if (gfc_find_symtree (gfc_current_ns->sym_root,name))
2739 {
2740 gfc_warning ("'%s' is already IMPORTed from host scoping unit "
2741 "at %C.", name);
2742 goto next_item;
2743 }
2744
2745 st = gfc_new_symtree (&gfc_current_ns->sym_root, sym->name);
2746 st->n.sym = sym;
2747 sym->refs++;
2748 sym->attr.imported = 1;
2749
2750 goto next_item;
2751
2752 case MATCH_NO:
2753 break;
2754
2755 case MATCH_ERROR:
2756 return MATCH_ERROR;
2757 }
2758
2759 next_item:
2760 if (gfc_match_eos () == MATCH_YES)
2761 break;
2762 if (gfc_match_char (',') != MATCH_YES)
2763 goto syntax;
2764 }
2765
2766 return MATCH_YES;
2767
2768 syntax:
2769 gfc_error ("Syntax error in IMPORT statement at %C");
2770 return MATCH_ERROR;
2771 }
2772
2773
2774 /* A minimal implementation of gfc_match without whitespace, escape
2775 characters or variable arguments. Returns true if the next
2776 characters match the TARGET template exactly. */
2777
2778 static bool
2779 match_string_p (const char *target)
2780 {
2781 const char *p;
2782
2783 for (p = target; *p; p++)
2784 if ((char) gfc_next_ascii_char () != *p)
2785 return false;
2786 return true;
2787 }
2788
2789 /* Matches an attribute specification including array specs. If
2790 successful, leaves the variables current_attr and current_as
2791 holding the specification. Also sets the colon_seen variable for
2792 later use by matchers associated with initializations.
2793
2794 This subroutine is a little tricky in the sense that we don't know
2795 if we really have an attr-spec until we hit the double colon.
2796 Until that time, we can only return MATCH_NO. This forces us to
2797 check for duplicate specification at this level. */
2798
2799 static match
2800 match_attr_spec (void)
2801 {
2802 /* Modifiers that can exist in a type statement. */
2803 typedef enum
2804 { GFC_DECL_BEGIN = 0,
2805 DECL_ALLOCATABLE = GFC_DECL_BEGIN, DECL_DIMENSION, DECL_EXTERNAL,
2806 DECL_IN, DECL_OUT, DECL_INOUT, DECL_INTRINSIC, DECL_OPTIONAL,
2807 DECL_PARAMETER, DECL_POINTER, DECL_PROTECTED, DECL_PRIVATE,
2808 DECL_PUBLIC, DECL_SAVE, DECL_TARGET, DECL_VALUE, DECL_VOLATILE,
2809 DECL_IS_BIND_C, DECL_NONE,
2810 GFC_DECL_END /* Sentinel */
2811 }
2812 decl_types;
2813
2814 /* GFC_DECL_END is the sentinel, index starts at 0. */
2815 #define NUM_DECL GFC_DECL_END
2816
2817 locus start, seen_at[NUM_DECL];
2818 int seen[NUM_DECL];
2819 unsigned int d;
2820 const char *attr;
2821 match m;
2822 gfc_try t;
2823
2824 gfc_clear_attr (&current_attr);
2825 start = gfc_current_locus;
2826
2827 current_as = NULL;
2828 colon_seen = 0;
2829
2830 /* See if we get all of the keywords up to the final double colon. */
2831 for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
2832 seen[d] = 0;
2833
2834 for (;;)
2835 {
2836 char ch;
2837
2838 d = DECL_NONE;
2839 gfc_gobble_whitespace ();
2840
2841 ch = gfc_next_ascii_char ();
2842 if (ch == ':')
2843 {
2844 /* This is the successful exit condition for the loop. */
2845 if (gfc_next_ascii_char () == ':')
2846 break;
2847 }
2848 else if (ch == ',')
2849 {
2850 gfc_gobble_whitespace ();
2851 switch (gfc_peek_ascii_char ())
2852 {
2853 case 'a':
2854 if (match_string_p ("allocatable"))
2855 d = DECL_ALLOCATABLE;
2856 break;
2857
2858 case 'b':
2859 /* Try and match the bind(c). */
2860 m = gfc_match_bind_c (NULL, true);
2861 if (m == MATCH_YES)
2862 d = DECL_IS_BIND_C;
2863 else if (m == MATCH_ERROR)
2864 goto cleanup;
2865 break;
2866
2867 case 'd':
2868 if (match_string_p ("dimension"))
2869 d = DECL_DIMENSION;
2870 break;
2871
2872 case 'e':
2873 if (match_string_p ("external"))
2874 d = DECL_EXTERNAL;
2875 break;
2876
2877 case 'i':
2878 if (match_string_p ("int"))
2879 {
2880 ch = gfc_next_ascii_char ();
2881 if (ch == 'e')
2882 {
2883 if (match_string_p ("nt"))
2884 {
2885 /* Matched "intent". */
2886 /* TODO: Call match_intent_spec from here. */
2887 if (gfc_match (" ( in out )") == MATCH_YES)
2888 d = DECL_INOUT;
2889 else if (gfc_match (" ( in )") == MATCH_YES)
2890 d = DECL_IN;
2891 else if (gfc_match (" ( out )") == MATCH_YES)
2892 d = DECL_OUT;
2893 }
2894 }
2895 else if (ch == 'r')
2896 {
2897 if (match_string_p ("insic"))
2898 {
2899 /* Matched "intrinsic". */
2900 d = DECL_INTRINSIC;
2901 }
2902 }
2903 }
2904 break;
2905
2906 case 'o':
2907 if (match_string_p ("optional"))
2908 d = DECL_OPTIONAL;
2909 break;
2910
2911 case 'p':
2912 gfc_next_ascii_char ();
2913 switch (gfc_next_ascii_char ())
2914 {
2915 case 'a':
2916 if (match_string_p ("rameter"))
2917 {
2918 /* Matched "parameter". */
2919 d = DECL_PARAMETER;
2920 }
2921 break;
2922
2923 case 'o':
2924 if (match_string_p ("inter"))
2925 {
2926 /* Matched "pointer". */
2927 d = DECL_POINTER;
2928 }
2929 break;
2930
2931 case 'r':
2932 ch = gfc_next_ascii_char ();
2933 if (ch == 'i')
2934 {
2935 if (match_string_p ("vate"))
2936 {
2937 /* Matched "private". */
2938 d = DECL_PRIVATE;
2939 }
2940 }
2941 else if (ch == 'o')
2942 {
2943 if (match_string_p ("tected"))
2944 {
2945 /* Matched "protected". */
2946 d = DECL_PROTECTED;
2947 }
2948 }
2949 break;
2950
2951 case 'u':
2952 if (match_string_p ("blic"))
2953 {
2954 /* Matched "public". */
2955 d = DECL_PUBLIC;
2956 }
2957 break;
2958 }
2959 break;
2960
2961 case 's':
2962 if (match_string_p ("save"))
2963 d = DECL_SAVE;
2964 break;
2965
2966 case 't':
2967 if (match_string_p ("target"))
2968 d = DECL_TARGET;
2969 break;
2970
2971 case 'v':
2972 gfc_next_ascii_char ();
2973 ch = gfc_next_ascii_char ();
2974 if (ch == 'a')
2975 {
2976 if (match_string_p ("lue"))
2977 {
2978 /* Matched "value". */
2979 d = DECL_VALUE;
2980 }
2981 }
2982 else if (ch == 'o')
2983 {
2984 if (match_string_p ("latile"))
2985 {
2986 /* Matched "volatile". */
2987 d = DECL_VOLATILE;
2988 }
2989 }
2990 break;
2991 }
2992 }
2993
2994 /* No double colon and no recognizable decl_type, so assume that
2995 we've been looking at something else the whole time. */
2996 if (d == DECL_NONE)
2997 {
2998 m = MATCH_NO;
2999 goto cleanup;
3000 }
3001
3002 /* Check to make sure any parens are paired up correctly. */
3003 if (gfc_match_parens () == MATCH_ERROR)
3004 {
3005 m = MATCH_ERROR;
3006 goto cleanup;
3007 }
3008
3009 seen[d]++;
3010 seen_at[d] = gfc_current_locus;
3011
3012 if (d == DECL_DIMENSION)
3013 {
3014 m = gfc_match_array_spec (&current_as);
3015
3016 if (m == MATCH_NO)
3017 {
3018 gfc_error ("Missing dimension specification at %C");
3019 m = MATCH_ERROR;
3020 }
3021
3022 if (m == MATCH_ERROR)
3023 goto cleanup;
3024 }
3025 }
3026
3027 /* Since we've seen a double colon, we have to be looking at an
3028 attr-spec. This means that we can now issue errors. */
3029 for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
3030 if (seen[d] > 1)
3031 {
3032 switch (d)
3033 {
3034 case DECL_ALLOCATABLE:
3035 attr = "ALLOCATABLE";
3036 break;
3037 case DECL_DIMENSION:
3038 attr = "DIMENSION";
3039 break;
3040 case DECL_EXTERNAL:
3041 attr = "EXTERNAL";
3042 break;
3043 case DECL_IN:
3044 attr = "INTENT (IN)";
3045 break;
3046 case DECL_OUT:
3047 attr = "INTENT (OUT)";
3048 break;
3049 case DECL_INOUT:
3050 attr = "INTENT (IN OUT)";
3051 break;
3052 case DECL_INTRINSIC:
3053 attr = "INTRINSIC";
3054 break;
3055 case DECL_OPTIONAL:
3056 attr = "OPTIONAL";
3057 break;
3058 case DECL_PARAMETER:
3059 attr = "PARAMETER";
3060 break;
3061 case DECL_POINTER:
3062 attr = "POINTER";
3063 break;
3064 case DECL_PROTECTED:
3065 attr = "PROTECTED";
3066 break;
3067 case DECL_PRIVATE:
3068 attr = "PRIVATE";
3069 break;
3070 case DECL_PUBLIC:
3071 attr = "PUBLIC";
3072 break;
3073 case DECL_SAVE:
3074 attr = "SAVE";
3075 break;
3076 case DECL_TARGET:
3077 attr = "TARGET";
3078 break;
3079 case DECL_IS_BIND_C:
3080 attr = "IS_BIND_C";
3081 break;
3082 case DECL_VALUE:
3083 attr = "VALUE";
3084 break;
3085 case DECL_VOLATILE:
3086 attr = "VOLATILE";
3087 break;
3088 default:
3089 attr = NULL; /* This shouldn't happen. */
3090 }
3091
3092 gfc_error ("Duplicate %s attribute at %L", attr, &seen_at[d]);
3093 m = MATCH_ERROR;
3094 goto cleanup;
3095 }
3096
3097 /* Now that we've dealt with duplicate attributes, add the attributes
3098 to the current attribute. */
3099 for (d = GFC_DECL_BEGIN; d != GFC_DECL_END; d++)
3100 {
3101 if (seen[d] == 0)
3102 continue;
3103
3104 if (gfc_current_state () == COMP_DERIVED
3105 && d != DECL_DIMENSION && d != DECL_POINTER
3106 && d != DECL_PRIVATE && d != DECL_PUBLIC
3107 && d != DECL_NONE)
3108 {
3109 if (d == DECL_ALLOCATABLE)
3110 {
3111 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: ALLOCATABLE "
3112 "attribute at %C in a TYPE definition")
3113 == FAILURE)
3114 {
3115 m = MATCH_ERROR;
3116 goto cleanup;
3117 }
3118 }
3119 else
3120 {
3121 gfc_error ("Attribute at %L is not allowed in a TYPE definition",
3122 &seen_at[d]);
3123 m = MATCH_ERROR;
3124 goto cleanup;
3125 }
3126 }
3127
3128 if ((d == DECL_PRIVATE || d == DECL_PUBLIC)
3129 && gfc_current_state () != COMP_MODULE)
3130 {
3131 if (d == DECL_PRIVATE)
3132 attr = "PRIVATE";
3133 else
3134 attr = "PUBLIC";
3135 if (gfc_current_state () == COMP_DERIVED
3136 && gfc_state_stack->previous
3137 && gfc_state_stack->previous->state == COMP_MODULE)
3138 {
3139 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: Attribute %s "
3140 "at %L in a TYPE definition", attr,
3141 &seen_at[d])
3142 == FAILURE)
3143 {
3144 m = MATCH_ERROR;
3145 goto cleanup;
3146 }
3147 }
3148 else
3149 {
3150 gfc_error ("%s attribute at %L is not allowed outside of the "
3151 "specification part of a module", attr, &seen_at[d]);
3152 m = MATCH_ERROR;
3153 goto cleanup;
3154 }
3155 }
3156
3157 switch (d)
3158 {
3159 case DECL_ALLOCATABLE:
3160 t = gfc_add_allocatable (&current_attr, &seen_at[d]);
3161 break;
3162
3163 case DECL_DIMENSION:
3164 t = gfc_add_dimension (&current_attr, NULL, &seen_at[d]);
3165 break;
3166
3167 case DECL_EXTERNAL:
3168 t = gfc_add_external (&current_attr, &seen_at[d]);
3169 break;
3170
3171 case DECL_IN:
3172 t = gfc_add_intent (&current_attr, INTENT_IN, &seen_at[d]);
3173 break;
3174
3175 case DECL_OUT:
3176 t = gfc_add_intent (&current_attr, INTENT_OUT, &seen_at[d]);
3177 break;
3178
3179 case DECL_INOUT:
3180 t = gfc_add_intent (&current_attr, INTENT_INOUT, &seen_at[d]);
3181 break;
3182
3183 case DECL_INTRINSIC:
3184 t = gfc_add_intrinsic (&current_attr, &seen_at[d]);
3185 break;
3186
3187 case DECL_OPTIONAL:
3188 t = gfc_add_optional (&current_attr, &seen_at[d]);
3189 break;
3190
3191 case DECL_PARAMETER:
3192 t = gfc_add_flavor (&current_attr, FL_PARAMETER, NULL, &seen_at[d]);
3193 break;
3194
3195 case DECL_POINTER:
3196 t = gfc_add_pointer (&current_attr, &seen_at[d]);
3197 break;
3198
3199 case DECL_PROTECTED:
3200 if (gfc_current_ns->proc_name->attr.flavor != FL_MODULE)
3201 {
3202 gfc_error ("PROTECTED at %C only allowed in specification "
3203 "part of a module");
3204 t = FAILURE;
3205 break;
3206 }
3207
3208 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: PROTECTED "
3209 "attribute at %C")
3210 == FAILURE)
3211 t = FAILURE;
3212 else
3213 t = gfc_add_protected (&current_attr, NULL, &seen_at[d]);
3214 break;
3215
3216 case DECL_PRIVATE:
3217 t = gfc_add_access (&current_attr, ACCESS_PRIVATE, NULL,
3218 &seen_at[d]);
3219 break;
3220
3221 case DECL_PUBLIC:
3222 t = gfc_add_access (&current_attr, ACCESS_PUBLIC, NULL,
3223 &seen_at[d]);
3224 break;
3225
3226 case DECL_SAVE:
3227 t = gfc_add_save (&current_attr, NULL, &seen_at[d]);
3228 break;
3229
3230 case DECL_TARGET:
3231 t = gfc_add_target (&current_attr, &seen_at[d]);
3232 break;
3233
3234 case DECL_IS_BIND_C:
3235 t = gfc_add_is_bind_c(&current_attr, NULL, &seen_at[d], 0);
3236 break;
3237
3238 case DECL_VALUE:
3239 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: VALUE attribute "
3240 "at %C")
3241 == FAILURE)
3242 t = FAILURE;
3243 else
3244 t = gfc_add_value (&current_attr, NULL, &seen_at[d]);
3245 break;
3246
3247 case DECL_VOLATILE:
3248 if (gfc_notify_std (GFC_STD_F2003,
3249 "Fortran 2003: VOLATILE attribute at %C")
3250 == FAILURE)
3251 t = FAILURE;
3252 else
3253 t = gfc_add_volatile (&current_attr, NULL, &seen_at[d]);
3254 break;
3255
3256 default:
3257 gfc_internal_error ("match_attr_spec(): Bad attribute");
3258 }
3259
3260 if (t == FAILURE)
3261 {
3262 m = MATCH_ERROR;
3263 goto cleanup;
3264 }
3265 }
3266
3267 colon_seen = 1;
3268 return MATCH_YES;
3269
3270 cleanup:
3271 gfc_current_locus = start;
3272 gfc_free_array_spec (current_as);
3273 current_as = NULL;
3274 return m;
3275 }
3276
3277
3278 /* Set the binding label, dest_label, either with the binding label
3279 stored in the given gfc_typespec, ts, or if none was provided, it
3280 will be the symbol name in all lower case, as required by the draft
3281 (J3/04-007, section 15.4.1). If a binding label was given and
3282 there is more than one argument (num_idents), it is an error. */
3283
3284 gfc_try
3285 set_binding_label (char *dest_label, const char *sym_name, int num_idents)
3286 {
3287 if (num_idents > 1 && has_name_equals)
3288 {
3289 gfc_error ("Multiple identifiers provided with "
3290 "single NAME= specifier at %C");
3291 return FAILURE;
3292 }
3293
3294 if (curr_binding_label[0] != '\0')
3295 {
3296 /* Binding label given; store in temp holder til have sym. */
3297 strcpy (dest_label, curr_binding_label);
3298 }
3299 else
3300 {
3301 /* No binding label given, and the NAME= specifier did not exist,
3302 which means there was no NAME="". */
3303 if (sym_name != NULL && has_name_equals == 0)
3304 strcpy (dest_label, sym_name);
3305 }
3306
3307 return SUCCESS;
3308 }
3309
3310
3311 /* Set the status of the given common block as being BIND(C) or not,
3312 depending on the given parameter, is_bind_c. */
3313
3314 void
3315 set_com_block_bind_c (gfc_common_head *com_block, int is_bind_c)
3316 {
3317 com_block->is_bind_c = is_bind_c;
3318 return;
3319 }
3320
3321
3322 /* Verify that the given gfc_typespec is for a C interoperable type. */
3323
3324 gfc_try
3325 verify_c_interop (gfc_typespec *ts)
3326 {
3327 if (ts->type == BT_DERIVED && ts->derived != NULL)
3328 return (ts->derived->ts.is_c_interop ? SUCCESS : FAILURE);
3329 else if (ts->is_c_interop != 1)
3330 return FAILURE;
3331
3332 return SUCCESS;
3333 }
3334
3335
3336 /* Verify that the variables of a given common block, which has been
3337 defined with the attribute specifier bind(c), to be of a C
3338 interoperable type. Errors will be reported here, if
3339 encountered. */
3340
3341 gfc_try
3342 verify_com_block_vars_c_interop (gfc_common_head *com_block)
3343 {
3344 gfc_symbol *curr_sym = NULL;
3345 gfc_try retval = SUCCESS;
3346
3347 curr_sym = com_block->head;
3348
3349 /* Make sure we have at least one symbol. */
3350 if (curr_sym == NULL)
3351 return retval;
3352
3353 /* Here we know we have a symbol, so we'll execute this loop
3354 at least once. */
3355 do
3356 {
3357 /* The second to last param, 1, says this is in a common block. */
3358 retval = verify_bind_c_sym (curr_sym, &(curr_sym->ts), 1, com_block);
3359 curr_sym = curr_sym->common_next;
3360 } while (curr_sym != NULL);
3361
3362 return retval;
3363 }
3364
3365
3366 /* Verify that a given BIND(C) symbol is C interoperable. If it is not,
3367 an appropriate error message is reported. */
3368
3369 gfc_try
3370 verify_bind_c_sym (gfc_symbol *tmp_sym, gfc_typespec *ts,
3371 int is_in_common, gfc_common_head *com_block)
3372 {
3373 bool bind_c_function = false;
3374 gfc_try retval = SUCCESS;
3375
3376 if (tmp_sym->attr.function && tmp_sym->attr.is_bind_c)
3377 bind_c_function = true;
3378
3379 if (tmp_sym->attr.function && tmp_sym->result != NULL)
3380 {
3381 tmp_sym = tmp_sym->result;
3382 /* Make sure it wasn't an implicitly typed result. */
3383 if (tmp_sym->attr.implicit_type)
3384 {
3385 gfc_warning ("Implicitly declared BIND(C) function '%s' at "
3386 "%L may not be C interoperable", tmp_sym->name,
3387 &tmp_sym->declared_at);
3388 tmp_sym->ts.f90_type = tmp_sym->ts.type;
3389 /* Mark it as C interoperable to prevent duplicate warnings. */
3390 tmp_sym->ts.is_c_interop = 1;
3391 tmp_sym->attr.is_c_interop = 1;
3392 }
3393 }
3394
3395 /* Here, we know we have the bind(c) attribute, so if we have
3396 enough type info, then verify that it's a C interop kind.
3397 The info could be in the symbol already, or possibly still in
3398 the given ts (current_ts), so look in both. */
3399 if (tmp_sym->ts.type != BT_UNKNOWN || ts->type != BT_UNKNOWN)
3400 {
3401 if (verify_c_interop (&(tmp_sym->ts)) != SUCCESS)
3402 {
3403 /* See if we're dealing with a sym in a common block or not. */
3404 if (is_in_common == 1)
3405 {
3406 gfc_warning ("Variable '%s' in common block '%s' at %L "
3407 "may not be a C interoperable "
3408 "kind though common block '%s' is BIND(C)",
3409 tmp_sym->name, com_block->name,
3410 &(tmp_sym->declared_at), com_block->name);
3411 }
3412 else
3413 {
3414 if (tmp_sym->ts.type == BT_DERIVED || ts->type == BT_DERIVED)
3415 gfc_error ("Type declaration '%s' at %L is not C "
3416 "interoperable but it is BIND(C)",
3417 tmp_sym->name, &(tmp_sym->declared_at));
3418 else
3419 gfc_warning ("Variable '%s' at %L "
3420 "may not be a C interoperable "
3421 "kind but it is bind(c)",
3422 tmp_sym->name, &(tmp_sym->declared_at));
3423 }
3424 }
3425
3426 /* Variables declared w/in a common block can't be bind(c)
3427 since there's no way for C to see these variables, so there's
3428 semantically no reason for the attribute. */
3429 if (is_in_common == 1 && tmp_sym->attr.is_bind_c == 1)
3430 {
3431 gfc_error ("Variable '%s' in common block '%s' at "
3432 "%L cannot be declared with BIND(C) "
3433 "since it is not a global",
3434 tmp_sym->name, com_block->name,
3435 &(tmp_sym->declared_at));
3436 retval = FAILURE;
3437 }
3438
3439 /* Scalar variables that are bind(c) can not have the pointer
3440 or allocatable attributes. */
3441 if (tmp_sym->attr.is_bind_c == 1)
3442 {
3443 if (tmp_sym->attr.pointer == 1)
3444 {
3445 gfc_error ("Variable '%s' at %L cannot have both the "
3446 "POINTER and BIND(C) attributes",
3447 tmp_sym->name, &(tmp_sym->declared_at));
3448 retval = FAILURE;
3449 }
3450
3451 if (tmp_sym->attr.allocatable == 1)
3452 {
3453 gfc_error ("Variable '%s' at %L cannot have both the "
3454 "ALLOCATABLE and BIND(C) attributes",
3455 tmp_sym->name, &(tmp_sym->declared_at));
3456 retval = FAILURE;
3457 }
3458
3459 }
3460
3461 /* If it is a BIND(C) function, make sure the return value is a
3462 scalar value. The previous tests in this function made sure
3463 the type is interoperable. */
3464 if (bind_c_function && tmp_sym->as != NULL)
3465 gfc_error ("Return type of BIND(C) function '%s' at %L cannot "
3466 "be an array", tmp_sym->name, &(tmp_sym->declared_at));
3467
3468 /* BIND(C) functions can not return a character string. */
3469 if (bind_c_function && tmp_sym->ts.type == BT_CHARACTER)
3470 if (tmp_sym->ts.cl == NULL || tmp_sym->ts.cl->length == NULL
3471 || tmp_sym->ts.cl->length->expr_type != EXPR_CONSTANT
3472 || mpz_cmp_si (tmp_sym->ts.cl->length->value.integer, 1) != 0)
3473 gfc_error ("Return type of BIND(C) function '%s' at %L cannot "
3474 "be a character string", tmp_sym->name,
3475 &(tmp_sym->declared_at));
3476 }
3477
3478 /* See if the symbol has been marked as private. If it has, make sure
3479 there is no binding label and warn the user if there is one. */
3480 if (tmp_sym->attr.access == ACCESS_PRIVATE
3481 && tmp_sym->binding_label[0] != '\0')
3482 /* Use gfc_warning_now because we won't say that the symbol fails
3483 just because of this. */
3484 gfc_warning_now ("Symbol '%s' at %L is marked PRIVATE but has been "
3485 "given the binding label '%s'", tmp_sym->name,
3486 &(tmp_sym->declared_at), tmp_sym->binding_label);
3487
3488 return retval;
3489 }
3490
3491
3492 /* Set the appropriate fields for a symbol that's been declared as
3493 BIND(C) (the is_bind_c flag and the binding label), and verify that
3494 the type is C interoperable. Errors are reported by the functions
3495 used to set/test these fields. */
3496
3497 gfc_try
3498 set_verify_bind_c_sym (gfc_symbol *tmp_sym, int num_idents)
3499 {
3500 gfc_try retval = SUCCESS;
3501
3502 /* TODO: Do we need to make sure the vars aren't marked private? */
3503
3504 /* Set the is_bind_c bit in symbol_attribute. */
3505 gfc_add_is_bind_c (&(tmp_sym->attr), tmp_sym->name, &gfc_current_locus, 0);
3506
3507 if (set_binding_label (tmp_sym->binding_label, tmp_sym->name,
3508 num_idents) != SUCCESS)
3509 return FAILURE;
3510
3511 return retval;
3512 }
3513
3514
3515 /* Set the fields marking the given common block as BIND(C), including
3516 a binding label, and report any errors encountered. */
3517
3518 gfc_try
3519 set_verify_bind_c_com_block (gfc_common_head *com_block, int num_idents)
3520 {
3521 gfc_try retval = SUCCESS;
3522
3523 /* destLabel, common name, typespec (which may have binding label). */
3524 if (set_binding_label (com_block->binding_label, com_block->name, num_idents)
3525 != SUCCESS)
3526 return FAILURE;
3527
3528 /* Set the given common block (com_block) to being bind(c) (1). */
3529 set_com_block_bind_c (com_block, 1);
3530
3531 return retval;
3532 }
3533
3534
3535 /* Retrieve the list of one or more identifiers that the given bind(c)
3536 attribute applies to. */
3537
3538 gfc_try
3539 get_bind_c_idents (void)
3540 {
3541 char name[GFC_MAX_SYMBOL_LEN + 1];
3542 int num_idents = 0;
3543 gfc_symbol *tmp_sym = NULL;
3544 match found_id;
3545 gfc_common_head *com_block = NULL;
3546
3547 if (gfc_match_name (name) == MATCH_YES)
3548 {
3549 found_id = MATCH_YES;
3550 gfc_get_ha_symbol (name, &tmp_sym);
3551 }
3552 else if (match_common_name (name) == MATCH_YES)
3553 {
3554 found_id = MATCH_YES;
3555 com_block = gfc_get_common (name, 0);
3556 }
3557 else
3558 {
3559 gfc_error ("Need either entity or common block name for "
3560 "attribute specification statement at %C");
3561 return FAILURE;
3562 }
3563
3564 /* Save the current identifier and look for more. */
3565 do
3566 {
3567 /* Increment the number of identifiers found for this spec stmt. */
3568 num_idents++;
3569
3570 /* Make sure we have a sym or com block, and verify that it can
3571 be bind(c). Set the appropriate field(s) and look for more
3572 identifiers. */
3573 if (tmp_sym != NULL || com_block != NULL)
3574 {
3575 if (tmp_sym != NULL)
3576 {
3577 if (set_verify_bind_c_sym (tmp_sym, num_idents)
3578 != SUCCESS)
3579 return FAILURE;
3580 }
3581 else
3582 {
3583 if (set_verify_bind_c_com_block(com_block, num_idents)
3584 != SUCCESS)
3585 return FAILURE;
3586 }
3587
3588 /* Look to see if we have another identifier. */
3589 tmp_sym = NULL;
3590 if (gfc_match_eos () == MATCH_YES)
3591 found_id = MATCH_NO;
3592 else if (gfc_match_char (',') != MATCH_YES)
3593 found_id = MATCH_NO;
3594 else if (gfc_match_name (name) == MATCH_YES)
3595 {
3596 found_id = MATCH_YES;
3597 gfc_get_ha_symbol (name, &tmp_sym);
3598 }
3599 else if (match_common_name (name) == MATCH_YES)
3600 {
3601 found_id = MATCH_YES;
3602 com_block = gfc_get_common (name, 0);
3603 }
3604 else
3605 {
3606 gfc_error ("Missing entity or common block name for "
3607 "attribute specification statement at %C");
3608 return FAILURE;
3609 }
3610 }
3611 else
3612 {
3613 gfc_internal_error ("Missing symbol");
3614 }
3615 } while (found_id == MATCH_YES);
3616
3617 /* if we get here we were successful */
3618 return SUCCESS;
3619 }
3620
3621
3622 /* Try and match a BIND(C) attribute specification statement. */
3623
3624 match
3625 gfc_match_bind_c_stmt (void)
3626 {
3627 match found_match = MATCH_NO;
3628 gfc_typespec *ts;
3629
3630 ts = &current_ts;
3631
3632 /* This may not be necessary. */
3633 gfc_clear_ts (ts);
3634 /* Clear the temporary binding label holder. */
3635 curr_binding_label[0] = '\0';
3636
3637 /* Look for the bind(c). */
3638 found_match = gfc_match_bind_c (NULL, true);
3639
3640 if (found_match == MATCH_YES)
3641 {
3642 /* Look for the :: now, but it is not required. */
3643 gfc_match (" :: ");
3644
3645 /* Get the identifier(s) that needs to be updated. This may need to
3646 change to hand the flag(s) for the attr specified so all identifiers
3647 found can have all appropriate parts updated (assuming that the same
3648 spec stmt can have multiple attrs, such as both bind(c) and
3649 allocatable...). */
3650 if (get_bind_c_idents () != SUCCESS)
3651 /* Error message should have printed already. */
3652 return MATCH_ERROR;
3653 }
3654
3655 return found_match;
3656 }
3657
3658
3659 /* Match a data declaration statement. */
3660
3661 match
3662 gfc_match_data_decl (void)
3663 {
3664 gfc_symbol *sym;
3665 match m;
3666 int elem;
3667
3668 num_idents_on_line = 0;
3669
3670 m = gfc_match_type_spec (&current_ts, 0);
3671 if (m != MATCH_YES)
3672 return m;
3673
3674 if (current_ts.type == BT_DERIVED && gfc_current_state () != COMP_DERIVED)
3675 {
3676 sym = gfc_use_derived (current_ts.derived);
3677
3678 if (sym == NULL)
3679 {
3680 m = MATCH_ERROR;
3681 goto cleanup;
3682 }
3683
3684 current_ts.derived = sym;
3685 }
3686
3687 m = match_attr_spec ();
3688 if (m == MATCH_ERROR)
3689 {
3690 m = MATCH_NO;
3691 goto cleanup;
3692 }
3693
3694 if (current_ts.type == BT_DERIVED && current_ts.derived->components == NULL
3695 && !current_ts.derived->attr.zero_comp)
3696 {
3697
3698 if (current_attr.pointer && gfc_current_state () == COMP_DERIVED)
3699 goto ok;
3700
3701 gfc_find_symbol (current_ts.derived->name,
3702 current_ts.derived->ns->parent, 1, &sym);
3703
3704 /* Any symbol that we find had better be a type definition
3705 which has its components defined. */
3706 if (sym != NULL && sym->attr.flavor == FL_DERIVED
3707 && (current_ts.derived->components != NULL
3708 || current_ts.derived->attr.zero_comp))
3709 goto ok;
3710
3711 /* Now we have an error, which we signal, and then fix up
3712 because the knock-on is plain and simple confusing. */
3713 gfc_error_now ("Derived type at %C has not been previously defined "
3714 "and so cannot appear in a derived type definition");
3715 current_attr.pointer = 1;
3716 goto ok;
3717 }
3718
3719 ok:
3720 /* If we have an old-style character declaration, and no new-style
3721 attribute specifications, then there a comma is optional between
3722 the type specification and the variable list. */
3723 if (m == MATCH_NO && current_ts.type == BT_CHARACTER && old_char_selector)
3724 gfc_match_char (',');
3725
3726 /* Give the types/attributes to symbols that follow. Give the element
3727 a number so that repeat character length expressions can be copied. */
3728 elem = 1;
3729 for (;;)
3730 {
3731 num_idents_on_line++;
3732 m = variable_decl (elem++);
3733 if (m == MATCH_ERROR)
3734 goto cleanup;
3735 if (m == MATCH_NO)
3736 break;
3737
3738 if (gfc_match_eos () == MATCH_YES)
3739 goto cleanup;
3740 if (gfc_match_char (',') != MATCH_YES)
3741 break;
3742 }
3743
3744 if (gfc_error_flag_test () == 0)
3745 gfc_error ("Syntax error in data declaration at %C");
3746 m = MATCH_ERROR;
3747
3748 gfc_free_data_all (gfc_current_ns);
3749
3750 cleanup:
3751 gfc_free_array_spec (current_as);
3752 current_as = NULL;
3753 return m;
3754 }
3755
3756
3757 /* Match a prefix associated with a function or subroutine
3758 declaration. If the typespec pointer is nonnull, then a typespec
3759 can be matched. Note that if nothing matches, MATCH_YES is
3760 returned (the null string was matched). */
3761
3762 match
3763 gfc_match_prefix (gfc_typespec *ts)
3764 {
3765 bool seen_type;
3766
3767 gfc_clear_attr (&current_attr);
3768 seen_type = 0;
3769
3770 gcc_assert (!gfc_matching_prefix);
3771 gfc_matching_prefix = true;
3772
3773 loop:
3774 if (!seen_type && ts != NULL
3775 && gfc_match_type_spec (ts, 0) == MATCH_YES
3776 && gfc_match_space () == MATCH_YES)
3777 {
3778
3779 seen_type = 1;
3780 goto loop;
3781 }
3782
3783 if (gfc_match ("elemental% ") == MATCH_YES)
3784 {
3785 if (gfc_add_elemental (&current_attr, NULL) == FAILURE)
3786 goto error;
3787
3788 goto loop;
3789 }
3790
3791 if (gfc_match ("pure% ") == MATCH_YES)
3792 {
3793 if (gfc_add_pure (&current_attr, NULL) == FAILURE)
3794 goto error;
3795
3796 goto loop;
3797 }
3798
3799 if (gfc_match ("recursive% ") == MATCH_YES)
3800 {
3801 if (gfc_add_recursive (&current_attr, NULL) == FAILURE)
3802 goto error;
3803
3804 goto loop;
3805 }
3806
3807 /* At this point, the next item is not a prefix. */
3808 gcc_assert (gfc_matching_prefix);
3809 gfc_matching_prefix = false;
3810 return MATCH_YES;
3811
3812 error:
3813 gcc_assert (gfc_matching_prefix);
3814 gfc_matching_prefix = false;
3815 return MATCH_ERROR;
3816 }
3817
3818
3819 /* Copy attributes matched by gfc_match_prefix() to attributes on a symbol. */
3820
3821 static gfc_try
3822 copy_prefix (symbol_attribute *dest, locus *where)
3823 {
3824 if (current_attr.pure && gfc_add_pure (dest, where) == FAILURE)
3825 return FAILURE;
3826
3827 if (current_attr.elemental && gfc_add_elemental (dest, where) == FAILURE)
3828 return FAILURE;
3829
3830 if (current_attr.recursive && gfc_add_recursive (dest, where) == FAILURE)
3831 return FAILURE;
3832
3833 return SUCCESS;
3834 }
3835
3836
3837 /* Match a formal argument list. */
3838
3839 match
3840 gfc_match_formal_arglist (gfc_symbol *progname, int st_flag, int null_flag)
3841 {
3842 gfc_formal_arglist *head, *tail, *p, *q;
3843 char name[GFC_MAX_SYMBOL_LEN + 1];
3844 gfc_symbol *sym;
3845 match m;
3846
3847 head = tail = NULL;
3848
3849 if (gfc_match_char ('(') != MATCH_YES)
3850 {
3851 if (null_flag)
3852 goto ok;
3853 return MATCH_NO;
3854 }
3855
3856 if (gfc_match_char (')') == MATCH_YES)
3857 goto ok;
3858
3859 for (;;)
3860 {
3861 if (gfc_match_char ('*') == MATCH_YES)
3862 sym = NULL;
3863 else
3864 {
3865 m = gfc_match_name (name);
3866 if (m != MATCH_YES)
3867 goto cleanup;
3868
3869 if (gfc_get_symbol (name, NULL, &sym))
3870 goto cleanup;
3871 }
3872
3873 p = gfc_get_formal_arglist ();
3874
3875 if (head == NULL)
3876 head = tail = p;
3877 else
3878 {
3879 tail->next = p;
3880 tail = p;
3881 }
3882
3883 tail->sym = sym;
3884
3885 /* We don't add the VARIABLE flavor because the name could be a
3886 dummy procedure. We don't apply these attributes to formal
3887 arguments of statement functions. */
3888 if (sym != NULL && !st_flag
3889 && (gfc_add_dummy (&sym->attr, sym->name, NULL) == FAILURE
3890 || gfc_missing_attr (&sym->attr, NULL) == FAILURE))
3891 {
3892 m = MATCH_ERROR;
3893 goto cleanup;
3894 }
3895
3896 /* The name of a program unit can be in a different namespace,
3897 so check for it explicitly. After the statement is accepted,
3898 the name is checked for especially in gfc_get_symbol(). */
3899 if (gfc_new_block != NULL && sym != NULL
3900 && strcmp (sym->name, gfc_new_block->name) == 0)
3901 {
3902 gfc_error ("Name '%s' at %C is the name of the procedure",
3903 sym->name);
3904 m = MATCH_ERROR;
3905 goto cleanup;
3906 }
3907
3908 if (gfc_match_char (')') == MATCH_YES)
3909 goto ok;
3910
3911 m = gfc_match_char (',');
3912 if (m != MATCH_YES)
3913 {
3914 gfc_error ("Unexpected junk in formal argument list at %C");
3915 goto cleanup;
3916 }
3917 }
3918
3919 ok:
3920 /* Check for duplicate symbols in the formal argument list. */
3921 if (head != NULL)
3922 {
3923 for (p = head; p->next; p = p->next)
3924 {
3925 if (p->sym == NULL)
3926 continue;
3927
3928 for (q = p->next; q; q = q->next)
3929 if (p->sym == q->sym)
3930 {
3931 gfc_error ("Duplicate symbol '%s' in formal argument list "
3932 "at %C", p->sym->name);
3933
3934 m = MATCH_ERROR;
3935 goto cleanup;
3936 }
3937 }
3938 }
3939
3940 if (gfc_add_explicit_interface (progname, IFSRC_DECL, head, NULL)
3941 == FAILURE)
3942 {
3943 m = MATCH_ERROR;
3944 goto cleanup;
3945 }
3946
3947 return MATCH_YES;
3948
3949 cleanup:
3950 gfc_free_formal_arglist (head);
3951 return m;
3952 }
3953
3954
3955 /* Match a RESULT specification following a function declaration or
3956 ENTRY statement. Also matches the end-of-statement. */
3957
3958 static match
3959 match_result (gfc_symbol *function, gfc_symbol **result)
3960 {
3961 char name[GFC_MAX_SYMBOL_LEN + 1];
3962 gfc_symbol *r;
3963 match m;
3964
3965 if (gfc_match (" result (") != MATCH_YES)
3966 return MATCH_NO;
3967
3968 m = gfc_match_name (name);
3969 if (m != MATCH_YES)
3970 return m;
3971
3972 /* Get the right paren, and that's it because there could be the
3973 bind(c) attribute after the result clause. */
3974 if (gfc_match_char(')') != MATCH_YES)
3975 {
3976 /* TODO: should report the missing right paren here. */
3977 return MATCH_ERROR;
3978 }
3979
3980 if (strcmp (function->name, name) == 0)
3981 {
3982 gfc_error ("RESULT variable at %C must be different than function name");
3983 return MATCH_ERROR;
3984 }
3985
3986 if (gfc_get_symbol (name, NULL, &r))
3987 return MATCH_ERROR;
3988
3989 if (gfc_add_result (&r->attr, r->name, NULL) == FAILURE)
3990 return MATCH_ERROR;
3991
3992 *result = r;
3993
3994 return MATCH_YES;
3995 }
3996
3997
3998 /* Match a function suffix, which could be a combination of a result
3999 clause and BIND(C), either one, or neither. The draft does not
4000 require them to come in a specific order. */
4001
4002 match
4003 gfc_match_suffix (gfc_symbol *sym, gfc_symbol **result)
4004 {
4005 match is_bind_c; /* Found bind(c). */
4006 match is_result; /* Found result clause. */
4007 match found_match; /* Status of whether we've found a good match. */
4008 char peek_char; /* Character we're going to peek at. */
4009 bool allow_binding_name;
4010
4011 /* Initialize to having found nothing. */
4012 found_match = MATCH_NO;
4013 is_bind_c = MATCH_NO;
4014 is_result = MATCH_NO;
4015
4016 /* Get the next char to narrow between result and bind(c). */
4017 gfc_gobble_whitespace ();
4018 peek_char = gfc_peek_ascii_char ();
4019
4020 /* C binding names are not allowed for internal procedures. */
4021 if (gfc_current_state () == COMP_CONTAINS
4022 && sym->ns->proc_name->attr.flavor != FL_MODULE)
4023 allow_binding_name = false;
4024 else
4025 allow_binding_name = true;
4026
4027 switch (peek_char)
4028 {
4029 case 'r':
4030 /* Look for result clause. */
4031 is_result = match_result (sym, result);
4032 if (is_result == MATCH_YES)
4033 {
4034 /* Now see if there is a bind(c) after it. */
4035 is_bind_c = gfc_match_bind_c (sym, allow_binding_name);
4036 /* We've found the result clause and possibly bind(c). */
4037 found_match = MATCH_YES;
4038 }
4039 else
4040 /* This should only be MATCH_ERROR. */
4041 found_match = is_result;
4042 break;
4043 case 'b':
4044 /* Look for bind(c) first. */
4045 is_bind_c = gfc_match_bind_c (sym, allow_binding_name);
4046 if (is_bind_c == MATCH_YES)
4047 {
4048 /* Now see if a result clause followed it. */
4049 is_result = match_result (sym, result);
4050 found_match = MATCH_YES;
4051 }
4052 else
4053 {
4054 /* Should only be a MATCH_ERROR if we get here after seeing 'b'. */
4055 found_match = MATCH_ERROR;
4056 }
4057 break;
4058 default:
4059 gfc_error ("Unexpected junk after function declaration at %C");
4060 found_match = MATCH_ERROR;
4061 break;
4062 }
4063
4064 if (is_bind_c == MATCH_YES)
4065 {
4066 /* Fortran 2008 draft allows BIND(C) for internal procedures. */
4067 if (gfc_current_state () == COMP_CONTAINS
4068 && sym->ns->proc_name->attr.flavor != FL_MODULE
4069 && gfc_notify_std (GFC_STD_F2008, "Fortran 2008: BIND(C) attribute "
4070 "at %L may not be specified for an internal "
4071 "procedure", &gfc_current_locus)
4072 == FAILURE)
4073 return MATCH_ERROR;
4074
4075 if (gfc_add_is_bind_c (&(sym->attr), sym->name, &gfc_current_locus, 1)
4076 == FAILURE)
4077 return MATCH_ERROR;
4078 }
4079
4080 return found_match;
4081 }
4082
4083
4084 /* Procedure pointer return value without RESULT statement:
4085 Add "hidden" result variable named "ppr@". */
4086
4087 static gfc_try
4088 add_hidden_procptr_result (gfc_symbol *sym)
4089 {
4090 bool case1,case2;
4091
4092 if (gfc_notification_std (GFC_STD_F2003) == ERROR)
4093 return FAILURE;
4094
4095 /* First usage case: PROCEDURE and EXTERNAL statements. */
4096 case1 = gfc_current_state () == COMP_FUNCTION && gfc_current_block ()
4097 && strcmp (gfc_current_block ()->name, sym->name) == 0
4098 && sym->attr.external;
4099 /* Second usage case: INTERFACE statements. */
4100 case2 = gfc_current_state () == COMP_INTERFACE && gfc_state_stack->previous
4101 && gfc_state_stack->previous->state == COMP_FUNCTION
4102 && strcmp (gfc_state_stack->previous->sym->name, sym->name) == 0;
4103
4104 if (case1 || case2)
4105 {
4106 gfc_symtree *stree;
4107 if (case1)
4108 gfc_get_sym_tree ("ppr@", gfc_current_ns, &stree);
4109 else if (case2)
4110 {
4111 gfc_symtree *st2;
4112 gfc_get_sym_tree ("ppr@", gfc_current_ns->parent, &stree);
4113 st2 = gfc_new_symtree (&gfc_current_ns->sym_root, "ppr@");
4114 st2->n.sym = stree->n.sym;
4115 }
4116 sym->result = stree->n.sym;
4117
4118 sym->result->attr.proc_pointer = sym->attr.proc_pointer;
4119 sym->result->attr.pointer = sym->attr.pointer;
4120 sym->result->attr.external = sym->attr.external;
4121 sym->result->attr.referenced = sym->attr.referenced;
4122 sym->attr.proc_pointer = 0;
4123 sym->attr.pointer = 0;
4124 sym->attr.external = 0;
4125 if (sym->result->attr.external && sym->result->attr.pointer)
4126 {
4127 sym->result->attr.pointer = 0;
4128 sym->result->attr.proc_pointer = 1;
4129 }
4130
4131 return gfc_add_result (&sym->result->attr, sym->result->name, NULL);
4132 }
4133 /* POINTER after PROCEDURE/EXTERNAL/INTERFACE statement. */
4134 else if (sym->attr.function && !sym->attr.external && sym->attr.pointer
4135 && sym->result && sym->result != sym && sym->result->attr.external
4136 && sym == gfc_current_ns->proc_name
4137 && sym == sym->result->ns->proc_name
4138 && strcmp ("ppr@", sym->result->name) == 0)
4139 {
4140 sym->result->attr.proc_pointer = 1;
4141 sym->attr.pointer = 0;
4142 return SUCCESS;
4143 }
4144 else
4145 return FAILURE;
4146 }
4147
4148
4149 /* Match the interface for a PROCEDURE declaration,
4150 including brackets (R1212). */
4151
4152 static match
4153 match_procedure_interface (gfc_symbol **proc_if)
4154 {
4155 match m;
4156 locus old_loc, entry_loc;
4157 old_loc = entry_loc = gfc_current_locus;
4158
4159 gfc_clear_ts (&current_ts);
4160
4161 if (gfc_match (" (") != MATCH_YES)
4162 {
4163 gfc_current_locus = entry_loc;
4164 return MATCH_NO;
4165 }
4166
4167 /* Get the type spec. for the procedure interface. */
4168 old_loc = gfc_current_locus;
4169 m = gfc_match_type_spec (&current_ts, 0);
4170 gfc_gobble_whitespace ();
4171 if (m == MATCH_YES || (m == MATCH_NO && gfc_peek_ascii_char () == ')'))
4172 goto got_ts;
4173
4174 if (m == MATCH_ERROR)
4175 return m;
4176
4177 gfc_current_locus = old_loc;
4178
4179 /* Get the name of the procedure or abstract interface
4180 to inherit the interface from. */
4181 m = gfc_match_symbol (proc_if, 1);
4182 if (m != MATCH_YES)
4183 return m;
4184
4185 /* Various interface checks. */
4186 if (*proc_if)
4187 {
4188 (*proc_if)->refs++;
4189 /* Resolve interface if possible. That way, attr.procedure is only set
4190 if it is declared by a later procedure-declaration-stmt, which is
4191 invalid per C1212. */
4192 while ((*proc_if)->ts.interface)
4193 *proc_if = (*proc_if)->ts.interface;
4194
4195 if ((*proc_if)->generic)
4196 {
4197 gfc_error ("Interface '%s' at %C may not be generic",
4198 (*proc_if)->name);
4199 return MATCH_ERROR;
4200 }
4201 if ((*proc_if)->attr.proc == PROC_ST_FUNCTION)
4202 {
4203 gfc_error ("Interface '%s' at %C may not be a statement function",
4204 (*proc_if)->name);
4205 return MATCH_ERROR;
4206 }
4207 /* Handle intrinsic procedures. */
4208 if (!((*proc_if)->attr.external || (*proc_if)->attr.use_assoc
4209 || (*proc_if)->attr.if_source == IFSRC_IFBODY)
4210 && (gfc_is_intrinsic ((*proc_if), 0, gfc_current_locus)
4211 || gfc_is_intrinsic ((*proc_if), 1, gfc_current_locus)))
4212 (*proc_if)->attr.intrinsic = 1;
4213 if ((*proc_if)->attr.intrinsic
4214 && !gfc_intrinsic_actual_ok ((*proc_if)->name, 0))
4215 {
4216 gfc_error ("Intrinsic procedure '%s' not allowed "
4217 "in PROCEDURE statement at %C", (*proc_if)->name);
4218 return MATCH_ERROR;
4219 }
4220 }
4221
4222 got_ts:
4223 if (gfc_match (" )") != MATCH_YES)
4224 {
4225 gfc_current_locus = entry_loc;
4226 return MATCH_NO;
4227 }
4228
4229 return MATCH_YES;
4230 }
4231
4232
4233 /* Match a PROCEDURE declaration (R1211). */
4234
4235 static match
4236 match_procedure_decl (void)
4237 {
4238 match m;
4239 gfc_symbol *sym, *proc_if = NULL;
4240 int num;
4241 gfc_expr *initializer = NULL;
4242
4243 /* Parse interface (with brackets). */
4244 m = match_procedure_interface (&proc_if);
4245 if (m != MATCH_YES)
4246 return m;
4247
4248 /* Parse attributes (with colons). */
4249 m = match_attr_spec();
4250 if (m == MATCH_ERROR)
4251 return MATCH_ERROR;
4252
4253 /* Get procedure symbols. */
4254 for(num=1;;num++)
4255 {
4256 m = gfc_match_symbol (&sym, 0);
4257 if (m == MATCH_NO)
4258 goto syntax;
4259 else if (m == MATCH_ERROR)
4260 return m;
4261
4262 /* Add current_attr to the symbol attributes. */
4263 if (gfc_copy_attr (&sym->attr, &current_attr, NULL) == FAILURE)
4264 return MATCH_ERROR;
4265
4266 if (sym->attr.is_bind_c)
4267 {
4268 /* Check for C1218. */
4269 if (!proc_if || !proc_if->attr.is_bind_c)
4270 {
4271 gfc_error ("BIND(C) attribute at %C requires "
4272 "an interface with BIND(C)");
4273 return MATCH_ERROR;
4274 }
4275 /* Check for C1217. */
4276 if (has_name_equals && sym->attr.pointer)
4277 {
4278 gfc_error ("BIND(C) procedure with NAME may not have "
4279 "POINTER attribute at %C");
4280 return MATCH_ERROR;
4281 }
4282 if (has_name_equals && sym->attr.dummy)
4283 {
4284 gfc_error ("Dummy procedure at %C may not have "
4285 "BIND(C) attribute with NAME");
4286 return MATCH_ERROR;
4287 }
4288 /* Set binding label for BIND(C). */
4289 if (set_binding_label (sym->binding_label, sym->name, num) != SUCCESS)
4290 return MATCH_ERROR;
4291 }
4292
4293 if (gfc_add_external (&sym->attr, NULL) == FAILURE)
4294 return MATCH_ERROR;
4295
4296 if (add_hidden_procptr_result (sym) == SUCCESS)
4297 sym = sym->result;
4298
4299 if (gfc_add_proc (&sym->attr, sym->name, NULL) == FAILURE)
4300 return MATCH_ERROR;
4301
4302 /* Set interface. */
4303 if (proc_if != NULL)
4304 {
4305 if (sym->ts.type != BT_UNKNOWN)
4306 {
4307 gfc_error ("Procedure '%s' at %L already has basic type of %s",
4308 sym->name, &gfc_current_locus,
4309 gfc_basic_typename (sym->ts.type));
4310 return MATCH_ERROR;
4311 }
4312 sym->ts.interface = proc_if;
4313 sym->attr.untyped = 1;
4314 sym->attr.if_source = IFSRC_IFBODY;
4315 }
4316 else if (current_ts.type != BT_UNKNOWN)
4317 {
4318 if (gfc_add_type (sym, &current_ts, &gfc_current_locus) == FAILURE)
4319 return MATCH_ERROR;
4320 sym->ts.interface = gfc_new_symbol ("", gfc_current_ns);
4321 sym->ts.interface->ts = current_ts;
4322 sym->ts.interface->attr.function = 1;
4323 sym->attr.function = sym->ts.interface->attr.function;
4324 sym->attr.if_source = IFSRC_UNKNOWN;
4325 }
4326
4327 if (gfc_match (" =>") == MATCH_YES)
4328 {
4329 if (!current_attr.pointer)
4330 {
4331 gfc_error ("Initialization at %C isn't for a pointer variable");
4332 m = MATCH_ERROR;
4333 goto cleanup;
4334 }
4335
4336 m = gfc_match_null (&initializer);
4337 if (m == MATCH_NO)
4338 {
4339 gfc_error ("Pointer initialization requires a NULL() at %C");
4340 m = MATCH_ERROR;
4341 }
4342
4343 if (gfc_pure (NULL))
4344 {
4345 gfc_error ("Initialization of pointer at %C is not allowed in "
4346 "a PURE procedure");
4347 m = MATCH_ERROR;
4348 }
4349
4350 if (m != MATCH_YES)
4351 goto cleanup;
4352
4353 if (add_init_expr_to_sym (sym->name, &initializer, &gfc_current_locus)
4354 != SUCCESS)
4355 goto cleanup;
4356
4357 }
4358
4359 gfc_set_sym_referenced (sym);
4360
4361 if (gfc_match_eos () == MATCH_YES)
4362 return MATCH_YES;
4363 if (gfc_match_char (',') != MATCH_YES)
4364 goto syntax;
4365 }
4366
4367 syntax:
4368 gfc_error ("Syntax error in PROCEDURE statement at %C");
4369 return MATCH_ERROR;
4370
4371 cleanup:
4372 /* Free stuff up and return. */
4373 gfc_free_expr (initializer);
4374 return m;
4375 }
4376
4377
4378 static match
4379 match_binding_attributes (gfc_typebound_proc* ba, bool generic, bool ppc);
4380
4381
4382 /* Match a procedure pointer component declaration (R445). */
4383
4384 static match
4385 match_ppc_decl (void)
4386 {
4387 match m;
4388 gfc_symbol *proc_if = NULL;
4389 gfc_typespec ts;
4390 int num;
4391 gfc_component *c;
4392 gfc_expr *initializer = NULL;
4393 gfc_typebound_proc* tb;
4394 char name[GFC_MAX_SYMBOL_LEN + 1];
4395
4396 /* Parse interface (with brackets). */
4397 m = match_procedure_interface (&proc_if);
4398 if (m != MATCH_YES)
4399 goto syntax;
4400
4401 /* Parse attributes. */
4402 tb = XCNEW (gfc_typebound_proc);
4403 tb->where = gfc_current_locus;
4404 m = match_binding_attributes (tb, false, true);
4405 if (m == MATCH_ERROR)
4406 return m;
4407
4408 /* TODO: Implement PASS. */
4409 if (!tb->nopass)
4410 {
4411 gfc_error ("Procedure Pointer Component with PASS at %C "
4412 "not yet implemented");
4413 return MATCH_ERROR;
4414 }
4415
4416 gfc_clear_attr (&current_attr);
4417 current_attr.procedure = 1;
4418 current_attr.proc_pointer = 1;
4419 current_attr.access = tb->access;
4420 current_attr.flavor = FL_PROCEDURE;
4421
4422 /* Match the colons (required). */
4423 if (gfc_match (" ::") != MATCH_YES)
4424 {
4425 gfc_error ("Expected '::' after binding-attributes at %C");
4426 return MATCH_ERROR;
4427 }
4428
4429 /* Check for C450. */
4430 if (!tb->nopass && proc_if == NULL)
4431 {
4432 gfc_error("NOPASS or explicit interface required at %C");
4433 return MATCH_ERROR;
4434 }
4435
4436 /* Match PPC names. */
4437 ts = current_ts;
4438 for(num=1;;num++)
4439 {
4440 m = gfc_match_name (name);
4441 if (m == MATCH_NO)
4442 goto syntax;
4443 else if (m == MATCH_ERROR)
4444 return m;
4445
4446 if (gfc_add_component (gfc_current_block (), name, &c) == FAILURE)
4447 return MATCH_ERROR;
4448
4449 /* Add current_attr to the symbol attributes. */
4450 if (gfc_copy_attr (&c->attr, &current_attr, NULL) == FAILURE)
4451 return MATCH_ERROR;
4452
4453 if (gfc_add_external (&c->attr, NULL) == FAILURE)
4454 return MATCH_ERROR;
4455
4456 if (gfc_add_proc (&c->attr, name, NULL) == FAILURE)
4457 return MATCH_ERROR;
4458
4459 /* Set interface. */
4460 if (proc_if != NULL)
4461 {
4462 c->ts.interface = proc_if;
4463 c->attr.untyped = 1;
4464 c->attr.if_source = IFSRC_IFBODY;
4465 }
4466 else if (ts.type != BT_UNKNOWN)
4467 {
4468 c->ts = ts;
4469 c->ts.interface = gfc_new_symbol ("", gfc_current_ns);
4470 c->ts.interface->ts = ts;
4471 c->ts.interface->attr.function = 1;
4472 c->attr.function = c->ts.interface->attr.function;
4473 c->attr.if_source = IFSRC_UNKNOWN;
4474 }
4475
4476 if (gfc_match (" =>") == MATCH_YES)
4477 {
4478 m = gfc_match_null (&initializer);
4479 if (m == MATCH_NO)
4480 {
4481 gfc_error ("Pointer initialization requires a NULL() at %C");
4482 m = MATCH_ERROR;
4483 }
4484 if (gfc_pure (NULL))
4485 {
4486 gfc_error ("Initialization of pointer at %C is not allowed in "
4487 "a PURE procedure");
4488 m = MATCH_ERROR;
4489 }
4490 if (m != MATCH_YES)
4491 {
4492 gfc_free_expr (initializer);
4493 return m;
4494 }
4495 c->initializer = initializer;
4496 }
4497
4498 if (gfc_match_eos () == MATCH_YES)
4499 return MATCH_YES;
4500 if (gfc_match_char (',') != MATCH_YES)
4501 goto syntax;
4502 }
4503
4504 syntax:
4505 gfc_error ("Syntax error in procedure pointer component at %C");
4506 return MATCH_ERROR;
4507 }
4508
4509
4510 /* Match a PROCEDURE declaration inside an interface (R1206). */
4511
4512 static match
4513 match_procedure_in_interface (void)
4514 {
4515 match m;
4516 gfc_symbol *sym;
4517 char name[GFC_MAX_SYMBOL_LEN + 1];
4518
4519 if (current_interface.type == INTERFACE_NAMELESS
4520 || current_interface.type == INTERFACE_ABSTRACT)
4521 {
4522 gfc_error ("PROCEDURE at %C must be in a generic interface");
4523 return MATCH_ERROR;
4524 }
4525
4526 for(;;)
4527 {
4528 m = gfc_match_name (name);
4529 if (m == MATCH_NO)
4530 goto syntax;
4531 else if (m == MATCH_ERROR)
4532 return m;
4533 if (gfc_get_symbol (name, gfc_current_ns->parent, &sym))
4534 return MATCH_ERROR;
4535
4536 if (gfc_add_interface (sym) == FAILURE)
4537 return MATCH_ERROR;
4538
4539 if (gfc_match_eos () == MATCH_YES)
4540 break;
4541 if (gfc_match_char (',') != MATCH_YES)
4542 goto syntax;
4543 }
4544
4545 return MATCH_YES;
4546
4547 syntax:
4548 gfc_error ("Syntax error in PROCEDURE statement at %C");
4549 return MATCH_ERROR;
4550 }
4551
4552
4553 /* General matcher for PROCEDURE declarations. */
4554
4555 static match match_procedure_in_type (void);
4556
4557 match
4558 gfc_match_procedure (void)
4559 {
4560 match m;
4561
4562 switch (gfc_current_state ())
4563 {
4564 case COMP_NONE:
4565 case COMP_PROGRAM:
4566 case COMP_MODULE:
4567 case COMP_SUBROUTINE:
4568 case COMP_FUNCTION:
4569 m = match_procedure_decl ();
4570 break;
4571 case COMP_INTERFACE:
4572 m = match_procedure_in_interface ();
4573 break;
4574 case COMP_DERIVED:
4575 m = match_ppc_decl ();
4576 break;
4577 case COMP_DERIVED_CONTAINS:
4578 m = match_procedure_in_type ();
4579 break;
4580 default:
4581 return MATCH_NO;
4582 }
4583
4584 if (m != MATCH_YES)
4585 return m;
4586
4587 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: PROCEDURE statement at %C")
4588 == FAILURE)
4589 return MATCH_ERROR;
4590
4591 return m;
4592 }
4593
4594
4595 /* Warn if a matched procedure has the same name as an intrinsic; this is
4596 simply a wrapper around gfc_warn_intrinsic_shadow that interprets the current
4597 parser-state-stack to find out whether we're in a module. */
4598
4599 static void
4600 warn_intrinsic_shadow (const gfc_symbol* sym, bool func)
4601 {
4602 bool in_module;
4603
4604 in_module = (gfc_state_stack->previous
4605 && gfc_state_stack->previous->state == COMP_MODULE);
4606
4607 gfc_warn_intrinsic_shadow (sym, in_module, func);
4608 }
4609
4610
4611 /* Match a function declaration. */
4612
4613 match
4614 gfc_match_function_decl (void)
4615 {
4616 char name[GFC_MAX_SYMBOL_LEN + 1];
4617 gfc_symbol *sym, *result;
4618 locus old_loc;
4619 match m;
4620 match suffix_match;
4621 match found_match; /* Status returned by match func. */
4622
4623 if (gfc_current_state () != COMP_NONE
4624 && gfc_current_state () != COMP_INTERFACE
4625 && gfc_current_state () != COMP_CONTAINS)
4626 return MATCH_NO;
4627
4628 gfc_clear_ts (&current_ts);
4629
4630 old_loc = gfc_current_locus;
4631
4632 m = gfc_match_prefix (&current_ts);
4633 if (m != MATCH_YES)
4634 {
4635 gfc_current_locus = old_loc;
4636 return m;
4637 }
4638
4639 if (gfc_match ("function% %n", name) != MATCH_YES)
4640 {
4641 gfc_current_locus = old_loc;
4642 return MATCH_NO;
4643 }
4644 if (get_proc_name (name, &sym, false))
4645 return MATCH_ERROR;
4646
4647 if (add_hidden_procptr_result (sym) == SUCCESS)
4648 sym = sym->result;
4649
4650 gfc_new_block = sym;
4651
4652 m = gfc_match_formal_arglist (sym, 0, 0);
4653 if (m == MATCH_NO)
4654 {
4655 gfc_error ("Expected formal argument list in function "
4656 "definition at %C");
4657 m = MATCH_ERROR;
4658 goto cleanup;
4659 }
4660 else if (m == MATCH_ERROR)
4661 goto cleanup;
4662
4663 result = NULL;
4664
4665 /* According to the draft, the bind(c) and result clause can
4666 come in either order after the formal_arg_list (i.e., either
4667 can be first, both can exist together or by themselves or neither
4668 one). Therefore, the match_result can't match the end of the
4669 string, and check for the bind(c) or result clause in either order. */
4670 found_match = gfc_match_eos ();
4671
4672 /* Make sure that it isn't already declared as BIND(C). If it is, it
4673 must have been marked BIND(C) with a BIND(C) attribute and that is
4674 not allowed for procedures. */
4675 if (sym->attr.is_bind_c == 1)
4676 {
4677 sym->attr.is_bind_c = 0;
4678 if (sym->old_symbol != NULL)
4679 gfc_error_now ("BIND(C) attribute at %L can only be used for "
4680 "variables or common blocks",
4681 &(sym->old_symbol->declared_at));
4682 else
4683 gfc_error_now ("BIND(C) attribute at %L can only be used for "
4684 "variables or common blocks", &gfc_current_locus);
4685 }
4686
4687 if (found_match != MATCH_YES)
4688 {
4689 /* If we haven't found the end-of-statement, look for a suffix. */
4690 suffix_match = gfc_match_suffix (sym, &result);
4691 if (suffix_match == MATCH_YES)
4692 /* Need to get the eos now. */
4693 found_match = gfc_match_eos ();
4694 else
4695 found_match = suffix_match;
4696 }
4697
4698 if(found_match != MATCH_YES)
4699 m = MATCH_ERROR;
4700 else
4701 {
4702 /* Make changes to the symbol. */
4703 m = MATCH_ERROR;
4704
4705 if (gfc_add_function (&sym->attr, sym->name, NULL) == FAILURE)
4706 goto cleanup;
4707
4708 if (gfc_missing_attr (&sym->attr, NULL) == FAILURE
4709 || copy_prefix (&sym->attr, &sym->declared_at) == FAILURE)
4710 goto cleanup;
4711
4712 /* Delay matching the function characteristics until after the
4713 specification block by signalling kind=-1. */
4714 sym->declared_at = old_loc;
4715 if (current_ts.type != BT_UNKNOWN)
4716 current_ts.kind = -1;
4717 else
4718 current_ts.kind = 0;
4719
4720 if (result == NULL)
4721 {
4722 if (current_ts.type != BT_UNKNOWN
4723 && gfc_add_type (sym, &current_ts, &gfc_current_locus) == FAILURE)
4724 goto cleanup;
4725 sym->result = sym;
4726 }
4727 else
4728 {
4729 if (current_ts.type != BT_UNKNOWN
4730 && gfc_add_type (result, &current_ts, &gfc_current_locus)
4731 == FAILURE)
4732 goto cleanup;
4733 sym->result = result;
4734 }
4735
4736 /* Warn if this procedure has the same name as an intrinsic. */
4737 warn_intrinsic_shadow (sym, true);
4738
4739 return MATCH_YES;
4740 }
4741
4742 cleanup:
4743 gfc_current_locus = old_loc;
4744 return m;
4745 }
4746
4747
4748 /* This is mostly a copy of parse.c(add_global_procedure) but modified to
4749 pass the name of the entry, rather than the gfc_current_block name, and
4750 to return false upon finding an existing global entry. */
4751
4752 static bool
4753 add_global_entry (const char *name, int sub)
4754 {
4755 gfc_gsymbol *s;
4756 enum gfc_symbol_type type;
4757
4758 s = gfc_get_gsymbol(name);
4759 type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;
4760
4761 if (s->defined
4762 || (s->type != GSYM_UNKNOWN
4763 && s->type != type))
4764 gfc_global_used(s, NULL);
4765 else
4766 {
4767 s->type = type;
4768 s->where = gfc_current_locus;
4769 s->defined = 1;
4770 s->ns = gfc_current_ns;
4771 return true;
4772 }
4773 return false;
4774 }
4775
4776
4777 /* Match an ENTRY statement. */
4778
4779 match
4780 gfc_match_entry (void)
4781 {
4782 gfc_symbol *proc;
4783 gfc_symbol *result;
4784 gfc_symbol *entry;
4785 char name[GFC_MAX_SYMBOL_LEN + 1];
4786 gfc_compile_state state;
4787 match m;
4788 gfc_entry_list *el;
4789 locus old_loc;
4790 bool module_procedure;
4791 char peek_char;
4792 match is_bind_c;
4793
4794 m = gfc_match_name (name);
4795 if (m != MATCH_YES)
4796 return m;
4797
4798 state = gfc_current_state ();
4799 if (state != COMP_SUBROUTINE && state != COMP_FUNCTION)
4800 {
4801 switch (state)
4802 {
4803 case COMP_PROGRAM:
4804 gfc_error ("ENTRY statement at %C cannot appear within a PROGRAM");
4805 break;
4806 case COMP_MODULE:
4807 gfc_error ("ENTRY statement at %C cannot appear within a MODULE");
4808 break;
4809 case COMP_BLOCK_DATA:
4810 gfc_error ("ENTRY statement at %C cannot appear within "
4811 "a BLOCK DATA");
4812 break;
4813 case COMP_INTERFACE:
4814 gfc_error ("ENTRY statement at %C cannot appear within "
4815 "an INTERFACE");
4816 break;
4817 case COMP_DERIVED:
4818 gfc_error ("ENTRY statement at %C cannot appear within "
4819 "a DERIVED TYPE block");
4820 break;
4821 case COMP_IF:
4822 gfc_error ("ENTRY statement at %C cannot appear within "
4823 "an IF-THEN block");
4824 break;
4825 case COMP_DO:
4826 gfc_error ("ENTRY statement at %C cannot appear within "
4827 "a DO block");
4828 break;
4829 case COMP_SELECT:
4830 gfc_error ("ENTRY statement at %C cannot appear within "
4831 "a SELECT block");
4832 break;
4833 case COMP_FORALL:
4834 gfc_error ("ENTRY statement at %C cannot appear within "
4835 "a FORALL block");
4836 break;
4837 case COMP_WHERE:
4838 gfc_error ("ENTRY statement at %C cannot appear within "
4839 "a WHERE block");
4840 break;
4841 case COMP_CONTAINS:
4842 gfc_error ("ENTRY statement at %C cannot appear within "
4843 "a contained subprogram");
4844 break;
4845 default:
4846 gfc_internal_error ("gfc_match_entry(): Bad state");
4847 }
4848 return MATCH_ERROR;
4849 }
4850
4851 module_procedure = gfc_current_ns->parent != NULL
4852 && gfc_current_ns->parent->proc_name
4853 && gfc_current_ns->parent->proc_name->attr.flavor
4854 == FL_MODULE;
4855
4856 if (gfc_current_ns->parent != NULL
4857 && gfc_current_ns->parent->proc_name
4858 && !module_procedure)
4859 {
4860 gfc_error("ENTRY statement at %C cannot appear in a "
4861 "contained procedure");
4862 return MATCH_ERROR;
4863 }
4864
4865 /* Module function entries need special care in get_proc_name
4866 because previous references within the function will have
4867 created symbols attached to the current namespace. */
4868 if (get_proc_name (name, &entry,
4869 gfc_current_ns->parent != NULL
4870 && module_procedure))
4871 return MATCH_ERROR;
4872
4873 proc = gfc_current_block ();
4874
4875 /* Make sure that it isn't already declared as BIND(C). If it is, it
4876 must have been marked BIND(C) with a BIND(C) attribute and that is
4877 not allowed for procedures. */
4878 if (entry->attr.is_bind_c == 1)
4879 {
4880 entry->attr.is_bind_c = 0;
4881 if (entry->old_symbol != NULL)
4882 gfc_error_now ("BIND(C) attribute at %L can only be used for "
4883 "variables or common blocks",
4884 &(entry->old_symbol->declared_at));
4885 else
4886 gfc_error_now ("BIND(C) attribute at %L can only be used for "
4887 "variables or common blocks", &gfc_current_locus);
4888 }
4889
4890 /* Check what next non-whitespace character is so we can tell if there
4891 is the required parens if we have a BIND(C). */
4892 gfc_gobble_whitespace ();
4893 peek_char = gfc_peek_ascii_char ();
4894
4895 if (state == COMP_SUBROUTINE)
4896 {
4897 /* An entry in a subroutine. */
4898 if (!gfc_current_ns->parent && !add_global_entry (name, 1))
4899 return MATCH_ERROR;
4900
4901 m = gfc_match_formal_arglist (entry, 0, 1);
4902 if (m != MATCH_YES)
4903 return MATCH_ERROR;
4904
4905 /* Call gfc_match_bind_c with allow_binding_name = true as ENTRY can
4906 never be an internal procedure. */
4907 is_bind_c = gfc_match_bind_c (entry, true);
4908 if (is_bind_c == MATCH_ERROR)
4909 return MATCH_ERROR;
4910 if (is_bind_c == MATCH_YES)
4911 {
4912 if (peek_char != '(')
4913 {
4914 gfc_error ("Missing required parentheses before BIND(C) at %C");
4915 return MATCH_ERROR;
4916 }
4917 if (gfc_add_is_bind_c (&(entry->attr), entry->name, &(entry->declared_at), 1)
4918 == FAILURE)
4919 return MATCH_ERROR;
4920 }
4921
4922 if (gfc_add_entry (&entry->attr, entry->name, NULL) == FAILURE
4923 || gfc_add_subroutine (&entry->attr, entry->name, NULL) == FAILURE)
4924 return MATCH_ERROR;
4925 }
4926 else
4927 {
4928 /* An entry in a function.
4929 We need to take special care because writing
4930 ENTRY f()
4931 as
4932 ENTRY f
4933 is allowed, whereas
4934 ENTRY f() RESULT (r)
4935 can't be written as
4936 ENTRY f RESULT (r). */
4937 if (!gfc_current_ns->parent && !add_global_entry (name, 0))
4938 return MATCH_ERROR;
4939
4940 old_loc = gfc_current_locus;
4941 if (gfc_match_eos () == MATCH_YES)
4942 {
4943 gfc_current_locus = old_loc;
4944 /* Match the empty argument list, and add the interface to
4945 the symbol. */
4946 m = gfc_match_formal_arglist (entry, 0, 1);
4947 }
4948 else
4949 m = gfc_match_formal_arglist (entry, 0, 0);
4950
4951 if (m != MATCH_YES)
4952 return MATCH_ERROR;
4953
4954 result = NULL;
4955
4956 if (gfc_match_eos () == MATCH_YES)
4957 {
4958 if (gfc_add_entry (&entry->attr, entry->name, NULL) == FAILURE
4959 || gfc_add_function (&entry->attr, entry->name, NULL) == FAILURE)
4960 return MATCH_ERROR;
4961
4962 entry->result = entry;
4963 }
4964 else
4965 {
4966 m = gfc_match_suffix (entry, &result);
4967 if (m == MATCH_NO)
4968 gfc_syntax_error (ST_ENTRY);
4969 if (m != MATCH_YES)
4970 return MATCH_ERROR;
4971
4972 if (result)
4973 {
4974 if (gfc_add_result (&result->attr, result->name, NULL) == FAILURE
4975 || gfc_add_entry (&entry->attr, result->name, NULL) == FAILURE
4976 || gfc_add_function (&entry->attr, result->name, NULL)
4977 == FAILURE)
4978 return MATCH_ERROR;
4979 entry->result = result;
4980 }
4981 else
4982 {
4983 if (gfc_add_entry (&entry->attr, entry->name, NULL) == FAILURE
4984 || gfc_add_function (&entry->attr, entry->name, NULL) == FAILURE)
4985 return MATCH_ERROR;
4986 entry->result = entry;
4987 }
4988 }
4989 }
4990
4991 if (gfc_match_eos () != MATCH_YES)
4992 {
4993 gfc_syntax_error (ST_ENTRY);
4994 return MATCH_ERROR;
4995 }
4996
4997 entry->attr.recursive = proc->attr.recursive;
4998 entry->attr.elemental = proc->attr.elemental;
4999 entry->attr.pure = proc->attr.pure;
5000
5001 el = gfc_get_entry_list ();
5002 el->sym = entry;
5003 el->next = gfc_current_ns->entries;
5004 gfc_current_ns->entries = el;
5005 if (el->next)
5006 el->id = el->next->id + 1;
5007 else
5008 el->id = 1;
5009
5010 new_st.op = EXEC_ENTRY;
5011 new_st.ext.entry = el;
5012
5013 return MATCH_YES;
5014 }
5015
5016
5017 /* Match a subroutine statement, including optional prefixes. */
5018
5019 match
5020 gfc_match_subroutine (void)
5021 {
5022 char name[GFC_MAX_SYMBOL_LEN + 1];
5023 gfc_symbol *sym;
5024 match m;
5025 match is_bind_c;
5026 char peek_char;
5027 bool allow_binding_name;
5028
5029 if (gfc_current_state () != COMP_NONE
5030 && gfc_current_state () != COMP_INTERFACE
5031 && gfc_current_state () != COMP_CONTAINS)
5032 return MATCH_NO;
5033
5034 m = gfc_match_prefix (NULL);
5035 if (m != MATCH_YES)
5036 return m;
5037
5038 m = gfc_match ("subroutine% %n", name);
5039 if (m != MATCH_YES)
5040 return m;
5041
5042 if (get_proc_name (name, &sym, false))
5043 return MATCH_ERROR;
5044
5045 if (add_hidden_procptr_result (sym) == SUCCESS)
5046 sym = sym->result;
5047
5048 gfc_new_block = sym;
5049
5050 /* Check what next non-whitespace character is so we can tell if there
5051 is the required parens if we have a BIND(C). */
5052 gfc_gobble_whitespace ();
5053 peek_char = gfc_peek_ascii_char ();
5054
5055 if (gfc_add_subroutine (&sym->attr, sym->name, NULL) == FAILURE)
5056 return MATCH_ERROR;
5057
5058 if (gfc_match_formal_arglist (sym, 0, 1) != MATCH_YES)
5059 return MATCH_ERROR;
5060
5061 /* Make sure that it isn't already declared as BIND(C). If it is, it
5062 must have been marked BIND(C) with a BIND(C) attribute and that is
5063 not allowed for procedures. */
5064 if (sym->attr.is_bind_c == 1)
5065 {
5066 sym->attr.is_bind_c = 0;
5067 if (sym->old_symbol != NULL)
5068 gfc_error_now ("BIND(C) attribute at %L can only be used for "
5069 "variables or common blocks",
5070 &(sym->old_symbol->declared_at));
5071 else
5072 gfc_error_now ("BIND(C) attribute at %L can only be used for "
5073 "variables or common blocks", &gfc_current_locus);
5074 }
5075
5076 /* C binding names are not allowed for internal procedures. */
5077 if (gfc_current_state () == COMP_CONTAINS
5078 && sym->ns->proc_name->attr.flavor != FL_MODULE)
5079 allow_binding_name = false;
5080 else
5081 allow_binding_name = true;
5082
5083 /* Here, we are just checking if it has the bind(c) attribute, and if
5084 so, then we need to make sure it's all correct. If it doesn't,
5085 we still need to continue matching the rest of the subroutine line. */
5086 is_bind_c = gfc_match_bind_c (sym, allow_binding_name);
5087 if (is_bind_c == MATCH_ERROR)
5088 {
5089 /* There was an attempt at the bind(c), but it was wrong. An
5090 error message should have been printed w/in the gfc_match_bind_c
5091 so here we'll just return the MATCH_ERROR. */
5092 return MATCH_ERROR;
5093 }
5094
5095 if (is_bind_c == MATCH_YES)
5096 {
5097 /* The following is allowed in the Fortran 2008 draft. */
5098 if (gfc_current_state () == COMP_CONTAINS
5099 && sym->ns->proc_name->attr.flavor != FL_MODULE
5100 && gfc_notify_std (GFC_STD_F2008, "Fortran 2008: BIND(C) attribute "
5101 "at %L may not be specified for an internal "
5102 "procedure", &gfc_current_locus)
5103 == FAILURE)
5104 return MATCH_ERROR;
5105
5106 if (peek_char != '(')
5107 {
5108 gfc_error ("Missing required parentheses before BIND(C) at %C");
5109 return MATCH_ERROR;
5110 }
5111 if (gfc_add_is_bind_c (&(sym->attr), sym->name, &(sym->declared_at), 1)
5112 == FAILURE)
5113 return MATCH_ERROR;
5114 }
5115
5116 if (gfc_match_eos () != MATCH_YES)
5117 {
5118 gfc_syntax_error (ST_SUBROUTINE);
5119 return MATCH_ERROR;
5120 }
5121
5122 if (copy_prefix (&sym->attr, &sym->declared_at) == FAILURE)
5123 return MATCH_ERROR;
5124
5125 /* Warn if it has the same name as an intrinsic. */
5126 warn_intrinsic_shadow (sym, false);
5127
5128 return MATCH_YES;
5129 }
5130
5131
5132 /* Match a BIND(C) specifier, with the optional 'name=' specifier if
5133 given, and set the binding label in either the given symbol (if not
5134 NULL), or in the current_ts. The symbol may be NULL because we may
5135 encounter the BIND(C) before the declaration itself. Return
5136 MATCH_NO if what we're looking at isn't a BIND(C) specifier,
5137 MATCH_ERROR if it is a BIND(C) clause but an error was encountered,
5138 or MATCH_YES if the specifier was correct and the binding label and
5139 bind(c) fields were set correctly for the given symbol or the
5140 current_ts. If allow_binding_name is false, no binding name may be
5141 given. */
5142
5143 match
5144 gfc_match_bind_c (gfc_symbol *sym, bool allow_binding_name)
5145 {
5146 /* binding label, if exists */
5147 char binding_label[GFC_MAX_SYMBOL_LEN + 1];
5148 match double_quote;
5149 match single_quote;
5150
5151 /* Initialize the flag that specifies whether we encountered a NAME=
5152 specifier or not. */
5153 has_name_equals = 0;
5154
5155 /* Init the first char to nil so we can catch if we don't have
5156 the label (name attr) or the symbol name yet. */
5157 binding_label[0] = '\0';
5158
5159 /* This much we have to be able to match, in this order, if
5160 there is a bind(c) label. */
5161 if (gfc_match (" bind ( c ") != MATCH_YES)
5162 return MATCH_NO;
5163
5164 /* Now see if there is a binding label, or if we've reached the
5165 end of the bind(c) attribute without one. */
5166 if (gfc_match_char (',') == MATCH_YES)
5167 {
5168 if (gfc_match (" name = ") != MATCH_YES)
5169 {
5170 gfc_error ("Syntax error in NAME= specifier for binding label "
5171 "at %C");
5172 /* should give an error message here */
5173 return MATCH_ERROR;
5174 }
5175
5176 has_name_equals = 1;
5177
5178 /* Get the opening quote. */
5179 double_quote = MATCH_YES;
5180 single_quote = MATCH_YES;
5181 double_quote = gfc_match_char ('"');
5182 if (double_quote != MATCH_YES)
5183 single_quote = gfc_match_char ('\'');
5184 if (double_quote != MATCH_YES && single_quote != MATCH_YES)
5185 {
5186 gfc_error ("Syntax error in NAME= specifier for binding label "
5187 "at %C");
5188 return MATCH_ERROR;
5189 }
5190
5191 /* Grab the binding label, using functions that will not lower
5192 case the names automatically. */
5193 if (gfc_match_name_C (binding_label) != MATCH_YES)
5194 return MATCH_ERROR;
5195
5196 /* Get the closing quotation. */
5197 if (double_quote == MATCH_YES)
5198 {
5199 if (gfc_match_char ('"') != MATCH_YES)
5200 {
5201 gfc_error ("Missing closing quote '\"' for binding label at %C");
5202 /* User started string with '"' so looked to match it. */
5203 return MATCH_ERROR;
5204 }
5205 }
5206 else
5207 {
5208 if (gfc_match_char ('\'') != MATCH_YES)
5209 {
5210 gfc_error ("Missing closing quote '\'' for binding label at %C");
5211 /* User started string with "'" char. */
5212 return MATCH_ERROR;
5213 }
5214 }
5215 }
5216
5217 /* Get the required right paren. */
5218 if (gfc_match_char (')') != MATCH_YES)
5219 {
5220 gfc_error ("Missing closing paren for binding label at %C");
5221 return MATCH_ERROR;
5222 }
5223
5224 if (has_name_equals && !allow_binding_name)
5225 {
5226 gfc_error ("No binding name is allowed in BIND(C) at %C");
5227 return MATCH_ERROR;
5228 }
5229
5230 if (has_name_equals && sym != NULL && sym->attr.dummy)
5231 {
5232 gfc_error ("For dummy procedure %s, no binding name is "
5233 "allowed in BIND(C) at %C", sym->name);
5234 return MATCH_ERROR;
5235 }
5236
5237
5238 /* Save the binding label to the symbol. If sym is null, we're
5239 probably matching the typespec attributes of a declaration and
5240 haven't gotten the name yet, and therefore, no symbol yet. */
5241 if (binding_label[0] != '\0')
5242 {
5243 if (sym != NULL)
5244 {
5245 strcpy (sym->binding_label, binding_label);
5246 }
5247 else
5248 strcpy (curr_binding_label, binding_label);
5249 }
5250 else if (allow_binding_name)
5251 {
5252 /* No binding label, but if symbol isn't null, we
5253 can set the label for it here.
5254 If name="" or allow_binding_name is false, no C binding name is
5255 created. */
5256 if (sym != NULL && sym->name != NULL && has_name_equals == 0)
5257 strncpy (sym->binding_label, sym->name, strlen (sym->name) + 1);
5258 }
5259
5260 if (has_name_equals && gfc_current_state () == COMP_INTERFACE
5261 && current_interface.type == INTERFACE_ABSTRACT)
5262 {
5263 gfc_error ("NAME not allowed on BIND(C) for ABSTRACT INTERFACE at %C");
5264 return MATCH_ERROR;
5265 }
5266
5267 return MATCH_YES;
5268 }
5269
5270
5271 /* Return nonzero if we're currently compiling a contained procedure. */
5272
5273 static int
5274 contained_procedure (void)
5275 {
5276 gfc_state_data *s = gfc_state_stack;
5277
5278 if ((s->state == COMP_SUBROUTINE || s->state == COMP_FUNCTION)
5279 && s->previous != NULL && s->previous->state == COMP_CONTAINS)
5280 return 1;
5281
5282 return 0;
5283 }
5284
5285 /* Set the kind of each enumerator. The kind is selected such that it is
5286 interoperable with the corresponding C enumeration type, making
5287 sure that -fshort-enums is honored. */
5288
5289 static void
5290 set_enum_kind(void)
5291 {
5292 enumerator_history *current_history = NULL;
5293 int kind;
5294 int i;
5295
5296 if (max_enum == NULL || enum_history == NULL)
5297 return;
5298
5299 if (!flag_short_enums)
5300 return;
5301
5302 i = 0;
5303 do
5304 {
5305 kind = gfc_integer_kinds[i++].kind;
5306 }
5307 while (kind < gfc_c_int_kind
5308 && gfc_check_integer_range (max_enum->initializer->value.integer,
5309 kind) != ARITH_OK);
5310
5311 current_history = enum_history;
5312 while (current_history != NULL)
5313 {
5314 current_history->sym->ts.kind = kind;
5315 current_history = current_history->next;
5316 }
5317 }
5318
5319
5320 /* Match any of the various end-block statements. Returns the type of
5321 END to the caller. The END INTERFACE, END IF, END DO and END
5322 SELECT statements cannot be replaced by a single END statement. */
5323
5324 match
5325 gfc_match_end (gfc_statement *st)
5326 {
5327 char name[GFC_MAX_SYMBOL_LEN + 1];
5328 gfc_compile_state state;
5329 locus old_loc;
5330 const char *block_name;
5331 const char *target;
5332 int eos_ok;
5333 match m;
5334
5335 old_loc = gfc_current_locus;
5336 if (gfc_match ("end") != MATCH_YES)
5337 return MATCH_NO;
5338
5339 state = gfc_current_state ();
5340 block_name = gfc_current_block () == NULL
5341 ? NULL : gfc_current_block ()->name;
5342
5343 if (state == COMP_CONTAINS || state == COMP_DERIVED_CONTAINS)
5344 {
5345 state = gfc_state_stack->previous->state;
5346 block_name = gfc_state_stack->previous->sym == NULL
5347 ? NULL : gfc_state_stack->previous->sym->name;
5348 }
5349
5350 switch (state)
5351 {
5352 case COMP_NONE:
5353 case COMP_PROGRAM:
5354 *st = ST_END_PROGRAM;
5355 target = " program";
5356 eos_ok = 1;
5357 break;
5358
5359 case COMP_SUBROUTINE:
5360 *st = ST_END_SUBROUTINE;
5361 target = " subroutine";
5362 eos_ok = !contained_procedure ();
5363 break;
5364
5365 case COMP_FUNCTION:
5366 *st = ST_END_FUNCTION;
5367 target = " function";
5368 eos_ok = !contained_procedure ();
5369 break;
5370
5371 case COMP_BLOCK_DATA:
5372 *st = ST_END_BLOCK_DATA;
5373 target = " block data";
5374 eos_ok = 1;
5375 break;
5376
5377 case COMP_MODULE:
5378 *st = ST_END_MODULE;
5379 target = " module";
5380 eos_ok = 1;
5381 break;
5382
5383 case COMP_INTERFACE:
5384 *st = ST_END_INTERFACE;
5385 target = " interface";
5386 eos_ok = 0;
5387 break;
5388
5389 case COMP_DERIVED:
5390 case COMP_DERIVED_CONTAINS:
5391 *st = ST_END_TYPE;
5392 target = " type";
5393 eos_ok = 0;
5394 break;
5395
5396 case COMP_IF:
5397 *st = ST_ENDIF;
5398 target = " if";
5399 eos_ok = 0;
5400 break;
5401
5402 case COMP_DO:
5403 *st = ST_ENDDO;
5404 target = " do";
5405 eos_ok = 0;
5406 break;
5407
5408 case COMP_SELECT:
5409 *st = ST_END_SELECT;
5410 target = " select";
5411 eos_ok = 0;
5412 break;
5413
5414 case COMP_FORALL:
5415 *st = ST_END_FORALL;
5416 target = " forall";
5417 eos_ok = 0;
5418 break;
5419
5420 case COMP_WHERE:
5421 *st = ST_END_WHERE;
5422 target = " where";
5423 eos_ok = 0;
5424 break;
5425
5426 case COMP_ENUM:
5427 *st = ST_END_ENUM;
5428 target = " enum";
5429 eos_ok = 0;
5430 last_initializer = NULL;
5431 set_enum_kind ();
5432 gfc_free_enum_history ();
5433 break;
5434
5435 default:
5436 gfc_error ("Unexpected END statement at %C");
5437 goto cleanup;
5438 }
5439
5440 if (gfc_match_eos () == MATCH_YES)
5441 {
5442 if (!eos_ok)
5443 {
5444 /* We would have required END [something]. */
5445 gfc_error ("%s statement expected at %L",
5446 gfc_ascii_statement (*st), &old_loc);
5447 goto cleanup;
5448 }
5449
5450 return MATCH_YES;
5451 }
5452
5453 /* Verify that we've got the sort of end-block that we're expecting. */
5454 if (gfc_match (target) != MATCH_YES)
5455 {
5456 gfc_error ("Expecting %s statement at %C", gfc_ascii_statement (*st));
5457 goto cleanup;
5458 }
5459
5460 /* If we're at the end, make sure a block name wasn't required. */
5461 if (gfc_match_eos () == MATCH_YES)
5462 {
5463
5464 if (*st != ST_ENDDO && *st != ST_ENDIF && *st != ST_END_SELECT
5465 && *st != ST_END_FORALL && *st != ST_END_WHERE)
5466 return MATCH_YES;
5467
5468 if (gfc_current_block () == NULL)
5469 return MATCH_YES;
5470
5471 gfc_error ("Expected block name of '%s' in %s statement at %C",
5472 block_name, gfc_ascii_statement (*st));
5473
5474 return MATCH_ERROR;
5475 }
5476
5477 /* END INTERFACE has a special handler for its several possible endings. */
5478 if (*st == ST_END_INTERFACE)
5479 return gfc_match_end_interface ();
5480
5481 /* We haven't hit the end of statement, so what is left must be an
5482 end-name. */
5483 m = gfc_match_space ();
5484 if (m == MATCH_YES)
5485 m = gfc_match_name (name);
5486
5487 if (m == MATCH_NO)
5488 gfc_error ("Expected terminating name at %C");
5489 if (m != MATCH_YES)
5490 goto cleanup;
5491
5492 if (block_name == NULL)
5493 goto syntax;
5494
5495 if (strcmp (name, block_name) != 0 && strcmp (block_name, "ppr@") != 0)
5496 {
5497 gfc_error ("Expected label '%s' for %s statement at %C", block_name,
5498 gfc_ascii_statement (*st));
5499 goto cleanup;
5500 }
5501 /* Procedure pointer as function result. */
5502 else if (strcmp (block_name, "ppr@") == 0
5503 && strcmp (name, gfc_current_block ()->ns->proc_name->name) != 0)
5504 {
5505 gfc_error ("Expected label '%s' for %s statement at %C",
5506 gfc_current_block ()->ns->proc_name->name,
5507 gfc_ascii_statement (*st));
5508 goto cleanup;
5509 }
5510
5511 if (gfc_match_eos () == MATCH_YES)
5512 return MATCH_YES;
5513
5514 syntax:
5515 gfc_syntax_error (*st);
5516
5517 cleanup:
5518 gfc_current_locus = old_loc;
5519 return MATCH_ERROR;
5520 }
5521
5522
5523
5524 /***************** Attribute declaration statements ****************/
5525
5526 /* Set the attribute of a single variable. */
5527
5528 static match
5529 attr_decl1 (void)
5530 {
5531 char name[GFC_MAX_SYMBOL_LEN + 1];
5532 gfc_array_spec *as;
5533 gfc_symbol *sym;
5534 locus var_locus;
5535 match m;
5536
5537 as = NULL;
5538
5539 m = gfc_match_name (name);
5540 if (m != MATCH_YES)
5541 goto cleanup;
5542
5543 if (find_special (name, &sym))
5544 return MATCH_ERROR;
5545
5546 var_locus = gfc_current_locus;
5547
5548 /* Deal with possible array specification for certain attributes. */
5549 if (current_attr.dimension
5550 || current_attr.allocatable
5551 || current_attr.pointer
5552 || current_attr.target)
5553 {
5554 m = gfc_match_array_spec (&as);
5555 if (m == MATCH_ERROR)
5556 goto cleanup;
5557
5558 if (current_attr.dimension && m == MATCH_NO)
5559 {
5560 gfc_error ("Missing array specification at %L in DIMENSION "
5561 "statement", &var_locus);
5562 m = MATCH_ERROR;
5563 goto cleanup;
5564 }
5565
5566 if (current_attr.dimension && sym->value)
5567 {
5568 gfc_error ("Dimensions specified for %s at %L after its "
5569 "initialisation", sym->name, &var_locus);
5570 m = MATCH_ERROR;
5571 goto cleanup;
5572 }
5573
5574 if ((current_attr.allocatable || current_attr.pointer)
5575 && (m == MATCH_YES) && (as->type != AS_DEFERRED))
5576 {
5577 gfc_error ("Array specification must be deferred at %L", &var_locus);
5578 m = MATCH_ERROR;
5579 goto cleanup;
5580 }
5581 }
5582
5583 /* Update symbol table. DIMENSION attribute is set
5584 in gfc_set_array_spec(). */
5585 if (current_attr.dimension == 0
5586 && gfc_copy_attr (&sym->attr, &current_attr, &var_locus) == FAILURE)
5587 {
5588 m = MATCH_ERROR;
5589 goto cleanup;
5590 }
5591
5592 if (gfc_set_array_spec (sym, as, &var_locus) == FAILURE)
5593 {
5594 m = MATCH_ERROR;
5595 goto cleanup;
5596 }
5597
5598 if (sym->attr.cray_pointee && sym->as != NULL)
5599 {
5600 /* Fix the array spec. */
5601 m = gfc_mod_pointee_as (sym->as);
5602 if (m == MATCH_ERROR)
5603 goto cleanup;
5604 }
5605
5606 if (gfc_add_attribute (&sym->attr, &var_locus) == FAILURE)
5607 {
5608 m = MATCH_ERROR;
5609 goto cleanup;
5610 }
5611
5612 if ((current_attr.external || current_attr.intrinsic)
5613 && sym->attr.flavor != FL_PROCEDURE
5614 && gfc_add_flavor (&sym->attr, FL_PROCEDURE, sym->name, NULL) == FAILURE)
5615 {
5616 m = MATCH_ERROR;
5617 goto cleanup;
5618 }
5619
5620 add_hidden_procptr_result (sym);
5621
5622 return MATCH_YES;
5623
5624 cleanup:
5625 gfc_free_array_spec (as);
5626 return m;
5627 }
5628
5629
5630 /* Generic attribute declaration subroutine. Used for attributes that
5631 just have a list of names. */
5632
5633 static match
5634 attr_decl (void)
5635 {
5636 match m;
5637
5638 /* Gobble the optional double colon, by simply ignoring the result
5639 of gfc_match(). */
5640 gfc_match (" ::");
5641
5642 for (;;)
5643 {
5644 m = attr_decl1 ();
5645 if (m != MATCH_YES)
5646 break;
5647
5648 if (gfc_match_eos () == MATCH_YES)
5649 {
5650 m = MATCH_YES;
5651 break;
5652 }
5653
5654 if (gfc_match_char (',') != MATCH_YES)
5655 {
5656 gfc_error ("Unexpected character in variable list at %C");
5657 m = MATCH_ERROR;
5658 break;
5659 }
5660 }
5661
5662 return m;
5663 }
5664
5665
5666 /* This routine matches Cray Pointer declarations of the form:
5667 pointer ( <pointer>, <pointee> )
5668 or
5669 pointer ( <pointer1>, <pointee1> ), ( <pointer2>, <pointee2> ), ...
5670 The pointer, if already declared, should be an integer. Otherwise, we
5671 set it as BT_INTEGER with kind gfc_index_integer_kind. The pointee may
5672 be either a scalar, or an array declaration. No space is allocated for
5673 the pointee. For the statement
5674 pointer (ipt, ar(10))
5675 any subsequent uses of ar will be translated (in C-notation) as
5676 ar(i) => ((<type> *) ipt)(i)
5677 After gimplification, pointee variable will disappear in the code. */
5678
5679 static match
5680 cray_pointer_decl (void)
5681 {
5682 match m;
5683 gfc_array_spec *as;
5684 gfc_symbol *cptr; /* Pointer symbol. */
5685 gfc_symbol *cpte; /* Pointee symbol. */
5686 locus var_locus;
5687 bool done = false;
5688
5689 while (!done)
5690 {
5691 if (gfc_match_char ('(') != MATCH_YES)
5692 {
5693 gfc_error ("Expected '(' at %C");
5694 return MATCH_ERROR;
5695 }
5696
5697 /* Match pointer. */
5698 var_locus = gfc_current_locus;
5699 gfc_clear_attr (&current_attr);
5700 gfc_add_cray_pointer (&current_attr, &var_locus);
5701 current_ts.type = BT_INTEGER;
5702 current_ts.kind = gfc_index_integer_kind;
5703
5704 m = gfc_match_symbol (&cptr, 0);
5705 if (m != MATCH_YES)
5706 {
5707 gfc_error ("Expected variable name at %C");
5708 return m;
5709 }
5710
5711 if (gfc_add_cray_pointer (&cptr->attr, &var_locus) == FAILURE)
5712 return MATCH_ERROR;
5713
5714 gfc_set_sym_referenced (cptr);
5715
5716 if (cptr->ts.type == BT_UNKNOWN) /* Override the type, if necessary. */
5717 {
5718 cptr->ts.type = BT_INTEGER;
5719 cptr->ts.kind = gfc_index_integer_kind;
5720 }
5721 else if (cptr->ts.type != BT_INTEGER)
5722 {
5723 gfc_error ("Cray pointer at %C must be an integer");
5724 return MATCH_ERROR;
5725 }
5726 else if (cptr->ts.kind < gfc_index_integer_kind)
5727 gfc_warning ("Cray pointer at %C has %d bytes of precision;"
5728 " memory addresses require %d bytes",
5729 cptr->ts.kind, gfc_index_integer_kind);
5730
5731 if (gfc_match_char (',') != MATCH_YES)
5732 {
5733 gfc_error ("Expected \",\" at %C");
5734 return MATCH_ERROR;
5735 }
5736
5737 /* Match Pointee. */
5738 var_locus = gfc_current_locus;
5739 gfc_clear_attr (&current_attr);
5740 gfc_add_cray_pointee (&current_attr, &var_locus);
5741 current_ts.type = BT_UNKNOWN;
5742 current_ts.kind = 0;
5743
5744 m = gfc_match_symbol (&cpte, 0);
5745 if (m != MATCH_YES)
5746 {
5747 gfc_error ("Expected variable name at %C");
5748 return m;
5749 }
5750
5751 /* Check for an optional array spec. */
5752 m = gfc_match_array_spec (&as);
5753 if (m == MATCH_ERROR)
5754 {
5755 gfc_free_array_spec (as);
5756 return m;
5757 }
5758 else if (m == MATCH_NO)
5759 {
5760 gfc_free_array_spec (as);
5761 as = NULL;
5762 }
5763
5764 if (gfc_add_cray_pointee (&cpte->attr, &var_locus) == FAILURE)
5765 return MATCH_ERROR;
5766
5767 gfc_set_sym_referenced (cpte);
5768
5769 if (cpte->as == NULL)
5770 {
5771 if (gfc_set_array_spec (cpte, as, &var_locus) == FAILURE)
5772 gfc_internal_error ("Couldn't set Cray pointee array spec.");
5773 }
5774 else if (as != NULL)
5775 {
5776 gfc_error ("Duplicate array spec for Cray pointee at %C");
5777 gfc_free_array_spec (as);
5778 return MATCH_ERROR;
5779 }
5780
5781 as = NULL;
5782
5783 if (cpte->as != NULL)
5784 {
5785 /* Fix array spec. */
5786 m = gfc_mod_pointee_as (cpte->as);
5787 if (m == MATCH_ERROR)
5788 return m;
5789 }
5790
5791 /* Point the Pointee at the Pointer. */
5792 cpte->cp_pointer = cptr;
5793
5794 if (gfc_match_char (')') != MATCH_YES)
5795 {
5796 gfc_error ("Expected \")\" at %C");
5797 return MATCH_ERROR;
5798 }
5799 m = gfc_match_char (',');
5800 if (m != MATCH_YES)
5801 done = true; /* Stop searching for more declarations. */
5802
5803 }
5804
5805 if (m == MATCH_ERROR /* Failed when trying to find ',' above. */
5806 || gfc_match_eos () != MATCH_YES)
5807 {
5808 gfc_error ("Expected \",\" or end of statement at %C");
5809 return MATCH_ERROR;
5810 }
5811 return MATCH_YES;
5812 }
5813
5814
5815 match
5816 gfc_match_external (void)
5817 {
5818
5819 gfc_clear_attr (&current_attr);
5820 current_attr.external = 1;
5821
5822 return attr_decl ();
5823 }
5824
5825
5826 match
5827 gfc_match_intent (void)
5828 {
5829 sym_intent intent;
5830
5831 intent = match_intent_spec ();
5832 if (intent == INTENT_UNKNOWN)
5833 return MATCH_ERROR;
5834
5835 gfc_clear_attr (&current_attr);
5836 current_attr.intent = intent;
5837
5838 return attr_decl ();
5839 }
5840
5841
5842 match
5843 gfc_match_intrinsic (void)
5844 {
5845
5846 gfc_clear_attr (&current_attr);
5847 current_attr.intrinsic = 1;
5848
5849 return attr_decl ();
5850 }
5851
5852
5853 match
5854 gfc_match_optional (void)
5855 {
5856
5857 gfc_clear_attr (&current_attr);
5858 current_attr.optional = 1;
5859
5860 return attr_decl ();
5861 }
5862
5863
5864 match
5865 gfc_match_pointer (void)
5866 {
5867 gfc_gobble_whitespace ();
5868 if (gfc_peek_ascii_char () == '(')
5869 {
5870 if (!gfc_option.flag_cray_pointer)
5871 {
5872 gfc_error ("Cray pointer declaration at %C requires -fcray-pointer "
5873 "flag");
5874 return MATCH_ERROR;
5875 }
5876 return cray_pointer_decl ();
5877 }
5878 else
5879 {
5880 gfc_clear_attr (&current_attr);
5881 current_attr.pointer = 1;
5882
5883 return attr_decl ();
5884 }
5885 }
5886
5887
5888 match
5889 gfc_match_allocatable (void)
5890 {
5891 gfc_clear_attr (&current_attr);
5892 current_attr.allocatable = 1;
5893
5894 return attr_decl ();
5895 }
5896
5897
5898 match
5899 gfc_match_dimension (void)
5900 {
5901 gfc_clear_attr (&current_attr);
5902 current_attr.dimension = 1;
5903
5904 return attr_decl ();
5905 }
5906
5907
5908 match
5909 gfc_match_target (void)
5910 {
5911 gfc_clear_attr (&current_attr);
5912 current_attr.target = 1;
5913
5914 return attr_decl ();
5915 }
5916
5917
5918 /* Match the list of entities being specified in a PUBLIC or PRIVATE
5919 statement. */
5920
5921 static match
5922 access_attr_decl (gfc_statement st)
5923 {
5924 char name[GFC_MAX_SYMBOL_LEN + 1];
5925 interface_type type;
5926 gfc_user_op *uop;
5927 gfc_symbol *sym;
5928 gfc_intrinsic_op op;
5929 match m;
5930
5931 if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
5932 goto done;
5933
5934 for (;;)
5935 {
5936 m = gfc_match_generic_spec (&type, name, &op);
5937 if (m == MATCH_NO)
5938 goto syntax;
5939 if (m == MATCH_ERROR)
5940 return MATCH_ERROR;
5941
5942 switch (type)
5943 {
5944 case INTERFACE_NAMELESS:
5945 case INTERFACE_ABSTRACT:
5946 goto syntax;
5947
5948 case INTERFACE_GENERIC:
5949 if (gfc_get_symbol (name, NULL, &sym))
5950 goto done;
5951
5952 if (gfc_add_access (&sym->attr, (st == ST_PUBLIC)
5953 ? ACCESS_PUBLIC : ACCESS_PRIVATE,
5954 sym->name, NULL) == FAILURE)
5955 return MATCH_ERROR;
5956
5957 break;
5958
5959 case INTERFACE_INTRINSIC_OP:
5960 if (gfc_current_ns->operator_access[op] == ACCESS_UNKNOWN)
5961 {
5962 gfc_current_ns->operator_access[op] =
5963 (st == ST_PUBLIC) ? ACCESS_PUBLIC : ACCESS_PRIVATE;
5964 }
5965 else
5966 {
5967 gfc_error ("Access specification of the %s operator at %C has "
5968 "already been specified", gfc_op2string (op));
5969 goto done;
5970 }
5971
5972 break;
5973
5974 case INTERFACE_USER_OP:
5975 uop = gfc_get_uop (name);
5976
5977 if (uop->access == ACCESS_UNKNOWN)
5978 {
5979 uop->access = (st == ST_PUBLIC)
5980 ? ACCESS_PUBLIC : ACCESS_PRIVATE;
5981 }
5982 else
5983 {
5984 gfc_error ("Access specification of the .%s. operator at %C "
5985 "has already been specified", sym->name);
5986 goto done;
5987 }
5988
5989 break;
5990 }
5991
5992 if (gfc_match_char (',') == MATCH_NO)
5993 break;
5994 }
5995
5996 if (gfc_match_eos () != MATCH_YES)
5997 goto syntax;
5998 return MATCH_YES;
5999
6000 syntax:
6001 gfc_syntax_error (st);
6002
6003 done:
6004 return MATCH_ERROR;
6005 }
6006
6007
6008 match
6009 gfc_match_protected (void)
6010 {
6011 gfc_symbol *sym;
6012 match m;
6013
6014 if (gfc_current_ns->proc_name->attr.flavor != FL_MODULE)
6015 {
6016 gfc_error ("PROTECTED at %C only allowed in specification "
6017 "part of a module");
6018 return MATCH_ERROR;
6019
6020 }
6021
6022 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: PROTECTED statement at %C")
6023 == FAILURE)
6024 return MATCH_ERROR;
6025
6026 if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
6027 {
6028 return MATCH_ERROR;
6029 }
6030
6031 if (gfc_match_eos () == MATCH_YES)
6032 goto syntax;
6033
6034 for(;;)
6035 {
6036 m = gfc_match_symbol (&sym, 0);
6037 switch (m)
6038 {
6039 case MATCH_YES:
6040 if (gfc_add_protected (&sym->attr, sym->name, &gfc_current_locus)
6041 == FAILURE)
6042 return MATCH_ERROR;
6043 goto next_item;
6044
6045 case MATCH_NO:
6046 break;
6047
6048 case MATCH_ERROR:
6049 return MATCH_ERROR;
6050 }
6051
6052 next_item:
6053 if (gfc_match_eos () == MATCH_YES)
6054 break;
6055 if (gfc_match_char (',') != MATCH_YES)
6056 goto syntax;
6057 }
6058
6059 return MATCH_YES;
6060
6061 syntax:
6062 gfc_error ("Syntax error in PROTECTED statement at %C");
6063 return MATCH_ERROR;
6064 }
6065
6066
6067 /* The PRIVATE statement is a bit weird in that it can be an attribute
6068 declaration, but also works as a standalone statement inside of a
6069 type declaration or a module. */
6070
6071 match
6072 gfc_match_private (gfc_statement *st)
6073 {
6074
6075 if (gfc_match ("private") != MATCH_YES)
6076 return MATCH_NO;
6077
6078 if (gfc_current_state () != COMP_MODULE
6079 && !(gfc_current_state () == COMP_DERIVED
6080 && gfc_state_stack->previous
6081 && gfc_state_stack->previous->state == COMP_MODULE)
6082 && !(gfc_current_state () == COMP_DERIVED_CONTAINS
6083 && gfc_state_stack->previous && gfc_state_stack->previous->previous
6084 && gfc_state_stack->previous->previous->state == COMP_MODULE))
6085 {
6086 gfc_error ("PRIVATE statement at %C is only allowed in the "
6087 "specification part of a module");
6088 return MATCH_ERROR;
6089 }
6090
6091 if (gfc_current_state () == COMP_DERIVED)
6092 {
6093 if (gfc_match_eos () == MATCH_YES)
6094 {
6095 *st = ST_PRIVATE;
6096 return MATCH_YES;
6097 }
6098
6099 gfc_syntax_error (ST_PRIVATE);
6100 return MATCH_ERROR;
6101 }
6102
6103 if (gfc_match_eos () == MATCH_YES)
6104 {
6105 *st = ST_PRIVATE;
6106 return MATCH_YES;
6107 }
6108
6109 *st = ST_ATTR_DECL;
6110 return access_attr_decl (ST_PRIVATE);
6111 }
6112
6113
6114 match
6115 gfc_match_public (gfc_statement *st)
6116 {
6117
6118 if (gfc_match ("public") != MATCH_YES)
6119 return MATCH_NO;
6120
6121 if (gfc_current_state () != COMP_MODULE)
6122 {
6123 gfc_error ("PUBLIC statement at %C is only allowed in the "
6124 "specification part of a module");
6125 return MATCH_ERROR;
6126 }
6127
6128 if (gfc_match_eos () == MATCH_YES)
6129 {
6130 *st = ST_PUBLIC;
6131 return MATCH_YES;
6132 }
6133
6134 *st = ST_ATTR_DECL;
6135 return access_attr_decl (ST_PUBLIC);
6136 }
6137
6138
6139 /* Workhorse for gfc_match_parameter. */
6140
6141 static match
6142 do_parm (void)
6143 {
6144 gfc_symbol *sym;
6145 gfc_expr *init;
6146 match m;
6147
6148 m = gfc_match_symbol (&sym, 0);
6149 if (m == MATCH_NO)
6150 gfc_error ("Expected variable name at %C in PARAMETER statement");
6151
6152 if (m != MATCH_YES)
6153 return m;
6154
6155 if (gfc_match_char ('=') == MATCH_NO)
6156 {
6157 gfc_error ("Expected = sign in PARAMETER statement at %C");
6158 return MATCH_ERROR;
6159 }
6160
6161 m = gfc_match_init_expr (&init);
6162 if (m == MATCH_NO)
6163 gfc_error ("Expected expression at %C in PARAMETER statement");
6164 if (m != MATCH_YES)
6165 return m;
6166
6167 if (sym->ts.type == BT_UNKNOWN
6168 && gfc_set_default_type (sym, 1, NULL) == FAILURE)
6169 {
6170 m = MATCH_ERROR;
6171 goto cleanup;
6172 }
6173
6174 if (gfc_check_assign_symbol (sym, init) == FAILURE
6175 || gfc_add_flavor (&sym->attr, FL_PARAMETER, sym->name, NULL) == FAILURE)
6176 {
6177 m = MATCH_ERROR;
6178 goto cleanup;
6179 }
6180
6181 if (sym->value)
6182 {
6183 gfc_error ("Initializing already initialized variable at %C");
6184 m = MATCH_ERROR;
6185 goto cleanup;
6186 }
6187
6188 if (sym->ts.type == BT_CHARACTER
6189 && sym->ts.cl != NULL
6190 && sym->ts.cl->length != NULL
6191 && sym->ts.cl->length->expr_type == EXPR_CONSTANT
6192 && init->expr_type == EXPR_CONSTANT
6193 && init->ts.type == BT_CHARACTER)
6194 gfc_set_constant_character_len (
6195 mpz_get_si (sym->ts.cl->length->value.integer), init, -1);
6196 else if (sym->ts.type == BT_CHARACTER && sym->ts.cl != NULL
6197 && sym->ts.cl->length == NULL)
6198 {
6199 int clen;
6200 if (init->expr_type == EXPR_CONSTANT)
6201 {
6202 clen = init->value.character.length;
6203 sym->ts.cl->length = gfc_int_expr (clen);
6204 }
6205 else if (init->expr_type == EXPR_ARRAY)
6206 {
6207 gfc_expr *p = init->value.constructor->expr;
6208 clen = p->value.character.length;
6209 sym->ts.cl->length = gfc_int_expr (clen);
6210 }
6211 else if (init->ts.cl && init->ts.cl->length)
6212 sym->ts.cl->length = gfc_copy_expr (sym->value->ts.cl->length);
6213 }
6214
6215 sym->value = init;
6216 return MATCH_YES;
6217
6218 cleanup:
6219 gfc_free_expr (init);
6220 return m;
6221 }
6222
6223
6224 /* Match a parameter statement, with the weird syntax that these have. */
6225
6226 match
6227 gfc_match_parameter (void)
6228 {
6229 match m;
6230
6231 if (gfc_match_char ('(') == MATCH_NO)
6232 return MATCH_NO;
6233
6234 for (;;)
6235 {
6236 m = do_parm ();
6237 if (m != MATCH_YES)
6238 break;
6239
6240 if (gfc_match (" )%t") == MATCH_YES)
6241 break;
6242
6243 if (gfc_match_char (',') != MATCH_YES)
6244 {
6245 gfc_error ("Unexpected characters in PARAMETER statement at %C");
6246 m = MATCH_ERROR;
6247 break;
6248 }
6249 }
6250
6251 return m;
6252 }
6253
6254
6255 /* Save statements have a special syntax. */
6256
6257 match
6258 gfc_match_save (void)
6259 {
6260 char n[GFC_MAX_SYMBOL_LEN+1];
6261 gfc_common_head *c;
6262 gfc_symbol *sym;
6263 match m;
6264
6265 if (gfc_match_eos () == MATCH_YES)
6266 {
6267 if (gfc_current_ns->seen_save)
6268 {
6269 if (gfc_notify_std (GFC_STD_LEGACY, "Blanket SAVE statement at %C "
6270 "follows previous SAVE statement")
6271 == FAILURE)
6272 return MATCH_ERROR;
6273 }
6274
6275 gfc_current_ns->save_all = gfc_current_ns->seen_save = 1;
6276 return MATCH_YES;
6277 }
6278
6279 if (gfc_current_ns->save_all)
6280 {
6281 if (gfc_notify_std (GFC_STD_LEGACY, "SAVE statement at %C follows "
6282 "blanket SAVE statement")
6283 == FAILURE)
6284 return MATCH_ERROR;
6285 }
6286
6287 gfc_match (" ::");
6288
6289 for (;;)
6290 {
6291 m = gfc_match_symbol (&sym, 0);
6292 switch (m)
6293 {
6294 case MATCH_YES:
6295 if (gfc_add_save (&sym->attr, sym->name, &gfc_current_locus)
6296 == FAILURE)
6297 return MATCH_ERROR;
6298 goto next_item;
6299
6300 case MATCH_NO:
6301 break;
6302
6303 case MATCH_ERROR:
6304 return MATCH_ERROR;
6305 }
6306
6307 m = gfc_match (" / %n /", &n);
6308 if (m == MATCH_ERROR)
6309 return MATCH_ERROR;
6310 if (m == MATCH_NO)
6311 goto syntax;
6312
6313 c = gfc_get_common (n, 0);
6314 c->saved = 1;
6315
6316 gfc_current_ns->seen_save = 1;
6317
6318 next_item:
6319 if (gfc_match_eos () == MATCH_YES)
6320 break;
6321 if (gfc_match_char (',') != MATCH_YES)
6322 goto syntax;
6323 }
6324
6325 return MATCH_YES;
6326
6327 syntax:
6328 gfc_error ("Syntax error in SAVE statement at %C");
6329 return MATCH_ERROR;
6330 }
6331
6332
6333 match
6334 gfc_match_value (void)
6335 {
6336 gfc_symbol *sym;
6337 match m;
6338
6339 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: VALUE statement at %C")
6340 == FAILURE)
6341 return MATCH_ERROR;
6342
6343 if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
6344 {
6345 return MATCH_ERROR;
6346 }
6347
6348 if (gfc_match_eos () == MATCH_YES)
6349 goto syntax;
6350
6351 for(;;)
6352 {
6353 m = gfc_match_symbol (&sym, 0);
6354 switch (m)
6355 {
6356 case MATCH_YES:
6357 if (gfc_add_value (&sym->attr, sym->name, &gfc_current_locus)
6358 == FAILURE)
6359 return MATCH_ERROR;
6360 goto next_item;
6361
6362 case MATCH_NO:
6363 break;
6364
6365 case MATCH_ERROR:
6366 return MATCH_ERROR;
6367 }
6368
6369 next_item:
6370 if (gfc_match_eos () == MATCH_YES)
6371 break;
6372 if (gfc_match_char (',') != MATCH_YES)
6373 goto syntax;
6374 }
6375
6376 return MATCH_YES;
6377
6378 syntax:
6379 gfc_error ("Syntax error in VALUE statement at %C");
6380 return MATCH_ERROR;
6381 }
6382
6383
6384 match
6385 gfc_match_volatile (void)
6386 {
6387 gfc_symbol *sym;
6388 match m;
6389
6390 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: VOLATILE statement at %C")
6391 == FAILURE)
6392 return MATCH_ERROR;
6393
6394 if (gfc_match (" ::") == MATCH_NO && gfc_match_space () == MATCH_NO)
6395 {
6396 return MATCH_ERROR;
6397 }
6398
6399 if (gfc_match_eos () == MATCH_YES)
6400 goto syntax;
6401
6402 for(;;)
6403 {
6404 /* VOLATILE is special because it can be added to host-associated
6405 symbols locally. */
6406 m = gfc_match_symbol (&sym, 1);
6407 switch (m)
6408 {
6409 case MATCH_YES:
6410 if (gfc_add_volatile (&sym->attr, sym->name, &gfc_current_locus)
6411 == FAILURE)
6412 return MATCH_ERROR;
6413 goto next_item;
6414
6415 case MATCH_NO:
6416 break;
6417
6418 case MATCH_ERROR:
6419 return MATCH_ERROR;
6420 }
6421
6422 next_item:
6423 if (gfc_match_eos () == MATCH_YES)
6424 break;
6425 if (gfc_match_char (',') != MATCH_YES)
6426 goto syntax;
6427 }
6428
6429 return MATCH_YES;
6430
6431 syntax:
6432 gfc_error ("Syntax error in VOLATILE statement at %C");
6433 return MATCH_ERROR;
6434 }
6435
6436
6437 /* Match a module procedure statement. Note that we have to modify
6438 symbols in the parent's namespace because the current one was there
6439 to receive symbols that are in an interface's formal argument list. */
6440
6441 match
6442 gfc_match_modproc (void)
6443 {
6444 char name[GFC_MAX_SYMBOL_LEN + 1];
6445 gfc_symbol *sym;
6446 match m;
6447 gfc_namespace *module_ns;
6448 gfc_interface *old_interface_head, *interface;
6449
6450 if (gfc_state_stack->state != COMP_INTERFACE
6451 || gfc_state_stack->previous == NULL
6452 || current_interface.type == INTERFACE_NAMELESS
6453 || current_interface.type == INTERFACE_ABSTRACT)
6454 {
6455 gfc_error ("MODULE PROCEDURE at %C must be in a generic module "
6456 "interface");
6457 return MATCH_ERROR;
6458 }
6459
6460 module_ns = gfc_current_ns->parent;
6461 for (; module_ns; module_ns = module_ns->parent)
6462 if (module_ns->proc_name->attr.flavor == FL_MODULE)
6463 break;
6464
6465 if (module_ns == NULL)
6466 return MATCH_ERROR;
6467
6468 /* Store the current state of the interface. We will need it if we
6469 end up with a syntax error and need to recover. */
6470 old_interface_head = gfc_current_interface_head ();
6471
6472 for (;;)
6473 {
6474 bool last = false;
6475
6476 m = gfc_match_name (name);
6477 if (m == MATCH_NO)
6478 goto syntax;
6479 if (m != MATCH_YES)
6480 return MATCH_ERROR;
6481
6482 /* Check for syntax error before starting to add symbols to the
6483 current namespace. */
6484 if (gfc_match_eos () == MATCH_YES)
6485 last = true;
6486 if (!last && gfc_match_char (',') != MATCH_YES)
6487 goto syntax;
6488
6489 /* Now we're sure the syntax is valid, we process this item
6490 further. */
6491 if (gfc_get_symbol (name, module_ns, &sym))
6492 return MATCH_ERROR;
6493
6494 if (sym->attr.proc != PROC_MODULE
6495 && gfc_add_procedure (&sym->attr, PROC_MODULE,
6496 sym->name, NULL) == FAILURE)
6497 return MATCH_ERROR;
6498
6499 if (gfc_add_interface (sym) == FAILURE)
6500 return MATCH_ERROR;
6501
6502 sym->attr.mod_proc = 1;
6503
6504 if (last)
6505 break;
6506 }
6507
6508 return MATCH_YES;
6509
6510 syntax:
6511 /* Restore the previous state of the interface. */
6512 interface = gfc_current_interface_head ();
6513 gfc_set_current_interface_head (old_interface_head);
6514
6515 /* Free the new interfaces. */
6516 while (interface != old_interface_head)
6517 {
6518 gfc_interface *i = interface->next;
6519 gfc_free (interface);
6520 interface = i;
6521 }
6522
6523 /* And issue a syntax error. */
6524 gfc_syntax_error (ST_MODULE_PROC);
6525 return MATCH_ERROR;
6526 }
6527
6528
6529 /* Check a derived type that is being extended. */
6530 static gfc_symbol*
6531 check_extended_derived_type (char *name)
6532 {
6533 gfc_symbol *extended;
6534
6535 if (gfc_find_symbol (name, gfc_current_ns, 1, &extended))
6536 {
6537 gfc_error ("Ambiguous symbol in TYPE definition at %C");
6538 return NULL;
6539 }
6540
6541 if (!extended)
6542 {
6543 gfc_error ("No such symbol in TYPE definition at %C");
6544 return NULL;
6545 }
6546
6547 if (extended->attr.flavor != FL_DERIVED)
6548 {
6549 gfc_error ("'%s' in EXTENDS expression at %C is not a "
6550 "derived type", name);
6551 return NULL;
6552 }
6553
6554 if (extended->attr.is_bind_c)
6555 {
6556 gfc_error ("'%s' cannot be extended at %C because it "
6557 "is BIND(C)", extended->name);
6558 return NULL;
6559 }
6560
6561 if (extended->attr.sequence)
6562 {
6563 gfc_error ("'%s' cannot be extended at %C because it "
6564 "is a SEQUENCE type", extended->name);
6565 return NULL;
6566 }
6567
6568 return extended;
6569 }
6570
6571
6572 /* Match the optional attribute specifiers for a type declaration.
6573 Return MATCH_ERROR if an error is encountered in one of the handled
6574 attributes (public, private, bind(c)), MATCH_NO if what's found is
6575 not a handled attribute, and MATCH_YES otherwise. TODO: More error
6576 checking on attribute conflicts needs to be done. */
6577
6578 match
6579 gfc_get_type_attr_spec (symbol_attribute *attr, char *name)
6580 {
6581 /* See if the derived type is marked as private. */
6582 if (gfc_match (" , private") == MATCH_YES)
6583 {
6584 if (gfc_current_state () != COMP_MODULE)
6585 {
6586 gfc_error ("Derived type at %C can only be PRIVATE in the "
6587 "specification part of a module");
6588 return MATCH_ERROR;
6589 }
6590
6591 if (gfc_add_access (attr, ACCESS_PRIVATE, NULL, NULL) == FAILURE)
6592 return MATCH_ERROR;
6593 }
6594 else if (gfc_match (" , public") == MATCH_YES)
6595 {
6596 if (gfc_current_state () != COMP_MODULE)
6597 {
6598 gfc_error ("Derived type at %C can only be PUBLIC in the "
6599 "specification part of a module");
6600 return MATCH_ERROR;
6601 }
6602
6603 if (gfc_add_access (attr, ACCESS_PUBLIC, NULL, NULL) == FAILURE)
6604 return MATCH_ERROR;
6605 }
6606 else if (gfc_match (" , bind ( c )") == MATCH_YES)
6607 {
6608 /* If the type is defined to be bind(c) it then needs to make
6609 sure that all fields are interoperable. This will
6610 need to be a semantic check on the finished derived type.
6611 See 15.2.3 (lines 9-12) of F2003 draft. */
6612 if (gfc_add_is_bind_c (attr, NULL, &gfc_current_locus, 0) != SUCCESS)
6613 return MATCH_ERROR;
6614
6615 /* TODO: attr conflicts need to be checked, probably in symbol.c. */
6616 }
6617 else if (gfc_match (" , abstract") == MATCH_YES)
6618 {
6619 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: ABSTRACT type at %C")
6620 == FAILURE)
6621 return MATCH_ERROR;
6622
6623 if (gfc_add_abstract (attr, &gfc_current_locus) == FAILURE)
6624 return MATCH_ERROR;
6625 }
6626 else if (name && gfc_match(" , extends ( %n )", name) == MATCH_YES)
6627 {
6628 if (gfc_add_extension (attr, &gfc_current_locus) == FAILURE)
6629 return MATCH_ERROR;
6630 }
6631 else
6632 return MATCH_NO;
6633
6634 /* If we get here, something matched. */
6635 return MATCH_YES;
6636 }
6637
6638
6639 /* Match the beginning of a derived type declaration. If a type name
6640 was the result of a function, then it is possible to have a symbol
6641 already to be known as a derived type yet have no components. */
6642
6643 match
6644 gfc_match_derived_decl (void)
6645 {
6646 char name[GFC_MAX_SYMBOL_LEN + 1];
6647 char parent[GFC_MAX_SYMBOL_LEN + 1];
6648 symbol_attribute attr;
6649 gfc_symbol *sym;
6650 gfc_symbol *extended;
6651 match m;
6652 match is_type_attr_spec = MATCH_NO;
6653 bool seen_attr = false;
6654
6655 if (gfc_current_state () == COMP_DERIVED)
6656 return MATCH_NO;
6657
6658 name[0] = '\0';
6659 parent[0] = '\0';
6660 gfc_clear_attr (&attr);
6661 extended = NULL;
6662
6663 do
6664 {
6665 is_type_attr_spec = gfc_get_type_attr_spec (&attr, parent);
6666 if (is_type_attr_spec == MATCH_ERROR)
6667 return MATCH_ERROR;
6668 if (is_type_attr_spec == MATCH_YES)
6669 seen_attr = true;
6670 } while (is_type_attr_spec == MATCH_YES);
6671
6672 /* Deal with derived type extensions. The extension attribute has
6673 been added to 'attr' but now the parent type must be found and
6674 checked. */
6675 if (parent[0])
6676 extended = check_extended_derived_type (parent);
6677
6678 if (parent[0] && !extended)
6679 return MATCH_ERROR;
6680
6681 if (gfc_match (" ::") != MATCH_YES && seen_attr)
6682 {
6683 gfc_error ("Expected :: in TYPE definition at %C");
6684 return MATCH_ERROR;
6685 }
6686
6687 m = gfc_match (" %n%t", name);
6688 if (m != MATCH_YES)
6689 return m;
6690
6691 /* Make sure the name is not the name of an intrinsic type. */
6692 if (gfc_is_intrinsic_typename (name))
6693 {
6694 gfc_error ("Type name '%s' at %C cannot be the same as an intrinsic "
6695 "type", name);
6696 return MATCH_ERROR;
6697 }
6698
6699 if (gfc_get_symbol (name, NULL, &sym))
6700 return MATCH_ERROR;
6701
6702 if (sym->ts.type != BT_UNKNOWN)
6703 {
6704 gfc_error ("Derived type name '%s' at %C already has a basic type "
6705 "of %s", sym->name, gfc_typename (&sym->ts));
6706 return MATCH_ERROR;
6707 }
6708
6709 /* The symbol may already have the derived attribute without the
6710 components. The ways this can happen is via a function
6711 definition, an INTRINSIC statement or a subtype in another
6712 derived type that is a pointer. The first part of the AND clause
6713 is true if the symbol is not the return value of a function. */
6714 if (sym->attr.flavor != FL_DERIVED
6715 && gfc_add_flavor (&sym->attr, FL_DERIVED, sym->name, NULL) == FAILURE)
6716 return MATCH_ERROR;
6717
6718 if (sym->components != NULL || sym->attr.zero_comp)
6719 {
6720 gfc_error ("Derived type definition of '%s' at %C has already been "
6721 "defined", sym->name);
6722 return MATCH_ERROR;
6723 }
6724
6725 if (attr.access != ACCESS_UNKNOWN
6726 && gfc_add_access (&sym->attr, attr.access, sym->name, NULL) == FAILURE)
6727 return MATCH_ERROR;
6728
6729 /* See if the derived type was labeled as bind(c). */
6730 if (attr.is_bind_c != 0)
6731 sym->attr.is_bind_c = attr.is_bind_c;
6732
6733 /* Construct the f2k_derived namespace if it is not yet there. */
6734 if (!sym->f2k_derived)
6735 sym->f2k_derived = gfc_get_namespace (NULL, 0);
6736
6737 if (extended && !sym->components)
6738 {
6739 gfc_component *p;
6740 gfc_symtree *st;
6741
6742 /* Add the extended derived type as the first component. */
6743 gfc_add_component (sym, parent, &p);
6744 sym->attr.extension = attr.extension;
6745 extended->refs++;
6746 gfc_set_sym_referenced (extended);
6747
6748 p->ts.type = BT_DERIVED;
6749 p->ts.derived = extended;
6750 p->initializer = gfc_default_initializer (&p->ts);
6751
6752 /* Provide the links between the extended type and its extension. */
6753 if (!extended->f2k_derived)
6754 extended->f2k_derived = gfc_get_namespace (NULL, 0);
6755 st = gfc_new_symtree (&extended->f2k_derived->sym_root, sym->name);
6756 st->n.sym = sym;
6757 }
6758
6759 /* Take over the ABSTRACT attribute. */
6760 sym->attr.abstract = attr.abstract;
6761
6762 gfc_new_block = sym;
6763
6764 return MATCH_YES;
6765 }
6766
6767
6768 /* Cray Pointees can be declared as:
6769 pointer (ipt, a (n,m,...,*))
6770 By default, this is treated as an AS_ASSUMED_SIZE array. We'll
6771 cheat and set a constant bound of 1 for the last dimension, if this
6772 is the case. Since there is no bounds-checking for Cray Pointees,
6773 this will be okay. */
6774
6775 match
6776 gfc_mod_pointee_as (gfc_array_spec *as)
6777 {
6778 as->cray_pointee = true; /* This will be useful to know later. */
6779 if (as->type == AS_ASSUMED_SIZE)
6780 {
6781 as->type = AS_EXPLICIT;
6782 as->upper[as->rank - 1] = gfc_int_expr (1);
6783 as->cp_was_assumed = true;
6784 }
6785 else if (as->type == AS_ASSUMED_SHAPE)
6786 {
6787 gfc_error ("Cray Pointee at %C cannot be assumed shape array");
6788 return MATCH_ERROR;
6789 }
6790 return MATCH_YES;
6791 }
6792
6793
6794 /* Match the enum definition statement, here we are trying to match
6795 the first line of enum definition statement.
6796 Returns MATCH_YES if match is found. */
6797
6798 match
6799 gfc_match_enum (void)
6800 {
6801 match m;
6802
6803 m = gfc_match_eos ();
6804 if (m != MATCH_YES)
6805 return m;
6806
6807 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: ENUM and ENUMERATOR at %C")
6808 == FAILURE)
6809 return MATCH_ERROR;
6810
6811 return MATCH_YES;
6812 }
6813
6814
6815 /* Returns an initializer whose value is one higher than the value of the
6816 LAST_INITIALIZER argument. If the argument is NULL, the
6817 initializers value will be set to zero. The initializer's kind
6818 will be set to gfc_c_int_kind.
6819
6820 If -fshort-enums is given, the appropriate kind will be selected
6821 later after all enumerators have been parsed. A warning is issued
6822 here if an initializer exceeds gfc_c_int_kind. */
6823
6824 static gfc_expr *
6825 enum_initializer (gfc_expr *last_initializer, locus where)
6826 {
6827 gfc_expr *result;
6828
6829 result = gfc_get_expr ();
6830 result->expr_type = EXPR_CONSTANT;
6831 result->ts.type = BT_INTEGER;
6832 result->ts.kind = gfc_c_int_kind;
6833 result->where = where;
6834
6835 mpz_init (result->value.integer);
6836
6837 if (last_initializer != NULL)
6838 {
6839 mpz_add_ui (result->value.integer, last_initializer->value.integer, 1);
6840 result->where = last_initializer->where;
6841
6842 if (gfc_check_integer_range (result->value.integer,
6843 gfc_c_int_kind) != ARITH_OK)
6844 {
6845 gfc_error ("Enumerator exceeds the C integer type at %C");
6846 return NULL;
6847 }
6848 }
6849 else
6850 {
6851 /* Control comes here, if it's the very first enumerator and no
6852 initializer has been given. It will be initialized to zero. */
6853 mpz_set_si (result->value.integer, 0);
6854 }
6855
6856 return result;
6857 }
6858
6859
6860 /* Match a variable name with an optional initializer. When this
6861 subroutine is called, a variable is expected to be parsed next.
6862 Depending on what is happening at the moment, updates either the
6863 symbol table or the current interface. */
6864
6865 static match
6866 enumerator_decl (void)
6867 {
6868 char name[GFC_MAX_SYMBOL_LEN + 1];
6869 gfc_expr *initializer;
6870 gfc_array_spec *as = NULL;
6871 gfc_symbol *sym;
6872 locus var_locus;
6873 match m;
6874 gfc_try t;
6875 locus old_locus;
6876
6877 initializer = NULL;
6878 old_locus = gfc_current_locus;
6879
6880 /* When we get here, we've just matched a list of attributes and
6881 maybe a type and a double colon. The next thing we expect to see
6882 is the name of the symbol. */
6883 m = gfc_match_name (name);
6884 if (m != MATCH_YES)
6885 goto cleanup;
6886
6887 var_locus = gfc_current_locus;
6888
6889 /* OK, we've successfully matched the declaration. Now put the
6890 symbol in the current namespace. If we fail to create the symbol,
6891 bail out. */
6892 if (build_sym (name, NULL, &as, &var_locus) == FAILURE)
6893 {
6894 m = MATCH_ERROR;
6895 goto cleanup;
6896 }
6897
6898 /* The double colon must be present in order to have initializers.
6899 Otherwise the statement is ambiguous with an assignment statement. */
6900 if (colon_seen)
6901 {
6902 if (gfc_match_char ('=') == MATCH_YES)
6903 {
6904 m = gfc_match_init_expr (&initializer);
6905 if (m == MATCH_NO)
6906 {
6907 gfc_error ("Expected an initialization expression at %C");
6908 m = MATCH_ERROR;
6909 }
6910
6911 if (m != MATCH_YES)
6912 goto cleanup;
6913 }
6914 }
6915
6916 /* If we do not have an initializer, the initialization value of the
6917 previous enumerator (stored in last_initializer) is incremented
6918 by 1 and is used to initialize the current enumerator. */
6919 if (initializer == NULL)
6920 initializer = enum_initializer (last_initializer, old_locus);
6921
6922 if (initializer == NULL || initializer->ts.type != BT_INTEGER)
6923 {
6924 gfc_error("ENUMERATOR %L not initialized with integer expression",
6925 &var_locus);
6926 m = MATCH_ERROR;
6927 gfc_free_enum_history ();
6928 goto cleanup;
6929 }
6930
6931 /* Store this current initializer, for the next enumerator variable
6932 to be parsed. add_init_expr_to_sym() zeros initializer, so we
6933 use last_initializer below. */
6934 last_initializer = initializer;
6935 t = add_init_expr_to_sym (name, &initializer, &var_locus);
6936
6937 /* Maintain enumerator history. */
6938 gfc_find_symbol (name, NULL, 0, &sym);
6939 create_enum_history (sym, last_initializer);
6940
6941 return (t == SUCCESS) ? MATCH_YES : MATCH_ERROR;
6942
6943 cleanup:
6944 /* Free stuff up and return. */
6945 gfc_free_expr (initializer);
6946
6947 return m;
6948 }
6949
6950
6951 /* Match the enumerator definition statement. */
6952
6953 match
6954 gfc_match_enumerator_def (void)
6955 {
6956 match m;
6957 gfc_try t;
6958
6959 gfc_clear_ts (&current_ts);
6960
6961 m = gfc_match (" enumerator");
6962 if (m != MATCH_YES)
6963 return m;
6964
6965 m = gfc_match (" :: ");
6966 if (m == MATCH_ERROR)
6967 return m;
6968
6969 colon_seen = (m == MATCH_YES);
6970
6971 if (gfc_current_state () != COMP_ENUM)
6972 {
6973 gfc_error ("ENUM definition statement expected before %C");
6974 gfc_free_enum_history ();
6975 return MATCH_ERROR;
6976 }
6977
6978 (&current_ts)->type = BT_INTEGER;
6979 (&current_ts)->kind = gfc_c_int_kind;
6980
6981 gfc_clear_attr (&current_attr);
6982 t = gfc_add_flavor (&current_attr, FL_PARAMETER, NULL, NULL);
6983 if (t == FAILURE)
6984 {
6985 m = MATCH_ERROR;
6986 goto cleanup;
6987 }
6988
6989 for (;;)
6990 {
6991 m = enumerator_decl ();
6992 if (m == MATCH_ERROR)
6993 goto cleanup;
6994 if (m == MATCH_NO)
6995 break;
6996
6997 if (gfc_match_eos () == MATCH_YES)
6998 goto cleanup;
6999 if (gfc_match_char (',') != MATCH_YES)
7000 break;
7001 }
7002
7003 if (gfc_current_state () == COMP_ENUM)
7004 {
7005 gfc_free_enum_history ();
7006 gfc_error ("Syntax error in ENUMERATOR definition at %C");
7007 m = MATCH_ERROR;
7008 }
7009
7010 cleanup:
7011 gfc_free_array_spec (current_as);
7012 current_as = NULL;
7013 return m;
7014
7015 }
7016
7017
7018 /* Match binding attributes. */
7019
7020 static match
7021 match_binding_attributes (gfc_typebound_proc* ba, bool generic, bool ppc)
7022 {
7023 bool found_passing = false;
7024 bool seen_ptr = false;
7025 match m;
7026
7027 /* Intialize to defaults. Do so even before the MATCH_NO check so that in
7028 this case the defaults are in there. */
7029 ba->access = ACCESS_UNKNOWN;
7030 ba->pass_arg = NULL;
7031 ba->pass_arg_num = 0;
7032 ba->nopass = 0;
7033 ba->non_overridable = 0;
7034 ba->deferred = 0;
7035
7036 /* If we find a comma, we believe there are binding attributes. */
7037 if (gfc_match_char (',') == MATCH_NO)
7038 {
7039 ba->access = gfc_typebound_default_access;
7040 return MATCH_NO;
7041 }
7042
7043 do
7044 {
7045 /* Access specifier. */
7046
7047 m = gfc_match (" public");
7048 if (m == MATCH_ERROR)
7049 goto error;
7050 if (m == MATCH_YES)
7051 {
7052 if (ba->access != ACCESS_UNKNOWN)
7053 {
7054 gfc_error ("Duplicate access-specifier at %C");
7055 goto error;
7056 }
7057
7058 ba->access = ACCESS_PUBLIC;
7059 continue;
7060 }
7061
7062 m = gfc_match (" private");
7063 if (m == MATCH_ERROR)
7064 goto error;
7065 if (m == MATCH_YES)
7066 {
7067 if (ba->access != ACCESS_UNKNOWN)
7068 {
7069 gfc_error ("Duplicate access-specifier at %C");
7070 goto error;
7071 }
7072
7073 ba->access = ACCESS_PRIVATE;
7074 continue;
7075 }
7076
7077 /* If inside GENERIC, the following is not allowed. */
7078 if (!generic)
7079 {
7080
7081 /* NOPASS flag. */
7082 m = gfc_match (" nopass");
7083 if (m == MATCH_ERROR)
7084 goto error;
7085 if (m == MATCH_YES)
7086 {
7087 if (found_passing)
7088 {
7089 gfc_error ("Binding attributes already specify passing,"
7090 " illegal NOPASS at %C");
7091 goto error;
7092 }
7093
7094 found_passing = true;
7095 ba->nopass = 1;
7096 continue;
7097 }
7098
7099 /* PASS possibly including argument. */
7100 m = gfc_match (" pass");
7101 if (m == MATCH_ERROR)
7102 goto error;
7103 if (m == MATCH_YES)
7104 {
7105 char arg[GFC_MAX_SYMBOL_LEN + 1];
7106
7107 if (found_passing)
7108 {
7109 gfc_error ("Binding attributes already specify passing,"
7110 " illegal PASS at %C");
7111 goto error;
7112 }
7113
7114 m = gfc_match (" ( %n )", arg);
7115 if (m == MATCH_ERROR)
7116 goto error;
7117 if (m == MATCH_YES)
7118 ba->pass_arg = xstrdup (arg);
7119 gcc_assert ((m == MATCH_YES) == (ba->pass_arg != NULL));
7120
7121 found_passing = true;
7122 ba->nopass = 0;
7123 continue;
7124 }
7125
7126 if (ppc)
7127 {
7128 /* POINTER flag. */
7129 m = gfc_match (" pointer");
7130 if (m == MATCH_ERROR)
7131 goto error;
7132 if (m == MATCH_YES)
7133 {
7134 if (seen_ptr)
7135 {
7136 gfc_error ("Duplicate POINTER attribute at %C");
7137 goto error;
7138 }
7139
7140 seen_ptr = true;
7141 /*ba->ppc = 1;*/
7142 continue;
7143 }
7144 }
7145 else
7146 {
7147 /* NON_OVERRIDABLE flag. */
7148 m = gfc_match (" non_overridable");
7149 if (m == MATCH_ERROR)
7150 goto error;
7151 if (m == MATCH_YES)
7152 {
7153 if (ba->non_overridable)
7154 {
7155 gfc_error ("Duplicate NON_OVERRIDABLE at %C");
7156 goto error;
7157 }
7158
7159 ba->non_overridable = 1;
7160 continue;
7161 }
7162
7163 /* DEFERRED flag. */
7164 m = gfc_match (" deferred");
7165 if (m == MATCH_ERROR)
7166 goto error;
7167 if (m == MATCH_YES)
7168 {
7169 if (ba->deferred)
7170 {
7171 gfc_error ("Duplicate DEFERRED at %C");
7172 goto error;
7173 }
7174
7175 ba->deferred = 1;
7176 continue;
7177 }
7178 }
7179
7180 }
7181
7182 /* Nothing matching found. */
7183 if (generic)
7184 gfc_error ("Expected access-specifier at %C");
7185 else
7186 gfc_error ("Expected binding attribute at %C");
7187 goto error;
7188 }
7189 while (gfc_match_char (',') == MATCH_YES);
7190
7191 /* NON_OVERRIDABLE and DEFERRED exclude themselves. */
7192 if (ba->non_overridable && ba->deferred)
7193 {
7194 gfc_error ("NON_OVERRIDABLE and DEFERRED can't both appear at %C");
7195 goto error;
7196 }
7197
7198 if (ba->access == ACCESS_UNKNOWN)
7199 ba->access = gfc_typebound_default_access;
7200
7201 if (ppc && !seen_ptr)
7202 {
7203 gfc_error ("POINTER attribute is required for procedure pointer component"
7204 " at %C");
7205 goto error;
7206 }
7207
7208 return MATCH_YES;
7209
7210 error:
7211 gfc_free (ba->pass_arg);
7212 return MATCH_ERROR;
7213 }
7214
7215
7216 /* Match a PROCEDURE specific binding inside a derived type. */
7217
7218 static match
7219 match_procedure_in_type (void)
7220 {
7221 char name[GFC_MAX_SYMBOL_LEN + 1];
7222 char target_buf[GFC_MAX_SYMBOL_LEN + 1];
7223 char* target = NULL;
7224 gfc_typebound_proc* tb;
7225 bool seen_colons;
7226 bool seen_attrs;
7227 match m;
7228 gfc_symtree* stree;
7229 gfc_namespace* ns;
7230 gfc_symbol* block;
7231
7232 /* Check current state. */
7233 gcc_assert (gfc_state_stack->state == COMP_DERIVED_CONTAINS);
7234 block = gfc_state_stack->previous->sym;
7235 gcc_assert (block);
7236
7237 /* Try to match PROCEDURE(interface). */
7238 if (gfc_match (" (") == MATCH_YES)
7239 {
7240 m = gfc_match_name (target_buf);
7241 if (m == MATCH_ERROR)
7242 return m;
7243 if (m != MATCH_YES)
7244 {
7245 gfc_error ("Interface-name expected after '(' at %C");
7246 return MATCH_ERROR;
7247 }
7248
7249 if (gfc_match (" )") != MATCH_YES)
7250 {
7251 gfc_error ("')' expected at %C");
7252 return MATCH_ERROR;
7253 }
7254
7255 target = target_buf;
7256 }
7257
7258 /* Construct the data structure. */
7259 tb = gfc_get_typebound_proc ();
7260 tb->where = gfc_current_locus;
7261 tb->is_generic = 0;
7262
7263 /* Match binding attributes. */
7264 m = match_binding_attributes (tb, false, false);
7265 if (m == MATCH_ERROR)
7266 return m;
7267 seen_attrs = (m == MATCH_YES);
7268
7269 /* Check that attribute DEFERRED is given iff an interface is specified, which
7270 means target != NULL. */
7271 if (tb->deferred && !target)
7272 {
7273 gfc_error ("Interface must be specified for DEFERRED binding at %C");
7274 return MATCH_ERROR;
7275 }
7276 if (target && !tb->deferred)
7277 {
7278 gfc_error ("PROCEDURE(interface) at %C should be declared DEFERRED");
7279 return MATCH_ERROR;
7280 }
7281
7282 /* Match the colons. */
7283 m = gfc_match (" ::");
7284 if (m == MATCH_ERROR)
7285 return m;
7286 seen_colons = (m == MATCH_YES);
7287 if (seen_attrs && !seen_colons)
7288 {
7289 gfc_error ("Expected '::' after binding-attributes at %C");
7290 return MATCH_ERROR;
7291 }
7292
7293 /* Match the binding name. */
7294 m = gfc_match_name (name);
7295 if (m == MATCH_ERROR)
7296 return m;
7297 if (m == MATCH_NO)
7298 {
7299 gfc_error ("Expected binding name at %C");
7300 return MATCH_ERROR;
7301 }
7302
7303 /* Try to match the '=> target', if it's there. */
7304 m = gfc_match (" =>");
7305 if (m == MATCH_ERROR)
7306 return m;
7307 if (m == MATCH_YES)
7308 {
7309 if (tb->deferred)
7310 {
7311 gfc_error ("'=> target' is invalid for DEFERRED binding at %C");
7312 return MATCH_ERROR;
7313 }
7314
7315 if (!seen_colons)
7316 {
7317 gfc_error ("'::' needed in PROCEDURE binding with explicit target"
7318 " at %C");
7319 return MATCH_ERROR;
7320 }
7321
7322 m = gfc_match_name (target_buf);
7323 if (m == MATCH_ERROR)
7324 return m;
7325 if (m == MATCH_NO)
7326 {
7327 gfc_error ("Expected binding target after '=>' at %C");
7328 return MATCH_ERROR;
7329 }
7330 target = target_buf;
7331 }
7332
7333 /* Now we should have the end. */
7334 m = gfc_match_eos ();
7335 if (m == MATCH_ERROR)
7336 return m;
7337 if (m == MATCH_NO)
7338 {
7339 gfc_error ("Junk after PROCEDURE declaration at %C");
7340 return MATCH_ERROR;
7341 }
7342
7343 /* If no target was found, it has the same name as the binding. */
7344 if (!target)
7345 target = name;
7346
7347 /* Get the namespace to insert the symbols into. */
7348 ns = block->f2k_derived;
7349 gcc_assert (ns);
7350
7351 /* If the binding is DEFERRED, check that the containing type is ABSTRACT. */
7352 if (tb->deferred && !block->attr.abstract)
7353 {
7354 gfc_error ("Type '%s' containing DEFERRED binding at %C is not ABSTRACT",
7355 block->name);
7356 return MATCH_ERROR;
7357 }
7358
7359 /* See if we already have a binding with this name in the symtree which would
7360 be an error. If a GENERIC already targetted this binding, it may be
7361 already there but then typebound is still NULL. */
7362 stree = gfc_find_symtree (ns->tb_sym_root, name);
7363 if (stree && stree->n.tb)
7364 {
7365 gfc_error ("There's already a procedure with binding name '%s' for the"
7366 " derived type '%s' at %C", name, block->name);
7367 return MATCH_ERROR;
7368 }
7369
7370 /* Insert it and set attributes. */
7371
7372 if (!stree)
7373 {
7374 stree = gfc_new_symtree (&ns->tb_sym_root, name);
7375 gcc_assert (stree);
7376 }
7377 stree->n.tb = tb;
7378
7379 if (gfc_get_sym_tree (target, gfc_current_ns, &tb->u.specific))
7380 return MATCH_ERROR;
7381 gfc_set_sym_referenced (tb->u.specific->n.sym);
7382
7383 return MATCH_YES;
7384 }
7385
7386
7387 /* Match a GENERIC procedure binding inside a derived type. */
7388
7389 match
7390 gfc_match_generic (void)
7391 {
7392 char name[GFC_MAX_SYMBOL_LEN + 1];
7393 gfc_symbol* block;
7394 gfc_typebound_proc tbattr; /* Used for match_binding_attributes. */
7395 gfc_typebound_proc* tb;
7396 gfc_symtree* st;
7397 gfc_namespace* ns;
7398 match m;
7399
7400 /* Check current state. */
7401 if (gfc_current_state () == COMP_DERIVED)
7402 {
7403 gfc_error ("GENERIC at %C must be inside a derived-type CONTAINS");
7404 return MATCH_ERROR;
7405 }
7406 if (gfc_current_state () != COMP_DERIVED_CONTAINS)
7407 return MATCH_NO;
7408 block = gfc_state_stack->previous->sym;
7409 ns = block->f2k_derived;
7410 gcc_assert (block && ns);
7411
7412 /* See if we get an access-specifier. */
7413 m = match_binding_attributes (&tbattr, true, false);
7414 if (m == MATCH_ERROR)
7415 goto error;
7416
7417 /* Now the colons, those are required. */
7418 if (gfc_match (" ::") != MATCH_YES)
7419 {
7420 gfc_error ("Expected '::' at %C");
7421 goto error;
7422 }
7423
7424 /* The binding name and =>. */
7425 m = gfc_match (" %n =>", name);
7426 if (m == MATCH_ERROR)
7427 return MATCH_ERROR;
7428 if (m == MATCH_NO)
7429 {
7430 gfc_error ("Expected generic name at %C");
7431 goto error;
7432 }
7433
7434 /* If there's already something with this name, check that it is another
7435 GENERIC and then extend that rather than build a new node. */
7436 st = gfc_find_symtree (ns->tb_sym_root, name);
7437 if (st)
7438 {
7439 gcc_assert (st->n.tb);
7440 tb = st->n.tb;
7441
7442 if (!tb->is_generic)
7443 {
7444 gfc_error ("There's already a non-generic procedure with binding name"
7445 " '%s' for the derived type '%s' at %C",
7446 name, block->name);
7447 goto error;
7448 }
7449
7450 if (tb->access != tbattr.access)
7451 {
7452 gfc_error ("Binding at %C must have the same access as already"
7453 " defined binding '%s'", name);
7454 goto error;
7455 }
7456 }
7457 else
7458 {
7459 st = gfc_new_symtree (&ns->tb_sym_root, name);
7460 gcc_assert (st);
7461
7462 st->n.tb = tb = gfc_get_typebound_proc ();
7463 tb->where = gfc_current_locus;
7464 tb->access = tbattr.access;
7465 tb->is_generic = 1;
7466 tb->u.generic = NULL;
7467 }
7468
7469 /* Now, match all following names as specific targets. */
7470 do
7471 {
7472 gfc_symtree* target_st;
7473 gfc_tbp_generic* target;
7474
7475 m = gfc_match_name (name);
7476 if (m == MATCH_ERROR)
7477 goto error;
7478 if (m == MATCH_NO)
7479 {
7480 gfc_error ("Expected specific binding name at %C");
7481 goto error;
7482 }
7483
7484 target_st = gfc_get_tbp_symtree (&ns->tb_sym_root, name);
7485
7486 /* See if this is a duplicate specification. */
7487 for (target = tb->u.generic; target; target = target->next)
7488 if (target_st == target->specific_st)
7489 {
7490 gfc_error ("'%s' already defined as specific binding for the"
7491 " generic '%s' at %C", name, st->name);
7492 goto error;
7493 }
7494
7495 target = gfc_get_tbp_generic ();
7496 target->specific_st = target_st;
7497 target->specific = NULL;
7498 target->next = tb->u.generic;
7499 tb->u.generic = target;
7500 }
7501 while (gfc_match (" ,") == MATCH_YES);
7502
7503 /* Here should be the end. */
7504 if (gfc_match_eos () != MATCH_YES)
7505 {
7506 gfc_error ("Junk after GENERIC binding at %C");
7507 goto error;
7508 }
7509
7510 return MATCH_YES;
7511
7512 error:
7513 return MATCH_ERROR;
7514 }
7515
7516
7517 /* Match a FINAL declaration inside a derived type. */
7518
7519 match
7520 gfc_match_final_decl (void)
7521 {
7522 char name[GFC_MAX_SYMBOL_LEN + 1];
7523 gfc_symbol* sym;
7524 match m;
7525 gfc_namespace* module_ns;
7526 bool first, last;
7527 gfc_symbol* block;
7528
7529 if (gfc_state_stack->state != COMP_DERIVED_CONTAINS)
7530 {
7531 gfc_error ("FINAL declaration at %C must be inside a derived type "
7532 "CONTAINS section");
7533 return MATCH_ERROR;
7534 }
7535
7536 block = gfc_state_stack->previous->sym;
7537 gcc_assert (block);
7538
7539 if (!gfc_state_stack->previous || !gfc_state_stack->previous->previous
7540 || gfc_state_stack->previous->previous->state != COMP_MODULE)
7541 {
7542 gfc_error ("Derived type declaration with FINAL at %C must be in the"
7543 " specification part of a MODULE");
7544 return MATCH_ERROR;
7545 }
7546
7547 module_ns = gfc_current_ns;
7548 gcc_assert (module_ns);
7549 gcc_assert (module_ns->proc_name->attr.flavor == FL_MODULE);
7550
7551 /* Match optional ::, don't care about MATCH_YES or MATCH_NO. */
7552 if (gfc_match (" ::") == MATCH_ERROR)
7553 return MATCH_ERROR;
7554
7555 /* Match the sequence of procedure names. */
7556 first = true;
7557 last = false;
7558 do
7559 {
7560 gfc_finalizer* f;
7561
7562 if (first && gfc_match_eos () == MATCH_YES)
7563 {
7564 gfc_error ("Empty FINAL at %C");
7565 return MATCH_ERROR;
7566 }
7567
7568 m = gfc_match_name (name);
7569 if (m == MATCH_NO)
7570 {
7571 gfc_error ("Expected module procedure name at %C");
7572 return MATCH_ERROR;
7573 }
7574 else if (m != MATCH_YES)
7575 return MATCH_ERROR;
7576
7577 if (gfc_match_eos () == MATCH_YES)
7578 last = true;
7579 if (!last && gfc_match_char (',') != MATCH_YES)
7580 {
7581 gfc_error ("Expected ',' at %C");
7582 return MATCH_ERROR;
7583 }
7584
7585 if (gfc_get_symbol (name, module_ns, &sym))
7586 {
7587 gfc_error ("Unknown procedure name \"%s\" at %C", name);
7588 return MATCH_ERROR;
7589 }
7590
7591 /* Mark the symbol as module procedure. */
7592 if (sym->attr.proc != PROC_MODULE
7593 && gfc_add_procedure (&sym->attr, PROC_MODULE,
7594 sym->name, NULL) == FAILURE)
7595 return MATCH_ERROR;
7596
7597 /* Check if we already have this symbol in the list, this is an error. */
7598 for (f = block->f2k_derived->finalizers; f; f = f->next)
7599 if (f->proc_sym == sym)
7600 {
7601 gfc_error ("'%s' at %C is already defined as FINAL procedure!",
7602 name);
7603 return MATCH_ERROR;
7604 }
7605
7606 /* Add this symbol to the list of finalizers. */
7607 gcc_assert (block->f2k_derived);
7608 ++sym->refs;
7609 f = XCNEW (gfc_finalizer);
7610 f->proc_sym = sym;
7611 f->proc_tree = NULL;
7612 f->where = gfc_current_locus;
7613 f->next = block->f2k_derived->finalizers;
7614 block->f2k_derived->finalizers = f;
7615
7616 first = false;
7617 }
7618 while (!last);
7619
7620 return MATCH_YES;
7621 }