* g++.dg/template/using30.C: Move ...
[official-gcc.git] / gcc / ada / sem_cat.adb
blob06460fd5ecb5662de96e6f44dc47a97da51cd253
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S E M _ C A T --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2014, Free Software Foundation, Inc. --
10 -- --
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. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
26 with Atree; use Atree;
27 with Debug; use Debug;
28 with Einfo; use Einfo;
29 with Elists; use Elists;
30 with Errout; use Errout;
31 with Exp_Disp; use Exp_Disp;
32 with Fname; use Fname;
33 with Lib; use Lib;
34 with Namet; use Namet;
35 with Nlists; use Nlists;
36 with Opt; use Opt;
37 with Sem; use Sem;
38 with Sem_Attr; use Sem_Attr;
39 with Sem_Aux; use Sem_Aux;
40 with Sem_Dist; use Sem_Dist;
41 with Sem_Eval; use Sem_Eval;
42 with Sem_Util; use Sem_Util;
43 with Sinfo; use Sinfo;
44 with Snames; use Snames;
45 with Stand; use Stand;
47 package body Sem_Cat is
49 -----------------------
50 -- Local Subprograms --
51 -----------------------
53 procedure Check_Categorization_Dependencies
54 (Unit_Entity : Entity_Id;
55 Depended_Entity : Entity_Id;
56 Info_Node : Node_Id;
57 Is_Subunit : Boolean);
58 -- This procedure checks that the categorization of a lib unit and that
59 -- of the depended unit satisfy dependency restrictions.
60 -- The depended_entity can be the entity in a with_clause item, in which
61 -- case Info_Node denotes that item. The depended_entity can also be the
62 -- parent unit of a child unit, in which case Info_Node is the declaration
63 -- of the child unit. The error message is posted on Info_Node, and is
64 -- specialized if Is_Subunit is true.
66 procedure Check_Non_Static_Default_Expr
67 (Type_Def : Node_Id;
68 Obj_Decl : Node_Id);
69 -- Iterate through the component list of a record definition, check
70 -- that no component is declared with a nonstatic default value.
71 -- If a nonstatic default exists, report an error on Obj_Decl.
73 function Has_Read_Write_Attributes (E : Entity_Id) return Boolean;
74 -- Return True if entity has attribute definition clauses for Read and
75 -- Write attributes that are visible at some place.
77 function Is_Non_Remote_Access_Type (E : Entity_Id) return Boolean;
78 -- Returns true if the entity is a type whose full view is a non-remote
79 -- access type, for the purpose of enforcing E.2.2(8) rules.
81 function Has_Non_Remote_Access (Typ : Entity_Id) return Boolean;
82 -- Return true if Typ or the type of any of its subcomponents is a non
83 -- remote access type and doesn't have user-defined stream attributes.
85 function No_External_Streaming (E : Entity_Id) return Boolean;
86 -- Return True if the entity or one of its subcomponents does not support
87 -- external streaming.
89 function In_RCI_Declaration (N : Node_Id) return Boolean;
90 -- Determines if a declaration is within the visible part of a Remote
91 -- Call Interface compilation unit, for semantic checking purposes only
92 -- (returns false within an instance and within the package body).
94 function In_RT_Declaration return Boolean;
95 -- Determines if current scope is within the declaration of a Remote Types
96 -- unit, for semantic checking purposes.
98 function In_Shared_Passive_Unit return Boolean;
99 -- Determines if current scope is within a Shared Passive compilation unit
101 function Static_Discriminant_Expr (L : List_Id) return Boolean;
102 -- Iterate through the list of discriminants to check if any of them
103 -- contains non-static default expression, which is a violation in
104 -- a preelaborated library unit.
106 procedure Validate_Remote_Access_Object_Type_Declaration (T : Entity_Id);
107 -- Check validity of declaration if RCI or RT unit. It should not contain
108 -- the declaration of an access-to-object type unless it is a general
109 -- access type that designates a class-wide limited private type. There are
110 -- also constraints about the primitive subprograms of the class-wide type.
111 -- RM E.2 (9, 13, 14)
113 procedure Validate_RACW_Primitive
114 (Subp : Entity_Id;
115 RACW : Entity_Id);
116 -- Check legality of the declaration of primitive Subp of the designated
117 -- type of the given RACW type.
119 ---------------------------------------
120 -- Check_Categorization_Dependencies --
121 ---------------------------------------
123 procedure Check_Categorization_Dependencies
124 (Unit_Entity : Entity_Id;
125 Depended_Entity : Entity_Id;
126 Info_Node : Node_Id;
127 Is_Subunit : Boolean)
129 N : constant Node_Id := Info_Node;
130 Err : Boolean;
132 -- Here we define an enumeration type to represent categorization types,
133 -- ordered so that a unit with a given categorization can only WITH
134 -- units with lower or equal categorization type.
136 type Categorization is
137 (Pure,
138 Shared_Passive,
139 Remote_Types,
140 Remote_Call_Interface,
141 Normal);
143 function Get_Categorization (E : Entity_Id) return Categorization;
144 -- Check categorization flags from entity, and return in the form
145 -- of the lowest value of the Categorization type that applies to E.
147 ------------------------
148 -- Get_Categorization --
149 ------------------------
151 function Get_Categorization (E : Entity_Id) return Categorization is
152 begin
153 -- Get the lowest categorization that corresponds to E. Note that
154 -- nothing prevents several (different) categorization pragmas
155 -- to apply to the same library unit, in which case the unit has
156 -- all associated categories, so we need to be careful here to
157 -- check pragmas in proper Categorization order in order to
158 -- return the lowest applicable value.
160 -- Ignore Pure specification if set by pragma Pure_Function
162 if Is_Pure (E)
163 and then not
164 (Has_Pragma_Pure_Function (E) and not Has_Pragma_Pure (E))
165 then
166 return Pure;
168 elsif Is_Shared_Passive (E) then
169 return Shared_Passive;
171 elsif Is_Remote_Types (E) then
172 return Remote_Types;
174 elsif Is_Remote_Call_Interface (E) then
175 return Remote_Call_Interface;
177 else
178 return Normal;
179 end if;
180 end Get_Categorization;
182 Unit_Category : Categorization;
183 With_Category : Categorization;
185 -- Start of processing for Check_Categorization_Dependencies
187 begin
188 -- Intrinsic subprograms are preelaborated, so do not impose any
189 -- categorization dependencies.
191 if Is_Intrinsic_Subprogram (Depended_Entity) then
192 return;
193 end if;
195 -- First check 10.2.1 (11/1) rules on preelaborate packages
197 if Is_Preelaborated (Unit_Entity)
198 and then not Is_Preelaborated (Depended_Entity)
199 and then not Is_Pure (Depended_Entity)
200 then
201 Err := True;
202 else
203 Err := False;
204 end if;
206 -- Check categorization rules of RM E.2(5)
208 Unit_Category := Get_Categorization (Unit_Entity);
209 With_Category := Get_Categorization (Depended_Entity);
211 if With_Category > Unit_Category then
213 -- Special case: Remote_Types and Remote_Call_Interface are allowed
214 -- to WITH anything in the package body, per (RM E.2(5)).
216 if (Unit_Category = Remote_Types
217 or else Unit_Category = Remote_Call_Interface)
218 and then In_Package_Body (Unit_Entity)
219 then
220 null;
222 -- Special case: Remote_Types and Remote_Call_Interface declarations
223 -- can depend on a preelaborated unit via a private with_clause, per
224 -- AI05-0206.
226 elsif (Unit_Category = Remote_Types
227 or else
228 Unit_Category = Remote_Call_Interface)
229 and then Nkind (N) = N_With_Clause
230 and then Private_Present (N)
231 and then Is_Preelaborated (Depended_Entity)
232 then
233 null;
235 -- All other cases, we do have an error
237 else
238 Err := True;
239 end if;
240 end if;
242 -- Here if we have an error
244 if Err then
246 -- These messages are warnings in GNAT mode or if the -gnateP switch
247 -- was set. Otherwise these are real errors for real illegalities.
249 -- The reason we suppress these errors in GNAT mode is that the run-
250 -- time has several instances of violations of the categorization
251 -- errors (e.g. Pure units withing Preelaborate units. All these
252 -- violations are harmless in the cases where we intend them, and
253 -- we suppress the warnings with Warnings (Off). In cases where we
254 -- do not intend the violation, warnings are errors in GNAT mode
255 -- anyway, so we will still get an error.
257 Error_Msg_Warn :=
258 Treat_Categorization_Errors_As_Warnings or GNAT_Mode;
260 -- Don't give error if main unit is not an internal unit, and the
261 -- unit generating the message is an internal unit. This is the
262 -- situation in which such messages would be ignored in any case,
263 -- so it is convenient not to generate them (since it causes
264 -- annoying interference with debugging).
266 if Is_Internal_File_Name (Unit_File_Name (Current_Sem_Unit))
267 and then not Is_Internal_File_Name (Unit_File_Name (Main_Unit))
268 then
269 return;
271 -- Dependence of Remote_Types or Remote_Call_Interface declaration
272 -- on a preelaborated unit with a normal with_clause.
274 elsif (Unit_Category = Remote_Types
275 or else
276 Unit_Category = Remote_Call_Interface)
277 and then Is_Preelaborated (Depended_Entity)
278 then
279 Error_Msg_NE
280 ("<<must use private with clause for preelaborated unit& ",
281 N, Depended_Entity);
283 -- Subunit case
285 elsif Is_Subunit then
286 Error_Msg_NE
287 ("<subunit cannot depend on& " &
288 "(parent has wrong categorization)", N, Depended_Entity);
290 -- Normal unit, not subunit
292 else
293 Error_Msg_NE
294 ("<<cannot depend on& " &
295 "(wrong categorization)", N, Depended_Entity);
296 end if;
298 -- Add further explanation for Pure/Preelaborate common cases
300 if Unit_Category = Pure then
301 Error_Msg_NE
302 ("\<<pure unit cannot depend on non-pure unit",
303 N, Depended_Entity);
305 elsif Is_Preelaborated (Unit_Entity)
306 and then not Is_Preelaborated (Depended_Entity)
307 and then not Is_Pure (Depended_Entity)
308 then
309 Error_Msg_NE
310 ("\<<preelaborated unit cannot depend on "
311 & "non-preelaborated unit",
312 N, Depended_Entity);
313 end if;
314 end if;
315 end Check_Categorization_Dependencies;
317 -----------------------------------
318 -- Check_Non_Static_Default_Expr --
319 -----------------------------------
321 procedure Check_Non_Static_Default_Expr
322 (Type_Def : Node_Id;
323 Obj_Decl : Node_Id)
325 Recdef : Node_Id;
326 Component_Decl : Node_Id;
328 begin
329 if Nkind (Type_Def) = N_Derived_Type_Definition then
330 Recdef := Record_Extension_Part (Type_Def);
332 if No (Recdef) then
333 return;
334 end if;
336 else
337 Recdef := Type_Def;
338 end if;
340 -- Check that component declarations do not involve:
342 -- a. a non-static default expression, where the object is
343 -- declared to be default initialized.
345 -- b. a dynamic Itype (discriminants and constraints)
347 if Null_Present (Recdef) then
348 return;
349 else
350 Component_Decl := First (Component_Items (Component_List (Recdef)));
351 end if;
353 while Present (Component_Decl)
354 and then Nkind (Component_Decl) = N_Component_Declaration
355 loop
356 if Present (Expression (Component_Decl))
357 and then Nkind (Expression (Component_Decl)) /= N_Null
358 and then not Is_OK_Static_Expression (Expression (Component_Decl))
359 then
360 Error_Msg_Sloc := Sloc (Component_Decl);
361 Error_Msg_F
362 ("object in preelaborated unit has non-static default#",
363 Obj_Decl);
365 -- Fix this later ???
367 -- elsif Has_Dynamic_Itype (Component_Decl) then
368 -- Error_Msg_N
369 -- ("dynamic type discriminant," &
370 -- " constraint in preelaborated unit",
371 -- Component_Decl);
372 end if;
374 Next (Component_Decl);
375 end loop;
376 end Check_Non_Static_Default_Expr;
378 ---------------------------
379 -- Has_Non_Remote_Access --
380 ---------------------------
382 function Has_Non_Remote_Access (Typ : Entity_Id) return Boolean is
383 Component : Entity_Id;
384 Comp_Type : Entity_Id;
385 U_Typ : constant Entity_Id := Underlying_Type (Typ);
387 begin
388 if No (U_Typ) then
389 return False;
391 elsif Has_Read_Write_Attributes (Typ)
392 or else Has_Read_Write_Attributes (U_Typ)
393 then
394 return False;
396 elsif Is_Non_Remote_Access_Type (U_Typ) then
397 return True;
398 end if;
400 if Is_Record_Type (U_Typ) then
401 Component := First_Entity (U_Typ);
402 while Present (Component) loop
403 if not Is_Tag (Component) then
404 Comp_Type := Etype (Component);
406 if Has_Non_Remote_Access (Comp_Type) then
407 return True;
408 end if;
409 end if;
411 Next_Entity (Component);
412 end loop;
414 elsif Is_Array_Type (U_Typ) then
415 return Has_Non_Remote_Access (Component_Type (U_Typ));
417 end if;
419 return False;
420 end Has_Non_Remote_Access;
422 -------------------------------
423 -- Has_Read_Write_Attributes --
424 -------------------------------
426 function Has_Read_Write_Attributes (E : Entity_Id) return Boolean is
427 begin
428 return True
429 and then Has_Stream_Attribute_Definition
430 (E, TSS_Stream_Read, At_Any_Place => True)
431 and then Has_Stream_Attribute_Definition
432 (E, TSS_Stream_Write, At_Any_Place => True);
433 end Has_Read_Write_Attributes;
435 -------------------------------------
436 -- Has_Stream_Attribute_Definition --
437 -------------------------------------
439 function Has_Stream_Attribute_Definition
440 (Typ : Entity_Id;
441 Nam : TSS_Name_Type;
442 At_Any_Place : Boolean := False) return Boolean
444 Rep_Item : Node_Id;
445 Full_Type : Entity_Id := Typ;
447 begin
448 -- In the case of a type derived from a private view, any specified
449 -- stream attributes will be attached to the derived type's underlying
450 -- type rather the derived type entity itself (which is itself private).
452 if Is_Private_Type (Typ)
453 and then Is_Derived_Type (Typ)
454 and then Present (Full_View (Typ))
455 then
456 Full_Type := Underlying_Type (Typ);
457 end if;
459 -- We start from the declaration node and then loop until the end of
460 -- the list until we find the requested attribute definition clause.
461 -- In Ada 2005 mode, clauses are ignored if they are not currently
462 -- visible (this is tested using the corresponding Entity, which is
463 -- inserted by the expander at the point where the clause occurs),
464 -- unless At_Any_Place is true.
466 Rep_Item := First_Rep_Item (Full_Type);
467 while Present (Rep_Item) loop
468 if Nkind (Rep_Item) = N_Attribute_Definition_Clause then
469 case Chars (Rep_Item) is
470 when Name_Read =>
471 exit when Nam = TSS_Stream_Read;
473 when Name_Write =>
474 exit when Nam = TSS_Stream_Write;
476 when Name_Input =>
477 exit when Nam = TSS_Stream_Input;
479 when Name_Output =>
480 exit when Nam = TSS_Stream_Output;
482 when others =>
483 null;
485 end case;
486 end if;
488 Next_Rep_Item (Rep_Item);
489 end loop;
491 -- If At_Any_Place is true, return True if the attribute is available
492 -- at any place; if it is false, return True only if the attribute is
493 -- currently visible.
495 return Present (Rep_Item)
496 and then (Ada_Version < Ada_2005
497 or else At_Any_Place
498 or else not Is_Hidden (Entity (Rep_Item)));
499 end Has_Stream_Attribute_Definition;
501 ---------------------------
502 -- In_Preelaborated_Unit --
503 ---------------------------
505 function In_Preelaborated_Unit return Boolean is
506 Unit_Entity : Entity_Id := Current_Scope;
507 Unit_Kind : constant Node_Kind :=
508 Nkind (Unit (Cunit (Current_Sem_Unit)));
510 begin
511 -- If evaluating actuals for a child unit instantiation, then ignore
512 -- the preelaboration status of the parent; use the child instead.
514 if Is_Compilation_Unit (Unit_Entity)
515 and then Unit_Kind in N_Generic_Instantiation
516 and then not In_Same_Source_Unit (Unit_Entity,
517 Cunit (Current_Sem_Unit))
518 then
519 Unit_Entity := Cunit_Entity (Current_Sem_Unit);
520 end if;
522 -- There are no constraints on the body of Remote_Call_Interface or
523 -- Remote_Types packages.
525 return (Unit_Entity /= Standard_Standard)
526 and then (Is_Preelaborated (Unit_Entity)
527 or else Is_Pure (Unit_Entity)
528 or else Is_Shared_Passive (Unit_Entity)
529 or else
530 ((Is_Remote_Types (Unit_Entity)
531 or else Is_Remote_Call_Interface (Unit_Entity))
532 and then Ekind (Unit_Entity) = E_Package
533 and then Unit_Kind /= N_Package_Body
534 and then not In_Package_Body (Unit_Entity)
535 and then not In_Instance));
536 end In_Preelaborated_Unit;
538 ------------------
539 -- In_Pure_Unit --
540 ------------------
542 function In_Pure_Unit return Boolean is
543 begin
544 return Is_Pure (Current_Scope);
545 end In_Pure_Unit;
547 ------------------------
548 -- In_RCI_Declaration --
549 ------------------------
551 function In_RCI_Declaration (N : Node_Id) return Boolean is
552 Unit_Entity : constant Entity_Id := Current_Scope;
553 Unit_Kind : constant Node_Kind :=
554 Nkind (Unit (Cunit (Current_Sem_Unit)));
556 begin
557 -- There are no restrictions on the private part or body
558 -- of an RCI unit.
560 return Is_Remote_Call_Interface (Unit_Entity)
561 and then Is_Package_Or_Generic_Package (Unit_Entity)
562 and then Unit_Kind /= N_Package_Body
563 and then List_Containing (N) =
564 Visible_Declarations (Package_Specification (Unit_Entity))
565 and then not In_Package_Body (Unit_Entity)
566 and then not In_Instance;
568 -- What about the case of a nested package in the visible part???
569 -- This case is missed by the List_Containing check above???
570 end In_RCI_Declaration;
572 -----------------------
573 -- In_RT_Declaration --
574 -----------------------
576 function In_RT_Declaration return Boolean is
577 Unit_Entity : constant Entity_Id := Current_Scope;
578 Unit_Kind : constant Node_Kind :=
579 Nkind (Unit (Cunit (Current_Sem_Unit)));
581 begin
582 -- There are no restrictions on the body of a Remote Types unit
584 return Is_Remote_Types (Unit_Entity)
585 and then Is_Package_Or_Generic_Package (Unit_Entity)
586 and then Unit_Kind /= N_Package_Body
587 and then not In_Package_Body (Unit_Entity)
588 and then not In_Instance;
589 end In_RT_Declaration;
591 ----------------------------
592 -- In_Shared_Passive_Unit --
593 ----------------------------
595 function In_Shared_Passive_Unit return Boolean is
596 Unit_Entity : constant Entity_Id := Current_Scope;
598 begin
599 return Is_Shared_Passive (Unit_Entity);
600 end In_Shared_Passive_Unit;
602 ---------------------------------------
603 -- In_Subprogram_Task_Protected_Unit --
604 ---------------------------------------
606 function In_Subprogram_Task_Protected_Unit return Boolean is
607 E : Entity_Id;
609 begin
610 -- The following is to verify that a declaration is inside
611 -- subprogram, generic subprogram, task unit, protected unit.
612 -- Used to validate if a lib. unit is Pure. RM 10.2.1(16).
614 -- Use scope chain to check successively outer scopes
616 E := Current_Scope;
617 loop
618 if Is_Subprogram_Or_Generic_Subprogram (E)
619 or else
620 Is_Concurrent_Type (E)
621 then
622 return True;
624 elsif E = Standard_Standard then
625 return False;
626 end if;
628 E := Scope (E);
629 end loop;
630 end In_Subprogram_Task_Protected_Unit;
632 -------------------------------
633 -- Is_Non_Remote_Access_Type --
634 -------------------------------
636 function Is_Non_Remote_Access_Type (E : Entity_Id) return Boolean is
637 U_E : constant Entity_Id := Underlying_Type (Base_Type (E));
638 -- Use full view of base type to handle subtypes properly.
640 begin
641 if No (U_E) then
643 -- This case arises for the case of a generic formal type, in which
644 -- case E.2.2(8) rules will be enforced at instantiation time.
646 return False;
647 end if;
649 return Is_Access_Type (U_E)
650 and then not Is_Remote_Access_To_Class_Wide_Type (U_E)
651 and then not Is_Remote_Access_To_Subprogram_Type (U_E);
652 end Is_Non_Remote_Access_Type;
654 ---------------------------
655 -- No_External_Streaming --
656 ---------------------------
658 function No_External_Streaming (E : Entity_Id) return Boolean is
659 U_E : constant Entity_Id := Underlying_Type (E);
661 begin
662 if No (U_E) then
663 return False;
665 elsif Has_Read_Write_Attributes (E) then
667 -- Note: availability of stream attributes is tested on E, not U_E.
668 -- There may be stream attributes defined on U_E that are not visible
669 -- at the place where support of external streaming is tested.
671 return False;
673 elsif Has_Non_Remote_Access (U_E) then
674 return True;
675 end if;
677 return Is_Limited_Type (E);
678 end No_External_Streaming;
680 -------------------------------------
681 -- Set_Categorization_From_Pragmas --
682 -------------------------------------
684 procedure Set_Categorization_From_Pragmas (N : Node_Id) is
685 P : constant Node_Id := Parent (N);
686 S : constant Entity_Id := Current_Scope;
688 procedure Set_Parents (Visibility : Boolean);
689 -- If this is a child instance, the parents are not immediately
690 -- visible during analysis. Make them momentarily visible so that
691 -- the argument of the pragma can be resolved properly, and reset
692 -- afterwards.
694 -----------------
695 -- Set_Parents --
696 -----------------
698 procedure Set_Parents (Visibility : Boolean) is
699 Par : Entity_Id;
700 begin
701 Par := Scope (S);
702 while Present (Par) and then Par /= Standard_Standard loop
703 Set_Is_Immediately_Visible (Par, Visibility);
704 Par := Scope (Par);
705 end loop;
706 end Set_Parents;
708 -- Start of processing for Set_Categorization_From_Pragmas
710 begin
711 -- Deal with categorization pragmas in Pragmas of Compilation_Unit.
712 -- The purpose is to set categorization flags before analyzing the
713 -- unit itself, so as to diagnose violations of categorization as
714 -- we process each declaration, even though the pragma appears after
715 -- the unit.
717 if Nkind (P) /= N_Compilation_Unit then
718 return;
719 end if;
721 declare
722 PN : Node_Id;
724 begin
725 if Is_Child_Unit (S) and then Is_Generic_Instance (S) then
726 Set_Parents (True);
727 end if;
729 PN := First (Pragmas_After (Aux_Decls_Node (P)));
730 while Present (PN) loop
732 -- Skip implicit types that may have been introduced by
733 -- previous analysis.
735 if Nkind (PN) = N_Pragma then
736 case Get_Pragma_Id (PN) is
737 when Pragma_All_Calls_Remote |
738 Pragma_Preelaborate |
739 Pragma_Pure |
740 Pragma_Remote_Call_Interface |
741 Pragma_Remote_Types |
742 Pragma_Shared_Passive => Analyze (PN);
743 when others => null;
744 end case;
745 end if;
747 Next (PN);
748 end loop;
750 if Is_Child_Unit (S) and then Is_Generic_Instance (S) then
751 Set_Parents (False);
752 end if;
753 end;
754 end Set_Categorization_From_Pragmas;
756 -----------------------------------
757 -- Set_Categorization_From_Scope --
758 -----------------------------------
760 procedure Set_Categorization_From_Scope (E : Entity_Id; Scop : Entity_Id) is
761 Declaration : Node_Id := Empty;
762 Specification : Node_Id := Empty;
764 begin
765 Set_Is_Pure
766 (E, Is_Pure (Scop) and then Is_Library_Level_Entity (E));
768 if not Is_Remote_Call_Interface (E) then
769 if Ekind (E) in Subprogram_Kind then
770 Declaration := Unit_Declaration_Node (E);
772 if Nkind_In (Declaration, N_Subprogram_Body,
773 N_Subprogram_Renaming_Declaration)
774 then
775 Specification := Corresponding_Spec (Declaration);
776 end if;
777 end if;
779 -- A subprogram body or renaming-as-body is a remote call interface
780 -- if it serves as the completion of a subprogram declaration that
781 -- is a remote call interface.
783 if Nkind (Specification) in N_Entity then
784 Set_Is_Remote_Call_Interface
785 (E, Is_Remote_Call_Interface (Specification));
787 -- A subprogram declaration is a remote call interface when it is
788 -- declared within the visible part of, or declared by, a library
789 -- unit declaration that is a remote call interface.
791 else
792 Set_Is_Remote_Call_Interface
793 (E, Is_Remote_Call_Interface (Scop)
794 and then not (In_Private_Part (Scop)
795 or else In_Package_Body (Scop)));
796 end if;
797 end if;
799 Set_Is_Remote_Types
800 (E, Is_Remote_Types (Scop)
801 and then not (In_Private_Part (Scop)
802 or else In_Package_Body (Scop)));
803 end Set_Categorization_From_Scope;
805 ------------------------------
806 -- Static_Discriminant_Expr --
807 ------------------------------
809 -- We need to accommodate a Why_Not_Static call somehow here ???
811 function Static_Discriminant_Expr (L : List_Id) return Boolean is
812 Discriminant_Spec : Node_Id;
814 begin
815 Discriminant_Spec := First (L);
816 while Present (Discriminant_Spec) loop
817 if Present (Expression (Discriminant_Spec))
818 and then
819 not Is_OK_Static_Expression (Expression (Discriminant_Spec))
820 then
821 return False;
822 end if;
824 Next (Discriminant_Spec);
825 end loop;
827 return True;
828 end Static_Discriminant_Expr;
830 --------------------------------------
831 -- Validate_Access_Type_Declaration --
832 --------------------------------------
834 procedure Validate_Access_Type_Declaration (T : Entity_Id; N : Node_Id) is
835 Def : constant Node_Id := Type_Definition (N);
837 begin
838 case Nkind (Def) is
840 -- Access to subprogram case
842 when N_Access_To_Subprogram_Definition =>
844 -- A pure library_item must not contain the declaration of a
845 -- named access type, except within a subprogram, generic
846 -- subprogram, task unit, or protected unit (RM 10.2.1(16)).
848 -- This test is skipped in Ada 2005 (see AI-366)
850 if Ada_Version < Ada_2005
851 and then Comes_From_Source (T)
852 and then In_Pure_Unit
853 and then not In_Subprogram_Task_Protected_Unit
854 then
855 Error_Msg_N ("named access type not allowed in pure unit", T);
856 end if;
858 -- Access to object case
860 when N_Access_To_Object_Definition =>
861 if Comes_From_Source (T)
862 and then In_Pure_Unit
863 and then not In_Subprogram_Task_Protected_Unit
864 then
865 -- We can't give the message yet, since the type is not frozen
866 -- and in Ada 2005 mode, access types are allowed in pure units
867 -- if the type has no storage pool (see AI-366). So we set a
868 -- flag which will be checked at freeze time.
870 Set_Is_Pure_Unit_Access_Type (T);
871 end if;
873 -- Check for RCI or RT unit type declaration: declaration of an
874 -- access-to-object type is illegal unless it is a general access
875 -- type that designates a class-wide limited private type.
876 -- Note that constraints on the primitive subprograms of the
877 -- designated tagged type are not enforced here but in
878 -- Validate_RACW_Primitives, which is done separately because the
879 -- designated type might not be frozen (and therefore its
880 -- primitive operations might not be completely known) at the
881 -- point of the RACW declaration.
883 Validate_Remote_Access_Object_Type_Declaration (T);
885 -- Check for shared passive unit type declaration. It should
886 -- not contain the declaration of access to class wide type,
887 -- access to task type and access to protected type with entry.
889 Validate_SP_Access_Object_Type_Decl (T);
891 when others =>
892 null;
893 end case;
895 -- Set categorization flag from package on entity as well, to allow
896 -- easy checks later on for required validations of RCI or RT units.
897 -- This is only done for entities that are in the original source.
899 if Comes_From_Source (T)
900 and then not (In_Package_Body (Scope (T))
901 or else In_Private_Part (Scope (T)))
902 then
903 Set_Is_Remote_Call_Interface
904 (T, Is_Remote_Call_Interface (Scope (T)));
905 Set_Is_Remote_Types
906 (T, Is_Remote_Types (Scope (T)));
907 end if;
908 end Validate_Access_Type_Declaration;
910 ----------------------------
911 -- Validate_Ancestor_Part --
912 ----------------------------
914 procedure Validate_Ancestor_Part (N : Node_Id) is
915 A : constant Node_Id := Ancestor_Part (N);
916 T : constant Entity_Id := Entity (A);
918 begin
919 if In_Preelaborated_Unit
920 and then not In_Subprogram_Or_Concurrent_Unit
921 and then (not Inside_A_Generic
922 or else Present (Enclosing_Generic_Body (N)))
923 then
924 -- If the type is private, it must have the Ada 2005 pragma
925 -- Has_Preelaborable_Initialization.
927 -- The check is omitted within predefined units. This is probably
928 -- obsolete code to fix the Ada 95 weakness in this area ???
930 if Is_Private_Type (T)
931 and then not Has_Pragma_Preelab_Init (T)
932 and then not Is_Internal_File_Name
933 (Unit_File_Name (Get_Source_Unit (N)))
934 then
935 Error_Msg_N
936 ("private ancestor type not allowed in preelaborated unit", A);
938 elsif Is_Record_Type (T) then
939 if Nkind (Parent (T)) = N_Full_Type_Declaration then
940 Check_Non_Static_Default_Expr
941 (Type_Definition (Parent (T)), A);
942 end if;
943 end if;
944 end if;
945 end Validate_Ancestor_Part;
947 ----------------------------------------
948 -- Validate_Categorization_Dependency --
949 ----------------------------------------
951 procedure Validate_Categorization_Dependency
952 (N : Node_Id;
953 E : Entity_Id)
955 K : constant Node_Kind := Nkind (N);
956 P : Node_Id := Parent (N);
957 U : Entity_Id := E;
958 Is_Subunit : constant Boolean := Nkind (P) = N_Subunit;
960 begin
961 -- Only validate library units and subunits. For subunits, checks
962 -- concerning withed units apply to the parent compilation unit.
964 if Is_Subunit then
965 P := Parent (P);
966 U := Scope (E);
968 while Present (U)
969 and then not Is_Compilation_Unit (U)
970 and then not Is_Child_Unit (U)
971 loop
972 U := Scope (U);
973 end loop;
974 end if;
976 if Nkind (P) /= N_Compilation_Unit then
977 return;
978 end if;
980 -- Body of RCI unit does not need validation
982 if Is_Remote_Call_Interface (E)
983 and then Nkind_In (N, N_Package_Body, N_Subprogram_Body)
984 then
985 return;
986 end if;
988 -- Ada 2005 (AI-50217): Process explicit non-limited with_clauses
990 declare
991 Item : Node_Id;
992 Entity_Of_Withed : Entity_Id;
994 begin
995 Item := First (Context_Items (P));
996 while Present (Item) loop
997 if Nkind (Item) = N_With_Clause
998 and then not (Implicit_With (Item)
999 or else Limited_Present (Item)
1001 -- Skip if error already posted on the WITH
1002 -- clause (in which case the Name attribute
1003 -- may be invalid). In particular, this fixes
1004 -- the problem of hanging in the presence of a
1005 -- WITH clause on a child that is an illegal
1006 -- generic instantiation.
1008 or else Error_Posted (Item))
1009 then
1010 Entity_Of_Withed := Entity (Name (Item));
1011 Check_Categorization_Dependencies
1012 (U, Entity_Of_Withed, Item, Is_Subunit);
1013 end if;
1015 Next (Item);
1016 end loop;
1017 end;
1019 -- Child depends on parent; therefore parent should also be categorized
1020 -- and satisfy the dependency hierarchy.
1022 -- Check if N is a child spec
1024 if (K in N_Generic_Declaration or else
1025 K in N_Generic_Instantiation or else
1026 K in N_Generic_Renaming_Declaration or else
1027 K = N_Package_Declaration or else
1028 K = N_Package_Renaming_Declaration or else
1029 K = N_Subprogram_Declaration or else
1030 K = N_Subprogram_Renaming_Declaration)
1031 and then Present (Parent_Spec (N))
1032 then
1033 Check_Categorization_Dependencies (E, Scope (E), N, False);
1035 -- Verify that public child of an RCI library unit must also be an
1036 -- RCI library unit (RM E.2.3(15)).
1038 if Is_Remote_Call_Interface (Scope (E))
1039 and then not Private_Present (P)
1040 and then not Is_Remote_Call_Interface (E)
1041 then
1042 Error_Msg_N ("public child of rci unit must also be rci unit", N);
1043 end if;
1044 end if;
1045 end Validate_Categorization_Dependency;
1047 --------------------------------
1048 -- Validate_Controlled_Object --
1049 --------------------------------
1051 procedure Validate_Controlled_Object (E : Entity_Id) is
1052 begin
1053 -- Don't need this check in Ada 2005 mode, where this is all taken
1054 -- care of by the mechanism for Preelaborable Initialization.
1056 if Ada_Version >= Ada_2005 then
1057 return;
1058 end if;
1060 -- For now, never apply this check for internal GNAT units, since we
1061 -- have a number of cases in the library where we are stuck with objects
1062 -- of this type, and the RM requires Preelaborate.
1064 -- For similar reasons, we only do this check for source entities, since
1065 -- we generate entities of this type in some situations.
1067 -- Note that the 10.2.1(9) restrictions are not relevant to us anyway.
1068 -- We have to enforce them for RM compatibility, but we have no trouble
1069 -- accepting these objects and doing the right thing. Note that there is
1070 -- no requirement that Preelaborate not actually generate any code.
1072 if In_Preelaborated_Unit
1073 and then not Debug_Flag_PP
1074 and then Comes_From_Source (E)
1075 and then not
1076 Is_Internal_File_Name (Unit_File_Name (Get_Source_Unit (E)))
1077 and then (not Inside_A_Generic
1078 or else Present (Enclosing_Generic_Body (E)))
1079 and then not Is_Protected_Type (Etype (E))
1080 then
1081 Error_Msg_N
1082 ("library level controlled object not allowed in " &
1083 "preelaborated unit", E);
1084 end if;
1085 end Validate_Controlled_Object;
1087 --------------------------------------
1088 -- Validate_Null_Statement_Sequence --
1089 --------------------------------------
1091 procedure Validate_Null_Statement_Sequence (N : Node_Id) is
1092 Item : Node_Id;
1094 begin
1095 if In_Preelaborated_Unit then
1096 Item := First (Statements (Handled_Statement_Sequence (N)));
1097 while Present (Item) loop
1098 if Nkind (Item) /= N_Label
1099 and then Nkind (Item) /= N_Null_Statement
1100 then
1101 -- In GNAT mode, this is a warning, allowing the run-time
1102 -- to judiciously bypass this error condition.
1104 Error_Msg_Warn := GNAT_Mode;
1105 Error_Msg_N
1106 ("<<statements not allowed in preelaborated unit", Item);
1108 exit;
1109 end if;
1111 Next (Item);
1112 end loop;
1113 end if;
1114 end Validate_Null_Statement_Sequence;
1116 ---------------------------------
1117 -- Validate_Object_Declaration --
1118 ---------------------------------
1120 procedure Validate_Object_Declaration (N : Node_Id) is
1121 Id : constant Entity_Id := Defining_Identifier (N);
1122 E : constant Node_Id := Expression (N);
1123 Odf : constant Node_Id := Object_Definition (N);
1124 T : constant Entity_Id := Etype (Id);
1126 begin
1127 -- Verify that any access to subprogram object does not have in its
1128 -- subprogram profile access type parameters or limited parameters
1129 -- without Read and Write attributes (E.2.3(13)).
1131 Validate_RCI_Subprogram_Declaration (N);
1133 -- Check that if we are in preelaborated elaboration code, then we
1134 -- do not have an instance of a default initialized private, task or
1135 -- protected object declaration which would violate (RM 10.2.1(9)).
1136 -- Note that constants are never default initialized (and the test
1137 -- below also filters out deferred constants). A variable is default
1138 -- initialized if it does *not* have an initialization expression.
1140 -- Filter out cases that are not declaration of a variable from source
1142 if Nkind (N) /= N_Object_Declaration
1143 or else Constant_Present (N)
1144 or else not Comes_From_Source (Id)
1145 then
1146 return;
1147 end if;
1149 -- Exclude generic specs from the checks (this will get rechecked
1150 -- on instantiations).
1152 if Inside_A_Generic and then No (Enclosing_Generic_Body (Id)) then
1153 return;
1154 end if;
1156 -- Required checks for declaration that is in a preelaborated package
1157 -- and is not within some subprogram.
1159 if In_Preelaborated_Unit
1160 and then not In_Subprogram_Or_Concurrent_Unit
1161 then
1162 -- Check for default initialized variable case. Note that in
1163 -- accordance with (RM B.1(24)) imported objects are not subject to
1164 -- default initialization.
1165 -- If the initialization does not come from source and is an
1166 -- aggregate, it is a static initialization that replaces an
1167 -- implicit call, and must be treated as such.
1169 if Present (E)
1170 and then (Comes_From_Source (E) or else Nkind (E) /= N_Aggregate)
1171 then
1172 null;
1174 elsif Is_Imported (Id) then
1175 null;
1177 else
1178 declare
1179 Ent : Entity_Id := T;
1181 begin
1182 -- An array whose component type is a record with nonstatic
1183 -- default expressions is a violation, so we get the array's
1184 -- component type.
1186 if Is_Array_Type (Ent) then
1187 declare
1188 Comp_Type : Entity_Id;
1190 begin
1191 Comp_Type := Component_Type (Ent);
1192 while Is_Array_Type (Comp_Type) loop
1193 Comp_Type := Component_Type (Comp_Type);
1194 end loop;
1196 Ent := Comp_Type;
1197 end;
1198 end if;
1200 -- Object decl. that is of record type and has no default expr.
1201 -- should check if there is any non-static default expression
1202 -- in component decl. of the record type decl.
1204 if Is_Record_Type (Ent) then
1205 if Nkind (Parent (Ent)) = N_Full_Type_Declaration then
1206 Check_Non_Static_Default_Expr
1207 (Type_Definition (Parent (Ent)), N);
1209 elsif Nkind (Odf) = N_Subtype_Indication
1210 and then not Is_Array_Type (T)
1211 and then not Is_Private_Type (T)
1212 then
1213 Check_Non_Static_Default_Expr (Type_Definition
1214 (Parent (Entity (Subtype_Mark (Odf)))), N);
1215 end if;
1216 end if;
1218 -- Check for invalid use of private object. Note that Ada 2005
1219 -- AI-161 modifies the rules for Ada 2005, including the use of
1220 -- the new pragma Preelaborable_Initialization.
1222 if Is_Private_Type (Ent)
1223 or else Depends_On_Private (Ent)
1224 then
1225 -- Case where type has preelaborable initialization which
1226 -- means that a pragma Preelaborable_Initialization was
1227 -- given for the private type.
1229 if Relaxed_RM_Semantics then
1231 -- In relaxed mode, do not issue these messages, this
1232 -- is basically similar to the GNAT_Mode test below.
1234 null;
1236 elsif Has_Preelaborable_Initialization (Ent) then
1238 -- But for the predefined units, we will ignore this
1239 -- status unless we are in Ada 2005 mode since we want
1240 -- Ada 95 compatible behavior, in which the entities
1241 -- marked with this pragma in the predefined library are
1242 -- not treated specially.
1244 if Ada_Version < Ada_2005 then
1245 Error_Msg_N
1246 ("private object not allowed in preelaborated unit",
1248 Error_Msg_N ("\(would be legal in Ada 2005 mode)", N);
1249 end if;
1251 -- Type does not have preelaborable initialization
1253 else
1254 -- We allow this when compiling in GNAT mode to make life
1255 -- easier for some cases where it would otherwise be hard
1256 -- to be exactly valid Ada.
1258 if not GNAT_Mode then
1259 Error_Msg_N
1260 ("private object not allowed in preelaborated unit",
1263 -- Add a message if it would help to provide a pragma
1264 -- Preelaborable_Initialization on the type of the
1265 -- object (which would make it legal in Ada 2005).
1267 -- If the type has no full view (generic type, or
1268 -- previous error), the warning does not apply.
1270 if Is_Private_Type (Ent)
1271 and then Present (Full_View (Ent))
1272 and then
1273 Has_Preelaborable_Initialization (Full_View (Ent))
1274 then
1275 Error_Msg_Sloc := Sloc (Ent);
1277 if Ada_Version >= Ada_2005 then
1278 Error_Msg_NE
1279 ("\would be legal if pragma Preelaborable_" &
1280 "Initialization given for & #", N, Ent);
1281 else
1282 Error_Msg_NE
1283 ("\would be legal in Ada 2005 if pragma " &
1284 "Preelaborable_Initialization given for & #",
1285 N, Ent);
1286 end if;
1287 end if;
1288 end if;
1289 end if;
1291 -- Access to Task or Protected type
1293 elsif Is_Entity_Name (Odf)
1294 and then Present (Etype (Odf))
1295 and then Is_Access_Type (Etype (Odf))
1296 then
1297 Ent := Designated_Type (Etype (Odf));
1299 elsif Is_Entity_Name (Odf) then
1300 Ent := Entity (Odf);
1302 elsif Nkind (Odf) = N_Subtype_Indication then
1303 Ent := Etype (Subtype_Mark (Odf));
1305 elsif Nkind (Odf) = N_Constrained_Array_Definition then
1306 Ent := Component_Type (T);
1307 end if;
1309 if Is_Task_Type (Ent)
1310 or else (Is_Protected_Type (Ent) and then Has_Entries (Ent))
1311 then
1312 Error_Msg_N
1313 ("concurrent object not allowed in preelaborated unit",
1315 return;
1316 end if;
1317 end;
1318 end if;
1320 -- Non-static discriminants not allowed in preelaborated unit.
1321 -- Objects of a controlled type with a user-defined Initialize
1322 -- are forbidden as well.
1324 if Is_Record_Type (Etype (Id)) then
1325 declare
1326 ET : constant Entity_Id := Etype (Id);
1327 EE : constant Entity_Id := Etype (Etype (Id));
1328 PEE : Node_Id;
1330 begin
1331 if Has_Discriminants (ET) and then Present (EE) then
1332 PEE := Parent (EE);
1334 if Nkind (PEE) = N_Full_Type_Declaration
1335 and then not Static_Discriminant_Expr
1336 (Discriminant_Specifications (PEE))
1337 then
1338 Error_Msg_N
1339 ("non-static discriminant in preelaborated unit",
1340 PEE);
1341 end if;
1342 end if;
1344 -- For controlled type or type with controlled component, check
1345 -- preelaboration flag, as there may be a non-null Initialize
1346 -- primitive. For language versions earlier than Ada 2005,
1347 -- there is no notion of preelaborable initialization, and
1348 -- Validate_Controlled_Object is used to enforce rules for
1349 -- controlled objects.
1351 if (Is_Controlled (ET) or else Has_Controlled_Component (ET))
1352 and then Ada_Version >= Ada_2005
1353 and then not Has_Preelaborable_Initialization (ET)
1354 then
1355 Error_Msg_NE
1356 ("controlled type& does not have"
1357 & " preelaborable initialization", N, ET);
1358 end if;
1359 end;
1361 end if;
1362 end if;
1364 -- A pure library_item must not contain the declaration of any variable
1365 -- except within a subprogram, generic subprogram, task unit, or
1366 -- protected unit (RM 10.2.1(16)).
1368 if In_Pure_Unit and then not In_Subprogram_Task_Protected_Unit then
1369 Error_Msg_N ("declaration of variable not allowed in pure unit", N);
1371 -- The visible part of an RCI library unit must not contain the
1372 -- declaration of a variable (RM E.1.3(9))
1374 elsif In_RCI_Declaration (N) then
1375 Error_Msg_N ("visible variable not allowed in 'R'C'I unit", N);
1377 -- The visible part of a Shared Passive library unit must not contain
1378 -- the declaration of a variable (RM E.2.2(7))
1380 elsif In_RT_Declaration and then not In_Private_Part (Id) then
1381 Error_Msg_N
1382 ("visible variable not allowed in remote types unit", N);
1383 end if;
1385 end Validate_Object_Declaration;
1387 -----------------------------
1388 -- Validate_RACW_Primitive --
1389 -----------------------------
1391 procedure Validate_RACW_Primitive
1392 (Subp : Entity_Id;
1393 RACW : Entity_Id)
1395 procedure Illegal_Remote_Subp (Msg : String; N : Node_Id);
1396 -- Diagnose illegality on N. If RACW is present, report the error on it
1397 -- rather than on N.
1399 -------------------------
1400 -- Illegal_Remote_Subp --
1401 -------------------------
1403 procedure Illegal_Remote_Subp (Msg : String; N : Node_Id) is
1404 begin
1405 if Present (RACW) then
1406 if not Error_Posted (RACW) then
1407 Error_Msg_N
1408 ("illegal remote access to class-wide type&", RACW);
1409 end if;
1411 Error_Msg_Sloc := Sloc (N);
1412 Error_Msg_NE ("\\" & Msg & " in primitive& #", RACW, Subp);
1414 else
1415 Error_Msg_NE (Msg & " in remote subprogram&", N, Subp);
1416 end if;
1417 end Illegal_Remote_Subp;
1419 Rtyp : Entity_Id;
1420 Param : Node_Id;
1421 Param_Spec : Node_Id;
1422 Param_Type : Entity_Id;
1424 -- Start of processing for Validate_RACW_Primitive
1426 begin
1427 -- Check return type
1429 if Ekind (Subp) = E_Function then
1430 Rtyp := Etype (Subp);
1432 -- AI05-0101 (Binding Interpretation): The result type of a remote
1433 -- function must either support external streaming or be a
1434 -- controlling access result type.
1436 if Has_Controlling_Result (Subp) then
1437 null;
1439 elsif Ekind (Rtyp) = E_Anonymous_Access_Type then
1440 Illegal_Remote_Subp ("anonymous access result", Rtyp);
1442 elsif Is_Limited_Type (Rtyp) then
1443 if No (TSS (Rtyp, TSS_Stream_Read))
1444 or else
1445 No (TSS (Rtyp, TSS_Stream_Write))
1446 then
1447 Illegal_Remote_Subp
1448 ("limited return type must have Read and Write attributes",
1449 Parent (Subp));
1450 Explain_Limited_Type (Rtyp, Parent (Subp));
1451 end if;
1453 -- Check that the return type supports external streaming
1455 elsif No_External_Streaming (Rtyp)
1456 and then not Error_Posted (Rtyp)
1457 then
1458 Illegal_Remote_Subp ("return type containing non-remote access "
1459 & "must have Read and Write attributes",
1460 Parent (Subp));
1461 end if;
1462 end if;
1464 Param := First_Formal (Subp);
1465 while Present (Param) loop
1467 -- Now find out if this parameter is a controlling parameter
1469 Param_Spec := Parent (Param);
1470 Param_Type := Etype (Param);
1472 if Is_Controlling_Formal (Param) then
1474 -- It is a controlling parameter, so specific checks below do not
1475 -- apply.
1477 null;
1479 elsif Ekind_In (Param_Type, E_Anonymous_Access_Type,
1480 E_Anonymous_Access_Subprogram_Type)
1481 then
1482 -- From RM E.2.2(14), no anonymous access parameter other than
1483 -- controlling ones may be used (because an anonymous access
1484 -- type never supports external streaming).
1486 Illegal_Remote_Subp
1487 ("non-controlling access parameter", Param_Spec);
1489 elsif No_External_Streaming (Param_Type)
1490 and then not Error_Posted (Param_Type)
1491 then
1492 Illegal_Remote_Subp ("formal parameter in remote subprogram must "
1493 & "support external streaming", Param_Spec);
1494 end if;
1496 -- Check next parameter in this subprogram
1498 Next_Formal (Param);
1499 end loop;
1500 end Validate_RACW_Primitive;
1502 ------------------------------
1503 -- Validate_RACW_Primitives --
1504 ------------------------------
1506 procedure Validate_RACW_Primitives (T : Entity_Id) is
1507 Desig_Type : Entity_Id;
1508 Primitive_Subprograms : Elist_Id;
1509 Subprogram_Elmt : Elmt_Id;
1510 Subprogram : Entity_Id;
1512 begin
1513 Desig_Type := Etype (Designated_Type (T));
1515 -- No action needed for concurrent types
1517 if Is_Concurrent_Type (Desig_Type) then
1518 return;
1519 end if;
1521 Primitive_Subprograms := Primitive_Operations (Desig_Type);
1523 Subprogram_Elmt := First_Elmt (Primitive_Subprograms);
1524 while Subprogram_Elmt /= No_Elmt loop
1525 Subprogram := Node (Subprogram_Elmt);
1527 if Is_Predefined_Dispatching_Operation (Subprogram)
1528 or else Is_Hidden (Subprogram)
1529 then
1530 goto Next_Subprogram;
1531 end if;
1533 Validate_RACW_Primitive (Subp => Subprogram, RACW => T);
1535 <<Next_Subprogram>>
1536 Next_Elmt (Subprogram_Elmt);
1537 end loop;
1538 end Validate_RACW_Primitives;
1540 -------------------------------
1541 -- Validate_RCI_Declarations --
1542 -------------------------------
1544 procedure Validate_RCI_Declarations (P : Entity_Id) is
1545 E : Entity_Id;
1547 begin
1548 E := First_Entity (P);
1549 while Present (E) loop
1550 if Comes_From_Source (E) then
1551 if Is_Limited_Type (E) then
1552 Error_Msg_N
1553 ("limited type not allowed in rci unit", Parent (E));
1554 Explain_Limited_Type (E, Parent (E));
1556 elsif Ekind_In (E, E_Generic_Function,
1557 E_Generic_Package,
1558 E_Generic_Procedure)
1559 then
1560 Error_Msg_N ("generic declaration not allowed in rci unit",
1561 Parent (E));
1563 elsif (Ekind (E) = E_Function or else Ekind (E) = E_Procedure)
1564 and then Has_Pragma_Inline (E)
1565 then
1566 Error_Msg_N
1567 ("inlined subprogram not allowed in rci unit", Parent (E));
1569 -- Inner packages that are renamings need not be checked. Generic
1570 -- RCI packages are subject to the checks, but entities that come
1571 -- from formal packages are not part of the visible declarations
1572 -- of the package and are not checked.
1574 elsif Ekind (E) = E_Package then
1575 if Present (Renamed_Entity (E)) then
1576 null;
1578 elsif Ekind (P) /= E_Generic_Package
1579 or else List_Containing (Unit_Declaration_Node (E)) /=
1580 Generic_Formal_Declarations
1581 (Unit_Declaration_Node (P))
1582 then
1583 Validate_RCI_Declarations (E);
1584 end if;
1585 end if;
1586 end if;
1588 Next_Entity (E);
1589 end loop;
1590 end Validate_RCI_Declarations;
1592 -----------------------------------------
1593 -- Validate_RCI_Subprogram_Declaration --
1594 -----------------------------------------
1596 procedure Validate_RCI_Subprogram_Declaration (N : Node_Id) is
1597 K : constant Node_Kind := Nkind (N);
1598 Profile : List_Id;
1599 Id : Node_Id;
1600 Param_Spec : Node_Id;
1601 Param_Type : Entity_Id;
1602 Error_Node : Node_Id := N;
1604 begin
1605 -- This procedure enforces rules on subprogram and access to subprogram
1606 -- declarations in RCI units. These rules do not apply to expander
1607 -- generated routines, which are not remote subprograms. It is called:
1609 -- 1. from Analyze_Subprogram_Declaration.
1610 -- 2. from Validate_Object_Declaration (access to subprogram).
1612 if not (Comes_From_Source (N) and then In_RCI_Declaration (N)) then
1613 return;
1614 end if;
1616 if K = N_Subprogram_Declaration then
1617 Id := Defining_Unit_Name (Specification (N));
1618 Profile := Parameter_Specifications (Specification (N));
1620 else pragma Assert (K = N_Object_Declaration);
1622 -- The above assertion is dubious, the visible declarations of an
1623 -- RCI unit never contain an object declaration, this should be an
1624 -- ACCESS-to-object declaration???
1626 Id := Defining_Identifier (N);
1628 if Nkind (Id) = N_Defining_Identifier
1629 and then Nkind (Parent (Etype (Id))) = N_Full_Type_Declaration
1630 and then Ekind (Etype (Id)) = E_Access_Subprogram_Type
1631 then
1632 Profile :=
1633 Parameter_Specifications (Type_Definition (Parent (Etype (Id))));
1634 else
1635 return;
1636 end if;
1637 end if;
1639 -- Iterate through the parameter specification list, checking that
1640 -- no access parameter and no limited type parameter in the list.
1641 -- RM E.2.3(14).
1643 if Present (Profile) then
1644 Param_Spec := First (Profile);
1645 while Present (Param_Spec) loop
1646 Param_Type := Etype (Defining_Identifier (Param_Spec));
1648 if Ekind (Param_Type) = E_Anonymous_Access_Type then
1649 if K = N_Subprogram_Declaration then
1650 Error_Node := Param_Spec;
1651 end if;
1653 -- Report error only if declaration is in source program
1655 if Comes_From_Source
1656 (Defining_Entity (Specification (N)))
1657 then
1658 Error_Msg_N
1659 ("subprogram in 'R'C'I unit cannot have access parameter",
1660 Error_Node);
1661 end if;
1663 -- For a limited private type parameter, we check only the private
1664 -- declaration and ignore full type declaration, unless this is
1665 -- the only declaration for the type, e.g., as a limited record.
1667 elsif No_External_Streaming (Param_Type) then
1668 if K = N_Subprogram_Declaration then
1669 Error_Node := Param_Spec;
1670 end if;
1672 Error_Msg_NE
1673 ("formal of remote subprogram& "
1674 & "must support external streaming",
1675 Error_Node, Id);
1676 if Is_Limited_Type (Param_Type) then
1677 Explain_Limited_Type (Param_Type, Error_Node);
1678 end if;
1679 end if;
1681 Next (Param_Spec);
1682 end loop;
1684 -- No check on return type???
1685 end if;
1686 end Validate_RCI_Subprogram_Declaration;
1688 ----------------------------------------------------
1689 -- Validate_Remote_Access_Object_Type_Declaration --
1690 ----------------------------------------------------
1692 procedure Validate_Remote_Access_Object_Type_Declaration (T : Entity_Id) is
1693 Direct_Designated_Type : Entity_Id;
1694 Desig_Type : Entity_Id;
1696 begin
1697 -- We are called from Analyze_Full_Type_Declaration, and the Nkind of
1698 -- the given node is N_Access_To_Object_Definition.
1700 if not Comes_From_Source (T)
1701 or else (not In_RCI_Declaration (Parent (T))
1702 and then not In_RT_Declaration)
1703 then
1704 return;
1705 end if;
1707 -- An access definition in the private part of a Remote Types package
1708 -- may be legal if it has user-defined Read and Write attributes. This
1709 -- will be checked at the end of the package spec processing.
1711 if In_RT_Declaration and then In_Private_Part (Scope (T)) then
1712 return;
1713 end if;
1715 -- Check RCI or RT unit type declaration. It may not contain the
1716 -- declaration of an access-to-object type unless it is a general access
1717 -- type that designates a class-wide limited private type or subtype.
1718 -- There are also constraints on the primitive subprograms of the
1719 -- class-wide type (RM E.2.2(14), see Validate_RACW_Primitives).
1721 if Ekind (T) /= E_General_Access_Type
1722 or else not Is_Class_Wide_Type (Designated_Type (T))
1723 then
1724 if In_RCI_Declaration (Parent (T)) then
1725 Error_Msg_N
1726 ("error in access type in Remote_Call_Interface unit", T);
1727 else
1728 Error_Msg_N
1729 ("error in access type in Remote_Types unit", T);
1730 end if;
1732 Error_Msg_N ("\must be general access to class-wide type", T);
1733 return;
1734 end if;
1736 Direct_Designated_Type := Designated_Type (T);
1737 Desig_Type := Etype (Direct_Designated_Type);
1739 -- Why is this check not in Validate_Remote_Access_To_Class_Wide_Type???
1741 if not Is_Valid_Remote_Object_Type (Desig_Type) then
1742 Error_Msg_N
1743 ("error in designated type of remote access to class-wide type", T);
1744 Error_Msg_N
1745 ("\must be tagged limited private or private extension", T);
1746 return;
1747 end if;
1748 end Validate_Remote_Access_Object_Type_Declaration;
1750 -----------------------------------------------
1751 -- Validate_Remote_Access_To_Class_Wide_Type --
1752 -----------------------------------------------
1754 procedure Validate_Remote_Access_To_Class_Wide_Type (N : Node_Id) is
1755 K : constant Node_Kind := Nkind (N);
1756 PK : constant Node_Kind := Nkind (Parent (N));
1757 E : Entity_Id;
1759 begin
1760 -- This subprogram enforces the checks in (RM E.2.2(8)) for certain uses
1761 -- of class-wide limited private types.
1763 -- Storage_Pool and Storage_Size are not defined for such types
1765 -- The expected type of allocator must not be such a type.
1767 -- The actual parameter of generic instantiation must not be such a
1768 -- type if the formal parameter is of an access type.
1770 -- On entry, there are several cases:
1772 -- 1. called from sem_attr Analyze_Attribute where attribute name is
1773 -- either Storage_Pool or Storage_Size.
1775 -- 2. called from exp_ch4 Expand_N_Allocator
1777 -- 3. called from sem_ch4 Analyze_Explicit_Dereference
1779 -- 4. called from sem_res Resolve_Actuals
1781 if K = N_Attribute_Reference then
1782 E := Etype (Prefix (N));
1784 if Is_Remote_Access_To_Class_Wide_Type (E) then
1785 Error_Msg_N ("incorrect attribute of remote operand", N);
1786 return;
1787 end if;
1789 elsif K = N_Allocator then
1790 E := Etype (N);
1792 if Is_Remote_Access_To_Class_Wide_Type (E) then
1793 Error_Msg_N ("incorrect expected remote type of allocator", N);
1794 return;
1795 end if;
1797 -- This subprogram also enforces the checks in E.2.2(13). A value of
1798 -- such type must not be dereferenced unless as controlling operand of
1799 -- a dispatching call. Explicit dereferences not coming from source are
1800 -- exempted from this checking because the expander produces them in
1801 -- some cases (such as for tag checks on dispatching calls with multiple
1802 -- controlling operands). However we do check in the case of an implicit
1803 -- dereference that is expanded to an explicit dereference (hence the
1804 -- test of whether Original_Node (N) comes from source).
1806 elsif K = N_Explicit_Dereference
1807 and then Comes_From_Source (Original_Node (N))
1808 then
1809 E := Etype (Prefix (N));
1811 -- If the class-wide type is not a remote one, the restrictions
1812 -- do not apply.
1814 if not Is_Remote_Access_To_Class_Wide_Type (E) then
1815 return;
1816 end if;
1818 -- If we have a true dereference that comes from source and that
1819 -- is a controlling argument for a dispatching call, accept it.
1821 if Is_Actual_Parameter (N) and then Is_Controlling_Actual (N) then
1822 return;
1823 end if;
1825 -- If we are just within a procedure or function call and the
1826 -- dereference has not been analyzed, return because this procedure
1827 -- will be called again from sem_res Resolve_Actuals. The same can
1828 -- apply in the case of dereference that is the prefix of a selected
1829 -- component, which can be a call given in prefixed form.
1831 if (Is_Actual_Parameter (N) or else PK = N_Selected_Component)
1832 and then not Analyzed (N)
1833 then
1834 return;
1835 end if;
1837 -- We must allow expanded code to generate a reference to the tag of
1838 -- the designated object (may be either the actual tag, or the stub
1839 -- tag in the case of a remote object).
1841 if PK = N_Selected_Component
1842 and then Is_Tag (Entity (Selector_Name (Parent (N))))
1843 then
1844 return;
1845 end if;
1847 Error_Msg_N
1848 ("invalid dereference of a remote access-to-class-wide value", N);
1849 end if;
1850 end Validate_Remote_Access_To_Class_Wide_Type;
1852 ------------------------------------------
1853 -- Validate_Remote_Type_Type_Conversion --
1854 ------------------------------------------
1856 procedure Validate_Remote_Type_Type_Conversion (N : Node_Id) is
1857 S : constant Entity_Id := Etype (N);
1858 E : constant Entity_Id := Etype (Expression (N));
1860 begin
1861 -- This test is required in the case where a conversion appears inside a
1862 -- normal package, it does not necessarily have to be inside an RCI,
1863 -- Remote_Types unit (RM E.2.2(9,12)).
1865 if Is_Remote_Access_To_Subprogram_Type (E)
1866 and then not Is_Remote_Access_To_Subprogram_Type (S)
1867 then
1868 Error_Msg_N
1869 ("incorrect conversion of remote operand to local type", N);
1870 return;
1872 elsif not Is_Remote_Access_To_Subprogram_Type (E)
1873 and then Is_Remote_Access_To_Subprogram_Type (S)
1874 then
1875 Error_Msg_N
1876 ("incorrect conversion of local operand to remote type", N);
1877 return;
1879 elsif Is_Remote_Access_To_Class_Wide_Type (E)
1880 and then not Is_Remote_Access_To_Class_Wide_Type (S)
1881 then
1882 Error_Msg_N
1883 ("incorrect conversion of remote operand to local type", N);
1884 return;
1885 end if;
1887 -- If a local access type is converted into a RACW type, then the
1888 -- current unit has a pointer that may now be exported to another
1889 -- partition.
1891 if Is_Remote_Access_To_Class_Wide_Type (S)
1892 and then not Is_Remote_Access_To_Class_Wide_Type (E)
1893 then
1894 Set_Has_RACW (Current_Sem_Unit);
1895 end if;
1896 end Validate_Remote_Type_Type_Conversion;
1898 -------------------------------
1899 -- Validate_RT_RAT_Component --
1900 -------------------------------
1902 procedure Validate_RT_RAT_Component (N : Node_Id) is
1903 Spec : constant Node_Id := Specification (N);
1904 Name_U : constant Entity_Id := Defining_Entity (Spec);
1905 Typ : Entity_Id;
1906 U_Typ : Entity_Id;
1907 First_Priv_Ent : constant Entity_Id := First_Private_Entity (Name_U);
1909 function Stream_Attributes_Available (Typ : Entity_Id) return Boolean;
1910 -- True if any stream attribute is available for Typ
1912 ---------------------------------
1913 -- Stream_Attributes_Available --
1914 ---------------------------------
1916 function Stream_Attributes_Available (Typ : Entity_Id) return Boolean
1918 begin
1919 return Stream_Attribute_Available (Typ, TSS_Stream_Read)
1920 or else
1921 Stream_Attribute_Available (Typ, TSS_Stream_Write)
1922 or else
1923 Stream_Attribute_Available (Typ, TSS_Stream_Input)
1924 or else
1925 Stream_Attribute_Available (Typ, TSS_Stream_Output);
1926 end Stream_Attributes_Available;
1928 -- Start of processing for Validate_RT_RAT_Component
1930 begin
1931 if not Is_Remote_Types (Name_U) then
1932 return;
1933 end if;
1935 Typ := First_Entity (Name_U);
1936 while Present (Typ) and then Typ /= First_Priv_Ent loop
1937 U_Typ := Underlying_Type (Base_Type (Typ));
1939 if No (U_Typ) then
1940 U_Typ := Typ;
1941 end if;
1943 if Comes_From_Source (Typ) and then Is_Type (Typ) then
1945 -- Check that the type can be meaningfully transmitted to another
1946 -- partition (E.2.2(8)).
1948 if (Ada_Version < Ada_2005 and then Has_Non_Remote_Access (U_Typ))
1949 or else (Stream_Attributes_Available (Typ)
1950 and then No_External_Streaming (U_Typ))
1951 then
1952 if Is_Non_Remote_Access_Type (Typ) then
1953 Error_Msg_N ("error in non-remote access type", U_Typ);
1954 else
1955 Error_Msg_N
1956 ("error in record type containing a component of a " &
1957 "non-remote access type", U_Typ);
1958 end if;
1960 if Ada_Version >= Ada_2005 then
1961 Error_Msg_N
1962 ("\must have visible Read and Write attribute " &
1963 "definition clauses (RM E.2.2(8))", U_Typ);
1964 else
1965 Error_Msg_N
1966 ("\must have Read and Write attribute " &
1967 "definition clauses (RM E.2.2(8))", U_Typ);
1968 end if;
1969 end if;
1970 end if;
1972 Next_Entity (Typ);
1973 end loop;
1974 end Validate_RT_RAT_Component;
1976 -----------------------------------------
1977 -- Validate_SP_Access_Object_Type_Decl --
1978 -----------------------------------------
1980 procedure Validate_SP_Access_Object_Type_Decl (T : Entity_Id) is
1981 Direct_Designated_Type : Entity_Id;
1983 function Has_Entry_Declarations (E : Entity_Id) return Boolean;
1984 -- Return true if the protected type designated by T has entry
1985 -- declarations.
1987 ----------------------------
1988 -- Has_Entry_Declarations --
1989 ----------------------------
1991 function Has_Entry_Declarations (E : Entity_Id) return Boolean is
1992 Ety : Entity_Id;
1994 begin
1995 if Nkind (Parent (E)) = N_Protected_Type_Declaration then
1996 Ety := First_Entity (E);
1997 while Present (Ety) loop
1998 if Ekind (Ety) = E_Entry then
1999 return True;
2000 end if;
2002 Next_Entity (Ety);
2003 end loop;
2004 end if;
2006 return False;
2007 end Has_Entry_Declarations;
2009 -- Start of processing for Validate_SP_Access_Object_Type_Decl
2011 begin
2012 -- We are called from Sem_Ch3.Analyze_Full_Type_Declaration, and the
2013 -- Nkind of the given entity is N_Access_To_Object_Definition.
2015 if not Comes_From_Source (T)
2016 or else not In_Shared_Passive_Unit
2017 or else In_Subprogram_Task_Protected_Unit
2018 then
2019 return;
2020 end if;
2022 -- Check Shared Passive unit. It should not contain the declaration
2023 -- of an access-to-object type whose designated type is a class-wide
2024 -- type, task type or protected type with entry (RM E.2.1(7)).
2026 Direct_Designated_Type := Designated_Type (T);
2028 if Ekind (Direct_Designated_Type) = E_Class_Wide_Type then
2029 Error_Msg_N
2030 ("invalid access-to-class-wide type in shared passive unit", T);
2031 return;
2033 elsif Ekind (Direct_Designated_Type) in Task_Kind then
2034 Error_Msg_N
2035 ("invalid access-to-task type in shared passive unit", T);
2036 return;
2038 elsif Ekind (Direct_Designated_Type) in Protected_Kind
2039 and then Has_Entry_Declarations (Direct_Designated_Type)
2040 then
2041 Error_Msg_N
2042 ("invalid access-to-protected type in shared passive unit", T);
2043 return;
2044 end if;
2045 end Validate_SP_Access_Object_Type_Decl;
2047 ---------------------------------
2048 -- Validate_Static_Object_Name --
2049 ---------------------------------
2051 procedure Validate_Static_Object_Name (N : Node_Id) is
2052 E : Entity_Id;
2053 Val : Node_Id;
2055 function Is_Primary (N : Node_Id) return Boolean;
2056 -- Determine whether node is syntactically a primary in an expression
2057 -- This function should probably be somewhere else ???
2059 -- Also it does not do what it says, e.g if N is a binary operator
2060 -- whose parent is a binary operator, Is_Primary returns True ???
2062 ----------------
2063 -- Is_Primary --
2064 ----------------
2066 function Is_Primary (N : Node_Id) return Boolean is
2067 K : constant Node_Kind := Nkind (Parent (N));
2069 begin
2070 case K is
2071 when N_Op | N_Membership_Test =>
2072 return True;
2074 when N_Aggregate
2075 | N_Component_Association
2076 | N_Index_Or_Discriminant_Constraint =>
2077 return True;
2079 when N_Attribute_Reference =>
2080 return Attribute_Name (Parent (N)) /= Name_Address
2081 and then Attribute_Name (Parent (N)) /= Name_Access
2082 and then Attribute_Name (Parent (N)) /= Name_Unchecked_Access
2083 and then
2084 Attribute_Name (Parent (N)) /= Name_Unrestricted_Access;
2086 when N_Indexed_Component =>
2087 return (N /= Prefix (Parent (N))
2088 or else Is_Primary (Parent (N)));
2090 when N_Qualified_Expression | N_Type_Conversion =>
2091 return Is_Primary (Parent (N));
2093 when N_Assignment_Statement | N_Object_Declaration =>
2094 return (N = Expression (Parent (N)));
2096 when N_Selected_Component =>
2097 return Is_Primary (Parent (N));
2099 when others =>
2100 return False;
2101 end case;
2102 end Is_Primary;
2104 -- Start of processing for Validate_Static_Object_Name
2106 begin
2107 if not In_Preelaborated_Unit
2108 or else not Comes_From_Source (N)
2109 or else In_Subprogram_Or_Concurrent_Unit
2110 or else Ekind (Current_Scope) = E_Block
2111 then
2112 return;
2114 -- Filter out cases where primary is default in a component declaration,
2115 -- discriminant specification, or actual in a record type initialization
2116 -- call.
2118 -- Initialization call of internal types
2120 elsif Nkind (Parent (N)) = N_Procedure_Call_Statement then
2122 if Present (Parent (Parent (N)))
2123 and then Nkind (Parent (Parent (N))) = N_Freeze_Entity
2124 then
2125 return;
2126 end if;
2128 if Nkind (Name (Parent (N))) = N_Identifier
2129 and then not Comes_From_Source (Entity (Name (Parent (N))))
2130 then
2131 return;
2132 end if;
2133 end if;
2135 -- Error if the name is a primary in an expression. The parent must not
2136 -- be an operator, or a selected component or an indexed component that
2137 -- is itself a primary. Entities that are actuals do not need to be
2138 -- checked, because the call itself will be diagnosed.
2140 if Is_Primary (N)
2141 and then (not Inside_A_Generic
2142 or else Present (Enclosing_Generic_Body (N)))
2143 then
2144 if Ekind (Entity (N)) = E_Variable
2145 or else Ekind (Entity (N)) in Formal_Object_Kind
2146 then
2147 Flag_Non_Static_Expr
2148 ("non-static object name in preelaborated unit", N);
2150 -- Give an error for a reference to a nonstatic constant, unless the
2151 -- constant is in another GNAT library unit that is preelaborable.
2153 elsif Ekind (Entity (N)) = E_Constant
2154 and then not Is_Static_Expression (N)
2155 then
2156 E := Entity (N);
2157 Val := Constant_Value (E);
2159 if Is_Internal_File_Name (Unit_File_Name (Get_Source_Unit (N)))
2160 and then
2161 Enclosing_Comp_Unit_Node (N) /= Enclosing_Comp_Unit_Node (E)
2162 and then (Is_Preelaborated (Scope (E))
2163 or else Is_Pure (Scope (E))
2164 or else (Present (Renamed_Object (E))
2165 and then Is_Entity_Name (Renamed_Object (E))
2166 and then
2167 (Is_Preelaborated
2168 (Scope (Renamed_Object (E)))
2169 or else
2170 Is_Pure
2171 (Scope (Renamed_Object (E))))))
2172 then
2173 null;
2175 -- If the value of the constant is a local variable that renames
2176 -- an aggregate, this is in itself legal. The aggregate may be
2177 -- expanded into a loop, but this does not affect preelaborability
2178 -- in itself. If some aggregate components are non-static, that is
2179 -- to say if they involve non static primaries, they will be
2180 -- flagged when analyzed.
2182 elsif Present (Val)
2183 and then Is_Entity_Name (Val)
2184 and then Is_Array_Type (Etype (Val))
2185 and then not Comes_From_Source (Val)
2186 and then Nkind (Original_Node (Val)) = N_Aggregate
2187 then
2188 null;
2190 -- This is the error case
2192 else
2193 -- In GNAT mode or Relaxed RM Semantic mode, this is just a
2194 -- warning, to allow it to be judiciously turned off.
2195 -- Otherwise it is a real error.
2197 if GNAT_Mode or Relaxed_RM_Semantics then
2198 Error_Msg_N
2199 ("??non-static constant in preelaborated unit", N);
2200 else
2201 Flag_Non_Static_Expr
2202 ("non-static constant in preelaborated unit", N);
2203 end if;
2204 end if;
2205 end if;
2206 end if;
2207 end Validate_Static_Object_Name;
2209 end Sem_Cat;