1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2017, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 pragma Style_Checks
(All_Checks
);
27 -- Turn off subprogram body ordering check. Subprograms are in order by RM
28 -- section rather than alphabetical.
33 -- Local subprograms, used only in this chapter
35 function P_Accept_Alternative
return Node_Id
;
36 function P_Delay_Alternative
return Node_Id
;
37 function P_Delay_Relative_Statement
return Node_Id
;
38 function P_Delay_Until_Statement
return Node_Id
;
39 function P_Entry_Barrier
return Node_Id
;
40 function P_Entry_Body_Formal_Part
return Node_Id
;
41 function P_Entry_Declaration
return Node_Id
;
42 function P_Entry_Index_Specification
return Node_Id
;
43 function P_Protected_Definition
return Node_Id
;
44 function P_Protected_Operation_Declaration_Opt
return Node_Id
;
45 function P_Protected_Operation_Items
return List_Id
;
46 function P_Task_Items
return List_Id
;
47 function P_Task_Definition
return Node_Id
;
49 -----------------------------
50 -- 9.1 Task (also 10.1.3) --
51 -----------------------------
53 -- TASK_TYPE_DECLARATION ::=
54 -- task type DEFINING_IDENTIFIER [KNOWN_DISCRIMINANT_PART]
55 -- [ASPECT_SPECIFICATIONS]
56 -- [is [new INTERFACE_LIST with] TASK_DEFINITION];
58 -- SINGLE_TASK_DECLARATION ::=
59 -- task DEFINING_IDENTIFIER
60 -- [ASPECT_SPECIFICATIONS]
61 -- [is [new INTERFACE_LIST with] TASK_DEFINITION];
64 -- task body DEFINING_IDENTIFIER [ASPECT_SPECIFICATIONS] is
67 -- HANDLED_SEQUENCE_OF_STATEMENTS
68 -- end [task_IDENTIFIER]
71 -- task body DEFINING_IDENTIFIER is separate
72 -- [ASPECT_SPECIFICATIONS];
74 -- This routine scans out a task declaration, task body, or task stub
76 -- The caller has checked that the initial token is TASK and scanned
77 -- past it, so that Token is set to the token after TASK
79 -- Error recovery: cannot raise Error_Resync
81 function P_Task
return Node_Id
is
82 Aspect_Sloc
: Source_Ptr
:= No_Location
;
85 Task_Sloc
: Source_Ptr
;
87 Dummy_Node
: constant Node_Id
:= New_Node
(N_Task_Body
, Token_Ptr
);
88 -- Placeholder node used to hold legal or prematurely declared aspect
89 -- specifications. Depending on the context, the aspect specifications
90 -- may be moved to a new node.
94 Scope
.Table
(Scope
.Last
).Etyp
:= E_Name
;
95 Scope
.Table
(Scope
.Last
).Ecol
:= Start_Column
;
96 Scope
.Table
(Scope
.Last
).Sloc
:= Token_Ptr
;
97 Scope
.Table
(Scope
.Last
).Lreq
:= False;
98 Task_Sloc
:= Prev_Token_Ptr
;
100 if Token
= Tok_Body
then
102 Name_Node
:= P_Defining_Identifier
(C_Is
);
103 Scope
.Table
(Scope
.Last
).Labl
:= Name_Node
;
105 if Token
= Tok_Left_Paren
then
106 Error_Msg_SC
("discriminant part not allowed in task body");
107 Discard_Junk_List
(P_Known_Discriminant_Part_Opt
);
110 if Aspect_Specifications_Present
then
111 Aspect_Sloc
:= Token_Ptr
;
112 P_Aspect_Specifications
(Dummy_Node
, Semicolon
=> False);
119 if Token
= Tok_Separate
then
120 Scan
; -- past SEPARATE
121 Task_Node
:= New_Node
(N_Task_Body_Stub
, Task_Sloc
);
122 Set_Defining_Identifier
(Task_Node
, Name_Node
);
124 if Has_Aspects
(Dummy_Node
) then
126 ("aspect specifications must come after SEPARATE",
130 P_Aspect_Specifications
(Task_Node
, Semicolon
=> False);
132 Pop_Scope_Stack
; -- remove unused entry
137 Task_Node
:= New_Node
(N_Task_Body
, Task_Sloc
);
138 Set_Defining_Identifier
(Task_Node
, Name_Node
);
140 -- Move the aspect specifications to the body node
142 if Has_Aspects
(Dummy_Node
) then
143 Move_Aspects
(From
=> Dummy_Node
, To
=> Task_Node
);
146 Parse_Decls_Begin_End
(Task_Node
);
148 -- The statement list of a task body needs to include at least a
149 -- null statement, so if a parsing error produces an empty list,
152 if No
(First
(Statements
153 (Handled_Statement_Sequence
(Task_Node
))))
155 Set_Statements
(Handled_Statement_Sequence
(Task_Node
),
156 New_List
(Make_Null_Statement
(Token_Ptr
)));
162 -- Otherwise we must have a task declaration
165 if Token
= Tok_Type
then
167 Task_Node
:= New_Node
(N_Task_Type_Declaration
, Task_Sloc
);
168 Name_Node
:= P_Defining_Identifier
;
169 Set_Defining_Identifier
(Task_Node
, Name_Node
);
170 Scope
.Table
(Scope
.Last
).Labl
:= Name_Node
;
171 Set_Discriminant_Specifications
172 (Task_Node
, P_Known_Discriminant_Part_Opt
);
175 Task_Node
:= New_Node
(N_Single_Task_Declaration
, Task_Sloc
);
176 Name_Node
:= P_Defining_Identifier
(C_Is
);
177 Set_Defining_Identifier
(Task_Node
, Name_Node
);
178 Scope
.Table
(Scope
.Last
).Labl
:= Name_Node
;
180 if Token
= Tok_Left_Paren
then
181 Error_Msg_SC
("discriminant part not allowed for single task");
182 Discard_Junk_List
(P_Known_Discriminant_Part_Opt
);
186 -- Scan aspect specifications, don't eat the semicolon, since it
187 -- might not be there if we have an IS.
189 P_Aspect_Specifications
(Task_Node
, Semicolon
=> False);
191 -- Parse optional task definition. Note that P_Task_Definition scans
192 -- out the semicolon and possible aspect specifications as well as
193 -- the task definition itself.
195 if Token
= Tok_Semicolon
then
197 -- A little check, if the next token after semicolon is Entry,
198 -- then surely the semicolon should really be IS
200 Scan
; -- past semicolon
202 if Token
= Tok_Entry
then
203 Error_Msg_SP
-- CODEFIX
204 ("|"";"" should be IS");
205 Set_Task_Definition
(Task_Node
, P_Task_Definition
);
207 Pop_Scope_Stack
; -- Remove unused entry
210 -- Here we have a task definition
213 TF_Is
; -- must have IS if no semicolon
217 if Token
= Tok_New
then
220 if Ada_Version
< Ada_2005
then
221 Error_Msg_SP
("task interface is an Ada 2005 extension");
222 Error_Msg_SP
("\unit must be compiled with -gnat05 switch");
225 Set_Interface_List
(Task_Node
, New_List
);
228 Append
(P_Qualified_Simple_Name
, Interface_List
(Task_Node
));
229 exit when Token
/= Tok_And
;
233 if Token
/= Tok_With
then
234 Error_Msg_SC
-- CODEFIX
240 if Token
= Tok_Private
then
241 Error_Msg_SP
-- CODEFIX
242 ("PRIVATE not allowed in task type declaration");
246 Set_Task_Definition
(Task_Node
, P_Task_Definition
);
253 --------------------------------
254 -- 9.1 Task Type Declaration --
255 --------------------------------
257 -- Parsed by P_Task (9.1)
259 ----------------------------------
260 -- 9.1 Single Task Declaration --
261 ----------------------------------
263 -- Parsed by P_Task (9.1)
265 --------------------------
266 -- 9.1 Task Definition --
267 --------------------------
269 -- TASK_DEFINITION ::=
273 -- end [task_IDENTIFIER];
275 -- The caller has already made the scope stack entry
277 -- Note: there is a small deviation from official syntax here in that we
278 -- regard the semicolon after end as part of the Task_Definition, and in
279 -- the official syntax, it's part of the enclosing declaration. The reason
280 -- for this deviation is that otherwise the end processing would have to
281 -- be special cased, which would be a nuisance.
283 -- Error recovery: cannot raise Error_Resync
285 function P_Task_Definition
return Node_Id
is
289 Def_Node
:= New_Node
(N_Task_Definition
, Token_Ptr
);
290 Set_Visible_Declarations
(Def_Node
, P_Task_Items
);
292 if Token
= Tok_Private
then
293 Scan
; -- past PRIVATE
294 Set_Private_Declarations
(Def_Node
, P_Task_Items
);
296 -- Deal gracefully with multiple PRIVATE parts
298 while Token
= Tok_Private
loop
299 Error_Msg_SC
("only one private part allowed per task");
300 Scan
; -- past PRIVATE
301 Append_List
(P_Task_Items
, Private_Declarations
(Def_Node
));
305 End_Statements
(Def_Node
);
307 end P_Task_Definition
;
313 -- TASK_ITEM ::= ENTRY_DECLARATION | REPRESENTATION_CLAUSE
315 -- This subprogram scans a (possibly empty) list of task items and pragmas
317 -- Error recovery: cannot raise Error_Resync
319 -- Note: a pragma can also be returned in this position
321 function P_Task_Items
return List_Id
is
324 Decl_Sloc
: Source_Ptr
;
327 -- Get rid of active SIS entry from outer scope. This means we will
328 -- miss some nested cases, but it doesn't seem worth the effort. See
329 -- discussion in Par for further details
331 SIS_Entry_Active
:= False;
333 -- Loop to scan out task items
338 Decl_Sloc
:= Token_Ptr
;
340 if Token
= Tok_Pragma
then
341 P_Pragmas_Opt
(Items
);
343 -- Ada 2005 (AI-397): Reserved words NOT and OVERRIDING may begin an
344 -- entry declaration.
346 elsif Token
= Tok_Entry
347 or else Token
= Tok_Not
348 or else Token
= Tok_Overriding
350 Append
(P_Entry_Declaration
, Items
);
352 elsif Token
= Tok_For
then
354 -- Representation clause in task declaration. The only rep clause
355 -- which is legal in a protected declaration is an address clause,
356 -- so that is what we try to scan out.
358 Item_Node
:= P_Representation_Clause
;
360 if Nkind
(Item_Node
) = N_At_Clause
then
361 Append
(Item_Node
, Items
);
363 elsif Nkind
(Item_Node
) = N_Attribute_Definition_Clause
364 and then Chars
(Item_Node
) = Name_Address
366 Append
(Item_Node
, Items
);
370 ("the only representation clause " &
371 "allowed here is an address clause!", Decl_Sloc
);
374 elsif Token
= Tok_Identifier
375 or else Token
in Token_Class_Declk
377 Error_Msg_SC
("illegal declaration in task definition");
378 Resync_Past_Semicolon
;
392 -- Parsed by P_Task (9.1)
394 ----------------------------------
395 -- 9.4 Protected (also 10.1.3) --
396 ----------------------------------
398 -- PROTECTED_TYPE_DECLARATION ::=
399 -- protected type DEFINING_IDENTIFIER [KNOWN_DISCRIMINANT_PART]
400 -- [ASPECT_SPECIFICATIONS]
401 -- is [new INTERFACE_LIST with] PROTECTED_DEFINITION;
403 -- SINGLE_PROTECTED_DECLARATION ::=
404 -- protected DEFINING_IDENTIFIER
405 -- [ASPECT_SPECIFICATIONS]
406 -- is [new INTERFACE_LIST with] PROTECTED_DEFINITION;
408 -- PROTECTED_BODY ::=
409 -- protected body DEFINING_IDENTIFIER
410 -- [ASPECT_SPECIFICATIONS]
412 -- {PROTECTED_OPERATION_ITEM}
413 -- end [protected_IDENTIFIER];
415 -- PROTECTED_BODY_STUB ::=
416 -- protected body DEFINING_IDENTIFIER is separate
417 -- [ASPECT_SPECIFICATIONS];
419 -- This routine scans out a protected declaration, protected body
420 -- or a protected stub.
422 -- The caller has checked that the initial token is PROTECTED and
423 -- scanned past it, so Token is set to the following token.
425 -- Error recovery: cannot raise Error_Resync
427 function P_Protected
return Node_Id
is
428 Aspect_Sloc
: Source_Ptr
:= No_Location
;
430 Protected_Node
: Node_Id
;
431 Protected_Sloc
: Source_Ptr
;
432 Scan_State
: Saved_Scan_State
;
434 Dummy_Node
: constant Node_Id
:= New_Node
(N_Protected_Body
, Token_Ptr
);
435 -- Placeholder node used to hold legal or prematurely declared aspect
436 -- specifications. Depending on the context, the aspect specifications
437 -- may be moved to a new node.
441 Scope
.Table
(Scope
.Last
).Etyp
:= E_Name
;
442 Scope
.Table
(Scope
.Last
).Ecol
:= Start_Column
;
443 Scope
.Table
(Scope
.Last
).Lreq
:= False;
444 Protected_Sloc
:= Prev_Token_Ptr
;
446 if Token
= Tok_Body
then
448 Name_Node
:= P_Defining_Identifier
(C_Is
);
449 Scope
.Table
(Scope
.Last
).Labl
:= Name_Node
;
451 if Token
= Tok_Left_Paren
then
452 Error_Msg_SC
("discriminant part not allowed in protected body");
453 Discard_Junk_List
(P_Known_Discriminant_Part_Opt
);
456 if Aspect_Specifications_Present
then
457 Aspect_Sloc
:= Token_Ptr
;
458 P_Aspect_Specifications
(Dummy_Node
, Semicolon
=> False);
465 if Token
= Tok_Separate
then
466 Scan
; -- past SEPARATE
468 Protected_Node
:= New_Node
(N_Protected_Body_Stub
, Protected_Sloc
);
469 Set_Defining_Identifier
(Protected_Node
, Name_Node
);
471 if Has_Aspects
(Dummy_Node
) then
473 ("aspect specifications must come after SEPARATE",
477 P_Aspect_Specifications
(Protected_Node
, Semicolon
=> False);
479 Pop_Scope_Stack
; -- remove unused entry
484 Protected_Node
:= New_Node
(N_Protected_Body
, Protected_Sloc
);
485 Set_Defining_Identifier
(Protected_Node
, Name_Node
);
487 Move_Aspects
(From
=> Dummy_Node
, To
=> Protected_Node
);
488 Set_Declarations
(Protected_Node
, P_Protected_Operation_Items
);
489 End_Statements
(Protected_Node
);
492 return Protected_Node
;
494 -- Otherwise we must have a protected declaration
497 if Token
= Tok_Type
then
500 New_Node
(N_Protected_Type_Declaration
, Protected_Sloc
);
501 Name_Node
:= P_Defining_Identifier
(C_Is
);
502 Set_Defining_Identifier
(Protected_Node
, Name_Node
);
503 Scope
.Table
(Scope
.Last
).Labl
:= Name_Node
;
504 Set_Discriminant_Specifications
505 (Protected_Node
, P_Known_Discriminant_Part_Opt
);
509 New_Node
(N_Single_Protected_Declaration
, Protected_Sloc
);
510 Name_Node
:= P_Defining_Identifier
(C_Is
);
511 Set_Defining_Identifier
(Protected_Node
, Name_Node
);
513 if Token
= Tok_Left_Paren
then
515 ("discriminant part not allowed for single protected");
516 Discard_Junk_List
(P_Known_Discriminant_Part_Opt
);
519 Scope
.Table
(Scope
.Last
).Labl
:= Name_Node
;
522 P_Aspect_Specifications
(Protected_Node
, Semicolon
=> False);
524 -- Check for semicolon not followed by IS, this is something like
530 -- protected type r IS END;
532 if Token
= Tok_Semicolon
then
533 Save_Scan_State
(Scan_State
); -- at semicolon
534 Scan
; -- past semicolon
536 if Token
/= Tok_Is
then
537 Restore_Scan_State
(Scan_State
);
538 Error_Msg_SC
-- CODEFIX
540 Set_Protected_Definition
(Protected_Node
,
541 Make_Protected_Definition
(Token_Ptr
,
542 Visible_Declarations
=> Empty_List
,
543 End_Label
=> Empty
));
545 SIS_Entry_Active
:= False;
547 (Protected_Definition
(Protected_Node
), Protected_Node
);
548 return Protected_Node
;
551 Error_Msg_SP
-- CODEFIX
552 ("|extra ""("" ignored");
559 if Token
= Tok_New
then
562 if Ada_Version
< Ada_2005
then
563 Error_Msg_SP
("protected interface is an Ada 2005 extension");
564 Error_Msg_SP
("\unit must be compiled with -gnat05 switch");
567 Set_Interface_List
(Protected_Node
, New_List
);
570 Append
(P_Qualified_Simple_Name
,
571 Interface_List
(Protected_Node
));
573 exit when Token
/= Tok_And
;
577 if Token
/= Tok_With
then
578 Error_Msg_SC
-- CODEFIX
585 Set_Protected_Definition
(Protected_Node
, P_Protected_Definition
);
586 return Protected_Node
;
590 -------------------------------------
591 -- 9.4 Protected Type Declaration --
592 -------------------------------------
594 -- Parsed by P_Protected (9.4)
596 ---------------------------------------
597 -- 9.4 Single Protected Declaration --
598 ---------------------------------------
600 -- Parsed by P_Protected (9.4)
602 -------------------------------
603 -- 9.4 Protected Definition --
604 -------------------------------
606 -- PROTECTED_DEFINITION ::=
607 -- {PROTECTED_OPERATION_DECLARATION}
609 -- {PROTECTED_ELEMENT_DECLARATION}]
610 -- end [protected_IDENTIFIER]
612 -- PROTECTED_ELEMENT_DECLARATION ::=
613 -- PROTECTED_OPERATION_DECLARATION
614 -- | COMPONENT_DECLARATION
616 -- The caller has already established the scope stack entry
618 -- Error recovery: cannot raise Error_Resync
620 function P_Protected_Definition
return Node_Id
is
623 Priv_Decls
: List_Id
;
627 Def_Node
:= New_Node
(N_Protected_Definition
, Token_Ptr
);
629 -- Get rid of active SIS entry from outer scope. This means we will
630 -- miss some nested cases, but it doesn't seem worth the effort. See
631 -- discussion in Par for further details
633 SIS_Entry_Active
:= False;
635 -- Loop to scan visible declarations (protected operation declarations)
637 Vis_Decls
:= New_List
;
638 Set_Visible_Declarations
(Def_Node
, Vis_Decls
);
640 -- Flag and discard all pragmas which cannot appear in the protected
641 -- definition. Note that certain pragmas are still allowed as long as
642 -- they apply to entries, entry families, or protected subprograms.
644 P_Pragmas_Opt
(Vis_Decls
);
647 Item_Node
:= P_Protected_Operation_Declaration_Opt
;
649 if Present
(Item_Node
) then
650 Append
(Item_Node
, Vis_Decls
);
653 P_Pragmas_Opt
(Vis_Decls
);
655 exit when No
(Item_Node
);
658 -- Deal with PRIVATE part (including graceful handling of multiple
661 Private_Loop
: while Token
= Tok_Private
loop
662 Priv_Decls
:= Private_Declarations
(Def_Node
);
664 if Present
(Priv_Decls
) then
665 Error_Msg_SC
("duplicate private part");
667 Priv_Decls
:= New_List
;
668 Set_Private_Declarations
(Def_Node
, Priv_Decls
);
671 Scan
; -- past PRIVATE
673 -- Flag and discard all pragmas which cannot appear in the protected
674 -- definition. Note that certain pragmas are still allowed as long as
675 -- they apply to entries, entry families, or protected subprograms.
677 P_Pragmas_Opt
(Priv_Decls
);
679 Declaration_Loop
: loop
680 if Token
= Tok_Identifier
then
681 P_Component_Items
(Priv_Decls
);
682 P_Pragmas_Opt
(Priv_Decls
);
685 Item_Node
:= P_Protected_Operation_Declaration_Opt
;
687 if Present
(Item_Node
) then
688 Append
(Item_Node
, Priv_Decls
);
691 P_Pragmas_Opt
(Priv_Decls
);
693 exit Declaration_Loop
when No
(Item_Node
);
695 end loop Declaration_Loop
;
696 end loop Private_Loop
;
698 End_Statements
(Def_Node
);
700 end P_Protected_Definition
;
702 ------------------------------------------
703 -- 9.4 Protected Operation Declaration --
704 ------------------------------------------
706 -- PROTECTED_OPERATION_DECLARATION ::=
707 -- SUBPROGRAM_DECLARATION
708 -- | ENTRY_DECLARATION
709 -- | REPRESENTATION_CLAUSE
711 -- Error recovery: cannot raise Error_Resync
713 -- Note: a pragma can also be returned in this position
715 -- We are not currently permitting representation clauses to appear as
716 -- protected operation declarations, do we have to rethink this???
718 function P_Protected_Operation_Declaration_Opt
return Node_Id
is
722 function P_Entry_Or_Subprogram_With_Indicator
return Node_Id
;
723 -- Ada 2005 (AI-397): Parse an entry or a subprogram with an overriding
724 -- indicator. The caller has checked that the initial token is NOT or
727 ------------------------------------------
728 -- P_Entry_Or_Subprogram_With_Indicator --
729 ------------------------------------------
731 function P_Entry_Or_Subprogram_With_Indicator
return Node_Id
is
732 Decl
: Node_Id
:= Error
;
733 Is_Overriding
: Boolean := False;
734 Not_Overriding
: Boolean := False;
737 if Token
= Tok_Not
then
740 if Token
= Tok_Overriding
then
741 Scan
; -- past OVERRIDING
742 Not_Overriding
:= True;
744 Error_Msg_SC
-- CODEFIX
745 ("OVERRIDING expected!");
749 Scan
; -- past OVERRIDING
750 Is_Overriding
:= True;
753 if Is_Overriding
or else Not_Overriding
then
754 if Ada_Version
< Ada_2005
then
755 Error_Msg_SP
("overriding indicator is an Ada 2005 extension");
756 Error_Msg_SP
("\unit must be compiled with -gnat05 switch");
758 elsif Token
= Tok_Entry
then
759 Decl
:= P_Entry_Declaration
;
761 Set_Must_Override
(Decl
, Is_Overriding
);
762 Set_Must_Not_Override
(Decl
, Not_Overriding
);
764 elsif Token
= Tok_Function
or else Token
= Tok_Procedure
then
765 Decl
:= P_Subprogram
(Pf_Decl_Pexp
);
767 Set_Must_Override
(Specification
(Decl
), Is_Overriding
);
768 Set_Must_Not_Override
(Specification
(Decl
), Not_Overriding
);
771 Error_Msg_SC
-- CODEFIX
772 ("ENTRY, FUNCTION or PROCEDURE expected!");
777 end P_Entry_Or_Subprogram_With_Indicator
;
779 -- Start of processing for P_Protected_Operation_Declaration_Opt
782 -- This loop runs more than once only when a junk declaration
786 if Token
= Tok_Pragma
then
789 elsif Token
= Tok_Not
or else Token
= Tok_Overriding
then
790 return P_Entry_Or_Subprogram_With_Indicator
;
792 elsif Token
= Tok_Entry
then
793 return P_Entry_Declaration
;
795 elsif Token
= Tok_Function
or else Token
= Tok_Procedure
then
796 return P_Subprogram
(Pf_Decl_Pexp
);
798 elsif Token
= Tok_Identifier
then
801 Skip_Declaration
(L
);
803 if Nkind
(First
(L
)) = N_Object_Declaration
then
805 ("component must be declared in private part of " &
806 "protected type", P
);
809 ("illegal declaration in protected definition", P
);
812 elsif Token
in Token_Class_Declk
then
813 Error_Msg_SC
("illegal declaration in protected definition");
814 Resync_Past_Semicolon
;
816 -- Return now to avoid cascaded messages if next declaration
817 -- is a valid component declaration.
821 elsif Token
= Tok_For
then
823 ("representation clause not allowed in protected definition");
824 Resync_Past_Semicolon
;
830 end P_Protected_Operation_Declaration_Opt
;
832 -----------------------------------
833 -- 9.4 Protected Operation Item --
834 -----------------------------------
836 -- PROTECTED_OPERATION_ITEM ::=
837 -- SUBPROGRAM_DECLARATION
840 -- | REPRESENTATION_CLAUSE
842 -- This procedure parses and returns a list of protected operation items
844 -- We are not currently permitting representation clauses to appear
845 -- as protected operation items, do we have to rethink this???
847 function P_Protected_Operation_Items
return List_Id
is
851 Item_List
:= New_List
;
854 if Token
= Tok_Entry
or else Bad_Spelling_Of
(Tok_Entry
) then
855 Append
(P_Entry_Body
, Item_List
);
857 -- If the operation starts with procedure, function, or an overriding
858 -- indicator ("overriding" or "not overriding"), parse a subprogram.
860 elsif Token
= Tok_Function
or else Bad_Spelling_Of
(Tok_Function
)
862 Token
= Tok_Procedure
or else Bad_Spelling_Of
(Tok_Procedure
)
864 Token
= Tok_Overriding
or else Bad_Spelling_Of
(Tok_Overriding
)
866 Token
= Tok_Not
or else Bad_Spelling_Of
(Tok_Not
)
868 Append
(P_Subprogram
(Pf_Decl_Pbod_Pexp
), Item_List
);
870 elsif Token
= Tok_Pragma
or else Bad_Spelling_Of
(Tok_Pragma
) then
871 P_Pragmas_Opt
(Item_List
);
873 elsif Token
= Tok_Private
or else Bad_Spelling_Of
(Tok_Private
) then
874 Error_Msg_SC
("PRIVATE not allowed in protected body");
875 Scan
; -- past PRIVATE
877 elsif Token
= Tok_Identifier
then
878 Error_Msg_SC
("all components must be declared in spec!");
879 Resync_Past_Semicolon
;
881 elsif Token
in Token_Class_Declk
then
882 Error_Msg_SC
("this declaration not allowed in protected body");
883 Resync_Past_Semicolon
;
891 end P_Protected_Operation_Items
;
893 ------------------------------
894 -- 9.5.2 Entry Declaration --
895 ------------------------------
897 -- ENTRY_DECLARATION ::=
898 -- [OVERRIDING_INDICATOR]
899 -- entry DEFINING_IDENTIFIER
900 -- [(DISCRETE_SUBTYPE_DEFINITION)] PARAMETER_PROFILE
901 -- [ASPECT_SPECIFICATIONS];
903 -- The caller has checked that the initial token is ENTRY, NOT or
906 -- Error recovery: cannot raise Error_Resync
908 function P_Entry_Declaration
return Node_Id
is
910 Scan_State
: Saved_Scan_State
;
912 -- Flags for optional overriding indication. Two flags are needed,
913 -- to distinguish positive and negative overriding indicators from
914 -- the absence of any indicator.
916 Is_Overriding
: Boolean := False;
917 Not_Overriding
: Boolean := False;
920 -- Ada 2005 (AI-397): Scan leading overriding indicator
922 if Token
= Tok_Not
then
925 if Token
= Tok_Overriding
then
926 Scan
; -- part OVERRIDING
927 Not_Overriding
:= True;
929 Error_Msg_SC
-- CODEFIX
930 ("OVERRIDING expected!");
933 elsif Token
= Tok_Overriding
then
934 Scan
; -- part OVERRIDING
935 Is_Overriding
:= True;
938 if Is_Overriding
or else Not_Overriding
then
939 if Ada_Version
< Ada_2005
then
940 Error_Msg_SP
("overriding indicator is an Ada 2005 extension");
941 Error_Msg_SP
("\unit must be compiled with -gnat05 switch");
943 elsif Token
/= Tok_Entry
then
944 Error_Msg_SC
-- CODEFIX
949 Decl_Node
:= New_Node
(N_Entry_Declaration
, Token_Ptr
);
952 Set_Defining_Identifier
953 (Decl_Node
, P_Defining_Identifier
(C_Left_Paren_Semicolon
));
955 -- If left paren, could be (Discrete_Subtype_Definition) or Formal_Part
957 if Token
= Tok_Left_Paren
then
960 -- If identifier after left paren, could still be either
962 if Token
= Tok_Identifier
then
963 Save_Scan_State
(Scan_State
); -- at Id
966 -- If comma or colon after Id, must be Formal_Part
968 if Token
= Tok_Comma
or else Token
= Tok_Colon
then
969 Restore_Scan_State
(Scan_State
); -- to Id
970 Set_Parameter_Specifications
(Decl_Node
, P_Formal_Part
);
972 -- Else if Id without comma or colon, must be discrete subtype
976 Restore_Scan_State
(Scan_State
); -- to Id
977 Set_Discrete_Subtype_Definition
978 (Decl_Node
, P_Discrete_Subtype_Definition
);
980 Set_Parameter_Specifications
(Decl_Node
, P_Parameter_Profile
);
983 -- If no Id, must be discrete subtype definition
986 Set_Discrete_Subtype_Definition
987 (Decl_Node
, P_Discrete_Subtype_Definition
);
989 Set_Parameter_Specifications
(Decl_Node
, P_Parameter_Profile
);
993 if Is_Overriding
then
994 Set_Must_Override
(Decl_Node
);
995 elsif Not_Overriding
then
996 Set_Must_Not_Override
(Decl_Node
);
999 -- Error recovery check for illegal return
1001 if Token
= Tok_Return
then
1002 Error_Msg_SC
("entry cannot have return value!");
1004 Discard_Junk_Node
(P_Subtype_Indication
);
1007 -- Error recovery check for improper use of entry barrier in spec
1009 if Token
= Tok_When
then
1010 Error_Msg_SC
("barrier not allowed here (belongs in body)");
1012 Discard_Junk_Node
(P_Expression_No_Right_Paren
);
1015 P_Aspect_Specifications
(Decl_Node
);
1019 when Error_Resync
=>
1020 Resync_Past_Semicolon
;
1022 end P_Entry_Declaration
;
1024 -----------------------------
1025 -- 9.5.2 Accept Statement --
1026 -----------------------------
1028 -- ACCEPT_STATEMENT ::=
1029 -- accept entry_DIRECT_NAME
1030 -- [(ENTRY_INDEX)] PARAMETER_PROFILE [do
1031 -- HANDLED_SEQUENCE_OF_STATEMENTS
1032 -- end [entry_IDENTIFIER]];
1034 -- The caller has checked that the initial token is ACCEPT
1036 -- Error recovery: cannot raise Error_Resync. If an error occurs, the
1037 -- scan is resynchronized past the next semicolon and control returns.
1039 function P_Accept_Statement
return Node_Id
is
1040 Scan_State
: Saved_Scan_State
;
1041 Accept_Node
: Node_Id
;
1046 Scope
.Table
(Scope
.Last
).Sloc
:= Token_Ptr
;
1047 Scope
.Table
(Scope
.Last
).Ecol
:= Start_Column
;
1049 Accept_Node
:= New_Node
(N_Accept_Statement
, Token_Ptr
);
1050 Scan
; -- past ACCEPT
1051 Scope
.Table
(Scope
.Last
).Labl
:= Token_Node
;
1053 Set_Entry_Direct_Name
(Accept_Node
, P_Identifier
(C_Do
));
1055 -- Left paren could be (Entry_Index) or Formal_Part, determine which
1057 if Token
= Tok_Left_Paren
then
1058 Save_Scan_State
(Scan_State
); -- at left paren
1059 Scan
; -- past left paren
1061 -- If first token after left paren not identifier, then Entry_Index
1063 if Token
/= Tok_Identifier
then
1064 Set_Entry_Index
(Accept_Node
, P_Expression
);
1066 Set_Parameter_Specifications
(Accept_Node
, P_Parameter_Profile
);
1068 -- First token after left paren is identifier, could be either case
1070 else -- Token = Tok_Identifier
1071 Scan
; -- past identifier
1073 -- If identifier followed by comma or colon, must be Formal_Part
1075 if Token
= Tok_Comma
or else Token
= Tok_Colon
then
1076 Restore_Scan_State
(Scan_State
); -- to left paren
1077 Set_Parameter_Specifications
(Accept_Node
, P_Parameter_Profile
);
1079 -- If identifier not followed by comma/colon, must be entry index
1082 Restore_Scan_State
(Scan_State
); -- to left paren
1083 Scan
; -- past left paren (again)
1084 Set_Entry_Index
(Accept_Node
, P_Expression
);
1086 Set_Parameter_Specifications
(Accept_Node
, P_Parameter_Profile
);
1091 -- Scan out DO if present
1093 if Token
= Tok_Do
then
1094 Scope
.Table
(Scope
.Last
).Etyp
:= E_Name
;
1095 Scope
.Table
(Scope
.Last
).Lreq
:= False;
1097 Hand_Seq
:= P_Handled_Sequence_Of_Statements
;
1098 Set_Handled_Statement_Sequence
(Accept_Node
, Hand_Seq
);
1099 End_Statements
(Handled_Statement_Sequence
(Accept_Node
));
1101 -- Exception handlers not allowed in Ada 95 node
1103 if Present
(Exception_Handlers
(Hand_Seq
)) then
1104 if Ada_Version
= Ada_83
then
1106 ("(Ada 83) exception handlers in accept not allowed",
1107 First_Non_Pragma
(Exception_Handlers
(Hand_Seq
)));
1112 Pop_Scope_Stack
; -- discard unused entry
1118 -- If error, resynchronize past semicolon
1121 when Error_Resync
=>
1122 Resync_Past_Semicolon
;
1123 Pop_Scope_Stack
; -- discard unused entry
1125 end P_Accept_Statement
;
1127 ------------------------
1128 -- 9.5.2 Entry Index --
1129 ------------------------
1131 -- Parsed by P_Expression (4.4)
1133 --------------------------
1134 -- 9.5.2 Entry Barrier --
1135 --------------------------
1137 -- ENTRY_BARRIER ::= when CONDITION
1139 -- Error_Recovery: cannot raise Error_Resync
1141 function P_Entry_Barrier
return Node_Id
is
1145 if Token
= Tok_When
then
1147 Bnode
:= P_Expression_No_Right_Paren
;
1149 if Token
= Tok_Colon_Equal
then
1150 Error_Msg_SC
-- CODEFIX
1151 ("|"":="" should be ""=""");
1153 Bnode
:= P_Expression_No_Right_Paren
;
1157 T_When
; -- to give error message
1162 end P_Entry_Barrier
;
1164 -----------------------
1165 -- 9.5.2 Entry Body --
1166 -----------------------
1169 -- entry DEFINING_IDENTIFIER ENTRY_BODY_FORMAL_PART
1170 -- [ASPECT_SPECIFICATIONS] ENTRY_BARRIER
1174 -- HANDLED_SEQUENCE_OF_STATEMENTS
1175 -- end [entry_IDENTIFIER];
1177 -- The caller has checked that the initial token is ENTRY
1179 -- Error_Recovery: cannot raise Error_Resync
1181 function P_Entry_Body
return Node_Id
is
1182 Dummy_Node
: Node_Id
;
1183 Entry_Node
: Node_Id
;
1184 Formal_Part_Node
: Node_Id
;
1185 Name_Node
: Node_Id
;
1189 Entry_Node
:= New_Node
(N_Entry_Body
, Token_Ptr
);
1192 Scope
.Table
(Scope
.Last
).Ecol
:= Start_Column
;
1193 Scope
.Table
(Scope
.Last
).Lreq
:= False;
1194 Scope
.Table
(Scope
.Last
).Etyp
:= E_Name
;
1195 Scope
.Table
(Scope
.Last
).Sloc
:= Token_Ptr
;
1197 Name_Node
:= P_Defining_Identifier
;
1198 Set_Defining_Identifier
(Entry_Node
, Name_Node
);
1199 Scope
.Table
(Scope
.Last
).Labl
:= Name_Node
;
1201 Formal_Part_Node
:= P_Entry_Body_Formal_Part
;
1202 Set_Entry_Body_Formal_Part
(Entry_Node
, Formal_Part_Node
);
1204 -- Ada 2012 (AI12-0169): Aspect specifications may appear on an entry
1205 -- body immediately after the formal part. Do not parse the aspect
1206 -- specifications directly because the "when" of the entry barrier may
1207 -- be interpreted as a misused "with".
1209 if Token
= Tok_With
then
1210 P_Aspect_Specifications
(Entry_Node
, Semicolon
=> False);
1213 Set_Condition
(Formal_Part_Node
, P_Entry_Barrier
);
1215 -- Detect an illegal placement of aspect specifications following the
1218 -- entry E ... when Barrier with Aspect is
1220 if Token
= Tok_With
then
1221 Error_Msg_SC
("aspect specifications must come before entry barrier");
1223 -- Consume the illegal aspects to allow for parsing to continue
1225 Dummy_Node
:= New_Node
(N_Entry_Body
, Sloc
(Entry_Node
));
1226 P_Aspect_Specifications
(Dummy_Node
, Semicolon
=> False);
1230 Parse_Decls_Begin_End
(Entry_Node
);
1235 -----------------------------------
1236 -- 9.5.2 Entry Body Formal Part --
1237 -----------------------------------
1239 -- ENTRY_BODY_FORMAL_PART ::=
1240 -- [(ENTRY_INDEX_SPECIFICATION)] [PARAMETER_PART]
1242 -- Error_Recovery: cannot raise Error_Resync
1244 function P_Entry_Body_Formal_Part
return Node_Id
is
1245 Fpart_Node
: Node_Id
;
1246 Scan_State
: Saved_Scan_State
;
1249 Fpart_Node
:= New_Node
(N_Entry_Body_Formal_Part
, Token_Ptr
);
1251 -- See if entry index specification present, and if so parse it
1253 if Token
= Tok_Left_Paren
then
1254 Save_Scan_State
(Scan_State
); -- at left paren
1255 Scan
; -- past left paren
1257 if Token
= Tok_For
then
1258 Set_Entry_Index_Specification
1259 (Fpart_Node
, P_Entry_Index_Specification
);
1262 Restore_Scan_State
(Scan_State
); -- to left paren
1265 -- Check for (common?) case of left paren omitted before FOR. This
1266 -- is a tricky case, because the corresponding missing left paren
1267 -- can cause real havoc if a formal part is present which gets
1268 -- treated as part of the discrete subtype definition of the
1269 -- entry index specification, so just give error and resynchronize
1271 elsif Token
= Tok_For
then
1272 T_Left_Paren
; -- to give error message
1276 Set_Parameter_Specifications
(Fpart_Node
, P_Parameter_Profile
);
1278 end P_Entry_Body_Formal_Part
;
1280 --------------------------------------
1281 -- 9.5.2 Entry Index Specification --
1282 --------------------------------------
1284 -- ENTRY_INDEX_SPECIFICATION ::=
1285 -- for DEFINING_IDENTIFIER in DISCRETE_SUBTYPE_DEFINITION
1287 -- Error recovery: can raise Error_Resync
1289 function P_Entry_Index_Specification
return Node_Id
is
1290 Iterator_Node
: Node_Id
;
1293 Iterator_Node
:= New_Node
(N_Entry_Index_Specification
, Token_Ptr
);
1295 Set_Defining_Identifier
(Iterator_Node
, P_Defining_Identifier
(C_In
));
1297 Set_Discrete_Subtype_Definition
1298 (Iterator_Node
, P_Discrete_Subtype_Definition
);
1299 return Iterator_Node
;
1300 end P_Entry_Index_Specification
;
1302 ---------------------------------
1303 -- 9.5.3 Entry Call Statement --
1304 ---------------------------------
1306 -- Parsed by P_Name (4.1). Within a select, an entry call is parsed
1307 -- by P_Select_Statement (9.7)
1309 ------------------------------
1310 -- 9.5.4 Requeue Statement --
1311 ------------------------------
1313 -- REQUEUE_STATEMENT ::= requeue entry_NAME [with abort];
1315 -- The caller has checked that the initial token is requeue
1317 -- Error recovery: can raise Error_Resync
1319 function P_Requeue_Statement
return Node_Id
is
1320 Requeue_Node
: Node_Id
;
1323 Requeue_Node
:= New_Node
(N_Requeue_Statement
, Token_Ptr
);
1324 Scan
; -- past REQUEUE
1325 Set_Name
(Requeue_Node
, P_Name
);
1327 if Token
= Tok_With
then
1330 Set_Abort_Present
(Requeue_Node
, True);
1334 return Requeue_Node
;
1335 end P_Requeue_Statement
;
1337 --------------------------
1338 -- 9.6 Delay Statement --
1339 --------------------------
1341 -- DELAY_STATEMENT ::=
1342 -- DELAY_UNTIL_STATEMENT
1343 -- | DELAY_RELATIVE_STATEMENT
1345 -- The caller has checked that the initial token is DELAY
1347 -- Error recovery: cannot raise Error_Resync
1349 function P_Delay_Statement
return Node_Id
is
1353 -- The following check for delay until misused in Ada 83 doesn't catch
1354 -- all cases, but it's good enough to catch most of them.
1356 if Token_Name
= Name_Until
then
1357 Check_95_Keyword
(Tok_Until
, Tok_Left_Paren
);
1358 Check_95_Keyword
(Tok_Until
, Tok_Identifier
);
1361 if Token
= Tok_Until
then
1362 return P_Delay_Until_Statement
;
1364 return P_Delay_Relative_Statement
;
1366 end P_Delay_Statement
;
1368 --------------------------------
1369 -- 9.6 Delay Until Statement --
1370 --------------------------------
1372 -- DELAY_UNTIL_STATEMENT ::= delay until delay_EXPRESSION;
1374 -- The caller has checked that the initial token is DELAY, scanned it
1375 -- out and checked that the current token is UNTIL
1377 -- Error recovery: cannot raise Error_Resync
1379 function P_Delay_Until_Statement
return Node_Id
is
1380 Delay_Node
: Node_Id
;
1383 Delay_Node
:= New_Node
(N_Delay_Until_Statement
, Prev_Token_Ptr
);
1385 Set_Expression
(Delay_Node
, P_Expression_No_Right_Paren
);
1388 end P_Delay_Until_Statement
;
1390 -----------------------------------
1391 -- 9.6 Delay Relative Statement --
1392 -----------------------------------
1394 -- DELAY_RELATIVE_STATEMENT ::= delay delay_EXPRESSION;
1396 -- The caller has checked that the initial token is DELAY, scanned it
1397 -- out and determined that the current token is not UNTIL
1399 -- Error recovery: cannot raise Error_Resync
1401 function P_Delay_Relative_Statement
return Node_Id
is
1402 Delay_Node
: Node_Id
;
1405 Delay_Node
:= New_Node
(N_Delay_Relative_Statement
, Prev_Token_Ptr
);
1406 Set_Expression
(Delay_Node
, P_Expression_No_Right_Paren
);
1407 Check_Simple_Expression_In_Ada_83
(Expression
(Delay_Node
));
1410 end P_Delay_Relative_Statement
;
1412 ---------------------------
1413 -- 9.7 Select Statement --
1414 ---------------------------
1416 -- SELECT_STATEMENT ::=
1418 -- | TIMED_ENTRY_CALL
1419 -- | CONDITIONAL_ENTRY_CALL
1420 -- | ASYNCHRONOUS_SELECT
1422 -- SELECTIVE_ACCEPT ::=
1425 -- SELECT_ALTERNATIVE
1428 -- SELECT_ALTERNATIVE
1430 -- SEQUENCE_OF_STATEMENTS]
1433 -- GUARD ::= when CONDITION =>
1435 -- Note: the guard preceding a select alternative is included as part
1436 -- of the node generated for a selective accept alternative.
1438 -- SELECT_ALTERNATIVE ::=
1439 -- ACCEPT_ALTERNATIVE
1440 -- | DELAY_ALTERNATIVE
1441 -- | TERMINATE_ALTERNATIVE
1443 -- TIMED_ENTRY_CALL ::=
1445 -- ENTRY_CALL_ALTERNATIVE
1447 -- DELAY_ALTERNATIVE
1450 -- CONDITIONAL_ENTRY_CALL ::=
1452 -- ENTRY_CALL_ALTERNATIVE
1454 -- SEQUENCE_OF_STATEMENTS
1457 -- ENTRY_CALL_ALTERNATIVE ::=
1458 -- ENTRY_CALL_STATEMENT [SEQUENCE_OF_STATEMENTS]
1460 -- ASYNCHRONOUS_SELECT ::=
1462 -- TRIGGERING_ALTERNATIVE
1467 -- TRIGGERING_ALTERNATIVE ::=
1468 -- TRIGGERING_STATEMENT [SEQUENCE_OF_STATEMENTS]
1470 -- TRIGGERING_STATEMENT ::= ENTRY_CALL_STATEMENT | DELAY_STATEMENT
1472 -- The caller has checked that the initial token is SELECT
1474 -- Error recovery: can raise Error_Resync
1476 function P_Select_Statement
return Node_Id
is
1477 Select_Node
: Node_Id
;
1478 Select_Sloc
: Source_Ptr
;
1479 Stmnt_Sloc
: Source_Ptr
;
1480 Ecall_Node
: Node_Id
;
1481 Alternative
: Node_Id
;
1482 Select_Pragmas
: List_Id
;
1483 Alt_Pragmas
: List_Id
;
1484 Statement_List
: List_Id
;
1486 Cond_Expr
: Node_Id
;
1487 Delay_Stmnt
: Node_Id
;
1491 Scope
.Table
(Scope
.Last
).Etyp
:= E_Select
;
1492 Scope
.Table
(Scope
.Last
).Ecol
:= Start_Column
;
1493 Scope
.Table
(Scope
.Last
).Sloc
:= Token_Ptr
;
1494 Scope
.Table
(Scope
.Last
).Labl
:= Error
;
1496 Select_Sloc
:= Token_Ptr
;
1497 Scan
; -- past SELECT
1498 Stmnt_Sloc
:= Token_Ptr
;
1499 Select_Pragmas
:= P_Pragmas_Opt
;
1501 -- If first token after select is designator, then we have an entry
1502 -- call, which must be the start of a conditional entry call, timed
1503 -- entry call or asynchronous select
1505 if Token
in Token_Class_Desig
then
1507 -- Scan entry call statement
1510 Ecall_Node
:= P_Name
;
1512 -- ?? The following two clauses exactly parallel code in ch5
1513 -- and should be combined sometime
1515 if Nkind
(Ecall_Node
) = N_Indexed_Component
then
1517 Prefix_Node
: constant Node_Id
:= Prefix
(Ecall_Node
);
1518 Exprs_Node
: constant List_Id
:= Expressions
(Ecall_Node
);
1521 Change_Node
(Ecall_Node
, N_Procedure_Call_Statement
);
1522 Set_Name
(Ecall_Node
, Prefix_Node
);
1523 Set_Parameter_Associations
(Ecall_Node
, Exprs_Node
);
1526 elsif Nkind
(Ecall_Node
) = N_Function_Call
then
1528 Fname_Node
: constant Node_Id
:= Name
(Ecall_Node
);
1529 Params_List
: constant List_Id
:=
1530 Parameter_Associations
(Ecall_Node
);
1533 Change_Node
(Ecall_Node
, N_Procedure_Call_Statement
);
1534 Set_Name
(Ecall_Node
, Fname_Node
);
1535 Set_Parameter_Associations
(Ecall_Node
, Params_List
);
1538 elsif Nkind
(Ecall_Node
) = N_Identifier
1539 or else Nkind
(Ecall_Node
) = N_Selected_Component
1541 -- Case of a call to a parameterless entry
1544 C_Node
: constant Node_Id
:=
1545 New_Node
(N_Procedure_Call_Statement
, Stmnt_Sloc
);
1547 Set_Name
(C_Node
, Ecall_Node
);
1548 Set_Parameter_Associations
(C_Node
, No_List
);
1549 Ecall_Node
:= C_Node
;
1556 when Error_Resync
=>
1557 Resync_Past_Semicolon
;
1561 Statement_List
:= P_Sequence_Of_Statements
(SS_Eltm_Ortm_Tatm
);
1563 -- OR follows, we have a timed entry call
1565 if Token
= Tok_Or
then
1567 Alt_Pragmas
:= P_Pragmas_Opt
;
1569 Select_Node
:= New_Node
(N_Timed_Entry_Call
, Select_Sloc
);
1570 Set_Entry_Call_Alternative
(Select_Node
,
1571 Make_Entry_Call_Alternative
(Stmnt_Sloc
,
1572 Entry_Call_Statement
=> Ecall_Node
,
1573 Pragmas_Before
=> Select_Pragmas
,
1574 Statements
=> Statement_List
));
1576 -- Only possibility is delay alternative. If we have anything
1577 -- else, give message, and treat as conditional entry call.
1579 if Token
/= Tok_Delay
then
1581 ("only allowed alternative in timed entry call is delay!");
1582 Discard_Junk_List
(P_Sequence_Of_Statements
(SS_Sreq
));
1583 Set_Delay_Alternative
(Select_Node
, Error
);
1586 Set_Delay_Alternative
(Select_Node
, P_Delay_Alternative
);
1588 (Delay_Alternative
(Select_Node
), Alt_Pragmas
);
1591 -- ELSE follows, we have a conditional entry call
1593 elsif Token
= Tok_Else
then
1595 Select_Node
:= New_Node
(N_Conditional_Entry_Call
, Select_Sloc
);
1597 Set_Entry_Call_Alternative
(Select_Node
,
1598 Make_Entry_Call_Alternative
(Stmnt_Sloc
,
1599 Entry_Call_Statement
=> Ecall_Node
,
1600 Pragmas_Before
=> Select_Pragmas
,
1601 Statements
=> Statement_List
));
1604 (Select_Node
, P_Sequence_Of_Statements
(SS_Sreq
));
1606 -- Only remaining case is THEN ABORT (asynchronous select)
1608 elsif Token
= Tok_Abort
then
1610 Make_Asynchronous_Select
(Select_Sloc
,
1611 Triggering_Alternative
=>
1612 Make_Triggering_Alternative
(Stmnt_Sloc
,
1613 Triggering_Statement
=> Ecall_Node
,
1614 Pragmas_Before
=> Select_Pragmas
,
1615 Statements
=> Statement_List
),
1616 Abortable_Part
=> P_Abortable_Part
);
1621 if Ada_Version
= Ada_83
then
1622 Error_Msg_BC
("OR or ELSE expected");
1624 Error_Msg_BC
("OR or ELSE or THEN ABORT expected");
1627 Select_Node
:= Error
;
1632 -- Here we have a selective accept or an asynchronous select (first
1633 -- token after SELECT is other than a designator token).
1636 -- If we have delay with no guard, could be asynchronous select
1638 if Token
= Tok_Delay
then
1639 Delay_Stmnt
:= P_Delay_Statement
;
1640 Statement_List
:= P_Sequence_Of_Statements
(SS_Eltm_Ortm_Tatm
);
1642 -- Asynchronous select
1644 if Token
= Tok_Abort
then
1646 Make_Asynchronous_Select
(Select_Sloc
,
1647 Triggering_Alternative
=>
1648 Make_Triggering_Alternative
(Stmnt_Sloc
,
1649 Triggering_Statement
=> Delay_Stmnt
,
1650 Pragmas_Before
=> Select_Pragmas
,
1651 Statements
=> Statement_List
),
1652 Abortable_Part
=> P_Abortable_Part
);
1657 -- Delay which was not an asynchronous select. Must be a selective
1658 -- accept, and since at least one accept statement is required,
1659 -- we must have at least one OR phrase present.
1662 Alt_List
:= New_List
(
1663 Make_Delay_Alternative
(Stmnt_Sloc
,
1664 Delay_Statement
=> Delay_Stmnt
,
1665 Pragmas_Before
=> Select_Pragmas
,
1666 Statements
=> Statement_List
));
1668 Alt_Pragmas
:= P_Pragmas_Opt
;
1671 -- If not a delay statement, then must be another possibility for
1672 -- a selective accept alternative, or perhaps a guard is present
1675 Alt_List
:= New_List
;
1676 Alt_Pragmas
:= Select_Pragmas
;
1679 Select_Node
:= New_Node
(N_Selective_Accept
, Select_Sloc
);
1680 Set_Select_Alternatives
(Select_Node
, Alt_List
);
1682 -- Scan out selective accept alternatives. On entry to this loop,
1683 -- we are just past a SELECT or OR token, and any pragmas that
1684 -- immediately follow the SELECT or OR are in Alt_Pragmas.
1687 if Token
= Tok_When
then
1689 if Present
(Alt_Pragmas
) then
1690 Error_Msg_SC
("pragmas may not precede guard");
1694 Cond_Expr
:= P_Expression_No_Right_Paren
;
1696 Alt_Pragmas
:= P_Pragmas_Opt
;
1702 if Token
= Tok_Accept
then
1703 Alternative
:= P_Accept_Alternative
;
1705 -- Check for junk attempt at asynchronous select using
1706 -- an Accept alternative as the triggering statement
1708 if Token
= Tok_Abort
1709 and then Is_Empty_List
(Alt_List
)
1710 and then No
(Cond_Expr
)
1713 ("triggering statement must be entry call or delay",
1714 Sloc
(Alternative
));
1715 Scan
; -- past junk ABORT
1716 Discard_Junk_List
(P_Sequence_Of_Statements
(SS_Sreq
));
1721 elsif Token
= Tok_Delay
then
1722 Alternative
:= P_Delay_Alternative
;
1724 elsif Token
= Tok_Terminate
then
1725 Alternative
:= P_Terminate_Alternative
;
1729 ("select alternative (ACCEPT, ABORT, DELAY) expected");
1730 Alternative
:= Error
;
1732 if Token
= Tok_Semicolon
then
1733 Scan
; -- past junk semicolon
1737 -- THEN ABORT at this stage is just junk
1739 if Token
= Tok_Abort
then
1740 Error_Msg_SP
("misplaced `THEN ABORT`");
1741 Scan
; -- past junk ABORT
1742 Discard_Junk_List
(P_Sequence_Of_Statements
(SS_Sreq
));
1747 if Alternative
/= Error
then
1748 Set_Condition
(Alternative
, Cond_Expr
);
1749 Set_Pragmas_Before
(Alternative
, Alt_Pragmas
);
1750 Append
(Alternative
, Alt_List
);
1753 exit when Token
/= Tok_Or
;
1757 Alt_Pragmas
:= P_Pragmas_Opt
;
1760 if Token
= Tok_Else
then
1763 (Select_Node
, P_Sequence_Of_Statements
(SS_Ortm_Sreq
));
1765 if Token
= Tok_Or
then
1766 Error_Msg_SC
("select alternative cannot follow else part!");
1774 end P_Select_Statement
;
1776 -----------------------------
1777 -- 9.7.1 Selective Accept --
1778 -----------------------------
1780 -- Parsed by P_Select_Statement (9.7)
1786 -- Parsed by P_Select_Statement (9.7)
1788 -------------------------------
1789 -- 9.7.1 Select Alternative --
1790 -------------------------------
1792 -- SELECT_ALTERNATIVE ::=
1793 -- ACCEPT_ALTERNATIVE
1794 -- | DELAY_ALTERNATIVE
1795 -- | TERMINATE_ALTERNATIVE
1797 -- Note: the guard preceding a select alternative is included as part
1798 -- of the node generated for a selective accept alternative.
1800 -- Error recovery: cannot raise Error_Resync
1802 -------------------------------
1803 -- 9.7.1 Accept Alternative --
1804 -------------------------------
1806 -- ACCEPT_ALTERNATIVE ::=
1807 -- ACCEPT_STATEMENT [SEQUENCE_OF_STATEMENTS]
1809 -- Error_Recovery: Cannot raise Error_Resync
1811 -- Note: the caller is responsible for setting the Pragmas_Before
1812 -- field of the returned N_Terminate_Alternative node.
1814 function P_Accept_Alternative
return Node_Id
is
1815 Accept_Alt_Node
: Node_Id
;
1818 Accept_Alt_Node
:= New_Node
(N_Accept_Alternative
, Token_Ptr
);
1819 Set_Accept_Statement
(Accept_Alt_Node
, P_Accept_Statement
);
1821 -- Note: the reason that we accept THEN ABORT as a terminator for
1822 -- the sequence of statements is for error recovery which allows
1823 -- for misuse of an accept statement as a triggering statement.
1826 (Accept_Alt_Node
, P_Sequence_Of_Statements
(SS_Eltm_Ortm_Tatm
));
1827 return Accept_Alt_Node
;
1828 end P_Accept_Alternative
;
1830 ------------------------------
1831 -- 9.7.1 Delay Alternative --
1832 ------------------------------
1834 -- DELAY_ALTERNATIVE ::=
1835 -- DELAY_STATEMENT [SEQUENCE_OF_STATEMENTS]
1837 -- Error_Recovery: Cannot raise Error_Resync
1839 -- Note: the caller is responsible for setting the Pragmas_Before
1840 -- field of the returned N_Terminate_Alternative node.
1842 function P_Delay_Alternative
return Node_Id
is
1843 Delay_Alt_Node
: Node_Id
;
1846 Delay_Alt_Node
:= New_Node
(N_Delay_Alternative
, Token_Ptr
);
1847 Set_Delay_Statement
(Delay_Alt_Node
, P_Delay_Statement
);
1849 -- Note: the reason that we accept THEN ABORT as a terminator for
1850 -- the sequence of statements is for error recovery which allows
1851 -- for misuse of an accept statement as a triggering statement.
1854 (Delay_Alt_Node
, P_Sequence_Of_Statements
(SS_Eltm_Ortm_Tatm
));
1855 return Delay_Alt_Node
;
1856 end P_Delay_Alternative
;
1858 ----------------------------------
1859 -- 9.7.1 Terminate Alternative --
1860 ----------------------------------
1862 -- TERMINATE_ALTERNATIVE ::= terminate;
1864 -- Error_Recovery: Cannot raise Error_Resync
1866 -- Note: the caller is responsible for setting the Pragmas_Before
1867 -- field of the returned N_Terminate_Alternative node.
1869 function P_Terminate_Alternative
return Node_Id
is
1870 Terminate_Alt_Node
: Node_Id
;
1873 Terminate_Alt_Node
:= New_Node
(N_Terminate_Alternative
, Token_Ptr
);
1874 Scan
; -- past TERMINATE
1877 -- For all other select alternatives, the sequence of statements
1878 -- after the alternative statement will swallow up any pragmas
1879 -- coming in this position. But the terminate alternative has no
1880 -- sequence of statements, so the pragmas here must be treated
1883 Set_Pragmas_After
(Terminate_Alt_Node
, P_Pragmas_Opt
);
1884 return Terminate_Alt_Node
;
1885 end P_Terminate_Alternative
;
1887 -----------------------------
1888 -- 9.7.2 Timed Entry Call --
1889 -----------------------------
1891 -- Parsed by P_Select_Statement (9.7)
1893 -----------------------------------
1894 -- 9.7.2 Entry Call Alternative --
1895 -----------------------------------
1897 -- Parsed by P_Select_Statement (9.7)
1899 -----------------------------------
1900 -- 9.7.3 Conditional Entry Call --
1901 -----------------------------------
1903 -- Parsed by P_Select_Statement (9.7)
1905 --------------------------------
1906 -- 9.7.4 Asynchronous Select --
1907 --------------------------------
1909 -- Parsed by P_Select_Statement (9.7)
1911 -----------------------------------
1912 -- 9.7.4 Triggering Alternative --
1913 -----------------------------------
1915 -- Parsed by P_Select_Statement (9.7)
1917 ---------------------------------
1918 -- 9.7.4 Triggering Statement --
1919 ---------------------------------
1921 -- Parsed by P_Select_Statement (9.7)
1923 ---------------------------
1924 -- 9.7.4 Abortable Part --
1925 ---------------------------
1927 -- ABORTABLE_PART ::= SEQUENCE_OF_STATEMENTS
1929 -- The caller has verified that THEN ABORT is present, and Token is
1930 -- pointing to the ABORT on entry (or if not, then we have an error)
1932 -- Error recovery: cannot raise Error_Resync
1934 function P_Abortable_Part
return Node_Id
is
1935 Abortable_Part_Node
: Node_Id
;
1938 Abortable_Part_Node
:= New_Node
(N_Abortable_Part
, Token_Ptr
);
1939 T_Abort
; -- scan past ABORT
1941 if Ada_Version
= Ada_83
then
1942 Error_Msg_SP
("(Ada 83) asynchronous select not allowed!");
1945 Set_Statements
(Abortable_Part_Node
, P_Sequence_Of_Statements
(SS_Sreq
));
1946 return Abortable_Part_Node
;
1947 end P_Abortable_Part
;
1949 --------------------------
1950 -- 9.8 Abort Statement --
1951 --------------------------
1953 -- ABORT_STATEMENT ::= abort task_NAME {, task_NAME};
1955 -- The caller has checked that the initial token is ABORT
1957 -- Error recovery: cannot raise Error_Resync
1959 function P_Abort_Statement
return Node_Id
is
1960 Abort_Node
: Node_Id
;
1963 Abort_Node
:= New_Node
(N_Abort_Statement
, Token_Ptr
);
1965 Set_Names
(Abort_Node
, New_List
);
1968 Append
(P_Name
, Names
(Abort_Node
));
1969 exit when Token
/= Tok_Comma
;
1975 end P_Abort_Statement
;