1 /* stc.c -- Implementation File (module.c template V1.0)
2 Copyright (C) 1995-1997 Free Software Foundation, Inc.
3 Contributed by James Craig Burley.
5 This file is part of GNU Fortran.
7 GNU Fortran is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Fortran is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Fortran; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
26 Verifies the proper semantics for statements, checking expressions already
27 semantically analyzed individually, collectively, checking label defs and
28 refs, and so on. Uses ffebad to indicate errors in semantics.
30 In many cases, both a token and a keyword (ffestrFirst, ffestrSecond,
31 or ffestrOther) is provided. ONLY USE THE TOKEN as a pointer to the
32 source-code location for an error message or similar; use the keyword
33 as the semantic matching for the token, since the token's text might
34 not match the keyword's code. For example, INTENT(IN OUT) A in free
35 source form passes to ffestc_R519_start the token "IN" but the keyword
36 FFESTR_otherINOUT, and the latter is correct.
38 Generally, either a single ffestc function handles an entire statement,
39 in which case its name is ffestc_xyz_, or more than one function is
40 needed, in which case its names are ffestc_xyz_start_,
41 ffestc_xyz_item_ or ffestc_xyz_item_abc_, and ffestc_xyz_finish_.
42 The caller must call _start_ before calling any _item_ functions, and
43 must call _finish_ afterwards. If it is clearly a syntactic matter as
44 to restrictions on the number and variety of _item_ calls, then the caller
45 should report any errors and ffestc_ should presume it has been taken
46 care of and handle any semantic problems with grace and no error messages.
47 If the permitted number and variety of _item_ calls has some basis in
48 semantics, then the caller should not generate any messages and ffestc
49 should do all the checking.
51 A few ffestc functions have names rather than grammar numbers, like
52 ffestc_elsewhere and ffestc_end. These are cases where the actual
53 statement depends on its context rather than just its form; ELSE WHERE
54 may be the obvious (WHERE...ELSE WHERE...END WHERE) or something a little
55 more subtle (WHERE: IF THEN...ELSE WHERE...END IF WHERE). The actual
56 ffestc functions do exist and do work, but may or may not be invoked
57 by ffestb depending on whether some form of resolution is possible.
58 For example, ffestc_R1103 end-program-stmt is reachable directly when
59 END PROGRAM [name] is specified, or via ffestc_end when END is specified
60 and the context is a main program. So ffestc_xyz_ should make a quick
61 determination of the context and pick the appropriate ffestc_Nxyz_
62 function to invoke, without a lot of ceremony.
87 /* Externals defined here. */
89 ffeexprContext ffestc_iolist_context_
= FFEEXPR_contextIOLIST
;
90 /* Valid only from READ/WRITE start to finish. */
92 /* Simple definitions and enumerations. */
96 FFESTC_orderOK_
, /* Statement ok in this context, process. */
97 FFESTC_orderBAD_
, /* Statement not ok in this context, don't
99 FFESTC_orderBADOK_
, /* Don't process but push block if
106 FFESTC_stateletSIMPLE_
, /* Expecting simple/start. */
107 FFESTC_stateletATTRIB_
, /* Expecting attrib/item/itemstart. */
108 FFESTC_stateletITEM_
, /* Expecting item/itemstart/finish. */
109 FFESTC_stateletITEMVALS_
, /* Expecting itemvalue/itemendvals. */
113 /* Internal typedefs. */
116 /* Private include files. */
119 /* Internal structure definitions. */
121 union ffestc_local_u_
125 ffebld initlist
; /* For list of one sym in INTEGER I/3/ case. */
126 ffetargetCharacterSize stmt_size
;
127 ffetargetCharacterSize size
;
128 ffeinfoBasictype basic_type
;
129 ffeinfoKindtype stmt_kind_type
;
130 ffeinfoKindtype kind_type
;
131 bool per_var_kind_ok
;
132 char is_R426
; /* 1=R426, 2=R501. */
137 ffebld objlist
; /* For list of target objects. */
138 ffebldListBottom list_bottom
; /* For building lists. */
143 ffebldListBottom list_bottom
; /* For building lists. */
149 ffesymbol symbol
; /* NML symbol. */
154 ffelexToken t
; /* First token in list. */
155 ffeequiv eq
; /* Current equivalence being built up. */
156 ffebld list
; /* List of expressions in equivalence. */
157 ffebldListBottom bottom
;
158 bool ok
; /* TRUE while current list still being
160 bool save
; /* TRUE if any var in list is SAVEd. */
165 ffesymbol symbol
; /* BCB/NCB symbol. */
170 ffesymbol symbol
; /* SFN symbol. */
176 char list_state
; /* 0=>no field names allowed, 1=>error
177 reported already, 2=>field names req'd,
178 3=>have a field name. */
182 }; /* Merge with the one in ffestc later. */
184 /* Static objects accessed by functions in this module. */
186 static bool ffestc_ok_
; /* _start_ fn's send this to _xyz_ fn's. */
187 static bool ffestc_parent_ok_
; /* Parent sym for baby sym fn's ok. */
188 static char ffestc_namelist_
; /* 0=>not namelist, 1=>namelist, 2=>error. */
189 static union ffestc_local_u_ ffestc_local_
;
190 static ffestcStatelet_ ffestc_statelet_
= FFESTC_stateletSIMPLE_
;
191 static ffestwShriek ffestc_shriek_after1_
= NULL
;
192 static unsigned long ffestc_blocknum_
= 0; /* Next block# to assign. */
193 static int ffestc_entry_num_
;
194 static int ffestc_sfdummy_argno_
;
195 static int ffestc_saved_entry_num_
;
196 static ffelab ffestc_label_
;
198 /* Static functions (internal). */
200 static void ffestc_R544_equiv_ (ffebld expr
, ffelexToken t
);
201 static void ffestc_establish_declinfo_ (ffebld kind
, ffelexToken kindt
,
202 ffebld len
, ffelexToken lent
);
203 static void ffestc_establish_declstmt_ (ffestpType type
, ffelexToken typet
,
204 ffebld kind
, ffelexToken kindt
,
205 ffebld len
, ffelexToken lent
);
206 static void ffestc_establish_impletter_ (ffelexToken first
, ffelexToken last
);
207 static ffeinfoKindtype
ffestc_kindtype_kind_ (ffeinfoBasictype bt
,
208 ffetargetCharacterSize val
);
209 static ffeinfoKindtype
ffestc_kindtype_star_ (ffeinfoBasictype bt
,
210 ffetargetCharacterSize val
);
211 static void ffestc_labeldef_any_ (void);
212 static bool ffestc_labeldef_begin_ (void);
213 static void ffestc_labeldef_branch_begin_ (void);
214 static void ffestc_labeldef_branch_end_ (void);
215 static void ffestc_labeldef_endif_ (void);
216 static void ffestc_labeldef_format_ (void);
217 static void ffestc_labeldef_invalid_ (void);
218 static void ffestc_labeldef_notloop_ (void);
219 static void ffestc_labeldef_notloop_begin_ (void);
220 static void ffestc_labeldef_useless_ (void);
221 static bool ffestc_labelref_is_assignable_ (ffelexToken label_token
,
223 static bool ffestc_labelref_is_branch_ (ffelexToken label_token
,
225 static bool ffestc_labelref_is_format_ (ffelexToken label_token
,
227 static bool ffestc_labelref_is_loopend_ (ffelexToken label_token
,
230 static ffestcOrder_
ffestc_order_access_ (void);
232 static ffestcOrder_
ffestc_order_actiondo_ (void);
233 static ffestcOrder_
ffestc_order_actionif_ (void);
234 static ffestcOrder_
ffestc_order_actionwhere_ (void);
235 static void ffestc_order_any_ (void);
236 static void ffestc_order_bad_ (void);
237 static ffestcOrder_
ffestc_order_blockdata_ (void);
238 static ffestcOrder_
ffestc_order_blockspec_ (void);
240 static ffestcOrder_
ffestc_order_component_ (void);
243 static ffestcOrder_
ffestc_order_contains_ (void);
245 static ffestcOrder_
ffestc_order_data_ (void);
246 static ffestcOrder_
ffestc_order_data77_ (void);
248 static ffestcOrder_
ffestc_order_derivedtype_ (void);
250 static ffestcOrder_
ffestc_order_do_ (void);
251 static ffestcOrder_
ffestc_order_entry_ (void);
252 static ffestcOrder_
ffestc_order_exec_ (void);
253 static ffestcOrder_
ffestc_order_format_ (void);
254 static ffestcOrder_
ffestc_order_function_ (void);
255 static ffestcOrder_
ffestc_order_iface_ (void);
256 static ffestcOrder_
ffestc_order_ifthen_ (void);
257 static ffestcOrder_
ffestc_order_implicit_ (void);
258 static ffestcOrder_
ffestc_order_implicitnone_ (void);
260 static ffestcOrder_
ffestc_order_interface_ (void);
263 static ffestcOrder_
ffestc_order_map_ (void);
266 static ffestcOrder_
ffestc_order_module_ (void);
268 static ffestcOrder_
ffestc_order_parameter_ (void);
269 static ffestcOrder_
ffestc_order_program_ (void);
270 static ffestcOrder_
ffestc_order_progspec_ (void);
272 static ffestcOrder_
ffestc_order_record_ (void);
274 static ffestcOrder_
ffestc_order_selectcase_ (void);
275 static ffestcOrder_
ffestc_order_sfunc_ (void);
277 static ffestcOrder_
ffestc_order_spec_ (void);
280 static ffestcOrder_
ffestc_order_structure_ (void);
282 static ffestcOrder_
ffestc_order_subroutine_ (void);
284 static ffestcOrder_
ffestc_order_type_ (void);
286 static ffestcOrder_
ffestc_order_typedecl_ (void);
288 static ffestcOrder_
ffestc_order_union_ (void);
290 static ffestcOrder_
ffestc_order_unit_ (void);
292 static ffestcOrder_
ffestc_order_use_ (void);
295 static ffestcOrder_
ffestc_order_vxtstructure_ (void);
298 static ffestcOrder_
ffestc_order_where_ (void);
300 static void ffestc_promote_dummy_ (ffelexToken t
);
301 static void ffestc_promote_execdummy_ (ffelexToken t
);
302 static void ffestc_promote_sfdummy_ (ffelexToken t
);
303 static void ffestc_shriek_begin_program_ (void);
305 static void ffestc_shriek_begin_uses_ (void);
307 static void ffestc_shriek_blockdata_ (bool ok
);
308 static void ffestc_shriek_do_ (bool ok
);
309 static void ffestc_shriek_end_program_ (bool ok
);
311 static void ffestc_shriek_end_uses_ (bool ok
);
313 static void ffestc_shriek_function_ (bool ok
);
314 static void ffestc_shriek_if_ (bool ok
);
315 static void ffestc_shriek_ifthen_ (bool ok
);
317 static void ffestc_shriek_interface_ (bool ok
);
320 static void ffestc_shriek_map_ (bool ok
);
323 static void ffestc_shriek_module_ (bool ok
);
325 static void ffestc_shriek_select_ (bool ok
);
327 static void ffestc_shriek_structure_ (bool ok
);
329 static void ffestc_shriek_subroutine_ (bool ok
);
331 static void ffestc_shriek_type_ (bool ok
);
334 static void ffestc_shriek_union_ (bool ok
);
337 static void ffestc_shriek_where_ (bool ok
);
340 static void ffestc_shriek_wherethen_ (bool ok
);
342 static int ffestc_subr_binsrch_ (const char **list
, int size
, ffestpFile
*spec
,
344 static ffestvFormat
ffestc_subr_format_ (ffestpFile
*spec
);
345 static bool ffestc_subr_is_branch_ (ffestpFile
*spec
);
346 static bool ffestc_subr_is_format_ (ffestpFile
*spec
);
347 static bool ffestc_subr_is_present_ (const char *name
, ffestpFile
*spec
);
348 static int ffestc_subr_speccmp_ (const char *string
, ffestpFile
*spec
,
349 const char **target
, int *length
);
350 static ffestvUnit
ffestc_subr_unit_ (ffestpFile
*spec
);
351 static void ffestc_try_shriek_do_ (void);
353 /* Internal macros. */
355 #define ffestc_check_simple_() \
356 assert(ffestc_statelet_ == FFESTC_stateletSIMPLE_)
357 #define ffestc_check_start_() \
358 assert(ffestc_statelet_ == FFESTC_stateletSIMPLE_); \
359 ffestc_statelet_ = FFESTC_stateletATTRIB_
360 #define ffestc_check_attrib_() \
361 assert(ffestc_statelet_ == FFESTC_stateletATTRIB_)
362 #define ffestc_check_item_() \
363 assert(ffestc_statelet_ == FFESTC_stateletATTRIB_ \
364 || ffestc_statelet_ == FFESTC_stateletITEM_); \
365 ffestc_statelet_ = FFESTC_stateletITEM_
366 #define ffestc_check_item_startvals_() \
367 assert(ffestc_statelet_ == FFESTC_stateletATTRIB_ \
368 || ffestc_statelet_ == FFESTC_stateletITEM_); \
369 ffestc_statelet_ = FFESTC_stateletITEMVALS_
370 #define ffestc_check_item_value_() \
371 assert(ffestc_statelet_ == FFESTC_stateletITEMVALS_)
372 #define ffestc_check_item_endvals_() \
373 assert(ffestc_statelet_ == FFESTC_stateletITEMVALS_); \
374 ffestc_statelet_ = FFESTC_stateletITEM_
375 #define ffestc_check_finish_() \
376 assert(ffestc_statelet_ == FFESTC_stateletATTRIB_ \
377 || ffestc_statelet_ == FFESTC_stateletITEM_); \
378 ffestc_statelet_ = FFESTC_stateletSIMPLE_
379 #define ffestc_order_action_() ffestc_order_exec_()
381 #define ffestc_order_interfacespec_() ffestc_order_derivedtype_()
383 #define ffestc_shriek_if_lost_ ffestc_shriek_if_
385 #define ffestc_shriek_where_lost_ ffestc_shriek_where_
388 /* ffestc_establish_declinfo_ -- Determine specific type/params info for entity
390 ffestc_establish_declinfo_(kind,kind_token,len,len_token);
392 Must be called after _declstmt_ called to establish base type. */
395 ffestc_establish_declinfo_ (ffebld kind
, ffelexToken kindt
, ffebld len
,
398 ffeinfoBasictype bt
= ffestc_local_
.decl
.basic_type
;
400 ffetargetCharacterSize val
;
403 kt
= ffestc_local_
.decl
.stmt_kind_type
;
404 else if (!ffestc_local_
.decl
.per_var_kind_ok
)
406 ffebad_start (FFEBAD_KINDTYPE
);
407 ffebad_here (0, ffelex_token_where_line (kindt
),
408 ffelex_token_where_column (kindt
));
409 ffebad_here (1, ffelex_token_where_line (ffesta_tokens
[0]),
410 ffelex_token_where_column (ffesta_tokens
[0]));
412 kt
= ffestc_local_
.decl
.stmt_kind_type
;
418 assert (ffelex_token_type (kindt
) == FFELEX_typeNUMBER
);
419 val
= atol (ffelex_token_text (kindt
));
420 kt
= ffestc_kindtype_star_ (bt
, val
);
422 else if (ffebld_op (kind
) == FFEBLD_opANY
)
423 kt
= ffestc_local_
.decl
.stmt_kind_type
;
426 assert (ffebld_op (kind
) == FFEBLD_opCONTER
);
427 assert (ffeinfo_basictype (ffebld_info (kind
))
428 == FFEINFO_basictypeINTEGER
);
429 assert (ffeinfo_kindtype (ffebld_info (kind
))
430 == FFEINFO_kindtypeINTEGERDEFAULT
);
431 val
= ffebld_constant_integerdefault (ffebld_conter (kind
));
432 kt
= ffestc_kindtype_kind_ (bt
, val
);
435 if (kt
== FFEINFO_kindtypeNONE
)
436 { /* Not valid kind type. */
437 ffebad_start (FFEBAD_KINDTYPE
);
438 ffebad_here (0, ffelex_token_where_line (kindt
),
439 ffelex_token_where_column (kindt
));
440 ffebad_here (1, ffelex_token_where_line (ffesta_tokens
[0]),
441 ffelex_token_where_column (ffesta_tokens
[0]));
443 kt
= ffestc_local_
.decl
.stmt_kind_type
;
447 ffestc_local_
.decl
.kind_type
= kt
;
449 /* Now check length specification for CHARACTER data type. */
451 if (((len
== NULL
) && (lent
== NULL
))
452 || (bt
!= FFEINFO_basictypeCHARACTER
))
453 val
= ffestc_local_
.decl
.stmt_size
;
458 assert (ffelex_token_type (lent
) == FFELEX_typeNUMBER
);
459 val
= atol (ffelex_token_text (lent
));
461 else if (ffebld_op (len
) == FFEBLD_opSTAR
)
462 val
= FFETARGET_charactersizeNONE
;
463 else if (ffebld_op (len
) == FFEBLD_opANY
)
464 val
= FFETARGET_charactersizeNONE
;
467 assert (ffebld_op (len
) == FFEBLD_opCONTER
);
468 assert (ffeinfo_basictype (ffebld_info (len
))
469 == FFEINFO_basictypeINTEGER
);
470 assert (ffeinfo_kindtype (ffebld_info (len
))
471 == FFEINFO_kindtypeINTEGERDEFAULT
);
472 val
= ffebld_constant_integerdefault (ffebld_conter (len
));
476 if ((val
== 0) && !(0 && ffe_is_90 ()))
479 ffebad_start (FFEBAD_ZERO_SIZE
);
480 ffebad_here (0, ffelex_token_where_line (lent
), ffelex_token_where_column (lent
));
483 ffestc_local_
.decl
.size
= val
;
486 /* ffestc_establish_declstmt_ -- Establish host-specific type/params info
488 ffestc_establish_declstmt_(type,type_token,kind,kind_token,len,
492 ffestc_establish_declstmt_ (ffestpType type
, ffelexToken typet
, ffebld kind
,
493 ffelexToken kindt
, ffebld len
, ffelexToken lent
)
496 ffeinfoKindtype ktd
; /* Default kindtype. */
498 ffetargetCharacterSize val
;
499 bool per_var_kind_ok
= TRUE
;
501 /* Determine basictype and default kindtype. */
505 case FFESTP_typeINTEGER
:
506 bt
= FFEINFO_basictypeINTEGER
;
507 ktd
= FFEINFO_kindtypeINTEGERDEFAULT
;
510 case FFESTP_typeBYTE
:
511 bt
= FFEINFO_basictypeINTEGER
;
512 ktd
= FFEINFO_kindtypeINTEGER2
;
515 case FFESTP_typeWORD
:
516 bt
= FFEINFO_basictypeINTEGER
;
517 ktd
= FFEINFO_kindtypeINTEGER3
;
520 case FFESTP_typeREAL
:
521 bt
= FFEINFO_basictypeREAL
;
522 ktd
= FFEINFO_kindtypeREALDEFAULT
;
525 case FFESTP_typeCOMPLEX
:
526 bt
= FFEINFO_basictypeCOMPLEX
;
527 ktd
= FFEINFO_kindtypeREALDEFAULT
;
530 case FFESTP_typeLOGICAL
:
531 bt
= FFEINFO_basictypeLOGICAL
;
532 ktd
= FFEINFO_kindtypeLOGICALDEFAULT
;
535 case FFESTP_typeCHARACTER
:
536 bt
= FFEINFO_basictypeCHARACTER
;
537 ktd
= FFEINFO_kindtypeCHARACTERDEFAULT
;
540 case FFESTP_typeDBLPRCSN
:
541 bt
= FFEINFO_basictypeREAL
;
542 ktd
= FFEINFO_kindtypeREALDOUBLE
;
543 per_var_kind_ok
= FALSE
;
546 case FFESTP_typeDBLCMPLX
:
547 bt
= FFEINFO_basictypeCOMPLEX
;
548 #if FFETARGET_okCOMPLEX2
549 ktd
= FFEINFO_kindtypeREALDOUBLE
;
551 ktd
= FFEINFO_kindtypeREALDEFAULT
;
552 ffebad_start (FFEBAD_BAD_DBLCMPLX
);
553 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
554 ffelex_token_where_column (ffesta_tokens
[0]));
557 per_var_kind_ok
= FALSE
;
561 assert ("Unexpected type (F90 TYPE?)!" == NULL
);
562 bt
= FFEINFO_basictypeNONE
;
563 ktd
= FFEINFO_kindtypeNONE
;
570 { /* Not necessarily default kind type. */
572 { /* Shouldn't happen for CHARACTER. */
573 assert (ffelex_token_type (kindt
) == FFELEX_typeNUMBER
);
574 val
= atol (ffelex_token_text (kindt
));
575 kt
= ffestc_kindtype_star_ (bt
, val
);
577 else if (ffebld_op (kind
) == FFEBLD_opANY
)
581 assert (ffebld_op (kind
) == FFEBLD_opCONTER
);
582 assert (ffeinfo_basictype (ffebld_info (kind
))
583 == FFEINFO_basictypeINTEGER
);
584 assert (ffeinfo_kindtype (ffebld_info (kind
))
585 == FFEINFO_kindtypeINTEGERDEFAULT
);
586 val
= ffebld_constant_integerdefault (ffebld_conter (kind
));
587 kt
= ffestc_kindtype_kind_ (bt
, val
);
590 if (kt
== FFEINFO_kindtypeNONE
)
591 { /* Not valid kind type. */
592 ffebad_start (FFEBAD_KINDTYPE
);
593 ffebad_here (0, ffelex_token_where_line (kindt
),
594 ffelex_token_where_column (kindt
));
595 ffebad_here (1, ffelex_token_where_line (typet
),
596 ffelex_token_where_column (typet
));
602 ffestc_local_
.decl
.basic_type
= bt
;
603 ffestc_local_
.decl
.stmt_kind_type
= kt
;
604 ffestc_local_
.decl
.per_var_kind_ok
= per_var_kind_ok
;
606 /* Now check length specification for CHARACTER data type. */
608 if (((len
== NULL
) && (lent
== NULL
))
609 || (type
!= FFESTP_typeCHARACTER
))
610 val
= (type
== FFESTP_typeCHARACTER
) ? 1 : FFETARGET_charactersizeNONE
;
615 assert (ffelex_token_type (lent
) == FFELEX_typeNUMBER
);
616 val
= atol (ffelex_token_text (lent
));
618 else if (ffebld_op (len
) == FFEBLD_opSTAR
)
619 val
= FFETARGET_charactersizeNONE
;
620 else if (ffebld_op (len
) == FFEBLD_opANY
)
621 val
= FFETARGET_charactersizeNONE
;
624 assert (ffebld_op (len
) == FFEBLD_opCONTER
);
625 assert (ffeinfo_basictype (ffebld_info (len
))
626 == FFEINFO_basictypeINTEGER
);
627 assert (ffeinfo_kindtype (ffebld_info (len
))
628 == FFEINFO_kindtypeINTEGERDEFAULT
);
629 val
= ffebld_constant_integerdefault (ffebld_conter (len
));
633 if ((val
== 0) && !(0 && ffe_is_90 ()))
636 ffebad_start (FFEBAD_ZERO_SIZE
);
637 ffebad_here (0, ffelex_token_where_line (lent
), ffelex_token_where_column (lent
));
640 ffestc_local_
.decl
.stmt_size
= val
;
643 /* ffestc_establish_impletter_ -- Establish type/params for IMPLICIT letter(s)
645 ffestc_establish_impletter_(first_letter_token,last_letter_token); */
648 ffestc_establish_impletter_ (ffelexToken first
, ffelexToken last
)
650 bool ok
= FALSE
; /* Stays FALSE if first letter > last. */
654 ok
= ffeimplic_establish_initial (c
= *(ffelex_token_text (first
)),
655 ffestc_local_
.decl
.basic_type
,
656 ffestc_local_
.decl
.kind_type
,
657 ffestc_local_
.decl
.size
);
660 for (c
= *(ffelex_token_text (first
));
661 c
<= *(ffelex_token_text (last
));
664 ok
= ffeimplic_establish_initial (c
,
665 ffestc_local_
.decl
.basic_type
,
666 ffestc_local_
.decl
.kind_type
,
667 ffestc_local_
.decl
.size
);
680 ffebad_start (FFEBAD_BAD_IMPLICIT
);
681 ffebad_here (0, ffelex_token_where_line (first
), ffelex_token_where_column (first
));
687 /* ffestc_init_3 -- Initialize ffestc for new program unit
694 ffestv_save_state_
= FFESTV_savestateNONE
;
695 ffestc_entry_num_
= 0;
696 ffestv_num_label_defines_
= 0;
699 /* ffestc_init_4 -- Initialize ffestc for new scoping unit
703 For SUBROUTINEs/FUNCTIONs within INTERFACE/END INTERFACE, derived-TYPE-
704 defs, and statement function defs. */
709 ffestc_saved_entry_num_
= ffestc_entry_num_
;
710 ffestc_entry_num_
= 0;
713 /* ffestc_kindtype_kind_ -- Determine kindtype from basictype and KIND= value
717 ffetargetCharacterSize val;
718 kt = ffestc_kindtype_kind_(bt,val);
719 if (kt == FFEINFO_kindtypeNONE)
720 // unsupported/invalid KIND= value for type */
722 static ffeinfoKindtype
723 ffestc_kindtype_kind_ (ffeinfoBasictype bt
, ffetargetCharacterSize val
)
729 base_type
= ffeinfo_type (bt
, 1); /* ~~ */
730 assert (base_type
!= NULL
);
732 type
= ffetype_lookup_kind (base_type
, (int) val
);
734 return FFEINFO_kindtypeNONE
;
736 for (kt
= 1; kt
< FFEINFO_kindtype
; ++kt
)
737 if (ffeinfo_type (bt
, kt
) == type
)
740 return FFEINFO_kindtypeNONE
;
743 /* ffestc_kindtype_star_ -- Determine kindtype from basictype and * value
747 ffetargetCharacterSize val;
748 kt = ffestc_kindtype_star_(bt,val);
749 if (kt == FFEINFO_kindtypeNONE)
750 // unsupported/invalid * value for type */
752 static ffeinfoKindtype
753 ffestc_kindtype_star_ (ffeinfoBasictype bt
, ffetargetCharacterSize val
)
759 base_type
= ffeinfo_type (bt
, 1); /* ~~ */
760 assert (base_type
!= NULL
);
762 type
= ffetype_lookup_star (base_type
, (int) val
);
764 return FFEINFO_kindtypeNONE
;
766 for (kt
= 1; kt
< FFEINFO_kindtype
; ++kt
)
767 if (ffeinfo_type (bt
, kt
) == type
)
770 return FFEINFO_kindtypeNONE
;
773 /* Define label as usable for anything without complaint. */
776 ffestc_labeldef_any_ ()
778 if ((ffesta_label_token
== NULL
)
779 || !ffestc_labeldef_begin_ ())
782 ffelab_set_type (ffestc_label_
, FFELAB_typeANY
);
783 ffestd_labeldef_any (ffestc_label_
);
785 ffestc_labeldef_branch_end_ ();
788 /* ffestc_labeldef_begin_ -- Define label as unknown, initially
790 ffestc_labeldef_begin_(); */
793 ffestc_labeldef_begin_ ()
795 ffelabValue label_value
;
798 label_value
= (ffelabValue
) atol (ffelex_token_text (ffesta_label_token
));
799 if ((label_value
== 0) || (label_value
> FFELAB_valueMAX
))
801 ffebad_start (FFEBAD_LABEL_NUMBER_INVALID
);
802 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
803 ffelex_token_where_column (ffesta_label_token
));
807 label
= ffelab_find (label_value
);
810 label
= ffestc_label_
= ffelab_new (label_value
);
811 ffestv_num_label_defines_
++;
812 ffelab_set_definition_line (label
,
813 ffewhere_line_use (ffelex_token_where_line (ffesta_label_token
)));
814 ffelab_set_definition_column (label
,
815 ffewhere_column_use (ffelex_token_where_column (ffesta_label_token
)));
820 if (ffewhere_line_is_unknown (ffelab_definition_line (label
)))
822 ffestv_num_label_defines_
++;
823 ffestc_label_
= label
;
824 ffelab_set_definition_line (label
,
825 ffewhere_line_use (ffelex_token_where_line (ffesta_label_token
)));
826 ffelab_set_definition_column (label
,
827 ffewhere_column_use (ffelex_token_where_column (ffesta_label_token
)));
832 ffebad_start (FFEBAD_LABEL_ALREADY_DEFINED
);
833 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
834 ffelex_token_where_column (ffesta_label_token
));
835 ffebad_here (1, ffelab_definition_line (label
),
836 ffelab_definition_column (label
));
837 ffebad_string (ffelex_token_text (ffesta_label_token
));
840 ffelex_token_kill (ffesta_label_token
);
841 ffesta_label_token
= NULL
;
845 /* ffestc_labeldef_branch_begin_ -- Define label as a branch target one
847 ffestc_labeldef_branch_begin_(); */
850 ffestc_labeldef_branch_begin_ ()
852 if ((ffesta_label_token
== NULL
)
853 || (ffestc_shriek_after1_
!= NULL
)
854 || !ffestc_labeldef_begin_ ())
857 switch (ffelab_type (ffestc_label_
))
859 case FFELAB_typeUNKNOWN
:
860 case FFELAB_typeASSIGNABLE
:
861 ffelab_set_type (ffestc_label_
, FFELAB_typeNOTLOOP
);
862 ffelab_set_blocknum (ffestc_label_
,
863 ffestw_blocknum (ffestw_stack_top ()));
864 ffestd_labeldef_branch (ffestc_label_
);
867 case FFELAB_typeNOTLOOP
:
868 if (ffelab_blocknum (ffestc_label_
)
869 < ffestw_blocknum (ffestw_stack_top ()))
871 ffebad_start (FFEBAD_LABEL_BLOCK
);
872 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
873 ffelex_token_where_column (ffesta_label_token
));
874 ffebad_here (1, ffelab_firstref_line (ffestc_label_
),
875 ffelab_firstref_column (ffestc_label_
));
878 ffelab_set_blocknum (ffestc_label_
,
879 ffestw_blocknum (ffestw_stack_top ()));
880 ffestd_labeldef_branch (ffestc_label_
);
883 case FFELAB_typeLOOPEND
:
884 if ((ffestw_state (ffestw_stack_top ()) != FFESTV_stateDO
)
885 || (ffestw_label (ffestw_stack_top ()) != ffestc_label_
))
886 { /* Unterminated block. */
887 ffelab_set_type (ffestc_label_
, FFELAB_typeANY
);
888 ffestd_labeldef_any (ffestc_label_
);
890 ffebad_start (FFEBAD_LABEL_DO_BLOCK_END
);
891 ffebad_here (0, ffelab_doref_line (ffestc_label_
),
892 ffelab_doref_column (ffestc_label_
));
893 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
894 ffebad_here (2, ffelex_token_where_line (ffesta_label_token
),
895 ffelex_token_where_column (ffesta_label_token
));
899 ffestd_labeldef_branch (ffestc_label_
);
900 /* Leave something around for _branch_end_() to handle. */
903 case FFELAB_typeFORMAT
:
904 ffelab_set_type (ffestc_label_
, FFELAB_typeANY
);
905 ffestd_labeldef_any (ffestc_label_
);
907 ffebad_start (FFEBAD_LABEL_USE_DEF
);
908 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
909 ffelex_token_where_column (ffesta_label_token
));
910 ffebad_here (1, ffelab_firstref_line (ffestc_label_
),
911 ffelab_firstref_column (ffestc_label_
));
916 assert ("bad label" == NULL
);
922 ffestc_try_shriek_do_ ();
924 ffelex_token_kill (ffesta_label_token
);
925 ffesta_label_token
= NULL
;
928 /* Define possible end of labeled-DO-loop. Call only after calling
929 ffestc_labeldef_branch_begin_, or when other branch_* functions
930 recognize that a label might also be serving as a branch end (in
931 which case they must issue a diagnostic). */
934 ffestc_labeldef_branch_end_ ()
936 if (ffesta_label_token
== NULL
)
939 assert (ffestc_label_
!= NULL
);
940 assert ((ffelab_type (ffestc_label_
) == FFELAB_typeLOOPEND
)
941 || (ffelab_type (ffestc_label_
) == FFELAB_typeANY
));
943 while ((ffestw_state (ffestw_stack_top ()) == FFESTV_stateDO
)
944 && (ffestw_label (ffestw_stack_top ()) == ffestc_label_
))
945 ffestc_shriek_do_ (TRUE
);
947 ffestc_try_shriek_do_ ();
949 ffelex_token_kill (ffesta_label_token
);
950 ffesta_label_token
= NULL
;
953 /* ffestc_labeldef_endif_ -- Define label as an END IF one
955 ffestc_labeldef_endif_(); */
958 ffestc_labeldef_endif_ ()
960 if ((ffesta_label_token
== NULL
)
961 || (ffestc_shriek_after1_
!= NULL
)
962 || !ffestc_labeldef_begin_ ())
965 switch (ffelab_type (ffestc_label_
))
967 case FFELAB_typeUNKNOWN
:
968 case FFELAB_typeASSIGNABLE
:
969 ffelab_set_type (ffestc_label_
, FFELAB_typeENDIF
);
970 ffelab_set_blocknum (ffestc_label_
,
971 ffestw_blocknum (ffestw_previous (ffestw_stack_top ())));
972 ffestd_labeldef_endif (ffestc_label_
);
975 case FFELAB_typeNOTLOOP
:
976 if (ffelab_blocknum (ffestc_label_
)
977 < ffestw_blocknum (ffestw_previous (ffestw_stack_top ())))
979 ffebad_start (FFEBAD_LABEL_BLOCK
);
980 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
981 ffelex_token_where_column (ffesta_label_token
));
982 ffebad_here (1, ffelab_firstref_line (ffestc_label_
),
983 ffelab_firstref_column (ffestc_label_
));
986 ffelab_set_blocknum (ffestc_label_
,
987 ffestw_blocknum (ffestw_previous (ffestw_stack_top ())));
988 ffestd_labeldef_endif (ffestc_label_
);
991 case FFELAB_typeLOOPEND
:
992 if ((ffestw_state (ffestw_stack_top ()) != FFESTV_stateDO
)
993 || (ffestw_label (ffestw_stack_top ()) != ffestc_label_
))
994 { /* Unterminated block. */
995 ffelab_set_type (ffestc_label_
, FFELAB_typeANY
);
996 ffestd_labeldef_any (ffestc_label_
);
998 ffebad_start (FFEBAD_LABEL_DO_BLOCK_END
);
999 ffebad_here (0, ffelab_doref_line (ffestc_label_
),
1000 ffelab_doref_column (ffestc_label_
));
1001 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
1002 ffebad_here (2, ffelex_token_where_line (ffesta_label_token
),
1003 ffelex_token_where_column (ffesta_label_token
));
1007 ffestd_labeldef_endif (ffestc_label_
);
1008 ffebad_start (FFEBAD_LABEL_USE_DEF
);
1009 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
1010 ffelex_token_where_column (ffesta_label_token
));
1011 ffebad_here (1, ffelab_doref_line (ffestc_label_
),
1012 ffelab_doref_column (ffestc_label_
));
1014 ffestc_labeldef_branch_end_ ();
1017 case FFELAB_typeFORMAT
:
1018 ffelab_set_type (ffestc_label_
, FFELAB_typeANY
);
1019 ffestd_labeldef_any (ffestc_label_
);
1021 ffebad_start (FFEBAD_LABEL_USE_DEF
);
1022 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
1023 ffelex_token_where_column (ffesta_label_token
));
1024 ffebad_here (1, ffelab_firstref_line (ffestc_label_
),
1025 ffelab_firstref_column (ffestc_label_
));
1030 assert ("bad label" == NULL
);
1032 case FFELAB_typeANY
:
1036 ffestc_try_shriek_do_ ();
1038 ffelex_token_kill (ffesta_label_token
);
1039 ffesta_label_token
= NULL
;
1042 /* ffestc_labeldef_format_ -- Define label as a FORMAT one
1044 ffestc_labeldef_format_(); */
1047 ffestc_labeldef_format_ ()
1049 if ((ffesta_label_token
== NULL
)
1050 || (ffestc_shriek_after1_
!= NULL
))
1052 ffebad_start (FFEBAD_FORMAT_NO_LABEL_DEF
);
1053 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
1054 ffelex_token_where_column (ffesta_tokens
[0]));
1059 if (!ffestc_labeldef_begin_ ())
1062 switch (ffelab_type (ffestc_label_
))
1064 case FFELAB_typeUNKNOWN
:
1065 case FFELAB_typeASSIGNABLE
:
1066 ffelab_set_type (ffestc_label_
, FFELAB_typeFORMAT
);
1067 ffestd_labeldef_format (ffestc_label_
);
1070 case FFELAB_typeFORMAT
:
1071 ffestd_labeldef_format (ffestc_label_
);
1074 case FFELAB_typeLOOPEND
:
1075 if ((ffestw_state (ffestw_stack_top ()) != FFESTV_stateDO
)
1076 || (ffestw_label (ffestw_stack_top ()) != ffestc_label_
))
1077 { /* Unterminated block. */
1078 ffelab_set_type (ffestc_label_
, FFELAB_typeANY
);
1079 ffestd_labeldef_any (ffestc_label_
);
1081 ffebad_start (FFEBAD_LABEL_DO_BLOCK_END
);
1082 ffebad_here (0, ffelab_doref_line (ffestc_label_
),
1083 ffelab_doref_column (ffestc_label_
));
1084 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
1085 ffebad_here (2, ffelex_token_where_line (ffesta_label_token
),
1086 ffelex_token_where_column (ffesta_label_token
));
1090 ffestd_labeldef_format (ffestc_label_
);
1091 ffebad_start (FFEBAD_LABEL_USE_DEF
);
1092 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
1093 ffelex_token_where_column (ffesta_label_token
));
1094 ffebad_here (1, ffelab_doref_line (ffestc_label_
),
1095 ffelab_doref_column (ffestc_label_
));
1097 ffestc_labeldef_branch_end_ ();
1100 case FFELAB_typeNOTLOOP
:
1101 ffelab_set_type (ffestc_label_
, FFELAB_typeANY
);
1102 ffestd_labeldef_any (ffestc_label_
);
1104 ffebad_start (FFEBAD_LABEL_USE_DEF
);
1105 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
1106 ffelex_token_where_column (ffesta_label_token
));
1107 ffebad_here (1, ffelab_firstref_line (ffestc_label_
),
1108 ffelab_firstref_column (ffestc_label_
));
1113 assert ("bad label" == NULL
);
1115 case FFELAB_typeANY
:
1119 ffestc_try_shriek_do_ ();
1121 ffelex_token_kill (ffesta_label_token
);
1122 ffesta_label_token
= NULL
;
1125 /* ffestc_labeldef_invalid_ -- Label definition invalid, complain if present
1127 ffestc_labeldef_invalid_(); */
1130 ffestc_labeldef_invalid_ ()
1132 if ((ffesta_label_token
== NULL
)
1133 || (ffestc_shriek_after1_
!= NULL
)
1134 || !ffestc_labeldef_begin_ ())
1137 ffebad_start (FFEBAD_INVALID_LABEL_DEF
);
1138 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
1139 ffelex_token_where_column (ffesta_label_token
));
1142 ffelab_set_type (ffestc_label_
, FFELAB_typeANY
);
1143 ffestd_labeldef_any (ffestc_label_
);
1145 ffestc_try_shriek_do_ ();
1147 ffelex_token_kill (ffesta_label_token
);
1148 ffesta_label_token
= NULL
;
1151 /* Define label as a non-loop-ending one on a statement that can't
1152 be in the "then" part of a logical IF, such as a block-IF statement. */
1155 ffestc_labeldef_notloop_ ()
1157 if (ffesta_label_token
== NULL
)
1160 assert (ffestc_shriek_after1_
== NULL
);
1162 if (!ffestc_labeldef_begin_ ())
1165 switch (ffelab_type (ffestc_label_
))
1167 case FFELAB_typeUNKNOWN
:
1168 case FFELAB_typeASSIGNABLE
:
1169 ffelab_set_type (ffestc_label_
, FFELAB_typeNOTLOOP
);
1170 ffelab_set_blocknum (ffestc_label_
,
1171 ffestw_blocknum (ffestw_stack_top ()));
1172 ffestd_labeldef_notloop (ffestc_label_
);
1175 case FFELAB_typeNOTLOOP
:
1176 if (ffelab_blocknum (ffestc_label_
)
1177 < ffestw_blocknum (ffestw_stack_top ()))
1179 ffebad_start (FFEBAD_LABEL_BLOCK
);
1180 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
1181 ffelex_token_where_column (ffesta_label_token
));
1182 ffebad_here (1, ffelab_firstref_line (ffestc_label_
),
1183 ffelab_firstref_column (ffestc_label_
));
1186 ffelab_set_blocknum (ffestc_label_
,
1187 ffestw_blocknum (ffestw_stack_top ()));
1188 ffestd_labeldef_notloop (ffestc_label_
);
1191 case FFELAB_typeLOOPEND
:
1192 if ((ffestw_state (ffestw_stack_top ()) != FFESTV_stateDO
)
1193 || (ffestw_label (ffestw_stack_top ()) != ffestc_label_
))
1194 { /* Unterminated block. */
1195 ffelab_set_type (ffestc_label_
, FFELAB_typeANY
);
1196 ffestd_labeldef_any (ffestc_label_
);
1198 ffebad_start (FFEBAD_LABEL_DO_BLOCK_END
);
1199 ffebad_here (0, ffelab_doref_line (ffestc_label_
),
1200 ffelab_doref_column (ffestc_label_
));
1201 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
1202 ffebad_here (2, ffelex_token_where_line (ffesta_label_token
),
1203 ffelex_token_where_column (ffesta_label_token
));
1207 ffestd_labeldef_notloop (ffestc_label_
);
1208 ffebad_start (FFEBAD_LABEL_USE_DEF
);
1209 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
1210 ffelex_token_where_column (ffesta_label_token
));
1211 ffebad_here (1, ffelab_doref_line (ffestc_label_
),
1212 ffelab_doref_column (ffestc_label_
));
1214 ffestc_labeldef_branch_end_ ();
1217 case FFELAB_typeFORMAT
:
1218 ffelab_set_type (ffestc_label_
, FFELAB_typeANY
);
1219 ffestd_labeldef_any (ffestc_label_
);
1221 ffebad_start (FFEBAD_LABEL_USE_DEF
);
1222 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
1223 ffelex_token_where_column (ffesta_label_token
));
1224 ffebad_here (1, ffelab_firstref_line (ffestc_label_
),
1225 ffelab_firstref_column (ffestc_label_
));
1230 assert ("bad label" == NULL
);
1232 case FFELAB_typeANY
:
1236 ffestc_try_shriek_do_ ();
1238 ffelex_token_kill (ffesta_label_token
);
1239 ffesta_label_token
= NULL
;
1242 /* Define label as a non-loop-ending one. Use this when it is
1243 possible that the pending label is inhibited because we're in
1244 the midst of a logical-IF, and thus _branch_end_ is going to
1245 be called after the current statement to resolve a potential
1246 loop-ending label. */
1249 ffestc_labeldef_notloop_begin_ ()
1251 if ((ffesta_label_token
== NULL
)
1252 || (ffestc_shriek_after1_
!= NULL
)
1253 || !ffestc_labeldef_begin_ ())
1256 switch (ffelab_type (ffestc_label_
))
1258 case FFELAB_typeUNKNOWN
:
1259 case FFELAB_typeASSIGNABLE
:
1260 ffelab_set_type (ffestc_label_
, FFELAB_typeNOTLOOP
);
1261 ffelab_set_blocknum (ffestc_label_
,
1262 ffestw_blocknum (ffestw_stack_top ()));
1263 ffestd_labeldef_notloop (ffestc_label_
);
1266 case FFELAB_typeNOTLOOP
:
1267 if (ffelab_blocknum (ffestc_label_
)
1268 < ffestw_blocknum (ffestw_stack_top ()))
1270 ffebad_start (FFEBAD_LABEL_BLOCK
);
1271 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
1272 ffelex_token_where_column (ffesta_label_token
));
1273 ffebad_here (1, ffelab_firstref_line (ffestc_label_
),
1274 ffelab_firstref_column (ffestc_label_
));
1277 ffelab_set_blocknum (ffestc_label_
,
1278 ffestw_blocknum (ffestw_stack_top ()));
1279 ffestd_labeldef_notloop (ffestc_label_
);
1282 case FFELAB_typeLOOPEND
:
1283 if ((ffestw_state (ffestw_stack_top ()) != FFESTV_stateDO
)
1284 || (ffestw_label (ffestw_stack_top ()) != ffestc_label_
))
1285 { /* Unterminated block. */
1286 ffelab_set_type (ffestc_label_
, FFELAB_typeANY
);
1287 ffestd_labeldef_any (ffestc_label_
);
1289 ffebad_start (FFEBAD_LABEL_DO_BLOCK_END
);
1290 ffebad_here (0, ffelab_doref_line (ffestc_label_
),
1291 ffelab_doref_column (ffestc_label_
));
1292 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
1293 ffebad_here (2, ffelex_token_where_line (ffesta_label_token
),
1294 ffelex_token_where_column (ffesta_label_token
));
1298 ffestd_labeldef_branch (ffestc_label_
);
1299 ffebad_start (FFEBAD_LABEL_USE_DEF
);
1300 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
1301 ffelex_token_where_column (ffesta_label_token
));
1302 ffebad_here (1, ffelab_doref_line (ffestc_label_
),
1303 ffelab_doref_column (ffestc_label_
));
1307 case FFELAB_typeFORMAT
:
1308 ffelab_set_type (ffestc_label_
, FFELAB_typeANY
);
1309 ffestd_labeldef_any (ffestc_label_
);
1311 ffebad_start (FFEBAD_LABEL_USE_DEF
);
1312 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
1313 ffelex_token_where_column (ffesta_label_token
));
1314 ffebad_here (1, ffelab_firstref_line (ffestc_label_
),
1315 ffelab_firstref_column (ffestc_label_
));
1320 assert ("bad label" == NULL
);
1322 case FFELAB_typeANY
:
1326 ffestc_try_shriek_do_ ();
1328 ffelex_token_kill (ffesta_label_token
);
1329 ffesta_label_token
= NULL
;
1332 /* ffestc_labeldef_useless_ -- Define label as a useless one
1334 ffestc_labeldef_useless_(); */
1337 ffestc_labeldef_useless_ ()
1339 if ((ffesta_label_token
== NULL
)
1340 || (ffestc_shriek_after1_
!= NULL
)
1341 || !ffestc_labeldef_begin_ ())
1344 switch (ffelab_type (ffestc_label_
))
1346 case FFELAB_typeUNKNOWN
:
1347 ffelab_set_type (ffestc_label_
, FFELAB_typeUSELESS
);
1348 ffestd_labeldef_useless (ffestc_label_
);
1351 case FFELAB_typeLOOPEND
:
1352 ffelab_set_type (ffestc_label_
, FFELAB_typeANY
);
1353 ffestd_labeldef_any (ffestc_label_
);
1355 if ((ffestw_state (ffestw_stack_top ()) != FFESTV_stateDO
)
1356 || (ffestw_label (ffestw_stack_top ()) != ffestc_label_
))
1357 { /* Unterminated block. */
1358 ffebad_start (FFEBAD_LABEL_DO_BLOCK_END
);
1359 ffebad_here (0, ffelab_doref_line (ffestc_label_
),
1360 ffelab_doref_column (ffestc_label_
));
1361 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
1362 ffebad_here (2, ffelex_token_where_line (ffesta_label_token
),
1363 ffelex_token_where_column (ffesta_label_token
));
1367 ffebad_start (FFEBAD_LABEL_USE_DEF
);
1368 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
1369 ffelex_token_where_column (ffesta_label_token
));
1370 ffebad_here (1, ffelab_doref_line (ffestc_label_
),
1371 ffelab_doref_column (ffestc_label_
));
1373 ffestc_labeldef_branch_end_ ();
1376 case FFELAB_typeASSIGNABLE
:
1377 case FFELAB_typeFORMAT
:
1378 case FFELAB_typeNOTLOOP
:
1379 ffelab_set_type (ffestc_label_
, FFELAB_typeANY
);
1380 ffestd_labeldef_any (ffestc_label_
);
1382 ffebad_start (FFEBAD_LABEL_USE_DEF
);
1383 ffebad_here (0, ffelex_token_where_line (ffesta_label_token
),
1384 ffelex_token_where_column (ffesta_label_token
));
1385 ffebad_here (1, ffelab_firstref_line (ffestc_label_
),
1386 ffelab_firstref_column (ffestc_label_
));
1391 assert ("bad label" == NULL
);
1393 case FFELAB_typeANY
:
1397 ffestc_try_shriek_do_ ();
1399 ffelex_token_kill (ffesta_label_token
);
1400 ffesta_label_token
= NULL
;
1403 /* ffestc_labelref_is_assignable_ -- Reference to label in ASSIGN stmt
1405 if (ffestc_labelref_is_assignable_(label_token,&label))
1406 // label ref is ok, label is filled in with ffelab object */
1409 ffestc_labelref_is_assignable_ (ffelexToken label_token
, ffelab
*x_label
)
1412 ffelabValue label_value
;
1414 label_value
= (ffelabValue
) atol (ffelex_token_text (label_token
));
1415 if ((label_value
== 0) || (label_value
> FFELAB_valueMAX
))
1417 ffebad_start (FFEBAD_LABEL_NUMBER_INVALID
);
1418 ffebad_here (0, ffelex_token_where_line (label_token
),
1419 ffelex_token_where_column (label_token
));
1424 label
= ffelab_find (label_value
);
1427 label
= ffelab_new (label_value
);
1428 ffelab_set_firstref_line (label
,
1429 ffewhere_line_use (ffelex_token_where_line (label_token
)));
1430 ffelab_set_firstref_column (label
,
1431 ffewhere_column_use (ffelex_token_where_column (label_token
)));
1434 switch (ffelab_type (label
))
1436 case FFELAB_typeUNKNOWN
:
1437 ffelab_set_type (label
, FFELAB_typeASSIGNABLE
);
1440 case FFELAB_typeASSIGNABLE
:
1441 case FFELAB_typeLOOPEND
:
1442 case FFELAB_typeFORMAT
:
1443 case FFELAB_typeNOTLOOP
:
1444 case FFELAB_typeENDIF
:
1447 case FFELAB_typeUSELESS
:
1448 ffelab_set_type (label
, FFELAB_typeANY
);
1449 ffestd_labeldef_any (label
);
1451 ffebad_start (FFEBAD_LABEL_USE_DEF
);
1452 ffebad_here (0, ffelab_firstref_line (label
), ffelab_firstref_column (label
));
1453 ffebad_here (1, ffelex_token_where_line (label_token
),
1454 ffelex_token_where_column (label_token
));
1457 ffestc_try_shriek_do_ ();
1462 assert ("bad label" == NULL
);
1464 case FFELAB_typeANY
:
1472 /* ffestc_labelref_is_branch_ -- Reference to label in branch stmt
1474 if (ffestc_labelref_is_branch_(label_token,&label))
1475 // label ref is ok, label is filled in with ffelab object */
1478 ffestc_labelref_is_branch_ (ffelexToken label_token
, ffelab
*x_label
)
1481 ffelabValue label_value
;
1483 unsigned long blocknum
;
1485 label_value
= (ffelabValue
) atol (ffelex_token_text (label_token
));
1486 if ((label_value
== 0) || (label_value
> FFELAB_valueMAX
))
1488 ffebad_start (FFEBAD_LABEL_NUMBER_INVALID
);
1489 ffebad_here (0, ffelex_token_where_line (label_token
),
1490 ffelex_token_where_column (label_token
));
1495 label
= ffelab_find (label_value
);
1498 label
= ffelab_new (label_value
);
1499 ffelab_set_firstref_line (label
,
1500 ffewhere_line_use (ffelex_token_where_line (label_token
)));
1501 ffelab_set_firstref_column (label
,
1502 ffewhere_column_use (ffelex_token_where_column (label_token
)));
1505 switch (ffelab_type (label
))
1507 case FFELAB_typeUNKNOWN
:
1508 case FFELAB_typeASSIGNABLE
:
1509 ffelab_set_type (label
, FFELAB_typeNOTLOOP
);
1510 ffelab_set_blocknum (label
, ffestw_blocknum (ffestw_stack_top ()));
1513 case FFELAB_typeLOOPEND
:
1514 if (ffelab_blocknum (label
) != 0)
1515 break; /* Already taken care of. */
1516 for (block
= ffestw_top_do (ffestw_stack_top ());
1517 (block
!= NULL
) && (ffestw_label (block
) != label
);
1518 block
= ffestw_top_do (ffestw_previous (block
)))
1519 ; /* Find most recent DO <label> ancestor. */
1521 { /* Reference to within a (dead) block. */
1522 ffebad_start (FFEBAD_LABEL_BLOCK
);
1523 ffebad_here (0, ffelab_definition_line (label
),
1524 ffelab_definition_column (label
));
1525 ffebad_here (1, ffelex_token_where_line (label_token
),
1526 ffelex_token_where_column (label_token
));
1530 ffelab_set_blocknum (label
, ffestw_blocknum (block
));
1531 ffelab_set_firstref_line (label
,
1532 ffewhere_line_use (ffelex_token_where_line (label_token
)));
1533 ffelab_set_firstref_column (label
,
1534 ffewhere_column_use (ffelex_token_where_column (label_token
)));
1537 case FFELAB_typeNOTLOOP
:
1538 case FFELAB_typeENDIF
:
1539 if (ffelab_blocknum (label
) == ffestw_blocknum (ffestw_stack_top ()))
1541 blocknum
= ffelab_blocknum (label
);
1542 for (block
= ffestw_stack_top ();
1543 ffestw_blocknum (block
) > blocknum
;
1544 block
= ffestw_previous (block
))
1545 ; /* Find most recent common ancestor. */
1546 if (ffelab_blocknum (label
) == ffestw_blocknum (block
))
1547 break; /* Check again. */
1548 if (!ffewhere_line_is_unknown (ffelab_definition_line (label
)))
1549 { /* Reference to within a (dead) block. */
1550 ffebad_start (FFEBAD_LABEL_BLOCK
);
1551 ffebad_here (0, ffelab_definition_line (label
),
1552 ffelab_definition_column (label
));
1553 ffebad_here (1, ffelex_token_where_line (label_token
),
1554 ffelex_token_where_column (label_token
));
1558 ffelab_set_blocknum (label
, ffestw_blocknum (block
));
1561 case FFELAB_typeFORMAT
:
1562 if (ffewhere_line_is_unknown (ffelab_definition_line (label
)))
1564 ffelab_set_type (label
, FFELAB_typeANY
);
1565 ffestd_labeldef_any (label
);
1567 ffebad_start (FFEBAD_LABEL_USE_USE
);
1568 ffebad_here (0, ffelab_firstref_line (label
), ffelab_firstref_column (label
));
1569 ffebad_here (1, ffelex_token_where_line (label_token
),
1570 ffelex_token_where_column (label_token
));
1573 ffestc_try_shriek_do_ ();
1578 case FFELAB_typeUSELESS
:
1579 ffelab_set_type (label
, FFELAB_typeANY
);
1580 ffestd_labeldef_any (label
);
1582 ffebad_start (FFEBAD_LABEL_USE_DEF
);
1583 ffebad_here (0, ffelab_definition_line (label
), ffelab_definition_column (label
));
1584 ffebad_here (1, ffelex_token_where_line (label_token
),
1585 ffelex_token_where_column (label_token
));
1588 ffestc_try_shriek_do_ ();
1593 assert ("bad label" == NULL
);
1595 case FFELAB_typeANY
:
1603 /* ffestc_labelref_is_format_ -- Reference to label in [FMT=] specification
1605 if (ffestc_labelref_is_format_(label_token,&label))
1606 // label ref is ok, label is filled in with ffelab object */
1609 ffestc_labelref_is_format_ (ffelexToken label_token
, ffelab
*x_label
)
1612 ffelabValue label_value
;
1614 label_value
= (ffelabValue
) atol (ffelex_token_text (label_token
));
1615 if ((label_value
== 0) || (label_value
> FFELAB_valueMAX
))
1617 ffebad_start (FFEBAD_LABEL_NUMBER_INVALID
);
1618 ffebad_here (0, ffelex_token_where_line (label_token
),
1619 ffelex_token_where_column (label_token
));
1624 label
= ffelab_find (label_value
);
1627 label
= ffelab_new (label_value
);
1628 ffelab_set_firstref_line (label
,
1629 ffewhere_line_use (ffelex_token_where_line (label_token
)));
1630 ffelab_set_firstref_column (label
,
1631 ffewhere_column_use (ffelex_token_where_column (label_token
)));
1634 switch (ffelab_type (label
))
1636 case FFELAB_typeUNKNOWN
:
1637 case FFELAB_typeASSIGNABLE
:
1638 ffelab_set_type (label
, FFELAB_typeFORMAT
);
1641 case FFELAB_typeFORMAT
:
1644 case FFELAB_typeLOOPEND
:
1645 case FFELAB_typeNOTLOOP
:
1646 if (ffewhere_line_is_unknown (ffelab_definition_line (label
)))
1648 ffelab_set_type (label
, FFELAB_typeANY
);
1649 ffestd_labeldef_any (label
);
1651 ffebad_start (FFEBAD_LABEL_USE_USE
);
1652 ffebad_here (0, ffelab_firstref_line (label
), ffelab_firstref_column (label
));
1653 ffebad_here (1, ffelex_token_where_line (label_token
),
1654 ffelex_token_where_column (label_token
));
1657 ffestc_try_shriek_do_ ();
1662 case FFELAB_typeUSELESS
:
1663 case FFELAB_typeENDIF
:
1664 ffelab_set_type (label
, FFELAB_typeANY
);
1665 ffestd_labeldef_any (label
);
1667 ffebad_start (FFEBAD_LABEL_USE_DEF
);
1668 ffebad_here (0, ffelab_definition_line (label
), ffelab_definition_column (label
));
1669 ffebad_here (1, ffelex_token_where_line (label_token
),
1670 ffelex_token_where_column (label_token
));
1673 ffestc_try_shriek_do_ ();
1678 assert ("bad label" == NULL
);
1680 case FFELAB_typeANY
:
1684 ffestc_try_shriek_do_ ();
1690 /* ffestc_labelref_is_loopend_ -- Reference to label in DO stmt
1692 if (ffestc_labelref_is_loopend_(label_token,&label))
1693 // label ref is ok, label is filled in with ffelab object */
1696 ffestc_labelref_is_loopend_ (ffelexToken label_token
, ffelab
*x_label
)
1699 ffelabValue label_value
;
1701 label_value
= (ffelabValue
) atol (ffelex_token_text (label_token
));
1702 if ((label_value
== 0) || (label_value
> FFELAB_valueMAX
))
1704 ffebad_start (FFEBAD_LABEL_NUMBER_INVALID
);
1705 ffebad_here (0, ffelex_token_where_line (label_token
),
1706 ffelex_token_where_column (label_token
));
1711 label
= ffelab_find (label_value
);
1714 label
= ffelab_new (label_value
);
1715 ffelab_set_doref_line (label
,
1716 ffewhere_line_use (ffelex_token_where_line (label_token
)));
1717 ffelab_set_doref_column (label
,
1718 ffewhere_column_use (ffelex_token_where_column (label_token
)));
1721 switch (ffelab_type (label
))
1723 case FFELAB_typeASSIGNABLE
:
1724 ffelab_set_doref_line (label
,
1725 ffewhere_line_use (ffelex_token_where_line (label_token
)));
1726 ffelab_set_doref_column (label
,
1727 ffewhere_column_use (ffelex_token_where_column (label_token
)));
1728 ffewhere_line_kill (ffelab_firstref_line (label
));
1729 ffelab_set_firstref_line (label
, ffewhere_line_unknown ());
1730 ffewhere_column_kill (ffelab_firstref_column (label
));
1731 ffelab_set_firstref_column (label
, ffewhere_column_unknown ());
1733 case FFELAB_typeUNKNOWN
:
1734 ffelab_set_type (label
, FFELAB_typeLOOPEND
);
1735 ffelab_set_blocknum (label
, 0);
1738 case FFELAB_typeLOOPEND
:
1739 if (!ffewhere_line_is_unknown (ffelab_definition_line (label
)))
1740 { /* Def must follow all refs. */
1741 ffelab_set_type (label
, FFELAB_typeANY
);
1742 ffestd_labeldef_any (label
);
1744 ffebad_start (FFEBAD_LABEL_DEF_DO
);
1745 ffebad_here (0, ffelab_definition_line (label
),
1746 ffelab_definition_column (label
));
1747 ffebad_here (1, ffelex_token_where_line (label_token
),
1748 ffelex_token_where_column (label_token
));
1751 ffestc_try_shriek_do_ ();
1755 if (ffelab_blocknum (label
) != 0)
1756 { /* Had a branch ref earlier, can't go inside
1758 ffelab_set_type (label
, FFELAB_typeANY
);
1759 ffestd_labeldef_any (label
);
1761 ffebad_start (FFEBAD_LABEL_USE_USE
);
1762 ffebad_here (0, ffelab_firstref_line (label
),
1763 ffelab_firstref_column (label
));
1764 ffebad_here (1, ffelex_token_where_line (label_token
),
1765 ffelex_token_where_column (label_token
));
1768 ffestc_try_shriek_do_ ();
1772 if ((ffestw_state (ffestw_stack_top ()) != FFESTV_stateDO
)
1773 || (ffestw_label (ffestw_stack_top ()) != label
))
1774 { /* Top of stack interrupts flow between two
1775 DOs specifying label. */
1776 ffelab_set_type (label
, FFELAB_typeANY
);
1777 ffestd_labeldef_any (label
);
1779 ffebad_start (FFEBAD_LABEL_DO_BLOCK_DO
);
1780 ffebad_here (0, ffelab_doref_line (label
),
1781 ffelab_doref_column (label
));
1782 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
1783 ffebad_here (2, ffelex_token_where_line (label_token
),
1784 ffelex_token_where_column (label_token
));
1787 ffestc_try_shriek_do_ ();
1793 case FFELAB_typeNOTLOOP
:
1794 case FFELAB_typeFORMAT
:
1795 if (ffewhere_line_is_unknown (ffelab_definition_line (label
)))
1797 ffelab_set_type (label
, FFELAB_typeANY
);
1798 ffestd_labeldef_any (label
);
1800 ffebad_start (FFEBAD_LABEL_USE_USE
);
1801 ffebad_here (0, ffelab_firstref_line (label
), ffelab_firstref_column (label
));
1802 ffebad_here (1, ffelex_token_where_line (label_token
),
1803 ffelex_token_where_column (label_token
));
1806 ffestc_try_shriek_do_ ();
1811 case FFELAB_typeUSELESS
:
1812 case FFELAB_typeENDIF
:
1813 ffelab_set_type (label
, FFELAB_typeANY
);
1814 ffestd_labeldef_any (label
);
1816 ffebad_start (FFEBAD_LABEL_USE_DEF
);
1817 ffebad_here (0, ffelab_definition_line (label
), ffelab_definition_column (label
));
1818 ffebad_here (1, ffelex_token_where_line (label_token
),
1819 ffelex_token_where_column (label_token
));
1822 ffestc_try_shriek_do_ ();
1827 assert ("bad label" == NULL
);
1829 case FFELAB_typeANY
:
1837 /* ffestc_order_access_ -- Check ordering on <access> statement
1839 if (ffestc_order_access_() != FFESTC_orderOK_)
1844 ffestc_order_access_ ()
1848 switch (ffestw_state (ffestw_stack_top ()))
1850 case FFESTV_stateNIL
:
1851 ffestc_shriek_begin_program_ ();
1852 goto recurse
; /* :::::::::::::::::::: */
1854 case FFESTV_stateMODULE0
:
1855 case FFESTV_stateMODULE1
:
1856 case FFESTV_stateMODULE2
:
1857 ffestw_update (NULL
);
1858 ffestw_set_state (ffestw_stack_top (), FFESTV_stateMODULE3
);
1859 return FFESTC_orderOK_
;
1861 case FFESTV_stateMODULE3
:
1862 return FFESTC_orderOK_
;
1864 case FFESTV_stateUSE
:
1866 ffestc_shriek_end_uses_ (TRUE
);
1868 goto recurse
; /* :::::::::::::::::::: */
1870 case FFESTV_stateWHERE
:
1871 ffestc_order_bad_ ();
1873 ffestc_shriek_where_ (FALSE
);
1875 return FFESTC_orderBAD_
;
1877 case FFESTV_stateIF
:
1878 ffestc_order_bad_ ();
1879 ffestc_shriek_if_ (FALSE
);
1880 return FFESTC_orderBAD_
;
1883 ffestc_order_bad_ ();
1884 return FFESTC_orderBAD_
;
1889 /* ffestc_order_actiondo_ -- Check ordering on <actiondo> statement
1891 if (ffestc_order_actiondo_() != FFESTC_orderOK_)
1895 ffestc_order_actiondo_ ()
1899 switch (ffestw_state (ffestw_stack_top ()))
1901 case FFESTV_stateNIL
:
1902 ffestc_shriek_begin_program_ ();
1903 goto recurse
; /* :::::::::::::::::::: */
1905 case FFESTV_stateDO
:
1906 return FFESTC_orderOK_
;
1908 case FFESTV_stateIFTHEN
:
1909 case FFESTV_stateSELECT1
:
1910 if (ffestw_top_do (ffestw_stack_top ()) == NULL
)
1912 return FFESTC_orderOK_
;
1914 case FFESTV_stateIF
:
1915 if (ffestw_top_do (ffestw_stack_top ()) == NULL
)
1917 ffestc_shriek_after1_
= ffestc_shriek_if_
;
1918 return FFESTC_orderOK_
;
1920 case FFESTV_stateUSE
:
1922 ffestc_shriek_end_uses_ (TRUE
);
1924 goto recurse
; /* :::::::::::::::::::: */
1926 case FFESTV_stateWHERE
:
1927 ffestc_order_bad_ ();
1929 ffestc_shriek_where_ (FALSE
);
1931 return FFESTC_orderBAD_
;
1936 ffestc_order_bad_ ();
1937 return FFESTC_orderBAD_
;
1940 /* ffestc_order_actionif_ -- Check ordering on <actionif> statement
1942 if (ffestc_order_actionif_() != FFESTC_orderOK_)
1946 ffestc_order_actionif_ ()
1952 switch (ffestw_state (ffestw_stack_top ()))
1954 case FFESTV_stateNIL
:
1955 ffestc_shriek_begin_program_ ();
1956 goto recurse
; /* :::::::::::::::::::: */
1958 case FFESTV_statePROGRAM0
:
1959 case FFESTV_statePROGRAM1
:
1960 case FFESTV_statePROGRAM2
:
1961 case FFESTV_statePROGRAM3
:
1962 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM4
);
1966 case FFESTV_stateSUBROUTINE0
:
1967 case FFESTV_stateSUBROUTINE1
:
1968 case FFESTV_stateSUBROUTINE2
:
1969 case FFESTV_stateSUBROUTINE3
:
1970 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE4
);
1974 case FFESTV_stateFUNCTION0
:
1975 case FFESTV_stateFUNCTION1
:
1976 case FFESTV_stateFUNCTION2
:
1977 case FFESTV_stateFUNCTION3
:
1978 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION4
);
1982 case FFESTV_statePROGRAM4
:
1983 case FFESTV_stateSUBROUTINE4
:
1984 case FFESTV_stateFUNCTION4
:
1988 case FFESTV_stateIFTHEN
:
1989 case FFESTV_stateDO
:
1990 case FFESTV_stateSELECT1
:
1991 return FFESTC_orderOK_
;
1993 case FFESTV_stateIF
:
1994 ffestc_shriek_after1_
= ffestc_shriek_if_
;
1995 return FFESTC_orderOK_
;
1997 case FFESTV_stateUSE
:
1999 ffestc_shriek_end_uses_ (TRUE
);
2001 goto recurse
; /* :::::::::::::::::::: */
2003 case FFESTV_stateWHERE
:
2004 ffestc_order_bad_ ();
2006 ffestc_shriek_where_ (FALSE
);
2008 return FFESTC_orderBAD_
;
2011 ffestc_order_bad_ ();
2012 return FFESTC_orderBAD_
;
2015 switch (ffestw_state (ffestw_previous (ffestw_stack_top ())))
2017 case FFESTV_stateINTERFACE0
:
2018 ffestc_order_bad_ ();
2020 ffestw_update (NULL
);
2021 return FFESTC_orderBAD_
;
2025 ffestw_update (NULL
);
2026 return FFESTC_orderOK_
;
2030 /* ffestc_order_actionwhere_ -- Check ordering on <actionwhere> statement
2032 if (ffestc_order_actionwhere_() != FFESTC_orderOK_)
2036 ffestc_order_actionwhere_ ()
2042 switch (ffestw_state (ffestw_stack_top ()))
2044 case FFESTV_stateNIL
:
2045 ffestc_shriek_begin_program_ ();
2046 goto recurse
; /* :::::::::::::::::::: */
2048 case FFESTV_statePROGRAM0
:
2049 case FFESTV_statePROGRAM1
:
2050 case FFESTV_statePROGRAM2
:
2051 case FFESTV_statePROGRAM3
:
2052 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM4
);
2056 case FFESTV_stateSUBROUTINE0
:
2057 case FFESTV_stateSUBROUTINE1
:
2058 case FFESTV_stateSUBROUTINE2
:
2059 case FFESTV_stateSUBROUTINE3
:
2060 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE4
);
2064 case FFESTV_stateFUNCTION0
:
2065 case FFESTV_stateFUNCTION1
:
2066 case FFESTV_stateFUNCTION2
:
2067 case FFESTV_stateFUNCTION3
:
2068 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION4
);
2072 case FFESTV_statePROGRAM4
:
2073 case FFESTV_stateSUBROUTINE4
:
2074 case FFESTV_stateFUNCTION4
:
2078 case FFESTV_stateWHERETHEN
:
2079 case FFESTV_stateIFTHEN
:
2080 case FFESTV_stateDO
:
2081 case FFESTV_stateSELECT1
:
2082 return FFESTC_orderOK_
;
2084 case FFESTV_stateWHERE
:
2086 ffestc_shriek_after1_
= ffestc_shriek_where_
;
2088 return FFESTC_orderOK_
;
2090 case FFESTV_stateIF
:
2091 ffestc_shriek_after1_
= ffestc_shriek_if_
;
2092 return FFESTC_orderOK_
;
2094 case FFESTV_stateUSE
:
2096 ffestc_shriek_end_uses_ (TRUE
);
2098 goto recurse
; /* :::::::::::::::::::: */
2101 ffestc_order_bad_ ();
2102 return FFESTC_orderBAD_
;
2105 switch (ffestw_state (ffestw_previous (ffestw_stack_top ())))
2107 case FFESTV_stateINTERFACE0
:
2108 ffestc_order_bad_ ();
2110 ffestw_update (NULL
);
2111 return FFESTC_orderBAD_
;
2115 ffestw_update (NULL
);
2116 return FFESTC_orderOK_
;
2120 /* Check ordering on "any" statement. Like _actionwhere_, but
2121 doesn't produce any diagnostics. */
2124 ffestc_order_any_ ()
2130 switch (ffestw_state (ffestw_stack_top ()))
2132 case FFESTV_stateNIL
:
2133 ffestc_shriek_begin_program_ ();
2134 goto recurse
; /* :::::::::::::::::::: */
2136 case FFESTV_statePROGRAM0
:
2137 case FFESTV_statePROGRAM1
:
2138 case FFESTV_statePROGRAM2
:
2139 case FFESTV_statePROGRAM3
:
2140 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM4
);
2144 case FFESTV_stateSUBROUTINE0
:
2145 case FFESTV_stateSUBROUTINE1
:
2146 case FFESTV_stateSUBROUTINE2
:
2147 case FFESTV_stateSUBROUTINE3
:
2148 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE4
);
2152 case FFESTV_stateFUNCTION0
:
2153 case FFESTV_stateFUNCTION1
:
2154 case FFESTV_stateFUNCTION2
:
2155 case FFESTV_stateFUNCTION3
:
2156 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION4
);
2160 case FFESTV_statePROGRAM4
:
2161 case FFESTV_stateSUBROUTINE4
:
2162 case FFESTV_stateFUNCTION4
:
2166 case FFESTV_stateWHERETHEN
:
2167 case FFESTV_stateIFTHEN
:
2168 case FFESTV_stateDO
:
2169 case FFESTV_stateSELECT1
:
2172 case FFESTV_stateWHERE
:
2174 ffestc_shriek_after1_
= ffestc_shriek_where_
;
2178 case FFESTV_stateIF
:
2179 ffestc_shriek_after1_
= ffestc_shriek_if_
;
2182 case FFESTV_stateUSE
:
2184 ffestc_shriek_end_uses_ (TRUE
);
2186 goto recurse
; /* :::::::::::::::::::: */
2192 switch (ffestw_state (ffestw_previous (ffestw_stack_top ())))
2194 case FFESTV_stateINTERFACE0
:
2196 ffestw_update (NULL
);
2201 ffestw_update (NULL
);
2206 /* ffestc_order_bad_ -- Whine about statement ordering violation
2208 ffestc_order_bad_();
2210 Uses current ffesta_tokens[0] and, if available, info on where current
2211 state started to produce generic message. Someday we should do
2212 fancier things than this, but this just gets things creaking along for
2216 ffestc_order_bad_ ()
2218 if (ffewhere_line_is_unknown (ffestw_line (ffestw_stack_top ())))
2220 ffebad_start (FFEBAD_ORDER_1
);
2221 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
2222 ffelex_token_where_column (ffesta_tokens
[0]));
2227 ffebad_start (FFEBAD_ORDER_2
);
2228 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
2229 ffelex_token_where_column (ffesta_tokens
[0]));
2230 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
2233 ffestc_labeldef_useless_ (); /* Any label definition is useless. */
2236 /* ffestc_order_blockdata_ -- Check ordering on <blockdata> statement
2238 if (ffestc_order_blockdata_() != FFESTC_orderOK_)
2242 ffestc_order_blockdata_ ()
2246 switch (ffestw_state (ffestw_stack_top ()))
2248 case FFESTV_stateBLOCKDATA0
:
2249 case FFESTV_stateBLOCKDATA1
:
2250 case FFESTV_stateBLOCKDATA2
:
2251 case FFESTV_stateBLOCKDATA3
:
2252 case FFESTV_stateBLOCKDATA4
:
2253 case FFESTV_stateBLOCKDATA5
:
2254 return FFESTC_orderOK_
;
2256 case FFESTV_stateUSE
:
2258 ffestc_shriek_end_uses_ (TRUE
);
2260 goto recurse
; /* :::::::::::::::::::: */
2262 case FFESTV_stateWHERE
:
2263 ffestc_order_bad_ ();
2265 ffestc_shriek_where_ (FALSE
);
2267 return FFESTC_orderBAD_
;
2269 case FFESTV_stateIF
:
2270 ffestc_order_bad_ ();
2271 ffestc_shriek_if_ (FALSE
);
2272 return FFESTC_orderBAD_
;
2275 ffestc_order_bad_ ();
2276 return FFESTC_orderBAD_
;
2280 /* ffestc_order_blockspec_ -- Check ordering on <blockspec> statement
2282 if (ffestc_order_blockspec_() != FFESTC_orderOK_)
2286 ffestc_order_blockspec_ ()
2290 switch (ffestw_state (ffestw_stack_top ()))
2292 case FFESTV_stateNIL
:
2293 ffestc_shriek_begin_program_ ();
2294 goto recurse
; /* :::::::::::::::::::: */
2296 case FFESTV_statePROGRAM0
:
2297 case FFESTV_statePROGRAM1
:
2298 case FFESTV_statePROGRAM2
:
2299 ffestw_update (NULL
);
2300 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM3
);
2301 return FFESTC_orderOK_
;
2303 case FFESTV_stateSUBROUTINE0
:
2304 case FFESTV_stateSUBROUTINE1
:
2305 case FFESTV_stateSUBROUTINE2
:
2306 ffestw_update (NULL
);
2307 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE3
);
2308 return FFESTC_orderOK_
;
2310 case FFESTV_stateFUNCTION0
:
2311 case FFESTV_stateFUNCTION1
:
2312 case FFESTV_stateFUNCTION2
:
2313 ffestw_update (NULL
);
2314 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION3
);
2315 return FFESTC_orderOK_
;
2317 case FFESTV_stateMODULE0
:
2318 case FFESTV_stateMODULE1
:
2319 case FFESTV_stateMODULE2
:
2320 ffestw_update (NULL
);
2321 ffestw_set_state (ffestw_stack_top (), FFESTV_stateMODULE3
);
2322 return FFESTC_orderOK_
;
2324 case FFESTV_stateBLOCKDATA0
:
2325 case FFESTV_stateBLOCKDATA1
:
2326 case FFESTV_stateBLOCKDATA2
:
2327 ffestw_update (NULL
);
2328 ffestw_set_state (ffestw_stack_top (), FFESTV_stateBLOCKDATA3
);
2329 return FFESTC_orderOK_
;
2331 case FFESTV_statePROGRAM3
:
2332 case FFESTV_stateSUBROUTINE3
:
2333 case FFESTV_stateFUNCTION3
:
2334 case FFESTV_stateMODULE3
:
2335 case FFESTV_stateBLOCKDATA3
:
2336 return FFESTC_orderOK_
;
2338 case FFESTV_stateUSE
:
2340 ffestc_shriek_end_uses_ (TRUE
);
2342 goto recurse
; /* :::::::::::::::::::: */
2344 case FFESTV_stateWHERE
:
2345 ffestc_order_bad_ ();
2347 ffestc_shriek_where_ (FALSE
);
2349 return FFESTC_orderBAD_
;
2351 case FFESTV_stateIF
:
2352 ffestc_order_bad_ ();
2353 ffestc_shriek_if_ (FALSE
);
2354 return FFESTC_orderBAD_
;
2357 ffestc_order_bad_ ();
2358 return FFESTC_orderBAD_
;
2362 /* ffestc_order_component_ -- Check ordering on <component-decl> statement
2364 if (ffestc_order_component_() != FFESTC_orderOK_)
2369 ffestc_order_component_ ()
2371 switch (ffestw_state (ffestw_stack_top ()))
2373 case FFESTV_stateTYPE
:
2374 case FFESTV_stateSTRUCTURE
:
2375 case FFESTV_stateMAP
:
2376 return FFESTC_orderOK_
;
2378 case FFESTV_stateWHERE
:
2379 ffestc_order_bad_ ();
2380 ffestc_shriek_where_ (FALSE
);
2381 return FFESTC_orderBAD_
;
2383 case FFESTV_stateIF
:
2384 ffestc_order_bad_ ();
2385 ffestc_shriek_if_ (FALSE
);
2386 return FFESTC_orderBAD_
;
2389 ffestc_order_bad_ ();
2390 return FFESTC_orderBAD_
;
2395 /* ffestc_order_contains_ -- Check ordering on CONTAINS statement
2397 if (ffestc_order_contains_() != FFESTC_orderOK_)
2402 ffestc_order_contains_ ()
2406 switch (ffestw_state (ffestw_stack_top ()))
2408 case FFESTV_stateNIL
:
2409 ffestc_shriek_begin_program_ ();
2410 goto recurse
; /* :::::::::::::::::::: */
2412 case FFESTV_statePROGRAM0
:
2413 case FFESTV_statePROGRAM1
:
2414 case FFESTV_statePROGRAM2
:
2415 case FFESTV_statePROGRAM3
:
2416 case FFESTV_statePROGRAM4
:
2417 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM5
);
2420 case FFESTV_stateSUBROUTINE0
:
2421 case FFESTV_stateSUBROUTINE1
:
2422 case FFESTV_stateSUBROUTINE2
:
2423 case FFESTV_stateSUBROUTINE3
:
2424 case FFESTV_stateSUBROUTINE4
:
2425 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE5
);
2428 case FFESTV_stateFUNCTION0
:
2429 case FFESTV_stateFUNCTION1
:
2430 case FFESTV_stateFUNCTION2
:
2431 case FFESTV_stateFUNCTION3
:
2432 case FFESTV_stateFUNCTION4
:
2433 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION5
);
2436 case FFESTV_stateMODULE0
:
2437 case FFESTV_stateMODULE1
:
2438 case FFESTV_stateMODULE2
:
2439 case FFESTV_stateMODULE3
:
2440 case FFESTV_stateMODULE4
:
2441 ffestw_set_state (ffestw_stack_top (), FFESTV_stateMODULE5
);
2444 case FFESTV_stateUSE
:
2445 ffestc_shriek_end_uses_ (TRUE
);
2446 goto recurse
; /* :::::::::::::::::::: */
2448 case FFESTV_stateWHERE
:
2449 ffestc_order_bad_ ();
2450 ffestc_shriek_where_ (FALSE
);
2451 return FFESTC_orderBAD_
;
2453 case FFESTV_stateIF
:
2454 ffestc_order_bad_ ();
2455 ffestc_shriek_if_ (FALSE
);
2456 return FFESTC_orderBAD_
;
2459 ffestc_order_bad_ ();
2460 return FFESTC_orderBAD_
;
2463 switch (ffestw_state (ffestw_previous (ffestw_stack_top ())))
2465 case FFESTV_stateNIL
:
2466 ffestw_update (NULL
);
2467 return FFESTC_orderOK_
;
2470 ffestc_order_bad_ ();
2471 ffestw_update (NULL
);
2472 return FFESTC_orderBAD_
;
2477 /* ffestc_order_data_ -- Check ordering on DATA statement
2479 if (ffestc_order_data_() != FFESTC_orderOK_)
2483 ffestc_order_data_ ()
2487 switch (ffestw_state (ffestw_stack_top ()))
2489 case FFESTV_stateNIL
:
2490 ffestc_shriek_begin_program_ ();
2491 goto recurse
; /* :::::::::::::::::::: */
2493 case FFESTV_statePROGRAM0
:
2494 case FFESTV_statePROGRAM1
:
2495 ffestw_update (NULL
);
2496 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM2
);
2497 return FFESTC_orderOK_
;
2499 case FFESTV_stateSUBROUTINE0
:
2500 case FFESTV_stateSUBROUTINE1
:
2501 ffestw_update (NULL
);
2502 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE2
);
2503 return FFESTC_orderOK_
;
2505 case FFESTV_stateFUNCTION0
:
2506 case FFESTV_stateFUNCTION1
:
2507 ffestw_update (NULL
);
2508 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION2
);
2509 return FFESTC_orderOK_
;
2511 case FFESTV_stateBLOCKDATA0
:
2512 case FFESTV_stateBLOCKDATA1
:
2513 ffestw_update (NULL
);
2514 ffestw_set_state (ffestw_stack_top (), FFESTV_stateBLOCKDATA2
);
2515 return FFESTC_orderOK_
;
2517 case FFESTV_statePROGRAM2
:
2518 case FFESTV_stateSUBROUTINE2
:
2519 case FFESTV_stateFUNCTION2
:
2520 case FFESTV_stateBLOCKDATA2
:
2521 case FFESTV_statePROGRAM3
:
2522 case FFESTV_stateSUBROUTINE3
:
2523 case FFESTV_stateFUNCTION3
:
2524 case FFESTV_stateBLOCKDATA3
:
2525 case FFESTV_statePROGRAM4
:
2526 case FFESTV_stateSUBROUTINE4
:
2527 case FFESTV_stateFUNCTION4
:
2528 case FFESTV_stateBLOCKDATA4
:
2529 case FFESTV_stateWHERETHEN
:
2530 case FFESTV_stateIFTHEN
:
2531 case FFESTV_stateDO
:
2532 case FFESTV_stateSELECT0
:
2533 case FFESTV_stateSELECT1
:
2534 return FFESTC_orderOK_
;
2536 case FFESTV_stateUSE
:
2538 ffestc_shriek_end_uses_ (TRUE
);
2540 goto recurse
; /* :::::::::::::::::::: */
2542 case FFESTV_stateWHERE
:
2543 ffestc_order_bad_ ();
2545 ffestc_shriek_where_ (FALSE
);
2547 return FFESTC_orderBAD_
;
2549 case FFESTV_stateIF
:
2550 ffestc_order_bad_ ();
2551 ffestc_shriek_if_ (FALSE
);
2552 return FFESTC_orderBAD_
;
2555 ffestc_order_bad_ ();
2556 return FFESTC_orderBAD_
;
2560 /* ffestc_order_data77_ -- Check ordering on pedantic-F77 DATA statement
2562 if (ffestc_order_data77_() != FFESTC_orderOK_)
2566 ffestc_order_data77_ ()
2570 switch (ffestw_state (ffestw_stack_top ()))
2572 case FFESTV_stateNIL
:
2573 ffestc_shriek_begin_program_ ();
2574 goto recurse
; /* :::::::::::::::::::: */
2576 case FFESTV_statePROGRAM0
:
2577 case FFESTV_statePROGRAM1
:
2578 case FFESTV_statePROGRAM2
:
2579 case FFESTV_statePROGRAM3
:
2580 ffestw_update (NULL
);
2581 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM4
);
2582 return FFESTC_orderOK_
;
2584 case FFESTV_stateSUBROUTINE0
:
2585 case FFESTV_stateSUBROUTINE1
:
2586 case FFESTV_stateSUBROUTINE2
:
2587 case FFESTV_stateSUBROUTINE3
:
2588 ffestw_update (NULL
);
2589 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE4
);
2590 return FFESTC_orderOK_
;
2592 case FFESTV_stateFUNCTION0
:
2593 case FFESTV_stateFUNCTION1
:
2594 case FFESTV_stateFUNCTION2
:
2595 case FFESTV_stateFUNCTION3
:
2596 ffestw_update (NULL
);
2597 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION4
);
2598 return FFESTC_orderOK_
;
2600 case FFESTV_stateBLOCKDATA0
:
2601 case FFESTV_stateBLOCKDATA1
:
2602 case FFESTV_stateBLOCKDATA2
:
2603 case FFESTV_stateBLOCKDATA3
:
2604 ffestw_update (NULL
);
2605 ffestw_set_state (ffestw_stack_top (), FFESTV_stateBLOCKDATA4
);
2606 return FFESTC_orderOK_
;
2608 case FFESTV_statePROGRAM4
:
2609 case FFESTV_stateSUBROUTINE4
:
2610 case FFESTV_stateFUNCTION4
:
2611 case FFESTV_stateBLOCKDATA4
:
2612 return FFESTC_orderOK_
;
2614 case FFESTV_stateWHERETHEN
:
2615 case FFESTV_stateIFTHEN
:
2616 case FFESTV_stateDO
:
2617 case FFESTV_stateSELECT0
:
2618 case FFESTV_stateSELECT1
:
2619 return FFESTC_orderOK_
;
2621 case FFESTV_stateUSE
:
2623 ffestc_shriek_end_uses_ (TRUE
);
2625 goto recurse
; /* :::::::::::::::::::: */
2627 case FFESTV_stateWHERE
:
2628 ffestc_order_bad_ ();
2630 ffestc_shriek_where_ (FALSE
);
2632 return FFESTC_orderBAD_
;
2634 case FFESTV_stateIF
:
2635 ffestc_order_bad_ ();
2636 ffestc_shriek_if_ (FALSE
);
2637 return FFESTC_orderBAD_
;
2640 ffestc_order_bad_ ();
2641 return FFESTC_orderBAD_
;
2645 /* ffestc_order_derivedtype_ -- Check ordering on derived TYPE statement
2647 if (ffestc_order_derivedtype_() != FFESTC_orderOK_)
2652 ffestc_order_derivedtype_ ()
2656 switch (ffestw_state (ffestw_stack_top ()))
2658 case FFESTV_stateNIL
:
2659 ffestc_shriek_begin_program_ ();
2660 goto recurse
; /* :::::::::::::::::::: */
2662 case FFESTV_statePROGRAM0
:
2663 case FFESTV_statePROGRAM1
:
2664 case FFESTV_statePROGRAM2
:
2665 ffestw_update (NULL
);
2666 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM3
);
2667 return FFESTC_orderOK_
;
2669 case FFESTV_stateSUBROUTINE0
:
2670 case FFESTV_stateSUBROUTINE1
:
2671 case FFESTV_stateSUBROUTINE2
:
2672 ffestw_update (NULL
);
2673 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE3
);
2674 return FFESTC_orderOK_
;
2676 case FFESTV_stateFUNCTION0
:
2677 case FFESTV_stateFUNCTION1
:
2678 case FFESTV_stateFUNCTION2
:
2679 ffestw_update (NULL
);
2680 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION3
);
2681 return FFESTC_orderOK_
;
2683 case FFESTV_stateMODULE0
:
2684 case FFESTV_stateMODULE1
:
2685 case FFESTV_stateMODULE2
:
2686 ffestw_update (NULL
);
2687 ffestw_set_state (ffestw_stack_top (), FFESTV_stateMODULE3
);
2688 return FFESTC_orderOK_
;
2690 case FFESTV_statePROGRAM3
:
2691 case FFESTV_stateSUBROUTINE3
:
2692 case FFESTV_stateFUNCTION3
:
2693 case FFESTV_stateMODULE3
:
2694 return FFESTC_orderOK_
;
2696 case FFESTV_stateUSE
:
2697 ffestc_shriek_end_uses_ (TRUE
);
2698 goto recurse
; /* :::::::::::::::::::: */
2700 case FFESTV_stateWHERE
:
2701 ffestc_order_bad_ ();
2702 ffestc_shriek_where_ (FALSE
);
2703 return FFESTC_orderBAD_
;
2705 case FFESTV_stateIF
:
2706 ffestc_order_bad_ ();
2707 ffestc_shriek_if_ (FALSE
);
2708 return FFESTC_orderBAD_
;
2711 ffestc_order_bad_ ();
2712 return FFESTC_orderBAD_
;
2717 /* ffestc_order_do_ -- Check ordering on <do> statement
2719 if (ffestc_order_do_() != FFESTC_orderOK_)
2725 switch (ffestw_state (ffestw_stack_top ()))
2727 case FFESTV_stateDO
:
2728 return FFESTC_orderOK_
;
2730 case FFESTV_stateWHERE
:
2731 ffestc_order_bad_ ();
2733 ffestc_shriek_where_ (FALSE
);
2735 return FFESTC_orderBAD_
;
2737 case FFESTV_stateIF
:
2738 ffestc_order_bad_ ();
2739 ffestc_shriek_if_ (FALSE
);
2740 return FFESTC_orderBAD_
;
2743 ffestc_order_bad_ ();
2744 return FFESTC_orderBAD_
;
2748 /* ffestc_order_entry_ -- Check ordering on ENTRY statement
2750 if (ffestc_order_entry_() != FFESTC_orderOK_)
2754 ffestc_order_entry_ ()
2758 switch (ffestw_state (ffestw_stack_top ()))
2760 case FFESTV_stateNIL
:
2761 ffestc_shriek_begin_program_ ();
2762 goto recurse
; /* :::::::::::::::::::: */
2764 case FFESTV_stateSUBROUTINE0
:
2765 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE1
);
2768 case FFESTV_stateFUNCTION0
:
2769 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION1
);
2772 case FFESTV_stateSUBROUTINE1
:
2773 case FFESTV_stateSUBROUTINE2
:
2774 case FFESTV_stateFUNCTION1
:
2775 case FFESTV_stateFUNCTION2
:
2776 case FFESTV_stateSUBROUTINE3
:
2777 case FFESTV_stateFUNCTION3
:
2778 case FFESTV_stateSUBROUTINE4
:
2779 case FFESTV_stateFUNCTION4
:
2782 case FFESTV_stateUSE
:
2784 ffestc_shriek_end_uses_ (TRUE
);
2786 goto recurse
; /* :::::::::::::::::::: */
2788 case FFESTV_stateWHERE
:
2789 ffestc_order_bad_ ();
2791 ffestc_shriek_where_ (FALSE
);
2793 return FFESTC_orderBAD_
;
2795 case FFESTV_stateIF
:
2796 ffestc_order_bad_ ();
2797 ffestc_shriek_if_ (FALSE
);
2798 return FFESTC_orderBAD_
;
2801 ffestc_order_bad_ ();
2802 return FFESTC_orderBAD_
;
2805 switch (ffestw_state (ffestw_previous (ffestw_stack_top ())))
2807 case FFESTV_stateNIL
:
2808 case FFESTV_stateMODULE5
:
2809 ffestw_update (NULL
);
2810 return FFESTC_orderOK_
;
2813 ffestc_order_bad_ ();
2814 ffestw_update (NULL
);
2815 return FFESTC_orderBAD_
;
2819 /* ffestc_order_exec_ -- Check ordering on <exec> statement
2821 if (ffestc_order_exec_() != FFESTC_orderOK_)
2825 ffestc_order_exec_ ()
2831 switch (ffestw_state (ffestw_stack_top ()))
2833 case FFESTV_stateNIL
:
2834 ffestc_shriek_begin_program_ ();
2835 goto recurse
; /* :::::::::::::::::::: */
2837 case FFESTV_statePROGRAM0
:
2838 case FFESTV_statePROGRAM1
:
2839 case FFESTV_statePROGRAM2
:
2840 case FFESTV_statePROGRAM3
:
2841 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM4
);
2845 case FFESTV_stateSUBROUTINE0
:
2846 case FFESTV_stateSUBROUTINE1
:
2847 case FFESTV_stateSUBROUTINE2
:
2848 case FFESTV_stateSUBROUTINE3
:
2849 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE4
);
2853 case FFESTV_stateFUNCTION0
:
2854 case FFESTV_stateFUNCTION1
:
2855 case FFESTV_stateFUNCTION2
:
2856 case FFESTV_stateFUNCTION3
:
2857 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION4
);
2861 case FFESTV_statePROGRAM4
:
2862 case FFESTV_stateSUBROUTINE4
:
2863 case FFESTV_stateFUNCTION4
:
2867 case FFESTV_stateIFTHEN
:
2868 case FFESTV_stateDO
:
2869 case FFESTV_stateSELECT1
:
2870 return FFESTC_orderOK_
;
2872 case FFESTV_stateUSE
:
2874 ffestc_shriek_end_uses_ (TRUE
);
2876 goto recurse
; /* :::::::::::::::::::: */
2878 case FFESTV_stateWHERE
:
2879 ffestc_order_bad_ ();
2881 ffestc_shriek_where_ (FALSE
);
2883 return FFESTC_orderBAD_
;
2885 case FFESTV_stateIF
:
2886 ffestc_order_bad_ ();
2887 ffestc_shriek_if_ (FALSE
);
2888 return FFESTC_orderBAD_
;
2891 ffestc_order_bad_ ();
2892 return FFESTC_orderBAD_
;
2895 switch (ffestw_state (ffestw_previous (ffestw_stack_top ())))
2897 case FFESTV_stateINTERFACE0
:
2898 ffestc_order_bad_ ();
2900 ffestw_update (NULL
);
2901 return FFESTC_orderBAD_
;
2905 ffestw_update (NULL
);
2906 return FFESTC_orderOK_
;
2910 /* ffestc_order_format_ -- Check ordering on FORMAT statement
2912 if (ffestc_order_format_() != FFESTC_orderOK_)
2916 ffestc_order_format_ ()
2920 switch (ffestw_state (ffestw_stack_top ()))
2922 case FFESTV_stateNIL
:
2923 ffestc_shriek_begin_program_ ();
2924 goto recurse
; /* :::::::::::::::::::: */
2926 case FFESTV_statePROGRAM0
:
2927 ffestw_update (NULL
);
2928 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM1
);
2929 return FFESTC_orderOK_
;
2931 case FFESTV_stateSUBROUTINE0
:
2932 ffestw_update (NULL
);
2933 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE1
);
2934 return FFESTC_orderOK_
;
2936 case FFESTV_stateFUNCTION0
:
2937 ffestw_update (NULL
);
2938 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION1
);
2939 return FFESTC_orderOK_
;
2941 case FFESTV_statePROGRAM1
:
2942 case FFESTV_statePROGRAM2
:
2943 case FFESTV_stateSUBROUTINE1
:
2944 case FFESTV_stateSUBROUTINE2
:
2945 case FFESTV_stateFUNCTION1
:
2946 case FFESTV_stateFUNCTION2
:
2947 case FFESTV_statePROGRAM3
:
2948 case FFESTV_stateSUBROUTINE3
:
2949 case FFESTV_stateFUNCTION3
:
2950 case FFESTV_statePROGRAM4
:
2951 case FFESTV_stateSUBROUTINE4
:
2952 case FFESTV_stateFUNCTION4
:
2953 case FFESTV_stateWHERETHEN
:
2954 case FFESTV_stateIFTHEN
:
2955 case FFESTV_stateDO
:
2956 case FFESTV_stateSELECT0
:
2957 case FFESTV_stateSELECT1
:
2958 return FFESTC_orderOK_
;
2960 case FFESTV_stateUSE
:
2962 ffestc_shriek_end_uses_ (TRUE
);
2964 goto recurse
; /* :::::::::::::::::::: */
2966 case FFESTV_stateWHERE
:
2967 ffestc_order_bad_ ();
2969 ffestc_shriek_where_ (FALSE
);
2971 return FFESTC_orderBAD_
;
2973 case FFESTV_stateIF
:
2974 ffestc_order_bad_ ();
2975 ffestc_shriek_if_ (FALSE
);
2976 return FFESTC_orderBAD_
;
2979 ffestc_order_bad_ ();
2980 return FFESTC_orderBAD_
;
2984 /* ffestc_order_function_ -- Check ordering on <function> statement
2986 if (ffestc_order_function_() != FFESTC_orderOK_)
2990 ffestc_order_function_ ()
2994 switch (ffestw_state (ffestw_stack_top ()))
2996 case FFESTV_stateFUNCTION0
:
2997 case FFESTV_stateFUNCTION1
:
2998 case FFESTV_stateFUNCTION2
:
2999 case FFESTV_stateFUNCTION3
:
3000 case FFESTV_stateFUNCTION4
:
3001 case FFESTV_stateFUNCTION5
:
3002 return FFESTC_orderOK_
;
3004 case FFESTV_stateUSE
:
3006 ffestc_shriek_end_uses_ (TRUE
);
3008 goto recurse
; /* :::::::::::::::::::: */
3010 case FFESTV_stateWHERE
:
3011 ffestc_order_bad_ ();
3013 ffestc_shriek_where_ (FALSE
);
3015 return FFESTC_orderBAD_
;
3017 case FFESTV_stateIF
:
3018 ffestc_order_bad_ ();
3019 ffestc_shriek_if_ (FALSE
);
3020 return FFESTC_orderBAD_
;
3023 ffestc_order_bad_ ();
3024 return FFESTC_orderBAD_
;
3028 /* ffestc_order_iface_ -- Check ordering on <iface> statement
3030 if (ffestc_order_iface_() != FFESTC_orderOK_)
3034 ffestc_order_iface_ ()
3036 switch (ffestw_state (ffestw_stack_top ()))
3038 case FFESTV_stateNIL
:
3039 case FFESTV_statePROGRAM5
:
3040 case FFESTV_stateSUBROUTINE5
:
3041 case FFESTV_stateFUNCTION5
:
3042 case FFESTV_stateMODULE5
:
3043 case FFESTV_stateINTERFACE0
:
3044 return FFESTC_orderOK_
;
3046 case FFESTV_stateWHERE
:
3047 ffestc_order_bad_ ();
3049 ffestc_shriek_where_ (FALSE
);
3051 return FFESTC_orderBAD_
;
3053 case FFESTV_stateIF
:
3054 ffestc_order_bad_ ();
3055 ffestc_shriek_if_ (FALSE
);
3056 return FFESTC_orderBAD_
;
3059 ffestc_order_bad_ ();
3060 return FFESTC_orderBAD_
;
3064 /* ffestc_order_ifthen_ -- Check ordering on <ifthen> statement
3066 if (ffestc_order_ifthen_() != FFESTC_orderOK_)
3070 ffestc_order_ifthen_ ()
3072 switch (ffestw_state (ffestw_stack_top ()))
3074 case FFESTV_stateIFTHEN
:
3075 return FFESTC_orderOK_
;
3077 case FFESTV_stateWHERE
:
3078 ffestc_order_bad_ ();
3080 ffestc_shriek_where_ (FALSE
);
3082 return FFESTC_orderBAD_
;
3084 case FFESTV_stateIF
:
3085 ffestc_order_bad_ ();
3086 ffestc_shriek_if_ (FALSE
);
3087 return FFESTC_orderBAD_
;
3090 ffestc_order_bad_ ();
3091 return FFESTC_orderBAD_
;
3095 /* ffestc_order_implicit_ -- Check ordering on IMPLICIT statement
3097 if (ffestc_order_implicit_() != FFESTC_orderOK_)
3101 ffestc_order_implicit_ ()
3105 switch (ffestw_state (ffestw_stack_top ()))
3107 case FFESTV_stateNIL
:
3108 ffestc_shriek_begin_program_ ();
3109 goto recurse
; /* :::::::::::::::::::: */
3111 case FFESTV_statePROGRAM0
:
3112 case FFESTV_statePROGRAM1
:
3113 ffestw_update (NULL
);
3114 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM2
);
3115 return FFESTC_orderOK_
;
3117 case FFESTV_stateSUBROUTINE0
:
3118 case FFESTV_stateSUBROUTINE1
:
3119 ffestw_update (NULL
);
3120 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE2
);
3121 return FFESTC_orderOK_
;
3123 case FFESTV_stateFUNCTION0
:
3124 case FFESTV_stateFUNCTION1
:
3125 ffestw_update (NULL
);
3126 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION2
);
3127 return FFESTC_orderOK_
;
3129 case FFESTV_stateMODULE0
:
3130 case FFESTV_stateMODULE1
:
3131 ffestw_update (NULL
);
3132 ffestw_set_state (ffestw_stack_top (), FFESTV_stateMODULE2
);
3133 return FFESTC_orderOK_
;
3135 case FFESTV_stateBLOCKDATA0
:
3136 case FFESTV_stateBLOCKDATA1
:
3137 ffestw_update (NULL
);
3138 ffestw_set_state (ffestw_stack_top (), FFESTV_stateBLOCKDATA2
);
3139 return FFESTC_orderOK_
;
3141 case FFESTV_statePROGRAM2
:
3142 case FFESTV_stateSUBROUTINE2
:
3143 case FFESTV_stateFUNCTION2
:
3144 case FFESTV_stateMODULE2
:
3145 case FFESTV_stateBLOCKDATA2
:
3146 return FFESTC_orderOK_
;
3148 case FFESTV_stateUSE
:
3150 ffestc_shriek_end_uses_ (TRUE
);
3152 goto recurse
; /* :::::::::::::::::::: */
3154 case FFESTV_stateWHERE
:
3155 ffestc_order_bad_ ();
3157 ffestc_shriek_where_ (FALSE
);
3159 return FFESTC_orderBAD_
;
3161 case FFESTV_stateIF
:
3162 ffestc_order_bad_ ();
3163 ffestc_shriek_if_ (FALSE
);
3164 return FFESTC_orderBAD_
;
3167 ffestc_order_bad_ ();
3168 return FFESTC_orderBAD_
;
3172 /* ffestc_order_implicitnone_ -- Check ordering on IMPLICIT NONE statement
3174 if (ffestc_order_implicitnone_() != FFESTC_orderOK_)
3178 ffestc_order_implicitnone_ ()
3182 switch (ffestw_state (ffestw_stack_top ()))
3184 case FFESTV_stateNIL
:
3185 ffestc_shriek_begin_program_ ();
3186 goto recurse
; /* :::::::::::::::::::: */
3188 case FFESTV_statePROGRAM0
:
3189 case FFESTV_statePROGRAM1
:
3190 ffestw_update (NULL
);
3191 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM3
);
3192 return FFESTC_orderOK_
;
3194 case FFESTV_stateSUBROUTINE0
:
3195 case FFESTV_stateSUBROUTINE1
:
3196 ffestw_update (NULL
);
3197 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE3
);
3198 return FFESTC_orderOK_
;
3200 case FFESTV_stateFUNCTION0
:
3201 case FFESTV_stateFUNCTION1
:
3202 ffestw_update (NULL
);
3203 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION3
);
3204 return FFESTC_orderOK_
;
3206 case FFESTV_stateMODULE0
:
3207 case FFESTV_stateMODULE1
:
3208 ffestw_update (NULL
);
3209 ffestw_set_state (ffestw_stack_top (), FFESTV_stateMODULE3
);
3210 return FFESTC_orderOK_
;
3212 case FFESTV_stateBLOCKDATA0
:
3213 case FFESTV_stateBLOCKDATA1
:
3214 ffestw_update (NULL
);
3215 ffestw_set_state (ffestw_stack_top (), FFESTV_stateBLOCKDATA3
);
3216 return FFESTC_orderOK_
;
3218 case FFESTV_stateUSE
:
3220 ffestc_shriek_end_uses_ (TRUE
);
3222 goto recurse
; /* :::::::::::::::::::: */
3224 case FFESTV_stateWHERE
:
3225 ffestc_order_bad_ ();
3227 ffestc_shriek_where_ (FALSE
);
3229 return FFESTC_orderBAD_
;
3231 case FFESTV_stateIF
:
3232 ffestc_order_bad_ ();
3233 ffestc_shriek_if_ (FALSE
);
3234 return FFESTC_orderBAD_
;
3237 ffestc_order_bad_ ();
3238 return FFESTC_orderBAD_
;
3242 /* ffestc_order_interface_ -- Check ordering on <interface> statement
3244 if (ffestc_order_interface_() != FFESTC_orderOK_)
3249 ffestc_order_interface_ ()
3251 switch (ffestw_state (ffestw_stack_top ()))
3253 case FFESTV_stateINTERFACE0
:
3254 case FFESTV_stateINTERFACE1
:
3255 return FFESTC_orderOK_
;
3257 case FFESTV_stateWHERE
:
3258 ffestc_order_bad_ ();
3259 ffestc_shriek_where_ (FALSE
);
3260 return FFESTC_orderBAD_
;
3262 case FFESTV_stateIF
:
3263 ffestc_order_bad_ ();
3264 ffestc_shriek_if_ (FALSE
);
3265 return FFESTC_orderBAD_
;
3268 ffestc_order_bad_ ();
3269 return FFESTC_orderBAD_
;
3274 /* ffestc_order_map_ -- Check ordering on <map> statement
3276 if (ffestc_order_map_() != FFESTC_orderOK_)
3281 ffestc_order_map_ ()
3283 switch (ffestw_state (ffestw_stack_top ()))
3285 case FFESTV_stateMAP
:
3286 return FFESTC_orderOK_
;
3288 case FFESTV_stateWHERE
:
3289 ffestc_order_bad_ ();
3290 ffestc_shriek_where_ (FALSE
);
3291 return FFESTC_orderBAD_
;
3293 case FFESTV_stateIF
:
3294 ffestc_order_bad_ ();
3295 ffestc_shriek_if_ (FALSE
);
3296 return FFESTC_orderBAD_
;
3299 ffestc_order_bad_ ();
3300 return FFESTC_orderBAD_
;
3305 /* ffestc_order_module_ -- Check ordering on <module> statement
3307 if (ffestc_order_module_() != FFESTC_orderOK_)
3312 ffestc_order_module_ ()
3316 switch (ffestw_state (ffestw_stack_top ()))
3318 case FFESTV_stateMODULE0
:
3319 case FFESTV_stateMODULE1
:
3320 case FFESTV_stateMODULE2
:
3321 case FFESTV_stateMODULE3
:
3322 case FFESTV_stateMODULE4
:
3323 case FFESTV_stateMODULE5
:
3324 return FFESTC_orderOK_
;
3326 case FFESTV_stateUSE
:
3327 ffestc_shriek_end_uses_ (TRUE
);
3328 goto recurse
; /* :::::::::::::::::::: */
3330 case FFESTV_stateWHERE
:
3331 ffestc_order_bad_ ();
3332 ffestc_shriek_where_ (FALSE
);
3333 return FFESTC_orderBAD_
;
3335 case FFESTV_stateIF
:
3336 ffestc_order_bad_ ();
3337 ffestc_shriek_if_ (FALSE
);
3338 return FFESTC_orderBAD_
;
3341 ffestc_order_bad_ ();
3342 return FFESTC_orderBAD_
;
3347 /* ffestc_order_parameter_ -- Check ordering on <parameter> statement
3349 if (ffestc_order_parameter_() != FFESTC_orderOK_)
3353 ffestc_order_parameter_ ()
3357 switch (ffestw_state (ffestw_stack_top ()))
3359 case FFESTV_stateNIL
:
3360 ffestc_shriek_begin_program_ ();
3361 goto recurse
; /* :::::::::::::::::::: */
3363 case FFESTV_statePROGRAM0
:
3364 case FFESTV_statePROGRAM1
:
3365 ffestw_update (NULL
);
3366 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM2
);
3367 return FFESTC_orderOK_
;
3369 case FFESTV_stateSUBROUTINE0
:
3370 case FFESTV_stateSUBROUTINE1
:
3371 ffestw_update (NULL
);
3372 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE2
);
3373 return FFESTC_orderOK_
;
3375 case FFESTV_stateFUNCTION0
:
3376 case FFESTV_stateFUNCTION1
:
3377 ffestw_update (NULL
);
3378 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION2
);
3379 return FFESTC_orderOK_
;
3381 case FFESTV_stateMODULE0
:
3382 case FFESTV_stateMODULE1
:
3383 ffestw_update (NULL
);
3384 ffestw_set_state (ffestw_stack_top (), FFESTV_stateMODULE2
);
3385 return FFESTC_orderOK_
;
3387 case FFESTV_stateBLOCKDATA0
:
3388 case FFESTV_stateBLOCKDATA1
:
3389 ffestw_update (NULL
);
3390 ffestw_set_state (ffestw_stack_top (), FFESTV_stateBLOCKDATA2
);
3391 return FFESTC_orderOK_
;
3393 case FFESTV_statePROGRAM2
:
3394 case FFESTV_stateSUBROUTINE2
:
3395 case FFESTV_stateFUNCTION2
:
3396 case FFESTV_stateMODULE2
:
3397 case FFESTV_stateBLOCKDATA2
:
3398 case FFESTV_statePROGRAM3
:
3399 case FFESTV_stateSUBROUTINE3
:
3400 case FFESTV_stateFUNCTION3
:
3401 case FFESTV_stateMODULE3
:
3402 case FFESTV_stateBLOCKDATA3
:
3403 case FFESTV_stateTYPE
: /* GNU extension here! */
3404 case FFESTV_stateSTRUCTURE
:
3405 case FFESTV_stateUNION
:
3406 case FFESTV_stateMAP
:
3407 return FFESTC_orderOK_
;
3409 case FFESTV_stateUSE
:
3411 ffestc_shriek_end_uses_ (TRUE
);
3413 goto recurse
; /* :::::::::::::::::::: */
3415 case FFESTV_stateWHERE
:
3416 ffestc_order_bad_ ();
3418 ffestc_shriek_where_ (FALSE
);
3420 return FFESTC_orderBAD_
;
3422 case FFESTV_stateIF
:
3423 ffestc_order_bad_ ();
3424 ffestc_shriek_if_ (FALSE
);
3425 return FFESTC_orderBAD_
;
3428 ffestc_order_bad_ ();
3429 return FFESTC_orderBAD_
;
3433 /* ffestc_order_program_ -- Check ordering on <program> statement
3435 if (ffestc_order_program_() != FFESTC_orderOK_)
3439 ffestc_order_program_ ()
3443 switch (ffestw_state (ffestw_stack_top ()))
3445 case FFESTV_stateNIL
:
3446 ffestc_shriek_begin_program_ ();
3447 goto recurse
; /* :::::::::::::::::::: */
3449 case FFESTV_statePROGRAM0
:
3450 case FFESTV_statePROGRAM1
:
3451 case FFESTV_statePROGRAM2
:
3452 case FFESTV_statePROGRAM3
:
3453 case FFESTV_statePROGRAM4
:
3454 case FFESTV_statePROGRAM5
:
3455 return FFESTC_orderOK_
;
3457 case FFESTV_stateUSE
:
3459 ffestc_shriek_end_uses_ (TRUE
);
3461 goto recurse
; /* :::::::::::::::::::: */
3463 case FFESTV_stateWHERE
:
3464 ffestc_order_bad_ ();
3466 ffestc_shriek_where_ (FALSE
);
3468 return FFESTC_orderBAD_
;
3470 case FFESTV_stateIF
:
3471 ffestc_order_bad_ ();
3472 ffestc_shriek_if_ (FALSE
);
3473 return FFESTC_orderBAD_
;
3476 ffestc_order_bad_ ();
3477 return FFESTC_orderBAD_
;
3481 /* ffestc_order_progspec_ -- Check ordering on <progspec> statement
3483 if (ffestc_order_progspec_() != FFESTC_orderOK_)
3487 ffestc_order_progspec_ ()
3491 switch (ffestw_state (ffestw_stack_top ()))
3493 case FFESTV_stateNIL
:
3494 ffestc_shriek_begin_program_ ();
3495 goto recurse
; /* :::::::::::::::::::: */
3497 case FFESTV_statePROGRAM0
:
3498 case FFESTV_statePROGRAM1
:
3499 case FFESTV_statePROGRAM2
:
3500 ffestw_update (NULL
);
3501 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM3
);
3502 return FFESTC_orderOK_
;
3504 case FFESTV_stateSUBROUTINE0
:
3505 case FFESTV_stateSUBROUTINE1
:
3506 case FFESTV_stateSUBROUTINE2
:
3507 ffestw_update (NULL
);
3508 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE3
);
3509 return FFESTC_orderOK_
;
3511 case FFESTV_stateFUNCTION0
:
3512 case FFESTV_stateFUNCTION1
:
3513 case FFESTV_stateFUNCTION2
:
3514 ffestw_update (NULL
);
3515 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION3
);
3516 return FFESTC_orderOK_
;
3518 case FFESTV_stateMODULE0
:
3519 case FFESTV_stateMODULE1
:
3520 case FFESTV_stateMODULE2
:
3521 ffestw_update (NULL
);
3522 ffestw_set_state (ffestw_stack_top (), FFESTV_stateMODULE3
);
3523 return FFESTC_orderOK_
;
3525 case FFESTV_statePROGRAM3
:
3526 case FFESTV_stateSUBROUTINE3
:
3527 case FFESTV_stateFUNCTION3
:
3528 case FFESTV_stateMODULE3
:
3529 return FFESTC_orderOK_
;
3531 case FFESTV_stateBLOCKDATA0
:
3532 case FFESTV_stateBLOCKDATA1
:
3533 case FFESTV_stateBLOCKDATA2
:
3534 ffestw_update (NULL
);
3535 ffestw_set_state (ffestw_stack_top (), FFESTV_stateBLOCKDATA2
);
3536 if (ffe_is_pedantic ())
3538 ffebad_start (FFEBAD_BLOCKDATA_STMT
);
3539 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
3540 ffelex_token_where_column (ffesta_tokens
[0]));
3541 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
3544 return FFESTC_orderOK_
;
3546 case FFESTV_stateUSE
:
3548 ffestc_shriek_end_uses_ (TRUE
);
3550 goto recurse
; /* :::::::::::::::::::: */
3552 case FFESTV_stateWHERE
:
3553 ffestc_order_bad_ ();
3555 ffestc_shriek_where_ (FALSE
);
3557 return FFESTC_orderBAD_
;
3559 case FFESTV_stateIF
:
3560 ffestc_order_bad_ ();
3561 ffestc_shriek_if_ (FALSE
);
3562 return FFESTC_orderBAD_
;
3565 ffestc_order_bad_ ();
3566 return FFESTC_orderBAD_
;
3570 /* ffestc_order_record_ -- Check ordering on RECORD statement
3572 if (ffestc_order_record_() != FFESTC_orderOK_)
3577 ffestc_order_record_ ()
3581 switch (ffestw_state (ffestw_stack_top ()))
3583 case FFESTV_stateNIL
:
3584 ffestc_shriek_begin_program_ ();
3585 goto recurse
; /* :::::::::::::::::::: */
3587 case FFESTV_statePROGRAM0
:
3588 case FFESTV_statePROGRAM1
:
3589 case FFESTV_statePROGRAM2
:
3590 ffestw_update (NULL
);
3591 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM3
);
3592 return FFESTC_orderOK_
;
3594 case FFESTV_stateSUBROUTINE0
:
3595 case FFESTV_stateSUBROUTINE1
:
3596 case FFESTV_stateSUBROUTINE2
:
3597 ffestw_update (NULL
);
3598 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE3
);
3599 return FFESTC_orderOK_
;
3601 case FFESTV_stateFUNCTION0
:
3602 case FFESTV_stateFUNCTION1
:
3603 case FFESTV_stateFUNCTION2
:
3604 ffestw_update (NULL
);
3605 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION3
);
3606 return FFESTC_orderOK_
;
3608 case FFESTV_stateMODULE0
:
3609 case FFESTV_stateMODULE1
:
3610 case FFESTV_stateMODULE2
:
3611 ffestw_update (NULL
);
3612 ffestw_set_state (ffestw_stack_top (), FFESTV_stateMODULE3
);
3613 return FFESTC_orderOK_
;
3615 case FFESTV_stateBLOCKDATA0
:
3616 case FFESTV_stateBLOCKDATA1
:
3617 case FFESTV_stateBLOCKDATA2
:
3618 ffestw_update (NULL
);
3619 ffestw_set_state (ffestw_stack_top (), FFESTV_stateBLOCKDATA3
);
3620 return FFESTC_orderOK_
;
3622 case FFESTV_statePROGRAM3
:
3623 case FFESTV_stateSUBROUTINE3
:
3624 case FFESTV_stateFUNCTION3
:
3625 case FFESTV_stateMODULE3
:
3626 case FFESTV_stateBLOCKDATA3
:
3627 case FFESTV_stateSTRUCTURE
:
3628 case FFESTV_stateMAP
:
3629 return FFESTC_orderOK_
;
3631 case FFESTV_stateUSE
:
3633 ffestc_shriek_end_uses_ (TRUE
);
3635 goto recurse
; /* :::::::::::::::::::: */
3637 case FFESTV_stateWHERE
:
3638 ffestc_order_bad_ ();
3640 ffestc_shriek_where_ (FALSE
);
3642 return FFESTC_orderBAD_
;
3644 case FFESTV_stateIF
:
3645 ffestc_order_bad_ ();
3646 ffestc_shriek_if_ (FALSE
);
3647 return FFESTC_orderBAD_
;
3650 ffestc_order_bad_ ();
3651 return FFESTC_orderBAD_
;
3656 /* ffestc_order_selectcase_ -- Check ordering on <selectcase> statement
3658 if (ffestc_order_selectcase_() != FFESTC_orderOK_)
3662 ffestc_order_selectcase_ ()
3664 switch (ffestw_state (ffestw_stack_top ()))
3666 case FFESTV_stateSELECT0
:
3667 case FFESTV_stateSELECT1
:
3668 return FFESTC_orderOK_
;
3670 case FFESTV_stateWHERE
:
3671 ffestc_order_bad_ ();
3673 ffestc_shriek_where_ (FALSE
);
3675 return FFESTC_orderBAD_
;
3677 case FFESTV_stateIF
:
3678 ffestc_order_bad_ ();
3679 ffestc_shriek_if_ (FALSE
);
3680 return FFESTC_orderBAD_
;
3683 ffestc_order_bad_ ();
3684 return FFESTC_orderBAD_
;
3688 /* ffestc_order_sfunc_ -- Check ordering on statement-function definition
3690 if (ffestc_order_sfunc_() != FFESTC_orderOK_)
3694 ffestc_order_sfunc_ ()
3698 switch (ffestw_state (ffestw_stack_top ()))
3700 case FFESTV_stateNIL
:
3701 ffestc_shriek_begin_program_ ();
3702 goto recurse
; /* :::::::::::::::::::: */
3704 case FFESTV_statePROGRAM0
:
3705 case FFESTV_statePROGRAM1
:
3706 case FFESTV_statePROGRAM2
:
3707 ffestw_update (NULL
);
3708 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM3
);
3709 return FFESTC_orderOK_
;
3711 case FFESTV_stateSUBROUTINE0
:
3712 case FFESTV_stateSUBROUTINE1
:
3713 case FFESTV_stateSUBROUTINE2
:
3714 ffestw_update (NULL
);
3715 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE3
);
3716 return FFESTC_orderOK_
;
3718 case FFESTV_stateFUNCTION0
:
3719 case FFESTV_stateFUNCTION1
:
3720 case FFESTV_stateFUNCTION2
:
3721 ffestw_update (NULL
);
3722 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION3
);
3723 return FFESTC_orderOK_
;
3725 case FFESTV_statePROGRAM3
:
3726 case FFESTV_stateSUBROUTINE3
:
3727 case FFESTV_stateFUNCTION3
:
3728 return FFESTC_orderOK_
;
3730 case FFESTV_stateUSE
:
3732 ffestc_shriek_end_uses_ (TRUE
);
3734 goto recurse
; /* :::::::::::::::::::: */
3736 case FFESTV_stateWHERE
:
3737 ffestc_order_bad_ ();
3739 ffestc_shriek_where_ (FALSE
);
3741 return FFESTC_orderBAD_
;
3743 case FFESTV_stateIF
:
3744 ffestc_order_bad_ ();
3745 ffestc_shriek_if_ (FALSE
);
3746 return FFESTC_orderBAD_
;
3749 ffestc_order_bad_ ();
3750 return FFESTC_orderBAD_
;
3754 /* ffestc_order_spec_ -- Check ordering on <spec> statement
3756 if (ffestc_order_spec_() != FFESTC_orderOK_)
3761 ffestc_order_spec_ ()
3765 switch (ffestw_state (ffestw_stack_top ()))
3767 case FFESTV_stateNIL
:
3768 ffestc_shriek_begin_program_ ();
3769 goto recurse
; /* :::::::::::::::::::: */
3771 case FFESTV_stateSUBROUTINE0
:
3772 case FFESTV_stateSUBROUTINE1
:
3773 case FFESTV_stateSUBROUTINE2
:
3774 ffestw_update (NULL
);
3775 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE3
);
3776 return FFESTC_orderOK_
;
3778 case FFESTV_stateFUNCTION0
:
3779 case FFESTV_stateFUNCTION1
:
3780 case FFESTV_stateFUNCTION2
:
3781 ffestw_update (NULL
);
3782 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION3
);
3783 return FFESTC_orderOK_
;
3785 case FFESTV_stateMODULE0
:
3786 case FFESTV_stateMODULE1
:
3787 case FFESTV_stateMODULE2
:
3788 ffestw_update (NULL
);
3789 ffestw_set_state (ffestw_stack_top (), FFESTV_stateMODULE3
);
3790 return FFESTC_orderOK_
;
3792 case FFESTV_stateSUBROUTINE3
:
3793 case FFESTV_stateFUNCTION3
:
3794 case FFESTV_stateMODULE3
:
3795 return FFESTC_orderOK_
;
3797 case FFESTV_stateUSE
:
3799 ffestc_shriek_end_uses_ (TRUE
);
3801 goto recurse
; /* :::::::::::::::::::: */
3803 case FFESTV_stateWHERE
:
3804 ffestc_order_bad_ ();
3806 ffestc_shriek_where_ (FALSE
);
3808 return FFESTC_orderBAD_
;
3810 case FFESTV_stateIF
:
3811 ffestc_order_bad_ ();
3812 ffestc_shriek_if_ (FALSE
);
3813 return FFESTC_orderBAD_
;
3816 ffestc_order_bad_ ();
3817 return FFESTC_orderBAD_
;
3822 /* ffestc_order_structure_ -- Check ordering on <structure> statement
3824 if (ffestc_order_structure_() != FFESTC_orderOK_)
3829 ffestc_order_structure_ ()
3831 switch (ffestw_state (ffestw_stack_top ()))
3833 case FFESTV_stateSTRUCTURE
:
3834 return FFESTC_orderOK_
;
3836 case FFESTV_stateWHERE
:
3837 ffestc_order_bad_ ();
3839 ffestc_shriek_where_ (FALSE
);
3841 return FFESTC_orderBAD_
;
3843 case FFESTV_stateIF
:
3844 ffestc_order_bad_ ();
3845 ffestc_shriek_if_ (FALSE
);
3846 return FFESTC_orderBAD_
;
3849 ffestc_order_bad_ ();
3850 return FFESTC_orderBAD_
;
3855 /* ffestc_order_subroutine_ -- Check ordering on <subroutine> statement
3857 if (ffestc_order_subroutine_() != FFESTC_orderOK_)
3861 ffestc_order_subroutine_ ()
3865 switch (ffestw_state (ffestw_stack_top ()))
3867 case FFESTV_stateSUBROUTINE0
:
3868 case FFESTV_stateSUBROUTINE1
:
3869 case FFESTV_stateSUBROUTINE2
:
3870 case FFESTV_stateSUBROUTINE3
:
3871 case FFESTV_stateSUBROUTINE4
:
3872 case FFESTV_stateSUBROUTINE5
:
3873 return FFESTC_orderOK_
;
3875 case FFESTV_stateUSE
:
3877 ffestc_shriek_end_uses_ (TRUE
);
3879 goto recurse
; /* :::::::::::::::::::: */
3881 case FFESTV_stateWHERE
:
3882 ffestc_order_bad_ ();
3884 ffestc_shriek_where_ (FALSE
);
3886 return FFESTC_orderBAD_
;
3888 case FFESTV_stateIF
:
3889 ffestc_order_bad_ ();
3890 ffestc_shriek_if_ (FALSE
);
3891 return FFESTC_orderBAD_
;
3894 ffestc_order_bad_ ();
3895 return FFESTC_orderBAD_
;
3899 /* ffestc_order_type_ -- Check ordering on <type> statement
3901 if (ffestc_order_type_() != FFESTC_orderOK_)
3906 ffestc_order_type_ ()
3908 switch (ffestw_state (ffestw_stack_top ()))
3910 case FFESTV_stateTYPE
:
3911 return FFESTC_orderOK_
;
3913 case FFESTV_stateWHERE
:
3914 ffestc_order_bad_ ();
3915 ffestc_shriek_where_ (FALSE
);
3916 return FFESTC_orderBAD_
;
3918 case FFESTV_stateIF
:
3919 ffestc_order_bad_ ();
3920 ffestc_shriek_if_ (FALSE
);
3921 return FFESTC_orderBAD_
;
3924 ffestc_order_bad_ ();
3925 return FFESTC_orderBAD_
;
3930 /* ffestc_order_typedecl_ -- Check ordering on <typedecl> statement
3932 if (ffestc_order_typedecl_() != FFESTC_orderOK_)
3936 ffestc_order_typedecl_ ()
3940 switch (ffestw_state (ffestw_stack_top ()))
3942 case FFESTV_stateNIL
:
3943 ffestc_shriek_begin_program_ ();
3944 goto recurse
; /* :::::::::::::::::::: */
3946 case FFESTV_statePROGRAM0
:
3947 case FFESTV_statePROGRAM1
:
3948 case FFESTV_statePROGRAM2
:
3949 ffestw_update (NULL
);
3950 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM3
);
3951 return FFESTC_orderOK_
;
3953 case FFESTV_stateSUBROUTINE0
:
3954 case FFESTV_stateSUBROUTINE1
:
3955 case FFESTV_stateSUBROUTINE2
:
3956 ffestw_update (NULL
);
3957 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE3
);
3958 return FFESTC_orderOK_
;
3960 case FFESTV_stateFUNCTION0
:
3961 case FFESTV_stateFUNCTION1
:
3962 case FFESTV_stateFUNCTION2
:
3963 ffestw_update (NULL
);
3964 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION3
);
3965 return FFESTC_orderOK_
;
3967 case FFESTV_stateMODULE0
:
3968 case FFESTV_stateMODULE1
:
3969 case FFESTV_stateMODULE2
:
3970 ffestw_update (NULL
);
3971 ffestw_set_state (ffestw_stack_top (), FFESTV_stateMODULE3
);
3972 return FFESTC_orderOK_
;
3974 case FFESTV_stateBLOCKDATA0
:
3975 case FFESTV_stateBLOCKDATA1
:
3976 case FFESTV_stateBLOCKDATA2
:
3977 ffestw_update (NULL
);
3978 ffestw_set_state (ffestw_stack_top (), FFESTV_stateBLOCKDATA3
);
3979 return FFESTC_orderOK_
;
3981 case FFESTV_statePROGRAM3
:
3982 case FFESTV_stateSUBROUTINE3
:
3983 case FFESTV_stateFUNCTION3
:
3984 case FFESTV_stateMODULE3
:
3985 case FFESTV_stateBLOCKDATA3
:
3986 return FFESTC_orderOK_
;
3988 case FFESTV_stateUSE
:
3990 ffestc_shriek_end_uses_ (TRUE
);
3992 goto recurse
; /* :::::::::::::::::::: */
3994 case FFESTV_stateWHERE
:
3995 ffestc_order_bad_ ();
3997 ffestc_shriek_where_ (FALSE
);
3999 return FFESTC_orderBAD_
;
4001 case FFESTV_stateIF
:
4002 ffestc_order_bad_ ();
4003 ffestc_shriek_if_ (FALSE
);
4004 return FFESTC_orderBAD_
;
4007 ffestc_order_bad_ ();
4008 return FFESTC_orderBAD_
;
4012 /* ffestc_order_union_ -- Check ordering on <union> statement
4014 if (ffestc_order_union_() != FFESTC_orderOK_)
4019 ffestc_order_union_ ()
4021 switch (ffestw_state (ffestw_stack_top ()))
4023 case FFESTV_stateUNION
:
4024 return FFESTC_orderOK_
;
4026 case FFESTV_stateWHERE
:
4027 ffestc_order_bad_ ();
4029 ffestc_shriek_where_ (FALSE
);
4031 return FFESTC_orderBAD_
;
4033 case FFESTV_stateIF
:
4034 ffestc_order_bad_ ();
4035 ffestc_shriek_if_ (FALSE
);
4036 return FFESTC_orderBAD_
;
4039 ffestc_order_bad_ ();
4040 return FFESTC_orderBAD_
;
4045 /* ffestc_order_unit_ -- Check ordering on <unit> statement
4047 if (ffestc_order_unit_() != FFESTC_orderOK_)
4051 ffestc_order_unit_ ()
4053 switch (ffestw_state (ffestw_stack_top ()))
4055 case FFESTV_stateNIL
:
4056 return FFESTC_orderOK_
;
4058 case FFESTV_stateWHERE
:
4059 ffestc_order_bad_ ();
4061 ffestc_shriek_where_ (FALSE
);
4063 return FFESTC_orderBAD_
;
4065 case FFESTV_stateIF
:
4066 ffestc_order_bad_ ();
4067 ffestc_shriek_if_ (FALSE
);
4068 return FFESTC_orderBAD_
;
4071 ffestc_order_bad_ ();
4072 return FFESTC_orderBAD_
;
4076 /* ffestc_order_use_ -- Check ordering on USE statement
4078 if (ffestc_order_use_() != FFESTC_orderOK_)
4083 ffestc_order_use_ ()
4087 switch (ffestw_state (ffestw_stack_top ()))
4089 case FFESTV_stateNIL
:
4090 ffestc_shriek_begin_program_ ();
4091 goto recurse
; /* :::::::::::::::::::: */
4093 case FFESTV_statePROGRAM0
:
4094 ffestw_update (NULL
);
4095 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM1
);
4096 ffestc_shriek_begin_uses_ ();
4097 goto recurse
; /* :::::::::::::::::::: */
4099 case FFESTV_stateSUBROUTINE0
:
4100 ffestw_update (NULL
);
4101 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE1
);
4102 ffestc_shriek_begin_uses_ ();
4103 goto recurse
; /* :::::::::::::::::::: */
4105 case FFESTV_stateFUNCTION0
:
4106 ffestw_update (NULL
);
4107 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION1
);
4108 ffestc_shriek_begin_uses_ ();
4109 goto recurse
; /* :::::::::::::::::::: */
4111 case FFESTV_stateMODULE0
:
4112 ffestw_update (NULL
);
4113 ffestw_set_state (ffestw_stack_top (), FFESTV_stateMODULE1
);
4114 ffestc_shriek_begin_uses_ ();
4115 goto recurse
; /* :::::::::::::::::::: */
4117 case FFESTV_stateUSE
:
4118 return FFESTC_orderOK_
;
4120 case FFESTV_stateWHERE
:
4121 ffestc_order_bad_ ();
4122 ffestc_shriek_where_ (FALSE
);
4123 return FFESTC_orderBAD_
;
4125 case FFESTV_stateIF
:
4126 ffestc_order_bad_ ();
4127 ffestc_shriek_if_ (FALSE
);
4128 return FFESTC_orderBAD_
;
4131 ffestc_order_bad_ ();
4132 return FFESTC_orderBAD_
;
4137 /* ffestc_order_vxtstructure_ -- Check ordering on STRUCTURE statement
4139 if (ffestc_order_vxtstructure_() != FFESTC_orderOK_)
4144 ffestc_order_vxtstructure_ ()
4148 switch (ffestw_state (ffestw_stack_top ()))
4150 case FFESTV_stateNIL
:
4151 ffestc_shriek_begin_program_ ();
4152 goto recurse
; /* :::::::::::::::::::: */
4154 case FFESTV_statePROGRAM0
:
4155 case FFESTV_statePROGRAM1
:
4156 case FFESTV_statePROGRAM2
:
4157 ffestw_update (NULL
);
4158 ffestw_set_state (ffestw_stack_top (), FFESTV_statePROGRAM3
);
4159 return FFESTC_orderOK_
;
4161 case FFESTV_stateSUBROUTINE0
:
4162 case FFESTV_stateSUBROUTINE1
:
4163 case FFESTV_stateSUBROUTINE2
:
4164 ffestw_update (NULL
);
4165 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSUBROUTINE3
);
4166 return FFESTC_orderOK_
;
4168 case FFESTV_stateFUNCTION0
:
4169 case FFESTV_stateFUNCTION1
:
4170 case FFESTV_stateFUNCTION2
:
4171 ffestw_update (NULL
);
4172 ffestw_set_state (ffestw_stack_top (), FFESTV_stateFUNCTION3
);
4173 return FFESTC_orderOK_
;
4175 case FFESTV_stateMODULE0
:
4176 case FFESTV_stateMODULE1
:
4177 case FFESTV_stateMODULE2
:
4178 ffestw_update (NULL
);
4179 ffestw_set_state (ffestw_stack_top (), FFESTV_stateMODULE3
);
4180 return FFESTC_orderOK_
;
4182 case FFESTV_stateBLOCKDATA0
:
4183 case FFESTV_stateBLOCKDATA1
:
4184 case FFESTV_stateBLOCKDATA2
:
4185 ffestw_update (NULL
);
4186 ffestw_set_state (ffestw_stack_top (), FFESTV_stateBLOCKDATA3
);
4187 return FFESTC_orderOK_
;
4189 case FFESTV_statePROGRAM3
:
4190 case FFESTV_stateSUBROUTINE3
:
4191 case FFESTV_stateFUNCTION3
:
4192 case FFESTV_stateMODULE3
:
4193 case FFESTV_stateBLOCKDATA3
:
4194 case FFESTV_stateSTRUCTURE
:
4195 case FFESTV_stateMAP
:
4196 return FFESTC_orderOK_
;
4198 case FFESTV_stateUSE
:
4200 ffestc_shriek_end_uses_ (TRUE
);
4202 goto recurse
; /* :::::::::::::::::::: */
4204 case FFESTV_stateWHERE
:
4205 ffestc_order_bad_ ();
4207 ffestc_shriek_where_ (FALSE
);
4209 return FFESTC_orderBAD_
;
4211 case FFESTV_stateIF
:
4212 ffestc_order_bad_ ();
4213 ffestc_shriek_if_ (FALSE
);
4214 return FFESTC_orderBAD_
;
4217 ffestc_order_bad_ ();
4218 return FFESTC_orderBAD_
;
4223 /* ffestc_order_where_ -- Check ordering on <where> statement
4225 if (ffestc_order_where_() != FFESTC_orderOK_)
4230 ffestc_order_where_ ()
4232 switch (ffestw_state (ffestw_stack_top ()))
4234 case FFESTV_stateWHERETHEN
:
4235 return FFESTC_orderOK_
;
4237 case FFESTV_stateWHERE
:
4238 ffestc_order_bad_ ();
4239 ffestc_shriek_where_ (FALSE
);
4240 return FFESTC_orderBAD_
;
4242 case FFESTV_stateIF
:
4243 ffestc_order_bad_ ();
4244 ffestc_shriek_if_ (FALSE
);
4245 return FFESTC_orderBAD_
;
4248 ffestc_order_bad_ ();
4249 return FFESTC_orderBAD_
;
4254 /* Invoked for each token in dummy arg list of FUNCTION, SUBROUTINE, and
4255 ENTRY (prior to the first executable statement). */
4258 ffestc_promote_dummy_ (ffelexToken t
)
4268 if (ffelex_token_type (t
) == FFELEX_typeASTERISK
)
4270 ffebld_append_item (&ffestc_local_
.dummy
.list_bottom
,
4271 ffebld_new_star ());
4272 return; /* Don't bother with alternate returns! */
4275 s
= ffesymbol_declare_local (t
, FALSE
);
4276 sa
= ffesymbol_attrs (s
);
4278 /* Figure out what kind of object we've got based on previous declarations
4279 of or references to the object. */
4283 if (sa
& FFESYMBOL_attrsANY
)
4285 else if (sa
& FFESYMBOL_attrsDUMMY
)
4287 if (ffestc_entry_num_
== ffesymbol_maxentrynum (s
))
4288 { /* Seen this one twice in this list! */
4289 na
= FFESYMBOL_attrsetNONE
;
4293 sfref_ok
= TRUE
; /* Ok for sym to be ref'd in sfuncdef
4294 previously, since already declared as a
4297 else if (!(sa
& ~(FFESYMBOL_attrsADJUSTABLE
4298 | FFESYMBOL_attrsADJUSTS
4299 | FFESYMBOL_attrsANY
4300 | FFESYMBOL_attrsANYLEN
4301 | FFESYMBOL_attrsANYSIZE
4302 | FFESYMBOL_attrsARRAY
4303 | FFESYMBOL_attrsDUMMY
4304 | FFESYMBOL_attrsEXTERNAL
4305 | FFESYMBOL_attrsSFARG
4306 | FFESYMBOL_attrsTYPE
)))
4307 na
= sa
| FFESYMBOL_attrsDUMMY
;
4309 na
= FFESYMBOL_attrsetNONE
;
4311 if (!ffesymbol_is_specable (s
)
4313 || (ffesymbol_where (s
) != FFEINFO_whereDUMMY
)))
4314 na
= FFESYMBOL_attrsetNONE
; /* Can't dcl sym ref'd in sfuncdef. */
4316 /* Now see what we've got for a new object: NONE means a new error cropped
4317 up; ANY means an old error to be ignored; otherwise, everything's ok,
4318 update the object (symbol) and continue on. */
4320 if (na
== FFESYMBOL_attrsetNONE
)
4321 ffesymbol_error (s
, t
);
4322 else if (!(na
& FFESYMBOL_attrsANY
))
4324 ffesymbol_set_attrs (s
, na
);
4325 if (ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
4326 ffesymbol_set_state (s
, FFESYMBOL_stateSEEN
);
4327 ffesymbol_set_maxentrynum (s
, ffestc_entry_num_
);
4328 ffesymbol_set_numentries (s
, ffesymbol_numentries (s
) + 1);
4329 e
= ffebld_new_symter (s
, FFEINTRIN_genNONE
, FFEINTRIN_specNONE
,
4332 ffeinfo_new (FFEINFO_basictypeNONE
,
4333 FFEINFO_kindtypeNONE
,
4337 FFETARGET_charactersizeNONE
));
4338 ffebld_append_item (&ffestc_local_
.dummy
.list_bottom
, e
);
4339 ffesymbol_signal_unreported (s
);
4343 /* ffestc_promote_execdummy_ -- Declare token as dummy variable in exec context
4345 ffestc_promote_execdummy_(t);
4347 Invoked for each token in dummy arg list of ENTRY when the statement
4348 follows the first executable statement. */
4351 ffestc_promote_execdummy_ (ffelexToken t
)
4364 if (ffelex_token_type (t
) == FFELEX_typeASTERISK
)
4366 ffebld_append_item (&ffestc_local_
.dummy
.list_bottom
,
4367 ffebld_new_star ());
4368 return; /* Don't bother with alternate returns! */
4371 s
= ffesymbol_declare_local (t
, FALSE
);
4372 na
= sa
= ffesymbol_attrs (s
);
4373 ss
= ffesymbol_state (s
);
4374 kind
= ffesymbol_kind (s
);
4375 where
= ffesymbol_where (s
);
4377 if (ffestc_entry_num_
== ffesymbol_maxentrynum (s
))
4378 { /* Seen this one twice in this list! */
4379 na
= FFESYMBOL_attrsetNONE
;
4382 /* Figure out what kind of object we've got based on previous declarations
4383 of or references to the object. */
4385 ns
= FFESYMBOL_stateUNDERSTOOD
; /* Assume we know it all know. */
4389 case FFEINFO_kindENTITY
:
4390 case FFEINFO_kindFUNCTION
:
4391 case FFEINFO_kindSUBROUTINE
:
4392 break; /* These are fine, as far as we know. */
4394 case FFEINFO_kindNONE
:
4395 if (sa
& FFESYMBOL_attrsDUMMY
)
4396 ns
= FFESYMBOL_stateUNCERTAIN
; /* Learned nothing new. */
4397 else if (sa
& FFESYMBOL_attrsANYLEN
)
4399 kind
= FFEINFO_kindENTITY
;
4400 where
= FFEINFO_whereDUMMY
;
4402 else if (sa
& FFESYMBOL_attrsACTUALARG
)
4403 na
= FFESYMBOL_attrsetNONE
;
4406 na
= sa
| FFESYMBOL_attrsDUMMY
;
4407 ns
= FFESYMBOL_stateUNCERTAIN
;
4412 na
= FFESYMBOL_attrsetNONE
; /* Error. */
4418 case FFEINFO_whereDUMMY
:
4419 break; /* This is fine. */
4421 case FFEINFO_whereNONE
:
4422 where
= FFEINFO_whereDUMMY
;
4426 na
= FFESYMBOL_attrsetNONE
; /* Error. */
4430 /* Now see what we've got for a new object: NONE means a new error cropped
4431 up; ANY means an old error to be ignored; otherwise, everything's ok,
4432 update the object (symbol) and continue on. */
4434 if (na
== FFESYMBOL_attrsetNONE
)
4435 ffesymbol_error (s
, t
);
4436 else if (!(na
& FFESYMBOL_attrsANY
))
4438 ffesymbol_set_attrs (s
, na
);
4439 ffesymbol_set_state (s
, ns
);
4440 ffesymbol_set_maxentrynum (s
, ffestc_entry_num_
);
4441 ffesymbol_set_numentries (s
, ffesymbol_numentries (s
) + 1);
4442 if ((ns
== FFESYMBOL_stateUNDERSTOOD
)
4443 && (kind
!= FFEINFO_kindSUBROUTINE
)
4444 && !ffeimplic_establish_symbol (s
))
4446 ffesymbol_error (s
, t
);
4449 ffesymbol_set_info (s
,
4450 ffeinfo_new (ffesymbol_basictype (s
),
4451 ffesymbol_kindtype (s
),
4455 ffesymbol_size (s
)));
4456 e
= ffebld_new_symter (s
, FFEINTRIN_genNONE
, FFEINTRIN_specNONE
,
4458 ffebld_set_info (e
, ffeinfo_use (ffesymbol_info (s
)));
4459 ffebld_append_item (&ffestc_local_
.dummy
.list_bottom
, e
);
4460 s
= ffecom_sym_learned (s
);
4461 ffesymbol_signal_unreported (s
);
4465 /* ffestc_promote_sfdummy_ -- Declare token as stmt-func dummy variable
4467 ffestc_promote_sfdummy_(t);
4469 Invoked for each token in dummy arg list of statement function.
4472 Reject arg if CHARACTER*(*). */
4475 ffestc_promote_sfdummy_ (ffelexToken t
)
4478 ffesymbol sp
; /* Parent symbol. */
4485 s
= ffesymbol_declare_sfdummy (t
); /* Sets maxentrynum to 0 for new obj;
4486 also sets sfa_dummy_parent to
4488 if (ffesymbol_state (s
) != FFESYMBOL_stateNONE
)
4490 ffesymbol_error (s
, t
); /* Dummy already in list. */
4494 sp
= ffesymbol_sfdummyparent (s
); /* Now flag dummy's parent as used
4496 sa
= ffesymbol_attrs (sp
);
4498 /* Figure out what kind of object we've got based on previous declarations
4499 of or references to the object. */
4501 if (!ffesymbol_is_specable (sp
)
4502 && ((ffesymbol_kind (sp
) != FFEINFO_kindENTITY
)
4503 || ((ffesymbol_where (sp
) != FFEINFO_whereLOCAL
)
4504 && (ffesymbol_where (sp
) != FFEINFO_whereCOMMON
)
4505 && (ffesymbol_where (sp
) != FFEINFO_whereDUMMY
)
4506 && (ffesymbol_where (sp
) != FFEINFO_whereNONE
))))
4507 na
= FFESYMBOL_attrsetNONE
; /* Can't be PARAMETER etc., must be a var. */
4508 else if (sa
& FFESYMBOL_attrsANY
)
4510 else if (!(sa
& ~(FFESYMBOL_attrsADJUSTS
4511 | FFESYMBOL_attrsCOMMON
4512 | FFESYMBOL_attrsDUMMY
4513 | FFESYMBOL_attrsEQUIV
4514 | FFESYMBOL_attrsINIT
4515 | FFESYMBOL_attrsNAMELIST
4516 | FFESYMBOL_attrsRESULT
4517 | FFESYMBOL_attrsSAVE
4518 | FFESYMBOL_attrsSFARG
4519 | FFESYMBOL_attrsTYPE
)))
4520 na
= sa
| FFESYMBOL_attrsSFARG
;
4522 na
= FFESYMBOL_attrsetNONE
;
4524 /* Now see what we've got for a new object: NONE means a new error cropped
4525 up; ANY means an old error to be ignored; otherwise, everything's ok,
4526 update the object (symbol) and continue on. */
4528 if (na
== FFESYMBOL_attrsetNONE
)
4530 ffesymbol_error (sp
, t
);
4531 ffesymbol_set_info (s
, ffeinfo_new_any ());
4533 else if (!(na
& FFESYMBOL_attrsANY
))
4535 ffesymbol_set_state (sp
, FFESYMBOL_stateSEEN
);
4536 ffesymbol_set_attrs (sp
, na
);
4537 if (!ffeimplic_establish_symbol (sp
)
4538 || ((ffesymbol_basictype (sp
) == FFEINFO_basictypeCHARACTER
)
4539 && (ffesymbol_size (sp
) == FFETARGET_charactersizeNONE
)))
4540 ffesymbol_error (sp
, t
);
4542 ffesymbol_set_info (s
,
4543 ffeinfo_new (ffesymbol_basictype (sp
),
4544 ffesymbol_kindtype (sp
),
4548 ffesymbol_size (sp
)));
4550 ffesymbol_signal_unreported (sp
);
4553 ffesymbol_set_state (s
, FFESYMBOL_stateUNDERSTOOD
);
4554 ffesymbol_set_maxentrynum (s
, ffestc_sfdummy_argno_
++);
4555 ffesymbol_signal_unreported (s
);
4556 e
= ffebld_new_symter (s
, FFEINTRIN_genNONE
, FFEINTRIN_specNONE
,
4558 ffebld_set_info (e
, ffeinfo_use (ffesymbol_info (s
)));
4559 ffebld_append_item (&ffestc_local_
.dummy
.list_bottom
, e
);
4562 /* ffestc_shriek_begin_program_ -- Implicit PROGRAM statement
4564 ffestc_shriek_begin_program_();
4566 Invoked only when a PROGRAM statement is NOT present at the beginning
4567 of a main program unit. */
4570 ffestc_shriek_begin_program_ ()
4575 ffestc_blocknum_
= 0;
4576 b
= ffestw_update (ffestw_push (NULL
));
4577 ffestw_set_top_do (b
, NULL
);
4578 ffestw_set_state (b
, FFESTV_statePROGRAM0
);
4579 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
4580 ffestw_set_shriek (b
, ffestc_shriek_end_program_
);
4581 ffestw_set_name (b
, NULL
);
4583 s
= ffesymbol_declare_programunit (NULL
,
4584 ffelex_token_where_line (ffesta_tokens
[0]),
4585 ffelex_token_where_column (ffesta_tokens
[0]));
4587 /* Special case: this is one symbol that won't go through
4588 ffestu_exec_transition_ when the first statement in a main program is
4589 executable, because the transition happens in ffest before ffestc is
4590 reached and triggers the implicit generation of a main program. So we
4591 do the exec transition for the implicit main program right here, just
4592 for cleanliness' sake (at the very least). */
4594 ffesymbol_set_info (s
,
4595 ffeinfo_new (FFEINFO_basictypeNONE
,
4596 FFEINFO_kindtypeNONE
,
4598 FFEINFO_kindPROGRAM
,
4600 FFETARGET_charactersizeNONE
));
4601 ffesymbol_set_state (s
, FFESYMBOL_stateUNDERSTOOD
);
4603 ffesymbol_signal_unreported (s
);
4605 ffestd_R1102 (s
, NULL
);
4608 /* ffestc_shriek_begin_uses_ -- Start a bunch of USE statements
4610 ffestc_shriek_begin_uses_();
4612 Invoked before handling the first USE statement in a block of one or
4613 more USE statements. _end_uses_(bool ok) is invoked before handling
4614 the first statement after the block (there are no BEGIN USE and END USE
4615 statements, but the semantics of USE statements effectively requires
4616 handling them as a single block rather than one statement at a time). */
4620 ffestc_shriek_begin_uses_ ()
4624 b
= ffestw_update (ffestw_push (NULL
));
4625 ffestw_set_top_do (b
, NULL
);
4626 ffestw_set_state (b
, FFESTV_stateUSE
);
4627 ffestw_set_blocknum (b
, 0);
4628 ffestw_set_shriek (b
, ffestc_shriek_end_uses_
);
4630 ffestd_begin_uses ();
4634 /* ffestc_shriek_blockdata_ -- End a BLOCK DATA
4636 ffestc_shriek_blockdata_(TRUE); */
4639 ffestc_shriek_blockdata_ (bool ok
)
4641 if (!ffesta_seen_first_exec
)
4643 ffesta_seen_first_exec
= TRUE
;
4644 ffestd_exec_begin ();
4651 if (ffestw_name (ffestw_stack_top ()) != NULL
)
4652 ffelex_token_kill (ffestw_name (ffestw_stack_top ()));
4653 ffestw_kill (ffestw_pop ());
4659 /* ffestc_shriek_do_ -- End of statement following DO-term-stmt etc
4661 ffestc_shriek_do_(TRUE);
4663 Also invoked by _labeldef_branch_end_ (or, in cases
4664 of errors, other _labeldef_ functions) when the label definition is
4665 for a DO-target (LOOPEND) label, once per matching/outstanding DO
4666 block on the stack. These cases invoke this function with ok==TRUE, so
4667 only forced stack popping (via ffestc_eof()) invokes it with ok==FALSE. */
4670 ffestc_shriek_do_ (bool ok
)
4674 if (((l
= ffestw_label (ffestw_stack_top ())) != NULL
)
4675 && (ffewhere_line_is_unknown (ffelab_definition_line (l
))))
4676 { /* DO target is label that is still
4678 assert ((ffelab_type (l
) == FFELAB_typeLOOPEND
)
4679 || (ffelab_type (l
) == FFELAB_typeANY
));
4680 if (ffelab_type (l
) != FFELAB_typeANY
)
4682 ffelab_set_definition_line (l
,
4683 ffewhere_line_use (ffelab_doref_line (l
)));
4684 ffelab_set_definition_column (l
,
4685 ffewhere_column_use (ffelab_doref_column (l
)));
4686 ffestv_num_label_defines_
++;
4688 ffestd_labeldef_branch (l
);
4693 if (ffestw_name (ffestw_stack_top ()) != NULL
)
4694 ffelex_token_kill (ffestw_name (ffestw_stack_top ()));
4695 if (ffestw_do_iter_var_t (ffestw_stack_top ()) != NULL
)
4696 ffelex_token_kill (ffestw_do_iter_var_t (ffestw_stack_top ()));
4697 if (ffestw_do_iter_var (ffestw_stack_top ()) != NULL
)
4698 ffesymbol_set_is_doiter (ffestw_do_iter_var (ffestw_stack_top ()), FALSE
);
4699 ffestw_kill (ffestw_pop ());
4702 /* ffestc_shriek_end_program_ -- End a PROGRAM
4704 ffestc_shriek_end_program_(); */
4707 ffestc_shriek_end_program_ (bool ok
)
4709 if (!ffesta_seen_first_exec
)
4711 ffesta_seen_first_exec
= TRUE
;
4712 ffestd_exec_begin ();
4719 if (ffestw_name (ffestw_stack_top ()) != NULL
)
4720 ffelex_token_kill (ffestw_name (ffestw_stack_top ()));
4721 ffestw_kill (ffestw_pop ());
4727 /* ffestc_shriek_end_uses_ -- End a bunch of USE statements
4729 ffestc_shriek_end_uses_(TRUE);
4731 ok==TRUE means simply not popping due to ffestc_eof()
4732 being called, because there is no formal END USES statement in Fortran. */
4736 ffestc_shriek_end_uses_ (bool ok
)
4738 ffestd_end_uses (ok
);
4740 ffestw_kill (ffestw_pop ());
4744 /* ffestc_shriek_function_ -- End a FUNCTION
4746 ffestc_shriek_function_(TRUE); */
4749 ffestc_shriek_function_ (bool ok
)
4751 if (!ffesta_seen_first_exec
)
4753 ffesta_seen_first_exec
= TRUE
;
4754 ffestd_exec_begin ();
4761 ffelex_token_kill (ffestw_name (ffestw_stack_top ()));
4762 ffestw_kill (ffestw_pop ());
4763 ffesta_is_entry_valid
= FALSE
;
4765 switch (ffestw_state (ffestw_stack_top ()))
4767 case FFESTV_stateNIL
:
4777 case FFESTV_stateINTERFACE0
:
4784 /* ffestc_shriek_if_ -- End of statement following logical IF
4786 ffestc_shriek_if_(TRUE);
4788 Applies ONLY to logical IF, not to IF-THEN. For example, does not
4789 ffelex_token_kill the construct name for an IF-THEN block (the name
4790 field is invalid for logical IF). ok==TRUE iff statement following
4791 logical IF (substatement) is valid; else, statement is invalid or
4792 stack forcibly popped due to ffestc_eof(). */
4795 ffestc_shriek_if_ (bool ok
)
4797 ffestd_end_R807 (ok
);
4799 ffestw_kill (ffestw_pop ());
4800 ffestc_shriek_after1_
= NULL
;
4802 ffestc_try_shriek_do_ ();
4805 /* ffestc_shriek_ifthen_ -- End an IF-THEN
4807 ffestc_shriek_ifthen_(TRUE); */
4810 ffestc_shriek_ifthen_ (bool ok
)
4814 if (ffestw_name (ffestw_stack_top ()) != NULL
)
4815 ffelex_token_kill (ffestw_name (ffestw_stack_top ()));
4816 ffestw_kill (ffestw_pop ());
4818 ffestc_try_shriek_do_ ();
4821 /* ffestc_shriek_interface_ -- End an INTERFACE
4823 ffestc_shriek_interface_(TRUE); */
4827 ffestc_shriek_interface_ (bool ok
)
4831 ffestw_kill (ffestw_pop ());
4833 ffestc_try_shriek_do_ ();
4837 /* ffestc_shriek_map_ -- End a MAP
4839 ffestc_shriek_map_(TRUE); */
4843 ffestc_shriek_map_ (bool ok
)
4847 ffestw_kill (ffestw_pop ());
4849 ffestc_try_shriek_do_ ();
4853 /* ffestc_shriek_module_ -- End a MODULE
4855 ffestc_shriek_module_(TRUE); */
4859 ffestc_shriek_module_ (bool ok
)
4861 if (!ffesta_seen_first_exec
)
4863 ffesta_seen_first_exec
= TRUE
;
4864 ffestd_exec_begin ();
4871 ffelex_token_kill (ffestw_name (ffestw_stack_top ()));
4872 ffestw_kill (ffestw_pop ());
4879 /* ffestc_shriek_select_ -- End a SELECT
4881 ffestc_shriek_select_(TRUE); */
4884 ffestc_shriek_select_ (bool ok
)
4891 if (ffestw_name (ffestw_stack_top ()) != NULL
)
4892 ffelex_token_kill (ffestw_name (ffestw_stack_top ()));
4893 s
= ffestw_select (ffestw_stack_top ());
4894 ffelex_token_kill (s
->t
);
4895 for (c
= s
->first_rel
; c
!= (ffestwCase
) &s
->first_rel
; c
= c
->next_rel
)
4896 ffelex_token_kill (c
->t
);
4897 malloc_pool_kill (s
->pool
);
4899 ffestw_kill (ffestw_pop ());
4901 ffestc_try_shriek_do_ ();
4904 /* ffestc_shriek_structure_ -- End a STRUCTURE
4906 ffestc_shriek_structure_(TRUE); */
4910 ffestc_shriek_structure_ (bool ok
)
4914 ffestw_kill (ffestw_pop ());
4916 ffestc_try_shriek_do_ ();
4920 /* ffestc_shriek_subroutine_ -- End a SUBROUTINE
4922 ffestc_shriek_subroutine_(TRUE); */
4925 ffestc_shriek_subroutine_ (bool ok
)
4927 if (!ffesta_seen_first_exec
)
4929 ffesta_seen_first_exec
= TRUE
;
4930 ffestd_exec_begin ();
4937 ffelex_token_kill (ffestw_name (ffestw_stack_top ()));
4938 ffestw_kill (ffestw_pop ());
4939 ffesta_is_entry_valid
= FALSE
;
4941 switch (ffestw_state (ffestw_stack_top ()))
4943 case FFESTV_stateNIL
:
4953 case FFESTV_stateINTERFACE0
:
4960 /* ffestc_shriek_type_ -- End a TYPE
4962 ffestc_shriek_type_(TRUE); */
4966 ffestc_shriek_type_ (bool ok
)
4972 ffelex_token_kill (ffestw_name (ffestw_stack_top ()));
4973 ffestw_kill (ffestw_pop ());
4975 ffestc_try_shriek_do_ ();
4979 /* ffestc_shriek_union_ -- End a UNION
4981 ffestc_shriek_union_(TRUE); */
4985 ffestc_shriek_union_ (bool ok
)
4989 ffestw_kill (ffestw_pop ());
4991 ffestc_try_shriek_do_ ();
4995 /* ffestc_shriek_where_ -- Implicit END WHERE statement
4997 ffestc_shriek_where_(TRUE);
4999 Implement the end of the current WHERE "block". ok==TRUE iff statement
5000 following WHERE (substatement) is valid; else, statement is invalid
5001 or stack forcibly popped due to ffestc_eof(). */
5005 ffestc_shriek_where_ (bool ok
)
5009 ffestw_kill (ffestw_pop ());
5010 ffestc_shriek_after1_
= NULL
;
5011 if (ffestw_state (ffestw_stack_top ()) == FFESTV_stateIF
)
5012 ffestc_shriek_if_ (TRUE
); /* "IF (x) WHERE (y) stmt" is only valid
5015 ffestc_try_shriek_do_ ();
5019 /* ffestc_shriek_wherethen_ -- End a WHERE(-THEN)
5021 ffestc_shriek_wherethen_(TRUE); */
5025 ffestc_shriek_wherethen_ (bool ok
)
5027 ffestd_end_R740 (ok
);
5029 ffestw_kill (ffestw_pop ());
5031 ffestc_try_shriek_do_ ();
5035 /* ffestc_subr_binsrch_ -- Binary search of char const in list of strings
5037 i = ffestc_subr_binsrch_(search_list,search_list_size,&spec,"etc");
5039 search_list contains search_list_size char *'s, spec is checked to see
5040 if it is a char constant and, if so, is binary-searched against the list.
5041 0 is returned if not found, else the "classic" index (beginning with 1)
5042 is returned. Before returning 0 where the search was performed but
5043 fruitless, if "etc" is a non-NULL char *, an error message is displayed
5044 using "etc" as the pick-one-of-these string. */
5047 ffestc_subr_binsrch_ (const char **list
, int size
, ffestpFile
*spec
, const char *whine
)
5058 return 0; /* Nobody should pass size == 0, but for
5062 highest_tested
= size
;
5063 halfway
= size
>> 1;
5067 c
= ffestc_subr_speccmp_ (*list
, spec
, &str
, &len
);
5072 next
: /* :::::::::::::::::::: */
5076 offset
= (halfway
- lowest_tested
) >> 1;
5078 goto nope
; /* :::::::::::::::::::: */
5079 highest_tested
= halfway
;
5082 c
= ffesrc_strcmp_1ns2i (ffe_case_match (), str
, len
, *list
);
5083 goto next
; /* :::::::::::::::::::: */
5089 offset
= (highest_tested
- halfway
) >> 1;
5091 goto nope
; /* :::::::::::::::::::: */
5092 lowest_tested
= halfway
;
5095 c
= ffesrc_strcmp_1ns2i (ffe_case_match (), str
, len
, *list
);
5096 goto next
; /* :::::::::::::::::::: */
5099 assert ("unexpected return from ffesrc_strcmp_1ns2i" == NULL
);
5103 nope
: /* :::::::::::::::::::: */
5104 ffebad_start (FFEBAD_SPEC_VALUE
);
5105 ffebad_here (0, ffelex_token_where_line (spec
->value
),
5106 ffelex_token_where_column (spec
->value
));
5107 ffebad_string (whine
);
5112 /* ffestc_subr_format_ -- Return summary of format specifier
5114 ffestc_subr_format_(&specifier); */
5117 ffestc_subr_format_ (ffestpFile
*spec
)
5119 if (!spec
->kw_or_val_present
)
5120 return FFESTV_formatNONE
;
5121 assert (spec
->value_present
);
5122 if (spec
->value_is_label
)
5123 return FFESTV_formatLABEL
; /* Ok if not a label. */
5125 assert (spec
->value
!= NULL
);
5126 if (ffebld_op (spec
->u
.expr
) == FFEBLD_opSTAR
)
5127 return FFESTV_formatASTERISK
;
5129 if (ffeinfo_kind (ffebld_info (spec
->u
.expr
)) == FFEINFO_kindNAMELIST
)
5130 return FFESTV_formatNAMELIST
;
5132 if (ffeinfo_rank (ffebld_info (spec
->u
.expr
)) != 0)
5133 return FFESTV_formatCHAREXPR
; /* F77 C5. */
5135 switch (ffeinfo_basictype (ffebld_info (spec
->u
.expr
)))
5137 case FFEINFO_basictypeINTEGER
:
5138 return FFESTV_formatINTEXPR
;
5140 case FFEINFO_basictypeCHARACTER
:
5141 return FFESTV_formatCHAREXPR
;
5143 case FFEINFO_basictypeANY
:
5144 return FFESTV_formatASTERISK
;
5147 assert ("bad basictype" == NULL
);
5148 return FFESTV_formatINTEXPR
;
5152 /* ffestc_subr_is_branch_ -- Handle specifier as branch target label
5154 ffestc_subr_is_branch_(&specifier); */
5157 ffestc_subr_is_branch_ (ffestpFile
*spec
)
5159 if (!spec
->kw_or_val_present
)
5161 assert (spec
->value_present
);
5162 assert (spec
->value_is_label
);
5163 spec
->value_is_label
++; /* For checking purposes only; 1=>2. */
5164 return ffestc_labelref_is_branch_ (spec
->value
, &spec
->u
.label
);
5167 /* ffestc_subr_is_format_ -- Handle specifier as format target label
5169 ffestc_subr_is_format_(&specifier); */
5172 ffestc_subr_is_format_ (ffestpFile
*spec
)
5174 if (!spec
->kw_or_val_present
)
5176 assert (spec
->value_present
);
5177 if (!spec
->value_is_label
)
5178 return TRUE
; /* Ok if not a label. */
5180 spec
->value_is_label
++; /* For checking purposes only; 1=>2. */
5181 return ffestc_labelref_is_format_ (spec
->value
, &spec
->u
.label
);
5184 /* ffestc_subr_is_present_ -- Ensure specifier is present, else error
5186 ffestc_subr_is_present_("SPECIFIER",&specifier); */
5189 ffestc_subr_is_present_ (const char *name
, ffestpFile
*spec
)
5191 if (spec
->kw_or_val_present
)
5193 assert (spec
->value_present
);
5197 ffebad_start (FFEBAD_MISSING_SPECIFIER
);
5198 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
5199 ffelex_token_where_column (ffesta_tokens
[0]));
5200 ffebad_string (name
);
5205 /* ffestc_subr_speccmp_ -- Compare string to constant expression, if present
5207 if (ffestc_subr_speccmp_("Constant",&specifier,NULL,NULL) == 0)
5208 // specifier value is present and is a char constant "CONSTANT"
5210 Like strcmp, except the return values are defined as: -1 returned in place
5211 of strcmp's generic negative value, 1 in place of it's generic positive
5212 value, and 2 when there is no character constant string to compare. Also,
5213 a case-insensitive comparison is performed, where string is assumed to
5214 already be in InitialCaps form.
5216 If a non-NULL pointer is provided as the char **target, then *target is
5217 written with NULL if 2 is returned, a pointer to the constant string
5218 value of the specifier otherwise. Similarly, length is written with
5219 0 if 2 is returned, the length of the constant string value otherwise. */
5222 ffestc_subr_speccmp_ (const char *string
, ffestpFile
*spec
, const char **target
,
5228 if (!spec
->kw_or_val_present
|| !spec
->value_present
5229 || (spec
->u
.expr
== NULL
)
5230 || (ffebld_op (spec
->u
.expr
) != FFEBLD_opCONTER
))
5239 if (ffebld_constant_type (c
= ffebld_conter (spec
->u
.expr
))
5240 != FFEBLD_constCHARACTERDEFAULT
)
5250 *target
= ffebld_constant_characterdefault (c
).text
;
5252 *length
= ffebld_constant_characterdefault (c
).length
;
5254 i
= ffesrc_strcmp_1ns2i (ffe_case_match (),
5255 ffebld_constant_characterdefault (c
).text
,
5256 ffebld_constant_characterdefault (c
).length
,
5261 return -1; /* Yes indeed, we reverse the strings to
5266 /* ffestc_subr_unit_ -- Return summary of unit specifier
5268 ffestc_subr_unit_(&specifier); */
5271 ffestc_subr_unit_ (ffestpFile
*spec
)
5273 if (!spec
->kw_or_val_present
)
5274 return FFESTV_unitNONE
;
5275 assert (spec
->value_present
);
5276 assert (spec
->value
!= NULL
);
5278 if (ffebld_op (spec
->u
.expr
) == FFEBLD_opSTAR
)
5279 return FFESTV_unitASTERISK
;
5281 switch (ffeinfo_basictype (ffebld_info (spec
->u
.expr
)))
5283 case FFEINFO_basictypeINTEGER
:
5284 return FFESTV_unitINTEXPR
;
5286 case FFEINFO_basictypeCHARACTER
:
5287 return FFESTV_unitCHAREXPR
;
5289 case FFEINFO_basictypeANY
:
5290 return FFESTV_unitASTERISK
;
5293 assert ("bad basictype" == NULL
);
5294 return FFESTV_unitINTEXPR
;
5298 /* Call this function whenever it's possible that one or more top
5299 stack items are label-targeting DO blocks that have had their
5300 labels defined, but at a time when they weren't at the top of the
5301 stack. This prevents uninformative diagnostics for programs
5302 like "DO 10", "IF (...) THEN", "10 ELSE", "END IF", "END". */
5305 ffestc_try_shriek_do_ ()
5310 while ((ffestw_state (ffestw_stack_top ()) == FFESTV_stateDO
)
5311 && ((lab
= (ffestw_label (ffestw_stack_top ()))) != NULL
)
5312 && (((ty
= (ffelab_type (lab
)))
5314 || (ty
== FFELAB_typeUSELESS
)
5315 || (ty
== FFELAB_typeFORMAT
)
5316 || (ty
== FFELAB_typeNOTLOOP
)
5317 || (ty
== FFELAB_typeENDIF
)))
5318 ffestc_shriek_do_ (FALSE
);
5321 /* ffestc_decl_start -- R426 or R501
5323 ffestc_decl_start(...);
5325 Verify that R426 component-def-stmt or R501 type-declaration-stmt are
5326 valid here, figure out which one, and implement. */
5329 ffestc_decl_start (ffestpType type
, ffelexToken typet
, ffebld kind
,
5330 ffelexToken kindt
, ffebld len
, ffelexToken lent
)
5332 switch (ffestw_state (ffestw_stack_top ()))
5334 case FFESTV_stateNIL
:
5335 case FFESTV_statePROGRAM0
:
5336 case FFESTV_stateSUBROUTINE0
:
5337 case FFESTV_stateFUNCTION0
:
5338 case FFESTV_stateMODULE0
:
5339 case FFESTV_stateBLOCKDATA0
:
5340 case FFESTV_statePROGRAM1
:
5341 case FFESTV_stateSUBROUTINE1
:
5342 case FFESTV_stateFUNCTION1
:
5343 case FFESTV_stateMODULE1
:
5344 case FFESTV_stateBLOCKDATA1
:
5345 case FFESTV_statePROGRAM2
:
5346 case FFESTV_stateSUBROUTINE2
:
5347 case FFESTV_stateFUNCTION2
:
5348 case FFESTV_stateMODULE2
:
5349 case FFESTV_stateBLOCKDATA2
:
5350 case FFESTV_statePROGRAM3
:
5351 case FFESTV_stateSUBROUTINE3
:
5352 case FFESTV_stateFUNCTION3
:
5353 case FFESTV_stateMODULE3
:
5354 case FFESTV_stateBLOCKDATA3
:
5355 case FFESTV_stateUSE
:
5356 ffestc_local_
.decl
.is_R426
= 2;
5359 case FFESTV_stateTYPE
:
5360 case FFESTV_stateSTRUCTURE
:
5361 case FFESTV_stateMAP
:
5362 ffestc_local_
.decl
.is_R426
= 1;
5366 ffestc_order_bad_ ();
5367 ffestc_labeldef_useless_ ();
5368 ffestc_local_
.decl
.is_R426
= 0;
5372 switch (ffestc_local_
.decl
.is_R426
)
5376 ffestc_R426_start (type
, typet
, kind
, kindt
, len
, lent
);
5381 ffestc_R501_start (type
, typet
, kind
, kindt
, len
, lent
);
5385 ffestc_labeldef_useless_ ();
5390 /* ffestc_decl_attrib -- R426 or R501 type attribute
5392 ffestc_decl_attrib(...);
5394 Verify that R426 component-def-stmt or R501 type-declaration-stmt attribute
5395 is valid here and implement. */
5398 ffestc_decl_attrib (ffestpAttrib attrib UNUSED
,
5399 ffelexToken attribt UNUSED
,
5400 ffestrOther intent_kw UNUSED
,
5401 ffesttDimList dims UNUSED
)
5404 switch (ffestc_local_
.decl
.is_R426
)
5407 ffestc_R426_attrib (attrib
, attribt
, intent_kw
, dims
);
5411 ffestc_R501_attrib (attrib
, attribt
, intent_kw
, dims
);
5418 ffebad_start (FFEBAD_F90
);
5419 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
5420 ffelex_token_where_column (ffesta_tokens
[0]));
5426 /* ffestc_decl_item -- R426 or R501
5428 ffestc_decl_item(...);
5430 Establish type for a particular object. */
5433 ffestc_decl_item (ffelexToken name
, ffebld kind
, ffelexToken kindt
,
5434 ffesttDimList dims
, ffebld len
, ffelexToken lent
, ffebld init
,
5435 ffelexToken initt
, bool clist
)
5437 switch (ffestc_local_
.decl
.is_R426
)
5441 ffestc_R426_item (name
, kind
, kindt
, dims
, len
, lent
, init
, initt
,
5447 ffestc_R501_item (name
, kind
, kindt
, dims
, len
, lent
, init
, initt
,
5456 /* ffestc_decl_itemstartvals -- R426 or R501 start list of values
5458 ffestc_decl_itemstartvals();
5460 Gonna specify values for the object now. */
5463 ffestc_decl_itemstartvals ()
5465 switch (ffestc_local_
.decl
.is_R426
)
5469 ffestc_R426_itemstartvals ();
5474 ffestc_R501_itemstartvals ();
5482 /* ffestc_decl_itemvalue -- R426 or R501 source value
5484 ffestc_decl_itemvalue(repeat,repeat_token,value,value_token);
5486 Make sure repeat and value are valid for the object being initialized. */
5489 ffestc_decl_itemvalue (ffebld repeat
, ffelexToken repeat_token
,
5490 ffebld value
, ffelexToken value_token
)
5492 switch (ffestc_local_
.decl
.is_R426
)
5496 ffestc_R426_itemvalue (repeat
, repeat_token
, value
, value_token
);
5501 ffestc_R501_itemvalue (repeat
, repeat_token
, value
, value_token
);
5509 /* ffestc_decl_itemendvals -- R426 or R501 end list of values
5511 ffelexToken t; // the SLASH token that ends the list.
5512 ffestc_decl_itemendvals(t);
5514 No more values, might specify more objects now. */
5517 ffestc_decl_itemendvals (ffelexToken t
)
5519 switch (ffestc_local_
.decl
.is_R426
)
5523 ffestc_R426_itemendvals (t
);
5528 ffestc_R501_itemendvals (t
);
5536 /* ffestc_decl_finish -- R426 or R501
5538 ffestc_decl_finish();
5540 Just wrap up any local activities. */
5543 ffestc_decl_finish ()
5545 switch (ffestc_local_
.decl
.is_R426
)
5549 ffestc_R426_finish ();
5554 ffestc_R501_finish ();
5562 /* ffestc_elsewhere -- Generic ELSE WHERE statement
5566 Decide whether ELSEWHERE or ELSE w/if-construct-name=="WHERE" is meant. */
5569 ffestc_elsewhere (ffelexToken where
)
5571 switch (ffestw_state (ffestw_stack_top ()))
5573 case FFESTV_stateIFTHEN
:
5574 ffestc_R805 (where
);
5585 /* ffestc_end -- Generic END statement
5589 Make sure a generic END is valid in the current context, and implement
5597 b
= ffestw_stack_top ();
5601 switch (ffestw_state (b
))
5603 case FFESTV_stateBLOCKDATA0
:
5604 case FFESTV_stateBLOCKDATA1
:
5605 case FFESTV_stateBLOCKDATA2
:
5606 case FFESTV_stateBLOCKDATA3
:
5607 case FFESTV_stateBLOCKDATA4
:
5608 case FFESTV_stateBLOCKDATA5
:
5609 ffestc_R1112 (NULL
);
5612 case FFESTV_stateFUNCTION0
:
5613 case FFESTV_stateFUNCTION1
:
5614 case FFESTV_stateFUNCTION2
:
5615 case FFESTV_stateFUNCTION3
:
5616 case FFESTV_stateFUNCTION4
:
5617 case FFESTV_stateFUNCTION5
:
5618 if ((ffestw_state (ffestw_previous (b
)) != FFESTV_stateNIL
)
5619 && (ffestw_state (ffestw_previous (b
)) != FFESTV_stateINTERFACE0
))
5621 ffebad_start (FFEBAD_END_WO
);
5622 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
5623 ffelex_token_where_column (ffesta_tokens
[0]));
5624 ffebad_here (1, ffestw_line (ffestw_previous (b
)), ffestw_col (ffestw_previous (b
)));
5625 ffebad_string ("FUNCTION");
5628 ffestc_R1221 (NULL
);
5631 case FFESTV_stateMODULE0
:
5632 case FFESTV_stateMODULE1
:
5633 case FFESTV_stateMODULE2
:
5634 case FFESTV_stateMODULE3
:
5635 case FFESTV_stateMODULE4
:
5636 case FFESTV_stateMODULE5
:
5638 ffestc_R1106 (NULL
);
5642 case FFESTV_stateSUBROUTINE0
:
5643 case FFESTV_stateSUBROUTINE1
:
5644 case FFESTV_stateSUBROUTINE2
:
5645 case FFESTV_stateSUBROUTINE3
:
5646 case FFESTV_stateSUBROUTINE4
:
5647 case FFESTV_stateSUBROUTINE5
:
5648 if ((ffestw_state (ffestw_previous (b
)) != FFESTV_stateNIL
)
5649 && (ffestw_state (ffestw_previous (b
)) != FFESTV_stateINTERFACE0
))
5651 ffebad_start (FFEBAD_END_WO
);
5652 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
5653 ffelex_token_where_column (ffesta_tokens
[0]));
5654 ffebad_here (1, ffestw_line (ffestw_previous (b
)), ffestw_col (ffestw_previous (b
)));
5655 ffebad_string ("SUBROUTINE");
5658 ffestc_R1225 (NULL
);
5661 case FFESTV_stateUSE
:
5662 b
= ffestw_previous (ffestw_stack_top ());
5663 goto recurse
; /* :::::::::::::::::::: */
5666 ffestc_R1103 (NULL
);
5671 /* ffestc_eof -- Generic EOF
5675 Make sure we're at state NIL, or issue an error message and use each
5676 block's shriek function to clean up to state NIL. */
5681 if (ffestw_state (ffestw_stack_top ()) != FFESTV_stateNIL
)
5683 ffebad_start (FFEBAD_EOF_BEFORE_BLOCK_END
);
5684 ffebad_here (0, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
5687 (*ffestw_shriek (ffestw_stack_top ()))(FALSE
);
5688 while (ffestw_state (ffestw_stack_top ()) != FFESTV_stateNIL
);
5692 /* ffestc_exec_transition -- Check if ok and move stmt state to executable
5694 if (ffestc_exec_transition())
5695 // Transition successful (kind of like a CONTINUE stmt was seen).
5697 If the current statement state is a non-nested specification state in
5698 which, say, a CONTINUE statement would be valid, then enter the state
5699 we'd be in after seeing CONTINUE (without, of course, generating any
5700 CONTINUE code), call ffestd_exec_begin, and return TRUE. Otherwise
5703 This function cannot be invoked once the first executable statement
5704 is seen. This function may choose to always return TRUE by shrieking
5705 away any interceding state stack entries to reach the base level of
5706 specification state, but right now it doesn't, and it is (or should
5707 be) purely an issue of how one wishes errors to be handled (for example,
5708 an unrecognized statement in the middle of a STRUCTURE construct: after
5709 the error message, should subsequent statements still be interpreted as
5710 being within the construct, or should the construct be terminated upon
5711 seeing the unrecognized statement? we do the former at the moment). */
5714 ffestc_exec_transition ()
5720 switch (ffestw_state (ffestw_stack_top ()))
5722 case FFESTV_stateNIL
:
5723 ffestc_shriek_begin_program_ ();
5724 goto recurse
; /* :::::::::::::::::::: */
5726 case FFESTV_statePROGRAM0
:
5727 case FFESTV_stateSUBROUTINE0
:
5728 case FFESTV_stateFUNCTION0
:
5729 case FFESTV_stateBLOCKDATA0
:
5730 ffestw_state (ffestw_stack_top ()) += 4; /* To state UNIT4. */
5734 case FFESTV_statePROGRAM1
:
5735 case FFESTV_stateSUBROUTINE1
:
5736 case FFESTV_stateFUNCTION1
:
5737 case FFESTV_stateBLOCKDATA1
:
5738 ffestw_state (ffestw_stack_top ()) += 3; /* To state UNIT4. */
5742 case FFESTV_statePROGRAM2
:
5743 case FFESTV_stateSUBROUTINE2
:
5744 case FFESTV_stateFUNCTION2
:
5745 case FFESTV_stateBLOCKDATA2
:
5746 ffestw_state (ffestw_stack_top ()) += 2; /* To state UNIT4. */
5750 case FFESTV_statePROGRAM3
:
5751 case FFESTV_stateSUBROUTINE3
:
5752 case FFESTV_stateFUNCTION3
:
5753 case FFESTV_stateBLOCKDATA3
:
5754 ffestw_state (ffestw_stack_top ()) += 1; /* To state UNIT4. */
5758 case FFESTV_stateUSE
:
5760 ffestc_shriek_end_uses_ (TRUE
);
5762 goto recurse
; /* :::::::::::::::::::: */
5769 ffestw_update (NULL
); /* Update state line/col info. */
5771 ffesta_seen_first_exec
= TRUE
;
5772 ffestd_exec_begin ();
5777 /* ffestc_ffebad_here_doiter -- Calls ffebad_here with ptr to DO iter var
5780 // call ffebad_start first, of course.
5781 ffestc_ffebad_here_doiter(0,s);
5782 // call ffebad_finish afterwards, naturally.
5784 Searches the stack of blocks backwards for a DO loop that has s
5785 as its iteration variable, then calls ffebad_here with pointers to
5786 that particular reference to the variable. Crashes if the DO loop
5790 ffestc_ffebad_here_doiter (ffebadIndex i
, ffesymbol s
)
5794 for (block
= ffestw_top_do (ffestw_stack_top ());
5795 (block
!= NULL
) && (ffestw_blocknum (block
) != 0);
5796 block
= ffestw_top_do (ffestw_previous (block
)))
5798 if (ffestw_do_iter_var (block
) == s
)
5800 ffebad_here (i
, ffelex_token_where_line (ffestw_do_iter_var_t (block
)),
5801 ffelex_token_where_column (ffestw_do_iter_var_t (block
)));
5805 assert ("no do block found" == NULL
);
5808 /* ffestc_is_decl_not_R1219 -- Context information for FFESTB
5810 if (ffestc_is_decl_not_R1219()) ...
5812 When a statement with the form "type[RECURSIVE]FUNCTIONname(name-list)"
5813 is seen, call this function. It returns TRUE if the statement's context
5814 is such that it is a declaration of an object named
5815 "[RECURSIVE]FUNCTIONname" with an array-decl spec of "name-list", FALSE
5816 if the statement's context is such that it begins the definition of a
5817 function named "name" havin the dummy argument list "name-list" (this
5818 is the R1219 function-stmt case). */
5821 ffestc_is_decl_not_R1219 ()
5823 switch (ffestw_state (ffestw_stack_top ()))
5825 case FFESTV_stateNIL
:
5826 case FFESTV_statePROGRAM5
:
5827 case FFESTV_stateSUBROUTINE5
:
5828 case FFESTV_stateFUNCTION5
:
5829 case FFESTV_stateMODULE5
:
5830 case FFESTV_stateINTERFACE0
:
5838 /* ffestc_is_entry_in_subr -- Context information for FFESTB
5840 if (ffestc_is_entry_in_subr()) ...
5842 When a statement with the form "ENTRY name(name-list)"
5843 is seen, call this function. It returns TRUE if the statement's context
5844 is such that it may have "*", meaning alternate return, in place of
5845 names in the name list (i.e. if the ENTRY is in a subroutine context).
5846 It also returns TRUE if the ENTRY is not in a function context (invalid
5847 but prevents extra complaints about "*", if present). It returns FALSE
5848 if the ENTRY is in a function context. */
5851 ffestc_is_entry_in_subr ()
5855 s
= ffestw_state (ffestw_stack_top ());
5861 case FFESTV_stateFUNCTION0
:
5862 case FFESTV_stateFUNCTION1
:
5863 case FFESTV_stateFUNCTION2
:
5864 case FFESTV_stateFUNCTION3
:
5865 case FFESTV_stateFUNCTION4
:
5868 case FFESTV_stateUSE
:
5869 s
= ffestw_state (ffestw_previous (ffestw_stack_top ()));
5870 goto recurse
; /* :::::::::::::::::::: */
5877 /* ffestc_is_let_not_V027 -- Context information for FFESTB
5879 if (ffestc_is_let_not_V027()) ...
5881 When a statement with the form "PARAMETERname=expr"
5882 is seen, call this function. It returns TRUE if the statement's context
5883 is such that it is an assignment to an object named "PARAMETERname", FALSE
5884 if the statement's context is such that it is a V-extension PARAMETER
5885 statement that is like a PARAMETER(name=expr) statement except that the
5886 type of name is determined by the type of expr, not the implicit or
5887 explicit typing of name. */
5890 ffestc_is_let_not_V027 ()
5892 switch (ffestw_state (ffestw_stack_top ()))
5894 case FFESTV_statePROGRAM4
:
5895 case FFESTV_stateSUBROUTINE4
:
5896 case FFESTV_stateFUNCTION4
:
5897 case FFESTV_stateWHERETHEN
:
5898 case FFESTV_stateIFTHEN
:
5899 case FFESTV_stateDO
:
5900 case FFESTV_stateSELECT0
:
5901 case FFESTV_stateSELECT1
:
5902 case FFESTV_stateWHERE
:
5903 case FFESTV_stateIF
:
5911 /* ffestc_module -- MODULE or MODULE PROCEDURE statement
5913 ffestc_module(module_name_token,procedure_name_token);
5915 Decide which is intended, and implement it by calling _R1105_ or
5920 ffestc_module (ffelexToken module
, ffelexToken procedure
)
5922 switch (ffestw_state (ffestw_stack_top ()))
5924 case FFESTV_stateINTERFACE0
:
5925 case FFESTV_stateINTERFACE1
:
5926 ffestc_R1205_start ();
5927 ffestc_R1205_item (procedure
);
5928 ffestc_R1205_finish ();
5932 ffestc_R1105 (module
);
5938 /* ffestc_private -- Generic PRIVATE statement
5942 This is either a PRIVATE within R422 derived-type statement or an
5943 R521 PRIVATE statement. Figure it out based on context and implement
5944 it, or produce an error. */
5950 switch (ffestw_state (ffestw_stack_top ()))
5952 case FFESTV_stateTYPE
:
5963 /* ffestc_terminate_4 -- Terminate ffestc after scoping unit
5965 ffestc_terminate_4();
5967 For SUBROUTINEs/FUNCTIONs within INTERFACE/END INTERFACE, derived-TYPE-
5968 defs, and statement function defs. */
5971 ffestc_terminate_4 ()
5973 ffestc_entry_num_
= ffestc_saved_entry_num_
;
5976 /* ffestc_R423A -- PRIVATE statement (in R422 derived-type statement)
5984 ffestc_check_simple_ ();
5985 if (ffestc_order_type_ () != FFESTC_orderOK_
)
5987 ffestc_labeldef_useless_ ();
5989 if (ffestw_substate (ffestw_stack_top ()) != 0)
5991 ffebad_start (FFEBAD_DERIVTYP_ACCESS_FIRST
);
5992 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
5993 ffelex_token_where_column (ffesta_tokens
[0]));
5994 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
5999 if (ffestw_state (ffestw_previous (ffestw_stack_top ())) != FFESTV_stateMODULE3
)
6001 ffebad_start (FFEBAD_DERIVTYP_ACCESS
);
6002 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
6003 ffelex_token_where_column (ffesta_tokens
[0]));
6008 ffestw_set_substate (ffestw_stack_top (), 1); /* Seen
6009 private-sequence-stmt. */
6014 /* ffestc_R423B -- SEQUENCE statement (in R422 derived-type-stmt)
6021 ffestc_check_simple_ ();
6022 if (ffestc_order_type_ () != FFESTC_orderOK_
)
6024 ffestc_labeldef_useless_ ();
6026 if (ffestw_substate (ffestw_stack_top ()) != 0)
6028 ffebad_start (FFEBAD_DERIVTYP_ACCESS_FIRST
);
6029 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
6030 ffelex_token_where_column (ffesta_tokens
[0]));
6031 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
6036 ffestw_set_substate (ffestw_stack_top (), 1); /* Seen
6037 private-sequence-stmt. */
6042 /* ffestc_R424 -- derived-TYPE-def statement
6044 ffestc_R424(access_token,access_kw,name_token);
6046 Handle a derived-type definition. */
6049 ffestc_R424 (ffelexToken access
, ffestrOther access_kw
, ffelexToken name
)
6053 assert (name
!= NULL
);
6055 ffestc_check_simple_ ();
6056 if (ffestc_order_derivedtype_ () != FFESTC_orderOK_
)
6058 ffestc_labeldef_useless_ ();
6060 if ((access
!= NULL
)
6061 && (ffestw_state (ffestw_stack_top ()) != FFESTV_stateMODULE3
))
6063 ffebad_start (FFEBAD_DERIVTYP_ACCESS
);
6064 ffebad_here (0, ffelex_token_where_line (access
),
6065 ffelex_token_where_column (access
));
6070 b
= ffestw_update (ffestw_push (NULL
));
6071 ffestw_set_top_do (b
, NULL
);
6072 ffestw_set_state (b
, FFESTV_stateTYPE
);
6073 ffestw_set_blocknum (b
, 0);
6074 ffestw_set_shriek (b
, ffestc_shriek_type_
);
6075 ffestw_set_name (b
, ffelex_token_use (name
));
6076 ffestw_set_substate (b
, 0); /* Awaiting private-sequence-stmt and one
6077 component-def-stmt. */
6079 ffestd_R424 (access
, access_kw
, name
);
6084 /* ffestc_R425 -- END TYPE statement
6086 ffestc_R425(name_token);
6088 Make sure ffestc_kind_ identifies a TYPE definition. If not
6089 NULL, make sure name_token gives the correct name. Implement the end
6090 of the type definition. */
6093 ffestc_R425 (ffelexToken name
)
6095 ffestc_check_simple_ ();
6096 if (ffestc_order_type_ () != FFESTC_orderOK_
)
6098 ffestc_labeldef_useless_ ();
6100 if (ffestw_substate (ffestw_stack_top ()) != 2)
6102 ffebad_start (FFEBAD_DERIVTYP_NO_COMPONENTS
);
6103 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
6104 ffelex_token_where_column (ffesta_tokens
[0]));
6105 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
6110 && (ffelex_token_strcmp (name
, ffestw_name (ffestw_stack_top ())) != 0))
6112 ffebad_start (FFEBAD_TYPE_WRONG_NAME
);
6113 ffebad_here (0, ffelex_token_where_line (name
),
6114 ffelex_token_where_column (name
));
6115 ffebad_here (1, ffelex_token_where_line (ffestw_name (ffestw_stack_top ())),
6116 ffelex_token_where_column (ffestw_name (ffestw_stack_top ())));
6120 ffestc_shriek_type_ (TRUE
);
6123 /* ffestc_R426_start -- component-declaration-stmt
6125 ffestc_R426_start(...);
6127 Verify that R426 component-declaration-stmt is
6128 valid here and implement. */
6131 ffestc_R426_start (ffestpType type
, ffelexToken typet
, ffebld kind
,
6132 ffelexToken kindt
, ffebld len
, ffelexToken lent
)
6134 ffestc_check_start_ ();
6135 if (ffestc_order_component_ () != FFESTC_orderOK_
)
6137 ffestc_local_
.decl
.is_R426
= 0;
6140 ffestc_labeldef_useless_ ();
6142 switch (ffestw_state (ffestw_stack_top ()))
6144 case FFESTV_stateSTRUCTURE
:
6145 case FFESTV_stateMAP
:
6146 ffestw_set_substate (ffestw_stack_top (), 1); /* Seen at least one
6150 case FFESTV_stateTYPE
:
6151 ffestw_set_substate (ffestw_stack_top (), 2);
6155 assert ("Component parent state invalid" == NULL
);
6160 /* ffestc_R426_attrib -- type attribute
6162 ffestc_R426_attrib(...);
6164 Verify that R426 component-declaration-stmt attribute
6165 is valid here and implement. */
6168 ffestc_R426_attrib (ffestpAttrib attrib
, ffelexToken attribt
,
6169 ffestrOther intent_kw
, ffesttDimList dims
)
6171 ffestc_check_attrib_ ();
6174 /* ffestc_R426_item -- declared object
6176 ffestc_R426_item(...);
6178 Establish type for a particular object. */
6181 ffestc_R426_item (ffelexToken name
, ffebld kind
, ffelexToken kindt
,
6182 ffesttDimList dims
, ffebld len
, ffelexToken lent
, ffebld init
,
6183 ffelexToken initt
, bool clist
)
6185 ffestc_check_item_ ();
6186 assert (name
!= NULL
);
6187 assert (ffelex_token_type (name
) == FFELEX_typeNAME
); /* Not NAMES. */
6188 assert (kind
== NULL
); /* No way an expression should get here. */
6190 if ((dims
!= NULL
) || (init
!= NULL
) || clist
)
6191 ffesta_set_outpooldisp (FFESTA_pooldispPRESERVE
);
6194 /* ffestc_R426_itemstartvals -- Start list of values
6196 ffestc_R426_itemstartvals();
6198 Gonna specify values for the object now. */
6201 ffestc_R426_itemstartvals ()
6203 ffestc_check_item_startvals_ ();
6206 /* ffestc_R426_itemvalue -- Source value
6208 ffestc_R426_itemvalue(repeat,repeat_token,value,value_token);
6210 Make sure repeat and value are valid for the object being initialized. */
6213 ffestc_R426_itemvalue (ffebld repeat
, ffelexToken repeat_token
,
6214 ffebld value
, ffelexToken value_token
)
6216 ffestc_check_item_value_ ();
6219 /* ffestc_R426_itemendvals -- End list of values
6221 ffelexToken t; // the SLASH token that ends the list.
6222 ffestc_R426_itemendvals(t);
6224 No more values, might specify more objects now. */
6227 ffestc_R426_itemendvals (ffelexToken t
)
6229 ffestc_check_item_endvals_ ();
6232 /* ffestc_R426_finish -- Done
6234 ffestc_R426_finish();
6236 Just wrap up any local activities. */
6239 ffestc_R426_finish ()
6241 ffestc_check_finish_ ();
6245 /* ffestc_R501_start -- type-declaration-stmt
6247 ffestc_R501_start(...);
6249 Verify that R501 type-declaration-stmt is
6250 valid here and implement. */
6253 ffestc_R501_start (ffestpType type
, ffelexToken typet
, ffebld kind
,
6254 ffelexToken kindt
, ffebld len
, ffelexToken lent
)
6256 ffestc_check_start_ ();
6257 if (ffestc_order_typedecl_ () != FFESTC_orderOK_
)
6259 ffestc_local_
.decl
.is_R426
= 0;
6262 ffestc_labeldef_useless_ ();
6264 ffestc_establish_declstmt_ (type
, typet
, kind
, kindt
, len
, lent
);
6267 /* ffestc_R501_attrib -- type attribute
6269 ffestc_R501_attrib(...);
6271 Verify that R501 type-declaration-stmt attribute
6272 is valid here and implement. */
6275 ffestc_R501_attrib (ffestpAttrib attrib
, ffelexToken attribt
,
6276 ffestrOther intent_kw UNUSED
,
6277 ffesttDimList dims UNUSED
)
6279 ffestc_check_attrib_ ();
6284 case FFESTP_attribALLOCATABLE
:
6288 case FFESTP_attribDIMENSION
:
6289 ffesta_set_outpooldisp (FFESTA_pooldispPRESERVE
);
6292 case FFESTP_attribEXTERNAL
:
6296 case FFESTP_attribINTENT
:
6300 case FFESTP_attribINTRINSIC
:
6304 case FFESTP_attribOPTIONAL
:
6308 case FFESTP_attribPARAMETER
:
6312 case FFESTP_attribPOINTER
:
6317 case FFESTP_attribPRIVATE
:
6320 case FFESTP_attribPUBLIC
:
6324 case FFESTP_attribSAVE
:
6325 switch (ffestv_save_state_
)
6327 case FFESTV_savestateNONE
:
6328 ffestv_save_state_
= FFESTV_savestateSPECIFIC
;
6330 = ffewhere_line_use (ffelex_token_where_line (attribt
));
6332 = ffewhere_column_use (ffelex_token_where_column (attribt
));
6335 case FFESTV_savestateSPECIFIC
:
6336 case FFESTV_savestateANY
:
6339 case FFESTV_savestateALL
:
6340 if (ffe_is_pedantic ())
6342 ffebad_start (FFEBAD_CONFLICTING_SAVES
);
6343 ffebad_here (0, ffestv_save_line_
, ffestv_save_col_
);
6344 ffebad_here (1, ffelex_token_where_line (attribt
),
6345 ffelex_token_where_column (attribt
));
6348 ffestv_save_state_
= FFESTV_savestateANY
;
6352 assert ("unexpected save state" == NULL
);
6358 case FFESTP_attribTARGET
:
6363 assert ("unexpected attribute" == NULL
);
6368 /* ffestc_R501_item -- declared object
6370 ffestc_R501_item(...);
6372 Establish type for a particular object. */
6375 ffestc_R501_item (ffelexToken name
, ffebld kind
, ffelexToken kindt
,
6376 ffesttDimList dims
, ffebld len
, ffelexToken lent
,
6377 ffebld init
, ffelexToken initt
, bool clist
)
6380 ffesymbol sfn
; /* FUNCTION symbol. */
6386 bool is_init
= (init
!= NULL
) || clist
;
6388 bool is_ugly_assumed
;
6391 ffestc_check_item_ ();
6392 assert (name
!= NULL
);
6393 assert (ffelex_token_type (name
) == FFELEX_typeNAME
); /* Not NAMES. */
6394 assert (kind
== NULL
); /* No way an expression should get here. */
6396 ffestc_establish_declinfo_ (kind
, kindt
, len
, lent
);
6398 is_assumed
= (ffestc_local_
.decl
.basic_type
== FFEINFO_basictypeCHARACTER
)
6399 && (ffestc_local_
.decl
.size
== FFETARGET_charactersizeNONE
);
6401 if ((dims
!= NULL
) || is_init
)
6402 ffesta_set_outpooldisp (FFESTA_pooldispPRESERVE
);
6404 s
= ffesymbol_declare_local (name
, TRUE
);
6405 sa
= ffesymbol_attrs (s
);
6407 /* First figure out what kind of object this is based solely on the current
6408 object situation (type params, dimension list, and initialization). */
6410 na
= FFESYMBOL_attrsTYPE
;
6413 na
|= FFESYMBOL_attrsANYLEN
;
6415 is_ugly_assumed
= (ffe_is_ugly_assumed ()
6416 && ((sa
& FFESYMBOL_attrsDUMMY
)
6417 || (ffesymbol_where (s
) == FFEINFO_whereDUMMY
)));
6419 nd
= ffestt_dimlist_type (dims
, is_ugly_assumed
);
6422 case FFESTP_dimtypeNONE
:
6425 case FFESTP_dimtypeKNOWN
:
6426 na
|= FFESYMBOL_attrsARRAY
;
6429 case FFESTP_dimtypeADJUSTABLE
:
6430 na
|= FFESYMBOL_attrsARRAY
| FFESYMBOL_attrsADJUSTABLE
;
6433 case FFESTP_dimtypeASSUMED
:
6434 na
|= FFESYMBOL_attrsARRAY
| FFESYMBOL_attrsANYSIZE
;
6437 case FFESTP_dimtypeADJUSTABLEASSUMED
:
6438 na
|= FFESYMBOL_attrsARRAY
| FFESYMBOL_attrsADJUSTABLE
6439 | FFESYMBOL_attrsANYSIZE
;
6443 assert ("unexpected dimtype" == NULL
);
6444 na
= FFESYMBOL_attrsetNONE
;
6448 if (!ffesta_is_entry_valid
6449 && (((na
& (FFESYMBOL_attrsANYLEN
| FFESYMBOL_attrsARRAY
))
6450 == (FFESYMBOL_attrsANYLEN
| FFESYMBOL_attrsARRAY
))))
6451 na
= FFESYMBOL_attrsetNONE
;
6455 if (na
== FFESYMBOL_attrsetNONE
)
6457 else if (na
& (FFESYMBOL_attrsANYLEN
6458 | FFESYMBOL_attrsADJUSTABLE
6459 | FFESYMBOL_attrsANYSIZE
))
6460 na
= FFESYMBOL_attrsetNONE
;
6462 na
|= FFESYMBOL_attrsINIT
;
6465 /* Now figure out what kind of object we've got based on previous
6466 declarations of or references to the object. */
6468 if (na
== FFESYMBOL_attrsetNONE
)
6470 else if (!ffesymbol_is_specable (s
)
6471 && (((ffesymbol_where (s
) != FFEINFO_whereCONSTANT
)
6472 && (ffesymbol_where (s
) != FFEINFO_whereINTRINSIC
))
6473 || (na
& (FFESYMBOL_attrsARRAY
| FFESYMBOL_attrsINIT
))))
6474 na
= FFESYMBOL_attrsetNONE
; /* Can't dcl sym ref'd in sfuncdef, and can't
6475 dimension/init UNDERSTOODs. */
6476 else if (sa
& FFESYMBOL_attrsANY
)
6479 || ((sa
& (FFESYMBOL_attrsSFARG
6480 | FFESYMBOL_attrsADJUSTS
))
6481 && (na
& (FFESYMBOL_attrsARRAY
6482 | FFESYMBOL_attrsANYLEN
)))
6483 || ((sa
& FFESYMBOL_attrsRESULT
)
6484 && (na
& (FFESYMBOL_attrsARRAY
6485 | FFESYMBOL_attrsINIT
)))
6486 || ((sa
& (FFESYMBOL_attrsSFUNC
6487 | FFESYMBOL_attrsEXTERNAL
6488 | FFESYMBOL_attrsINTRINSIC
6489 | FFESYMBOL_attrsINIT
))
6490 && (na
& (FFESYMBOL_attrsARRAY
6491 | FFESYMBOL_attrsANYLEN
6492 | FFESYMBOL_attrsINIT
)))
6493 || ((sa
& FFESYMBOL_attrsARRAY
)
6494 && !ffesta_is_entry_valid
6495 && (na
& FFESYMBOL_attrsANYLEN
))
6496 || ((sa
& (FFESYMBOL_attrsADJUSTABLE
6497 | FFESYMBOL_attrsANYLEN
6498 | FFESYMBOL_attrsANYSIZE
6499 | FFESYMBOL_attrsDUMMY
))
6500 && (na
& FFESYMBOL_attrsINIT
))
6501 || ((sa
& (FFESYMBOL_attrsSAVE
6502 | FFESYMBOL_attrsNAMELIST
6503 | FFESYMBOL_attrsCOMMON
6504 | FFESYMBOL_attrsEQUIV
))
6505 && (na
& (FFESYMBOL_attrsADJUSTABLE
6506 | FFESYMBOL_attrsANYLEN
6507 | FFESYMBOL_attrsANYSIZE
))))
6508 na
= FFESYMBOL_attrsetNONE
;
6509 else if ((ffesymbol_kind (s
) == FFEINFO_kindENTITY
)
6510 && (ffesymbol_where (s
) == FFEINFO_whereCONSTANT
)
6511 && (na
& FFESYMBOL_attrsANYLEN
))
6512 { /* If CHARACTER*(*) FOO after PARAMETER FOO. */
6513 na
|= FFESYMBOL_attrsTYPE
;
6514 ffestc_local_
.decl
.size
= ffebld_size (ffesymbol_init (s
));
6519 /* Now see what we've got for a new object: NONE means a new error cropped
6520 up; ANY means an old error to be ignored; otherwise, everything's ok,
6521 update the object (symbol) and continue on. */
6523 if (na
== FFESYMBOL_attrsetNONE
)
6525 ffesymbol_error (s
, name
);
6526 ffestc_parent_ok_
= FALSE
;
6528 else if (na
& FFESYMBOL_attrsANY
)
6529 ffestc_parent_ok_
= FALSE
;
6532 ffesymbol_set_attrs (s
, na
);
6533 if (ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
6534 ffesymbol_set_state (s
, FFESYMBOL_stateSEEN
);
6535 rank
= ffesymbol_rank (s
);
6538 ffesymbol_set_dims (s
, ffestt_dimlist_as_expr (dims
, &rank
,
6542 ffesymbol_set_arraysize (s
, array_size
);
6543 ffesymbol_set_extents (s
, extents
);
6544 if (!(0 && ffe_is_90 ())
6545 && (ffebld_op (array_size
) == FFEBLD_opCONTER
)
6546 && (ffebld_constant_integerdefault (ffebld_conter (array_size
))
6549 ffebad_start (FFEBAD_ZERO_ARRAY
);
6550 ffebad_here (0, ffelex_token_where_line (name
),
6551 ffelex_token_where_column (name
));
6557 ffesymbol_set_init (s
,
6558 ffeexpr_convert (init
, initt
, name
,
6559 ffestc_local_
.decl
.basic_type
,
6560 ffestc_local_
.decl
.kind_type
,
6562 ffestc_local_
.decl
.size
,
6563 FFEEXPR_contextDATA
));
6564 ffecom_notify_init_symbol (s
);
6565 ffesymbol_update_init (s
);
6566 #if FFEGLOBAL_ENABLED
6567 if (ffesymbol_common (s
) != NULL
)
6568 ffeglobal_init_common (ffesymbol_common (s
), initt
);
6575 symter
= ffebld_new_symter (s
, FFEINTRIN_genNONE
,
6579 ffebld_set_info (symter
,
6580 ffeinfo_new (ffestc_local_
.decl
.basic_type
,
6581 ffestc_local_
.decl
.kind_type
,
6585 ffestc_local_
.decl
.size
));
6586 ffestc_local_
.decl
.initlist
= ffebld_new_item (symter
, NULL
);
6588 if (ffesymbol_basictype (s
) == FFEINFO_basictypeNONE
)
6590 ffesymbol_set_info (s
,
6591 ffeinfo_new (ffestc_local_
.decl
.basic_type
,
6592 ffestc_local_
.decl
.kind_type
,
6595 ffesymbol_where (s
),
6596 ffestc_local_
.decl
.size
));
6597 if ((na
& FFESYMBOL_attrsRESULT
)
6598 && ((sfn
= ffesymbol_funcresult (s
)) != NULL
))
6600 ffesymbol_set_info (sfn
,
6601 ffeinfo_new (ffestc_local_
.decl
.basic_type
,
6602 ffestc_local_
.decl
.kind_type
,
6604 ffesymbol_kind (sfn
),
6605 ffesymbol_where (sfn
),
6606 ffestc_local_
.decl
.size
));
6607 ffesymbol_signal_unreported (sfn
);
6610 else if ((ffestc_local_
.decl
.basic_type
!= ffesymbol_basictype (s
))
6611 || (ffestc_local_
.decl
.kind_type
!= ffesymbol_kindtype (s
))
6612 || ((ffestc_local_
.decl
.basic_type
6613 == FFEINFO_basictypeCHARACTER
)
6614 && (ffestc_local_
.decl
.size
!= ffesymbol_size (s
))))
6615 { /* Explicit type disagrees with established
6617 ffesymbol_error (s
, name
);
6620 if ((na
& FFESYMBOL_attrsADJUSTS
)
6621 && ((ffestc_local_
.decl
.basic_type
!= FFEINFO_basictypeINTEGER
)
6622 || (ffestc_local_
.decl
.kind_type
!= FFEINFO_kindtypeINTEGER1
)))
6623 ffesymbol_error (s
, name
);
6625 ffesymbol_signal_unreported (s
);
6626 ffestc_parent_ok_
= TRUE
;
6630 /* ffestc_R501_itemstartvals -- Start list of values
6632 ffestc_R501_itemstartvals();
6634 Gonna specify values for the object now. */
6637 ffestc_R501_itemstartvals ()
6639 ffestc_check_item_startvals_ ();
6641 if (ffestc_parent_ok_
)
6642 ffedata_begin (ffestc_local_
.decl
.initlist
);
6645 /* ffestc_R501_itemvalue -- Source value
6647 ffestc_R501_itemvalue(repeat,repeat_token,value,value_token);
6649 Make sure repeat and value are valid for the object being initialized. */
6652 ffestc_R501_itemvalue (ffebld repeat
, ffelexToken repeat_token
,
6653 ffebld value
, ffelexToken value_token
)
6655 ffetargetIntegerDefault rpt
;
6657 ffestc_check_item_value_ ();
6659 if (!ffestc_parent_ok_
)
6664 else if (ffebld_op (repeat
) == FFEBLD_opCONTER
)
6665 rpt
= ffebld_constant_integerdefault (ffebld_conter (repeat
));
6668 ffestc_parent_ok_
= FALSE
;
6669 ffedata_end (TRUE
, NULL
);
6673 if (!(ffestc_parent_ok_
= ffedata_value (rpt
, value
,
6674 (repeat_token
== NULL
) ? value_token
: repeat_token
)))
6675 ffedata_end (TRUE
, NULL
);
6678 /* ffestc_R501_itemendvals -- End list of values
6680 ffelexToken t; // the SLASH token that ends the list.
6681 ffestc_R501_itemendvals(t);
6683 No more values, might specify more objects now. */
6686 ffestc_R501_itemendvals (ffelexToken t
)
6688 ffestc_check_item_endvals_ ();
6690 if (ffestc_parent_ok_
)
6691 ffestc_parent_ok_
= ffedata_end (FALSE
, t
);
6693 if (ffestc_parent_ok_
)
6694 ffesymbol_signal_unreported (ffebld_symter (ffebld_head
6695 (ffestc_local_
.decl
.initlist
)));
6698 /* ffestc_R501_finish -- Done
6700 ffestc_R501_finish();
6702 Just wrap up any local activities. */
6705 ffestc_R501_finish ()
6707 ffestc_check_finish_ ();
6710 /* ffestc_R519_start -- INTENT statement list begin
6712 ffestc_R519_start();
6714 Verify that INTENT is valid here, and begin accepting items in the list. */
6718 ffestc_R519_start (ffelexToken intent
, ffestrOther intent_kw
)
6720 ffestc_check_start_ ();
6721 if (ffestc_order_spec_ () != FFESTC_orderOK_
)
6726 ffestc_labeldef_useless_ ();
6728 ffestd_R519_start (intent_kw
);
6733 /* ffestc_R519_item -- INTENT statement for name
6735 ffestc_R519_item(name_token);
6737 Make sure name_token identifies a valid object to be INTENTed. */
6740 ffestc_R519_item (ffelexToken name
)
6742 ffestc_check_item_ ();
6743 assert (name
!= NULL
);
6747 ffestd_R519_item (name
);
6750 /* ffestc_R519_finish -- INTENT statement list complete
6752 ffestc_R519_finish();
6754 Just wrap up any local activities. */
6757 ffestc_R519_finish ()
6759 ffestc_check_finish_ ();
6763 ffestd_R519_finish ();
6766 /* ffestc_R520_start -- OPTIONAL statement list begin
6768 ffestc_R520_start();
6770 Verify that OPTIONAL is valid here, and begin accepting items in the list. */
6773 ffestc_R520_start ()
6775 ffestc_check_start_ ();
6776 if (ffestc_order_spec_ () != FFESTC_orderOK_
)
6781 ffestc_labeldef_useless_ ();
6783 ffestd_R520_start ();
6788 /* ffestc_R520_item -- OPTIONAL statement for name
6790 ffestc_R520_item(name_token);
6792 Make sure name_token identifies a valid object to be OPTIONALed. */
6795 ffestc_R520_item (ffelexToken name
)
6797 ffestc_check_item_ ();
6798 assert (name
!= NULL
);
6802 ffestd_R520_item (name
);
6805 /* ffestc_R520_finish -- OPTIONAL statement list complete
6807 ffestc_R520_finish();
6809 Just wrap up any local activities. */
6812 ffestc_R520_finish ()
6814 ffestc_check_finish_ ();
6818 ffestd_R520_finish ();
6821 /* ffestc_R521A -- PUBLIC statement
6825 Verify that PUBLIC is valid here. */
6830 ffestc_check_simple_ ();
6831 if (ffestc_order_access_ () != FFESTC_orderOK_
)
6833 ffestc_labeldef_useless_ ();
6835 switch (ffestv_access_state_
)
6837 case FFESTV_accessstateNONE
:
6838 ffestv_access_state_
= FFESTV_accessstatePUBLIC
;
6840 = ffewhere_line_use (ffelex_token_where_line (ffesta_tokens
[0]));
6842 = ffewhere_column_use (ffelex_token_where_column (ffesta_tokens
[0]));
6845 case FFESTV_accessstateANY
:
6848 case FFESTV_accessstatePUBLIC
:
6849 case FFESTV_accessstatePRIVATE
:
6850 ffebad_start (FFEBAD_CONFLICTING_ACCESSES
);
6851 ffebad_here (0, ffestv_access_line_
, ffestv_access_col_
);
6852 ffebad_here (1, ffelex_token_where_line (ffesta_tokens
[0]),
6853 ffelex_token_where_column (ffesta_tokens
[0]));
6855 ffestv_access_state_
= FFESTV_accessstateANY
;
6859 assert ("unexpected access state" == NULL
);
6866 /* ffestc_R521Astart -- PUBLIC statement list begin
6868 ffestc_R521Astart();
6870 Verify that PUBLIC is valid here, and begin accepting items in the list. */
6873 ffestc_R521Astart ()
6875 ffestc_check_start_ ();
6876 if (ffestc_order_access_ () != FFESTC_orderOK_
)
6881 ffestc_labeldef_useless_ ();
6883 ffestd_R521Astart ();
6888 /* ffestc_R521Aitem -- PUBLIC statement for name
6890 ffestc_R521Aitem(name_token);
6892 Make sure name_token identifies a valid object to be PUBLICed. */
6895 ffestc_R521Aitem (ffelexToken name
)
6897 ffestc_check_item_ ();
6898 assert (name
!= NULL
);
6902 ffestd_R521Aitem (name
);
6905 /* ffestc_R521Afinish -- PUBLIC statement list complete
6907 ffestc_R521Afinish();
6909 Just wrap up any local activities. */
6912 ffestc_R521Afinish ()
6914 ffestc_check_finish_ ();
6918 ffestd_R521Afinish ();
6921 /* ffestc_R521B -- PRIVATE statement
6925 Verify that PRIVATE is valid here (outside a derived-type statement). */
6930 ffestc_check_simple_ ();
6931 if (ffestc_order_access_ () != FFESTC_orderOK_
)
6933 ffestc_labeldef_useless_ ();
6935 switch (ffestv_access_state_
)
6937 case FFESTV_accessstateNONE
:
6938 ffestv_access_state_
= FFESTV_accessstatePRIVATE
;
6940 = ffewhere_line_use (ffelex_token_where_line (ffesta_tokens
[0]));
6942 = ffewhere_column_use (ffelex_token_where_column (ffesta_tokens
[0]));
6945 case FFESTV_accessstateANY
:
6948 case FFESTV_accessstatePUBLIC
:
6949 case FFESTV_accessstatePRIVATE
:
6950 ffebad_start (FFEBAD_CONFLICTING_ACCESSES
);
6951 ffebad_here (0, ffestv_access_line_
, ffestv_access_col_
);
6952 ffebad_here (1, ffelex_token_where_line (ffesta_tokens
[0]),
6953 ffelex_token_where_column (ffesta_tokens
[0]));
6955 ffestv_access_state_
= FFESTV_accessstateANY
;
6959 assert ("unexpected access state" == NULL
);
6966 /* ffestc_R521Bstart -- PRIVATE statement list begin
6968 ffestc_R521Bstart();
6970 Verify that PRIVATE is valid here, and begin accepting items in the list. */
6973 ffestc_R521Bstart ()
6975 ffestc_check_start_ ();
6976 if (ffestc_order_access_ () != FFESTC_orderOK_
)
6981 ffestc_labeldef_useless_ ();
6983 ffestd_R521Bstart ();
6988 /* ffestc_R521Bitem -- PRIVATE statement for name
6990 ffestc_R521Bitem(name_token);
6992 Make sure name_token identifies a valid object to be PRIVATEed. */
6995 ffestc_R521Bitem (ffelexToken name
)
6997 ffestc_check_item_ ();
6998 assert (name
!= NULL
);
7002 ffestd_R521Bitem (name
);
7005 /* ffestc_R521Bfinish -- PRIVATE statement list complete
7007 ffestc_R521Bfinish();
7009 Just wrap up any local activities. */
7012 ffestc_R521Bfinish ()
7014 ffestc_check_finish_ ();
7018 ffestd_R521Bfinish ();
7022 /* ffestc_R522 -- SAVE statement with no list
7026 Verify that SAVE is valid here, and flag everything as SAVEd. */
7031 ffestc_check_simple_ ();
7032 if (ffestc_order_blockspec_ () != FFESTC_orderOK_
)
7034 ffestc_labeldef_useless_ ();
7036 switch (ffestv_save_state_
)
7038 case FFESTV_savestateNONE
:
7039 ffestv_save_state_
= FFESTV_savestateALL
;
7041 = ffewhere_line_use (ffelex_token_where_line (ffesta_tokens
[0]));
7043 = ffewhere_column_use (ffelex_token_where_column (ffesta_tokens
[0]));
7046 case FFESTV_savestateANY
:
7049 case FFESTV_savestateSPECIFIC
:
7050 case FFESTV_savestateALL
:
7051 if (ffe_is_pedantic ())
7053 ffebad_start (FFEBAD_CONFLICTING_SAVES
);
7054 ffebad_here (0, ffestv_save_line_
, ffestv_save_col_
);
7055 ffebad_here (1, ffelex_token_where_line (ffesta_tokens
[0]),
7056 ffelex_token_where_column (ffesta_tokens
[0]));
7059 ffestv_save_state_
= FFESTV_savestateALL
;
7063 assert ("unexpected save state" == NULL
);
7067 ffe_set_is_saveall (TRUE
);
7072 /* ffestc_R522start -- SAVE statement list begin
7076 Verify that SAVE is valid here, and begin accepting items in the list. */
7081 ffestc_check_start_ ();
7082 if (ffestc_order_blockspec_ () != FFESTC_orderOK_
)
7087 ffestc_labeldef_useless_ ();
7089 switch (ffestv_save_state_
)
7091 case FFESTV_savestateNONE
:
7092 ffestv_save_state_
= FFESTV_savestateSPECIFIC
;
7094 = ffewhere_line_use (ffelex_token_where_line (ffesta_tokens
[0]));
7096 = ffewhere_column_use (ffelex_token_where_column (ffesta_tokens
[0]));
7099 case FFESTV_savestateSPECIFIC
:
7100 case FFESTV_savestateANY
:
7103 case FFESTV_savestateALL
:
7104 if (ffe_is_pedantic ())
7106 ffebad_start (FFEBAD_CONFLICTING_SAVES
);
7107 ffebad_here (0, ffestv_save_line_
, ffestv_save_col_
);
7108 ffebad_here (1, ffelex_token_where_line (ffesta_tokens
[0]),
7109 ffelex_token_where_column (ffesta_tokens
[0]));
7112 ffestv_save_state_
= FFESTV_savestateANY
;
7116 assert ("unexpected save state" == NULL
);
7120 ffestd_R522start ();
7125 /* ffestc_R522item_object -- SAVE statement for object-name
7127 ffestc_R522item_object(name_token);
7129 Make sure name_token identifies a valid object to be SAVEd. */
7132 ffestc_R522item_object (ffelexToken name
)
7138 ffestc_check_item_ ();
7139 assert (name
!= NULL
);
7143 s
= ffesymbol_declare_local (name
, FALSE
);
7144 sa
= ffesymbol_attrs (s
);
7146 /* Figure out what kind of object we've got based on previous declarations
7147 of or references to the object. */
7149 if (!ffesymbol_is_specable (s
)
7150 && ((ffesymbol_kind (s
) != FFEINFO_kindENTITY
)
7151 || (ffesymbol_where (s
) != FFEINFO_whereLOCAL
)))
7152 na
= FFESYMBOL_attrsetNONE
; /* Can't dcl sym ref'd in sfuncdef. */
7153 else if (sa
& FFESYMBOL_attrsANY
)
7155 else if (!(sa
& ~(FFESYMBOL_attrsARRAY
7156 | FFESYMBOL_attrsEQUIV
7157 | FFESYMBOL_attrsINIT
7158 | FFESYMBOL_attrsNAMELIST
7159 | FFESYMBOL_attrsSFARG
7160 | FFESYMBOL_attrsTYPE
)))
7161 na
= sa
| FFESYMBOL_attrsSAVE
;
7163 na
= FFESYMBOL_attrsetNONE
;
7165 /* Now see what we've got for a new object: NONE means a new error cropped
7166 up; ANY means an old error to be ignored; otherwise, everything's ok,
7167 update the object (symbol) and continue on. */
7169 if (na
== FFESYMBOL_attrsetNONE
)
7170 ffesymbol_error (s
, name
);
7171 else if (!(na
& FFESYMBOL_attrsANY
))
7173 ffesymbol_set_attrs (s
, na
);
7174 if (ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
7175 ffesymbol_set_state (s
, FFESYMBOL_stateSEEN
);
7176 ffesymbol_update_save (s
);
7177 ffesymbol_signal_unreported (s
);
7180 ffestd_R522item_object (name
);
7183 /* ffestc_R522item_cblock -- SAVE statement for common-block-name
7185 ffestc_R522item_cblock(name_token);
7187 Make sure name_token identifies a valid common block to be SAVEd. */
7190 ffestc_R522item_cblock (ffelexToken name
)
7196 ffestc_check_item_ ();
7197 assert (name
!= NULL
);
7201 s
= ffesymbol_declare_cblock (name
, ffelex_token_where_line (ffesta_tokens
[0]),
7202 ffelex_token_where_column (ffesta_tokens
[0]));
7203 sa
= ffesymbol_attrs (s
);
7205 /* Figure out what kind of object we've got based on previous declarations
7206 of or references to the object. */
7208 if (!ffesymbol_is_specable (s
))
7209 na
= FFESYMBOL_attrsetNONE
;
7210 else if (sa
& FFESYMBOL_attrsANY
)
7211 na
= sa
; /* Already have an error here, say nothing. */
7212 else if (!(sa
& ~(FFESYMBOL_attrsCBLOCK
)))
7213 na
= sa
| FFESYMBOL_attrsSAVECBLOCK
;
7215 na
= FFESYMBOL_attrsetNONE
;
7217 /* Now see what we've got for a new object: NONE means a new error cropped
7218 up; ANY means an old error to be ignored; otherwise, everything's ok,
7219 update the object (symbol) and continue on. */
7221 if (na
== FFESYMBOL_attrsetNONE
)
7222 ffesymbol_error (s
, (name
== NULL
) ? ffesta_tokens
[0] : name
);
7223 else if (!(na
& FFESYMBOL_attrsANY
))
7225 ffesymbol_set_attrs (s
, na
);
7226 ffesymbol_set_state (s
, FFESYMBOL_stateSEEN
);
7227 ffesymbol_update_save (s
);
7228 ffesymbol_signal_unreported (s
);
7231 ffestd_R522item_cblock (name
);
7234 /* ffestc_R522finish -- SAVE statement list complete
7236 ffestc_R522finish();
7238 Just wrap up any local activities. */
7241 ffestc_R522finish ()
7243 ffestc_check_finish_ ();
7247 ffestd_R522finish ();
7250 /* ffestc_R524_start -- DIMENSION statement list begin
7252 ffestc_R524_start(bool virtual);
7254 Verify that DIMENSION is valid here, and begin accepting items in the
7258 ffestc_R524_start (bool virtual)
7260 ffestc_check_start_ ();
7261 if (ffestc_order_blockspec_ () != FFESTC_orderOK_
)
7266 ffestc_labeldef_useless_ ();
7268 ffestd_R524_start (virtual);
7273 /* ffestc_R524_item -- DIMENSION statement for object-name
7275 ffestc_R524_item(name_token,dim_list);
7277 Make sure name_token identifies a valid object to be DIMENSIONd. */
7280 ffestc_R524_item (ffelexToken name
, ffesttDimList dims
)
7289 bool is_ugly_assumed
;
7291 ffestc_check_item_ ();
7292 assert (name
!= NULL
);
7293 assert (dims
!= NULL
);
7297 ffesta_set_outpooldisp (FFESTA_pooldispPRESERVE
);
7299 s
= ffesymbol_declare_local (name
, FALSE
);
7300 sa
= ffesymbol_attrs (s
);
7302 /* First figure out what kind of object this is based solely on the current
7303 object situation (dimension list). */
7305 is_ugly_assumed
= (ffe_is_ugly_assumed ()
7306 && ((sa
& FFESYMBOL_attrsDUMMY
)
7307 || (ffesymbol_where (s
) == FFEINFO_whereDUMMY
)));
7309 nd
= ffestt_dimlist_type (dims
, is_ugly_assumed
);
7312 case FFESTP_dimtypeKNOWN
:
7313 na
= FFESYMBOL_attrsARRAY
;
7316 case FFESTP_dimtypeADJUSTABLE
:
7317 na
= FFESYMBOL_attrsARRAY
| FFESYMBOL_attrsADJUSTABLE
;
7320 case FFESTP_dimtypeASSUMED
:
7321 na
= FFESYMBOL_attrsARRAY
| FFESYMBOL_attrsANYSIZE
;
7324 case FFESTP_dimtypeADJUSTABLEASSUMED
:
7325 na
= FFESYMBOL_attrsARRAY
| FFESYMBOL_attrsADJUSTABLE
7326 | FFESYMBOL_attrsANYSIZE
;
7330 assert ("Unexpected dims type" == NULL
);
7331 na
= FFESYMBOL_attrsetNONE
;
7335 /* Now figure out what kind of object we've got based on previous
7336 declarations of or references to the object. */
7338 if (!ffesymbol_is_specable (s
))
7339 na
= FFESYMBOL_attrsetNONE
; /* Can't dcl sym ref'd in sfuncdef. */
7340 else if (sa
& FFESYMBOL_attrsANY
)
7341 na
= FFESYMBOL_attrsANY
;
7342 else if (!ffesta_is_entry_valid
7343 && (sa
& FFESYMBOL_attrsANYLEN
))
7344 na
= FFESYMBOL_attrsetNONE
;
7345 else if ((sa
& FFESYMBOL_attrsARRAY
)
7346 || ((sa
& (FFESYMBOL_attrsCOMMON
7347 | FFESYMBOL_attrsEQUIV
7348 | FFESYMBOL_attrsNAMELIST
7349 | FFESYMBOL_attrsSAVE
))
7350 && (na
& (FFESYMBOL_attrsADJUSTABLE
7351 | FFESYMBOL_attrsANYSIZE
))))
7352 na
= FFESYMBOL_attrsetNONE
;
7353 else if (!(sa
& ~(FFESYMBOL_attrsADJUSTABLE
7354 | FFESYMBOL_attrsANYLEN
7355 | FFESYMBOL_attrsANYSIZE
7356 | FFESYMBOL_attrsCOMMON
7357 | FFESYMBOL_attrsDUMMY
7358 | FFESYMBOL_attrsEQUIV
7359 | FFESYMBOL_attrsNAMELIST
7360 | FFESYMBOL_attrsSAVE
7361 | FFESYMBOL_attrsTYPE
)))
7364 na
= FFESYMBOL_attrsetNONE
;
7366 /* Now see what we've got for a new object: NONE means a new error cropped
7367 up; ANY means an old error to be ignored; otherwise, everything's ok,
7368 update the object (symbol) and continue on. */
7370 if (na
== FFESYMBOL_attrsetNONE
)
7371 ffesymbol_error (s
, name
);
7372 else if (!(na
& FFESYMBOL_attrsANY
))
7374 ffesymbol_set_attrs (s
, na
);
7375 ffesymbol_set_state (s
, FFESYMBOL_stateSEEN
);
7376 ffesymbol_set_dims (s
, ffestt_dimlist_as_expr (dims
, &rank
,
7380 ffesymbol_set_arraysize (s
, array_size
);
7381 ffesymbol_set_extents (s
, extents
);
7382 if (!(0 && ffe_is_90 ())
7383 && (ffebld_op (array_size
) == FFEBLD_opCONTER
)
7384 && (ffebld_constant_integerdefault (ffebld_conter (array_size
))
7387 ffebad_start (FFEBAD_ZERO_ARRAY
);
7388 ffebad_here (0, ffelex_token_where_line (name
),
7389 ffelex_token_where_column (name
));
7392 ffesymbol_set_info (s
,
7393 ffeinfo_new (ffesymbol_basictype (s
),
7394 ffesymbol_kindtype (s
),
7397 ffesymbol_where (s
),
7398 ffesymbol_size (s
)));
7401 ffesymbol_signal_unreported (s
);
7403 ffestd_R524_item (name
, dims
);
7406 /* ffestc_R524_finish -- DIMENSION statement list complete
7408 ffestc_R524_finish();
7410 Just wrap up any local activities. */
7413 ffestc_R524_finish ()
7415 ffestc_check_finish_ ();
7419 ffestd_R524_finish ();
7422 /* ffestc_R525_start -- ALLOCATABLE statement list begin
7424 ffestc_R525_start();
7426 Verify that ALLOCATABLE is valid here, and begin accepting items in the
7431 ffestc_R525_start ()
7433 ffestc_check_start_ ();
7434 if (ffestc_order_progspec_ () != FFESTC_orderOK_
)
7439 ffestc_labeldef_useless_ ();
7441 ffestd_R525_start ();
7446 /* ffestc_R525_item -- ALLOCATABLE statement for object-name
7448 ffestc_R525_item(name_token,dim_list);
7450 Make sure name_token identifies a valid object to be ALLOCATABLEd. */
7453 ffestc_R525_item (ffelexToken name
, ffesttDimList dims
)
7455 ffestc_check_item_ ();
7456 assert (name
!= NULL
);
7460 ffesta_set_outpooldisp (FFESTA_pooldispPRESERVE
);
7462 ffestd_R525_item (name
, dims
);
7465 /* ffestc_R525_finish -- ALLOCATABLE statement list complete
7467 ffestc_R525_finish();
7469 Just wrap up any local activities. */
7472 ffestc_R525_finish ()
7474 ffestc_check_finish_ ();
7478 ffestd_R525_finish ();
7481 /* ffestc_R526_start -- POINTER statement list begin
7483 ffestc_R526_start();
7485 Verify that POINTER is valid here, and begin accepting items in the
7489 ffestc_R526_start ()
7491 ffestc_check_start_ ();
7492 if (ffestc_order_progspec_ () != FFESTC_orderOK_
)
7497 ffestc_labeldef_useless_ ();
7499 ffestd_R526_start ();
7504 /* ffestc_R526_item -- POINTER statement for object-name
7506 ffestc_R526_item(name_token,dim_list);
7508 Make sure name_token identifies a valid object to be POINTERd. */
7511 ffestc_R526_item (ffelexToken name
, ffesttDimList dims
)
7513 ffestc_check_item_ ();
7514 assert (name
!= NULL
);
7518 ffesta_set_outpooldisp (FFESTA_pooldispPRESERVE
);
7520 ffestd_R526_item (name
, dims
);
7523 /* ffestc_R526_finish -- POINTER statement list complete
7525 ffestc_R526_finish();
7527 Just wrap up any local activities. */
7530 ffestc_R526_finish ()
7532 ffestc_check_finish_ ();
7536 ffestd_R526_finish ();
7539 /* ffestc_R527_start -- TARGET statement list begin
7541 ffestc_R527_start();
7543 Verify that TARGET is valid here, and begin accepting items in the
7547 ffestc_R527_start ()
7549 ffestc_check_start_ ();
7550 if (ffestc_order_progspec_ () != FFESTC_orderOK_
)
7555 ffestc_labeldef_useless_ ();
7557 ffestd_R527_start ();
7562 /* ffestc_R527_item -- TARGET statement for object-name
7564 ffestc_R527_item(name_token,dim_list);
7566 Make sure name_token identifies a valid object to be TARGETd. */
7569 ffestc_R527_item (ffelexToken name
, ffesttDimList dims
)
7571 ffestc_check_item_ ();
7572 assert (name
!= NULL
);
7576 ffesta_set_outpooldisp (FFESTA_pooldispPRESERVE
);
7578 ffestd_R527_item (name
, dims
);
7581 /* ffestc_R527_finish -- TARGET statement list complete
7583 ffestc_R527_finish();
7585 Just wrap up any local activities. */
7588 ffestc_R527_finish ()
7590 ffestc_check_finish_ ();
7594 ffestd_R527_finish ();
7598 /* ffestc_R528_start -- DATA statement list begin
7600 ffestc_R528_start();
7602 Verify that DATA is valid here, and begin accepting items in the list. */
7605 ffestc_R528_start ()
7609 ffestc_check_start_ ();
7610 if (ffe_is_pedantic_not_90 ())
7611 order
= ffestc_order_data77_ ();
7613 order
= ffestc_order_data_ ();
7614 if (order
!= FFESTC_orderOK_
)
7619 ffestc_labeldef_useless_ ();
7621 ffesta_set_outpooldisp (FFESTA_pooldispPRESERVE
);
7624 ffestc_local_
.data
.objlist
= NULL
;
7626 ffestd_R528_start_ ();
7632 /* ffestc_R528_item_object -- DATA statement target object
7634 ffestc_R528_item_object(object,object_token);
7636 Make sure object is valid to be DATAd. */
7639 ffestc_R528_item_object (ffebld expr
, ffelexToken expr_token UNUSED
)
7641 ffestc_check_item_ ();
7646 if (ffestc_local_
.data
.objlist
== NULL
)
7647 ffebld_init_list (&ffestc_local_
.data
.objlist
,
7648 &ffestc_local_
.data
.list_bottom
);
7650 ffebld_append_item (&ffestc_local_
.data
.list_bottom
, expr
);
7652 ffestd_R528_item_object_ (expr
, expr_token
);
7656 /* ffestc_R528_item_startvals -- DATA statement start list of values
7658 ffestc_R528_item_startvals();
7660 No more objects, gonna specify values for the list of objects now. */
7663 ffestc_R528_item_startvals ()
7665 ffestc_check_item_startvals_ ();
7670 assert (ffestc_local_
.data
.objlist
!= NULL
);
7671 ffebld_end_list (&ffestc_local_
.data
.list_bottom
);
7672 ffedata_begin (ffestc_local_
.data
.objlist
);
7674 ffestd_R528_item_startvals_ ();
7678 /* ffestc_R528_item_value -- DATA statement source value
7680 ffestc_R528_item_value(repeat,repeat_token,value,value_token);
7682 Make sure repeat and value are valid for the objects being initialized. */
7685 ffestc_R528_item_value (ffebld repeat
, ffelexToken repeat_token
,
7686 ffebld value
, ffelexToken value_token
)
7688 ffetargetIntegerDefault rpt
;
7690 ffestc_check_item_value_ ();
7697 else if (ffebld_op (repeat
) == FFEBLD_opCONTER
)
7698 rpt
= ffebld_constant_integerdefault (ffebld_conter (repeat
));
7702 ffedata_end (TRUE
, NULL
);
7706 if (!(ffestc_ok_
= ffedata_value (rpt
, value
,
7707 (repeat_token
== NULL
)
7710 ffedata_end (TRUE
, NULL
);
7713 ffestd_R528_item_value_ (repeat
, value
);
7717 /* ffestc_R528_item_endvals -- DATA statement start list of values
7719 ffelexToken t; // the SLASH token that ends the list.
7720 ffestc_R528_item_endvals(t);
7722 No more values, might specify more objects now. */
7725 ffestc_R528_item_endvals (ffelexToken t
)
7727 ffestc_check_item_endvals_ ();
7732 ffedata_end (!ffestc_ok_
, t
);
7733 ffestc_local_
.data
.objlist
= NULL
;
7735 ffestd_R528_item_endvals_ (t
);
7739 /* ffestc_R528_finish -- DATA statement list complete
7741 ffestc_R528_finish();
7743 Just wrap up any local activities. */
7746 ffestc_R528_finish ()
7748 ffestc_check_finish_ ();
7752 ffestd_R528_finish_ ();
7756 /* ffestc_R537_start -- PARAMETER statement list begin
7758 ffestc_R537_start();
7760 Verify that PARAMETER is valid here, and begin accepting items in the
7764 ffestc_R537_start ()
7766 ffestc_check_start_ ();
7767 if (ffestc_order_parameter_ () != FFESTC_orderOK_
)
7772 ffestc_labeldef_useless_ ();
7774 ffesta_set_outpooldisp (FFESTA_pooldispPRESERVE
);
7776 ffestd_R537_start ();
7781 /* ffestc_R537_item -- PARAMETER statement assignment
7783 ffestc_R537_item(dest,dest_token,source,source_token);
7785 Make sure the source is a valid source for the destination; make the
7789 ffestc_R537_item (ffebld dest
, ffelexToken dest_token
, ffebld source
,
7790 ffelexToken source_token
)
7794 ffestc_check_item_ ();
7798 if ((ffebld_op (dest
) == FFEBLD_opANY
)
7799 || (ffebld_op (source
) == FFEBLD_opANY
))
7801 if (ffebld_op (dest
) == FFEBLD_opSYMTER
)
7803 s
= ffebld_symter (dest
);
7804 ffesymbol_set_init (s
, ffebld_new_any ());
7805 ffebld_set_info (ffesymbol_init (s
), ffeinfo_new_any ());
7806 ffesymbol_signal_unreported (s
);
7808 ffestd_R537_item (dest
, source
);
7812 assert (ffebld_op (dest
) == FFEBLD_opSYMTER
);
7813 assert (ffebld_op (source
) == FFEBLD_opCONTER
);
7815 s
= ffebld_symter (dest
);
7816 if ((ffesymbol_basictype (s
) == FFEINFO_basictypeCHARACTER
)
7817 && (ffesymbol_size (s
) == FFETARGET_charactersizeNONE
))
7818 { /* Destination has explicit/implicit
7819 CHARACTER*(*) type; set length. */
7820 ffesymbol_set_info (s
,
7821 ffeinfo_new (ffesymbol_basictype (s
),
7822 ffesymbol_kindtype (s
),
7825 ffesymbol_where (s
),
7826 ffebld_size (source
)));
7827 ffebld_set_info (dest
, ffeinfo_use (ffesymbol_info (s
)));
7830 source
= ffeexpr_convert_expr (source
, source_token
, dest
, dest_token
,
7831 FFEEXPR_contextDATA
);
7833 ffesymbol_set_init (s
, source
);
7835 ffesymbol_signal_unreported (s
);
7837 ffestd_R537_item (dest
, source
);
7840 /* ffestc_R537_finish -- PARAMETER statement list complete
7842 ffestc_R537_finish();
7844 Just wrap up any local activities. */
7847 ffestc_R537_finish ()
7849 ffestc_check_finish_ ();
7853 ffestd_R537_finish ();
7856 /* ffestc_R539 -- IMPLICIT NONE statement
7860 Verify that the IMPLICIT NONE statement is ok here and implement. */
7865 ffestc_check_simple_ ();
7866 if (ffestc_order_implicitnone_ () != FFESTC_orderOK_
)
7868 ffestc_labeldef_useless_ ();
7875 /* ffestc_R539start -- IMPLICIT statement
7879 Verify that the IMPLICIT statement is ok here and implement. */
7884 ffestc_check_start_ ();
7885 if (ffestc_order_implicit_ () != FFESTC_orderOK_
)
7890 ffestc_labeldef_useless_ ();
7892 ffestd_R539start ();
7897 /* ffestc_R539item -- IMPLICIT statement specification (R540)
7899 ffestc_R539item(...);
7901 Verify that the type and letter list are all ok and implement. */
7904 ffestc_R539item (ffestpType type
, ffebld kind
, ffelexToken kindt
,
7905 ffebld len
, ffelexToken lent
, ffesttImpList letters
)
7907 ffestc_check_item_ ();
7911 if ((type
== FFESTP_typeCHARACTER
) && (len
!= NULL
)
7912 && (ffebld_op (len
) == FFEBLD_opSTAR
))
7913 { /* Complain and pretend they're CHARACTER
7915 ffebad_start (FFEBAD_IMPLICIT_ADJLEN
);
7916 ffebad_here (0, ffelex_token_where_line (lent
),
7917 ffelex_token_where_column (lent
));
7922 ffestc_establish_declstmt_ (type
, ffesta_tokens
[0], kind
, kindt
, len
, lent
);
7923 ffestc_establish_declinfo_ (NULL
, NULL
, NULL
, NULL
);
7925 ffestt_implist_drive (letters
, ffestc_establish_impletter_
);
7927 ffestd_R539item (type
, kind
, kindt
, len
, lent
, letters
);
7930 /* ffestc_R539finish -- IMPLICIT statement
7932 ffestc_R539finish();
7934 Finish up any local activities. */
7937 ffestc_R539finish ()
7939 ffestc_check_finish_ ();
7943 ffestd_R539finish ();
7946 /* ffestc_R542_start -- NAMELIST statement list begin
7948 ffestc_R542_start();
7950 Verify that NAMELIST is valid here, and begin accepting items in the
7954 ffestc_R542_start ()
7956 ffestc_check_start_ ();
7957 if (ffestc_order_progspec_ () != FFESTC_orderOK_
)
7962 ffestc_labeldef_useless_ ();
7964 if (ffe_is_f2c_library ()
7965 && (ffe_case_source () == FFE_caseNONE
))
7967 ffebad_start (FFEBAD_NAMELIST_CASE
);
7968 ffesta_ffebad_here_current_stmt (0);
7972 ffestd_R542_start ();
7974 ffestc_local_
.namelist
.symbol
= NULL
;
7979 /* ffestc_R542_item_nlist -- NAMELIST statement for group-name
7981 ffestc_R542_item_nlist(groupname_token);
7983 Make sure name_token identifies a valid object to be NAMELISTd. */
7986 ffestc_R542_item_nlist (ffelexToken name
)
7990 ffestc_check_item_ ();
7991 assert (name
!= NULL
);
7995 if (ffestc_local_
.namelist
.symbol
!= NULL
)
7996 ffesymbol_signal_unreported (ffestc_local_
.namelist
.symbol
);
7998 s
= ffesymbol_declare_local (name
, FALSE
);
8000 if ((ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
8001 || ((ffesymbol_state (s
) == FFESYMBOL_stateUNDERSTOOD
)
8002 && (ffesymbol_kind (s
) == FFEINFO_kindNAMELIST
)))
8004 ffestc_parent_ok_
= TRUE
;
8005 if (ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
8007 ffebld_init_list (ffesymbol_ptr_to_namelist (s
),
8008 ffesymbol_ptr_to_listbottom (s
));
8009 ffesymbol_set_state (s
, FFESYMBOL_stateUNDERSTOOD
);
8010 ffesymbol_set_info (s
,
8011 ffeinfo_new (FFEINFO_basictypeNONE
,
8012 FFEINFO_kindtypeNONE
,
8014 FFEINFO_kindNAMELIST
,
8016 FFETARGET_charactersizeNONE
));
8021 if (ffesymbol_kind (s
) != FFEINFO_kindANY
)
8022 ffesymbol_error (s
, name
);
8023 ffestc_parent_ok_
= FALSE
;
8026 ffestc_local_
.namelist
.symbol
= s
;
8028 ffestd_R542_item_nlist (name
);
8031 /* ffestc_R542_item_nitem -- NAMELIST statement for variable-name
8033 ffestc_R542_item_nitem(name_token);
8035 Make sure name_token identifies a valid object to be NAMELISTd. */
8038 ffestc_R542_item_nitem (ffelexToken name
)
8045 ffestc_check_item_ ();
8046 assert (name
!= NULL
);
8050 s
= ffesymbol_declare_local (name
, FALSE
);
8051 sa
= ffesymbol_attrs (s
);
8053 /* Figure out what kind of object we've got based on previous declarations
8054 of or references to the object. */
8056 if (!ffesymbol_is_specable (s
)
8057 && ((ffesymbol_kind (s
) != FFEINFO_kindENTITY
)
8058 || ((ffesymbol_where (s
) != FFEINFO_whereLOCAL
)
8059 && (ffesymbol_where (s
) != FFEINFO_whereCOMMON
))))
8060 na
= FFESYMBOL_attrsetNONE
;
8061 else if (sa
& FFESYMBOL_attrsANY
)
8062 na
= FFESYMBOL_attrsANY
;
8063 else if (!(sa
& ~(FFESYMBOL_attrsADJUSTS
8064 | FFESYMBOL_attrsARRAY
8065 | FFESYMBOL_attrsCOMMON
8066 | FFESYMBOL_attrsEQUIV
8067 | FFESYMBOL_attrsINIT
8068 | FFESYMBOL_attrsNAMELIST
8069 | FFESYMBOL_attrsSAVE
8070 | FFESYMBOL_attrsSFARG
8071 | FFESYMBOL_attrsTYPE
)))
8072 na
= sa
| FFESYMBOL_attrsNAMELIST
;
8074 na
= FFESYMBOL_attrsetNONE
;
8076 /* Now see what we've got for a new object: NONE means a new error cropped
8077 up; ANY means an old error to be ignored; otherwise, everything's ok,
8078 update the object (symbol) and continue on. */
8080 if (na
== FFESYMBOL_attrsetNONE
)
8081 ffesymbol_error (s
, name
);
8082 else if (!(na
& FFESYMBOL_attrsANY
))
8084 ffesymbol_set_attrs (s
, na
);
8085 if (ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
8086 ffesymbol_set_state (s
, FFESYMBOL_stateSEEN
);
8087 ffesymbol_set_namelisted (s
, TRUE
);
8088 ffesymbol_signal_unreported (s
);
8089 #if 0 /* No need to establish type yet! */
8090 if (!ffeimplic_establish_symbol (s
))
8091 ffesymbol_error (s
, name
);
8095 if (ffestc_parent_ok_
)
8097 e
= ffebld_new_symter (s
, FFEINTRIN_genNONE
, FFEINTRIN_specNONE
,
8100 ffeinfo_new (FFEINFO_basictypeNONE
,
8101 FFEINFO_kindtypeNONE
, 0,
8104 FFETARGET_charactersizeNONE
));
8106 (ffesymbol_ptr_to_listbottom (ffestc_local_
.namelist
.symbol
), e
);
8109 ffestd_R542_item_nitem (name
);
8112 /* ffestc_R542_finish -- NAMELIST statement list complete
8114 ffestc_R542_finish();
8116 Just wrap up any local activities. */
8119 ffestc_R542_finish ()
8121 ffestc_check_finish_ ();
8125 ffesymbol_signal_unreported (ffestc_local_
.namelist
.symbol
);
8127 ffestd_R542_finish ();
8130 /* ffestc_R544_start -- EQUIVALENCE statement list begin
8132 ffestc_R544_start();
8134 Verify that EQUIVALENCE is valid here, and begin accepting items in the
8138 ffestc_R544_start ()
8140 ffestc_check_start_ ();
8141 if (ffestc_order_blockspec_ () != FFESTC_orderOK_
)
8146 ffestc_labeldef_useless_ ();
8148 ffesta_set_outpooldisp (FFESTA_pooldispPRESERVE
);
8153 /* ffestc_R544_item -- EQUIVALENCE statement assignment
8155 ffestc_R544_item(exprlist);
8157 Make sure the equivalence is valid, then implement it. */
8160 ffestc_R544_item (ffesttExprList exprlist
)
8162 ffestc_check_item_ ();
8166 /* First we go through the list and come up with one ffeequiv object that
8167 will describe all items in the list. When an ffeequiv object is first
8168 found, it is used (else we create one as a "local equiv" for the time
8169 being). If subsequent ffeequiv objects are found, they are merged with
8170 the first so we end up with one. However, if more than one COMMON
8171 variable is involved, then an error condition occurs. */
8173 ffestc_local_
.equiv
.ok
= TRUE
;
8174 ffestc_local_
.equiv
.t
= NULL
; /* No token yet. */
8175 ffestc_local_
.equiv
.eq
= NULL
;/* No equiv yet. */
8176 ffestc_local_
.equiv
.save
= FALSE
; /* No SAVEd variables yet. */
8178 ffebld_init_list (&ffestc_local_
.equiv
.list
, &ffestc_local_
.equiv
.bottom
);
8179 ffestt_exprlist_drive (exprlist
, ffestc_R544_equiv_
); /* Get one equiv. */
8180 ffebld_end_list (&ffestc_local_
.equiv
.bottom
);
8182 if (!ffestc_local_
.equiv
.ok
)
8183 return; /* Something went wrong, stop bothering with
8186 if (ffestc_local_
.equiv
.eq
== NULL
)
8187 ffestc_local_
.equiv
.eq
= ffeequiv_new (); /* Make local equivalence. */
8189 /* Append this list of equivalences to list of such lists for this
8192 ffeequiv_add (ffestc_local_
.equiv
.eq
, ffestc_local_
.equiv
.list
,
8193 ffestc_local_
.equiv
.t
);
8194 if (ffestc_local_
.equiv
.save
)
8195 ffeequiv_update_save (ffestc_local_
.equiv
.eq
);
8198 /* ffestc_R544_equiv_ -- EQUIVALENCE statement handler for item in list
8202 ffestc_R544_equiv_(expr,t);
8204 Record information, if any, on symbol in expr; if symbol has equivalence
8205 object already, merge with outstanding object if present or make it
8206 the outstanding object. */
8209 ffestc_R544_equiv_ (ffebld expr
, ffelexToken t
)
8213 if (!ffestc_local_
.equiv
.ok
)
8216 if (ffestc_local_
.equiv
.t
== NULL
)
8217 ffestc_local_
.equiv
.t
= t
;
8219 switch (ffebld_op (expr
))
8222 return; /* Don't put this on the list. */
8224 case FFEBLD_opSYMTER
:
8225 case FFEBLD_opARRAYREF
:
8226 case FFEBLD_opSUBSTR
:
8227 break; /* All of these are ok. */
8230 assert ("ffestc_R544_equiv_ bad op" == NULL
);
8234 ffebld_append_item (&ffestc_local_
.equiv
.bottom
, expr
);
8236 s
= ffeequiv_symbol (expr
);
8238 /* See if symbol has an equivalence object already. */
8240 if (ffesymbol_equiv (s
) != NULL
)
8242 if (ffestc_local_
.equiv
.eq
== NULL
)
8243 ffestc_local_
.equiv
.eq
= ffesymbol_equiv (s
); /* New equiv obj. */
8244 else if (ffestc_local_
.equiv
.eq
!= ffesymbol_equiv (s
))
8246 ffestc_local_
.equiv
.eq
= ffeequiv_merge (ffesymbol_equiv (s
),
8247 ffestc_local_
.equiv
.eq
,
8249 if (ffestc_local_
.equiv
.eq
== NULL
)
8250 ffestc_local_
.equiv
.ok
= FALSE
; /* Couldn't merge. */
8254 if (ffesymbol_is_save (s
))
8255 ffestc_local_
.equiv
.save
= TRUE
;
8258 /* ffestc_R544_finish -- EQUIVALENCE statement list complete
8260 ffestc_R544_finish();
8262 Just wrap up any local activities. */
8265 ffestc_R544_finish ()
8267 ffestc_check_finish_ ();
8270 /* ffestc_R547_start -- COMMON statement list begin
8272 ffestc_R547_start();
8274 Verify that COMMON is valid here, and begin accepting items in the list. */
8277 ffestc_R547_start ()
8279 ffestc_check_start_ ();
8280 if (ffestc_order_blockspec_ () != FFESTC_orderOK_
)
8285 ffestc_labeldef_useless_ ();
8287 ffestc_local_
.common
.symbol
= NULL
; /* Blank common is the default. */
8288 ffestc_parent_ok_
= TRUE
;
8290 ffestd_R547_start ();
8295 /* ffestc_R547_item_object -- COMMON statement for object-name
8297 ffestc_R547_item_object(name_token,dim_list);
8299 Make sure name_token identifies a valid object to be COMMONd. */
8302 ffestc_R547_item_object (ffelexToken name
, ffesttDimList dims
)
8312 bool is_ugly_assumed
;
8314 if (ffestc_parent_ok_
&& (ffestc_local_
.common
.symbol
== NULL
))
8315 ffestc_R547_item_cblock (NULL
); /* As if "COMMON [//] ...". */
8317 ffestc_check_item_ ();
8318 assert (name
!= NULL
);
8323 ffesta_set_outpooldisp (FFESTA_pooldispPRESERVE
);
8325 s
= ffesymbol_declare_local (name
, FALSE
);
8326 sa
= ffesymbol_attrs (s
);
8328 /* First figure out what kind of object this is based solely on the current
8329 object situation (dimension list). */
8331 is_ugly_assumed
= (ffe_is_ugly_assumed ()
8332 && ((sa
& FFESYMBOL_attrsDUMMY
)
8333 || (ffesymbol_where (s
) == FFEINFO_whereDUMMY
)));
8335 nd
= ffestt_dimlist_type (dims
, is_ugly_assumed
);
8338 case FFESTP_dimtypeNONE
:
8339 na
= FFESYMBOL_attrsCOMMON
;
8342 case FFESTP_dimtypeKNOWN
:
8343 na
= FFESYMBOL_attrsCOMMON
| FFESYMBOL_attrsARRAY
;
8347 na
= FFESYMBOL_attrsetNONE
;
8351 /* Figure out what kind of object we've got based on previous declarations
8352 of or references to the object. */
8354 if (na
== FFESYMBOL_attrsetNONE
)
8356 else if (!ffesymbol_is_specable (s
))
8357 na
= FFESYMBOL_attrsetNONE
; /* Can't dcl sym ref'd in sfuncdef. */
8358 else if (sa
& FFESYMBOL_attrsANY
)
8359 na
= FFESYMBOL_attrsANY
;
8360 else if ((sa
& (FFESYMBOL_attrsADJUSTS
8361 | FFESYMBOL_attrsARRAY
8362 | FFESYMBOL_attrsINIT
8363 | FFESYMBOL_attrsSFARG
))
8364 && (na
& FFESYMBOL_attrsARRAY
))
8365 na
= FFESYMBOL_attrsetNONE
;
8366 else if (!(sa
& ~(FFESYMBOL_attrsADJUSTS
8367 | FFESYMBOL_attrsARRAY
8368 | FFESYMBOL_attrsEQUIV
8369 | FFESYMBOL_attrsINIT
8370 | FFESYMBOL_attrsNAMELIST
8371 | FFESYMBOL_attrsSFARG
8372 | FFESYMBOL_attrsTYPE
)))
8375 na
= FFESYMBOL_attrsetNONE
;
8377 /* Now see what we've got for a new object: NONE means a new error cropped
8378 up; ANY means an old error to be ignored; otherwise, everything's ok,
8379 update the object (symbol) and continue on. */
8381 if (na
== FFESYMBOL_attrsetNONE
)
8382 ffesymbol_error (s
, name
);
8383 else if ((ffesymbol_equiv (s
) != NULL
)
8384 && (ffeequiv_common (ffesymbol_equiv (s
)) != NULL
)
8385 && (ffeequiv_common (ffesymbol_equiv (s
))
8386 != ffestc_local_
.common
.symbol
))
8388 /* Oops, just COMMONed a symbol to a different area (via equiv). */
8389 ffebad_start (FFEBAD_EQUIV_COMMON
);
8390 ffebad_here (0, ffelex_token_where_line (name
),
8391 ffelex_token_where_column (name
));
8392 ffebad_string (ffesymbol_text (ffestc_local_
.common
.symbol
));
8393 ffebad_string (ffesymbol_text (ffeequiv_common (ffesymbol_equiv (s
))));
8395 ffesymbol_set_attr (s
, na
| FFESYMBOL_attrANY
);
8396 ffesymbol_set_info (s
, ffeinfo_new_any ());
8397 ffesymbol_set_state (s
, FFESYMBOL_stateUNDERSTOOD
);
8398 ffesymbol_signal_unreported (s
);
8400 else if (!(na
& FFESYMBOL_attrsANY
))
8402 ffesymbol_set_attrs (s
, na
);
8403 ffesymbol_set_state (s
, FFESYMBOL_stateSEEN
);
8404 ffesymbol_set_common (s
, ffestc_local_
.common
.symbol
);
8405 #if FFEGLOBAL_ENABLED
8406 if (ffesymbol_is_init (s
))
8407 ffeglobal_init_common (ffestc_local_
.common
.symbol
, name
);
8409 if (ffesymbol_is_save (ffestc_local_
.common
.symbol
))
8410 ffesymbol_update_save (s
);
8411 if (ffesymbol_equiv (s
) != NULL
)
8412 { /* Is this newly COMMONed symbol involved in
8414 if (ffeequiv_common (ffesymbol_equiv (s
)) == NULL
)
8415 ffeequiv_set_common (ffesymbol_equiv (s
), /* Yes, tell equiv obj. */
8416 ffestc_local_
.common
.symbol
);
8417 #if FFEGLOBAL_ENABLED
8418 if (ffeequiv_is_init (ffesymbol_equiv (s
)))
8419 ffeglobal_init_common (ffestc_local_
.common
.symbol
, name
);
8421 if (ffesymbol_is_save (ffestc_local_
.common
.symbol
))
8422 ffeequiv_update_save (ffesymbol_equiv (s
));
8426 ffesymbol_set_dims (s
, ffestt_dimlist_as_expr (dims
, &rank
,
8430 ffesymbol_set_arraysize (s
, array_size
);
8431 ffesymbol_set_extents (s
, extents
);
8432 if (!(0 && ffe_is_90 ())
8433 && (ffebld_op (array_size
) == FFEBLD_opCONTER
)
8434 && (ffebld_constant_integerdefault (ffebld_conter (array_size
))
8437 ffebad_start (FFEBAD_ZERO_ARRAY
);
8438 ffebad_here (0, ffelex_token_where_line (name
),
8439 ffelex_token_where_column (name
));
8442 ffesymbol_set_info (s
,
8443 ffeinfo_new (ffesymbol_basictype (s
),
8444 ffesymbol_kindtype (s
),
8447 ffesymbol_where (s
),
8448 ffesymbol_size (s
)));
8450 ffesymbol_signal_unreported (s
);
8453 if (ffestc_parent_ok_
)
8455 e
= ffebld_new_symter (s
, FFEINTRIN_genNONE
, FFEINTRIN_specNONE
,
8458 ffeinfo_new (FFEINFO_basictypeNONE
,
8459 FFEINFO_kindtypeNONE
,
8463 FFETARGET_charactersizeNONE
));
8465 (ffesymbol_ptr_to_listbottom (ffestc_local_
.common
.symbol
), e
);
8468 ffestd_R547_item_object (name
, dims
);
8471 /* ffestc_R547_item_cblock -- COMMON statement for common-block-name
8473 ffestc_R547_item_cblock(name_token);
8475 Make sure name_token identifies a valid common block to be COMMONd. */
8478 ffestc_R547_item_cblock (ffelexToken name
)
8484 ffestc_check_item_ ();
8488 if (ffestc_local_
.common
.symbol
!= NULL
)
8489 ffesymbol_signal_unreported (ffestc_local_
.common
.symbol
);
8491 s
= ffesymbol_declare_cblock (name
,
8492 ffelex_token_where_line (ffesta_tokens
[0]),
8493 ffelex_token_where_column (ffesta_tokens
[0]));
8494 sa
= ffesymbol_attrs (s
);
8496 /* Figure out what kind of object we've got based on previous declarations
8497 of or references to the object. */
8499 if (!ffesymbol_is_specable (s
))
8500 na
= FFESYMBOL_attrsetNONE
;
8501 else if (sa
& FFESYMBOL_attrsANY
)
8502 na
= FFESYMBOL_attrsANY
; /* Already have an error here, say nothing. */
8503 else if (!(sa
& ~(FFESYMBOL_attrsCBLOCK
8504 | FFESYMBOL_attrsSAVECBLOCK
)))
8506 if (!(sa
& FFESYMBOL_attrsCBLOCK
))
8507 ffebld_init_list (ffesymbol_ptr_to_commonlist (s
),
8508 ffesymbol_ptr_to_listbottom (s
));
8509 na
= sa
| FFESYMBOL_attrsCBLOCK
;
8512 na
= FFESYMBOL_attrsetNONE
;
8514 /* Now see what we've got for a new object: NONE means a new error cropped
8515 up; ANY means an old error to be ignored; otherwise, everything's ok,
8516 update the object (symbol) and continue on. */
8518 if (na
== FFESYMBOL_attrsetNONE
)
8520 ffesymbol_error (s
, name
== NULL
? ffesta_tokens
[0] : name
);
8521 ffestc_parent_ok_
= FALSE
;
8523 else if (na
& FFESYMBOL_attrsANY
)
8524 ffestc_parent_ok_
= FALSE
;
8527 ffesymbol_set_attrs (s
, na
);
8528 ffesymbol_set_state (s
, FFESYMBOL_stateSEEN
);
8530 ffesymbol_update_save (s
);
8531 ffestc_parent_ok_
= TRUE
;
8534 ffestc_local_
.common
.symbol
= s
;
8536 ffestd_R547_item_cblock (name
);
8539 /* ffestc_R547_finish -- COMMON statement list complete
8541 ffestc_R547_finish();
8543 Just wrap up any local activities. */
8546 ffestc_R547_finish ()
8548 ffestc_check_finish_ ();
8552 if (ffestc_local_
.common
.symbol
!= NULL
)
8553 ffesymbol_signal_unreported (ffestc_local_
.common
.symbol
);
8555 ffestd_R547_finish ();
8558 /* ffestc_R620 -- ALLOCATE statement
8560 ffestc_R620(exprlist,stat,stat_token);
8562 Make sure the expression list is valid, then implement it. */
8566 ffestc_R620 (ffesttExprList exprlist
, ffebld stat
, ffelexToken stat_token
)
8568 ffestc_check_simple_ ();
8569 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
8571 ffestc_labeldef_branch_begin_ ();
8573 ffestd_R620 (exprlist
, stat
);
8575 if (ffestc_shriek_after1_
!= NULL
)
8576 (*ffestc_shriek_after1_
) (TRUE
);
8577 ffestc_labeldef_branch_end_ ();
8580 /* ffestc_R624 -- NULLIFY statement
8582 ffestc_R624(pointer_name_list);
8584 Make sure pointer_name_list identifies valid pointers for a NULLIFY. */
8587 ffestc_R624 (ffesttExprList pointers
)
8589 ffestc_check_simple_ ();
8590 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
8592 ffestc_labeldef_branch_begin_ ();
8594 ffestd_R624 (pointers
);
8596 if (ffestc_shriek_after1_
!= NULL
)
8597 (*ffestc_shriek_after1_
) (TRUE
);
8598 ffestc_labeldef_branch_end_ ();
8601 /* ffestc_R625 -- DEALLOCATE statement
8603 ffestc_R625(exprlist,stat,stat_token);
8605 Make sure the equivalence is valid, then implement it. */
8608 ffestc_R625 (ffesttExprList exprlist
, ffebld stat
, ffelexToken stat_token
)
8610 ffestc_check_simple_ ();
8611 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
8613 ffestc_labeldef_branch_begin_ ();
8615 ffestd_R625 (exprlist
, stat
);
8617 if (ffestc_shriek_after1_
!= NULL
)
8618 (*ffestc_shriek_after1_
) (TRUE
);
8619 ffestc_labeldef_branch_end_ ();
8623 /* ffestc_let -- R1213 or R737
8627 Verify that R1213 defined-assignment or R737 assignment-stmt are
8628 valid here, figure out which one, and implement. */
8632 ffestc_let (ffebld dest
, ffebld source
, ffelexToken source_token
)
8634 ffestc_R737 (dest
, source
, source_token
);
8638 /* ffestc_R737 -- Assignment statement
8640 ffestc_R737(dest_expr,source_expr,source_token);
8642 Make sure the assignment is valid. */
8645 ffestc_R737 (ffebld dest
, ffebld source
, ffelexToken source_token
)
8647 ffestc_check_simple_ ();
8649 switch (ffestw_state (ffestw_stack_top ()))
8652 case FFESTV_stateWHERE
:
8653 case FFESTV_stateWHERETHEN
:
8654 if (ffestc_order_actionwhere_ () != FFESTC_orderOK_
)
8656 ffestc_labeldef_useless_ ();
8658 ffestd_R737B (dest
, source
);
8660 if (ffestc_shriek_after1_
!= NULL
)
8661 (*ffestc_shriek_after1_
) (TRUE
);
8669 if (ffestc_order_actionwhere_ () != FFESTC_orderOK_
)
8671 ffestc_labeldef_branch_begin_ ();
8673 source
= ffeexpr_convert_expr (source
, source_token
, dest
, ffesta_tokens
[0],
8674 FFEEXPR_contextLET
);
8676 ffestd_R737A (dest
, source
);
8678 if (ffestc_shriek_after1_
!= NULL
)
8679 (*ffestc_shriek_after1_
) (TRUE
);
8680 ffestc_labeldef_branch_end_ ();
8683 /* ffestc_R738 -- Pointer assignment statement
8685 ffestc_R738(dest_expr,source_expr,source_token);
8687 Make sure the assignment is valid. */
8691 ffestc_R738 (ffebld dest
, ffebld source
, ffelexToken source_token
)
8693 ffestc_check_simple_ ();
8694 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
8696 ffestc_labeldef_branch_begin_ ();
8698 ffestd_R738 (dest
, source
);
8700 if (ffestc_shriek_after1_
!= NULL
)
8701 (*ffestc_shriek_after1_
) (TRUE
);
8702 ffestc_labeldef_branch_end_ ();
8705 /* ffestc_R740 -- WHERE statement
8707 ffestc_R740(expr,expr_token);
8709 Make sure statement is valid here; implement. */
8712 ffestc_R740 (ffebld expr
, ffelexToken expr_token
)
8716 ffestc_check_simple_ ();
8717 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
8719 ffestc_labeldef_branch_begin_ ();
8721 b
= ffestw_update (ffestw_push (NULL
));
8722 ffestw_set_top_do (b
, ffestw_top_do (ffestw_previous (b
)));
8723 ffestw_set_state (b
, FFESTV_stateWHERE
);
8724 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
8725 ffestw_set_shriek (b
, ffestc_shriek_where_lost_
);
8729 /* Leave label finishing to next statement. */
8733 /* ffestc_R742 -- WHERE-construct statement
8735 ffestc_R742(expr,expr_token);
8737 Make sure statement is valid here; implement. */
8740 ffestc_R742 (ffebld expr
, ffelexToken expr_token
)
8744 ffestc_check_simple_ ();
8745 if (ffestc_order_exec_ () != FFESTC_orderOK_
)
8747 ffestc_labeldef_notloop_probably_this_wont_work_ ();
8749 b
= ffestw_update (ffestw_push (NULL
));
8750 ffestw_set_top_do (b
, ffestw_top_do (ffestw_previous (b
)));
8751 ffestw_set_state (b
, FFESTV_stateWHERETHEN
);
8752 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
8753 ffestw_set_shriek (b
, ffestc_shriek_wherethen_
);
8754 ffestw_set_substate (b
, 0); /* Haven't seen ELSEWHERE yet. */
8759 /* ffestc_R744 -- ELSE WHERE statement
8763 Make sure ffestc_kind_ identifies a WHERE block.
8764 Implement the ELSE of the current WHERE block. */
8769 ffestc_check_simple_ ();
8770 if (ffestc_order_where_ () != FFESTC_orderOK_
)
8772 ffestc_labeldef_useless_ ();
8774 if (ffestw_substate (ffestw_stack_top ()) != 0)
8776 ffebad_start (FFEBAD_SECOND_ELSE_WHERE
);
8777 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
8778 ffelex_token_where_column (ffesta_tokens
[0]));
8779 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
8783 ffestw_set_substate (ffestw_stack_top (), 1); /* Saw ELSEWHERE. */
8788 /* ffestc_R745 -- END WHERE statement
8792 Make sure ffestc_kind_ identifies a WHERE block.
8793 Implement the end of the current WHERE block. */
8798 ffestc_check_simple_ ();
8799 if (ffestc_order_where_ () != FFESTC_orderOK_
)
8801 ffestc_labeldef_useless_ ();
8803 ffestc_shriek_wherethen_ (TRUE
);
8807 /* ffestc_R803 -- Block IF (IF-THEN) statement
8809 ffestc_R803(construct_name,expr,expr_token);
8811 Make sure statement is valid here; implement. */
8814 ffestc_R803 (ffelexToken construct_name
, ffebld expr
,
8815 ffelexToken expr_token UNUSED
)
8820 ffestc_check_simple_ ();
8821 if (ffestc_order_exec_ () != FFESTC_orderOK_
)
8823 ffestc_labeldef_notloop_ ();
8825 b
= ffestw_update (ffestw_push (NULL
));
8826 ffestw_set_top_do (b
, ffestw_top_do (ffestw_previous (b
)));
8827 ffestw_set_state (b
, FFESTV_stateIFTHEN
);
8828 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
8829 ffestw_set_shriek (b
, ffestc_shriek_ifthen_
);
8830 ffestw_set_substate (b
, 0); /* Haven't seen ELSE yet. */
8832 if (construct_name
== NULL
)
8833 ffestw_set_name (b
, NULL
);
8836 ffestw_set_name (b
, ffelex_token_use (construct_name
));
8838 s
= ffesymbol_declare_local (construct_name
, FALSE
);
8840 if (ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
8842 ffesymbol_set_state (s
, FFESYMBOL_stateUNDERSTOOD
);
8843 ffesymbol_set_info (s
,
8844 ffeinfo_new (FFEINFO_basictypeNONE
,
8845 FFEINFO_kindtypeNONE
,
8847 FFEINFO_kindCONSTRUCT
,
8849 FFETARGET_charactersizeNONE
));
8850 s
= ffecom_sym_learned (s
);
8851 ffesymbol_signal_unreported (s
);
8854 ffesymbol_error (s
, construct_name
);
8857 ffestd_R803 (construct_name
, expr
);
8860 /* ffestc_R804 -- ELSE IF statement
8862 ffestc_R804(expr,expr_token,name_token);
8864 Make sure ffestc_kind_ identifies an IF block. If not
8865 NULL, make sure name_token gives the correct name. Implement the else
8869 ffestc_R804 (ffebld expr
, ffelexToken expr_token UNUSED
,
8872 ffestc_check_simple_ ();
8873 if (ffestc_order_ifthen_ () != FFESTC_orderOK_
)
8875 ffestc_labeldef_useless_ ();
8879 if (ffestw_name (ffestw_stack_top ()) == NULL
)
8881 ffebad_start (FFEBAD_CONSTRUCT_NOT_NAMED
);
8882 ffebad_here (0, ffelex_token_where_line (name
),
8883 ffelex_token_where_column (name
));
8884 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
8887 else if (ffelex_token_strcmp (name
,
8888 ffestw_name (ffestw_stack_top ()))
8891 ffebad_start (FFEBAD_CONSTRUCT_WRONG_NAME
);
8892 ffebad_here (0, ffelex_token_where_line (name
),
8893 ffelex_token_where_column (name
));
8894 ffebad_here (1, ffelex_token_where_line (ffestw_name (ffestw_stack_top ())),
8895 ffelex_token_where_column (ffestw_name (ffestw_stack_top ())));
8900 if (ffestw_substate (ffestw_stack_top ()) != 0)
8902 ffebad_start (FFEBAD_AFTER_ELSE
);
8903 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
8904 ffelex_token_where_column (ffesta_tokens
[0]));
8905 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
8907 return; /* Don't upset back end with ELSEIF
8911 ffestd_R804 (expr
, name
);
8914 /* ffestc_R805 -- ELSE statement
8916 ffestc_R805(name_token);
8918 Make sure ffestc_kind_ identifies an IF block. If not
8919 NULL, make sure name_token gives the correct name. Implement the ELSE
8923 ffestc_R805 (ffelexToken name
)
8925 ffestc_check_simple_ ();
8926 if (ffestc_order_ifthen_ () != FFESTC_orderOK_
)
8928 ffestc_labeldef_useless_ ();
8932 if (ffestw_name (ffestw_stack_top ()) == NULL
)
8934 ffebad_start (FFEBAD_CONSTRUCT_NOT_NAMED
);
8935 ffebad_here (0, ffelex_token_where_line (name
),
8936 ffelex_token_where_column (name
));
8937 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
8940 else if (ffelex_token_strcmp (name
, ffestw_name (ffestw_stack_top ())) != 0)
8942 ffebad_start (FFEBAD_CONSTRUCT_WRONG_NAME
);
8943 ffebad_here (0, ffelex_token_where_line (name
),
8944 ffelex_token_where_column (name
));
8945 ffebad_here (1, ffelex_token_where_line (ffestw_name (ffestw_stack_top ())),
8946 ffelex_token_where_column (ffestw_name (ffestw_stack_top ())));
8951 if (ffestw_substate (ffestw_stack_top ()) != 0)
8953 ffebad_start (FFEBAD_AFTER_ELSE
);
8954 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
8955 ffelex_token_where_column (ffesta_tokens
[0]));
8956 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
8958 return; /* Tell back end about only one ELSE. */
8961 ffestw_set_substate (ffestw_stack_top (), 1); /* Saw ELSE. */
8966 /* ffestc_R806 -- END IF statement
8968 ffestc_R806(name_token);
8970 Make sure ffestc_kind_ identifies an IF block. If not
8971 NULL, make sure name_token gives the correct name. Implement the end
8975 ffestc_R806 (ffelexToken name
)
8977 ffestc_check_simple_ ();
8978 if (ffestc_order_ifthen_ () != FFESTC_orderOK_
)
8980 ffestc_labeldef_endif_ ();
8984 if (ffestw_name (ffestw_stack_top ()) != NULL
)
8986 ffebad_start (FFEBAD_CONSTRUCT_NAMED
);
8987 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
8988 ffelex_token_where_column (ffesta_tokens
[0]));
8989 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
8995 if (ffestw_name (ffestw_stack_top ()) == NULL
)
8997 ffebad_start (FFEBAD_CONSTRUCT_NOT_NAMED
);
8998 ffebad_here (0, ffelex_token_where_line (name
),
8999 ffelex_token_where_column (name
));
9000 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
9003 else if (ffelex_token_strcmp (name
, ffestw_name (ffestw_stack_top ())) != 0)
9005 ffebad_start (FFEBAD_CONSTRUCT_WRONG_NAME
);
9006 ffebad_here (0, ffelex_token_where_line (name
),
9007 ffelex_token_where_column (name
));
9008 ffebad_here (1, ffelex_token_where_line (ffestw_name (ffestw_stack_top ())),
9009 ffelex_token_where_column (ffestw_name (ffestw_stack_top ())));
9014 ffestc_shriek_ifthen_ (TRUE
);
9017 /* ffestc_R807 -- Logical IF statement
9019 ffestc_R807(expr,expr_token);
9021 Make sure statement is valid here; implement. */
9024 ffestc_R807 (ffebld expr
, ffelexToken expr_token UNUSED
)
9028 ffestc_check_simple_ ();
9029 if (ffestc_order_action_ () != FFESTC_orderOK_
)
9031 ffestc_labeldef_branch_begin_ ();
9033 b
= ffestw_update (ffestw_push (NULL
));
9034 ffestw_set_top_do (b
, ffestw_top_do (ffestw_previous (b
)));
9035 ffestw_set_state (b
, FFESTV_stateIF
);
9036 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
9037 ffestw_set_shriek (b
, ffestc_shriek_if_lost_
);
9041 /* Do the label finishing in the next statement. */
9045 /* ffestc_R809 -- SELECT CASE statement
9047 ffestc_R809(construct_name,expr,expr_token);
9049 Make sure statement is valid here; implement. */
9052 ffestc_R809 (ffelexToken construct_name
, ffebld expr
, ffelexToken expr_token
)
9059 ffestc_check_simple_ ();
9060 if (ffestc_order_exec_ () != FFESTC_orderOK_
)
9062 ffestc_labeldef_notloop_ ();
9064 b
= ffestw_update (ffestw_push (NULL
));
9065 ffestw_set_top_do (b
, ffestw_top_do (ffestw_previous (b
)));
9066 ffestw_set_state (b
, FFESTV_stateSELECT0
);
9067 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
9068 ffestw_set_shriek (b
, ffestc_shriek_select_
);
9069 ffestw_set_substate (b
, 0); /* Haven't seen CASE DEFAULT yet. */
9071 /* Init block to manage CASE list. */
9073 pool
= malloc_pool_new ("Select", ffe_pool_any_unit (), 1024);
9074 s
= (ffestwSelect
) malloc_new_kp (pool
, "Select", sizeof (*s
));
9075 s
->first_rel
= (ffestwCase
) &s
->first_rel
;
9076 s
->last_rel
= (ffestwCase
) &s
->first_rel
;
9077 s
->first_stmt
= (ffestwCase
) &s
->first_rel
;
9078 s
->last_stmt
= (ffestwCase
) &s
->first_rel
;
9081 s
->t
= ffelex_token_use (expr_token
);
9082 s
->type
= ffeinfo_basictype (ffebld_info (expr
));
9083 s
->kindtype
= ffeinfo_kindtype (ffebld_info (expr
));
9084 ffestw_set_select (b
, s
);
9086 if (construct_name
== NULL
)
9087 ffestw_set_name (b
, NULL
);
9090 ffestw_set_name (b
, ffelex_token_use (construct_name
));
9092 sym
= ffesymbol_declare_local (construct_name
, FALSE
);
9094 if (ffesymbol_state (sym
) == FFESYMBOL_stateNONE
)
9096 ffesymbol_set_state (sym
, FFESYMBOL_stateUNDERSTOOD
);
9097 ffesymbol_set_info (sym
,
9098 ffeinfo_new (FFEINFO_basictypeNONE
,
9099 FFEINFO_kindtypeNONE
, 0,
9100 FFEINFO_kindCONSTRUCT
,
9102 FFETARGET_charactersizeNONE
));
9103 sym
= ffecom_sym_learned (sym
);
9104 ffesymbol_signal_unreported (sym
);
9107 ffesymbol_error (sym
, construct_name
);
9110 ffestd_R809 (construct_name
, expr
);
9113 /* ffestc_R810 -- CASE statement
9115 ffestc_R810(case_value_range_list,name);
9117 If case_value_range_list is NULL, it's CASE DEFAULT. name is the case-
9118 construct-name. Make sure no more than one CASE DEFAULT is present for
9119 a given case-construct and that there aren't any overlapping ranges or
9120 duplicate case values. */
9123 ffestc_R810 (ffesttCaseList cases
, ffelexToken name
)
9125 ffesttCaseList caseobj
;
9128 ffebldConstant expr1c
, expr2c
;
9130 ffestc_check_simple_ ();
9131 if (ffestc_order_selectcase_ () != FFESTC_orderOK_
)
9133 ffestc_labeldef_useless_ ();
9135 s
= ffestw_select (ffestw_stack_top ());
9137 if (ffestw_state (ffestw_stack_top ()) == FFESTV_stateSELECT0
)
9139 #if 0 /* Not sure we want to have msgs point here
9140 instead of SELECT CASE. */
9141 ffestw_update (NULL
); /* Update state line/col info. */
9143 ffestw_set_state (ffestw_stack_top (), FFESTV_stateSELECT1
);
9148 if (ffestw_name (ffestw_stack_top ()) == NULL
)
9150 ffebad_start (FFEBAD_CONSTRUCT_NOT_NAMED
);
9151 ffebad_here (0, ffelex_token_where_line (name
),
9152 ffelex_token_where_column (name
));
9153 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
9156 else if (ffelex_token_strcmp (name
,
9157 ffestw_name (ffestw_stack_top ()))
9160 ffebad_start (FFEBAD_CONSTRUCT_WRONG_NAME
);
9161 ffebad_here (0, ffelex_token_where_line (name
),
9162 ffelex_token_where_column (name
));
9163 ffebad_here (1, ffelex_token_where_line (ffestw_name (ffestw_stack_top ())),
9164 ffelex_token_where_column (ffestw_name (ffestw_stack_top ())));
9171 if (ffestw_substate (ffestw_stack_top ()) != 0)
9173 ffebad_start (FFEBAD_CASE_SECOND_DEFAULT
);
9174 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
9175 ffelex_token_where_column (ffesta_tokens
[0]));
9176 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
9180 ffestw_set_substate (ffestw_stack_top (), 1); /* Saw ELSE. */
9183 { /* For each case, try to fit into sorted list
9185 for (caseobj
= cases
->next
; caseobj
!= cases
; caseobj
= caseobj
->next
)
9187 if ((caseobj
->expr1
== NULL
)
9189 || (caseobj
->expr2
== NULL
)))
9191 ffebad_start (FFEBAD_CASE_BAD_RANGE
);
9192 ffebad_here (0, ffelex_token_where_line (caseobj
->t
),
9193 ffelex_token_where_column (caseobj
->t
));
9198 if (((caseobj
->expr1
!= NULL
)
9199 && ((ffeinfo_basictype (ffebld_info (caseobj
->expr1
))
9201 || (ffeinfo_kindtype (ffebld_info (caseobj
->expr1
))
9203 || ((caseobj
->range
)
9204 && (caseobj
->expr2
!= NULL
)
9205 && ((ffeinfo_basictype (ffebld_info (caseobj
->expr2
))
9207 || (ffeinfo_kindtype (ffebld_info (caseobj
->expr2
))
9210 ffebad_start (FFEBAD_CASE_TYPE_DISAGREE
);
9211 ffebad_here (0, ffelex_token_where_line (caseobj
->t
),
9212 ffelex_token_where_column (caseobj
->t
));
9213 ffebad_here (1, ffelex_token_where_line (s
->t
),
9214 ffelex_token_where_column (s
->t
));
9219 if ((s
->type
== FFEINFO_basictypeLOGICAL
) && (caseobj
->range
))
9221 ffebad_start (FFEBAD_CASE_LOGICAL_RANGE
);
9222 ffebad_here (0, ffelex_token_where_line (caseobj
->t
),
9223 ffelex_token_where_column (caseobj
->t
));
9228 if (caseobj
->expr1
== NULL
)
9230 else if (ffebld_op (caseobj
->expr1
) != FFEBLD_opCONTER
)
9231 continue; /* opANY. */
9233 expr1c
= ffebld_conter (caseobj
->expr1
);
9235 if (!caseobj
->range
)
9236 expr2c
= expr1c
; /* expr1c and expr2c are NOT NULL in this
9238 else if (caseobj
->expr2
== NULL
)
9240 else if (ffebld_op (caseobj
->expr2
) != FFEBLD_opCONTER
)
9241 continue; /* opANY. */
9243 expr2c
= ffebld_conter (caseobj
->expr2
);
9246 { /* "CASE (:high)", must be first in list. */
9248 if ((c
!= (ffestwCase
) &s
->first_rel
)
9249 && ((c
->low
== NULL
)
9250 || (ffebld_constant_cmp (expr2c
, c
->low
) >= 0)))
9251 { /* Other "CASE (:high)" or lowest "CASE
9252 (low[:high])" low. */
9253 ffebad_start (FFEBAD_CASE_DUPLICATE
);
9254 ffebad_here (0, ffelex_token_where_line (caseobj
->t
),
9255 ffelex_token_where_column (caseobj
->t
));
9256 ffebad_here (1, ffelex_token_where_line (c
->t
),
9257 ffelex_token_where_column (c
->t
));
9262 else if (expr2c
== NULL
)
9263 { /* "CASE (low:)", must be last in list. */
9265 if ((c
!= (ffestwCase
) &s
->first_rel
)
9266 && ((c
->high
== NULL
)
9267 || (ffebld_constant_cmp (expr1c
, c
->high
) <= 0)))
9268 { /* Other "CASE (low:)" or lowest "CASE
9269 ([low:]high)" high. */
9270 ffebad_start (FFEBAD_CASE_DUPLICATE
);
9271 ffebad_here (0, ffelex_token_where_line (caseobj
->t
),
9272 ffelex_token_where_column (caseobj
->t
));
9273 ffebad_here (1, ffelex_token_where_line (c
->t
),
9274 ffelex_token_where_column (c
->t
));
9278 c
= c
->next_rel
; /* Same as c = (ffestwCase) &s->first;. */
9281 { /* (expr1c != NULL) && (expr2c != NULL). */
9282 if (ffebld_constant_cmp (expr1c
, expr2c
) > 0)
9283 { /* Such as "CASE (3:1)" or "CASE ('B':'A')". */
9284 ffebad_start (FFEBAD_CASE_RANGE_USELESS
); /* Warn/inform only. */
9285 ffebad_here (0, ffelex_token_where_line (caseobj
->t
),
9286 ffelex_token_where_column (caseobj
->t
));
9290 for (c
= s
->first_rel
;
9291 (c
!= (ffestwCase
) &s
->first_rel
)
9292 && ((c
->low
== NULL
)
9293 || (ffebld_constant_cmp (expr1c
, c
->low
) > 0));
9296 nc
= c
; /* Which one to report? */
9297 if (((c
!= (ffestwCase
) &s
->first_rel
)
9298 && (ffebld_constant_cmp (expr2c
, c
->low
) >= 0))
9299 || (((nc
= c
->previous_rel
) != (ffestwCase
) &s
->first_rel
)
9300 && (ffebld_constant_cmp (expr1c
, nc
->high
) <= 0)))
9301 { /* Interference with range in case nc. */
9302 ffebad_start (FFEBAD_CASE_DUPLICATE
);
9303 ffebad_here (0, ffelex_token_where_line (caseobj
->t
),
9304 ffelex_token_where_column (caseobj
->t
));
9305 ffebad_here (1, ffelex_token_where_line (nc
->t
),
9306 ffelex_token_where_column (nc
->t
));
9312 /* If we reach here for this case range/value, it's ok (sorts into
9313 the list of ranges/values) so we give it its own case object
9314 sorted into the list of case statements. */
9316 nc
= malloc_new_kp (s
->pool
, "Case range", sizeof (*nc
));
9318 nc
->previous_rel
= c
->previous_rel
;
9319 nc
->next_stmt
= (ffestwCase
) &s
->first_rel
;
9320 nc
->previous_stmt
= s
->last_stmt
;
9323 nc
->casenum
= s
->cases
;
9324 nc
->t
= ffelex_token_use (caseobj
->t
);
9325 nc
->next_rel
->previous_rel
= nc
;
9326 nc
->previous_rel
->next_rel
= nc
;
9327 nc
->next_stmt
->previous_stmt
= nc
;
9328 nc
->previous_stmt
->next_stmt
= nc
;
9332 ffestd_R810 ((cases
== NULL
) ? 0 : s
->cases
);
9334 s
->cases
++; /* Increment # of cases. */
9337 /* ffestc_R811 -- END SELECT statement
9339 ffestc_R811(name_token);
9341 Make sure ffestc_kind_ identifies a SELECT block. If not
9342 NULL, make sure name_token gives the correct name. Implement the end
9343 of the SELECT block. */
9346 ffestc_R811 (ffelexToken name
)
9348 ffestc_check_simple_ ();
9349 if (ffestc_order_selectcase_ () != FFESTC_orderOK_
)
9351 ffestc_labeldef_notloop_ ();
9355 if (ffestw_name (ffestw_stack_top ()) != NULL
)
9357 ffebad_start (FFEBAD_CONSTRUCT_NAMED
);
9358 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
9359 ffelex_token_where_column (ffesta_tokens
[0]));
9360 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
9366 if (ffestw_name (ffestw_stack_top ()) == NULL
)
9368 ffebad_start (FFEBAD_CONSTRUCT_NOT_NAMED
);
9369 ffebad_here (0, ffelex_token_where_line (name
),
9370 ffelex_token_where_column (name
));
9371 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
9374 else if (ffelex_token_strcmp (name
,
9375 ffestw_name (ffestw_stack_top ()))
9378 ffebad_start (FFEBAD_CONSTRUCT_WRONG_NAME
);
9379 ffebad_here (0, ffelex_token_where_line (name
),
9380 ffelex_token_where_column (name
));
9381 ffebad_here (1, ffelex_token_where_line (ffestw_name (ffestw_stack_top ())),
9382 ffelex_token_where_column (ffestw_name (ffestw_stack_top ())));
9387 ffestc_shriek_select_ (TRUE
);
9390 /* ffestc_R819A -- Iterative labeled DO statement
9392 ffestc_R819A(construct_name,label_token,expr,expr_token);
9394 Make sure statement is valid here; implement. */
9397 ffestc_R819A (ffelexToken construct_name
, ffelexToken label_token
, ffebld var
,
9398 ffelexToken var_token
, ffebld start
, ffelexToken start_token
, ffebld end
,
9399 ffelexToken end_token
, ffebld incr
, ffelexToken incr_token
)
9406 ffestc_check_simple_ ();
9407 if (ffestc_order_exec_ () != FFESTC_orderOK_
)
9409 ffestc_labeldef_notloop_ ();
9411 if (!ffestc_labelref_is_loopend_ (label_token
, &label
))
9414 b
= ffestw_update (ffestw_push (NULL
));
9415 ffestw_set_top_do (b
, b
);
9416 ffestw_set_state (b
, FFESTV_stateDO
);
9417 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
9418 ffestw_set_shriek (b
, ffestc_shriek_do_
);
9419 ffestw_set_label (b
, label
);
9420 switch (ffebld_op (var
))
9422 case FFEBLD_opSYMTER
:
9423 if ((ffeinfo_basictype (ffebld_info (var
)) == FFEINFO_basictypeREAL
)
9424 && ffe_is_warn_surprising ())
9426 ffebad_start (FFEBAD_DO_REAL
); /* See error message!!! */
9427 ffebad_here (0, ffelex_token_where_line (var_token
),
9428 ffelex_token_where_column (var_token
));
9429 ffebad_string (ffesymbol_text (ffebld_symter (var
)));
9432 if (!ffesymbol_is_doiter (varsym
= ffebld_symter (var
)))
9433 { /* Presumably already complained about by
9435 ffesymbol_set_is_doiter (varsym
, TRUE
);
9436 ffestw_set_do_iter_var (b
, varsym
);
9437 ffestw_set_do_iter_var_t (b
, ffelex_token_use (var_token
));
9442 ffestw_set_do_iter_var (b
, NULL
);
9443 ffestw_set_do_iter_var_t (b
, NULL
);
9447 assert ("bad iter var" == NULL
);
9451 if (construct_name
== NULL
)
9452 ffestw_set_name (b
, NULL
);
9455 ffestw_set_name (b
, ffelex_token_use (construct_name
));
9457 s
= ffesymbol_declare_local (construct_name
, FALSE
);
9459 if (ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
9461 ffesymbol_set_state (s
, FFESYMBOL_stateUNDERSTOOD
);
9462 ffesymbol_set_info (s
,
9463 ffeinfo_new (FFEINFO_basictypeNONE
,
9464 FFEINFO_kindtypeNONE
,
9466 FFEINFO_kindCONSTRUCT
,
9468 FFETARGET_charactersizeNONE
));
9469 s
= ffecom_sym_learned (s
);
9470 ffesymbol_signal_unreported (s
);
9473 ffesymbol_error (s
, construct_name
);
9478 incr
= ffebld_new_conter (ffebld_constant_new_integerdefault_val (1));
9479 ffebld_set_info (incr
, ffeinfo_new
9480 (FFEINFO_basictypeINTEGER
,
9481 FFEINFO_kindtypeINTEGERDEFAULT
,
9484 FFEINFO_whereCONSTANT
,
9485 FFETARGET_charactersizeNONE
));
9488 start
= ffeexpr_convert_expr (start
, start_token
, var
, var_token
,
9489 FFEEXPR_contextLET
);
9490 end
= ffeexpr_convert_expr (end
, end_token
, var
, var_token
,
9491 FFEEXPR_contextLET
);
9492 incr
= ffeexpr_convert_expr (incr
, incr_token
, var
, var_token
,
9493 FFEEXPR_contextLET
);
9495 ffestd_R819A (construct_name
, label
, var
,
9501 /* ffestc_R819B -- Labeled DO WHILE statement
9503 ffestc_R819B(construct_name,label_token,expr,expr_token);
9505 Make sure statement is valid here; implement. */
9508 ffestc_R819B (ffelexToken construct_name
, ffelexToken label_token
,
9509 ffebld expr
, ffelexToken expr_token UNUSED
)
9515 ffestc_check_simple_ ();
9516 if (ffestc_order_exec_ () != FFESTC_orderOK_
)
9518 ffestc_labeldef_notloop_ ();
9520 if (!ffestc_labelref_is_loopend_ (label_token
, &label
))
9523 b
= ffestw_update (ffestw_push (NULL
));
9524 ffestw_set_top_do (b
, b
);
9525 ffestw_set_state (b
, FFESTV_stateDO
);
9526 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
9527 ffestw_set_shriek (b
, ffestc_shriek_do_
);
9528 ffestw_set_label (b
, label
);
9529 ffestw_set_do_iter_var (b
, NULL
);
9530 ffestw_set_do_iter_var_t (b
, NULL
);
9532 if (construct_name
== NULL
)
9533 ffestw_set_name (b
, NULL
);
9536 ffestw_set_name (b
, ffelex_token_use (construct_name
));
9538 s
= ffesymbol_declare_local (construct_name
, FALSE
);
9540 if (ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
9542 ffesymbol_set_state (s
, FFESYMBOL_stateUNDERSTOOD
);
9543 ffesymbol_set_info (s
,
9544 ffeinfo_new (FFEINFO_basictypeNONE
,
9545 FFEINFO_kindtypeNONE
,
9547 FFEINFO_kindCONSTRUCT
,
9549 FFETARGET_charactersizeNONE
));
9550 s
= ffecom_sym_learned (s
);
9551 ffesymbol_signal_unreported (s
);
9554 ffesymbol_error (s
, construct_name
);
9557 ffestd_R819B (construct_name
, label
, expr
);
9560 /* ffestc_R820A -- Iterative nonlabeled DO statement
9562 ffestc_R820A(construct_name,expr,expr_token);
9564 Make sure statement is valid here; implement. */
9567 ffestc_R820A (ffelexToken construct_name
, ffebld var
, ffelexToken var_token
,
9568 ffebld start
, ffelexToken start_token
, ffebld end
, ffelexToken end_token
,
9569 ffebld incr
, ffelexToken incr_token
)
9575 ffestc_check_simple_ ();
9576 if (ffestc_order_exec_ () != FFESTC_orderOK_
)
9578 ffestc_labeldef_notloop_ ();
9580 b
= ffestw_update (ffestw_push (NULL
));
9581 ffestw_set_top_do (b
, b
);
9582 ffestw_set_state (b
, FFESTV_stateDO
);
9583 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
9584 ffestw_set_shriek (b
, ffestc_shriek_do_
);
9585 ffestw_set_label (b
, NULL
);
9586 switch (ffebld_op (var
))
9588 case FFEBLD_opSYMTER
:
9589 if ((ffeinfo_basictype (ffebld_info (var
)) == FFEINFO_basictypeREAL
)
9590 && ffe_is_warn_surprising ())
9592 ffebad_start (FFEBAD_DO_REAL
); /* See error message!!! */
9593 ffebad_here (0, ffelex_token_where_line (var_token
),
9594 ffelex_token_where_column (var_token
));
9595 ffebad_string (ffesymbol_text (ffebld_symter (var
)));
9598 if (!ffesymbol_is_doiter (varsym
= ffebld_symter (var
)))
9599 { /* Presumably already complained about by
9601 ffesymbol_set_is_doiter (varsym
, TRUE
);
9602 ffestw_set_do_iter_var (b
, varsym
);
9603 ffestw_set_do_iter_var_t (b
, ffelex_token_use (var_token
));
9608 ffestw_set_do_iter_var (b
, NULL
);
9609 ffestw_set_do_iter_var_t (b
, NULL
);
9613 assert ("bad iter var" == NULL
);
9617 if (construct_name
== NULL
)
9618 ffestw_set_name (b
, NULL
);
9621 ffestw_set_name (b
, ffelex_token_use (construct_name
));
9623 s
= ffesymbol_declare_local (construct_name
, FALSE
);
9625 if (ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
9627 ffesymbol_set_state (s
, FFESYMBOL_stateUNDERSTOOD
);
9628 ffesymbol_set_info (s
,
9629 ffeinfo_new (FFEINFO_basictypeNONE
,
9630 FFEINFO_kindtypeNONE
,
9632 FFEINFO_kindCONSTRUCT
,
9634 FFETARGET_charactersizeNONE
));
9635 s
= ffecom_sym_learned (s
);
9636 ffesymbol_signal_unreported (s
);
9639 ffesymbol_error (s
, construct_name
);
9644 incr
= ffebld_new_conter (ffebld_constant_new_integerdefault_val (1));
9645 ffebld_set_info (incr
, ffeinfo_new
9646 (FFEINFO_basictypeINTEGER
,
9647 FFEINFO_kindtypeINTEGERDEFAULT
,
9650 FFEINFO_whereCONSTANT
,
9651 FFETARGET_charactersizeNONE
));
9654 start
= ffeexpr_convert_expr (start
, start_token
, var
, var_token
,
9655 FFEEXPR_contextLET
);
9656 end
= ffeexpr_convert_expr (end
, end_token
, var
, var_token
,
9657 FFEEXPR_contextLET
);
9658 incr
= ffeexpr_convert_expr (incr
, incr_token
, var
, var_token
,
9659 FFEEXPR_contextLET
);
9662 if ((ffebld_op (incr
) == FFEBLD_opCONTER
)
9663 && (ffebld_constant_is_zero (ffebld_conter (incr
))))
9665 ffebad_start (FFEBAD_DO_STEP_ZERO
);
9666 ffebad_here (0, ffelex_token_where_line (incr_token
),
9667 ffelex_token_where_column (incr_token
));
9668 ffebad_string ("Iterative DO loop");
9673 ffestd_R819A (construct_name
, NULL
, var
,
9679 /* ffestc_R820B -- Nonlabeled DO WHILE statement
9681 ffestc_R820B(construct_name,expr,expr_token);
9683 Make sure statement is valid here; implement. */
9686 ffestc_R820B (ffelexToken construct_name
, ffebld expr
,
9687 ffelexToken expr_token UNUSED
)
9692 ffestc_check_simple_ ();
9693 if (ffestc_order_exec_ () != FFESTC_orderOK_
)
9695 ffestc_labeldef_notloop_ ();
9697 b
= ffestw_update (ffestw_push (NULL
));
9698 ffestw_set_top_do (b
, b
);
9699 ffestw_set_state (b
, FFESTV_stateDO
);
9700 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
9701 ffestw_set_shriek (b
, ffestc_shriek_do_
);
9702 ffestw_set_label (b
, NULL
);
9703 ffestw_set_do_iter_var (b
, NULL
);
9704 ffestw_set_do_iter_var_t (b
, NULL
);
9706 if (construct_name
== NULL
)
9707 ffestw_set_name (b
, NULL
);
9710 ffestw_set_name (b
, ffelex_token_use (construct_name
));
9712 s
= ffesymbol_declare_local (construct_name
, FALSE
);
9714 if (ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
9716 ffesymbol_set_state (s
, FFESYMBOL_stateUNDERSTOOD
);
9717 ffesymbol_set_info (s
,
9718 ffeinfo_new (FFEINFO_basictypeNONE
,
9719 FFEINFO_kindtypeNONE
,
9721 FFEINFO_kindCONSTRUCT
,
9723 FFETARGET_charactersizeNONE
));
9724 s
= ffecom_sym_learned (s
);
9725 ffesymbol_signal_unreported (s
);
9728 ffesymbol_error (s
, construct_name
);
9731 ffestd_R819B (construct_name
, NULL
, expr
);
9734 /* ffestc_R825 -- END DO statement
9736 ffestc_R825(name_token);
9738 Make sure ffestc_kind_ identifies a DO block. If not
9739 NULL, make sure name_token gives the correct name. Implement the end
9743 ffestc_R825 (ffelexToken name
)
9745 ffestc_check_simple_ ();
9746 if (ffestc_order_do_ () != FFESTC_orderOK_
)
9748 ffestc_labeldef_branch_begin_ ();
9752 if (ffestw_name (ffestw_stack_top ()) != NULL
)
9754 ffebad_start (FFEBAD_CONSTRUCT_NAMED
);
9755 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
9756 ffelex_token_where_column (ffesta_tokens
[0]));
9757 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
9763 if (ffestw_name (ffestw_stack_top ()) == NULL
)
9765 ffebad_start (FFEBAD_CONSTRUCT_NOT_NAMED
);
9766 ffebad_here (0, ffelex_token_where_line (name
),
9767 ffelex_token_where_column (name
));
9768 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
9771 else if (ffelex_token_strcmp (name
,
9772 ffestw_name (ffestw_stack_top ()))
9775 ffebad_start (FFEBAD_CONSTRUCT_WRONG_NAME
);
9776 ffebad_here (0, ffelex_token_where_line (name
),
9777 ffelex_token_where_column (name
));
9778 ffebad_here (1, ffelex_token_where_line (ffestw_name (ffestw_stack_top ())),
9779 ffelex_token_where_column (ffestw_name (ffestw_stack_top ())));
9784 if (ffesta_label_token
== NULL
)
9785 { /* If top of stack has label, its an error! */
9786 if (ffestw_label (ffestw_stack_top ()) != NULL
)
9788 ffebad_start (FFEBAD_DO_HAD_LABEL
);
9789 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
9790 ffelex_token_where_column (ffesta_tokens
[0]));
9791 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
9795 ffestc_shriek_do_ (TRUE
);
9797 ffestc_try_shriek_do_ ();
9804 ffestc_labeldef_branch_end_ ();
9807 /* ffestc_R834 -- CYCLE statement
9809 ffestc_R834(name_token);
9811 Handle a CYCLE within a loop. */
9814 ffestc_R834 (ffelexToken name
)
9818 ffestc_check_simple_ ();
9819 if (ffestc_order_actiondo_ () != FFESTC_orderOK_
)
9821 ffestc_labeldef_notloop_begin_ ();
9824 block
= ffestw_top_do (ffestw_stack_top ());
9826 { /* Search for name. */
9827 for (block
= ffestw_top_do (ffestw_stack_top ());
9828 (block
!= NULL
) && (ffestw_blocknum (block
) != 0);
9829 block
= ffestw_top_do (ffestw_previous (block
)))
9831 if ((ffestw_name (block
) != NULL
)
9832 && (ffelex_token_strcmp (name
, ffestw_name (block
)) == 0))
9835 if ((block
== NULL
) || (ffestw_blocknum (block
) == 0))
9837 block
= ffestw_top_do (ffestw_stack_top ());
9838 ffebad_start (FFEBAD_CONSTRUCT_NO_DO_NAME
);
9839 ffebad_here (0, ffelex_token_where_line (name
),
9840 ffelex_token_where_column (name
));
9845 ffestd_R834 (block
);
9847 if (ffestc_shriek_after1_
!= NULL
)
9848 (*ffestc_shriek_after1_
) (TRUE
);
9850 /* notloop's that are actionif's can be the target of a loop-end
9851 statement if they're in the "then" part of a logical IF, as
9852 in "DO 10", "10 IF (...) CYCLE". */
9854 ffestc_labeldef_branch_end_ ();
9857 /* ffestc_R835 -- EXIT statement
9859 ffestc_R835(name_token);
9861 Handle a EXIT within a loop. */
9864 ffestc_R835 (ffelexToken name
)
9868 ffestc_check_simple_ ();
9869 if (ffestc_order_actiondo_ () != FFESTC_orderOK_
)
9871 ffestc_labeldef_notloop_begin_ ();
9874 block
= ffestw_top_do (ffestw_stack_top ());
9876 { /* Search for name. */
9877 for (block
= ffestw_top_do (ffestw_stack_top ());
9878 (block
!= NULL
) && (ffestw_blocknum (block
) != 0);
9879 block
= ffestw_top_do (ffestw_previous (block
)))
9881 if ((ffestw_name (block
) != NULL
)
9882 && (ffelex_token_strcmp (name
, ffestw_name (block
)) == 0))
9885 if ((block
== NULL
) || (ffestw_blocknum (block
) == 0))
9887 block
= ffestw_top_do (ffestw_stack_top ());
9888 ffebad_start (FFEBAD_CONSTRUCT_NO_DO_NAME
);
9889 ffebad_here (0, ffelex_token_where_line (name
),
9890 ffelex_token_where_column (name
));
9895 ffestd_R835 (block
);
9897 if (ffestc_shriek_after1_
!= NULL
)
9898 (*ffestc_shriek_after1_
) (TRUE
);
9900 /* notloop's that are actionif's can be the target of a loop-end
9901 statement if they're in the "then" part of a logical IF, as
9902 in "DO 10", "10 IF (...) EXIT". */
9904 ffestc_labeldef_branch_end_ ();
9907 /* ffestc_R836 -- GOTO statement
9909 ffestc_R836(label_token);
9911 Make sure label_token identifies a valid label for a GOTO. Update
9912 that label's info to indicate it is the target of a GOTO. */
9915 ffestc_R836 (ffelexToken label_token
)
9919 ffestc_check_simple_ ();
9920 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
9922 ffestc_labeldef_notloop_begin_ ();
9924 if (ffestc_labelref_is_branch_ (label_token
, &label
))
9925 ffestd_R836 (label
);
9927 if (ffestc_shriek_after1_
!= NULL
)
9928 (*ffestc_shriek_after1_
) (TRUE
);
9930 /* notloop's that are actionif's can be the target of a loop-end
9931 statement if they're in the "then" part of a logical IF, as
9932 in "DO 10", "10 IF (...) GOTO 100". */
9934 ffestc_labeldef_branch_end_ ();
9937 /* ffestc_R837 -- Computed GOTO statement
9939 ffestc_R837(label_list,expr,expr_token);
9941 Make sure label_list identifies valid labels for a GOTO. Update
9942 each label's info to indicate it is the target of a GOTO. */
9945 ffestc_R837 (ffesttTokenList label_toks
, ffebld expr
,
9946 ffelexToken expr_token UNUSED
)
9953 assert (label_toks
!= NULL
);
9955 ffestc_check_simple_ ();
9956 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
9958 ffestc_labeldef_branch_begin_ ();
9960 labels
= malloc_new_kp (ffesta_output_pool
, "FFESTC labels",
9962 * ffestt_tokenlist_count (label_toks
));
9964 for (ti
= label_toks
->first
, i
= 0;
9965 ti
!= (ffesttTokenItem
) &label_toks
->first
;
9968 if (!ffestc_labelref_is_branch_ (ti
->t
, &labels
[i
]))
9976 ffestd_R837 (labels
, ffestt_tokenlist_count (label_toks
), expr
);
9978 if (ffestc_shriek_after1_
!= NULL
)
9979 (*ffestc_shriek_after1_
) (TRUE
);
9980 ffestc_labeldef_branch_end_ ();
9983 /* ffestc_R838 -- ASSIGN statement
9985 ffestc_R838(label_token,target_variable,target_token);
9987 Make sure label_token identifies a valid label for an assignment. Update
9988 that label's info to indicate it is the source of an assignment. Update
9989 target_variable's info to indicate it is the target the assignment of that
9993 ffestc_R838 (ffelexToken label_token
, ffebld target
,
9994 ffelexToken target_token UNUSED
)
9998 ffestc_check_simple_ ();
9999 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
10001 ffestc_labeldef_branch_begin_ ();
10003 /* Mark target symbol as target of an ASSIGN. */
10004 if (ffebld_op (target
) == FFEBLD_opSYMTER
)
10005 ffesymbol_set_assigned (ffebld_symter (target
), TRUE
);
10007 if (ffestc_labelref_is_assignable_ (label_token
, &label
))
10008 ffestd_R838 (label
, target
);
10010 if (ffestc_shriek_after1_
!= NULL
)
10011 (*ffestc_shriek_after1_
) (TRUE
);
10012 ffestc_labeldef_branch_end_ ();
10015 /* ffestc_R839 -- Assigned GOTO statement
10017 ffestc_R839(target,target_token,label_list);
10019 Make sure label_list identifies valid labels for a GOTO. Update
10020 each label's info to indicate it is the target of a GOTO. */
10023 ffestc_R839 (ffebld target
, ffelexToken target_token UNUSED
,
10024 ffesttTokenList label_toks
)
10026 ffesttTokenItem ti
;
10031 ffestc_check_simple_ ();
10032 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
10034 ffestc_labeldef_notloop_begin_ ();
10036 if (label_toks
== NULL
)
10043 labels
= malloc_new_kp (ffesta_output_pool
, "FFESTC labels",
10044 sizeof (*labels
) * ffestt_tokenlist_count (label_toks
));
10046 for (ti
= label_toks
->first
, i
= 0;
10047 ti
!= (ffesttTokenItem
) &label_toks
->first
;
10048 ti
= ti
->next
, ++i
)
10050 if (!ffestc_labelref_is_branch_ (ti
->t
, &labels
[i
]))
10059 ffestd_R839 (target
, labels
, i
);
10061 if (ffestc_shriek_after1_
!= NULL
)
10062 (*ffestc_shriek_after1_
) (TRUE
);
10064 /* notloop's that are actionif's can be the target of a loop-end
10065 statement if they're in the "then" part of a logical IF, as
10066 in "DO 10", "10 IF (...) GOTO I". */
10068 ffestc_labeldef_branch_end_ ();
10071 /* ffestc_R840 -- Arithmetic IF statement
10073 ffestc_R840(expr,expr_token,neg,zero,pos);
10075 Make sure the labels are valid; implement. */
10078 ffestc_R840 (ffebld expr
, ffelexToken expr_token UNUSED
,
10079 ffelexToken neg_token
, ffelexToken zero_token
,
10080 ffelexToken pos_token
)
10086 ffestc_check_simple_ ();
10087 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
10089 ffestc_labeldef_notloop_begin_ ();
10091 if (ffestc_labelref_is_branch_ (neg_token
, &neg
)
10092 && ffestc_labelref_is_branch_ (zero_token
, &zero
)
10093 && ffestc_labelref_is_branch_ (pos_token
, &pos
))
10094 ffestd_R840 (expr
, neg
, zero
, pos
);
10096 if (ffestc_shriek_after1_
!= NULL
)
10097 (*ffestc_shriek_after1_
) (TRUE
);
10099 /* notloop's that are actionif's can be the target of a loop-end
10100 statement if they're in the "then" part of a logical IF, as
10101 in "DO 10", "10 IF (...) GOTO (100,200,300), I". */
10103 ffestc_labeldef_branch_end_ ();
10106 /* ffestc_R841 -- CONTINUE statement
10113 ffestc_check_simple_ ();
10115 if (ffestc_order_actionwhere_ () != FFESTC_orderOK_
)
10118 switch (ffestw_state (ffestw_stack_top ()))
10121 case FFESTV_stateWHERE
:
10122 case FFESTV_stateWHERETHEN
:
10123 ffestc_labeldef_useless_ ();
10125 ffestd_R841 (TRUE
);
10127 /* It's okay that we call ffestc_labeldef_branch_end_ () below,
10128 since that will be a no-op after calling _useless_ () above. */
10133 ffestc_labeldef_branch_begin_ ();
10135 ffestd_R841 (FALSE
);
10140 if (ffestc_shriek_after1_
!= NULL
)
10141 (*ffestc_shriek_after1_
) (TRUE
);
10142 ffestc_labeldef_branch_end_ ();
10145 /* ffestc_R842 -- STOP statement
10147 ffestc_R842(expr,expr_token);
10149 Make sure statement is valid here; implement. expr and expr_token are
10150 both NULL if there was no expression. */
10153 ffestc_R842 (ffebld expr
, ffelexToken expr_token UNUSED
)
10155 ffestc_check_simple_ ();
10156 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
10158 ffestc_labeldef_notloop_begin_ ();
10160 ffestd_R842 (expr
);
10162 if (ffestc_shriek_after1_
!= NULL
)
10163 (*ffestc_shriek_after1_
) (TRUE
);
10165 /* notloop's that are actionif's can be the target of a loop-end
10166 statement if they're in the "then" part of a logical IF, as
10167 in "DO 10", "10 IF (...) STOP". */
10169 ffestc_labeldef_branch_end_ ();
10172 /* ffestc_R843 -- PAUSE statement
10174 ffestc_R843(expr,expr_token);
10176 Make sure statement is valid here; implement. expr and expr_token are
10177 both NULL if there was no expression. */
10180 ffestc_R843 (ffebld expr
, ffelexToken expr_token UNUSED
)
10182 ffestc_check_simple_ ();
10183 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
10185 ffestc_labeldef_branch_begin_ ();
10187 ffestd_R843 (expr
);
10189 if (ffestc_shriek_after1_
!= NULL
)
10190 (*ffestc_shriek_after1_
) (TRUE
);
10191 ffestc_labeldef_branch_end_ ();
10194 /* ffestc_R904 -- OPEN statement
10198 Make sure an OPEN is valid in the current context, and implement it. */
10205 const char *status_strs
[]
10214 const char *access_strs
[]
10222 const char *blank_strs
[]
10228 const char *carriagecontrol_strs
[]
10235 const char *dispose_strs
[]
10246 const char *form_strs
[]
10252 const char *organization_strs
[]
10259 const char *position_strs
[]
10266 const char *action_strs
[]
10273 const char *delim_strs
[]
10280 const char *recordtype_strs
[]
10290 const char *pad_strs
[]
10297 ffestc_check_simple_ ();
10298 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
10300 ffestc_labeldef_branch_begin_ ();
10302 if (ffestc_subr_is_branch_
10303 (&ffestp_file
.open
.open_spec
[FFESTP_openixERR
])
10304 && ffestc_subr_is_present_ ("UNIT",
10305 &ffestp_file
.open
.open_spec
[FFESTP_openixUNIT
]))
10307 i
= ffestc_subr_binsrch_ (status_strs
,
10308 ARRAY_SIZE (status_strs
),
10309 &ffestp_file
.open
.open_spec
[FFESTP_openixSTATUS
],
10310 "NEW, OLD, REPLACE, SCRATCH, or UNKNOWN");
10313 case 0: /* Unknown. */
10314 case 5: /* UNKNOWN. */
10315 expect_file
= 2; /* Unknown, don't care about FILE=. */
10320 if (ffe_is_pedantic ())
10321 expect_file
= 1; /* Yes, need FILE=. */
10323 expect_file
= 2; /* f2clib doesn't care about FILE=. */
10326 case 3: /* REPLACE. */
10327 expect_file
= 1; /* Yes, need FILE=. */
10330 case 4: /* SCRATCH. */
10331 expect_file
= 0; /* No, disallow FILE=. */
10335 assert ("invalid _binsrch_ result" == NULL
);
10339 if ((expect_file
== 0)
10340 && ffestp_file
.open
.open_spec
[FFESTP_openixFILE
].kw_or_val_present
)
10342 ffebad_start (FFEBAD_CONFLICTING_SPECS
);
10343 assert (ffestp_file
.open
.open_spec
[FFESTP_openixFILE
].kw_or_val_present
);
10344 if (ffestp_file
.open
.open_spec
[FFESTP_openixFILE
].kw_present
)
10346 ffebad_here (0, ffelex_token_where_line
10347 (ffestp_file
.open
.open_spec
[FFESTP_openixFILE
].kw
),
10348 ffelex_token_where_column
10349 (ffestp_file
.open
.open_spec
[FFESTP_openixFILE
].kw
));
10353 ffebad_here (0, ffelex_token_where_line
10354 (ffestp_file
.open
.open_spec
[FFESTP_openixFILE
].value
),
10355 ffelex_token_where_column
10356 (ffestp_file
.open
.open_spec
[FFESTP_openixFILE
].value
));
10358 assert (ffestp_file
.open
.open_spec
[FFESTP_openixSTATUS
].kw_or_val_present
);
10359 if (ffestp_file
.open
.open_spec
[FFESTP_openixSTATUS
].kw_present
)
10361 ffebad_here (1, ffelex_token_where_line
10362 (ffestp_file
.open
.open_spec
[FFESTP_openixSTATUS
].kw
),
10363 ffelex_token_where_column
10364 (ffestp_file
.open
.open_spec
[FFESTP_openixSTATUS
].kw
));
10368 ffebad_here (1, ffelex_token_where_line
10369 (ffestp_file
.open
.open_spec
[FFESTP_openixSTATUS
].value
),
10370 ffelex_token_where_column
10371 (ffestp_file
.open
.open_spec
[FFESTP_openixSTATUS
].value
));
10375 else if ((expect_file
== 1)
10376 && !ffestp_file
.open
.open_spec
[FFESTP_openixFILE
].kw_or_val_present
)
10378 ffebad_start (FFEBAD_MISSING_SPECIFIER
);
10379 assert (ffestp_file
.open
.open_spec
[FFESTP_openixSTATUS
].kw_or_val_present
);
10380 if (ffestp_file
.open
.open_spec
[FFESTP_openixSTATUS
].kw_present
)
10382 ffebad_here (0, ffelex_token_where_line
10383 (ffestp_file
.open
.open_spec
[FFESTP_openixSTATUS
].kw
),
10384 ffelex_token_where_column
10385 (ffestp_file
.open
.open_spec
[FFESTP_openixSTATUS
].kw
));
10389 ffebad_here (0, ffelex_token_where_line
10390 (ffestp_file
.open
.open_spec
[FFESTP_openixSTATUS
].value
),
10391 ffelex_token_where_column
10392 (ffestp_file
.open
.open_spec
[FFESTP_openixSTATUS
].value
));
10394 ffebad_string ("FILE=");
10398 ffestc_subr_binsrch_ (access_strs
, ARRAY_SIZE (access_strs
),
10399 &ffestp_file
.open
.open_spec
[FFESTP_openixACCESS
],
10400 "APPEND, DIRECT, KEYED, or SEQUENTIAL");
10402 ffestc_subr_binsrch_ (blank_strs
, ARRAY_SIZE (blank_strs
),
10403 &ffestp_file
.open
.open_spec
[FFESTP_openixBLANK
],
10406 ffestc_subr_binsrch_ (carriagecontrol_strs
,
10407 ARRAY_SIZE (carriagecontrol_strs
),
10408 &ffestp_file
.open
.open_spec
[FFESTP_openixCARRIAGECONTROL
],
10409 "FORTRAN, LIST, or NONE");
10411 ffestc_subr_binsrch_ (dispose_strs
, ARRAY_SIZE (dispose_strs
),
10412 &ffestp_file
.open
.open_spec
[FFESTP_openixDISPOSE
],
10413 "DELETE, KEEP, PRINT, PRINT/DELETE, SAVE, SUBMIT, or SUBMIT/DELETE");
10415 ffestc_subr_binsrch_ (form_strs
, ARRAY_SIZE (form_strs
),
10416 &ffestp_file
.open
.open_spec
[FFESTP_openixFORM
],
10417 "FORMATTED or UNFORMATTED");
10419 ffestc_subr_binsrch_ (organization_strs
, ARRAY_SIZE (organization_strs
),
10420 &ffestp_file
.open
.open_spec
[FFESTP_openixORGANIZATION
],
10421 "INDEXED, RELATIVE, or SEQUENTIAL");
10423 ffestc_subr_binsrch_ (position_strs
, ARRAY_SIZE (position_strs
),
10424 &ffestp_file
.open
.open_spec
[FFESTP_openixPOSITION
],
10425 "APPEND, ASIS, or REWIND");
10427 ffestc_subr_binsrch_ (action_strs
, ARRAY_SIZE (action_strs
),
10428 &ffestp_file
.open
.open_spec
[FFESTP_openixACTION
],
10429 "READ, READWRITE, or WRITE");
10431 ffestc_subr_binsrch_ (delim_strs
, ARRAY_SIZE (delim_strs
),
10432 &ffestp_file
.open
.open_spec
[FFESTP_openixDELIM
],
10433 "APOSTROPHE, NONE, or QUOTE");
10435 ffestc_subr_binsrch_ (recordtype_strs
, ARRAY_SIZE (recordtype_strs
),
10436 &ffestp_file
.open
.open_spec
[FFESTP_openixRECORDTYPE
],
10437 "FIXED, SEGMENTED, STREAM, STREAM_CR, STREAM_LF, or VARIABLE");
10439 ffestc_subr_binsrch_ (pad_strs
, ARRAY_SIZE (pad_strs
),
10440 &ffestp_file
.open
.open_spec
[FFESTP_openixPAD
],
10446 if (ffestc_shriek_after1_
!= NULL
)
10447 (*ffestc_shriek_after1_
) (TRUE
);
10448 ffestc_labeldef_branch_end_ ();
10451 /* ffestc_R907 -- CLOSE statement
10455 Make sure a CLOSE is valid in the current context, and implement it. */
10460 const char *status_strs
[]
10472 ffestc_check_simple_ ();
10473 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
10475 ffestc_labeldef_branch_begin_ ();
10477 if (ffestc_subr_is_branch_
10478 (&ffestp_file
.close
.close_spec
[FFESTP_closeixERR
])
10479 && ffestc_subr_is_present_ ("UNIT",
10480 &ffestp_file
.close
.close_spec
[FFESTP_closeixUNIT
]))
10482 ffestc_subr_binsrch_ (status_strs
, ARRAY_SIZE (status_strs
),
10483 &ffestp_file
.close
.close_spec
[FFESTP_closeixSTATUS
],
10484 "DELETE, KEEP, PRINT, PRINT/DELETE, SAVE, SUBMIT, or SUBMIT/DELETE");
10489 if (ffestc_shriek_after1_
!= NULL
)
10490 (*ffestc_shriek_after1_
) (TRUE
);
10491 ffestc_labeldef_branch_end_ ();
10494 /* ffestc_R909_start -- READ(...) statement list begin
10496 ffestc_R909_start(FALSE);
10498 Verify that READ is valid here, and begin accepting items in the
10502 ffestc_R909_start (bool only_format
)
10505 ffestvFormat format
;
10509 ffestpReadIx spec1
;
10510 ffestpReadIx spec2
;
10512 ffestc_check_start_ ();
10513 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
10515 ffestc_ok_
= FALSE
;
10518 ffestc_labeldef_branch_begin_ ();
10520 if (!ffestc_subr_is_format_
10521 (&ffestp_file
.read
.read_spec
[FFESTP_readixFORMAT
]))
10523 ffestc_ok_
= FALSE
;
10527 format
= ffestc_subr_format_
10528 (&ffestp_file
.read
.read_spec
[FFESTP_readixFORMAT
]);
10529 ffestc_namelist_
= (format
== FFESTV_formatNAMELIST
);
10533 ffestd_R909_start (TRUE
, FFESTV_unitNONE
, format
, FALSE
, FALSE
);
10539 if (!ffestc_subr_is_branch_
10540 (&ffestp_file
.read
.read_spec
[FFESTP_readixEOR
])
10541 || !ffestc_subr_is_branch_
10542 (&ffestp_file
.read
.read_spec
[FFESTP_readixERR
])
10543 || !ffestc_subr_is_branch_
10544 (&ffestp_file
.read
.read_spec
[FFESTP_readixEND
]))
10546 ffestc_ok_
= FALSE
;
10550 unit
= ffestc_subr_unit_
10551 (&ffestp_file
.read
.read_spec
[FFESTP_readixUNIT
]);
10552 if (unit
== FFESTV_unitNONE
)
10554 ffebad_start (FFEBAD_NO_UNIT_SPEC
);
10555 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
10556 ffelex_token_where_column (ffesta_tokens
[0]));
10558 ffestc_ok_
= FALSE
;
10562 rec
= ffestp_file
.read
.read_spec
[FFESTP_readixREC
].kw_or_val_present
;
10564 if (ffestp_file
.read
.read_spec
[FFESTP_readixKEYEQ
].kw_or_val_present
)
10567 keyn
= spec1
= FFESTP_readixKEYEQ
;
10572 keyn
= spec1
= FFESTP_readix
;
10575 if (ffestp_file
.read
.read_spec
[FFESTP_readixKEYGT
].kw_or_val_present
)
10579 spec2
= FFESTP_readixKEYGT
;
10580 whine
: /* :::::::::::::::::::: */
10581 ffebad_start (FFEBAD_CONFLICTING_SPECS
);
10582 assert (ffestp_file
.read
.read_spec
[spec1
].kw_or_val_present
);
10583 if (ffestp_file
.read
.read_spec
[spec1
].kw_present
)
10585 ffebad_here (0, ffelex_token_where_line
10586 (ffestp_file
.read
.read_spec
[spec1
].kw
),
10587 ffelex_token_where_column
10588 (ffestp_file
.read
.read_spec
[spec1
].kw
));
10592 ffebad_here (0, ffelex_token_where_line
10593 (ffestp_file
.read
.read_spec
[spec1
].value
),
10594 ffelex_token_where_column
10595 (ffestp_file
.read
.read_spec
[spec1
].value
));
10597 assert (ffestp_file
.read
.read_spec
[spec2
].kw_or_val_present
);
10598 if (ffestp_file
.read
.read_spec
[spec2
].kw_present
)
10600 ffebad_here (1, ffelex_token_where_line
10601 (ffestp_file
.read
.read_spec
[spec2
].kw
),
10602 ffelex_token_where_column
10603 (ffestp_file
.read
.read_spec
[spec2
].kw
));
10607 ffebad_here (1, ffelex_token_where_line
10608 (ffestp_file
.read
.read_spec
[spec2
].value
),
10609 ffelex_token_where_column
10610 (ffestp_file
.read
.read_spec
[spec2
].value
));
10613 ffestc_ok_
= FALSE
;
10617 keyn
= spec1
= FFESTP_readixKEYGT
;
10620 if (ffestp_file
.read
.read_spec
[FFESTP_readixKEYGE
].kw_or_val_present
)
10624 spec2
= FFESTP_readixKEYGT
;
10625 goto whine
; /* :::::::::::::::::::: */
10628 keyn
= FFESTP_readixKEYGT
;
10633 spec1
= FFESTP_readixREC
;
10637 goto whine
; /* :::::::::::::::::::: */
10639 if (unit
== FFESTV_unitCHAREXPR
)
10641 spec2
= FFESTP_readixUNIT
;
10642 goto whine
; /* :::::::::::::::::::: */
10644 if ((format
== FFESTV_formatASTERISK
)
10645 || (format
== FFESTV_formatNAMELIST
))
10647 spec2
= FFESTP_readixFORMAT
;
10648 goto whine
; /* :::::::::::::::::::: */
10650 if (ffestp_file
.read
.read_spec
[FFESTP_readixADVANCE
].kw_or_val_present
)
10652 spec2
= FFESTP_readixADVANCE
;
10653 goto whine
; /* :::::::::::::::::::: */
10655 if (ffestp_file
.read
.read_spec
[FFESTP_readixEND
].kw_or_val_present
)
10657 spec2
= FFESTP_readixEND
;
10658 goto whine
; /* :::::::::::::::::::: */
10660 if (ffestp_file
.read
.read_spec
[FFESTP_readixNULLS
].kw_or_val_present
)
10662 spec2
= FFESTP_readixNULLS
;
10663 goto whine
; /* :::::::::::::::::::: */
10669 if (unit
== FFESTV_unitCHAREXPR
)
10671 spec2
= FFESTP_readixUNIT
;
10672 goto whine
; /* :::::::::::::::::::: */
10674 if ((format
== FFESTV_formatASTERISK
)
10675 || (format
== FFESTV_formatNAMELIST
))
10677 spec2
= FFESTP_readixFORMAT
;
10678 goto whine
; /* :::::::::::::::::::: */
10680 if (ffestp_file
.read
.read_spec
[FFESTP_readixADVANCE
].kw_or_val_present
)
10682 spec2
= FFESTP_readixADVANCE
;
10683 goto whine
; /* :::::::::::::::::::: */
10685 if (ffestp_file
.read
.read_spec
[FFESTP_readixEND
].kw_or_val_present
)
10687 spec2
= FFESTP_readixEND
;
10688 goto whine
; /* :::::::::::::::::::: */
10690 if (ffestp_file
.read
.read_spec
[FFESTP_readixEOR
].kw_or_val_present
)
10692 spec2
= FFESTP_readixEOR
;
10693 goto whine
; /* :::::::::::::::::::: */
10695 if (ffestp_file
.read
.read_spec
[FFESTP_readixNULLS
].kw_or_val_present
)
10697 spec2
= FFESTP_readixNULLS
;
10698 goto whine
; /* :::::::::::::::::::: */
10700 if (ffestp_file
.read
.read_spec
[FFESTP_readixREC
].kw_or_val_present
)
10702 spec2
= FFESTP_readixREC
;
10703 goto whine
; /* :::::::::::::::::::: */
10705 if (ffestp_file
.read
.read_spec
[FFESTP_readixSIZE
].kw_or_val_present
)
10707 spec2
= FFESTP_readixSIZE
;
10708 goto whine
; /* :::::::::::::::::::: */
10712 { /* Sequential/Internal. */
10713 if (unit
== FFESTV_unitCHAREXPR
)
10714 { /* Internal file. */
10715 spec1
= FFESTP_readixUNIT
;
10716 if (format
== FFESTV_formatNAMELIST
)
10718 spec2
= FFESTP_readixFORMAT
;
10719 goto whine
; /* :::::::::::::::::::: */
10721 if (ffestp_file
.read
.read_spec
[FFESTP_readixADVANCE
].kw_or_val_present
)
10723 spec2
= FFESTP_readixADVANCE
;
10724 goto whine
; /* :::::::::::::::::::: */
10727 if (ffestp_file
.read
.read_spec
[FFESTP_readixADVANCE
].kw_or_val_present
)
10728 { /* ADVANCE= specified. */
10729 spec1
= FFESTP_readixADVANCE
;
10730 if (format
== FFESTV_formatNONE
)
10732 ffebad_start (FFEBAD_MISSING_FORMAT_SPEC
);
10733 ffebad_here (0, ffelex_token_where_line
10734 (ffestp_file
.read
.read_spec
[spec1
].kw
),
10735 ffelex_token_where_column
10736 (ffestp_file
.read
.read_spec
[spec1
].kw
));
10739 ffestc_ok_
= FALSE
;
10742 if (format
== FFESTV_formatNAMELIST
)
10744 spec2
= FFESTP_readixFORMAT
;
10745 goto whine
; /* :::::::::::::::::::: */
10748 if (ffestp_file
.read
.read_spec
[FFESTP_readixEOR
].kw_or_val_present
)
10749 { /* EOR= specified. */
10750 spec1
= FFESTP_readixEOR
;
10751 if (ffestc_subr_speccmp_ ("No",
10752 &ffestp_file
.read
.read_spec
[FFESTP_readixADVANCE
],
10755 goto whine_advance
; /* :::::::::::::::::::: */
10758 if (ffestp_file
.read
.read_spec
[FFESTP_readixNULLS
].kw_or_val_present
)
10759 { /* NULLS= specified. */
10760 spec1
= FFESTP_readixNULLS
;
10761 if (format
!= FFESTV_formatASTERISK
)
10763 spec2
= FFESTP_readixFORMAT
;
10764 goto whine
; /* :::::::::::::::::::: */
10767 if (ffestp_file
.read
.read_spec
[FFESTP_readixSIZE
].kw_or_val_present
)
10768 { /* SIZE= specified. */
10769 spec1
= FFESTP_readixSIZE
;
10770 if (ffestc_subr_speccmp_ ("No",
10771 &ffestp_file
.read
.read_spec
[FFESTP_readixADVANCE
],
10774 whine_advance
: /* :::::::::::::::::::: */
10775 if (ffestp_file
.read
.read_spec
[FFESTP_readixADVANCE
]
10776 .kw_or_val_present
)
10778 ffebad_start (FFEBAD_CONFLICTING_SPECS
);
10779 ffebad_here (0, ffelex_token_where_line
10780 (ffestp_file
.read
.read_spec
[spec1
].kw
),
10781 ffelex_token_where_column
10782 (ffestp_file
.read
.read_spec
[spec1
].kw
));
10783 ffebad_here (1, ffelex_token_where_line
10784 (ffestp_file
.read
.read_spec
[FFESTP_readixADVANCE
].kw
),
10785 ffelex_token_where_column
10786 (ffestp_file
.read
.read_spec
[FFESTP_readixADVANCE
].kw
));
10791 ffebad_start (FFEBAD_MISSING_ADVANCE_SPEC
);
10792 ffebad_here (0, ffelex_token_where_line
10793 (ffestp_file
.read
.read_spec
[spec1
].kw
),
10794 ffelex_token_where_column
10795 (ffestp_file
.read
.read_spec
[spec1
].kw
));
10799 ffestc_ok_
= FALSE
;
10805 if (unit
== FFESTV_unitCHAREXPR
)
10806 ffestc_iolist_context_
= FFEEXPR_contextIOLISTDF
;
10808 ffestc_iolist_context_
= FFEEXPR_contextIOLIST
;
10810 ffestd_R909_start (FALSE
, unit
, format
, rec
, key
);
10815 /* ffestc_R909_item -- READ statement i/o item
10817 ffestc_R909_item(expr,expr_token);
10819 Implement output-list expression. */
10822 ffestc_R909_item (ffebld expr
, ffelexToken expr_token
)
10824 ffestc_check_item_ ();
10828 if (ffestc_namelist_
!= 0)
10830 if (ffestc_namelist_
== 1)
10832 ffestc_namelist_
= 2;
10833 ffebad_start (FFEBAD_NAMELIST_ITEMS
);
10834 ffebad_here (0, ffelex_token_where_line (expr_token
),
10835 ffelex_token_where_column (expr_token
));
10841 ffestd_R909_item (expr
, expr_token
);
10844 /* ffestc_R909_finish -- READ statement list complete
10846 ffestc_R909_finish();
10848 Just wrap up any local activities. */
10851 ffestc_R909_finish ()
10853 ffestc_check_finish_ ();
10857 ffestd_R909_finish ();
10859 if (ffestc_shriek_after1_
!= NULL
)
10860 (*ffestc_shriek_after1_
) (TRUE
);
10861 ffestc_labeldef_branch_end_ ();
10864 /* ffestc_R910_start -- WRITE(...) statement list begin
10866 ffestc_R910_start();
10868 Verify that WRITE is valid here, and begin accepting items in the
10872 ffestc_R910_start ()
10875 ffestvFormat format
;
10877 ffestpWriteIx spec1
;
10878 ffestpWriteIx spec2
;
10880 ffestc_check_start_ ();
10881 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
10883 ffestc_ok_
= FALSE
;
10886 ffestc_labeldef_branch_begin_ ();
10888 if (!ffestc_subr_is_branch_
10889 (&ffestp_file
.write
.write_spec
[FFESTP_writeixEOR
])
10890 || !ffestc_subr_is_branch_
10891 (&ffestp_file
.write
.write_spec
[FFESTP_writeixERR
])
10892 || !ffestc_subr_is_format_
10893 (&ffestp_file
.write
.write_spec
[FFESTP_writeixFORMAT
]))
10895 ffestc_ok_
= FALSE
;
10899 format
= ffestc_subr_format_
10900 (&ffestp_file
.write
.write_spec
[FFESTP_writeixFORMAT
]);
10901 ffestc_namelist_
= (format
== FFESTV_formatNAMELIST
);
10903 unit
= ffestc_subr_unit_
10904 (&ffestp_file
.write
.write_spec
[FFESTP_writeixUNIT
]);
10905 if (unit
== FFESTV_unitNONE
)
10907 ffebad_start (FFEBAD_NO_UNIT_SPEC
);
10908 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
10909 ffelex_token_where_column (ffesta_tokens
[0]));
10911 ffestc_ok_
= FALSE
;
10915 rec
= ffestp_file
.write
.write_spec
[FFESTP_writeixREC
].kw_or_val_present
;
10919 spec1
= FFESTP_writeixREC
;
10920 if (unit
== FFESTV_unitCHAREXPR
)
10922 spec2
= FFESTP_writeixUNIT
;
10923 whine
: /* :::::::::::::::::::: */
10924 ffebad_start (FFEBAD_CONFLICTING_SPECS
);
10925 assert (ffestp_file
.write
.write_spec
[spec1
].kw_or_val_present
);
10926 if (ffestp_file
.write
.write_spec
[spec1
].kw_present
)
10928 ffebad_here (0, ffelex_token_where_line
10929 (ffestp_file
.write
.write_spec
[spec1
].kw
),
10930 ffelex_token_where_column
10931 (ffestp_file
.write
.write_spec
[spec1
].kw
));
10935 ffebad_here (0, ffelex_token_where_line
10936 (ffestp_file
.write
.write_spec
[spec1
].value
),
10937 ffelex_token_where_column
10938 (ffestp_file
.write
.write_spec
[spec1
].value
));
10940 assert (ffestp_file
.write
.write_spec
[spec2
].kw_or_val_present
);
10941 if (ffestp_file
.write
.write_spec
[spec2
].kw_present
)
10943 ffebad_here (1, ffelex_token_where_line
10944 (ffestp_file
.write
.write_spec
[spec2
].kw
),
10945 ffelex_token_where_column
10946 (ffestp_file
.write
.write_spec
[spec2
].kw
));
10950 ffebad_here (1, ffelex_token_where_line
10951 (ffestp_file
.write
.write_spec
[spec2
].value
),
10952 ffelex_token_where_column
10953 (ffestp_file
.write
.write_spec
[spec2
].value
));
10956 ffestc_ok_
= FALSE
;
10959 if ((format
== FFESTV_formatASTERISK
)
10960 || (format
== FFESTV_formatNAMELIST
))
10962 spec2
= FFESTP_writeixFORMAT
;
10963 goto whine
; /* :::::::::::::::::::: */
10965 if (ffestp_file
.write
.write_spec
[FFESTP_writeixADVANCE
].kw_or_val_present
)
10967 spec2
= FFESTP_writeixADVANCE
;
10968 goto whine
; /* :::::::::::::::::::: */
10972 { /* Sequential/Indexed/Internal. */
10973 if (unit
== FFESTV_unitCHAREXPR
)
10974 { /* Internal file. */
10975 spec1
= FFESTP_writeixUNIT
;
10976 if (format
== FFESTV_formatNAMELIST
)
10978 spec2
= FFESTP_writeixFORMAT
;
10979 goto whine
; /* :::::::::::::::::::: */
10981 if (ffestp_file
.write
.write_spec
[FFESTP_writeixADVANCE
].kw_or_val_present
)
10983 spec2
= FFESTP_writeixADVANCE
;
10984 goto whine
; /* :::::::::::::::::::: */
10987 if (ffestp_file
.write
.write_spec
[FFESTP_writeixADVANCE
].kw_or_val_present
)
10988 { /* ADVANCE= specified. */
10989 spec1
= FFESTP_writeixADVANCE
;
10990 if (format
== FFESTV_formatNONE
)
10992 ffebad_start (FFEBAD_MISSING_FORMAT_SPEC
);
10993 ffebad_here (0, ffelex_token_where_line
10994 (ffestp_file
.write
.write_spec
[spec1
].kw
),
10995 ffelex_token_where_column
10996 (ffestp_file
.write
.write_spec
[spec1
].kw
));
10999 ffestc_ok_
= FALSE
;
11002 if (format
== FFESTV_formatNAMELIST
)
11004 spec2
= FFESTP_writeixFORMAT
;
11005 goto whine
; /* :::::::::::::::::::: */
11008 if (ffestp_file
.write
.write_spec
[FFESTP_writeixEOR
].kw_or_val_present
)
11009 { /* EOR= specified. */
11010 spec1
= FFESTP_writeixEOR
;
11011 if (ffestc_subr_speccmp_ ("No",
11012 &ffestp_file
.write
.write_spec
[FFESTP_writeixADVANCE
],
11015 if (ffestp_file
.write
.write_spec
[FFESTP_writeixADVANCE
]
11016 .kw_or_val_present
)
11018 ffebad_start (FFEBAD_CONFLICTING_SPECS
);
11019 ffebad_here (0, ffelex_token_where_line
11020 (ffestp_file
.write
.write_spec
[spec1
].kw
),
11021 ffelex_token_where_column
11022 (ffestp_file
.write
.write_spec
[spec1
].kw
));
11023 ffebad_here (1, ffelex_token_where_line
11024 (ffestp_file
.write
.write_spec
[FFESTP_writeixADVANCE
].kw
),
11025 ffelex_token_where_column
11026 (ffestp_file
.write
.write_spec
[FFESTP_writeixADVANCE
].kw
));
11031 ffebad_start (FFEBAD_MISSING_ADVANCE_SPEC
);
11032 ffebad_here (0, ffelex_token_where_line
11033 (ffestp_file
.write
.write_spec
[spec1
].kw
),
11034 ffelex_token_where_column
11035 (ffestp_file
.write
.write_spec
[spec1
].kw
));
11039 ffestc_ok_
= FALSE
;
11045 if (unit
== FFESTV_unitCHAREXPR
)
11046 ffestc_iolist_context_
= FFEEXPR_contextIOLISTDF
;
11048 ffestc_iolist_context_
= FFEEXPR_contextIOLIST
;
11050 ffestd_R910_start (unit
, format
, rec
);
11055 /* ffestc_R910_item -- WRITE statement i/o item
11057 ffestc_R910_item(expr,expr_token);
11059 Implement output-list expression. */
11062 ffestc_R910_item (ffebld expr
, ffelexToken expr_token
)
11064 ffestc_check_item_ ();
11068 if (ffestc_namelist_
!= 0)
11070 if (ffestc_namelist_
== 1)
11072 ffestc_namelist_
= 2;
11073 ffebad_start (FFEBAD_NAMELIST_ITEMS
);
11074 ffebad_here (0, ffelex_token_where_line (expr_token
),
11075 ffelex_token_where_column (expr_token
));
11081 ffestd_R910_item (expr
, expr_token
);
11084 /* ffestc_R910_finish -- WRITE statement list complete
11086 ffestc_R910_finish();
11088 Just wrap up any local activities. */
11091 ffestc_R910_finish ()
11093 ffestc_check_finish_ ();
11097 ffestd_R910_finish ();
11099 if (ffestc_shriek_after1_
!= NULL
)
11100 (*ffestc_shriek_after1_
) (TRUE
);
11101 ffestc_labeldef_branch_end_ ();
11104 /* ffestc_R911_start -- PRINT(...) statement list begin
11106 ffestc_R911_start();
11108 Verify that PRINT is valid here, and begin accepting items in the
11112 ffestc_R911_start ()
11114 ffestvFormat format
;
11116 ffestc_check_start_ ();
11117 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
11119 ffestc_ok_
= FALSE
;
11122 ffestc_labeldef_branch_begin_ ();
11124 if (!ffestc_subr_is_format_
11125 (&ffestp_file
.print
.print_spec
[FFESTP_printixFORMAT
]))
11127 ffestc_ok_
= FALSE
;
11131 format
= ffestc_subr_format_
11132 (&ffestp_file
.print
.print_spec
[FFESTP_printixFORMAT
]);
11133 ffestc_namelist_
= (format
== FFESTV_formatNAMELIST
);
11135 ffestd_R911_start (format
);
11140 /* ffestc_R911_item -- PRINT statement i/o item
11142 ffestc_R911_item(expr,expr_token);
11144 Implement output-list expression. */
11147 ffestc_R911_item (ffebld expr
, ffelexToken expr_token
)
11149 ffestc_check_item_ ();
11153 if (ffestc_namelist_
!= 0)
11155 if (ffestc_namelist_
== 1)
11157 ffestc_namelist_
= 2;
11158 ffebad_start (FFEBAD_NAMELIST_ITEMS
);
11159 ffebad_here (0, ffelex_token_where_line (expr_token
),
11160 ffelex_token_where_column (expr_token
));
11166 ffestd_R911_item (expr
, expr_token
);
11169 /* ffestc_R911_finish -- PRINT statement list complete
11171 ffestc_R911_finish();
11173 Just wrap up any local activities. */
11176 ffestc_R911_finish ()
11178 ffestc_check_finish_ ();
11182 ffestd_R911_finish ();
11184 if (ffestc_shriek_after1_
!= NULL
)
11185 (*ffestc_shriek_after1_
) (TRUE
);
11186 ffestc_labeldef_branch_end_ ();
11189 /* ffestc_R919 -- BACKSPACE statement
11193 Make sure a BACKSPACE is valid in the current context, and implement it. */
11198 ffestc_check_simple_ ();
11199 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
11201 ffestc_labeldef_branch_begin_ ();
11203 if (ffestc_subr_is_branch_
11204 (&ffestp_file
.beru
.beru_spec
[FFESTP_beruixERR
])
11205 && ffestc_subr_is_present_ ("UNIT",
11206 &ffestp_file
.beru
.beru_spec
[FFESTP_beruixUNIT
]))
11209 if (ffestc_shriek_after1_
!= NULL
)
11210 (*ffestc_shriek_after1_
) (TRUE
);
11211 ffestc_labeldef_branch_end_ ();
11214 /* ffestc_R920 -- ENDFILE statement
11218 Make sure a ENDFILE is valid in the current context, and implement it. */
11223 ffestc_check_simple_ ();
11224 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
11226 ffestc_labeldef_branch_begin_ ();
11228 if (ffestc_subr_is_branch_
11229 (&ffestp_file
.beru
.beru_spec
[FFESTP_beruixERR
])
11230 && ffestc_subr_is_present_ ("UNIT",
11231 &ffestp_file
.beru
.beru_spec
[FFESTP_beruixUNIT
]))
11234 if (ffestc_shriek_after1_
!= NULL
)
11235 (*ffestc_shriek_after1_
) (TRUE
);
11236 ffestc_labeldef_branch_end_ ();
11239 /* ffestc_R921 -- REWIND statement
11243 Make sure a REWIND is valid in the current context, and implement it. */
11248 ffestc_check_simple_ ();
11249 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
11251 ffestc_labeldef_branch_begin_ ();
11253 if (ffestc_subr_is_branch_
11254 (&ffestp_file
.beru
.beru_spec
[FFESTP_beruixERR
])
11255 && ffestc_subr_is_present_ ("UNIT",
11256 &ffestp_file
.beru
.beru_spec
[FFESTP_beruixUNIT
]))
11259 if (ffestc_shriek_after1_
!= NULL
)
11260 (*ffestc_shriek_after1_
) (TRUE
);
11261 ffestc_labeldef_branch_end_ ();
11264 /* ffestc_R923A -- INQUIRE statement (non-IOLENGTH version)
11268 Make sure an INQUIRE is valid in the current context, and implement it. */
11276 ffestc_check_simple_ ();
11277 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
11279 ffestc_labeldef_branch_begin_ ();
11281 if (ffestc_subr_is_branch_
11282 (&ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixERR
]))
11284 by_file
= ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixFILE
]
11285 .kw_or_val_present
;
11286 by_unit
= ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixUNIT
]
11287 .kw_or_val_present
;
11288 if (by_file
&& by_unit
)
11290 ffebad_start (FFEBAD_CONFLICTING_SPECS
);
11291 assert (ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixUNIT
].kw_or_val_present
);
11292 if (ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixUNIT
].kw_present
)
11294 ffebad_here (0, ffelex_token_where_line
11295 (ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixUNIT
].kw
),
11296 ffelex_token_where_column
11297 (ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixUNIT
].kw
));
11301 ffebad_here (0, ffelex_token_where_line
11302 (ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixUNIT
].value
),
11303 ffelex_token_where_column
11304 (ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixUNIT
].value
));
11306 assert (ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixFILE
].kw_or_val_present
);
11307 if (ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixFILE
].kw_present
)
11309 ffebad_here (1, ffelex_token_where_line
11310 (ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixFILE
].kw
),
11311 ffelex_token_where_column
11312 (ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixFILE
].kw
));
11316 ffebad_here (1, ffelex_token_where_line
11317 (ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixFILE
].value
),
11318 ffelex_token_where_column
11319 (ffestp_file
.inquire
.inquire_spec
[FFESTP_inquireixFILE
].value
));
11323 else if (!by_file
&& !by_unit
)
11325 ffebad_start (FFEBAD_MISSING_SPECIFIER
);
11326 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
11327 ffelex_token_where_column (ffesta_tokens
[0]));
11328 ffebad_string ("UNIT= or FILE=");
11332 ffestd_R923A (by_file
);
11335 if (ffestc_shriek_after1_
!= NULL
)
11336 (*ffestc_shriek_after1_
) (TRUE
);
11337 ffestc_labeldef_branch_end_ ();
11340 /* ffestc_R923B_start -- INQUIRE(IOLENGTH=expr) statement list begin
11342 ffestc_R923B_start();
11344 Verify that INQUIRE is valid here, and begin accepting items in the
11348 ffestc_R923B_start ()
11350 ffestc_check_start_ ();
11351 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
11353 ffestc_ok_
= FALSE
;
11356 ffestc_labeldef_branch_begin_ ();
11358 ffestd_R923B_start ();
11363 /* ffestc_R923B_item -- INQUIRE statement i/o item
11365 ffestc_R923B_item(expr,expr_token);
11367 Implement output-list expression. */
11370 ffestc_R923B_item (ffebld expr
, ffelexToken expr_token UNUSED
)
11372 ffestc_check_item_ ();
11376 ffestd_R923B_item (expr
);
11379 /* ffestc_R923B_finish -- INQUIRE statement list complete
11381 ffestc_R923B_finish();
11383 Just wrap up any local activities. */
11386 ffestc_R923B_finish ()
11388 ffestc_check_finish_ ();
11392 ffestd_R923B_finish ();
11394 if (ffestc_shriek_after1_
!= NULL
)
11395 (*ffestc_shriek_after1_
) (TRUE
);
11396 ffestc_labeldef_branch_end_ ();
11399 /* ffestc_R1001 -- FORMAT statement
11401 ffestc_R1001(format_list);
11403 Make sure format_list is valid. Update label's info to indicate it is a
11404 FORMAT label, and (perhaps) warn if there is no label! */
11407 ffestc_R1001 (ffesttFormatList f
)
11409 ffestc_check_simple_ ();
11410 if (ffestc_order_format_ () != FFESTC_orderOK_
)
11412 ffestc_labeldef_format_ ();
11417 /* ffestc_R1102 -- PROGRAM statement
11419 ffestc_R1102(name_token);
11421 Make sure ffestc_kind_ identifies an empty block. Make sure name_token
11422 gives a valid name. Implement the beginning of a main program. */
11425 ffestc_R1102 (ffelexToken name
)
11430 assert (name
!= NULL
);
11432 ffestc_check_simple_ ();
11433 if (ffestc_order_unit_ () != FFESTC_orderOK_
)
11435 ffestc_labeldef_useless_ ();
11437 ffestc_blocknum_
= 0;
11438 b
= ffestw_update (ffestw_push (NULL
));
11439 ffestw_set_top_do (b
, NULL
);
11440 ffestw_set_state (b
, FFESTV_statePROGRAM0
);
11441 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
11442 ffestw_set_shriek (b
, ffestc_shriek_end_program_
);
11444 ffestw_set_name (b
, ffelex_token_use (name
));
11446 s
= ffesymbol_declare_programunit (name
,
11447 ffelex_token_where_line (ffesta_tokens
[0]),
11448 ffelex_token_where_column (ffesta_tokens
[0]));
11450 if (ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
11452 ffesymbol_set_state (s
, FFESYMBOL_stateUNDERSTOOD
);
11453 ffesymbol_set_info (s
,
11454 ffeinfo_new (FFEINFO_basictypeNONE
,
11455 FFEINFO_kindtypeNONE
,
11457 FFEINFO_kindPROGRAM
,
11458 FFEINFO_whereLOCAL
,
11459 FFETARGET_charactersizeNONE
));
11460 ffesymbol_signal_unreported (s
);
11463 ffesymbol_error (s
, name
);
11465 ffestd_R1102 (s
, name
);
11468 /* ffestc_R1103 -- END PROGRAM statement
11470 ffestc_R1103(name_token);
11472 Make sure ffestc_kind_ identifies the current kind of program unit. If not
11473 NULL, make sure name_token gives the correct name. Implement the end
11474 of the current program unit. */
11477 ffestc_R1103 (ffelexToken name
)
11479 ffestc_check_simple_ ();
11480 if (ffestc_order_program_ () != FFESTC_orderOK_
)
11482 ffestc_labeldef_notloop_ ();
11486 if (ffestw_name (ffestw_stack_top ()) == NULL
)
11488 ffebad_start (FFEBAD_PROGRAM_NOT_NAMED
);
11489 ffebad_here (0, ffelex_token_where_line (name
),
11490 ffelex_token_where_column (name
));
11491 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
11494 else if (ffelex_token_strcmp (name
, ffestw_name (ffestw_stack_top ())) != 0)
11496 ffebad_start (FFEBAD_UNIT_WRONG_NAME
);
11497 ffebad_here (0, ffelex_token_where_line (name
),
11498 ffelex_token_where_column (name
));
11499 ffebad_here (1, ffelex_token_where_line (ffestw_name (ffestw_stack_top ())),
11500 ffelex_token_where_column (ffestw_name (ffestw_stack_top ())));
11505 ffestc_shriek_end_program_ (TRUE
);
11508 /* ffestc_R1105 -- MODULE statement
11510 ffestc_R1105(name_token);
11512 Make sure ffestc_kind_ identifies an empty block. Make sure name_token
11513 gives a valid name. Implement the beginning of a module. */
11517 ffestc_R1105 (ffelexToken name
)
11521 assert (name
!= NULL
);
11523 ffestc_check_simple_ ();
11524 if (ffestc_order_unit_ () != FFESTC_orderOK_
)
11526 ffestc_labeldef_useless_ ();
11528 ffestc_blocknum_
= 0;
11529 b
= ffestw_update (ffestw_push (NULL
));
11530 ffestw_set_top_do (b
, NULL
);
11531 ffestw_set_state (b
, FFESTV_stateMODULE0
);
11532 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
11533 ffestw_set_shriek (b
, ffestc_shriek_module_
);
11534 ffestw_set_name (b
, ffelex_token_use (name
));
11536 ffestd_R1105 (name
);
11539 /* ffestc_R1106 -- END MODULE statement
11541 ffestc_R1106(name_token);
11543 Make sure ffestc_kind_ identifies the current kind of program unit. If not
11544 NULL, make sure name_token gives the correct name. Implement the end
11545 of the current program unit. */
11548 ffestc_R1106 (ffelexToken name
)
11550 ffestc_check_simple_ ();
11551 if (ffestc_order_module_ () != FFESTC_orderOK_
)
11553 ffestc_labeldef_useless_ ();
11556 && (ffelex_token_strcmp (name
, ffestw_name (ffestw_stack_top ())) != 0))
11558 ffebad_start (FFEBAD_UNIT_WRONG_NAME
);
11559 ffebad_here (0, ffelex_token_where_line (name
),
11560 ffelex_token_where_column (name
));
11561 ffebad_here (1, ffelex_token_where_line (ffestw_name (ffestw_stack_top ())),
11562 ffelex_token_where_column (ffestw_name (ffestw_stack_top ())));
11566 ffestc_shriek_module_ (TRUE
);
11569 /* ffestc_R1107_start -- USE statement list begin
11571 ffestc_R1107_start();
11573 Verify that USE is valid here, and begin accepting items in the list. */
11576 ffestc_R1107_start (ffelexToken name
, bool only
)
11578 ffestc_check_start_ ();
11579 if (ffestc_order_use_ () != FFESTC_orderOK_
)
11581 ffestc_ok_
= FALSE
;
11584 ffestc_labeldef_useless_ ();
11586 ffestd_R1107_start (name
, only
);
11591 /* ffestc_R1107_item -- USE statement for name
11593 ffestc_R1107_item(local_token,use_token);
11595 Make sure name_token identifies a valid object to be USEed. local_token
11596 may be NULL if _start_ was called with only==TRUE. */
11599 ffestc_R1107_item (ffelexToken local
, ffelexToken use
)
11601 ffestc_check_item_ ();
11602 assert (use
!= NULL
);
11606 ffestd_R1107_item (local
, use
);
11609 /* ffestc_R1107_finish -- USE statement list complete
11611 ffestc_R1107_finish();
11613 Just wrap up any local activities. */
11616 ffestc_R1107_finish ()
11618 ffestc_check_finish_ ();
11622 ffestd_R1107_finish ();
11626 /* ffestc_R1111 -- BLOCK DATA statement
11628 ffestc_R1111(name_token);
11630 Make sure ffestc_kind_ identifies no current program unit. If not
11631 NULL, make sure name_token gives a valid name. Implement the beginning
11632 of a block data program unit. */
11635 ffestc_R1111 (ffelexToken name
)
11640 ffestc_check_simple_ ();
11641 if (ffestc_order_unit_ () != FFESTC_orderOK_
)
11643 ffestc_labeldef_useless_ ();
11645 ffestc_blocknum_
= 0;
11646 b
= ffestw_update (ffestw_push (NULL
));
11647 ffestw_set_top_do (b
, NULL
);
11648 ffestw_set_state (b
, FFESTV_stateBLOCKDATA0
);
11649 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
11650 ffestw_set_shriek (b
, ffestc_shriek_blockdata_
);
11653 ffestw_set_name (b
, NULL
);
11655 ffestw_set_name (b
, ffelex_token_use (name
));
11657 s
= ffesymbol_declare_blockdataunit (name
,
11658 ffelex_token_where_line (ffesta_tokens
[0]),
11659 ffelex_token_where_column (ffesta_tokens
[0]));
11661 if (ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
11663 ffesymbol_set_state (s
, FFESYMBOL_stateUNDERSTOOD
);
11664 ffesymbol_set_info (s
,
11665 ffeinfo_new (FFEINFO_basictypeNONE
,
11666 FFEINFO_kindtypeNONE
,
11668 FFEINFO_kindBLOCKDATA
,
11669 FFEINFO_whereLOCAL
,
11670 FFETARGET_charactersizeNONE
));
11671 ffesymbol_signal_unreported (s
);
11674 ffesymbol_error (s
, name
);
11676 ffestd_R1111 (s
, name
);
11679 /* ffestc_R1112 -- END BLOCK DATA statement
11681 ffestc_R1112(name_token);
11683 Make sure ffestc_kind_ identifies the current kind of program unit. If not
11684 NULL, make sure name_token gives the correct name. Implement the end
11685 of the current program unit. */
11688 ffestc_R1112 (ffelexToken name
)
11690 ffestc_check_simple_ ();
11691 if (ffestc_order_blockdata_ () != FFESTC_orderOK_
)
11693 ffestc_labeldef_useless_ ();
11697 if (ffestw_name (ffestw_stack_top ()) == NULL
)
11699 ffebad_start (FFEBAD_BLOCKDATA_NOT_NAMED
);
11700 ffebad_here (0, ffelex_token_where_line (name
),
11701 ffelex_token_where_column (name
));
11702 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
11705 else if (ffelex_token_strcmp (name
, ffestw_name (ffestw_stack_top ())) != 0)
11707 ffebad_start (FFEBAD_UNIT_WRONG_NAME
);
11708 ffebad_here (0, ffelex_token_where_line (name
),
11709 ffelex_token_where_column (name
));
11710 ffebad_here (1, ffelex_token_where_line (ffestw_name (ffestw_stack_top ())),
11711 ffelex_token_where_column (ffestw_name (ffestw_stack_top ())));
11716 ffestc_shriek_blockdata_ (TRUE
);
11719 /* ffestc_R1202 -- INTERFACE statement
11721 ffestc_R1202(operator,defined_name);
11723 Make sure ffestc_kind_ identifies an INTERFACE block.
11724 Implement the end of the current interface.
11727 Allow no operator or name to mean INTERFACE by itself; missed this
11728 valid form when originally doing syntactic analysis code. */
11732 ffestc_R1202 (ffestpDefinedOperator
operator, ffelexToken name
)
11736 ffestc_check_simple_ ();
11737 if (ffestc_order_interfacespec_ () != FFESTC_orderOK_
)
11739 ffestc_labeldef_useless_ ();
11741 b
= ffestw_update (ffestw_push (NULL
));
11742 ffestw_set_top_do (b
, NULL
);
11743 ffestw_set_state (b
, FFESTV_stateINTERFACE0
);
11744 ffestw_set_blocknum (b
, 0);
11745 ffestw_set_shriek (b
, ffestc_shriek_interface_
);
11747 if ((operator == FFESTP_definedoperatorNone
) && (name
== NULL
))
11748 ffestw_set_substate (b
, 0); /* No generic-spec, so disallow MODULE
11751 ffestw_set_substate (b
, 1); /* MODULE PROCEDURE ok. */
11753 ffestd_R1202 (operator, name
);
11758 /* ffestc_R1203 -- END INTERFACE statement
11762 Make sure ffestc_kind_ identifies an INTERFACE block.
11763 Implement the end of the current interface. */
11768 ffestc_check_simple_ ();
11769 if (ffestc_order_interface_ () != FFESTC_orderOK_
)
11771 ffestc_labeldef_useless_ ();
11773 ffestc_shriek_interface_ (TRUE
);
11775 ffe_terminate_4 ();
11778 /* ffestc_R1205_start -- MODULE PROCEDURE statement list begin
11780 ffestc_R1205_start();
11782 Verify that MODULE PROCEDURE is valid here, and begin accepting items in
11786 ffestc_R1205_start ()
11788 ffestc_check_start_ ();
11789 if (ffestc_order_interface_ () != FFESTC_orderOK_
)
11791 ffestc_ok_
= FALSE
;
11794 ffestc_labeldef_useless_ ();
11796 if (ffestw_substate (ffestw_stack_top ()) == 0)
11798 ffebad_start (FFEBAD_INVALID_MODULE_PROCEDURE
);
11799 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
11800 ffelex_token_where_column (ffesta_tokens
[0]));
11801 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
11803 ffestc_ok_
= FALSE
;
11807 if (ffestw_state (ffestw_stack_top ()) == FFESTV_stateINTERFACE0
)
11809 ffestw_update (NULL
); /* Update state line/col info. */
11810 ffestw_set_state (ffestw_stack_top (), FFESTV_stateINTERFACE1
);
11813 ffestd_R1205_start ();
11818 /* ffestc_R1205_item -- MODULE PROCEDURE statement for name
11820 ffestc_R1205_item(name_token);
11822 Make sure name_token identifies a valid object to be MODULE PROCEDUREed. */
11825 ffestc_R1205_item (ffelexToken name
)
11827 ffestc_check_item_ ();
11828 assert (name
!= NULL
);
11832 ffestd_R1205_item (name
);
11835 /* ffestc_R1205_finish -- MODULE PROCEDURE statement list complete
11837 ffestc_R1205_finish();
11839 Just wrap up any local activities. */
11842 ffestc_R1205_finish ()
11844 ffestc_check_finish_ ();
11848 ffestd_R1205_finish ();
11852 /* ffestc_R1207_start -- EXTERNAL statement list begin
11854 ffestc_R1207_start();
11856 Verify that EXTERNAL is valid here, and begin accepting items in the list. */
11859 ffestc_R1207_start ()
11861 ffestc_check_start_ ();
11862 if (ffestc_order_progspec_ () != FFESTC_orderOK_
)
11864 ffestc_ok_
= FALSE
;
11867 ffestc_labeldef_useless_ ();
11869 ffestd_R1207_start ();
11874 /* ffestc_R1207_item -- EXTERNAL statement for name
11876 ffestc_R1207_item(name_token);
11878 Make sure name_token identifies a valid object to be EXTERNALd. */
11881 ffestc_R1207_item (ffelexToken name
)
11887 ffestc_check_item_ ();
11888 assert (name
!= NULL
);
11892 s
= ffesymbol_declare_local (name
, FALSE
);
11893 sa
= ffesymbol_attrs (s
);
11895 /* Figure out what kind of object we've got based on previous declarations
11896 of or references to the object. */
11898 if (!ffesymbol_is_specable (s
))
11899 na
= FFESYMBOL_attrsetNONE
; /* Can't dcl sym ref'd in sfuncdef. */
11900 else if (sa
& FFESYMBOL_attrsANY
)
11901 na
= FFESYMBOL_attrsANY
;
11902 else if (!(sa
& ~(FFESYMBOL_attrsDUMMY
11903 | FFESYMBOL_attrsTYPE
)))
11904 na
= sa
| FFESYMBOL_attrsEXTERNAL
;
11906 na
= FFESYMBOL_attrsetNONE
;
11908 /* Now see what we've got for a new object: NONE means a new error cropped
11909 up; ANY means an old error to be ignored; otherwise, everything's ok,
11910 update the object (symbol) and continue on. */
11912 if (na
== FFESYMBOL_attrsetNONE
)
11913 ffesymbol_error (s
, name
);
11914 else if (!(na
& FFESYMBOL_attrsANY
))
11916 ffesymbol_set_attrs (s
, na
);
11917 ffesymbol_set_state (s
, FFESYMBOL_stateSEEN
);
11918 ffesymbol_set_explicitwhere (s
, TRUE
);
11919 ffesymbol_reference (s
, name
, FALSE
);
11920 ffesymbol_signal_unreported (s
);
11923 ffestd_R1207_item (name
);
11926 /* ffestc_R1207_finish -- EXTERNAL statement list complete
11928 ffestc_R1207_finish();
11930 Just wrap up any local activities. */
11933 ffestc_R1207_finish ()
11935 ffestc_check_finish_ ();
11939 ffestd_R1207_finish ();
11942 /* ffestc_R1208_start -- INTRINSIC statement list begin
11944 ffestc_R1208_start();
11946 Verify that INTRINSIC is valid here, and begin accepting items in the list. */
11949 ffestc_R1208_start ()
11951 ffestc_check_start_ ();
11952 if (ffestc_order_progspec_ () != FFESTC_orderOK_
)
11954 ffestc_ok_
= FALSE
;
11957 ffestc_labeldef_useless_ ();
11959 ffestd_R1208_start ();
11964 /* ffestc_R1208_item -- INTRINSIC statement for name
11966 ffestc_R1208_item(name_token);
11968 Make sure name_token identifies a valid object to be INTRINSICd. */
11971 ffestc_R1208_item (ffelexToken name
)
11977 ffeintrinSpec spec
;
11980 ffestc_check_item_ ();
11981 assert (name
!= NULL
);
11985 s
= ffesymbol_declare_local (name
, TRUE
);
11986 sa
= ffesymbol_attrs (s
);
11988 /* Figure out what kind of object we've got based on previous declarations
11989 of or references to the object. */
11991 if (!ffesymbol_is_specable (s
))
11992 na
= FFESYMBOL_attrsetNONE
; /* Can't dcl sym ref'd in sfuncdef. */
11993 else if (sa
& FFESYMBOL_attrsANY
)
11995 else if (!(sa
& ~FFESYMBOL_attrsTYPE
))
11997 if (ffeintrin_is_intrinsic (ffelex_token_text (name
), name
, TRUE
,
11999 && ((imp
== FFEINTRIN_impNONE
)
12000 #if 0 /* Don't bother with this for now. */
12001 || ((ffeintrin_basictype (spec
)
12002 == ffesymbol_basictype (s
))
12003 && (ffeintrin_kindtype (spec
)
12004 == ffesymbol_kindtype (s
)))
12008 || !(sa
& FFESYMBOL_attrsTYPE
)))
12009 na
= sa
| FFESYMBOL_attrsINTRINSIC
;
12011 na
= FFESYMBOL_attrsetNONE
;
12014 na
= FFESYMBOL_attrsetNONE
;
12016 /* Now see what we've got for a new object: NONE means a new error cropped
12017 up; ANY means an old error to be ignored; otherwise, everything's ok,
12018 update the object (symbol) and continue on. */
12020 if (na
== FFESYMBOL_attrsetNONE
)
12021 ffesymbol_error (s
, name
);
12022 else if (!(na
& FFESYMBOL_attrsANY
))
12024 ffesymbol_set_attrs (s
, na
);
12025 ffesymbol_set_state (s
, FFESYMBOL_stateUNDERSTOOD
);
12026 ffesymbol_set_generic (s
, gen
);
12027 ffesymbol_set_specific (s
, spec
);
12028 ffesymbol_set_implementation (s
, imp
);
12029 ffesymbol_set_info (s
,
12030 ffeinfo_new (ffesymbol_basictype (s
),
12031 ffesymbol_kindtype (s
),
12034 FFEINFO_whereINTRINSIC
,
12035 ffesymbol_size (s
)));
12036 ffesymbol_set_explicitwhere (s
, TRUE
);
12037 ffesymbol_reference (s
, name
, TRUE
);
12040 ffesymbol_signal_unreported (s
);
12042 ffestd_R1208_item (name
);
12045 /* ffestc_R1208_finish -- INTRINSIC statement list complete
12047 ffestc_R1208_finish();
12049 Just wrap up any local activities. */
12052 ffestc_R1208_finish ()
12054 ffestc_check_finish_ ();
12058 ffestd_R1208_finish ();
12061 /* ffestc_R1212 -- CALL statement
12063 ffestc_R1212(expr,expr_token);
12065 Make sure statement is valid here; implement. */
12068 ffestc_R1212 (ffebld expr
, ffelexToken expr_token UNUSED
)
12070 ffebld item
; /* ITEM. */
12071 ffebld labexpr
; /* LABTOK=>LABTER. */
12073 bool ok
; /* TRUE if all LABTOKs were ok. */
12074 bool ok1
; /* TRUE if a particular LABTOK is ok. */
12076 ffestc_check_simple_ ();
12077 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
12079 ffestc_labeldef_branch_begin_ ();
12081 if (ffebld_op (expr
) != FFEBLD_opSUBRREF
)
12082 ffestd_R841 (FALSE
); /* CONTINUE. */
12087 for (item
= ffebld_right (expr
);
12089 item
= ffebld_trail (item
))
12091 if (((labexpr
= ffebld_head (item
)) != NULL
)
12092 && (ffebld_op (labexpr
) == FFEBLD_opLABTOK
))
12094 ok1
= ffestc_labelref_is_branch_ (ffebld_labtok (labexpr
),
12096 ffelex_token_kill (ffebld_labtok (labexpr
));
12102 ffebld_set_op (labexpr
, FFEBLD_opLABTER
);
12103 ffebld_set_labter (labexpr
, label
);
12108 ffestd_R1212 (expr
);
12111 if (ffestc_shriek_after1_
!= NULL
)
12112 (*ffestc_shriek_after1_
) (TRUE
);
12113 ffestc_labeldef_branch_end_ ();
12116 /* ffestc_R1213 -- Defined assignment statement
12118 ffestc_R1213(dest_expr,source_expr,source_token);
12120 Make sure the assignment is valid. */
12124 ffestc_R1213 (ffebld dest
, ffebld source
, ffelexToken source_token
)
12126 ffestc_check_simple_ ();
12127 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
12129 ffestc_labeldef_branch_begin_ ();
12131 ffestd_R1213 (dest
, source
);
12133 if (ffestc_shriek_after1_
!= NULL
)
12134 (*ffestc_shriek_after1_
) (TRUE
);
12135 ffestc_labeldef_branch_end_ ();
12139 /* ffestc_R1219 -- FUNCTION statement
12141 ffestc_R1219(funcname,arglist,ending_token,kind,kindt,len,lent,
12144 Make sure statement is valid here, register arguments for the
12145 function name, and so on.
12148 Added the kind, len, and recursive arguments. */
12151 ffestc_R1219 (ffelexToken funcname
, ffesttTokenList args
,
12152 ffelexToken final UNUSED
, ffestpType type
, ffebld kind
,
12153 ffelexToken kindt
, ffebld len
, ffelexToken lent
,
12154 ffelexToken recursive
, ffelexToken result
)
12158 ffesymbol fs
; /* FUNCTION symbol when dealing with RESULT
12163 bool separate_result
;
12165 assert ((funcname
!= NULL
)
12166 && (ffelex_token_type (funcname
) == FFELEX_typeNAME
));
12168 ffestc_check_simple_ ();
12169 if (ffestc_order_iface_ () != FFESTC_orderOK_
)
12171 ffestc_labeldef_useless_ ();
12173 ffestc_blocknum_
= 0;
12174 ffesta_is_entry_valid
=
12175 (ffestw_state (ffestw_stack_top ()) == FFESTV_stateNIL
);
12176 b
= ffestw_update (ffestw_push (NULL
));
12177 ffestw_set_top_do (b
, NULL
);
12178 ffestw_set_state (b
, FFESTV_stateFUNCTION0
);
12179 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
12180 ffestw_set_shriek (b
, ffestc_shriek_function_
);
12181 ffestw_set_name (b
, ffelex_token_use (funcname
));
12183 if (type
== FFESTP_typeNone
)
12185 ffestc_local_
.decl
.basic_type
= FFEINFO_basictypeNONE
;
12186 ffestc_local_
.decl
.kind_type
= FFEINFO_kindtypeNONE
;
12187 ffestc_local_
.decl
.size
= FFETARGET_charactersizeNONE
;
12191 ffestc_establish_declstmt_ (type
, ffesta_tokens
[0],
12192 kind
, kindt
, len
, lent
);
12193 ffestc_establish_declinfo_ (NULL
, NULL
, NULL
, NULL
);
12196 separate_result
= (result
!= NULL
)
12197 && (ffelex_token_strcmp (funcname
, result
) != 0);
12199 if (separate_result
)
12200 fs
= ffesymbol_declare_funcnotresunit (funcname
); /* Global/local. */
12202 fs
= ffesymbol_declare_funcunit (funcname
); /* Global only. */
12204 if (ffesymbol_state (fs
) == FFESYMBOL_stateNONE
)
12206 ffesymbol_set_state (fs
, FFESYMBOL_stateUNDERSTOOD
);
12207 ffesymbol_signal_unreported (fs
);
12209 /* Note that .basic_type and .kind_type might be NONE here. */
12211 ffesymbol_set_info (fs
,
12212 ffeinfo_new (ffestc_local_
.decl
.basic_type
,
12213 ffestc_local_
.decl
.kind_type
,
12215 FFEINFO_kindFUNCTION
,
12216 FFEINFO_whereLOCAL
,
12217 ffestc_local_
.decl
.size
));
12219 /* Check whether the type info fits the filewide expectations;
12220 set ok flag accordingly. */
12222 ffesymbol_reference (fs
, funcname
, FALSE
);
12223 if (ffesymbol_attrs (fs
) & FFESYMBOL_attrsANY
)
12224 ffestc_parent_ok_
= FALSE
;
12226 ffestc_parent_ok_
= TRUE
;
12230 if (ffesymbol_kind (fs
) != FFEINFO_kindANY
)
12231 ffesymbol_error (fs
, funcname
);
12232 ffestc_parent_ok_
= FALSE
;
12235 if (ffestc_parent_ok_
)
12237 ffebld_init_list (&fs
->dummy_args
, &ffestc_local_
.dummy
.list_bottom
);
12238 ffestt_tokenlist_drive (args
, ffestc_promote_dummy_
);
12239 ffebld_end_list (&ffestc_local_
.dummy
.list_bottom
);
12242 if (result
== NULL
)
12247 s
= ffesymbol_declare_funcresult (res
);
12248 sa
= ffesymbol_attrs (s
);
12250 /* Figure out what kind of object we've got based on previous declarations
12251 of or references to the object. */
12253 if (sa
& FFESYMBOL_attrsANY
)
12254 na
= FFESYMBOL_attrsANY
;
12255 else if (ffesymbol_state (s
) != FFESYMBOL_stateNONE
)
12256 na
= FFESYMBOL_attrsetNONE
;
12259 na
= FFESYMBOL_attrsRESULT
;
12260 if (ffestc_local_
.decl
.basic_type
!= FFEINFO_basictypeNONE
)
12262 na
|= FFESYMBOL_attrsTYPE
;
12263 if ((ffestc_local_
.decl
.basic_type
== FFEINFO_basictypeCHARACTER
)
12264 && (ffestc_local_
.decl
.size
== FFETARGET_charactersizeNONE
))
12265 na
|= FFESYMBOL_attrsANYLEN
;
12269 /* Now see what we've got for a new object: NONE means a new error cropped
12270 up; ANY means an old error to be ignored; otherwise, everything's ok,
12271 update the object (symbol) and continue on. */
12273 if ((na
& ~FFESYMBOL_attrsANY
) == FFESYMBOL_attrsetNONE
)
12275 if (!(na
& FFESYMBOL_attrsANY
))
12276 ffesymbol_error (s
, res
);
12277 ffesymbol_set_funcresult (fs
, NULL
);
12278 ffesymbol_set_funcresult (s
, NULL
);
12279 ffestc_parent_ok_
= FALSE
;
12283 ffesymbol_set_attrs (s
, na
);
12284 ffesymbol_set_state (s
, FFESYMBOL_stateSEEN
);
12285 ffesymbol_set_funcresult (fs
, s
);
12286 ffesymbol_set_funcresult (s
, fs
);
12287 if (ffestc_local_
.decl
.basic_type
!= FFEINFO_basictypeNONE
)
12289 ffesymbol_set_info (s
,
12290 ffeinfo_new (ffestc_local_
.decl
.basic_type
,
12291 ffestc_local_
.decl
.kind_type
,
12295 ffestc_local_
.decl
.size
));
12299 ffesymbol_signal_unreported (fs
);
12301 ffestd_R1219 (fs
, funcname
, args
, type
, kind
, kindt
, len
, lent
,
12302 (recursive
!= NULL
), result
, separate_result
);
12305 /* ffestc_R1221 -- END FUNCTION statement
12307 ffestc_R1221(name_token);
12309 Make sure ffestc_kind_ identifies the current kind of program unit. If
12310 not NULL, make sure name_token gives the correct name. Implement the end
12311 of the current program unit. */
12314 ffestc_R1221 (ffelexToken name
)
12316 ffestc_check_simple_ ();
12317 if (ffestc_order_function_ () != FFESTC_orderOK_
)
12319 ffestc_labeldef_notloop_ ();
12322 && (ffelex_token_strcmp (name
, ffestw_name (ffestw_stack_top ())) != 0))
12324 ffebad_start (FFEBAD_UNIT_WRONG_NAME
);
12325 ffebad_here (0, ffelex_token_where_line (name
),
12326 ffelex_token_where_column (name
));
12327 ffebad_here (1, ffelex_token_where_line (ffestw_name (ffestw_stack_top ())),
12328 ffelex_token_where_column (ffestw_name (ffestw_stack_top ())));
12332 ffestc_shriek_function_ (TRUE
);
12335 /* ffestc_R1223 -- SUBROUTINE statement
12337 ffestc_R1223(subrname,arglist,ending_token,recursive_token);
12339 Make sure statement is valid here, register arguments for the
12340 subroutine name, and so on.
12343 Added the recursive argument. */
12346 ffestc_R1223 (ffelexToken subrname
, ffesttTokenList args
,
12347 ffelexToken final
, ffelexToken recursive
)
12352 assert ((subrname
!= NULL
)
12353 && (ffelex_token_type (subrname
) == FFELEX_typeNAME
));
12355 ffestc_check_simple_ ();
12356 if (ffestc_order_iface_ () != FFESTC_orderOK_
)
12358 ffestc_labeldef_useless_ ();
12360 ffestc_blocknum_
= 0;
12361 ffesta_is_entry_valid
12362 = (ffestw_state (ffestw_stack_top ()) == FFESTV_stateNIL
);
12363 b
= ffestw_update (ffestw_push (NULL
));
12364 ffestw_set_top_do (b
, NULL
);
12365 ffestw_set_state (b
, FFESTV_stateSUBROUTINE0
);
12366 ffestw_set_blocknum (b
, ffestc_blocknum_
++);
12367 ffestw_set_shriek (b
, ffestc_shriek_subroutine_
);
12368 ffestw_set_name (b
, ffelex_token_use (subrname
));
12370 s
= ffesymbol_declare_subrunit (subrname
);
12371 if (ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
12373 ffesymbol_set_state (s
, FFESYMBOL_stateUNDERSTOOD
);
12374 ffesymbol_set_info (s
,
12375 ffeinfo_new (FFEINFO_basictypeNONE
,
12376 FFEINFO_kindtypeNONE
,
12378 FFEINFO_kindSUBROUTINE
,
12379 FFEINFO_whereLOCAL
,
12380 FFETARGET_charactersizeNONE
));
12381 ffestc_parent_ok_
= TRUE
;
12385 if (ffesymbol_kind (s
) != FFEINFO_kindANY
)
12386 ffesymbol_error (s
, subrname
);
12387 ffestc_parent_ok_
= FALSE
;
12390 if (ffestc_parent_ok_
)
12392 ffebld_init_list (&s
->dummy_args
, &ffestc_local_
.dummy
.list_bottom
);
12393 ffestt_tokenlist_drive (args
, ffestc_promote_dummy_
);
12394 ffebld_end_list (&ffestc_local_
.dummy
.list_bottom
);
12397 ffesymbol_signal_unreported (s
);
12399 ffestd_R1223 (s
, subrname
, args
, final
, (recursive
!= NULL
));
12402 /* ffestc_R1225 -- END SUBROUTINE statement
12404 ffestc_R1225(name_token);
12406 Make sure ffestc_kind_ identifies the current kind of program unit. If
12407 not NULL, make sure name_token gives the correct name. Implement the end
12408 of the current program unit. */
12411 ffestc_R1225 (ffelexToken name
)
12413 ffestc_check_simple_ ();
12414 if (ffestc_order_subroutine_ () != FFESTC_orderOK_
)
12416 ffestc_labeldef_notloop_ ();
12419 && (ffelex_token_strcmp (name
, ffestw_name (ffestw_stack_top ())) != 0))
12421 ffebad_start (FFEBAD_UNIT_WRONG_NAME
);
12422 ffebad_here (0, ffelex_token_where_line (name
),
12423 ffelex_token_where_column (name
));
12424 ffebad_here (1, ffelex_token_where_line (ffestw_name (ffestw_stack_top ())),
12425 ffelex_token_where_column (ffestw_name (ffestw_stack_top ())));
12429 ffestc_shriek_subroutine_ (TRUE
);
12432 /* ffestc_R1226 -- ENTRY statement
12434 ffestc_R1226(entryname,arglist,ending_token);
12436 Make sure we're in a SUBROUTINE or FUNCTION, register arguments for the
12437 entry point name, and so on. */
12440 ffestc_R1226 (ffelexToken entryname
, ffesttTokenList args
,
12441 ffelexToken final UNUSED
)
12447 bool in_spec
; /* TRUE if further specification statements
12448 may follow, FALSE if executable stmts. */
12449 bool in_func
; /* TRUE if ENTRY is a FUNCTION, not
12452 assert ((entryname
!= NULL
)
12453 && (ffelex_token_type (entryname
) == FFELEX_typeNAME
));
12455 ffestc_check_simple_ ();
12456 if (ffestc_order_entry_ () != FFESTC_orderOK_
)
12458 ffestc_labeldef_useless_ ();
12460 switch (ffestw_state (ffestw_stack_top ()))
12462 case FFESTV_stateFUNCTION1
:
12463 case FFESTV_stateFUNCTION2
:
12464 case FFESTV_stateFUNCTION3
:
12469 case FFESTV_stateFUNCTION4
:
12474 case FFESTV_stateSUBROUTINE1
:
12475 case FFESTV_stateSUBROUTINE2
:
12476 case FFESTV_stateSUBROUTINE3
:
12481 case FFESTV_stateSUBROUTINE4
:
12487 assert ("ENTRY not in FUNCTION or SUBROUTINE?" == NULL
);
12494 fs
= ffesymbol_declare_funcunit (entryname
);
12496 fs
= ffesymbol_declare_subrunit (entryname
);
12498 if (ffesymbol_state (fs
) == FFESYMBOL_stateNONE
)
12499 ffesymbol_set_state (fs
, FFESYMBOL_stateUNDERSTOOD
);
12502 if (ffesymbol_kind (fs
) != FFEINFO_kindANY
)
12503 ffesymbol_error (fs
, entryname
);
12506 ++ffestc_entry_num_
;
12508 ffebld_init_list (&fs
->dummy_args
, &ffestc_local_
.dummy
.list_bottom
);
12510 ffestt_tokenlist_drive (args
, ffestc_promote_dummy_
);
12512 ffestt_tokenlist_drive (args
, ffestc_promote_execdummy_
);
12513 ffebld_end_list (&ffestc_local_
.dummy
.list_bottom
);
12517 s
= ffesymbol_declare_funcresult (entryname
);
12518 ffesymbol_set_funcresult (fs
, s
);
12519 ffesymbol_set_funcresult (s
, fs
);
12520 sa
= ffesymbol_attrs (s
);
12522 /* Figure out what kind of object we've got based on previous
12523 declarations of or references to the object. */
12525 if (ffesymbol_state (s
) == FFESYMBOL_stateUNDERSTOOD
)
12526 na
= FFESYMBOL_attrsetNONE
;
12527 else if (sa
& FFESYMBOL_attrsANY
)
12528 na
= FFESYMBOL_attrsANY
;
12529 else if (!(sa
& ~(FFESYMBOL_attrsANYLEN
12530 | FFESYMBOL_attrsTYPE
)))
12531 na
= sa
| FFESYMBOL_attrsRESULT
;
12533 na
= FFESYMBOL_attrsetNONE
;
12535 /* Now see what we've got for a new object: NONE means a new error
12536 cropped up; ANY means an old error to be ignored; otherwise,
12537 everything's ok, update the object (symbol) and continue on. */
12539 if (na
== FFESYMBOL_attrsetNONE
)
12541 ffesymbol_error (s
, entryname
);
12542 ffestc_parent_ok_
= FALSE
;
12544 else if (na
& FFESYMBOL_attrsANY
)
12546 ffestc_parent_ok_
= FALSE
;
12550 ffesymbol_set_attrs (s
, na
);
12551 if (ffesymbol_state (s
) == FFESYMBOL_stateNONE
)
12552 ffesymbol_set_state (s
, FFESYMBOL_stateSEEN
);
12553 else if (ffesymbol_state (s
) == FFESYMBOL_stateUNCERTAIN
)
12555 ffesymbol_set_state (s
, FFESYMBOL_stateUNDERSTOOD
);
12556 ffesymbol_set_info (s
,
12557 ffeinfo_new (ffesymbol_basictype (s
),
12558 ffesymbol_kindtype (s
),
12560 FFEINFO_kindENTITY
,
12561 FFEINFO_whereRESULT
,
12562 ffesymbol_size (s
)));
12563 ffesymbol_resolve_intrin (s
);
12564 ffestorag_exec_layout (s
);
12568 /* Since ENTRY might appear after executable stmts, do what would have
12569 been done if it hadn't -- give symbol implicit type and
12570 exec-transition it. */
12572 if (!in_spec
&& ffesymbol_is_specable (s
))
12574 if (!ffeimplic_establish_symbol (s
)) /* Do implicit typing. */
12575 ffesymbol_error (s
, entryname
);
12576 s
= ffecom_sym_exec_transition (s
);
12579 /* Use whatever type info is available for ENTRY to set up type for its
12580 global-name-space function symbol relative. */
12582 ffesymbol_set_info (fs
,
12583 ffeinfo_new (ffesymbol_basictype (s
),
12584 ffesymbol_kindtype (s
),
12586 FFEINFO_kindFUNCTION
,
12587 FFEINFO_whereLOCAL
,
12588 ffesymbol_size (s
)));
12591 /* Check whether the type info fits the filewide expectations;
12592 set ok flag accordingly. */
12594 ffesymbol_reference (fs
, entryname
, FALSE
);
12597 When ENTRY FOO() RESULT(IBAR) is supported, what will the typing be
12598 if FOO and IBAR would normally end up with different types? I think
12599 the answer is that FOO is always given whatever type would be chosen
12600 for IBAR, rather than the other way around, and I think it ends up
12601 working that way for FUNCTION FOO() RESULT(IBAR), but this should be
12602 checked out in all its different combos. Related question is, is
12603 there any way that FOO in either case ends up without type info
12604 filled in? Does anyone care? */
12606 ffesymbol_signal_unreported (s
);
12610 ffesymbol_set_info (fs
,
12611 ffeinfo_new (FFEINFO_basictypeNONE
,
12612 FFEINFO_kindtypeNONE
,
12614 FFEINFO_kindSUBROUTINE
,
12615 FFEINFO_whereLOCAL
,
12616 FFETARGET_charactersizeNONE
));
12620 fs
= ffecom_sym_exec_transition (fs
);
12622 ffesymbol_signal_unreported (fs
);
12627 /* ffestc_R1227 -- RETURN statement
12629 ffestc_R1227(expr,expr_token);
12631 Make sure statement is valid here; implement. expr and expr_token are
12632 both NULL if there was no expression. */
12635 ffestc_R1227 (ffebld expr
, ffelexToken expr_token
)
12639 ffestc_check_simple_ ();
12640 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
12642 ffestc_labeldef_notloop_begin_ ();
12644 for (b
= ffestw_stack_top (); ; b
= ffestw_previous (b
))
12646 switch (ffestw_state (b
))
12648 case FFESTV_statePROGRAM4
:
12649 case FFESTV_stateSUBROUTINE4
:
12650 case FFESTV_stateFUNCTION4
:
12651 goto base
; /* :::::::::::::::::::: */
12653 case FFESTV_stateNIL
:
12654 assert ("bad state" == NULL
);
12663 switch (ffestw_state (b
))
12665 case FFESTV_statePROGRAM4
:
12666 if (ffe_is_pedantic ())
12668 ffebad_start (FFEBAD_RETURN_IN_MAIN
);
12669 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
12670 ffelex_token_where_column (ffesta_tokens
[0]));
12675 ffebad_start (FFEBAD_ALTRETURN_IN_PROGRAM
);
12676 ffebad_here (0, ffelex_token_where_line (expr_token
),
12677 ffelex_token_where_column (expr_token
));
12683 case FFESTV_stateSUBROUTINE4
:
12686 case FFESTV_stateFUNCTION4
:
12689 ffebad_start (FFEBAD_ALTRETURN_IN_FUNCTION
);
12690 ffebad_here (0, ffelex_token_where_line (expr_token
),
12691 ffelex_token_where_column (expr_token
));
12698 assert ("bad state #2" == NULL
);
12702 ffestd_R1227 (expr
);
12704 if (ffestc_shriek_after1_
!= NULL
)
12705 (*ffestc_shriek_after1_
) (TRUE
);
12707 /* notloop's that are actionif's can be the target of a loop-end
12708 statement if they're in the "then" part of a logical IF, as
12709 in "DO 10", "10 IF (...) RETURN". */
12711 ffestc_labeldef_branch_end_ ();
12714 /* ffestc_R1228 -- CONTAINS statement
12722 ffestc_check_simple_ ();
12723 if (ffestc_order_contains_ () != FFESTC_orderOK_
)
12725 ffestc_labeldef_useless_ ();
12729 ffe_terminate_3 ();
12734 /* ffestc_R1229_start -- STMTFUNCTION statement begin
12736 ffestc_R1229_start(func_name,func_arg_list,close_paren);
12738 Verify that STMTFUNCTION is valid here, establish func_arg_list in a new
12739 "live" scope within the current scope, and expect the actual expression
12740 (or NULL) in ffestc_R1229_finish. The reason there are two ffestc
12741 functions to handle this is so the scope can be established, allowing
12742 ffeexpr to assign proper characteristics to references to the dummy
12746 ffestc_R1229_start (ffelexToken name
, ffesttTokenList args
,
12747 ffelexToken final UNUSED
)
12753 ffestc_check_start_ ();
12754 if (ffestc_order_sfunc_ () != FFESTC_orderOK_
)
12756 ffestc_ok_
= FALSE
;
12759 ffestc_labeldef_useless_ ();
12761 assert (name
!= NULL
);
12762 assert (args
!= NULL
);
12764 s
= ffesymbol_declare_local (name
, FALSE
);
12765 sa
= ffesymbol_attrs (s
);
12767 /* Figure out what kind of object we've got based on previous declarations
12768 of or references to the object. */
12770 if (!ffesymbol_is_specable (s
))
12771 na
= FFESYMBOL_attrsetNONE
; /* Can't dcl sym ref'd in sfuncdef. */
12772 else if (sa
& FFESYMBOL_attrsANY
)
12773 na
= FFESYMBOL_attrsANY
;
12774 else if (!(sa
& ~FFESYMBOL_attrsTYPE
))
12775 na
= sa
| FFESYMBOL_attrsSFUNC
;
12777 na
= FFESYMBOL_attrsetNONE
;
12779 /* Now see what we've got for a new object: NONE means a new error cropped
12780 up; ANY means an old error to be ignored; otherwise, everything's ok,
12781 update the object (symbol) and continue on. */
12783 if (na
== FFESYMBOL_attrsetNONE
)
12785 ffesymbol_error (s
, name
);
12786 ffestc_parent_ok_
= FALSE
;
12788 else if (na
& FFESYMBOL_attrsANY
)
12789 ffestc_parent_ok_
= FALSE
;
12792 ffesymbol_set_attrs (s
, na
);
12793 ffesymbol_set_state (s
, FFESYMBOL_stateSEEN
);
12794 if (!ffeimplic_establish_symbol (s
)
12795 || ((ffesymbol_basictype (s
) == FFEINFO_basictypeCHARACTER
)
12796 && (ffesymbol_size (s
) == FFETARGET_charactersizeNONE
)))
12798 ffesymbol_error (s
, ffesta_tokens
[0]);
12799 ffestc_parent_ok_
= FALSE
;
12803 /* Tell ffeexpr that sfunc def is in progress. */
12804 ffesymbol_set_sfexpr (s
, ffebld_new_any ());
12805 ffebld_set_info (ffesymbol_sfexpr (s
), ffeinfo_new_any ());
12806 ffestc_parent_ok_
= TRUE
;
12812 if (ffestc_parent_ok_
)
12814 ffebld_init_list (&s
->dummy_args
, &ffestc_local_
.dummy
.list_bottom
);
12815 ffestc_sfdummy_argno_
= 0;
12816 ffestt_tokenlist_drive (args
, ffestc_promote_sfdummy_
);
12817 ffebld_end_list (&ffestc_local_
.dummy
.list_bottom
);
12820 ffestc_local_
.sfunc
.symbol
= s
;
12822 ffestd_R1229_start (name
, args
);
12827 /* ffestc_R1229_finish -- STMTFUNCTION statement list complete
12829 ffestc_R1229_finish(expr,expr_token);
12831 If expr is NULL, an error occurred parsing the expansion expression, so
12832 just cancel the effects of ffestc_R1229_start and pretend nothing
12833 happened. Otherwise, install the expression as the expansion for the
12834 statement function named in _start_, then clean up. */
12837 ffestc_R1229_finish (ffebld expr
, ffelexToken expr_token
)
12839 ffestc_check_finish_ ();
12843 if (ffestc_parent_ok_
&& (expr
!= NULL
))
12844 ffesymbol_set_sfexpr (ffestc_local_
.sfunc
.symbol
,
12845 ffeexpr_convert_to_sym (expr
,
12847 ffestc_local_
.sfunc
.symbol
,
12848 ffesta_tokens
[0]));
12850 ffestd_R1229_finish (ffestc_local_
.sfunc
.symbol
);
12852 ffesymbol_signal_unreported (ffestc_local_
.sfunc
.symbol
);
12854 ffe_terminate_4 ();
12857 /* ffestc_S3P4 -- INCLUDE line
12859 ffestc_S3P4(filename,filename_token);
12861 Make sure INCLUDE not preceded by any semicolons or a label def; implement. */
12864 ffestc_S3P4 (ffebld filename
, ffelexToken filename_token UNUSED
)
12866 ffestc_check_simple_ ();
12867 ffestc_labeldef_invalid_ ();
12869 ffestd_S3P4 (filename
);
12872 /* ffestc_V003_start -- STRUCTURE statement list begin
12874 ffestc_V003_start(structure_name);
12876 Verify that STRUCTURE is valid here, and begin accepting items in the list. */
12880 ffestc_V003_start (ffelexToken structure_name
)
12884 ffestc_check_start_ ();
12885 if (ffestc_order_vxtstructure_ () != FFESTC_orderOK_
)
12887 ffestc_ok_
= FALSE
;
12890 ffestc_labeldef_useless_ ();
12892 switch (ffestw_state (ffestw_stack_top ()))
12894 case FFESTV_stateSTRUCTURE
:
12895 case FFESTV_stateMAP
:
12896 ffestc_local_
.V003
.list_state
= 2; /* Require at least one field
12898 ffestw_set_substate (ffestw_stack_top (), 1); /* Seen at least one
12903 ffestc_local_
.V003
.list_state
= 0; /* No field names required. */
12904 if (structure_name
== NULL
)
12906 ffebad_start (FFEBAD_STRUCT_MISSING_NAME
);
12907 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
12908 ffelex_token_where_column (ffesta_tokens
[0]));
12914 b
= ffestw_update (ffestw_push (NULL
));
12915 ffestw_set_top_do (b
, NULL
);
12916 ffestw_set_state (b
, FFESTV_stateSTRUCTURE
);
12917 ffestw_set_blocknum (b
, 0);
12918 ffestw_set_shriek (b
, ffestc_shriek_structure_
);
12919 ffestw_set_substate (b
, 0); /* No field-declarations seen yet. */
12921 ffestd_V003_start (structure_name
);
12926 /* ffestc_V003_item -- STRUCTURE statement for object-name
12928 ffestc_V003_item(name_token,dim_list);
12930 Make sure name_token identifies a valid object to be STRUCTUREd. */
12933 ffestc_V003_item (ffelexToken name
, ffesttDimList dims
)
12935 ffestc_check_item_ ();
12936 assert (name
!= NULL
);
12940 if (ffestc_local_
.V003
.list_state
< 2)
12942 if (ffestc_local_
.V003
.list_state
== 0)
12944 ffestc_local_
.V003
.list_state
= 1;
12945 ffebad_start (FFEBAD_STRUCT_IGNORING_FIELD
);
12946 ffebad_here (0, ffelex_token_where_line (name
),
12947 ffelex_token_where_column (name
));
12952 ffestc_local_
.V003
.list_state
= 3; /* Have at least one field name. */
12955 ffesta_set_outpooldisp (FFESTA_pooldispPRESERVE
);
12957 ffestd_V003_item (name
, dims
);
12960 /* ffestc_V003_finish -- STRUCTURE statement list complete
12962 ffestc_V003_finish();
12964 Just wrap up any local activities. */
12967 ffestc_V003_finish ()
12969 ffestc_check_finish_ ();
12973 if (ffestc_local_
.V003
.list_state
== 2)
12975 ffebad_start (FFEBAD_STRUCT_MISSING_FIELD
);
12976 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
12977 ffelex_token_where_column (ffesta_tokens
[0]));
12978 ffebad_here (1, ffestw_line (ffestw_previous (ffestw_stack_top ())),
12979 ffestw_col (ffestw_previous (ffestw_stack_top ())));
12983 ffestd_V003_finish ();
12986 /* ffestc_V004 -- END STRUCTURE statement
12990 Make sure ffestc_kind_ identifies a STRUCTURE block.
12991 Implement the end of the current STRUCTURE block. */
12996 ffestc_check_simple_ ();
12997 if (ffestc_order_structure_ () != FFESTC_orderOK_
)
12999 ffestc_labeldef_useless_ ();
13001 if (ffestw_substate (ffestw_stack_top ()) != 1)
13003 ffebad_start (FFEBAD_STRUCT_NO_COMPONENTS
);
13004 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
13005 ffelex_token_where_column (ffesta_tokens
[0]));
13006 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
13010 ffestc_shriek_structure_ (TRUE
);
13013 /* ffestc_V009 -- UNION statement
13022 ffestc_check_simple_ ();
13023 if (ffestc_order_structure_ () != FFESTC_orderOK_
)
13025 ffestc_labeldef_useless_ ();
13027 ffestw_set_substate (ffestw_stack_top (), 1); /* Seen at least one member. */
13029 b
= ffestw_update (ffestw_push (NULL
));
13030 ffestw_set_top_do (b
, NULL
);
13031 ffestw_set_state (b
, FFESTV_stateUNION
);
13032 ffestw_set_blocknum (b
, 0);
13033 ffestw_set_shriek (b
, ffestc_shriek_union_
);
13034 ffestw_set_substate (b
, 0); /* No map decls seen yet. */
13039 /* ffestc_V010 -- END UNION statement
13043 Make sure ffestc_kind_ identifies a UNION block.
13044 Implement the end of the current UNION block. */
13049 ffestc_check_simple_ ();
13050 if (ffestc_order_union_ () != FFESTC_orderOK_
)
13052 ffestc_labeldef_useless_ ();
13054 if (ffestw_substate (ffestw_stack_top ()) != 2)
13056 ffebad_start (FFEBAD_UNION_NO_TWO_MAPS
);
13057 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
13058 ffelex_token_where_column (ffesta_tokens
[0]));
13059 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
13063 ffestc_shriek_union_ (TRUE
);
13066 /* ffestc_V012 -- MAP statement
13075 ffestc_check_simple_ ();
13076 if (ffestc_order_union_ () != FFESTC_orderOK_
)
13078 ffestc_labeldef_useless_ ();
13080 if (ffestw_substate (ffestw_stack_top ()) != 2)
13081 ffestw_substate (ffestw_stack_top ())++; /* 0=>1, 1=>2. */
13083 b
= ffestw_update (ffestw_push (NULL
));
13084 ffestw_set_top_do (b
, NULL
);
13085 ffestw_set_state (b
, FFESTV_stateMAP
);
13086 ffestw_set_blocknum (b
, 0);
13087 ffestw_set_shriek (b
, ffestc_shriek_map_
);
13088 ffestw_set_substate (b
, 0); /* No field-declarations seen yet. */
13093 /* ffestc_V013 -- END MAP statement
13097 Make sure ffestc_kind_ identifies a MAP block.
13098 Implement the end of the current MAP block. */
13103 ffestc_check_simple_ ();
13104 if (ffestc_order_map_ () != FFESTC_orderOK_
)
13106 ffestc_labeldef_useless_ ();
13108 if (ffestw_substate (ffestw_stack_top ()) != 1)
13110 ffebad_start (FFEBAD_MAP_NO_COMPONENTS
);
13111 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
13112 ffelex_token_where_column (ffesta_tokens
[0]));
13113 ffebad_here (1, ffestw_line (ffestw_stack_top ()), ffestw_col (ffestw_stack_top ()));
13117 ffestc_shriek_map_ (TRUE
);
13121 /* ffestc_V014_start -- VOLATILE statement list begin
13123 ffestc_V014_start();
13125 Verify that VOLATILE is valid here, and begin accepting items in the
13129 ffestc_V014_start ()
13131 ffestc_check_start_ ();
13132 if (ffestc_order_progspec_ () != FFESTC_orderOK_
)
13134 ffestc_ok_
= FALSE
;
13137 ffestc_labeldef_useless_ ();
13139 ffestd_V014_start ();
13144 /* ffestc_V014_item_object -- VOLATILE statement for object-name
13146 ffestc_V014_item_object(name_token);
13148 Make sure name_token identifies a valid object to be VOLATILEd. */
13151 ffestc_V014_item_object (ffelexToken name
)
13153 ffestc_check_item_ ();
13154 assert (name
!= NULL
);
13158 ffestd_V014_item_object (name
);
13161 /* ffestc_V014_item_cblock -- VOLATILE statement for common-block-name
13163 ffestc_V014_item_cblock(name_token);
13165 Make sure name_token identifies a valid common block to be VOLATILEd. */
13168 ffestc_V014_item_cblock (ffelexToken name
)
13170 ffestc_check_item_ ();
13171 assert (name
!= NULL
);
13175 ffestd_V014_item_cblock (name
);
13178 /* ffestc_V014_finish -- VOLATILE statement list complete
13180 ffestc_V014_finish();
13182 Just wrap up any local activities. */
13185 ffestc_V014_finish ()
13187 ffestc_check_finish_ ();
13191 ffestd_V014_finish ();
13194 /* ffestc_V016_start -- RECORD statement list begin
13196 ffestc_V016_start();
13198 Verify that RECORD is valid here, and begin accepting items in the list. */
13202 ffestc_V016_start ()
13204 ffestc_check_start_ ();
13205 if (ffestc_order_record_ () != FFESTC_orderOK_
)
13207 ffestc_ok_
= FALSE
;
13210 ffestc_labeldef_useless_ ();
13212 switch (ffestw_state (ffestw_stack_top ()))
13214 case FFESTV_stateSTRUCTURE
:
13215 case FFESTV_stateMAP
:
13216 ffestw_set_substate (ffestw_stack_top (), 1); /* Seen at least one
13224 ffestd_V016_start ();
13229 /* ffestc_V016_item_structure -- RECORD statement for common-block-name
13231 ffestc_V016_item_structure(name_token);
13233 Make sure name_token identifies a valid structure to be RECORDed. */
13236 ffestc_V016_item_structure (ffelexToken name
)
13238 ffestc_check_item_ ();
13239 assert (name
!= NULL
);
13243 ffestd_V016_item_structure (name
);
13246 /* ffestc_V016_item_object -- RECORD statement for object-name
13248 ffestc_V016_item_object(name_token,dim_list);
13250 Make sure name_token identifies a valid object to be RECORDd. */
13253 ffestc_V016_item_object (ffelexToken name
, ffesttDimList dims
)
13255 ffestc_check_item_ ();
13256 assert (name
!= NULL
);
13261 ffesta_set_outpooldisp (FFESTA_pooldispPRESERVE
);
13263 ffestd_V016_item_object (name
, dims
);
13266 /* ffestc_V016_finish -- RECORD statement list complete
13268 ffestc_V016_finish();
13270 Just wrap up any local activities. */
13273 ffestc_V016_finish ()
13275 ffestc_check_finish_ ();
13279 ffestd_V016_finish ();
13282 /* ffestc_V018_start -- REWRITE(...) statement list begin
13284 ffestc_V018_start();
13286 Verify that REWRITE is valid here, and begin accepting items in the
13290 ffestc_V018_start ()
13292 ffestvFormat format
;
13294 ffestc_check_start_ ();
13295 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
13297 ffestc_ok_
= FALSE
;
13300 ffestc_labeldef_branch_begin_ ();
13302 if (!ffestc_subr_is_branch_
13303 (&ffestp_file
.rewrite
.rewrite_spec
[FFESTP_rewriteixERR
])
13304 || !ffestc_subr_is_format_
13305 (&ffestp_file
.rewrite
.rewrite_spec
[FFESTP_rewriteixFMT
])
13306 || !ffestc_subr_is_present_ ("UNIT",
13307 &ffestp_file
.rewrite
.rewrite_spec
[FFESTP_rewriteixUNIT
]))
13309 ffestc_ok_
= FALSE
;
13313 format
= ffestc_subr_format_
13314 (&ffestp_file
.rewrite
.rewrite_spec
[FFESTP_rewriteixFMT
]);
13317 case FFESTV_formatNAMELIST
:
13318 case FFESTV_formatASTERISK
:
13319 ffebad_start (FFEBAD_CONFLICTING_SPECS
);
13320 ffebad_here (0, ffelex_token_where_line (ffesta_tokens
[0]),
13321 ffelex_token_where_column (ffesta_tokens
[0]));
13322 assert (ffestp_file
.rewrite
.rewrite_spec
[FFESTP_rewriteixFMT
].kw_or_val_present
);
13323 if (ffestp_file
.rewrite
.rewrite_spec
[FFESTP_rewriteixFMT
].kw_present
)
13325 ffebad_here (0, ffelex_token_where_line
13326 (ffestp_file
.rewrite
.rewrite_spec
[FFESTP_rewriteixFMT
].kw
),
13327 ffelex_token_where_column
13328 (ffestp_file
.rewrite
.rewrite_spec
[FFESTP_rewriteixFMT
].kw
));
13332 ffebad_here (1, ffelex_token_where_line
13333 (ffestp_file
.rewrite
.rewrite_spec
[FFESTP_rewriteixFMT
].value
),
13334 ffelex_token_where_column
13335 (ffestp_file
.rewrite
.rewrite_spec
[FFESTP_rewriteixFMT
].value
));
13338 ffestc_ok_
= FALSE
;
13345 ffestd_V018_start (format
);
13350 /* ffestc_V018_item -- REWRITE statement i/o item
13352 ffestc_V018_item(expr,expr_token);
13354 Implement output-list expression. */
13357 ffestc_V018_item (ffebld expr
, ffelexToken expr_token
)
13359 ffestc_check_item_ ();
13363 ffestd_V018_item (expr
);
13366 /* ffestc_V018_finish -- REWRITE statement list complete
13368 ffestc_V018_finish();
13370 Just wrap up any local activities. */
13373 ffestc_V018_finish ()
13375 ffestc_check_finish_ ();
13379 ffestd_V018_finish ();
13381 if (ffestc_shriek_after1_
!= NULL
)
13382 (*ffestc_shriek_after1_
) (TRUE
);
13383 ffestc_labeldef_branch_end_ ();
13386 /* ffestc_V019_start -- ACCEPT statement list begin
13388 ffestc_V019_start();
13390 Verify that ACCEPT is valid here, and begin accepting items in the
13394 ffestc_V019_start ()
13396 ffestvFormat format
;
13398 ffestc_check_start_ ();
13399 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
13401 ffestc_ok_
= FALSE
;
13404 ffestc_labeldef_branch_begin_ ();
13406 if (!ffestc_subr_is_format_
13407 (&ffestp_file
.accept
.accept_spec
[FFESTP_acceptixFORMAT
]))
13409 ffestc_ok_
= FALSE
;
13413 format
= ffestc_subr_format_
13414 (&ffestp_file
.accept
.accept_spec
[FFESTP_acceptixFORMAT
]);
13415 ffestc_namelist_
= (format
== FFESTV_formatNAMELIST
);
13417 ffestd_V019_start (format
);
13422 /* ffestc_V019_item -- ACCEPT statement i/o item
13424 ffestc_V019_item(expr,expr_token);
13426 Implement output-list expression. */
13429 ffestc_V019_item (ffebld expr
, ffelexToken expr_token
)
13431 ffestc_check_item_ ();
13435 if (ffestc_namelist_
!= 0)
13437 if (ffestc_namelist_
== 1)
13439 ffestc_namelist_
= 2;
13440 ffebad_start (FFEBAD_NAMELIST_ITEMS
);
13441 ffebad_here (0, ffelex_token_where_line (expr_token
),
13442 ffelex_token_where_column (expr_token
));
13448 ffestd_V019_item (expr
);
13451 /* ffestc_V019_finish -- ACCEPT statement list complete
13453 ffestc_V019_finish();
13455 Just wrap up any local activities. */
13458 ffestc_V019_finish ()
13460 ffestc_check_finish_ ();
13464 ffestd_V019_finish ();
13466 if (ffestc_shriek_after1_
!= NULL
)
13467 (*ffestc_shriek_after1_
) (TRUE
);
13468 ffestc_labeldef_branch_end_ ();
13472 /* ffestc_V020_start -- TYPE statement list begin
13474 ffestc_V020_start();
13476 Verify that TYPE is valid here, and begin accepting items in the
13480 ffestc_V020_start ()
13482 ffestvFormat format
;
13484 ffestc_check_start_ ();
13485 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
13487 ffestc_ok_
= FALSE
;
13490 ffestc_labeldef_branch_begin_ ();
13492 if (!ffestc_subr_is_format_
13493 (&ffestp_file
.type
.type_spec
[FFESTP_typeixFORMAT
]))
13495 ffestc_ok_
= FALSE
;
13499 format
= ffestc_subr_format_
13500 (&ffestp_file
.type
.type_spec
[FFESTP_typeixFORMAT
]);
13501 ffestc_namelist_
= (format
== FFESTV_formatNAMELIST
);
13503 ffestd_V020_start (format
);
13508 /* ffestc_V020_item -- TYPE statement i/o item
13510 ffestc_V020_item(expr,expr_token);
13512 Implement output-list expression. */
13515 ffestc_V020_item (ffebld expr
, ffelexToken expr_token
)
13517 ffestc_check_item_ ();
13521 if (ffestc_namelist_
!= 0)
13523 if (ffestc_namelist_
== 1)
13525 ffestc_namelist_
= 2;
13526 ffebad_start (FFEBAD_NAMELIST_ITEMS
);
13527 ffebad_here (0, ffelex_token_where_line (expr_token
),
13528 ffelex_token_where_column (expr_token
));
13534 ffestd_V020_item (expr
);
13537 /* ffestc_V020_finish -- TYPE statement list complete
13539 ffestc_V020_finish();
13541 Just wrap up any local activities. */
13544 ffestc_V020_finish ()
13546 ffestc_check_finish_ ();
13550 ffestd_V020_finish ();
13552 if (ffestc_shriek_after1_
!= NULL
)
13553 (*ffestc_shriek_after1_
) (TRUE
);
13554 ffestc_labeldef_branch_end_ ();
13557 /* ffestc_V021 -- DELETE statement
13561 Make sure a DELETE is valid in the current context, and implement it. */
13567 ffestc_check_simple_ ();
13568 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
13570 ffestc_labeldef_branch_begin_ ();
13572 if (ffestc_subr_is_branch_
13573 (&ffestp_file
.delete.delete_spec
[FFESTP_deleteixERR
])
13574 && ffestc_subr_is_present_ ("UNIT",
13575 &ffestp_file
.delete.delete_spec
[FFESTP_deleteixUNIT
]))
13578 if (ffestc_shriek_after1_
!= NULL
)
13579 (*ffestc_shriek_after1_
) (TRUE
);
13580 ffestc_labeldef_branch_end_ ();
13583 /* ffestc_V022 -- UNLOCK statement
13587 Make sure a UNLOCK is valid in the current context, and implement it. */
13592 ffestc_check_simple_ ();
13593 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
13595 ffestc_labeldef_branch_begin_ ();
13597 if (ffestc_subr_is_branch_
13598 (&ffestp_file
.beru
.beru_spec
[FFESTP_beruixERR
])
13599 && ffestc_subr_is_present_ ("UNIT",
13600 &ffestp_file
.beru
.beru_spec
[FFESTP_beruixUNIT
]))
13603 if (ffestc_shriek_after1_
!= NULL
)
13604 (*ffestc_shriek_after1_
) (TRUE
);
13605 ffestc_labeldef_branch_end_ ();
13608 /* ffestc_V023_start -- ENCODE(...) statement list begin
13610 ffestc_V023_start();
13612 Verify that ENCODE is valid here, and begin accepting items in the
13616 ffestc_V023_start ()
13618 ffestc_check_start_ ();
13619 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
13621 ffestc_ok_
= FALSE
;
13624 ffestc_labeldef_branch_begin_ ();
13626 if (!ffestc_subr_is_branch_
13627 (&ffestp_file
.vxtcode
.vxtcode_spec
[FFESTP_vxtcodeixERR
]))
13629 ffestc_ok_
= FALSE
;
13633 ffestd_V023_start ();
13638 /* ffestc_V023_item -- ENCODE statement i/o item
13640 ffestc_V023_item(expr,expr_token);
13642 Implement output-list expression. */
13645 ffestc_V023_item (ffebld expr
, ffelexToken expr_token
)
13647 ffestc_check_item_ ();
13651 ffestd_V023_item (expr
);
13654 /* ffestc_V023_finish -- ENCODE statement list complete
13656 ffestc_V023_finish();
13658 Just wrap up any local activities. */
13661 ffestc_V023_finish ()
13663 ffestc_check_finish_ ();
13667 ffestd_V023_finish ();
13669 if (ffestc_shriek_after1_
!= NULL
)
13670 (*ffestc_shriek_after1_
) (TRUE
);
13671 ffestc_labeldef_branch_end_ ();
13674 /* ffestc_V024_start -- DECODE(...) statement list begin
13676 ffestc_V024_start();
13678 Verify that DECODE is valid here, and begin accepting items in the
13682 ffestc_V024_start ()
13684 ffestc_check_start_ ();
13685 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
13687 ffestc_ok_
= FALSE
;
13690 ffestc_labeldef_branch_begin_ ();
13692 if (!ffestc_subr_is_branch_
13693 (&ffestp_file
.vxtcode
.vxtcode_spec
[FFESTP_vxtcodeixERR
]))
13695 ffestc_ok_
= FALSE
;
13699 ffestd_V024_start ();
13704 /* ffestc_V024_item -- DECODE statement i/o item
13706 ffestc_V024_item(expr,expr_token);
13708 Implement output-list expression. */
13711 ffestc_V024_item (ffebld expr
, ffelexToken expr_token
)
13713 ffestc_check_item_ ();
13717 ffestd_V024_item (expr
);
13720 /* ffestc_V024_finish -- DECODE statement list complete
13722 ffestc_V024_finish();
13724 Just wrap up any local activities. */
13727 ffestc_V024_finish ()
13729 ffestc_check_finish_ ();
13733 ffestd_V024_finish ();
13735 if (ffestc_shriek_after1_
!= NULL
)
13736 (*ffestc_shriek_after1_
) (TRUE
);
13737 ffestc_labeldef_branch_end_ ();
13740 /* ffestc_V025_start -- DEFINEFILE statement list begin
13742 ffestc_V025_start();
13744 Verify that DEFINEFILE is valid here, and begin accepting items in the
13748 ffestc_V025_start ()
13750 ffestc_check_start_ ();
13751 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
13753 ffestc_ok_
= FALSE
;
13756 ffestc_labeldef_branch_begin_ ();
13758 ffestd_V025_start ();
13763 /* ffestc_V025_item -- DEFINE FILE statement item
13765 ffestc_V025_item(u,ut,m,mt,n,nt,asv,asvt);
13770 ffestc_V025_item (ffebld u
, ffelexToken ut
, ffebld m
, ffelexToken mt
,
13771 ffebld n
, ffelexToken nt
, ffebld asv
, ffelexToken asvt
)
13773 ffestc_check_item_ ();
13777 ffestd_V025_item (u
, m
, n
, asv
);
13780 /* ffestc_V025_finish -- DEFINE FILE statement list complete
13782 ffestc_V025_finish();
13784 Just wrap up any local activities. */
13787 ffestc_V025_finish ()
13789 ffestc_check_finish_ ();
13793 ffestd_V025_finish ();
13795 if (ffestc_shriek_after1_
!= NULL
)
13796 (*ffestc_shriek_after1_
) (TRUE
);
13797 ffestc_labeldef_branch_end_ ();
13800 /* ffestc_V026 -- FIND statement
13804 Make sure a FIND is valid in the current context, and implement it. */
13809 ffestc_check_simple_ ();
13810 if (ffestc_order_actionif_ () != FFESTC_orderOK_
)
13812 ffestc_labeldef_branch_begin_ ();
13814 if (ffestc_subr_is_branch_
13815 (&ffestp_file
.find
.find_spec
[FFESTP_findixERR
])
13816 && ffestc_subr_is_present_ ("UNIT",
13817 &ffestp_file
.find
.find_spec
[FFESTP_findixUNIT
])
13818 && ffestc_subr_is_present_ ("REC",
13819 &ffestp_file
.find
.find_spec
[FFESTP_findixREC
]))
13822 if (ffestc_shriek_after1_
!= NULL
)
13823 (*ffestc_shriek_after1_
) (TRUE
);
13824 ffestc_labeldef_branch_end_ ();
13828 /* ffestc_V027_start -- VXT PARAMETER statement list begin
13830 ffestc_V027_start();
13832 Verify that PARAMETER is valid here, and begin accepting items in the list. */
13835 ffestc_V027_start ()
13837 ffestc_check_start_ ();
13838 if (ffestc_order_parameter_ () != FFESTC_orderOK_
)
13840 ffestc_ok_
= FALSE
;
13843 ffestc_labeldef_useless_ ();
13845 ffestd_V027_start ();
13850 /* ffestc_V027_item -- VXT PARAMETER statement assignment
13852 ffestc_V027_item(dest,dest_token,source,source_token);
13854 Make sure the source is a valid source for the destination; make the
13858 ffestc_V027_item (ffelexToken dest_token
, ffebld source
,
13859 ffelexToken source_token UNUSED
)
13861 ffestc_check_item_ ();
13865 ffestd_V027_item (dest_token
, source
);
13868 /* ffestc_V027_finish -- VXT PARAMETER statement list complete
13870 ffestc_V027_finish();
13872 Just wrap up any local activities. */
13875 ffestc_V027_finish ()
13877 ffestc_check_finish_ ();
13881 ffestd_V027_finish ();
13884 /* Any executable statement. Mainly make sure that one-shot things
13885 like the statement for a logical IF are reset. */
13890 ffestc_check_simple_ ();
13892 ffestc_order_any_ ();
13894 ffestc_labeldef_any_ ();
13896 if (ffestc_shriek_after1_
== NULL
)
13901 (*ffestc_shriek_after1_
) (TRUE
);