2 Copyright (C) 2000-2014 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
30 /* Current statement label. Zero means no statement label. Because new_st
31 can get wiped during statement matching, we have to keep it separate. */
33 gfc_st_label
*gfc_statement_label
;
35 static locus label_locus
;
36 static jmp_buf eof_buf
;
38 gfc_state_data
*gfc_state_stack
;
39 static bool last_was_use_stmt
= false;
41 /* TODO: Re-order functions to kill these forward decls. */
42 static void check_statement_label (gfc_statement
);
43 static void undo_new_statement (void);
44 static void reject_statement (void);
47 /* A sort of half-matching function. We try to match the word on the
48 input with the passed string. If this succeeds, we call the
49 keyword-dependent matching function that will match the rest of the
50 statement. For single keywords, the matching subroutine is
54 match_word (const char *str
, match (*subr
) (void), locus
*old_locus
)
69 gfc_current_locus
= *old_locus
;
77 /* Load symbols from all USE statements encountered in this scoping unit. */
82 gfc_error_buf old_error
;
84 gfc_push_error (&old_error
);
88 gfc_pop_error (&old_error
);
89 gfc_commit_symbols ();
91 gfc_current_ns
->old_cl_list
= gfc_current_ns
->cl_list
;
92 gfc_current_ns
->old_equiv
= gfc_current_ns
->equiv
;
93 last_was_use_stmt
= false;
97 /* Figure out what the next statement is, (mostly) regardless of
98 proper ordering. The do...while(0) is there to prevent if/else
101 #define match(keyword, subr, st) \
103 if (match_word (keyword, subr, &old_locus) == MATCH_YES) \
106 undo_new_statement (); \
110 /* This is a specialist version of decode_statement that is used
111 for the specification statements in a function, whose
112 characteristics are deferred into the specification statements.
113 eg.: INTEGER (king = mykind) foo ()
114 USE mymodule, ONLY mykind.....
115 The KIND parameter needs a return after USE or IMPORT, whereas
116 derived type declarations can occur anywhere, up the executable
117 block. ST_GET_FCN_CHARACTERISTICS is returned when we have run
118 out of the correct kind of specification statements. */
120 decode_specification_statement (void)
126 if (gfc_match_eos () == MATCH_YES
)
129 old_locus
= gfc_current_locus
;
131 if (match_word ("use", gfc_match_use
, &old_locus
) == MATCH_YES
)
133 last_was_use_stmt
= true;
138 undo_new_statement ();
139 if (last_was_use_stmt
)
143 match ("import", gfc_match_import
, ST_IMPORT
);
145 if (gfc_current_block ()->result
->ts
.type
!= BT_DERIVED
)
148 match (NULL
, gfc_match_st_function
, ST_STATEMENT_FUNCTION
);
149 match (NULL
, gfc_match_data_decl
, ST_DATA_DECL
);
150 match (NULL
, gfc_match_enumerator_def
, ST_ENUMERATOR
);
152 /* General statement matching: Instead of testing every possible
153 statement, we eliminate most possibilities by peeking at the
156 c
= gfc_peek_ascii_char ();
161 match ("abstract% interface", gfc_match_abstract_interface
,
163 match ("allocatable", gfc_match_allocatable
, ST_ATTR_DECL
);
164 match ("asynchronous", gfc_match_asynchronous
, ST_ATTR_DECL
);
168 match (NULL
, gfc_match_bind_c_stmt
, ST_ATTR_DECL
);
172 match ("codimension", gfc_match_codimension
, ST_ATTR_DECL
);
173 match ("contiguous", gfc_match_contiguous
, ST_ATTR_DECL
);
177 match ("data", gfc_match_data
, ST_DATA
);
178 match ("dimension", gfc_match_dimension
, ST_ATTR_DECL
);
182 match ("enum , bind ( c )", gfc_match_enum
, ST_ENUM
);
183 match ("entry% ", gfc_match_entry
, ST_ENTRY
);
184 match ("equivalence", gfc_match_equivalence
, ST_EQUIVALENCE
);
185 match ("external", gfc_match_external
, ST_ATTR_DECL
);
189 match ("format", gfc_match_format
, ST_FORMAT
);
196 match ("implicit", gfc_match_implicit
, ST_IMPLICIT
);
197 match ("implicit% none", gfc_match_implicit_none
, ST_IMPLICIT_NONE
);
198 match ("interface", gfc_match_interface
, ST_INTERFACE
);
199 match ("intent", gfc_match_intent
, ST_ATTR_DECL
);
200 match ("intrinsic", gfc_match_intrinsic
, ST_ATTR_DECL
);
207 match ("namelist", gfc_match_namelist
, ST_NAMELIST
);
211 match ("optional", gfc_match_optional
, ST_ATTR_DECL
);
215 match ("parameter", gfc_match_parameter
, ST_PARAMETER
);
216 match ("pointer", gfc_match_pointer
, ST_ATTR_DECL
);
217 if (gfc_match_private (&st
) == MATCH_YES
)
219 match ("procedure", gfc_match_procedure
, ST_PROCEDURE
);
220 if (gfc_match_public (&st
) == MATCH_YES
)
222 match ("protected", gfc_match_protected
, ST_ATTR_DECL
);
229 match ("save", gfc_match_save
, ST_ATTR_DECL
);
233 match ("target", gfc_match_target
, ST_ATTR_DECL
);
234 match ("type", gfc_match_derived_decl
, ST_DERIVED_DECL
);
241 match ("value", gfc_match_value
, ST_ATTR_DECL
);
242 match ("volatile", gfc_match_volatile
, ST_ATTR_DECL
);
249 /* This is not a specification statement. See if any of the matchers
250 has stored an error message of some sort. */
254 gfc_buffer_error (0);
255 gfc_current_locus
= old_locus
;
257 return ST_GET_FCN_CHARACTERISTICS
;
261 /* This is the primary 'decode_statement'. */
263 decode_statement (void)
271 gfc_enforce_clean_symbol_state ();
273 gfc_clear_error (); /* Clear any pending errors. */
274 gfc_clear_warning (); /* Clear any pending warnings. */
276 gfc_matching_function
= false;
278 if (gfc_match_eos () == MATCH_YES
)
281 if (gfc_current_state () == COMP_FUNCTION
282 && gfc_current_block ()->result
->ts
.kind
== -1)
283 return decode_specification_statement ();
285 old_locus
= gfc_current_locus
;
287 c
= gfc_peek_ascii_char ();
291 if (match_word ("use", gfc_match_use
, &old_locus
) == MATCH_YES
)
293 last_was_use_stmt
= true;
297 undo_new_statement ();
300 if (last_was_use_stmt
)
303 /* Try matching a data declaration or function declaration. The
304 input "REALFUNCTIONA(N)" can mean several things in different
305 contexts, so it (and its relatives) get special treatment. */
307 if (gfc_current_state () == COMP_NONE
308 || gfc_current_state () == COMP_INTERFACE
309 || gfc_current_state () == COMP_CONTAINS
)
311 gfc_matching_function
= true;
312 m
= gfc_match_function_decl ();
315 else if (m
== MATCH_ERROR
)
319 gfc_current_locus
= old_locus
;
321 gfc_matching_function
= false;
324 /* Match statements whose error messages are meant to be overwritten
325 by something better. */
327 match (NULL
, gfc_match_assignment
, ST_ASSIGNMENT
);
328 match (NULL
, gfc_match_pointer_assignment
, ST_POINTER_ASSIGNMENT
);
329 match (NULL
, gfc_match_st_function
, ST_STATEMENT_FUNCTION
);
331 match (NULL
, gfc_match_data_decl
, ST_DATA_DECL
);
332 match (NULL
, gfc_match_enumerator_def
, ST_ENUMERATOR
);
334 /* Try to match a subroutine statement, which has the same optional
335 prefixes that functions can have. */
337 if (gfc_match_subroutine () == MATCH_YES
)
338 return ST_SUBROUTINE
;
340 gfc_current_locus
= old_locus
;
342 /* Check for the IF, DO, SELECT, WHERE, FORALL, CRITICAL, BLOCK and ASSOCIATE
343 statements, which might begin with a block label. The match functions for
344 these statements are unusual in that their keyword is not seen before
345 the matcher is called. */
347 if (gfc_match_if (&st
) == MATCH_YES
)
350 gfc_current_locus
= old_locus
;
352 if (gfc_match_where (&st
) == MATCH_YES
)
355 gfc_current_locus
= old_locus
;
357 if (gfc_match_forall (&st
) == MATCH_YES
)
360 gfc_current_locus
= old_locus
;
362 match (NULL
, gfc_match_do
, ST_DO
);
363 match (NULL
, gfc_match_block
, ST_BLOCK
);
364 match (NULL
, gfc_match_associate
, ST_ASSOCIATE
);
365 match (NULL
, gfc_match_critical
, ST_CRITICAL
);
366 match (NULL
, gfc_match_select
, ST_SELECT_CASE
);
368 gfc_current_ns
= gfc_build_block_ns (gfc_current_ns
);
369 match (NULL
, gfc_match_select_type
, ST_SELECT_TYPE
);
371 gfc_current_ns
= gfc_current_ns
->parent
;
372 gfc_free_namespace (ns
);
374 /* General statement matching: Instead of testing every possible
375 statement, we eliminate most possibilities by peeking at the
381 match ("abstract% interface", gfc_match_abstract_interface
,
383 match ("allocate", gfc_match_allocate
, ST_ALLOCATE
);
384 match ("allocatable", gfc_match_allocatable
, ST_ATTR_DECL
);
385 match ("assign", gfc_match_assign
, ST_LABEL_ASSIGNMENT
);
386 match ("asynchronous", gfc_match_asynchronous
, ST_ATTR_DECL
);
390 match ("backspace", gfc_match_backspace
, ST_BACKSPACE
);
391 match ("block data", gfc_match_block_data
, ST_BLOCK_DATA
);
392 match (NULL
, gfc_match_bind_c_stmt
, ST_ATTR_DECL
);
396 match ("call", gfc_match_call
, ST_CALL
);
397 match ("close", gfc_match_close
, ST_CLOSE
);
398 match ("continue", gfc_match_continue
, ST_CONTINUE
);
399 match ("contiguous", gfc_match_contiguous
, ST_ATTR_DECL
);
400 match ("cycle", gfc_match_cycle
, ST_CYCLE
);
401 match ("case", gfc_match_case
, ST_CASE
);
402 match ("common", gfc_match_common
, ST_COMMON
);
403 match ("contains", gfc_match_eos
, ST_CONTAINS
);
404 match ("class", gfc_match_class_is
, ST_CLASS_IS
);
405 match ("codimension", gfc_match_codimension
, ST_ATTR_DECL
);
409 match ("deallocate", gfc_match_deallocate
, ST_DEALLOCATE
);
410 match ("data", gfc_match_data
, ST_DATA
);
411 match ("dimension", gfc_match_dimension
, ST_ATTR_DECL
);
415 match ("end file", gfc_match_endfile
, ST_END_FILE
);
416 match ("exit", gfc_match_exit
, ST_EXIT
);
417 match ("else", gfc_match_else
, ST_ELSE
);
418 match ("else where", gfc_match_elsewhere
, ST_ELSEWHERE
);
419 match ("else if", gfc_match_elseif
, ST_ELSEIF
);
420 match ("error stop", gfc_match_error_stop
, ST_ERROR_STOP
);
421 match ("enum , bind ( c )", gfc_match_enum
, ST_ENUM
);
423 if (gfc_match_end (&st
) == MATCH_YES
)
426 match ("entry% ", gfc_match_entry
, ST_ENTRY
);
427 match ("equivalence", gfc_match_equivalence
, ST_EQUIVALENCE
);
428 match ("external", gfc_match_external
, ST_ATTR_DECL
);
432 match ("final", gfc_match_final_decl
, ST_FINAL
);
433 match ("flush", gfc_match_flush
, ST_FLUSH
);
434 match ("format", gfc_match_format
, ST_FORMAT
);
438 match ("generic", gfc_match_generic
, ST_GENERIC
);
439 match ("go to", gfc_match_goto
, ST_GOTO
);
443 match ("inquire", gfc_match_inquire
, ST_INQUIRE
);
444 match ("implicit", gfc_match_implicit
, ST_IMPLICIT
);
445 match ("implicit% none", gfc_match_implicit_none
, ST_IMPLICIT_NONE
);
446 match ("import", gfc_match_import
, ST_IMPORT
);
447 match ("interface", gfc_match_interface
, ST_INTERFACE
);
448 match ("intent", gfc_match_intent
, ST_ATTR_DECL
);
449 match ("intrinsic", gfc_match_intrinsic
, ST_ATTR_DECL
);
453 match ("lock", gfc_match_lock
, ST_LOCK
);
457 match ("module% procedure", gfc_match_modproc
, ST_MODULE_PROC
);
458 match ("module", gfc_match_module
, ST_MODULE
);
462 match ("nullify", gfc_match_nullify
, ST_NULLIFY
);
463 match ("namelist", gfc_match_namelist
, ST_NAMELIST
);
467 match ("open", gfc_match_open
, ST_OPEN
);
468 match ("optional", gfc_match_optional
, ST_ATTR_DECL
);
472 match ("print", gfc_match_print
, ST_WRITE
);
473 match ("parameter", gfc_match_parameter
, ST_PARAMETER
);
474 match ("pause", gfc_match_pause
, ST_PAUSE
);
475 match ("pointer", gfc_match_pointer
, ST_ATTR_DECL
);
476 if (gfc_match_private (&st
) == MATCH_YES
)
478 match ("procedure", gfc_match_procedure
, ST_PROCEDURE
);
479 match ("program", gfc_match_program
, ST_PROGRAM
);
480 if (gfc_match_public (&st
) == MATCH_YES
)
482 match ("protected", gfc_match_protected
, ST_ATTR_DECL
);
486 match ("read", gfc_match_read
, ST_READ
);
487 match ("return", gfc_match_return
, ST_RETURN
);
488 match ("rewind", gfc_match_rewind
, ST_REWIND
);
492 match ("sequence", gfc_match_eos
, ST_SEQUENCE
);
493 match ("stop", gfc_match_stop
, ST_STOP
);
494 match ("save", gfc_match_save
, ST_ATTR_DECL
);
495 match ("sync all", gfc_match_sync_all
, ST_SYNC_ALL
);
496 match ("sync images", gfc_match_sync_images
, ST_SYNC_IMAGES
);
497 match ("sync memory", gfc_match_sync_memory
, ST_SYNC_MEMORY
);
501 match ("target", gfc_match_target
, ST_ATTR_DECL
);
502 match ("type", gfc_match_derived_decl
, ST_DERIVED_DECL
);
503 match ("type is", gfc_match_type_is
, ST_TYPE_IS
);
507 match ("unlock", gfc_match_unlock
, ST_UNLOCK
);
511 match ("value", gfc_match_value
, ST_ATTR_DECL
);
512 match ("volatile", gfc_match_volatile
, ST_ATTR_DECL
);
516 match ("wait", gfc_match_wait
, ST_WAIT
);
517 match ("write", gfc_match_write
, ST_WRITE
);
521 /* All else has failed, so give up. See if any of the matchers has
522 stored an error message of some sort. */
524 if (gfc_error_check () == 0)
525 gfc_error_now ("Unclassifiable statement at %C");
529 gfc_error_recovery ();
535 decode_omp_directive (void)
540 gfc_enforce_clean_symbol_state ();
542 gfc_clear_error (); /* Clear any pending errors. */
543 gfc_clear_warning (); /* Clear any pending warnings. */
547 gfc_error_now ("OpenMP directives at %C may not appear in PURE "
548 "or ELEMENTAL procedures");
549 gfc_error_recovery ();
553 gfc_unset_implicit_pure (NULL
);
555 old_locus
= gfc_current_locus
;
557 /* General OpenMP directive matching: Instead of testing every possible
558 statement, we eliminate most possibilities by peeking at the
561 c
= gfc_peek_ascii_char ();
566 match ("atomic", gfc_match_omp_atomic
, ST_OMP_ATOMIC
);
569 match ("barrier", gfc_match_omp_barrier
, ST_OMP_BARRIER
);
572 match ("critical", gfc_match_omp_critical
, ST_OMP_CRITICAL
);
575 match ("do", gfc_match_omp_do
, ST_OMP_DO
);
578 match ("end atomic", gfc_match_omp_eos
, ST_OMP_END_ATOMIC
);
579 match ("end critical", gfc_match_omp_critical
, ST_OMP_END_CRITICAL
);
580 match ("end do", gfc_match_omp_end_nowait
, ST_OMP_END_DO
);
581 match ("end master", gfc_match_omp_eos
, ST_OMP_END_MASTER
);
582 match ("end ordered", gfc_match_omp_eos
, ST_OMP_END_ORDERED
);
583 match ("end parallel do", gfc_match_omp_eos
, ST_OMP_END_PARALLEL_DO
);
584 match ("end parallel sections", gfc_match_omp_eos
,
585 ST_OMP_END_PARALLEL_SECTIONS
);
586 match ("end parallel workshare", gfc_match_omp_eos
,
587 ST_OMP_END_PARALLEL_WORKSHARE
);
588 match ("end parallel", gfc_match_omp_eos
, ST_OMP_END_PARALLEL
);
589 match ("end sections", gfc_match_omp_end_nowait
, ST_OMP_END_SECTIONS
);
590 match ("end single", gfc_match_omp_end_single
, ST_OMP_END_SINGLE
);
591 match ("end task", gfc_match_omp_eos
, ST_OMP_END_TASK
);
592 match ("end workshare", gfc_match_omp_end_nowait
,
593 ST_OMP_END_WORKSHARE
);
596 match ("flush", gfc_match_omp_flush
, ST_OMP_FLUSH
);
599 match ("master", gfc_match_omp_master
, ST_OMP_MASTER
);
602 match ("ordered", gfc_match_omp_ordered
, ST_OMP_ORDERED
);
605 match ("parallel do", gfc_match_omp_parallel_do
, ST_OMP_PARALLEL_DO
);
606 match ("parallel sections", gfc_match_omp_parallel_sections
,
607 ST_OMP_PARALLEL_SECTIONS
);
608 match ("parallel workshare", gfc_match_omp_parallel_workshare
,
609 ST_OMP_PARALLEL_WORKSHARE
);
610 match ("parallel", gfc_match_omp_parallel
, ST_OMP_PARALLEL
);
613 match ("sections", gfc_match_omp_sections
, ST_OMP_SECTIONS
);
614 match ("section", gfc_match_omp_eos
, ST_OMP_SECTION
);
615 match ("single", gfc_match_omp_single
, ST_OMP_SINGLE
);
618 match ("task", gfc_match_omp_task
, ST_OMP_TASK
);
619 match ("taskwait", gfc_match_omp_taskwait
, ST_OMP_TASKWAIT
);
620 match ("taskyield", gfc_match_omp_taskyield
, ST_OMP_TASKYIELD
);
621 match ("threadprivate", gfc_match_omp_threadprivate
,
622 ST_OMP_THREADPRIVATE
);
625 match ("workshare", gfc_match_omp_workshare
, ST_OMP_WORKSHARE
);
629 /* All else has failed, so give up. See if any of the matchers has
630 stored an error message of some sort. */
632 if (gfc_error_check () == 0)
633 gfc_error_now ("Unclassifiable OpenMP directive at %C");
637 gfc_error_recovery ();
643 decode_gcc_attribute (void)
647 gfc_enforce_clean_symbol_state ();
649 gfc_clear_error (); /* Clear any pending errors. */
650 gfc_clear_warning (); /* Clear any pending warnings. */
651 old_locus
= gfc_current_locus
;
653 match ("attributes", gfc_match_gcc_attributes
, ST_ATTR_DECL
);
655 /* All else has failed, so give up. See if any of the matchers has
656 stored an error message of some sort. */
658 if (gfc_error_check () == 0)
659 gfc_error_now ("Unclassifiable GCC directive at %C");
663 gfc_error_recovery ();
671 /* Get the next statement in free form source. */
680 at_bol
= gfc_at_bol ();
681 gfc_gobble_whitespace ();
683 c
= gfc_peek_ascii_char ();
689 /* Found a statement label? */
690 m
= gfc_match_st_label (&gfc_statement_label
);
692 d
= gfc_peek_ascii_char ();
693 if (m
!= MATCH_YES
|| !gfc_is_whitespace (d
))
695 gfc_match_small_literal_int (&i
, &cnt
);
698 gfc_error_now ("Too many digits in statement label at %C");
701 gfc_error_now ("Zero is not a valid statement label at %C");
704 c
= gfc_next_ascii_char ();
707 if (!gfc_is_whitespace (c
))
708 gfc_error_now ("Non-numeric character in statement label at %C");
714 label_locus
= gfc_current_locus
;
716 gfc_gobble_whitespace ();
718 if (at_bol
&& gfc_peek_ascii_char () == ';')
720 gfc_error_now ("Semicolon at %C needs to be preceded by "
722 gfc_next_ascii_char (); /* Eat up the semicolon. */
726 if (gfc_match_eos () == MATCH_YES
)
728 gfc_warning_now ("Ignoring statement label in empty statement "
729 "at %L", &label_locus
);
730 gfc_free_st_label (gfc_statement_label
);
731 gfc_statement_label
= NULL
;
738 /* Comments have already been skipped by the time we get here,
739 except for GCC attributes and OpenMP directives. */
741 gfc_next_ascii_char (); /* Eat up the exclamation sign. */
742 c
= gfc_peek_ascii_char ();
748 c
= gfc_next_ascii_char ();
749 for (i
= 0; i
< 4; i
++, c
= gfc_next_ascii_char ())
750 gcc_assert (c
== "gcc$"[i
]);
752 gfc_gobble_whitespace ();
753 return decode_gcc_attribute ();
756 else if (c
== '$' && gfc_option
.gfc_flag_openmp
)
760 c
= gfc_next_ascii_char ();
761 for (i
= 0; i
< 4; i
++, c
= gfc_next_ascii_char ())
762 gcc_assert (c
== "$omp"[i
]);
764 gcc_assert (c
== ' ' || c
== '\t');
765 gfc_gobble_whitespace ();
766 if (last_was_use_stmt
)
768 return decode_omp_directive ();
774 if (at_bol
&& c
== ';')
776 if (!(gfc_option
.allow_std
& GFC_STD_F2008
))
777 gfc_error_now ("Fortran 2008: Semicolon at %C without preceding "
779 gfc_next_ascii_char (); /* Eat up the semicolon. */
783 return decode_statement ();
787 /* Get the next statement in fixed-form source. */
792 int label
, digit_flag
, i
;
797 return decode_statement ();
799 /* Skip past the current label field, parsing a statement label if
800 one is there. This is a weird number parser, since the number is
801 contained within five columns and can have any kind of embedded
802 spaces. We also check for characters that make the rest of the
808 for (i
= 0; i
< 5; i
++)
810 c
= gfc_next_char_literal (NONSTRING
);
827 label
= label
* 10 + ((unsigned char) c
- '0');
828 label_locus
= gfc_current_locus
;
832 /* Comments have already been skipped by the time we get
833 here, except for GCC attributes and OpenMP directives. */
836 c
= gfc_next_char_literal (NONSTRING
);
838 if (TOLOWER (c
) == 'g')
840 for (i
= 0; i
< 4; i
++, c
= gfc_next_char_literal (NONSTRING
))
841 gcc_assert (TOLOWER (c
) == "gcc$"[i
]);
843 return decode_gcc_attribute ();
845 else if (c
== '$' && gfc_option
.gfc_flag_openmp
)
847 for (i
= 0; i
< 4; i
++, c
= gfc_next_char_literal (NONSTRING
))
848 gcc_assert ((char) gfc_wide_tolower (c
) == "$omp"[i
]);
850 if (c
!= ' ' && c
!= '0')
852 gfc_buffer_error (0);
853 gfc_error ("Bad continuation line at %C");
856 if (last_was_use_stmt
)
858 return decode_omp_directive ();
862 /* Comments have already been skipped by the time we get
863 here so don't bother checking for them. */
866 gfc_buffer_error (0);
867 gfc_error ("Non-numeric character in statement label at %C");
875 gfc_warning_now ("Zero is not a valid statement label at %C");
878 /* We've found a valid statement label. */
879 gfc_statement_label
= gfc_get_st_label (label
);
883 /* Since this line starts a statement, it cannot be a continuation
884 of a previous statement. If we see something here besides a
885 space or zero, it must be a bad continuation line. */
887 c
= gfc_next_char_literal (NONSTRING
);
891 if (c
!= ' ' && c
!= '0')
893 gfc_buffer_error (0);
894 gfc_error ("Bad continuation line at %C");
898 /* Now that we've taken care of the statement label columns, we have
899 to make sure that the first nonblank character is not a '!'. If
900 it is, the rest of the line is a comment. */
904 loc
= gfc_current_locus
;
905 c
= gfc_next_char_literal (NONSTRING
);
907 while (gfc_is_whitespace (c
));
911 gfc_current_locus
= loc
;
916 gfc_error_now ("Semicolon at %C needs to be preceded by statement");
917 else if (!(gfc_option
.allow_std
& GFC_STD_F2008
))
918 gfc_error_now ("Fortran 2008: Semicolon at %C without preceding "
923 if (gfc_match_eos () == MATCH_YES
)
926 /* At this point, we've got a nonblank statement to parse. */
927 return decode_statement ();
931 gfc_warning_now ("Ignoring statement label in empty statement at %L",
934 gfc_current_locus
.lb
->truncated
= 0;
940 /* Return the next non-ST_NONE statement to the caller. We also worry
941 about including files and the ends of include files at this stage. */
944 next_statement (void)
949 gfc_enforce_clean_symbol_state ();
951 gfc_new_block
= NULL
;
953 gfc_current_ns
->old_cl_list
= gfc_current_ns
->cl_list
;
954 gfc_current_ns
->old_equiv
= gfc_current_ns
->equiv
;
957 gfc_statement_label
= NULL
;
958 gfc_buffer_error (1);
963 gfc_skip_comments ();
971 if (gfc_define_undef_line ())
974 old_locus
= gfc_current_locus
;
976 st
= (gfc_current_form
== FORM_FIXED
) ? next_fixed () : next_free ();
982 gfc_buffer_error (0);
984 if (st
== ST_GET_FCN_CHARACTERISTICS
&& gfc_statement_label
!= NULL
)
986 gfc_free_st_label (gfc_statement_label
);
987 gfc_statement_label
= NULL
;
988 gfc_current_locus
= old_locus
;
992 check_statement_label (st
);
998 /****************************** Parser ***********************************/
1000 /* The parser subroutines are of type 'try' that fail if the file ends
1003 /* Macros that expand to case-labels for various classes of
1004 statements. Start with executable statements that directly do
1007 #define case_executable case ST_ALLOCATE: case ST_BACKSPACE: case ST_CALL: \
1008 case ST_CLOSE: case ST_CONTINUE: case ST_DEALLOCATE: case ST_END_FILE: \
1009 case ST_GOTO: case ST_INQUIRE: case ST_NULLIFY: case ST_OPEN: \
1010 case ST_READ: case ST_RETURN: case ST_REWIND: case ST_SIMPLE_IF: \
1011 case ST_PAUSE: case ST_STOP: case ST_WAIT: case ST_WRITE: \
1012 case ST_POINTER_ASSIGNMENT: case ST_EXIT: case ST_CYCLE: \
1013 case ST_ASSIGNMENT: case ST_ARITHMETIC_IF: case ST_WHERE: case ST_FORALL: \
1014 case ST_LABEL_ASSIGNMENT: case ST_FLUSH: case ST_OMP_FLUSH: \
1015 case ST_OMP_BARRIER: case ST_OMP_TASKWAIT: case ST_OMP_TASKYIELD: \
1016 case ST_ERROR_STOP: case ST_SYNC_ALL: case ST_SYNC_IMAGES: \
1017 case ST_SYNC_MEMORY: case ST_LOCK: case ST_UNLOCK
1019 /* Statements that mark other executable statements. */
1021 #define case_exec_markers case ST_DO: case ST_FORALL_BLOCK: \
1022 case ST_IF_BLOCK: case ST_BLOCK: case ST_ASSOCIATE: \
1023 case ST_WHERE_BLOCK: case ST_SELECT_CASE: case ST_SELECT_TYPE: \
1024 case ST_OMP_PARALLEL: \
1025 case ST_OMP_PARALLEL_SECTIONS: case ST_OMP_SECTIONS: case ST_OMP_ORDERED: \
1026 case ST_OMP_CRITICAL: case ST_OMP_MASTER: case ST_OMP_SINGLE: \
1027 case ST_OMP_DO: case ST_OMP_PARALLEL_DO: case ST_OMP_ATOMIC: \
1028 case ST_OMP_WORKSHARE: case ST_OMP_PARALLEL_WORKSHARE: \
1029 case ST_OMP_TASK: case ST_CRITICAL
1031 /* Declaration statements */
1033 #define case_decl case ST_ATTR_DECL: case ST_COMMON: case ST_DATA_DECL: \
1034 case ST_EQUIVALENCE: case ST_NAMELIST: case ST_STATEMENT_FUNCTION: \
1035 case ST_TYPE: case ST_INTERFACE: case ST_OMP_THREADPRIVATE: \
1038 /* Block end statements. Errors associated with interchanging these
1039 are detected in gfc_match_end(). */
1041 #define case_end case ST_END_BLOCK_DATA: case ST_END_FUNCTION: \
1042 case ST_END_PROGRAM: case ST_END_SUBROUTINE: \
1043 case ST_END_BLOCK: case ST_END_ASSOCIATE
1046 /* Push a new state onto the stack. */
1049 push_state (gfc_state_data
*p
, gfc_compile_state new_state
, gfc_symbol
*sym
)
1051 p
->state
= new_state
;
1052 p
->previous
= gfc_state_stack
;
1054 p
->head
= p
->tail
= NULL
;
1055 p
->do_variable
= NULL
;
1057 /* If this the state of a construct like BLOCK, DO or IF, the corresponding
1058 construct statement was accepted right before pushing the state. Thus,
1059 the construct's gfc_code is available as tail of the parent state. */
1060 gcc_assert (gfc_state_stack
);
1061 p
->construct
= gfc_state_stack
->tail
;
1063 gfc_state_stack
= p
;
1067 /* Pop the current state. */
1071 gfc_state_stack
= gfc_state_stack
->previous
;
1075 /* Try to find the given state in the state stack. */
1078 gfc_find_state (gfc_compile_state state
)
1082 for (p
= gfc_state_stack
; p
; p
= p
->previous
)
1083 if (p
->state
== state
)
1086 return (p
== NULL
) ? false : true;
1090 /* Starts a new level in the statement list. */
1093 new_level (gfc_code
*q
)
1097 p
= q
->block
= gfc_get_code (EXEC_NOP
);
1099 gfc_state_stack
->head
= gfc_state_stack
->tail
= p
;
1105 /* Add the current new_st code structure and adds it to the current
1106 program unit. As a side-effect, it zeroes the new_st. */
1109 add_statement (void)
1113 p
= XCNEW (gfc_code
);
1116 p
->loc
= gfc_current_locus
;
1118 if (gfc_state_stack
->head
== NULL
)
1119 gfc_state_stack
->head
= p
;
1121 gfc_state_stack
->tail
->next
= p
;
1123 while (p
->next
!= NULL
)
1126 gfc_state_stack
->tail
= p
;
1128 gfc_clear_new_st ();
1134 /* Frees everything associated with the current statement. */
1137 undo_new_statement (void)
1139 gfc_free_statements (new_st
.block
);
1140 gfc_free_statements (new_st
.next
);
1141 gfc_free_statement (&new_st
);
1142 gfc_clear_new_st ();
1146 /* If the current statement has a statement label, make sure that it
1147 is allowed to, or should have one. */
1150 check_statement_label (gfc_statement st
)
1154 if (gfc_statement_label
== NULL
)
1156 if (st
== ST_FORMAT
)
1157 gfc_error ("FORMAT statement at %L does not have a statement label",
1164 case ST_END_PROGRAM
:
1165 case ST_END_FUNCTION
:
1166 case ST_END_SUBROUTINE
:
1170 case ST_END_CRITICAL
:
1172 case ST_END_ASSOCIATE
:
1175 if (st
== ST_ENDDO
|| st
== ST_CONTINUE
)
1176 type
= ST_LABEL_DO_TARGET
;
1178 type
= ST_LABEL_TARGET
;
1182 type
= ST_LABEL_FORMAT
;
1185 /* Statement labels are not restricted from appearing on a
1186 particular line. However, there are plenty of situations
1187 where the resulting label can't be referenced. */
1190 type
= ST_LABEL_BAD_TARGET
;
1194 gfc_define_st_label (gfc_statement_label
, type
, &label_locus
);
1196 new_st
.here
= gfc_statement_label
;
1200 /* Figures out what the enclosing program unit is. This will be a
1201 function, subroutine, program, block data or module. */
1204 gfc_enclosing_unit (gfc_compile_state
* result
)
1208 for (p
= gfc_state_stack
; p
; p
= p
->previous
)
1209 if (p
->state
== COMP_FUNCTION
|| p
->state
== COMP_SUBROUTINE
1210 || p
->state
== COMP_MODULE
|| p
->state
== COMP_BLOCK_DATA
1211 || p
->state
== COMP_PROGRAM
)
1220 *result
= COMP_PROGRAM
;
1225 /* Translate a statement enum to a string. */
1228 gfc_ascii_statement (gfc_statement st
)
1234 case ST_ARITHMETIC_IF
:
1235 p
= _("arithmetic IF");
1244 p
= _("attribute declaration");
1280 p
= _("data declaration");
1288 case ST_DERIVED_DECL
:
1289 p
= _("derived type declaration");
1303 case ST_END_ASSOCIATE
:
1304 p
= "END ASSOCIATE";
1309 case ST_END_BLOCK_DATA
:
1310 p
= "END BLOCK DATA";
1312 case ST_END_CRITICAL
:
1324 case ST_END_FUNCTION
:
1330 case ST_END_INTERFACE
:
1331 p
= "END INTERFACE";
1336 case ST_END_PROGRAM
:
1342 case ST_END_SUBROUTINE
:
1343 p
= "END SUBROUTINE";
1354 case ST_EQUIVALENCE
:
1366 case ST_FORALL_BLOCK
: /* Fall through */
1388 case ST_IMPLICIT_NONE
:
1389 p
= "IMPLICIT NONE";
1391 case ST_IMPLIED_ENDDO
:
1392 p
= _("implied END DO");
1421 case ST_MODULE_PROC
:
1422 p
= "MODULE PROCEDURE";
1454 case ST_SYNC_IMAGES
:
1457 case ST_SYNC_MEMORY
:
1472 case ST_WHERE_BLOCK
: /* Fall through */
1483 p
= _("assignment");
1485 case ST_POINTER_ASSIGNMENT
:
1486 p
= _("pointer assignment");
1488 case ST_SELECT_CASE
:
1491 case ST_SELECT_TYPE
:
1506 case ST_STATEMENT_FUNCTION
:
1507 p
= "STATEMENT FUNCTION";
1509 case ST_LABEL_ASSIGNMENT
:
1510 p
= "LABEL ASSIGNMENT";
1513 p
= "ENUM DEFINITION";
1516 p
= "ENUMERATOR DEFINITION";
1524 case ST_OMP_BARRIER
:
1525 p
= "!$OMP BARRIER";
1527 case ST_OMP_CRITICAL
:
1528 p
= "!$OMP CRITICAL";
1533 case ST_OMP_END_ATOMIC
:
1534 p
= "!$OMP END ATOMIC";
1536 case ST_OMP_END_CRITICAL
:
1537 p
= "!$OMP END CRITICAL";
1542 case ST_OMP_END_MASTER
:
1543 p
= "!$OMP END MASTER";
1545 case ST_OMP_END_ORDERED
:
1546 p
= "!$OMP END ORDERED";
1548 case ST_OMP_END_PARALLEL
:
1549 p
= "!$OMP END PARALLEL";
1551 case ST_OMP_END_PARALLEL_DO
:
1552 p
= "!$OMP END PARALLEL DO";
1554 case ST_OMP_END_PARALLEL_SECTIONS
:
1555 p
= "!$OMP END PARALLEL SECTIONS";
1557 case ST_OMP_END_PARALLEL_WORKSHARE
:
1558 p
= "!$OMP END PARALLEL WORKSHARE";
1560 case ST_OMP_END_SECTIONS
:
1561 p
= "!$OMP END SECTIONS";
1563 case ST_OMP_END_SINGLE
:
1564 p
= "!$OMP END SINGLE";
1566 case ST_OMP_END_TASK
:
1567 p
= "!$OMP END TASK";
1569 case ST_OMP_END_WORKSHARE
:
1570 p
= "!$OMP END WORKSHARE";
1578 case ST_OMP_ORDERED
:
1579 p
= "!$OMP ORDERED";
1581 case ST_OMP_PARALLEL
:
1582 p
= "!$OMP PARALLEL";
1584 case ST_OMP_PARALLEL_DO
:
1585 p
= "!$OMP PARALLEL DO";
1587 case ST_OMP_PARALLEL_SECTIONS
:
1588 p
= "!$OMP PARALLEL SECTIONS";
1590 case ST_OMP_PARALLEL_WORKSHARE
:
1591 p
= "!$OMP PARALLEL WORKSHARE";
1593 case ST_OMP_SECTIONS
:
1594 p
= "!$OMP SECTIONS";
1596 case ST_OMP_SECTION
:
1597 p
= "!$OMP SECTION";
1605 case ST_OMP_TASKWAIT
:
1606 p
= "!$OMP TASKWAIT";
1608 case ST_OMP_TASKYIELD
:
1609 p
= "!$OMP TASKYIELD";
1611 case ST_OMP_THREADPRIVATE
:
1612 p
= "!$OMP THREADPRIVATE";
1614 case ST_OMP_WORKSHARE
:
1615 p
= "!$OMP WORKSHARE";
1618 gfc_internal_error ("gfc_ascii_statement(): Bad statement code");
1625 /* Create a symbol for the main program and assign it to ns->proc_name. */
1628 main_program_symbol (gfc_namespace
*ns
, const char *name
)
1630 gfc_symbol
*main_program
;
1631 symbol_attribute attr
;
1633 gfc_get_symbol (name
, ns
, &main_program
);
1634 gfc_clear_attr (&attr
);
1635 attr
.flavor
= FL_PROGRAM
;
1636 attr
.proc
= PROC_UNKNOWN
;
1637 attr
.subroutine
= 1;
1638 attr
.access
= ACCESS_PUBLIC
;
1639 attr
.is_main_program
= 1;
1640 main_program
->attr
= attr
;
1641 main_program
->declared_at
= gfc_current_locus
;
1642 ns
->proc_name
= main_program
;
1643 gfc_commit_symbols ();
1647 /* Do whatever is necessary to accept the last statement. */
1650 accept_statement (gfc_statement st
)
1654 case ST_IMPLICIT_NONE
:
1655 gfc_set_implicit_none ();
1664 gfc_current_ns
->proc_name
= gfc_new_block
;
1667 /* If the statement is the end of a block, lay down a special code
1668 that allows a branch to the end of the block from within the
1669 construct. IF and SELECT are treated differently from DO
1670 (where EXEC_NOP is added inside the loop) for two
1672 1. END DO has a meaning in the sense that after a GOTO to
1673 it, the loop counter must be increased.
1674 2. IF blocks and SELECT blocks can consist of multiple
1675 parallel blocks (IF ... ELSE IF ... ELSE ... END IF).
1676 Putting the label before the END IF would make the jump
1677 from, say, the ELSE IF block to the END IF illegal. */
1681 case ST_END_CRITICAL
:
1682 if (gfc_statement_label
!= NULL
)
1684 new_st
.op
= EXEC_END_NESTED_BLOCK
;
1689 /* In the case of BLOCK and ASSOCIATE blocks, there cannot be more than
1690 one parallel block. Thus, we add the special code to the nested block
1691 itself, instead of the parent one. */
1693 case ST_END_ASSOCIATE
:
1694 if (gfc_statement_label
!= NULL
)
1696 new_st
.op
= EXEC_END_BLOCK
;
1701 /* The end-of-program unit statements do not get the special
1702 marker and require a statement of some sort if they are a
1705 case ST_END_PROGRAM
:
1706 case ST_END_FUNCTION
:
1707 case ST_END_SUBROUTINE
:
1708 if (gfc_statement_label
!= NULL
)
1710 new_st
.op
= EXEC_RETURN
;
1715 new_st
.op
= EXEC_END_PROCEDURE
;
1731 gfc_commit_symbols ();
1732 gfc_warning_check ();
1733 gfc_clear_new_st ();
1737 /* Undo anything tentative that has been built for the current
1741 reject_statement (void)
1743 /* Revert to the previous charlen chain. */
1744 gfc_free_charlen (gfc_current_ns
->cl_list
, gfc_current_ns
->old_cl_list
);
1745 gfc_current_ns
->cl_list
= gfc_current_ns
->old_cl_list
;
1747 gfc_free_equiv_until (gfc_current_ns
->equiv
, gfc_current_ns
->old_equiv
);
1748 gfc_current_ns
->equiv
= gfc_current_ns
->old_equiv
;
1750 gfc_new_block
= NULL
;
1751 gfc_undo_symbols ();
1752 gfc_clear_warning ();
1753 undo_new_statement ();
1757 /* Generic complaint about an out of order statement. We also do
1758 whatever is necessary to clean up. */
1761 unexpected_statement (gfc_statement st
)
1763 gfc_error ("Unexpected %s statement at %C", gfc_ascii_statement (st
));
1765 reject_statement ();
1769 /* Given the next statement seen by the matcher, make sure that it is
1770 in proper order with the last. This subroutine is initialized by
1771 calling it with an argument of ST_NONE. If there is a problem, we
1772 issue an error and return false. Otherwise we return true.
1774 Individual parsers need to verify that the statements seen are
1775 valid before calling here, i.e., ENTRY statements are not allowed in
1776 INTERFACE blocks. The following diagram is taken from the standard:
1778 +---------------------------------------+
1779 | program subroutine function module |
1780 +---------------------------------------+
1782 +---------------------------------------+
1784 +---------------------------------------+
1786 | +-----------+------------------+
1787 | | parameter | implicit |
1788 | +-----------+------------------+
1789 | format | | derived type |
1790 | entry | parameter | interface |
1791 | | data | specification |
1792 | | | statement func |
1793 | +-----------+------------------+
1794 | | data | executable |
1795 +--------+-----------+------------------+
1797 +---------------------------------------+
1798 | internal module/subprogram |
1799 +---------------------------------------+
1801 +---------------------------------------+
1810 ORDER_IMPLICIT_NONE
,
1818 enum state_order state
;
1819 gfc_statement last_statement
;
1825 verify_st_order (st_state
*p
, gfc_statement st
, bool silent
)
1831 p
->state
= ORDER_START
;
1835 if (p
->state
> ORDER_USE
)
1837 p
->state
= ORDER_USE
;
1841 if (p
->state
> ORDER_IMPORT
)
1843 p
->state
= ORDER_IMPORT
;
1846 case ST_IMPLICIT_NONE
:
1847 if (p
->state
> ORDER_IMPLICIT_NONE
)
1850 /* The '>' sign cannot be a '>=', because a FORMAT or ENTRY
1851 statement disqualifies a USE but not an IMPLICIT NONE.
1852 Duplicate IMPLICIT NONEs are caught when the implicit types
1855 p
->state
= ORDER_IMPLICIT_NONE
;
1859 if (p
->state
> ORDER_IMPLICIT
)
1861 p
->state
= ORDER_IMPLICIT
;
1866 if (p
->state
< ORDER_IMPLICIT_NONE
)
1867 p
->state
= ORDER_IMPLICIT_NONE
;
1871 if (p
->state
>= ORDER_EXEC
)
1873 if (p
->state
< ORDER_IMPLICIT
)
1874 p
->state
= ORDER_IMPLICIT
;
1878 if (p
->state
< ORDER_SPEC
)
1879 p
->state
= ORDER_SPEC
;
1884 case ST_DERIVED_DECL
:
1886 if (p
->state
>= ORDER_EXEC
)
1888 if (p
->state
< ORDER_SPEC
)
1889 p
->state
= ORDER_SPEC
;
1894 if (p
->state
< ORDER_EXEC
)
1895 p
->state
= ORDER_EXEC
;
1899 gfc_internal_error ("Unexpected %s statement in verify_st_order() at %C",
1900 gfc_ascii_statement (st
));
1903 /* All is well, record the statement in case we need it next time. */
1904 p
->where
= gfc_current_locus
;
1905 p
->last_statement
= st
;
1910 gfc_error ("%s statement at %C cannot follow %s statement at %L",
1911 gfc_ascii_statement (st
),
1912 gfc_ascii_statement (p
->last_statement
), &p
->where
);
1918 /* Handle an unexpected end of file. This is a show-stopper... */
1920 static void unexpected_eof (void) ATTRIBUTE_NORETURN
;
1923 unexpected_eof (void)
1927 gfc_error ("Unexpected end of file in '%s'", gfc_source_file
);
1929 /* Memory cleanup. Move to "second to last". */
1930 for (p
= gfc_state_stack
; p
&& p
->previous
&& p
->previous
->previous
;
1933 gfc_current_ns
->code
= (p
&& p
->previous
) ? p
->head
: NULL
;
1936 longjmp (eof_buf
, 1);
1940 /* Parse the CONTAINS section of a derived type definition. */
1942 gfc_access gfc_typebound_default_access
;
1945 parse_derived_contains (void)
1948 bool seen_private
= false;
1949 bool seen_comps
= false;
1950 bool error_flag
= false;
1953 gcc_assert (gfc_current_state () == COMP_DERIVED
);
1954 gcc_assert (gfc_current_block ());
1956 /* Derived-types with SEQUENCE and/or BIND(C) must not have a CONTAINS
1958 if (gfc_current_block ()->attr
.sequence
)
1959 gfc_error ("Derived-type '%s' with SEQUENCE must not have a CONTAINS"
1960 " section at %C", gfc_current_block ()->name
);
1961 if (gfc_current_block ()->attr
.is_bind_c
)
1962 gfc_error ("Derived-type '%s' with BIND(C) must not have a CONTAINS"
1963 " section at %C", gfc_current_block ()->name
);
1965 accept_statement (ST_CONTAINS
);
1966 push_state (&s
, COMP_DERIVED_CONTAINS
, NULL
);
1968 gfc_typebound_default_access
= ACCESS_PUBLIC
;
1974 st
= next_statement ();
1982 gfc_error ("Components in TYPE at %C must precede CONTAINS");
1986 if (!gfc_notify_std (GFC_STD_F2003
, "Type-bound procedure at %C"))
1989 accept_statement (ST_PROCEDURE
);
1994 if (!gfc_notify_std (GFC_STD_F2003
, "GENERIC binding at %C"))
1997 accept_statement (ST_GENERIC
);
2002 if (!gfc_notify_std (GFC_STD_F2003
, "FINAL procedure declaration"
2006 accept_statement (ST_FINAL
);
2014 && (!gfc_notify_std(GFC_STD_F2008
, "Derived type definition "
2015 "at %C with empty CONTAINS section")))
2018 /* ST_END_TYPE is accepted by parse_derived after return. */
2022 if (!gfc_find_state (COMP_MODULE
))
2024 gfc_error ("PRIVATE statement in TYPE at %C must be inside "
2031 gfc_error ("PRIVATE statement at %C must precede procedure"
2038 gfc_error ("Duplicate PRIVATE statement at %C");
2042 accept_statement (ST_PRIVATE
);
2043 gfc_typebound_default_access
= ACCESS_PRIVATE
;
2044 seen_private
= true;
2048 gfc_error ("SEQUENCE statement at %C must precede CONTAINS");
2052 gfc_error ("Already inside a CONTAINS block at %C");
2056 unexpected_statement (st
);
2064 reject_statement ();
2068 gcc_assert (gfc_current_state () == COMP_DERIVED
);
2074 /* Parse a derived type. */
2077 parse_derived (void)
2079 int compiling_type
, seen_private
, seen_sequence
, seen_component
;
2083 gfc_component
*c
, *lock_comp
= NULL
;
2085 accept_statement (ST_DERIVED_DECL
);
2086 push_state (&s
, COMP_DERIVED
, gfc_new_block
);
2088 gfc_new_block
->component_access
= ACCESS_PUBLIC
;
2095 while (compiling_type
)
2097 st
= next_statement ();
2105 accept_statement (st
);
2110 gfc_error ("FINAL declaration at %C must be inside CONTAINS");
2117 if (!seen_component
)
2118 gfc_notify_std (GFC_STD_F2003
, "Derived type "
2119 "definition at %C without components");
2121 accept_statement (ST_END_TYPE
);
2125 if (!gfc_find_state (COMP_MODULE
))
2127 gfc_error ("PRIVATE statement in TYPE at %C must be inside "
2134 gfc_error ("PRIVATE statement at %C must precede "
2135 "structure components");
2140 gfc_error ("Duplicate PRIVATE statement at %C");
2142 s
.sym
->component_access
= ACCESS_PRIVATE
;
2144 accept_statement (ST_PRIVATE
);
2151 gfc_error ("SEQUENCE statement at %C must precede "
2152 "structure components");
2156 if (gfc_current_block ()->attr
.sequence
)
2157 gfc_warning ("SEQUENCE attribute at %C already specified in "
2162 gfc_error ("Duplicate SEQUENCE statement at %C");
2166 gfc_add_sequence (&gfc_current_block ()->attr
,
2167 gfc_current_block ()->name
, NULL
);
2171 gfc_notify_std (GFC_STD_F2003
,
2172 "CONTAINS block in derived type"
2173 " definition at %C");
2175 accept_statement (ST_CONTAINS
);
2176 parse_derived_contains ();
2180 unexpected_statement (st
);
2185 /* need to verify that all fields of the derived type are
2186 * interoperable with C if the type is declared to be bind(c)
2188 sym
= gfc_current_block ();
2189 for (c
= sym
->components
; c
; c
= c
->next
)
2191 bool coarray
, lock_type
, allocatable
, pointer
;
2192 coarray
= lock_type
= allocatable
= pointer
= false;
2194 /* Look for allocatable components. */
2195 if (c
->attr
.allocatable
2196 || (c
->ts
.type
== BT_CLASS
&& c
->attr
.class_ok
2197 && CLASS_DATA (c
)->attr
.allocatable
)
2198 || (c
->ts
.type
== BT_DERIVED
&& !c
->attr
.pointer
2199 && c
->ts
.u
.derived
->attr
.alloc_comp
))
2202 sym
->attr
.alloc_comp
= 1;
2205 /* Look for pointer components. */
2207 || (c
->ts
.type
== BT_CLASS
&& c
->attr
.class_ok
2208 && CLASS_DATA (c
)->attr
.class_pointer
)
2209 || (c
->ts
.type
== BT_DERIVED
&& c
->ts
.u
.derived
->attr
.pointer_comp
))
2212 sym
->attr
.pointer_comp
= 1;
2215 /* Look for procedure pointer components. */
2216 if (c
->attr
.proc_pointer
2217 || (c
->ts
.type
== BT_DERIVED
2218 && c
->ts
.u
.derived
->attr
.proc_pointer_comp
))
2219 sym
->attr
.proc_pointer_comp
= 1;
2221 /* Looking for coarray components. */
2222 if (c
->attr
.codimension
2223 || (c
->ts
.type
== BT_CLASS
&& c
->attr
.class_ok
2224 && CLASS_DATA (c
)->attr
.codimension
))
2227 sym
->attr
.coarray_comp
= 1;
2230 if (c
->ts
.type
== BT_DERIVED
&& c
->ts
.u
.derived
->attr
.coarray_comp
2231 && !c
->attr
.pointer
)
2234 sym
->attr
.coarray_comp
= 1;
2237 /* Looking for lock_type components. */
2238 if ((c
->ts
.type
== BT_DERIVED
2239 && c
->ts
.u
.derived
->from_intmod
== INTMOD_ISO_FORTRAN_ENV
2240 && c
->ts
.u
.derived
->intmod_sym_id
== ISOFORTRAN_LOCK_TYPE
)
2241 || (c
->ts
.type
== BT_CLASS
&& c
->attr
.class_ok
2242 && CLASS_DATA (c
)->ts
.u
.derived
->from_intmod
2243 == INTMOD_ISO_FORTRAN_ENV
2244 && CLASS_DATA (c
)->ts
.u
.derived
->intmod_sym_id
2245 == ISOFORTRAN_LOCK_TYPE
)
2246 || (c
->ts
.type
== BT_DERIVED
&& c
->ts
.u
.derived
->attr
.lock_comp
2247 && !allocatable
&& !pointer
))
2251 sym
->attr
.lock_comp
= 1;
2254 /* Check for F2008, C1302 - and recall that pointers may not be coarrays
2255 (5.3.14) and that subobjects of coarray are coarray themselves (2.4.7),
2256 unless there are nondirect [allocatable or pointer] components
2257 involved (cf. 1.3.33.1 and 1.3.33.3). */
2259 if (pointer
&& !coarray
&& lock_type
)
2260 gfc_error ("Component %s at %L of type LOCK_TYPE must have a "
2261 "codimension or be a subcomponent of a coarray, "
2262 "which is not possible as the component has the "
2263 "pointer attribute", c
->name
, &c
->loc
);
2264 else if (pointer
&& !coarray
&& c
->ts
.type
== BT_DERIVED
2265 && c
->ts
.u
.derived
->attr
.lock_comp
)
2266 gfc_error ("Pointer component %s at %L has a noncoarray subcomponent "
2267 "of type LOCK_TYPE, which must have a codimension or be a "
2268 "subcomponent of a coarray", c
->name
, &c
->loc
);
2270 if (lock_type
&& allocatable
&& !coarray
)
2271 gfc_error ("Allocatable component %s at %L of type LOCK_TYPE must have "
2272 "a codimension", c
->name
, &c
->loc
);
2273 else if (lock_type
&& allocatable
&& c
->ts
.type
== BT_DERIVED
2274 && c
->ts
.u
.derived
->attr
.lock_comp
)
2275 gfc_error ("Allocatable component %s at %L must have a codimension as "
2276 "it has a noncoarray subcomponent of type LOCK_TYPE",
2279 if (sym
->attr
.coarray_comp
&& !coarray
&& lock_type
)
2280 gfc_error ("Noncoarray component %s at %L of type LOCK_TYPE or with "
2281 "subcomponent of type LOCK_TYPE must have a codimension or "
2282 "be a subcomponent of a coarray. (Variables of type %s may "
2283 "not have a codimension as already a coarray "
2284 "subcomponent exists)", c
->name
, &c
->loc
, sym
->name
);
2286 if (sym
->attr
.lock_comp
&& coarray
&& !lock_type
)
2287 gfc_error ("Noncoarray component %s at %L of type LOCK_TYPE or with "
2288 "subcomponent of type LOCK_TYPE must have a codimension or "
2289 "be a subcomponent of a coarray. (Variables of type %s may "
2290 "not have a codimension as %s at %L has a codimension or a "
2291 "coarray subcomponent)", lock_comp
->name
, &lock_comp
->loc
,
2292 sym
->name
, c
->name
, &c
->loc
);
2294 /* Look for private components. */
2295 if (sym
->component_access
== ACCESS_PRIVATE
2296 || c
->attr
.access
== ACCESS_PRIVATE
2297 || (c
->ts
.type
== BT_DERIVED
&& c
->ts
.u
.derived
->attr
.private_comp
))
2298 sym
->attr
.private_comp
= 1;
2301 if (!seen_component
)
2302 sym
->attr
.zero_comp
= 1;
2308 /* Parse an ENUM. */
2316 int seen_enumerator
= 0;
2318 push_state (&s
, COMP_ENUM
, gfc_new_block
);
2322 while (compiling_enum
)
2324 st
= next_statement ();
2332 seen_enumerator
= 1;
2333 accept_statement (st
);
2338 if (!seen_enumerator
)
2339 gfc_error ("ENUM declaration at %C has no ENUMERATORS");
2340 accept_statement (st
);
2344 gfc_free_enum_history ();
2345 unexpected_statement (st
);
2353 /* Parse an interface. We must be able to deal with the possibility
2354 of recursive interfaces. The parse_spec() subroutine is mutually
2355 recursive with parse_interface(). */
2357 static gfc_statement
parse_spec (gfc_statement
);
2360 parse_interface (void)
2362 gfc_compile_state new_state
= COMP_NONE
, current_state
;
2363 gfc_symbol
*prog_unit
, *sym
;
2364 gfc_interface_info save
;
2365 gfc_state_data s1
, s2
;
2368 accept_statement (ST_INTERFACE
);
2370 current_interface
.ns
= gfc_current_ns
;
2371 save
= current_interface
;
2373 sym
= (current_interface
.type
== INTERFACE_GENERIC
2374 || current_interface
.type
== INTERFACE_USER_OP
)
2375 ? gfc_new_block
: NULL
;
2377 push_state (&s1
, COMP_INTERFACE
, sym
);
2378 current_state
= COMP_NONE
;
2381 gfc_current_ns
= gfc_get_namespace (current_interface
.ns
, 0);
2383 st
= next_statement ();
2391 if (st
== ST_SUBROUTINE
)
2392 new_state
= COMP_SUBROUTINE
;
2393 else if (st
== ST_FUNCTION
)
2394 new_state
= COMP_FUNCTION
;
2395 if (gfc_new_block
->attr
.pointer
)
2397 gfc_new_block
->attr
.pointer
= 0;
2398 gfc_new_block
->attr
.proc_pointer
= 1;
2400 if (!gfc_add_explicit_interface (gfc_new_block
, IFSRC_IFBODY
,
2401 gfc_new_block
->formal
, NULL
))
2403 reject_statement ();
2404 gfc_free_namespace (gfc_current_ns
);
2410 case ST_MODULE_PROC
: /* The module procedure matcher makes
2411 sure the context is correct. */
2412 accept_statement (st
);
2413 gfc_free_namespace (gfc_current_ns
);
2416 case ST_END_INTERFACE
:
2417 gfc_free_namespace (gfc_current_ns
);
2418 gfc_current_ns
= current_interface
.ns
;
2422 gfc_error ("Unexpected %s statement in INTERFACE block at %C",
2423 gfc_ascii_statement (st
));
2424 reject_statement ();
2425 gfc_free_namespace (gfc_current_ns
);
2430 /* Make sure that the generic name has the right attribute. */
2431 if (current_interface
.type
== INTERFACE_GENERIC
2432 && current_state
== COMP_NONE
)
2434 if (new_state
== COMP_FUNCTION
&& sym
)
2435 gfc_add_function (&sym
->attr
, sym
->name
, NULL
);
2436 else if (new_state
== COMP_SUBROUTINE
&& sym
)
2437 gfc_add_subroutine (&sym
->attr
, sym
->name
, NULL
);
2439 current_state
= new_state
;
2442 if (current_interface
.type
== INTERFACE_ABSTRACT
)
2444 gfc_add_abstract (&gfc_new_block
->attr
, &gfc_current_locus
);
2445 if (gfc_is_intrinsic_typename (gfc_new_block
->name
))
2446 gfc_error ("Name '%s' of ABSTRACT INTERFACE at %C "
2447 "cannot be the same as an intrinsic type",
2448 gfc_new_block
->name
);
2451 push_state (&s2
, new_state
, gfc_new_block
);
2452 accept_statement (st
);
2453 prog_unit
= gfc_new_block
;
2454 prog_unit
->formal_ns
= gfc_current_ns
;
2455 if (prog_unit
== prog_unit
->formal_ns
->proc_name
2456 && prog_unit
->ns
!= prog_unit
->formal_ns
)
2460 /* Read data declaration statements. */
2461 st
= parse_spec (ST_NONE
);
2463 /* Since the interface block does not permit an IMPLICIT statement,
2464 the default type for the function or the result must be taken
2465 from the formal namespace. */
2466 if (new_state
== COMP_FUNCTION
)
2468 if (prog_unit
->result
== prog_unit
2469 && prog_unit
->ts
.type
== BT_UNKNOWN
)
2470 gfc_set_default_type (prog_unit
, 1, prog_unit
->formal_ns
);
2471 else if (prog_unit
->result
!= prog_unit
2472 && prog_unit
->result
->ts
.type
== BT_UNKNOWN
)
2473 gfc_set_default_type (prog_unit
->result
, 1,
2474 prog_unit
->formal_ns
);
2477 if (st
!= ST_END_SUBROUTINE
&& st
!= ST_END_FUNCTION
)
2479 gfc_error ("Unexpected %s statement at %C in INTERFACE body",
2480 gfc_ascii_statement (st
));
2481 reject_statement ();
2485 /* Add EXTERNAL attribute to function or subroutine. */
2486 if (current_interface
.type
!= INTERFACE_ABSTRACT
&& !prog_unit
->attr
.dummy
)
2487 gfc_add_external (&prog_unit
->attr
, &gfc_current_locus
);
2489 current_interface
= save
;
2490 gfc_add_interface (prog_unit
);
2493 if (current_interface
.ns
2494 && current_interface
.ns
->proc_name
2495 && strcmp (current_interface
.ns
->proc_name
->name
,
2496 prog_unit
->name
) == 0)
2497 gfc_error ("INTERFACE procedure '%s' at %L has the same name as the "
2498 "enclosing procedure", prog_unit
->name
,
2499 ¤t_interface
.ns
->proc_name
->declared_at
);
2508 /* Associate function characteristics by going back to the function
2509 declaration and rematching the prefix. */
2512 match_deferred_characteristics (gfc_typespec
* ts
)
2515 match m
= MATCH_ERROR
;
2516 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
2518 loc
= gfc_current_locus
;
2520 gfc_current_locus
= gfc_current_block ()->declared_at
;
2523 gfc_buffer_error (1);
2524 m
= gfc_match_prefix (ts
);
2525 gfc_buffer_error (0);
2527 if (ts
->type
== BT_DERIVED
)
2535 /* Only permit one go at the characteristic association. */
2539 /* Set the function locus correctly. If we have not found the
2540 function name, there is an error. */
2542 && gfc_match ("function% %n", name
) == MATCH_YES
2543 && strcmp (name
, gfc_current_block ()->name
) == 0)
2545 gfc_current_block ()->declared_at
= gfc_current_locus
;
2546 gfc_commit_symbols ();
2551 gfc_undo_symbols ();
2554 gfc_current_locus
=loc
;
2559 /* Check specification-expressions in the function result of the currently
2560 parsed block and ensure they are typed (give an IMPLICIT type if necessary).
2561 For return types specified in a FUNCTION prefix, the IMPLICIT rules of the
2562 scope are not yet parsed so this has to be delayed up to parse_spec. */
2565 check_function_result_typed (void)
2567 gfc_typespec
* ts
= &gfc_current_ns
->proc_name
->result
->ts
;
2569 gcc_assert (gfc_current_state () == COMP_FUNCTION
);
2570 gcc_assert (ts
->type
!= BT_UNKNOWN
);
2572 /* Check type-parameters, at the moment only CHARACTER lengths possible. */
2573 /* TODO: Extend when KIND type parameters are implemented. */
2574 if (ts
->type
== BT_CHARACTER
&& ts
->u
.cl
&& ts
->u
.cl
->length
)
2575 gfc_expr_check_typed (ts
->u
.cl
->length
, gfc_current_ns
, true);
2579 /* Parse a set of specification statements. Returns the statement
2580 that doesn't fit. */
2582 static gfc_statement
2583 parse_spec (gfc_statement st
)
2586 bool function_result_typed
= false;
2587 bool bad_characteristic
= false;
2590 verify_st_order (&ss
, ST_NONE
, false);
2592 st
= next_statement ();
2594 /* If we are not inside a function or don't have a result specified so far,
2595 do nothing special about it. */
2596 if (gfc_current_state () != COMP_FUNCTION
)
2597 function_result_typed
= true;
2600 gfc_symbol
* proc
= gfc_current_ns
->proc_name
;
2603 if (proc
->result
->ts
.type
== BT_UNKNOWN
)
2604 function_result_typed
= true;
2609 /* If we're inside a BLOCK construct, some statements are disallowed.
2610 Check this here. Attribute declaration statements like INTENT, OPTIONAL
2611 or VALUE are also disallowed, but they don't have a particular ST_*
2612 key so we have to check for them individually in their matcher routine. */
2613 if (gfc_current_state () == COMP_BLOCK
)
2617 case ST_IMPLICIT_NONE
:
2620 case ST_EQUIVALENCE
:
2621 case ST_STATEMENT_FUNCTION
:
2622 gfc_error ("%s statement is not allowed inside of BLOCK at %C",
2623 gfc_ascii_statement (st
));
2624 reject_statement ();
2630 else if (gfc_current_state () == COMP_BLOCK_DATA
)
2631 /* Fortran 2008, C1116. */
2638 case ST_END_BLOCK_DATA
:
2640 case ST_EQUIVALENCE
:
2643 case ST_IMPLICIT_NONE
:
2644 case ST_DERIVED_DECL
:
2652 gfc_error ("%s statement is not allowed inside of BLOCK DATA at %C",
2653 gfc_ascii_statement (st
));
2654 reject_statement ();
2658 /* If we find a statement that can not be followed by an IMPLICIT statement
2659 (and thus we can expect to see none any further), type the function result
2660 if it has not yet been typed. Be careful not to give the END statement
2661 to verify_st_order! */
2662 if (!function_result_typed
&& st
!= ST_GET_FCN_CHARACTERISTICS
)
2664 bool verify_now
= false;
2666 if (st
== ST_END_FUNCTION
|| st
== ST_CONTAINS
)
2671 verify_st_order (&dummyss
, ST_NONE
, false);
2672 verify_st_order (&dummyss
, st
, false);
2674 if (!verify_st_order (&dummyss
, ST_IMPLICIT
, true))
2680 check_function_result_typed ();
2681 function_result_typed
= true;
2690 case ST_IMPLICIT_NONE
:
2692 if (!function_result_typed
)
2694 check_function_result_typed ();
2695 function_result_typed
= true;
2701 case ST_DATA
: /* Not allowed in interfaces */
2702 if (gfc_current_state () == COMP_INTERFACE
)
2712 case ST_DERIVED_DECL
:
2715 if (!verify_st_order (&ss
, st
, false))
2717 reject_statement ();
2718 st
= next_statement ();
2728 case ST_DERIVED_DECL
:
2734 if (gfc_current_state () != COMP_MODULE
)
2736 gfc_error ("%s statement must appear in a MODULE",
2737 gfc_ascii_statement (st
));
2738 reject_statement ();
2742 if (gfc_current_ns
->default_access
!= ACCESS_UNKNOWN
)
2744 gfc_error ("%s statement at %C follows another accessibility "
2745 "specification", gfc_ascii_statement (st
));
2746 reject_statement ();
2750 gfc_current_ns
->default_access
= (st
== ST_PUBLIC
)
2751 ? ACCESS_PUBLIC
: ACCESS_PRIVATE
;
2755 case ST_STATEMENT_FUNCTION
:
2756 if (gfc_current_state () == COMP_MODULE
)
2758 unexpected_statement (st
);
2766 accept_statement (st
);
2767 st
= next_statement ();
2771 accept_statement (st
);
2773 st
= next_statement ();
2776 case ST_GET_FCN_CHARACTERISTICS
:
2777 /* This statement triggers the association of a function's result
2779 ts
= &gfc_current_block ()->result
->ts
;
2780 if (match_deferred_characteristics (ts
) != MATCH_YES
)
2781 bad_characteristic
= true;
2783 st
= next_statement ();
2790 /* If match_deferred_characteristics failed, then there is an error. */
2791 if (bad_characteristic
)
2793 ts
= &gfc_current_block ()->result
->ts
;
2794 if (ts
->type
!= BT_DERIVED
)
2795 gfc_error ("Bad kind expression for function '%s' at %L",
2796 gfc_current_block ()->name
,
2797 &gfc_current_block ()->declared_at
);
2799 gfc_error ("The type for function '%s' at %L is not accessible",
2800 gfc_current_block ()->name
,
2801 &gfc_current_block ()->declared_at
);
2803 gfc_current_block ()->ts
.kind
= 0;
2804 /* Keep the derived type; if it's bad, it will be discovered later. */
2805 if (!(ts
->type
== BT_DERIVED
&& ts
->u
.derived
))
2806 ts
->type
= BT_UNKNOWN
;
2813 /* Parse a WHERE block, (not a simple WHERE statement). */
2816 parse_where_block (void)
2818 int seen_empty_else
;
2823 accept_statement (ST_WHERE_BLOCK
);
2824 top
= gfc_state_stack
->tail
;
2826 push_state (&s
, COMP_WHERE
, gfc_new_block
);
2828 d
= add_statement ();
2829 d
->expr1
= top
->expr1
;
2835 seen_empty_else
= 0;
2839 st
= next_statement ();
2845 case ST_WHERE_BLOCK
:
2846 parse_where_block ();
2851 accept_statement (st
);
2855 if (seen_empty_else
)
2857 gfc_error ("ELSEWHERE statement at %C follows previous "
2858 "unmasked ELSEWHERE");
2859 reject_statement ();
2863 if (new_st
.expr1
== NULL
)
2864 seen_empty_else
= 1;
2866 d
= new_level (gfc_state_stack
->head
);
2868 d
->expr1
= new_st
.expr1
;
2870 accept_statement (st
);
2875 accept_statement (st
);
2879 gfc_error ("Unexpected %s statement in WHERE block at %C",
2880 gfc_ascii_statement (st
));
2881 reject_statement ();
2885 while (st
!= ST_END_WHERE
);
2891 /* Parse a FORALL block (not a simple FORALL statement). */
2894 parse_forall_block (void)
2900 accept_statement (ST_FORALL_BLOCK
);
2901 top
= gfc_state_stack
->tail
;
2903 push_state (&s
, COMP_FORALL
, gfc_new_block
);
2905 d
= add_statement ();
2906 d
->op
= EXEC_FORALL
;
2911 st
= next_statement ();
2916 case ST_POINTER_ASSIGNMENT
:
2919 accept_statement (st
);
2922 case ST_WHERE_BLOCK
:
2923 parse_where_block ();
2926 case ST_FORALL_BLOCK
:
2927 parse_forall_block ();
2931 accept_statement (st
);
2938 gfc_error ("Unexpected %s statement in FORALL block at %C",
2939 gfc_ascii_statement (st
));
2941 reject_statement ();
2945 while (st
!= ST_END_FORALL
);
2951 static gfc_statement
parse_executable (gfc_statement
);
2953 /* parse the statements of an IF-THEN-ELSEIF-ELSE-ENDIF block. */
2956 parse_if_block (void)
2965 accept_statement (ST_IF_BLOCK
);
2967 top
= gfc_state_stack
->tail
;
2968 push_state (&s
, COMP_IF
, gfc_new_block
);
2970 new_st
.op
= EXEC_IF
;
2971 d
= add_statement ();
2973 d
->expr1
= top
->expr1
;
2979 st
= parse_executable (ST_NONE
);
2989 gfc_error ("ELSE IF statement at %C cannot follow ELSE "
2990 "statement at %L", &else_locus
);
2992 reject_statement ();
2996 d
= new_level (gfc_state_stack
->head
);
2998 d
->expr1
= new_st
.expr1
;
3000 accept_statement (st
);
3007 gfc_error ("Duplicate ELSE statements at %L and %C",
3009 reject_statement ();
3014 else_locus
= gfc_current_locus
;
3016 d
= new_level (gfc_state_stack
->head
);
3019 accept_statement (st
);
3027 unexpected_statement (st
);
3031 while (st
!= ST_ENDIF
);
3034 accept_statement (st
);
3038 /* Parse a SELECT block. */
3041 parse_select_block (void)
3047 accept_statement (ST_SELECT_CASE
);
3049 cp
= gfc_state_stack
->tail
;
3050 push_state (&s
, COMP_SELECT
, gfc_new_block
);
3052 /* Make sure that the next statement is a CASE or END SELECT. */
3055 st
= next_statement ();
3058 if (st
== ST_END_SELECT
)
3060 /* Empty SELECT CASE is OK. */
3061 accept_statement (st
);
3068 gfc_error ("Expected a CASE or END SELECT statement following SELECT "
3071 reject_statement ();
3074 /* At this point, we're got a nonempty select block. */
3075 cp
= new_level (cp
);
3078 accept_statement (st
);
3082 st
= parse_executable (ST_NONE
);
3089 cp
= new_level (gfc_state_stack
->head
);
3091 gfc_clear_new_st ();
3093 accept_statement (st
);
3099 /* Can't have an executable statement because of
3100 parse_executable(). */
3102 unexpected_statement (st
);
3106 while (st
!= ST_END_SELECT
);
3109 accept_statement (st
);
3113 /* Pop the current selector from the SELECT TYPE stack. */
3116 select_type_pop (void)
3118 gfc_select_type_stack
*old
= select_type_stack
;
3119 select_type_stack
= old
->prev
;
3124 /* Parse a SELECT TYPE construct (F03:R821). */
3127 parse_select_type_block (void)
3133 accept_statement (ST_SELECT_TYPE
);
3135 cp
= gfc_state_stack
->tail
;
3136 push_state (&s
, COMP_SELECT_TYPE
, gfc_new_block
);
3138 /* Make sure that the next statement is a TYPE IS, CLASS IS, CLASS DEFAULT
3142 st
= next_statement ();
3145 if (st
== ST_END_SELECT
)
3146 /* Empty SELECT CASE is OK. */
3148 if (st
== ST_TYPE_IS
|| st
== ST_CLASS_IS
)
3151 gfc_error ("Expected TYPE IS, CLASS IS or END SELECT statement "
3152 "following SELECT TYPE at %C");
3154 reject_statement ();
3157 /* At this point, we're got a nonempty select block. */
3158 cp
= new_level (cp
);
3161 accept_statement (st
);
3165 st
= parse_executable (ST_NONE
);
3173 cp
= new_level (gfc_state_stack
->head
);
3175 gfc_clear_new_st ();
3177 accept_statement (st
);
3183 /* Can't have an executable statement because of
3184 parse_executable(). */
3186 unexpected_statement (st
);
3190 while (st
!= ST_END_SELECT
);
3194 accept_statement (st
);
3195 gfc_current_ns
= gfc_current_ns
->parent
;
3200 /* Given a symbol, make sure it is not an iteration variable for a DO
3201 statement. This subroutine is called when the symbol is seen in a
3202 context that causes it to become redefined. If the symbol is an
3203 iterator, we generate an error message and return nonzero. */
3206 gfc_check_do_variable (gfc_symtree
*st
)
3210 for (s
=gfc_state_stack
; s
; s
= s
->previous
)
3211 if (s
->do_variable
== st
)
3213 gfc_error_now("Variable '%s' at %C cannot be redefined inside "
3214 "loop beginning at %L", st
->name
, &s
->head
->loc
);
3222 /* Checks to see if the current statement label closes an enddo.
3223 Returns 0 if not, 1 if closes an ENDDO correctly, or 2 (and issues
3224 an error) if it incorrectly closes an ENDDO. */
3227 check_do_closure (void)
3231 if (gfc_statement_label
== NULL
)
3234 for (p
= gfc_state_stack
; p
; p
= p
->previous
)
3235 if (p
->state
== COMP_DO
|| p
->state
== COMP_DO_CONCURRENT
)
3239 return 0; /* No loops to close */
3241 if (p
->ext
.end_do_label
== gfc_statement_label
)
3243 if (p
== gfc_state_stack
)
3246 gfc_error ("End of nonblock DO statement at %C is within another block");
3250 /* At this point, the label doesn't terminate the innermost loop.
3251 Make sure it doesn't terminate another one. */
3252 for (; p
; p
= p
->previous
)
3253 if ((p
->state
== COMP_DO
|| p
->state
== COMP_DO_CONCURRENT
)
3254 && p
->ext
.end_do_label
== gfc_statement_label
)
3256 gfc_error ("End of nonblock DO statement at %C is interwoven "
3257 "with another DO loop");
3265 /* Parse a series of contained program units. */
3267 static void parse_progunit (gfc_statement
);
3270 /* Parse a CRITICAL block. */
3273 parse_critical_block (void)
3279 s
.ext
.end_do_label
= new_st
.label1
;
3281 accept_statement (ST_CRITICAL
);
3282 top
= gfc_state_stack
->tail
;
3284 push_state (&s
, COMP_CRITICAL
, gfc_new_block
);
3286 d
= add_statement ();
3287 d
->op
= EXEC_CRITICAL
;
3292 st
= parse_executable (ST_NONE
);
3300 case ST_END_CRITICAL
:
3301 if (s
.ext
.end_do_label
!= NULL
3302 && s
.ext
.end_do_label
!= gfc_statement_label
)
3303 gfc_error_now ("Statement label in END CRITICAL at %C does not "
3304 "match CRITICAL label");
3306 if (gfc_statement_label
!= NULL
)
3308 new_st
.op
= EXEC_NOP
;
3314 unexpected_statement (st
);
3318 while (st
!= ST_END_CRITICAL
);
3321 accept_statement (st
);
3325 /* Set up the local namespace for a BLOCK construct. */
3328 gfc_build_block_ns (gfc_namespace
*parent_ns
)
3330 gfc_namespace
* my_ns
;
3331 static int numblock
= 1;
3333 my_ns
= gfc_get_namespace (parent_ns
, 1);
3334 my_ns
->construct_entities
= 1;
3336 /* Give the BLOCK a symbol of flavor LABEL; this is later needed for correct
3337 code generation (so it must not be NULL).
3338 We set its recursive argument if our container procedure is recursive, so
3339 that local variables are accordingly placed on the stack when it
3340 will be necessary. */
3342 my_ns
->proc_name
= gfc_new_block
;
3346 char buffer
[20]; /* Enough to hold "block@2147483648\n". */
3348 snprintf(buffer
, sizeof(buffer
), "block@%d", numblock
++);
3349 gfc_get_symbol (buffer
, my_ns
, &my_ns
->proc_name
);
3350 t
= gfc_add_flavor (&my_ns
->proc_name
->attr
, FL_LABEL
,
3351 my_ns
->proc_name
->name
, NULL
);
3353 gfc_commit_symbol (my_ns
->proc_name
);
3356 if (parent_ns
->proc_name
)
3357 my_ns
->proc_name
->attr
.recursive
= parent_ns
->proc_name
->attr
.recursive
;
3363 /* Parse a BLOCK construct. */
3366 parse_block_construct (void)
3368 gfc_namespace
* my_ns
;
3371 gfc_notify_std (GFC_STD_F2008
, "BLOCK construct at %C");
3373 my_ns
= gfc_build_block_ns (gfc_current_ns
);
3375 new_st
.op
= EXEC_BLOCK
;
3376 new_st
.ext
.block
.ns
= my_ns
;
3377 new_st
.ext
.block
.assoc
= NULL
;
3378 accept_statement (ST_BLOCK
);
3380 push_state (&s
, COMP_BLOCK
, my_ns
->proc_name
);
3381 gfc_current_ns
= my_ns
;
3383 parse_progunit (ST_NONE
);
3385 gfc_current_ns
= gfc_current_ns
->parent
;
3390 /* Parse an ASSOCIATE construct. This is essentially a BLOCK construct
3391 behind the scenes with compiler-generated variables. */
3394 parse_associate (void)
3396 gfc_namespace
* my_ns
;
3399 gfc_association_list
* a
;
3401 gfc_notify_std (GFC_STD_F2003
, "ASSOCIATE construct at %C");
3403 my_ns
= gfc_build_block_ns (gfc_current_ns
);
3405 new_st
.op
= EXEC_BLOCK
;
3406 new_st
.ext
.block
.ns
= my_ns
;
3407 gcc_assert (new_st
.ext
.block
.assoc
);
3409 /* Add all associate-names as BLOCK variables. Creating them is enough
3410 for now, they'll get their values during trans-* phase. */
3411 gfc_current_ns
= my_ns
;
3412 for (a
= new_st
.ext
.block
.assoc
; a
; a
= a
->next
)
3416 if (gfc_get_sym_tree (a
->name
, NULL
, &a
->st
, false))
3420 sym
->attr
.flavor
= FL_VARIABLE
;
3422 sym
->declared_at
= a
->where
;
3423 gfc_set_sym_referenced (sym
);
3425 /* Initialize the typespec. It is not available in all cases,
3426 however, as it may only be set on the target during resolution.
3427 Still, sometimes it helps to have it right now -- especially
3428 for parsing component references on the associate-name
3429 in case of association to a derived-type. */
3430 sym
->ts
= a
->target
->ts
;
3433 accept_statement (ST_ASSOCIATE
);
3434 push_state (&s
, COMP_ASSOCIATE
, my_ns
->proc_name
);
3437 st
= parse_executable (ST_NONE
);
3444 accept_statement (st
);
3445 my_ns
->code
= gfc_state_stack
->head
;
3449 unexpected_statement (st
);
3453 gfc_current_ns
= gfc_current_ns
->parent
;
3458 /* Parse a DO loop. Note that the ST_CYCLE and ST_EXIT statements are
3459 handled inside of parse_executable(), because they aren't really
3463 parse_do_block (void)
3472 s
.ext
.end_do_label
= new_st
.label1
;
3474 if (new_st
.ext
.iterator
!= NULL
)
3475 stree
= new_st
.ext
.iterator
->var
->symtree
;
3479 accept_statement (ST_DO
);
3481 top
= gfc_state_stack
->tail
;
3482 push_state (&s
, do_op
== EXEC_DO_CONCURRENT
? COMP_DO_CONCURRENT
: COMP_DO
,
3485 s
.do_variable
= stree
;
3487 top
->block
= new_level (top
);
3488 top
->block
->op
= EXEC_DO
;
3491 st
= parse_executable (ST_NONE
);
3499 if (s
.ext
.end_do_label
!= NULL
3500 && s
.ext
.end_do_label
!= gfc_statement_label
)
3501 gfc_error_now ("Statement label in ENDDO at %C doesn't match "
3504 if (gfc_statement_label
!= NULL
)
3506 new_st
.op
= EXEC_NOP
;
3511 case ST_IMPLIED_ENDDO
:
3512 /* If the do-stmt of this DO construct has a do-construct-name,
3513 the corresponding end-do must be an end-do-stmt (with a matching
3514 name, but in that case we must have seen ST_ENDDO first).
3515 We only complain about this in pedantic mode. */
3516 if (gfc_current_block () != NULL
)
3517 gfc_error_now ("Named block DO at %L requires matching ENDDO name",
3518 &gfc_current_block()->declared_at
);
3523 unexpected_statement (st
);
3528 accept_statement (st
);
3532 /* Parse the statements of OpenMP do/parallel do. */
3534 static gfc_statement
3535 parse_omp_do (gfc_statement omp_st
)
3541 accept_statement (omp_st
);
3543 cp
= gfc_state_stack
->tail
;
3544 push_state (&s
, COMP_OMP_STRUCTURED_BLOCK
, NULL
);
3545 np
= new_level (cp
);
3551 st
= next_statement ();
3554 else if (st
== ST_DO
)
3557 unexpected_statement (st
);
3561 if (gfc_statement_label
!= NULL
3562 && gfc_state_stack
->previous
!= NULL
3563 && gfc_state_stack
->previous
->state
== COMP_DO
3564 && gfc_state_stack
->previous
->ext
.end_do_label
== gfc_statement_label
)
3572 there should be no !$OMP END DO. */
3574 return ST_IMPLIED_ENDDO
;
3577 check_do_closure ();
3580 st
= next_statement ();
3581 if (st
== (omp_st
== ST_OMP_DO
? ST_OMP_END_DO
: ST_OMP_END_PARALLEL_DO
))
3583 if (new_st
.op
== EXEC_OMP_END_NOWAIT
)
3584 cp
->ext
.omp_clauses
->nowait
|= new_st
.ext
.omp_bool
;
3586 gcc_assert (new_st
.op
== EXEC_NOP
);
3587 gfc_clear_new_st ();
3588 gfc_commit_symbols ();
3589 gfc_warning_check ();
3590 st
= next_statement ();
3596 /* Parse the statements of OpenMP atomic directive. */
3598 static gfc_statement
3599 parse_omp_atomic (void)
3606 accept_statement (ST_OMP_ATOMIC
);
3608 cp
= gfc_state_stack
->tail
;
3609 push_state (&s
, COMP_OMP_STRUCTURED_BLOCK
, NULL
);
3610 np
= new_level (cp
);
3613 count
= 1 + (cp
->ext
.omp_atomic
== GFC_OMP_ATOMIC_CAPTURE
);
3617 st
= next_statement ();
3620 else if (st
== ST_ASSIGNMENT
)
3622 accept_statement (st
);
3626 unexpected_statement (st
);
3631 st
= next_statement ();
3632 if (st
== ST_OMP_END_ATOMIC
)
3634 gfc_clear_new_st ();
3635 gfc_commit_symbols ();
3636 gfc_warning_check ();
3637 st
= next_statement ();
3639 else if (cp
->ext
.omp_atomic
== GFC_OMP_ATOMIC_CAPTURE
)
3640 gfc_error ("Missing !$OMP END ATOMIC after !$OMP ATOMIC CAPTURE at %C");
3645 /* Parse the statements of an OpenMP structured block. */
3648 parse_omp_structured_block (gfc_statement omp_st
, bool workshare_stmts_only
)
3650 gfc_statement st
, omp_end_st
;
3654 accept_statement (omp_st
);
3656 cp
= gfc_state_stack
->tail
;
3657 push_state (&s
, COMP_OMP_STRUCTURED_BLOCK
, NULL
);
3658 np
= new_level (cp
);
3664 case ST_OMP_PARALLEL
:
3665 omp_end_st
= ST_OMP_END_PARALLEL
;
3667 case ST_OMP_PARALLEL_SECTIONS
:
3668 omp_end_st
= ST_OMP_END_PARALLEL_SECTIONS
;
3670 case ST_OMP_SECTIONS
:
3671 omp_end_st
= ST_OMP_END_SECTIONS
;
3673 case ST_OMP_ORDERED
:
3674 omp_end_st
= ST_OMP_END_ORDERED
;
3676 case ST_OMP_CRITICAL
:
3677 omp_end_st
= ST_OMP_END_CRITICAL
;
3680 omp_end_st
= ST_OMP_END_MASTER
;
3683 omp_end_st
= ST_OMP_END_SINGLE
;
3686 omp_end_st
= ST_OMP_END_TASK
;
3688 case ST_OMP_WORKSHARE
:
3689 omp_end_st
= ST_OMP_END_WORKSHARE
;
3691 case ST_OMP_PARALLEL_WORKSHARE
:
3692 omp_end_st
= ST_OMP_END_PARALLEL_WORKSHARE
;
3700 if (workshare_stmts_only
)
3702 /* Inside of !$omp workshare, only
3705 where statements and constructs
3706 forall statements and constructs
3710 are allowed. For !$omp critical these
3711 restrictions apply recursively. */
3714 st
= next_statement ();
3725 accept_statement (st
);
3728 case ST_WHERE_BLOCK
:
3729 parse_where_block ();
3732 case ST_FORALL_BLOCK
:
3733 parse_forall_block ();
3736 case ST_OMP_PARALLEL
:
3737 case ST_OMP_PARALLEL_SECTIONS
:
3738 parse_omp_structured_block (st
, false);
3741 case ST_OMP_PARALLEL_WORKSHARE
:
3742 case ST_OMP_CRITICAL
:
3743 parse_omp_structured_block (st
, true);
3746 case ST_OMP_PARALLEL_DO
:
3747 st
= parse_omp_do (st
);
3751 st
= parse_omp_atomic ();
3762 st
= next_statement ();
3766 st
= parse_executable (ST_NONE
);
3769 else if (st
== ST_OMP_SECTION
3770 && (omp_st
== ST_OMP_SECTIONS
3771 || omp_st
== ST_OMP_PARALLEL_SECTIONS
))
3773 np
= new_level (np
);
3777 else if (st
!= omp_end_st
)
3778 unexpected_statement (st
);
3780 while (st
!= omp_end_st
);
3784 case EXEC_OMP_END_NOWAIT
:
3785 cp
->ext
.omp_clauses
->nowait
|= new_st
.ext
.omp_bool
;
3787 case EXEC_OMP_CRITICAL
:
3788 if (((cp
->ext
.omp_name
== NULL
) ^ (new_st
.ext
.omp_name
== NULL
))
3789 || (new_st
.ext
.omp_name
!= NULL
3790 && strcmp (cp
->ext
.omp_name
, new_st
.ext
.omp_name
) != 0))
3791 gfc_error ("Name after !$omp critical and !$omp end critical does "
3793 free (CONST_CAST (char *, new_st
.ext
.omp_name
));
3795 case EXEC_OMP_END_SINGLE
:
3796 cp
->ext
.omp_clauses
->lists
[OMP_LIST_COPYPRIVATE
]
3797 = new_st
.ext
.omp_clauses
->lists
[OMP_LIST_COPYPRIVATE
];
3798 new_st
.ext
.omp_clauses
->lists
[OMP_LIST_COPYPRIVATE
] = NULL
;
3799 gfc_free_omp_clauses (new_st
.ext
.omp_clauses
);
3807 gfc_clear_new_st ();
3808 gfc_commit_symbols ();
3809 gfc_warning_check ();
3814 /* Accept a series of executable statements. We return the first
3815 statement that doesn't fit to the caller. Any block statements are
3816 passed on to the correct handler, which usually passes the buck
3819 static gfc_statement
3820 parse_executable (gfc_statement st
)
3825 st
= next_statement ();
3829 close_flag
= check_do_closure ();
3834 case ST_END_PROGRAM
:
3837 case ST_END_FUNCTION
:
3842 case ST_END_SUBROUTINE
:
3847 case ST_SELECT_CASE
:
3848 gfc_error ("%s statement at %C cannot terminate a non-block "
3849 "DO loop", gfc_ascii_statement (st
));
3862 gfc_notify_std (GFC_STD_F95_OBS
, "DATA statement at %C after the "
3863 "first executable statement");
3869 accept_statement (st
);
3870 if (close_flag
== 1)
3871 return ST_IMPLIED_ENDDO
;
3875 parse_block_construct ();
3886 case ST_SELECT_CASE
:
3887 parse_select_block ();
3890 case ST_SELECT_TYPE
:
3891 parse_select_type_block();
3896 if (check_do_closure () == 1)
3897 return ST_IMPLIED_ENDDO
;
3901 parse_critical_block ();
3904 case ST_WHERE_BLOCK
:
3905 parse_where_block ();
3908 case ST_FORALL_BLOCK
:
3909 parse_forall_block ();
3912 case ST_OMP_PARALLEL
:
3913 case ST_OMP_PARALLEL_SECTIONS
:
3914 case ST_OMP_SECTIONS
:
3915 case ST_OMP_ORDERED
:
3916 case ST_OMP_CRITICAL
:
3920 parse_omp_structured_block (st
, false);
3923 case ST_OMP_WORKSHARE
:
3924 case ST_OMP_PARALLEL_WORKSHARE
:
3925 parse_omp_structured_block (st
, true);
3929 case ST_OMP_PARALLEL_DO
:
3930 st
= parse_omp_do (st
);
3931 if (st
== ST_IMPLIED_ENDDO
)
3936 st
= parse_omp_atomic ();
3943 st
= next_statement ();
3948 /* Fix the symbols for sibling functions. These are incorrectly added to
3949 the child namespace as the parser didn't know about this procedure. */
3952 gfc_fixup_sibling_symbols (gfc_symbol
*sym
, gfc_namespace
*siblings
)
3956 gfc_symbol
*old_sym
;
3958 for (ns
= siblings
; ns
; ns
= ns
->sibling
)
3960 st
= gfc_find_symtree (ns
->sym_root
, sym
->name
);
3962 if (!st
|| (st
->n
.sym
->attr
.dummy
&& ns
== st
->n
.sym
->ns
))
3963 goto fixup_contained
;
3965 if ((st
->n
.sym
->attr
.flavor
== FL_DERIVED
3966 && sym
->attr
.generic
&& sym
->attr
.function
)
3967 ||(sym
->attr
.flavor
== FL_DERIVED
3968 && st
->n
.sym
->attr
.generic
&& st
->n
.sym
->attr
.function
))
3969 goto fixup_contained
;
3971 old_sym
= st
->n
.sym
;
3972 if (old_sym
->ns
== ns
3973 && !old_sym
->attr
.contained
3975 /* By 14.6.1.3, host association should be excluded
3976 for the following. */
3977 && !(old_sym
->attr
.external
3978 || (old_sym
->ts
.type
!= BT_UNKNOWN
3979 && !old_sym
->attr
.implicit_type
)
3980 || old_sym
->attr
.flavor
== FL_PARAMETER
3981 || old_sym
->attr
.use_assoc
3982 || old_sym
->attr
.in_common
3983 || old_sym
->attr
.in_equivalence
3984 || old_sym
->attr
.data
3985 || old_sym
->attr
.dummy
3986 || old_sym
->attr
.result
3987 || old_sym
->attr
.dimension
3988 || old_sym
->attr
.allocatable
3989 || old_sym
->attr
.intrinsic
3990 || old_sym
->attr
.generic
3991 || old_sym
->attr
.flavor
== FL_NAMELIST
3992 || old_sym
->attr
.flavor
== FL_LABEL
3993 || old_sym
->attr
.proc
== PROC_ST_FUNCTION
))
3995 /* Replace it with the symbol from the parent namespace. */
3999 gfc_release_symbol (old_sym
);
4003 /* Do the same for any contained procedures. */
4004 gfc_fixup_sibling_symbols (sym
, ns
->contained
);
4009 parse_contained (int module
)
4011 gfc_namespace
*ns
, *parent_ns
, *tmp
;
4012 gfc_state_data s1
, s2
;
4016 int contains_statements
= 0;
4019 push_state (&s1
, COMP_CONTAINS
, NULL
);
4020 parent_ns
= gfc_current_ns
;
4024 gfc_current_ns
= gfc_get_namespace (parent_ns
, 1);
4026 gfc_current_ns
->sibling
= parent_ns
->contained
;
4027 parent_ns
->contained
= gfc_current_ns
;
4030 /* Process the next available statement. We come here if we got an error
4031 and rejected the last statement. */
4032 st
= next_statement ();
4041 contains_statements
= 1;
4042 accept_statement (st
);
4045 (st
== ST_FUNCTION
) ? COMP_FUNCTION
: COMP_SUBROUTINE
,
4048 /* For internal procedures, create/update the symbol in the
4049 parent namespace. */
4053 if (gfc_get_symbol (gfc_new_block
->name
, parent_ns
, &sym
))
4054 gfc_error ("Contained procedure '%s' at %C is already "
4055 "ambiguous", gfc_new_block
->name
);
4058 if (gfc_add_procedure (&sym
->attr
, PROC_INTERNAL
,
4060 &gfc_new_block
->declared_at
))
4062 if (st
== ST_FUNCTION
)
4063 gfc_add_function (&sym
->attr
, sym
->name
,
4064 &gfc_new_block
->declared_at
);
4066 gfc_add_subroutine (&sym
->attr
, sym
->name
,
4067 &gfc_new_block
->declared_at
);
4071 gfc_commit_symbols ();
4074 sym
= gfc_new_block
;
4076 /* Mark this as a contained function, so it isn't replaced
4077 by other module functions. */
4078 sym
->attr
.contained
= 1;
4080 /* Set implicit_pure so that it can be reset if any of the
4081 tests for purity fail. This is used for some optimisation
4082 during translation. */
4083 if (!sym
->attr
.pure
)
4084 sym
->attr
.implicit_pure
= 1;
4086 parse_progunit (ST_NONE
);
4088 /* Fix up any sibling functions that refer to this one. */
4089 gfc_fixup_sibling_symbols (sym
, gfc_current_ns
);
4090 /* Or refer to any of its alternate entry points. */
4091 for (el
= gfc_current_ns
->entries
; el
; el
= el
->next
)
4092 gfc_fixup_sibling_symbols (el
->sym
, gfc_current_ns
);
4094 gfc_current_ns
->code
= s2
.head
;
4095 gfc_current_ns
= parent_ns
;
4100 /* These statements are associated with the end of the host unit. */
4101 case ST_END_FUNCTION
:
4103 case ST_END_PROGRAM
:
4104 case ST_END_SUBROUTINE
:
4105 accept_statement (st
);
4106 gfc_current_ns
->code
= s1
.head
;
4110 gfc_error ("Unexpected %s statement in CONTAINS section at %C",
4111 gfc_ascii_statement (st
));
4112 reject_statement ();
4118 while (st
!= ST_END_FUNCTION
&& st
!= ST_END_SUBROUTINE
4119 && st
!= ST_END_MODULE
&& st
!= ST_END_PROGRAM
);
4121 /* The first namespace in the list is guaranteed to not have
4122 anything (worthwhile) in it. */
4123 tmp
= gfc_current_ns
;
4124 gfc_current_ns
= parent_ns
;
4125 if (seen_error
&& tmp
->refs
> 1)
4126 gfc_free_namespace (tmp
);
4128 ns
= gfc_current_ns
->contained
;
4129 gfc_current_ns
->contained
= ns
->sibling
;
4130 gfc_free_namespace (ns
);
4133 if (!contains_statements
)
4134 gfc_notify_std (GFC_STD_F2008
, "CONTAINS statement without "
4135 "FUNCTION or SUBROUTINE statement at %C");
4139 /* Parse a PROGRAM, SUBROUTINE, FUNCTION unit or BLOCK construct. */
4142 parse_progunit (gfc_statement st
)
4147 st
= parse_spec (st
);
4154 /* This is not allowed within BLOCK! */
4155 if (gfc_current_state () != COMP_BLOCK
)
4160 accept_statement (st
);
4167 if (gfc_current_state () == COMP_FUNCTION
)
4168 gfc_check_function_type (gfc_current_ns
);
4173 st
= parse_executable (st
);
4181 /* This is not allowed within BLOCK! */
4182 if (gfc_current_state () != COMP_BLOCK
)
4187 accept_statement (st
);
4194 unexpected_statement (st
);
4195 reject_statement ();
4196 st
= next_statement ();
4202 for (p
= gfc_state_stack
; p
; p
= p
->previous
)
4203 if (p
->state
== COMP_CONTAINS
)
4206 if (gfc_find_state (COMP_MODULE
) == true)
4211 gfc_error ("CONTAINS statement at %C is already in a contained "
4213 reject_statement ();
4214 st
= next_statement ();
4218 parse_contained (0);
4221 gfc_current_ns
->code
= gfc_state_stack
->head
;
4225 /* Come here to complain about a global symbol already in use as
4229 gfc_global_used (gfc_gsymbol
*sym
, locus
*where
)
4234 where
= &gfc_current_locus
;
4244 case GSYM_SUBROUTINE
:
4245 name
= "SUBROUTINE";
4250 case GSYM_BLOCK_DATA
:
4251 name
= "BLOCK DATA";
4257 gfc_internal_error ("gfc_global_used(): Bad type");
4261 if (sym
->binding_label
)
4262 gfc_error ("Global binding name '%s' at %L is already being used as a %s "
4263 "at %L", sym
->binding_label
, where
, name
, &sym
->where
);
4265 gfc_error ("Global name '%s' at %L is already being used as a %s at %L",
4266 sym
->name
, where
, name
, &sym
->where
);
4270 /* Parse a block data program unit. */
4273 parse_block_data (void)
4276 static locus blank_locus
;
4277 static int blank_block
=0;
4280 gfc_current_ns
->proc_name
= gfc_new_block
;
4281 gfc_current_ns
->is_block_data
= 1;
4283 if (gfc_new_block
== NULL
)
4286 gfc_error ("Blank BLOCK DATA at %C conflicts with "
4287 "prior BLOCK DATA at %L", &blank_locus
);
4291 blank_locus
= gfc_current_locus
;
4296 s
= gfc_get_gsymbol (gfc_new_block
->name
);
4298 || (s
->type
!= GSYM_UNKNOWN
&& s
->type
!= GSYM_BLOCK_DATA
))
4299 gfc_global_used (s
, &gfc_new_block
->declared_at
);
4302 s
->type
= GSYM_BLOCK_DATA
;
4303 s
->where
= gfc_new_block
->declared_at
;
4308 st
= parse_spec (ST_NONE
);
4310 while (st
!= ST_END_BLOCK_DATA
)
4312 gfc_error ("Unexpected %s statement in BLOCK DATA at %C",
4313 gfc_ascii_statement (st
));
4314 reject_statement ();
4315 st
= next_statement ();
4320 /* Parse a module subprogram. */
4329 s
= gfc_get_gsymbol (gfc_new_block
->name
);
4330 if (s
->defined
|| (s
->type
!= GSYM_UNKNOWN
&& s
->type
!= GSYM_MODULE
))
4331 gfc_global_used (s
, &gfc_new_block
->declared_at
);
4334 s
->type
= GSYM_MODULE
;
4335 s
->where
= gfc_new_block
->declared_at
;
4339 st
= parse_spec (ST_NONE
);
4349 parse_contained (1);
4353 accept_statement (st
);
4357 gfc_error ("Unexpected %s statement in MODULE at %C",
4358 gfc_ascii_statement (st
));
4361 reject_statement ();
4362 st
= next_statement ();
4366 /* Make sure not to free the namespace twice on error. */
4368 s
->ns
= gfc_current_ns
;
4372 /* Add a procedure name to the global symbol table. */
4375 add_global_procedure (bool sub
)
4379 /* Only in Fortran 2003: For procedures with a binding label also the Fortran
4380 name is a global identifier. */
4381 if (!gfc_new_block
->binding_label
|| gfc_notification_std (GFC_STD_F2008
))
4383 s
= gfc_get_gsymbol (gfc_new_block
->name
);
4386 || (s
->type
!= GSYM_UNKNOWN
4387 && s
->type
!= (sub
? GSYM_SUBROUTINE
: GSYM_FUNCTION
)))
4389 gfc_global_used (s
, &gfc_new_block
->declared_at
);
4390 /* Silence follow-up errors. */
4391 gfc_new_block
->binding_label
= NULL
;
4395 s
->type
= sub
? GSYM_SUBROUTINE
: GSYM_FUNCTION
;
4396 s
->sym_name
= gfc_new_block
->name
;
4397 s
->where
= gfc_new_block
->declared_at
;
4399 s
->ns
= gfc_current_ns
;
4403 /* Don't add the symbol multiple times. */
4404 if (gfc_new_block
->binding_label
4405 && (!gfc_notification_std (GFC_STD_F2008
)
4406 || strcmp (gfc_new_block
->name
, gfc_new_block
->binding_label
) != 0))
4408 s
= gfc_get_gsymbol (gfc_new_block
->binding_label
);
4411 || (s
->type
!= GSYM_UNKNOWN
4412 && s
->type
!= (sub
? GSYM_SUBROUTINE
: GSYM_FUNCTION
)))
4414 gfc_global_used (s
, &gfc_new_block
->declared_at
);
4415 /* Silence follow-up errors. */
4416 gfc_new_block
->binding_label
= NULL
;
4420 s
->type
= sub
? GSYM_SUBROUTINE
: GSYM_FUNCTION
;
4421 s
->sym_name
= gfc_new_block
->name
;
4422 s
->binding_label
= gfc_new_block
->binding_label
;
4423 s
->where
= gfc_new_block
->declared_at
;
4425 s
->ns
= gfc_current_ns
;
4431 /* Add a program to the global symbol table. */
4434 add_global_program (void)
4438 if (gfc_new_block
== NULL
)
4440 s
= gfc_get_gsymbol (gfc_new_block
->name
);
4442 if (s
->defined
|| (s
->type
!= GSYM_UNKNOWN
&& s
->type
!= GSYM_PROGRAM
))
4443 gfc_global_used (s
, &gfc_new_block
->declared_at
);
4446 s
->type
= GSYM_PROGRAM
;
4447 s
->where
= gfc_new_block
->declared_at
;
4449 s
->ns
= gfc_current_ns
;
4454 /* Resolve all the program units. */
4456 resolve_all_program_units (gfc_namespace
*gfc_global_ns_list
)
4458 gfc_free_dt_list ();
4459 gfc_current_ns
= gfc_global_ns_list
;
4460 for (; gfc_current_ns
; gfc_current_ns
= gfc_current_ns
->sibling
)
4462 if (gfc_current_ns
->proc_name
4463 && gfc_current_ns
->proc_name
->attr
.flavor
== FL_MODULE
)
4464 continue; /* Already resolved. */
4466 if (gfc_current_ns
->proc_name
)
4467 gfc_current_locus
= gfc_current_ns
->proc_name
->declared_at
;
4468 gfc_resolve (gfc_current_ns
);
4469 gfc_current_ns
->derived_types
= gfc_derived_types
;
4470 gfc_derived_types
= NULL
;
4476 clean_up_modules (gfc_gsymbol
*gsym
)
4481 clean_up_modules (gsym
->left
);
4482 clean_up_modules (gsym
->right
);
4484 if (gsym
->type
!= GSYM_MODULE
|| !gsym
->ns
)
4487 gfc_current_ns
= gsym
->ns
;
4488 gfc_derived_types
= gfc_current_ns
->derived_types
;
4495 /* Translate all the program units. This could be in a different order
4496 to resolution if there are forward references in the file. */
4498 translate_all_program_units (gfc_namespace
*gfc_global_ns_list
,
4503 gfc_current_ns
= gfc_global_ns_list
;
4504 gfc_get_errors (NULL
, &errors
);
4506 /* If the main program is in the translation unit and we have
4507 -fcoarray=libs, generate the static variables. */
4508 if (gfc_option
.coarray
== GFC_FCOARRAY_LIB
&& main_in_tu
)
4509 gfc_init_coarray_decl (true);
4511 /* We first translate all modules to make sure that later parts
4512 of the program can use the decl. Then we translate the nonmodules. */
4514 for (; !errors
&& gfc_current_ns
; gfc_current_ns
= gfc_current_ns
->sibling
)
4516 if (!gfc_current_ns
->proc_name
4517 || gfc_current_ns
->proc_name
->attr
.flavor
!= FL_MODULE
)
4520 gfc_current_locus
= gfc_current_ns
->proc_name
->declared_at
;
4521 gfc_derived_types
= gfc_current_ns
->derived_types
;
4522 gfc_generate_module_code (gfc_current_ns
);
4523 gfc_current_ns
->translated
= 1;
4526 gfc_current_ns
= gfc_global_ns_list
;
4527 for (; !errors
&& gfc_current_ns
; gfc_current_ns
= gfc_current_ns
->sibling
)
4529 if (gfc_current_ns
->proc_name
4530 && gfc_current_ns
->proc_name
->attr
.flavor
== FL_MODULE
)
4533 gfc_current_locus
= gfc_current_ns
->proc_name
->declared_at
;
4534 gfc_derived_types
= gfc_current_ns
->derived_types
;
4535 gfc_generate_code (gfc_current_ns
);
4536 gfc_current_ns
->translated
= 1;
4539 /* Clean up all the namespaces after translation. */
4540 gfc_current_ns
= gfc_global_ns_list
;
4541 for (;gfc_current_ns
;)
4545 if (gfc_current_ns
->proc_name
4546 && gfc_current_ns
->proc_name
->attr
.flavor
== FL_MODULE
)
4548 gfc_current_ns
= gfc_current_ns
->sibling
;
4552 ns
= gfc_current_ns
->sibling
;
4553 gfc_derived_types
= gfc_current_ns
->derived_types
;
4555 gfc_current_ns
= ns
;
4558 clean_up_modules (gfc_gsym_root
);
4562 /* Top level parser. */
4565 gfc_parse_file (void)
4567 int seen_program
, errors_before
, errors
;
4568 gfc_state_data top
, s
;
4571 gfc_namespace
*next
;
4573 gfc_start_source_files ();
4575 top
.state
= COMP_NONE
;
4577 top
.previous
= NULL
;
4578 top
.head
= top
.tail
= NULL
;
4579 top
.do_variable
= NULL
;
4581 gfc_state_stack
= &top
;
4583 gfc_clear_new_st ();
4585 gfc_statement_label
= NULL
;
4587 if (setjmp (eof_buf
))
4588 return false; /* Come here on unexpected EOF */
4590 /* Prepare the global namespace that will contain the
4592 gfc_global_ns_list
= next
= NULL
;
4597 /* Exit early for empty files. */
4603 st
= next_statement ();
4612 goto duplicate_main
;
4614 prog_locus
= gfc_current_locus
;
4616 push_state (&s
, COMP_PROGRAM
, gfc_new_block
);
4617 main_program_symbol(gfc_current_ns
, gfc_new_block
->name
);
4618 accept_statement (st
);
4619 add_global_program ();
4620 parse_progunit (ST_NONE
);
4625 add_global_procedure (true);
4626 push_state (&s
, COMP_SUBROUTINE
, gfc_new_block
);
4627 accept_statement (st
);
4628 parse_progunit (ST_NONE
);
4633 add_global_procedure (false);
4634 push_state (&s
, COMP_FUNCTION
, gfc_new_block
);
4635 accept_statement (st
);
4636 parse_progunit (ST_NONE
);
4641 push_state (&s
, COMP_BLOCK_DATA
, gfc_new_block
);
4642 accept_statement (st
);
4643 parse_block_data ();
4647 push_state (&s
, COMP_MODULE
, gfc_new_block
);
4648 accept_statement (st
);
4650 gfc_get_errors (NULL
, &errors_before
);
4654 /* Anything else starts a nameless main program block. */
4657 goto duplicate_main
;
4659 prog_locus
= gfc_current_locus
;
4661 push_state (&s
, COMP_PROGRAM
, gfc_new_block
);
4662 main_program_symbol (gfc_current_ns
, "MAIN__");
4663 parse_progunit (st
);
4668 /* Handle the non-program units. */
4669 gfc_current_ns
->code
= s
.head
;
4671 gfc_resolve (gfc_current_ns
);
4673 /* Dump the parse tree if requested. */
4674 if (gfc_option
.dump_fortran_original
)
4675 gfc_dump_parse_tree (gfc_current_ns
, stdout
);
4677 gfc_get_errors (NULL
, &errors
);
4678 if (s
.state
== COMP_MODULE
)
4680 gfc_dump_module (s
.sym
->name
, errors_before
== errors
);
4681 gfc_current_ns
->derived_types
= gfc_derived_types
;
4682 gfc_derived_types
= NULL
;
4688 gfc_generate_code (gfc_current_ns
);
4696 /* The main program and non-contained procedures are put
4697 in the global namespace list, so that they can be processed
4698 later and all their interfaces resolved. */
4699 gfc_current_ns
->code
= s
.head
;
4702 for (; next
->sibling
; next
= next
->sibling
)
4704 next
->sibling
= gfc_current_ns
;
4707 gfc_global_ns_list
= gfc_current_ns
;
4709 next
= gfc_current_ns
;
4716 /* Do the resolution. */
4717 resolve_all_program_units (gfc_global_ns_list
);
4719 /* Do the parse tree dump. */
4721 = gfc_option
.dump_fortran_original
? gfc_global_ns_list
: NULL
;
4723 for (; gfc_current_ns
; gfc_current_ns
= gfc_current_ns
->sibling
)
4724 if (!gfc_current_ns
->proc_name
4725 || gfc_current_ns
->proc_name
->attr
.flavor
!= FL_MODULE
)
4727 gfc_dump_parse_tree (gfc_current_ns
, stdout
);
4728 fputs ("------------------------------------------\n\n", stdout
);
4731 /* Do the translation. */
4732 translate_all_program_units (gfc_global_ns_list
, seen_program
);
4734 gfc_end_source_files ();
4738 /* If we see a duplicate main program, shut down. If the second
4739 instance is an implied main program, i.e. data decls or executable
4740 statements, we're in for lots of errors. */
4741 gfc_error ("Two main PROGRAMs at %L and %C", &prog_locus
);
4742 reject_statement ();