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 /* Like match_word, but if str is matched, set a flag that it
80 match_word_omp_simd (const char *str
, match (*subr
) (void), locus
*old_locus
,
97 gfc_current_locus
= *old_locus
;
105 /* Load symbols from all USE statements encountered in this scoping unit. */
110 gfc_error_buf old_error
;
112 gfc_push_error (&old_error
);
113 gfc_buffer_error (0);
115 gfc_buffer_error (1);
116 gfc_pop_error (&old_error
);
117 gfc_commit_symbols ();
118 gfc_warning_check ();
119 gfc_current_ns
->old_cl_list
= gfc_current_ns
->cl_list
;
120 gfc_current_ns
->old_equiv
= gfc_current_ns
->equiv
;
121 last_was_use_stmt
= false;
125 /* Figure out what the next statement is, (mostly) regardless of
126 proper ordering. The do...while(0) is there to prevent if/else
129 #define match(keyword, subr, st) \
131 if (match_word (keyword, subr, &old_locus) == MATCH_YES) \
134 undo_new_statement (); \
138 /* This is a specialist version of decode_statement that is used
139 for the specification statements in a function, whose
140 characteristics are deferred into the specification statements.
141 eg.: INTEGER (king = mykind) foo ()
142 USE mymodule, ONLY mykind.....
143 The KIND parameter needs a return after USE or IMPORT, whereas
144 derived type declarations can occur anywhere, up the executable
145 block. ST_GET_FCN_CHARACTERISTICS is returned when we have run
146 out of the correct kind of specification statements. */
148 decode_specification_statement (void)
154 if (gfc_match_eos () == MATCH_YES
)
157 old_locus
= gfc_current_locus
;
159 if (match_word ("use", gfc_match_use
, &old_locus
) == MATCH_YES
)
161 last_was_use_stmt
= true;
166 undo_new_statement ();
167 if (last_was_use_stmt
)
171 match ("import", gfc_match_import
, ST_IMPORT
);
173 if (gfc_current_block ()->result
->ts
.type
!= BT_DERIVED
)
176 match (NULL
, gfc_match_st_function
, ST_STATEMENT_FUNCTION
);
177 match (NULL
, gfc_match_data_decl
, ST_DATA_DECL
);
178 match (NULL
, gfc_match_enumerator_def
, ST_ENUMERATOR
);
180 /* General statement matching: Instead of testing every possible
181 statement, we eliminate most possibilities by peeking at the
184 c
= gfc_peek_ascii_char ();
189 match ("abstract% interface", gfc_match_abstract_interface
,
191 match ("allocatable", gfc_match_allocatable
, ST_ATTR_DECL
);
192 match ("asynchronous", gfc_match_asynchronous
, ST_ATTR_DECL
);
196 match (NULL
, gfc_match_bind_c_stmt
, ST_ATTR_DECL
);
200 match ("codimension", gfc_match_codimension
, ST_ATTR_DECL
);
201 match ("contiguous", gfc_match_contiguous
, ST_ATTR_DECL
);
205 match ("data", gfc_match_data
, ST_DATA
);
206 match ("dimension", gfc_match_dimension
, ST_ATTR_DECL
);
210 match ("enum , bind ( c )", gfc_match_enum
, ST_ENUM
);
211 match ("entry% ", gfc_match_entry
, ST_ENTRY
);
212 match ("equivalence", gfc_match_equivalence
, ST_EQUIVALENCE
);
213 match ("external", gfc_match_external
, ST_ATTR_DECL
);
217 match ("format", gfc_match_format
, ST_FORMAT
);
224 match ("implicit", gfc_match_implicit
, ST_IMPLICIT
);
225 match ("implicit% none", gfc_match_implicit_none
, ST_IMPLICIT_NONE
);
226 match ("interface", gfc_match_interface
, ST_INTERFACE
);
227 match ("intent", gfc_match_intent
, ST_ATTR_DECL
);
228 match ("intrinsic", gfc_match_intrinsic
, ST_ATTR_DECL
);
235 match ("namelist", gfc_match_namelist
, ST_NAMELIST
);
239 match ("optional", gfc_match_optional
, ST_ATTR_DECL
);
243 match ("parameter", gfc_match_parameter
, ST_PARAMETER
);
244 match ("pointer", gfc_match_pointer
, ST_ATTR_DECL
);
245 if (gfc_match_private (&st
) == MATCH_YES
)
247 match ("procedure", gfc_match_procedure
, ST_PROCEDURE
);
248 if (gfc_match_public (&st
) == MATCH_YES
)
250 match ("protected", gfc_match_protected
, ST_ATTR_DECL
);
257 match ("save", gfc_match_save
, ST_ATTR_DECL
);
261 match ("target", gfc_match_target
, ST_ATTR_DECL
);
262 match ("type", gfc_match_derived_decl
, ST_DERIVED_DECL
);
269 match ("value", gfc_match_value
, ST_ATTR_DECL
);
270 match ("volatile", gfc_match_volatile
, ST_ATTR_DECL
);
277 /* This is not a specification statement. See if any of the matchers
278 has stored an error message of some sort. */
282 gfc_buffer_error (0);
283 gfc_current_locus
= old_locus
;
285 return ST_GET_FCN_CHARACTERISTICS
;
289 /* This is the primary 'decode_statement'. */
291 decode_statement (void)
299 gfc_enforce_clean_symbol_state ();
301 gfc_clear_error (); /* Clear any pending errors. */
302 gfc_clear_warning (); /* Clear any pending warnings. */
304 gfc_matching_function
= false;
306 if (gfc_match_eos () == MATCH_YES
)
309 if (gfc_current_state () == COMP_FUNCTION
310 && gfc_current_block ()->result
->ts
.kind
== -1)
311 return decode_specification_statement ();
313 old_locus
= gfc_current_locus
;
315 c
= gfc_peek_ascii_char ();
319 if (match_word ("use", gfc_match_use
, &old_locus
) == MATCH_YES
)
321 last_was_use_stmt
= true;
325 undo_new_statement ();
328 if (last_was_use_stmt
)
331 /* Try matching a data declaration or function declaration. The
332 input "REALFUNCTIONA(N)" can mean several things in different
333 contexts, so it (and its relatives) get special treatment. */
335 if (gfc_current_state () == COMP_NONE
336 || gfc_current_state () == COMP_INTERFACE
337 || gfc_current_state () == COMP_CONTAINS
)
339 gfc_matching_function
= true;
340 m
= gfc_match_function_decl ();
343 else if (m
== MATCH_ERROR
)
347 gfc_current_locus
= old_locus
;
349 gfc_matching_function
= false;
352 /* Match statements whose error messages are meant to be overwritten
353 by something better. */
355 match (NULL
, gfc_match_assignment
, ST_ASSIGNMENT
);
356 match (NULL
, gfc_match_pointer_assignment
, ST_POINTER_ASSIGNMENT
);
357 match (NULL
, gfc_match_st_function
, ST_STATEMENT_FUNCTION
);
359 match (NULL
, gfc_match_data_decl
, ST_DATA_DECL
);
360 match (NULL
, gfc_match_enumerator_def
, ST_ENUMERATOR
);
362 /* Try to match a subroutine statement, which has the same optional
363 prefixes that functions can have. */
365 if (gfc_match_subroutine () == MATCH_YES
)
366 return ST_SUBROUTINE
;
368 gfc_current_locus
= old_locus
;
370 /* Check for the IF, DO, SELECT, WHERE, FORALL, CRITICAL, BLOCK and ASSOCIATE
371 statements, which might begin with a block label. The match functions for
372 these statements are unusual in that their keyword is not seen before
373 the matcher is called. */
375 if (gfc_match_if (&st
) == MATCH_YES
)
378 gfc_current_locus
= old_locus
;
380 if (gfc_match_where (&st
) == MATCH_YES
)
383 gfc_current_locus
= old_locus
;
385 if (gfc_match_forall (&st
) == MATCH_YES
)
388 gfc_current_locus
= old_locus
;
390 match (NULL
, gfc_match_do
, ST_DO
);
391 match (NULL
, gfc_match_block
, ST_BLOCK
);
392 match (NULL
, gfc_match_associate
, ST_ASSOCIATE
);
393 match (NULL
, gfc_match_critical
, ST_CRITICAL
);
394 match (NULL
, gfc_match_select
, ST_SELECT_CASE
);
396 gfc_current_ns
= gfc_build_block_ns (gfc_current_ns
);
397 match (NULL
, gfc_match_select_type
, ST_SELECT_TYPE
);
399 gfc_current_ns
= gfc_current_ns
->parent
;
400 gfc_free_namespace (ns
);
402 /* General statement matching: Instead of testing every possible
403 statement, we eliminate most possibilities by peeking at the
409 match ("abstract% interface", gfc_match_abstract_interface
,
411 match ("allocate", gfc_match_allocate
, ST_ALLOCATE
);
412 match ("allocatable", gfc_match_allocatable
, ST_ATTR_DECL
);
413 match ("assign", gfc_match_assign
, ST_LABEL_ASSIGNMENT
);
414 match ("asynchronous", gfc_match_asynchronous
, ST_ATTR_DECL
);
418 match ("backspace", gfc_match_backspace
, ST_BACKSPACE
);
419 match ("block data", gfc_match_block_data
, ST_BLOCK_DATA
);
420 match (NULL
, gfc_match_bind_c_stmt
, ST_ATTR_DECL
);
424 match ("call", gfc_match_call
, ST_CALL
);
425 match ("close", gfc_match_close
, ST_CLOSE
);
426 match ("continue", gfc_match_continue
, ST_CONTINUE
);
427 match ("contiguous", gfc_match_contiguous
, ST_ATTR_DECL
);
428 match ("cycle", gfc_match_cycle
, ST_CYCLE
);
429 match ("case", gfc_match_case
, ST_CASE
);
430 match ("common", gfc_match_common
, ST_COMMON
);
431 match ("contains", gfc_match_eos
, ST_CONTAINS
);
432 match ("class", gfc_match_class_is
, ST_CLASS_IS
);
433 match ("codimension", gfc_match_codimension
, ST_ATTR_DECL
);
437 match ("deallocate", gfc_match_deallocate
, ST_DEALLOCATE
);
438 match ("data", gfc_match_data
, ST_DATA
);
439 match ("dimension", gfc_match_dimension
, ST_ATTR_DECL
);
443 match ("end file", gfc_match_endfile
, ST_END_FILE
);
444 match ("exit", gfc_match_exit
, ST_EXIT
);
445 match ("else", gfc_match_else
, ST_ELSE
);
446 match ("else where", gfc_match_elsewhere
, ST_ELSEWHERE
);
447 match ("else if", gfc_match_elseif
, ST_ELSEIF
);
448 match ("error stop", gfc_match_error_stop
, ST_ERROR_STOP
);
449 match ("enum , bind ( c )", gfc_match_enum
, ST_ENUM
);
451 if (gfc_match_end (&st
) == MATCH_YES
)
454 match ("entry% ", gfc_match_entry
, ST_ENTRY
);
455 match ("equivalence", gfc_match_equivalence
, ST_EQUIVALENCE
);
456 match ("external", gfc_match_external
, ST_ATTR_DECL
);
460 match ("final", gfc_match_final_decl
, ST_FINAL
);
461 match ("flush", gfc_match_flush
, ST_FLUSH
);
462 match ("format", gfc_match_format
, ST_FORMAT
);
466 match ("generic", gfc_match_generic
, ST_GENERIC
);
467 match ("go to", gfc_match_goto
, ST_GOTO
);
471 match ("inquire", gfc_match_inquire
, ST_INQUIRE
);
472 match ("implicit", gfc_match_implicit
, ST_IMPLICIT
);
473 match ("implicit% none", gfc_match_implicit_none
, ST_IMPLICIT_NONE
);
474 match ("import", gfc_match_import
, ST_IMPORT
);
475 match ("interface", gfc_match_interface
, ST_INTERFACE
);
476 match ("intent", gfc_match_intent
, ST_ATTR_DECL
);
477 match ("intrinsic", gfc_match_intrinsic
, ST_ATTR_DECL
);
481 match ("lock", gfc_match_lock
, ST_LOCK
);
485 match ("module% procedure", gfc_match_modproc
, ST_MODULE_PROC
);
486 match ("module", gfc_match_module
, ST_MODULE
);
490 match ("nullify", gfc_match_nullify
, ST_NULLIFY
);
491 match ("namelist", gfc_match_namelist
, ST_NAMELIST
);
495 match ("open", gfc_match_open
, ST_OPEN
);
496 match ("optional", gfc_match_optional
, ST_ATTR_DECL
);
500 match ("print", gfc_match_print
, ST_WRITE
);
501 match ("parameter", gfc_match_parameter
, ST_PARAMETER
);
502 match ("pause", gfc_match_pause
, ST_PAUSE
);
503 match ("pointer", gfc_match_pointer
, ST_ATTR_DECL
);
504 if (gfc_match_private (&st
) == MATCH_YES
)
506 match ("procedure", gfc_match_procedure
, ST_PROCEDURE
);
507 match ("program", gfc_match_program
, ST_PROGRAM
);
508 if (gfc_match_public (&st
) == MATCH_YES
)
510 match ("protected", gfc_match_protected
, ST_ATTR_DECL
);
514 match ("read", gfc_match_read
, ST_READ
);
515 match ("return", gfc_match_return
, ST_RETURN
);
516 match ("rewind", gfc_match_rewind
, ST_REWIND
);
520 match ("sequence", gfc_match_eos
, ST_SEQUENCE
);
521 match ("stop", gfc_match_stop
, ST_STOP
);
522 match ("save", gfc_match_save
, ST_ATTR_DECL
);
523 match ("sync all", gfc_match_sync_all
, ST_SYNC_ALL
);
524 match ("sync images", gfc_match_sync_images
, ST_SYNC_IMAGES
);
525 match ("sync memory", gfc_match_sync_memory
, ST_SYNC_MEMORY
);
529 match ("target", gfc_match_target
, ST_ATTR_DECL
);
530 match ("type", gfc_match_derived_decl
, ST_DERIVED_DECL
);
531 match ("type is", gfc_match_type_is
, ST_TYPE_IS
);
535 match ("unlock", gfc_match_unlock
, ST_UNLOCK
);
539 match ("value", gfc_match_value
, ST_ATTR_DECL
);
540 match ("volatile", gfc_match_volatile
, ST_ATTR_DECL
);
544 match ("wait", gfc_match_wait
, ST_WAIT
);
545 match ("write", gfc_match_write
, ST_WRITE
);
549 /* All else has failed, so give up. See if any of the matchers has
550 stored an error message of some sort. */
552 if (gfc_error_check () == 0)
553 gfc_error_now ("Unclassifiable statement at %C");
557 gfc_error_recovery ();
562 /* Like match, but set a flag simd_matched if keyword matched. */
563 #define matchs(keyword, subr, st) \
565 if (match_word_omp_simd (keyword, subr, &old_locus, \
566 &simd_matched) == MATCH_YES) \
569 undo_new_statement (); \
572 /* Like match, but don't match anything if not -fopenmp. */
573 #define matcho(keyword, subr, st) \
575 if (!gfc_option.gfc_flag_openmp) \
577 else if (match_word (keyword, subr, &old_locus) \
581 undo_new_statement (); \
585 decode_omp_directive (void)
589 bool simd_matched
= false;
591 gfc_enforce_clean_symbol_state ();
593 gfc_clear_error (); /* Clear any pending errors. */
594 gfc_clear_warning (); /* Clear any pending warnings. */
598 gfc_error_now ("OpenMP directives at %C may not appear in PURE "
599 "or ELEMENTAL procedures");
600 gfc_error_recovery ();
604 gfc_unset_implicit_pure (NULL
);
606 old_locus
= gfc_current_locus
;
608 /* General OpenMP directive matching: Instead of testing every possible
609 statement, we eliminate most possibilities by peeking at the
612 c
= gfc_peek_ascii_char ();
614 /* match is for directives that should be recognized only if
615 -fopenmp, matchs for directives that should be recognized
616 if either -fopenmp or -fopenmp-simd. */
620 matcho ("atomic", gfc_match_omp_atomic
, ST_OMP_ATOMIC
);
623 matcho ("barrier", gfc_match_omp_barrier
, ST_OMP_BARRIER
);
626 matcho ("cancellation% point", gfc_match_omp_cancellation_point
,
627 ST_OMP_CANCELLATION_POINT
);
628 matcho ("cancel", gfc_match_omp_cancel
, ST_OMP_CANCEL
);
629 matcho ("critical", gfc_match_omp_critical
, ST_OMP_CRITICAL
);
632 matchs ("declare reduction", gfc_match_omp_declare_reduction
,
633 ST_OMP_DECLARE_REDUCTION
);
634 matchs ("declare simd", gfc_match_omp_declare_simd
,
635 ST_OMP_DECLARE_SIMD
);
636 matcho ("declare target", gfc_match_omp_declare_target
,
637 ST_OMP_DECLARE_TARGET
);
638 matchs ("distribute parallel do simd",
639 gfc_match_omp_distribute_parallel_do_simd
,
640 ST_OMP_DISTRIBUTE_PARALLEL_DO_SIMD
);
641 matcho ("distribute parallel do", gfc_match_omp_distribute_parallel_do
,
642 ST_OMP_DISTRIBUTE_PARALLEL_DO
);
643 matchs ("distribute simd", gfc_match_omp_distribute_simd
,
644 ST_OMP_DISTRIBUTE_SIMD
);
645 matcho ("distribute", gfc_match_omp_distribute
, ST_OMP_DISTRIBUTE
);
646 matchs ("do simd", gfc_match_omp_do_simd
, ST_OMP_DO_SIMD
);
647 matcho ("do", gfc_match_omp_do
, ST_OMP_DO
);
650 matcho ("end atomic", gfc_match_omp_eos
, ST_OMP_END_ATOMIC
);
651 matcho ("end critical", gfc_match_omp_critical
, ST_OMP_END_CRITICAL
);
652 matchs ("end distribute parallel do simd", gfc_match_omp_eos
,
653 ST_OMP_END_DISTRIBUTE_PARALLEL_DO_SIMD
);
654 matcho ("end distribute parallel do", gfc_match_omp_eos
,
655 ST_OMP_END_DISTRIBUTE_PARALLEL_DO
);
656 matchs ("end distribute simd", gfc_match_omp_eos
,
657 ST_OMP_END_DISTRIBUTE_SIMD
);
658 matcho ("end distribute", gfc_match_omp_eos
, ST_OMP_END_DISTRIBUTE
);
659 matchs ("end do simd", gfc_match_omp_end_nowait
, ST_OMP_END_DO_SIMD
);
660 matcho ("end do", gfc_match_omp_end_nowait
, ST_OMP_END_DO
);
661 matchs ("end simd", gfc_match_omp_eos
, ST_OMP_END_SIMD
);
662 matcho ("end master", gfc_match_omp_eos
, ST_OMP_END_MASTER
);
663 matcho ("end ordered", gfc_match_omp_eos
, ST_OMP_END_ORDERED
);
664 matchs ("end parallel do simd", gfc_match_omp_eos
,
665 ST_OMP_END_PARALLEL_DO_SIMD
);
666 matcho ("end parallel do", gfc_match_omp_eos
, ST_OMP_END_PARALLEL_DO
);
667 matcho ("end parallel sections", gfc_match_omp_eos
,
668 ST_OMP_END_PARALLEL_SECTIONS
);
669 matcho ("end parallel workshare", gfc_match_omp_eos
,
670 ST_OMP_END_PARALLEL_WORKSHARE
);
671 matcho ("end parallel", gfc_match_omp_eos
, ST_OMP_END_PARALLEL
);
672 matcho ("end sections", gfc_match_omp_end_nowait
, ST_OMP_END_SECTIONS
);
673 matcho ("end single", gfc_match_omp_end_single
, ST_OMP_END_SINGLE
);
674 matcho ("end target data", gfc_match_omp_eos
, ST_OMP_END_TARGET_DATA
);
675 matchs ("end target teams distribute parallel do simd",
677 ST_OMP_END_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
);
678 matcho ("end target teams distribute parallel do", gfc_match_omp_eos
,
679 ST_OMP_END_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO
);
680 matchs ("end target teams distribute simd", gfc_match_omp_eos
,
681 ST_OMP_END_TARGET_TEAMS_DISTRIBUTE_SIMD
);
682 matcho ("end target teams distribute", gfc_match_omp_eos
,
683 ST_OMP_END_TARGET_TEAMS_DISTRIBUTE
);
684 matcho ("end target teams", gfc_match_omp_eos
, ST_OMP_END_TARGET_TEAMS
);
685 matcho ("end target", gfc_match_omp_eos
, ST_OMP_END_TARGET
);
686 matcho ("end taskgroup", gfc_match_omp_eos
, ST_OMP_END_TASKGROUP
);
687 matcho ("end task", gfc_match_omp_eos
, ST_OMP_END_TASK
);
688 matchs ("end teams distribute parallel do simd", gfc_match_omp_eos
,
689 ST_OMP_END_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
);
690 matcho ("end teams distribute parallel do", gfc_match_omp_eos
,
691 ST_OMP_END_TEAMS_DISTRIBUTE_PARALLEL_DO
);
692 matchs ("end teams distribute simd", gfc_match_omp_eos
,
693 ST_OMP_END_TEAMS_DISTRIBUTE_SIMD
);
694 matcho ("end teams distribute", gfc_match_omp_eos
,
695 ST_OMP_END_TEAMS_DISTRIBUTE
);
696 matcho ("end teams", gfc_match_omp_eos
, ST_OMP_END_TEAMS
);
697 matcho ("end workshare", gfc_match_omp_end_nowait
,
698 ST_OMP_END_WORKSHARE
);
701 matcho ("flush", gfc_match_omp_flush
, ST_OMP_FLUSH
);
704 matcho ("master", gfc_match_omp_master
, ST_OMP_MASTER
);
707 matcho ("ordered", gfc_match_omp_ordered
, ST_OMP_ORDERED
);
710 matchs ("parallel do simd", gfc_match_omp_parallel_do_simd
,
711 ST_OMP_PARALLEL_DO_SIMD
);
712 matcho ("parallel do", gfc_match_omp_parallel_do
, ST_OMP_PARALLEL_DO
);
713 matcho ("parallel sections", gfc_match_omp_parallel_sections
,
714 ST_OMP_PARALLEL_SECTIONS
);
715 matcho ("parallel workshare", gfc_match_omp_parallel_workshare
,
716 ST_OMP_PARALLEL_WORKSHARE
);
717 matcho ("parallel", gfc_match_omp_parallel
, ST_OMP_PARALLEL
);
720 matcho ("sections", gfc_match_omp_sections
, ST_OMP_SECTIONS
);
721 matcho ("section", gfc_match_omp_eos
, ST_OMP_SECTION
);
722 matchs ("simd", gfc_match_omp_simd
, ST_OMP_SIMD
);
723 matcho ("single", gfc_match_omp_single
, ST_OMP_SINGLE
);
726 matcho ("target data", gfc_match_omp_target_data
, ST_OMP_TARGET_DATA
);
727 matchs ("target teams distribute parallel do simd",
728 gfc_match_omp_target_teams_distribute_parallel_do_simd
,
729 ST_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
);
730 matcho ("target teams distribute parallel do",
731 gfc_match_omp_target_teams_distribute_parallel_do
,
732 ST_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO
);
733 matchs ("target teams distribute simd",
734 gfc_match_omp_target_teams_distribute_simd
,
735 ST_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD
);
736 matcho ("target teams distribute", gfc_match_omp_target_teams_distribute
,
737 ST_OMP_TARGET_TEAMS_DISTRIBUTE
);
738 matcho ("target teams", gfc_match_omp_target_teams
, ST_OMP_TARGET_TEAMS
);
739 matcho ("target update", gfc_match_omp_target_update
,
740 ST_OMP_TARGET_UPDATE
);
741 matcho ("target", gfc_match_omp_target
, ST_OMP_TARGET
);
742 matcho ("taskgroup", gfc_match_omp_taskgroup
, ST_OMP_TASKGROUP
);
743 matcho ("taskwait", gfc_match_omp_taskwait
, ST_OMP_TASKWAIT
);
744 matcho ("taskyield", gfc_match_omp_taskyield
, ST_OMP_TASKYIELD
);
745 matcho ("task", gfc_match_omp_task
, ST_OMP_TASK
);
746 matchs ("teams distribute parallel do simd",
747 gfc_match_omp_teams_distribute_parallel_do_simd
,
748 ST_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
);
749 matcho ("teams distribute parallel do",
750 gfc_match_omp_teams_distribute_parallel_do
,
751 ST_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO
);
752 matchs ("teams distribute simd", gfc_match_omp_teams_distribute_simd
,
753 ST_OMP_TEAMS_DISTRIBUTE_SIMD
);
754 matcho ("teams distribute", gfc_match_omp_teams_distribute
,
755 ST_OMP_TEAMS_DISTRIBUTE
);
756 matcho ("teams", gfc_match_omp_teams
, ST_OMP_TEAMS
);
757 matcho ("threadprivate", gfc_match_omp_threadprivate
,
758 ST_OMP_THREADPRIVATE
);
761 matcho ("workshare", gfc_match_omp_workshare
, ST_OMP_WORKSHARE
);
765 /* All else has failed, so give up. See if any of the matchers has
766 stored an error message of some sort. Don't error out if
767 not -fopenmp and simd_matched is false, i.e. if a directive other
768 than one marked with match has been seen. */
770 if (gfc_option
.gfc_flag_openmp
|| simd_matched
)
772 if (gfc_error_check () == 0)
773 gfc_error_now ("Unclassifiable OpenMP directive at %C");
778 gfc_error_recovery ();
784 decode_gcc_attribute (void)
788 gfc_enforce_clean_symbol_state ();
790 gfc_clear_error (); /* Clear any pending errors. */
791 gfc_clear_warning (); /* Clear any pending warnings. */
792 old_locus
= gfc_current_locus
;
794 match ("attributes", gfc_match_gcc_attributes
, ST_ATTR_DECL
);
796 /* All else has failed, so give up. See if any of the matchers has
797 stored an error message of some sort. */
799 if (gfc_error_check () == 0)
800 gfc_error_now ("Unclassifiable GCC directive at %C");
804 gfc_error_recovery ();
812 /* Get the next statement in free form source. */
821 at_bol
= gfc_at_bol ();
822 gfc_gobble_whitespace ();
824 c
= gfc_peek_ascii_char ();
830 /* Found a statement label? */
831 m
= gfc_match_st_label (&gfc_statement_label
);
833 d
= gfc_peek_ascii_char ();
834 if (m
!= MATCH_YES
|| !gfc_is_whitespace (d
))
836 gfc_match_small_literal_int (&i
, &cnt
);
839 gfc_error_now ("Too many digits in statement label at %C");
842 gfc_error_now ("Zero is not a valid statement label at %C");
845 c
= gfc_next_ascii_char ();
848 if (!gfc_is_whitespace (c
))
849 gfc_error_now ("Non-numeric character in statement label at %C");
855 label_locus
= gfc_current_locus
;
857 gfc_gobble_whitespace ();
859 if (at_bol
&& gfc_peek_ascii_char () == ';')
861 gfc_error_now ("Semicolon at %C needs to be preceded by "
863 gfc_next_ascii_char (); /* Eat up the semicolon. */
867 if (gfc_match_eos () == MATCH_YES
)
869 gfc_warning_now ("Ignoring statement label in empty statement "
870 "at %L", &label_locus
);
871 gfc_free_st_label (gfc_statement_label
);
872 gfc_statement_label
= NULL
;
879 /* Comments have already been skipped by the time we get here,
880 except for GCC attributes and OpenMP directives. */
882 gfc_next_ascii_char (); /* Eat up the exclamation sign. */
883 c
= gfc_peek_ascii_char ();
889 c
= gfc_next_ascii_char ();
890 for (i
= 0; i
< 4; i
++, c
= gfc_next_ascii_char ())
891 gcc_assert (c
== "gcc$"[i
]);
893 gfc_gobble_whitespace ();
894 return decode_gcc_attribute ();
898 && (gfc_option
.gfc_flag_openmp
899 || gfc_option
.gfc_flag_openmp_simd
))
903 c
= gfc_next_ascii_char ();
904 for (i
= 0; i
< 4; i
++, c
= gfc_next_ascii_char ())
905 gcc_assert (c
== "$omp"[i
]);
907 gcc_assert (c
== ' ' || c
== '\t');
908 gfc_gobble_whitespace ();
909 if (last_was_use_stmt
)
911 return decode_omp_directive ();
917 if (at_bol
&& c
== ';')
919 if (!(gfc_option
.allow_std
& GFC_STD_F2008
))
920 gfc_error_now ("Fortran 2008: Semicolon at %C without preceding "
922 gfc_next_ascii_char (); /* Eat up the semicolon. */
926 return decode_statement ();
930 /* Get the next statement in fixed-form source. */
935 int label
, digit_flag
, i
;
940 return decode_statement ();
942 /* Skip past the current label field, parsing a statement label if
943 one is there. This is a weird number parser, since the number is
944 contained within five columns and can have any kind of embedded
945 spaces. We also check for characters that make the rest of the
951 for (i
= 0; i
< 5; i
++)
953 c
= gfc_next_char_literal (NONSTRING
);
970 label
= label
* 10 + ((unsigned char) c
- '0');
971 label_locus
= gfc_current_locus
;
975 /* Comments have already been skipped by the time we get
976 here, except for GCC attributes and OpenMP directives. */
979 c
= gfc_next_char_literal (NONSTRING
);
981 if (TOLOWER (c
) == 'g')
983 for (i
= 0; i
< 4; i
++, c
= gfc_next_char_literal (NONSTRING
))
984 gcc_assert (TOLOWER (c
) == "gcc$"[i
]);
986 return decode_gcc_attribute ();
989 && (gfc_option
.gfc_flag_openmp
990 || gfc_option
.gfc_flag_openmp_simd
))
992 for (i
= 0; i
< 4; i
++, c
= gfc_next_char_literal (NONSTRING
))
993 gcc_assert ((char) gfc_wide_tolower (c
) == "$omp"[i
]);
995 if (c
!= ' ' && c
!= '0')
997 gfc_buffer_error (0);
998 gfc_error ("Bad continuation line at %C");
1001 if (last_was_use_stmt
)
1003 return decode_omp_directive ();
1007 /* Comments have already been skipped by the time we get
1008 here so don't bother checking for them. */
1011 gfc_buffer_error (0);
1012 gfc_error ("Non-numeric character in statement label at %C");
1020 gfc_warning_now ("Zero is not a valid statement label at %C");
1023 /* We've found a valid statement label. */
1024 gfc_statement_label
= gfc_get_st_label (label
);
1028 /* Since this line starts a statement, it cannot be a continuation
1029 of a previous statement. If we see something here besides a
1030 space or zero, it must be a bad continuation line. */
1032 c
= gfc_next_char_literal (NONSTRING
);
1036 if (c
!= ' ' && c
!= '0')
1038 gfc_buffer_error (0);
1039 gfc_error ("Bad continuation line at %C");
1043 /* Now that we've taken care of the statement label columns, we have
1044 to make sure that the first nonblank character is not a '!'. If
1045 it is, the rest of the line is a comment. */
1049 loc
= gfc_current_locus
;
1050 c
= gfc_next_char_literal (NONSTRING
);
1052 while (gfc_is_whitespace (c
));
1056 gfc_current_locus
= loc
;
1061 gfc_error_now ("Semicolon at %C needs to be preceded by statement");
1062 else if (!(gfc_option
.allow_std
& GFC_STD_F2008
))
1063 gfc_error_now ("Fortran 2008: Semicolon at %C without preceding "
1068 if (gfc_match_eos () == MATCH_YES
)
1071 /* At this point, we've got a nonblank statement to parse. */
1072 return decode_statement ();
1076 gfc_warning_now ("Ignoring statement label in empty statement at %L",
1079 gfc_current_locus
.lb
->truncated
= 0;
1080 gfc_advance_line ();
1085 /* Return the next non-ST_NONE statement to the caller. We also worry
1086 about including files and the ends of include files at this stage. */
1088 static gfc_statement
1089 next_statement (void)
1094 gfc_enforce_clean_symbol_state ();
1096 gfc_new_block
= NULL
;
1098 gfc_current_ns
->old_cl_list
= gfc_current_ns
->cl_list
;
1099 gfc_current_ns
->old_equiv
= gfc_current_ns
->equiv
;
1102 gfc_statement_label
= NULL
;
1103 gfc_buffer_error (1);
1106 gfc_advance_line ();
1108 gfc_skip_comments ();
1116 if (gfc_define_undef_line ())
1119 old_locus
= gfc_current_locus
;
1121 st
= (gfc_current_form
== FORM_FIXED
) ? next_fixed () : next_free ();
1127 gfc_buffer_error (0);
1129 if (st
== ST_GET_FCN_CHARACTERISTICS
&& gfc_statement_label
!= NULL
)
1131 gfc_free_st_label (gfc_statement_label
);
1132 gfc_statement_label
= NULL
;
1133 gfc_current_locus
= old_locus
;
1137 check_statement_label (st
);
1143 /****************************** Parser ***********************************/
1145 /* The parser subroutines are of type 'try' that fail if the file ends
1148 /* Macros that expand to case-labels for various classes of
1149 statements. Start with executable statements that directly do
1152 #define case_executable case ST_ALLOCATE: case ST_BACKSPACE: case ST_CALL: \
1153 case ST_CLOSE: case ST_CONTINUE: case ST_DEALLOCATE: case ST_END_FILE: \
1154 case ST_GOTO: case ST_INQUIRE: case ST_NULLIFY: case ST_OPEN: \
1155 case ST_READ: case ST_RETURN: case ST_REWIND: case ST_SIMPLE_IF: \
1156 case ST_PAUSE: case ST_STOP: case ST_WAIT: case ST_WRITE: \
1157 case ST_POINTER_ASSIGNMENT: case ST_EXIT: case ST_CYCLE: \
1158 case ST_ASSIGNMENT: case ST_ARITHMETIC_IF: case ST_WHERE: case ST_FORALL: \
1159 case ST_LABEL_ASSIGNMENT: case ST_FLUSH: case ST_OMP_FLUSH: \
1160 case ST_OMP_BARRIER: case ST_OMP_TASKWAIT: case ST_OMP_TASKYIELD: \
1161 case ST_OMP_CANCEL: case ST_OMP_CANCELLATION_POINT: \
1162 case ST_OMP_TARGET_UPDATE: case ST_ERROR_STOP: case ST_SYNC_ALL: \
1163 case ST_SYNC_IMAGES: case ST_SYNC_MEMORY: case ST_LOCK: case ST_UNLOCK
1165 /* Statements that mark other executable statements. */
1167 #define case_exec_markers case ST_DO: case ST_FORALL_BLOCK: \
1168 case ST_IF_BLOCK: case ST_BLOCK: case ST_ASSOCIATE: \
1169 case ST_WHERE_BLOCK: case ST_SELECT_CASE: case ST_SELECT_TYPE: \
1170 case ST_OMP_PARALLEL: \
1171 case ST_OMP_PARALLEL_SECTIONS: case ST_OMP_SECTIONS: case ST_OMP_ORDERED: \
1172 case ST_OMP_CRITICAL: case ST_OMP_MASTER: case ST_OMP_SINGLE: \
1173 case ST_OMP_DO: case ST_OMP_PARALLEL_DO: case ST_OMP_ATOMIC: \
1174 case ST_OMP_WORKSHARE: case ST_OMP_PARALLEL_WORKSHARE: \
1175 case ST_OMP_TASK: case ST_OMP_TASKGROUP: case ST_OMP_SIMD: \
1176 case ST_OMP_DO_SIMD: case ST_OMP_PARALLEL_DO_SIMD: case ST_OMP_TARGET: \
1177 case ST_OMP_TARGET_DATA: case ST_OMP_TARGET_TEAMS: \
1178 case ST_OMP_TARGET_TEAMS_DISTRIBUTE: \
1179 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD: \
1180 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO: \
1181 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD: \
1182 case ST_OMP_TEAMS: case ST_OMP_TEAMS_DISTRIBUTE: \
1183 case ST_OMP_TEAMS_DISTRIBUTE_SIMD: \
1184 case ST_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO: \
1185 case ST_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD: case ST_OMP_DISTRIBUTE: \
1186 case ST_OMP_DISTRIBUTE_SIMD: case ST_OMP_DISTRIBUTE_PARALLEL_DO: \
1187 case ST_OMP_DISTRIBUTE_PARALLEL_DO_SIMD: \
1190 /* Declaration statements */
1192 #define case_decl case ST_ATTR_DECL: case ST_COMMON: case ST_DATA_DECL: \
1193 case ST_EQUIVALENCE: case ST_NAMELIST: case ST_STATEMENT_FUNCTION: \
1194 case ST_TYPE: case ST_INTERFACE: case ST_OMP_THREADPRIVATE: \
1195 case ST_PROCEDURE: case ST_OMP_DECLARE_SIMD: case ST_OMP_DECLARE_REDUCTION: \
1196 case ST_OMP_DECLARE_TARGET
1198 /* Block end statements. Errors associated with interchanging these
1199 are detected in gfc_match_end(). */
1201 #define case_end case ST_END_BLOCK_DATA: case ST_END_FUNCTION: \
1202 case ST_END_PROGRAM: case ST_END_SUBROUTINE: \
1203 case ST_END_BLOCK: case ST_END_ASSOCIATE
1206 /* Push a new state onto the stack. */
1209 push_state (gfc_state_data
*p
, gfc_compile_state new_state
, gfc_symbol
*sym
)
1211 p
->state
= new_state
;
1212 p
->previous
= gfc_state_stack
;
1214 p
->head
= p
->tail
= NULL
;
1215 p
->do_variable
= NULL
;
1217 /* If this the state of a construct like BLOCK, DO or IF, the corresponding
1218 construct statement was accepted right before pushing the state. Thus,
1219 the construct's gfc_code is available as tail of the parent state. */
1220 gcc_assert (gfc_state_stack
);
1221 p
->construct
= gfc_state_stack
->tail
;
1223 gfc_state_stack
= p
;
1227 /* Pop the current state. */
1231 gfc_state_stack
= gfc_state_stack
->previous
;
1235 /* Try to find the given state in the state stack. */
1238 gfc_find_state (gfc_compile_state state
)
1242 for (p
= gfc_state_stack
; p
; p
= p
->previous
)
1243 if (p
->state
== state
)
1246 return (p
== NULL
) ? false : true;
1250 /* Starts a new level in the statement list. */
1253 new_level (gfc_code
*q
)
1257 p
= q
->block
= gfc_get_code (EXEC_NOP
);
1259 gfc_state_stack
->head
= gfc_state_stack
->tail
= p
;
1265 /* Add the current new_st code structure and adds it to the current
1266 program unit. As a side-effect, it zeroes the new_st. */
1269 add_statement (void)
1273 p
= XCNEW (gfc_code
);
1276 p
->loc
= gfc_current_locus
;
1278 if (gfc_state_stack
->head
== NULL
)
1279 gfc_state_stack
->head
= p
;
1281 gfc_state_stack
->tail
->next
= p
;
1283 while (p
->next
!= NULL
)
1286 gfc_state_stack
->tail
= p
;
1288 gfc_clear_new_st ();
1294 /* Frees everything associated with the current statement. */
1297 undo_new_statement (void)
1299 gfc_free_statements (new_st
.block
);
1300 gfc_free_statements (new_st
.next
);
1301 gfc_free_statement (&new_st
);
1302 gfc_clear_new_st ();
1306 /* If the current statement has a statement label, make sure that it
1307 is allowed to, or should have one. */
1310 check_statement_label (gfc_statement st
)
1314 if (gfc_statement_label
== NULL
)
1316 if (st
== ST_FORMAT
)
1317 gfc_error ("FORMAT statement at %L does not have a statement label",
1324 case ST_END_PROGRAM
:
1325 case ST_END_FUNCTION
:
1326 case ST_END_SUBROUTINE
:
1330 case ST_END_CRITICAL
:
1332 case ST_END_ASSOCIATE
:
1335 if (st
== ST_ENDDO
|| st
== ST_CONTINUE
)
1336 type
= ST_LABEL_DO_TARGET
;
1338 type
= ST_LABEL_TARGET
;
1342 type
= ST_LABEL_FORMAT
;
1345 /* Statement labels are not restricted from appearing on a
1346 particular line. However, there are plenty of situations
1347 where the resulting label can't be referenced. */
1350 type
= ST_LABEL_BAD_TARGET
;
1354 gfc_define_st_label (gfc_statement_label
, type
, &label_locus
);
1356 new_st
.here
= gfc_statement_label
;
1360 /* Figures out what the enclosing program unit is. This will be a
1361 function, subroutine, program, block data or module. */
1364 gfc_enclosing_unit (gfc_compile_state
* result
)
1368 for (p
= gfc_state_stack
; p
; p
= p
->previous
)
1369 if (p
->state
== COMP_FUNCTION
|| p
->state
== COMP_SUBROUTINE
1370 || p
->state
== COMP_MODULE
|| p
->state
== COMP_BLOCK_DATA
1371 || p
->state
== COMP_PROGRAM
)
1380 *result
= COMP_PROGRAM
;
1385 /* Translate a statement enum to a string. */
1388 gfc_ascii_statement (gfc_statement st
)
1394 case ST_ARITHMETIC_IF
:
1395 p
= _("arithmetic IF");
1404 p
= _("attribute declaration");
1440 p
= _("data declaration");
1448 case ST_DERIVED_DECL
:
1449 p
= _("derived type declaration");
1463 case ST_END_ASSOCIATE
:
1464 p
= "END ASSOCIATE";
1469 case ST_END_BLOCK_DATA
:
1470 p
= "END BLOCK DATA";
1472 case ST_END_CRITICAL
:
1484 case ST_END_FUNCTION
:
1490 case ST_END_INTERFACE
:
1491 p
= "END INTERFACE";
1496 case ST_END_PROGRAM
:
1502 case ST_END_SUBROUTINE
:
1503 p
= "END SUBROUTINE";
1514 case ST_EQUIVALENCE
:
1526 case ST_FORALL_BLOCK
: /* Fall through */
1548 case ST_IMPLICIT_NONE
:
1549 p
= "IMPLICIT NONE";
1551 case ST_IMPLIED_ENDDO
:
1552 p
= _("implied END DO");
1581 case ST_MODULE_PROC
:
1582 p
= "MODULE PROCEDURE";
1614 case ST_SYNC_IMAGES
:
1617 case ST_SYNC_MEMORY
:
1632 case ST_WHERE_BLOCK
: /* Fall through */
1643 p
= _("assignment");
1645 case ST_POINTER_ASSIGNMENT
:
1646 p
= _("pointer assignment");
1648 case ST_SELECT_CASE
:
1651 case ST_SELECT_TYPE
:
1666 case ST_STATEMENT_FUNCTION
:
1667 p
= "STATEMENT FUNCTION";
1669 case ST_LABEL_ASSIGNMENT
:
1670 p
= "LABEL ASSIGNMENT";
1673 p
= "ENUM DEFINITION";
1676 p
= "ENUMERATOR DEFINITION";
1684 case ST_OMP_BARRIER
:
1685 p
= "!$OMP BARRIER";
1690 case ST_OMP_CANCELLATION_POINT
:
1691 p
= "!$OMP CANCELLATION POINT";
1693 case ST_OMP_CRITICAL
:
1694 p
= "!$OMP CRITICAL";
1696 case ST_OMP_DECLARE_REDUCTION
:
1697 p
= "!$OMP DECLARE REDUCTION";
1699 case ST_OMP_DECLARE_SIMD
:
1700 p
= "!$OMP DECLARE SIMD";
1702 case ST_OMP_DECLARE_TARGET
:
1703 p
= "!$OMP DECLARE TARGET";
1705 case ST_OMP_DISTRIBUTE
:
1706 p
= "!$OMP DISTRIBUTE";
1708 case ST_OMP_DISTRIBUTE_PARALLEL_DO
:
1709 p
= "!$OMP DISTRIBUTE PARALLEL DO";
1711 case ST_OMP_DISTRIBUTE_PARALLEL_DO_SIMD
:
1712 p
= "!$OMP DISTRIBUTE PARALLEL DO SIMD";
1714 case ST_OMP_DISTRIBUTE_SIMD
:
1715 p
= "!$OMP DISTRIBUTE SIMD";
1720 case ST_OMP_DO_SIMD
:
1721 p
= "!$OMP DO SIMD";
1723 case ST_OMP_END_ATOMIC
:
1724 p
= "!$OMP END ATOMIC";
1726 case ST_OMP_END_CRITICAL
:
1727 p
= "!$OMP END CRITICAL";
1729 case ST_OMP_END_DISTRIBUTE
:
1730 p
= "!$OMP END DISTRIBUTE";
1732 case ST_OMP_END_DISTRIBUTE_PARALLEL_DO
:
1733 p
= "!$OMP END DISTRIBUTE PARALLEL DO";
1735 case ST_OMP_END_DISTRIBUTE_PARALLEL_DO_SIMD
:
1736 p
= "!$OMP END DISTRIBUTE PARALLEL DO SIMD";
1738 case ST_OMP_END_DISTRIBUTE_SIMD
:
1739 p
= "!$OMP END DISTRIBUTE SIMD";
1744 case ST_OMP_END_DO_SIMD
:
1745 p
= "!$OMP END DO SIMD";
1747 case ST_OMP_END_SIMD
:
1748 p
= "!$OMP END SIMD";
1750 case ST_OMP_END_MASTER
:
1751 p
= "!$OMP END MASTER";
1753 case ST_OMP_END_ORDERED
:
1754 p
= "!$OMP END ORDERED";
1756 case ST_OMP_END_PARALLEL
:
1757 p
= "!$OMP END PARALLEL";
1759 case ST_OMP_END_PARALLEL_DO
:
1760 p
= "!$OMP END PARALLEL DO";
1762 case ST_OMP_END_PARALLEL_DO_SIMD
:
1763 p
= "!$OMP END PARALLEL DO SIMD";
1765 case ST_OMP_END_PARALLEL_SECTIONS
:
1766 p
= "!$OMP END PARALLEL SECTIONS";
1768 case ST_OMP_END_PARALLEL_WORKSHARE
:
1769 p
= "!$OMP END PARALLEL WORKSHARE";
1771 case ST_OMP_END_SECTIONS
:
1772 p
= "!$OMP END SECTIONS";
1774 case ST_OMP_END_SINGLE
:
1775 p
= "!$OMP END SINGLE";
1777 case ST_OMP_END_TASK
:
1778 p
= "!$OMP END TASK";
1780 case ST_OMP_END_TARGET
:
1781 p
= "!$OMP END TARGET";
1783 case ST_OMP_END_TARGET_DATA
:
1784 p
= "!$OMP END TARGET DATA";
1786 case ST_OMP_END_TARGET_TEAMS
:
1787 p
= "!$OMP END TARGET TEAMS";
1789 case ST_OMP_END_TARGET_TEAMS_DISTRIBUTE
:
1790 p
= "!$OMP END TARGET TEAMS DISTRIBUTE";
1792 case ST_OMP_END_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO
:
1793 p
= "!$OMP END TARGET TEAMS DISTRIBUTE PARALLEL DO";
1795 case ST_OMP_END_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
1796 p
= "!$OMP END TARGET TEAMS DISTRIBUTE PARALLEL DO SIMD";
1798 case ST_OMP_END_TARGET_TEAMS_DISTRIBUTE_SIMD
:
1799 p
= "!$OMP END TARGET TEAMS DISTRIBUTE SIMD";
1801 case ST_OMP_END_TASKGROUP
:
1802 p
= "!$OMP END TASKGROUP";
1804 case ST_OMP_END_TEAMS
:
1805 p
= "!$OMP END TEAMS";
1807 case ST_OMP_END_TEAMS_DISTRIBUTE
:
1808 p
= "!$OMP END TEAMS DISTRIBUTE";
1810 case ST_OMP_END_TEAMS_DISTRIBUTE_PARALLEL_DO
:
1811 p
= "!$OMP END TEAMS DISTRIBUTE PARALLEL DO";
1813 case ST_OMP_END_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
1814 p
= "!$OMP END TEAMS DISTRIBUTE PARALLEL DO SIMD";
1816 case ST_OMP_END_TEAMS_DISTRIBUTE_SIMD
:
1817 p
= "!$OMP END TEAMS DISTRIBUTE SIMD";
1819 case ST_OMP_END_WORKSHARE
:
1820 p
= "!$OMP END WORKSHARE";
1828 case ST_OMP_ORDERED
:
1829 p
= "!$OMP ORDERED";
1831 case ST_OMP_PARALLEL
:
1832 p
= "!$OMP PARALLEL";
1834 case ST_OMP_PARALLEL_DO
:
1835 p
= "!$OMP PARALLEL DO";
1837 case ST_OMP_PARALLEL_DO_SIMD
:
1838 p
= "!$OMP PARALLEL DO SIMD";
1840 case ST_OMP_PARALLEL_SECTIONS
:
1841 p
= "!$OMP PARALLEL SECTIONS";
1843 case ST_OMP_PARALLEL_WORKSHARE
:
1844 p
= "!$OMP PARALLEL WORKSHARE";
1846 case ST_OMP_SECTIONS
:
1847 p
= "!$OMP SECTIONS";
1849 case ST_OMP_SECTION
:
1850 p
= "!$OMP SECTION";
1861 case ST_OMP_TARGET_DATA
:
1862 p
= "!$OMP TARGET DATA";
1864 case ST_OMP_TARGET_TEAMS
:
1865 p
= "!$OMP TARGET TEAMS";
1867 case ST_OMP_TARGET_TEAMS_DISTRIBUTE
:
1868 p
= "!$OMP TARGET TEAMS DISTRIBUTE";
1870 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO
:
1871 p
= "!$OMP TARGET TEAMS DISTRIBUTE PARALLEL DO";
1873 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
1874 p
= "!$OMP TARGET TEAMS DISTRIBUTE PARALLEL DO SIMD";
1876 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD
:
1877 p
= "!$OMP TARGET TEAMS DISTRIBUTE SIMD";
1879 case ST_OMP_TARGET_UPDATE
:
1880 p
= "!$OMP TARGET UPDATE";
1885 case ST_OMP_TASKGROUP
:
1886 p
= "!$OMP TASKGROUP";
1888 case ST_OMP_TASKWAIT
:
1889 p
= "!$OMP TASKWAIT";
1891 case ST_OMP_TASKYIELD
:
1892 p
= "!$OMP TASKYIELD";
1897 case ST_OMP_TEAMS_DISTRIBUTE
:
1898 p
= "!$OMP TEAMS DISTRIBUTE";
1900 case ST_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO
:
1901 p
= "!$OMP TEAMS DISTRIBUTE PARALLEL DO";
1903 case ST_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
1904 p
= "!$OMP TEAMS DISTRIBUTE PARALLEL DO SIMD";
1906 case ST_OMP_TEAMS_DISTRIBUTE_SIMD
:
1907 p
= "!$OMP TEAMS DISTRIBUTE SIMD";
1909 case ST_OMP_THREADPRIVATE
:
1910 p
= "!$OMP THREADPRIVATE";
1912 case ST_OMP_WORKSHARE
:
1913 p
= "!$OMP WORKSHARE";
1916 gfc_internal_error ("gfc_ascii_statement(): Bad statement code");
1923 /* Create a symbol for the main program and assign it to ns->proc_name. */
1926 main_program_symbol (gfc_namespace
*ns
, const char *name
)
1928 gfc_symbol
*main_program
;
1929 symbol_attribute attr
;
1931 gfc_get_symbol (name
, ns
, &main_program
);
1932 gfc_clear_attr (&attr
);
1933 attr
.flavor
= FL_PROGRAM
;
1934 attr
.proc
= PROC_UNKNOWN
;
1935 attr
.subroutine
= 1;
1936 attr
.access
= ACCESS_PUBLIC
;
1937 attr
.is_main_program
= 1;
1938 main_program
->attr
= attr
;
1939 main_program
->declared_at
= gfc_current_locus
;
1940 ns
->proc_name
= main_program
;
1941 gfc_commit_symbols ();
1945 /* Do whatever is necessary to accept the last statement. */
1948 accept_statement (gfc_statement st
)
1952 case ST_IMPLICIT_NONE
:
1953 gfc_set_implicit_none ();
1962 gfc_current_ns
->proc_name
= gfc_new_block
;
1965 /* If the statement is the end of a block, lay down a special code
1966 that allows a branch to the end of the block from within the
1967 construct. IF and SELECT are treated differently from DO
1968 (where EXEC_NOP is added inside the loop) for two
1970 1. END DO has a meaning in the sense that after a GOTO to
1971 it, the loop counter must be increased.
1972 2. IF blocks and SELECT blocks can consist of multiple
1973 parallel blocks (IF ... ELSE IF ... ELSE ... END IF).
1974 Putting the label before the END IF would make the jump
1975 from, say, the ELSE IF block to the END IF illegal. */
1979 case ST_END_CRITICAL
:
1980 if (gfc_statement_label
!= NULL
)
1982 new_st
.op
= EXEC_END_NESTED_BLOCK
;
1987 /* In the case of BLOCK and ASSOCIATE blocks, there cannot be more than
1988 one parallel block. Thus, we add the special code to the nested block
1989 itself, instead of the parent one. */
1991 case ST_END_ASSOCIATE
:
1992 if (gfc_statement_label
!= NULL
)
1994 new_st
.op
= EXEC_END_BLOCK
;
1999 /* The end-of-program unit statements do not get the special
2000 marker and require a statement of some sort if they are a
2003 case ST_END_PROGRAM
:
2004 case ST_END_FUNCTION
:
2005 case ST_END_SUBROUTINE
:
2006 if (gfc_statement_label
!= NULL
)
2008 new_st
.op
= EXEC_RETURN
;
2013 new_st
.op
= EXEC_END_PROCEDURE
;
2029 gfc_commit_symbols ();
2030 gfc_warning_check ();
2031 gfc_clear_new_st ();
2035 /* Undo anything tentative that has been built for the current
2039 reject_statement (void)
2041 /* Revert to the previous charlen chain. */
2042 gfc_free_charlen (gfc_current_ns
->cl_list
, gfc_current_ns
->old_cl_list
);
2043 gfc_current_ns
->cl_list
= gfc_current_ns
->old_cl_list
;
2045 gfc_free_equiv_until (gfc_current_ns
->equiv
, gfc_current_ns
->old_equiv
);
2046 gfc_current_ns
->equiv
= gfc_current_ns
->old_equiv
;
2048 gfc_new_block
= NULL
;
2049 gfc_undo_symbols ();
2050 gfc_clear_warning ();
2051 undo_new_statement ();
2055 /* Generic complaint about an out of order statement. We also do
2056 whatever is necessary to clean up. */
2059 unexpected_statement (gfc_statement st
)
2061 gfc_error ("Unexpected %s statement at %C", gfc_ascii_statement (st
));
2063 reject_statement ();
2067 /* Given the next statement seen by the matcher, make sure that it is
2068 in proper order with the last. This subroutine is initialized by
2069 calling it with an argument of ST_NONE. If there is a problem, we
2070 issue an error and return false. Otherwise we return true.
2072 Individual parsers need to verify that the statements seen are
2073 valid before calling here, i.e., ENTRY statements are not allowed in
2074 INTERFACE blocks. The following diagram is taken from the standard:
2076 +---------------------------------------+
2077 | program subroutine function module |
2078 +---------------------------------------+
2080 +---------------------------------------+
2082 +---------------------------------------+
2084 | +-----------+------------------+
2085 | | parameter | implicit |
2086 | +-----------+------------------+
2087 | format | | derived type |
2088 | entry | parameter | interface |
2089 | | data | specification |
2090 | | | statement func |
2091 | +-----------+------------------+
2092 | | data | executable |
2093 +--------+-----------+------------------+
2095 +---------------------------------------+
2096 | internal module/subprogram |
2097 +---------------------------------------+
2099 +---------------------------------------+
2108 ORDER_IMPLICIT_NONE
,
2116 enum state_order state
;
2117 gfc_statement last_statement
;
2123 verify_st_order (st_state
*p
, gfc_statement st
, bool silent
)
2129 p
->state
= ORDER_START
;
2133 if (p
->state
> ORDER_USE
)
2135 p
->state
= ORDER_USE
;
2139 if (p
->state
> ORDER_IMPORT
)
2141 p
->state
= ORDER_IMPORT
;
2144 case ST_IMPLICIT_NONE
:
2145 if (p
->state
> ORDER_IMPLICIT_NONE
)
2148 /* The '>' sign cannot be a '>=', because a FORMAT or ENTRY
2149 statement disqualifies a USE but not an IMPLICIT NONE.
2150 Duplicate IMPLICIT NONEs are caught when the implicit types
2153 p
->state
= ORDER_IMPLICIT_NONE
;
2157 if (p
->state
> ORDER_IMPLICIT
)
2159 p
->state
= ORDER_IMPLICIT
;
2164 if (p
->state
< ORDER_IMPLICIT_NONE
)
2165 p
->state
= ORDER_IMPLICIT_NONE
;
2169 if (p
->state
>= ORDER_EXEC
)
2171 if (p
->state
< ORDER_IMPLICIT
)
2172 p
->state
= ORDER_IMPLICIT
;
2176 if (p
->state
< ORDER_SPEC
)
2177 p
->state
= ORDER_SPEC
;
2182 case ST_DERIVED_DECL
:
2184 if (p
->state
>= ORDER_EXEC
)
2186 if (p
->state
< ORDER_SPEC
)
2187 p
->state
= ORDER_SPEC
;
2192 if (p
->state
< ORDER_EXEC
)
2193 p
->state
= ORDER_EXEC
;
2197 gfc_internal_error ("Unexpected %s statement in verify_st_order() at %C",
2198 gfc_ascii_statement (st
));
2201 /* All is well, record the statement in case we need it next time. */
2202 p
->where
= gfc_current_locus
;
2203 p
->last_statement
= st
;
2208 gfc_error ("%s statement at %C cannot follow %s statement at %L",
2209 gfc_ascii_statement (st
),
2210 gfc_ascii_statement (p
->last_statement
), &p
->where
);
2216 /* Handle an unexpected end of file. This is a show-stopper... */
2218 static void unexpected_eof (void) ATTRIBUTE_NORETURN
;
2221 unexpected_eof (void)
2225 gfc_error ("Unexpected end of file in '%s'", gfc_source_file
);
2227 /* Memory cleanup. Move to "second to last". */
2228 for (p
= gfc_state_stack
; p
&& p
->previous
&& p
->previous
->previous
;
2231 gfc_current_ns
->code
= (p
&& p
->previous
) ? p
->head
: NULL
;
2234 longjmp (eof_buf
, 1);
2238 /* Parse the CONTAINS section of a derived type definition. */
2240 gfc_access gfc_typebound_default_access
;
2243 parse_derived_contains (void)
2246 bool seen_private
= false;
2247 bool seen_comps
= false;
2248 bool error_flag
= false;
2251 gcc_assert (gfc_current_state () == COMP_DERIVED
);
2252 gcc_assert (gfc_current_block ());
2254 /* Derived-types with SEQUENCE and/or BIND(C) must not have a CONTAINS
2256 if (gfc_current_block ()->attr
.sequence
)
2257 gfc_error ("Derived-type '%s' with SEQUENCE must not have a CONTAINS"
2258 " section at %C", gfc_current_block ()->name
);
2259 if (gfc_current_block ()->attr
.is_bind_c
)
2260 gfc_error ("Derived-type '%s' with BIND(C) must not have a CONTAINS"
2261 " section at %C", gfc_current_block ()->name
);
2263 accept_statement (ST_CONTAINS
);
2264 push_state (&s
, COMP_DERIVED_CONTAINS
, NULL
);
2266 gfc_typebound_default_access
= ACCESS_PUBLIC
;
2272 st
= next_statement ();
2280 gfc_error ("Components in TYPE at %C must precede CONTAINS");
2284 if (!gfc_notify_std (GFC_STD_F2003
, "Type-bound procedure at %C"))
2287 accept_statement (ST_PROCEDURE
);
2292 if (!gfc_notify_std (GFC_STD_F2003
, "GENERIC binding at %C"))
2295 accept_statement (ST_GENERIC
);
2300 if (!gfc_notify_std (GFC_STD_F2003
, "FINAL procedure declaration"
2304 accept_statement (ST_FINAL
);
2312 && (!gfc_notify_std(GFC_STD_F2008
, "Derived type definition "
2313 "at %C with empty CONTAINS section")))
2316 /* ST_END_TYPE is accepted by parse_derived after return. */
2320 if (!gfc_find_state (COMP_MODULE
))
2322 gfc_error ("PRIVATE statement in TYPE at %C must be inside "
2329 gfc_error ("PRIVATE statement at %C must precede procedure"
2336 gfc_error ("Duplicate PRIVATE statement at %C");
2340 accept_statement (ST_PRIVATE
);
2341 gfc_typebound_default_access
= ACCESS_PRIVATE
;
2342 seen_private
= true;
2346 gfc_error ("SEQUENCE statement at %C must precede CONTAINS");
2350 gfc_error ("Already inside a CONTAINS block at %C");
2354 unexpected_statement (st
);
2362 reject_statement ();
2366 gcc_assert (gfc_current_state () == COMP_DERIVED
);
2372 /* Parse a derived type. */
2375 parse_derived (void)
2377 int compiling_type
, seen_private
, seen_sequence
, seen_component
;
2381 gfc_component
*c
, *lock_comp
= NULL
;
2383 accept_statement (ST_DERIVED_DECL
);
2384 push_state (&s
, COMP_DERIVED
, gfc_new_block
);
2386 gfc_new_block
->component_access
= ACCESS_PUBLIC
;
2393 while (compiling_type
)
2395 st
= next_statement ();
2403 accept_statement (st
);
2408 gfc_error ("FINAL declaration at %C must be inside CONTAINS");
2415 if (!seen_component
)
2416 gfc_notify_std (GFC_STD_F2003
, "Derived type "
2417 "definition at %C without components");
2419 accept_statement (ST_END_TYPE
);
2423 if (!gfc_find_state (COMP_MODULE
))
2425 gfc_error ("PRIVATE statement in TYPE at %C must be inside "
2432 gfc_error ("PRIVATE statement at %C must precede "
2433 "structure components");
2438 gfc_error ("Duplicate PRIVATE statement at %C");
2440 s
.sym
->component_access
= ACCESS_PRIVATE
;
2442 accept_statement (ST_PRIVATE
);
2449 gfc_error ("SEQUENCE statement at %C must precede "
2450 "structure components");
2454 if (gfc_current_block ()->attr
.sequence
)
2455 gfc_warning ("SEQUENCE attribute at %C already specified in "
2460 gfc_error ("Duplicate SEQUENCE statement at %C");
2464 gfc_add_sequence (&gfc_current_block ()->attr
,
2465 gfc_current_block ()->name
, NULL
);
2469 gfc_notify_std (GFC_STD_F2003
,
2470 "CONTAINS block in derived type"
2471 " definition at %C");
2473 accept_statement (ST_CONTAINS
);
2474 parse_derived_contains ();
2478 unexpected_statement (st
);
2483 /* need to verify that all fields of the derived type are
2484 * interoperable with C if the type is declared to be bind(c)
2486 sym
= gfc_current_block ();
2487 for (c
= sym
->components
; c
; c
= c
->next
)
2489 bool coarray
, lock_type
, allocatable
, pointer
;
2490 coarray
= lock_type
= allocatable
= pointer
= false;
2492 /* Look for allocatable components. */
2493 if (c
->attr
.allocatable
2494 || (c
->ts
.type
== BT_CLASS
&& c
->attr
.class_ok
2495 && CLASS_DATA (c
)->attr
.allocatable
)
2496 || (c
->ts
.type
== BT_DERIVED
&& !c
->attr
.pointer
2497 && c
->ts
.u
.derived
->attr
.alloc_comp
))
2500 sym
->attr
.alloc_comp
= 1;
2503 /* Look for pointer components. */
2505 || (c
->ts
.type
== BT_CLASS
&& c
->attr
.class_ok
2506 && CLASS_DATA (c
)->attr
.class_pointer
)
2507 || (c
->ts
.type
== BT_DERIVED
&& c
->ts
.u
.derived
->attr
.pointer_comp
))
2510 sym
->attr
.pointer_comp
= 1;
2513 /* Look for procedure pointer components. */
2514 if (c
->attr
.proc_pointer
2515 || (c
->ts
.type
== BT_DERIVED
2516 && c
->ts
.u
.derived
->attr
.proc_pointer_comp
))
2517 sym
->attr
.proc_pointer_comp
= 1;
2519 /* Looking for coarray components. */
2520 if (c
->attr
.codimension
2521 || (c
->ts
.type
== BT_CLASS
&& c
->attr
.class_ok
2522 && CLASS_DATA (c
)->attr
.codimension
))
2525 sym
->attr
.coarray_comp
= 1;
2528 if (c
->ts
.type
== BT_DERIVED
&& c
->ts
.u
.derived
->attr
.coarray_comp
2529 && !c
->attr
.pointer
)
2532 sym
->attr
.coarray_comp
= 1;
2535 /* Looking for lock_type components. */
2536 if ((c
->ts
.type
== BT_DERIVED
2537 && c
->ts
.u
.derived
->from_intmod
== INTMOD_ISO_FORTRAN_ENV
2538 && c
->ts
.u
.derived
->intmod_sym_id
== ISOFORTRAN_LOCK_TYPE
)
2539 || (c
->ts
.type
== BT_CLASS
&& c
->attr
.class_ok
2540 && CLASS_DATA (c
)->ts
.u
.derived
->from_intmod
2541 == INTMOD_ISO_FORTRAN_ENV
2542 && CLASS_DATA (c
)->ts
.u
.derived
->intmod_sym_id
2543 == ISOFORTRAN_LOCK_TYPE
)
2544 || (c
->ts
.type
== BT_DERIVED
&& c
->ts
.u
.derived
->attr
.lock_comp
2545 && !allocatable
&& !pointer
))
2549 sym
->attr
.lock_comp
= 1;
2552 /* Check for F2008, C1302 - and recall that pointers may not be coarrays
2553 (5.3.14) and that subobjects of coarray are coarray themselves (2.4.7),
2554 unless there are nondirect [allocatable or pointer] components
2555 involved (cf. 1.3.33.1 and 1.3.33.3). */
2557 if (pointer
&& !coarray
&& lock_type
)
2558 gfc_error ("Component %s at %L of type LOCK_TYPE must have a "
2559 "codimension or be a subcomponent of a coarray, "
2560 "which is not possible as the component has the "
2561 "pointer attribute", c
->name
, &c
->loc
);
2562 else if (pointer
&& !coarray
&& c
->ts
.type
== BT_DERIVED
2563 && c
->ts
.u
.derived
->attr
.lock_comp
)
2564 gfc_error ("Pointer component %s at %L has a noncoarray subcomponent "
2565 "of type LOCK_TYPE, which must have a codimension or be a "
2566 "subcomponent of a coarray", c
->name
, &c
->loc
);
2568 if (lock_type
&& allocatable
&& !coarray
)
2569 gfc_error ("Allocatable component %s at %L of type LOCK_TYPE must have "
2570 "a codimension", c
->name
, &c
->loc
);
2571 else if (lock_type
&& allocatable
&& c
->ts
.type
== BT_DERIVED
2572 && c
->ts
.u
.derived
->attr
.lock_comp
)
2573 gfc_error ("Allocatable component %s at %L must have a codimension as "
2574 "it has a noncoarray subcomponent of type LOCK_TYPE",
2577 if (sym
->attr
.coarray_comp
&& !coarray
&& lock_type
)
2578 gfc_error ("Noncoarray component %s at %L of type LOCK_TYPE or with "
2579 "subcomponent of type LOCK_TYPE must have a codimension or "
2580 "be a subcomponent of a coarray. (Variables of type %s may "
2581 "not have a codimension as already a coarray "
2582 "subcomponent exists)", c
->name
, &c
->loc
, sym
->name
);
2584 if (sym
->attr
.lock_comp
&& coarray
&& !lock_type
)
2585 gfc_error ("Noncoarray component %s at %L of type LOCK_TYPE or with "
2586 "subcomponent of type LOCK_TYPE must have a codimension or "
2587 "be a subcomponent of a coarray. (Variables of type %s may "
2588 "not have a codimension as %s at %L has a codimension or a "
2589 "coarray subcomponent)", lock_comp
->name
, &lock_comp
->loc
,
2590 sym
->name
, c
->name
, &c
->loc
);
2592 /* Look for private components. */
2593 if (sym
->component_access
== ACCESS_PRIVATE
2594 || c
->attr
.access
== ACCESS_PRIVATE
2595 || (c
->ts
.type
== BT_DERIVED
&& c
->ts
.u
.derived
->attr
.private_comp
))
2596 sym
->attr
.private_comp
= 1;
2599 if (!seen_component
)
2600 sym
->attr
.zero_comp
= 1;
2606 /* Parse an ENUM. */
2614 int seen_enumerator
= 0;
2616 push_state (&s
, COMP_ENUM
, gfc_new_block
);
2620 while (compiling_enum
)
2622 st
= next_statement ();
2630 seen_enumerator
= 1;
2631 accept_statement (st
);
2636 if (!seen_enumerator
)
2637 gfc_error ("ENUM declaration at %C has no ENUMERATORS");
2638 accept_statement (st
);
2642 gfc_free_enum_history ();
2643 unexpected_statement (st
);
2651 /* Parse an interface. We must be able to deal with the possibility
2652 of recursive interfaces. The parse_spec() subroutine is mutually
2653 recursive with parse_interface(). */
2655 static gfc_statement
parse_spec (gfc_statement
);
2658 parse_interface (void)
2660 gfc_compile_state new_state
= COMP_NONE
, current_state
;
2661 gfc_symbol
*prog_unit
, *sym
;
2662 gfc_interface_info save
;
2663 gfc_state_data s1
, s2
;
2666 accept_statement (ST_INTERFACE
);
2668 current_interface
.ns
= gfc_current_ns
;
2669 save
= current_interface
;
2671 sym
= (current_interface
.type
== INTERFACE_GENERIC
2672 || current_interface
.type
== INTERFACE_USER_OP
)
2673 ? gfc_new_block
: NULL
;
2675 push_state (&s1
, COMP_INTERFACE
, sym
);
2676 current_state
= COMP_NONE
;
2679 gfc_current_ns
= gfc_get_namespace (current_interface
.ns
, 0);
2681 st
= next_statement ();
2689 if (st
== ST_SUBROUTINE
)
2690 new_state
= COMP_SUBROUTINE
;
2691 else if (st
== ST_FUNCTION
)
2692 new_state
= COMP_FUNCTION
;
2693 if (gfc_new_block
->attr
.pointer
)
2695 gfc_new_block
->attr
.pointer
= 0;
2696 gfc_new_block
->attr
.proc_pointer
= 1;
2698 if (!gfc_add_explicit_interface (gfc_new_block
, IFSRC_IFBODY
,
2699 gfc_new_block
->formal
, NULL
))
2701 reject_statement ();
2702 gfc_free_namespace (gfc_current_ns
);
2708 case ST_MODULE_PROC
: /* The module procedure matcher makes
2709 sure the context is correct. */
2710 accept_statement (st
);
2711 gfc_free_namespace (gfc_current_ns
);
2714 case ST_END_INTERFACE
:
2715 gfc_free_namespace (gfc_current_ns
);
2716 gfc_current_ns
= current_interface
.ns
;
2720 gfc_error ("Unexpected %s statement in INTERFACE block at %C",
2721 gfc_ascii_statement (st
));
2722 reject_statement ();
2723 gfc_free_namespace (gfc_current_ns
);
2728 /* Make sure that the generic name has the right attribute. */
2729 if (current_interface
.type
== INTERFACE_GENERIC
2730 && current_state
== COMP_NONE
)
2732 if (new_state
== COMP_FUNCTION
&& sym
)
2733 gfc_add_function (&sym
->attr
, sym
->name
, NULL
);
2734 else if (new_state
== COMP_SUBROUTINE
&& sym
)
2735 gfc_add_subroutine (&sym
->attr
, sym
->name
, NULL
);
2737 current_state
= new_state
;
2740 if (current_interface
.type
== INTERFACE_ABSTRACT
)
2742 gfc_add_abstract (&gfc_new_block
->attr
, &gfc_current_locus
);
2743 if (gfc_is_intrinsic_typename (gfc_new_block
->name
))
2744 gfc_error ("Name '%s' of ABSTRACT INTERFACE at %C "
2745 "cannot be the same as an intrinsic type",
2746 gfc_new_block
->name
);
2749 push_state (&s2
, new_state
, gfc_new_block
);
2750 accept_statement (st
);
2751 prog_unit
= gfc_new_block
;
2752 prog_unit
->formal_ns
= gfc_current_ns
;
2753 if (prog_unit
== prog_unit
->formal_ns
->proc_name
2754 && prog_unit
->ns
!= prog_unit
->formal_ns
)
2758 /* Read data declaration statements. */
2759 st
= parse_spec (ST_NONE
);
2761 /* Since the interface block does not permit an IMPLICIT statement,
2762 the default type for the function or the result must be taken
2763 from the formal namespace. */
2764 if (new_state
== COMP_FUNCTION
)
2766 if (prog_unit
->result
== prog_unit
2767 && prog_unit
->ts
.type
== BT_UNKNOWN
)
2768 gfc_set_default_type (prog_unit
, 1, prog_unit
->formal_ns
);
2769 else if (prog_unit
->result
!= prog_unit
2770 && prog_unit
->result
->ts
.type
== BT_UNKNOWN
)
2771 gfc_set_default_type (prog_unit
->result
, 1,
2772 prog_unit
->formal_ns
);
2775 if (st
!= ST_END_SUBROUTINE
&& st
!= ST_END_FUNCTION
)
2777 gfc_error ("Unexpected %s statement at %C in INTERFACE body",
2778 gfc_ascii_statement (st
));
2779 reject_statement ();
2783 /* Add EXTERNAL attribute to function or subroutine. */
2784 if (current_interface
.type
!= INTERFACE_ABSTRACT
&& !prog_unit
->attr
.dummy
)
2785 gfc_add_external (&prog_unit
->attr
, &gfc_current_locus
);
2787 current_interface
= save
;
2788 gfc_add_interface (prog_unit
);
2791 if (current_interface
.ns
2792 && current_interface
.ns
->proc_name
2793 && strcmp (current_interface
.ns
->proc_name
->name
,
2794 prog_unit
->name
) == 0)
2795 gfc_error ("INTERFACE procedure '%s' at %L has the same name as the "
2796 "enclosing procedure", prog_unit
->name
,
2797 ¤t_interface
.ns
->proc_name
->declared_at
);
2806 /* Associate function characteristics by going back to the function
2807 declaration and rematching the prefix. */
2810 match_deferred_characteristics (gfc_typespec
* ts
)
2813 match m
= MATCH_ERROR
;
2814 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
2816 loc
= gfc_current_locus
;
2818 gfc_current_locus
= gfc_current_block ()->declared_at
;
2821 gfc_buffer_error (1);
2822 m
= gfc_match_prefix (ts
);
2823 gfc_buffer_error (0);
2825 if (ts
->type
== BT_DERIVED
)
2833 /* Only permit one go at the characteristic association. */
2837 /* Set the function locus correctly. If we have not found the
2838 function name, there is an error. */
2840 && gfc_match ("function% %n", name
) == MATCH_YES
2841 && strcmp (name
, gfc_current_block ()->name
) == 0)
2843 gfc_current_block ()->declared_at
= gfc_current_locus
;
2844 gfc_commit_symbols ();
2849 gfc_undo_symbols ();
2852 gfc_current_locus
=loc
;
2857 /* Check specification-expressions in the function result of the currently
2858 parsed block and ensure they are typed (give an IMPLICIT type if necessary).
2859 For return types specified in a FUNCTION prefix, the IMPLICIT rules of the
2860 scope are not yet parsed so this has to be delayed up to parse_spec. */
2863 check_function_result_typed (void)
2865 gfc_typespec
* ts
= &gfc_current_ns
->proc_name
->result
->ts
;
2867 gcc_assert (gfc_current_state () == COMP_FUNCTION
);
2868 gcc_assert (ts
->type
!= BT_UNKNOWN
);
2870 /* Check type-parameters, at the moment only CHARACTER lengths possible. */
2871 /* TODO: Extend when KIND type parameters are implemented. */
2872 if (ts
->type
== BT_CHARACTER
&& ts
->u
.cl
&& ts
->u
.cl
->length
)
2873 gfc_expr_check_typed (ts
->u
.cl
->length
, gfc_current_ns
, true);
2877 /* Parse a set of specification statements. Returns the statement
2878 that doesn't fit. */
2880 static gfc_statement
2881 parse_spec (gfc_statement st
)
2884 bool function_result_typed
= false;
2885 bool bad_characteristic
= false;
2888 verify_st_order (&ss
, ST_NONE
, false);
2890 st
= next_statement ();
2892 /* If we are not inside a function or don't have a result specified so far,
2893 do nothing special about it. */
2894 if (gfc_current_state () != COMP_FUNCTION
)
2895 function_result_typed
= true;
2898 gfc_symbol
* proc
= gfc_current_ns
->proc_name
;
2901 if (proc
->result
->ts
.type
== BT_UNKNOWN
)
2902 function_result_typed
= true;
2907 /* If we're inside a BLOCK construct, some statements are disallowed.
2908 Check this here. Attribute declaration statements like INTENT, OPTIONAL
2909 or VALUE are also disallowed, but they don't have a particular ST_*
2910 key so we have to check for them individually in their matcher routine. */
2911 if (gfc_current_state () == COMP_BLOCK
)
2915 case ST_IMPLICIT_NONE
:
2918 case ST_EQUIVALENCE
:
2919 case ST_STATEMENT_FUNCTION
:
2920 gfc_error ("%s statement is not allowed inside of BLOCK at %C",
2921 gfc_ascii_statement (st
));
2922 reject_statement ();
2928 else if (gfc_current_state () == COMP_BLOCK_DATA
)
2929 /* Fortran 2008, C1116. */
2936 case ST_END_BLOCK_DATA
:
2938 case ST_EQUIVALENCE
:
2941 case ST_IMPLICIT_NONE
:
2942 case ST_DERIVED_DECL
:
2950 gfc_error ("%s statement is not allowed inside of BLOCK DATA at %C",
2951 gfc_ascii_statement (st
));
2952 reject_statement ();
2956 /* If we find a statement that can not be followed by an IMPLICIT statement
2957 (and thus we can expect to see none any further), type the function result
2958 if it has not yet been typed. Be careful not to give the END statement
2959 to verify_st_order! */
2960 if (!function_result_typed
&& st
!= ST_GET_FCN_CHARACTERISTICS
)
2962 bool verify_now
= false;
2964 if (st
== ST_END_FUNCTION
|| st
== ST_CONTAINS
)
2969 verify_st_order (&dummyss
, ST_NONE
, false);
2970 verify_st_order (&dummyss
, st
, false);
2972 if (!verify_st_order (&dummyss
, ST_IMPLICIT
, true))
2978 check_function_result_typed ();
2979 function_result_typed
= true;
2988 case ST_IMPLICIT_NONE
:
2990 if (!function_result_typed
)
2992 check_function_result_typed ();
2993 function_result_typed
= true;
2999 case ST_DATA
: /* Not allowed in interfaces */
3000 if (gfc_current_state () == COMP_INTERFACE
)
3010 case ST_DERIVED_DECL
:
3013 if (!verify_st_order (&ss
, st
, false))
3015 reject_statement ();
3016 st
= next_statement ();
3026 case ST_DERIVED_DECL
:
3032 if (gfc_current_state () != COMP_MODULE
)
3034 gfc_error ("%s statement must appear in a MODULE",
3035 gfc_ascii_statement (st
));
3036 reject_statement ();
3040 if (gfc_current_ns
->default_access
!= ACCESS_UNKNOWN
)
3042 gfc_error ("%s statement at %C follows another accessibility "
3043 "specification", gfc_ascii_statement (st
));
3044 reject_statement ();
3048 gfc_current_ns
->default_access
= (st
== ST_PUBLIC
)
3049 ? ACCESS_PUBLIC
: ACCESS_PRIVATE
;
3053 case ST_STATEMENT_FUNCTION
:
3054 if (gfc_current_state () == COMP_MODULE
)
3056 unexpected_statement (st
);
3064 accept_statement (st
);
3065 st
= next_statement ();
3069 accept_statement (st
);
3071 st
= next_statement ();
3074 case ST_GET_FCN_CHARACTERISTICS
:
3075 /* This statement triggers the association of a function's result
3077 ts
= &gfc_current_block ()->result
->ts
;
3078 if (match_deferred_characteristics (ts
) != MATCH_YES
)
3079 bad_characteristic
= true;
3081 st
= next_statement ();
3088 /* If match_deferred_characteristics failed, then there is an error. */
3089 if (bad_characteristic
)
3091 ts
= &gfc_current_block ()->result
->ts
;
3092 if (ts
->type
!= BT_DERIVED
)
3093 gfc_error ("Bad kind expression for function '%s' at %L",
3094 gfc_current_block ()->name
,
3095 &gfc_current_block ()->declared_at
);
3097 gfc_error ("The type for function '%s' at %L is not accessible",
3098 gfc_current_block ()->name
,
3099 &gfc_current_block ()->declared_at
);
3101 gfc_current_block ()->ts
.kind
= 0;
3102 /* Keep the derived type; if it's bad, it will be discovered later. */
3103 if (!(ts
->type
== BT_DERIVED
&& ts
->u
.derived
))
3104 ts
->type
= BT_UNKNOWN
;
3111 /* Parse a WHERE block, (not a simple WHERE statement). */
3114 parse_where_block (void)
3116 int seen_empty_else
;
3121 accept_statement (ST_WHERE_BLOCK
);
3122 top
= gfc_state_stack
->tail
;
3124 push_state (&s
, COMP_WHERE
, gfc_new_block
);
3126 d
= add_statement ();
3127 d
->expr1
= top
->expr1
;
3133 seen_empty_else
= 0;
3137 st
= next_statement ();
3143 case ST_WHERE_BLOCK
:
3144 parse_where_block ();
3149 accept_statement (st
);
3153 if (seen_empty_else
)
3155 gfc_error ("ELSEWHERE statement at %C follows previous "
3156 "unmasked ELSEWHERE");
3157 reject_statement ();
3161 if (new_st
.expr1
== NULL
)
3162 seen_empty_else
= 1;
3164 d
= new_level (gfc_state_stack
->head
);
3166 d
->expr1
= new_st
.expr1
;
3168 accept_statement (st
);
3173 accept_statement (st
);
3177 gfc_error ("Unexpected %s statement in WHERE block at %C",
3178 gfc_ascii_statement (st
));
3179 reject_statement ();
3183 while (st
!= ST_END_WHERE
);
3189 /* Parse a FORALL block (not a simple FORALL statement). */
3192 parse_forall_block (void)
3198 accept_statement (ST_FORALL_BLOCK
);
3199 top
= gfc_state_stack
->tail
;
3201 push_state (&s
, COMP_FORALL
, gfc_new_block
);
3203 d
= add_statement ();
3204 d
->op
= EXEC_FORALL
;
3209 st
= next_statement ();
3214 case ST_POINTER_ASSIGNMENT
:
3217 accept_statement (st
);
3220 case ST_WHERE_BLOCK
:
3221 parse_where_block ();
3224 case ST_FORALL_BLOCK
:
3225 parse_forall_block ();
3229 accept_statement (st
);
3236 gfc_error ("Unexpected %s statement in FORALL block at %C",
3237 gfc_ascii_statement (st
));
3239 reject_statement ();
3243 while (st
!= ST_END_FORALL
);
3249 static gfc_statement
parse_executable (gfc_statement
);
3251 /* parse the statements of an IF-THEN-ELSEIF-ELSE-ENDIF block. */
3254 parse_if_block (void)
3263 accept_statement (ST_IF_BLOCK
);
3265 top
= gfc_state_stack
->tail
;
3266 push_state (&s
, COMP_IF
, gfc_new_block
);
3268 new_st
.op
= EXEC_IF
;
3269 d
= add_statement ();
3271 d
->expr1
= top
->expr1
;
3277 st
= parse_executable (ST_NONE
);
3287 gfc_error ("ELSE IF statement at %C cannot follow ELSE "
3288 "statement at %L", &else_locus
);
3290 reject_statement ();
3294 d
= new_level (gfc_state_stack
->head
);
3296 d
->expr1
= new_st
.expr1
;
3298 accept_statement (st
);
3305 gfc_error ("Duplicate ELSE statements at %L and %C",
3307 reject_statement ();
3312 else_locus
= gfc_current_locus
;
3314 d
= new_level (gfc_state_stack
->head
);
3317 accept_statement (st
);
3325 unexpected_statement (st
);
3329 while (st
!= ST_ENDIF
);
3332 accept_statement (st
);
3336 /* Parse a SELECT block. */
3339 parse_select_block (void)
3345 accept_statement (ST_SELECT_CASE
);
3347 cp
= gfc_state_stack
->tail
;
3348 push_state (&s
, COMP_SELECT
, gfc_new_block
);
3350 /* Make sure that the next statement is a CASE or END SELECT. */
3353 st
= next_statement ();
3356 if (st
== ST_END_SELECT
)
3358 /* Empty SELECT CASE is OK. */
3359 accept_statement (st
);
3366 gfc_error ("Expected a CASE or END SELECT statement following SELECT "
3369 reject_statement ();
3372 /* At this point, we're got a nonempty select block. */
3373 cp
= new_level (cp
);
3376 accept_statement (st
);
3380 st
= parse_executable (ST_NONE
);
3387 cp
= new_level (gfc_state_stack
->head
);
3389 gfc_clear_new_st ();
3391 accept_statement (st
);
3397 /* Can't have an executable statement because of
3398 parse_executable(). */
3400 unexpected_statement (st
);
3404 while (st
!= ST_END_SELECT
);
3407 accept_statement (st
);
3411 /* Pop the current selector from the SELECT TYPE stack. */
3414 select_type_pop (void)
3416 gfc_select_type_stack
*old
= select_type_stack
;
3417 select_type_stack
= old
->prev
;
3422 /* Parse a SELECT TYPE construct (F03:R821). */
3425 parse_select_type_block (void)
3431 accept_statement (ST_SELECT_TYPE
);
3433 cp
= gfc_state_stack
->tail
;
3434 push_state (&s
, COMP_SELECT_TYPE
, gfc_new_block
);
3436 /* Make sure that the next statement is a TYPE IS, CLASS IS, CLASS DEFAULT
3440 st
= next_statement ();
3443 if (st
== ST_END_SELECT
)
3444 /* Empty SELECT CASE is OK. */
3446 if (st
== ST_TYPE_IS
|| st
== ST_CLASS_IS
)
3449 gfc_error ("Expected TYPE IS, CLASS IS or END SELECT statement "
3450 "following SELECT TYPE at %C");
3452 reject_statement ();
3455 /* At this point, we're got a nonempty select block. */
3456 cp
= new_level (cp
);
3459 accept_statement (st
);
3463 st
= parse_executable (ST_NONE
);
3471 cp
= new_level (gfc_state_stack
->head
);
3473 gfc_clear_new_st ();
3475 accept_statement (st
);
3481 /* Can't have an executable statement because of
3482 parse_executable(). */
3484 unexpected_statement (st
);
3488 while (st
!= ST_END_SELECT
);
3492 accept_statement (st
);
3493 gfc_current_ns
= gfc_current_ns
->parent
;
3498 /* Given a symbol, make sure it is not an iteration variable for a DO
3499 statement. This subroutine is called when the symbol is seen in a
3500 context that causes it to become redefined. If the symbol is an
3501 iterator, we generate an error message and return nonzero. */
3504 gfc_check_do_variable (gfc_symtree
*st
)
3508 for (s
=gfc_state_stack
; s
; s
= s
->previous
)
3509 if (s
->do_variable
== st
)
3511 gfc_error_now("Variable '%s' at %C cannot be redefined inside "
3512 "loop beginning at %L", st
->name
, &s
->head
->loc
);
3520 /* Checks to see if the current statement label closes an enddo.
3521 Returns 0 if not, 1 if closes an ENDDO correctly, or 2 (and issues
3522 an error) if it incorrectly closes an ENDDO. */
3525 check_do_closure (void)
3529 if (gfc_statement_label
== NULL
)
3532 for (p
= gfc_state_stack
; p
; p
= p
->previous
)
3533 if (p
->state
== COMP_DO
|| p
->state
== COMP_DO_CONCURRENT
)
3537 return 0; /* No loops to close */
3539 if (p
->ext
.end_do_label
== gfc_statement_label
)
3541 if (p
== gfc_state_stack
)
3544 gfc_error ("End of nonblock DO statement at %C is within another block");
3548 /* At this point, the label doesn't terminate the innermost loop.
3549 Make sure it doesn't terminate another one. */
3550 for (; p
; p
= p
->previous
)
3551 if ((p
->state
== COMP_DO
|| p
->state
== COMP_DO_CONCURRENT
)
3552 && p
->ext
.end_do_label
== gfc_statement_label
)
3554 gfc_error ("End of nonblock DO statement at %C is interwoven "
3555 "with another DO loop");
3563 /* Parse a series of contained program units. */
3565 static void parse_progunit (gfc_statement
);
3568 /* Parse a CRITICAL block. */
3571 parse_critical_block (void)
3577 s
.ext
.end_do_label
= new_st
.label1
;
3579 accept_statement (ST_CRITICAL
);
3580 top
= gfc_state_stack
->tail
;
3582 push_state (&s
, COMP_CRITICAL
, gfc_new_block
);
3584 d
= add_statement ();
3585 d
->op
= EXEC_CRITICAL
;
3590 st
= parse_executable (ST_NONE
);
3598 case ST_END_CRITICAL
:
3599 if (s
.ext
.end_do_label
!= NULL
3600 && s
.ext
.end_do_label
!= gfc_statement_label
)
3601 gfc_error_now ("Statement label in END CRITICAL at %C does not "
3602 "match CRITICAL label");
3604 if (gfc_statement_label
!= NULL
)
3606 new_st
.op
= EXEC_NOP
;
3612 unexpected_statement (st
);
3616 while (st
!= ST_END_CRITICAL
);
3619 accept_statement (st
);
3623 /* Set up the local namespace for a BLOCK construct. */
3626 gfc_build_block_ns (gfc_namespace
*parent_ns
)
3628 gfc_namespace
* my_ns
;
3629 static int numblock
= 1;
3631 my_ns
= gfc_get_namespace (parent_ns
, 1);
3632 my_ns
->construct_entities
= 1;
3634 /* Give the BLOCK a symbol of flavor LABEL; this is later needed for correct
3635 code generation (so it must not be NULL).
3636 We set its recursive argument if our container procedure is recursive, so
3637 that local variables are accordingly placed on the stack when it
3638 will be necessary. */
3640 my_ns
->proc_name
= gfc_new_block
;
3644 char buffer
[20]; /* Enough to hold "block@2147483648\n". */
3646 snprintf(buffer
, sizeof(buffer
), "block@%d", numblock
++);
3647 gfc_get_symbol (buffer
, my_ns
, &my_ns
->proc_name
);
3648 t
= gfc_add_flavor (&my_ns
->proc_name
->attr
, FL_LABEL
,
3649 my_ns
->proc_name
->name
, NULL
);
3651 gfc_commit_symbol (my_ns
->proc_name
);
3654 if (parent_ns
->proc_name
)
3655 my_ns
->proc_name
->attr
.recursive
= parent_ns
->proc_name
->attr
.recursive
;
3661 /* Parse a BLOCK construct. */
3664 parse_block_construct (void)
3666 gfc_namespace
* my_ns
;
3669 gfc_notify_std (GFC_STD_F2008
, "BLOCK construct at %C");
3671 my_ns
= gfc_build_block_ns (gfc_current_ns
);
3673 new_st
.op
= EXEC_BLOCK
;
3674 new_st
.ext
.block
.ns
= my_ns
;
3675 new_st
.ext
.block
.assoc
= NULL
;
3676 accept_statement (ST_BLOCK
);
3678 push_state (&s
, COMP_BLOCK
, my_ns
->proc_name
);
3679 gfc_current_ns
= my_ns
;
3681 parse_progunit (ST_NONE
);
3683 gfc_current_ns
= gfc_current_ns
->parent
;
3688 /* Parse an ASSOCIATE construct. This is essentially a BLOCK construct
3689 behind the scenes with compiler-generated variables. */
3692 parse_associate (void)
3694 gfc_namespace
* my_ns
;
3697 gfc_association_list
* a
;
3699 gfc_notify_std (GFC_STD_F2003
, "ASSOCIATE construct at %C");
3701 my_ns
= gfc_build_block_ns (gfc_current_ns
);
3703 new_st
.op
= EXEC_BLOCK
;
3704 new_st
.ext
.block
.ns
= my_ns
;
3705 gcc_assert (new_st
.ext
.block
.assoc
);
3707 /* Add all associate-names as BLOCK variables. Creating them is enough
3708 for now, they'll get their values during trans-* phase. */
3709 gfc_current_ns
= my_ns
;
3710 for (a
= new_st
.ext
.block
.assoc
; a
; a
= a
->next
)
3714 if (gfc_get_sym_tree (a
->name
, NULL
, &a
->st
, false))
3718 sym
->attr
.flavor
= FL_VARIABLE
;
3720 sym
->declared_at
= a
->where
;
3721 gfc_set_sym_referenced (sym
);
3723 /* Initialize the typespec. It is not available in all cases,
3724 however, as it may only be set on the target during resolution.
3725 Still, sometimes it helps to have it right now -- especially
3726 for parsing component references on the associate-name
3727 in case of association to a derived-type. */
3728 sym
->ts
= a
->target
->ts
;
3731 accept_statement (ST_ASSOCIATE
);
3732 push_state (&s
, COMP_ASSOCIATE
, my_ns
->proc_name
);
3735 st
= parse_executable (ST_NONE
);
3742 accept_statement (st
);
3743 my_ns
->code
= gfc_state_stack
->head
;
3747 unexpected_statement (st
);
3751 gfc_current_ns
= gfc_current_ns
->parent
;
3756 /* Parse a DO loop. Note that the ST_CYCLE and ST_EXIT statements are
3757 handled inside of parse_executable(), because they aren't really
3761 parse_do_block (void)
3770 s
.ext
.end_do_label
= new_st
.label1
;
3772 if (new_st
.ext
.iterator
!= NULL
)
3773 stree
= new_st
.ext
.iterator
->var
->symtree
;
3777 accept_statement (ST_DO
);
3779 top
= gfc_state_stack
->tail
;
3780 push_state (&s
, do_op
== EXEC_DO_CONCURRENT
? COMP_DO_CONCURRENT
: COMP_DO
,
3783 s
.do_variable
= stree
;
3785 top
->block
= new_level (top
);
3786 top
->block
->op
= EXEC_DO
;
3789 st
= parse_executable (ST_NONE
);
3797 if (s
.ext
.end_do_label
!= NULL
3798 && s
.ext
.end_do_label
!= gfc_statement_label
)
3799 gfc_error_now ("Statement label in ENDDO at %C doesn't match "
3802 if (gfc_statement_label
!= NULL
)
3804 new_st
.op
= EXEC_NOP
;
3809 case ST_IMPLIED_ENDDO
:
3810 /* If the do-stmt of this DO construct has a do-construct-name,
3811 the corresponding end-do must be an end-do-stmt (with a matching
3812 name, but in that case we must have seen ST_ENDDO first).
3813 We only complain about this in pedantic mode. */
3814 if (gfc_current_block () != NULL
)
3815 gfc_error_now ("Named block DO at %L requires matching ENDDO name",
3816 &gfc_current_block()->declared_at
);
3821 unexpected_statement (st
);
3826 accept_statement (st
);
3830 /* Parse the statements of OpenMP do/parallel do. */
3832 static gfc_statement
3833 parse_omp_do (gfc_statement omp_st
)
3839 accept_statement (omp_st
);
3841 cp
= gfc_state_stack
->tail
;
3842 push_state (&s
, COMP_OMP_STRUCTURED_BLOCK
, NULL
);
3843 np
= new_level (cp
);
3849 st
= next_statement ();
3852 else if (st
== ST_DO
)
3855 unexpected_statement (st
);
3859 if (gfc_statement_label
!= NULL
3860 && gfc_state_stack
->previous
!= NULL
3861 && gfc_state_stack
->previous
->state
== COMP_DO
3862 && gfc_state_stack
->previous
->ext
.end_do_label
== gfc_statement_label
)
3870 there should be no !$OMP END DO. */
3872 return ST_IMPLIED_ENDDO
;
3875 check_do_closure ();
3878 st
= next_statement ();
3879 gfc_statement omp_end_st
= ST_OMP_END_DO
;
3882 case ST_OMP_DISTRIBUTE
: omp_end_st
= ST_OMP_END_DISTRIBUTE
; break;
3883 case ST_OMP_DISTRIBUTE_PARALLEL_DO
:
3884 omp_end_st
= ST_OMP_END_DISTRIBUTE_PARALLEL_DO
;
3886 case ST_OMP_DISTRIBUTE_PARALLEL_DO_SIMD
:
3887 omp_end_st
= ST_OMP_END_DISTRIBUTE_PARALLEL_DO_SIMD
;
3889 case ST_OMP_DISTRIBUTE_SIMD
:
3890 omp_end_st
= ST_OMP_END_DISTRIBUTE_SIMD
;
3892 case ST_OMP_DO
: omp_end_st
= ST_OMP_END_DO
; break;
3893 case ST_OMP_DO_SIMD
: omp_end_st
= ST_OMP_END_DO_SIMD
; break;
3894 case ST_OMP_PARALLEL_DO
: omp_end_st
= ST_OMP_END_PARALLEL_DO
; break;
3895 case ST_OMP_PARALLEL_DO_SIMD
:
3896 omp_end_st
= ST_OMP_END_PARALLEL_DO_SIMD
;
3898 case ST_OMP_SIMD
: omp_end_st
= ST_OMP_END_SIMD
; break;
3899 case ST_OMP_TARGET_TEAMS_DISTRIBUTE
:
3900 omp_end_st
= ST_OMP_END_TARGET_TEAMS_DISTRIBUTE
;
3902 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO
:
3903 omp_end_st
= ST_OMP_END_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO
;
3905 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
3906 omp_end_st
= ST_OMP_END_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
;
3908 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD
:
3909 omp_end_st
= ST_OMP_END_TARGET_TEAMS_DISTRIBUTE_SIMD
;
3911 case ST_OMP_TEAMS_DISTRIBUTE
:
3912 omp_end_st
= ST_OMP_END_TEAMS_DISTRIBUTE
;
3914 case ST_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO
:
3915 omp_end_st
= ST_OMP_END_TEAMS_DISTRIBUTE_PARALLEL_DO
;
3917 case ST_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
3918 omp_end_st
= ST_OMP_END_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
;
3920 case ST_OMP_TEAMS_DISTRIBUTE_SIMD
:
3921 omp_end_st
= ST_OMP_END_TEAMS_DISTRIBUTE_SIMD
;
3923 default: gcc_unreachable ();
3925 if (st
== omp_end_st
)
3927 if (new_st
.op
== EXEC_OMP_END_NOWAIT
)
3928 cp
->ext
.omp_clauses
->nowait
|= new_st
.ext
.omp_bool
;
3930 gcc_assert (new_st
.op
== EXEC_NOP
);
3931 gfc_clear_new_st ();
3932 gfc_commit_symbols ();
3933 gfc_warning_check ();
3934 st
= next_statement ();
3940 /* Parse the statements of OpenMP atomic directive. */
3942 static gfc_statement
3943 parse_omp_atomic (void)
3950 accept_statement (ST_OMP_ATOMIC
);
3952 cp
= gfc_state_stack
->tail
;
3953 push_state (&s
, COMP_OMP_STRUCTURED_BLOCK
, NULL
);
3954 np
= new_level (cp
);
3957 count
= 1 + ((cp
->ext
.omp_atomic
& GFC_OMP_ATOMIC_MASK
)
3958 == GFC_OMP_ATOMIC_CAPTURE
);
3962 st
= next_statement ();
3965 else if (st
== ST_ASSIGNMENT
)
3967 accept_statement (st
);
3971 unexpected_statement (st
);
3976 st
= next_statement ();
3977 if (st
== ST_OMP_END_ATOMIC
)
3979 gfc_clear_new_st ();
3980 gfc_commit_symbols ();
3981 gfc_warning_check ();
3982 st
= next_statement ();
3984 else if ((cp
->ext
.omp_atomic
& GFC_OMP_ATOMIC_MASK
)
3985 == GFC_OMP_ATOMIC_CAPTURE
)
3986 gfc_error ("Missing !$OMP END ATOMIC after !$OMP ATOMIC CAPTURE at %C");
3991 /* Parse the statements of an OpenMP structured block. */
3994 parse_omp_structured_block (gfc_statement omp_st
, bool workshare_stmts_only
)
3996 gfc_statement st
, omp_end_st
;
4000 accept_statement (omp_st
);
4002 cp
= gfc_state_stack
->tail
;
4003 push_state (&s
, COMP_OMP_STRUCTURED_BLOCK
, NULL
);
4004 np
= new_level (cp
);
4010 case ST_OMP_PARALLEL
:
4011 omp_end_st
= ST_OMP_END_PARALLEL
;
4013 case ST_OMP_PARALLEL_SECTIONS
:
4014 omp_end_st
= ST_OMP_END_PARALLEL_SECTIONS
;
4016 case ST_OMP_SECTIONS
:
4017 omp_end_st
= ST_OMP_END_SECTIONS
;
4019 case ST_OMP_ORDERED
:
4020 omp_end_st
= ST_OMP_END_ORDERED
;
4022 case ST_OMP_CRITICAL
:
4023 omp_end_st
= ST_OMP_END_CRITICAL
;
4026 omp_end_st
= ST_OMP_END_MASTER
;
4029 omp_end_st
= ST_OMP_END_SINGLE
;
4032 omp_end_st
= ST_OMP_END_TARGET
;
4034 case ST_OMP_TARGET_DATA
:
4035 omp_end_st
= ST_OMP_END_TARGET_DATA
;
4037 case ST_OMP_TARGET_TEAMS
:
4038 omp_end_st
= ST_OMP_END_TARGET_TEAMS
;
4040 case ST_OMP_TARGET_TEAMS_DISTRIBUTE
:
4041 omp_end_st
= ST_OMP_END_TARGET_TEAMS_DISTRIBUTE
;
4043 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO
:
4044 omp_end_st
= ST_OMP_END_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO
;
4046 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
4047 omp_end_st
= ST_OMP_END_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
;
4049 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD
:
4050 omp_end_st
= ST_OMP_END_TARGET_TEAMS_DISTRIBUTE_SIMD
;
4053 omp_end_st
= ST_OMP_END_TASK
;
4055 case ST_OMP_TASKGROUP
:
4056 omp_end_st
= ST_OMP_END_TASKGROUP
;
4059 omp_end_st
= ST_OMP_END_TEAMS
;
4061 case ST_OMP_TEAMS_DISTRIBUTE
:
4062 omp_end_st
= ST_OMP_END_TEAMS_DISTRIBUTE
;
4064 case ST_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO
:
4065 omp_end_st
= ST_OMP_END_TEAMS_DISTRIBUTE_PARALLEL_DO
;
4067 case ST_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
4068 omp_end_st
= ST_OMP_END_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
;
4070 case ST_OMP_TEAMS_DISTRIBUTE_SIMD
:
4071 omp_end_st
= ST_OMP_END_TEAMS_DISTRIBUTE_SIMD
;
4073 case ST_OMP_DISTRIBUTE
:
4074 omp_end_st
= ST_OMP_END_DISTRIBUTE
;
4076 case ST_OMP_DISTRIBUTE_PARALLEL_DO
:
4077 omp_end_st
= ST_OMP_END_DISTRIBUTE_PARALLEL_DO
;
4079 case ST_OMP_DISTRIBUTE_PARALLEL_DO_SIMD
:
4080 omp_end_st
= ST_OMP_END_DISTRIBUTE_PARALLEL_DO_SIMD
;
4082 case ST_OMP_DISTRIBUTE_SIMD
:
4083 omp_end_st
= ST_OMP_END_DISTRIBUTE_SIMD
;
4085 case ST_OMP_WORKSHARE
:
4086 omp_end_st
= ST_OMP_END_WORKSHARE
;
4088 case ST_OMP_PARALLEL_WORKSHARE
:
4089 omp_end_st
= ST_OMP_END_PARALLEL_WORKSHARE
;
4097 if (workshare_stmts_only
)
4099 /* Inside of !$omp workshare, only
4102 where statements and constructs
4103 forall statements and constructs
4107 are allowed. For !$omp critical these
4108 restrictions apply recursively. */
4111 st
= next_statement ();
4122 accept_statement (st
);
4125 case ST_WHERE_BLOCK
:
4126 parse_where_block ();
4129 case ST_FORALL_BLOCK
:
4130 parse_forall_block ();
4133 case ST_OMP_PARALLEL
:
4134 case ST_OMP_PARALLEL_SECTIONS
:
4135 parse_omp_structured_block (st
, false);
4138 case ST_OMP_PARALLEL_WORKSHARE
:
4139 case ST_OMP_CRITICAL
:
4140 parse_omp_structured_block (st
, true);
4143 case ST_OMP_PARALLEL_DO
:
4144 case ST_OMP_PARALLEL_DO_SIMD
:
4145 st
= parse_omp_do (st
);
4149 st
= parse_omp_atomic ();
4160 st
= next_statement ();
4164 st
= parse_executable (ST_NONE
);
4167 else if (st
== ST_OMP_SECTION
4168 && (omp_st
== ST_OMP_SECTIONS
4169 || omp_st
== ST_OMP_PARALLEL_SECTIONS
))
4171 np
= new_level (np
);
4175 else if (st
!= omp_end_st
)
4176 unexpected_statement (st
);
4178 while (st
!= omp_end_st
);
4182 case EXEC_OMP_END_NOWAIT
:
4183 cp
->ext
.omp_clauses
->nowait
|= new_st
.ext
.omp_bool
;
4185 case EXEC_OMP_CRITICAL
:
4186 if (((cp
->ext
.omp_name
== NULL
) ^ (new_st
.ext
.omp_name
== NULL
))
4187 || (new_st
.ext
.omp_name
!= NULL
4188 && strcmp (cp
->ext
.omp_name
, new_st
.ext
.omp_name
) != 0))
4189 gfc_error ("Name after !$omp critical and !$omp end critical does "
4191 free (CONST_CAST (char *, new_st
.ext
.omp_name
));
4193 case EXEC_OMP_END_SINGLE
:
4194 cp
->ext
.omp_clauses
->lists
[OMP_LIST_COPYPRIVATE
]
4195 = new_st
.ext
.omp_clauses
->lists
[OMP_LIST_COPYPRIVATE
];
4196 new_st
.ext
.omp_clauses
->lists
[OMP_LIST_COPYPRIVATE
] = NULL
;
4197 gfc_free_omp_clauses (new_st
.ext
.omp_clauses
);
4205 gfc_clear_new_st ();
4206 gfc_commit_symbols ();
4207 gfc_warning_check ();
4212 /* Accept a series of executable statements. We return the first
4213 statement that doesn't fit to the caller. Any block statements are
4214 passed on to the correct handler, which usually passes the buck
4217 static gfc_statement
4218 parse_executable (gfc_statement st
)
4223 st
= next_statement ();
4227 close_flag
= check_do_closure ();
4232 case ST_END_PROGRAM
:
4235 case ST_END_FUNCTION
:
4240 case ST_END_SUBROUTINE
:
4245 case ST_SELECT_CASE
:
4246 gfc_error ("%s statement at %C cannot terminate a non-block "
4247 "DO loop", gfc_ascii_statement (st
));
4260 gfc_notify_std (GFC_STD_F95_OBS
, "DATA statement at %C after the "
4261 "first executable statement");
4267 accept_statement (st
);
4268 if (close_flag
== 1)
4269 return ST_IMPLIED_ENDDO
;
4273 parse_block_construct ();
4284 case ST_SELECT_CASE
:
4285 parse_select_block ();
4288 case ST_SELECT_TYPE
:
4289 parse_select_type_block();
4294 if (check_do_closure () == 1)
4295 return ST_IMPLIED_ENDDO
;
4299 parse_critical_block ();
4302 case ST_WHERE_BLOCK
:
4303 parse_where_block ();
4306 case ST_FORALL_BLOCK
:
4307 parse_forall_block ();
4310 case ST_OMP_PARALLEL
:
4311 case ST_OMP_PARALLEL_SECTIONS
:
4312 case ST_OMP_SECTIONS
:
4313 case ST_OMP_ORDERED
:
4314 case ST_OMP_CRITICAL
:
4318 case ST_OMP_TARGET_DATA
:
4319 case ST_OMP_TARGET_TEAMS
:
4322 case ST_OMP_TASKGROUP
:
4323 parse_omp_structured_block (st
, false);
4326 case ST_OMP_WORKSHARE
:
4327 case ST_OMP_PARALLEL_WORKSHARE
:
4328 parse_omp_structured_block (st
, true);
4331 case ST_OMP_DISTRIBUTE
:
4332 case ST_OMP_DISTRIBUTE_PARALLEL_DO
:
4333 case ST_OMP_DISTRIBUTE_PARALLEL_DO_SIMD
:
4334 case ST_OMP_DISTRIBUTE_SIMD
:
4336 case ST_OMP_DO_SIMD
:
4337 case ST_OMP_PARALLEL_DO
:
4338 case ST_OMP_PARALLEL_DO_SIMD
:
4340 case ST_OMP_TARGET_TEAMS_DISTRIBUTE
:
4341 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO
:
4342 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
4343 case ST_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD
:
4344 case ST_OMP_TEAMS_DISTRIBUTE
:
4345 case ST_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO
:
4346 case ST_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
4347 case ST_OMP_TEAMS_DISTRIBUTE_SIMD
:
4348 st
= parse_omp_do (st
);
4349 if (st
== ST_IMPLIED_ENDDO
)
4354 st
= parse_omp_atomic ();
4361 st
= next_statement ();
4366 /* Fix the symbols for sibling functions. These are incorrectly added to
4367 the child namespace as the parser didn't know about this procedure. */
4370 gfc_fixup_sibling_symbols (gfc_symbol
*sym
, gfc_namespace
*siblings
)
4374 gfc_symbol
*old_sym
;
4376 for (ns
= siblings
; ns
; ns
= ns
->sibling
)
4378 st
= gfc_find_symtree (ns
->sym_root
, sym
->name
);
4380 if (!st
|| (st
->n
.sym
->attr
.dummy
&& ns
== st
->n
.sym
->ns
))
4381 goto fixup_contained
;
4383 if ((st
->n
.sym
->attr
.flavor
== FL_DERIVED
4384 && sym
->attr
.generic
&& sym
->attr
.function
)
4385 ||(sym
->attr
.flavor
== FL_DERIVED
4386 && st
->n
.sym
->attr
.generic
&& st
->n
.sym
->attr
.function
))
4387 goto fixup_contained
;
4389 old_sym
= st
->n
.sym
;
4390 if (old_sym
->ns
== ns
4391 && !old_sym
->attr
.contained
4393 /* By 14.6.1.3, host association should be excluded
4394 for the following. */
4395 && !(old_sym
->attr
.external
4396 || (old_sym
->ts
.type
!= BT_UNKNOWN
4397 && !old_sym
->attr
.implicit_type
)
4398 || old_sym
->attr
.flavor
== FL_PARAMETER
4399 || old_sym
->attr
.use_assoc
4400 || old_sym
->attr
.in_common
4401 || old_sym
->attr
.in_equivalence
4402 || old_sym
->attr
.data
4403 || old_sym
->attr
.dummy
4404 || old_sym
->attr
.result
4405 || old_sym
->attr
.dimension
4406 || old_sym
->attr
.allocatable
4407 || old_sym
->attr
.intrinsic
4408 || old_sym
->attr
.generic
4409 || old_sym
->attr
.flavor
== FL_NAMELIST
4410 || old_sym
->attr
.flavor
== FL_LABEL
4411 || old_sym
->attr
.proc
== PROC_ST_FUNCTION
))
4413 /* Replace it with the symbol from the parent namespace. */
4417 gfc_release_symbol (old_sym
);
4421 /* Do the same for any contained procedures. */
4422 gfc_fixup_sibling_symbols (sym
, ns
->contained
);
4427 parse_contained (int module
)
4429 gfc_namespace
*ns
, *parent_ns
, *tmp
;
4430 gfc_state_data s1
, s2
;
4434 int contains_statements
= 0;
4437 push_state (&s1
, COMP_CONTAINS
, NULL
);
4438 parent_ns
= gfc_current_ns
;
4442 gfc_current_ns
= gfc_get_namespace (parent_ns
, 1);
4444 gfc_current_ns
->sibling
= parent_ns
->contained
;
4445 parent_ns
->contained
= gfc_current_ns
;
4448 /* Process the next available statement. We come here if we got an error
4449 and rejected the last statement. */
4450 st
= next_statement ();
4459 contains_statements
= 1;
4460 accept_statement (st
);
4463 (st
== ST_FUNCTION
) ? COMP_FUNCTION
: COMP_SUBROUTINE
,
4466 /* For internal procedures, create/update the symbol in the
4467 parent namespace. */
4471 if (gfc_get_symbol (gfc_new_block
->name
, parent_ns
, &sym
))
4472 gfc_error ("Contained procedure '%s' at %C is already "
4473 "ambiguous", gfc_new_block
->name
);
4476 if (gfc_add_procedure (&sym
->attr
, PROC_INTERNAL
,
4478 &gfc_new_block
->declared_at
))
4480 if (st
== ST_FUNCTION
)
4481 gfc_add_function (&sym
->attr
, sym
->name
,
4482 &gfc_new_block
->declared_at
);
4484 gfc_add_subroutine (&sym
->attr
, sym
->name
,
4485 &gfc_new_block
->declared_at
);
4489 gfc_commit_symbols ();
4492 sym
= gfc_new_block
;
4494 /* Mark this as a contained function, so it isn't replaced
4495 by other module functions. */
4496 sym
->attr
.contained
= 1;
4498 /* Set implicit_pure so that it can be reset if any of the
4499 tests for purity fail. This is used for some optimisation
4500 during translation. */
4501 if (!sym
->attr
.pure
)
4502 sym
->attr
.implicit_pure
= 1;
4504 parse_progunit (ST_NONE
);
4506 /* Fix up any sibling functions that refer to this one. */
4507 gfc_fixup_sibling_symbols (sym
, gfc_current_ns
);
4508 /* Or refer to any of its alternate entry points. */
4509 for (el
= gfc_current_ns
->entries
; el
; el
= el
->next
)
4510 gfc_fixup_sibling_symbols (el
->sym
, gfc_current_ns
);
4512 gfc_current_ns
->code
= s2
.head
;
4513 gfc_current_ns
= parent_ns
;
4518 /* These statements are associated with the end of the host unit. */
4519 case ST_END_FUNCTION
:
4521 case ST_END_PROGRAM
:
4522 case ST_END_SUBROUTINE
:
4523 accept_statement (st
);
4524 gfc_current_ns
->code
= s1
.head
;
4528 gfc_error ("Unexpected %s statement in CONTAINS section at %C",
4529 gfc_ascii_statement (st
));
4530 reject_statement ();
4536 while (st
!= ST_END_FUNCTION
&& st
!= ST_END_SUBROUTINE
4537 && st
!= ST_END_MODULE
&& st
!= ST_END_PROGRAM
);
4539 /* The first namespace in the list is guaranteed to not have
4540 anything (worthwhile) in it. */
4541 tmp
= gfc_current_ns
;
4542 gfc_current_ns
= parent_ns
;
4543 if (seen_error
&& tmp
->refs
> 1)
4544 gfc_free_namespace (tmp
);
4546 ns
= gfc_current_ns
->contained
;
4547 gfc_current_ns
->contained
= ns
->sibling
;
4548 gfc_free_namespace (ns
);
4551 if (!contains_statements
)
4552 gfc_notify_std (GFC_STD_F2008
, "CONTAINS statement without "
4553 "FUNCTION or SUBROUTINE statement at %C");
4557 /* Parse a PROGRAM, SUBROUTINE, FUNCTION unit or BLOCK construct. */
4560 parse_progunit (gfc_statement st
)
4565 st
= parse_spec (st
);
4572 /* This is not allowed within BLOCK! */
4573 if (gfc_current_state () != COMP_BLOCK
)
4578 accept_statement (st
);
4585 if (gfc_current_state () == COMP_FUNCTION
)
4586 gfc_check_function_type (gfc_current_ns
);
4591 st
= parse_executable (st
);
4599 /* This is not allowed within BLOCK! */
4600 if (gfc_current_state () != COMP_BLOCK
)
4605 accept_statement (st
);
4612 unexpected_statement (st
);
4613 reject_statement ();
4614 st
= next_statement ();
4620 for (p
= gfc_state_stack
; p
; p
= p
->previous
)
4621 if (p
->state
== COMP_CONTAINS
)
4624 if (gfc_find_state (COMP_MODULE
) == true)
4629 gfc_error ("CONTAINS statement at %C is already in a contained "
4631 reject_statement ();
4632 st
= next_statement ();
4636 parse_contained (0);
4639 gfc_current_ns
->code
= gfc_state_stack
->head
;
4643 /* Come here to complain about a global symbol already in use as
4647 gfc_global_used (gfc_gsymbol
*sym
, locus
*where
)
4652 where
= &gfc_current_locus
;
4662 case GSYM_SUBROUTINE
:
4663 name
= "SUBROUTINE";
4668 case GSYM_BLOCK_DATA
:
4669 name
= "BLOCK DATA";
4675 gfc_internal_error ("gfc_global_used(): Bad type");
4679 if (sym
->binding_label
)
4680 gfc_error ("Global binding name '%s' at %L is already being used as a %s "
4681 "at %L", sym
->binding_label
, where
, name
, &sym
->where
);
4683 gfc_error ("Global name '%s' at %L is already being used as a %s at %L",
4684 sym
->name
, where
, name
, &sym
->where
);
4688 /* Parse a block data program unit. */
4691 parse_block_data (void)
4694 static locus blank_locus
;
4695 static int blank_block
=0;
4698 gfc_current_ns
->proc_name
= gfc_new_block
;
4699 gfc_current_ns
->is_block_data
= 1;
4701 if (gfc_new_block
== NULL
)
4704 gfc_error ("Blank BLOCK DATA at %C conflicts with "
4705 "prior BLOCK DATA at %L", &blank_locus
);
4709 blank_locus
= gfc_current_locus
;
4714 s
= gfc_get_gsymbol (gfc_new_block
->name
);
4716 || (s
->type
!= GSYM_UNKNOWN
&& s
->type
!= GSYM_BLOCK_DATA
))
4717 gfc_global_used (s
, &gfc_new_block
->declared_at
);
4720 s
->type
= GSYM_BLOCK_DATA
;
4721 s
->where
= gfc_new_block
->declared_at
;
4726 st
= parse_spec (ST_NONE
);
4728 while (st
!= ST_END_BLOCK_DATA
)
4730 gfc_error ("Unexpected %s statement in BLOCK DATA at %C",
4731 gfc_ascii_statement (st
));
4732 reject_statement ();
4733 st
= next_statement ();
4738 /* Parse a module subprogram. */
4747 s
= gfc_get_gsymbol (gfc_new_block
->name
);
4748 if (s
->defined
|| (s
->type
!= GSYM_UNKNOWN
&& s
->type
!= GSYM_MODULE
))
4749 gfc_global_used (s
, &gfc_new_block
->declared_at
);
4752 s
->type
= GSYM_MODULE
;
4753 s
->where
= gfc_new_block
->declared_at
;
4757 st
= parse_spec (ST_NONE
);
4767 parse_contained (1);
4771 accept_statement (st
);
4775 gfc_error ("Unexpected %s statement in MODULE at %C",
4776 gfc_ascii_statement (st
));
4779 reject_statement ();
4780 st
= next_statement ();
4784 /* Make sure not to free the namespace twice on error. */
4786 s
->ns
= gfc_current_ns
;
4790 /* Add a procedure name to the global symbol table. */
4793 add_global_procedure (bool sub
)
4797 /* Only in Fortran 2003: For procedures with a binding label also the Fortran
4798 name is a global identifier. */
4799 if (!gfc_new_block
->binding_label
|| gfc_notification_std (GFC_STD_F2008
))
4801 s
= gfc_get_gsymbol (gfc_new_block
->name
);
4804 || (s
->type
!= GSYM_UNKNOWN
4805 && s
->type
!= (sub
? GSYM_SUBROUTINE
: GSYM_FUNCTION
)))
4807 gfc_global_used (s
, &gfc_new_block
->declared_at
);
4808 /* Silence follow-up errors. */
4809 gfc_new_block
->binding_label
= NULL
;
4813 s
->type
= sub
? GSYM_SUBROUTINE
: GSYM_FUNCTION
;
4814 s
->sym_name
= gfc_new_block
->name
;
4815 s
->where
= gfc_new_block
->declared_at
;
4817 s
->ns
= gfc_current_ns
;
4821 /* Don't add the symbol multiple times. */
4822 if (gfc_new_block
->binding_label
4823 && (!gfc_notification_std (GFC_STD_F2008
)
4824 || strcmp (gfc_new_block
->name
, gfc_new_block
->binding_label
) != 0))
4826 s
= gfc_get_gsymbol (gfc_new_block
->binding_label
);
4829 || (s
->type
!= GSYM_UNKNOWN
4830 && s
->type
!= (sub
? GSYM_SUBROUTINE
: GSYM_FUNCTION
)))
4832 gfc_global_used (s
, &gfc_new_block
->declared_at
);
4833 /* Silence follow-up errors. */
4834 gfc_new_block
->binding_label
= NULL
;
4838 s
->type
= sub
? GSYM_SUBROUTINE
: GSYM_FUNCTION
;
4839 s
->sym_name
= gfc_new_block
->name
;
4840 s
->binding_label
= gfc_new_block
->binding_label
;
4841 s
->where
= gfc_new_block
->declared_at
;
4843 s
->ns
= gfc_current_ns
;
4849 /* Add a program to the global symbol table. */
4852 add_global_program (void)
4856 if (gfc_new_block
== NULL
)
4858 s
= gfc_get_gsymbol (gfc_new_block
->name
);
4860 if (s
->defined
|| (s
->type
!= GSYM_UNKNOWN
&& s
->type
!= GSYM_PROGRAM
))
4861 gfc_global_used (s
, &gfc_new_block
->declared_at
);
4864 s
->type
= GSYM_PROGRAM
;
4865 s
->where
= gfc_new_block
->declared_at
;
4867 s
->ns
= gfc_current_ns
;
4872 /* Resolve all the program units. */
4874 resolve_all_program_units (gfc_namespace
*gfc_global_ns_list
)
4876 gfc_free_dt_list ();
4877 gfc_current_ns
= gfc_global_ns_list
;
4878 for (; gfc_current_ns
; gfc_current_ns
= gfc_current_ns
->sibling
)
4880 if (gfc_current_ns
->proc_name
4881 && gfc_current_ns
->proc_name
->attr
.flavor
== FL_MODULE
)
4882 continue; /* Already resolved. */
4884 if (gfc_current_ns
->proc_name
)
4885 gfc_current_locus
= gfc_current_ns
->proc_name
->declared_at
;
4886 gfc_resolve (gfc_current_ns
);
4887 gfc_current_ns
->derived_types
= gfc_derived_types
;
4888 gfc_derived_types
= NULL
;
4894 clean_up_modules (gfc_gsymbol
*gsym
)
4899 clean_up_modules (gsym
->left
);
4900 clean_up_modules (gsym
->right
);
4902 if (gsym
->type
!= GSYM_MODULE
|| !gsym
->ns
)
4905 gfc_current_ns
= gsym
->ns
;
4906 gfc_derived_types
= gfc_current_ns
->derived_types
;
4913 /* Translate all the program units. This could be in a different order
4914 to resolution if there are forward references in the file. */
4916 translate_all_program_units (gfc_namespace
*gfc_global_ns_list
)
4920 gfc_current_ns
= gfc_global_ns_list
;
4921 gfc_get_errors (NULL
, &errors
);
4923 /* We first translate all modules to make sure that later parts
4924 of the program can use the decl. Then we translate the nonmodules. */
4926 for (; !errors
&& gfc_current_ns
; gfc_current_ns
= gfc_current_ns
->sibling
)
4928 if (!gfc_current_ns
->proc_name
4929 || gfc_current_ns
->proc_name
->attr
.flavor
!= FL_MODULE
)
4932 gfc_current_locus
= gfc_current_ns
->proc_name
->declared_at
;
4933 gfc_derived_types
= gfc_current_ns
->derived_types
;
4934 gfc_generate_module_code (gfc_current_ns
);
4935 gfc_current_ns
->translated
= 1;
4938 gfc_current_ns
= gfc_global_ns_list
;
4939 for (; !errors
&& gfc_current_ns
; gfc_current_ns
= gfc_current_ns
->sibling
)
4941 if (gfc_current_ns
->proc_name
4942 && gfc_current_ns
->proc_name
->attr
.flavor
== FL_MODULE
)
4945 gfc_current_locus
= gfc_current_ns
->proc_name
->declared_at
;
4946 gfc_derived_types
= gfc_current_ns
->derived_types
;
4947 gfc_generate_code (gfc_current_ns
);
4948 gfc_current_ns
->translated
= 1;
4951 /* Clean up all the namespaces after translation. */
4952 gfc_current_ns
= gfc_global_ns_list
;
4953 for (;gfc_current_ns
;)
4957 if (gfc_current_ns
->proc_name
4958 && gfc_current_ns
->proc_name
->attr
.flavor
== FL_MODULE
)
4960 gfc_current_ns
= gfc_current_ns
->sibling
;
4964 ns
= gfc_current_ns
->sibling
;
4965 gfc_derived_types
= gfc_current_ns
->derived_types
;
4967 gfc_current_ns
= ns
;
4970 clean_up_modules (gfc_gsym_root
);
4974 /* Top level parser. */
4977 gfc_parse_file (void)
4979 int seen_program
, errors_before
, errors
;
4980 gfc_state_data top
, s
;
4983 gfc_namespace
*next
;
4985 gfc_start_source_files ();
4987 top
.state
= COMP_NONE
;
4989 top
.previous
= NULL
;
4990 top
.head
= top
.tail
= NULL
;
4991 top
.do_variable
= NULL
;
4993 gfc_state_stack
= &top
;
4995 gfc_clear_new_st ();
4997 gfc_statement_label
= NULL
;
4999 if (setjmp (eof_buf
))
5000 return false; /* Come here on unexpected EOF */
5002 /* Prepare the global namespace that will contain the
5004 gfc_global_ns_list
= next
= NULL
;
5009 /* Exit early for empty files. */
5015 st
= next_statement ();
5024 goto duplicate_main
;
5026 prog_locus
= gfc_current_locus
;
5028 push_state (&s
, COMP_PROGRAM
, gfc_new_block
);
5029 main_program_symbol(gfc_current_ns
, gfc_new_block
->name
);
5030 accept_statement (st
);
5031 add_global_program ();
5032 parse_progunit (ST_NONE
);
5037 add_global_procedure (true);
5038 push_state (&s
, COMP_SUBROUTINE
, gfc_new_block
);
5039 accept_statement (st
);
5040 parse_progunit (ST_NONE
);
5045 add_global_procedure (false);
5046 push_state (&s
, COMP_FUNCTION
, gfc_new_block
);
5047 accept_statement (st
);
5048 parse_progunit (ST_NONE
);
5053 push_state (&s
, COMP_BLOCK_DATA
, gfc_new_block
);
5054 accept_statement (st
);
5055 parse_block_data ();
5059 push_state (&s
, COMP_MODULE
, gfc_new_block
);
5060 accept_statement (st
);
5062 gfc_get_errors (NULL
, &errors_before
);
5066 /* Anything else starts a nameless main program block. */
5069 goto duplicate_main
;
5071 prog_locus
= gfc_current_locus
;
5073 push_state (&s
, COMP_PROGRAM
, gfc_new_block
);
5074 main_program_symbol (gfc_current_ns
, "MAIN__");
5075 parse_progunit (st
);
5080 /* Handle the non-program units. */
5081 gfc_current_ns
->code
= s
.head
;
5083 gfc_resolve (gfc_current_ns
);
5085 /* Dump the parse tree if requested. */
5086 if (gfc_option
.dump_fortran_original
)
5087 gfc_dump_parse_tree (gfc_current_ns
, stdout
);
5089 gfc_get_errors (NULL
, &errors
);
5090 if (s
.state
== COMP_MODULE
)
5092 gfc_dump_module (s
.sym
->name
, errors_before
== errors
);
5093 gfc_current_ns
->derived_types
= gfc_derived_types
;
5094 gfc_derived_types
= NULL
;
5100 gfc_generate_code (gfc_current_ns
);
5108 /* The main program and non-contained procedures are put
5109 in the global namespace list, so that they can be processed
5110 later and all their interfaces resolved. */
5111 gfc_current_ns
->code
= s
.head
;
5114 for (; next
->sibling
; next
= next
->sibling
)
5116 next
->sibling
= gfc_current_ns
;
5119 gfc_global_ns_list
= gfc_current_ns
;
5121 next
= gfc_current_ns
;
5128 /* Do the resolution. */
5129 resolve_all_program_units (gfc_global_ns_list
);
5131 /* Do the parse tree dump. */
5133 = gfc_option
.dump_fortran_original
? gfc_global_ns_list
: NULL
;
5135 for (; gfc_current_ns
; gfc_current_ns
= gfc_current_ns
->sibling
)
5136 if (!gfc_current_ns
->proc_name
5137 || gfc_current_ns
->proc_name
->attr
.flavor
!= FL_MODULE
)
5139 gfc_dump_parse_tree (gfc_current_ns
, stdout
);
5140 fputs ("------------------------------------------\n\n", stdout
);
5143 /* Do the translation. */
5144 translate_all_program_units (gfc_global_ns_list
);
5146 gfc_end_source_files ();
5150 /* If we see a duplicate main program, shut down. If the second
5151 instance is an implied main program, i.e. data decls or executable
5152 statements, we're in for lots of errors. */
5153 gfc_error ("Two main PROGRAMs at %L and %C", &prog_locus
);
5154 reject_statement ();