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