OSDN Git Service

caf4cc7a0ee418064394be0343742c0e74eada08
[pf3gnuchains/gcc-fork.git] / gcc / ada / sem_util.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             S E M _ U T I L                              --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2009, 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 ------------------------------------------------------------------------------
25
26 with Atree;    use Atree;
27 with Casing;   use Casing;
28 with Checks;   use Checks;
29 with Debug;    use Debug;
30 with Errout;   use Errout;
31 with Elists;   use Elists;
32 with Exp_Ch11; use Exp_Ch11;
33 with Exp_Disp; use Exp_Disp;
34 with Exp_Tss;  use Exp_Tss;
35 with Exp_Util; use Exp_Util;
36 with Fname;    use Fname;
37 with Freeze;   use Freeze;
38 with Lib;      use Lib;
39 with Lib.Xref; use Lib.Xref;
40 with Nlists;   use Nlists;
41 with Output;   use Output;
42 with Opt;      use Opt;
43 with Rtsfind;  use Rtsfind;
44 with Scans;    use Scans;
45 with Scn;      use Scn;
46 with Sem;      use Sem;
47 with Sem_Aux;  use Sem_Aux;
48 with Sem_Attr; use Sem_Attr;
49 with Sem_Ch8;  use Sem_Ch8;
50 with Sem_Disp; use Sem_Disp;
51 with Sem_Eval; use Sem_Eval;
52 with Sem_Res;  use Sem_Res;
53 with Sem_Type; use Sem_Type;
54 with Sinfo;    use Sinfo;
55 with Sinput;   use Sinput;
56 with Stand;    use Stand;
57 with Style;
58 with Stringt;  use Stringt;
59 with Targparm; use Targparm;
60 with Tbuild;   use Tbuild;
61 with Ttypes;   use Ttypes;
62 with Uname;    use Uname;
63
64 with GNAT.HTable; use GNAT.HTable;
65 package body Sem_Util is
66
67    ----------------------------------------
68    -- Global_Variables for New_Copy_Tree --
69    ----------------------------------------
70
71    --  These global variables are used by New_Copy_Tree. See description
72    --  of the body of this subprogram for details. Global variables can be
73    --  safely used by New_Copy_Tree, since there is no case of a recursive
74    --  call from the processing inside New_Copy_Tree.
75
76    NCT_Hash_Threshhold : constant := 20;
77    --  If there are more than this number of pairs of entries in the
78    --  map, then Hash_Tables_Used will be set, and the hash tables will
79    --  be initialized and used for the searches.
80
81    NCT_Hash_Tables_Used : Boolean := False;
82    --  Set to True if hash tables are in use
83
84    NCT_Table_Entries : Nat;
85    --  Count entries in table to see if threshhold is reached
86
87    NCT_Hash_Table_Setup : Boolean := False;
88    --  Set to True if hash table contains data. We set this True if we
89    --  setup the hash table with data, and leave it set permanently
90    --  from then on, this is a signal that second and subsequent users
91    --  of the hash table must clear the old entries before reuse.
92
93    subtype NCT_Header_Num is Int range 0 .. 511;
94    --  Defines range of headers in hash tables (512 headers)
95
96    -----------------------
97    -- Local Subprograms --
98    -----------------------
99
100    function Build_Component_Subtype
101      (C   : List_Id;
102       Loc : Source_Ptr;
103       T   : Entity_Id) return Node_Id;
104    --  This function builds the subtype for Build_Actual_Subtype_Of_Component
105    --  and Build_Discriminal_Subtype_Of_Component. C is a list of constraints,
106    --  Loc is the source location, T is the original subtype.
107
108    function Is_Fully_Initialized_Variant (Typ : Entity_Id) return Boolean;
109    --  Subsidiary to Is_Fully_Initialized_Type. For an unconstrained type
110    --  with discriminants whose default values are static, examine only the
111    --  components in the selected variant to determine whether all of them
112    --  have a default.
113
114    function Has_Null_Extension (T : Entity_Id) return Boolean;
115    --  T is a derived tagged type. Check whether the type extension is null.
116    --  If the parent type is fully initialized, T can be treated as such.
117
118    ------------------------------
119    --  Abstract_Interface_List --
120    ------------------------------
121
122    function Abstract_Interface_List (Typ : Entity_Id) return List_Id is
123       Nod : Node_Id;
124
125    begin
126       if Is_Concurrent_Type (Typ) then
127
128          --  If we are dealing with a synchronized subtype, go to the base
129          --  type, whose declaration has the interface list.
130
131          --  Shouldn't this be Declaration_Node???
132
133          Nod := Parent (Base_Type (Typ));
134
135          if Nkind (Nod) = N_Full_Type_Declaration then
136             return Empty_List;
137          end if;
138
139       elsif Ekind (Typ) = E_Record_Type_With_Private then
140          if Nkind (Parent (Typ)) = N_Full_Type_Declaration then
141             Nod := Type_Definition (Parent (Typ));
142
143          elsif Nkind (Parent (Typ)) = N_Private_Type_Declaration then
144             if Present (Full_View (Typ)) then
145                Nod := Type_Definition (Parent (Full_View (Typ)));
146
147             --  If the full-view is not available we cannot do anything else
148             --  here (the source has errors).
149
150             else
151                return Empty_List;
152             end if;
153
154          --  Support for generic formals with interfaces is still missing ???
155
156          elsif Nkind (Parent (Typ)) = N_Formal_Type_Declaration then
157             return Empty_List;
158
159          else
160             pragma Assert
161               (Nkind (Parent (Typ)) = N_Private_Extension_Declaration);
162             Nod := Parent (Typ);
163          end if;
164
165       elsif Ekind (Typ) = E_Record_Subtype then
166          Nod := Type_Definition (Parent (Etype (Typ)));
167
168       elsif Ekind (Typ) = E_Record_Subtype_With_Private then
169
170          --  Recurse, because parent may still be a private extension. Also
171          --  note that the full view of the subtype or the full view of its
172          --  base type may (both) be unavailable.
173
174          return Abstract_Interface_List (Etype (Typ));
175
176       else pragma Assert ((Ekind (Typ)) = E_Record_Type);
177          if Nkind (Parent (Typ)) = N_Formal_Type_Declaration then
178             Nod := Formal_Type_Definition (Parent (Typ));
179          else
180             Nod := Type_Definition (Parent (Typ));
181          end if;
182       end if;
183
184       return Interface_List (Nod);
185    end Abstract_Interface_List;
186
187    --------------------------------
188    -- Add_Access_Type_To_Process --
189    --------------------------------
190
191    procedure Add_Access_Type_To_Process (E : Entity_Id; A : Entity_Id) is
192       L : Elist_Id;
193
194    begin
195       Ensure_Freeze_Node (E);
196       L := Access_Types_To_Process (Freeze_Node (E));
197
198       if No (L) then
199          L := New_Elmt_List;
200          Set_Access_Types_To_Process (Freeze_Node (E), L);
201       end if;
202
203       Append_Elmt (A, L);
204    end Add_Access_Type_To_Process;
205
206    ----------------------------
207    -- Add_Global_Declaration --
208    ----------------------------
209
210    procedure Add_Global_Declaration (N : Node_Id) is
211       Aux_Node : constant Node_Id := Aux_Decls_Node (Cunit (Current_Sem_Unit));
212
213    begin
214       if No (Declarations (Aux_Node)) then
215          Set_Declarations (Aux_Node, New_List);
216       end if;
217
218       Append_To (Declarations (Aux_Node), N);
219       Analyze (N);
220    end Add_Global_Declaration;
221
222    -----------------------
223    -- Alignment_In_Bits --
224    -----------------------
225
226    function Alignment_In_Bits (E : Entity_Id) return Uint is
227    begin
228       return Alignment (E) * System_Storage_Unit;
229    end Alignment_In_Bits;
230
231    -----------------------------------------
232    -- Apply_Compile_Time_Constraint_Error --
233    -----------------------------------------
234
235    procedure Apply_Compile_Time_Constraint_Error
236      (N      : Node_Id;
237       Msg    : String;
238       Reason : RT_Exception_Code;
239       Ent    : Entity_Id  := Empty;
240       Typ    : Entity_Id  := Empty;
241       Loc    : Source_Ptr := No_Location;
242       Rep    : Boolean    := True;
243       Warn   : Boolean    := False)
244    is
245       Stat   : constant Boolean := Is_Static_Expression (N);
246       R_Stat : constant Node_Id :=
247                  Make_Raise_Constraint_Error (Sloc (N), Reason => Reason);
248       Rtyp   : Entity_Id;
249
250    begin
251       if No (Typ) then
252          Rtyp := Etype (N);
253       else
254          Rtyp := Typ;
255       end if;
256
257       Discard_Node
258         (Compile_Time_Constraint_Error (N, Msg, Ent, Loc, Warn => Warn));
259
260       if not Rep then
261          return;
262       end if;
263
264       --  Now we replace the node by an N_Raise_Constraint_Error node
265       --  This does not need reanalyzing, so set it as analyzed now.
266
267       Rewrite (N, R_Stat);
268       Set_Analyzed (N, True);
269
270       Set_Etype (N, Rtyp);
271       Set_Raises_Constraint_Error (N);
272
273       --  Now deal with possible local raise handling
274
275       Possible_Local_Raise (N, Standard_Constraint_Error);
276
277       --  If the original expression was marked as static, the result is
278       --  still marked as static, but the Raises_Constraint_Error flag is
279       --  always set so that further static evaluation is not attempted.
280
281       if Stat then
282          Set_Is_Static_Expression (N);
283       end if;
284    end Apply_Compile_Time_Constraint_Error;
285
286    --------------------------
287    -- Build_Actual_Subtype --
288    --------------------------
289
290    function Build_Actual_Subtype
291      (T : Entity_Id;
292       N : Node_Or_Entity_Id) return Node_Id
293    is
294       Loc : Source_Ptr;
295       --  Normally Sloc (N), but may point to corresponding body in some cases
296
297       Constraints : List_Id;
298       Decl        : Node_Id;
299       Discr       : Entity_Id;
300       Hi          : Node_Id;
301       Lo          : Node_Id;
302       Subt        : Entity_Id;
303       Disc_Type   : Entity_Id;
304       Obj         : Node_Id;
305
306    begin
307       Loc := Sloc (N);
308
309       if Nkind (N) = N_Defining_Identifier then
310          Obj := New_Reference_To (N, Loc);
311
312          --  If this is a formal parameter of a subprogram declaration, and
313          --  we are compiling the body, we want the declaration for the
314          --  actual subtype to carry the source position of the body, to
315          --  prevent anomalies in gdb when stepping through the code.
316
317          if Is_Formal (N) then
318             declare
319                Decl : constant Node_Id := Unit_Declaration_Node (Scope (N));
320             begin
321                if Nkind (Decl) = N_Subprogram_Declaration
322                  and then Present (Corresponding_Body (Decl))
323                then
324                   Loc := Sloc (Corresponding_Body (Decl));
325                end if;
326             end;
327          end if;
328
329       else
330          Obj := N;
331       end if;
332
333       if Is_Array_Type (T) then
334          Constraints := New_List;
335          for J in 1 .. Number_Dimensions (T) loop
336
337             --  Build an array subtype declaration with the nominal subtype and
338             --  the bounds of the actual. Add the declaration in front of the
339             --  local declarations for the subprogram, for analysis before any
340             --  reference to the formal in the body.
341
342             Lo :=
343               Make_Attribute_Reference (Loc,
344                 Prefix         =>
345                   Duplicate_Subexpr_No_Checks (Obj, Name_Req => True),
346                 Attribute_Name => Name_First,
347                 Expressions    => New_List (
348                   Make_Integer_Literal (Loc, J)));
349
350             Hi :=
351               Make_Attribute_Reference (Loc,
352                 Prefix         =>
353                   Duplicate_Subexpr_No_Checks (Obj, Name_Req => True),
354                 Attribute_Name => Name_Last,
355                 Expressions    => New_List (
356                   Make_Integer_Literal (Loc, J)));
357
358             Append (Make_Range (Loc, Lo, Hi), Constraints);
359          end loop;
360
361       --  If the type has unknown discriminants there is no constrained
362       --  subtype to build. This is never called for a formal or for a
363       --  lhs, so returning the type is ok ???
364
365       elsif Has_Unknown_Discriminants (T) then
366          return T;
367
368       else
369          Constraints := New_List;
370
371          --  Type T is a generic derived type, inherit the discriminants from
372          --  the parent type.
373
374          if Is_Private_Type (T)
375            and then No (Full_View (T))
376
377             --  T was flagged as an error if it was declared as a formal
378             --  derived type with known discriminants. In this case there
379             --  is no need to look at the parent type since T already carries
380             --  its own discriminants.
381
382            and then not Error_Posted (T)
383          then
384             Disc_Type := Etype (Base_Type (T));
385          else
386             Disc_Type := T;
387          end if;
388
389          Discr := First_Discriminant (Disc_Type);
390          while Present (Discr) loop
391             Append_To (Constraints,
392               Make_Selected_Component (Loc,
393                 Prefix =>
394                   Duplicate_Subexpr_No_Checks (Obj),
395                 Selector_Name => New_Occurrence_Of (Discr, Loc)));
396             Next_Discriminant (Discr);
397          end loop;
398       end if;
399
400       Subt :=
401         Make_Defining_Identifier (Loc,
402           Chars => New_Internal_Name ('S'));
403       Set_Is_Internal (Subt);
404
405       Decl :=
406         Make_Subtype_Declaration (Loc,
407           Defining_Identifier => Subt,
408           Subtype_Indication =>
409             Make_Subtype_Indication (Loc,
410               Subtype_Mark => New_Reference_To (T,  Loc),
411               Constraint  =>
412                 Make_Index_Or_Discriminant_Constraint (Loc,
413                   Constraints => Constraints)));
414
415       Mark_Rewrite_Insertion (Decl);
416       return Decl;
417    end Build_Actual_Subtype;
418
419    ---------------------------------------
420    -- Build_Actual_Subtype_Of_Component --
421    ---------------------------------------
422
423    function Build_Actual_Subtype_Of_Component
424      (T : Entity_Id;
425       N : Node_Id) return Node_Id
426    is
427       Loc       : constant Source_Ptr := Sloc (N);
428       P         : constant Node_Id    := Prefix (N);
429       D         : Elmt_Id;
430       Id        : Node_Id;
431       Indx_Type : Entity_Id;
432
433       Deaccessed_T : Entity_Id;
434       --  This is either a copy of T, or if T is an access type, then it is
435       --  the directly designated type of this access type.
436
437       function Build_Actual_Array_Constraint return List_Id;
438       --  If one or more of the bounds of the component depends on
439       --  discriminants, build  actual constraint using the discriminants
440       --  of the prefix.
441
442       function Build_Actual_Record_Constraint return List_Id;
443       --  Similar to previous one, for discriminated components constrained
444       --  by the discriminant of the enclosing object.
445
446       -----------------------------------
447       -- Build_Actual_Array_Constraint --
448       -----------------------------------
449
450       function Build_Actual_Array_Constraint return List_Id is
451          Constraints : constant List_Id := New_List;
452          Indx        : Node_Id;
453          Hi          : Node_Id;
454          Lo          : Node_Id;
455          Old_Hi      : Node_Id;
456          Old_Lo      : Node_Id;
457
458       begin
459          Indx := First_Index (Deaccessed_T);
460          while Present (Indx) loop
461             Old_Lo := Type_Low_Bound  (Etype (Indx));
462             Old_Hi := Type_High_Bound (Etype (Indx));
463
464             if Denotes_Discriminant (Old_Lo) then
465                Lo :=
466                  Make_Selected_Component (Loc,
467                    Prefix => New_Copy_Tree (P),
468                    Selector_Name => New_Occurrence_Of (Entity (Old_Lo), Loc));
469
470             else
471                Lo := New_Copy_Tree (Old_Lo);
472
473                --  The new bound will be reanalyzed in the enclosing
474                --  declaration. For literal bounds that come from a type
475                --  declaration, the type of the context must be imposed, so
476                --  insure that analysis will take place. For non-universal
477                --  types this is not strictly necessary.
478
479                Set_Analyzed (Lo, False);
480             end if;
481
482             if Denotes_Discriminant (Old_Hi) then
483                Hi :=
484                  Make_Selected_Component (Loc,
485                    Prefix => New_Copy_Tree (P),
486                    Selector_Name => New_Occurrence_Of (Entity (Old_Hi), Loc));
487
488             else
489                Hi := New_Copy_Tree (Old_Hi);
490                Set_Analyzed (Hi, False);
491             end if;
492
493             Append (Make_Range (Loc, Lo, Hi), Constraints);
494             Next_Index (Indx);
495          end loop;
496
497          return Constraints;
498       end Build_Actual_Array_Constraint;
499
500       ------------------------------------
501       -- Build_Actual_Record_Constraint --
502       ------------------------------------
503
504       function Build_Actual_Record_Constraint return List_Id is
505          Constraints : constant List_Id := New_List;
506          D           : Elmt_Id;
507          D_Val       : Node_Id;
508
509       begin
510          D := First_Elmt (Discriminant_Constraint (Deaccessed_T));
511          while Present (D) loop
512             if Denotes_Discriminant (Node (D)) then
513                D_Val :=  Make_Selected_Component (Loc,
514                  Prefix => New_Copy_Tree (P),
515                 Selector_Name => New_Occurrence_Of (Entity (Node (D)), Loc));
516
517             else
518                D_Val := New_Copy_Tree (Node (D));
519             end if;
520
521             Append (D_Val, Constraints);
522             Next_Elmt (D);
523          end loop;
524
525          return Constraints;
526       end Build_Actual_Record_Constraint;
527
528    --  Start of processing for Build_Actual_Subtype_Of_Component
529
530    begin
531       --  Why the test for Spec_Expression mode here???
532
533       if In_Spec_Expression then
534          return Empty;
535
536       --  More comments for the rest of this body would be good ???
537
538       elsif Nkind (N) = N_Explicit_Dereference then
539          if Is_Composite_Type (T)
540            and then not Is_Constrained (T)
541            and then not (Is_Class_Wide_Type (T)
542                           and then Is_Constrained (Root_Type (T)))
543            and then not Has_Unknown_Discriminants (T)
544          then
545             --  If the type of the dereference is already constrained, it
546             --  is an actual subtype.
547
548             if Is_Array_Type (Etype (N))
549               and then Is_Constrained (Etype (N))
550             then
551                return Empty;
552             else
553                Remove_Side_Effects (P);
554                return Build_Actual_Subtype (T, N);
555             end if;
556          else
557             return Empty;
558          end if;
559       end if;
560
561       if Ekind (T) = E_Access_Subtype then
562          Deaccessed_T := Designated_Type (T);
563       else
564          Deaccessed_T := T;
565       end if;
566
567       if Ekind (Deaccessed_T) = E_Array_Subtype then
568          Id := First_Index (Deaccessed_T);
569          while Present (Id) loop
570             Indx_Type := Underlying_Type (Etype (Id));
571
572             if Denotes_Discriminant (Type_Low_Bound  (Indx_Type))
573                  or else
574                Denotes_Discriminant (Type_High_Bound (Indx_Type))
575             then
576                Remove_Side_Effects (P);
577                return
578                  Build_Component_Subtype
579                    (Build_Actual_Array_Constraint, Loc, Base_Type (T));
580             end if;
581
582             Next_Index (Id);
583          end loop;
584
585       elsif Is_Composite_Type (Deaccessed_T)
586         and then Has_Discriminants (Deaccessed_T)
587         and then not Has_Unknown_Discriminants (Deaccessed_T)
588       then
589          D := First_Elmt (Discriminant_Constraint (Deaccessed_T));
590          while Present (D) loop
591             if Denotes_Discriminant (Node (D)) then
592                Remove_Side_Effects (P);
593                return
594                  Build_Component_Subtype (
595                    Build_Actual_Record_Constraint, Loc, Base_Type (T));
596             end if;
597
598             Next_Elmt (D);
599          end loop;
600       end if;
601
602       --  If none of the above, the actual and nominal subtypes are the same
603
604       return Empty;
605    end Build_Actual_Subtype_Of_Component;
606
607    -----------------------------
608    -- Build_Component_Subtype --
609    -----------------------------
610
611    function Build_Component_Subtype
612      (C   : List_Id;
613       Loc : Source_Ptr;
614       T   : Entity_Id) return Node_Id
615    is
616       Subt : Entity_Id;
617       Decl : Node_Id;
618
619    begin
620       --  Unchecked_Union components do not require component subtypes
621
622       if Is_Unchecked_Union (T) then
623          return Empty;
624       end if;
625
626       Subt :=
627         Make_Defining_Identifier (Loc,
628           Chars => New_Internal_Name ('S'));
629       Set_Is_Internal (Subt);
630
631       Decl :=
632         Make_Subtype_Declaration (Loc,
633           Defining_Identifier => Subt,
634           Subtype_Indication =>
635             Make_Subtype_Indication (Loc,
636               Subtype_Mark => New_Reference_To (Base_Type (T),  Loc),
637               Constraint  =>
638                 Make_Index_Or_Discriminant_Constraint (Loc,
639                   Constraints => C)));
640
641       Mark_Rewrite_Insertion (Decl);
642       return Decl;
643    end Build_Component_Subtype;
644
645    ---------------------------
646    -- Build_Default_Subtype --
647    ---------------------------
648
649    function Build_Default_Subtype
650      (T : Entity_Id;
651       N : Node_Id) return Entity_Id
652    is
653       Loc  : constant Source_Ptr := Sloc (N);
654       Disc : Entity_Id;
655
656    begin
657       if not Has_Discriminants (T) or else Is_Constrained (T) then
658          return T;
659       end if;
660
661       Disc := First_Discriminant (T);
662
663       if No (Discriminant_Default_Value (Disc)) then
664          return T;
665       end if;
666
667       declare
668          Act : constant Entity_Id :=
669                  Make_Defining_Identifier (Loc,
670                    Chars => New_Internal_Name ('S'));
671
672          Constraints : constant List_Id := New_List;
673          Decl        : Node_Id;
674
675       begin
676          while Present (Disc) loop
677             Append_To (Constraints,
678               New_Copy_Tree (Discriminant_Default_Value (Disc)));
679             Next_Discriminant (Disc);
680          end loop;
681
682          Decl :=
683            Make_Subtype_Declaration (Loc,
684              Defining_Identifier => Act,
685              Subtype_Indication =>
686                Make_Subtype_Indication (Loc,
687                  Subtype_Mark => New_Occurrence_Of (T, Loc),
688                  Constraint =>
689                    Make_Index_Or_Discriminant_Constraint (Loc,
690                      Constraints => Constraints)));
691
692          Insert_Action (N, Decl);
693          Analyze (Decl);
694          return Act;
695       end;
696    end Build_Default_Subtype;
697
698    --------------------------------------------
699    -- Build_Discriminal_Subtype_Of_Component --
700    --------------------------------------------
701
702    function Build_Discriminal_Subtype_Of_Component
703      (T : Entity_Id) return Node_Id
704    is
705       Loc : constant Source_Ptr := Sloc (T);
706       D   : Elmt_Id;
707       Id  : Node_Id;
708
709       function Build_Discriminal_Array_Constraint return List_Id;
710       --  If one or more of the bounds of the component depends on
711       --  discriminants, build  actual constraint using the discriminants
712       --  of the prefix.
713
714       function Build_Discriminal_Record_Constraint return List_Id;
715       --  Similar to previous one, for discriminated components constrained
716       --  by the discriminant of the enclosing object.
717
718       ----------------------------------------
719       -- Build_Discriminal_Array_Constraint --
720       ----------------------------------------
721
722       function Build_Discriminal_Array_Constraint return List_Id is
723          Constraints : constant List_Id := New_List;
724          Indx        : Node_Id;
725          Hi          : Node_Id;
726          Lo          : Node_Id;
727          Old_Hi      : Node_Id;
728          Old_Lo      : Node_Id;
729
730       begin
731          Indx := First_Index (T);
732          while Present (Indx) loop
733             Old_Lo := Type_Low_Bound  (Etype (Indx));
734             Old_Hi := Type_High_Bound (Etype (Indx));
735
736             if Denotes_Discriminant (Old_Lo) then
737                Lo := New_Occurrence_Of (Discriminal (Entity (Old_Lo)), Loc);
738
739             else
740                Lo := New_Copy_Tree (Old_Lo);
741             end if;
742
743             if Denotes_Discriminant (Old_Hi) then
744                Hi := New_Occurrence_Of (Discriminal (Entity (Old_Hi)), Loc);
745
746             else
747                Hi := New_Copy_Tree (Old_Hi);
748             end if;
749
750             Append (Make_Range (Loc, Lo, Hi), Constraints);
751             Next_Index (Indx);
752          end loop;
753
754          return Constraints;
755       end Build_Discriminal_Array_Constraint;
756
757       -----------------------------------------
758       -- Build_Discriminal_Record_Constraint --
759       -----------------------------------------
760
761       function Build_Discriminal_Record_Constraint return List_Id is
762          Constraints : constant List_Id := New_List;
763          D           : Elmt_Id;
764          D_Val       : Node_Id;
765
766       begin
767          D := First_Elmt (Discriminant_Constraint (T));
768          while Present (D) loop
769             if Denotes_Discriminant (Node (D)) then
770                D_Val :=
771                  New_Occurrence_Of (Discriminal (Entity (Node (D))), Loc);
772
773             else
774                D_Val := New_Copy_Tree (Node (D));
775             end if;
776
777             Append (D_Val, Constraints);
778             Next_Elmt (D);
779          end loop;
780
781          return Constraints;
782       end Build_Discriminal_Record_Constraint;
783
784    --  Start of processing for Build_Discriminal_Subtype_Of_Component
785
786    begin
787       if Ekind (T) = E_Array_Subtype then
788          Id := First_Index (T);
789          while Present (Id) loop
790             if Denotes_Discriminant (Type_Low_Bound  (Etype (Id))) or else
791                Denotes_Discriminant (Type_High_Bound (Etype (Id)))
792             then
793                return Build_Component_Subtype
794                  (Build_Discriminal_Array_Constraint, Loc, T);
795             end if;
796
797             Next_Index (Id);
798          end loop;
799
800       elsif Ekind (T) = E_Record_Subtype
801         and then Has_Discriminants (T)
802         and then not Has_Unknown_Discriminants (T)
803       then
804          D := First_Elmt (Discriminant_Constraint (T));
805          while Present (D) loop
806             if Denotes_Discriminant (Node (D)) then
807                return Build_Component_Subtype
808                  (Build_Discriminal_Record_Constraint, Loc, T);
809             end if;
810
811             Next_Elmt (D);
812          end loop;
813       end if;
814
815       --  If none of the above, the actual and nominal subtypes are the same
816
817       return Empty;
818    end Build_Discriminal_Subtype_Of_Component;
819
820    ------------------------------
821    -- Build_Elaboration_Entity --
822    ------------------------------
823
824    procedure Build_Elaboration_Entity (N : Node_Id; Spec_Id : Entity_Id) is
825       Loc      : constant Source_Ptr := Sloc (N);
826       Decl     : Node_Id;
827       Elab_Ent : Entity_Id;
828
829       procedure Set_Package_Name (Ent : Entity_Id);
830       --  Given an entity, sets the fully qualified name of the entity in
831       --  Name_Buffer, with components separated by double underscores. This
832       --  is a recursive routine that climbs the scope chain to Standard.
833
834       ----------------------
835       -- Set_Package_Name --
836       ----------------------
837
838       procedure Set_Package_Name (Ent : Entity_Id) is
839       begin
840          if Scope (Ent) /= Standard_Standard then
841             Set_Package_Name (Scope (Ent));
842
843             declare
844                Nam : constant String := Get_Name_String (Chars (Ent));
845             begin
846                Name_Buffer (Name_Len + 1) := '_';
847                Name_Buffer (Name_Len + 2) := '_';
848                Name_Buffer (Name_Len + 3 .. Name_Len + Nam'Length + 2) := Nam;
849                Name_Len := Name_Len + Nam'Length + 2;
850             end;
851
852          else
853             Get_Name_String (Chars (Ent));
854          end if;
855       end Set_Package_Name;
856
857    --  Start of processing for Build_Elaboration_Entity
858
859    begin
860       --  Ignore if already constructed
861
862       if Present (Elaboration_Entity (Spec_Id)) then
863          return;
864       end if;
865
866       --  Construct name of elaboration entity as xxx_E, where xxx is the unit
867       --  name with dots replaced by double underscore. We have to manually
868       --  construct this name, since it will be elaborated in the outer scope,
869       --  and thus will not have the unit name automatically prepended.
870
871       Set_Package_Name (Spec_Id);
872
873       --  Append _E
874
875       Name_Buffer (Name_Len + 1) := '_';
876       Name_Buffer (Name_Len + 2) := 'E';
877       Name_Len := Name_Len + 2;
878
879       --  Create elaboration flag
880
881       Elab_Ent :=
882         Make_Defining_Identifier (Loc, Chars => Name_Find);
883       Set_Elaboration_Entity (Spec_Id, Elab_Ent);
884
885       Decl :=
886          Make_Object_Declaration (Loc,
887            Defining_Identifier => Elab_Ent,
888            Object_Definition   =>
889              New_Occurrence_Of (Standard_Boolean, Loc),
890            Expression          =>
891              New_Occurrence_Of (Standard_False, Loc));
892
893       Push_Scope (Standard_Standard);
894       Add_Global_Declaration (Decl);
895       Pop_Scope;
896
897       --  Reset True_Constant indication, since we will indeed assign a value
898       --  to the variable in the binder main. We also kill the Current_Value
899       --  and Last_Assignment fields for the same reason.
900
901       Set_Is_True_Constant (Elab_Ent, False);
902       Set_Current_Value    (Elab_Ent, Empty);
903       Set_Last_Assignment  (Elab_Ent, Empty);
904
905       --  We do not want any further qualification of the name (if we did
906       --  not do this, we would pick up the name of the generic package
907       --  in the case of a library level generic instantiation).
908
909       Set_Has_Qualified_Name       (Elab_Ent);
910       Set_Has_Fully_Qualified_Name (Elab_Ent);
911    end Build_Elaboration_Entity;
912
913    -----------------------------------
914    -- Cannot_Raise_Constraint_Error --
915    -----------------------------------
916
917    function Cannot_Raise_Constraint_Error (Expr : Node_Id) return Boolean is
918    begin
919       if Compile_Time_Known_Value (Expr) then
920          return True;
921
922       elsif Do_Range_Check (Expr) then
923          return False;
924
925       elsif Raises_Constraint_Error (Expr) then
926          return False;
927
928       else
929          case Nkind (Expr) is
930             when N_Identifier =>
931                return True;
932
933             when N_Expanded_Name =>
934                return True;
935
936             when N_Selected_Component =>
937                return not Do_Discriminant_Check (Expr);
938
939             when N_Attribute_Reference =>
940                if Do_Overflow_Check (Expr) then
941                   return False;
942
943                elsif No (Expressions (Expr)) then
944                   return True;
945
946                else
947                   declare
948                      N : Node_Id;
949
950                   begin
951                      N := First (Expressions (Expr));
952                      while Present (N) loop
953                         if Cannot_Raise_Constraint_Error (N) then
954                            Next (N);
955                         else
956                            return False;
957                         end if;
958                      end loop;
959
960                      return True;
961                   end;
962                end if;
963
964             when N_Type_Conversion =>
965                if Do_Overflow_Check (Expr)
966                  or else Do_Length_Check (Expr)
967                  or else Do_Tag_Check (Expr)
968                then
969                   return False;
970                else
971                   return
972                     Cannot_Raise_Constraint_Error (Expression (Expr));
973                end if;
974
975             when N_Unchecked_Type_Conversion =>
976                return Cannot_Raise_Constraint_Error (Expression (Expr));
977
978             when N_Unary_Op =>
979                if Do_Overflow_Check (Expr) then
980                   return False;
981                else
982                   return
983                     Cannot_Raise_Constraint_Error (Right_Opnd (Expr));
984                end if;
985
986             when N_Op_Divide |
987                  N_Op_Mod    |
988                  N_Op_Rem
989             =>
990                if Do_Division_Check (Expr)
991                  or else Do_Overflow_Check (Expr)
992                then
993                   return False;
994                else
995                   return
996                     Cannot_Raise_Constraint_Error (Left_Opnd (Expr))
997                       and then
998                     Cannot_Raise_Constraint_Error (Right_Opnd (Expr));
999                end if;
1000
1001             when N_Op_Add                    |
1002                  N_Op_And                    |
1003                  N_Op_Concat                 |
1004                  N_Op_Eq                     |
1005                  N_Op_Expon                  |
1006                  N_Op_Ge                     |
1007                  N_Op_Gt                     |
1008                  N_Op_Le                     |
1009                  N_Op_Lt                     |
1010                  N_Op_Multiply               |
1011                  N_Op_Ne                     |
1012                  N_Op_Or                     |
1013                  N_Op_Rotate_Left            |
1014                  N_Op_Rotate_Right           |
1015                  N_Op_Shift_Left             |
1016                  N_Op_Shift_Right            |
1017                  N_Op_Shift_Right_Arithmetic |
1018                  N_Op_Subtract               |
1019                  N_Op_Xor
1020             =>
1021                if Do_Overflow_Check (Expr) then
1022                   return False;
1023                else
1024                   return
1025                     Cannot_Raise_Constraint_Error (Left_Opnd (Expr))
1026                       and then
1027                     Cannot_Raise_Constraint_Error (Right_Opnd (Expr));
1028                end if;
1029
1030             when others =>
1031                return False;
1032          end case;
1033       end if;
1034    end Cannot_Raise_Constraint_Error;
1035
1036    -----------------------------------------
1037    -- Check_Dynamically_Tagged_Expression --
1038    -----------------------------------------
1039
1040    procedure Check_Dynamically_Tagged_Expression
1041      (Expr        : Node_Id;
1042       Typ         : Entity_Id;
1043       Related_Nod : Node_Id)
1044    is
1045    begin
1046       pragma Assert (Is_Tagged_Type (Typ));
1047
1048       --  In order to avoid spurious errors when analyzing the expanded code,
1049       --  this check is done only for nodes that come from source and for
1050       --  actuals of generic instantiations.
1051
1052       if (Comes_From_Source (Related_Nod)
1053            or else In_Generic_Actual (Expr))
1054         and then (Is_Class_Wide_Type (Etype (Expr))
1055                    or else Is_Dynamically_Tagged (Expr))
1056         and then Is_Tagged_Type (Typ)
1057         and then not Is_Class_Wide_Type (Typ)
1058       then
1059          Error_Msg_N ("dynamically tagged expression not allowed!", Expr);
1060       end if;
1061    end Check_Dynamically_Tagged_Expression;
1062
1063    --------------------------
1064    -- Check_Fully_Declared --
1065    --------------------------
1066
1067    procedure Check_Fully_Declared (T : Entity_Id; N : Node_Id) is
1068    begin
1069       if Ekind (T) = E_Incomplete_Type then
1070
1071          --  Ada 2005 (AI-50217): If the type is available through a limited
1072          --  with_clause, verify that its full view has been analyzed.
1073
1074          if From_With_Type (T)
1075            and then Present (Non_Limited_View (T))
1076            and then Ekind (Non_Limited_View (T)) /= E_Incomplete_Type
1077          then
1078             --  The non-limited view is fully declared
1079             null;
1080
1081          else
1082             Error_Msg_NE
1083               ("premature usage of incomplete}", N, First_Subtype (T));
1084          end if;
1085
1086       --  Need comments for these tests ???
1087
1088       elsif Has_Private_Component (T)
1089         and then not Is_Generic_Type (Root_Type (T))
1090         and then not In_Spec_Expression
1091       then
1092          --  Special case: if T is the anonymous type created for a single
1093          --  task or protected object, use the name of the source object.
1094
1095          if Is_Concurrent_Type (T)
1096            and then not Comes_From_Source (T)
1097            and then Nkind (N) = N_Object_Declaration
1098          then
1099             Error_Msg_NE ("type of& has incomplete component", N,
1100               Defining_Identifier (N));
1101
1102          else
1103             Error_Msg_NE
1104               ("premature usage of incomplete}", N, First_Subtype (T));
1105          end if;
1106       end if;
1107    end Check_Fully_Declared;
1108
1109    -------------------------
1110    -- Check_Nested_Access --
1111    -------------------------
1112
1113    procedure Check_Nested_Access (Ent : Entity_Id) is
1114       Scop         : constant Entity_Id := Current_Scope;
1115       Current_Subp : Entity_Id;
1116       Enclosing    : Entity_Id;
1117
1118    begin
1119       --  Currently only enabled for VM back-ends for efficiency, should we
1120       --  enable it more systematically ???
1121
1122       --  Check for Is_Imported needs commenting below ???
1123
1124       if VM_Target /= No_VM
1125         and then (Ekind (Ent) = E_Variable
1126                     or else
1127                   Ekind (Ent) = E_Constant
1128                     or else
1129                   Ekind (Ent) = E_Loop_Parameter)
1130         and then Scope (Ent) /= Empty
1131         and then not Is_Library_Level_Entity (Ent)
1132         and then not Is_Imported (Ent)
1133       then
1134          if Is_Subprogram (Scop)
1135            or else Is_Generic_Subprogram (Scop)
1136            or else Is_Entry (Scop)
1137          then
1138             Current_Subp := Scop;
1139          else
1140             Current_Subp := Current_Subprogram;
1141          end if;
1142
1143          Enclosing := Enclosing_Subprogram (Ent);
1144
1145          if Enclosing /= Empty
1146            and then Enclosing /= Current_Subp
1147          then
1148             Set_Has_Up_Level_Access (Ent, True);
1149          end if;
1150       end if;
1151    end Check_Nested_Access;
1152
1153    ------------------------------------------
1154    -- Check_Potentially_Blocking_Operation --
1155    ------------------------------------------
1156
1157    procedure Check_Potentially_Blocking_Operation (N : Node_Id) is
1158       S : Entity_Id;
1159    begin
1160       --  N is one of the potentially blocking operations listed in 9.5.1(8).
1161       --  When pragma Detect_Blocking is active, the run time will raise
1162       --  Program_Error. Here we only issue a warning, since we generally
1163       --  support the use of potentially blocking operations in the absence
1164       --  of the pragma.
1165
1166       --  Indirect blocking through a subprogram call cannot be diagnosed
1167       --  statically without interprocedural analysis, so we do not attempt
1168       --  to do it here.
1169
1170       S := Scope (Current_Scope);
1171       while Present (S) and then S /= Standard_Standard loop
1172          if Is_Protected_Type (S) then
1173             Error_Msg_N
1174               ("potentially blocking operation in protected operation?", N);
1175
1176             return;
1177          end if;
1178
1179          S := Scope (S);
1180       end loop;
1181    end Check_Potentially_Blocking_Operation;
1182
1183    ------------------------------
1184    -- Check_Unprotected_Access --
1185    ------------------------------
1186
1187    procedure Check_Unprotected_Access
1188      (Context : Node_Id;
1189       Expr    : Node_Id)
1190    is
1191       Cont_Encl_Typ : Entity_Id;
1192       Pref_Encl_Typ : Entity_Id;
1193
1194       function Enclosing_Protected_Type (Obj : Node_Id) return Entity_Id;
1195       --  Check whether Obj is a private component of a protected object.
1196       --  Return the protected type where the component resides, Empty
1197       --  otherwise.
1198
1199       function Is_Public_Operation return Boolean;
1200       --  Verify that the enclosing operation is callable from outside the
1201       --  protected object, to minimize false positives.
1202
1203       ------------------------------
1204       -- Enclosing_Protected_Type --
1205       ------------------------------
1206
1207       function Enclosing_Protected_Type (Obj : Node_Id) return Entity_Id is
1208       begin
1209          if Is_Entity_Name (Obj) then
1210             declare
1211                Ent : Entity_Id := Entity (Obj);
1212
1213             begin
1214                --  The object can be a renaming of a private component, use
1215                --  the original record component.
1216
1217                if Is_Prival (Ent) then
1218                   Ent := Prival_Link (Ent);
1219                end if;
1220
1221                if Is_Protected_Type (Scope (Ent)) then
1222                   return Scope (Ent);
1223                end if;
1224             end;
1225          end if;
1226
1227          --  For indexed and selected components, recursively check the prefix
1228
1229          if Nkind_In (Obj, N_Indexed_Component, N_Selected_Component) then
1230             return Enclosing_Protected_Type (Prefix (Obj));
1231
1232          --  The object does not denote a protected component
1233
1234          else
1235             return Empty;
1236          end if;
1237       end Enclosing_Protected_Type;
1238
1239       -------------------------
1240       -- Is_Public_Operation --
1241       -------------------------
1242
1243       function Is_Public_Operation return Boolean is
1244          S : Entity_Id;
1245          E : Entity_Id;
1246
1247       begin
1248          S := Current_Scope;
1249          while Present (S)
1250            and then S /= Pref_Encl_Typ
1251          loop
1252             if Scope (S) = Pref_Encl_Typ then
1253                E := First_Entity (Pref_Encl_Typ);
1254                while Present (E)
1255                  and then E /= First_Private_Entity (Pref_Encl_Typ)
1256                loop
1257                   if E = S then
1258                      return True;
1259                   end if;
1260                   Next_Entity (E);
1261                end loop;
1262             end if;
1263
1264             S := Scope (S);
1265          end loop;
1266
1267          return False;
1268       end Is_Public_Operation;
1269
1270    --  Start of processing for Check_Unprotected_Access
1271
1272    begin
1273       if Nkind (Expr) = N_Attribute_Reference
1274         and then Attribute_Name (Expr) = Name_Unchecked_Access
1275       then
1276          Cont_Encl_Typ := Enclosing_Protected_Type (Context);
1277          Pref_Encl_Typ := Enclosing_Protected_Type (Prefix (Expr));
1278
1279          --  Check whether we are trying to export a protected component to a
1280          --  context with an equal or lower access level.
1281
1282          if Present (Pref_Encl_Typ)
1283            and then No (Cont_Encl_Typ)
1284            and then Is_Public_Operation
1285            and then Scope_Depth (Pref_Encl_Typ) >=
1286                       Object_Access_Level (Context)
1287          then
1288             Error_Msg_N
1289               ("?possible unprotected access to protected data", Expr);
1290          end if;
1291       end if;
1292    end Check_Unprotected_Access;
1293
1294    ---------------
1295    -- Check_VMS --
1296    ---------------
1297
1298    procedure Check_VMS (Construct : Node_Id) is
1299    begin
1300       if not OpenVMS_On_Target then
1301          Error_Msg_N
1302            ("this construct is allowed only in Open'V'M'S", Construct);
1303       end if;
1304    end Check_VMS;
1305
1306    ------------------------
1307    -- Collect_Interfaces --
1308    ------------------------
1309
1310    procedure Collect_Interfaces
1311      (T               : Entity_Id;
1312       Ifaces_List     : out Elist_Id;
1313       Exclude_Parents : Boolean := False;
1314       Use_Full_View   : Boolean := True)
1315    is
1316       procedure Collect (Typ : Entity_Id);
1317       --  Subsidiary subprogram used to traverse the whole list
1318       --  of directly and indirectly implemented interfaces
1319
1320       -------------
1321       -- Collect --
1322       -------------
1323
1324       procedure Collect (Typ : Entity_Id) is
1325          Ancestor   : Entity_Id;
1326          Full_T     : Entity_Id;
1327          Id         : Node_Id;
1328          Iface      : Entity_Id;
1329
1330       begin
1331          Full_T := Typ;
1332
1333          --  Handle private types
1334
1335          if Use_Full_View
1336            and then Is_Private_Type (Typ)
1337            and then Present (Full_View (Typ))
1338          then
1339             Full_T := Full_View (Typ);
1340          end if;
1341
1342          --  Include the ancestor if we are generating the whole list of
1343          --  abstract interfaces.
1344
1345          if Etype (Full_T) /= Typ
1346
1347             --  Protect the frontend against wrong sources. For example:
1348
1349             --    package P is
1350             --      type A is tagged null record;
1351             --      type B is new A with private;
1352             --      type C is new A with private;
1353             --    private
1354             --      type B is new C with null record;
1355             --      type C is new B with null record;
1356             --    end P;
1357
1358            and then Etype (Full_T) /= T
1359          then
1360             Ancestor := Etype (Full_T);
1361             Collect (Ancestor);
1362
1363             if Is_Interface (Ancestor)
1364               and then not Exclude_Parents
1365             then
1366                Append_Unique_Elmt (Ancestor, Ifaces_List);
1367             end if;
1368          end if;
1369
1370          --  Traverse the graph of ancestor interfaces
1371
1372          if Is_Non_Empty_List (Abstract_Interface_List (Full_T)) then
1373             Id := First (Abstract_Interface_List (Full_T));
1374             while Present (Id) loop
1375                Iface := Etype (Id);
1376
1377                --  Protect against wrong uses. For example:
1378                --    type I is interface;
1379                --    type O is tagged null record;
1380                --    type Wrong is new I and O with null record; -- ERROR
1381
1382                if Is_Interface (Iface) then
1383                   if Exclude_Parents
1384                     and then Etype (T) /= T
1385                     and then Interface_Present_In_Ancestor (Etype (T), Iface)
1386                   then
1387                      null;
1388                   else
1389                      Collect (Iface);
1390                      Append_Unique_Elmt (Iface, Ifaces_List);
1391                   end if;
1392                end if;
1393
1394                Next (Id);
1395             end loop;
1396          end if;
1397       end Collect;
1398
1399    --  Start of processing for Collect_Interfaces
1400
1401    begin
1402       pragma Assert (Is_Tagged_Type (T) or else Is_Concurrent_Type (T));
1403       Ifaces_List := New_Elmt_List;
1404       Collect (T);
1405    end Collect_Interfaces;
1406
1407    ----------------------------------
1408    -- Collect_Interface_Components --
1409    ----------------------------------
1410
1411    procedure Collect_Interface_Components
1412      (Tagged_Type     : Entity_Id;
1413       Components_List : out Elist_Id)
1414    is
1415       procedure Collect (Typ : Entity_Id);
1416       --  Subsidiary subprogram used to climb to the parents
1417
1418       -------------
1419       -- Collect --
1420       -------------
1421
1422       procedure Collect (Typ : Entity_Id) is
1423          Tag_Comp   : Entity_Id;
1424          Parent_Typ : Entity_Id;
1425
1426       begin
1427          --  Handle private types
1428
1429          if Present (Full_View (Etype (Typ))) then
1430             Parent_Typ := Full_View (Etype (Typ));
1431          else
1432             Parent_Typ := Etype (Typ);
1433          end if;
1434
1435          if Parent_Typ /= Typ
1436
1437             --  Protect the frontend against wrong sources. For example:
1438
1439             --    package P is
1440             --      type A is tagged null record;
1441             --      type B is new A with private;
1442             --      type C is new A with private;
1443             --    private
1444             --      type B is new C with null record;
1445             --      type C is new B with null record;
1446             --    end P;
1447
1448            and then Parent_Typ /= Tagged_Type
1449          then
1450             Collect (Parent_Typ);
1451          end if;
1452
1453          --  Collect the components containing tags of secondary dispatch
1454          --  tables.
1455
1456          Tag_Comp := Next_Tag_Component (First_Tag_Component (Typ));
1457          while Present (Tag_Comp) loop
1458             pragma Assert (Present (Related_Type (Tag_Comp)));
1459             Append_Elmt (Tag_Comp, Components_List);
1460
1461             Tag_Comp := Next_Tag_Component (Tag_Comp);
1462          end loop;
1463       end Collect;
1464
1465    --  Start of processing for Collect_Interface_Components
1466
1467    begin
1468       pragma Assert (Ekind (Tagged_Type) = E_Record_Type
1469         and then Is_Tagged_Type (Tagged_Type));
1470
1471       Components_List := New_Elmt_List;
1472       Collect (Tagged_Type);
1473    end Collect_Interface_Components;
1474
1475    -----------------------------
1476    -- Collect_Interfaces_Info --
1477    -----------------------------
1478
1479    procedure Collect_Interfaces_Info
1480      (T               : Entity_Id;
1481       Ifaces_List     : out Elist_Id;
1482       Components_List : out Elist_Id;
1483       Tags_List       : out Elist_Id)
1484    is
1485       Comps_List : Elist_Id;
1486       Comp_Elmt  : Elmt_Id;
1487       Comp_Iface : Entity_Id;
1488       Iface_Elmt : Elmt_Id;
1489       Iface      : Entity_Id;
1490
1491       function Search_Tag (Iface : Entity_Id) return Entity_Id;
1492       --  Search for the secondary tag associated with the interface type
1493       --  Iface that is implemented by T.
1494
1495       ----------------
1496       -- Search_Tag --
1497       ----------------
1498
1499       function Search_Tag (Iface : Entity_Id) return Entity_Id is
1500          ADT : Elmt_Id;
1501
1502       begin
1503          ADT := Next_Elmt (Next_Elmt (First_Elmt (Access_Disp_Table (T))));
1504          while Present (ADT)
1505             and then Ekind (Node (ADT)) = E_Constant
1506             and then Related_Type (Node (ADT)) /= Iface
1507          loop
1508             --  Skip the secondary dispatch tables of Iface
1509
1510             Next_Elmt (ADT);
1511             Next_Elmt (ADT);
1512             Next_Elmt (ADT);
1513             Next_Elmt (ADT);
1514          end loop;
1515
1516          pragma Assert (Ekind (Node (ADT)) = E_Constant);
1517          return Node (ADT);
1518       end Search_Tag;
1519
1520    --  Start of processing for Collect_Interfaces_Info
1521
1522    begin
1523       Collect_Interfaces (T, Ifaces_List);
1524       Collect_Interface_Components (T, Comps_List);
1525
1526       --  Search for the record component and tag associated with each
1527       --  interface type of T.
1528
1529       Components_List := New_Elmt_List;
1530       Tags_List       := New_Elmt_List;
1531
1532       Iface_Elmt := First_Elmt (Ifaces_List);
1533       while Present (Iface_Elmt) loop
1534          Iface := Node (Iface_Elmt);
1535
1536          --  Associate the primary tag component and the primary dispatch table
1537          --  with all the interfaces that are parents of T
1538
1539          if Is_Ancestor (Iface, T) then
1540             Append_Elmt (First_Tag_Component (T), Components_List);
1541             Append_Elmt (Node (First_Elmt (Access_Disp_Table (T))), Tags_List);
1542
1543          --  Otherwise search for the tag component and secondary dispatch
1544          --  table of Iface
1545
1546          else
1547             Comp_Elmt := First_Elmt (Comps_List);
1548             while Present (Comp_Elmt) loop
1549                Comp_Iface := Related_Type (Node (Comp_Elmt));
1550
1551                if Comp_Iface = Iface
1552                  or else Is_Ancestor (Iface, Comp_Iface)
1553                then
1554                   Append_Elmt (Node (Comp_Elmt), Components_List);
1555                   Append_Elmt (Search_Tag (Comp_Iface), Tags_List);
1556                   exit;
1557                end if;
1558
1559                Next_Elmt (Comp_Elmt);
1560             end loop;
1561             pragma Assert (Present (Comp_Elmt));
1562          end if;
1563
1564          Next_Elmt (Iface_Elmt);
1565       end loop;
1566    end Collect_Interfaces_Info;
1567
1568    ----------------------------------
1569    -- Collect_Primitive_Operations --
1570    ----------------------------------
1571
1572    function Collect_Primitive_Operations (T : Entity_Id) return Elist_Id is
1573       B_Type         : constant Entity_Id := Base_Type (T);
1574       B_Decl         : constant Node_Id   := Original_Node (Parent (B_Type));
1575       B_Scope        : Entity_Id          := Scope (B_Type);
1576       Op_List        : Elist_Id;
1577       Formal         : Entity_Id;
1578       Is_Prim        : Boolean;
1579       Formal_Derived : Boolean := False;
1580       Id             : Entity_Id;
1581
1582    begin
1583       --  For tagged types, the primitive operations are collected as they
1584       --  are declared, and held in an explicit list which is simply returned.
1585
1586       if Is_Tagged_Type (B_Type) then
1587          return Primitive_Operations (B_Type);
1588
1589       --  An untagged generic type that is a derived type inherits the
1590       --  primitive operations of its parent type. Other formal types only
1591       --  have predefined operators, which are not explicitly represented.
1592
1593       elsif Is_Generic_Type (B_Type) then
1594          if Nkind (B_Decl) = N_Formal_Type_Declaration
1595            and then Nkind (Formal_Type_Definition (B_Decl))
1596              = N_Formal_Derived_Type_Definition
1597          then
1598             Formal_Derived := True;
1599          else
1600             return New_Elmt_List;
1601          end if;
1602       end if;
1603
1604       Op_List := New_Elmt_List;
1605
1606       if B_Scope = Standard_Standard then
1607          if B_Type = Standard_String then
1608             Append_Elmt (Standard_Op_Concat, Op_List);
1609
1610          elsif B_Type = Standard_Wide_String then
1611             Append_Elmt (Standard_Op_Concatw, Op_List);
1612
1613          else
1614             null;
1615          end if;
1616
1617       elsif (Is_Package_Or_Generic_Package (B_Scope)
1618               and then
1619                 Nkind (Parent (Declaration_Node (First_Subtype (T)))) /=
1620                                                             N_Package_Body)
1621         or else Is_Derived_Type (B_Type)
1622       then
1623          --  The primitive operations appear after the base type, except
1624          --  if the derivation happens within the private part of B_Scope
1625          --  and the type is a private type, in which case both the type
1626          --  and some primitive operations may appear before the base
1627          --  type, and the list of candidates starts after the type.
1628
1629          if In_Open_Scopes (B_Scope)
1630            and then Scope (T) = B_Scope
1631            and then In_Private_Part (B_Scope)
1632          then
1633             Id := Next_Entity (T);
1634          else
1635             Id := Next_Entity (B_Type);
1636          end if;
1637
1638          while Present (Id) loop
1639
1640             --  Note that generic formal subprograms are not
1641             --  considered to be primitive operations and thus
1642             --  are never inherited.
1643
1644             if Is_Overloadable (Id)
1645               and then Nkind (Parent (Parent (Id)))
1646                          not in N_Formal_Subprogram_Declaration
1647             then
1648                Is_Prim := False;
1649
1650                if Base_Type (Etype (Id)) = B_Type then
1651                   Is_Prim := True;
1652                else
1653                   Formal := First_Formal (Id);
1654                   while Present (Formal) loop
1655                      if Base_Type (Etype (Formal)) = B_Type then
1656                         Is_Prim := True;
1657                         exit;
1658
1659                      elsif Ekind (Etype (Formal)) = E_Anonymous_Access_Type
1660                        and then Base_Type
1661                          (Designated_Type (Etype (Formal))) = B_Type
1662                      then
1663                         Is_Prim := True;
1664                         exit;
1665                      end if;
1666
1667                      Next_Formal (Formal);
1668                   end loop;
1669                end if;
1670
1671                --  For a formal derived type, the only primitives are the
1672                --  ones inherited from the parent type. Operations appearing
1673                --  in the package declaration are not primitive for it.
1674
1675                if Is_Prim
1676                  and then (not Formal_Derived
1677                             or else Present (Alias (Id)))
1678                then
1679                   Append_Elmt (Id, Op_List);
1680                end if;
1681             end if;
1682
1683             Next_Entity (Id);
1684
1685             --  For a type declared in System, some of its operations
1686             --  may appear in  the target-specific extension to System.
1687
1688             if No (Id)
1689               and then Chars (B_Scope) = Name_System
1690               and then Scope (B_Scope) = Standard_Standard
1691               and then Present_System_Aux
1692             then
1693                B_Scope := System_Aux_Id;
1694                Id := First_Entity (System_Aux_Id);
1695             end if;
1696          end loop;
1697       end if;
1698
1699       return Op_List;
1700    end Collect_Primitive_Operations;
1701
1702    -----------------------------------
1703    -- Compile_Time_Constraint_Error --
1704    -----------------------------------
1705
1706    function Compile_Time_Constraint_Error
1707      (N    : Node_Id;
1708       Msg  : String;
1709       Ent  : Entity_Id  := Empty;
1710       Loc  : Source_Ptr := No_Location;
1711       Warn : Boolean    := False) return Node_Id
1712    is
1713       Msgc : String (1 .. Msg'Length + 2);
1714       --  Copy of message, with room for possible ? and ! at end
1715
1716       Msgl : Natural;
1717       Wmsg : Boolean;
1718       P    : Node_Id;
1719       OldP : Node_Id;
1720       Msgs : Boolean;
1721       Eloc : Source_Ptr;
1722
1723    begin
1724       --  A static constraint error in an instance body is not a fatal error.
1725       --  we choose to inhibit the message altogether, because there is no
1726       --  obvious node (for now) on which to post it. On the other hand the
1727       --  offending node must be replaced with a constraint_error in any case.
1728
1729       --  No messages are generated if we already posted an error on this node
1730
1731       if not Error_Posted (N) then
1732          if Loc /= No_Location then
1733             Eloc := Loc;
1734          else
1735             Eloc := Sloc (N);
1736          end if;
1737
1738          Msgc (1 .. Msg'Length) := Msg;
1739          Msgl := Msg'Length;
1740
1741          --  Message is a warning, even in Ada 95 case
1742
1743          if Msg (Msg'Last) = '?' then
1744             Wmsg := True;
1745
1746          --  In Ada 83, all messages are warnings. In the private part and
1747          --  the body of an instance, constraint_checks are only warnings.
1748          --  We also make this a warning if the Warn parameter is set.
1749
1750          elsif Warn
1751            or else (Ada_Version = Ada_83 and then Comes_From_Source (N))
1752          then
1753             Msgl := Msgl + 1;
1754             Msgc (Msgl) := '?';
1755             Wmsg := True;
1756
1757          elsif In_Instance_Not_Visible then
1758             Msgl := Msgl + 1;
1759             Msgc (Msgl) := '?';
1760             Wmsg := True;
1761
1762          --  Otherwise we have a real error message (Ada 95 static case)
1763          --  and we make this an unconditional message. Note that in the
1764          --  warning case we do not make the message unconditional, it seems
1765          --  quite reasonable to delete messages like this (about exceptions
1766          --  that will be raised) in dead code.
1767
1768          else
1769             Wmsg := False;
1770             Msgl := Msgl + 1;
1771             Msgc (Msgl) := '!';
1772          end if;
1773
1774          --  Should we generate a warning? The answer is not quite yes. The
1775          --  very annoying exception occurs in the case of a short circuit
1776          --  operator where the left operand is static and decisive. Climb
1777          --  parents to see if that is the case we have here. Conditional
1778          --  expressions with decisive conditions are a similar situation.
1779
1780          Msgs := True;
1781          P := N;
1782          loop
1783             OldP := P;
1784             P := Parent (P);
1785
1786             --  And then with False as left operand
1787
1788             if Nkind (P) = N_And_Then
1789               and then Compile_Time_Known_Value (Left_Opnd (P))
1790               and then Is_False (Expr_Value (Left_Opnd (P)))
1791             then
1792                Msgs := False;
1793                exit;
1794
1795             --  OR ELSE with True as left operand
1796
1797             elsif Nkind (P) = N_Or_Else
1798               and then Compile_Time_Known_Value (Left_Opnd (P))
1799               and then Is_True (Expr_Value (Left_Opnd (P)))
1800             then
1801                Msgs := False;
1802                exit;
1803
1804             --  Conditional expression
1805
1806             elsif Nkind (P) = N_Conditional_Expression then
1807                declare
1808                   Cond : constant Node_Id := First (Expressions (P));
1809                   Texp : constant Node_Id := Next (Cond);
1810                   Fexp : constant Node_Id := Next (Texp);
1811
1812                begin
1813                   if Compile_Time_Known_Value (Cond) then
1814
1815                      --  Condition is True and we are in the right operand
1816
1817                      if Is_True (Expr_Value (Cond))
1818                        and then OldP = Fexp
1819                      then
1820                         Msgs := False;
1821                         exit;
1822
1823                      --  Condition is False and we are in the left operand
1824
1825                      elsif Is_False (Expr_Value (Cond))
1826                        and then OldP = Texp
1827                      then
1828                         Msgs := False;
1829                         exit;
1830                      end if;
1831                   end if;
1832                end;
1833
1834             --  Special case for component association in aggregates, where
1835             --  we want to keep climbing up to the parent aggregate.
1836
1837             elsif Nkind (P) = N_Component_Association
1838               and then Nkind (Parent (P)) = N_Aggregate
1839             then
1840                null;
1841
1842             --  Keep going if within subexpression
1843
1844             else
1845                exit when Nkind (P) not in N_Subexpr;
1846             end if;
1847          end loop;
1848
1849          if Msgs then
1850             if Present (Ent) then
1851                Error_Msg_NEL (Msgc (1 .. Msgl), N, Ent, Eloc);
1852             else
1853                Error_Msg_NEL (Msgc (1 .. Msgl), N, Etype (N), Eloc);
1854             end if;
1855
1856             if Wmsg then
1857                if Inside_Init_Proc then
1858                   Error_Msg_NEL
1859                     ("\?& will be raised for objects of this type",
1860                      N, Standard_Constraint_Error, Eloc);
1861                else
1862                   Error_Msg_NEL
1863                     ("\?& will be raised at run time",
1864                      N, Standard_Constraint_Error, Eloc);
1865                end if;
1866
1867             else
1868                Error_Msg
1869                  ("\static expression fails Constraint_Check", Eloc);
1870                Set_Error_Posted (N);
1871             end if;
1872          end if;
1873       end if;
1874
1875       return N;
1876    end Compile_Time_Constraint_Error;
1877
1878    -----------------------
1879    -- Conditional_Delay --
1880    -----------------------
1881
1882    procedure Conditional_Delay (New_Ent, Old_Ent : Entity_Id) is
1883    begin
1884       if Has_Delayed_Freeze (Old_Ent) and then not Is_Frozen (Old_Ent) then
1885          Set_Has_Delayed_Freeze (New_Ent);
1886       end if;
1887    end Conditional_Delay;
1888
1889    -------------------------
1890    -- Copy_Parameter_List --
1891    -------------------------
1892
1893    function Copy_Parameter_List (Subp_Id : Entity_Id) return List_Id is
1894       Loc    : constant Source_Ptr := Sloc (Subp_Id);
1895       Plist  : List_Id;
1896       Formal : Entity_Id;
1897
1898    begin
1899       if No (First_Formal (Subp_Id)) then
1900          return No_List;
1901       else
1902          Plist := New_List;
1903          Formal := First_Formal (Subp_Id);
1904          while Present (Formal) loop
1905             Append
1906               (Make_Parameter_Specification (Loc,
1907                 Defining_Identifier =>
1908                   Make_Defining_Identifier (Sloc (Formal),
1909                     Chars => Chars (Formal)),
1910                 In_Present  => In_Present (Parent (Formal)),
1911                 Out_Present => Out_Present (Parent (Formal)),
1912              Parameter_Type =>
1913                   New_Reference_To (Etype (Formal), Loc),
1914                 Expression =>
1915                   New_Copy_Tree (Expression (Parent (Formal)))),
1916               Plist);
1917
1918             Next_Formal (Formal);
1919          end loop;
1920       end if;
1921
1922       return Plist;
1923    end Copy_Parameter_List;
1924
1925    --------------------
1926    -- Current_Entity --
1927    --------------------
1928
1929    --  The currently visible definition for a given identifier is the
1930    --  one most chained at the start of the visibility chain, i.e. the
1931    --  one that is referenced by the Node_Id value of the name of the
1932    --  given identifier.
1933
1934    function Current_Entity (N : Node_Id) return Entity_Id is
1935    begin
1936       return Get_Name_Entity_Id (Chars (N));
1937    end Current_Entity;
1938
1939    -----------------------------
1940    -- Current_Entity_In_Scope --
1941    -----------------------------
1942
1943    function Current_Entity_In_Scope (N : Node_Id) return Entity_Id is
1944       E  : Entity_Id;
1945       CS : constant Entity_Id := Current_Scope;
1946
1947       Transient_Case : constant Boolean := Scope_Is_Transient;
1948
1949    begin
1950       E := Get_Name_Entity_Id (Chars (N));
1951       while Present (E)
1952         and then Scope (E) /= CS
1953         and then (not Transient_Case or else Scope (E) /= Scope (CS))
1954       loop
1955          E := Homonym (E);
1956       end loop;
1957
1958       return E;
1959    end Current_Entity_In_Scope;
1960
1961    -------------------
1962    -- Current_Scope --
1963    -------------------
1964
1965    function Current_Scope return Entity_Id is
1966    begin
1967       if Scope_Stack.Last = -1 then
1968          return Standard_Standard;
1969       else
1970          declare
1971             C : constant Entity_Id :=
1972                   Scope_Stack.Table (Scope_Stack.Last).Entity;
1973          begin
1974             if Present (C) then
1975                return C;
1976             else
1977                return Standard_Standard;
1978             end if;
1979          end;
1980       end if;
1981    end Current_Scope;
1982
1983    ------------------------
1984    -- Current_Subprogram --
1985    ------------------------
1986
1987    function Current_Subprogram return Entity_Id is
1988       Scop : constant Entity_Id := Current_Scope;
1989    begin
1990       if Is_Subprogram (Scop) or else Is_Generic_Subprogram (Scop) then
1991          return Scop;
1992       else
1993          return Enclosing_Subprogram (Scop);
1994       end if;
1995    end Current_Subprogram;
1996
1997    ---------------------
1998    -- Defining_Entity --
1999    ---------------------
2000
2001    function Defining_Entity (N : Node_Id) return Entity_Id is
2002       K   : constant Node_Kind := Nkind (N);
2003       Err : Entity_Id := Empty;
2004
2005    begin
2006       case K is
2007          when
2008            N_Subprogram_Declaration                 |
2009            N_Abstract_Subprogram_Declaration        |
2010            N_Subprogram_Body                        |
2011            N_Package_Declaration                    |
2012            N_Subprogram_Renaming_Declaration        |
2013            N_Subprogram_Body_Stub                   |
2014            N_Generic_Subprogram_Declaration         |
2015            N_Generic_Package_Declaration            |
2016            N_Formal_Subprogram_Declaration
2017          =>
2018             return Defining_Entity (Specification (N));
2019
2020          when
2021            N_Component_Declaration                  |
2022            N_Defining_Program_Unit_Name             |
2023            N_Discriminant_Specification             |
2024            N_Entry_Body                             |
2025            N_Entry_Declaration                      |
2026            N_Entry_Index_Specification              |
2027            N_Exception_Declaration                  |
2028            N_Exception_Renaming_Declaration         |
2029            N_Formal_Object_Declaration              |
2030            N_Formal_Package_Declaration             |
2031            N_Formal_Type_Declaration                |
2032            N_Full_Type_Declaration                  |
2033            N_Implicit_Label_Declaration             |
2034            N_Incomplete_Type_Declaration            |
2035            N_Loop_Parameter_Specification           |
2036            N_Number_Declaration                     |
2037            N_Object_Declaration                     |
2038            N_Object_Renaming_Declaration            |
2039            N_Package_Body_Stub                      |
2040            N_Parameter_Specification                |
2041            N_Private_Extension_Declaration          |
2042            N_Private_Type_Declaration               |
2043            N_Protected_Body                         |
2044            N_Protected_Body_Stub                    |
2045            N_Protected_Type_Declaration             |
2046            N_Single_Protected_Declaration           |
2047            N_Single_Task_Declaration                |
2048            N_Subtype_Declaration                    |
2049            N_Task_Body                              |
2050            N_Task_Body_Stub                         |
2051            N_Task_Type_Declaration
2052          =>
2053             return Defining_Identifier (N);
2054
2055          when N_Subunit =>
2056             return Defining_Entity (Proper_Body (N));
2057
2058          when
2059            N_Function_Instantiation                 |
2060            N_Function_Specification                 |
2061            N_Generic_Function_Renaming_Declaration  |
2062            N_Generic_Package_Renaming_Declaration   |
2063            N_Generic_Procedure_Renaming_Declaration |
2064            N_Package_Body                           |
2065            N_Package_Instantiation                  |
2066            N_Package_Renaming_Declaration           |
2067            N_Package_Specification                  |
2068            N_Procedure_Instantiation                |
2069            N_Procedure_Specification
2070          =>
2071             declare
2072                Nam : constant Node_Id := Defining_Unit_Name (N);
2073
2074             begin
2075                if Nkind (Nam) in N_Entity then
2076                   return Nam;
2077
2078                --  For Error, make up a name and attach to declaration
2079                --  so we can continue semantic analysis
2080
2081                elsif Nam = Error then
2082                   Err :=
2083                     Make_Defining_Identifier (Sloc (N),
2084                       Chars => New_Internal_Name ('T'));
2085                   Set_Defining_Unit_Name (N, Err);
2086
2087                   return Err;
2088                --  If not an entity, get defining identifier
2089
2090                else
2091                   return Defining_Identifier (Nam);
2092                end if;
2093             end;
2094
2095          when N_Block_Statement =>
2096             return Entity (Identifier (N));
2097
2098          when others =>
2099             raise Program_Error;
2100
2101       end case;
2102    end Defining_Entity;
2103
2104    --------------------------
2105    -- Denotes_Discriminant --
2106    --------------------------
2107
2108    function Denotes_Discriminant
2109      (N                : Node_Id;
2110       Check_Concurrent : Boolean := False) return Boolean
2111    is
2112       E : Entity_Id;
2113    begin
2114       if not Is_Entity_Name (N)
2115         or else No (Entity (N))
2116       then
2117          return False;
2118       else
2119          E := Entity (N);
2120       end if;
2121
2122       --  If we are checking for a protected type, the discriminant may have
2123       --  been rewritten as the corresponding discriminal of the original type
2124       --  or of the corresponding concurrent record, depending on whether we
2125       --  are in the spec or body of the protected type.
2126
2127       return Ekind (E) = E_Discriminant
2128         or else
2129           (Check_Concurrent
2130             and then Ekind (E) = E_In_Parameter
2131             and then Present (Discriminal_Link (E))
2132             and then
2133               (Is_Concurrent_Type (Scope (Discriminal_Link (E)))
2134                 or else
2135                   Is_Concurrent_Record_Type (Scope (Discriminal_Link (E)))));
2136
2137    end Denotes_Discriminant;
2138
2139    ----------------------
2140    -- Denotes_Variable --
2141    ----------------------
2142
2143    function Denotes_Variable (N : Node_Id) return Boolean is
2144    begin
2145       return Is_Variable (N) and then Paren_Count (N) = 0;
2146    end Denotes_Variable;
2147
2148    -----------------------------
2149    -- Depends_On_Discriminant --
2150    -----------------------------
2151
2152    function Depends_On_Discriminant (N : Node_Id) return Boolean is
2153       L : Node_Id;
2154       H : Node_Id;
2155
2156    begin
2157       Get_Index_Bounds (N, L, H);
2158       return Denotes_Discriminant (L) or else Denotes_Discriminant (H);
2159    end Depends_On_Discriminant;
2160
2161    -------------------------
2162    -- Designate_Same_Unit --
2163    -------------------------
2164
2165    function Designate_Same_Unit
2166      (Name1 : Node_Id;
2167       Name2 : Node_Id) return Boolean
2168    is
2169       K1 : constant Node_Kind := Nkind (Name1);
2170       K2 : constant Node_Kind := Nkind (Name2);
2171
2172       function Prefix_Node (N : Node_Id) return Node_Id;
2173       --  Returns the parent unit name node of a defining program unit name
2174       --  or the prefix if N is a selected component or an expanded name.
2175
2176       function Select_Node (N : Node_Id) return Node_Id;
2177       --  Returns the defining identifier node of a defining program unit
2178       --  name or  the selector node if N is a selected component or an
2179       --  expanded name.
2180
2181       -----------------
2182       -- Prefix_Node --
2183       -----------------
2184
2185       function Prefix_Node (N : Node_Id) return Node_Id is
2186       begin
2187          if Nkind (N) = N_Defining_Program_Unit_Name then
2188             return Name (N);
2189
2190          else
2191             return Prefix (N);
2192          end if;
2193       end Prefix_Node;
2194
2195       -----------------
2196       -- Select_Node --
2197       -----------------
2198
2199       function Select_Node (N : Node_Id) return Node_Id is
2200       begin
2201          if Nkind (N) = N_Defining_Program_Unit_Name then
2202             return Defining_Identifier (N);
2203
2204          else
2205             return Selector_Name (N);
2206          end if;
2207       end Select_Node;
2208
2209    --  Start of processing for Designate_Next_Unit
2210
2211    begin
2212       if (K1 = N_Identifier or else
2213           K1 = N_Defining_Identifier)
2214         and then
2215          (K2 = N_Identifier or else
2216           K2 = N_Defining_Identifier)
2217       then
2218          return Chars (Name1) = Chars (Name2);
2219
2220       elsif
2221          (K1 = N_Expanded_Name      or else
2222           K1 = N_Selected_Component or else
2223           K1 = N_Defining_Program_Unit_Name)
2224         and then
2225          (K2 = N_Expanded_Name      or else
2226           K2 = N_Selected_Component or else
2227           K2 = N_Defining_Program_Unit_Name)
2228       then
2229          return
2230            (Chars (Select_Node (Name1)) = Chars (Select_Node (Name2)))
2231              and then
2232                Designate_Same_Unit (Prefix_Node (Name1), Prefix_Node (Name2));
2233
2234       else
2235          return False;
2236       end if;
2237    end Designate_Same_Unit;
2238
2239    ----------------------------
2240    -- Enclosing_Generic_Body --
2241    ----------------------------
2242
2243    function Enclosing_Generic_Body
2244      (N : Node_Id) return Node_Id
2245    is
2246       P    : Node_Id;
2247       Decl : Node_Id;
2248       Spec : Node_Id;
2249
2250    begin
2251       P := Parent (N);
2252       while Present (P) loop
2253          if Nkind (P) = N_Package_Body
2254            or else Nkind (P) = N_Subprogram_Body
2255          then
2256             Spec := Corresponding_Spec (P);
2257
2258             if Present (Spec) then
2259                Decl := Unit_Declaration_Node (Spec);
2260
2261                if Nkind (Decl) = N_Generic_Package_Declaration
2262                  or else Nkind (Decl) = N_Generic_Subprogram_Declaration
2263                then
2264                   return P;
2265                end if;
2266             end if;
2267          end if;
2268
2269          P := Parent (P);
2270       end loop;
2271
2272       return Empty;
2273    end Enclosing_Generic_Body;
2274
2275    ----------------------------
2276    -- Enclosing_Generic_Unit --
2277    ----------------------------
2278
2279    function Enclosing_Generic_Unit
2280      (N : Node_Id) return Node_Id
2281    is
2282       P    : Node_Id;
2283       Decl : Node_Id;
2284       Spec : Node_Id;
2285
2286    begin
2287       P := Parent (N);
2288       while Present (P) loop
2289          if Nkind (P) = N_Generic_Package_Declaration
2290            or else Nkind (P) = N_Generic_Subprogram_Declaration
2291          then
2292             return P;
2293
2294          elsif Nkind (P) = N_Package_Body
2295            or else Nkind (P) = N_Subprogram_Body
2296          then
2297             Spec := Corresponding_Spec (P);
2298
2299             if Present (Spec) then
2300                Decl := Unit_Declaration_Node (Spec);
2301
2302                if Nkind (Decl) = N_Generic_Package_Declaration
2303                  or else Nkind (Decl) = N_Generic_Subprogram_Declaration
2304                then
2305                   return Decl;
2306                end if;
2307             end if;
2308          end if;
2309
2310          P := Parent (P);
2311       end loop;
2312
2313       return Empty;
2314    end Enclosing_Generic_Unit;
2315
2316    -------------------------------
2317    -- Enclosing_Lib_Unit_Entity --
2318    -------------------------------
2319
2320    function Enclosing_Lib_Unit_Entity return Entity_Id is
2321       Unit_Entity : Entity_Id;
2322
2323    begin
2324       --  Look for enclosing library unit entity by following scope links.
2325       --  Equivalent to, but faster than indexing through the scope stack.
2326
2327       Unit_Entity := Current_Scope;
2328       while (Present (Scope (Unit_Entity))
2329         and then Scope (Unit_Entity) /= Standard_Standard)
2330         and not Is_Child_Unit (Unit_Entity)
2331       loop
2332          Unit_Entity := Scope (Unit_Entity);
2333       end loop;
2334
2335       return Unit_Entity;
2336    end Enclosing_Lib_Unit_Entity;
2337
2338    -----------------------------
2339    -- Enclosing_Lib_Unit_Node --
2340    -----------------------------
2341
2342    function Enclosing_Lib_Unit_Node (N : Node_Id) return Node_Id is
2343       Current_Node : Node_Id;
2344
2345    begin
2346       Current_Node := N;
2347       while Present (Current_Node)
2348         and then Nkind (Current_Node) /= N_Compilation_Unit
2349       loop
2350          Current_Node := Parent (Current_Node);
2351       end loop;
2352
2353       if Nkind (Current_Node) /= N_Compilation_Unit then
2354          return Empty;
2355       end if;
2356
2357       return Current_Node;
2358    end Enclosing_Lib_Unit_Node;
2359
2360    --------------------------
2361    -- Enclosing_Subprogram --
2362    --------------------------
2363
2364    function Enclosing_Subprogram (E : Entity_Id) return Entity_Id is
2365       Dynamic_Scope : constant Entity_Id := Enclosing_Dynamic_Scope (E);
2366
2367    begin
2368       if Dynamic_Scope = Standard_Standard then
2369          return Empty;
2370
2371       elsif Dynamic_Scope = Empty then
2372          return Empty;
2373
2374       elsif Ekind (Dynamic_Scope) = E_Subprogram_Body then
2375          return Corresponding_Spec (Parent (Parent (Dynamic_Scope)));
2376
2377       elsif Ekind (Dynamic_Scope) = E_Block
2378         or else Ekind (Dynamic_Scope) = E_Return_Statement
2379       then
2380          return Enclosing_Subprogram (Dynamic_Scope);
2381
2382       elsif Ekind (Dynamic_Scope) = E_Task_Type then
2383          return Get_Task_Body_Procedure (Dynamic_Scope);
2384
2385       elsif Convention (Dynamic_Scope) = Convention_Protected then
2386          return Protected_Body_Subprogram (Dynamic_Scope);
2387
2388       else
2389          return Dynamic_Scope;
2390       end if;
2391    end Enclosing_Subprogram;
2392
2393    ------------------------
2394    -- Ensure_Freeze_Node --
2395    ------------------------
2396
2397    procedure Ensure_Freeze_Node (E : Entity_Id) is
2398       FN : Node_Id;
2399
2400    begin
2401       if No (Freeze_Node (E)) then
2402          FN := Make_Freeze_Entity (Sloc (E));
2403          Set_Has_Delayed_Freeze (E);
2404          Set_Freeze_Node (E, FN);
2405          Set_Access_Types_To_Process (FN, No_Elist);
2406          Set_TSS_Elist (FN, No_Elist);
2407          Set_Entity (FN, E);
2408       end if;
2409    end Ensure_Freeze_Node;
2410
2411    ----------------
2412    -- Enter_Name --
2413    ----------------
2414
2415    procedure Enter_Name (Def_Id : Entity_Id) is
2416       C : constant Entity_Id := Current_Entity (Def_Id);
2417       E : constant Entity_Id := Current_Entity_In_Scope (Def_Id);
2418       S : constant Entity_Id := Current_Scope;
2419
2420    begin
2421       Generate_Definition (Def_Id);
2422
2423       --  Add new name to current scope declarations. Check for duplicate
2424       --  declaration, which may or may not be a genuine error.
2425
2426       if Present (E) then
2427
2428          --  Case of previous entity entered because of a missing declaration
2429          --  or else a bad subtype indication. Best is to use the new entity,
2430          --  and make the previous one invisible.
2431
2432          if Etype (E) = Any_Type then
2433             Set_Is_Immediately_Visible (E, False);
2434
2435          --  Case of renaming declaration constructed for package instances.
2436          --  if there is an explicit declaration with the same identifier,
2437          --  the renaming is not immediately visible any longer, but remains
2438          --  visible through selected component notation.
2439
2440          elsif Nkind (Parent (E)) = N_Package_Renaming_Declaration
2441            and then not Comes_From_Source (E)
2442          then
2443             Set_Is_Immediately_Visible (E, False);
2444
2445          --  The new entity may be the package renaming, which has the same
2446          --  same name as a generic formal which has been seen already.
2447
2448          elsif Nkind (Parent (Def_Id)) = N_Package_Renaming_Declaration
2449             and then not Comes_From_Source (Def_Id)
2450          then
2451             Set_Is_Immediately_Visible (E, False);
2452
2453          --  For a fat pointer corresponding to a remote access to subprogram,
2454          --  we use the same identifier as the RAS type, so that the proper
2455          --  name appears in the stub. This type is only retrieved through
2456          --  the RAS type and never by visibility, and is not added to the
2457          --  visibility list (see below).
2458
2459          elsif Nkind (Parent (Def_Id)) = N_Full_Type_Declaration
2460            and then Present (Corresponding_Remote_Type (Def_Id))
2461          then
2462             null;
2463
2464          --  A controller component for a type extension overrides the
2465          --  inherited component.
2466
2467          elsif Chars (E) = Name_uController then
2468             null;
2469
2470          --  Case of an implicit operation or derived literal. The new entity
2471          --  hides the implicit one,  which is removed from all visibility,
2472          --  i.e. the entity list of its scope, and homonym chain of its name.
2473
2474          elsif (Is_Overloadable (E) and then Is_Inherited_Operation (E))
2475            or else Is_Internal (E)
2476          then
2477             declare
2478                Prev     : Entity_Id;
2479                Prev_Vis : Entity_Id;
2480                Decl     : constant Node_Id := Parent (E);
2481
2482             begin
2483                --  If E is an implicit declaration, it cannot be the first
2484                --  entity in the scope.
2485
2486                Prev := First_Entity (Current_Scope);
2487                while Present (Prev)
2488                  and then Next_Entity (Prev) /= E
2489                loop
2490                   Next_Entity (Prev);
2491                end loop;
2492
2493                if No (Prev) then
2494
2495                   --  If E is not on the entity chain of the current scope,
2496                   --  it is an implicit declaration in the generic formal
2497                   --  part of a generic subprogram. When analyzing the body,
2498                   --  the generic formals are visible but not on the entity
2499                   --  chain of the subprogram. The new entity will become
2500                   --  the visible one in the body.
2501
2502                   pragma Assert
2503                     (Nkind (Parent (Decl)) = N_Generic_Subprogram_Declaration);
2504                   null;
2505
2506                else
2507                   Set_Next_Entity (Prev, Next_Entity (E));
2508
2509                   if No (Next_Entity (Prev)) then
2510                      Set_Last_Entity (Current_Scope, Prev);
2511                   end if;
2512
2513                   if E = Current_Entity (E) then
2514                      Prev_Vis := Empty;
2515
2516                   else
2517                      Prev_Vis := Current_Entity (E);
2518                      while Homonym (Prev_Vis) /= E loop
2519                         Prev_Vis := Homonym (Prev_Vis);
2520                      end loop;
2521                   end if;
2522
2523                   if Present (Prev_Vis)  then
2524
2525                      --  Skip E in the visibility chain
2526
2527                      Set_Homonym (Prev_Vis, Homonym (E));
2528
2529                   else
2530                      Set_Name_Entity_Id (Chars (E), Homonym (E));
2531                   end if;
2532                end if;
2533             end;
2534
2535          --  This section of code could use a comment ???
2536
2537          elsif Present (Etype (E))
2538            and then Is_Concurrent_Type (Etype (E))
2539            and then E = Def_Id
2540          then
2541             return;
2542
2543          --  If the homograph is a protected component renaming, it should not
2544          --  be hiding the current entity. Such renamings are treated as weak
2545          --  declarations.
2546
2547          elsif Is_Prival (E) then
2548             Set_Is_Immediately_Visible (E, False);
2549
2550          --  In this case the current entity is a protected component renaming.
2551          --  Perform minimal decoration by setting the scope and return since
2552          --  the prival should not be hiding other visible entities.
2553
2554          elsif Is_Prival (Def_Id) then
2555             Set_Scope (Def_Id, Current_Scope);
2556             return;
2557
2558          --  Analogous to privals, the discriminal generated for an entry
2559          --  index parameter acts as a weak declaration. Perform minimal
2560          --  decoration to avoid bogus errors.
2561
2562          elsif Is_Discriminal (Def_Id)
2563            and then Ekind (Discriminal_Link (Def_Id)) = E_Entry_Index_Parameter
2564          then
2565             Set_Scope (Def_Id, Current_Scope);
2566             return;
2567
2568          --  In the body or private part of an instance, a type extension
2569          --  may introduce a component with the same name as that of an
2570          --  actual. The legality rule is not enforced, but the semantics
2571          --  of the full type with two components of the same name are not
2572          --  clear at this point ???
2573
2574          elsif In_Instance_Not_Visible then
2575             null;
2576
2577          --  When compiling a package body, some child units may have become
2578          --  visible. They cannot conflict with local entities that hide them.
2579
2580          elsif Is_Child_Unit (E)
2581            and then In_Open_Scopes (Scope (E))
2582            and then not Is_Immediately_Visible (E)
2583          then
2584             null;
2585
2586          --  Conversely, with front-end inlining we may compile the parent
2587          --  body first, and a child unit subsequently. The context is now
2588          --  the parent spec, and body entities are not visible.
2589
2590          elsif Is_Child_Unit (Def_Id)
2591            and then Is_Package_Body_Entity (E)
2592            and then not In_Package_Body (Current_Scope)
2593          then
2594             null;
2595
2596          --  Case of genuine duplicate declaration
2597
2598          else
2599             Error_Msg_Sloc := Sloc (E);
2600
2601             --  If the previous declaration is an incomplete type declaration
2602             --  this may be an attempt to complete it with a private type.
2603             --  The following avoids confusing cascaded errors.
2604
2605             if Nkind (Parent (E)) = N_Incomplete_Type_Declaration
2606               and then Nkind (Parent (Def_Id)) = N_Private_Type_Declaration
2607             then
2608                Error_Msg_N
2609                  ("incomplete type cannot be completed with a private " &
2610                   "declaration", Parent (Def_Id));
2611                Set_Is_Immediately_Visible (E, False);
2612                Set_Full_View (E, Def_Id);
2613
2614             --  An inherited component of a record conflicts with a new
2615             --  discriminant. The discriminant is inserted first in the scope,
2616             --  but the error should be posted on it, not on the component.
2617
2618             elsif Ekind (E) = E_Discriminant
2619               and then Present (Scope (Def_Id))
2620               and then Scope (Def_Id) /= Current_Scope
2621             then
2622                Error_Msg_Sloc := Sloc (Def_Id);
2623                Error_Msg_N ("& conflicts with declaration#", E);
2624                return;
2625
2626             --  If the name of the unit appears in its own context clause,
2627             --  a dummy package with the name has already been created, and
2628             --  the error emitted. Try to continue quietly.
2629
2630             elsif Error_Posted (E)
2631               and then Sloc (E) = No_Location
2632               and then Nkind (Parent (E)) = N_Package_Specification
2633               and then Current_Scope = Standard_Standard
2634             then
2635                Set_Scope (Def_Id, Current_Scope);
2636                return;
2637
2638             else
2639                Error_Msg_N ("& conflicts with declaration#", Def_Id);
2640
2641                --  Avoid cascaded messages with duplicate components in
2642                --  derived types.
2643
2644                if Ekind (E) = E_Component
2645                  or else Ekind (E) = E_Discriminant
2646                then
2647                   return;
2648                end if;
2649             end if;
2650
2651             if Nkind (Parent (Parent (Def_Id))) =
2652                 N_Generic_Subprogram_Declaration
2653               and then Def_Id =
2654                 Defining_Entity (Specification (Parent (Parent (Def_Id))))
2655             then
2656                Error_Msg_N ("\generic units cannot be overloaded", Def_Id);
2657             end if;
2658
2659             --  If entity is in standard, then we are in trouble, because
2660             --  it means that we have a library package with a duplicated
2661             --  name. That's hard to recover from, so abort!
2662
2663             if S = Standard_Standard then
2664                raise Unrecoverable_Error;
2665
2666             --  Otherwise we continue with the declaration. Having two
2667             --  identical declarations should not cause us too much trouble!
2668
2669             else
2670                null;
2671             end if;
2672          end if;
2673       end if;
2674
2675       --  If we fall through, declaration is OK , or OK enough to continue
2676
2677       --  If Def_Id is a discriminant or a record component we are in the
2678       --  midst of inheriting components in a derived record definition.
2679       --  Preserve their Ekind and Etype.
2680
2681       if Ekind (Def_Id) = E_Discriminant
2682         or else Ekind (Def_Id) = E_Component
2683       then
2684          null;
2685
2686       --  If a type is already set, leave it alone (happens whey a type
2687       --  declaration is reanalyzed following a call to the optimizer)
2688
2689       elsif Present (Etype (Def_Id)) then
2690          null;
2691
2692       --  Otherwise, the kind E_Void insures that premature uses of the entity
2693       --  will be detected. Any_Type insures that no cascaded errors will occur
2694
2695       else
2696          Set_Ekind (Def_Id, E_Void);
2697          Set_Etype (Def_Id, Any_Type);
2698       end if;
2699
2700       --  Inherited discriminants and components in derived record types are
2701       --  immediately visible. Itypes are not.
2702
2703       if Ekind (Def_Id) = E_Discriminant
2704         or else Ekind (Def_Id) = E_Component
2705         or else (No (Corresponding_Remote_Type (Def_Id))
2706                  and then not Is_Itype (Def_Id))
2707       then
2708          Set_Is_Immediately_Visible (Def_Id);
2709          Set_Current_Entity         (Def_Id);
2710       end if;
2711
2712       Set_Homonym       (Def_Id, C);
2713       Append_Entity     (Def_Id, S);
2714       Set_Public_Status (Def_Id);
2715
2716       --  Warn if new entity hides an old one
2717
2718       if Warn_On_Hiding and then Present (C)
2719
2720          --  Don't warn for record components since they always have a well
2721          --  defined scope which does not confuse other uses. Note that in
2722          --  some cases, Ekind has not been set yet.
2723
2724          and then Ekind (C) /= E_Component
2725          and then Ekind (C) /= E_Discriminant
2726          and then Nkind (Parent (C)) /= N_Component_Declaration
2727          and then Ekind (Def_Id) /= E_Component
2728          and then Ekind (Def_Id) /= E_Discriminant
2729          and then Nkind (Parent (Def_Id)) /= N_Component_Declaration
2730
2731          --  Don't warn for one character variables. It is too common to use
2732          --  such variables as locals and will just cause too many false hits.
2733
2734          and then Length_Of_Name (Chars (C)) /= 1
2735
2736          --  Don't warn for non-source entities
2737
2738          and then Comes_From_Source (C)
2739          and then Comes_From_Source (Def_Id)
2740
2741          --  Don't warn unless entity in question is in extended main source
2742
2743          and then In_Extended_Main_Source_Unit (Def_Id)
2744
2745          --  Finally, the hidden entity must be either immediately visible
2746          --  or use visible (from a used package)
2747
2748          and then
2749            (Is_Immediately_Visible (C)
2750               or else
2751             Is_Potentially_Use_Visible (C))
2752       then
2753          Error_Msg_Sloc := Sloc (C);
2754          Error_Msg_N ("declaration hides &#?", Def_Id);
2755       end if;
2756    end Enter_Name;
2757
2758    --------------------------
2759    -- Explain_Limited_Type --
2760    --------------------------
2761
2762    procedure Explain_Limited_Type (T : Entity_Id; N : Node_Id) is
2763       C : Entity_Id;
2764
2765    begin
2766       --  For array, component type must be limited
2767
2768       if Is_Array_Type (T) then
2769          Error_Msg_Node_2 := T;
2770          Error_Msg_NE
2771            ("\component type& of type& is limited", N, Component_Type (T));
2772          Explain_Limited_Type (Component_Type (T), N);
2773
2774       elsif Is_Record_Type (T) then
2775
2776          --  No need for extra messages if explicit limited record
2777
2778          if Is_Limited_Record (Base_Type (T)) then
2779             return;
2780          end if;
2781
2782          --  Otherwise find a limited component. Check only components that
2783          --  come from source, or inherited components that appear in the
2784          --  source of the ancestor.
2785
2786          C := First_Component (T);
2787          while Present (C) loop
2788             if Is_Limited_Type (Etype (C))
2789               and then
2790                 (Comes_From_Source (C)
2791                    or else
2792                      (Present (Original_Record_Component (C))
2793                        and then
2794                          Comes_From_Source (Original_Record_Component (C))))
2795             then
2796                Error_Msg_Node_2 := T;
2797                Error_Msg_NE ("\component& of type& has limited type", N, C);
2798                Explain_Limited_Type (Etype (C), N);
2799                return;
2800             end if;
2801
2802             Next_Component (C);
2803          end loop;
2804
2805          --  The type may be declared explicitly limited, even if no component
2806          --  of it is limited, in which case we fall out of the loop.
2807          return;
2808       end if;
2809    end Explain_Limited_Type;
2810
2811    -----------------
2812    -- Find_Actual --
2813    -----------------
2814
2815    procedure Find_Actual
2816      (N        : Node_Id;
2817       Formal   : out Entity_Id;
2818       Call     : out Node_Id)
2819    is
2820       Parnt  : constant Node_Id := Parent (N);
2821       Actual : Node_Id;
2822
2823    begin
2824       if (Nkind (Parnt) = N_Indexed_Component
2825             or else
2826           Nkind (Parnt) = N_Selected_Component)
2827         and then N = Prefix (Parnt)
2828       then
2829          Find_Actual (Parnt, Formal, Call);
2830          return;
2831
2832       elsif Nkind (Parnt) = N_Parameter_Association
2833         and then N = Explicit_Actual_Parameter (Parnt)
2834       then
2835          Call := Parent (Parnt);
2836
2837       elsif Nkind (Parnt) = N_Procedure_Call_Statement then
2838          Call := Parnt;
2839
2840       else
2841          Formal := Empty;
2842          Call   := Empty;
2843          return;
2844       end if;
2845
2846       --  If we have a call to a subprogram look for the parameter. Note that
2847       --  we exclude overloaded calls, since we don't know enough to be sure
2848       --  of giving the right answer in this case.
2849
2850       if Is_Entity_Name (Name (Call))
2851         and then Present (Entity (Name (Call)))
2852         and then Is_Overloadable (Entity (Name (Call)))
2853         and then not Is_Overloaded (Name (Call))
2854       then
2855          --  Fall here if we are definitely a parameter
2856
2857          Actual := First_Actual (Call);
2858          Formal := First_Formal (Entity (Name (Call)));
2859          while Present (Formal) and then Present (Actual) loop
2860             if Actual = N then
2861                return;
2862             else
2863                Actual := Next_Actual (Actual);
2864                Formal := Next_Formal (Formal);
2865             end if;
2866          end loop;
2867       end if;
2868
2869       --  Fall through here if we did not find matching actual
2870
2871       Formal := Empty;
2872       Call   := Empty;
2873    end Find_Actual;
2874
2875    -------------------------------------
2876    -- Find_Corresponding_Discriminant --
2877    -------------------------------------
2878
2879    function Find_Corresponding_Discriminant
2880      (Id  : Node_Id;
2881       Typ : Entity_Id) return Entity_Id
2882    is
2883       Par_Disc : Entity_Id;
2884       Old_Disc : Entity_Id;
2885       New_Disc : Entity_Id;
2886
2887    begin
2888       Par_Disc := Original_Record_Component (Original_Discriminant (Id));
2889
2890       --  The original type may currently be private, and the discriminant
2891       --  only appear on its full view.
2892
2893       if Is_Private_Type (Scope (Par_Disc))
2894         and then not Has_Discriminants (Scope (Par_Disc))
2895         and then Present (Full_View (Scope (Par_Disc)))
2896       then
2897          Old_Disc := First_Discriminant (Full_View (Scope (Par_Disc)));
2898       else
2899          Old_Disc := First_Discriminant (Scope (Par_Disc));
2900       end if;
2901
2902       if Is_Class_Wide_Type (Typ) then
2903          New_Disc := First_Discriminant (Root_Type (Typ));
2904       else
2905          New_Disc := First_Discriminant (Typ);
2906       end if;
2907
2908       while Present (Old_Disc) and then Present (New_Disc) loop
2909          if Old_Disc = Par_Disc  then
2910             return New_Disc;
2911          else
2912             Next_Discriminant (Old_Disc);
2913             Next_Discriminant (New_Disc);
2914          end if;
2915       end loop;
2916
2917       --  Should always find it
2918
2919       raise Program_Error;
2920    end Find_Corresponding_Discriminant;
2921
2922    --------------------------
2923    -- Find_Overlaid_Entity --
2924    --------------------------
2925
2926    procedure Find_Overlaid_Entity
2927      (N   : Node_Id;
2928       Ent : out Entity_Id;
2929       Off : out Boolean)
2930    is
2931       Expr : Node_Id;
2932
2933    begin
2934       --  We are looking for one of the two following forms:
2935
2936       --    for X'Address use Y'Address
2937
2938       --  or
2939
2940       --    Const : constant Address := expr;
2941       --    ...
2942       --    for X'Address use Const;
2943
2944       --  In the second case, the expr is either Y'Address, or recursively a
2945       --  constant that eventually references Y'Address.
2946
2947       Ent := Empty;
2948       Off := False;
2949
2950       if Nkind (N) = N_Attribute_Definition_Clause
2951         and then Chars (N) = Name_Address
2952       then
2953          Expr := Expression (N);
2954
2955          --  This loop checks the form of the expression for Y'Address,
2956          --  using recursion to deal with intermediate constants.
2957
2958          loop
2959             --  Check for Y'Address
2960
2961             if Nkind (Expr) = N_Attribute_Reference
2962               and then Attribute_Name (Expr) = Name_Address
2963             then
2964                Expr := Prefix (Expr);
2965                exit;
2966
2967                --  Check for Const where Const is a constant entity
2968
2969             elsif Is_Entity_Name (Expr)
2970               and then Ekind (Entity (Expr)) = E_Constant
2971             then
2972                Expr := Constant_Value (Entity (Expr));
2973
2974             --  Anything else does not need checking
2975
2976             else
2977                return;
2978             end if;
2979          end loop;
2980
2981          --  This loop checks the form of the prefix for an entity,
2982          --  using recursion to deal with intermediate components.
2983
2984          loop
2985             --  Check for Y where Y is an entity
2986
2987             if Is_Entity_Name (Expr) then
2988                Ent := Entity (Expr);
2989                return;
2990
2991             --  Check for components
2992
2993             elsif
2994                Nkind_In (Expr, N_Selected_Component, N_Indexed_Component) then
2995
2996                Expr := Prefix (Expr);
2997                Off := True;
2998
2999             --  Anything else does not need checking
3000
3001             else
3002                return;
3003             end if;
3004          end loop;
3005       end if;
3006    end Find_Overlaid_Entity;
3007
3008    -------------------------
3009    -- Find_Parameter_Type --
3010    -------------------------
3011
3012    function Find_Parameter_Type (Param : Node_Id) return Entity_Id is
3013    begin
3014       if Nkind (Param) /= N_Parameter_Specification then
3015          return Empty;
3016
3017       --  For an access parameter, obtain the type from the formal entity
3018       --  itself, because access to subprogram nodes do not carry a type.
3019       --  Shouldn't we always use the formal entity ???
3020
3021       elsif Nkind (Parameter_Type (Param)) = N_Access_Definition then
3022          return Etype (Defining_Identifier (Param));
3023
3024       else
3025          return Etype (Parameter_Type (Param));
3026       end if;
3027    end Find_Parameter_Type;
3028
3029    -----------------------------
3030    -- Find_Static_Alternative --
3031    -----------------------------
3032
3033    function Find_Static_Alternative (N : Node_Id) return Node_Id is
3034       Expr   : constant Node_Id := Expression (N);
3035       Val    : constant Uint    := Expr_Value (Expr);
3036       Alt    : Node_Id;
3037       Choice : Node_Id;
3038
3039    begin
3040       Alt := First (Alternatives (N));
3041
3042       Search : loop
3043          if Nkind (Alt) /= N_Pragma then
3044             Choice := First (Discrete_Choices (Alt));
3045             while Present (Choice) loop
3046
3047                --  Others choice, always matches
3048
3049                if Nkind (Choice) = N_Others_Choice then
3050                   exit Search;
3051
3052                --  Range, check if value is in the range
3053
3054                elsif Nkind (Choice) = N_Range then
3055                   exit Search when
3056                     Val >= Expr_Value (Low_Bound (Choice))
3057                       and then
3058                     Val <= Expr_Value (High_Bound (Choice));
3059
3060                --  Choice is a subtype name. Note that we know it must
3061                --  be a static subtype, since otherwise it would have
3062                --  been diagnosed as illegal.
3063
3064                elsif Is_Entity_Name (Choice)
3065                  and then Is_Type (Entity (Choice))
3066                then
3067                   exit Search when Is_In_Range (Expr, Etype (Choice),
3068                                                 Assume_Valid => False);
3069
3070                --  Choice is a subtype indication
3071
3072                elsif Nkind (Choice) = N_Subtype_Indication then
3073                   declare
3074                      C : constant Node_Id := Constraint (Choice);
3075                      R : constant Node_Id := Range_Expression (C);
3076
3077                   begin
3078                      exit Search when
3079                        Val >= Expr_Value (Low_Bound (R))
3080                          and then
3081                        Val <= Expr_Value (High_Bound (R));
3082                   end;
3083
3084                --  Choice is a simple expression
3085
3086                else
3087                   exit Search when Val = Expr_Value (Choice);
3088                end if;
3089
3090                Next (Choice);
3091             end loop;
3092          end if;
3093
3094          Next (Alt);
3095          pragma Assert (Present (Alt));
3096       end loop Search;
3097
3098       --  The above loop *must* terminate by finding a match, since
3099       --  we know the case statement is valid, and the value of the
3100       --  expression is known at compile time. When we fall out of
3101       --  the loop, Alt points to the alternative that we know will
3102       --  be selected at run time.
3103
3104       return Alt;
3105    end Find_Static_Alternative;
3106
3107    ------------------
3108    -- First_Actual --
3109    ------------------
3110
3111    function First_Actual (Node : Node_Id) return Node_Id is
3112       N : Node_Id;
3113
3114    begin
3115       if No (Parameter_Associations (Node)) then
3116          return Empty;
3117       end if;
3118
3119       N := First (Parameter_Associations (Node));
3120
3121       if Nkind (N) = N_Parameter_Association then
3122          return First_Named_Actual (Node);
3123       else
3124          return N;
3125       end if;
3126    end First_Actual;
3127
3128    -------------------------
3129    -- Full_Qualified_Name --
3130    -------------------------
3131
3132    function Full_Qualified_Name (E : Entity_Id) return String_Id is
3133       Res : String_Id;
3134       pragma Warnings (Off, Res);
3135
3136       function Internal_Full_Qualified_Name (E : Entity_Id) return String_Id;
3137       --  Compute recursively the qualified name without NUL at the end
3138
3139       ----------------------------------
3140       -- Internal_Full_Qualified_Name --
3141       ----------------------------------
3142
3143       function Internal_Full_Qualified_Name (E : Entity_Id) return String_Id is
3144          Ent         : Entity_Id := E;
3145          Parent_Name : String_Id := No_String;
3146
3147       begin
3148          --  Deals properly with child units
3149
3150          if Nkind (Ent) = N_Defining_Program_Unit_Name then
3151             Ent := Defining_Identifier (Ent);
3152          end if;
3153
3154          --  Compute qualification recursively (only "Standard" has no scope)
3155
3156          if Present (Scope (Scope (Ent))) then
3157             Parent_Name := Internal_Full_Qualified_Name (Scope (Ent));
3158          end if;
3159
3160          --  Every entity should have a name except some expanded blocks
3161          --  don't bother about those.
3162
3163          if Chars (Ent) = No_Name then
3164             return Parent_Name;
3165          end if;
3166
3167          --  Add a period between Name and qualification
3168
3169          if Parent_Name /= No_String then
3170             Start_String (Parent_Name);
3171             Store_String_Char (Get_Char_Code ('.'));
3172
3173          else
3174             Start_String;
3175          end if;
3176
3177          --  Generates the entity name in upper case
3178
3179          Get_Decoded_Name_String (Chars (Ent));
3180          Set_All_Upper_Case;
3181          Store_String_Chars (Name_Buffer (1 .. Name_Len));
3182          return End_String;
3183       end Internal_Full_Qualified_Name;
3184
3185    --  Start of processing for Full_Qualified_Name
3186
3187    begin
3188       Res := Internal_Full_Qualified_Name (E);
3189       Store_String_Char (Get_Char_Code (ASCII.NUL));
3190       return End_String;
3191    end Full_Qualified_Name;
3192
3193    -----------------------
3194    -- Gather_Components --
3195    -----------------------
3196
3197    procedure Gather_Components
3198      (Typ           : Entity_Id;
3199       Comp_List     : Node_Id;
3200       Governed_By   : List_Id;
3201       Into          : Elist_Id;
3202       Report_Errors : out Boolean)
3203    is
3204       Assoc           : Node_Id;
3205       Variant         : Node_Id;
3206       Discrete_Choice : Node_Id;
3207       Comp_Item       : Node_Id;
3208
3209       Discrim       : Entity_Id;
3210       Discrim_Name  : Node_Id;
3211       Discrim_Value : Node_Id;
3212
3213    begin
3214       Report_Errors := False;
3215
3216       if No (Comp_List) or else Null_Present (Comp_List) then
3217          return;
3218
3219       elsif Present (Component_Items (Comp_List)) then
3220          Comp_Item := First (Component_Items (Comp_List));
3221
3222       else
3223          Comp_Item := Empty;
3224       end if;
3225
3226       while Present (Comp_Item) loop
3227
3228          --  Skip the tag of a tagged record, the interface tags, as well
3229          --  as all items that are not user components (anonymous types,
3230          --  rep clauses, Parent field, controller field).
3231
3232          if Nkind (Comp_Item) = N_Component_Declaration then
3233             declare
3234                Comp : constant Entity_Id := Defining_Identifier (Comp_Item);
3235             begin
3236                if not Is_Tag (Comp)
3237                  and then Chars (Comp) /= Name_uParent
3238                  and then Chars (Comp) /= Name_uController
3239                then
3240                   Append_Elmt (Comp, Into);
3241                end if;
3242             end;
3243          end if;
3244
3245          Next (Comp_Item);
3246       end loop;
3247
3248       if No (Variant_Part (Comp_List)) then
3249          return;
3250       else
3251          Discrim_Name := Name (Variant_Part (Comp_List));
3252          Variant := First_Non_Pragma (Variants (Variant_Part (Comp_List)));
3253       end if;
3254
3255       --  Look for the discriminant that governs this variant part.
3256       --  The discriminant *must* be in the Governed_By List
3257
3258       Assoc := First (Governed_By);
3259       Find_Constraint : loop
3260          Discrim := First (Choices (Assoc));
3261          exit Find_Constraint when Chars (Discrim_Name) = Chars (Discrim)
3262            or else (Present (Corresponding_Discriminant (Entity (Discrim)))
3263                       and then
3264                     Chars (Corresponding_Discriminant (Entity (Discrim)))
3265                          = Chars  (Discrim_Name))
3266            or else Chars (Original_Record_Component (Entity (Discrim)))
3267                          = Chars (Discrim_Name);
3268
3269          if No (Next (Assoc)) then
3270             if not Is_Constrained (Typ)
3271               and then Is_Derived_Type (Typ)
3272               and then Present (Stored_Constraint (Typ))
3273             then
3274                --  If the type is a tagged type with inherited discriminants,
3275                --  use the stored constraint on the parent in order to find
3276                --  the values of discriminants that are otherwise hidden by an
3277                --  explicit constraint. Renamed discriminants are handled in
3278                --  the code above.
3279
3280                --  If several parent discriminants are renamed by a single
3281                --  discriminant of the derived type, the call to obtain the
3282                --  Corresponding_Discriminant field only retrieves the last
3283                --  of them. We recover the constraint on the others from the
3284                --  Stored_Constraint as well.
3285
3286                declare
3287                   D : Entity_Id;
3288                   C : Elmt_Id;
3289
3290                begin
3291                   D := First_Discriminant (Etype (Typ));
3292                   C := First_Elmt (Stored_Constraint (Typ));
3293                   while Present (D) and then Present (C) loop
3294                      if Chars (Discrim_Name) = Chars (D) then
3295                         if Is_Entity_Name (Node (C))
3296                           and then Entity (Node (C)) = Entity (Discrim)
3297                         then
3298                            --  D is renamed by Discrim, whose value is given in
3299                            --  Assoc.
3300
3301                            null;
3302
3303                         else
3304                            Assoc :=
3305                              Make_Component_Association (Sloc (Typ),
3306                                New_List
3307                                  (New_Occurrence_Of (D, Sloc (Typ))),
3308                                   Duplicate_Subexpr_No_Checks (Node (C)));
3309                         end if;
3310                         exit Find_Constraint;
3311                      end if;
3312
3313                      Next_Discriminant (D);
3314                      Next_Elmt (C);
3315                   end loop;
3316                end;
3317             end if;
3318          end if;
3319
3320          if No (Next (Assoc)) then
3321             Error_Msg_NE (" missing value for discriminant&",
3322               First (Governed_By), Discrim_Name);
3323             Report_Errors := True;
3324             return;
3325          end if;
3326
3327          Next (Assoc);
3328       end loop Find_Constraint;
3329
3330       Discrim_Value := Expression (Assoc);
3331
3332       if not Is_OK_Static_Expression (Discrim_Value) then
3333          Error_Msg_FE
3334            ("value for discriminant & must be static!",
3335             Discrim_Value, Discrim);
3336          Why_Not_Static (Discrim_Value);
3337          Report_Errors := True;
3338          return;
3339       end if;
3340
3341       Search_For_Discriminant_Value : declare
3342          Low  : Node_Id;
3343          High : Node_Id;
3344
3345          UI_High          : Uint;
3346          UI_Low           : Uint;
3347          UI_Discrim_Value : constant Uint := Expr_Value (Discrim_Value);
3348
3349       begin
3350          Find_Discrete_Value : while Present (Variant) loop
3351             Discrete_Choice := First (Discrete_Choices (Variant));
3352             while Present (Discrete_Choice) loop
3353
3354                exit Find_Discrete_Value when
3355                  Nkind (Discrete_Choice) = N_Others_Choice;
3356
3357                Get_Index_Bounds (Discrete_Choice, Low, High);
3358
3359                UI_Low  := Expr_Value (Low);
3360                UI_High := Expr_Value (High);
3361
3362                exit Find_Discrete_Value when
3363                  UI_Low <= UI_Discrim_Value
3364                    and then
3365                  UI_High >= UI_Discrim_Value;
3366
3367                Next (Discrete_Choice);
3368             end loop;
3369
3370             Next_Non_Pragma (Variant);
3371          end loop Find_Discrete_Value;
3372       end Search_For_Discriminant_Value;
3373
3374       if No (Variant) then
3375          Error_Msg_NE
3376            ("value of discriminant & is out of range", Discrim_Value, Discrim);
3377          Report_Errors := True;
3378          return;
3379       end  if;
3380
3381       --  If we have found the corresponding choice, recursively add its
3382       --  components to the Into list.
3383
3384       Gather_Components (Empty,
3385         Component_List (Variant), Governed_By, Into, Report_Errors);
3386    end Gather_Components;
3387
3388    ------------------------
3389    -- Get_Actual_Subtype --
3390    ------------------------
3391
3392    function Get_Actual_Subtype (N : Node_Id) return Entity_Id is
3393       Typ  : constant Entity_Id := Etype (N);
3394       Utyp : Entity_Id := Underlying_Type (Typ);
3395       Decl : Node_Id;
3396       Atyp : Entity_Id;
3397
3398    begin
3399       if No (Utyp) then
3400          Utyp := Typ;
3401       end if;
3402
3403       --  If what we have is an identifier that references a subprogram
3404       --  formal, or a variable or constant object, then we get the actual
3405       --  subtype from the referenced entity if one has been built.
3406
3407       if Nkind (N) = N_Identifier
3408         and then
3409           (Is_Formal (Entity (N))
3410             or else Ekind (Entity (N)) = E_Constant
3411             or else Ekind (Entity (N)) = E_Variable)
3412         and then Present (Actual_Subtype (Entity (N)))
3413       then
3414          return Actual_Subtype (Entity (N));
3415
3416       --  Actual subtype of unchecked union is always itself. We never need
3417       --  the "real" actual subtype. If we did, we couldn't get it anyway
3418       --  because the discriminant is not available. The restrictions on
3419       --  Unchecked_Union are designed to make sure that this is OK.
3420
3421       elsif Is_Unchecked_Union (Base_Type (Utyp)) then
3422          return Typ;
3423
3424       --  Here for the unconstrained case, we must find actual subtype
3425       --  No actual subtype is available, so we must build it on the fly.
3426
3427       --  Checking the type, not the underlying type, for constrainedness
3428       --  seems to be necessary. Maybe all the tests should be on the type???
3429
3430       elsif (not Is_Constrained (Typ))
3431            and then (Is_Array_Type (Utyp)
3432                       or else (Is_Record_Type (Utyp)
3433                                 and then Has_Discriminants (Utyp)))
3434            and then not Has_Unknown_Discriminants (Utyp)
3435            and then not (Ekind (Utyp) = E_String_Literal_Subtype)
3436       then
3437          --  Nothing to do if in spec expression (why not???)
3438
3439          if In_Spec_Expression then
3440             return Typ;
3441
3442          elsif Is_Private_Type (Typ)
3443            and then not Has_Discriminants (Typ)
3444          then
3445             --  If the type has no discriminants, there is no subtype to
3446             --  build, even if the underlying type is discriminated.
3447
3448             return Typ;
3449
3450          --  Else build the actual subtype
3451
3452          else
3453             Decl := Build_Actual_Subtype (Typ, N);
3454             Atyp := Defining_Identifier (Decl);
3455
3456             --  If Build_Actual_Subtype generated a new declaration then use it
3457
3458             if Atyp /= Typ then
3459
3460                --  The actual subtype is an Itype, so analyze the declaration,
3461                --  but do not attach it to the tree, to get the type defined.
3462
3463                Set_Parent (Decl, N);
3464                Set_Is_Itype (Atyp);
3465                Analyze (Decl, Suppress => All_Checks);
3466                Set_Associated_Node_For_Itype (Atyp, N);
3467                Set_Has_Delayed_Freeze (Atyp, False);
3468
3469                --  We need to freeze the actual subtype immediately. This is
3470                --  needed, because otherwise this Itype will not get frozen
3471                --  at all, and it is always safe to freeze on creation because
3472                --  any associated types must be frozen at this point.
3473
3474                Freeze_Itype (Atyp, N);
3475                return Atyp;
3476
3477             --  Otherwise we did not build a declaration, so return original
3478
3479             else
3480                return Typ;
3481             end if;
3482          end if;
3483
3484       --  For all remaining cases, the actual subtype is the same as
3485       --  the nominal type.
3486
3487       else
3488          return Typ;
3489       end if;
3490    end Get_Actual_Subtype;
3491
3492    -------------------------------------
3493    -- Get_Actual_Subtype_If_Available --
3494    -------------------------------------
3495
3496    function Get_Actual_Subtype_If_Available (N : Node_Id) return Entity_Id is
3497       Typ  : constant Entity_Id := Etype (N);
3498
3499    begin
3500       --  If what we have is an identifier that references a subprogram
3501       --  formal, or a variable or constant object, then we get the actual
3502       --  subtype from the referenced entity if one has been built.
3503
3504       if Nkind (N) = N_Identifier
3505         and then
3506           (Is_Formal (Entity (N))
3507             or else Ekind (Entity (N)) = E_Constant
3508             or else Ekind (Entity (N)) = E_Variable)
3509         and then Present (Actual_Subtype (Entity (N)))
3510       then
3511          return Actual_Subtype (Entity (N));
3512
3513       --  Otherwise the Etype of N is returned unchanged
3514
3515       else
3516          return Typ;
3517       end if;
3518    end Get_Actual_Subtype_If_Available;
3519
3520    -------------------------------
3521    -- Get_Default_External_Name --
3522    -------------------------------
3523
3524    function Get_Default_External_Name (E : Node_Or_Entity_Id) return Node_Id is
3525    begin
3526       Get_Decoded_Name_String (Chars (E));
3527
3528       if Opt.External_Name_Imp_Casing = Uppercase then
3529          Set_Casing (All_Upper_Case);
3530       else
3531          Set_Casing (All_Lower_Case);
3532       end if;
3533
3534       return
3535         Make_String_Literal (Sloc (E),
3536           Strval => String_From_Name_Buffer);
3537    end Get_Default_External_Name;
3538
3539    ---------------------------
3540    -- Get_Enum_Lit_From_Pos --
3541    ---------------------------
3542
3543    function Get_Enum_Lit_From_Pos
3544      (T   : Entity_Id;
3545       Pos : Uint;
3546       Loc : Source_Ptr) return Node_Id
3547    is
3548       Lit : Node_Id;
3549
3550    begin
3551       --  In the case where the literal is of type Character, Wide_Character
3552       --  or Wide_Wide_Character or of a type derived from them, there needs
3553       --  to be some special handling since there is no explicit chain of
3554       --  literals to search. Instead, an N_Character_Literal node is created
3555       --  with the appropriate Char_Code and Chars fields.
3556
3557       if Is_Standard_Character_Type (T) then
3558          Set_Character_Literal_Name (UI_To_CC (Pos));
3559          return
3560            Make_Character_Literal (Loc,
3561              Chars              => Name_Find,
3562              Char_Literal_Value => Pos);
3563
3564       --  For all other cases, we have a complete table of literals, and
3565       --  we simply iterate through the chain of literal until the one
3566       --  with the desired position value is found.
3567       --
3568
3569       else
3570          Lit := First_Literal (Base_Type (T));
3571          for J in 1 .. UI_To_Int (Pos) loop
3572             Next_Literal (Lit);
3573          end loop;
3574
3575          return New_Occurrence_Of (Lit, Loc);
3576       end if;
3577    end Get_Enum_Lit_From_Pos;
3578
3579    ------------------------
3580    -- Get_Generic_Entity --
3581    ------------------------
3582
3583    function Get_Generic_Entity (N : Node_Id) return Entity_Id is
3584       Ent : constant Entity_Id := Entity (Name (N));
3585    begin
3586       if Present (Renamed_Object (Ent)) then
3587          return Renamed_Object (Ent);
3588       else
3589          return Ent;
3590       end if;
3591    end Get_Generic_Entity;
3592
3593    ----------------------
3594    -- Get_Index_Bounds --
3595    ----------------------
3596
3597    procedure Get_Index_Bounds (N : Node_Id; L, H : out Node_Id) is
3598       Kind : constant Node_Kind := Nkind (N);
3599       R    : Node_Id;
3600
3601    begin
3602       if Kind = N_Range then
3603          L := Low_Bound (N);
3604          H := High_Bound (N);
3605
3606       elsif Kind = N_Subtype_Indication then
3607          R := Range_Expression (Constraint (N));
3608
3609          if R = Error then
3610             L := Error;
3611             H := Error;
3612             return;
3613
3614          else
3615             L := Low_Bound  (Range_Expression (Constraint (N)));
3616             H := High_Bound (Range_Expression (Constraint (N)));
3617          end if;
3618
3619       elsif Is_Entity_Name (N) and then Is_Type (Entity (N)) then
3620          if Error_Posted (Scalar_Range (Entity (N))) then
3621             L := Error;
3622             H := Error;
3623
3624          elsif Nkind (Scalar_Range (Entity (N))) = N_Subtype_Indication then
3625             Get_Index_Bounds (Scalar_Range (Entity (N)), L, H);
3626
3627          else
3628             L := Low_Bound  (Scalar_Range (Entity (N)));
3629             H := High_Bound (Scalar_Range (Entity (N)));
3630          end if;
3631
3632       else
3633          --  N is an expression, indicating a range with one value
3634
3635          L := N;
3636          H := N;
3637       end if;
3638    end Get_Index_Bounds;
3639
3640    ----------------------------------
3641    -- Get_Library_Unit_Name_string --
3642    ----------------------------------
3643
3644    procedure Get_Library_Unit_Name_String (Decl_Node : Node_Id) is
3645       Unit_Name_Id : constant Unit_Name_Type := Get_Unit_Name (Decl_Node);
3646
3647    begin
3648       Get_Unit_Name_String (Unit_Name_Id);
3649
3650       --  Remove seven last character (" (spec)" or " (body)")
3651
3652       Name_Len := Name_Len - 7;
3653       pragma Assert (Name_Buffer (Name_Len + 1) = ' ');
3654    end Get_Library_Unit_Name_String;
3655
3656    ------------------------
3657    -- Get_Name_Entity_Id --
3658    ------------------------
3659
3660    function Get_Name_Entity_Id (Id : Name_Id) return Entity_Id is
3661    begin
3662       return Entity_Id (Get_Name_Table_Info (Id));
3663    end Get_Name_Entity_Id;
3664
3665    -------------------
3666    -- Get_Pragma_Id --
3667    -------------------
3668
3669    function Get_Pragma_Id (N : Node_Id) return Pragma_Id is
3670    begin
3671       return Get_Pragma_Id (Pragma_Name (N));
3672    end Get_Pragma_Id;
3673
3674    ---------------------------
3675    -- Get_Referenced_Object --
3676    ---------------------------
3677
3678    function Get_Referenced_Object (N : Node_Id) return Node_Id is
3679       R : Node_Id;
3680
3681    begin
3682       R := N;
3683       while Is_Entity_Name (R)
3684         and then Present (Renamed_Object (Entity (R)))
3685       loop
3686          R := Renamed_Object (Entity (R));
3687       end loop;
3688
3689       return R;
3690    end Get_Referenced_Object;
3691
3692    ------------------------
3693    -- Get_Renamed_Entity --
3694    ------------------------
3695
3696    function Get_Renamed_Entity (E : Entity_Id) return Entity_Id is
3697       R : Entity_Id;
3698
3699    begin
3700       R := E;
3701       while Present (Renamed_Entity (R)) loop
3702          R := Renamed_Entity (R);
3703       end loop;
3704
3705       return R;
3706    end Get_Renamed_Entity;
3707
3708    -------------------------
3709    -- Get_Subprogram_Body --
3710    -------------------------
3711
3712    function Get_Subprogram_Body (E : Entity_Id) return Node_Id is
3713       Decl : Node_Id;
3714
3715    begin
3716       Decl := Unit_Declaration_Node (E);
3717
3718       if Nkind (Decl) = N_Subprogram_Body then
3719          return Decl;
3720
3721       --  The below comment is bad, because it is possible for
3722       --  Nkind (Decl) to be an N_Subprogram_Body_Stub ???
3723
3724       else           --  Nkind (Decl) = N_Subprogram_Declaration
3725
3726          if Present (Corresponding_Body (Decl)) then
3727             return Unit_Declaration_Node (Corresponding_Body (Decl));
3728
3729          --  Imported subprogram case
3730
3731          else
3732             return Empty;
3733          end if;
3734       end if;
3735    end Get_Subprogram_Body;
3736
3737    ---------------------------
3738    -- Get_Subprogram_Entity --
3739    ---------------------------
3740
3741    function Get_Subprogram_Entity (Nod : Node_Id) return Entity_Id is
3742       Nam  : Node_Id;
3743       Proc : Entity_Id;
3744
3745    begin
3746       if Nkind (Nod) = N_Accept_Statement then
3747          Nam := Entry_Direct_Name (Nod);
3748
3749       --  For an entry call, the prefix of the call is a selected component.
3750       --  Need additional code for internal calls ???
3751
3752       elsif Nkind (Nod) = N_Entry_Call_Statement then
3753          if Nkind (Name (Nod)) = N_Selected_Component then
3754             Nam := Entity (Selector_Name (Name (Nod)));
3755          else
3756             Nam := Empty;
3757          end if;
3758
3759       else
3760          Nam := Name (Nod);
3761       end if;
3762
3763       if Nkind (Nam) = N_Explicit_Dereference then
3764          Proc := Etype (Prefix (Nam));
3765       elsif Is_Entity_Name (Nam) then
3766          Proc := Entity (Nam);
3767       else
3768          return Empty;
3769       end if;
3770
3771       if Is_Object (Proc) then
3772          Proc := Etype (Proc);
3773       end if;
3774
3775       if Ekind (Proc) = E_Access_Subprogram_Type then
3776          Proc := Directly_Designated_Type (Proc);
3777       end if;
3778
3779       if not Is_Subprogram (Proc)
3780         and then Ekind (Proc) /= E_Subprogram_Type
3781       then
3782          return Empty;
3783       else
3784          return Proc;
3785       end if;
3786    end Get_Subprogram_Entity;
3787
3788    -----------------------------
3789    -- Get_Task_Body_Procedure --
3790    -----------------------------
3791
3792    function Get_Task_Body_Procedure (E : Entity_Id) return Node_Id is
3793    begin
3794       --  Note: A task type may be the completion of a private type with
3795       --  discriminants. When performing elaboration checks on a task
3796       --  declaration, the current view of the type may be the private one,
3797       --  and the procedure that holds the body of the task is held in its
3798       --  underlying type.
3799
3800       --  This is an odd function, why not have Task_Body_Procedure do
3801       --  the following digging???
3802
3803       return Task_Body_Procedure (Underlying_Type (Root_Type (E)));
3804    end Get_Task_Body_Procedure;
3805
3806    -----------------------
3807    -- Has_Access_Values --
3808    -----------------------
3809
3810    function Has_Access_Values (T : Entity_Id) return Boolean is
3811       Typ : constant Entity_Id := Underlying_Type (T);
3812
3813    begin
3814       --  Case of a private type which is not completed yet. This can only
3815       --  happen in the case of a generic format type appearing directly, or
3816       --  as a component of the type to which this function is being applied
3817       --  at the top level. Return False in this case, since we certainly do
3818       --  not know that the type contains access types.
3819
3820       if No (Typ) then
3821          return False;
3822
3823       elsif Is_Access_Type (Typ) then
3824          return True;
3825
3826       elsif Is_Array_Type (Typ) then
3827          return Has_Access_Values (Component_Type (Typ));
3828
3829       elsif Is_Record_Type (Typ) then
3830          declare
3831             Comp : Entity_Id;
3832
3833          begin
3834             --  Loop to Check components
3835
3836             Comp := First_Component_Or_Discriminant (Typ);
3837             while Present (Comp) loop
3838
3839                --  Check for access component, tag field does not count, even
3840                --  though it is implemented internally using an access type.
3841
3842                if Has_Access_Values (Etype (Comp))
3843                  and then Chars (Comp) /= Name_uTag
3844                then
3845                   return True;
3846                end if;
3847
3848                Next_Component_Or_Discriminant (Comp);
3849             end loop;
3850          end;
3851
3852          return False;
3853
3854       else
3855          return False;
3856       end if;
3857    end Has_Access_Values;
3858
3859    ------------------------------
3860    -- Has_Compatible_Alignment --
3861    ------------------------------
3862
3863    function Has_Compatible_Alignment
3864      (Obj  : Entity_Id;
3865       Expr : Node_Id) return Alignment_Result
3866    is
3867       function Has_Compatible_Alignment_Internal
3868         (Obj     : Entity_Id;
3869          Expr    : Node_Id;
3870          Default : Alignment_Result) return Alignment_Result;
3871       --  This is the internal recursive function that actually does the work.
3872       --  There is one additional parameter, which says what the result should
3873       --  be if no alignment information is found, and there is no definite
3874       --  indication of compatible alignments. At the outer level, this is set
3875       --  to Unknown, but for internal recursive calls in the case where types
3876       --  are known to be correct, it is set to Known_Compatible.
3877
3878       ---------------------------------------
3879       -- Has_Compatible_Alignment_Internal --
3880       ---------------------------------------
3881
3882       function Has_Compatible_Alignment_Internal
3883         (Obj     : Entity_Id;
3884          Expr    : Node_Id;
3885          Default : Alignment_Result) return Alignment_Result
3886       is
3887          Result : Alignment_Result := Known_Compatible;
3888          --  Holds the current status of the result. Note that once a value of
3889          --  Known_Incompatible is set, it is sticky and does not get changed
3890          --  to Unknown (the value in Result only gets worse as we go along,
3891          --  never better).
3892
3893          Offs : Uint := No_Uint;
3894          --  Set to a factor of the offset from the base object when Expr is a
3895          --  selected or indexed component, based on Component_Bit_Offset and
3896          --  Component_Size respectively. A negative value is used to represent
3897          --  a value which is not known at compile time.
3898
3899          procedure Check_Prefix;
3900          --  Checks the prefix recursively in the case where the expression
3901          --  is an indexed or selected component.
3902
3903          procedure Set_Result (R : Alignment_Result);
3904          --  If R represents a worse outcome (unknown instead of known
3905          --  compatible, or known incompatible), then set Result to R.
3906
3907          ------------------
3908          -- Check_Prefix --
3909          ------------------
3910
3911          procedure Check_Prefix is
3912          begin
3913             --  The subtlety here is that in doing a recursive call to check
3914             --  the prefix, we have to decide what to do in the case where we
3915             --  don't find any specific indication of an alignment problem.
3916
3917             --  At the outer level, we normally set Unknown as the result in
3918             --  this case, since we can only set Known_Compatible if we really
3919             --  know that the alignment value is OK, but for the recursive
3920             --  call, in the case where the types match, and we have not
3921             --  specified a peculiar alignment for the object, we are only
3922             --  concerned about suspicious rep clauses, the default case does
3923             --  not affect us, since the compiler will, in the absence of such
3924             --  rep clauses, ensure that the alignment is correct.
3925
3926             if Default = Known_Compatible
3927               or else
3928                 (Etype (Obj) = Etype (Expr)
3929                   and then (Unknown_Alignment (Obj)
3930                              or else
3931                                Alignment (Obj) = Alignment (Etype (Obj))))
3932             then
3933                Set_Result
3934                  (Has_Compatible_Alignment_Internal
3935                     (Obj, Prefix (Expr), Known_Compatible));
3936
3937             --  In all other cases, we need a full check on the prefix
3938
3939             else
3940                Set_Result
3941                  (Has_Compatible_Alignment_Internal
3942                     (Obj, Prefix (Expr), Unknown));
3943             end if;
3944          end Check_Prefix;
3945
3946          ----------------
3947          -- Set_Result --
3948          ----------------
3949
3950          procedure Set_Result (R : Alignment_Result) is
3951          begin
3952             if R > Result then
3953                Result := R;
3954             end if;
3955          end Set_Result;
3956
3957       --  Start of processing for Has_Compatible_Alignment_Internal
3958
3959       begin
3960          --  If Expr is a selected component, we must make sure there is no
3961          --  potentially troublesome component clause, and that the record is
3962          --  not packed.
3963
3964          if Nkind (Expr) = N_Selected_Component then
3965
3966             --  Packed record always generate unknown alignment
3967
3968             if Is_Packed (Etype (Prefix (Expr))) then
3969                Set_Result (Unknown);
3970             end if;
3971
3972             --  Check prefix and component offset
3973
3974             Check_Prefix;
3975             Offs := Component_Bit_Offset (Entity (Selector_Name (Expr)));
3976
3977          --  If Expr is an indexed component, we must make sure there is no
3978          --  potentially troublesome Component_Size clause and that the array
3979          --  is not bit-packed.
3980
3981          elsif Nkind (Expr) = N_Indexed_Component then
3982             declare
3983                Typ : constant Entity_Id := Etype (Prefix (Expr));
3984                Ind : constant Node_Id   := First_Index (Typ);
3985
3986             begin
3987                --  Bit packed array always generates unknown alignment
3988
3989                if Is_Bit_Packed_Array (Typ) then
3990                   Set_Result (Unknown);
3991                end if;
3992
3993                --  Check prefix and component offset
3994
3995                Check_Prefix;
3996                Offs := Component_Size (Typ);
3997
3998                --  Small optimization: compute the full offset when possible
3999
4000                if Offs /= No_Uint
4001                  and then Offs > Uint_0
4002                  and then Present (Ind)
4003                  and then Nkind (Ind) = N_Range
4004                  and then Compile_Time_Known_Value (Low_Bound (Ind))
4005                  and then Compile_Time_Known_Value (First (Expressions (Expr)))
4006                then
4007                   Offs := Offs * (Expr_Value (First (Expressions (Expr)))
4008                                     - Expr_Value (Low_Bound ((Ind))));
4009                end if;
4010             end;
4011          end if;
4012
4013          --  If we have a null offset, the result is entirely determined by
4014          --  the base object and has already been computed recursively.
4015
4016          if Offs = Uint_0 then
4017             null;
4018
4019          --  Case where we know the alignment of the object
4020
4021          elsif Known_Alignment (Obj) then
4022             declare
4023                ObjA : constant Uint := Alignment (Obj);
4024                ExpA : Uint          := No_Uint;
4025                SizA : Uint          := No_Uint;
4026
4027             begin
4028                --  If alignment of Obj is 1, then we are always OK
4029
4030                if ObjA = 1 then
4031                   Set_Result (Known_Compatible);
4032
4033                --  Alignment of Obj is greater than 1, so we need to check
4034
4035                else
4036                   --  If we have an offset, see if it is compatible
4037
4038                   if Offs /= No_Uint and Offs > Uint_0 then
4039                      if Offs mod (System_Storage_Unit * ObjA) /= 0 then
4040                         Set_Result (Known_Incompatible);
4041                      end if;
4042
4043                      --  See if Expr is an object with known alignment
4044
4045                   elsif Is_Entity_Name (Expr)
4046                     and then Known_Alignment (Entity (Expr))
4047                   then
4048                      ExpA := Alignment (Entity (Expr));
4049
4050                      --  Otherwise, we can use the alignment of the type of
4051                      --  Expr given that we already checked for
4052                      --  discombobulating rep clauses for the cases of indexed
4053                      --  and selected components above.
4054
4055                   elsif Known_Alignment (Etype (Expr)) then
4056                      ExpA := Alignment (Etype (Expr));
4057
4058                      --  Otherwise the alignment is unknown
4059
4060                   else
4061                      Set_Result (Default);
4062                   end if;
4063
4064                   --  If we got an alignment, see if it is acceptable
4065
4066                   if ExpA /= No_Uint and then ExpA < ObjA then
4067                      Set_Result (Known_Incompatible);
4068                   end if;
4069
4070                   --  If Expr is not a piece of a larger object, see if size
4071                   --  is given. If so, check that it is not too small for the
4072                   --  required alignment.
4073
4074                   if Offs /= No_Uint then
4075                      null;
4076
4077                      --  See if Expr is an object with known size
4078
4079                   elsif Is_Entity_Name (Expr)
4080                     and then Known_Static_Esize (Entity (Expr))
4081                   then
4082                      SizA := Esize (Entity (Expr));
4083
4084                      --  Otherwise, we check the object size of the Expr type
4085
4086                   elsif Known_Static_Esize (Etype (Expr)) then
4087                      SizA := Esize (Etype (Expr));
4088                   end if;
4089
4090                   --  If we got a size, see if it is a multiple of the Obj
4091                   --  alignment, if not, then the alignment cannot be
4092                   --  acceptable, since the size is always a multiple of the
4093                   --  alignment.
4094
4095                   if SizA /= No_Uint then
4096                      if SizA mod (ObjA * Ttypes.System_Storage_Unit) /= 0 then
4097                         Set_Result (Known_Incompatible);
4098                      end if;
4099                   end if;
4100                end if;
4101             end;
4102
4103          --  If we do not know required alignment, any non-zero offset is a
4104          --  potential problem (but certainly may be OK, so result is unknown).
4105
4106          elsif Offs /= No_Uint then
4107             Set_Result (Unknown);
4108
4109          --  If we can't find the result by direct comparison of alignment
4110          --  values, then there is still one case that we can determine known
4111          --  result, and that is when we can determine that the types are the
4112          --  same, and no alignments are specified. Then we known that the
4113          --  alignments are compatible, even if we don't know the alignment
4114          --  value in the front end.
4115
4116          elsif Etype (Obj) = Etype (Expr) then
4117
4118             --  Types are the same, but we have to check for possible size
4119             --  and alignments on the Expr object that may make the alignment
4120             --  different, even though the types are the same.
4121
4122             if Is_Entity_Name (Expr) then
4123
4124                --  First check alignment of the Expr object. Any alignment less
4125                --  than Maximum_Alignment is worrisome since this is the case
4126                --  where we do not know the alignment of Obj.
4127
4128                if Known_Alignment (Entity (Expr))
4129                  and then
4130                    UI_To_Int (Alignment (Entity (Expr))) <
4131                                                     Ttypes.Maximum_Alignment
4132                then
4133                   Set_Result (Unknown);
4134
4135                   --  Now check size of Expr object. Any size that is not an
4136                   --  even multiple of Maximum_Alignment is also worrisome
4137                   --  since it may cause the alignment of the object to be less
4138                   --  than the alignment of the type.
4139
4140                elsif Known_Static_Esize (Entity (Expr))
4141                  and then
4142                    (UI_To_Int (Esize (Entity (Expr))) mod
4143                      (Ttypes.Maximum_Alignment * Ttypes.System_Storage_Unit))
4144                                                                         /= 0
4145                then
4146                   Set_Result (Unknown);
4147
4148                   --  Otherwise same type is decisive
4149
4150                else
4151                   Set_Result (Known_Compatible);
4152                end if;
4153             end if;
4154
4155          --  Another case to deal with is when there is an explicit size or
4156          --  alignment clause when the types are not the same. If so, then the
4157          --  result is Unknown. We don't need to do this test if the Default is
4158          --  Unknown, since that result will be set in any case.
4159
4160          elsif Default /= Unknown
4161            and then (Has_Size_Clause      (Etype (Expr))
4162                       or else
4163                      Has_Alignment_Clause (Etype (Expr)))
4164          then
4165             Set_Result (Unknown);
4166
4167          --  If no indication found, set default
4168
4169          else
4170             Set_Result (Default);
4171          end if;
4172
4173          --  Return worst result found
4174
4175          return Result;
4176       end Has_Compatible_Alignment_Internal;
4177
4178    --  Start of processing for Has_Compatible_Alignment
4179
4180    begin
4181       --  If Obj has no specified alignment, then set alignment from the type
4182       --  alignment. Perhaps we should always do this, but for sure we should
4183       --  do it when there is an address clause since we can do more if the
4184       --  alignment is known.
4185
4186       if Unknown_Alignment (Obj) then
4187          Set_Alignment (Obj, Alignment (Etype (Obj)));
4188       end if;
4189
4190       --  Now do the internal call that does all the work
4191
4192       return Has_Compatible_Alignment_Internal (Obj, Expr, Unknown);
4193    end Has_Compatible_Alignment;
4194
4195    ----------------------
4196    -- Has_Declarations --
4197    ----------------------
4198
4199    function Has_Declarations (N : Node_Id) return Boolean is
4200    begin
4201       return Nkind_In (Nkind (N), N_Accept_Statement,
4202                                   N_Block_Statement,
4203                                   N_Compilation_Unit_Aux,
4204                                   N_Entry_Body,
4205                                   N_Package_Body,
4206                                   N_Protected_Body,
4207                                   N_Subprogram_Body,
4208                                   N_Task_Body,
4209                                   N_Package_Specification);
4210    end Has_Declarations;
4211
4212    -------------------------------------------
4213    -- Has_Discriminant_Dependent_Constraint --
4214    -------------------------------------------
4215
4216    function Has_Discriminant_Dependent_Constraint
4217      (Comp : Entity_Id) return Boolean
4218    is
4219       Comp_Decl  : constant Node_Id := Parent (Comp);
4220       Subt_Indic : constant Node_Id :=
4221                      Subtype_Indication (Component_Definition (Comp_Decl));
4222       Constr     : Node_Id;
4223       Assn       : Node_Id;
4224
4225    begin
4226       if Nkind (Subt_Indic) = N_Subtype_Indication then
4227          Constr := Constraint (Subt_Indic);
4228
4229          if Nkind (Constr) = N_Index_Or_Discriminant_Constraint then
4230             Assn := First (Constraints (Constr));
4231             while Present (Assn) loop
4232                case Nkind (Assn) is
4233                   when N_Subtype_Indication |
4234                        N_Range              |
4235                        N_Identifier
4236                   =>
4237                      if Depends_On_Discriminant (Assn) then
4238                         return True;
4239                      end if;
4240
4241                   when N_Discriminant_Association =>
4242                      if Depends_On_Discriminant (Expression (Assn)) then
4243                         return True;
4244                      end if;
4245
4246                   when others =>
4247                      null;
4248
4249                end case;
4250
4251                Next (Assn);
4252             end loop;
4253          end if;
4254       end if;
4255
4256       return False;
4257    end Has_Discriminant_Dependent_Constraint;
4258
4259    --------------------
4260    -- Has_Infinities --
4261    --------------------
4262
4263    function Has_Infinities (E : Entity_Id) return Boolean is
4264    begin
4265       return
4266         Is_Floating_Point_Type (E)
4267           and then Nkind (Scalar_Range (E)) = N_Range
4268           and then Includes_Infinities (Scalar_Range (E));
4269    end Has_Infinities;
4270
4271    --------------------
4272    -- Has_Interfaces --
4273    --------------------
4274
4275    function Has_Interfaces
4276      (T             : Entity_Id;
4277       Use_Full_View : Boolean := True) return Boolean
4278    is
4279       Typ : Entity_Id;
4280
4281    begin
4282       --  Handle concurrent types
4283
4284       if Is_Concurrent_Type (T) then
4285          Typ := Corresponding_Record_Type (T);
4286       else
4287          Typ := T;
4288       end if;
4289
4290       if not Present (Typ)
4291         or else not Is_Record_Type (Typ)
4292         or else not Is_Tagged_Type (Typ)
4293       then
4294          return False;
4295       end if;
4296
4297       --  Handle private types
4298
4299       if Use_Full_View
4300         and then Present (Full_View (Typ))
4301       then
4302          Typ := Full_View (Typ);
4303       end if;
4304
4305       --  Handle concurrent record types
4306
4307       if Is_Concurrent_Record_Type (Typ)
4308         and then Is_Non_Empty_List (Abstract_Interface_List (Typ))
4309       then
4310          return True;
4311       end if;
4312
4313       loop
4314          if Is_Interface (Typ)
4315            or else
4316              (Is_Record_Type (Typ)
4317                and then Present (Interfaces (Typ))
4318                and then not Is_Empty_Elmt_List (Interfaces (Typ)))
4319          then
4320             return True;
4321          end if;
4322
4323          exit when Etype (Typ) = Typ
4324
4325             --  Handle private types
4326
4327             or else (Present (Full_View (Etype (Typ)))
4328                        and then Full_View (Etype (Typ)) = Typ)
4329
4330             --  Protect the frontend against wrong source with cyclic
4331             --  derivations
4332
4333             or else Etype (Typ) = T;
4334
4335          --  Climb to the ancestor type handling private types
4336
4337          if Present (Full_View (Etype (Typ))) then
4338             Typ := Full_View (Etype (Typ));
4339          else
4340             Typ := Etype (Typ);
4341          end if;
4342       end loop;
4343
4344       return False;
4345    end Has_Interfaces;
4346
4347    ------------------------
4348    -- Has_Null_Exclusion --
4349    ------------------------
4350
4351    function Has_Null_Exclusion (N : Node_Id) return Boolean is
4352    begin
4353       case Nkind (N) is
4354          when N_Access_Definition               |
4355               N_Access_Function_Definition      |
4356               N_Access_Procedure_Definition     |
4357               N_Access_To_Object_Definition     |
4358               N_Allocator                       |
4359               N_Derived_Type_Definition         |
4360               N_Function_Specification          |
4361               N_Subtype_Declaration             =>
4362             return Null_Exclusion_Present (N);
4363
4364          when N_Component_Definition            |
4365               N_Formal_Object_Declaration       |
4366               N_Object_Renaming_Declaration     =>
4367             if Present (Subtype_Mark (N)) then
4368                return Null_Exclusion_Present (N);
4369             else pragma Assert (Present (Access_Definition (N)));
4370                return Null_Exclusion_Present (Access_Definition (N));
4371             end if;
4372
4373          when N_Discriminant_Specification =>
4374             if Nkind (Discriminant_Type (N)) = N_Access_Definition then
4375                return Null_Exclusion_Present (Discriminant_Type (N));
4376             else
4377                return Null_Exclusion_Present (N);
4378             end if;
4379
4380          when N_Object_Declaration =>
4381             if Nkind (Object_Definition (N)) = N_Access_Definition then
4382                return Null_Exclusion_Present (Object_Definition (N));
4383             else
4384                return Null_Exclusion_Present (N);
4385             end if;
4386
4387          when N_Parameter_Specification =>
4388             if Nkind (Parameter_Type (N)) = N_Access_Definition then
4389                return Null_Exclusion_Present (Parameter_Type (N));
4390             else
4391                return Null_Exclusion_Present (N);
4392             end if;
4393
4394          when others =>
4395             return False;
4396
4397       end case;
4398    end Has_Null_Exclusion;
4399
4400    ------------------------
4401    -- Has_Null_Extension --
4402    ------------------------
4403
4404    function Has_Null_Extension (T : Entity_Id) return Boolean is
4405       B     : constant Entity_Id := Base_Type (T);
4406       Comps : Node_Id;
4407       Ext   : Node_Id;
4408
4409    begin
4410       if Nkind (Parent (B)) = N_Full_Type_Declaration
4411         and then Present (Record_Extension_Part (Type_Definition (Parent (B))))
4412       then
4413          Ext := Record_Extension_Part (Type_Definition (Parent (B)));
4414
4415          if Present (Ext) then
4416             if Null_Present (Ext) then
4417                return True;
4418             else
4419                Comps := Component_List (Ext);
4420
4421                --  The null component list is rewritten during analysis to
4422                --  include the parent component. Any other component indicates
4423                --  that the extension was not originally null.
4424
4425                return Null_Present (Comps)
4426                  or else No (Next (First (Component_Items (Comps))));
4427             end if;
4428          else
4429             return False;
4430          end if;
4431
4432       else
4433          return False;
4434       end if;
4435    end Has_Null_Extension;
4436
4437    -------------------------------
4438    -- Has_Overriding_Initialize --
4439    -------------------------------
4440
4441    function Has_Overriding_Initialize (T : Entity_Id) return Boolean is
4442       BT   : constant Entity_Id := Base_Type (T);
4443       Comp : Entity_Id;
4444       P    : Elmt_Id;
4445
4446    begin
4447       if Is_Controlled (BT) then
4448
4449          --  For derived types, check immediate ancestor, excluding
4450          --  Controlled itself.
4451
4452          if Is_Derived_Type (BT)
4453            and then not In_Predefined_Unit (Etype (BT))
4454            and then Has_Overriding_Initialize (Etype (BT))
4455          then
4456             return True;
4457
4458          elsif Present (Primitive_Operations (BT)) then
4459             P := First_Elmt (Primitive_Operations (BT));
4460             while Present (P) loop
4461                if Chars (Node (P)) = Name_Initialize
4462                  and then Comes_From_Source (Node (P))
4463                then
4464                   return True;
4465                end if;
4466
4467                Next_Elmt (P);
4468             end loop;
4469          end if;
4470
4471          return False;
4472
4473       elsif Has_Controlled_Component (BT) then
4474          Comp := First_Component (BT);
4475          while Present (Comp) loop
4476             if Has_Overriding_Initialize (Etype (Comp)) then
4477                return True;
4478             end if;
4479
4480             Next_Component (Comp);
4481          end loop;
4482
4483          return False;
4484
4485       else
4486          return False;
4487       end if;
4488    end Has_Overriding_Initialize;
4489
4490    --------------------------------------
4491    -- Has_Preelaborable_Initialization --
4492    --------------------------------------
4493
4494    function Has_Preelaborable_Initialization (E : Entity_Id) return Boolean is
4495       Has_PE : Boolean;
4496
4497       procedure Check_Components (E : Entity_Id);
4498       --  Check component/discriminant chain, sets Has_PE False if a component
4499       --  or discriminant does not meet the preelaborable initialization rules.
4500
4501       ----------------------
4502       -- Check_Components --
4503       ----------------------
4504
4505       procedure Check_Components (E : Entity_Id) is
4506          Ent : Entity_Id;
4507          Exp : Node_Id;
4508
4509          function Is_Preelaborable_Expression (N : Node_Id) return Boolean;
4510          --  Returns True if and only if the expression denoted by N does not
4511          --  violate restrictions on preelaborable constructs (RM-10.2.1(5-9)).
4512
4513          ---------------------------------
4514          -- Is_Preelaborable_Expression --
4515          ---------------------------------
4516
4517          function Is_Preelaborable_Expression (N : Node_Id) return Boolean is
4518             Exp           : Node_Id;
4519             Assn          : Node_Id;
4520             Choice        : Node_Id;
4521             Comp_Type     : Entity_Id;
4522             Is_Array_Aggr : Boolean;
4523
4524          begin
4525             if Is_Static_Expression (N) then
4526                return True;
4527
4528             elsif Nkind (N) = N_Null then
4529                return True;
4530
4531             --  Attributes are allowed in general, even if their prefix is a
4532             --  formal type. (It seems that certain attributes known not to be
4533             --  static might not be allowed, but there are no rules to prevent
4534             --  them.)
4535
4536             elsif Nkind (N) = N_Attribute_Reference then
4537                return True;
4538
4539             --  The name of a discriminant evaluated within its parent type is
4540             --  defined to be preelaborable (10.2.1(8)). Note that we test for
4541             --  names that denote discriminals as well as discriminants to
4542             --  catch references occurring within init procs.
4543
4544             elsif Is_Entity_Name (N)
4545               and then
4546                 (Ekind (Entity (N)) = E_Discriminant
4547                   or else
4548                     ((Ekind (Entity (N)) = E_Constant
4549                        or else Ekind (Entity (N)) = E_In_Parameter)
4550                      and then Present (Discriminal_Link (Entity (N)))))
4551             then
4552                return True;
4553
4554             elsif Nkind (N) = N_Qualified_Expression then
4555                return Is_Preelaborable_Expression (Expression (N));
4556
4557             --  For aggregates we have to check that each of the associations
4558             --  is preelaborable.
4559
4560             elsif Nkind (N) = N_Aggregate
4561               or else Nkind (N) = N_Extension_Aggregate
4562             then
4563                Is_Array_Aggr := Is_Array_Type (Etype (N));
4564
4565                if Is_Array_Aggr then
4566                   Comp_Type := Component_Type (Etype (N));
4567                end if;
4568
4569                --  Check the ancestor part of extension aggregates, which must
4570                --  be either the name of a type that has preelaborable init or
4571                --  an expression that is preelaborable.
4572
4573                if Nkind (N) = N_Extension_Aggregate then
4574                   declare
4575                      Anc_Part : constant Node_Id := Ancestor_Part (N);
4576
4577                   begin
4578                      if Is_Entity_Name (Anc_Part)
4579                        and then Is_Type (Entity (Anc_Part))
4580                      then
4581                         if not Has_Preelaborable_Initialization
4582                                  (Entity (Anc_Part))
4583                         then
4584                            return False;
4585                         end if;
4586
4587                      elsif not Is_Preelaborable_Expression (Anc_Part) then
4588                         return False;
4589                      end if;
4590                   end;
4591                end if;
4592
4593                --  Check positional associations
4594
4595                Exp := First (Expressions (N));
4596                while Present (Exp) loop
4597                   if not Is_Preelaborable_Expression (Exp) then
4598                      return False;
4599                   end if;
4600
4601                   Next (Exp);
4602                end loop;
4603
4604                --  Check named associations
4605
4606                Assn := First (Component_Associations (N));
4607                while Present (Assn) loop
4608                   Choice := First (Choices (Assn));
4609                   while Present (Choice) loop
4610                      if Is_Array_Aggr then
4611                         if Nkind (Choice) = N_Others_Choice then
4612                            null;
4613
4614                         elsif Nkind (Choice) = N_Range then
4615                            if not Is_Static_Range (Choice) then
4616                               return False;
4617                            end if;
4618
4619                         elsif not Is_Static_Expression (Choice) then
4620                            return False;
4621                         end if;
4622
4623                      else
4624                         Comp_Type := Etype (Choice);
4625                      end if;
4626
4627                      Next (Choice);
4628                   end loop;
4629
4630                   --  If the association has a <> at this point, then we have
4631                   --  to check whether the component's type has preelaborable
4632                   --  initialization. Note that this only occurs when the
4633                   --  association's corresponding component does not have a
4634                   --  default expression, the latter case having already been
4635                   --  expanded as an expression for the association.
4636
4637                   if Box_Present (Assn) then
4638                      if not Has_Preelaborable_Initialization (Comp_Type) then
4639                         return False;
4640                      end if;
4641
4642                   --  In the expression case we check whether the expression
4643                   --  is preelaborable.
4644
4645                   elsif
4646                     not Is_Preelaborable_Expression (Expression (Assn))
4647                   then
4648                      return False;
4649                   end if;
4650
4651                   Next (Assn);
4652                end loop;
4653
4654                --  If we get here then aggregate as a whole is preelaborable
4655
4656                return True;
4657
4658             --  All other cases are not preelaborable
4659
4660             else
4661                return False;
4662             end if;
4663          end Is_Preelaborable_Expression;
4664
4665       --  Start of processing for Check_Components
4666
4667       begin
4668          --  Loop through entities of record or protected type
4669
4670          Ent := E;
4671          while Present (Ent) loop
4672
4673             --  We are interested only in components and discriminants
4674
4675             if Ekind (Ent) = E_Component
4676                 or else
4677                Ekind (Ent) = E_Discriminant
4678             then
4679                --  Get default expression if any. If there is no declaration
4680                --  node, it means we have an internal entity. The parent and
4681                --  tag fields are examples of such entities. For these cases,
4682                --  we just test the type of the entity.
4683
4684                if Present (Declaration_Node (Ent)) then
4685                   Exp := Expression (Declaration_Node (Ent));
4686                else
4687                   Exp := Empty;
4688                end if;
4689
4690                --  A component has PI if it has no default expression and the
4691                --  component type has PI.
4692
4693                if No (Exp) then
4694                   if not Has_Preelaborable_Initialization (Etype (Ent)) then
4695                      Has_PE := False;
4696                      exit;
4697                   end if;
4698
4699                --  Require the default expression to be preelaborable
4700
4701                elsif not Is_Preelaborable_Expression (Exp) then
4702                   Has_PE := False;
4703                   exit;
4704                end if;
4705             end if;
4706
4707             Next_Entity (Ent);
4708          end loop;
4709       end Check_Components;
4710
4711    --  Start of processing for Has_Preelaborable_Initialization
4712
4713    begin
4714       --  Immediate return if already marked as known preelaborable init. This
4715       --  covers types for which this function has already been called once
4716       --  and returned True (in which case the result is cached), and also
4717       --  types to which a pragma Preelaborable_Initialization applies.
4718
4719       if Known_To_Have_Preelab_Init (E) then
4720          return True;
4721       end if;
4722
4723       --  If the type is a subtype representing a generic actual type, then
4724       --  test whether its base type has preelaborable initialization since
4725       --  the subtype representing the actual does not inherit this attribute
4726       --  from the actual or formal. (but maybe it should???)
4727
4728       if Is_Generic_Actual_Type (E) then
4729          return Has_Preelaborable_Initialization (Base_Type (E));
4730       end if;
4731
4732       --  All elementary types have preelaborable initialization
4733
4734       if Is_Elementary_Type (E) then
4735          Has_PE := True;
4736
4737       --  Array types have PI if the component type has PI
4738
4739       elsif Is_Array_Type (E) then
4740          Has_PE := Has_Preelaborable_Initialization (Component_Type (E));
4741
4742       --  A derived type has preelaborable initialization if its parent type
4743       --  has preelaborable initialization and (in the case of a derived record
4744       --  extension) if the non-inherited components all have preelaborable
4745       --  initialization. However, a user-defined controlled type with an
4746       --  overriding Initialize procedure does not have preelaborable
4747       --  initialization.
4748
4749       elsif Is_Derived_Type (E) then
4750
4751          --  If the derived type is a private extension then it doesn't have
4752          --  preelaborable initialization.
4753
4754          if Ekind (Base_Type (E)) = E_Record_Type_With_Private then
4755             return False;
4756          end if;
4757
4758          --  First check whether ancestor type has preelaborable initialization
4759
4760          Has_PE := Has_Preelaborable_Initialization (Etype (Base_Type (E)));
4761
4762          --  If OK, check extension components (if any)
4763
4764          if Has_PE and then Is_Record_Type (E) then
4765             Check_Components (First_Entity (E));
4766          end if;
4767
4768          --  Check specifically for 10.2.1(11.4/2) exception: a controlled type
4769          --  with a user defined Initialize procedure does not have PI.
4770
4771          if Has_PE
4772            and then Is_Controlled (E)
4773            and then Has_Overriding_Initialize (E)
4774          then
4775             Has_PE := False;
4776          end if;
4777
4778       --  Private types not derived from a type having preelaborable init and
4779       --  that are not marked with pragma Preelaborable_Initialization do not
4780       --  have preelaborable initialization.
4781
4782       elsif Is_Private_Type (E) then
4783          return False;
4784
4785       --  Record type has PI if it is non private and all components have PI
4786
4787       elsif Is_Record_Type (E) then
4788          Has_PE := True;
4789          Check_Components (First_Entity (E));
4790
4791       --  Protected types must not have entries, and components must meet
4792       --  same set of rules as for record components.
4793
4794       elsif Is_Protected_Type (E) then
4795          if Has_Entries (E) then
4796             Has_PE := False;
4797          else
4798             Has_PE := True;
4799             Check_Components (First_Entity (E));
4800             Check_Components (First_Private_Entity (E));
4801          end if;
4802
4803       --  Type System.Address always has preelaborable initialization
4804
4805       elsif Is_RTE (E, RE_Address) then
4806          Has_PE := True;
4807
4808       --  In all other cases, type does not have preelaborable initialization
4809
4810       else
4811          return False;
4812       end if;
4813
4814       --  If type has preelaborable initialization, cache result
4815
4816       if Has_PE then
4817          Set_Known_To_Have_Preelab_Init (E);
4818       end if;
4819
4820       return Has_PE;
4821    end Has_Preelaborable_Initialization;
4822
4823    ---------------------------
4824    -- Has_Private_Component --
4825    ---------------------------
4826
4827    function Has_Private_Component (Type_Id : Entity_Id) return Boolean is
4828       Btype     : Entity_Id := Base_Type (Type_Id);
4829       Component : Entity_Id;
4830
4831    begin
4832       if Error_Posted (Type_Id)
4833         or else Error_Posted (Btype)
4834       then
4835          return False;
4836       end if;
4837
4838       if Is_Class_Wide_Type (Btype) then
4839          Btype := Root_Type (Btype);
4840       end if;
4841
4842       if Is_Private_Type (Btype) then
4843          declare
4844             UT : constant Entity_Id := Underlying_Type (Btype);
4845          begin
4846             if No (UT) then
4847                if No (Full_View (Btype)) then
4848                   return not Is_Generic_Type (Btype)
4849                     and then not Is_Generic_Type (Root_Type (Btype));
4850                else
4851                   return not Is_Generic_Type (Root_Type (Full_View (Btype)));
4852                end if;
4853             else
4854                return not Is_Frozen (UT) and then Has_Private_Component (UT);
4855             end if;
4856          end;
4857
4858       elsif Is_Array_Type (Btype) then
4859          return Has_Private_Component (Component_Type (Btype));
4860
4861       elsif Is_Record_Type (Btype) then
4862          Component := First_Component (Btype);
4863          while Present (Component) loop
4864             if Has_Private_Component (Etype (Component)) then
4865                return True;
4866             end if;
4867
4868             Next_Component (Component);
4869          end loop;
4870
4871          return False;
4872
4873       elsif Is_Protected_Type (Btype)
4874         and then Present (Corresponding_Record_Type (Btype))
4875       then
4876          return Has_Private_Component (Corresponding_Record_Type (Btype));
4877
4878       else
4879          return False;
4880       end if;
4881    end Has_Private_Component;
4882
4883    ----------------
4884    -- Has_Stream --
4885    ----------------
4886
4887    function Has_Stream (T : Entity_Id) return Boolean is
4888       E : Entity_Id;
4889
4890    begin
4891       if No (T) then
4892          return False;
4893
4894       elsif Is_RTE (Root_Type (T), RE_Root_Stream_Type) then
4895          return True;
4896
4897       elsif Is_Array_Type (T) then
4898          return Has_Stream (Component_Type (T));
4899
4900       elsif Is_Record_Type (T) then
4901          E := First_Component (T);
4902          while Present (E) loop
4903             if Has_Stream (Etype (E)) then
4904                return True;
4905             else
4906                Next_Component (E);
4907             end if;
4908          end loop;
4909
4910          return False;
4911
4912       elsif Is_Private_Type (T) then
4913          return Has_Stream (Underlying_Type (T));
4914
4915       else
4916          return False;
4917       end if;
4918    end Has_Stream;
4919
4920    --------------------------
4921    -- Has_Tagged_Component --
4922    --------------------------
4923
4924    function Has_Tagged_Component (Typ : Entity_Id) return Boolean is
4925       Comp : Entity_Id;
4926
4927    begin
4928       if Is_Private_Type (Typ)
4929         and then Present (Underlying_Type (Typ))
4930       then
4931          return Has_Tagged_Component (Underlying_Type (Typ));
4932
4933       elsif Is_Array_Type (Typ) then
4934          return Has_Tagged_Component (Component_Type (Typ));
4935
4936       elsif Is_Tagged_Type (Typ) then
4937          return True;
4938
4939       elsif Is_Record_Type (Typ) then
4940          Comp := First_Component (Typ);
4941          while Present (Comp) loop
4942             if Has_Tagged_Component (Etype (Comp)) then
4943                return True;
4944             end if;
4945
4946             Next_Component (Comp);
4947          end loop;
4948
4949          return False;
4950
4951       else
4952          return False;
4953       end if;
4954    end Has_Tagged_Component;
4955
4956    --------------------------
4957    -- Implements_Interface --
4958    --------------------------
4959
4960    function Implements_Interface
4961      (Typ_Ent         : Entity_Id;
4962       Iface_Ent       : Entity_Id;
4963       Exclude_Parents : Boolean := False) return Boolean
4964    is
4965       Ifaces_List : Elist_Id;
4966       Elmt        : Elmt_Id;
4967       Iface       : Entity_Id := Base_Type (Iface_Ent);
4968       Typ         : Entity_Id := Base_Type (Typ_Ent);
4969
4970    begin
4971       if Is_Class_Wide_Type (Typ) then
4972          Typ := Root_Type (Typ);
4973       end if;
4974
4975       if not Has_Interfaces (Typ) then
4976          return False;
4977       end if;
4978
4979       if Is_Class_Wide_Type (Iface) then
4980          Iface := Root_Type (Iface);
4981       end if;
4982
4983       Collect_Interfaces (Typ, Ifaces_List);
4984
4985       Elmt := First_Elmt (Ifaces_List);
4986       while Present (Elmt) loop
4987          if Is_Ancestor (Node (Elmt), Typ)
4988            and then Exclude_Parents
4989          then
4990             null;
4991
4992          elsif Node (Elmt) = Iface then
4993             return True;
4994          end if;
4995
4996          Next_Elmt (Elmt);
4997       end loop;
4998
4999       return False;
5000    end Implements_Interface;
5001
5002    -----------------
5003    -- In_Instance --
5004    -----------------
5005
5006    function In_Instance return Boolean is
5007       Curr_Unit : constant Entity_Id := Cunit_Entity (Current_Sem_Unit);
5008       S         : Entity_Id;
5009
5010    begin
5011       S := Current_Scope;
5012       while Present (S)
5013         and then S /= Standard_Standard
5014       loop
5015          if (Ekind (S) = E_Function
5016               or else Ekind (S) = E_Package
5017               or else Ekind (S) = E_Procedure)
5018            and then Is_Generic_Instance (S)
5019          then
5020             --  A child instance is always compiled in the context of a parent
5021             --  instance. Nevertheless, the actuals are not analyzed in an
5022             --  instance context. We detect this case by examining the current
5023             --  compilation unit, which must be a child instance, and checking
5024             --  that it is not currently on the scope stack.
5025
5026             if Is_Child_Unit (Curr_Unit)
5027               and then
5028                 Nkind (Unit (Cunit (Current_Sem_Unit)))
5029                   = N_Package_Instantiation
5030               and then not In_Open_Scopes (Curr_Unit)
5031             then
5032                return False;
5033             else
5034                return True;
5035             end if;
5036          end if;
5037
5038          S := Scope (S);
5039       end loop;
5040
5041       return False;
5042    end In_Instance;
5043
5044    ----------------------
5045    -- In_Instance_Body --
5046    ----------------------
5047
5048    function In_Instance_Body return Boolean is
5049       S : Entity_Id;
5050
5051    begin
5052       S := Current_Scope;
5053       while Present (S)
5054         and then S /= Standard_Standard
5055       loop
5056          if (Ekind (S) = E_Function
5057               or else Ekind (S) = E_Procedure)
5058            and then Is_Generic_Instance (S)
5059          then
5060             return True;
5061
5062          elsif Ekind (S) = E_Package
5063            and then In_Package_Body (S)
5064            and then Is_Generic_Instance (S)
5065          then
5066             return True;
5067          end if;
5068
5069          S := Scope (S);
5070       end loop;
5071
5072       return False;
5073    end In_Instance_Body;
5074
5075    -----------------------------
5076    -- In_Instance_Not_Visible --
5077    -----------------------------
5078
5079    function In_Instance_Not_Visible return Boolean is
5080       S : Entity_Id;
5081
5082    begin
5083       S := Current_Scope;
5084       while Present (S)
5085         and then S /= Standard_Standard
5086       loop
5087          if (Ekind (S) = E_Function
5088               or else Ekind (S) = E_Procedure)
5089            and then Is_Generic_Instance (S)
5090          then
5091             return True;
5092
5093          elsif Ekind (S) = E_Package
5094            and then (In_Package_Body (S) or else In_Private_Part (S))
5095            and then Is_Generic_Instance (S)
5096          then
5097             return True;
5098          end if;
5099
5100          S := Scope (S);
5101       end loop;
5102
5103       return False;
5104    end In_Instance_Not_Visible;
5105
5106    ------------------------------
5107    -- In_Instance_Visible_Part --
5108    ------------------------------
5109
5110    function In_Instance_Visible_Part return Boolean is
5111       S : Entity_Id;
5112
5113    begin
5114       S := Current_Scope;
5115       while Present (S)
5116         and then S /= Standard_Standard
5117       loop
5118          if Ekind (S) = E_Package
5119            and then Is_Generic_Instance (S)
5120            and then not In_Package_Body (S)
5121            and then not In_Private_Part (S)
5122          then
5123             return True;
5124          end if;
5125
5126          S := Scope (S);
5127       end loop;
5128
5129       return False;
5130    end In_Instance_Visible_Part;
5131
5132    ---------------------
5133    -- In_Package_Body --
5134    ---------------------
5135
5136    function In_Package_Body return Boolean is
5137       S : Entity_Id;
5138
5139    begin
5140       S := Current_Scope;
5141       while Present (S)
5142         and then S /= Standard_Standard
5143       loop
5144          if Ekind (S) = E_Package
5145            and then In_Package_Body (S)
5146          then
5147             return True;
5148          else
5149             S := Scope (S);
5150          end if;
5151       end loop;
5152
5153       return False;
5154    end In_Package_Body;
5155
5156    --------------------------------
5157    -- In_Parameter_Specification --
5158    --------------------------------
5159
5160    function In_Parameter_Specification (N : Node_Id) return Boolean is
5161       PN : Node_Id;
5162
5163    begin
5164       PN := Parent (N);
5165       while Present (PN) loop
5166          if Nkind (PN) = N_Parameter_Specification then
5167             return True;
5168          end if;
5169
5170          PN := Parent (PN);
5171       end loop;
5172
5173       return False;
5174    end In_Parameter_Specification;
5175
5176    --------------------------------------
5177    -- In_Subprogram_Or_Concurrent_Unit --
5178    --------------------------------------
5179
5180    function In_Subprogram_Or_Concurrent_Unit return Boolean is
5181       E : Entity_Id;
5182       K : Entity_Kind;
5183
5184    begin
5185       --  Use scope chain to check successively outer scopes
5186
5187       E := Current_Scope;
5188       loop
5189          K := Ekind (E);
5190
5191          if K in Subprogram_Kind
5192            or else K in Concurrent_Kind
5193            or else K in Generic_Subprogram_Kind
5194          then
5195             return True;
5196
5197          elsif E = Standard_Standard then
5198             return False;
5199          end if;
5200
5201          E := Scope (E);
5202       end loop;
5203    end In_Subprogram_Or_Concurrent_Unit;
5204
5205    ---------------------
5206    -- In_Visible_Part --
5207    ---------------------
5208
5209    function In_Visible_Part (Scope_Id : Entity_Id) return Boolean is
5210    begin
5211       return
5212         Is_Package_Or_Generic_Package (Scope_Id)
5213           and then In_Open_Scopes (Scope_Id)
5214           and then not In_Package_Body (Scope_Id)
5215           and then not In_Private_Part (Scope_Id);
5216    end In_Visible_Part;
5217
5218    ---------------------------------
5219    -- Insert_Explicit_Dereference --
5220    ---------------------------------
5221
5222    procedure Insert_Explicit_Dereference (N : Node_Id) is
5223       New_Prefix : constant Node_Id := Relocate_Node (N);
5224       Ent        : Entity_Id := Empty;
5225       Pref       : Node_Id;
5226       I          : Interp_Index;
5227       It         : Interp;
5228       T          : Entity_Id;
5229
5230    begin
5231       Save_Interps (N, New_Prefix);
5232       Rewrite (N, Make_Explicit_Dereference (Sloc (N), Prefix => New_Prefix));
5233
5234       Set_Etype (N, Designated_Type (Etype (New_Prefix)));
5235
5236       if Is_Overloaded (New_Prefix) then
5237
5238          --  The dereference is also overloaded, and its interpretations are
5239          --  the designated types of the interpretations of the original node.
5240
5241          Set_Etype (N, Any_Type);
5242
5243          Get_First_Interp (New_Prefix, I, It);
5244          while Present (It.Nam) loop
5245             T := It.Typ;
5246
5247             if Is_Access_Type (T) then
5248                Add_One_Interp (N, Designated_Type (T), Designated_Type (T));
5249             end if;
5250
5251             Get_Next_Interp (I, It);
5252          end loop;
5253
5254          End_Interp_List;
5255
5256       else
5257          --  Prefix is unambiguous: mark the original prefix (which might
5258          --  Come_From_Source) as a reference, since the new (relocated) one
5259          --  won't be taken into account.
5260
5261          if Is_Entity_Name (New_Prefix) then
5262             Ent := Entity (New_Prefix);
5263
5264          --  For a retrieval of a subcomponent of some composite object,
5265          --  retrieve the ultimate entity if there is one.
5266
5267          elsif Nkind (New_Prefix) = N_Selected_Component
5268            or else Nkind (New_Prefix) = N_Indexed_Component
5269          then
5270             Pref := Prefix (New_Prefix);
5271             while Present (Pref)
5272               and then
5273                 (Nkind (Pref) = N_Selected_Component
5274                   or else Nkind (Pref) = N_Indexed_Component)
5275             loop
5276                Pref := Prefix (Pref);
5277             end loop;
5278
5279             if Present (Pref) and then Is_Entity_Name (Pref) then
5280                Ent := Entity (Pref);
5281             end if;
5282          end if;
5283
5284          if Present (Ent) then
5285             Generate_Reference (Ent, New_Prefix);
5286          end if;
5287       end if;
5288    end Insert_Explicit_Dereference;
5289
5290    ------------------------------------------
5291    -- Inspect_Deferred_Constant_Completion --
5292    ------------------------------------------
5293
5294    procedure Inspect_Deferred_Constant_Completion (Decls : List_Id) is
5295       Decl   : Node_Id;
5296
5297    begin
5298       Decl := First (Decls);
5299       while Present (Decl) loop
5300
5301          --  Deferred constant signature
5302
5303          if Nkind (Decl) = N_Object_Declaration
5304            and then Constant_Present (Decl)
5305            and then No (Expression (Decl))
5306
5307             --  No need to check internally generated constants
5308
5309            and then Comes_From_Source (Decl)
5310
5311             --  The constant is not completed. A full object declaration
5312             --  or a pragma Import complete a deferred constant.
5313
5314            and then not Has_Completion (Defining_Identifier (Decl))
5315          then
5316             Error_Msg_N
5317               ("constant declaration requires initialization expression",
5318               Defining_Identifier (Decl));
5319          end if;
5320
5321          Decl := Next (Decl);
5322       end loop;
5323    end Inspect_Deferred_Constant_Completion;
5324
5325    -------------------
5326    -- Is_AAMP_Float --
5327    -------------------
5328
5329    function Is_AAMP_Float (E : Entity_Id) return Boolean is
5330       pragma Assert (Is_Type (E));
5331    begin
5332       return AAMP_On_Target
5333          and then Is_Floating_Point_Type (E)
5334          and then E = Base_Type (E);
5335    end Is_AAMP_Float;
5336
5337    -----------------------------
5338    -- Is_Actual_Out_Parameter --
5339    -----------------------------
5340
5341    function Is_Actual_Out_Parameter (N : Node_Id) return Boolean is
5342       Formal : Entity_Id;
5343       Call   : Node_Id;
5344    begin
5345       Find_Actual (N, Formal, Call);
5346       return Present (Formal)
5347         and then Ekind (Formal) = E_Out_Parameter;
5348    end Is_Actual_Out_Parameter;
5349
5350    -------------------------
5351    -- Is_Actual_Parameter --
5352    -------------------------
5353
5354    function Is_Actual_Parameter (N : Node_Id) return Boolean is
5355       PK : constant Node_Kind := Nkind (Parent (N));
5356
5357    begin
5358       case PK is
5359          when N_Parameter_Association =>
5360             return N = Explicit_Actual_Parameter (Parent (N));
5361
5362          when N_Function_Call | N_Procedure_Call_Statement =>
5363             return Is_List_Member (N)
5364               and then
5365                 List_Containing (N) = Parameter_Associations (Parent (N));
5366
5367          when others =>
5368             return False;
5369       end case;
5370    end Is_Actual_Parameter;
5371
5372    ---------------------
5373    -- Is_Aliased_View --
5374    ---------------------
5375
5376    function Is_Aliased_View (Obj : Node_Id) return Boolean is
5377       E : Entity_Id;
5378
5379    begin
5380       if Is_Entity_Name (Obj) then
5381
5382          E := Entity (Obj);
5383
5384          return
5385            (Is_Object (E)
5386              and then
5387                (Is_Aliased (E)
5388                   or else (Present (Renamed_Object (E))
5389                              and then Is_Aliased_View (Renamed_Object (E)))))
5390
5391            or else ((Is_Formal (E)
5392                       or else Ekind (E) = E_Generic_In_Out_Parameter
5393                       or else Ekind (E) = E_Generic_In_Parameter)
5394                     and then Is_Tagged_Type (Etype (E)))
5395
5396            or else (Is_Concurrent_Type (E)
5397                      and then In_Open_Scopes (E))
5398
5399             --  Current instance of type, either directly or as rewritten
5400             --  reference to the current object.
5401
5402            or else (Is_Entity_Name (Original_Node (Obj))
5403                      and then Present (Entity (Original_Node (Obj)))
5404                      and then Is_Type (Entity (Original_Node (Obj))))
5405
5406            or else (Is_Type (E) and then E = Current_Scope)
5407
5408            or else (Is_Incomplete_Or_Private_Type (E)
5409                      and then Full_View (E) = Current_Scope);
5410
5411       elsif Nkind (Obj) = N_Selected_Component then
5412          return Is_Aliased (Entity (Selector_Name (Obj)));
5413
5414       elsif Nkind (Obj) = N_Indexed_Component then
5415          return Has_Aliased_Components (Etype (Prefix (Obj)))
5416            or else
5417              (Is_Access_Type (Etype (Prefix (Obj)))
5418                and then
5419               Has_Aliased_Components
5420                 (Designated_Type (Etype (Prefix (Obj)))));
5421
5422       elsif Nkind (Obj) = N_Unchecked_Type_Conversion
5423         or else Nkind (Obj) = N_Type_Conversion
5424       then
5425          return Is_Tagged_Type (Etype (Obj))
5426            and then Is_Aliased_View (Expression (Obj));
5427
5428       elsif Nkind (Obj) = N_Explicit_Dereference then
5429          return Nkind (Original_Node (Obj)) /= N_Function_Call;
5430
5431       else
5432          return False;
5433       end if;
5434    end Is_Aliased_View;
5435
5436    -------------------------
5437    -- Is_Ancestor_Package --
5438    -------------------------
5439
5440    function Is_Ancestor_Package
5441      (E1 : Entity_Id;
5442       E2 : Entity_Id) return Boolean
5443    is
5444       Par : Entity_Id;
5445
5446    begin
5447       Par := E2;
5448       while Present (Par)
5449         and then Par /= Standard_Standard
5450       loop
5451          if Par = E1 then
5452             return True;
5453          end if;
5454
5455          Par := Scope (Par);
5456       end loop;
5457
5458       return False;
5459    end Is_Ancestor_Package;
5460
5461    ----------------------
5462    -- Is_Atomic_Object --
5463    ----------------------
5464
5465    function Is_Atomic_Object (N : Node_Id) return Boolean is
5466
5467       function Object_Has_Atomic_Components (N : Node_Id) return Boolean;
5468       --  Determines if given object has atomic components
5469
5470       function Is_Atomic_Prefix (N : Node_Id) return Boolean;
5471       --  If prefix is an implicit dereference, examine designated type
5472
5473       ----------------------
5474       -- Is_Atomic_Prefix --
5475       ----------------------
5476
5477       function Is_Atomic_Prefix (N : Node_Id) return Boolean is
5478       begin
5479          if Is_Access_Type (Etype (N)) then
5480             return
5481               Has_Atomic_Components (Designated_Type (Etype (N)));
5482          else
5483             return Object_Has_Atomic_Components (N);
5484          end if;
5485       end Is_Atomic_Prefix;
5486
5487       ----------------------------------
5488       -- Object_Has_Atomic_Components --
5489       ----------------------------------
5490
5491       function Object_Has_Atomic_Components (N : Node_Id) return Boolean is
5492       begin
5493          if Has_Atomic_Components (Etype (N))
5494            or else Is_Atomic (Etype (N))
5495          then
5496             return True;
5497
5498          elsif Is_Entity_Name (N)
5499            and then (Has_Atomic_Components (Entity (N))
5500                       or else Is_Atomic (Entity (N)))
5501          then
5502             return True;
5503
5504          elsif Nkind (N) = N_Indexed_Component
5505            or else Nkind (N) = N_Selected_Component
5506          then
5507             return Is_Atomic_Prefix (Prefix (N));
5508
5509          else
5510             return False;
5511          end if;
5512       end Object_Has_Atomic_Components;
5513
5514    --  Start of processing for Is_Atomic_Object
5515
5516    begin
5517       if Is_Atomic (Etype (N))
5518         or else (Is_Entity_Name (N) and then Is_Atomic (Entity (N)))
5519       then
5520          return True;
5521
5522       elsif Nkind (N) = N_Indexed_Component
5523         or else Nkind (N) = N_Selected_Component
5524       then
5525          return Is_Atomic_Prefix (Prefix (N));
5526
5527       else
5528          return False;
5529       end if;
5530    end Is_Atomic_Object;
5531
5532    -------------------------
5533    -- Is_Coextension_Root --
5534    -------------------------
5535
5536    function Is_Coextension_Root (N : Node_Id) return Boolean is
5537    begin
5538       return
5539         Nkind (N) = N_Allocator
5540           and then Present (Coextensions (N))
5541
5542          --  Anonymous access discriminants carry a list of all nested
5543          --  controlled coextensions.
5544
5545           and then not Is_Dynamic_Coextension (N)
5546           and then not Is_Static_Coextension (N);
5547    end Is_Coextension_Root;
5548
5549    -----------------------------
5550    -- Is_Concurrent_Interface --
5551    -----------------------------
5552
5553    function Is_Concurrent_Interface (T : Entity_Id) return Boolean is
5554    begin
5555       return
5556         Is_Interface (T)
5557           and then
5558             (Is_Protected_Interface (T)
5559                or else Is_Synchronized_Interface (T)
5560                or else Is_Task_Interface (T));
5561    end Is_Concurrent_Interface;
5562
5563    --------------------------------------
5564    -- Is_Controlling_Limited_Procedure --
5565    --------------------------------------
5566
5567    function Is_Controlling_Limited_Procedure
5568      (Proc_Nam : Entity_Id) return Boolean
5569    is
5570       Param_Typ : Entity_Id := Empty;
5571
5572    begin
5573       if Ekind (Proc_Nam) = E_Procedure
5574         and then Present (Parameter_Specifications (Parent (Proc_Nam)))
5575       then
5576          Param_Typ := Etype (Parameter_Type (First (
5577                         Parameter_Specifications (Parent (Proc_Nam)))));
5578
5579       --  In this case where an Itype was created, the procedure call has been
5580       --  rewritten.
5581
5582       elsif Present (Associated_Node_For_Itype (Proc_Nam))
5583         and then Present (Original_Node (Associated_Node_For_Itype (Proc_Nam)))
5584         and then
5585           Present (Parameter_Associations
5586                      (Associated_Node_For_Itype (Proc_Nam)))
5587       then
5588          Param_Typ :=
5589            Etype (First (Parameter_Associations
5590                           (Associated_Node_For_Itype (Proc_Nam))));
5591       end if;
5592
5593       if Present (Param_Typ) then
5594          return
5595            Is_Interface (Param_Typ)
5596              and then Is_Limited_Record (Param_Typ);
5597       end if;
5598
5599       return False;
5600    end Is_Controlling_Limited_Procedure;
5601
5602    -----------------------------
5603    -- Is_CPP_Constructor_Call --
5604    -----------------------------
5605
5606    function Is_CPP_Constructor_Call (N : Node_Id) return Boolean is
5607    begin
5608       return Nkind (N) = N_Function_Call
5609         and then Is_CPP_Class (Etype (Etype (N)))
5610         and then Is_Constructor (Entity (Name (N)))
5611         and then Is_Imported (Entity (Name (N)));
5612    end Is_CPP_Constructor_Call;
5613
5614    ----------------------------------------------
5615    -- Is_Dependent_Component_Of_Mutable_Object --
5616    ----------------------------------------------
5617
5618    function Is_Dependent_Component_Of_Mutable_Object
5619      (Object : Node_Id) return   Boolean
5620    is
5621       P           : Node_Id;
5622       Prefix_Type : Entity_Id;
5623       P_Aliased   : Boolean := False;
5624       Comp        : Entity_Id;
5625
5626       function Is_Declared_Within_Variant (Comp : Entity_Id) return Boolean;
5627       --  Returns True if and only if Comp is declared within a variant part
5628
5629       --------------------------------
5630       -- Is_Declared_Within_Variant --
5631       --------------------------------
5632
5633       function Is_Declared_Within_Variant (Comp : Entity_Id) return Boolean is
5634          Comp_Decl : constant Node_Id   := Parent (Comp);
5635          Comp_List : constant Node_Id   := Parent (Comp_Decl);
5636       begin
5637          return Nkind (Parent (Comp_List)) = N_Variant;
5638       end Is_Declared_Within_Variant;
5639
5640    --  Start of processing for Is_Dependent_Component_Of_Mutable_Object
5641
5642    begin
5643       if Is_Variable (Object) then
5644
5645          if Nkind (Object) = N_Selected_Component then
5646             P := Prefix (Object);
5647             Prefix_Type := Etype (P);
5648
5649             if Is_Entity_Name (P) then
5650
5651                if Ekind (Entity (P)) = E_Generic_In_Out_Parameter then
5652                   Prefix_Type := Base_Type (Prefix_Type);
5653                end if;
5654
5655                if Is_Aliased (Entity (P)) then
5656                   P_Aliased := True;
5657                end if;
5658
5659             --  A discriminant check on a selected component may be
5660             --  expanded into a dereference when removing side-effects.
5661             --  Recover the original node and its type, which may be
5662             --  unconstrained.
5663
5664             elsif Nkind (P) = N_Explicit_Dereference
5665               and then not (Comes_From_Source (P))
5666             then
5667                P := Original_Node (P);
5668                Prefix_Type := Etype (P);
5669
5670             else
5671                --  Check for prefix being an aliased component ???
5672                null;
5673
5674             end if;
5675
5676             --  A heap object is constrained by its initial value
5677
5678             --  Ada 2005 (AI-363): Always assume the object could be mutable in
5679             --  the dereferenced case, since the access value might denote an
5680             --  unconstrained aliased object, whereas in Ada 95 the designated
5681             --  object is guaranteed to be constrained. A worst-case assumption
5682             --  has to apply in Ada 2005 because we can't tell at compile time
5683             --  whether the object is "constrained by its initial value"
5684             --  (despite the fact that 3.10.2(26/2) and 8.5.1(5/2) are
5685             --  semantic rules -- these rules are acknowledged to need fixing).
5686
5687             if Ada_Version < Ada_05 then
5688                if Is_Access_Type (Prefix_Type)
5689                  or else Nkind (P) = N_Explicit_Dereference
5690                then
5691                   return False;
5692                end if;
5693
5694             elsif Ada_Version >= Ada_05 then
5695                if Is_Access_Type (Prefix_Type) then
5696
5697                   --  If the access type is pool-specific, and there is no
5698                   --  constrained partial view of the designated type, then the
5699                   --  designated object is known to be constrained.
5700
5701                   if Ekind (Prefix_Type) = E_Access_Type
5702                     and then not Has_Constrained_Partial_View
5703                                    (Designated_Type (Prefix_Type))
5704                   then
5705                      return False;
5706
5707                   --  Otherwise (general access type, or there is a constrained
5708                   --  partial view of the designated type), we need to check
5709                   --  based on the designated type.
5710
5711                   else
5712                      Prefix_Type := Designated_Type (Prefix_Type);
5713                   end if;
5714                end if;
5715             end if;
5716
5717             Comp :=
5718               Original_Record_Component (Entity (Selector_Name (Object)));
5719
5720             --  As per AI-0017, the renaming is illegal in a generic body,
5721             --  even if the subtype is indefinite.
5722
5723             --  Ada 2005 (AI-363): In Ada 2005 an aliased object can be mutable
5724
5725             if not Is_Constrained (Prefix_Type)
5726               and then (not Is_Indefinite_Subtype (Prefix_Type)
5727                          or else
5728                           (Is_Generic_Type (Prefix_Type)
5729                             and then Ekind (Current_Scope) = E_Generic_Package
5730                             and then In_Package_Body (Current_Scope)))
5731
5732               and then (Is_Declared_Within_Variant (Comp)
5733                           or else Has_Discriminant_Dependent_Constraint (Comp))
5734               and then (not P_Aliased or else Ada_Version >= Ada_05)
5735             then
5736                return True;
5737
5738             else
5739                return
5740                  Is_Dependent_Component_Of_Mutable_Object (Prefix (Object));
5741
5742             end if;
5743
5744          elsif Nkind (Object) = N_Indexed_Component
5745            or else Nkind (Object) = N_Slice
5746          then
5747             return Is_Dependent_Component_Of_Mutable_Object (Prefix (Object));
5748
5749          --  A type conversion that Is_Variable is a view conversion:
5750          --  go back to the denoted object.
5751
5752          elsif Nkind (Object) = N_Type_Conversion then
5753             return
5754               Is_Dependent_Component_Of_Mutable_Object (Expression (Object));
5755          end if;
5756       end if;
5757
5758       return False;
5759    end Is_Dependent_Component_Of_Mutable_Object;
5760
5761    ---------------------
5762    -- Is_Dereferenced --
5763    ---------------------
5764
5765    function Is_Dereferenced (N : Node_Id) return Boolean is
5766       P : constant Node_Id := Parent (N);
5767    begin
5768       return
5769          (Nkind (P) = N_Selected_Component
5770             or else
5771           Nkind (P) = N_Explicit_Dereference
5772             or else
5773           Nkind (P) = N_Indexed_Component
5774             or else
5775           Nkind (P) = N_Slice)
5776         and then Prefix (P) = N;
5777    end Is_Dereferenced;
5778
5779    ----------------------
5780    -- Is_Descendent_Of --
5781    ----------------------
5782
5783    function Is_Descendent_Of (T1 : Entity_Id; T2 : Entity_Id) return Boolean is
5784       T    : Entity_Id;
5785       Etyp : Entity_Id;
5786
5787    begin
5788       pragma Assert (Nkind (T1) in N_Entity);
5789       pragma Assert (Nkind (T2) in N_Entity);
5790
5791       T := Base_Type (T1);
5792
5793       --  Immediate return if the types match
5794
5795       if T = T2 then
5796          return True;
5797
5798       --  Comment needed here ???
5799
5800       elsif Ekind (T) = E_Class_Wide_Type then
5801          return Etype (T) = T2;
5802
5803       --  All other cases
5804
5805       else
5806          loop
5807             Etyp := Etype (T);
5808
5809             --  Done if we found the type we are looking for
5810
5811             if Etyp = T2 then
5812                return True;
5813
5814             --  Done if no more derivations to check
5815
5816             elsif T = T1
5817               or else T = Etyp
5818             then
5819                return False;
5820
5821             --  Following test catches error cases resulting from prev errors
5822
5823             elsif No (Etyp) then
5824                return False;
5825
5826             elsif Is_Private_Type (T) and then Etyp = Full_View (T) then
5827                return False;
5828
5829             elsif Is_Private_Type (Etyp) and then Full_View (Etyp) = T then
5830                return False;
5831             end if;
5832
5833             T := Base_Type (Etyp);
5834          end loop;
5835       end if;
5836    end Is_Descendent_Of;
5837
5838    --------------
5839    -- Is_False --
5840    --------------
5841
5842    function Is_False (U : Uint) return Boolean is
5843    begin
5844       return (U = 0);
5845    end Is_False;
5846
5847    ---------------------------
5848    -- Is_Fixed_Model_Number --
5849    ---------------------------
5850
5851    function Is_Fixed_Model_Number (U : Ureal; T : Entity_Id) return Boolean is
5852       S : constant Ureal := Small_Value (T);
5853       M : Urealp.Save_Mark;
5854       R : Boolean;
5855    begin
5856       M := Urealp.Mark;
5857       R := (U = UR_Trunc (U / S) * S);
5858       Urealp.Release (M);
5859       return R;
5860    end Is_Fixed_Model_Number;
5861
5862    -------------------------------
5863    -- Is_Fully_Initialized_Type --
5864    -------------------------------
5865
5866    function Is_Fully_Initialized_Type (Typ : Entity_Id) return Boolean is
5867    begin
5868       if Is_Scalar_Type (Typ) then
5869          return False;
5870
5871       elsif Is_Access_Type (Typ) then
5872          return True;
5873
5874       elsif Is_Array_Type (Typ) then
5875          if Is_Fully_Initialized_Type (Component_Type (Typ)) then
5876             return True;
5877          end if;
5878
5879          --  An interesting case, if we have a constrained type one of whose
5880          --  bounds is known to be null, then there are no elements to be
5881          --  initialized, so all the elements are initialized!
5882
5883          if Is_Constrained (Typ) then
5884             declare
5885                Indx     : Node_Id;
5886                Indx_Typ : Entity_Id;
5887                Lbd, Hbd : Node_Id;
5888
5889             begin
5890                Indx := First_Index (Typ);
5891                while Present (Indx) loop
5892                   if Etype (Indx) = Any_Type then
5893                      return False;
5894
5895                   --  If index is a range, use directly
5896
5897                   elsif Nkind (Indx) = N_Range then
5898                      Lbd := Low_Bound  (Indx);
5899                      Hbd := High_Bound (Indx);
5900
5901                   else
5902                      Indx_Typ := Etype (Indx);
5903
5904                      if Is_Private_Type (Indx_Typ)  then
5905                         Indx_Typ := Full_View (Indx_Typ);
5906                      end if;
5907
5908                      if No (Indx_Typ) or else Etype (Indx_Typ) = Any_Type then
5909                         return False;
5910                      else
5911                         Lbd := Type_Low_Bound  (Indx_Typ);
5912                         Hbd := Type_High_Bound (Indx_Typ);
5913                      end if;
5914                   end if;
5915
5916                   if Compile_Time_Known_Value (Lbd)
5917                     and then Compile_Time_Known_Value (Hbd)
5918                   then
5919                      if Expr_Value (Hbd) < Expr_Value (Lbd) then
5920                         return True;
5921                      end if;
5922                   end if;
5923
5924                   Next_Index (Indx);
5925                end loop;
5926             end;
5927          end if;
5928
5929          --  If no null indexes, then type is not fully initialized
5930
5931          return False;
5932
5933       --  Record types
5934
5935       elsif Is_Record_Type (Typ) then
5936          if Has_Discriminants (Typ)
5937            and then
5938              Present (Discriminant_Default_Value (First_Discriminant (Typ)))
5939            and then Is_Fully_Initialized_Variant (Typ)
5940          then
5941             return True;
5942          end if;
5943
5944          --  Controlled records are considered to be fully initialized if
5945          --  there is a user defined Initialize routine. This may not be
5946          --  entirely correct, but as the spec notes, we are guessing here
5947          --  what is best from the point of view of issuing warnings.
5948
5949          if Is_Controlled (Typ) then
5950             declare
5951                Utyp : constant Entity_Id := Underlying_Type (Typ);
5952
5953             begin
5954                if Present (Utyp) then
5955                   declare
5956                      Init : constant Entity_Id :=
5957                               (Find_Prim_Op
5958                                  (Underlying_Type (Typ), Name_Initialize));
5959
5960                   begin
5961                      if Present (Init)
5962                        and then Comes_From_Source (Init)
5963                        and then not
5964                          Is_Predefined_File_Name
5965                            (File_Name (Get_Source_File_Index (Sloc (Init))))
5966                      then
5967                         return True;
5968
5969                      elsif Has_Null_Extension (Typ)
5970                         and then
5971                           Is_Fully_Initialized_Type
5972                             (Etype (Base_Type (Typ)))
5973                      then
5974                         return True;
5975                      end if;
5976                   end;
5977                end if;
5978             end;
5979          end if;
5980
5981          --  Otherwise see if all record components are initialized
5982
5983          declare
5984             Ent : Entity_Id;
5985
5986          begin
5987             Ent := First_Entity (Typ);
5988             while Present (Ent) loop
5989                if Chars (Ent) = Name_uController then
5990                   null;
5991
5992                elsif Ekind (Ent) = E_Component
5993                  and then (No (Parent (Ent))
5994                              or else No (Expression (Parent (Ent))))
5995                  and then not Is_Fully_Initialized_Type (Etype (Ent))
5996
5997                   --  Special VM case for tag components, which need to be
5998                   --  defined in this case, but are never initialized as VMs
5999                   --  are using other dispatching mechanisms. Ignore this
6000                   --  uninitialized case. Note that this applies both to the
6001                   --  uTag entry and the main vtable pointer (CPP_Class case).
6002
6003                  and then (Tagged_Type_Expansion or else not Is_Tag (Ent))
6004                then
6005                   return False;
6006                end if;
6007
6008                Next_Entity (Ent);
6009             end loop;
6010          end;
6011
6012          --  No uninitialized components, so type is fully initialized.
6013          --  Note that this catches the case of no components as well.
6014
6015          return True;
6016
6017       elsif Is_Concurrent_Type (Typ) then
6018          return True;
6019
6020       elsif Is_Private_Type (Typ) then
6021          declare
6022             U : constant Entity_Id := Underlying_Type (Typ);
6023
6024          begin
6025             if No (U) then
6026                return False;
6027             else
6028                return Is_Fully_Initialized_Type (U);
6029             end if;
6030          end;
6031
6032       else
6033          return False;
6034       end if;
6035    end Is_Fully_Initialized_Type;
6036
6037    ----------------------------------
6038    -- Is_Fully_Initialized_Variant --
6039    ----------------------------------
6040
6041    function Is_Fully_Initialized_Variant (Typ : Entity_Id) return Boolean is
6042       Loc           : constant Source_Ptr := Sloc (Typ);
6043       Constraints   : constant List_Id    := New_List;
6044       Components    : constant Elist_Id   := New_Elmt_List;
6045       Comp_Elmt     : Elmt_Id;
6046       Comp_Id       : Node_Id;
6047       Comp_List     : Node_Id;
6048       Discr         : Entity_Id;
6049       Discr_Val     : Node_Id;
6050
6051       Report_Errors : Boolean;
6052       pragma Warnings (Off, Report_Errors);
6053
6054    begin
6055       if Serious_Errors_Detected > 0 then
6056          return False;
6057       end if;
6058
6059       if Is_Record_Type (Typ)
6060         and then Nkind (Parent (Typ)) = N_Full_Type_Declaration
6061         and then Nkind (Type_Definition (Parent (Typ))) = N_Record_Definition
6062       then
6063          Comp_List := Component_List (Type_Definition (Parent (Typ)));
6064
6065          Discr := First_Discriminant (Typ);
6066          while Present (Discr) loop
6067             if Nkind (Parent (Discr)) = N_Discriminant_Specification then
6068                Discr_Val := Expression (Parent (Discr));
6069
6070                if Present (Discr_Val)
6071                  and then Is_OK_Static_Expression (Discr_Val)
6072                then
6073                   Append_To (Constraints,
6074                     Make_Component_Association (Loc,
6075                       Choices    => New_List (New_Occurrence_Of (Discr, Loc)),
6076                       Expression => New_Copy (Discr_Val)));
6077                else
6078                   return False;
6079                end if;
6080             else
6081                return False;
6082             end if;
6083
6084             Next_Discriminant (Discr);
6085          end loop;
6086
6087          Gather_Components
6088            (Typ           => Typ,
6089             Comp_List     => Comp_List,
6090             Governed_By   => Constraints,
6091             Into          => Components,
6092             Report_Errors => Report_Errors);
6093
6094          --  Check that each component present is fully initialized
6095
6096          Comp_Elmt := First_Elmt (Components);
6097          while Present (Comp_Elmt) loop
6098             Comp_Id := Node (Comp_Elmt);
6099
6100             if Ekind (Comp_Id) = E_Component
6101               and then (No (Parent (Comp_Id))
6102                          or else No (Expression (Parent (Comp_Id))))
6103               and then not Is_Fully_Initialized_Type (Etype (Comp_Id))
6104             then
6105                return False;
6106             end if;
6107
6108             Next_Elmt (Comp_Elmt);
6109          end loop;
6110
6111          return True;
6112
6113       elsif Is_Private_Type (Typ) then
6114          declare
6115             U : constant Entity_Id := Underlying_Type (Typ);
6116
6117          begin
6118             if No (U) then
6119                return False;
6120             else
6121                return Is_Fully_Initialized_Variant (U);
6122             end if;
6123          end;
6124       else
6125          return False;
6126       end if;
6127    end Is_Fully_Initialized_Variant;
6128
6129    ------------
6130    -- Is_LHS --
6131    ------------
6132
6133    --  We seem to have a lot of overlapping functions that do similar things
6134    --  (testing for left hand sides or lvalues???). Anyway, since this one is
6135    --  purely syntactic, it should be in Sem_Aux I would think???
6136
6137    function Is_LHS (N : Node_Id) return Boolean is
6138       P : constant Node_Id := Parent (N);
6139    begin
6140       return Nkind (P) = N_Assignment_Statement
6141         and then Name (P) = N;
6142    end Is_LHS;
6143
6144    ----------------------------
6145    -- Is_Inherited_Operation --
6146    ----------------------------
6147
6148    function Is_Inherited_Operation (E : Entity_Id) return Boolean is
6149       Kind : constant Node_Kind := Nkind (Parent (E));
6150    begin
6151       pragma Assert (Is_Overloadable (E));
6152       return Kind = N_Full_Type_Declaration
6153         or else Kind = N_Private_Extension_Declaration
6154         or else Kind = N_Subtype_Declaration
6155         or else (Ekind (E) = E_Enumeration_Literal
6156                   and then Is_Derived_Type (Etype (E)));
6157    end Is_Inherited_Operation;
6158
6159    -----------------------------
6160    -- Is_Library_Level_Entity --
6161    -----------------------------
6162
6163    function Is_Library_Level_Entity (E : Entity_Id) return Boolean is
6164    begin
6165       --  The following is a small optimization, and it also properly handles
6166       --  discriminals, which in task bodies might appear in expressions before
6167       --  the corresponding procedure has been created, and which therefore do
6168       --  not have an assigned scope.
6169
6170       if Ekind (E) in Formal_Kind then
6171          return False;
6172       end if;
6173
6174       --  Normal test is simply that the enclosing dynamic scope is Standard
6175
6176       return Enclosing_Dynamic_Scope (E) = Standard_Standard;
6177    end Is_Library_Level_Entity;
6178
6179    ---------------------------------
6180    -- Is_Local_Variable_Reference --
6181    ---------------------------------
6182
6183    function Is_Local_Variable_Reference (Expr : Node_Id) return Boolean is
6184    begin
6185       if not Is_Entity_Name (Expr) then
6186          return False;
6187
6188       else
6189          declare
6190             Ent : constant Entity_Id := Entity (Expr);
6191             Sub : constant Entity_Id := Enclosing_Subprogram (Ent);
6192          begin
6193             if Ekind (Ent) /= E_Variable
6194                  and then
6195                Ekind (Ent) /= E_In_Out_Parameter
6196             then
6197                return False;
6198             else
6199                return Present (Sub) and then Sub = Current_Subprogram;
6200             end if;
6201          end;
6202       end if;
6203    end Is_Local_Variable_Reference;
6204
6205    -------------------------
6206    -- Is_Object_Reference --
6207    -------------------------
6208
6209    function Is_Object_Reference (N : Node_Id) return Boolean is
6210    begin
6211       if Is_Entity_Name (N) then
6212          return Present (Entity (N)) and then Is_Object (Entity (N));
6213
6214       else
6215          case Nkind (N) is
6216             when N_Indexed_Component | N_Slice =>
6217                return
6218                  Is_Object_Reference (Prefix (N))
6219                    or else Is_Access_Type (Etype (Prefix (N)));
6220
6221             --  In Ada95, a function call is a constant object; a procedure
6222             --  call is not.
6223
6224             when N_Function_Call =>
6225                return Etype (N) /= Standard_Void_Type;
6226
6227             --  A reference to the stream attribute Input is a function call
6228
6229             when N_Attribute_Reference =>
6230                return Attribute_Name (N) = Name_Input;
6231
6232             when N_Selected_Component =>
6233                return
6234                  Is_Object_Reference (Selector_Name (N))
6235                    and then
6236                      (Is_Object_Reference (Prefix (N))
6237                         or else Is_Access_Type (Etype (Prefix (N))));
6238
6239             when N_Explicit_Dereference =>
6240                return True;
6241
6242             --  A view conversion of a tagged object is an object reference
6243
6244             when N_Type_Conversion =>
6245                return Is_Tagged_Type (Etype (Subtype_Mark (N)))
6246                  and then Is_Tagged_Type (Etype (Expression (N)))
6247                  and then Is_Object_Reference (Expression (N));
6248
6249             --  An unchecked type conversion is considered to be an object if
6250             --  the operand is an object (this construction arises only as a
6251             --  result of expansion activities).
6252
6253             when N_Unchecked_Type_Conversion =>
6254                return True;
6255
6256             when others =>
6257                return False;
6258          end case;
6259       end if;
6260    end Is_Object_Reference;
6261
6262    -----------------------------------
6263    -- Is_OK_Variable_For_Out_Formal --
6264    -----------------------------------
6265
6266    function Is_OK_Variable_For_Out_Formal (AV : Node_Id) return Boolean is
6267    begin
6268       Note_Possible_Modification (AV, Sure => True);
6269
6270       --  We must reject parenthesized variable names. The check for
6271       --  Comes_From_Source is present because there are currently
6272       --  cases where the compiler violates this rule (e.g. passing
6273       --  a task object to its controlled Initialize routine).
6274
6275       if Paren_Count (AV) > 0 and then Comes_From_Source (AV) then
6276          return False;
6277
6278       --  A variable is always allowed
6279
6280       elsif Is_Variable (AV) then
6281          return True;
6282
6283       --  Unchecked conversions are allowed only if they come from the
6284       --  generated code, which sometimes uses unchecked conversions for out
6285       --  parameters in cases where code generation is unaffected. We tell
6286       --  source unchecked conversions by seeing if they are rewrites of an
6287       --  original Unchecked_Conversion function call, or of an explicit
6288       --  conversion of a function call.
6289
6290       elsif Nkind (AV) = N_Unchecked_Type_Conversion then
6291          if Nkind (Original_Node (AV)) = N_Function_Call then
6292             return False;
6293
6294          elsif Comes_From_Source (AV)
6295            and then Nkind (Original_Node (Expression (AV))) = N_Function_Call
6296          then
6297             return False;
6298
6299          elsif Nkind (Original_Node (AV)) = N_Type_Conversion then
6300             return Is_OK_Variable_For_Out_Formal (Expression (AV));
6301
6302          else
6303             return True;
6304          end if;
6305
6306       --  Normal type conversions are allowed if argument is a variable
6307
6308       elsif Nkind (AV) = N_Type_Conversion then
6309          if Is_Variable (Expression (AV))
6310            and then Paren_Count (Expression (AV)) = 0
6311          then
6312             Note_Possible_Modification (Expression (AV), Sure => True);
6313             return True;
6314
6315          --  We also allow a non-parenthesized expression that raises
6316          --  constraint error if it rewrites what used to be a variable
6317
6318          elsif Raises_Constraint_Error (Expression (AV))
6319             and then Paren_Count (Expression (AV)) = 0
6320             and then Is_Variable (Original_Node (Expression (AV)))
6321          then
6322             return True;
6323
6324          --  Type conversion of something other than a variable
6325
6326          else
6327             return False;
6328          end if;
6329
6330       --  If this node is rewritten, then test the original form, if that is
6331       --  OK, then we consider the rewritten node OK (for example, if the
6332       --  original node is a conversion, then Is_Variable will not be true
6333       --  but we still want to allow the conversion if it converts a variable).
6334
6335       elsif Original_Node (AV) /= AV then
6336          return Is_OK_Variable_For_Out_Formal (Original_Node (AV));
6337
6338       --  All other non-variables are rejected
6339
6340       else
6341          return False;
6342       end if;
6343    end Is_OK_Variable_For_Out_Formal;
6344
6345    -----------------------------------
6346    -- Is_Partially_Initialized_Type --
6347    -----------------------------------
6348
6349    function Is_Partially_Initialized_Type (Typ : Entity_Id) return Boolean is
6350    begin
6351       if Is_Scalar_Type (Typ) then
6352          return False;
6353
6354       elsif Is_Access_Type (Typ) then
6355          return True;
6356
6357       elsif Is_Array_Type (Typ) then
6358
6359          --  If component type is partially initialized, so is array type
6360
6361          if Is_Partially_Initialized_Type (Component_Type (Typ)) then
6362             return True;
6363
6364          --  Otherwise we are only partially initialized if we are fully
6365          --  initialized (this is the empty array case, no point in us
6366          --  duplicating that code here).
6367
6368          else
6369             return Is_Fully_Initialized_Type (Typ);
6370          end if;
6371
6372       elsif Is_Record_Type (Typ) then
6373
6374          --  A discriminated type is always partially initialized
6375
6376          if Has_Discriminants (Typ) then
6377             return True;
6378
6379          --  A tagged type is always partially initialized
6380
6381          elsif Is_Tagged_Type (Typ) then
6382             return True;
6383
6384          --  Case of non-discriminated record
6385
6386          else
6387             declare
6388                Ent : Entity_Id;
6389
6390                Component_Present : Boolean := False;
6391                --  Set True if at least one component is present. If no
6392                --  components are present, then record type is fully
6393                --  initialized (another odd case, like the null array).
6394
6395             begin
6396                --  Loop through components
6397
6398                Ent := First_Entity (Typ);
6399                while Present (Ent) loop
6400                   if Ekind (Ent) = E_Component then
6401                      Component_Present := True;
6402
6403                      --  If a component has an initialization expression then
6404                      --  the enclosing record type is partially initialized
6405
6406                      if Present (Parent (Ent))
6407                        and then Present (Expression (Parent (Ent)))
6408                      then
6409                         return True;
6410
6411                      --  If a component is of a type which is itself partially
6412                      --  initialized, then the enclosing record type is also.
6413
6414                      elsif Is_Partially_Initialized_Type (Etype (Ent)) then
6415                         return True;
6416                      end if;
6417                   end if;
6418
6419                   Next_Entity (Ent);
6420                end loop;
6421
6422                --  No initialized components found. If we found any components
6423                --  they were all uninitialized so the result is false.
6424
6425                if Component_Present then
6426                   return False;
6427
6428                --  But if we found no components, then all the components are
6429                --  initialized so we consider the type to be initialized.
6430
6431                else
6432                   return True;
6433                end if;
6434             end;
6435          end if;
6436
6437       --  Concurrent types are always fully initialized
6438
6439       elsif Is_Concurrent_Type (Typ) then
6440          return True;
6441
6442       --  For a private type, go to underlying type. If there is no underlying
6443       --  type then just assume this partially initialized. Not clear if this
6444       --  can happen in a non-error case, but no harm in testing for this.
6445
6446       elsif Is_Private_Type (Typ) then
6447          declare
6448             U : constant Entity_Id := Underlying_Type (Typ);
6449          begin
6450             if No (U) then
6451                return True;
6452             else
6453                return Is_Partially_Initialized_Type (U);
6454             end if;
6455          end;
6456
6457       --  For any other type (are there any?) assume partially initialized
6458
6459       else
6460          return True;
6461       end if;
6462    end Is_Partially_Initialized_Type;
6463
6464    ------------------------------------
6465    -- Is_Potentially_Persistent_Type --
6466    ------------------------------------
6467
6468    function Is_Potentially_Persistent_Type (T : Entity_Id) return Boolean is
6469       Comp : Entity_Id;
6470       Indx : Node_Id;
6471
6472    begin
6473       --  For private type, test corresponding full type
6474
6475       if Is_Private_Type (T) then
6476          return Is_Potentially_Persistent_Type (Full_View (T));
6477
6478       --  Scalar types are potentially persistent
6479
6480       elsif Is_Scalar_Type (T) then
6481          return True;
6482
6483       --  Record type is potentially persistent if not tagged and the types of
6484       --  all it components are potentially persistent, and no component has
6485       --  an initialization expression.
6486
6487       elsif Is_Record_Type (T)
6488         and then not Is_Tagged_Type (T)
6489         and then not Is_Partially_Initialized_Type (T)
6490       then
6491          Comp := First_Component (T);
6492          while Present (Comp) loop
6493             if not Is_Potentially_Persistent_Type (Etype (Comp)) then
6494                return False;
6495             else
6496                Next_Entity (Comp);
6497             end if;
6498          end loop;
6499
6500          return True;
6501
6502       --  Array type is potentially persistent if its component type is
6503       --  potentially persistent and if all its constraints are static.
6504
6505       elsif Is_Array_Type (T) then
6506          if not Is_Potentially_Persistent_Type (Component_Type (T)) then
6507             return False;
6508          end if;
6509
6510          Indx := First_Index (T);
6511          while Present (Indx) loop
6512             if not Is_OK_Static_Subtype (Etype (Indx)) then
6513                return False;
6514             else
6515                Next_Index (Indx);
6516             end if;
6517          end loop;
6518
6519          return True;
6520
6521       --  All other types are not potentially persistent
6522
6523       else
6524          return False;
6525       end if;
6526    end Is_Potentially_Persistent_Type;
6527
6528    ---------------------------------
6529    -- Is_Protected_Self_Reference --
6530    ---------------------------------
6531
6532    function Is_Protected_Self_Reference (N : Node_Id) return Boolean is
6533
6534       function In_Access_Definition (N : Node_Id) return Boolean;
6535       --  Returns true if N belongs to an access definition
6536
6537       --------------------------
6538       -- In_Access_Definition --
6539       --------------------------
6540
6541       function In_Access_Definition (N : Node_Id) return Boolean is
6542          P : Node_Id;
6543
6544       begin
6545          P := Parent (N);
6546          while Present (P) loop
6547             if Nkind (P) = N_Access_Definition then
6548                return True;
6549             end if;
6550
6551             P := Parent (P);
6552          end loop;
6553
6554          return False;
6555       end In_Access_Definition;
6556
6557    --  Start of processing for Is_Protected_Self_Reference
6558
6559    begin
6560       --  Verify that prefix is analyzed and has the proper form. Note that
6561       --  the attributes Elab_Spec, Elab_Body, and UET_Address, which also
6562       --  produce the address of an entity, do not analyze their prefix
6563       --  because they denote entities that are not necessarily visible.
6564       --  Neither of them can apply to a protected type.
6565
6566       return Ada_Version >= Ada_05
6567         and then Is_Entity_Name (N)
6568         and then Present (Entity (N))
6569         and then Is_Protected_Type (Entity (N))
6570         and then In_Open_Scopes (Entity (N))
6571         and then not In_Access_Definition (N);
6572    end Is_Protected_Self_Reference;
6573
6574    -----------------------------
6575    -- Is_RCI_Pkg_Spec_Or_Body --
6576    -----------------------------
6577
6578    function Is_RCI_Pkg_Spec_Or_Body (Cunit : Node_Id) return Boolean is
6579
6580       function Is_RCI_Pkg_Decl_Cunit (Cunit : Node_Id) return Boolean;
6581       --  Return True if the unit of Cunit is an RCI package declaration
6582
6583       ---------------------------
6584       -- Is_RCI_Pkg_Decl_Cunit --
6585       ---------------------------
6586
6587       function Is_RCI_Pkg_Decl_Cunit (Cunit : Node_Id) return Boolean is
6588          The_Unit : constant Node_Id := Unit (Cunit);
6589
6590       begin
6591          if Nkind (The_Unit) /= N_Package_Declaration then
6592             return False;
6593          end if;
6594
6595          return Is_Remote_Call_Interface (Defining_Entity (The_Unit));
6596       end Is_RCI_Pkg_Decl_Cunit;
6597
6598    --  Start of processing for Is_RCI_Pkg_Spec_Or_Body
6599
6600    begin
6601       return Is_RCI_Pkg_Decl_Cunit (Cunit)
6602         or else
6603          (Nkind (Unit (Cunit)) = N_Package_Body
6604            and then Is_RCI_Pkg_Decl_Cunit (Library_Unit (Cunit)));
6605    end Is_RCI_Pkg_Spec_Or_Body;
6606
6607    -----------------------------------------
6608    -- Is_Remote_Access_To_Class_Wide_Type --
6609    -----------------------------------------
6610
6611    function Is_Remote_Access_To_Class_Wide_Type
6612      (E : Entity_Id) return Boolean
6613    is
6614    begin
6615       --  A remote access to class-wide type is a general access to object type
6616       --  declared in the visible part of a Remote_Types or Remote_Call_
6617       --  Interface unit.
6618
6619       return Ekind (E) = E_General_Access_Type
6620         and then (Is_Remote_Call_Interface (E) or else Is_Remote_Types (E));
6621    end Is_Remote_Access_To_Class_Wide_Type;
6622
6623    -----------------------------------------
6624    -- Is_Remote_Access_To_Subprogram_Type --
6625    -----------------------------------------
6626
6627    function Is_Remote_Access_To_Subprogram_Type
6628      (E : Entity_Id) return Boolean
6629    is
6630    begin
6631       return (Ekind (E) = E_Access_Subprogram_Type
6632                 or else (Ekind (E) = E_Record_Type
6633                            and then Present (Corresponding_Remote_Type (E))))
6634         and then (Is_Remote_Call_Interface (E) or else Is_Remote_Types (E));
6635    end Is_Remote_Access_To_Subprogram_Type;
6636
6637    --------------------
6638    -- Is_Remote_Call --
6639    --------------------
6640
6641    function Is_Remote_Call (N : Node_Id) return Boolean is
6642    begin
6643       if Nkind (N) /= N_Procedure_Call_Statement
6644         and then Nkind (N) /= N_Function_Call
6645       then
6646          --  An entry call cannot be remote
6647
6648          return False;
6649
6650       elsif Nkind (Name (N)) in N_Has_Entity
6651         and then Is_Remote_Call_Interface (Entity (Name (N)))
6652       then
6653          --  A subprogram declared in the spec of a RCI package is remote
6654
6655          return True;
6656
6657       elsif Nkind (Name (N)) = N_Explicit_Dereference
6658         and then Is_Remote_Access_To_Subprogram_Type
6659                    (Etype (Prefix (Name (N))))
6660       then
6661          --  The dereference of a RAS is a remote call
6662
6663          return True;
6664
6665       elsif Present (Controlling_Argument (N))
6666         and then Is_Remote_Access_To_Class_Wide_Type
6667           (Etype (Controlling_Argument (N)))
6668       then
6669          --  Any primitive operation call with a controlling argument of
6670          --  a RACW type is a remote call.
6671
6672          return True;
6673       end if;
6674
6675       --  All other calls are local calls
6676
6677       return False;
6678    end Is_Remote_Call;
6679
6680    ----------------------
6681    -- Is_Renamed_Entry --
6682    ----------------------
6683
6684    function Is_Renamed_Entry (Proc_Nam : Entity_Id) return Boolean is
6685       Orig_Node : Node_Id := Empty;
6686       Subp_Decl : Node_Id := Parent (Parent (Proc_Nam));
6687
6688       function Is_Entry (Nam : Node_Id) return Boolean;
6689       --  Determine whether Nam is an entry. Traverse selectors if there are
6690       --  nested selected components.
6691
6692       --------------
6693       -- Is_Entry --
6694       --------------
6695
6696       function Is_Entry (Nam : Node_Id) return Boolean is
6697       begin
6698          if Nkind (Nam) = N_Selected_Component then
6699             return Is_Entry (Selector_Name (Nam));
6700          end if;
6701
6702          return Ekind (Entity (Nam)) = E_Entry;
6703       end Is_Entry;
6704
6705    --  Start of processing for Is_Renamed_Entry
6706
6707    begin
6708       if Present (Alias (Proc_Nam)) then
6709          Subp_Decl := Parent (Parent (Alias (Proc_Nam)));
6710       end if;
6711
6712       --  Look for a rewritten subprogram renaming declaration
6713
6714       if Nkind (Subp_Decl) = N_Subprogram_Declaration
6715         and then Present (Original_Node (Subp_Decl))
6716       then
6717          Orig_Node := Original_Node (Subp_Decl);
6718       end if;
6719
6720       --  The rewritten subprogram is actually an entry
6721
6722       if Present (Orig_Node)
6723         and then Nkind (Orig_Node) = N_Subprogram_Renaming_Declaration
6724         and then Is_Entry (Name (Orig_Node))
6725       then
6726          return True;
6727       end if;
6728
6729       return False;
6730    end Is_Renamed_Entry;
6731
6732    ----------------------
6733    -- Is_Selector_Name --
6734    ----------------------
6735
6736    function Is_Selector_Name (N : Node_Id) return Boolean is
6737    begin
6738       if not Is_List_Member (N) then
6739          declare
6740             P : constant Node_Id   := Parent (N);
6741             K : constant Node_Kind := Nkind (P);
6742          begin
6743             return
6744               (K = N_Expanded_Name          or else
6745                K = N_Generic_Association    or else
6746                K = N_Parameter_Association  or else
6747                K = N_Selected_Component)
6748               and then Selector_Name (P) = N;
6749          end;
6750
6751       else
6752          declare
6753             L : constant List_Id := List_Containing (N);
6754             P : constant Node_Id := Parent (L);
6755          begin
6756             return (Nkind (P) = N_Discriminant_Association
6757                      and then Selector_Names (P) = L)
6758               or else
6759                    (Nkind (P) = N_Component_Association
6760                      and then Choices (P) = L);
6761          end;
6762       end if;
6763    end Is_Selector_Name;
6764
6765    ------------------
6766    -- Is_Statement --
6767    ------------------
6768
6769    function Is_Statement (N : Node_Id) return Boolean is
6770    begin
6771       return
6772         Nkind (N) in N_Statement_Other_Than_Procedure_Call
6773           or else Nkind (N) = N_Procedure_Call_Statement;
6774    end Is_Statement;
6775
6776    ---------------------------------
6777    -- Is_Synchronized_Tagged_Type --
6778    ---------------------------------
6779
6780    function Is_Synchronized_Tagged_Type (E : Entity_Id) return Boolean is
6781       Kind : constant Entity_Kind := Ekind (Base_Type (E));
6782
6783    begin
6784       --  A task or protected type derived from an interface is a tagged type.
6785       --  Such a tagged type is called a synchronized tagged type, as are
6786       --  synchronized interfaces and private extensions whose declaration
6787       --  includes the reserved word synchronized.
6788
6789       return (Is_Tagged_Type (E)
6790                 and then (Kind = E_Task_Type
6791                            or else Kind = E_Protected_Type))
6792             or else
6793              (Is_Interface (E)
6794                 and then Is_Synchronized_Interface (E))
6795             or else
6796              (Ekind (E) = E_Record_Type_With_Private
6797                 and then (Synchronized_Present (Parent (E))
6798                            or else Is_Synchronized_Interface (Etype (E))));
6799    end Is_Synchronized_Tagged_Type;
6800
6801    -----------------
6802    -- Is_Transfer --
6803    -----------------
6804
6805    function Is_Transfer (N : Node_Id) return Boolean is
6806       Kind : constant Node_Kind := Nkind (N);
6807
6808    begin
6809       if Kind = N_Simple_Return_Statement
6810            or else
6811          Kind = N_Extended_Return_Statement
6812            or else
6813          Kind = N_Goto_Statement
6814            or else
6815          Kind = N_Raise_Statement
6816            or else
6817          Kind = N_Requeue_Statement
6818       then
6819          return True;
6820
6821       elsif (Kind = N_Exit_Statement or else Kind in N_Raise_xxx_Error)
6822         and then No (Condition (N))
6823       then
6824          return True;
6825
6826       elsif Kind = N_Procedure_Call_Statement
6827         and then Is_Entity_Name (Name (N))
6828         and then Present (Entity (Name (N)))
6829         and then No_Return (Entity (Name (N)))
6830       then
6831          return True;
6832
6833       elsif Nkind (Original_Node (N)) = N_Raise_Statement then
6834          return True;
6835
6836       else
6837          return False;
6838       end if;
6839    end Is_Transfer;
6840
6841    -------------
6842    -- Is_True --
6843    -------------
6844
6845    function Is_True (U : Uint) return Boolean is
6846    begin
6847       return (U /= 0);
6848    end Is_True;
6849
6850    -------------------
6851    -- Is_Value_Type --
6852    -------------------
6853
6854    function Is_Value_Type (T : Entity_Id) return Boolean is
6855    begin
6856       return VM_Target = CLI_Target
6857         and then Chars (T) /= No_Name
6858         and then Get_Name_String (Chars (T)) = "valuetype";
6859    end Is_Value_Type;
6860
6861    -----------------
6862    -- Is_Variable --
6863    -----------------
6864
6865    function Is_Variable (N : Node_Id) return Boolean is
6866
6867       Orig_Node : constant Node_Id := Original_Node (N);
6868       --  We do the test on the original node, since this is basically a
6869       --  test of syntactic categories, so it must not be disturbed by
6870       --  whatever rewriting might have occurred. For example, an aggregate,
6871       --  which is certainly NOT a variable, could be turned into a variable
6872       --  by expansion.
6873
6874       function In_Protected_Function (E : Entity_Id) return Boolean;
6875       --  Within a protected function, the private components of the
6876       --  enclosing protected type are constants. A function nested within
6877       --  a (protected) procedure is not itself protected.
6878
6879       function Is_Variable_Prefix (P : Node_Id) return Boolean;
6880       --  Prefixes can involve implicit dereferences, in which case we
6881       --  must test for the case of a reference of a constant access
6882       --  type, which can never be a variable.
6883
6884       ---------------------------
6885       -- In_Protected_Function --
6886       ---------------------------
6887
6888       function In_Protected_Function (E : Entity_Id) return Boolean is
6889          Prot : constant Entity_Id := Scope (E);
6890          S    : Entity_Id;
6891
6892       begin
6893          if not Is_Protected_Type (Prot) then
6894             return False;
6895          else
6896             S := Current_Scope;
6897             while Present (S) and then S /= Prot loop
6898                if Ekind (S) = E_Function
6899                  and then Scope (S) = Prot
6900                then
6901                   return True;
6902                end if;
6903
6904                S := Scope (S);
6905             end loop;
6906
6907             return False;
6908          end if;
6909       end In_Protected_Function;
6910
6911       ------------------------
6912       -- Is_Variable_Prefix --
6913       ------------------------
6914
6915       function Is_Variable_Prefix (P : Node_Id) return Boolean is
6916       begin
6917          if Is_Access_Type (Etype (P)) then
6918             return not Is_Access_Constant (Root_Type (Etype (P)));
6919
6920          --  For the case of an indexed component whose prefix has a packed
6921          --  array type, the prefix has been rewritten into a type conversion.
6922          --  Determine variable-ness from the converted expression.
6923
6924          elsif Nkind (P) = N_Type_Conversion
6925            and then not Comes_From_Source (P)
6926            and then Is_Array_Type (Etype (P))
6927            and then Is_Packed (Etype (P))
6928          then
6929             return Is_Variable (Expression (P));
6930
6931          else
6932             return Is_Variable (P);
6933          end if;
6934       end Is_Variable_Prefix;
6935
6936    --  Start of processing for Is_Variable
6937
6938    begin
6939       --  Definitely OK if Assignment_OK is set. Since this is something that
6940       --  only gets set for expanded nodes, the test is on N, not Orig_Node.
6941
6942       if Nkind (N) in N_Subexpr and then Assignment_OK (N) then
6943          return True;
6944
6945       --  Normally we go to the original node, but there is one exception
6946       --  where we use the rewritten node, namely when it is an explicit
6947       --  dereference. The generated code may rewrite a prefix which is an
6948       --  access type with an explicit dereference. The dereference is a
6949       --  variable, even though the original node may not be (since it could
6950       --  be a constant of the access type).
6951
6952       --  In Ada 2005 we have a further case to consider: the prefix may be
6953       --  a function call given in prefix notation. The original node appears
6954       --  to be a selected component, but we need to examine the call.
6955
6956       elsif Nkind (N) = N_Explicit_Dereference
6957         and then Nkind (Orig_Node) /= N_Explicit_Dereference
6958         and then Present (Etype (Orig_Node))
6959         and then Is_Access_Type (Etype (Orig_Node))
6960       then
6961          --  Note that if the prefix is an explicit dereference that does not
6962          --  come from source, we must check for a rewritten function call in
6963          --  prefixed notation before other forms of rewriting, to prevent a
6964          --  compiler crash.
6965
6966          return
6967            (Nkind (Orig_Node) = N_Function_Call
6968              and then not Is_Access_Constant (Etype (Prefix (N))))
6969            or else
6970              Is_Variable_Prefix (Original_Node (Prefix (N)));
6971
6972       --  A function call is never a variable
6973
6974       elsif Nkind (N) = N_Function_Call then
6975          return False;
6976
6977       --  All remaining checks use the original node
6978
6979       elsif Is_Entity_Name (Orig_Node)
6980         and then Present (Entity (Orig_Node))
6981       then
6982          declare
6983             E : constant Entity_Id := Entity (Orig_Node);
6984             K : constant Entity_Kind := Ekind (E);
6985
6986          begin
6987             return (K = E_Variable
6988                       and then Nkind (Parent (E)) /= N_Exception_Handler)
6989               or else  (K = E_Component
6990                           and then not In_Protected_Function (E))
6991               or else  K = E_Out_Parameter
6992               or else  K = E_In_Out_Parameter
6993               or else  K = E_Generic_In_Out_Parameter
6994
6995                --  Current instance of type:
6996
6997               or else (Is_Type (E) and then In_Open_Scopes (E))
6998               or else (Is_Incomplete_Or_Private_Type (E)
6999                         and then In_Open_Scopes (Full_View (E)));
7000          end;
7001
7002       else
7003          case Nkind (Orig_Node) is
7004             when N_Indexed_Component | N_Slice =>
7005                return Is_Variable_Prefix (Prefix (Orig_Node));
7006
7007             when N_Selected_Component =>
7008                return Is_Variable_Prefix (Prefix (Orig_Node))
7009                  and then Is_Variable (Selector_Name (Orig_Node));
7010
7011             --  For an explicit dereference, the type of the prefix cannot
7012             --  be an access to constant or an access to subprogram.
7013
7014             when N_Explicit_Dereference =>
7015                declare
7016                   Typ : constant Entity_Id := Etype (Prefix (Orig_Node));
7017                begin
7018                   return Is_Access_Type (Typ)
7019                     and then not Is_Access_Constant (Root_Type (Typ))
7020                     and then Ekind (Typ) /= E_Access_Subprogram_Type;
7021                end;
7022
7023             --  The type conversion is the case where we do not deal with the
7024             --  context dependent special case of an actual parameter. Thus
7025             --  the type conversion is only considered a variable for the
7026             --  purposes of this routine if the target type is tagged. However,
7027             --  a type conversion is considered to be a variable if it does not
7028             --  come from source (this deals for example with the conversions
7029             --  of expressions to their actual subtypes).
7030
7031             when N_Type_Conversion =>
7032                return Is_Variable (Expression (Orig_Node))
7033                  and then
7034                    (not Comes_From_Source (Orig_Node)
7035                       or else
7036                         (Is_Tagged_Type (Etype (Subtype_Mark (Orig_Node)))
7037                           and then
7038                          Is_Tagged_Type (Etype (Expression (Orig_Node)))));
7039
7040             --  GNAT allows an unchecked type conversion as a variable. This
7041             --  only affects the generation of internal expanded code, since
7042             --  calls to instantiations of Unchecked_Conversion are never
7043             --  considered variables (since they are function calls).
7044             --  This is also true for expression actions.
7045
7046             when N_Unchecked_Type_Conversion =>
7047                return Is_Variable (Expression (Orig_Node));
7048
7049             when others =>
7050                return False;
7051          end case;
7052       end if;
7053    end Is_Variable;
7054
7055    ------------------------
7056    -- Is_Volatile_Object --
7057    ------------------------
7058
7059    function Is_Volatile_Object (N : Node_Id) return Boolean is
7060
7061       function Object_Has_Volatile_Components (N : Node_Id) return Boolean;
7062       --  Determines if given object has volatile components
7063
7064       function Is_Volatile_Prefix (N : Node_Id) return Boolean;
7065       --  If prefix is an implicit dereference, examine designated type
7066
7067       ------------------------
7068       -- Is_Volatile_Prefix --
7069       ------------------------
7070
7071       function Is_Volatile_Prefix (N : Node_Id) return Boolean is
7072          Typ  : constant Entity_Id := Etype (N);
7073
7074       begin
7075          if Is_Access_Type (Typ) then
7076             declare
7077                Dtyp : constant Entity_Id := Designated_Type (Typ);
7078
7079             begin
7080                return Is_Volatile (Dtyp)
7081                  or else Has_Volatile_Components (Dtyp);
7082             end;
7083
7084          else
7085             return Object_Has_Volatile_Components (N);
7086          end if;
7087       end Is_Volatile_Prefix;
7088
7089       ------------------------------------
7090       -- Object_Has_Volatile_Components --
7091       ------------------------------------
7092
7093       function Object_Has_Volatile_Components (N : Node_Id) return Boolean is
7094          Typ : constant Entity_Id := Etype (N);
7095
7096       begin
7097          if Is_Volatile (Typ)
7098            or else Has_Volatile_Components (Typ)
7099          then
7100             return True;
7101
7102          elsif Is_Entity_Name (N)
7103            and then (Has_Volatile_Components (Entity (N))
7104                       or else Is_Volatile (Entity (N)))
7105          then
7106             return True;
7107
7108          elsif Nkind (N) = N_Indexed_Component
7109            or else Nkind (N) = N_Selected_Component
7110          then
7111             return Is_Volatile_Prefix (Prefix (N));
7112
7113          else
7114             return False;
7115          end if;
7116       end Object_Has_Volatile_Components;
7117
7118    --  Start of processing for Is_Volatile_Object
7119
7120    begin
7121       if Is_Volatile (Etype (N))
7122         or else (Is_Entity_Name (N) and then Is_Volatile (Entity (N)))
7123       then
7124          return True;
7125
7126       elsif Nkind (N) = N_Indexed_Component
7127         or else Nkind (N) = N_Selected_Component
7128       then
7129          return Is_Volatile_Prefix (Prefix (N));
7130
7131       else
7132          return False;
7133       end if;
7134    end Is_Volatile_Object;
7135
7136    -------------------------
7137    -- Kill_Current_Values --
7138    -------------------------
7139
7140    procedure Kill_Current_Values
7141      (Ent                  : Entity_Id;
7142       Last_Assignment_Only : Boolean := False)
7143    is
7144    begin
7145       --  ??? do we have to worry about clearing cached checks?
7146
7147       if Is_Assignable (Ent) then
7148          Set_Last_Assignment (Ent, Empty);
7149       end if;
7150
7151       if Is_Object (Ent) then
7152          if not Last_Assignment_Only then
7153             Kill_Checks (Ent);
7154             Set_Current_Value (Ent, Empty);
7155
7156             if not Can_Never_Be_Null (Ent) then
7157                Set_Is_Known_Non_Null (Ent, False);
7158             end if;
7159
7160             Set_Is_Known_Null (Ent, False);
7161
7162             --  Reset Is_Known_Valid unless type is always valid, or if we have
7163             --  a loop parameter (loop parameters are always valid, since their
7164             --  bounds are defined by the bounds given in the loop header).
7165
7166             if not Is_Known_Valid (Etype (Ent))
7167               and then Ekind (Ent) /= E_Loop_Parameter
7168             then
7169                Set_Is_Known_Valid (Ent, False);
7170             end if;
7171          end if;
7172       end if;
7173    end Kill_Current_Values;
7174
7175    procedure Kill_Current_Values (Last_Assignment_Only : Boolean := False) is
7176       S : Entity_Id;
7177
7178       procedure Kill_Current_Values_For_Entity_Chain (E : Entity_Id);
7179       --  Clear current value for entity E and all entities chained to E
7180
7181       ------------------------------------------
7182       -- Kill_Current_Values_For_Entity_Chain --
7183       ------------------------------------------
7184
7185       procedure Kill_Current_Values_For_Entity_Chain (E : Entity_Id) is
7186          Ent : Entity_Id;
7187       begin
7188          Ent := E;
7189          while Present (Ent) loop
7190             Kill_Current_Values (Ent, Last_Assignment_Only);
7191             Next_Entity (Ent);
7192          end loop;
7193       end Kill_Current_Values_For_Entity_Chain;
7194
7195    --  Start of processing for Kill_Current_Values
7196
7197    begin
7198       --  Kill all saved checks, a special case of killing saved values
7199
7200       if not Last_Assignment_Only then
7201          Kill_All_Checks;
7202       end if;
7203
7204       --  Loop through relevant scopes, which includes the current scope and
7205       --  any parent scopes if the current scope is a block or a package.
7206
7207       S := Current_Scope;
7208       Scope_Loop : loop
7209
7210          --  Clear current values of all entities in current scope
7211
7212          Kill_Current_Values_For_Entity_Chain (First_Entity (S));
7213
7214          --  If scope is a package, also clear current values of all
7215          --  private entities in the scope.
7216
7217          if Is_Package_Or_Generic_Package (S)
7218            or else Is_Concurrent_Type (S)
7219          then
7220             Kill_Current_Values_For_Entity_Chain (First_Private_Entity (S));
7221          end if;
7222
7223          --  If this is a not a subprogram, deal with parents
7224
7225          if not Is_Subprogram (S) then
7226             S := Scope (S);
7227             exit Scope_Loop when S = Standard_Standard;
7228          else
7229             exit Scope_Loop;
7230          end if;
7231       end loop Scope_Loop;
7232    end Kill_Current_Values;
7233
7234    --------------------------
7235    -- Kill_Size_Check_Code --
7236    --------------------------
7237
7238    procedure Kill_Size_Check_Code (E : Entity_Id) is
7239    begin
7240       if (Ekind (E) = E_Constant or else Ekind (E) = E_Variable)
7241         and then Present (Size_Check_Code (E))
7242       then
7243          Remove (Size_Check_Code (E));
7244          Set_Size_Check_Code (E, Empty);
7245       end if;
7246    end Kill_Size_Check_Code;
7247
7248    --------------------------
7249    -- Known_To_Be_Assigned --
7250    --------------------------
7251
7252    function Known_To_Be_Assigned (N : Node_Id) return Boolean is
7253       P : constant Node_Id := Parent (N);
7254
7255    begin
7256       case Nkind (P) is
7257
7258          --  Test left side of assignment
7259
7260          when N_Assignment_Statement =>
7261             return N = Name (P);
7262
7263             --  Function call arguments are never lvalues
7264
7265          when N_Function_Call =>
7266             return False;
7267
7268          --  Positional parameter for procedure or accept call
7269
7270          when N_Procedure_Call_Statement |
7271               N_Accept_Statement
7272           =>
7273             declare
7274                Proc : Entity_Id;
7275                Form : Entity_Id;
7276                Act  : Node_Id;
7277
7278             begin
7279                Proc := Get_Subprogram_Entity (P);
7280
7281                if No (Proc) then
7282                   return False;
7283                end if;
7284
7285                --  If we are not a list member, something is strange, so
7286                --  be conservative and return False.
7287
7288                if not Is_List_Member (N) then
7289                   return False;
7290                end if;
7291
7292                --  We are going to find the right formal by stepping forward
7293                --  through the formals, as we step backwards in the actuals.
7294
7295                Form := First_Formal (Proc);
7296                Act  := N;
7297                loop
7298                   --  If no formal, something is weird, so be conservative
7299                   --  and return False.
7300
7301                   if No (Form) then
7302                      return False;
7303                   end if;
7304
7305                   Prev (Act);
7306                   exit when No (Act);
7307                   Next_Formal (Form);
7308                end loop;
7309
7310                return Ekind (Form) /= E_In_Parameter;
7311             end;
7312
7313          --  Named parameter for procedure or accept call
7314
7315          when N_Parameter_Association =>
7316             declare
7317                Proc : Entity_Id;
7318                Form : Entity_Id;
7319
7320             begin
7321                Proc := Get_Subprogram_Entity (Parent (P));
7322
7323                if No (Proc) then
7324                   return False;
7325                end if;
7326
7327                --  Loop through formals to find the one that matches
7328
7329                Form := First_Formal (Proc);
7330                loop
7331                   --  If no matching formal, that's peculiar, some kind of
7332                   --  previous error, so return False to be conservative.
7333
7334                   if No (Form) then
7335                      return False;
7336                   end if;
7337
7338                   --  Else test for match
7339
7340                   if Chars (Form) = Chars (Selector_Name (P)) then
7341                      return Ekind (Form) /= E_In_Parameter;
7342                   end if;
7343
7344                   Next_Formal (Form);
7345                end loop;
7346             end;
7347
7348          --  Test for appearing in a conversion that itself appears
7349          --  in an lvalue context, since this should be an lvalue.
7350
7351          when N_Type_Conversion =>
7352             return Known_To_Be_Assigned (P);
7353
7354          --  All other references are definitely not known to be modifications
7355
7356          when others =>
7357             return False;
7358
7359       end case;
7360    end Known_To_Be_Assigned;
7361
7362    -------------------
7363    -- May_Be_Lvalue --
7364    -------------------
7365
7366    function May_Be_Lvalue (N : Node_Id) return Boolean is
7367       P : constant Node_Id := Parent (N);
7368
7369    begin
7370       case Nkind (P) is
7371
7372          --  Test left side of assignment
7373
7374          when N_Assignment_Statement =>
7375             return N = Name (P);
7376
7377          --  Test prefix of component or attribute. Note that the prefix of an
7378          --  explicit or implicit dereference cannot be an l-value.
7379
7380          when N_Attribute_Reference =>
7381             return N = Prefix (P)
7382               and then Name_Implies_Lvalue_Prefix (Attribute_Name (P));
7383
7384          --  For an expanded name, the name is an lvalue if the expanded name
7385          --  is an lvalue, but the prefix is never an lvalue, since it is just
7386          --  the scope where the name is found.
7387
7388          when N_Expanded_Name        =>
7389             if N = Prefix (P) then
7390                return May_Be_Lvalue (P);
7391             else
7392                return False;
7393             end if;
7394
7395          --  For a selected component A.B, A is certainly an lvalue if A.B is.
7396          --  B is a little interesting, if we have A.B := 3, there is some
7397          --  discussion as to whether B is an lvalue or not, we choose to say
7398          --  it is. Note however that A is not an lvalue if it is of an access
7399          --  type since this is an implicit dereference.
7400
7401          when N_Selected_Component   =>
7402             if N = Prefix (P)
7403               and then Present (Etype (N))
7404               and then Is_Access_Type (Etype (N))
7405             then
7406                return False;
7407             else
7408                return May_Be_Lvalue (P);
7409             end if;
7410
7411          --  For an indexed component or slice, the index or slice bounds is
7412          --  never an lvalue. The prefix is an lvalue if the indexed component
7413          --  or slice is an lvalue, except if it is an access type, where we
7414          --  have an implicit dereference.
7415
7416          when N_Indexed_Component    =>
7417             if N /= Prefix (P)
7418               or else (Present (Etype (N)) and then Is_Access_Type (Etype (N)))
7419             then
7420                return False;
7421             else
7422                return May_Be_Lvalue (P);
7423             end if;
7424
7425          --  Prefix of a reference is an lvalue if the reference is an lvalue
7426
7427          when N_Reference            =>
7428             return May_Be_Lvalue (P);
7429
7430          --  Prefix of explicit dereference is never an lvalue
7431
7432          when N_Explicit_Dereference =>
7433             return False;
7434
7435          --  Function call arguments are never lvalues
7436
7437          when N_Function_Call =>
7438             return False;
7439
7440          --  Positional parameter for procedure, entry,  or accept call
7441
7442          when N_Procedure_Call_Statement |
7443               N_Entry_Call_Statement     |
7444               N_Accept_Statement
7445          =>
7446             declare
7447                Proc : Entity_Id;
7448                Form : Entity_Id;
7449                Act  : Node_Id;
7450
7451             begin
7452                Proc := Get_Subprogram_Entity (P);
7453
7454                if No (Proc) then
7455                   return True;
7456                end if;
7457
7458                --  If we are not a list member, something is strange, so
7459                --  be conservative and return True.
7460
7461                if not Is_List_Member (N) then
7462                   return True;
7463                end if;
7464
7465                --  We are going to find the right formal by stepping forward
7466                --  through the formals, as we step backwards in the actuals.
7467
7468                Form := First_Formal (Proc);
7469                Act  := N;
7470                loop
7471                   --  If no formal, something is weird, so be conservative
7472                   --  and return True.
7473
7474                   if No (Form) then
7475                      return True;
7476                   end if;
7477
7478                   Prev (Act);
7479                   exit when No (Act);
7480                   Next_Formal (Form);
7481                end loop;
7482
7483                return Ekind (Form) /= E_In_Parameter;
7484             end;
7485
7486          --  Named parameter for procedure or accept call
7487
7488          when N_Parameter_Association =>
7489             declare
7490                Proc : Entity_Id;
7491                Form : Entity_Id;
7492
7493             begin
7494                Proc := Get_Subprogram_Entity (Parent (P));
7495
7496                if No (Proc) then
7497                   return True;
7498                end if;
7499
7500                --  Loop through formals to find the one that matches
7501
7502                Form := First_Formal (Proc);
7503                loop
7504                   --  If no matching formal, that's peculiar, some kind of
7505                   --  previous error, so return True to be conservative.
7506
7507                   if No (Form) then
7508                      return True;
7509                   end if;
7510
7511                   --  Else test for match
7512
7513                   if Chars (Form) = Chars (Selector_Name (P)) then
7514                      return Ekind (Form) /= E_In_Parameter;
7515                   end if;
7516
7517                   Next_Formal (Form);
7518                end loop;
7519             end;
7520
7521          --  Test for appearing in a conversion that itself appears in an
7522          --  lvalue context, since this should be an lvalue.
7523
7524          when N_Type_Conversion =>
7525             return May_Be_Lvalue (P);
7526
7527          --  Test for appearance in object renaming declaration
7528
7529          when N_Object_Renaming_Declaration =>
7530             return True;
7531
7532          --  All other references are definitely not lvalues
7533
7534          when others =>
7535             return False;
7536
7537       end case;
7538    end May_Be_Lvalue;
7539
7540    -----------------------
7541    -- Mark_Coextensions --
7542    -----------------------
7543
7544    procedure Mark_Coextensions (Context_Nod : Node_Id; Root_Nod : Node_Id) is
7545       Is_Dynamic : Boolean;
7546       --  Indicates whether the context causes nested coextensions to be
7547       --  dynamic or static
7548
7549       function Mark_Allocator (N : Node_Id) return Traverse_Result;
7550       --  Recognize an allocator node and label it as a dynamic coextension
7551
7552       --------------------
7553       -- Mark_Allocator --
7554       --------------------
7555
7556       function Mark_Allocator (N : Node_Id) return Traverse_Result is
7557       begin
7558          if Nkind (N) = N_Allocator then
7559             if Is_Dynamic then
7560                Set_Is_Dynamic_Coextension (N);
7561             else
7562                Set_Is_Static_Coextension (N);
7563             end if;
7564          end if;
7565
7566          return OK;
7567       end Mark_Allocator;
7568
7569       procedure Mark_Allocators is new Traverse_Proc (Mark_Allocator);
7570
7571    --  Start of processing Mark_Coextensions
7572
7573    begin
7574       case Nkind (Context_Nod) is
7575          when N_Assignment_Statement    |
7576               N_Simple_Return_Statement =>
7577             Is_Dynamic := Nkind (Expression (Context_Nod)) = N_Allocator;
7578
7579          when N_Object_Declaration =>
7580             Is_Dynamic := Nkind (Root_Nod) = N_Allocator;
7581
7582          --  This routine should not be called for constructs which may not
7583          --  contain coextensions.
7584
7585          when others =>
7586             raise Program_Error;
7587       end case;
7588
7589       Mark_Allocators (Root_Nod);
7590    end Mark_Coextensions;
7591
7592    ----------------------
7593    -- Needs_One_Actual --
7594    ----------------------
7595
7596    function Needs_One_Actual (E : Entity_Id) return Boolean is
7597       Formal : Entity_Id;
7598
7599    begin
7600       if Ada_Version >= Ada_05
7601         and then Present (First_Formal (E))
7602       then
7603          Formal := Next_Formal (First_Formal (E));
7604          while Present (Formal) loop
7605             if No (Default_Value (Formal)) then
7606                return False;
7607             end if;
7608
7609             Next_Formal (Formal);
7610          end loop;
7611
7612          return True;
7613
7614       else
7615          return False;
7616       end if;
7617    end Needs_One_Actual;
7618
7619    ------------------------
7620    -- New_Copy_List_Tree --
7621    ------------------------
7622
7623    function New_Copy_List_Tree (List : List_Id) return List_Id is
7624       NL : List_Id;
7625       E  : Node_Id;
7626
7627    begin
7628       if List = No_List then
7629          return No_List;
7630
7631       else
7632          NL := New_List;
7633          E := First (List);
7634
7635          while Present (E) loop
7636             Append (New_Copy_Tree (E), NL);
7637             E := Next (E);
7638          end loop;
7639
7640          return NL;
7641       end if;
7642    end New_Copy_List_Tree;
7643
7644    -------------------
7645    -- New_Copy_Tree --
7646    -------------------
7647
7648    use Atree.Unchecked_Access;
7649    use Atree_Private_Part;
7650
7651    --  Our approach here requires a two pass traversal of the tree. The
7652    --  first pass visits all nodes that eventually will be copied looking
7653    --  for defining Itypes. If any defining Itypes are found, then they are
7654    --  copied, and an entry is added to the replacement map. In the second
7655    --  phase, the tree is copied, using the replacement map to replace any
7656    --  Itype references within the copied tree.
7657
7658    --  The following hash tables are used if the Map supplied has more
7659    --  than hash threshhold entries to speed up access to the map. If
7660    --  there are fewer entries, then the map is searched sequentially
7661    --  (because setting up a hash table for only a few entries takes
7662    --  more time than it saves.
7663
7664    function New_Copy_Hash (E : Entity_Id) return NCT_Header_Num;
7665    --  Hash function used for hash operations
7666
7667    -------------------
7668    -- New_Copy_Hash --
7669    -------------------
7670
7671    function New_Copy_Hash (E : Entity_Id) return NCT_Header_Num is
7672    begin
7673       return Nat (E) mod (NCT_Header_Num'Last + 1);
7674    end New_Copy_Hash;
7675
7676    ---------------
7677    -- NCT_Assoc --
7678    ---------------
7679
7680    --  The hash table NCT_Assoc associates old entities in the table
7681    --  with their corresponding new entities (i.e. the pairs of entries
7682    --  presented in the original Map argument are Key-Element pairs).
7683
7684    package NCT_Assoc is new Simple_HTable (
7685      Header_Num => NCT_Header_Num,
7686      Element    => Entity_Id,
7687      No_Element => Empty,
7688      Key        => Entity_Id,
7689      Hash       => New_Copy_Hash,
7690      Equal      => Types."=");
7691
7692    ---------------------
7693    -- NCT_Itype_Assoc --
7694    ---------------------
7695
7696    --  The hash table NCT_Itype_Assoc contains entries only for those
7697    --  old nodes which have a non-empty Associated_Node_For_Itype set.
7698    --  The key is the associated node, and the element is the new node
7699    --  itself (NOT the associated node for the new node).
7700
7701    package NCT_Itype_Assoc is new Simple_HTable (
7702      Header_Num => NCT_Header_Num,
7703      Element    => Entity_Id,
7704      No_Element => Empty,
7705      Key        => Entity_Id,
7706      Hash       => New_Copy_Hash,
7707      Equal      => Types."=");
7708
7709    --  Start of processing for New_Copy_Tree function
7710
7711    function New_Copy_Tree
7712      (Source    : Node_Id;
7713       Map       : Elist_Id := No_Elist;
7714       New_Sloc  : Source_Ptr := No_Location;
7715       New_Scope : Entity_Id := Empty) return Node_Id
7716    is
7717       Actual_Map : Elist_Id := Map;
7718       --  This is the actual map for the copy. It is initialized with the
7719       --  given elements, and then enlarged as required for Itypes that are
7720       --  copied during the first phase of the copy operation. The visit
7721       --  procedures add elements to this map as Itypes are encountered.
7722       --  The reason we cannot use Map directly, is that it may well be
7723       --  (and normally is) initialized to No_Elist, and if we have mapped
7724       --  entities, we have to reset it to point to a real Elist.
7725
7726       function Assoc (N : Node_Or_Entity_Id) return Node_Id;
7727       --  Called during second phase to map entities into their corresponding
7728       --  copies using Actual_Map. If the argument is not an entity, or is not
7729       --  in Actual_Map, then it is returned unchanged.
7730
7731       procedure Build_NCT_Hash_Tables;
7732       --  Builds hash tables (number of elements >= threshold value)
7733
7734       function Copy_Elist_With_Replacement
7735         (Old_Elist : Elist_Id) return Elist_Id;
7736       --  Called during second phase to copy element list doing replacements
7737
7738       procedure Copy_Itype_With_Replacement (New_Itype : Entity_Id);
7739       --  Called during the second phase to process a copied Itype. The actual
7740       --  copy happened during the first phase (so that we could make the entry
7741       --  in the mapping), but we still have to deal with the descendents of
7742       --  the copied Itype and copy them where necessary.
7743
7744       function Copy_List_With_Replacement (Old_List : List_Id) return List_Id;
7745       --  Called during second phase to copy list doing replacements
7746
7747       function Copy_Node_With_Replacement (Old_Node : Node_Id) return Node_Id;
7748       --  Called during second phase to copy node doing replacements
7749
7750       procedure Visit_Elist (E : Elist_Id);
7751       --  Called during first phase to visit all elements of an Elist
7752
7753       procedure Visit_Field (F : Union_Id; N : Node_Id);
7754       --  Visit a single field, recursing to call Visit_Node or Visit_List
7755       --  if the field is a syntactic descendent of the current node (i.e.
7756       --  its parent is Node N).
7757
7758       procedure Visit_Itype (Old_Itype : Entity_Id);
7759       --  Called during first phase to visit subsidiary fields of a defining
7760       --  Itype, and also create a copy and make an entry in the replacement
7761       --  map for the new copy.
7762
7763       procedure Visit_List (L : List_Id);
7764       --  Called during first phase to visit all elements of a List
7765
7766       procedure Visit_Node (N : Node_Or_Entity_Id);
7767       --  Called during first phase to visit a node and all its subtrees
7768
7769       -----------
7770       -- Assoc --
7771       -----------
7772
7773       function Assoc (N : Node_Or_Entity_Id) return Node_Id is
7774          E   : Elmt_Id;
7775          Ent : Entity_Id;
7776
7777       begin
7778          if not Has_Extension (N) or else No (Actual_Map) then
7779             return N;
7780
7781          elsif NCT_Hash_Tables_Used then
7782             Ent := NCT_Assoc.Get (Entity_Id (N));
7783
7784             if Present (Ent) then
7785                return Ent;
7786             else
7787                return N;
7788             end if;
7789
7790          --  No hash table used, do serial search
7791
7792          else
7793             E := First_Elmt (Actual_Map);
7794             while Present (E) loop
7795                if Node (E) = N then
7796                   return Node (Next_Elmt (E));
7797                else
7798                   E := Next_Elmt (Next_Elmt (E));
7799                end if;
7800             end loop;
7801          end if;
7802
7803          return N;
7804       end Assoc;
7805
7806       ---------------------------
7807       -- Build_NCT_Hash_Tables --
7808       ---------------------------
7809
7810       procedure Build_NCT_Hash_Tables is
7811          Elmt : Elmt_Id;
7812          Ent  : Entity_Id;
7813       begin
7814          if NCT_Hash_Table_Setup then
7815             NCT_Assoc.Reset;
7816             NCT_Itype_Assoc.Reset;
7817          end if;
7818
7819          Elmt := First_Elmt (Actual_Map);
7820          while Present (Elmt) loop
7821             Ent := Node (Elmt);
7822
7823             --  Get new entity, and associate old and new
7824
7825             Next_Elmt (Elmt);
7826             NCT_Assoc.Set (Ent, Node (Elmt));
7827
7828             if Is_Type (Ent) then
7829                declare
7830                   Anode : constant Entity_Id :=
7831                             Associated_Node_For_Itype (Ent);
7832
7833                begin
7834                   if Present (Anode) then
7835
7836                      --  Enter a link between the associated node of the
7837                      --  old Itype and the new Itype, for updating later
7838                      --  when node is copied.
7839
7840                      NCT_Itype_Assoc.Set (Anode, Node (Elmt));
7841                   end if;
7842                end;
7843             end if;
7844
7845             Next_Elmt (Elmt);
7846          end loop;
7847
7848          NCT_Hash_Tables_Used := True;
7849          NCT_Hash_Table_Setup := True;
7850       end Build_NCT_Hash_Tables;
7851
7852       ---------------------------------
7853       -- Copy_Elist_With_Replacement --
7854       ---------------------------------
7855
7856       function Copy_Elist_With_Replacement
7857         (Old_Elist : Elist_Id) return Elist_Id
7858       is
7859          M         : Elmt_Id;
7860          New_Elist : Elist_Id;
7861
7862       begin
7863          if No (Old_Elist) then
7864             return No_Elist;
7865
7866          else
7867             New_Elist := New_Elmt_List;
7868
7869             M := First_Elmt (Old_Elist);
7870             while Present (M) loop
7871                Append_Elmt (Copy_Node_With_Replacement (Node (M)), New_Elist);
7872                Next_Elmt (M);
7873             end loop;
7874          end if;
7875
7876          return New_Elist;
7877       end Copy_Elist_With_Replacement;
7878
7879       ---------------------------------
7880       -- Copy_Itype_With_Replacement --
7881       ---------------------------------
7882
7883       --  This routine exactly parallels its phase one analog Visit_Itype,
7884
7885       procedure Copy_Itype_With_Replacement (New_Itype : Entity_Id) is
7886       begin
7887          --  Translate Next_Entity, Scope and Etype fields, in case they
7888          --  reference entities that have been mapped into copies.
7889
7890          Set_Next_Entity (New_Itype, Assoc (Next_Entity (New_Itype)));
7891          Set_Etype       (New_Itype, Assoc (Etype       (New_Itype)));
7892
7893          if Present (New_Scope) then
7894             Set_Scope    (New_Itype, New_Scope);
7895          else
7896             Set_Scope    (New_Itype, Assoc (Scope       (New_Itype)));
7897          end if;
7898
7899          --  Copy referenced fields
7900
7901          if Is_Discrete_Type (New_Itype) then
7902             Set_Scalar_Range (New_Itype,
7903               Copy_Node_With_Replacement (Scalar_Range (New_Itype)));
7904
7905          elsif Has_Discriminants (Base_Type (New_Itype)) then
7906             Set_Discriminant_Constraint (New_Itype,
7907               Copy_Elist_With_Replacement
7908                 (Discriminant_Constraint (New_Itype)));
7909
7910          elsif Is_Array_Type (New_Itype) then
7911             if Present (First_Index (New_Itype)) then
7912                Set_First_Index (New_Itype,
7913                  First (Copy_List_With_Replacement
7914                          (List_Containing (First_Index (New_Itype)))));
7915             end if;
7916
7917             if Is_Packed (New_Itype) then
7918                Set_Packed_Array_Type (New_Itype,
7919                  Copy_Node_With_Replacement
7920                    (Packed_Array_Type (New_Itype)));
7921             end if;
7922          end if;
7923       end Copy_Itype_With_Replacement;
7924
7925       --------------------------------
7926       -- Copy_List_With_Replacement --
7927       --------------------------------
7928
7929       function Copy_List_With_Replacement
7930         (Old_List : List_Id) return List_Id
7931       is
7932          New_List : List_Id;
7933          E        : Node_Id;
7934
7935       begin
7936          if Old_List = No_List then
7937             return No_List;
7938
7939          else
7940             New_List := Empty_List;
7941
7942             E := First (Old_List);
7943             while Present (E) loop
7944                Append (Copy_Node_With_Replacement (E), New_List);
7945                Next (E);
7946             end loop;
7947
7948             return New_List;
7949          end if;
7950       end Copy_List_With_Replacement;
7951
7952       --------------------------------
7953       -- Copy_Node_With_Replacement --
7954       --------------------------------
7955
7956       function Copy_Node_With_Replacement
7957         (Old_Node : Node_Id) return Node_Id
7958       is
7959          New_Node : Node_Id;
7960
7961          procedure Adjust_Named_Associations
7962            (Old_Node : Node_Id;
7963             New_Node : Node_Id);
7964          --  If a call node has named associations, these are chained through
7965          --  the First_Named_Actual, Next_Named_Actual links. These must be
7966          --  propagated separately to the new parameter list, because these
7967          --  are not syntactic fields.
7968
7969          function Copy_Field_With_Replacement
7970            (Field : Union_Id) return Union_Id;
7971          --  Given Field, which is a field of Old_Node, return a copy of it
7972          --  if it is a syntactic field (i.e. its parent is Node), setting
7973          --  the parent of the copy to poit to New_Node. Otherwise returns
7974          --  the field (possibly mapped if it is an entity).
7975
7976          -------------------------------
7977          -- Adjust_Named_Associations --
7978          -------------------------------
7979
7980          procedure Adjust_Named_Associations
7981            (Old_Node : Node_Id;
7982             New_Node : Node_Id)
7983          is
7984             Old_E : Node_Id;
7985             New_E : Node_Id;
7986
7987             Old_Next : Node_Id;
7988             New_Next : Node_Id;
7989
7990          begin
7991             Old_E := First (Parameter_Associations (Old_Node));
7992             New_E := First (Parameter_Associations (New_Node));
7993             while Present (Old_E) loop
7994                if Nkind (Old_E) = N_Parameter_Association
7995                  and then Present (Next_Named_Actual (Old_E))
7996                then
7997                   if First_Named_Actual (Old_Node)
7998                     =  Explicit_Actual_Parameter (Old_E)
7999                   then
8000                      Set_First_Named_Actual
8001                        (New_Node, Explicit_Actual_Parameter (New_E));
8002                   end if;
8003
8004                   --  Now scan parameter list from the beginning,to locate
8005                   --  next named actual, which can be out of order.
8006
8007                   Old_Next := First (Parameter_Associations (Old_Node));
8008                   New_Next := First (Parameter_Associations (New_Node));
8009
8010                   while Nkind (Old_Next) /= N_Parameter_Association
8011                     or else  Explicit_Actual_Parameter (Old_Next)
8012                       /= Next_Named_Actual (Old_E)
8013                   loop
8014                      Next (Old_Next);
8015                      Next (New_Next);
8016                   end loop;
8017
8018                   Set_Next_Named_Actual
8019                     (New_E, Explicit_Actual_Parameter (New_Next));
8020                end if;
8021
8022                Next (Old_E);
8023                Next (New_E);
8024             end loop;
8025          end Adjust_Named_Associations;
8026
8027          ---------------------------------
8028          -- Copy_Field_With_Replacement --
8029          ---------------------------------
8030
8031          function Copy_Field_With_Replacement
8032            (Field : Union_Id) return Union_Id
8033          is
8034          begin
8035             if Field = Union_Id (Empty) then
8036                return Field;
8037
8038             elsif Field in Node_Range then
8039                declare
8040                   Old_N : constant Node_Id := Node_Id (Field);
8041                   New_N : Node_Id;
8042
8043                begin
8044                   --  If syntactic field, as indicated by the parent pointer
8045                   --  being set, then copy the referenced node recursively.
8046
8047                   if Parent (Old_N) = Old_Node then
8048                      New_N := Copy_Node_With_Replacement (Old_N);
8049
8050                      if New_N /= Old_N then
8051                         Set_Parent (New_N, New_Node);
8052                      end if;
8053
8054                   --  For semantic fields, update possible entity reference
8055                   --  from the replacement map.
8056
8057                   else
8058                      New_N := Assoc (Old_N);
8059                   end if;
8060
8061                   return Union_Id (New_N);
8062                end;
8063
8064             elsif Field in List_Range then
8065                declare
8066                   Old_L : constant List_Id := List_Id (Field);
8067                   New_L : List_Id;
8068
8069                begin
8070                   --  If syntactic field, as indicated by the parent pointer,
8071                   --  then recursively copy the entire referenced list.
8072
8073                   if Parent (Old_L) = Old_Node then
8074                      New_L := Copy_List_With_Replacement (Old_L);
8075                      Set_Parent (New_L, New_Node);
8076
8077                   --  For semantic list, just returned unchanged
8078
8079                   else
8080                      New_L := Old_L;
8081                   end if;
8082
8083                   return Union_Id (New_L);
8084                end;
8085
8086             --  Anything other than a list or a node is returned unchanged
8087
8088             else
8089                return Field;
8090             end if;
8091          end Copy_Field_With_Replacement;
8092
8093       --  Start of processing for Copy_Node_With_Replacement
8094
8095       begin
8096          if Old_Node <= Empty_Or_Error then
8097             return Old_Node;
8098
8099          elsif Has_Extension (Old_Node) then
8100             return Assoc (Old_Node);
8101
8102          else
8103             New_Node := New_Copy (Old_Node);
8104
8105             --  If the node we are copying is the associated node of a
8106             --  previously copied Itype, then adjust the associated node
8107             --  of the copy of that Itype accordingly.
8108
8109             if Present (Actual_Map) then
8110                declare
8111                   E   : Elmt_Id;
8112                   Ent : Entity_Id;
8113
8114                begin
8115                   --  Case of hash table used
8116
8117                   if NCT_Hash_Tables_Used then
8118                      Ent := NCT_Itype_Assoc.Get (Old_Node);
8119
8120                      if Present (Ent) then
8121                         Set_Associated_Node_For_Itype (Ent, New_Node);
8122                      end if;
8123
8124                   --  Case of no hash table used
8125
8126                   else
8127                      E := First_Elmt (Actual_Map);
8128                      while Present (E) loop
8129                         if Is_Itype (Node (E))
8130                           and then
8131                             Old_Node = Associated_Node_For_Itype (Node (E))
8132                         then
8133                            Set_Associated_Node_For_Itype
8134                              (Node (Next_Elmt (E)), New_Node);
8135                         end if;
8136
8137                         E := Next_Elmt (Next_Elmt (E));
8138                      end loop;
8139                   end if;
8140                end;
8141             end if;
8142
8143             --  Recursively copy descendents
8144
8145             Set_Field1
8146               (New_Node, Copy_Field_With_Replacement (Field1 (New_Node)));
8147             Set_Field2
8148               (New_Node, Copy_Field_With_Replacement (Field2 (New_Node)));
8149             Set_Field3
8150               (New_Node, Copy_Field_With_Replacement (Field3 (New_Node)));
8151             Set_Field4
8152               (New_Node, Copy_Field_With_Replacement (Field4 (New_Node)));
8153             Set_Field5
8154               (New_Node, Copy_Field_With_Replacement (Field5 (New_Node)));
8155
8156             --  Adjust Sloc of new node if necessary
8157
8158             if New_Sloc /= No_Location then
8159                Set_Sloc (New_Node, New_Sloc);
8160
8161                --  If we adjust the Sloc, then we are essentially making
8162                --  a completely new node, so the Comes_From_Source flag
8163                --  should be reset to the proper default value.
8164
8165                Nodes.Table (New_Node).Comes_From_Source :=
8166                  Default_Node.Comes_From_Source;
8167             end if;
8168
8169             --  If the node is call and has named associations,
8170             --  set the corresponding links in the copy.
8171
8172             if (Nkind (Old_Node) = N_Function_Call
8173                  or else Nkind (Old_Node) = N_Entry_Call_Statement
8174                  or else
8175                    Nkind (Old_Node) = N_Procedure_Call_Statement)
8176               and then Present (First_Named_Actual (Old_Node))
8177             then
8178                Adjust_Named_Associations (Old_Node, New_Node);
8179             end if;
8180
8181             --  Reset First_Real_Statement for Handled_Sequence_Of_Statements.
8182             --  The replacement mechanism applies to entities, and is not used
8183             --  here. Eventually we may need a more general graph-copying
8184             --  routine. For now, do a sequential search to find desired node.
8185
8186             if Nkind (Old_Node) = N_Handled_Sequence_Of_Statements
8187               and then Present (First_Real_Statement (Old_Node))
8188             then
8189                declare
8190                   Old_F  : constant Node_Id := First_Real_Statement (Old_Node);
8191                   N1, N2 : Node_Id;
8192
8193                begin
8194                   N1 := First (Statements (Old_Node));
8195                   N2 := First (Statements (New_Node));
8196
8197                   while N1 /= Old_F loop
8198                      Next (N1);
8199                      Next (N2);
8200                   end loop;
8201
8202                   Set_First_Real_Statement (New_Node, N2);
8203                end;
8204             end if;
8205          end if;
8206
8207          --  All done, return copied node
8208
8209          return New_Node;
8210       end Copy_Node_With_Replacement;
8211
8212       -----------------
8213       -- Visit_Elist --
8214       -----------------
8215
8216       procedure Visit_Elist (E : Elist_Id) is
8217          Elmt : Elmt_Id;
8218       begin
8219          if Present (E) then
8220             Elmt := First_Elmt (E);
8221
8222             while Elmt /= No_Elmt loop
8223                Visit_Node (Node (Elmt));
8224                Next_Elmt (Elmt);
8225             end loop;
8226          end if;
8227       end Visit_Elist;
8228
8229       -----------------
8230       -- Visit_Field --
8231       -----------------
8232
8233       procedure Visit_Field (F : Union_Id; N : Node_Id) is
8234       begin
8235          if F = Union_Id (Empty) then
8236             return;
8237
8238          elsif F in Node_Range then
8239
8240             --  Copy node if it is syntactic, i.e. its parent pointer is
8241             --  set to point to the field that referenced it (certain
8242             --  Itypes will also meet this criterion, which is fine, since
8243             --  these are clearly Itypes that do need to be copied, since
8244             --  we are copying their parent.)
8245
8246             if Parent (Node_Id (F)) = N then
8247                Visit_Node (Node_Id (F));
8248                return;
8249
8250             --  Another case, if we are pointing to an Itype, then we want
8251             --  to copy it if its associated node is somewhere in the tree
8252             --  being copied.
8253
8254             --  Note: the exclusion of self-referential copies is just an
8255             --  optimization, since the search of the already copied list
8256             --  would catch it, but it is a common case (Etype pointing
8257             --  to itself for an Itype that is a base type).
8258
8259             elsif Has_Extension (Node_Id (F))
8260               and then Is_Itype (Entity_Id (F))
8261               and then Node_Id (F) /= N
8262             then
8263                declare
8264                   P : Node_Id;
8265
8266                begin
8267                   P := Associated_Node_For_Itype (Node_Id (F));
8268                   while Present (P) loop
8269                      if P = Source then
8270                         Visit_Node (Node_Id (F));
8271                         return;
8272                      else
8273                         P := Parent (P);
8274                      end if;
8275                   end loop;
8276
8277                   --  An Itype whose parent is not being copied definitely
8278                   --  should NOT be copied, since it does not belong in any
8279                   --  sense to the copied subtree.
8280
8281                   return;
8282                end;
8283             end if;
8284
8285          elsif F in List_Range
8286            and then Parent (List_Id (F)) = N
8287          then
8288             Visit_List (List_Id (F));
8289             return;
8290          end if;
8291       end Visit_Field;
8292
8293       -----------------
8294       -- Visit_Itype --
8295       -----------------
8296
8297       procedure Visit_Itype (Old_Itype : Entity_Id) is
8298          New_Itype : Entity_Id;
8299          E         : Elmt_Id;
8300          Ent       : Entity_Id;
8301
8302       begin
8303          --  Itypes that describe the designated type of access to subprograms
8304          --  have the structure of subprogram declarations, with signatures,
8305          --  etc. Either we duplicate the signatures completely, or choose to
8306          --  share such itypes, which is fine because their elaboration will
8307          --  have no side effects.
8308
8309          if Ekind (Old_Itype) = E_Subprogram_Type then
8310             return;
8311          end if;
8312
8313          New_Itype := New_Copy (Old_Itype);
8314
8315          --  The new Itype has all the attributes of the old one, and
8316          --  we just copy the contents of the entity. However, the back-end
8317          --  needs different names for debugging purposes, so we create a
8318          --  new internal name for it in all cases.
8319
8320          Set_Chars (New_Itype, New_Internal_Name ('T'));
8321
8322          --  If our associated node is an entity that has already been copied,
8323          --  then set the associated node of the copy to point to the right
8324          --  copy. If we have copied an Itype that is itself the associated
8325          --  node of some previously copied Itype, then we set the right
8326          --  pointer in the other direction.
8327
8328          if Present (Actual_Map) then
8329
8330             --  Case of hash tables used
8331
8332             if NCT_Hash_Tables_Used then
8333
8334                Ent := NCT_Assoc.Get (Associated_Node_For_Itype (Old_Itype));
8335
8336                if Present (Ent) then
8337                   Set_Associated_Node_For_Itype (New_Itype, Ent);
8338                end if;
8339
8340                Ent := NCT_Itype_Assoc.Get (Old_Itype);
8341                if Present (Ent) then
8342                   Set_Associated_Node_For_Itype (Ent, New_Itype);
8343
8344                --  If the hash table has no association for this Itype and
8345                --  its associated node, enter one now.
8346
8347                else
8348                   NCT_Itype_Assoc.Set
8349                     (Associated_Node_For_Itype (Old_Itype), New_Itype);
8350                end if;
8351
8352             --  Case of hash tables not used
8353
8354             else
8355                E := First_Elmt (Actual_Map);
8356                while Present (E) loop
8357                   if Associated_Node_For_Itype (Old_Itype) = Node (E) then
8358                      Set_Associated_Node_For_Itype
8359                        (New_Itype, Node (Next_Elmt (E)));
8360                   end if;
8361
8362                   if Is_Type (Node (E))
8363                     and then
8364                       Old_Itype = Associated_Node_For_Itype (Node (E))
8365                   then
8366                      Set_Associated_Node_For_Itype
8367                        (Node (Next_Elmt (E)), New_Itype);
8368                   end if;
8369
8370                   E := Next_Elmt (Next_Elmt (E));
8371                end loop;
8372             end if;
8373          end if;
8374
8375          if Present (Freeze_Node (New_Itype)) then
8376             Set_Is_Frozen (New_Itype, False);
8377             Set_Freeze_Node (New_Itype, Empty);
8378          end if;
8379
8380          --  Add new association to map
8381
8382          if No (Actual_Map) then
8383             Actual_Map := New_Elmt_List;
8384          end if;
8385
8386          Append_Elmt (Old_Itype, Actual_Map);
8387          Append_Elmt (New_Itype, Actual_Map);
8388
8389          if NCT_Hash_Tables_Used then
8390             NCT_Assoc.Set (Old_Itype, New_Itype);
8391
8392          else
8393             NCT_Table_Entries := NCT_Table_Entries + 1;
8394
8395             if NCT_Table_Entries > NCT_Hash_Threshhold then
8396                Build_NCT_Hash_Tables;
8397             end if;
8398          end if;
8399
8400          --  If a record subtype is simply copied, the entity list will be
8401          --  shared. Thus cloned_Subtype must be set to indicate the sharing.
8402
8403          if Ekind (Old_Itype) = E_Record_Subtype
8404            or else Ekind (Old_Itype) = E_Class_Wide_Subtype
8405          then
8406             Set_Cloned_Subtype (New_Itype, Old_Itype);
8407          end if;
8408
8409          --  Visit descendents that eventually get copied
8410
8411          Visit_Field (Union_Id (Etype (Old_Itype)), Old_Itype);
8412
8413          if Is_Discrete_Type (Old_Itype) then
8414             Visit_Field (Union_Id (Scalar_Range (Old_Itype)), Old_Itype);
8415
8416          elsif Has_Discriminants (Base_Type (Old_Itype)) then
8417             --  ??? This should involve call to Visit_Field
8418             Visit_Elist (Discriminant_Constraint (Old_Itype));
8419
8420          elsif Is_Array_Type (Old_Itype) then
8421             if Present (First_Index (Old_Itype)) then
8422                Visit_Field (Union_Id (List_Containing
8423                                 (First_Index (Old_Itype))),
8424                             Old_Itype);
8425             end if;
8426
8427             if Is_Packed (Old_Itype) then
8428                Visit_Field (Union_Id (Packed_Array_Type (Old_Itype)),
8429                             Old_Itype);
8430             end if;
8431          end if;
8432       end Visit_Itype;
8433
8434       ----------------
8435       -- Visit_List --
8436       ----------------
8437
8438       procedure Visit_List (L : List_Id) is
8439          N : Node_Id;
8440       begin
8441          if L /= No_List then
8442             N := First (L);
8443
8444             while Present (N) loop
8445                Visit_Node (N);
8446                Next (N);
8447             end loop;
8448          end if;
8449       end Visit_List;
8450
8451       ----------------
8452       -- Visit_Node --
8453       ----------------
8454
8455       procedure Visit_Node (N : Node_Or_Entity_Id) is
8456
8457       --  Start of processing for Visit_Node
8458
8459       begin
8460          --  Handle case of an Itype, which must be copied
8461
8462          if Has_Extension (N)
8463            and then Is_Itype (N)
8464          then
8465             --  Nothing to do if already in the list. This can happen with an
8466             --  Itype entity that appears more than once in the tree.
8467             --  Note that we do not want to visit descendents in this case.
8468
8469             --  Test for already in list when hash table is used
8470
8471             if NCT_Hash_Tables_Used then
8472                if Present (NCT_Assoc.Get (Entity_Id (N))) then
8473                   return;
8474                end if;
8475
8476             --  Test for already in list when hash table not used
8477
8478             else
8479                declare
8480                   E : Elmt_Id;
8481                begin
8482                   if Present (Actual_Map) then
8483                      E := First_Elmt (Actual_Map);
8484                      while Present (E) loop
8485                         if Node (E) = N then
8486                            return;
8487                         else
8488                            E := Next_Elmt (Next_Elmt (E));
8489                         end if;
8490                      end loop;
8491                   end if;
8492                end;
8493             end if;
8494
8495             Visit_Itype (N);
8496          end if;
8497
8498          --  Visit descendents
8499
8500          Visit_Field (Field1 (N), N);
8501          Visit_Field (Field2 (N), N);
8502          Visit_Field (Field3 (N), N);
8503          Visit_Field (Field4 (N), N);
8504          Visit_Field (Field5 (N), N);
8505       end Visit_Node;
8506
8507    --  Start of processing for New_Copy_Tree
8508
8509    begin
8510       Actual_Map := Map;
8511
8512       --  See if we should use hash table
8513
8514       if No (Actual_Map) then
8515          NCT_Hash_Tables_Used := False;
8516
8517       else
8518          declare
8519             Elmt : Elmt_Id;
8520
8521          begin
8522             NCT_Table_Entries := 0;
8523
8524             Elmt := First_Elmt (Actual_Map);
8525             while Present (Elmt) loop
8526                NCT_Table_Entries := NCT_Table_Entries + 1;
8527                Next_Elmt (Elmt);
8528                Next_Elmt (Elmt);
8529             end loop;
8530
8531             if NCT_Table_Entries > NCT_Hash_Threshhold then
8532                Build_NCT_Hash_Tables;
8533             else
8534                NCT_Hash_Tables_Used := False;
8535             end if;
8536          end;
8537       end if;
8538
8539       --  Hash table set up if required, now start phase one by visiting
8540       --  top node (we will recursively visit the descendents).
8541
8542       Visit_Node (Source);
8543
8544       --  Now the second phase of the copy can start. First we process
8545       --  all the mapped entities, copying their descendents.
8546
8547       if Present (Actual_Map) then
8548          declare
8549             Elmt      : Elmt_Id;
8550             New_Itype : Entity_Id;
8551          begin
8552             Elmt := First_Elmt (Actual_Map);
8553             while Present (Elmt) loop
8554                Next_Elmt (Elmt);
8555                New_Itype := Node (Elmt);
8556                Copy_Itype_With_Replacement (New_Itype);
8557                Next_Elmt (Elmt);
8558             end loop;
8559          end;
8560       end if;
8561
8562       --  Now we can copy the actual tree
8563
8564       return Copy_Node_With_Replacement (Source);
8565    end New_Copy_Tree;
8566
8567    -------------------------
8568    -- New_External_Entity --
8569    -------------------------
8570
8571    function New_External_Entity
8572      (Kind         : Entity_Kind;
8573       Scope_Id     : Entity_Id;
8574       Sloc_Value   : Source_Ptr;
8575       Related_Id   : Entity_Id;
8576       Suffix       : Character;
8577       Suffix_Index : Nat := 0;
8578       Prefix       : Character := ' ') return Entity_Id
8579    is
8580       N : constant Entity_Id :=
8581             Make_Defining_Identifier (Sloc_Value,
8582               New_External_Name
8583                 (Chars (Related_Id), Suffix, Suffix_Index, Prefix));
8584
8585    begin
8586       Set_Ekind          (N, Kind);
8587       Set_Is_Internal    (N, True);
8588       Append_Entity      (N, Scope_Id);
8589       Set_Public_Status  (N);
8590
8591       if Kind in Type_Kind then
8592          Init_Size_Align (N);
8593       end if;
8594
8595       return N;
8596    end New_External_Entity;
8597
8598    -------------------------
8599    -- New_Internal_Entity --
8600    -------------------------
8601
8602    function New_Internal_Entity
8603      (Kind       : Entity_Kind;
8604       Scope_Id   : Entity_Id;
8605       Sloc_Value : Source_Ptr;
8606       Id_Char    : Character) return Entity_Id
8607    is
8608       N : constant Entity_Id :=
8609             Make_Defining_Identifier (Sloc_Value, New_Internal_Name (Id_Char));
8610
8611    begin
8612       Set_Ekind          (N, Kind);
8613       Set_Is_Internal    (N, True);
8614       Append_Entity      (N, Scope_Id);
8615
8616       if Kind in Type_Kind then
8617          Init_Size_Align (N);
8618       end if;
8619
8620       return N;
8621    end New_Internal_Entity;
8622
8623    -----------------
8624    -- Next_Actual --
8625    -----------------
8626
8627    function Next_Actual (Actual_Id : Node_Id) return Node_Id is
8628       N  : Node_Id;
8629
8630    begin
8631       --  If we are pointing at a positional parameter, it is a member of a
8632       --  node list (the list of parameters), and the next parameter is the
8633       --  next node on the list, unless we hit a parameter association, then
8634       --  we shift to using the chain whose head is the First_Named_Actual in
8635       --  the parent, and then is threaded using the Next_Named_Actual of the
8636       --  Parameter_Association. All this fiddling is because the original node
8637       --  list is in the textual call order, and what we need is the
8638       --  declaration order.
8639
8640       if Is_List_Member (Actual_Id) then
8641          N := Next (Actual_Id);
8642
8643          if Nkind (N) = N_Parameter_Association then
8644             return First_Named_Actual (Parent (Actual_Id));
8645          else
8646             return N;
8647          end if;
8648
8649       else
8650          return Next_Named_Actual (Parent (Actual_Id));
8651       end if;
8652    end Next_Actual;
8653
8654    procedure Next_Actual (Actual_Id : in out Node_Id) is
8655    begin
8656       Actual_Id := Next_Actual (Actual_Id);
8657    end Next_Actual;
8658
8659    -----------------------
8660    -- Normalize_Actuals --
8661    -----------------------
8662
8663    --  Chain actuals according to formals of subprogram. If there are no named
8664    --  associations, the chain is simply the list of Parameter Associations,
8665    --  since the order is the same as the declaration order. If there are named
8666    --  associations, then the First_Named_Actual field in the N_Function_Call
8667    --  or N_Procedure_Call_Statement node points to the Parameter_Association
8668    --  node for the parameter that comes first in declaration order. The
8669    --  remaining named parameters are then chained in declaration order using
8670    --  Next_Named_Actual.
8671
8672    --  This routine also verifies that the number of actuals is compatible with
8673    --  the number and default values of formals, but performs no type checking
8674    --  (type checking is done by the caller).
8675
8676    --  If the matching succeeds, Success is set to True and the caller proceeds
8677    --  with type-checking. If the match is unsuccessful, then Success is set to
8678    --  False, and the caller attempts a different interpretation, if there is
8679    --  one.
8680
8681    --  If the flag Report is on, the call is not overloaded, and a failure to
8682    --  match can be reported here, rather than in the caller.
8683
8684    procedure Normalize_Actuals
8685      (N       : Node_Id;
8686       S       : Entity_Id;
8687       Report  : Boolean;
8688       Success : out Boolean)
8689    is
8690       Actuals     : constant List_Id := Parameter_Associations (N);
8691       Actual      : Node_Id := Empty;
8692       Formal      : Entity_Id;
8693       Last        : Node_Id := Empty;
8694       First_Named : Node_Id := Empty;
8695       Found       : Boolean;
8696
8697       Formals_To_Match : Integer := 0;
8698       Actuals_To_Match : Integer := 0;
8699
8700       procedure Chain (A : Node_Id);
8701       --  Add named actual at the proper place in the list, using the
8702       --  Next_Named_Actual link.
8703
8704       function Reporting return Boolean;
8705       --  Determines if an error is to be reported. To report an error, we
8706       --  need Report to be True, and also we do not report errors caused
8707       --  by calls to init procs that occur within other init procs. Such
8708       --  errors must always be cascaded errors, since if all the types are
8709       --  declared correctly, the compiler will certainly build decent calls!
8710
8711       -----------
8712       -- Chain --
8713       -----------
8714
8715       procedure Chain (A : Node_Id) is
8716       begin
8717          if No (Last) then
8718
8719             --  Call node points to first actual in list
8720
8721             Set_First_Named_Actual (N, Explicit_Actual_Parameter (A));
8722
8723          else
8724             Set_Next_Named_Actual (Last, Explicit_Actual_Parameter (A));
8725          end if;
8726
8727          Last := A;
8728          Set_Next_Named_Actual (Last, Empty);
8729       end Chain;
8730
8731       ---------------
8732       -- Reporting --
8733       ---------------
8734
8735       function Reporting return Boolean is
8736       begin
8737          if not Report then
8738             return False;
8739
8740          elsif not Within_Init_Proc then
8741             return True;
8742
8743          elsif Is_Init_Proc (Entity (Name (N))) then
8744             return False;
8745
8746          else
8747             return True;
8748          end if;
8749       end Reporting;
8750
8751    --  Start of processing for Normalize_Actuals
8752
8753    begin
8754       if Is_Access_Type (S) then
8755
8756          --  The name in the call is a function call that returns an access
8757          --  to subprogram. The designated type has the list of formals.
8758
8759          Formal := First_Formal (Designated_Type (S));
8760       else
8761          Formal := First_Formal (S);
8762       end if;
8763
8764       while Present (Formal) loop
8765          Formals_To_Match := Formals_To_Match + 1;
8766          Next_Formal (Formal);
8767       end loop;
8768
8769       --  Find if there is a named association, and verify that no positional
8770       --  associations appear after named ones.
8771
8772       if Present (Actuals) then
8773          Actual := First (Actuals);
8774       end if;
8775
8776       while Present (Actual)
8777         and then Nkind (Actual) /= N_Parameter_Association
8778       loop
8779          Actuals_To_Match := Actuals_To_Match + 1;
8780          Next (Actual);
8781       end loop;
8782
8783       if No (Actual) and Actuals_To_Match = Formals_To_Match then
8784
8785          --  Most common case: positional notation, no defaults
8786
8787          Success := True;
8788          return;
8789
8790       elsif Actuals_To_Match > Formals_To_Match then
8791
8792          --  Too many actuals: will not work
8793
8794          if Reporting then
8795             if Is_Entity_Name (Name (N)) then
8796                Error_Msg_N ("too many arguments in call to&", Name (N));
8797             else
8798                Error_Msg_N ("too many arguments in call", N);
8799             end if;
8800          end if;
8801
8802          Success := False;
8803          return;
8804       end if;
8805
8806       First_Named := Actual;
8807
8808       while Present (Actual) loop
8809          if Nkind (Actual) /= N_Parameter_Association then
8810             Error_Msg_N
8811               ("positional parameters not allowed after named ones", Actual);
8812             Success := False;
8813             return;
8814
8815          else
8816             Actuals_To_Match := Actuals_To_Match + 1;
8817          end if;
8818
8819          Next (Actual);
8820       end loop;
8821
8822       if Present (Actuals) then
8823          Actual := First (Actuals);
8824       end if;
8825
8826       Formal := First_Formal (S);
8827       while Present (Formal) loop
8828
8829          --  Match the formals in order. If the corresponding actual is
8830          --  positional, nothing to do. Else scan the list of named actuals
8831          --  to find the one with the right name.
8832
8833          if Present (Actual)
8834            and then Nkind (Actual) /= N_Parameter_Association
8835          then
8836             Next (Actual);
8837             Actuals_To_Match := Actuals_To_Match - 1;
8838             Formals_To_Match := Formals_To_Match - 1;
8839
8840          else
8841             --  For named parameters, search the list of actuals to find
8842             --  one that matches the next formal name.
8843
8844             Actual := First_Named;
8845             Found  := False;
8846             while Present (Actual) loop
8847                if Chars (Selector_Name (Actual)) = Chars (Formal) then
8848                   Found := True;
8849                   Chain (Actual);
8850                   Actuals_To_Match := Actuals_To_Match - 1;
8851                   Formals_To_Match := Formals_To_Match - 1;
8852                   exit;
8853                end if;
8854
8855                Next (Actual);
8856             end loop;
8857
8858             if not Found then
8859                if Ekind (Formal) /= E_In_Parameter
8860                  or else No (Default_Value (Formal))
8861                then
8862                   if Reporting then
8863                      if (Comes_From_Source (S)
8864                           or else Sloc (S) = Standard_Location)
8865                        and then Is_Overloadable (S)
8866                      then
8867                         if No (Actuals)
8868                           and then
8869                            (Nkind (Parent (N)) = N_Procedure_Call_Statement
8870                              or else
8871                            (Nkind (Parent (N)) = N_Function_Call
8872                              or else
8873                             Nkind (Parent (N)) = N_Parameter_Association))
8874                           and then Ekind (S) /= E_Function
8875                         then
8876                            Set_Etype (N, Etype (S));
8877                         else
8878                            Error_Msg_Name_1 := Chars (S);
8879                            Error_Msg_Sloc := Sloc (S);
8880                            Error_Msg_NE
8881                              ("missing argument for parameter & " &
8882                                 "in call to % declared #", N, Formal);
8883                         end if;
8884
8885                      elsif Is_Overloadable (S) then
8886                         Error_Msg_Name_1 := Chars (S);
8887
8888                         --  Point to type derivation that generated the
8889                         --  operation.
8890
8891                         Error_Msg_Sloc := Sloc (Parent (S));
8892
8893                         Error_Msg_NE
8894                           ("missing argument for parameter & " &
8895                              "in call to % (inherited) #", N, Formal);
8896
8897                      else
8898                         Error_Msg_NE
8899                           ("missing argument for parameter &", N, Formal);
8900                      end if;
8901                   end if;
8902
8903                   Success := False;
8904                   return;
8905
8906                else
8907                   Formals_To_Match := Formals_To_Match - 1;
8908                end if;
8909             end if;
8910          end if;
8911
8912          Next_Formal (Formal);
8913       end loop;
8914
8915       if Formals_To_Match = 0 and then Actuals_To_Match = 0 then
8916          Success := True;
8917          return;
8918
8919       else
8920          if Reporting then
8921
8922             --  Find some superfluous named actual that did not get
8923             --  attached to the list of associations.
8924
8925             Actual := First (Actuals);
8926             while Present (Actual) loop
8927                if Nkind (Actual) = N_Parameter_Association
8928                  and then Actual /= Last
8929                  and then No (Next_Named_Actual (Actual))
8930                then
8931                   Error_Msg_N ("unmatched actual & in call",
8932                     Selector_Name (Actual));
8933                   exit;
8934                end if;
8935
8936                Next (Actual);
8937             end loop;
8938          end if;
8939
8940          Success := False;
8941          return;
8942       end if;
8943    end Normalize_Actuals;
8944
8945    --------------------------------
8946    -- Note_Possible_Modification --
8947    --------------------------------
8948
8949    procedure Note_Possible_Modification (N : Node_Id; Sure : Boolean) is
8950       Modification_Comes_From_Source : constant Boolean :=
8951                                          Comes_From_Source (Parent (N));
8952
8953       Ent : Entity_Id;
8954       Exp : Node_Id;
8955
8956    begin
8957       --  Loop to find referenced entity, if there is one
8958
8959       Exp := N;
8960       loop
8961          <<Continue>>
8962          Ent := Empty;
8963
8964          if Is_Entity_Name (Exp) then
8965             Ent := Entity (Exp);
8966
8967             --  If the entity is missing, it is an undeclared identifier,
8968             --  and there is nothing to annotate.
8969
8970             if No (Ent) then
8971                return;
8972             end if;
8973
8974          elsif Nkind (Exp) = N_Explicit_Dereference then
8975             declare
8976                P : constant Node_Id := Prefix (Exp);
8977
8978             begin
8979                if Nkind (P) = N_Selected_Component
8980                  and then Present (
8981                    Entry_Formal (Entity (Selector_Name (P))))
8982                then
8983                   --  Case of a reference to an entry formal
8984
8985                   Ent := Entry_Formal (Entity (Selector_Name (P)));
8986
8987                elsif Nkind (P) = N_Identifier
8988                  and then Nkind (Parent (Entity (P))) = N_Object_Declaration
8989                  and then Present (Expression (Parent (Entity (P))))
8990                  and then Nkind (Expression (Parent (Entity (P))))
8991                    = N_Reference
8992                then
8993                   --  Case of a reference to a value on which side effects have
8994                   --  been removed.
8995
8996                   Exp := Prefix (Expression (Parent (Entity (P))));
8997                   goto Continue;
8998
8999                else
9000                   return;
9001
9002                end if;
9003             end;
9004
9005          elsif     Nkind (Exp) = N_Type_Conversion
9006            or else Nkind (Exp) = N_Unchecked_Type_Conversion
9007          then
9008             Exp := Expression (Exp);
9009             goto Continue;
9010
9011          elsif     Nkind (Exp) = N_Slice
9012            or else Nkind (Exp) = N_Indexed_Component
9013            or else Nkind (Exp) = N_Selected_Component
9014          then
9015             Exp := Prefix (Exp);
9016             goto Continue;
9017
9018          else
9019             return;
9020          end if;
9021
9022          --  Now look for entity being referenced
9023
9024          if Present (Ent) then
9025             if Is_Object (Ent) then
9026                if Comes_From_Source (Exp)
9027                  or else Modification_Comes_From_Source
9028                then
9029                   if Has_Pragma_Unmodified (Ent) then
9030                      Error_Msg_NE ("?pragma Unmodified given for &!", N, Ent);
9031                   end if;
9032
9033                   Set_Never_Set_In_Source (Ent, False);
9034                end if;
9035
9036                Set_Is_True_Constant (Ent, False);
9037                Set_Current_Value    (Ent, Empty);
9038                Set_Is_Known_Null    (Ent, False);
9039
9040                if not Can_Never_Be_Null (Ent) then
9041                   Set_Is_Known_Non_Null (Ent, False);
9042                end if;
9043
9044                --  Follow renaming chain
9045
9046                if (Ekind (Ent) = E_Variable or else Ekind (Ent) = E_Constant)
9047                  and then Present (Renamed_Object (Ent))
9048                then
9049                   Exp := Renamed_Object (Ent);
9050                   goto Continue;
9051                end if;
9052
9053                --  Generate a reference only if the assignment comes from
9054                --  source. This excludes, for example, calls to a dispatching
9055                --  assignment operation when the left-hand side is tagged.
9056
9057                if Modification_Comes_From_Source then
9058                   Generate_Reference (Ent, Exp, 'm');
9059                end if;
9060
9061                Check_Nested_Access (Ent);
9062             end if;
9063
9064             Kill_Checks (Ent);
9065
9066             --  If we are sure this is a modification from source, and we know
9067             --  this modifies a constant, then give an appropriate warning.
9068
9069             if Overlays_Constant (Ent)
9070               and then Modification_Comes_From_Source
9071               and then Sure
9072             then
9073                declare
9074                   A : constant Node_Id := Address_Clause (Ent);
9075                begin
9076                   if Present (A) then
9077                      declare
9078                         Exp : constant Node_Id := Expression (A);
9079                      begin
9080                         if Nkind (Exp) = N_Attribute_Reference
9081                           and then Attribute_Name (Exp) = Name_Address
9082                           and then Is_Entity_Name (Prefix (Exp))
9083                         then
9084                            Error_Msg_Sloc := Sloc (A);
9085                            Error_Msg_NE
9086                              ("constant& may be modified via address clause#?",
9087                               N, Entity (Prefix (Exp)));
9088                         end if;
9089                      end;
9090                   end if;
9091                end;
9092             end if;
9093
9094             return;
9095          end if;
9096       end loop;
9097    end Note_Possible_Modification;
9098
9099    -------------------------
9100    -- Object_Access_Level --
9101    -------------------------
9102
9103    function Object_Access_Level (Obj : Node_Id) return Uint is
9104       E : Entity_Id;
9105
9106    --  Returns the static accessibility level of the view denoted by Obj. Note
9107    --  that the value returned is the result of a call to Scope_Depth. Only
9108    --  scope depths associated with dynamic scopes can actually be returned.
9109    --  Since only relative levels matter for accessibility checking, the fact
9110    --  that the distance between successive levels of accessibility is not
9111    --  always one is immaterial (invariant: if level(E2) is deeper than
9112    --  level(E1), then Scope_Depth(E1) < Scope_Depth(E2)).
9113
9114       function Reference_To (Obj : Node_Id) return Node_Id;
9115       --  An explicit dereference is created when removing side-effects from
9116       --  expressions for constraint checking purposes. In this case a local
9117       --  access type is created for it. The correct access level is that of
9118       --  the original source node. We detect this case by noting that the
9119       --  prefix of the dereference is created by an object declaration whose
9120       --  initial expression is a reference.
9121
9122       ------------------
9123       -- Reference_To --
9124       ------------------
9125
9126       function Reference_To (Obj : Node_Id) return Node_Id is
9127          Pref : constant Node_Id := Prefix (Obj);
9128       begin
9129          if Is_Entity_Name (Pref)
9130            and then Nkind (Parent (Entity (Pref))) = N_Object_Declaration
9131            and then Present (Expression (Parent (Entity (Pref))))
9132            and then Nkind (Expression (Parent (Entity (Pref)))) = N_Reference
9133          then
9134             return (Prefix (Expression (Parent (Entity (Pref)))));
9135          else
9136             return Empty;
9137          end if;
9138       end Reference_To;
9139
9140    --  Start of processing for Object_Access_Level
9141
9142    begin
9143       if Is_Entity_Name (Obj) then
9144          E := Entity (Obj);
9145
9146          if Is_Prival (E) then
9147             E := Prival_Link (E);
9148          end if;
9149
9150          --  If E is a type then it denotes a current instance. For this case
9151          --  we add one to the normal accessibility level of the type to ensure
9152          --  that current instances are treated as always being deeper than
9153          --  than the level of any visible named access type (see 3.10.2(21)).
9154
9155          if Is_Type (E) then
9156             return Type_Access_Level (E) +  1;
9157
9158          elsif Present (Renamed_Object (E)) then
9159             return Object_Access_Level (Renamed_Object (E));
9160
9161          --  Similarly, if E is a component of the current instance of a
9162          --  protected type, any instance of it is assumed to be at a deeper
9163          --  level than the type. For a protected object (whose type is an
9164          --  anonymous protected type) its components are at the same level
9165          --  as the type itself.
9166
9167          elsif not Is_Overloadable (E)
9168            and then Ekind (Scope (E)) = E_Protected_Type
9169            and then Comes_From_Source (Scope (E))
9170          then
9171             return Type_Access_Level (Scope (E)) + 1;
9172
9173          else
9174             return Scope_Depth (Enclosing_Dynamic_Scope (E));
9175          end if;
9176
9177       elsif Nkind (Obj) = N_Selected_Component then
9178          if Is_Access_Type (Etype (Prefix (Obj))) then
9179             return Type_Access_Level (Etype (Prefix (Obj)));
9180          else
9181             return Object_Access_Level (Prefix (Obj));
9182          end if;
9183
9184       elsif Nkind (Obj) = N_Indexed_Component then
9185          if Is_Access_Type (Etype (Prefix (Obj))) then
9186             return Type_Access_Level (Etype (Prefix (Obj)));
9187          else
9188             return Object_Access_Level (Prefix (Obj));
9189          end if;
9190
9191       elsif Nkind (Obj) = N_Explicit_Dereference then
9192
9193          --  If the prefix is a selected access discriminant then we make a
9194          --  recursive call on the prefix, which will in turn check the level
9195          --  of the prefix object of the selected discriminant.
9196
9197          if Nkind (Prefix (Obj)) = N_Selected_Component
9198            and then Ekind (Etype (Prefix (Obj))) = E_Anonymous_Access_Type
9199            and then
9200              Ekind (Entity (Selector_Name (Prefix (Obj)))) = E_Discriminant
9201          then
9202             return Object_Access_Level (Prefix (Obj));
9203
9204          elsif not (Comes_From_Source (Obj)) then
9205             declare
9206                Ref : constant Node_Id := Reference_To (Obj);
9207             begin
9208                if Present (Ref) then
9209                   return Object_Access_Level (Ref);
9210                else
9211                   return Type_Access_Level (Etype (Prefix (Obj)));
9212                end if;
9213             end;
9214
9215          else
9216             return Type_Access_Level (Etype (Prefix (Obj)));
9217          end if;
9218
9219       elsif Nkind (Obj) = N_Type_Conversion
9220         or else Nkind (Obj) = N_Unchecked_Type_Conversion
9221       then
9222          return Object_Access_Level (Expression (Obj));
9223
9224       --  Function results are objects, so we get either the access level of
9225       --  the function or, in the case of an indirect call, the level of the
9226       --  access-to-subprogram type.
9227
9228       elsif Nkind (Obj) = N_Function_Call then
9229          if Is_Entity_Name (Name (Obj)) then
9230             return Subprogram_Access_Level (Entity (Name (Obj)));
9231          else
9232             return Type_Access_Level (Etype (Prefix (Name (Obj))));
9233          end if;
9234
9235       --  For convenience we handle qualified expressions, even though
9236       --  they aren't technically object names.
9237
9238       elsif Nkind (Obj) = N_Qualified_Expression then
9239          return Object_Access_Level (Expression (Obj));
9240
9241       --  Otherwise return the scope level of Standard.
9242       --  (If there are cases that fall through
9243       --  to this point they will be treated as
9244       --  having global accessibility for now. ???)
9245
9246       else
9247          return Scope_Depth (Standard_Standard);
9248       end if;
9249    end Object_Access_Level;
9250
9251    -----------------------
9252    -- Private_Component --
9253    -----------------------
9254
9255    function Private_Component (Type_Id : Entity_Id) return Entity_Id is
9256       Ancestor  : constant Entity_Id := Base_Type (Type_Id);
9257
9258       function Trace_Components
9259         (T     : Entity_Id;
9260          Check : Boolean) return Entity_Id;
9261       --  Recursive function that does the work, and checks against circular
9262       --  definition for each subcomponent type.
9263
9264       ----------------------
9265       -- Trace_Components --
9266       ----------------------
9267
9268       function Trace_Components
9269          (T     : Entity_Id;
9270           Check : Boolean) return Entity_Id
9271        is
9272          Btype     : constant Entity_Id := Base_Type (T);
9273          Component : Entity_Id;
9274          P         : Entity_Id;
9275          Candidate : Entity_Id := Empty;
9276
9277       begin
9278          if Check and then Btype = Ancestor then
9279             Error_Msg_N ("circular type definition", Type_Id);
9280             return Any_Type;
9281          end if;
9282
9283          if Is_Private_Type (Btype)
9284            and then not Is_Generic_Type (Btype)
9285          then
9286             if Present (Full_View (Btype))
9287               and then Is_Record_Type (Full_View (Btype))
9288               and then not Is_Frozen (Btype)
9289             then
9290                --  To indicate that the ancestor depends on a private type, the
9291                --  current Btype is sufficient. However, to check for circular
9292                --  definition we must recurse on the full view.
9293
9294                Candidate := Trace_Components (Full_View (Btype), True);
9295
9296                if Candidate = Any_Type then
9297                   return Any_Type;
9298                else
9299                   return Btype;
9300                end if;
9301
9302             else
9303                return Btype;
9304             end if;
9305
9306          elsif Is_Array_Type (Btype) then
9307             return Trace_Components (Component_Type (Btype), True);
9308
9309          elsif Is_Record_Type (Btype) then
9310             Component := First_Entity (Btype);
9311             while Present (Component) loop
9312
9313                --  Skip anonymous types generated by constrained components
9314
9315                if not Is_Type (Component) then
9316                   P := Trace_Components (Etype (Component), True);
9317
9318                   if Present (P) then
9319                      if P = Any_Type then
9320                         return P;
9321                      else
9322                         Candidate := P;
9323                      end if;
9324                   end if;
9325                end if;
9326
9327                Next_Entity (Component);
9328             end loop;
9329
9330             return Candidate;
9331
9332          else
9333             return Empty;
9334          end if;
9335       end Trace_Components;
9336
9337    --  Start of processing for Private_Component
9338
9339    begin
9340       return Trace_Components (Type_Id, False);
9341    end Private_Component;
9342
9343    ---------------------------
9344    -- Primitive_Names_Match --
9345    ---------------------------
9346
9347    function Primitive_Names_Match (E1, E2 : Entity_Id) return Boolean is
9348
9349       function Non_Internal_Name (E : Entity_Id) return Name_Id;
9350       --  Given an internal name, returns the corresponding non-internal name
9351
9352       ------------------------
9353       --  Non_Internal_Name --
9354       ------------------------
9355
9356       function Non_Internal_Name (E : Entity_Id) return Name_Id is
9357       begin
9358          Get_Name_String (Chars (E));
9359          Name_Len := Name_Len - 1;
9360          return Name_Find;
9361       end Non_Internal_Name;
9362
9363    --  Start of processing for Primitive_Names_Match
9364
9365    begin
9366       pragma Assert (Present (E1) and then Present (E2));
9367
9368       return Chars (E1) = Chars (E2)
9369         or else
9370            (not Is_Internal_Name (Chars (E1))
9371               and then Is_Internal_Name (Chars (E2))
9372               and then Non_Internal_Name (E2) = Chars (E1))
9373         or else
9374            (not Is_Internal_Name (Chars (E2))
9375               and then Is_Internal_Name (Chars (E1))
9376               and then Non_Internal_Name (E1) = Chars (E2))
9377         or else
9378            (Is_Predefined_Dispatching_Operation (E1)
9379               and then Is_Predefined_Dispatching_Operation (E2)
9380               and then Same_TSS (E1, E2))
9381         or else
9382            (Is_Init_Proc (E1) and then Is_Init_Proc (E2));
9383    end Primitive_Names_Match;
9384
9385    -----------------------
9386    -- Process_End_Label --
9387    -----------------------
9388
9389    procedure Process_End_Label
9390      (N   : Node_Id;
9391       Typ : Character;
9392       Ent  : Entity_Id)
9393    is
9394       Loc  : Source_Ptr;
9395       Nam  : Node_Id;
9396       Scop : Entity_Id;
9397
9398       Label_Ref : Boolean;
9399       --  Set True if reference to end label itself is required
9400
9401       Endl : Node_Id;
9402       --  Gets set to the operator symbol or identifier that references the
9403       --  entity Ent. For the child unit case, this is the identifier from the
9404       --  designator. For other cases, this is simply Endl.
9405
9406       procedure Generate_Parent_Ref (N : Node_Id; E : Entity_Id);
9407       --  N is an identifier node that appears as a parent unit reference in
9408       --  the case where Ent is a child unit. This procedure generates an
9409       --  appropriate cross-reference entry. E is the corresponding entity.
9410
9411       -------------------------
9412       -- Generate_Parent_Ref --
9413       -------------------------
9414
9415       procedure Generate_Parent_Ref (N : Node_Id; E : Entity_Id) is
9416       begin
9417          --  If names do not match, something weird, skip reference
9418
9419          if Chars (E) = Chars (N) then
9420
9421             --  Generate the reference. We do NOT consider this as a reference
9422             --  for unreferenced symbol purposes.
9423
9424             Generate_Reference (E, N, 'r', Set_Ref => False, Force => True);
9425
9426             if Style_Check then
9427                Style.Check_Identifier (N, E);
9428             end if;
9429          end if;
9430       end Generate_Parent_Ref;
9431
9432    --  Start of processing for Process_End_Label
9433
9434    begin
9435       --  If no node, ignore. This happens in some error situations, and
9436       --  also for some internally generated structures where no end label
9437       --  references are required in any case.
9438
9439       if No (N) then
9440          return;
9441       end if;
9442
9443       --  Nothing to do if no End_Label, happens for internally generated
9444       --  constructs where we don't want an end label reference anyway. Also
9445       --  nothing to do if Endl is a string literal, which means there was
9446       --  some prior error (bad operator symbol)
9447
9448       Endl := End_Label (N);
9449
9450       if No (Endl) or else Nkind (Endl) = N_String_Literal then
9451          return;
9452       end if;
9453
9454       --  Reference node is not in extended main source unit
9455
9456       if not In_Extended_Main_Source_Unit (N) then
9457
9458          --  Generally we do not collect references except for the extended
9459          --  main source unit. The one exception is the 'e' entry for a
9460          --  package spec, where it is useful for a client to have the
9461          --  ending information to define scopes.
9462
9463          if Typ /= 'e' then
9464             return;
9465
9466          else
9467             Label_Ref := False;
9468
9469             --  For this case, we can ignore any parent references, but we
9470             --  need the package name itself for the 'e' entry.
9471
9472             if Nkind (Endl) = N_Designator then
9473                Endl := Identifier (Endl);
9474             end if;
9475          end if;
9476
9477       --  Reference is in extended main source unit
9478
9479       else
9480          Label_Ref := True;
9481
9482          --  For designator, generate references for the parent entries
9483
9484          if Nkind (Endl) = N_Designator then
9485
9486             --  Generate references for the prefix if the END line comes from
9487             --  source (otherwise we do not need these references) We climb the
9488             --  scope stack to find the expected entities.
9489
9490             if Comes_From_Source (Endl) then
9491                Nam  := Name (Endl);
9492                Scop := Current_Scope;
9493                while Nkind (Nam) = N_Selected_Component loop
9494                   Scop := Scope (Scop);
9495                   exit when No (Scop);
9496                   Generate_Parent_Ref (Selector_Name (Nam), Scop);
9497                   Nam := Prefix (Nam);
9498                end loop;
9499
9500                if Present (Scop) then
9501                   Generate_Parent_Ref (Nam, Scope (Scop));
9502                end if;
9503             end if;
9504
9505             Endl := Identifier (Endl);
9506          end if;
9507       end if;
9508
9509       --  If the end label is not for the given entity, then either we have
9510       --  some previous error, or this is a generic instantiation for which
9511       --  we do not need to make a cross-reference in this case anyway. In
9512       --  either case we simply ignore the call.
9513
9514       if Chars (Ent) /= Chars (Endl) then
9515          return;
9516       end if;
9517
9518       --  If label was really there, then generate a normal reference and then
9519       --  adjust the location in the end label to point past the name (which
9520       --  should almost always be the semicolon).
9521
9522       Loc := Sloc (Endl);
9523
9524       if Comes_From_Source (Endl) then
9525
9526          --  If a label reference is required, then do the style check and
9527          --  generate an l-type cross-reference entry for the label
9528
9529          if Label_Ref then
9530             if Style_Check then
9531                Style.Check_Identifier (Endl, Ent);
9532             end if;
9533
9534             Generate_Reference (Ent, Endl, 'l', Set_Ref => False);
9535          end if;
9536
9537          --  Set the location to point past the label (normally this will
9538          --  mean the semicolon immediately following the label). This is
9539          --  done for the sake of the 'e' or 't' entry generated below.
9540
9541          Get_Decoded_Name_String (Chars (Endl));
9542          Set_Sloc (Endl, Sloc (Endl) + Source_Ptr (Name_Len));
9543       end if;
9544
9545       --  Now generate the e/t reference
9546
9547       Generate_Reference (Ent, Endl, Typ, Set_Ref => False, Force => True);
9548
9549       --  Restore Sloc, in case modified above, since we have an identifier
9550       --  and the normal Sloc should be left set in the tree.
9551
9552       Set_Sloc (Endl, Loc);
9553    end Process_End_Label;
9554
9555    ------------------
9556    -- Real_Convert --
9557    ------------------
9558
9559    --  We do the conversion to get the value of the real string by using
9560    --  the scanner, see Sinput for details on use of the internal source
9561    --  buffer for scanning internal strings.
9562
9563    function Real_Convert (S : String) return Node_Id is
9564       Save_Src : constant Source_Buffer_Ptr := Source;
9565       Negative : Boolean;
9566
9567    begin
9568       Source := Internal_Source_Ptr;
9569       Scan_Ptr := 1;
9570
9571       for J in S'Range loop
9572          Source (Source_Ptr (J)) := S (J);
9573       end loop;
9574
9575       Source (S'Length + 1) := EOF;
9576
9577       if Source (Scan_Ptr) = '-' then
9578          Negative := True;
9579          Scan_Ptr := Scan_Ptr + 1;
9580       else
9581          Negative := False;
9582       end if;
9583
9584       Scan;
9585
9586       if Negative then
9587          Set_Realval (Token_Node, UR_Negate (Realval (Token_Node)));
9588       end if;
9589
9590       Source := Save_Src;
9591       return Token_Node;
9592    end Real_Convert;
9593
9594    ------------------------------------
9595    -- References_Generic_Formal_Type --
9596    ------------------------------------
9597
9598    function References_Generic_Formal_Type (N : Node_Id) return Boolean is
9599
9600       function Process (N : Node_Id) return Traverse_Result;
9601       --  Process one node in search for generic formal type
9602
9603       -------------
9604       -- Process --
9605       -------------
9606
9607       function Process (N : Node_Id) return Traverse_Result is
9608       begin
9609          if Nkind (N) in N_Has_Entity then
9610             declare
9611                E : constant Entity_Id := Entity (N);
9612             begin
9613                if Present (E) then
9614                   if Is_Generic_Type (E) then
9615                      return Abandon;
9616                   elsif Present (Etype (E))
9617                     and then Is_Generic_Type (Etype (E))
9618                   then
9619                      return Abandon;
9620                   end if;
9621                end if;
9622             end;
9623          end if;
9624
9625          return Atree.OK;
9626       end Process;
9627
9628       function Traverse is new Traverse_Func (Process);
9629       --  Traverse tree to look for generic type
9630
9631    begin
9632       if Inside_A_Generic then
9633          return Traverse (N) = Abandon;
9634       else
9635          return False;
9636       end if;
9637    end References_Generic_Formal_Type;
9638
9639    --------------------
9640    -- Remove_Homonym --
9641    --------------------
9642
9643    procedure Remove_Homonym (E : Entity_Id) is
9644       Prev  : Entity_Id := Empty;
9645       H     : Entity_Id;
9646
9647    begin
9648       if E = Current_Entity (E) then
9649          if Present (Homonym (E)) then
9650             Set_Current_Entity (Homonym (E));
9651          else
9652             Set_Name_Entity_Id (Chars (E), Empty);
9653          end if;
9654       else
9655          H := Current_Entity (E);
9656          while Present (H) and then H /= E loop
9657             Prev := H;
9658             H    := Homonym (H);
9659          end loop;
9660
9661          Set_Homonym (Prev, Homonym (E));
9662       end if;
9663    end Remove_Homonym;
9664
9665    ---------------------
9666    -- Rep_To_Pos_Flag --
9667    ---------------------
9668
9669    function Rep_To_Pos_Flag (E : Entity_Id; Loc : Source_Ptr) return Node_Id is
9670    begin
9671       return New_Occurrence_Of
9672                (Boolean_Literals (not Range_Checks_Suppressed (E)), Loc);
9673    end Rep_To_Pos_Flag;
9674
9675    --------------------
9676    -- Require_Entity --
9677    --------------------
9678
9679    procedure Require_Entity (N : Node_Id) is
9680    begin
9681       if Is_Entity_Name (N) and then No (Entity (N)) then
9682          if Total_Errors_Detected /= 0 then
9683             Set_Entity (N, Any_Id);
9684          else
9685             raise Program_Error;
9686          end if;
9687       end if;
9688    end Require_Entity;
9689
9690    ------------------------------
9691    -- Requires_Transient_Scope --
9692    ------------------------------
9693
9694    --  A transient scope is required when variable-sized temporaries are
9695    --  allocated in the primary or secondary stack, or when finalization
9696    --  actions must be generated before the next instruction.
9697
9698    function Requires_Transient_Scope (Id : Entity_Id) return Boolean is
9699       Typ : constant Entity_Id := Underlying_Type (Id);
9700
9701    --  Start of processing for Requires_Transient_Scope
9702
9703    begin
9704       --  This is a private type which is not completed yet. This can only
9705       --  happen in a default expression (of a formal parameter or of a
9706       --  record component). Do not expand transient scope in this case
9707
9708       if No (Typ) then
9709          return False;
9710
9711       --  Do not expand transient scope for non-existent procedure return
9712
9713       elsif Typ = Standard_Void_Type then
9714          return False;
9715
9716       --  Elementary types do not require a transient scope
9717
9718       elsif Is_Elementary_Type (Typ) then
9719          return False;
9720
9721       --  Generally, indefinite subtypes require a transient scope, since the
9722       --  back end cannot generate temporaries, since this is not a valid type
9723       --  for declaring an object. It might be possible to relax this in the
9724       --  future, e.g. by declaring the maximum possible space for the type.
9725
9726       elsif Is_Indefinite_Subtype (Typ) then
9727          return True;
9728
9729       --  Functions returning tagged types may dispatch on result so their
9730       --  returned value is allocated on the secondary stack. Controlled
9731       --  type temporaries need finalization.
9732
9733       elsif Is_Tagged_Type (Typ)
9734         or else Has_Controlled_Component (Typ)
9735       then
9736          return not Is_Value_Type (Typ);
9737
9738       --  Record type
9739
9740       elsif Is_Record_Type (Typ) then
9741          declare
9742             Comp : Entity_Id;
9743          begin
9744             Comp := First_Entity (Typ);
9745             while Present (Comp) loop
9746                if Ekind (Comp) = E_Component
9747                   and then Requires_Transient_Scope (Etype (Comp))
9748                then
9749                   return True;
9750                else
9751                   Next_Entity (Comp);
9752                end if;
9753             end loop;
9754          end;
9755
9756          return False;
9757
9758       --  String literal types never require transient scope
9759
9760       elsif Ekind (Typ) = E_String_Literal_Subtype then
9761          return False;
9762
9763       --  Array type. Note that we already know that this is a constrained
9764       --  array, since unconstrained arrays will fail the indefinite test.
9765
9766       elsif Is_Array_Type (Typ) then
9767
9768          --  If component type requires a transient scope, the array does too
9769
9770          if Requires_Transient_Scope (Component_Type (Typ)) then
9771             return True;
9772
9773          --  Otherwise, we only need a transient scope if the size is not
9774          --  known at compile time.
9775
9776          else
9777             return not Size_Known_At_Compile_Time (Typ);
9778          end if;
9779
9780       --  All other cases do not require a transient scope
9781
9782       else
9783          return False;
9784       end if;
9785    end Requires_Transient_Scope;
9786
9787    --------------------------
9788    -- Reset_Analyzed_Flags --
9789    --------------------------
9790
9791    procedure Reset_Analyzed_Flags (N : Node_Id) is
9792
9793       function Clear_Analyzed (N : Node_Id) return Traverse_Result;
9794       --  Function used to reset Analyzed flags in tree. Note that we do
9795       --  not reset Analyzed flags in entities, since there is no need to
9796       --  reanalyze entities, and indeed, it is wrong to do so, since it
9797       --  can result in generating auxiliary stuff more than once.
9798
9799       --------------------
9800       -- Clear_Analyzed --
9801       --------------------
9802
9803       function Clear_Analyzed (N : Node_Id) return Traverse_Result is
9804       begin
9805          if not Has_Extension (N) then
9806             Set_Analyzed (N, False);
9807          end if;
9808
9809          return OK;
9810       end Clear_Analyzed;
9811
9812       procedure Reset_Analyzed is new Traverse_Proc (Clear_Analyzed);
9813
9814    --  Start of processing for Reset_Analyzed_Flags
9815
9816    begin
9817       Reset_Analyzed (N);
9818    end Reset_Analyzed_Flags;
9819
9820    ---------------------------
9821    -- Safe_To_Capture_Value --
9822    ---------------------------
9823
9824    function Safe_To_Capture_Value
9825      (N    : Node_Id;
9826       Ent  : Entity_Id;
9827       Cond : Boolean := False) return Boolean
9828    is
9829    begin
9830       --  The only entities for which we track constant values are variables
9831       --  which are not renamings, constants, out parameters, and in out
9832       --  parameters, so check if we have this case.
9833
9834       --  Note: it may seem odd to track constant values for constants, but in
9835       --  fact this routine is used for other purposes than simply capturing
9836       --  the value. In particular, the setting of Known[_Non]_Null.
9837
9838       if (Ekind (Ent) = E_Variable and then No (Renamed_Object (Ent)))
9839             or else
9840           Ekind (Ent) = E_Constant
9841             or else
9842           Ekind (Ent) = E_Out_Parameter
9843             or else
9844           Ekind (Ent) = E_In_Out_Parameter
9845       then
9846          null;
9847
9848       --  For conditionals, we also allow loop parameters and all formals,
9849       --  including in parameters.
9850
9851       elsif Cond
9852         and then
9853           (Ekind (Ent) = E_Loop_Parameter
9854              or else
9855            Ekind (Ent) = E_In_Parameter)
9856       then
9857          null;
9858
9859       --  For all other cases, not just unsafe, but impossible to capture
9860       --  Current_Value, since the above are the only entities which have
9861       --  Current_Value fields.
9862
9863       else
9864          return False;
9865       end if;
9866
9867       --  Skip if volatile or aliased, since funny things might be going on in
9868       --  these cases which we cannot necessarily track. Also skip any variable
9869       --  for which an address clause is given, or whose address is taken. Also
9870       --  never capture value of library level variables (an attempt to do so
9871       --  can occur in the case of package elaboration code).
9872
9873       if Treat_As_Volatile (Ent)
9874         or else Is_Aliased (Ent)
9875         or else Present (Address_Clause (Ent))
9876         or else Address_Taken (Ent)
9877         or else (Is_Library_Level_Entity (Ent)
9878                    and then Ekind (Ent) = E_Variable)
9879       then
9880          return False;
9881       end if;
9882
9883       --  OK, all above conditions are met. We also require that the scope of
9884       --  the reference be the same as the scope of the entity, not counting
9885       --  packages and blocks and loops.
9886
9887       declare
9888          E_Scope : constant Entity_Id := Scope (Ent);
9889          R_Scope : Entity_Id;
9890
9891       begin
9892          R_Scope := Current_Scope;
9893          while R_Scope /= Standard_Standard loop
9894             exit when R_Scope = E_Scope;
9895
9896             if Ekind (R_Scope) /= E_Package
9897                   and then
9898                 Ekind (R_Scope) /= E_Block
9899                   and then
9900                 Ekind (R_Scope) /= E_Loop
9901             then
9902                return False;
9903             else
9904                R_Scope := Scope (R_Scope);
9905             end if;
9906          end loop;
9907       end;
9908
9909       --  We also require that the reference does not appear in a context
9910       --  where it is not sure to be executed (i.e. a conditional context
9911       --  or an exception handler). We skip this if Cond is True, since the
9912       --  capturing of values from conditional tests handles this ok.
9913
9914       if Cond then
9915          return True;
9916       end if;
9917
9918       declare
9919          Desc : Node_Id;
9920          P    : Node_Id;
9921
9922       begin
9923          Desc := N;
9924
9925          P := Parent (N);
9926          while Present (P) loop
9927             if         Nkind (P) = N_If_Statement
9928               or else  Nkind (P) = N_Case_Statement
9929               or else (Nkind (P) in N_Short_Circuit
9930                          and then Desc = Right_Opnd (P))
9931               or else (Nkind (P) = N_Conditional_Expression
9932                          and then Desc /= First (Expressions (P)))
9933               or else  Nkind (P) = N_Exception_Handler
9934               or else  Nkind (P) = N_Selective_Accept
9935               or else  Nkind (P) = N_Conditional_Entry_Call
9936               or else  Nkind (P) = N_Timed_Entry_Call
9937               or else  Nkind (P) = N_Asynchronous_Select
9938             then
9939                return False;
9940             else
9941                Desc := P;
9942                P    := Parent (P);
9943             end if;
9944          end loop;
9945       end;
9946
9947       --  OK, looks safe to set value
9948
9949       return True;
9950    end Safe_To_Capture_Value;
9951
9952    ---------------
9953    -- Same_Name --
9954    ---------------
9955
9956    function Same_Name (N1, N2 : Node_Id) return Boolean is
9957       K1 : constant Node_Kind := Nkind (N1);
9958       K2 : constant Node_Kind := Nkind (N2);
9959
9960    begin
9961       if (K1 = N_Identifier or else K1 = N_Defining_Identifier)
9962         and then (K2 = N_Identifier or else K2 = N_Defining_Identifier)
9963       then
9964          return Chars (N1) = Chars (N2);
9965
9966       elsif (K1 = N_Selected_Component or else K1 = N_Expanded_Name)
9967         and then (K2 = N_Selected_Component or else K2 = N_Expanded_Name)
9968       then
9969          return Same_Name (Selector_Name (N1), Selector_Name (N2))
9970            and then Same_Name (Prefix (N1), Prefix (N2));
9971
9972       else
9973          return False;
9974       end if;
9975    end Same_Name;
9976
9977    -----------------
9978    -- Same_Object --
9979    -----------------
9980
9981    function Same_Object (Node1, Node2 : Node_Id) return Boolean is
9982       N1 : constant Node_Id := Original_Node (Node1);
9983       N2 : constant Node_Id := Original_Node (Node2);
9984       --  We do the tests on original nodes, since we are most interested
9985       --  in the original source, not any expansion that got in the way.
9986
9987       K1 : constant Node_Kind := Nkind (N1);
9988       K2 : constant Node_Kind := Nkind (N2);
9989
9990    begin
9991       --  First case, both are entities with same entity
9992
9993       if K1 in N_Has_Entity
9994         and then K2 in N_Has_Entity
9995         and then Present (Entity (N1))
9996         and then Present (Entity (N2))
9997         and then (Ekind (Entity (N1)) = E_Variable
9998                     or else
9999                   Ekind (Entity (N1)) = E_Constant)
10000         and then Entity (N1) = Entity (N2)
10001       then
10002          return True;
10003
10004       --  Second case, selected component with same selector, same record
10005
10006       elsif K1 = N_Selected_Component
10007         and then K2 = N_Selected_Component
10008         and then Chars (Selector_Name (N1)) = Chars (Selector_Name (N2))
10009       then
10010          return Same_Object (Prefix (N1), Prefix (N2));
10011
10012       --  Third case, indexed component with same subscripts, same array
10013
10014       elsif K1 = N_Indexed_Component
10015         and then K2 = N_Indexed_Component
10016         and then Same_Object (Prefix (N1), Prefix (N2))
10017       then
10018          declare
10019             E1, E2 : Node_Id;
10020          begin
10021             E1 := First (Expressions (N1));
10022             E2 := First (Expressions (N2));
10023             while Present (E1) loop
10024                if not Same_Value (E1, E2) then
10025                   return False;
10026                else
10027                   Next (E1);
10028                   Next (E2);
10029                end if;
10030             end loop;
10031
10032             return True;
10033          end;
10034
10035       --  Fourth case, slice of same array with same bounds
10036
10037       elsif K1 = N_Slice
10038         and then K2 = N_Slice
10039         and then Nkind (Discrete_Range (N1)) = N_Range
10040         and then Nkind (Discrete_Range (N2)) = N_Range
10041         and then Same_Value (Low_Bound (Discrete_Range (N1)),
10042                              Low_Bound (Discrete_Range (N2)))
10043         and then Same_Value (High_Bound (Discrete_Range (N1)),
10044                              High_Bound (Discrete_Range (N2)))
10045       then
10046          return Same_Name (Prefix (N1), Prefix (N2));
10047
10048       --  All other cases, not clearly the same object
10049
10050       else
10051          return False;
10052       end if;
10053    end Same_Object;
10054
10055    ---------------
10056    -- Same_Type --
10057    ---------------
10058
10059    function Same_Type (T1, T2 : Entity_Id) return Boolean is
10060    begin
10061       if T1 = T2 then
10062          return True;
10063
10064       elsif not Is_Constrained (T1)
10065         and then not Is_Constrained (T2)
10066         and then Base_Type (T1) = Base_Type (T2)
10067       then
10068          return True;
10069
10070       --  For now don't bother with case of identical constraints, to be
10071       --  fiddled with later on perhaps (this is only used for optimization
10072       --  purposes, so it is not critical to do a best possible job)
10073
10074       else
10075          return False;
10076       end if;
10077    end Same_Type;
10078
10079    ----------------
10080    -- Same_Value --
10081    ----------------
10082
10083    function Same_Value (Node1, Node2 : Node_Id) return Boolean is
10084    begin
10085       if Compile_Time_Known_Value (Node1)
10086         and then Compile_Time_Known_Value (Node2)
10087         and then Expr_Value (Node1) = Expr_Value (Node2)
10088       then
10089          return True;
10090       elsif Same_Object (Node1, Node2) then
10091          return True;
10092       else
10093          return False;
10094       end if;
10095    end Same_Value;
10096
10097    ------------------------
10098    -- Scope_Is_Transient --
10099    ------------------------
10100
10101    function Scope_Is_Transient return Boolean is
10102    begin
10103       return Scope_Stack.Table (Scope_Stack.Last).Is_Transient;
10104    end Scope_Is_Transient;
10105
10106    ------------------
10107    -- Scope_Within --
10108    ------------------
10109
10110    function Scope_Within (Scope1, Scope2 : Entity_Id) return Boolean is
10111       Scop : Entity_Id;
10112
10113    begin
10114       Scop := Scope1;
10115       while Scop /= Standard_Standard loop
10116          Scop := Scope (Scop);
10117
10118          if Scop = Scope2 then
10119             return True;
10120          end if;
10121       end loop;
10122
10123       return False;
10124    end Scope_Within;
10125
10126    --------------------------
10127    -- Scope_Within_Or_Same --
10128    --------------------------
10129
10130    function Scope_Within_Or_Same (Scope1, Scope2 : Entity_Id) return Boolean is
10131       Scop : Entity_Id;
10132
10133    begin
10134       Scop := Scope1;
10135       while Scop /= Standard_Standard loop
10136          if Scop = Scope2 then
10137             return True;
10138          else
10139             Scop := Scope (Scop);
10140          end if;
10141       end loop;
10142
10143       return False;
10144    end Scope_Within_Or_Same;
10145
10146    --------------------
10147    -- Set_Convention --
10148    --------------------
10149
10150    procedure Set_Convention (E : Entity_Id; Val : Snames.Convention_Id) is
10151    begin
10152       Basic_Set_Convention (E, Val);
10153
10154       if Is_Type (E)
10155         and then Is_Access_Subprogram_Type (Base_Type (E))
10156         and then Has_Foreign_Convention (E)
10157       then
10158          Set_Can_Use_Internal_Rep (E, False);
10159       end if;
10160    end Set_Convention;
10161
10162    ------------------------
10163    -- Set_Current_Entity --
10164    ------------------------
10165
10166    --  The given entity is to be set as the currently visible definition
10167    --  of its associated name (i.e. the Node_Id associated with its name).
10168    --  All we have to do is to get the name from the identifier, and
10169    --  then set the associated Node_Id to point to the given entity.
10170
10171    procedure Set_Current_Entity (E : Entity_Id) is
10172    begin
10173       Set_Name_Entity_Id (Chars (E), E);
10174    end Set_Current_Entity;
10175
10176    ---------------------------
10177    -- Set_Debug_Info_Needed --
10178    ---------------------------
10179
10180    procedure Set_Debug_Info_Needed (T : Entity_Id) is
10181
10182       procedure Set_Debug_Info_Needed_If_Not_Set (E : Entity_Id);
10183       pragma Inline (Set_Debug_Info_Needed_If_Not_Set);
10184       --  Used to set debug info in a related node if not set already
10185
10186       --------------------------------------
10187       -- Set_Debug_Info_Needed_If_Not_Set --
10188       --------------------------------------
10189
10190       procedure Set_Debug_Info_Needed_If_Not_Set (E : Entity_Id) is
10191       begin
10192          if Present (E)
10193            and then not Needs_Debug_Info (E)
10194          then
10195             Set_Debug_Info_Needed (E);
10196
10197             --  For a private type, indicate that the full view also needs
10198             --  debug information.
10199
10200             if Is_Type (E)
10201               and then Is_Private_Type (E)
10202               and then Present (Full_View (E))
10203             then
10204                Set_Debug_Info_Needed (Full_View (E));
10205             end if;
10206          end if;
10207       end Set_Debug_Info_Needed_If_Not_Set;
10208
10209    --  Start of processing for Set_Debug_Info_Needed
10210
10211    begin
10212       --  Nothing to do if argument is Empty or has Debug_Info_Off set, which
10213       --  indicates that Debug_Info_Needed is never required for the entity.
10214
10215       if No (T)
10216         or else Debug_Info_Off (T)
10217       then
10218          return;
10219       end if;
10220
10221       --  Set flag in entity itself. Note that we will go through the following
10222       --  circuitry even if the flag is already set on T. That's intentional,
10223       --  it makes sure that the flag will be set in subsidiary entities.
10224
10225       Set_Needs_Debug_Info (T);
10226
10227       --  Set flag on subsidiary entities if not set already
10228
10229       if Is_Object (T) then
10230          Set_Debug_Info_Needed_If_Not_Set (Etype (T));
10231
10232       elsif Is_Type (T) then
10233          Set_Debug_Info_Needed_If_Not_Set (Etype (T));
10234
10235          if Is_Record_Type (T) then
10236             declare
10237                Ent : Entity_Id := First_Entity (T);
10238             begin
10239                while Present (Ent) loop
10240                   Set_Debug_Info_Needed_If_Not_Set (Ent);
10241                   Next_Entity (Ent);
10242                end loop;
10243             end;
10244
10245          elsif Is_Array_Type (T) then
10246             Set_Debug_Info_Needed_If_Not_Set (Component_Type (T));
10247
10248             declare
10249                Indx : Node_Id := First_Index (T);
10250             begin
10251                while Present (Indx) loop
10252                   Set_Debug_Info_Needed_If_Not_Set (Etype (Indx));
10253                   Indx := Next_Index (Indx);
10254                end loop;
10255             end;
10256
10257             if Is_Packed (T) then
10258                Set_Debug_Info_Needed_If_Not_Set (Packed_Array_Type (T));
10259             end if;
10260
10261          elsif Is_Access_Type (T) then
10262             Set_Debug_Info_Needed_If_Not_Set (Directly_Designated_Type (T));
10263
10264          elsif Is_Private_Type (T) then
10265             Set_Debug_Info_Needed_If_Not_Set (Full_View (T));
10266
10267          elsif Is_Protected_Type (T) then
10268             Set_Debug_Info_Needed_If_Not_Set (Corresponding_Record_Type (T));
10269          end if;
10270       end if;
10271    end Set_Debug_Info_Needed;
10272
10273    ---------------------------------
10274    -- Set_Entity_With_Style_Check --
10275    ---------------------------------
10276
10277    procedure Set_Entity_With_Style_Check (N : Node_Id; Val : Entity_Id) is
10278       Val_Actual : Entity_Id;
10279       Nod        : Node_Id;
10280
10281    begin
10282       Set_Entity (N, Val);
10283
10284       if Style_Check
10285         and then not Suppress_Style_Checks (Val)
10286         and then not In_Instance
10287       then
10288          if Nkind (N) = N_Identifier then
10289             Nod := N;
10290          elsif Nkind (N) = N_Expanded_Name then
10291             Nod := Selector_Name (N);
10292          else
10293             return;
10294          end if;
10295
10296          --  A special situation arises for derived operations, where we want
10297          --  to do the check against the parent (since the Sloc of the derived
10298          --  operation points to the derived type declaration itself).
10299
10300          Val_Actual := Val;
10301          while not Comes_From_Source (Val_Actual)
10302            and then Nkind (Val_Actual) in N_Entity
10303            and then (Ekind (Val_Actual) = E_Enumeration_Literal
10304                       or else Is_Subprogram (Val_Actual)
10305                       or else Is_Generic_Subprogram (Val_Actual))
10306            and then Present (Alias (Val_Actual))
10307          loop
10308             Val_Actual := Alias (Val_Actual);
10309          end loop;
10310
10311          --  Renaming declarations for generic actuals do not come from source,
10312          --  and have a different name from that of the entity they rename, so
10313          --  there is no style check to perform here.
10314
10315          if Chars (Nod) = Chars (Val_Actual) then
10316             Style.Check_Identifier (Nod, Val_Actual);
10317          end if;
10318       end if;
10319
10320       Set_Entity (N, Val);
10321    end Set_Entity_With_Style_Check;
10322
10323    ------------------------
10324    -- Set_Name_Entity_Id --
10325    ------------------------
10326
10327    procedure Set_Name_Entity_Id (Id : Name_Id; Val : Entity_Id) is
10328    begin
10329       Set_Name_Table_Info (Id, Int (Val));
10330    end Set_Name_Entity_Id;
10331
10332    ---------------------
10333    -- Set_Next_Actual --
10334    ---------------------
10335
10336    procedure Set_Next_Actual (Ass1_Id : Node_Id; Ass2_Id : Node_Id) is
10337    begin
10338       if Nkind (Parent (Ass1_Id)) = N_Parameter_Association then
10339          Set_First_Named_Actual (Parent (Ass1_Id), Ass2_Id);
10340       end if;
10341    end Set_Next_Actual;
10342
10343    ----------------------------------
10344    -- Set_Optimize_Alignment_Flags --
10345    ----------------------------------
10346
10347    procedure Set_Optimize_Alignment_Flags (E : Entity_Id) is
10348    begin
10349       if Optimize_Alignment = 'S' then
10350          Set_Optimize_Alignment_Space (E);
10351       elsif Optimize_Alignment = 'T' then
10352          Set_Optimize_Alignment_Time (E);
10353       end if;
10354    end Set_Optimize_Alignment_Flags;
10355
10356    -----------------------
10357    -- Set_Public_Status --
10358    -----------------------
10359
10360    procedure Set_Public_Status (Id : Entity_Id) is
10361       S : constant Entity_Id := Current_Scope;
10362
10363       function Within_HSS_Or_If (E : Entity_Id) return Boolean;
10364       --  Determines if E is defined within handled statement sequence or
10365       --  an if statement, returns True if so, False otherwise.
10366
10367       ----------------------
10368       -- Within_HSS_Or_If --
10369       ----------------------
10370
10371       function Within_HSS_Or_If (E : Entity_Id) return Boolean is
10372          N : Node_Id;
10373       begin
10374          N := Declaration_Node (E);
10375          loop
10376             N := Parent (N);
10377
10378             if No (N) then
10379                return False;
10380
10381             elsif Nkind_In (N, N_Handled_Sequence_Of_Statements,
10382                                N_If_Statement)
10383             then
10384                return True;
10385             end if;
10386          end loop;
10387       end Within_HSS_Or_If;
10388
10389    --  Start of processing for Set_Public_Status
10390
10391    begin
10392       --  Everything in the scope of Standard is public
10393
10394       if S = Standard_Standard then
10395          Set_Is_Public (Id);
10396
10397       --  Entity is definitely not public if enclosing scope is not public
10398
10399       elsif not Is_Public (S) then
10400          return;
10401
10402       --  An object or function declaration that occurs in a handled sequence
10403       --  of statements or within an if statement is the declaration for a
10404       --  temporary object or local subprogram generated by the expander. It
10405       --  never needs to be made public and furthermore, making it public can
10406       --  cause back end problems.
10407
10408       elsif Nkind_In (Parent (Id), N_Object_Declaration,
10409                                    N_Function_Specification)
10410         and then Within_HSS_Or_If (Id)
10411       then
10412          return;
10413
10414       --  Entities in public packages or records are public
10415
10416       elsif Ekind (S) = E_Package or Is_Record_Type (S) then
10417          Set_Is_Public (Id);
10418
10419       --  The bounds of an entry family declaration can generate object
10420       --  declarations that are visible to the back-end, e.g. in the
10421       --  the declaration of a composite type that contains tasks.
10422
10423       elsif Is_Concurrent_Type (S)
10424         and then not Has_Completion (S)
10425         and then Nkind (Parent (Id)) = N_Object_Declaration
10426       then
10427          Set_Is_Public (Id);
10428       end if;
10429    end Set_Public_Status;
10430
10431    -----------------------------
10432    -- Set_Referenced_Modified --
10433    -----------------------------
10434
10435    procedure Set_Referenced_Modified (N : Node_Id; Out_Param : Boolean) is
10436       Pref : Node_Id;
10437
10438    begin
10439       --  Deal with indexed or selected component where prefix is modified
10440
10441       if Nkind (N) = N_Indexed_Component
10442            or else
10443          Nkind (N) = N_Selected_Component
10444       then
10445          Pref := Prefix (N);
10446
10447          --  If prefix is access type, then it is the designated object that is
10448          --  being modified, which means we have no entity to set the flag on.
10449
10450          if No (Etype (Pref)) or else Is_Access_Type (Etype (Pref)) then
10451             return;
10452
10453             --  Otherwise chase the prefix
10454
10455          else
10456             Set_Referenced_Modified (Pref, Out_Param);
10457          end if;
10458
10459       --  Otherwise see if we have an entity name (only other case to process)
10460
10461       elsif Is_Entity_Name (N) and then Present (Entity (N)) then
10462          Set_Referenced_As_LHS           (Entity (N), not Out_Param);
10463          Set_Referenced_As_Out_Parameter (Entity (N), Out_Param);
10464       end if;
10465    end Set_Referenced_Modified;
10466
10467    ----------------------------
10468    -- Set_Scope_Is_Transient --
10469    ----------------------------
10470
10471    procedure Set_Scope_Is_Transient (V : Boolean := True) is
10472    begin
10473       Scope_Stack.Table (Scope_Stack.Last).Is_Transient := V;
10474    end Set_Scope_Is_Transient;
10475
10476    -------------------
10477    -- Set_Size_Info --
10478    -------------------
10479
10480    procedure Set_Size_Info (T1, T2 : Entity_Id) is
10481    begin
10482       --  We copy Esize, but not RM_Size, since in general RM_Size is
10483       --  subtype specific and does not get inherited by all subtypes.
10484
10485       Set_Esize                     (T1, Esize                     (T2));
10486       Set_Has_Biased_Representation (T1, Has_Biased_Representation (T2));
10487
10488       if Is_Discrete_Or_Fixed_Point_Type (T1)
10489            and then
10490          Is_Discrete_Or_Fixed_Point_Type (T2)
10491       then
10492          Set_Is_Unsigned_Type       (T1, Is_Unsigned_Type          (T2));
10493       end if;
10494
10495       Set_Alignment                 (T1, Alignment                 (T2));
10496    end Set_Size_Info;
10497
10498    --------------------
10499    -- Static_Integer --
10500    --------------------
10501
10502    function Static_Integer (N : Node_Id) return Uint is
10503    begin
10504       Analyze_And_Resolve (N, Any_Integer);
10505
10506       if N = Error
10507         or else Error_Posted (N)
10508         or else Etype (N) = Any_Type
10509       then
10510          return No_Uint;
10511       end if;
10512
10513       if Is_Static_Expression (N) then
10514          if not Raises_Constraint_Error (N) then
10515             return Expr_Value (N);
10516          else
10517             return No_Uint;
10518          end if;
10519
10520       elsif Etype (N) = Any_Type then
10521          return No_Uint;
10522
10523       else
10524          Flag_Non_Static_Expr
10525            ("static integer expression required here", N);
10526          return No_Uint;
10527       end if;
10528    end Static_Integer;
10529
10530    --------------------------
10531    -- Statically_Different --
10532    --------------------------
10533
10534    function Statically_Different (E1, E2 : Node_Id) return Boolean is
10535       R1 : constant Node_Id := Get_Referenced_Object (E1);
10536       R2 : constant Node_Id := Get_Referenced_Object (E2);
10537    begin
10538       return     Is_Entity_Name (R1)
10539         and then Is_Entity_Name (R2)
10540         and then Entity (R1) /= Entity (R2)
10541         and then not Is_Formal (Entity (R1))
10542         and then not Is_Formal (Entity (R2));
10543    end Statically_Different;
10544
10545    -----------------------------
10546    -- Subprogram_Access_Level --
10547    -----------------------------
10548
10549    function Subprogram_Access_Level (Subp : Entity_Id) return Uint is
10550    begin
10551       if Present (Alias (Subp)) then
10552          return Subprogram_Access_Level (Alias (Subp));
10553       else
10554          return Scope_Depth (Enclosing_Dynamic_Scope (Subp));
10555       end if;
10556    end Subprogram_Access_Level;
10557
10558    -----------------
10559    -- Trace_Scope --
10560    -----------------
10561
10562    procedure Trace_Scope (N : Node_Id; E : Entity_Id; Msg : String) is
10563    begin
10564       if Debug_Flag_W then
10565          for J in 0 .. Scope_Stack.Last loop
10566             Write_Str ("  ");
10567          end loop;
10568
10569          Write_Str (Msg);
10570          Write_Name (Chars (E));
10571          Write_Str (" from ");
10572          Write_Location (Sloc (N));
10573          Write_Eol;
10574       end if;
10575    end Trace_Scope;
10576
10577    -----------------------
10578    -- Transfer_Entities --
10579    -----------------------
10580
10581    procedure Transfer_Entities (From : Entity_Id; To : Entity_Id) is
10582       Ent : Entity_Id := First_Entity (From);
10583
10584    begin
10585       if No (Ent) then
10586          return;
10587       end if;
10588
10589       if (Last_Entity (To)) = Empty then
10590          Set_First_Entity (To, Ent);
10591       else
10592          Set_Next_Entity (Last_Entity (To), Ent);
10593       end if;
10594
10595       Set_Last_Entity (To, Last_Entity (From));
10596
10597       while Present (Ent) loop
10598          Set_Scope (Ent, To);
10599
10600          if not Is_Public (Ent) then
10601             Set_Public_Status (Ent);
10602
10603             if Is_Public (Ent)
10604               and then Ekind (Ent) = E_Record_Subtype
10605
10606             then
10607                --  The components of the propagated Itype must be public
10608                --  as well.
10609
10610                declare
10611                   Comp : Entity_Id;
10612                begin
10613                   Comp := First_Entity (Ent);
10614                   while Present (Comp) loop
10615                      Set_Is_Public (Comp);
10616                      Next_Entity (Comp);
10617                   end loop;
10618                end;
10619             end if;
10620          end if;
10621
10622          Next_Entity (Ent);
10623       end loop;
10624
10625       Set_First_Entity (From, Empty);
10626       Set_Last_Entity (From, Empty);
10627    end Transfer_Entities;
10628
10629    -----------------------
10630    -- Type_Access_Level --
10631    -----------------------
10632
10633    function Type_Access_Level (Typ : Entity_Id) return Uint is
10634       Btyp : Entity_Id;
10635
10636    begin
10637       Btyp := Base_Type (Typ);
10638
10639       --  Ada 2005 (AI-230): For most cases of anonymous access types, we
10640       --  simply use the level where the type is declared. This is true for
10641       --  stand-alone object declarations, and for anonymous access types
10642       --  associated with components the level is the same as that of the
10643       --  enclosing composite type. However, special treatment is needed for
10644       --  the cases of access parameters, return objects of an anonymous access
10645       --  type, and, in Ada 95, access discriminants of limited types.
10646
10647       if Ekind (Btyp) in Access_Kind then
10648          if Ekind (Btyp) = E_Anonymous_Access_Type then
10649
10650             --  If the type is a nonlocal anonymous access type (such as for
10651             --  an access parameter) we treat it as being declared at the
10652             --  library level to ensure that names such as X.all'access don't
10653             --  fail static accessibility checks.
10654
10655             if not Is_Local_Anonymous_Access (Typ) then
10656                return Scope_Depth (Standard_Standard);
10657
10658             --  If this is a return object, the accessibility level is that of
10659             --  the result subtype of the enclosing function. The test here is
10660             --  little complicated, because we have to account for extended
10661             --  return statements that have been rewritten as blocks, in which
10662             --  case we have to find and the Is_Return_Object attribute of the
10663             --  itype's associated object. It would be nice to find a way to
10664             --  simplify this test, but it doesn't seem worthwhile to add a new
10665             --  flag just for purposes of this test. ???
10666
10667             elsif Ekind (Scope (Btyp)) = E_Return_Statement
10668               or else
10669                 (Is_Itype (Btyp)
10670                   and then Nkind (Associated_Node_For_Itype (Btyp)) =
10671                              N_Object_Declaration
10672                   and then Is_Return_Object
10673                              (Defining_Identifier
10674                                 (Associated_Node_For_Itype (Btyp))))
10675             then
10676                declare
10677                   Scop : Entity_Id;
10678
10679                begin
10680                   Scop := Scope (Scope (Btyp));
10681                   while Present (Scop) loop
10682                      exit when Ekind (Scop) = E_Function;
10683                      Scop := Scope (Scop);
10684                   end loop;
10685
10686                   --  Treat the return object's type as having the level of the
10687                   --  function's result subtype (as per RM05-6.5(5.3/2)).
10688
10689                   return Type_Access_Level (Etype (Scop));
10690                end;
10691             end if;
10692          end if;
10693
10694          Btyp := Root_Type (Btyp);
10695
10696          --  The accessibility level of anonymous access types associated with
10697          --  discriminants is that of the current instance of the type, and
10698          --  that's deeper than the type itself (AARM 3.10.2 (12.3.21)).
10699
10700          --  AI-402: access discriminants have accessibility based on the
10701          --  object rather than the type in Ada 2005, so the above paragraph
10702          --  doesn't apply.
10703
10704          --  ??? Needs completion with rules from AI-416
10705
10706          if Ada_Version <= Ada_95
10707            and then Ekind (Typ) = E_Anonymous_Access_Type
10708            and then Present (Associated_Node_For_Itype (Typ))
10709            and then Nkind (Associated_Node_For_Itype (Typ)) =
10710                                                  N_Discriminant_Specification
10711          then
10712             return Scope_Depth (Enclosing_Dynamic_Scope (Btyp)) + 1;
10713          end if;
10714       end if;
10715
10716       return Scope_Depth (Enclosing_Dynamic_Scope (Btyp));
10717    end Type_Access_Level;
10718
10719    --------------------
10720    -- Ultimate_Alias --
10721    --------------------
10722    --  To do: add occurrences calling this new subprogram
10723
10724    function Ultimate_Alias (Prim : Entity_Id) return Entity_Id is
10725       E : Entity_Id := Prim;
10726
10727    begin
10728       while Present (Alias (E)) loop
10729          E := Alias (E);
10730       end loop;
10731
10732       return E;
10733    end Ultimate_Alias;
10734
10735    --------------------------
10736    -- Unit_Declaration_Node --
10737    --------------------------
10738
10739    function Unit_Declaration_Node (Unit_Id : Entity_Id) return Node_Id is
10740       N : Node_Id := Parent (Unit_Id);
10741
10742    begin
10743       --  Predefined operators do not have a full function declaration
10744
10745       if Ekind (Unit_Id) = E_Operator then
10746          return N;
10747       end if;
10748
10749       --  Isn't there some better way to express the following ???
10750
10751       while Nkind (N) /= N_Abstract_Subprogram_Declaration
10752         and then Nkind (N) /= N_Formal_Package_Declaration
10753         and then Nkind (N) /= N_Function_Instantiation
10754         and then Nkind (N) /= N_Generic_Package_Declaration
10755         and then Nkind (N) /= N_Generic_Subprogram_Declaration
10756         and then Nkind (N) /= N_Package_Declaration
10757         and then Nkind (N) /= N_Package_Body
10758         and then Nkind (N) /= N_Package_Instantiation
10759         and then Nkind (N) /= N_Package_Renaming_Declaration
10760         and then Nkind (N) /= N_Procedure_Instantiation
10761         and then Nkind (N) /= N_Protected_Body
10762         and then Nkind (N) /= N_Subprogram_Declaration
10763         and then Nkind (N) /= N_Subprogram_Body
10764         and then Nkind (N) /= N_Subprogram_Body_Stub
10765         and then Nkind (N) /= N_Subprogram_Renaming_Declaration
10766         and then Nkind (N) /= N_Task_Body
10767         and then Nkind (N) /= N_Task_Type_Declaration
10768         and then Nkind (N) not in N_Formal_Subprogram_Declaration
10769         and then Nkind (N) not in N_Generic_Renaming_Declaration
10770       loop
10771          N := Parent (N);
10772          pragma Assert (Present (N));
10773       end loop;
10774
10775       return N;
10776    end Unit_Declaration_Node;
10777
10778    ------------------------------
10779    -- Universal_Interpretation --
10780    ------------------------------
10781
10782    function Universal_Interpretation (Opnd : Node_Id) return Entity_Id is
10783       Index : Interp_Index;
10784       It    : Interp;
10785
10786    begin
10787       --  The argument may be a formal parameter of an operator or subprogram
10788       --  with multiple interpretations, or else an expression for an actual.
10789
10790       if Nkind (Opnd) = N_Defining_Identifier
10791         or else not Is_Overloaded (Opnd)
10792       then
10793          if Etype (Opnd) = Universal_Integer
10794            or else Etype (Opnd) = Universal_Real
10795          then
10796             return Etype (Opnd);
10797          else
10798             return Empty;
10799          end if;
10800
10801       else
10802          Get_First_Interp (Opnd, Index, It);
10803          while Present (It.Typ) loop
10804             if It.Typ = Universal_Integer
10805               or else It.Typ = Universal_Real
10806             then
10807                return It.Typ;
10808             end if;
10809
10810             Get_Next_Interp (Index, It);
10811          end loop;
10812
10813          return Empty;
10814       end if;
10815    end Universal_Interpretation;
10816
10817    ---------------
10818    -- Unqualify --
10819    ---------------
10820
10821    function Unqualify (Expr : Node_Id) return Node_Id is
10822    begin
10823       --  Recurse to handle unlikely case of multiple levels of qualification
10824
10825       if Nkind (Expr) = N_Qualified_Expression then
10826          return Unqualify (Expression (Expr));
10827
10828       --  Normal case, not a qualified expression
10829
10830       else
10831          return Expr;
10832       end if;
10833    end Unqualify;
10834
10835    ----------------------
10836    -- Within_Init_Proc --
10837    ----------------------
10838
10839    function Within_Init_Proc return Boolean is
10840       S : Entity_Id;
10841
10842    begin
10843       S := Current_Scope;
10844       while not Is_Overloadable (S) loop
10845          if S = Standard_Standard then
10846             return False;
10847          else
10848             S := Scope (S);
10849          end if;
10850       end loop;
10851
10852       return Is_Init_Proc (S);
10853    end Within_Init_Proc;
10854
10855    ----------------
10856    -- Wrong_Type --
10857    ----------------
10858
10859    procedure Wrong_Type (Expr : Node_Id; Expected_Type : Entity_Id) is
10860       Found_Type : constant Entity_Id := First_Subtype (Etype (Expr));
10861       Expec_Type : constant Entity_Id := First_Subtype (Expected_Type);
10862
10863       function Has_One_Matching_Field return Boolean;
10864       --  Determines if Expec_Type is a record type with a single component or
10865       --  discriminant whose type matches the found type or is one dimensional
10866       --  array whose component type matches the found type.
10867
10868       ----------------------------
10869       -- Has_One_Matching_Field --
10870       ----------------------------
10871
10872       function Has_One_Matching_Field return Boolean is
10873          E : Entity_Id;
10874
10875       begin
10876          if Is_Array_Type (Expec_Type)
10877            and then Number_Dimensions (Expec_Type) = 1
10878            and then
10879              Covers (Etype (Component_Type (Expec_Type)), Found_Type)
10880          then
10881             return True;
10882
10883          elsif not Is_Record_Type (Expec_Type) then
10884             return False;
10885
10886          else
10887             E := First_Entity (Expec_Type);
10888             loop
10889                if No (E) then
10890                   return False;
10891
10892                elsif (Ekind (E) /= E_Discriminant
10893                        and then Ekind (E) /= E_Component)
10894                  or else (Chars (E) = Name_uTag
10895                            or else Chars (E) = Name_uParent)
10896                then
10897                   Next_Entity (E);
10898
10899                else
10900                   exit;
10901                end if;
10902             end loop;
10903
10904             if not Covers (Etype (E), Found_Type) then
10905                return False;
10906
10907             elsif Present (Next_Entity (E)) then
10908                return False;
10909
10910             else
10911                return True;
10912             end if;
10913          end if;
10914       end Has_One_Matching_Field;
10915
10916    --  Start of processing for Wrong_Type
10917
10918    begin
10919       --  Don't output message if either type is Any_Type, or if a message
10920       --  has already been posted for this node. We need to do the latter
10921       --  check explicitly (it is ordinarily done in Errout), because we
10922       --  are using ! to force the output of the error messages.
10923
10924       if Expec_Type = Any_Type
10925         or else Found_Type = Any_Type
10926         or else Error_Posted (Expr)
10927       then
10928          return;
10929
10930       --  In  an instance, there is an ongoing problem with completion of
10931       --  type derived from private types. Their structure is what Gigi
10932       --  expects, but the  Etype is the parent type rather than the
10933       --  derived private type itself. Do not flag error in this case. The
10934       --  private completion is an entity without a parent, like an Itype.
10935       --  Similarly, full and partial views may be incorrect in the instance.
10936       --  There is no simple way to insure that it is consistent ???
10937
10938       elsif In_Instance then
10939          if Etype (Etype (Expr)) = Etype (Expected_Type)
10940            and then
10941              (Has_Private_Declaration (Expected_Type)
10942                or else Has_Private_Declaration (Etype (Expr)))
10943            and then No (Parent (Expected_Type))
10944          then
10945             return;
10946          end if;
10947       end if;
10948
10949       --  An interesting special check. If the expression is parenthesized
10950       --  and its type corresponds to the type of the sole component of the
10951       --  expected record type, or to the component type of the expected one
10952       --  dimensional array type, then assume we have a bad aggregate attempt.
10953
10954       if Nkind (Expr) in N_Subexpr
10955         and then Paren_Count (Expr) /= 0
10956         and then Has_One_Matching_Field
10957       then
10958          Error_Msg_N ("positional aggregate cannot have one component", Expr);
10959
10960       --  Another special check, if we are looking for a pool-specific access
10961       --  type and we found an E_Access_Attribute_Type, then we have the case
10962       --  of an Access attribute being used in a context which needs a pool-
10963       --  specific type, which is never allowed. The one extra check we make
10964       --  is that the expected designated type covers the Found_Type.
10965
10966       elsif Is_Access_Type (Expec_Type)
10967         and then Ekind (Found_Type) = E_Access_Attribute_Type
10968         and then Ekind (Base_Type (Expec_Type)) /= E_General_Access_Type
10969         and then Ekind (Base_Type (Expec_Type)) /= E_Anonymous_Access_Type
10970         and then Covers
10971           (Designated_Type (Expec_Type), Designated_Type (Found_Type))
10972       then
10973          Error_Msg_N ("result must be general access type!", Expr);
10974          Error_Msg_NE ("add ALL to }!", Expr, Expec_Type);
10975
10976       --  Another special check, if the expected type is an integer type,
10977       --  but the expression is of type System.Address, and the parent is
10978       --  an addition or subtraction operation whose left operand is the
10979       --  expression in question and whose right operand is of an integral
10980       --  type, then this is an attempt at address arithmetic, so give
10981       --  appropriate message.
10982
10983       elsif Is_Integer_Type (Expec_Type)
10984         and then Is_RTE (Found_Type, RE_Address)
10985         and then (Nkind (Parent (Expr)) = N_Op_Add
10986                     or else
10987                   Nkind (Parent (Expr)) = N_Op_Subtract)
10988         and then Expr = Left_Opnd (Parent (Expr))
10989         and then Is_Integer_Type (Etype (Right_Opnd (Parent (Expr))))
10990       then
10991          Error_Msg_N
10992            ("address arithmetic not predefined in package System",
10993             Parent (Expr));
10994          Error_Msg_N
10995            ("\possible missing with/use of System.Storage_Elements",
10996             Parent (Expr));
10997          return;
10998
10999       --  If the expected type is an anonymous access type, as for access
11000       --  parameters and discriminants, the error is on the designated types.
11001
11002       elsif Ekind (Expec_Type) = E_Anonymous_Access_Type then
11003          if Comes_From_Source (Expec_Type) then
11004             Error_Msg_NE ("expected}!", Expr, Expec_Type);
11005          else
11006             Error_Msg_NE
11007               ("expected an access type with designated}",
11008                  Expr, Designated_Type (Expec_Type));
11009          end if;
11010
11011          if Is_Access_Type (Found_Type)
11012            and then not Comes_From_Source (Found_Type)
11013          then
11014             Error_Msg_NE
11015               ("\\found an access type with designated}!",
11016                 Expr, Designated_Type (Found_Type));
11017          else
11018             if From_With_Type (Found_Type) then
11019                Error_Msg_NE ("\\found incomplete}!", Expr, Found_Type);
11020                Error_Msg_Qual_Level := 99;
11021                Error_Msg_NE ("\\missing `WITH &;", Expr, Scope (Found_Type));
11022                Error_Msg_Qual_Level := 0;
11023             else
11024                Error_Msg_NE ("found}!", Expr, Found_Type);
11025             end if;
11026          end if;
11027
11028       --  Normal case of one type found, some other type expected
11029
11030       else
11031          --  If the names of the two types are the same, see if some number
11032          --  of levels of qualification will help. Don't try more than three
11033          --  levels, and if we get to standard, it's no use (and probably
11034          --  represents an error in the compiler) Also do not bother with
11035          --  internal scope names.
11036
11037          declare
11038             Expec_Scope : Entity_Id;
11039             Found_Scope : Entity_Id;
11040
11041          begin
11042             Expec_Scope := Expec_Type;
11043             Found_Scope := Found_Type;
11044
11045             for Levels in Int range 0 .. 3 loop
11046                if Chars (Expec_Scope) /= Chars (Found_Scope) then
11047                   Error_Msg_Qual_Level := Levels;
11048                   exit;
11049                end if;
11050
11051                Expec_Scope := Scope (Expec_Scope);
11052                Found_Scope := Scope (Found_Scope);
11053
11054                exit when Expec_Scope = Standard_Standard
11055                  or else Found_Scope = Standard_Standard
11056                  or else not Comes_From_Source (Expec_Scope)
11057                  or else not Comes_From_Source (Found_Scope);
11058             end loop;
11059          end;
11060
11061          if Is_Record_Type (Expec_Type)
11062            and then Present (Corresponding_Remote_Type (Expec_Type))
11063          then
11064             Error_Msg_NE ("expected}!", Expr,
11065                           Corresponding_Remote_Type (Expec_Type));
11066          else
11067             Error_Msg_NE ("expected}!", Expr, Expec_Type);
11068          end if;
11069
11070          if Is_Entity_Name (Expr)
11071            and then Is_Package_Or_Generic_Package (Entity (Expr))
11072          then
11073             Error_Msg_N ("\\found package name!", Expr);
11074
11075          elsif Is_Entity_Name (Expr)
11076            and then
11077              (Ekind (Entity (Expr)) = E_Procedure
11078                 or else
11079               Ekind (Entity (Expr)) = E_Generic_Procedure)
11080          then
11081             if Ekind (Expec_Type) = E_Access_Subprogram_Type then
11082                Error_Msg_N
11083                  ("found procedure name, possibly missing Access attribute!",
11084                    Expr);
11085             else
11086                Error_Msg_N
11087                  ("\\found procedure name instead of function!", Expr);
11088             end if;
11089
11090          elsif Nkind (Expr) = N_Function_Call
11091            and then Ekind (Expec_Type) = E_Access_Subprogram_Type
11092            and then Etype (Designated_Type (Expec_Type)) = Etype (Expr)
11093            and then No (Parameter_Associations (Expr))
11094          then
11095             Error_Msg_N
11096               ("found function name, possibly missing Access attribute!",
11097                Expr);
11098
11099          --  Catch common error: a prefix or infix operator which is not
11100          --  directly visible because the type isn't.
11101
11102          elsif Nkind (Expr) in N_Op
11103             and then Is_Overloaded (Expr)
11104             and then not Is_Immediately_Visible (Expec_Type)
11105             and then not Is_Potentially_Use_Visible (Expec_Type)
11106             and then not In_Use (Expec_Type)
11107             and then Has_Compatible_Type (Right_Opnd (Expr), Expec_Type)
11108          then
11109             Error_Msg_N
11110               ("operator of the type is not directly visible!", Expr);
11111
11112          elsif Ekind (Found_Type) = E_Void
11113            and then Present (Parent (Found_Type))
11114            and then Nkind (Parent (Found_Type)) = N_Full_Type_Declaration
11115          then
11116             Error_Msg_NE ("\\found premature usage of}!", Expr, Found_Type);
11117
11118          else
11119             Error_Msg_NE ("\\found}!", Expr, Found_Type);
11120          end if;
11121
11122          --  A special check for cases like M1 and M2 = 0 where M1 and M2 are
11123          --  of the same modular type, and (M1 and M2) = 0 was intended.
11124
11125          if Expec_Type = Standard_Boolean
11126            and then Is_Modular_Integer_Type (Found_Type)
11127            and then Nkind_In (Parent (Expr), N_Op_And, N_Op_Or, N_Op_Xor)
11128            and then Nkind (Right_Opnd (Parent (Expr))) in N_Op_Compare
11129          then
11130             declare
11131                Op : constant Node_Id := Right_Opnd (Parent (Expr));
11132                L  : constant Node_Id := Left_Opnd (Op);
11133                R  : constant Node_Id := Right_Opnd (Op);
11134             begin
11135                if Etype (L) = Found_Type
11136                  and then Is_Integer_Type (Etype (R))
11137                then
11138                   Error_Msg_N
11139                     ("\\possible missing parens for modular operation", Expr);
11140                end if;
11141             end;
11142          end if;
11143
11144          --  Reset error message qualification indication
11145
11146          Error_Msg_Qual_Level := 0;
11147       end if;
11148    end Wrong_Type;
11149
11150 end Sem_Util;