1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2016, 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
28 -- by RM section rather than alphabetical
33 -- Local functions, used only in this chapter
35 function P_Formal_Derived_Type_Definition
return Node_Id
;
36 function P_Formal_Discrete_Type_Definition
return Node_Id
;
37 function P_Formal_Fixed_Point_Definition
return Node_Id
;
38 function P_Formal_Floating_Point_Definition
return Node_Id
;
39 function P_Formal_Modular_Type_Definition
return Node_Id
;
40 function P_Formal_Package_Declaration
return Node_Id
;
41 function P_Formal_Private_Type_Definition
return Node_Id
;
42 function P_Formal_Signed_Integer_Type_Definition
return Node_Id
;
43 function P_Formal_Subprogram_Declaration
return Node_Id
;
44 function P_Formal_Type_Declaration
return Node_Id
;
45 function P_Formal_Type_Definition
return Node_Id
;
46 function P_Generic_Association
return Node_Id
;
48 procedure P_Formal_Object_Declarations
(Decls
: List_Id
);
49 -- Scans one or more formal object declarations and appends them to
50 -- Decls. Scans more than one declaration only in the case where the
51 -- source has a declaration with multiple defining identifiers.
53 --------------------------------
54 -- 12.1 Generic (also 8.5.5) --
55 --------------------------------
57 -- This routine parses either one of the forms of a generic declaration
58 -- or a generic renaming declaration.
60 -- GENERIC_DECLARATION ::=
61 -- GENERIC_SUBPROGRAM_DECLARATION | GENERIC_PACKAGE_DECLARATION
63 -- GENERIC_SUBPROGRAM_DECLARATION ::=
64 -- GENERIC_FORMAL_PART SUBPROGRAM_SPECIFICATION
65 -- [ASPECT_SPECIFICATIONS];
67 -- GENERIC_PACKAGE_DECLARATION ::=
68 -- GENERIC_FORMAL_PART PACKAGE_SPECIFICATION
69 -- [ASPECT_SPECIFICATIONS];
71 -- GENERIC_FORMAL_PART ::=
72 -- generic {GENERIC_FORMAL_PARAMETER_DECLARATION | USE_CLAUSE}
74 -- GENERIC_RENAMING_DECLARATION ::=
75 -- generic package DEFINING_PROGRAM_UNIT_NAME
76 -- renames generic_package_NAME
77 -- [ASPECT_SPECIFICATIONS];
78 -- | generic procedure DEFINING_PROGRAM_UNIT_NAME
79 -- renames generic_procedure_NAME
80 -- [ASPECT_SPECIFICATIONS];
81 -- | generic function DEFINING_PROGRAM_UNIT_NAME
82 -- renames generic_function_NAME
83 -- [ASPECT_SPECIFICATIONS];
85 -- GENERIC_FORMAL_PARAMETER_DECLARATION ::=
86 -- FORMAL_OBJECT_DECLARATION
87 -- | FORMAL_TYPE_DECLARATION
88 -- | FORMAL_SUBPROGRAM_DECLARATION
89 -- | FORMAL_PACKAGE_DECLARATION
91 -- The caller has checked that the initial token is GENERIC
93 -- Error recovery: can raise Error_Resync
95 function P_Generic
return Node_Id
is
96 Gen_Sloc
: constant Source_Ptr
:= Token_Ptr
;
101 Ren_Token
: Token_Type
;
102 Scan_State
: Saved_Scan_State
;
105 Scan
; -- past GENERIC
107 if Token
= Tok_Private
then
108 Error_Msg_SC
-- CODEFIX
109 ("PRIVATE goes before GENERIC, not after");
110 Scan
; -- past junk PRIVATE token
113 Save_Scan_State
(Scan_State
); -- at token past GENERIC
115 -- Check for generic renaming declaration case
117 if Token
= Tok_Package
118 or else Token
= Tok_Function
119 or else Token
= Tok_Procedure
122 Scan
; -- scan past PACKAGE, FUNCTION or PROCEDURE
124 if Token
= Tok_Identifier
then
125 Def_Unit
:= P_Defining_Program_Unit_Name
;
127 Check_Misspelling_Of
(Tok_Renames
);
129 if Token
= Tok_Renames
then
130 if Ren_Token
= Tok_Package
then
131 Decl_Node
:= New_Node
132 (N_Generic_Package_Renaming_Declaration
, Gen_Sloc
);
134 elsif Ren_Token
= Tok_Procedure
then
135 Decl_Node
:= New_Node
136 (N_Generic_Procedure_Renaming_Declaration
, Gen_Sloc
);
138 else -- Ren_Token = Tok_Function then
139 Decl_Node
:= New_Node
140 (N_Generic_Function_Renaming_Declaration
, Gen_Sloc
);
143 Scan
; -- past RENAMES
144 Set_Defining_Unit_Name
(Decl_Node
, Def_Unit
);
145 Set_Name
(Decl_Node
, P_Name
);
147 P_Aspect_Specifications
(Decl_Node
, Semicolon
=> False);
154 -- Fall through if this is *not* a generic renaming declaration
156 Restore_Scan_State
(Scan_State
);
159 -- Loop through generic parameter declarations and use clauses
162 P_Pragmas_Opt
(Decls
);
164 if Token
= Tok_Private
then
165 Error_Msg_S
("generic private child packages not permitted");
166 Scan
; -- past PRIVATE
169 if Token
= Tok_Use
then
170 Append
(P_Use_Clause
, Decls
);
173 -- Parse a generic parameter declaration
175 if Token
= Tok_Identifier
then
176 P_Formal_Object_Declarations
(Decls
);
178 elsif Token
= Tok_Type
then
179 Append
(P_Formal_Type_Declaration
, Decls
);
181 elsif Token
= Tok_With
then
184 if Token
= Tok_Package
then
185 Append
(P_Formal_Package_Declaration
, Decls
);
187 elsif Token
= Tok_Procedure
or Token
= Tok_Function
then
188 Append
(P_Formal_Subprogram_Declaration
, Decls
);
191 Error_Msg_BC
-- CODEFIX
192 ("FUNCTION, PROCEDURE or PACKAGE expected here");
193 Resync_Past_Semicolon
;
196 elsif Token
= Tok_Subtype
then
197 Error_Msg_SC
("subtype declaration not allowed " &
198 "as generic parameter declaration!");
199 Resync_Past_Semicolon
;
207 -- Generic formal part is scanned, scan out subprogram or package spec
209 if Token
= Tok_Package
then
210 Gen_Decl
:= New_Node
(N_Generic_Package_Declaration
, Gen_Sloc
);
211 Set_Specification
(Gen_Decl
, P_Package
(Pf_Spcn
));
213 -- Aspects have been parsed by the package spec. Move them to the
214 -- generic declaration where they belong.
216 Move_Aspects
(Specification
(Gen_Decl
), Gen_Decl
);
219 Gen_Decl
:= New_Node
(N_Generic_Subprogram_Declaration
, Gen_Sloc
);
220 Set_Specification
(Gen_Decl
, P_Subprogram_Specification
);
222 if Nkind
(Defining_Unit_Name
(Specification
(Gen_Decl
))) =
223 N_Defining_Program_Unit_Name
224 and then Scope
.Last
> 0
226 Error_Msg_SP
("child unit allowed only at library level");
229 P_Aspect_Specifications
(Gen_Decl
);
232 Set_Generic_Formal_Declarations
(Gen_Decl
, Decls
);
236 -------------------------------
237 -- 12.1 Generic Declaration --
238 -------------------------------
240 -- Parsed by P_Generic (12.1)
242 ------------------------------------------
243 -- 12.1 Generic Subprogram Declaration --
244 ------------------------------------------
246 -- Parsed by P_Generic (12.1)
248 ---------------------------------------
249 -- 12.1 Generic Package Declaration --
250 ---------------------------------------
252 -- Parsed by P_Generic (12.1)
254 -------------------------------
255 -- 12.1 Generic Formal Part --
256 -------------------------------
258 -- Parsed by P_Generic (12.1)
260 -------------------------------------------------
261 -- 12.1 Generic Formal Parameter Declaration --
262 -------------------------------------------------
264 -- Parsed by P_Generic (12.1)
266 ---------------------------------
267 -- 12.3 Generic Instantiation --
268 ---------------------------------
270 -- Generic package instantiation parsed by P_Package (7.1)
271 -- Generic procedure instantiation parsed by P_Subprogram (6.1)
272 -- Generic function instantiation parsed by P_Subprogram (6.1)
274 -------------------------------
275 -- 12.3 Generic Actual Part --
276 -------------------------------
278 -- GENERIC_ACTUAL_PART ::=
279 -- (GENERIC_ASSOCIATION {, GENERIC_ASSOCIATION})
281 -- Returns a list of generic associations, or Empty if none are present
283 -- Error recovery: cannot raise Error_Resync
285 function P_Generic_Actual_Part_Opt
return List_Id
is
286 Association_List
: List_Id
;
289 -- Figure out if a generic actual part operation is present. Clearly
290 -- there is no generic actual part if the current token is semicolon
291 -- or if we have aspect specifications present.
293 if Token
= Tok_Semicolon
or else Aspect_Specifications_Present
then
296 -- If we don't have a left paren, then we have an error, and the job
297 -- is to figure out whether a left paren or semicolon was intended.
298 -- We assume a missing left paren (and hence a generic actual part
299 -- present) if the current token is not on a new line, or if it is
300 -- indented from the subprogram token. Otherwise assume missing
301 -- semicolon (which will be diagnosed by caller) and no generic part
303 elsif Token
/= Tok_Left_Paren
304 and then Token_Is_At_Start_Of_Line
305 and then Start_Column
<= Scope
.Table
(Scope
.Last
).Ecol
309 -- Otherwise we have a generic actual part (either a left paren is
310 -- present, or we have decided that there must be a missing left paren)
313 Association_List
:= New_List
;
317 Append
(P_Generic_Association
, Association_List
);
318 exit when not Comma_Present
;
322 return Association_List
;
325 end P_Generic_Actual_Part_Opt
;
327 -------------------------------
328 -- 12.3 Generic Association --
329 -------------------------------
331 -- GENERIC_ASSOCIATION ::=
332 -- [generic_formal_parameter_SELECTOR_NAME =>]
333 -- EXPLICIT_GENERIC_ACTUAL_PARAMETER
335 -- EXPLICIT_GENERIC_ACTUAL_PARAMETER ::=
336 -- EXPRESSION | variable_NAME | subprogram_NAME
337 -- | entry_NAME | SUBTYPE_MARK | package_instance_NAME
339 -- Error recovery: cannot raise Error_Resync
341 function P_Generic_Association
return Node_Id
is
342 Scan_State
: Saved_Scan_State
;
343 Param_Name_Node
: Node_Id
;
344 Generic_Assoc_Node
: Node_Id
;
347 Generic_Assoc_Node
:= New_Node
(N_Generic_Association
, Token_Ptr
);
349 -- Ada 2005: an association can be given by: others => <>
351 if Token
= Tok_Others
then
352 if Ada_Version
< Ada_2005
then
354 ("partial parameterization of formal packages"
355 & " is an Ada 2005 extension");
357 ("\unit must be compiled with -gnat05 switch");
362 if Token
/= Tok_Arrow
then
363 Error_Msg_BC
("expect arrow after others");
368 if Token
/= Tok_Box
then
369 Error_Msg_BC
("expect Box after arrow");
374 -- Source position of the others choice is beginning of construct
376 return New_Node
(N_Others_Choice
, Sloc
(Generic_Assoc_Node
));
379 if Token
in Token_Class_Desig
then
380 Param_Name_Node
:= Token_Node
;
381 Save_Scan_State
(Scan_State
); -- at designator
382 Scan
; -- past simple name or operator symbol
384 if Token
= Tok_Arrow
then
386 Set_Selector_Name
(Generic_Assoc_Node
, Param_Name_Node
);
388 Restore_Scan_State
(Scan_State
); -- to designator
392 -- In Ada 2005 the actual can be a box
394 if Token
= Tok_Box
then
396 Set_Box_Present
(Generic_Assoc_Node
);
397 Set_Explicit_Generic_Actual_Parameter
(Generic_Assoc_Node
, Empty
);
400 Set_Explicit_Generic_Actual_Parameter
401 (Generic_Assoc_Node
, P_Expression
);
404 return Generic_Assoc_Node
;
405 end P_Generic_Association
;
407 ---------------------------------------------
408 -- 12.3 Explicit Generic Actual Parameter --
409 ---------------------------------------------
411 -- Parsed by P_Generic_Association (12.3)
413 --------------------------------------
414 -- 12.4 Formal Object Declarations --
415 --------------------------------------
417 -- FORMAL_OBJECT_DECLARATION ::=
418 -- DEFINING_IDENTIFIER_LIST :
419 -- MODE [NULL_EXCLUSION] SUBTYPE_MARK [:= DEFAULT_EXPRESSION]
420 -- [ASPECT_SPECIFICATIONS];
421 -- | DEFINING_IDENTIFIER_LIST :
422 -- MODE ACCESS_DEFINITION [:= DEFAULT_EXPRESSION];
423 -- [ASPECT_SPECIFICATIONS];
425 -- The caller has checked that the initial token is an identifier
427 -- Error recovery: cannot raise Error_Resync
429 procedure P_Formal_Object_Declarations
(Decls
: List_Id
) is
432 Not_Null_Present
: Boolean := False;
434 Scan_State
: Saved_Scan_State
;
436 Idents
: array (Int
range 1 .. 4096) of Entity_Id
;
437 -- This array holds the list of defining identifiers. The upper bound
438 -- of 4096 is intended to be essentially infinite, and we do not even
439 -- bother to check for it being exceeded.
442 Idents
(1) := P_Defining_Identifier
(C_Comma_Colon
);
444 while Comma_Present
loop
445 Num_Idents
:= Num_Idents
+ 1;
446 Idents
(Num_Idents
) := P_Defining_Identifier
(C_Comma_Colon
);
451 -- If there are multiple identifiers, we repeatedly scan the
452 -- type and initialization expression information by resetting
453 -- the scan pointer (so that we get completely separate trees
454 -- for each occurrence).
456 if Num_Idents
> 1 then
457 Save_Scan_State
(Scan_State
);
460 -- Loop through defining identifiers in list
464 Decl_Node
:= New_Node
(N_Formal_Object_Declaration
, Token_Ptr
);
465 Set_Defining_Identifier
(Decl_Node
, Idents
(Ident
));
468 Not_Null_Present
:= P_Null_Exclusion
; -- Ada 2005 (AI-423)
470 -- Ada 2005 (AI-423): Formal object with an access definition
472 if Token
= Tok_Access
then
474 -- The access definition is still parsed and set even though
475 -- the compilation may not use the proper switch. This action
476 -- ensures the required local error recovery.
478 Set_Access_Definition
(Decl_Node
,
479 P_Access_Definition
(Not_Null_Present
));
481 if Ada_Version
< Ada_2005
then
483 ("access definition not allowed in formal object " &
485 Error_Msg_SP
("\unit must be compiled with -gnat05 switch");
488 -- Formal object with a subtype mark
491 Set_Null_Exclusion_Present
(Decl_Node
, Not_Null_Present
);
492 Set_Subtype_Mark
(Decl_Node
, P_Subtype_Mark_Resync
);
496 Set_Default_Expression
(Decl_Node
, Init_Expr_Opt
);
497 P_Aspect_Specifications
(Decl_Node
);
500 Set_Prev_Ids
(Decl_Node
, True);
503 if Ident
< Num_Idents
then
504 Set_More_Ids
(Decl_Node
, True);
507 Append
(Decl_Node
, Decls
);
509 exit Ident_Loop
when Ident
= Num_Idents
;
511 Restore_Scan_State
(Scan_State
);
513 end P_Formal_Object_Declarations
;
515 -----------------------------------
516 -- 12.5 Formal Type Declaration --
517 -----------------------------------
519 -- FORMAL_TYPE_DECLARATION ::=
520 -- type DEFINING_IDENTIFIER [DISCRIMINANT_PART]
521 -- is FORMAL_TYPE_DEFINITION
522 -- [ASPECT_SPECIFICATIONS];
524 -- The caller has checked that the initial token is TYPE
526 -- Error recovery: cannot raise Error_Resync
528 function P_Formal_Type_Declaration
return Node_Id
is
533 Decl_Node
:= New_Node
(N_Formal_Type_Declaration
, Token_Ptr
);
535 Set_Defining_Identifier
(Decl_Node
, P_Defining_Identifier
);
537 if P_Unknown_Discriminant_Part_Opt
then
538 Set_Unknown_Discriminants_Present
(Decl_Node
, True);
540 Set_Discriminant_Specifications
541 (Decl_Node
, P_Known_Discriminant_Part_Opt
);
544 if Token
= Tok_Semicolon
then
546 -- Ada 2012: Incomplete formal type
548 Scan
; -- past semicolon
550 Error_Msg_Ada_2012_Feature
551 ("formal incomplete type", Sloc
(Decl_Node
));
553 Set_Formal_Type_Definition
555 New_Node
(N_Formal_Incomplete_Type_Definition
, Token_Ptr
));
562 Def_Node
:= P_Formal_Type_Definition
;
564 if Nkind
(Def_Node
) = N_Formal_Incomplete_Type_Definition
then
565 Error_Msg_Ada_2012_Feature
566 ("formal incomplete type", Sloc
(Decl_Node
));
569 if Def_Node
/= Error
then
570 Set_Formal_Type_Definition
(Decl_Node
, Def_Node
);
571 P_Aspect_Specifications
(Decl_Node
);
576 -- If we have aspect specifications, skip them
578 if Aspect_Specifications_Present
then
579 P_Aspect_Specifications
(Error
);
581 -- If we have semicolon, skip it to avoid cascaded errors
583 elsif Token
= Tok_Semicolon
then
584 Scan
; -- past semicolon
589 end P_Formal_Type_Declaration
;
591 ----------------------------------
592 -- 12.5 Formal Type Definition --
593 ----------------------------------
595 -- FORMAL_TYPE_DEFINITION ::=
596 -- FORMAL_PRIVATE_TYPE_DEFINITION
597 -- | FORMAL_INCOMPLETE_TYPE_DEFINITION
598 -- | FORMAL_DERIVED_TYPE_DEFINITION
599 -- | FORMAL_DISCRETE_TYPE_DEFINITION
600 -- | FORMAL_SIGNED_INTEGER_TYPE_DEFINITION
601 -- | FORMAL_MODULAR_TYPE_DEFINITION
602 -- | FORMAL_FLOATING_POINT_DEFINITION
603 -- | FORMAL_ORDINARY_FIXED_POINT_DEFINITION
604 -- | FORMAL_DECIMAL_FIXED_POINT_DEFINITION
605 -- | FORMAL_ARRAY_TYPE_DEFINITION
606 -- | FORMAL_ACCESS_TYPE_DEFINITION
607 -- | FORMAL_INTERFACE_TYPE_DEFINITION
609 -- FORMAL_ARRAY_TYPE_DEFINITION ::= ARRAY_TYPE_DEFINITION
611 -- FORMAL_ACCESS_TYPE_DEFINITION ::= ACCESS_TYPE_DEFINITION
613 -- FORMAL_INTERFACE_TYPE_DEFINITION ::= INTERFACE_TYPE_DEFINITION
615 function P_Formal_Type_Definition
return Node_Id
is
616 Scan_State
: Saved_Scan_State
;
617 Typedef_Node
: Node_Id
;
620 if Token_Name
= Name_Abstract
then
621 Check_95_Keyword
(Tok_Abstract
, Tok_Tagged
);
624 if Token_Name
= Name_Tagged
then
625 Check_95_Keyword
(Tok_Tagged
, Tok_Private
);
626 Check_95_Keyword
(Tok_Tagged
, Tok_Limited
);
631 -- Mostly we can tell what we have from the initial token. The one
632 -- exception is ABSTRACT, where we have to scan ahead to see if we
633 -- have a formal derived type or a formal private type definition.
635 -- In addition, in Ada 2005 LIMITED may appear after abstract, so
636 -- that the lookahead must be extended by one more token.
639 Save_Scan_State
(Scan_State
);
640 Scan
; -- past ABSTRACT
642 if Token
= Tok_New
then
643 Restore_Scan_State
(Scan_State
); -- to ABSTRACT
644 return P_Formal_Derived_Type_Definition
;
646 elsif Token
= Tok_Limited
then
647 Scan
; -- past LIMITED
649 if Token
= Tok_New
then
650 Restore_Scan_State
(Scan_State
); -- to ABSTRACT
651 return P_Formal_Derived_Type_Definition
;
654 Restore_Scan_State
(Scan_State
); -- to ABSTRACT
655 return P_Formal_Private_Type_Definition
;
658 -- Ada 2005 (AI-443): Abstract synchronized formal derived type
660 elsif Token
= Tok_Synchronized
then
661 Restore_Scan_State
(Scan_State
); -- to ABSTRACT
662 return P_Formal_Derived_Type_Definition
;
665 Restore_Scan_State
(Scan_State
); -- to ABSTRACT
666 return P_Formal_Private_Type_Definition
;
670 return P_Access_Type_Definition
;
673 return P_Array_Type_Definition
;
676 return P_Formal_Fixed_Point_Definition
;
679 return P_Formal_Floating_Point_Definition
;
681 when Tok_Interface
=> -- Ada 2005 (AI-251)
682 return P_Interface_Type_Definition
(Abstract_Present
=> False);
684 when Tok_Left_Paren
=>
685 return P_Formal_Discrete_Type_Definition
;
688 Save_Scan_State
(Scan_State
);
689 Scan
; -- past LIMITED
691 if Token
= Tok_Interface
then
693 P_Interface_Type_Definition
(Abstract_Present
=> False);
694 Set_Limited_Present
(Typedef_Node
);
697 elsif Token
= Tok_New
then
698 Restore_Scan_State
(Scan_State
); -- to LIMITED
699 return P_Formal_Derived_Type_Definition
;
702 if Token
= Tok_Abstract
then
703 Error_Msg_SC
-- CODEFIX
704 ("ABSTRACT must come before LIMITED");
705 Scan
; -- past improper ABSTRACT
707 if Token
= Tok_New
then
708 Restore_Scan_State
(Scan_State
); -- to LIMITED
709 return P_Formal_Derived_Type_Definition
;
712 Restore_Scan_State
(Scan_State
);
713 return P_Formal_Private_Type_Definition
;
717 Restore_Scan_State
(Scan_State
);
718 return P_Formal_Private_Type_Definition
;
722 return P_Formal_Modular_Type_Definition
;
725 return P_Formal_Derived_Type_Definition
;
728 if P_Null_Exclusion
then
729 Typedef_Node
:= P_Access_Type_Definition
;
730 Set_Null_Exclusion_Present
(Typedef_Node
);
734 Error_Msg_SC
("expect valid formal access definition!");
735 Resync_Past_Semicolon
;
740 return P_Formal_Private_Type_Definition
;
743 if Next_Token_Is
(Tok_Semicolon
) then
745 New_Node
(N_Formal_Incomplete_Type_Definition
, Token_Ptr
);
746 Set_Tagged_Present
(Typedef_Node
);
752 return P_Formal_Private_Type_Definition
;
756 return P_Formal_Signed_Integer_Type_Definition
;
759 Error_Msg_SC
("record not allowed in generic type definition!");
760 Discard_Junk_Node
(P_Record_Definition
);
763 -- Ada 2005 (AI-345): Task, Protected or Synchronized interface or
764 -- (AI-443): Synchronized formal derived type declaration.
771 Saved_Token
: constant Token_Type
:= Token
;
774 Scan
; -- past TASK, PROTECTED or SYNCHRONIZED
776 -- Synchronized derived type
778 if Token
= Tok_New
then
779 Typedef_Node
:= P_Formal_Derived_Type_Definition
;
781 if Saved_Token
= Tok_Synchronized
then
782 Set_Synchronized_Present
(Typedef_Node
);
784 Error_Msg_SC
("invalid kind of formal derived type");
791 P_Interface_Type_Definition
(Abstract_Present
=> False);
795 Set_Task_Present
(Typedef_Node
);
797 when Tok_Protected
=>
798 Set_Protected_Present
(Typedef_Node
);
800 when Tok_Synchronized
=>
801 Set_Synchronized_Present
(Typedef_Node
);
812 Error_Msg_BC
("expecting generic type definition here");
813 Resync_Past_Semicolon
;
816 end P_Formal_Type_Definition
;
818 --------------------------------------------
819 -- 12.5.1 Formal Private Type Definition --
820 --------------------------------------------
822 -- FORMAL_PRIVATE_TYPE_DEFINITION ::=
823 -- [[abstract] tagged] [limited] private
825 -- The caller has checked the initial token is PRIVATE, ABSTRACT,
828 -- Error recovery: cannot raise Error_Resync
830 function P_Formal_Private_Type_Definition
return Node_Id
is
834 Def_Node
:= New_Node
(N_Formal_Private_Type_Definition
, Token_Ptr
);
836 if Token
= Tok_Abstract
then
837 Scan
; -- past ABSTRACT
839 if Token_Name
= Name_Tagged
then
840 Check_95_Keyword
(Tok_Tagged
, Tok_Private
);
841 Check_95_Keyword
(Tok_Tagged
, Tok_Limited
);
844 if Token
/= Tok_Tagged
then
845 Error_Msg_SP
("ABSTRACT must be followed by TAGGED");
847 Set_Abstract_Present
(Def_Node
, True);
851 if Token
= Tok_Tagged
then
852 Set_Tagged_Present
(Def_Node
, True);
856 if Token
= Tok_Limited
then
857 Set_Limited_Present
(Def_Node
, True);
858 Scan
; -- past LIMITED
861 if Token
= Tok_Abstract
then
862 if Prev_Token
= Tok_Tagged
then
863 Error_Msg_SC
-- CODEFIX
864 ("ABSTRACT must come before TAGGED");
865 elsif Prev_Token
= Tok_Limited
then
866 Error_Msg_SC
-- CODEFIX
867 ("ABSTRACT must come before LIMITED");
870 Resync_Past_Semicolon
;
872 elsif Token
= Tok_Tagged
then
873 Error_Msg_SC
-- CODEFIX
874 ("TAGGED must come before LIMITED");
875 Resync_Past_Semicolon
;
878 Set_Sloc
(Def_Node
, Token_Ptr
);
881 if Token
= Tok_Tagged
then -- CODEFIX
882 Error_Msg_SC
("TAGGED must come before PRIVATE");
885 elsif Token
= Tok_Abstract
then -- CODEFIX
886 Error_Msg_SC
("`ABSTRACT TAGGED` must come before PRIVATE");
887 Scan
; -- past ABSTRACT
889 if Token
= Tok_Tagged
then
895 end P_Formal_Private_Type_Definition
;
897 --------------------------------------------
898 -- 12.5.1 Formal Derived Type Definition --
899 --------------------------------------------
901 -- FORMAL_DERIVED_TYPE_DEFINITION ::=
902 -- [abstract] [limited | synchronized]
903 -- new SUBTYPE_MARK [[and INTERFACE_LIST] with private]
905 -- The caller has checked the initial token(s) is/are NEW, ABSTRACT NEW,
906 -- or LIMITED NEW, ABSTRACT LIMITED NEW, SYNCHRONIZED NEW or ABSTRACT
909 -- Error recovery: cannot raise Error_Resync
911 function P_Formal_Derived_Type_Definition
return Node_Id
is
915 Def_Node
:= New_Node
(N_Formal_Derived_Type_Definition
, Token_Ptr
);
917 if Token
= Tok_Abstract
then
918 Set_Abstract_Present
(Def_Node
);
919 Scan
; -- past ABSTRACT
922 if Token
= Tok_Limited
then
923 Set_Limited_Present
(Def_Node
);
924 Scan
; -- past LIMITED
926 if Ada_Version
< Ada_2005
then
928 ("LIMITED in derived type is an Ada 2005 extension");
930 ("\unit must be compiled with -gnat05 switch");
933 elsif Token
= Tok_Synchronized
then
934 Set_Synchronized_Present
(Def_Node
);
935 Scan
; -- past SYNCHRONIZED
937 if Ada_Version
< Ada_2005
then
939 ("SYNCHRONIZED in derived type is an Ada 2005 extension");
941 ("\unit must be compiled with -gnat05 switch");
945 if Token
= Tok_Abstract
then
946 Scan
; -- past ABSTRACT, diagnosed already in caller.
950 Set_Subtype_Mark
(Def_Node
, P_Subtype_Mark
);
953 -- Ada 2005 (AI-251): Deal with interfaces
955 if Token
= Tok_And
then
958 if Ada_Version
< Ada_2005
then
960 ("abstract interface is an Ada 2005 extension");
961 Error_Msg_SP
("\unit must be compiled with -gnat05 switch");
964 Set_Interface_List
(Def_Node
, New_List
);
967 Append
(P_Qualified_Simple_Name
, Interface_List
(Def_Node
));
968 exit when Token
/= Tok_And
;
973 if Token
= Tok_With
then
975 Set_Private_Present
(Def_Node
, True);
978 elsif Token
= Tok_Tagged
then
981 if Token
= Tok_Private
then
982 Error_Msg_SC
-- CODEFIX
983 ("TAGGED should be WITH");
984 Set_Private_Present
(Def_Node
, True);
992 end P_Formal_Derived_Type_Definition
;
994 ---------------------------------------------
995 -- 12.5.2 Formal Discrete Type Definition --
996 ---------------------------------------------
998 -- FORMAL_DISCRETE_TYPE_DEFINITION ::= (<>)
1000 -- The caller has checked the initial token is left paren
1002 -- Error recovery: cannot raise Error_Resync
1004 function P_Formal_Discrete_Type_Definition
return Node_Id
is
1008 Def_Node
:= New_Node
(N_Formal_Discrete_Type_Definition
, Token_Ptr
);
1009 Scan
; -- past left paren
1013 end P_Formal_Discrete_Type_Definition
;
1015 ---------------------------------------------------
1016 -- 12.5.2 Formal Signed Integer Type Definition --
1017 ---------------------------------------------------
1019 -- FORMAL_SIGNED_INTEGER_TYPE_DEFINITION ::= range <>
1021 -- The caller has checked the initial token is RANGE
1023 -- Error recovery: cannot raise Error_Resync
1025 function P_Formal_Signed_Integer_Type_Definition
return Node_Id
is
1030 New_Node
(N_Formal_Signed_Integer_Type_Definition
, Token_Ptr
);
1034 end P_Formal_Signed_Integer_Type_Definition
;
1036 --------------------------------------------
1037 -- 12.5.2 Formal Modular Type Definition --
1038 --------------------------------------------
1040 -- FORMAL_MODULAR_TYPE_DEFINITION ::= mod <>
1042 -- The caller has checked the initial token is MOD
1044 -- Error recovery: cannot raise Error_Resync
1046 function P_Formal_Modular_Type_Definition
return Node_Id
is
1051 New_Node
(N_Formal_Modular_Type_Definition
, Token_Ptr
);
1055 end P_Formal_Modular_Type_Definition
;
1057 ----------------------------------------------
1058 -- 12.5.2 Formal Floating Point Definition --
1059 ----------------------------------------------
1061 -- FORMAL_FLOATING_POINT_DEFINITION ::= digits <>
1063 -- The caller has checked the initial token is DIGITS
1065 -- Error recovery: cannot raise Error_Resync
1067 function P_Formal_Floating_Point_Definition
return Node_Id
is
1072 New_Node
(N_Formal_Floating_Point_Definition
, Token_Ptr
);
1073 Scan
; -- past DIGITS
1076 end P_Formal_Floating_Point_Definition
;
1078 -------------------------------------------
1079 -- 12.5.2 Formal Fixed Point Definition --
1080 -------------------------------------------
1082 -- This routine parses either a formal ordinary fixed point definition
1083 -- or a formal decimal fixed point definition:
1085 -- FORMAL_ORDINARY_FIXED_POINT_DEFINITION ::= delta <>
1087 -- FORMAL_DECIMAL_FIXED_POINT_DEFINITION ::= delta <> digits <>
1089 -- The caller has checked the initial token is DELTA
1091 -- Error recovery: cannot raise Error_Resync
1093 function P_Formal_Fixed_Point_Definition
return Node_Id
is
1095 Delta_Sloc
: Source_Ptr
;
1098 Delta_Sloc
:= Token_Ptr
;
1102 if Token
= Tok_Digits
then
1104 New_Node
(N_Formal_Decimal_Fixed_Point_Definition
, Delta_Sloc
);
1105 Scan
; -- past DIGITS
1109 New_Node
(N_Formal_Ordinary_Fixed_Point_Definition
, Delta_Sloc
);
1113 end P_Formal_Fixed_Point_Definition
;
1115 ----------------------------------------------------
1116 -- 12.5.2 Formal Ordinary Fixed Point Definition --
1117 ----------------------------------------------------
1119 -- Parsed by P_Formal_Fixed_Point_Definition (12.5.2)
1121 ---------------------------------------------------
1122 -- 12.5.2 Formal Decimal Fixed Point Definition --
1123 ---------------------------------------------------
1125 -- Parsed by P_Formal_Fixed_Point_Definition (12.5.2)
1127 ------------------------------------------
1128 -- 12.5.3 Formal Array Type Definition --
1129 ------------------------------------------
1131 -- Parsed by P_Formal_Type_Definition (12.5)
1133 -------------------------------------------
1134 -- 12.5.4 Formal Access Type Definition --
1135 -------------------------------------------
1137 -- Parsed by P_Formal_Type_Definition (12.5)
1139 -----------------------------------------
1140 -- 12.6 Formal Subprogram Declaration --
1141 -----------------------------------------
1143 -- FORMAL_SUBPROGRAM_DECLARATION ::=
1144 -- FORMAL_CONCRETE_SUBPROGRAM_DECLARATION
1145 -- | FORMAL_ABSTRACT_SUBPROGRAM_DECLARATION
1147 -- FORMAL_CONCRETE_SUBPROGRAM_DECLARATION ::=
1148 -- with SUBPROGRAM_SPECIFICATION [is SUBPROGRAM_DEFAULT]
1149 -- [ASPECT_SPECIFICATIONS];
1151 -- FORMAL_ABSTRACT_SUBPROGRAM_DECLARATION ::=
1152 -- with SUBPROGRAM_SPECIFICATION is abstract [SUBPROGRAM_DEFAULT]
1153 -- [ASPECT_SPECIFICATIONS];
1155 -- SUBPROGRAM_DEFAULT ::= DEFAULT_NAME | <>
1157 -- DEFAULT_NAME ::= NAME | null
1159 -- The caller has checked that the initial tokens are WITH FUNCTION or
1160 -- WITH PROCEDURE, and the initial WITH has been scanned out.
1162 -- A null default is an Ada 2005 feature
1164 -- Error recovery: cannot raise Error_Resync
1166 function P_Formal_Subprogram_Declaration
return Node_Id
is
1167 Prev_Sloc
: constant Source_Ptr
:= Prev_Token_Ptr
;
1168 Spec_Node
: constant Node_Id
:= P_Subprogram_Specification
;
1172 if Token
= Tok_Is
then
1173 T_Is
; -- past IS, skip extra IS or ";"
1175 if Token
= Tok_Abstract
then
1177 New_Node
(N_Formal_Abstract_Subprogram_Declaration
, Prev_Sloc
);
1178 Scan
; -- past ABSTRACT
1180 if Ada_Version
< Ada_2005
then
1182 ("formal abstract subprograms are an Ada 2005 extension");
1183 Error_Msg_SP
("\unit must be compiled with -gnat05 switch");
1188 New_Node
(N_Formal_Concrete_Subprogram_Declaration
, Prev_Sloc
);
1191 Set_Specification
(Def_Node
, Spec_Node
);
1193 if Token
= Tok_Semicolon
then
1196 elsif Aspect_Specifications_Present
then
1199 elsif Token
= Tok_Box
then
1200 Set_Box_Present
(Def_Node
, True);
1203 elsif Token
= Tok_Null
then
1204 if Ada_Version
< Ada_2005
then
1206 ("null default subprograms are an Ada 2005 extension");
1207 Error_Msg_SP
("\unit must be compiled with -gnat05 switch");
1210 if Nkind
(Spec_Node
) = N_Procedure_Specification
then
1211 Set_Null_Present
(Spec_Node
);
1213 Error_Msg_SP
("only procedures can be null");
1219 Set_Default_Name
(Def_Node
, P_Name
);
1224 New_Node
(N_Formal_Concrete_Subprogram_Declaration
, Prev_Sloc
);
1225 Set_Specification
(Def_Node
, Spec_Node
);
1228 P_Aspect_Specifications
(Def_Node
);
1230 end P_Formal_Subprogram_Declaration
;
1232 ------------------------------
1233 -- 12.6 Subprogram Default --
1234 ------------------------------
1236 -- Parsed by P_Formal_Procedure_Declaration (12.6)
1238 ------------------------
1239 -- 12.6 Default Name --
1240 ------------------------
1242 -- Parsed by P_Formal_Procedure_Declaration (12.6)
1244 --------------------------------------
1245 -- 12.7 Formal Package Declaration --
1246 --------------------------------------
1248 -- FORMAL_PACKAGE_DECLARATION ::=
1249 -- with package DEFINING_IDENTIFIER
1250 -- is new generic_package_NAME FORMAL_PACKAGE_ACTUAL_PART
1251 -- [ASPECT_SPECIFICATIONS];
1253 -- FORMAL_PACKAGE_ACTUAL_PART ::=
1254 -- ([OTHERS =>] <>) |
1255 -- [GENERIC_ACTUAL_PART]
1256 -- (FORMAL_PACKAGE_ASSOCIATION {, FORMAL_PACKAGE_ASSOCIATION}
1259 -- FORMAL_PACKAGE_ASSOCIATION ::=
1260 -- GENERIC_ASSOCIATION
1261 -- | GENERIC_FORMAL_PARAMETER_SELECTOR_NAME => <>
1263 -- The caller has checked that the initial tokens are WITH PACKAGE,
1264 -- and the initial WITH has been scanned out (so Token = Tok_Package).
1266 -- Error recovery: cannot raise Error_Resync
1268 function P_Formal_Package_Declaration
return Node_Id
is
1270 Scan_State
: Saved_Scan_State
;
1273 Def_Node
:= New_Node
(N_Formal_Package_Declaration
, Prev_Token_Ptr
);
1274 Scan
; -- past PACKAGE
1275 Set_Defining_Identifier
(Def_Node
, P_Defining_Identifier
(C_Is
));
1278 Set_Name
(Def_Node
, P_Qualified_Simple_Name
);
1280 if Token
= Tok_Left_Paren
then
1281 Save_Scan_State
(Scan_State
); -- at the left paren
1282 Scan
; -- past the left paren
1284 if Token
= Tok_Box
then
1285 Set_Box_Present
(Def_Node
, True);
1290 Restore_Scan_State
(Scan_State
); -- to the left paren
1291 Set_Generic_Associations
(Def_Node
, P_Generic_Actual_Part_Opt
);
1295 P_Aspect_Specifications
(Def_Node
);
1297 end P_Formal_Package_Declaration
;
1299 --------------------------------------
1300 -- 12.7 Formal Package Actual Part --
1301 --------------------------------------
1303 -- Parsed by P_Formal_Package_Declaration (12.7)