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