[multiple changes]
[platform/upstream/gcc.git] / gcc / ada / sem_ch3.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                              S E M _ C H 3                               --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2015, 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 Aspects;   use Aspects;
27 with Atree;     use Atree;
28 with Checks;    use Checks;
29 with Contracts; use Contracts;
30 with Debug;     use Debug;
31 with Elists;    use Elists;
32 with Einfo;     use Einfo;
33 with Errout;    use Errout;
34 with Eval_Fat;  use Eval_Fat;
35 with Exp_Ch3;   use Exp_Ch3;
36 with Exp_Ch9;   use Exp_Ch9;
37 with Exp_Disp;  use Exp_Disp;
38 with Exp_Dist;  use Exp_Dist;
39 with Exp_Tss;   use Exp_Tss;
40 with Exp_Util;  use Exp_Util;
41 with Fname;     use Fname;
42 with Freeze;    use Freeze;
43 with Ghost;     use Ghost;
44 with Itypes;    use Itypes;
45 with Layout;    use Layout;
46 with Lib;       use Lib;
47 with Lib.Xref;  use Lib.Xref;
48 with Namet;     use Namet;
49 with Nmake;     use Nmake;
50 with Opt;       use Opt;
51 with Restrict;  use Restrict;
52 with Rident;    use Rident;
53 with Rtsfind;   use Rtsfind;
54 with Sem;       use Sem;
55 with Sem_Aux;   use Sem_Aux;
56 with Sem_Case;  use Sem_Case;
57 with Sem_Cat;   use Sem_Cat;
58 with Sem_Ch6;   use Sem_Ch6;
59 with Sem_Ch7;   use Sem_Ch7;
60 with Sem_Ch8;   use Sem_Ch8;
61 with Sem_Ch13;  use Sem_Ch13;
62 with Sem_Dim;   use Sem_Dim;
63 with Sem_Disp;  use Sem_Disp;
64 with Sem_Dist;  use Sem_Dist;
65 with Sem_Elim;  use Sem_Elim;
66 with Sem_Eval;  use Sem_Eval;
67 with Sem_Mech;  use Sem_Mech;
68 with Sem_Res;   use Sem_Res;
69 with Sem_Smem;  use Sem_Smem;
70 with Sem_Type;  use Sem_Type;
71 with Sem_Util;  use Sem_Util;
72 with Sem_Warn;  use Sem_Warn;
73 with Stand;     use Stand;
74 with Sinfo;     use Sinfo;
75 with Sinput;    use Sinput;
76 with Snames;    use Snames;
77 with Targparm;  use Targparm;
78 with Tbuild;    use Tbuild;
79 with Ttypes;    use Ttypes;
80 with Uintp;     use Uintp;
81 with Urealp;    use Urealp;
82
83 package body Sem_Ch3 is
84
85    -----------------------
86    -- Local Subprograms --
87    -----------------------
88
89    procedure Add_Interface_Tag_Components (N : Node_Id; Typ : Entity_Id);
90    --  Ada 2005 (AI-251): Add the tag components corresponding to all the
91    --  abstract interface types implemented by a record type or a derived
92    --  record type.
93
94    procedure Build_Derived_Type
95      (N             : Node_Id;
96       Parent_Type   : Entity_Id;
97       Derived_Type  : Entity_Id;
98       Is_Completion : Boolean;
99       Derive_Subps  : Boolean := True);
100    --  Create and decorate a Derived_Type given the Parent_Type entity. N is
101    --  the N_Full_Type_Declaration node containing the derived type definition.
102    --  Parent_Type is the entity for the parent type in the derived type
103    --  definition and Derived_Type the actual derived type. Is_Completion must
104    --  be set to False if Derived_Type is the N_Defining_Identifier node in N
105    --  (i.e. Derived_Type = Defining_Identifier (N)). In this case N is not the
106    --  completion of a private type declaration. If Is_Completion is set to
107    --  True, N is the completion of a private type declaration and Derived_Type
108    --  is different from the defining identifier inside N (i.e. Derived_Type /=
109    --  Defining_Identifier (N)). Derive_Subps indicates whether the parent
110    --  subprograms should be derived. The only case where this parameter is
111    --  False is when Build_Derived_Type is recursively called to process an
112    --  implicit derived full type for a type derived from a private type (in
113    --  that case the subprograms must only be derived for the private view of
114    --  the type).
115    --
116    --  ??? These flags need a bit of re-examination and re-documentation:
117    --  ???  are they both necessary (both seem related to the recursion)?
118
119    procedure Build_Derived_Access_Type
120      (N            : Node_Id;
121       Parent_Type  : Entity_Id;
122       Derived_Type : Entity_Id);
123    --  Subsidiary procedure to Build_Derived_Type. For a derived access type,
124    --  create an implicit base if the parent type is constrained or if the
125    --  subtype indication has a constraint.
126
127    procedure Build_Derived_Array_Type
128      (N            : Node_Id;
129       Parent_Type  : Entity_Id;
130       Derived_Type : Entity_Id);
131    --  Subsidiary procedure to Build_Derived_Type. For a derived array type,
132    --  create an implicit base if the parent type is constrained or if the
133    --  subtype indication has a constraint.
134
135    procedure Build_Derived_Concurrent_Type
136      (N            : Node_Id;
137       Parent_Type  : Entity_Id;
138       Derived_Type : Entity_Id);
139    --  Subsidiary procedure to Build_Derived_Type. For a derived task or
140    --  protected type, inherit entries and protected subprograms, check
141    --  legality of discriminant constraints if any.
142
143    procedure Build_Derived_Enumeration_Type
144      (N            : Node_Id;
145       Parent_Type  : Entity_Id;
146       Derived_Type : Entity_Id);
147    --  Subsidiary procedure to Build_Derived_Type. For a derived enumeration
148    --  type, we must create a new list of literals. Types derived from
149    --  Character and [Wide_]Wide_Character are special-cased.
150
151    procedure Build_Derived_Numeric_Type
152      (N            : Node_Id;
153       Parent_Type  : Entity_Id;
154       Derived_Type : Entity_Id);
155    --  Subsidiary procedure to Build_Derived_Type. For numeric types, create
156    --  an anonymous base type, and propagate constraint to subtype if needed.
157
158    procedure Build_Derived_Private_Type
159      (N             : Node_Id;
160       Parent_Type   : Entity_Id;
161       Derived_Type  : Entity_Id;
162       Is_Completion : Boolean;
163       Derive_Subps  : Boolean := True);
164    --  Subsidiary procedure to Build_Derived_Type. This procedure is complex
165    --  because the parent may or may not have a completion, and the derivation
166    --  may itself be a completion.
167
168    procedure Build_Derived_Record_Type
169      (N            : Node_Id;
170       Parent_Type  : Entity_Id;
171       Derived_Type : Entity_Id;
172       Derive_Subps : Boolean := True);
173    --  Subsidiary procedure used for tagged and untagged record types
174    --  by Build_Derived_Type and Analyze_Private_Extension_Declaration.
175    --  All parameters are as in Build_Derived_Type except that N, in
176    --  addition to being an N_Full_Type_Declaration node, can also be an
177    --  N_Private_Extension_Declaration node. See the definition of this routine
178    --  for much more info. Derive_Subps indicates whether subprograms should be
179    --  derived from the parent type. The only case where Derive_Subps is False
180    --  is for an implicit derived full type for a type derived from a private
181    --  type (see Build_Derived_Type).
182
183    procedure Build_Discriminal (Discrim : Entity_Id);
184    --  Create the discriminal corresponding to discriminant Discrim, that is
185    --  the parameter corresponding to Discrim to be used in initialization
186    --  procedures for the type where Discrim is a discriminant. Discriminals
187    --  are not used during semantic analysis, and are not fully defined
188    --  entities until expansion. Thus they are not given a scope until
189    --  initialization procedures are built.
190
191    function Build_Discriminant_Constraints
192      (T           : Entity_Id;
193       Def         : Node_Id;
194       Derived_Def : Boolean := False) return Elist_Id;
195    --  Validate discriminant constraints and return the list of the constraints
196    --  in order of discriminant declarations, where T is the discriminated
197    --  unconstrained type. Def is the N_Subtype_Indication node where the
198    --  discriminants constraints for T are specified. Derived_Def is True
199    --  when building the discriminant constraints in a derived type definition
200    --  of the form "type D (...) is new T (xxx)". In this case T is the parent
201    --  type and Def is the constraint "(xxx)" on T and this routine sets the
202    --  Corresponding_Discriminant field of the discriminants in the derived
203    --  type D to point to the corresponding discriminants in the parent type T.
204
205    procedure Build_Discriminated_Subtype
206      (T           : Entity_Id;
207       Def_Id      : Entity_Id;
208       Elist       : Elist_Id;
209       Related_Nod : Node_Id;
210       For_Access  : Boolean := False);
211    --  Subsidiary procedure to Constrain_Discriminated_Type and to
212    --  Process_Incomplete_Dependents. Given
213    --
214    --     T (a possibly discriminated base type)
215    --     Def_Id (a very partially built subtype for T),
216    --
217    --  the call completes Def_Id to be the appropriate E_*_Subtype.
218    --
219    --  The Elist is the list of discriminant constraints if any (it is set
220    --  to No_Elist if T is not a discriminated type, and to an empty list if
221    --  T has discriminants but there are no discriminant constraints). The
222    --  Related_Nod is the same as Decl_Node in Create_Constrained_Components.
223    --  The For_Access says whether or not this subtype is really constraining
224    --  an access type. That is its sole purpose is the designated type of an
225    --  access type -- in which case a Private_Subtype Is_For_Access_Subtype
226    --  is built to avoid freezing T when the access subtype is frozen.
227
228    function Build_Scalar_Bound
229      (Bound : Node_Id;
230       Par_T : Entity_Id;
231       Der_T : Entity_Id) return Node_Id;
232    --  The bounds of a derived scalar type are conversions of the bounds of
233    --  the parent type. Optimize the representation if the bounds are literals.
234    --  Needs a more complete spec--what are the parameters exactly, and what
235    --  exactly is the returned value, and how is Bound affected???
236
237    procedure Build_Underlying_Full_View
238      (N   : Node_Id;
239       Typ : Entity_Id;
240       Par : Entity_Id);
241    --  If the completion of a private type is itself derived from a private
242    --  type, or if the full view of a private subtype is itself private, the
243    --  back-end has no way to compute the actual size of this type. We build
244    --  an internal subtype declaration of the proper parent type to convey
245    --  this information. This extra mechanism is needed because a full
246    --  view cannot itself have a full view (it would get clobbered during
247    --  view exchanges).
248
249    procedure Check_Access_Discriminant_Requires_Limited
250      (D   : Node_Id;
251       Loc : Node_Id);
252    --  Check the restriction that the type to which an access discriminant
253    --  belongs must be a concurrent type or a descendant of a type with
254    --  the reserved word 'limited' in its declaration.
255
256    procedure Check_Anonymous_Access_Components
257       (Typ_Decl  : Node_Id;
258        Typ       : Entity_Id;
259        Prev      : Entity_Id;
260        Comp_List : Node_Id);
261    --  Ada 2005 AI-382: an access component in a record definition can refer to
262    --  the enclosing record, in which case it denotes the type itself, and not
263    --  the current instance of the type. We create an anonymous access type for
264    --  the component, and flag it as an access to a component, so accessibility
265    --  checks are properly performed on it. The declaration of the access type
266    --  is placed ahead of that of the record to prevent order-of-elaboration
267    --  circularity issues in Gigi. We create an incomplete type for the record
268    --  declaration, which is the designated type of the anonymous access.
269
270    procedure Check_Delta_Expression (E : Node_Id);
271    --  Check that the expression represented by E is suitable for use as a
272    --  delta expression, i.e. it is of real type and is static.
273
274    procedure Check_Digits_Expression (E : Node_Id);
275    --  Check that the expression represented by E is suitable for use as a
276    --  digits expression, i.e. it is of integer type, positive and static.
277
278    procedure Check_Initialization (T : Entity_Id; Exp : Node_Id);
279    --  Validate the initialization of an object declaration. T is the required
280    --  type, and Exp is the initialization expression.
281
282    procedure Check_Interfaces (N : Node_Id; Def : Node_Id);
283    --  Check ARM rules 3.9.4 (15/2), 9.1 (9.d/2) and 9.4 (11.d/2)
284
285    procedure Check_Or_Process_Discriminants
286      (N    : Node_Id;
287       T    : Entity_Id;
288       Prev : Entity_Id := Empty);
289    --  If N is the full declaration of the completion T of an incomplete or
290    --  private type, check its discriminants (which are already known to be
291    --  conformant with those of the partial view, see Find_Type_Name),
292    --  otherwise process them. Prev is the entity of the partial declaration,
293    --  if any.
294
295    procedure Check_Real_Bound (Bound : Node_Id);
296    --  Check given bound for being of real type and static. If not, post an
297    --  appropriate message, and rewrite the bound with the real literal zero.
298
299    procedure Constant_Redeclaration
300      (Id : Entity_Id;
301       N  : Node_Id;
302       T  : out Entity_Id);
303    --  Various checks on legality of full declaration of deferred constant.
304    --  Id is the entity for the redeclaration, N is the N_Object_Declaration,
305    --  node. The caller has not yet set any attributes of this entity.
306
307    function Contain_Interface
308      (Iface  : Entity_Id;
309       Ifaces : Elist_Id) return Boolean;
310    --  Ada 2005: Determine whether Iface is present in the list Ifaces
311
312    procedure Convert_Scalar_Bounds
313      (N            : Node_Id;
314       Parent_Type  : Entity_Id;
315       Derived_Type : Entity_Id;
316       Loc          : Source_Ptr);
317    --  For derived scalar types, convert the bounds in the type definition to
318    --  the derived type, and complete their analysis. Given a constraint of the
319    --  form ".. new T range Lo .. Hi", Lo and Hi are analyzed and resolved with
320    --  T'Base, the parent_type. The bounds of the derived type (the anonymous
321    --  base) are copies of Lo and Hi. Finally, the bounds of the derived
322    --  subtype are conversions of those bounds to the derived_type, so that
323    --  their typing is consistent.
324
325    procedure Copy_Array_Base_Type_Attributes (T1, T2 : Entity_Id);
326    --  Copies attributes from array base type T2 to array base type T1. Copies
327    --  only attributes that apply to base types, but not subtypes.
328
329    procedure Copy_Array_Subtype_Attributes (T1, T2 : Entity_Id);
330    --  Copies attributes from array subtype T2 to array subtype T1. Copies
331    --  attributes that apply to both subtypes and base types.
332
333    procedure Create_Constrained_Components
334      (Subt        : Entity_Id;
335       Decl_Node   : Node_Id;
336       Typ         : Entity_Id;
337       Constraints : Elist_Id);
338    --  Build the list of entities for a constrained discriminated record
339    --  subtype. If a component depends on a discriminant, replace its subtype
340    --  using the discriminant values in the discriminant constraint. Subt
341    --  is the defining identifier for the subtype whose list of constrained
342    --  entities we will create. Decl_Node is the type declaration node where
343    --  we will attach all the itypes created. Typ is the base discriminated
344    --  type for the subtype Subt. Constraints is the list of discriminant
345    --  constraints for Typ.
346
347    function Constrain_Component_Type
348      (Comp            : Entity_Id;
349       Constrained_Typ : Entity_Id;
350       Related_Node    : Node_Id;
351       Typ             : Entity_Id;
352       Constraints     : Elist_Id) return Entity_Id;
353    --  Given a discriminated base type Typ, a list of discriminant constraints,
354    --  Constraints, for Typ and a component Comp of Typ, create and return the
355    --  type corresponding to Etype (Comp) where all discriminant references
356    --  are replaced with the corresponding constraint. If Etype (Comp) contains
357    --  no discriminant references then it is returned as-is. Constrained_Typ
358    --  is the final constrained subtype to which the constrained component
359    --  belongs. Related_Node is the node where we attach all created itypes.
360
361    procedure Constrain_Access
362      (Def_Id      : in out Entity_Id;
363       S           : Node_Id;
364       Related_Nod : Node_Id);
365    --  Apply a list of constraints to an access type. If Def_Id is empty, it is
366    --  an anonymous type created for a subtype indication. In that case it is
367    --  created in the procedure and attached to Related_Nod.
368
369    procedure Constrain_Array
370      (Def_Id      : in out Entity_Id;
371       SI          : Node_Id;
372       Related_Nod : Node_Id;
373       Related_Id  : Entity_Id;
374       Suffix      : Character);
375    --  Apply a list of index constraints to an unconstrained array type. The
376    --  first parameter is the entity for the resulting subtype. A value of
377    --  Empty for Def_Id indicates that an implicit type must be created, but
378    --  creation is delayed (and must be done by this procedure) because other
379    --  subsidiary implicit types must be created first (which is why Def_Id
380    --  is an in/out parameter). The second parameter is a subtype indication
381    --  node for the constrained array to be created (e.g. something of the
382    --  form string (1 .. 10)). Related_Nod gives the place where this type
383    --  has to be inserted in the tree. The Related_Id and Suffix parameters
384    --  are used to build the associated Implicit type name.
385
386    procedure Constrain_Concurrent
387      (Def_Id      : in out Entity_Id;
388       SI          : Node_Id;
389       Related_Nod : Node_Id;
390       Related_Id  : Entity_Id;
391       Suffix      : Character);
392    --  Apply list of discriminant constraints to an unconstrained concurrent
393    --  type.
394    --
395    --    SI is the N_Subtype_Indication node containing the constraint and
396    --    the unconstrained type to constrain.
397    --
398    --    Def_Id is the entity for the resulting constrained subtype. A value
399    --    of Empty for Def_Id indicates that an implicit type must be created,
400    --    but creation is delayed (and must be done by this procedure) because
401    --    other subsidiary implicit types must be created first (which is why
402    --    Def_Id is an in/out parameter).
403    --
404    --    Related_Nod gives the place where this type has to be inserted
405    --    in the tree.
406    --
407    --  The last two arguments are used to create its external name if needed.
408
409    function Constrain_Corresponding_Record
410      (Prot_Subt   : Entity_Id;
411       Corr_Rec    : Entity_Id;
412       Related_Nod : Node_Id) return Entity_Id;
413    --  When constraining a protected type or task type with discriminants,
414    --  constrain the corresponding record with the same discriminant values.
415
416    procedure Constrain_Decimal (Def_Id : Node_Id; S : Node_Id);
417    --  Constrain a decimal fixed point type with a digits constraint and/or a
418    --  range constraint, and build E_Decimal_Fixed_Point_Subtype entity.
419
420    procedure Constrain_Discriminated_Type
421      (Def_Id      : Entity_Id;
422       S           : Node_Id;
423       Related_Nod : Node_Id;
424       For_Access  : Boolean := False);
425    --  Process discriminant constraints of composite type. Verify that values
426    --  have been provided for all discriminants, that the original type is
427    --  unconstrained, and that the types of the supplied expressions match
428    --  the discriminant types. The first three parameters are like in routine
429    --  Constrain_Concurrent. See Build_Discriminated_Subtype for an explanation
430    --  of For_Access.
431
432    procedure Constrain_Enumeration (Def_Id : Node_Id; S : Node_Id);
433    --  Constrain an enumeration type with a range constraint. This is identical
434    --  to Constrain_Integer, but for the Ekind of the resulting subtype.
435
436    procedure Constrain_Float (Def_Id : Node_Id; S : Node_Id);
437    --  Constrain a floating point type with either a digits constraint
438    --  and/or a range constraint, building a E_Floating_Point_Subtype.
439
440    procedure Constrain_Index
441      (Index        : Node_Id;
442       S            : Node_Id;
443       Related_Nod  : Node_Id;
444       Related_Id   : Entity_Id;
445       Suffix       : Character;
446       Suffix_Index : Nat);
447    --  Process an index constraint S in a constrained array declaration. The
448    --  constraint can be a subtype name, or a range with or without an explicit
449    --  subtype mark. The index is the corresponding index of the unconstrained
450    --  array. The Related_Id and Suffix parameters are used to build the
451    --  associated Implicit type name.
452
453    procedure Constrain_Integer (Def_Id : Node_Id; S : Node_Id);
454    --  Build subtype of a signed or modular integer type
455
456    procedure Constrain_Ordinary_Fixed (Def_Id : Node_Id; S : Node_Id);
457    --  Constrain an ordinary fixed point type with a range constraint, and
458    --  build an E_Ordinary_Fixed_Point_Subtype entity.
459
460    procedure Copy_And_Swap (Priv, Full : Entity_Id);
461    --  Copy the Priv entity into the entity of its full declaration then swap
462    --  the two entities in such a manner that the former private type is now
463    --  seen as a full type.
464
465    procedure Decimal_Fixed_Point_Type_Declaration
466      (T   : Entity_Id;
467       Def : Node_Id);
468    --  Create a new decimal fixed point type, and apply the constraint to
469    --  obtain a subtype of this new type.
470
471    procedure Complete_Private_Subtype
472      (Priv        : Entity_Id;
473       Full        : Entity_Id;
474       Full_Base   : Entity_Id;
475       Related_Nod : Node_Id);
476    --  Complete the implicit full view of a private subtype by setting the
477    --  appropriate semantic fields. If the full view of the parent is a record
478    --  type, build constrained components of subtype.
479
480    procedure Derive_Progenitor_Subprograms
481      (Parent_Type : Entity_Id;
482       Tagged_Type : Entity_Id);
483    --  Ada 2005 (AI-251): To complete type derivation, collect the primitive
484    --  operations of progenitors of Tagged_Type, and replace the subsidiary
485    --  subtypes with Tagged_Type, to build the specs of the inherited interface
486    --  primitives. The derived primitives are aliased to those of the
487    --  interface. This routine takes care also of transferring to the full view
488    --  subprograms associated with the partial view of Tagged_Type that cover
489    --  interface primitives.
490
491    procedure Derived_Standard_Character
492      (N             : Node_Id;
493       Parent_Type   : Entity_Id;
494       Derived_Type  : Entity_Id);
495    --  Subsidiary procedure to Build_Derived_Enumeration_Type which handles
496    --  derivations from types Standard.Character and Standard.Wide_Character.
497
498    procedure Derived_Type_Declaration
499      (T             : Entity_Id;
500       N             : Node_Id;
501       Is_Completion : Boolean);
502    --  Process a derived type declaration. Build_Derived_Type is invoked
503    --  to process the actual derived type definition. Parameters N and
504    --  Is_Completion have the same meaning as in Build_Derived_Type.
505    --  T is the N_Defining_Identifier for the entity defined in the
506    --  N_Full_Type_Declaration node N, that is T is the derived type.
507
508    procedure Enumeration_Type_Declaration (T : Entity_Id; Def : Node_Id);
509    --  Insert each literal in symbol table, as an overloadable identifier. Each
510    --  enumeration type is mapped into a sequence of integers, and each literal
511    --  is defined as a constant with integer value. If any of the literals are
512    --  character literals, the type is a character type, which means that
513    --  strings are legal aggregates for arrays of components of the type.
514
515    function Expand_To_Stored_Constraint
516      (Typ        : Entity_Id;
517       Constraint : Elist_Id) return Elist_Id;
518    --  Given a constraint (i.e. a list of expressions) on the discriminants of
519    --  Typ, expand it into a constraint on the stored discriminants and return
520    --  the new list of expressions constraining the stored discriminants.
521
522    function Find_Type_Of_Object
523      (Obj_Def     : Node_Id;
524       Related_Nod : Node_Id) return Entity_Id;
525    --  Get type entity for object referenced by Obj_Def, attaching the implicit
526    --  types generated to Related_Nod.
527
528    procedure Floating_Point_Type_Declaration (T : Entity_Id; Def : Node_Id);
529    --  Create a new float and apply the constraint to obtain subtype of it
530
531    function Has_Range_Constraint (N : Node_Id) return Boolean;
532    --  Given an N_Subtype_Indication node N, return True if a range constraint
533    --  is present, either directly, or as part of a digits or delta constraint.
534    --  In addition, a digits constraint in the decimal case returns True, since
535    --  it establishes a default range if no explicit range is present.
536
537    function Inherit_Components
538      (N             : Node_Id;
539       Parent_Base   : Entity_Id;
540       Derived_Base  : Entity_Id;
541       Is_Tagged     : Boolean;
542       Inherit_Discr : Boolean;
543       Discs         : Elist_Id) return Elist_Id;
544    --  Called from Build_Derived_Record_Type to inherit the components of
545    --  Parent_Base (a base type) into the Derived_Base (the derived base type).
546    --  For more information on derived types and component inheritance please
547    --  consult the comment above the body of Build_Derived_Record_Type.
548    --
549    --    N is the original derived type declaration
550    --
551    --    Is_Tagged is set if we are dealing with tagged types
552    --
553    --    If Inherit_Discr is set, Derived_Base inherits its discriminants from
554    --    Parent_Base, otherwise no discriminants are inherited.
555    --
556    --    Discs gives the list of constraints that apply to Parent_Base in the
557    --    derived type declaration. If Discs is set to No_Elist, then we have
558    --    the following situation:
559    --
560    --      type Parent (D1..Dn : ..) is [tagged] record ...;
561    --      type Derived is new Parent [with ...];
562    --
563    --    which gets treated as
564    --
565    --      type Derived (D1..Dn : ..) is new Parent (D1,..,Dn) [with ...];
566    --
567    --  For untagged types the returned value is an association list. The list
568    --  starts from the association (Parent_Base => Derived_Base), and then it
569    --  contains a sequence of the associations of the form
570    --
571    --    (Old_Component => New_Component),
572    --
573    --  where Old_Component is the Entity_Id of a component in Parent_Base and
574    --  New_Component is the Entity_Id of the corresponding component in
575    --  Derived_Base. For untagged records, this association list is needed when
576    --  copying the record declaration for the derived base. In the tagged case
577    --  the value returned is irrelevant.
578
579    procedure Inherit_Predicate_Flags (Subt, Par : Entity_Id);
580    --  Propagate static and dynamic predicate flags from a parent to the
581    --  subtype in a subtype declaration with and without constraints.
582
583    function Is_EVF_Procedure (Subp : Entity_Id) return Boolean;
584    --  Subsidiary to Check_Abstract_Overriding and Derive_Subprogram.
585    --  Determine whether subprogram Subp is a procedure subject to pragma
586    --  Extensions_Visible with value False and has at least one controlling
587    --  parameter of mode OUT.
588
589    function Is_Valid_Constraint_Kind
590      (T_Kind          : Type_Kind;
591       Constraint_Kind : Node_Kind) return Boolean;
592    --  Returns True if it is legal to apply the given kind of constraint to the
593    --  given kind of type (index constraint to an array type, for example).
594
595    procedure Modular_Type_Declaration (T : Entity_Id; Def : Node_Id);
596    --  Create new modular type. Verify that modulus is in bounds
597
598    procedure New_Concatenation_Op (Typ : Entity_Id);
599    --  Create an abbreviated declaration for an operator in order to
600    --  materialize concatenation on array types.
601
602    procedure Ordinary_Fixed_Point_Type_Declaration
603      (T   : Entity_Id;
604       Def : Node_Id);
605    --  Create a new ordinary fixed point type, and apply the constraint to
606    --  obtain subtype of it.
607
608    procedure Prepare_Private_Subtype_Completion
609      (Id          : Entity_Id;
610       Related_Nod : Node_Id);
611    --  Id is a subtype of some private type. Creates the full declaration
612    --  associated with Id whenever possible, i.e. when the full declaration
613    --  of the base type is already known. Records each subtype into
614    --  Private_Dependents of the base type.
615
616    procedure Process_Incomplete_Dependents
617      (N      : Node_Id;
618       Full_T : Entity_Id;
619       Inc_T  : Entity_Id);
620    --  Process all entities that depend on an incomplete type. There include
621    --  subtypes, subprogram types that mention the incomplete type in their
622    --  profiles, and subprogram with access parameters that designate the
623    --  incomplete type.
624
625    --  Inc_T is the defining identifier of an incomplete type declaration, its
626    --  Ekind is E_Incomplete_Type.
627    --
628    --    N is the corresponding N_Full_Type_Declaration for Inc_T.
629    --
630    --    Full_T is N's defining identifier.
631    --
632    --  Subtypes of incomplete types with discriminants are completed when the
633    --  parent type is. This is simpler than private subtypes, because they can
634    --  only appear in the same scope, and there is no need to exchange views.
635    --  Similarly, access_to_subprogram types may have a parameter or a return
636    --  type that is an incomplete type, and that must be replaced with the
637    --  full type.
638    --
639    --  If the full type is tagged, subprogram with access parameters that
640    --  designated the incomplete may be primitive operations of the full type,
641    --  and have to be processed accordingly.
642
643    procedure Process_Real_Range_Specification (Def : Node_Id);
644    --  Given the type definition for a real type, this procedure processes and
645    --  checks the real range specification of this type definition if one is
646    --  present. If errors are found, error messages are posted, and the
647    --  Real_Range_Specification of Def is reset to Empty.
648
649    procedure Propagate_Default_Init_Cond_Attributes
650      (From_Typ             : Entity_Id;
651       To_Typ               : Entity_Id;
652       Parent_To_Derivation : Boolean := False;
653       Private_To_Full_View : Boolean := False);
654    --  Subsidiary to routines Build_Derived_Type and Process_Full_View. Inherit
655    --  all attributes related to pragma Default_Initial_Condition from From_Typ
656    --  to To_Typ. Flag Parent_To_Derivation should be set when the context is
657    --  the creation of a derived type. Flag Private_To_Full_View should be set
658    --  when processing both views of a private type.
659
660    procedure Record_Type_Declaration
661      (T    : Entity_Id;
662       N    : Node_Id;
663       Prev : Entity_Id);
664    --  Process a record type declaration (for both untagged and tagged
665    --  records). Parameters T and N are exactly like in procedure
666    --  Derived_Type_Declaration, except that no flag Is_Completion is needed
667    --  for this routine. If this is the completion of an incomplete type
668    --  declaration, Prev is the entity of the incomplete declaration, used for
669    --  cross-referencing. Otherwise Prev = T.
670
671    procedure Record_Type_Definition (Def : Node_Id; Prev_T : Entity_Id);
672    --  This routine is used to process the actual record type definition (both
673    --  for untagged and tagged records). Def is a record type definition node.
674    --  This procedure analyzes the components in this record type definition.
675    --  Prev_T is the entity for the enclosing record type. It is provided so
676    --  that its Has_Task flag can be set if any of the component have Has_Task
677    --  set. If the declaration is the completion of an incomplete type
678    --  declaration, Prev_T is the original incomplete type, whose full view is
679    --  the record type.
680
681    procedure Replace_Components (Typ : Entity_Id; Decl : Node_Id);
682    --  Subsidiary to Build_Derived_Record_Type. For untagged records, we
683    --  build a copy of the declaration tree of the parent, and we create
684    --  independently the list of components for the derived type. Semantic
685    --  information uses the component entities, but record representation
686    --  clauses are validated on the declaration tree. This procedure replaces
687    --  discriminants and components in the declaration with those that have
688    --  been created by Inherit_Components.
689
690    procedure Set_Fixed_Range
691      (E   : Entity_Id;
692       Loc : Source_Ptr;
693       Lo  : Ureal;
694       Hi  : Ureal);
695    --  Build a range node with the given bounds and set it as the Scalar_Range
696    --  of the given fixed-point type entity. Loc is the source location used
697    --  for the constructed range. See body for further details.
698
699    procedure Set_Scalar_Range_For_Subtype
700      (Def_Id : Entity_Id;
701       R      : Node_Id;
702       Subt   : Entity_Id);
703    --  This routine is used to set the scalar range field for a subtype given
704    --  Def_Id, the entity for the subtype, and R, the range expression for the
705    --  scalar range. Subt provides the parent subtype to be used to analyze,
706    --  resolve, and check the given range.
707
708    procedure Set_Default_SSO (T : Entity_Id);
709    --  T is the entity for an array or record being declared. This procedure
710    --  sets the flags SSO_Set_Low_By_Default/SSO_Set_High_By_Default according
711    --  to the setting of Opt.Default_SSO.
712
713    procedure Signed_Integer_Type_Declaration (T : Entity_Id; Def : Node_Id);
714    --  Create a new signed integer entity, and apply the constraint to obtain
715    --  the required first named subtype of this type.
716
717    procedure Set_Stored_Constraint_From_Discriminant_Constraint
718      (E : Entity_Id);
719    --  E is some record type. This routine computes E's Stored_Constraint
720    --  from its Discriminant_Constraint.
721
722    procedure Diagnose_Interface (N : Node_Id;  E : Entity_Id);
723    --  Check that an entity in a list of progenitors is an interface,
724    --  emit error otherwise.
725
726    -----------------------
727    -- Access_Definition --
728    -----------------------
729
730    function Access_Definition
731      (Related_Nod : Node_Id;
732       N           : Node_Id) return Entity_Id
733    is
734       Anon_Type           : Entity_Id;
735       Anon_Scope          : Entity_Id;
736       Desig_Type          : Entity_Id;
737       Enclosing_Prot_Type : Entity_Id := Empty;
738
739    begin
740       Check_SPARK_05_Restriction ("access type is not allowed", N);
741
742       if Is_Entry (Current_Scope)
743         and then Is_Task_Type (Etype (Scope (Current_Scope)))
744       then
745          Error_Msg_N ("task entries cannot have access parameters", N);
746          return Empty;
747       end if;
748
749       --  Ada 2005: For an object declaration the corresponding anonymous
750       --  type is declared in the current scope.
751
752       --  If the access definition is the return type of another access to
753       --  function, scope is the current one, because it is the one of the
754       --  current type declaration, except for the pathological case below.
755
756       if Nkind_In (Related_Nod, N_Object_Declaration,
757                                 N_Access_Function_Definition)
758       then
759          Anon_Scope := Current_Scope;
760
761          --  A pathological case: function returning access functions that
762          --  return access functions, etc. Each anonymous access type created
763          --  is in the enclosing scope of the outermost function.
764
765          declare
766             Par : Node_Id;
767
768          begin
769             Par := Related_Nod;
770             while Nkind_In (Par, N_Access_Function_Definition,
771                                  N_Access_Definition)
772             loop
773                Par := Parent (Par);
774             end loop;
775
776             if Nkind (Par) = N_Function_Specification then
777                Anon_Scope := Scope (Defining_Entity (Par));
778             end if;
779          end;
780
781       --  For the anonymous function result case, retrieve the scope of the
782       --  function specification's associated entity rather than using the
783       --  current scope. The current scope will be the function itself if the
784       --  formal part is currently being analyzed, but will be the parent scope
785       --  in the case of a parameterless function, and we always want to use
786       --  the function's parent scope. Finally, if the function is a child
787       --  unit, we must traverse the tree to retrieve the proper entity.
788
789       elsif Nkind (Related_Nod) = N_Function_Specification
790         and then Nkind (Parent (N)) /= N_Parameter_Specification
791       then
792          --  If the current scope is a protected type, the anonymous access
793          --  is associated with one of the protected operations, and must
794          --  be available in the scope that encloses the protected declaration.
795          --  Otherwise the type is in the scope enclosing the subprogram.
796
797          --  If the function has formals, The return type of a subprogram
798          --  declaration is analyzed in the scope of the subprogram (see
799          --  Process_Formals) and thus the protected type, if present, is
800          --  the scope of the current function scope.
801
802          if Ekind (Current_Scope) = E_Protected_Type then
803             Enclosing_Prot_Type := Current_Scope;
804
805          elsif Ekind (Current_Scope) = E_Function
806            and then Ekind (Scope (Current_Scope)) = E_Protected_Type
807          then
808             Enclosing_Prot_Type := Scope (Current_Scope);
809          end if;
810
811          if Present (Enclosing_Prot_Type) then
812             Anon_Scope := Scope (Enclosing_Prot_Type);
813
814          else
815             Anon_Scope := Scope (Defining_Entity (Related_Nod));
816          end if;
817
818       --  For an access type definition, if the current scope is a child
819       --  unit it is the scope of the type.
820
821       elsif Is_Compilation_Unit (Current_Scope) then
822          Anon_Scope := Current_Scope;
823
824       --  For access formals, access components, and access discriminants, the
825       --  scope is that of the enclosing declaration,
826
827       else
828          Anon_Scope := Scope (Current_Scope);
829       end if;
830
831       Anon_Type :=
832         Create_Itype
833           (E_Anonymous_Access_Type, Related_Nod, Scope_Id => Anon_Scope);
834
835       if All_Present (N)
836         and then Ada_Version >= Ada_2005
837       then
838          Error_Msg_N ("ALL is not permitted for anonymous access types", N);
839       end if;
840
841       --  Ada 2005 (AI-254): In case of anonymous access to subprograms call
842       --  the corresponding semantic routine
843
844       if Present (Access_To_Subprogram_Definition (N)) then
845
846          --  Compiler runtime units are compiled in Ada 2005 mode when building
847          --  the runtime library but must also be compilable in Ada 95 mode
848          --  (when bootstrapping the compiler).
849
850          Check_Compiler_Unit ("anonymous access to subprogram", N);
851
852          Access_Subprogram_Declaration
853            (T_Name => Anon_Type,
854             T_Def  => Access_To_Subprogram_Definition (N));
855
856          if Ekind (Anon_Type) = E_Access_Protected_Subprogram_Type then
857             Set_Ekind
858               (Anon_Type, E_Anonymous_Access_Protected_Subprogram_Type);
859          else
860             Set_Ekind (Anon_Type, E_Anonymous_Access_Subprogram_Type);
861          end if;
862
863          Set_Can_Use_Internal_Rep
864            (Anon_Type, not Always_Compatible_Rep_On_Target);
865
866          --  If the anonymous access is associated with a protected operation,
867          --  create a reference to it after the enclosing protected definition
868          --  because the itype will be used in the subsequent bodies.
869
870          --  If the anonymous access itself is protected, a full type
871          --  declaratiton will be created for it, so that the equivalent
872          --  record type can be constructed. For further details, see
873          --  Replace_Anonymous_Access_To_Protected-Subprogram.
874
875          if Ekind (Current_Scope) = E_Protected_Type
876            and then not Protected_Present (Access_To_Subprogram_Definition (N))
877          then
878             Build_Itype_Reference (Anon_Type, Parent (Current_Scope));
879          end if;
880
881          return Anon_Type;
882       end if;
883
884       Find_Type (Subtype_Mark (N));
885       Desig_Type := Entity (Subtype_Mark (N));
886
887       Set_Directly_Designated_Type (Anon_Type, Desig_Type);
888       Set_Etype (Anon_Type, Anon_Type);
889
890       --  Make sure the anonymous access type has size and alignment fields
891       --  set, as required by gigi. This is necessary in the case of the
892       --  Task_Body_Procedure.
893
894       if not Has_Private_Component (Desig_Type) then
895          Layout_Type (Anon_Type);
896       end if;
897
898       --  Ada 2005 (AI-231): Ada 2005 semantics for anonymous access differs
899       --  from Ada 95 semantics. In Ada 2005, anonymous access must specify if
900       --  the null value is allowed. In Ada 95 the null value is never allowed.
901
902       if Ada_Version >= Ada_2005 then
903          Set_Can_Never_Be_Null (Anon_Type, Null_Exclusion_Present (N));
904       else
905          Set_Can_Never_Be_Null (Anon_Type, True);
906       end if;
907
908       --  The anonymous access type is as public as the discriminated type or
909       --  subprogram that defines it. It is imported (for back-end purposes)
910       --  if the designated type is.
911
912       Set_Is_Public (Anon_Type, Is_Public (Scope (Anon_Type)));
913
914       --  Ada 2005 (AI-231): Propagate the access-constant attribute
915
916       Set_Is_Access_Constant (Anon_Type, Constant_Present (N));
917
918       --  The context is either a subprogram declaration, object declaration,
919       --  or an access discriminant, in a private or a full type declaration.
920       --  In the case of a subprogram, if the designated type is incomplete,
921       --  the operation will be a primitive operation of the full type, to be
922       --  updated subsequently. If the type is imported through a limited_with
923       --  clause, the subprogram is not a primitive operation of the type
924       --  (which is declared elsewhere in some other scope).
925
926       if Ekind (Desig_Type) = E_Incomplete_Type
927         and then not From_Limited_With (Desig_Type)
928         and then Is_Overloadable (Current_Scope)
929       then
930          Append_Elmt (Current_Scope, Private_Dependents (Desig_Type));
931          Set_Has_Delayed_Freeze (Current_Scope);
932       end if;
933
934       --  Ada 2005: If the designated type is an interface that may contain
935       --  tasks, create a Master entity for the declaration. This must be done
936       --  before expansion of the full declaration, because the declaration may
937       --  include an expression that is an allocator, whose expansion needs the
938       --  proper Master for the created tasks.
939
940       if Nkind (Related_Nod) = N_Object_Declaration and then Expander_Active
941       then
942          if Is_Interface (Desig_Type) and then Is_Limited_Record (Desig_Type)
943          then
944             Build_Class_Wide_Master (Anon_Type);
945
946          --  Similarly, if the type is an anonymous access that designates
947          --  tasks, create a master entity for it in the current context.
948
949          elsif Has_Task (Desig_Type) and then Comes_From_Source (Related_Nod)
950          then
951             Build_Master_Entity (Defining_Identifier (Related_Nod));
952             Build_Master_Renaming (Anon_Type);
953          end if;
954       end if;
955
956       --  For a private component of a protected type, it is imperative that
957       --  the back-end elaborate the type immediately after the protected
958       --  declaration, because this type will be used in the declarations
959       --  created for the component within each protected body, so we must
960       --  create an itype reference for it now.
961
962       if Nkind (Parent (Related_Nod)) = N_Protected_Definition then
963          Build_Itype_Reference (Anon_Type, Parent (Parent (Related_Nod)));
964
965       --  Similarly, if the access definition is the return result of a
966       --  function, create an itype reference for it because it will be used
967       --  within the function body. For a regular function that is not a
968       --  compilation unit, insert reference after the declaration. For a
969       --  protected operation, insert it after the enclosing protected type
970       --  declaration. In either case, do not create a reference for a type
971       --  obtained through a limited_with clause, because this would introduce
972       --  semantic dependencies.
973
974       --  Similarly, do not create a reference if the designated type is a
975       --  generic formal, because no use of it will reach the backend.
976
977       elsif Nkind (Related_Nod) = N_Function_Specification
978         and then not From_Limited_With (Desig_Type)
979         and then not Is_Generic_Type (Desig_Type)
980       then
981          if Present (Enclosing_Prot_Type) then
982             Build_Itype_Reference (Anon_Type, Parent (Enclosing_Prot_Type));
983
984          elsif Is_List_Member (Parent (Related_Nod))
985            and then Nkind (Parent (N)) /= N_Parameter_Specification
986          then
987             Build_Itype_Reference (Anon_Type, Parent (Related_Nod));
988          end if;
989
990       --  Finally, create an itype reference for an object declaration of an
991       --  anonymous access type. This is strictly necessary only for deferred
992       --  constants, but in any case will avoid out-of-scope problems in the
993       --  back-end.
994
995       elsif Nkind (Related_Nod) = N_Object_Declaration then
996          Build_Itype_Reference (Anon_Type, Related_Nod);
997       end if;
998
999       return Anon_Type;
1000    end Access_Definition;
1001
1002    -----------------------------------
1003    -- Access_Subprogram_Declaration --
1004    -----------------------------------
1005
1006    procedure Access_Subprogram_Declaration
1007      (T_Name : Entity_Id;
1008       T_Def  : Node_Id)
1009    is
1010       procedure Check_For_Premature_Usage (Def : Node_Id);
1011       --  Check that type T_Name is not used, directly or recursively, as a
1012       --  parameter or a return type in Def. Def is either a subtype, an
1013       --  access_definition, or an access_to_subprogram_definition.
1014
1015       -------------------------------
1016       -- Check_For_Premature_Usage --
1017       -------------------------------
1018
1019       procedure Check_For_Premature_Usage (Def : Node_Id) is
1020          Param : Node_Id;
1021
1022       begin
1023          --  Check for a subtype mark
1024
1025          if Nkind (Def) in N_Has_Etype then
1026             if Etype (Def) = T_Name then
1027                Error_Msg_N
1028                  ("type& cannot be used before end of its declaration", Def);
1029             end if;
1030
1031          --  If this is not a subtype, then this is an access_definition
1032
1033          elsif Nkind (Def) = N_Access_Definition then
1034             if Present (Access_To_Subprogram_Definition (Def)) then
1035                Check_For_Premature_Usage
1036                  (Access_To_Subprogram_Definition (Def));
1037             else
1038                Check_For_Premature_Usage (Subtype_Mark (Def));
1039             end if;
1040
1041          --  The only cases left are N_Access_Function_Definition and
1042          --  N_Access_Procedure_Definition.
1043
1044          else
1045             if Present (Parameter_Specifications (Def)) then
1046                Param := First (Parameter_Specifications (Def));
1047                while Present (Param) loop
1048                   Check_For_Premature_Usage (Parameter_Type (Param));
1049                   Param := Next (Param);
1050                end loop;
1051             end if;
1052
1053             if Nkind (Def) = N_Access_Function_Definition then
1054                Check_For_Premature_Usage (Result_Definition (Def));
1055             end if;
1056          end if;
1057       end Check_For_Premature_Usage;
1058
1059       --  Local variables
1060
1061       Formals    : constant List_Id := Parameter_Specifications (T_Def);
1062       Formal     : Entity_Id;
1063       D_Ityp     : Node_Id;
1064       Desig_Type : constant Entity_Id :=
1065                      Create_Itype (E_Subprogram_Type, Parent (T_Def));
1066
1067    --  Start of processing for Access_Subprogram_Declaration
1068
1069    begin
1070       Check_SPARK_05_Restriction ("access type is not allowed", T_Def);
1071
1072       --  Associate the Itype node with the inner full-type declaration or
1073       --  subprogram spec or entry body. This is required to handle nested
1074       --  anonymous declarations. For example:
1075
1076       --      procedure P
1077       --       (X : access procedure
1078       --                     (Y : access procedure
1079       --                                   (Z : access T)))
1080
1081       D_Ityp := Associated_Node_For_Itype (Desig_Type);
1082       while not (Nkind_In (D_Ityp, N_Full_Type_Declaration,
1083                                    N_Private_Type_Declaration,
1084                                    N_Private_Extension_Declaration,
1085                                    N_Procedure_Specification,
1086                                    N_Function_Specification,
1087                                    N_Entry_Body)
1088
1089                    or else
1090                  Nkind_In (D_Ityp, N_Object_Declaration,
1091                                    N_Object_Renaming_Declaration,
1092                                    N_Formal_Object_Declaration,
1093                                    N_Formal_Type_Declaration,
1094                                    N_Task_Type_Declaration,
1095                                    N_Protected_Type_Declaration))
1096       loop
1097          D_Ityp := Parent (D_Ityp);
1098          pragma Assert (D_Ityp /= Empty);
1099       end loop;
1100
1101       Set_Associated_Node_For_Itype (Desig_Type, D_Ityp);
1102
1103       if Nkind_In (D_Ityp, N_Procedure_Specification,
1104                            N_Function_Specification)
1105       then
1106          Set_Scope (Desig_Type, Scope (Defining_Entity (D_Ityp)));
1107
1108       elsif Nkind_In (D_Ityp, N_Full_Type_Declaration,
1109                               N_Object_Declaration,
1110                               N_Object_Renaming_Declaration,
1111                               N_Formal_Type_Declaration)
1112       then
1113          Set_Scope (Desig_Type, Scope (Defining_Identifier (D_Ityp)));
1114       end if;
1115
1116       if Nkind (T_Def) = N_Access_Function_Definition then
1117          if Nkind (Result_Definition (T_Def)) = N_Access_Definition then
1118             declare
1119                Acc : constant Node_Id := Result_Definition (T_Def);
1120
1121             begin
1122                if Present (Access_To_Subprogram_Definition (Acc))
1123                  and then
1124                    Protected_Present (Access_To_Subprogram_Definition (Acc))
1125                then
1126                   Set_Etype
1127                     (Desig_Type,
1128                        Replace_Anonymous_Access_To_Protected_Subprogram
1129                          (T_Def));
1130
1131                else
1132                   Set_Etype
1133                     (Desig_Type,
1134                        Access_Definition (T_Def, Result_Definition (T_Def)));
1135                end if;
1136             end;
1137
1138          else
1139             Analyze (Result_Definition (T_Def));
1140
1141             declare
1142                Typ : constant Entity_Id := Entity (Result_Definition (T_Def));
1143
1144             begin
1145                --  If a null exclusion is imposed on the result type, then
1146                --  create a null-excluding itype (an access subtype) and use
1147                --  it as the function's Etype.
1148
1149                if Is_Access_Type (Typ)
1150                  and then Null_Exclusion_In_Return_Present (T_Def)
1151                then
1152                   Set_Etype (Desig_Type,
1153                     Create_Null_Excluding_Itype
1154                       (T           => Typ,
1155                        Related_Nod => T_Def,
1156                        Scope_Id    => Current_Scope));
1157
1158                else
1159                   if From_Limited_With (Typ) then
1160
1161                      --  AI05-151: Incomplete types are allowed in all basic
1162                      --  declarations, including access to subprograms.
1163
1164                      if Ada_Version >= Ada_2012 then
1165                         null;
1166
1167                      else
1168                         Error_Msg_NE
1169                          ("illegal use of incomplete type&",
1170                           Result_Definition (T_Def), Typ);
1171                      end if;
1172
1173                   elsif Ekind (Current_Scope) = E_Package
1174                     and then In_Private_Part (Current_Scope)
1175                   then
1176                      if Ekind (Typ) = E_Incomplete_Type then
1177                         Append_Elmt (Desig_Type, Private_Dependents (Typ));
1178
1179                      elsif Is_Class_Wide_Type (Typ)
1180                        and then Ekind (Etype (Typ)) = E_Incomplete_Type
1181                      then
1182                         Append_Elmt
1183                           (Desig_Type, Private_Dependents (Etype (Typ)));
1184                      end if;
1185                   end if;
1186
1187                   Set_Etype (Desig_Type, Typ);
1188                end if;
1189             end;
1190          end if;
1191
1192          if not (Is_Type (Etype (Desig_Type))) then
1193             Error_Msg_N
1194               ("expect type in function specification",
1195                Result_Definition (T_Def));
1196          end if;
1197
1198       else
1199          Set_Etype (Desig_Type, Standard_Void_Type);
1200       end if;
1201
1202       if Present (Formals) then
1203          Push_Scope (Desig_Type);
1204
1205          --  Some special tests here. These special tests can be removed
1206          --  if and when Itypes always have proper parent pointers to their
1207          --  declarations???
1208
1209          --  Special test 1) Link defining_identifier of formals. Required by
1210          --  First_Formal to provide its functionality.
1211
1212          declare
1213             F : Node_Id;
1214
1215          begin
1216             F := First (Formals);
1217
1218             --  In ASIS mode, the access_to_subprogram may be analyzed twice,
1219             --  when it is part of an unconstrained type and subtype expansion
1220             --  is disabled. To avoid back-end problems with shared profiles,
1221             --  use previous subprogram type as the designated type, and then
1222             --  remove scope added above.
1223
1224             if ASIS_Mode and then Present (Scope (Defining_Identifier (F)))
1225             then
1226                Set_Etype                    (T_Name, T_Name);
1227                Init_Size_Align              (T_Name);
1228                Set_Directly_Designated_Type (T_Name,
1229                  Scope (Defining_Identifier (F)));
1230                End_Scope;
1231                return;
1232             end if;
1233
1234             while Present (F) loop
1235                if No (Parent (Defining_Identifier (F))) then
1236                   Set_Parent (Defining_Identifier (F), F);
1237                end if;
1238
1239                Next (F);
1240             end loop;
1241          end;
1242
1243          Process_Formals (Formals, Parent (T_Def));
1244
1245          --  Special test 2) End_Scope requires that the parent pointer be set
1246          --  to something reasonable, but Itypes don't have parent pointers. So
1247          --  we set it and then unset it ???
1248
1249          Set_Parent (Desig_Type, T_Name);
1250          End_Scope;
1251          Set_Parent (Desig_Type, Empty);
1252       end if;
1253
1254       --  Check for premature usage of the type being defined
1255
1256       Check_For_Premature_Usage (T_Def);
1257
1258       --  The return type and/or any parameter type may be incomplete. Mark the
1259       --  subprogram_type as depending on the incomplete type, so that it can
1260       --  be updated when the full type declaration is seen. This only applies
1261       --  to incomplete types declared in some enclosing scope, not to limited
1262       --  views from other packages.
1263
1264       --  Prior to Ada 2012, access to functions can only have in_parameters.
1265
1266       if Present (Formals) then
1267          Formal := First_Formal (Desig_Type);
1268          while Present (Formal) loop
1269             if Ekind (Formal) /= E_In_Parameter
1270               and then Nkind (T_Def) = N_Access_Function_Definition
1271               and then Ada_Version < Ada_2012
1272             then
1273                Error_Msg_N ("functions can only have IN parameters", Formal);
1274             end if;
1275
1276             if Ekind (Etype (Formal)) = E_Incomplete_Type
1277               and then In_Open_Scopes (Scope (Etype (Formal)))
1278             then
1279                Append_Elmt (Desig_Type, Private_Dependents (Etype (Formal)));
1280                Set_Has_Delayed_Freeze (Desig_Type);
1281             end if;
1282
1283             Next_Formal (Formal);
1284          end loop;
1285       end if;
1286
1287       --  Check whether an indirect call without actuals may be possible. This
1288       --  is used when resolving calls whose result is then indexed.
1289
1290       May_Need_Actuals (Desig_Type);
1291
1292       --  If the return type is incomplete, this is legal as long as the type
1293       --  is declared in the current scope and will be completed in it (rather
1294       --  than being part of limited view).
1295
1296       if Ekind (Etype (Desig_Type)) = E_Incomplete_Type
1297         and then not Has_Delayed_Freeze (Desig_Type)
1298         and then In_Open_Scopes (Scope (Etype (Desig_Type)))
1299       then
1300          Append_Elmt (Desig_Type, Private_Dependents (Etype (Desig_Type)));
1301          Set_Has_Delayed_Freeze (Desig_Type);
1302       end if;
1303
1304       Check_Delayed_Subprogram (Desig_Type);
1305
1306       if Protected_Present (T_Def) then
1307          Set_Ekind (T_Name, E_Access_Protected_Subprogram_Type);
1308          Set_Convention (Desig_Type, Convention_Protected);
1309       else
1310          Set_Ekind (T_Name, E_Access_Subprogram_Type);
1311       end if;
1312
1313       Set_Can_Use_Internal_Rep (T_Name, not Always_Compatible_Rep_On_Target);
1314
1315       Set_Etype                    (T_Name, T_Name);
1316       Init_Size_Align              (T_Name);
1317       Set_Directly_Designated_Type (T_Name, Desig_Type);
1318
1319       Generate_Reference_To_Formals (T_Name);
1320
1321       --  Ada 2005 (AI-231): Propagate the null-excluding attribute
1322
1323       Set_Can_Never_Be_Null (T_Name, Null_Exclusion_Present (T_Def));
1324
1325       Check_Restriction (No_Access_Subprograms, T_Def);
1326    end Access_Subprogram_Declaration;
1327
1328    ----------------------------
1329    -- Access_Type_Declaration --
1330    ----------------------------
1331
1332    procedure Access_Type_Declaration (T : Entity_Id; Def : Node_Id) is
1333       P : constant Node_Id := Parent (Def);
1334       S : constant Node_Id := Subtype_Indication (Def);
1335
1336       Full_Desig : Entity_Id;
1337
1338    begin
1339       Check_SPARK_05_Restriction ("access type is not allowed", Def);
1340
1341       --  Check for permissible use of incomplete type
1342
1343       if Nkind (S) /= N_Subtype_Indication then
1344          Analyze (S);
1345
1346          if Ekind (Root_Type (Entity (S))) = E_Incomplete_Type then
1347             Set_Directly_Designated_Type (T, Entity (S));
1348
1349             --  If the designated type is a limited view, we cannot tell if
1350             --  the full view contains tasks, and there is no way to handle
1351             --  that full view in a client. We create a master entity for the
1352             --  scope, which will be used when a client determines that one
1353             --  is needed.
1354
1355             if From_Limited_With (Entity (S))
1356               and then not Is_Class_Wide_Type (Entity (S))
1357             then
1358                Set_Ekind (T, E_Access_Type);
1359                Build_Master_Entity (T);
1360                Build_Master_Renaming (T);
1361             end if;
1362
1363          else
1364             Set_Directly_Designated_Type (T, Process_Subtype (S, P, T, 'P'));
1365          end if;
1366
1367          --  If the access definition is of the form: ACCESS NOT NULL ..
1368          --  the subtype indication must be of an access type. Create
1369          --  a null-excluding subtype of it.
1370
1371          if Null_Excluding_Subtype (Def) then
1372             if not Is_Access_Type (Entity (S)) then
1373                Error_Msg_N ("null exclusion must apply to access type", Def);
1374
1375             else
1376                declare
1377                   Loc  : constant Source_Ptr := Sloc (S);
1378                   Decl : Node_Id;
1379                   Nam  : constant Entity_Id := Make_Temporary (Loc, 'S');
1380
1381                begin
1382                   Decl :=
1383                     Make_Subtype_Declaration (Loc,
1384                       Defining_Identifier => Nam,
1385                       Subtype_Indication  =>
1386                         New_Occurrence_Of (Entity (S), Loc));
1387                   Set_Null_Exclusion_Present (Decl);
1388                   Insert_Before (Parent (Def), Decl);
1389                   Analyze (Decl);
1390                   Set_Entity (S, Nam);
1391                end;
1392             end if;
1393          end if;
1394
1395       else
1396          Set_Directly_Designated_Type (T,
1397            Process_Subtype (S, P, T, 'P'));
1398       end if;
1399
1400       if All_Present (Def) or Constant_Present (Def) then
1401          Set_Ekind (T, E_General_Access_Type);
1402       else
1403          Set_Ekind (T, E_Access_Type);
1404       end if;
1405
1406       Full_Desig := Designated_Type (T);
1407
1408       if Base_Type (Full_Desig) = T then
1409          Error_Msg_N ("access type cannot designate itself", S);
1410
1411       --  In Ada 2005, the type may have a limited view through some unit in
1412       --  its own context, allowing the following circularity that cannot be
1413       --  detected earlier.
1414
1415       elsif Is_Class_Wide_Type (Full_Desig) and then Etype (Full_Desig) = T
1416       then
1417          Error_Msg_N
1418            ("access type cannot designate its own classwide type", S);
1419
1420          --  Clean up indication of tagged status to prevent cascaded errors
1421
1422          Set_Is_Tagged_Type (T, False);
1423       end if;
1424
1425       Set_Etype (T, T);
1426
1427       --  If the type has appeared already in a with_type clause, it is frozen
1428       --  and the pointer size is already set. Else, initialize.
1429
1430       if not From_Limited_With (T) then
1431          Init_Size_Align (T);
1432       end if;
1433
1434       --  Note that Has_Task is always false, since the access type itself
1435       --  is not a task type. See Einfo for more description on this point.
1436       --  Exactly the same consideration applies to Has_Controlled_Component
1437       --  and to Has_Protected.
1438
1439       Set_Has_Task                 (T, False);
1440       Set_Has_Controlled_Component (T, False);
1441       Set_Has_Protected            (T, False);
1442
1443       --  Initialize field Finalization_Master explicitly to Empty, to avoid
1444       --  problems where an incomplete view of this entity has been previously
1445       --  established by a limited with and an overlaid version of this field
1446       --  (Stored_Constraint) was initialized for the incomplete view.
1447
1448       --  This reset is performed in most cases except where the access type
1449       --  has been created for the purposes of allocating or deallocating a
1450       --  build-in-place object. Such access types have explicitly set pools
1451       --  and finalization masters.
1452
1453       if No (Associated_Storage_Pool (T)) then
1454          Set_Finalization_Master (T, Empty);
1455       end if;
1456
1457       --  Ada 2005 (AI-231): Propagate the null-excluding and access-constant
1458       --  attributes
1459
1460       Set_Can_Never_Be_Null  (T, Null_Exclusion_Present (Def));
1461       Set_Is_Access_Constant (T, Constant_Present (Def));
1462    end Access_Type_Declaration;
1463
1464    ----------------------------------
1465    -- Add_Interface_Tag_Components --
1466    ----------------------------------
1467
1468    procedure Add_Interface_Tag_Components (N : Node_Id; Typ : Entity_Id) is
1469       Loc      : constant Source_Ptr := Sloc (N);
1470       L        : List_Id;
1471       Last_Tag : Node_Id;
1472
1473       procedure Add_Tag (Iface : Entity_Id);
1474       --  Add tag for one of the progenitor interfaces
1475
1476       -------------
1477       -- Add_Tag --
1478       -------------
1479
1480       procedure Add_Tag (Iface : Entity_Id) is
1481          Decl   : Node_Id;
1482          Def    : Node_Id;
1483          Tag    : Entity_Id;
1484          Offset : Entity_Id;
1485
1486       begin
1487          pragma Assert (Is_Tagged_Type (Iface) and then Is_Interface (Iface));
1488
1489          --  This is a reasonable place to propagate predicates
1490
1491          if Has_Predicates (Iface) then
1492             Set_Has_Predicates (Typ);
1493          end if;
1494
1495          Def :=
1496            Make_Component_Definition (Loc,
1497              Aliased_Present    => True,
1498              Subtype_Indication =>
1499                New_Occurrence_Of (RTE (RE_Interface_Tag), Loc));
1500
1501          Tag := Make_Temporary (Loc, 'V');
1502
1503          Decl :=
1504            Make_Component_Declaration (Loc,
1505              Defining_Identifier  => Tag,
1506              Component_Definition => Def);
1507
1508          Analyze_Component_Declaration (Decl);
1509
1510          Set_Analyzed (Decl);
1511          Set_Ekind               (Tag, E_Component);
1512          Set_Is_Tag              (Tag);
1513          Set_Is_Aliased          (Tag);
1514          Set_Related_Type        (Tag, Iface);
1515          Init_Component_Location (Tag);
1516
1517          pragma Assert (Is_Frozen (Iface));
1518
1519          Set_DT_Entry_Count    (Tag,
1520            DT_Entry_Count (First_Entity (Iface)));
1521
1522          if No (Last_Tag) then
1523             Prepend (Decl, L);
1524          else
1525             Insert_After (Last_Tag, Decl);
1526          end if;
1527
1528          Last_Tag := Decl;
1529
1530          --  If the ancestor has discriminants we need to give special support
1531          --  to store the offset_to_top value of the secondary dispatch tables.
1532          --  For this purpose we add a supplementary component just after the
1533          --  field that contains the tag associated with each secondary DT.
1534
1535          if Typ /= Etype (Typ) and then Has_Discriminants (Etype (Typ)) then
1536             Def :=
1537               Make_Component_Definition (Loc,
1538                 Subtype_Indication =>
1539                   New_Occurrence_Of (RTE (RE_Storage_Offset), Loc));
1540
1541             Offset := Make_Temporary (Loc, 'V');
1542
1543             Decl :=
1544               Make_Component_Declaration (Loc,
1545                 Defining_Identifier  => Offset,
1546                 Component_Definition => Def);
1547
1548             Analyze_Component_Declaration (Decl);
1549
1550             Set_Analyzed (Decl);
1551             Set_Ekind               (Offset, E_Component);
1552             Set_Is_Aliased          (Offset);
1553             Set_Related_Type        (Offset, Iface);
1554             Init_Component_Location (Offset);
1555             Insert_After (Last_Tag, Decl);
1556             Last_Tag := Decl;
1557          end if;
1558       end Add_Tag;
1559
1560       --  Local variables
1561
1562       Elmt : Elmt_Id;
1563       Ext  : Node_Id;
1564       Comp : Node_Id;
1565
1566    --  Start of processing for Add_Interface_Tag_Components
1567
1568    begin
1569       if not RTE_Available (RE_Interface_Tag) then
1570          Error_Msg
1571            ("(Ada 2005) interface types not supported by this run-time!",
1572             Sloc (N));
1573          return;
1574       end if;
1575
1576       if Ekind (Typ) /= E_Record_Type
1577         or else (Is_Concurrent_Record_Type (Typ)
1578                   and then Is_Empty_List (Abstract_Interface_List (Typ)))
1579         or else (not Is_Concurrent_Record_Type (Typ)
1580                   and then No (Interfaces (Typ))
1581                   and then Is_Empty_Elmt_List (Interfaces (Typ)))
1582       then
1583          return;
1584       end if;
1585
1586       --  Find the current last tag
1587
1588       if Nkind (Type_Definition (N)) = N_Derived_Type_Definition then
1589          Ext := Record_Extension_Part (Type_Definition (N));
1590       else
1591          pragma Assert (Nkind (Type_Definition (N)) = N_Record_Definition);
1592          Ext := Type_Definition (N);
1593       end if;
1594
1595       Last_Tag := Empty;
1596
1597       if not (Present (Component_List (Ext))) then
1598          Set_Null_Present (Ext, False);
1599          L := New_List;
1600          Set_Component_List (Ext,
1601            Make_Component_List (Loc,
1602              Component_Items => L,
1603              Null_Present => False));
1604       else
1605          if Nkind (Type_Definition (N)) = N_Derived_Type_Definition then
1606             L := Component_Items
1607                    (Component_List
1608                      (Record_Extension_Part
1609                        (Type_Definition (N))));
1610          else
1611             L := Component_Items
1612                    (Component_List
1613                      (Type_Definition (N)));
1614          end if;
1615
1616          --  Find the last tag component
1617
1618          Comp := First (L);
1619          while Present (Comp) loop
1620             if Nkind (Comp) = N_Component_Declaration
1621               and then Is_Tag (Defining_Identifier (Comp))
1622             then
1623                Last_Tag := Comp;
1624             end if;
1625
1626             Next (Comp);
1627          end loop;
1628       end if;
1629
1630       --  At this point L references the list of components and Last_Tag
1631       --  references the current last tag (if any). Now we add the tag
1632       --  corresponding with all the interfaces that are not implemented
1633       --  by the parent.
1634
1635       if Present (Interfaces (Typ)) then
1636          Elmt := First_Elmt (Interfaces (Typ));
1637          while Present (Elmt) loop
1638             Add_Tag (Node (Elmt));
1639             Next_Elmt (Elmt);
1640          end loop;
1641       end if;
1642    end Add_Interface_Tag_Components;
1643
1644    -------------------------------------
1645    -- Add_Internal_Interface_Entities --
1646    -------------------------------------
1647
1648    procedure Add_Internal_Interface_Entities (Tagged_Type : Entity_Id) is
1649       Elmt          : Elmt_Id;
1650       Iface         : Entity_Id;
1651       Iface_Elmt    : Elmt_Id;
1652       Iface_Prim    : Entity_Id;
1653       Ifaces_List   : Elist_Id;
1654       New_Subp      : Entity_Id := Empty;
1655       Prim          : Entity_Id;
1656       Restore_Scope : Boolean := False;
1657
1658    begin
1659       pragma Assert (Ada_Version >= Ada_2005
1660         and then Is_Record_Type (Tagged_Type)
1661         and then Is_Tagged_Type (Tagged_Type)
1662         and then Has_Interfaces (Tagged_Type)
1663         and then not Is_Interface (Tagged_Type));
1664
1665       --  Ensure that the internal entities are added to the scope of the type
1666
1667       if Scope (Tagged_Type) /= Current_Scope then
1668          Push_Scope (Scope (Tagged_Type));
1669          Restore_Scope := True;
1670       end if;
1671
1672       Collect_Interfaces (Tagged_Type, Ifaces_List);
1673
1674       Iface_Elmt := First_Elmt (Ifaces_List);
1675       while Present (Iface_Elmt) loop
1676          Iface := Node (Iface_Elmt);
1677
1678          --  Originally we excluded here from this processing interfaces that
1679          --  are parents of Tagged_Type because their primitives are located
1680          --  in the primary dispatch table (and hence no auxiliary internal
1681          --  entities are required to handle secondary dispatch tables in such
1682          --  case). However, these auxiliary entities are also required to
1683          --  handle derivations of interfaces in formals of generics (see
1684          --  Derive_Subprograms).
1685
1686          Elmt := First_Elmt (Primitive_Operations (Iface));
1687          while Present (Elmt) loop
1688             Iface_Prim := Node (Elmt);
1689
1690             if not Is_Predefined_Dispatching_Operation (Iface_Prim) then
1691                Prim :=
1692                  Find_Primitive_Covering_Interface
1693                    (Tagged_Type => Tagged_Type,
1694                     Iface_Prim  => Iface_Prim);
1695
1696                if No (Prim) and then Serious_Errors_Detected > 0 then
1697                   goto Continue;
1698                end if;
1699
1700                pragma Assert (Present (Prim));
1701
1702                --  Ada 2012 (AI05-0197): If the name of the covering primitive
1703                --  differs from the name of the interface primitive then it is
1704                --  a private primitive inherited from a parent type. In such
1705                --  case, given that Tagged_Type covers the interface, the
1706                --  inherited private primitive becomes visible. For such
1707                --  purpose we add a new entity that renames the inherited
1708                --  private primitive.
1709
1710                if Chars (Prim) /= Chars (Iface_Prim) then
1711                   pragma Assert (Has_Suffix (Prim, 'P'));
1712                   Derive_Subprogram
1713                     (New_Subp     => New_Subp,
1714                      Parent_Subp  => Iface_Prim,
1715                      Derived_Type => Tagged_Type,
1716                      Parent_Type  => Iface);
1717                   Set_Alias (New_Subp, Prim);
1718                   Set_Is_Abstract_Subprogram
1719                     (New_Subp, Is_Abstract_Subprogram (Prim));
1720                end if;
1721
1722                Derive_Subprogram
1723                  (New_Subp     => New_Subp,
1724                   Parent_Subp  => Iface_Prim,
1725                   Derived_Type => Tagged_Type,
1726                   Parent_Type  => Iface);
1727
1728                --  Ada 2005 (AI-251): Decorate internal entity Iface_Subp
1729                --  associated with interface types. These entities are
1730                --  only registered in the list of primitives of its
1731                --  corresponding tagged type because they are only used
1732                --  to fill the contents of the secondary dispatch tables.
1733                --  Therefore they are removed from the homonym chains.
1734
1735                Set_Is_Hidden (New_Subp);
1736                Set_Is_Internal (New_Subp);
1737                Set_Alias (New_Subp, Prim);
1738                Set_Is_Abstract_Subprogram
1739                  (New_Subp, Is_Abstract_Subprogram (Prim));
1740                Set_Interface_Alias (New_Subp, Iface_Prim);
1741
1742                --  If the returned type is an interface then propagate it to
1743                --  the returned type. Needed by the thunk to generate the code
1744                --  which displaces "this" to reference the corresponding
1745                --  secondary dispatch table in the returned object.
1746
1747                if Is_Interface (Etype (Iface_Prim)) then
1748                   Set_Etype (New_Subp, Etype (Iface_Prim));
1749                end if;
1750
1751                --  Internal entities associated with interface types are only
1752                --  registered in the list of primitives of the tagged type.
1753                --  They are only used to fill the contents of the secondary
1754                --  dispatch tables. Therefore they are not needed in the
1755                --  homonym chains.
1756
1757                Remove_Homonym (New_Subp);
1758
1759                --  Hidden entities associated with interfaces must have set
1760                --  the Has_Delay_Freeze attribute to ensure that, in case
1761                --  of locally defined tagged types (or compiling with static
1762                --  dispatch tables generation disabled) the corresponding
1763                --  entry of the secondary dispatch table is filled when such
1764                --  an entity is frozen. This is an expansion activity that must
1765                --  be suppressed for ASIS because it leads to gigi elaboration
1766                --  issues in annotate mode.
1767
1768                if not ASIS_Mode then
1769                   Set_Has_Delayed_Freeze (New_Subp);
1770                end if;
1771             end if;
1772
1773             <<Continue>>
1774             Next_Elmt (Elmt);
1775          end loop;
1776
1777          Next_Elmt (Iface_Elmt);
1778       end loop;
1779
1780       if Restore_Scope then
1781          Pop_Scope;
1782       end if;
1783    end Add_Internal_Interface_Entities;
1784
1785    -----------------------------------
1786    -- Analyze_Component_Declaration --
1787    -----------------------------------
1788
1789    procedure Analyze_Component_Declaration (N : Node_Id) is
1790       Loc : constant Source_Ptr := Sloc (Component_Definition (N));
1791       Id  : constant Entity_Id  := Defining_Identifier (N);
1792       E   : constant Node_Id    := Expression (N);
1793       Typ : constant Node_Id    :=
1794               Subtype_Indication (Component_Definition (N));
1795       T   : Entity_Id;
1796       P   : Entity_Id;
1797
1798       function Contains_POC (Constr : Node_Id) return Boolean;
1799       --  Determines whether a constraint uses the discriminant of a record
1800       --  type thus becoming a per-object constraint (POC).
1801
1802       function Is_Known_Limited (Typ : Entity_Id) return Boolean;
1803       --  Typ is the type of the current component, check whether this type is
1804       --  a limited type. Used to validate declaration against that of
1805       --  enclosing record.
1806
1807       ------------------
1808       -- Contains_POC --
1809       ------------------
1810
1811       function Contains_POC (Constr : Node_Id) return Boolean is
1812       begin
1813          --  Prevent cascaded errors
1814
1815          if Error_Posted (Constr) then
1816             return False;
1817          end if;
1818
1819          case Nkind (Constr) is
1820             when N_Attribute_Reference =>
1821                return Attribute_Name (Constr) = Name_Access
1822                  and then Prefix (Constr) = Scope (Entity (Prefix (Constr)));
1823
1824             when N_Discriminant_Association =>
1825                return Denotes_Discriminant (Expression (Constr));
1826
1827             when N_Identifier =>
1828                return Denotes_Discriminant (Constr);
1829
1830             when N_Index_Or_Discriminant_Constraint =>
1831                declare
1832                   IDC : Node_Id;
1833
1834                begin
1835                   IDC := First (Constraints (Constr));
1836                   while Present (IDC) loop
1837
1838                      --  One per-object constraint is sufficient
1839
1840                      if Contains_POC (IDC) then
1841                         return True;
1842                      end if;
1843
1844                      Next (IDC);
1845                   end loop;
1846
1847                   return False;
1848                end;
1849
1850             when N_Range =>
1851                return Denotes_Discriminant (Low_Bound (Constr))
1852                         or else
1853                       Denotes_Discriminant (High_Bound (Constr));
1854
1855             when N_Range_Constraint =>
1856                return Denotes_Discriminant (Range_Expression (Constr));
1857
1858             when others =>
1859                return False;
1860
1861          end case;
1862       end Contains_POC;
1863
1864       ----------------------
1865       -- Is_Known_Limited --
1866       ----------------------
1867
1868       function Is_Known_Limited (Typ : Entity_Id) return Boolean is
1869          P : constant Entity_Id := Etype (Typ);
1870          R : constant Entity_Id := Root_Type (Typ);
1871
1872       begin
1873          if Is_Limited_Record (Typ) then
1874             return True;
1875
1876          --  If the root type is limited (and not a limited interface)
1877          --  so is the current type
1878
1879          elsif Is_Limited_Record (R)
1880            and then (not Is_Interface (R) or else not Is_Limited_Interface (R))
1881          then
1882             return True;
1883
1884          --  Else the type may have a limited interface progenitor, but a
1885          --  limited record parent.
1886
1887          elsif R /= P and then Is_Limited_Record (P) then
1888             return True;
1889
1890          else
1891             return False;
1892          end if;
1893       end Is_Known_Limited;
1894
1895    --  Start of processing for Analyze_Component_Declaration
1896
1897    begin
1898       Generate_Definition (Id);
1899       Enter_Name (Id);
1900
1901       if Present (Typ) then
1902          T := Find_Type_Of_Object
1903                 (Subtype_Indication (Component_Definition (N)), N);
1904
1905          if not Nkind_In (Typ, N_Identifier, N_Expanded_Name) then
1906             Check_SPARK_05_Restriction ("subtype mark required", Typ);
1907          end if;
1908
1909       --  Ada 2005 (AI-230): Access Definition case
1910
1911       else
1912          pragma Assert (Present
1913                           (Access_Definition (Component_Definition (N))));
1914
1915          T := Access_Definition
1916                 (Related_Nod => N,
1917                  N => Access_Definition (Component_Definition (N)));
1918          Set_Is_Local_Anonymous_Access (T);
1919
1920          --  Ada 2005 (AI-254)
1921
1922          if Present (Access_To_Subprogram_Definition
1923                       (Access_Definition (Component_Definition (N))))
1924            and then Protected_Present (Access_To_Subprogram_Definition
1925                                         (Access_Definition
1926                                           (Component_Definition (N))))
1927          then
1928             T := Replace_Anonymous_Access_To_Protected_Subprogram (N);
1929          end if;
1930       end if;
1931
1932       --  If the subtype is a constrained subtype of the enclosing record,
1933       --  (which must have a partial view) the back-end does not properly
1934       --  handle the recursion. Rewrite the component declaration with an
1935       --  explicit subtype indication, which is acceptable to Gigi. We can copy
1936       --  the tree directly because side effects have already been removed from
1937       --  discriminant constraints.
1938
1939       if Ekind (T) = E_Access_Subtype
1940         and then Is_Entity_Name (Subtype_Indication (Component_Definition (N)))
1941         and then Comes_From_Source (T)
1942         and then Nkind (Parent (T)) = N_Subtype_Declaration
1943         and then Etype (Directly_Designated_Type (T)) = Current_Scope
1944       then
1945          Rewrite
1946            (Subtype_Indication (Component_Definition (N)),
1947              New_Copy_Tree (Subtype_Indication (Parent (T))));
1948          T := Find_Type_Of_Object
1949                  (Subtype_Indication (Component_Definition (N)), N);
1950       end if;
1951
1952       --  If the component declaration includes a default expression, then we
1953       --  check that the component is not of a limited type (RM 3.7(5)),
1954       --  and do the special preanalysis of the expression (see section on
1955       --  "Handling of Default and Per-Object Expressions" in the spec of
1956       --  package Sem).
1957
1958       if Present (E) then
1959          Check_SPARK_05_Restriction ("default expression is not allowed", E);
1960          Preanalyze_Default_Expression (E, T);
1961          Check_Initialization (T, E);
1962
1963          if Ada_Version >= Ada_2005
1964            and then Ekind (T) = E_Anonymous_Access_Type
1965            and then Etype (E) /= Any_Type
1966          then
1967             --  Check RM 3.9.2(9): "if the expected type for an expression is
1968             --  an anonymous access-to-specific tagged type, then the object
1969             --  designated by the expression shall not be dynamically tagged
1970             --  unless it is a controlling operand in a call on a dispatching
1971             --  operation"
1972
1973             if Is_Tagged_Type (Directly_Designated_Type (T))
1974               and then
1975                 Ekind (Directly_Designated_Type (T)) /= E_Class_Wide_Type
1976               and then
1977                 Ekind (Directly_Designated_Type (Etype (E))) =
1978                   E_Class_Wide_Type
1979             then
1980                Error_Msg_N
1981                  ("access to specific tagged type required (RM 3.9.2(9))", E);
1982             end if;
1983
1984             --  (Ada 2005: AI-230): Accessibility check for anonymous
1985             --  components
1986
1987             if Type_Access_Level (Etype (E)) >
1988                Deepest_Type_Access_Level (T)
1989             then
1990                Error_Msg_N
1991                  ("expression has deeper access level than component " &
1992                   "(RM 3.10.2 (12.2))", E);
1993             end if;
1994
1995             --  The initialization expression is a reference to an access
1996             --  discriminant. The type of the discriminant is always deeper
1997             --  than any access type.
1998
1999             if Ekind (Etype (E)) = E_Anonymous_Access_Type
2000               and then Is_Entity_Name (E)
2001               and then Ekind (Entity (E)) = E_In_Parameter
2002               and then Present (Discriminal_Link (Entity (E)))
2003             then
2004                Error_Msg_N
2005                  ("discriminant has deeper accessibility level than target",
2006                   E);
2007             end if;
2008          end if;
2009       end if;
2010
2011       --  The parent type may be a private view with unknown discriminants,
2012       --  and thus unconstrained. Regular components must be constrained.
2013
2014       if not Is_Definite_Subtype (T) and then Chars (Id) /= Name_uParent then
2015          if Is_Class_Wide_Type (T) then
2016             Error_Msg_N
2017                ("class-wide subtype with unknown discriminants" &
2018                  " in component declaration",
2019                  Subtype_Indication (Component_Definition (N)));
2020          else
2021             Error_Msg_N
2022               ("unconstrained subtype in component declaration",
2023                Subtype_Indication (Component_Definition (N)));
2024          end if;
2025
2026       --  Components cannot be abstract, except for the special case of
2027       --  the _Parent field (case of extending an abstract tagged type)
2028
2029       elsif Is_Abstract_Type (T) and then Chars (Id) /= Name_uParent then
2030          Error_Msg_N ("type of a component cannot be abstract", N);
2031       end if;
2032
2033       Set_Etype (Id, T);
2034       Set_Is_Aliased (Id, Aliased_Present (Component_Definition (N)));
2035
2036       --  The component declaration may have a per-object constraint, set
2037       --  the appropriate flag in the defining identifier of the subtype.
2038
2039       if Present (Subtype_Indication (Component_Definition (N))) then
2040          declare
2041             Sindic : constant Node_Id :=
2042                        Subtype_Indication (Component_Definition (N));
2043          begin
2044             if Nkind (Sindic) = N_Subtype_Indication
2045               and then Present (Constraint (Sindic))
2046               and then Contains_POC (Constraint (Sindic))
2047             then
2048                Set_Has_Per_Object_Constraint (Id);
2049             end if;
2050          end;
2051       end if;
2052
2053       --  Ada 2005 (AI-231): Propagate the null-excluding attribute and carry
2054       --  out some static checks.
2055
2056       if Ada_Version >= Ada_2005 and then Can_Never_Be_Null (T) then
2057          Null_Exclusion_Static_Checks (N);
2058       end if;
2059
2060       --  If this component is private (or depends on a private type), flag the
2061       --  record type to indicate that some operations are not available.
2062
2063       P := Private_Component (T);
2064
2065       if Present (P) then
2066
2067          --  Check for circular definitions
2068
2069          if P = Any_Type then
2070             Set_Etype (Id, Any_Type);
2071
2072          --  There is a gap in the visibility of operations only if the
2073          --  component type is not defined in the scope of the record type.
2074
2075          elsif Scope (P) = Scope (Current_Scope) then
2076             null;
2077
2078          elsif Is_Limited_Type (P) then
2079             Set_Is_Limited_Composite (Current_Scope);
2080
2081          else
2082             Set_Is_Private_Composite (Current_Scope);
2083          end if;
2084       end if;
2085
2086       if P /= Any_Type
2087         and then Is_Limited_Type (T)
2088         and then Chars (Id) /= Name_uParent
2089         and then Is_Tagged_Type (Current_Scope)
2090       then
2091          if Is_Derived_Type (Current_Scope)
2092            and then not Is_Known_Limited (Current_Scope)
2093          then
2094             Error_Msg_N
2095               ("extension of nonlimited type cannot have limited components",
2096                N);
2097
2098             if Is_Interface (Root_Type (Current_Scope)) then
2099                Error_Msg_N
2100                  ("\limitedness is not inherited from limited interface", N);
2101                Error_Msg_N ("\add LIMITED to type indication", N);
2102             end if;
2103
2104             Explain_Limited_Type (T, N);
2105             Set_Etype (Id, Any_Type);
2106             Set_Is_Limited_Composite (Current_Scope, False);
2107
2108          elsif not Is_Derived_Type (Current_Scope)
2109            and then not Is_Limited_Record (Current_Scope)
2110            and then not Is_Concurrent_Type (Current_Scope)
2111          then
2112             Error_Msg_N
2113               ("nonlimited tagged type cannot have limited components", N);
2114             Explain_Limited_Type (T, N);
2115             Set_Etype (Id, Any_Type);
2116             Set_Is_Limited_Composite (Current_Scope, False);
2117          end if;
2118       end if;
2119
2120       --  If the component is an unconstrained task or protected type with
2121       --  discriminants, the component and the enclosing record are limited
2122       --  and the component is constrained by its default values. Compute
2123       --  its actual subtype, else it may be allocated the maximum size by
2124       --  the backend, and possibly overflow.
2125
2126       if Is_Concurrent_Type (T)
2127         and then not Is_Constrained (T)
2128         and then Has_Discriminants (T)
2129         and then not Has_Discriminants (Current_Scope)
2130       then
2131          declare
2132             Act_T : constant Entity_Id := Build_Default_Subtype (T, N);
2133
2134          begin
2135             Set_Etype (Id, Act_T);
2136
2137             --  Rewrite component definition to use the constrained subtype
2138
2139             Rewrite (Component_Definition (N),
2140               Make_Component_Definition (Loc,
2141                 Subtype_Indication => New_Occurrence_Of (Act_T, Loc)));
2142          end;
2143       end if;
2144
2145       Set_Original_Record_Component (Id, Id);
2146
2147       if Has_Aspects (N) then
2148          Analyze_Aspect_Specifications (N, Id);
2149       end if;
2150
2151       Analyze_Dimension (N);
2152    end Analyze_Component_Declaration;
2153
2154    --------------------------
2155    -- Analyze_Declarations --
2156    --------------------------
2157
2158    procedure Analyze_Declarations (L : List_Id) is
2159       Decl : Node_Id;
2160
2161       procedure Adjust_Decl;
2162       --  Adjust Decl not to include implicit label declarations, since these
2163       --  have strange Sloc values that result in elaboration check problems.
2164       --  (They have the sloc of the label as found in the source, and that
2165       --  is ahead of the current declarative part).
2166
2167       procedure Handle_Late_Controlled_Primitive (Body_Decl : Node_Id);
2168       --  Determine whether Body_Decl denotes the body of a late controlled
2169       --  primitive (either Initialize, Adjust or Finalize). If this is the
2170       --  case, add a proper spec if the body lacks one. The spec is inserted
2171       --  before Body_Decl and immedately analyzed.
2172
2173       procedure Remove_Visible_Refinements (Spec_Id : Entity_Id);
2174       --  Spec_Id is the entity of a package that may define abstract states.
2175       --  If the states have visible refinement, remove the visibility of each
2176       --  constituent at the end of the package body declarations.
2177
2178       -----------------
2179       -- Adjust_Decl --
2180       -----------------
2181
2182       procedure Adjust_Decl is
2183       begin
2184          while Present (Prev (Decl))
2185            and then Nkind (Decl) = N_Implicit_Label_Declaration
2186          loop
2187             Prev (Decl);
2188          end loop;
2189       end Adjust_Decl;
2190
2191       --------------------------------------
2192       -- Handle_Late_Controlled_Primitive --
2193       --------------------------------------
2194
2195       procedure Handle_Late_Controlled_Primitive (Body_Decl : Node_Id) is
2196          Body_Spec : constant Node_Id    := Specification (Body_Decl);
2197          Body_Id   : constant Entity_Id  := Defining_Entity (Body_Spec);
2198          Loc       : constant Source_Ptr := Sloc (Body_Id);
2199          Params    : constant List_Id    :=
2200                        Parameter_Specifications (Body_Spec);
2201          Spec      : Node_Id;
2202          Spec_Id   : Entity_Id;
2203          Typ       : Node_Id;
2204
2205       begin
2206          --  Consider only procedure bodies whose name matches one of the three
2207          --  controlled primitives.
2208
2209          if Nkind (Body_Spec) /= N_Procedure_Specification
2210            or else not Nam_In (Chars (Body_Id), Name_Adjust,
2211                                                 Name_Finalize,
2212                                                 Name_Initialize)
2213          then
2214             return;
2215
2216          --  A controlled primitive must have exactly one formal which is not
2217          --  an anonymous access type.
2218
2219          elsif List_Length (Params) /= 1 then
2220             return;
2221          end if;
2222
2223          Typ := Parameter_Type (First (Params));
2224
2225          if Nkind (Typ) = N_Access_Definition then
2226             return;
2227          end if;
2228
2229          Find_Type (Typ);
2230
2231          --  The type of the formal must be derived from [Limited_]Controlled
2232
2233          if not Is_Controlled (Entity (Typ)) then
2234             return;
2235          end if;
2236
2237          --  Check whether a specification exists for this body. We do not
2238          --  analyze the spec of the body in full, because it will be analyzed
2239          --  again when the body is properly analyzed, and we cannot create
2240          --  duplicate entries in the formals chain. We look for an explicit
2241          --  specification because the body may be an overriding operation and
2242          --  an inherited spec may be present.
2243
2244          Spec_Id := Current_Entity (Body_Id);
2245
2246          while Present (Spec_Id) loop
2247             if Ekind_In (Spec_Id, E_Procedure, E_Generic_Procedure)
2248               and then Scope (Spec_Id) = Current_Scope
2249               and then Present (First_Formal (Spec_Id))
2250               and then No (Next_Formal (First_Formal (Spec_Id)))
2251               and then Etype (First_Formal (Spec_Id)) = Entity (Typ)
2252               and then Comes_From_Source (Spec_Id)
2253             then
2254                return;
2255             end if;
2256
2257             Spec_Id := Homonym (Spec_Id);
2258          end loop;
2259
2260          --  At this point the body is known to be a late controlled primitive.
2261          --  Generate a matching spec and insert it before the body. Note the
2262          --  use of Copy_Separate_Tree - we want an entirely separate semantic
2263          --  tree in this case.
2264
2265          Spec := Copy_Separate_Tree (Body_Spec);
2266
2267          --  Ensure that the subprogram declaration does not inherit the null
2268          --  indicator from the body as we now have a proper spec/body pair.
2269
2270          Set_Null_Present (Spec, False);
2271
2272          Insert_Before_And_Analyze (Body_Decl,
2273            Make_Subprogram_Declaration (Loc, Specification => Spec));
2274       end Handle_Late_Controlled_Primitive;
2275
2276       --------------------------------
2277       -- Remove_Visible_Refinements --
2278       --------------------------------
2279
2280       procedure Remove_Visible_Refinements (Spec_Id : Entity_Id) is
2281          State_Elmt : Elmt_Id;
2282       begin
2283          if Present (Abstract_States (Spec_Id)) then
2284             State_Elmt := First_Elmt (Abstract_States (Spec_Id));
2285             while Present (State_Elmt) loop
2286                Set_Has_Visible_Refinement (Node (State_Elmt), False);
2287                Next_Elmt (State_Elmt);
2288             end loop;
2289          end if;
2290       end Remove_Visible_Refinements;
2291
2292       --  Local variables
2293
2294       Context     : Node_Id   := Empty;
2295       Freeze_From : Entity_Id := Empty;
2296       Next_Decl   : Node_Id;
2297
2298       Body_Seen : Boolean := False;
2299       --  Flag set when the first body [stub] is encountered
2300
2301    --  Start of processing for Analyze_Declarations
2302
2303    begin
2304       if Restriction_Check_Required (SPARK_05) then
2305          Check_Later_Vs_Basic_Declarations (L, During_Parsing => False);
2306       end if;
2307
2308       Decl := First (L);
2309       while Present (Decl) loop
2310
2311          --  Package spec cannot contain a package declaration in SPARK
2312
2313          if Nkind (Decl) = N_Package_Declaration
2314            and then Nkind (Parent (L)) = N_Package_Specification
2315          then
2316             Check_SPARK_05_Restriction
2317               ("package specification cannot contain a package declaration",
2318                Decl);
2319          end if;
2320
2321          --  Complete analysis of declaration
2322
2323          Analyze (Decl);
2324          Next_Decl := Next (Decl);
2325
2326          if No (Freeze_From) then
2327             Freeze_From := First_Entity (Current_Scope);
2328          end if;
2329
2330          --  At the end of a declarative part, freeze remaining entities
2331          --  declared in it. The end of the visible declarations of package
2332          --  specification is not the end of a declarative part if private
2333          --  declarations are present. The end of a package declaration is a
2334          --  freezing point only if it a library package. A task definition or
2335          --  protected type definition is not a freeze point either. Finally,
2336          --  we do not freeze entities in generic scopes, because there is no
2337          --  code generated for them and freeze nodes will be generated for
2338          --  the instance.
2339
2340          --  The end of a package instantiation is not a freeze point, but
2341          --  for now we make it one, because the generic body is inserted
2342          --  (currently) immediately after. Generic instantiations will not
2343          --  be a freeze point once delayed freezing of bodies is implemented.
2344          --  (This is needed in any case for early instantiations ???).
2345
2346          if No (Next_Decl) then
2347             if Nkind_In (Parent (L), N_Component_List,
2348                                      N_Task_Definition,
2349                                      N_Protected_Definition)
2350             then
2351                null;
2352
2353             elsif Nkind (Parent (L)) /= N_Package_Specification then
2354                if Nkind (Parent (L)) = N_Package_Body then
2355                   Freeze_From := First_Entity (Current_Scope);
2356                end if;
2357
2358                --  There may have been several freezing points previously,
2359                --  for example object declarations or subprogram bodies, but
2360                --  at the end of a declarative part we check freezing from
2361                --  the beginning, even though entities may already be frozen,
2362                --  in order to perform visibility checks on delayed aspects.
2363
2364                Adjust_Decl;
2365                Freeze_All (First_Entity (Current_Scope), Decl);
2366                Freeze_From := Last_Entity (Current_Scope);
2367
2368             elsif Scope (Current_Scope) /= Standard_Standard
2369               and then not Is_Child_Unit (Current_Scope)
2370               and then No (Generic_Parent (Parent (L)))
2371             then
2372                null;
2373
2374             elsif L /= Visible_Declarations (Parent (L))
2375                or else No (Private_Declarations (Parent (L)))
2376                or else Is_Empty_List (Private_Declarations (Parent (L)))
2377             then
2378                Adjust_Decl;
2379                Freeze_All (First_Entity (Current_Scope), Decl);
2380                Freeze_From := Last_Entity (Current_Scope);
2381
2382             --  At the end of the visible declarations the expressions in
2383             --  aspects of all entities declared so far must be resolved.
2384             --  The entities themselves might be frozen later, and the
2385             --  generated pragmas and attribute definition clauses analyzed
2386             --  in full at that point, but name resolution must take place
2387             --  now.
2388             --  In addition to being the proper semantics, this is mandatory
2389             --  within generic units, because global name capture requires
2390             --  those expressions to be analyzed, given that the generated
2391             --  pragmas do not appear in the original generic tree.
2392
2393             elsif Serious_Errors_Detected = 0 then
2394                declare
2395                   E : Entity_Id;
2396
2397                begin
2398                   E := First_Entity (Current_Scope);
2399                   while Present (E) loop
2400                      Resolve_Aspect_Expressions (E);
2401                      Next_Entity (E);
2402                   end loop;
2403                end;
2404             end if;
2405
2406          --  If next node is a body then freeze all types before the body.
2407          --  An exception occurs for some expander-generated bodies. If these
2408          --  are generated at places where in general language rules would not
2409          --  allow a freeze point, then we assume that the expander has
2410          --  explicitly checked that all required types are properly frozen,
2411          --  and we do not cause general freezing here. This special circuit
2412          --  is used when the encountered body is marked as having already
2413          --  been analyzed.
2414
2415          --  In all other cases (bodies that come from source, and expander
2416          --  generated bodies that have not been analyzed yet), freeze all
2417          --  types now. Note that in the latter case, the expander must take
2418          --  care to attach the bodies at a proper place in the tree so as to
2419          --  not cause unwanted freezing at that point.
2420
2421          elsif not Analyzed (Next_Decl) and then Is_Body (Next_Decl) then
2422
2423             --  When a controlled type is frozen, the expander generates stream
2424             --  and controlled type support routines. If the freeze is caused
2425             --  by the stand alone body of Initialize, Adjust and Finalize, the
2426             --  expander will end up using the wrong version of these routines
2427             --  as the body has not been processed yet. To remedy this, detect
2428             --  a late controlled primitive and create a proper spec for it.
2429             --  This ensures that the primitive will override its inherited
2430             --  counterpart before the freeze takes place.
2431
2432             --  If the declaration we just processed is a body, do not attempt
2433             --  to examine Next_Decl as the late primitive idiom can only apply
2434             --  to the first encountered body.
2435
2436             --  The spec of the late primitive is not generated in ASIS mode to
2437             --  ensure a consistent list of primitives that indicates the true
2438             --  semantic structure of the program (which is not relevant when
2439             --  generating executable code.
2440
2441             --  ??? a cleaner approach may be possible and/or this solution
2442             --  could be extended to general-purpose late primitives, TBD.
2443
2444             if not ASIS_Mode and then not Body_Seen and then not Is_Body (Decl)
2445             then
2446                Body_Seen := True;
2447
2448                if Nkind (Next_Decl) = N_Subprogram_Body then
2449                   Handle_Late_Controlled_Primitive (Next_Decl);
2450                end if;
2451             end if;
2452
2453             Adjust_Decl;
2454             Freeze_All (Freeze_From, Decl);
2455             Freeze_From := Last_Entity (Current_Scope);
2456          end if;
2457
2458          Decl := Next_Decl;
2459       end loop;
2460
2461       --  Analyze the contracts of packages and their bodies
2462
2463       if Present (L) then
2464          Context := Parent (L);
2465
2466          if Nkind (Context) = N_Package_Specification then
2467
2468             --  When a package has private declarations, its contract must be
2469             --  analyzed at the end of the said declarations. This way both the
2470             --  analysis and freeze actions are properly synchronized in case
2471             --  of private type use within the contract.
2472
2473             if L = Private_Declarations (Context) then
2474                Analyze_Package_Contract (Defining_Entity (Context));
2475
2476                --  Build the bodies of the default initial condition procedures
2477                --  for all types subject to pragma Default_Initial_Condition.
2478                --  From a purely Ada stand point, this is a freezing activity,
2479                --  however freezing is not available under GNATprove_Mode. To
2480                --  accomodate both scenarios, the bodies are build at the end
2481                --  of private declaration analysis.
2482
2483                Build_Default_Init_Cond_Procedure_Bodies (L);
2484
2485             --  Otherwise the contract is analyzed at the end of the visible
2486             --  declarations.
2487
2488             elsif L = Visible_Declarations (Context)
2489               and then No (Private_Declarations (Context))
2490             then
2491                Analyze_Package_Contract (Defining_Entity (Context));
2492             end if;
2493
2494          elsif Nkind (Context) = N_Package_Body then
2495             Analyze_Package_Body_Contract (Defining_Entity (Context));
2496          end if;
2497
2498          --  Analyze the contracts of eligible constructs (see below) due to
2499          --  the delayed visibility needs of their aspects and pragmas.
2500
2501          Decl := First (L);
2502          while Present (Decl) loop
2503
2504             --  Entry or subprogram declarations
2505
2506             if Nkind_In (Decl, N_Abstract_Subprogram_Declaration,
2507                                N_Entry_Declaration,
2508                                N_Generic_Subprogram_Declaration,
2509                                N_Subprogram_Declaration)
2510             then
2511                Analyze_Entry_Or_Subprogram_Contract (Defining_Entity (Decl));
2512
2513             --  Entry or subprogram bodies
2514
2515             elsif Nkind_In (Decl, N_Entry_Body, N_Subprogram_Body) then
2516                Analyze_Entry_Or_Subprogram_Body_Contract
2517                  (Defining_Entity (Decl));
2518
2519             --  Objects
2520
2521             elsif Nkind (Decl) = N_Object_Declaration then
2522                Analyze_Object_Contract (Defining_Entity (Decl));
2523
2524             --  Protected untis
2525
2526             elsif Nkind_In (Decl, N_Protected_Type_Declaration,
2527                                   N_Single_Protected_Declaration)
2528             then
2529                Analyze_Protected_Contract (Defining_Entity (Decl));
2530
2531             --  Subprogram body stubs
2532
2533             elsif Nkind (Decl) = N_Subprogram_Body_Stub then
2534                Analyze_Subprogram_Body_Stub_Contract (Defining_Entity (Decl));
2535
2536             --  Task units
2537
2538             elsif Nkind_In (Decl, N_Single_Task_Declaration,
2539                                   N_Task_Type_Declaration)
2540             then
2541                Analyze_Task_Contract (Defining_Entity (Decl));
2542             end if;
2543
2544             Next (Decl);
2545          end loop;
2546
2547          if Nkind (Context) = N_Package_Body then
2548
2549             --  Ensure that all abstract states and objects declared in the
2550             --  state space of a package body are utilized as constituents.
2551
2552             Check_Unused_Body_States (Defining_Entity (Context));
2553
2554             --  State refinements are visible upto the end the of the package
2555             --  body declarations. Hide the state refinements from visibility
2556             --  to restore the original state conditions.
2557
2558             Remove_Visible_Refinements (Corresponding_Spec (Context));
2559          end if;
2560       end if;
2561    end Analyze_Declarations;
2562
2563    -----------------------------------
2564    -- Analyze_Full_Type_Declaration --
2565    -----------------------------------
2566
2567    procedure Analyze_Full_Type_Declaration (N : Node_Id) is
2568       Def    : constant Node_Id   := Type_Definition (N);
2569       Def_Id : constant Entity_Id := Defining_Identifier (N);
2570       T      : Entity_Id;
2571       Prev   : Entity_Id;
2572
2573       Is_Remote : constant Boolean :=
2574                     (Is_Remote_Types (Current_Scope)
2575                        or else Is_Remote_Call_Interface (Current_Scope))
2576                       and then not (In_Private_Part (Current_Scope)
2577                                      or else In_Package_Body (Current_Scope));
2578
2579       procedure Check_Nonoverridable_Aspects;
2580       --  Apply the rule in RM 13.1.1(18.4/4) on iterator aspects that cannot
2581       --  be overridden, and can only be confirmed on derivation.
2582
2583       procedure Check_Ops_From_Incomplete_Type;
2584       --  If there is a tagged incomplete partial view of the type, traverse
2585       --  the primitives of the incomplete view and change the type of any
2586       --  controlling formals and result to indicate the full view. The
2587       --  primitives will be added to the full type's primitive operations
2588       --  list later in Sem_Disp.Check_Operation_From_Incomplete_Type (which
2589       --  is called from Process_Incomplete_Dependents).
2590
2591       ----------------------------------
2592       -- Check_Nonoverridable_Aspects --
2593       ----------------------------------
2594
2595       procedure Check_Nonoverridable_Aspects is
2596          Prev_Aspects   : constant List_Id :=
2597                             Aspect_Specifications (Parent (Def_Id));
2598          Par_Type       : Entity_Id;
2599
2600          function Has_Aspect_Spec
2601            (Specs : List_Id;
2602             Aspect_Name : Name_Id) return Boolean;
2603          --  Check whether a list of aspect specifications includes an entry
2604          --  for a specific aspect. The list is either that of a partial or
2605          --  a full view.
2606
2607          ---------------------
2608          -- Has_Aspect_Spec --
2609          ---------------------
2610
2611          function Has_Aspect_Spec
2612            (Specs : List_Id;
2613             Aspect_Name : Name_Id) return Boolean
2614          is
2615             Spec : Node_Id;
2616          begin
2617             Spec := First (Specs);
2618             while Present (Spec) loop
2619                if Chars (Identifier (Spec)) = Aspect_Name then
2620                   return True;
2621                end if;
2622                Next (Spec);
2623             end loop;
2624             return False;
2625          end Has_Aspect_Spec;
2626
2627       --  Start of processing for Check_Nonoverridable_Aspects
2628
2629       begin
2630
2631          --  Get parent type of derived type. Note that Prev is the entity
2632          --  in the partial declaration, but its contents are now those of
2633          --  full view, while Def_Id reflects the partial view.
2634
2635          if Is_Private_Type (Def_Id) then
2636             Par_Type := Etype (Full_View (Def_Id));
2637          else
2638             Par_Type := Etype (Def_Id);
2639          end if;
2640
2641          --  If there is an inherited Implicit_Dereference, verify that it is
2642          --  made explicit in the partial view.
2643
2644          if Has_Discriminants (Base_Type (Par_Type))
2645            and then Nkind (Parent (Prev)) = N_Full_Type_Declaration
2646            and then Present (Discriminant_Specifications (Parent (Prev)))
2647            and then Present (Get_Reference_Discriminant (Par_Type))
2648          then
2649             if
2650               not Has_Aspect_Spec (Prev_Aspects, Name_Implicit_Dereference)
2651             then
2652                Error_Msg_N
2653                  ("type does not inherit implicit dereference", Prev);
2654
2655             else
2656                --  If one of the views has the aspect specified, verify that it
2657                --  is consistent with that of the parent.
2658
2659                declare
2660                   Par_Discr : constant Entity_Id :=
2661                                 Get_Reference_Discriminant (Par_Type);
2662                   Cur_Discr : constant Entity_Id :=
2663                                 Get_Reference_Discriminant (Prev);
2664                begin
2665                   if Corresponding_Discriminant (Cur_Discr) /= Par_Discr then
2666                      Error_Msg_N ("aspect incosistent with that of parent", N);
2667                   end if;
2668                end;
2669             end if;
2670          end if;
2671
2672          --  TBD : other nonoverridable aspects.
2673       end Check_Nonoverridable_Aspects;
2674
2675       ------------------------------------
2676       -- Check_Ops_From_Incomplete_Type --
2677       ------------------------------------
2678
2679       procedure Check_Ops_From_Incomplete_Type is
2680          Elmt   : Elmt_Id;
2681          Formal : Entity_Id;
2682          Op     : Entity_Id;
2683
2684       begin
2685          if Prev /= T
2686            and then Ekind (Prev) = E_Incomplete_Type
2687            and then Is_Tagged_Type (Prev)
2688            and then Is_Tagged_Type (T)
2689          then
2690             Elmt := First_Elmt (Primitive_Operations (Prev));
2691             while Present (Elmt) loop
2692                Op := Node (Elmt);
2693
2694                Formal := First_Formal (Op);
2695                while Present (Formal) loop
2696                   if Etype (Formal) = Prev then
2697                      Set_Etype (Formal, T);
2698                   end if;
2699
2700                   Next_Formal (Formal);
2701                end loop;
2702
2703                if Etype (Op) = Prev then
2704                   Set_Etype (Op, T);
2705                end if;
2706
2707                Next_Elmt (Elmt);
2708             end loop;
2709          end if;
2710       end Check_Ops_From_Incomplete_Type;
2711
2712    --  Start of processing for Analyze_Full_Type_Declaration
2713
2714    begin
2715       Prev := Find_Type_Name (N);
2716
2717       --  The full view, if present, now points to the current type. If there
2718       --  is an incomplete partial view, set a link to it, to simplify the
2719       --  retrieval of primitive operations of the type.
2720
2721       --  Ada 2005 (AI-50217): If the type was previously decorated when
2722       --  imported through a LIMITED WITH clause, it appears as incomplete
2723       --  but has no full view.
2724
2725       if Ekind (Prev) = E_Incomplete_Type
2726         and then Present (Full_View (Prev))
2727       then
2728          T := Full_View (Prev);
2729          Set_Incomplete_View (N, Parent (Prev));
2730       else
2731          T := Prev;
2732       end if;
2733
2734       Set_Is_Pure (T, Is_Pure (Current_Scope));
2735
2736       --  We set the flag Is_First_Subtype here. It is needed to set the
2737       --  corresponding flag for the Implicit class-wide-type created
2738       --  during tagged types processing.
2739
2740       Set_Is_First_Subtype (T, True);
2741
2742       --  Only composite types other than array types are allowed to have
2743       --  discriminants.
2744
2745       case Nkind (Def) is
2746
2747          --  For derived types, the rule will be checked once we've figured
2748          --  out the parent type.
2749
2750          when N_Derived_Type_Definition =>
2751             null;
2752
2753          --  For record types, discriminants are allowed, unless we are in
2754          --  SPARK.
2755
2756          when N_Record_Definition =>
2757             if Present (Discriminant_Specifications (N)) then
2758                Check_SPARK_05_Restriction
2759                  ("discriminant type is not allowed",
2760                   Defining_Identifier
2761                     (First (Discriminant_Specifications (N))));
2762             end if;
2763
2764          when others =>
2765             if Present (Discriminant_Specifications (N)) then
2766                Error_Msg_N
2767                  ("elementary or array type cannot have discriminants",
2768                   Defining_Identifier
2769                     (First (Discriminant_Specifications (N))));
2770             end if;
2771       end case;
2772
2773       --  Elaborate the type definition according to kind, and generate
2774       --  subsidiary (implicit) subtypes where needed. We skip this if it was
2775       --  already done (this happens during the reanalysis that follows a call
2776       --  to the high level optimizer).
2777
2778       if not Analyzed (T) then
2779          Set_Analyzed (T);
2780
2781          case Nkind (Def) is
2782             when N_Access_To_Subprogram_Definition =>
2783                Access_Subprogram_Declaration (T, Def);
2784
2785                --  If this is a remote access to subprogram, we must create the
2786                --  equivalent fat pointer type, and related subprograms.
2787
2788                if Is_Remote then
2789                   Process_Remote_AST_Declaration (N);
2790                end if;
2791
2792                --  Validate categorization rule against access type declaration
2793                --  usually a violation in Pure unit, Shared_Passive unit.
2794
2795                Validate_Access_Type_Declaration (T, N);
2796
2797             when N_Access_To_Object_Definition =>
2798                Access_Type_Declaration (T, Def);
2799
2800                --  Validate categorization rule against access type declaration
2801                --  usually a violation in Pure unit, Shared_Passive unit.
2802
2803                Validate_Access_Type_Declaration (T, N);
2804
2805                --  If we are in a Remote_Call_Interface package and define a
2806                --  RACW, then calling stubs and specific stream attributes
2807                --  must be added.
2808
2809                if Is_Remote
2810                  and then Is_Remote_Access_To_Class_Wide_Type (Def_Id)
2811                then
2812                   Add_RACW_Features (Def_Id);
2813                end if;
2814
2815             when N_Array_Type_Definition =>
2816                Array_Type_Declaration (T, Def);
2817
2818             when N_Derived_Type_Definition =>
2819                Derived_Type_Declaration (T, N, T /= Def_Id);
2820
2821             when N_Enumeration_Type_Definition =>
2822                Enumeration_Type_Declaration (T, Def);
2823
2824             when N_Floating_Point_Definition =>
2825                Floating_Point_Type_Declaration (T, Def);
2826
2827             when N_Decimal_Fixed_Point_Definition =>
2828                Decimal_Fixed_Point_Type_Declaration (T, Def);
2829
2830             when N_Ordinary_Fixed_Point_Definition =>
2831                Ordinary_Fixed_Point_Type_Declaration (T, Def);
2832
2833             when N_Signed_Integer_Type_Definition =>
2834                Signed_Integer_Type_Declaration (T, Def);
2835
2836             when N_Modular_Type_Definition =>
2837                Modular_Type_Declaration (T, Def);
2838
2839             when N_Record_Definition =>
2840                Record_Type_Declaration (T, N, Prev);
2841
2842             --  If declaration has a parse error, nothing to elaborate.
2843
2844             when N_Error =>
2845                null;
2846
2847             when others =>
2848                raise Program_Error;
2849
2850          end case;
2851       end if;
2852
2853       if Etype (T) = Any_Type then
2854          return;
2855       end if;
2856
2857       --  Controlled type is not allowed in SPARK
2858
2859       if Is_Visibly_Controlled (T) then
2860          Check_SPARK_05_Restriction ("controlled type is not allowed", N);
2861       end if;
2862
2863       --  A type declared within a Ghost region is automatically Ghost
2864       --  (SPARK RM 6.9(2)).
2865
2866       if Ghost_Mode > None then
2867          Set_Is_Ghost_Entity (T);
2868       end if;
2869
2870       --  Some common processing for all types
2871
2872       Set_Depends_On_Private (T, Has_Private_Component (T));
2873       Check_Ops_From_Incomplete_Type;
2874
2875       --  Both the declared entity, and its anonymous base type if one was
2876       --  created, need freeze nodes allocated.
2877
2878       declare
2879          B : constant Entity_Id := Base_Type (T);
2880
2881       begin
2882          --  In the case where the base type differs from the first subtype, we
2883          --  pre-allocate a freeze node, and set the proper link to the first
2884          --  subtype. Freeze_Entity will use this preallocated freeze node when
2885          --  it freezes the entity.
2886
2887          --  This does not apply if the base type is a generic type, whose
2888          --  declaration is independent of the current derived definition.
2889
2890          if B /= T and then not Is_Generic_Type (B) then
2891             Ensure_Freeze_Node (B);
2892             Set_First_Subtype_Link (Freeze_Node (B), T);
2893          end if;
2894
2895          --  A type that is imported through a limited_with clause cannot
2896          --  generate any code, and thus need not be frozen. However, an access
2897          --  type with an imported designated type needs a finalization list,
2898          --  which may be referenced in some other package that has non-limited
2899          --  visibility on the designated type. Thus we must create the
2900          --  finalization list at the point the access type is frozen, to
2901          --  prevent unsatisfied references at link time.
2902
2903          if not From_Limited_With (T) or else Is_Access_Type (T) then
2904             Set_Has_Delayed_Freeze (T);
2905          end if;
2906       end;
2907
2908       --  Case where T is the full declaration of some private type which has
2909       --  been swapped in Defining_Identifier (N).
2910
2911       if T /= Def_Id and then Is_Private_Type (Def_Id) then
2912          Process_Full_View (N, T, Def_Id);
2913
2914          --  Record the reference. The form of this is a little strange, since
2915          --  the full declaration has been swapped in. So the first parameter
2916          --  here represents the entity to which a reference is made which is
2917          --  the "real" entity, i.e. the one swapped in, and the second
2918          --  parameter provides the reference location.
2919
2920          --  Also, we want to kill Has_Pragma_Unreferenced temporarily here
2921          --  since we don't want a complaint about the full type being an
2922          --  unwanted reference to the private type
2923
2924          declare
2925             B : constant Boolean := Has_Pragma_Unreferenced (T);
2926          begin
2927             Set_Has_Pragma_Unreferenced (T, False);
2928             Generate_Reference (T, T, 'c');
2929             Set_Has_Pragma_Unreferenced (T, B);
2930          end;
2931
2932          Set_Completion_Referenced (Def_Id);
2933
2934       --  For completion of incomplete type, process incomplete dependents
2935       --  and always mark the full type as referenced (it is the incomplete
2936       --  type that we get for any real reference).
2937
2938       elsif Ekind (Prev) = E_Incomplete_Type then
2939          Process_Incomplete_Dependents (N, T, Prev);
2940          Generate_Reference (Prev, Def_Id, 'c');
2941          Set_Completion_Referenced (Def_Id);
2942
2943       --  If not private type or incomplete type completion, this is a real
2944       --  definition of a new entity, so record it.
2945
2946       else
2947          Generate_Definition (Def_Id);
2948       end if;
2949
2950       --  Propagate any pending access types whose finalization masters need to
2951       --  be fully initialized from the partial to the full view. Guard against
2952       --  an illegal full view that remains unanalyzed.
2953
2954       if Is_Type (Def_Id) and then Is_Incomplete_Or_Private_Type (Prev) then
2955          Set_Pending_Access_Types (Def_Id, Pending_Access_Types (Prev));
2956       end if;
2957
2958       if Chars (Scope (Def_Id)) = Name_System
2959         and then Chars (Def_Id) = Name_Address
2960         and then Is_Predefined_File_Name (Unit_File_Name (Get_Source_Unit (N)))
2961       then
2962          Set_Is_Descendent_Of_Address (Def_Id);
2963          Set_Is_Descendent_Of_Address (Base_Type (Def_Id));
2964          Set_Is_Descendent_Of_Address (Prev);
2965       end if;
2966
2967       Set_Optimize_Alignment_Flags (Def_Id);
2968       Check_Eliminated (Def_Id);
2969
2970       --  If the declaration is a completion and aspects are present, apply
2971       --  them to the entity for the type which is currently the partial
2972       --  view, but which is the one that will be frozen.
2973
2974       if Has_Aspects (N) then
2975
2976          --  In most cases the partial view is a private type, and both views
2977          --  appear in different declarative parts. In the unusual case where
2978          --  the partial view is incomplete, perform the analysis on the
2979          --  full view, to prevent freezing anomalies with the corresponding
2980          --  class-wide type, which otherwise might be frozen before the
2981          --  dispatch table is built.
2982
2983          if Prev /= Def_Id
2984            and then Ekind (Prev) /= E_Incomplete_Type
2985          then
2986             Analyze_Aspect_Specifications (N, Prev);
2987
2988          --  Normal case
2989
2990          else
2991             Analyze_Aspect_Specifications (N, Def_Id);
2992          end if;
2993       end if;
2994
2995       if Is_Derived_Type (Prev)
2996         and then Def_Id /= Prev
2997       then
2998          Check_Nonoverridable_Aspects;
2999       end if;
3000    end Analyze_Full_Type_Declaration;
3001
3002    ----------------------------------
3003    -- Analyze_Incomplete_Type_Decl --
3004    ----------------------------------
3005
3006    procedure Analyze_Incomplete_Type_Decl (N : Node_Id) is
3007       F : constant Boolean := Is_Pure (Current_Scope);
3008       T : Entity_Id;
3009
3010    begin
3011       Check_SPARK_05_Restriction ("incomplete type is not allowed", N);
3012
3013       Generate_Definition (Defining_Identifier (N));
3014
3015       --  Process an incomplete declaration. The identifier must not have been
3016       --  declared already in the scope. However, an incomplete declaration may
3017       --  appear in the private part of a package, for a private type that has
3018       --  already been declared.
3019
3020       --  In this case, the discriminants (if any) must match
3021
3022       T := Find_Type_Name (N);
3023
3024       Set_Ekind (T, E_Incomplete_Type);
3025       Init_Size_Align (T);
3026       Set_Is_First_Subtype (T, True);
3027       Set_Etype (T, T);
3028
3029       --  An incomplete type declared within a Ghost region is automatically
3030       --  Ghost (SPARK RM 6.9(2)).
3031
3032       if Ghost_Mode > None then
3033          Set_Is_Ghost_Entity (T);
3034       end if;
3035
3036       --  Ada 2005 (AI-326): Minimum decoration to give support to tagged
3037       --  incomplete types.
3038
3039       if Tagged_Present (N) then
3040          Set_Is_Tagged_Type (T, True);
3041          Set_No_Tagged_Streams_Pragma (T, No_Tagged_Streams);
3042          Make_Class_Wide_Type (T);
3043          Set_Direct_Primitive_Operations (T, New_Elmt_List);
3044       end if;
3045
3046       Set_Stored_Constraint (T, No_Elist);
3047
3048       if Present (Discriminant_Specifications (N)) then
3049          Push_Scope (T);
3050          Process_Discriminants (N);
3051          End_Scope;
3052       end if;
3053
3054       --  If the type has discriminants, nontrivial subtypes may be declared
3055       --  before the full view of the type. The full views of those subtypes
3056       --  will be built after the full view of the type.
3057
3058       Set_Private_Dependents (T, New_Elmt_List);
3059       Set_Is_Pure            (T, F);
3060    end Analyze_Incomplete_Type_Decl;
3061
3062    -----------------------------------
3063    -- Analyze_Interface_Declaration --
3064    -----------------------------------
3065
3066    procedure Analyze_Interface_Declaration (T : Entity_Id; Def : Node_Id) is
3067       CW : constant Entity_Id := Class_Wide_Type (T);
3068
3069    begin
3070       Set_Is_Tagged_Type (T);
3071       Set_No_Tagged_Streams_Pragma (T, No_Tagged_Streams);
3072
3073       Set_Is_Limited_Record (T, Limited_Present (Def)
3074                                   or else Task_Present (Def)
3075                                   or else Protected_Present (Def)
3076                                   or else Synchronized_Present (Def));
3077
3078       --  Type is abstract if full declaration carries keyword, or if previous
3079       --  partial view did.
3080
3081       Set_Is_Abstract_Type (T);
3082       Set_Is_Interface (T);
3083
3084       --  Type is a limited interface if it includes the keyword limited, task,
3085       --  protected, or synchronized.
3086
3087       Set_Is_Limited_Interface
3088         (T, Limited_Present (Def)
3089               or else Protected_Present (Def)
3090               or else Synchronized_Present (Def)
3091               or else Task_Present (Def));
3092
3093       Set_Interfaces (T, New_Elmt_List);
3094       Set_Direct_Primitive_Operations (T, New_Elmt_List);
3095
3096       --  Complete the decoration of the class-wide entity if it was already
3097       --  built (i.e. during the creation of the limited view)
3098
3099       if Present (CW) then
3100          Set_Is_Interface (CW);
3101          Set_Is_Limited_Interface      (CW, Is_Limited_Interface (T));
3102       end if;
3103
3104       --  Check runtime support for synchronized interfaces
3105
3106       if (Is_Task_Interface (T)
3107            or else Is_Protected_Interface (T)
3108            or else Is_Synchronized_Interface (T))
3109         and then not RTE_Available (RE_Select_Specific_Data)
3110       then
3111          Error_Msg_CRT ("synchronized interfaces", T);
3112       end if;
3113    end Analyze_Interface_Declaration;
3114
3115    -----------------------------
3116    -- Analyze_Itype_Reference --
3117    -----------------------------
3118
3119    --  Nothing to do. This node is placed in the tree only for the benefit of
3120    --  back end processing, and has no effect on the semantic processing.
3121
3122    procedure Analyze_Itype_Reference (N : Node_Id) is
3123    begin
3124       pragma Assert (Is_Itype (Itype (N)));
3125       null;
3126    end Analyze_Itype_Reference;
3127
3128    --------------------------------
3129    -- Analyze_Number_Declaration --
3130    --------------------------------
3131
3132    procedure Analyze_Number_Declaration (N : Node_Id) is
3133       E     : constant Node_Id   := Expression (N);
3134       Id    : constant Entity_Id := Defining_Identifier (N);
3135       Index : Interp_Index;
3136       It    : Interp;
3137       T     : Entity_Id;
3138
3139    begin
3140       Generate_Definition (Id);
3141       Enter_Name (Id);
3142
3143       --  A number declared within a Ghost region is automatically Ghost
3144       --  (SPARK RM 6.9(2)).
3145
3146       if Ghost_Mode > None then
3147          Set_Is_Ghost_Entity (Id);
3148       end if;
3149
3150       --  This is an optimization of a common case of an integer literal
3151
3152       if Nkind (E) = N_Integer_Literal then
3153          Set_Is_Static_Expression (E, True);
3154          Set_Etype                (E, Universal_Integer);
3155
3156          Set_Etype     (Id, Universal_Integer);
3157          Set_Ekind     (Id, E_Named_Integer);
3158          Set_Is_Frozen (Id, True);
3159          return;
3160       end if;
3161
3162       Set_Is_Pure (Id, Is_Pure (Current_Scope));
3163
3164       --  Process expression, replacing error by integer zero, to avoid
3165       --  cascaded errors or aborts further along in the processing
3166
3167       --  Replace Error by integer zero, which seems least likely to cause
3168       --  cascaded errors.
3169
3170       if E = Error then
3171          Rewrite (E, Make_Integer_Literal (Sloc (E), Uint_0));
3172          Set_Error_Posted (E);
3173       end if;
3174
3175       Analyze (E);
3176
3177       --  Verify that the expression is static and numeric. If
3178       --  the expression is overloaded, we apply the preference
3179       --  rule that favors root numeric types.
3180
3181       if not Is_Overloaded (E) then
3182          T := Etype (E);
3183          if Has_Dynamic_Predicate_Aspect (T) then
3184             Error_Msg_N
3185               ("subtype has dynamic predicate, "
3186                & "not allowed in number declaration", N);
3187          end if;
3188
3189       else
3190          T := Any_Type;
3191
3192          Get_First_Interp (E, Index, It);
3193          while Present (It.Typ) loop
3194             if (Is_Integer_Type (It.Typ) or else Is_Real_Type (It.Typ))
3195               and then (Scope (Base_Type (It.Typ))) = Standard_Standard
3196             then
3197                if T = Any_Type then
3198                   T := It.Typ;
3199
3200                elsif It.Typ = Universal_Real
3201                        or else
3202                      It.Typ = Universal_Integer
3203                then
3204                   --  Choose universal interpretation over any other
3205
3206                   T := It.Typ;
3207                   exit;
3208                end if;
3209             end if;
3210
3211             Get_Next_Interp (Index, It);
3212          end loop;
3213       end if;
3214
3215       if Is_Integer_Type (T)  then
3216          Resolve (E, T);
3217          Set_Etype (Id, Universal_Integer);
3218          Set_Ekind (Id, E_Named_Integer);
3219
3220       elsif Is_Real_Type (T) then
3221
3222          --  Because the real value is converted to universal_real, this is a
3223          --  legal context for a universal fixed expression.
3224
3225          if T = Universal_Fixed then
3226             declare
3227                Loc  : constant Source_Ptr := Sloc (N);
3228                Conv : constant Node_Id := Make_Type_Conversion (Loc,
3229                         Subtype_Mark =>
3230                           New_Occurrence_Of (Universal_Real, Loc),
3231                         Expression => Relocate_Node (E));
3232
3233             begin
3234                Rewrite (E, Conv);
3235                Analyze (E);
3236             end;
3237
3238          elsif T = Any_Fixed then
3239             Error_Msg_N ("illegal context for mixed mode operation", E);
3240
3241             --  Expression is of the form : universal_fixed * integer. Try to
3242             --  resolve as universal_real.
3243
3244             T := Universal_Real;
3245             Set_Etype (E, T);
3246          end if;
3247
3248          Resolve (E, T);
3249          Set_Etype (Id, Universal_Real);
3250          Set_Ekind (Id, E_Named_Real);
3251
3252       else
3253          Wrong_Type (E, Any_Numeric);
3254          Resolve (E, T);
3255
3256          Set_Etype               (Id, T);
3257          Set_Ekind               (Id, E_Constant);
3258          Set_Never_Set_In_Source (Id, True);
3259          Set_Is_True_Constant    (Id, True);
3260          return;
3261       end if;
3262
3263       if Nkind_In (E, N_Integer_Literal, N_Real_Literal) then
3264          Set_Etype (E, Etype (Id));
3265       end if;
3266
3267       if not Is_OK_Static_Expression (E) then
3268          Flag_Non_Static_Expr
3269            ("non-static expression used in number declaration!", E);
3270          Rewrite (E, Make_Integer_Literal (Sloc (N), 1));
3271          Set_Etype (E, Any_Type);
3272       end if;
3273
3274       Analyze_Dimension (N);
3275    end Analyze_Number_Declaration;
3276
3277    --------------------------------
3278    -- Analyze_Object_Declaration --
3279    --------------------------------
3280
3281    procedure Analyze_Object_Declaration (N : Node_Id) is
3282       Loc   : constant Source_Ptr := Sloc (N);
3283       Id    : constant Entity_Id  := Defining_Identifier (N);
3284       Act_T : Entity_Id;
3285       T     : Entity_Id;
3286
3287       E : Node_Id := Expression (N);
3288       --  E is set to Expression (N) throughout this routine. When
3289       --  Expression (N) is modified, E is changed accordingly.
3290
3291       Prev_Entity : Entity_Id := Empty;
3292
3293       function Count_Tasks (T : Entity_Id) return Uint;
3294       --  This function is called when a non-generic library level object of a
3295       --  task type is declared. Its function is to count the static number of
3296       --  tasks declared within the type (it is only called if Has_Task is set
3297       --  for T). As a side effect, if an array of tasks with non-static bounds
3298       --  or a variant record type is encountered, Check_Restriction is called
3299       --  indicating the count is unknown.
3300
3301       function Delayed_Aspect_Present return Boolean;
3302       --  If the declaration has an expression that is an aggregate, and it
3303       --  has aspects that require delayed analysis, the resolution of the
3304       --  aggregate must be deferred to the freeze point of the objet. This
3305       --  special processing was created for address clauses, but it must
3306       --  also apply to Alignment. This must be done before the aspect
3307       --  specifications are analyzed because we must handle the aggregate
3308       --  before the analysis of the object declaration is complete.
3309
3310       --  Any other relevant delayed aspects on object declarations ???
3311
3312       -----------------
3313       -- Count_Tasks --
3314       -----------------
3315
3316       function Count_Tasks (T : Entity_Id) return Uint is
3317          C : Entity_Id;
3318          X : Node_Id;
3319          V : Uint;
3320
3321       begin
3322          if Is_Task_Type (T) then
3323             return Uint_1;
3324
3325          elsif Is_Record_Type (T) then
3326             if Has_Discriminants (T) then
3327                Check_Restriction (Max_Tasks, N);
3328                return Uint_0;
3329
3330             else
3331                V := Uint_0;
3332                C := First_Component (T);
3333                while Present (C) loop
3334                   V := V + Count_Tasks (Etype (C));
3335                   Next_Component (C);
3336                end loop;
3337
3338                return V;
3339             end if;
3340
3341          elsif Is_Array_Type (T) then
3342             X := First_Index (T);
3343             V := Count_Tasks (Component_Type (T));
3344             while Present (X) loop
3345                C := Etype (X);
3346
3347                if not Is_OK_Static_Subtype (C) then
3348                   Check_Restriction (Max_Tasks, N);
3349                   return Uint_0;
3350                else
3351                   V := V * (UI_Max (Uint_0,
3352                                     Expr_Value (Type_High_Bound (C)) -
3353                                     Expr_Value (Type_Low_Bound (C)) + Uint_1));
3354                end if;
3355
3356                Next_Index (X);
3357             end loop;
3358
3359             return V;
3360
3361          else
3362             return Uint_0;
3363          end if;
3364       end Count_Tasks;
3365
3366       ----------------------------
3367       -- Delayed_Aspect_Present --
3368       ----------------------------
3369
3370       function Delayed_Aspect_Present return Boolean is
3371          A    : Node_Id;
3372          A_Id : Aspect_Id;
3373
3374       begin
3375          if Present (Aspect_Specifications (N)) then
3376             A    := First (Aspect_Specifications (N));
3377             A_Id := Get_Aspect_Id (Chars (Identifier (A)));
3378             while Present (A) loop
3379                if A_Id = Aspect_Alignment or else A_Id = Aspect_Address then
3380                   return True;
3381                end if;
3382
3383                Next (A);
3384             end loop;
3385          end if;
3386
3387          return False;
3388       end Delayed_Aspect_Present;
3389
3390       --  Local variables
3391
3392       Save_Ghost_Mode : constant Ghost_Mode_Type := Ghost_Mode;
3393
3394    --  Start of processing for Analyze_Object_Declaration
3395
3396    begin
3397       --  There are three kinds of implicit types generated by an
3398       --  object declaration:
3399
3400       --   1. Those generated by the original Object Definition
3401
3402       --   2. Those generated by the Expression
3403
3404       --   3. Those used to constrain the Object Definition with the
3405       --      expression constraints when the definition is unconstrained.
3406
3407       --  They must be generated in this order to avoid order of elaboration
3408       --  issues. Thus the first step (after entering the name) is to analyze
3409       --  the object definition.
3410
3411       if Constant_Present (N) then
3412          Prev_Entity := Current_Entity_In_Scope (Id);
3413
3414          if Present (Prev_Entity)
3415            and then
3416              --  If the homograph is an implicit subprogram, it is overridden
3417              --  by the current declaration.
3418
3419              ((Is_Overloadable (Prev_Entity)
3420                 and then Is_Inherited_Operation (Prev_Entity))
3421
3422                --  The current object is a discriminal generated for an entry
3423                --  family index. Even though the index is a constant, in this
3424                --  particular context there is no true constant redeclaration.
3425                --  Enter_Name will handle the visibility.
3426
3427                or else
3428                  (Is_Discriminal (Id)
3429                    and then Ekind (Discriminal_Link (Id)) =
3430                                               E_Entry_Index_Parameter)
3431
3432                --  The current object is the renaming for a generic declared
3433                --  within the instance.
3434
3435                or else
3436                  (Ekind (Prev_Entity) = E_Package
3437                    and then Nkind (Parent (Prev_Entity)) =
3438                                                N_Package_Renaming_Declaration
3439                    and then not Comes_From_Source (Prev_Entity)
3440                    and then
3441                      Is_Generic_Instance (Renamed_Entity (Prev_Entity))))
3442          then
3443             Prev_Entity := Empty;
3444          end if;
3445       end if;
3446
3447       --  The object declaration is Ghost when it is subject to pragma Ghost or
3448       --  completes a deferred Ghost constant. Set the mode now to ensure that
3449       --  any nodes generated during analysis and expansion are properly marked
3450       --  as Ghost.
3451
3452       Set_Ghost_Mode (N, Prev_Entity);
3453
3454       if Present (Prev_Entity) then
3455          Constant_Redeclaration (Id, N, T);
3456
3457          Generate_Reference (Prev_Entity, Id, 'c');
3458          Set_Completion_Referenced (Id);
3459
3460          if Error_Posted (N) then
3461
3462             --  Type mismatch or illegal redeclaration, Do not analyze
3463             --  expression to avoid cascaded errors.
3464
3465             T := Find_Type_Of_Object (Object_Definition (N), N);
3466             Set_Etype (Id, T);
3467             Set_Ekind (Id, E_Variable);
3468             goto Leave;
3469          end if;
3470
3471       --  In the normal case, enter identifier at the start to catch premature
3472       --  usage in the initialization expression.
3473
3474       else
3475          Generate_Definition (Id);
3476          Enter_Name (Id);
3477
3478          Mark_Coextensions (N, Object_Definition (N));
3479
3480          T := Find_Type_Of_Object (Object_Definition (N), N);
3481
3482          if Nkind (Object_Definition (N)) = N_Access_Definition
3483            and then Present
3484                       (Access_To_Subprogram_Definition (Object_Definition (N)))
3485            and then Protected_Present
3486                       (Access_To_Subprogram_Definition (Object_Definition (N)))
3487          then
3488             T := Replace_Anonymous_Access_To_Protected_Subprogram (N);
3489          end if;
3490
3491          if Error_Posted (Id) then
3492             Set_Etype (Id, T);
3493             Set_Ekind (Id, E_Variable);
3494             goto Leave;
3495          end if;
3496       end if;
3497
3498       --  Ada 2005 (AI-231): Propagate the null-excluding attribute and carry
3499       --  out some static checks
3500
3501       if Ada_Version >= Ada_2005 and then Can_Never_Be_Null (T) then
3502
3503          --  In case of aggregates we must also take care of the correct
3504          --  initialization of nested aggregates bug this is done at the
3505          --  point of the analysis of the aggregate (see sem_aggr.adb).
3506
3507          if Present (Expression (N))
3508            and then Nkind (Expression (N)) = N_Aggregate
3509          then
3510             null;
3511
3512          else
3513             declare
3514                Save_Typ : constant Entity_Id := Etype (Id);
3515             begin
3516                Set_Etype (Id, T); --  Temp. decoration for static checks
3517                Null_Exclusion_Static_Checks (N);
3518                Set_Etype (Id, Save_Typ);
3519             end;
3520          end if;
3521       end if;
3522
3523       --  Object is marked pure if it is in a pure scope
3524
3525       Set_Is_Pure (Id, Is_Pure (Current_Scope));
3526
3527       --  If deferred constant, make sure context is appropriate. We detect
3528       --  a deferred constant as a constant declaration with no expression.
3529       --  A deferred constant can appear in a package body if its completion
3530       --  is by means of an interface pragma.
3531
3532       if Constant_Present (N) and then No (E) then
3533
3534          --  A deferred constant may appear in the declarative part of the
3535          --  following constructs:
3536
3537          --     blocks
3538          --     entry bodies
3539          --     extended return statements
3540          --     package specs
3541          --     package bodies
3542          --     subprogram bodies
3543          --     task bodies
3544
3545          --  When declared inside a package spec, a deferred constant must be
3546          --  completed by a full constant declaration or pragma Import. In all
3547          --  other cases, the only proper completion is pragma Import. Extended
3548          --  return statements are flagged as invalid contexts because they do
3549          --  not have a declarative part and so cannot accommodate the pragma.
3550
3551          if Ekind (Current_Scope) = E_Return_Statement then
3552             Error_Msg_N
3553               ("invalid context for deferred constant declaration (RM 7.4)",
3554                N);
3555             Error_Msg_N
3556               ("\declaration requires an initialization expression",
3557                 N);
3558             Set_Constant_Present (N, False);
3559
3560          --  In Ada 83, deferred constant must be of private type
3561
3562          elsif not Is_Private_Type (T) then
3563             if Ada_Version = Ada_83 and then Comes_From_Source (N) then
3564                Error_Msg_N
3565                  ("(Ada 83) deferred constant must be private type", N);
3566             end if;
3567          end if;
3568
3569       --  If not a deferred constant, then the object declaration freezes
3570       --  its type, unless the object is of an anonymous type and has delayed
3571       --  aspects. In that case the type is frozen when the object itself is.
3572
3573       else
3574          Check_Fully_Declared (T, N);
3575
3576          if Has_Delayed_Aspects (Id)
3577            and then Is_Array_Type (T)
3578            and then Is_Itype (T)
3579          then
3580             Set_Has_Delayed_Freeze (T);
3581          else
3582             Freeze_Before (N, T);
3583          end if;
3584       end if;
3585
3586       --  If the object was created by a constrained array definition, then
3587       --  set the link in both the anonymous base type and anonymous subtype
3588       --  that are built to represent the array type to point to the object.
3589
3590       if Nkind (Object_Definition (Declaration_Node (Id))) =
3591                         N_Constrained_Array_Definition
3592       then
3593          Set_Related_Array_Object (T, Id);
3594          Set_Related_Array_Object (Base_Type (T), Id);
3595       end if;
3596
3597       --  Special checks for protected objects not at library level
3598
3599       if Is_Protected_Type (T)
3600         and then not Is_Library_Level_Entity (Id)
3601       then
3602          Check_Restriction (No_Local_Protected_Objects, Id);
3603
3604          --  Protected objects with interrupt handlers must be at library level
3605
3606          --  Ada 2005: This test is not needed (and the corresponding clause
3607          --  in the RM is removed) because accessibility checks are sufficient
3608          --  to make handlers not at the library level illegal.
3609
3610          --  AI05-0303: The AI is in fact a binding interpretation, and thus
3611          --  applies to the '95 version of the language as well.
3612
3613          if Has_Interrupt_Handler (T) and then Ada_Version < Ada_95 then
3614             Error_Msg_N
3615               ("interrupt object can only be declared at library level", Id);
3616          end if;
3617       end if;
3618
3619       --  The actual subtype of the object is the nominal subtype, unless
3620       --  the nominal one is unconstrained and obtained from the expression.
3621
3622       Act_T := T;
3623
3624       --  These checks should be performed before the initialization expression
3625       --  is considered, so that the Object_Definition node is still the same
3626       --  as in source code.
3627
3628       --  In SPARK, the nominal subtype is always given by a subtype mark
3629       --  and must not be unconstrained. (The only exception to this is the
3630       --  acceptance of declarations of constants of type String.)
3631
3632       if not Nkind_In (Object_Definition (N), N_Expanded_Name, N_Identifier)
3633       then
3634          Check_SPARK_05_Restriction
3635            ("subtype mark required", Object_Definition (N));
3636
3637       elsif Is_Array_Type (T)
3638         and then not Is_Constrained (T)
3639         and then T /= Standard_String
3640       then
3641          Check_SPARK_05_Restriction
3642            ("subtype mark of constrained type expected",
3643             Object_Definition (N));
3644       end if;
3645
3646       --  There are no aliased objects in SPARK
3647
3648       if Aliased_Present (N) then
3649          Check_SPARK_05_Restriction ("aliased object is not allowed", N);
3650       end if;
3651
3652       --  Process initialization expression if present and not in error
3653
3654       if Present (E) and then E /= Error then
3655
3656          --  Generate an error in case of CPP class-wide object initialization.
3657          --  Required because otherwise the expansion of the class-wide
3658          --  assignment would try to use 'size to initialize the object
3659          --  (primitive that is not available in CPP tagged types).
3660
3661          if Is_Class_Wide_Type (Act_T)
3662            and then
3663              (Is_CPP_Class (Root_Type (Etype (Act_T)))
3664                or else
3665                  (Present (Full_View (Root_Type (Etype (Act_T))))
3666                    and then
3667                      Is_CPP_Class (Full_View (Root_Type (Etype (Act_T))))))
3668          then
3669             Error_Msg_N
3670               ("predefined assignment not available for 'C'P'P tagged types",
3671                E);
3672          end if;
3673
3674          Mark_Coextensions (N, E);
3675          Analyze (E);
3676
3677          --  In case of errors detected in the analysis of the expression,
3678          --  decorate it with the expected type to avoid cascaded errors
3679
3680          if No (Etype (E)) then
3681             Set_Etype (E, T);
3682          end if;
3683
3684          --  If an initialization expression is present, then we set the
3685          --  Is_True_Constant flag. It will be reset if this is a variable
3686          --  and it is indeed modified.
3687
3688          Set_Is_True_Constant (Id, True);
3689
3690          --  If we are analyzing a constant declaration, set its completion
3691          --  flag after analyzing and resolving the expression.
3692
3693          if Constant_Present (N) then
3694             Set_Has_Completion (Id);
3695          end if;
3696
3697          --  Set type and resolve (type may be overridden later on). Note:
3698          --  Ekind (Id) must still be E_Void at this point so that incorrect
3699          --  early usage within E is properly diagnosed.
3700
3701          Set_Etype (Id, T);
3702
3703          --  If the expression is an aggregate we must look ahead to detect
3704          --  the possible presence of an address clause, and defer resolution
3705          --  and expansion of the aggregate to the freeze point of the entity.
3706
3707          --  This is not always legal because the aggregate may contain other
3708          --  references that need freezing, e.g. references to other entities
3709          --  with address clauses. In any case, when compiling with -gnatI the
3710          --  presence of the address clause must be ignored.
3711
3712          if Comes_From_Source (N)
3713            and then Expander_Active
3714            and then Nkind (E) = N_Aggregate
3715            and then
3716              ((Present (Following_Address_Clause (N))
3717                             and then not Ignore_Rep_Clauses)
3718               or else Delayed_Aspect_Present)
3719          then
3720             Set_Etype (E, T);
3721
3722          else
3723             Resolve (E, T);
3724          end if;
3725
3726          --  No further action needed if E is a call to an inlined function
3727          --  which returns an unconstrained type and it has been expanded into
3728          --  a procedure call. In that case N has been replaced by an object
3729          --  declaration without initializing expression and it has been
3730          --  analyzed (see Expand_Inlined_Call).
3731
3732          if Back_End_Inlining
3733            and then Expander_Active
3734            and then Nkind (E) = N_Function_Call
3735            and then Nkind (Name (E)) in N_Has_Entity
3736            and then Is_Inlined (Entity (Name (E)))
3737            and then not Is_Constrained (Etype (E))
3738            and then Analyzed (N)
3739            and then No (Expression (N))
3740          then
3741             Ghost_Mode := Save_Ghost_Mode;
3742             return;
3743          end if;
3744
3745          --  If E is null and has been replaced by an N_Raise_Constraint_Error
3746          --  node (which was marked already-analyzed), we need to set the type
3747          --  to something other than Any_Access in order to keep gigi happy.
3748
3749          if Etype (E) = Any_Access then
3750             Set_Etype (E, T);
3751          end if;
3752
3753          --  If the object is an access to variable, the initialization
3754          --  expression cannot be an access to constant.
3755
3756          if Is_Access_Type (T)
3757            and then not Is_Access_Constant (T)
3758            and then Is_Access_Type (Etype (E))
3759            and then Is_Access_Constant (Etype (E))
3760          then
3761             Error_Msg_N
3762               ("access to variable cannot be initialized with an "
3763                & "access-to-constant expression", E);
3764          end if;
3765
3766          if not Assignment_OK (N) then
3767             Check_Initialization (T, E);
3768          end if;
3769
3770          Check_Unset_Reference (E);
3771
3772          --  If this is a variable, then set current value. If this is a
3773          --  declared constant of a scalar type with a static expression,
3774          --  indicate that it is always valid.
3775
3776          if not Constant_Present (N) then
3777             if Compile_Time_Known_Value (E) then
3778                Set_Current_Value (Id, E);
3779             end if;
3780
3781          elsif Is_Scalar_Type (T) and then Is_OK_Static_Expression (E) then
3782             Set_Is_Known_Valid (Id);
3783          end if;
3784
3785          --  Deal with setting of null flags
3786
3787          if Is_Access_Type (T) then
3788             if Known_Non_Null (E) then
3789                Set_Is_Known_Non_Null (Id, True);
3790             elsif Known_Null (E) and then not Can_Never_Be_Null (Id) then
3791                Set_Is_Known_Null (Id, True);
3792             end if;
3793          end if;
3794
3795          --  Check incorrect use of dynamically tagged expressions
3796
3797          if Is_Tagged_Type (T) then
3798             Check_Dynamically_Tagged_Expression
3799               (Expr        => E,
3800                Typ         => T,
3801                Related_Nod => N);
3802          end if;
3803
3804          Apply_Scalar_Range_Check (E, T);
3805          Apply_Static_Length_Check (E, T);
3806
3807          if Nkind (Original_Node (N)) = N_Object_Declaration
3808            and then Comes_From_Source (Original_Node (N))
3809
3810            --  Only call test if needed
3811
3812            and then Restriction_Check_Required (SPARK_05)
3813            and then not Is_SPARK_05_Initialization_Expr (Original_Node (E))
3814          then
3815             Check_SPARK_05_Restriction
3816               ("initialization expression is not appropriate", E);
3817          end if;
3818
3819          --  A formal parameter of a specific tagged type whose related
3820          --  subprogram is subject to pragma Extensions_Visible with value
3821          --  "False" cannot be implicitly converted to a class-wide type by
3822          --  means of an initialization expression (SPARK RM 6.1.7(3)).
3823
3824          if Is_Class_Wide_Type (T) and then Is_EVF_Expression (E) then
3825             Error_Msg_N
3826               ("formal parameter with Extensions_Visible False cannot be "
3827                & "implicitly converted to class-wide type", E);
3828          end if;
3829       end if;
3830
3831       --  If the No_Streams restriction is set, check that the type of the
3832       --  object is not, and does not contain, any subtype derived from
3833       --  Ada.Streams.Root_Stream_Type. Note that we guard the call to
3834       --  Has_Stream just for efficiency reasons. There is no point in
3835       --  spending time on a Has_Stream check if the restriction is not set.
3836
3837       if Restriction_Check_Required (No_Streams) then
3838          if Has_Stream (T) then
3839             Check_Restriction (No_Streams, N);
3840          end if;
3841       end if;
3842
3843       --  Deal with predicate check before we start to do major rewriting. It
3844       --  is OK to initialize and then check the initialized value, since the
3845       --  object goes out of scope if we get a predicate failure. Note that we
3846       --  do this in the analyzer and not the expander because the analyzer
3847       --  does some substantial rewriting in some cases.
3848
3849       --  We need a predicate check if the type has predicates, and if either
3850       --  there is an initializing expression, or for default initialization
3851       --  when we have at least one case of an explicit default initial value
3852       --  and then this is not an internal declaration whose initialization
3853       --  comes later (as for an aggregate expansion).
3854
3855       if not Suppress_Assignment_Checks (N)
3856         and then Present (Predicate_Function (T))
3857         and then not No_Initialization (N)
3858         and then
3859           (Present (E)
3860             or else
3861               Is_Partially_Initialized_Type (T, Include_Implicit => False))
3862       then
3863          --  If the type has a static predicate and the expression is known at
3864          --  compile time, see if the expression satisfies the predicate.
3865
3866          if Present (E) then
3867             Check_Expression_Against_Static_Predicate (E, T);
3868          end if;
3869
3870          Insert_After (N,
3871            Make_Predicate_Check (T, New_Occurrence_Of (Id, Loc)));
3872       end if;
3873
3874       --  Case of unconstrained type
3875
3876       if not Is_Definite_Subtype (T) then
3877
3878          --  In SPARK, a declaration of unconstrained type is allowed
3879          --  only for constants of type string.
3880
3881          if Is_String_Type (T) and then not Constant_Present (N) then
3882             Check_SPARK_05_Restriction
3883               ("declaration of object of unconstrained type not allowed", N);
3884          end if;
3885
3886          --  Nothing to do in deferred constant case
3887
3888          if Constant_Present (N) and then No (E) then
3889             null;
3890
3891          --  Case of no initialization present
3892
3893          elsif No (E) then
3894             if No_Initialization (N) then
3895                null;
3896
3897             elsif Is_Class_Wide_Type (T) then
3898                Error_Msg_N
3899                  ("initialization required in class-wide declaration ", N);
3900
3901             else
3902                Error_Msg_N
3903                  ("unconstrained subtype not allowed (need initialization)",
3904                   Object_Definition (N));
3905
3906                if Is_Record_Type (T) and then Has_Discriminants (T) then
3907                   Error_Msg_N
3908                     ("\provide initial value or explicit discriminant values",
3909                      Object_Definition (N));
3910
3911                   Error_Msg_NE
3912                     ("\or give default discriminant values for type&",
3913                      Object_Definition (N), T);
3914
3915                elsif Is_Array_Type (T) then
3916                   Error_Msg_N
3917                     ("\provide initial value or explicit array bounds",
3918                      Object_Definition (N));
3919                end if;
3920             end if;
3921
3922          --  Case of initialization present but in error. Set initial
3923          --  expression as absent (but do not make above complaints)
3924
3925          elsif E = Error then
3926             Set_Expression (N, Empty);
3927             E := Empty;
3928
3929          --  Case of initialization present
3930
3931          else
3932             --  Check restrictions in Ada 83
3933
3934             if not Constant_Present (N) then
3935
3936                --  Unconstrained variables not allowed in Ada 83 mode
3937
3938                if Ada_Version = Ada_83
3939                  and then Comes_From_Source (Object_Definition (N))
3940                then
3941                   Error_Msg_N
3942                     ("(Ada 83) unconstrained variable not allowed",
3943                      Object_Definition (N));
3944                end if;
3945             end if;
3946
3947             --  Now we constrain the variable from the initializing expression
3948
3949             --  If the expression is an aggregate, it has been expanded into
3950             --  individual assignments. Retrieve the actual type from the
3951             --  expanded construct.
3952
3953             if Is_Array_Type (T)
3954               and then No_Initialization (N)
3955               and then Nkind (Original_Node (E)) = N_Aggregate
3956             then
3957                Act_T := Etype (E);
3958
3959             --  In case of class-wide interface object declarations we delay
3960             --  the generation of the equivalent record type declarations until
3961             --  its expansion because there are cases in they are not required.
3962
3963             elsif Is_Interface (T) then
3964                null;
3965
3966             --  In GNATprove mode, Expand_Subtype_From_Expr does nothing. Thus,
3967             --  we should prevent the generation of another Itype with the
3968             --  same name as the one already generated, or we end up with
3969             --  two identical types in GNATprove.
3970
3971             elsif GNATprove_Mode then
3972                null;
3973
3974             --  If the type is an unchecked union, no subtype can be built from
3975             --  the expression. Rewrite declaration as a renaming, which the
3976             --  back-end can handle properly. This is a rather unusual case,
3977             --  because most unchecked_union declarations have default values
3978             --  for discriminants and are thus not indefinite.
3979
3980             elsif Is_Unchecked_Union (T) then
3981                if Constant_Present (N) or else Nkind (E) = N_Function_Call then
3982                   Set_Ekind (Id, E_Constant);
3983                else
3984                   Set_Ekind (Id, E_Variable);
3985                end if;
3986
3987                --  An object declared within a Ghost region is automatically
3988                --  Ghost (SPARK RM 6.9(2)).
3989
3990                if Ghost_Mode > None then
3991                   Set_Is_Ghost_Entity (Id);
3992
3993                   --  The Ghost policy in effect at the point of declaration
3994                   --  and at the point of completion must match
3995                   --  (SPARK RM 6.9(14)).
3996
3997                   if Present (Prev_Entity)
3998                     and then Is_Ghost_Entity (Prev_Entity)
3999                   then
4000                      Check_Ghost_Completion (Prev_Entity, Id);
4001                   end if;
4002                end if;
4003
4004                Rewrite (N,
4005                  Make_Object_Renaming_Declaration (Loc,
4006                    Defining_Identifier => Id,
4007                    Subtype_Mark        => New_Occurrence_Of (T, Loc),
4008                    Name                => E));
4009
4010                Set_Renamed_Object (Id, E);
4011                Freeze_Before (N, T);
4012                Set_Is_Frozen (Id);
4013
4014                Ghost_Mode := Save_Ghost_Mode;
4015                return;
4016
4017             else
4018                Expand_Subtype_From_Expr (N, T, Object_Definition (N), E);
4019                Act_T := Find_Type_Of_Object (Object_Definition (N), N);
4020             end if;
4021
4022             Set_Is_Constr_Subt_For_U_Nominal (Act_T);
4023
4024             if Aliased_Present (N) then
4025                Set_Is_Constr_Subt_For_UN_Aliased (Act_T);
4026             end if;
4027
4028             Freeze_Before (N, Act_T);
4029             Freeze_Before (N, T);
4030          end if;
4031
4032       elsif Is_Array_Type (T)
4033         and then No_Initialization (N)
4034         and then Nkind (Original_Node (E)) = N_Aggregate
4035       then
4036          if not Is_Entity_Name (Object_Definition (N)) then
4037             Act_T := Etype (E);
4038             Check_Compile_Time_Size (Act_T);
4039
4040             if Aliased_Present (N) then
4041                Set_Is_Constr_Subt_For_UN_Aliased (Act_T);
4042             end if;
4043          end if;
4044
4045          --  When the given object definition and the aggregate are specified
4046          --  independently, and their lengths might differ do a length check.
4047          --  This cannot happen if the aggregate is of the form (others =>...)
4048
4049          if not Is_Constrained (T) then
4050             null;
4051
4052          elsif Nkind (E) = N_Raise_Constraint_Error then
4053
4054             --  Aggregate is statically illegal. Place back in declaration
4055
4056             Set_Expression (N, E);
4057             Set_No_Initialization (N, False);
4058
4059          elsif T = Etype (E) then
4060             null;
4061
4062          elsif Nkind (E) = N_Aggregate
4063            and then Present (Component_Associations (E))
4064            and then Present (Choices (First (Component_Associations (E))))
4065            and then Nkind (First
4066             (Choices (First (Component_Associations (E))))) = N_Others_Choice
4067          then
4068             null;
4069
4070          else
4071             Apply_Length_Check (E, T);
4072          end if;
4073
4074       --  If the type is limited unconstrained with defaulted discriminants and
4075       --  there is no expression, then the object is constrained by the
4076       --  defaults, so it is worthwhile building the corresponding subtype.
4077
4078       elsif (Is_Limited_Record (T) or else Is_Concurrent_Type (T))
4079         and then not Is_Constrained (T)
4080         and then Has_Discriminants (T)
4081       then
4082          if No (E) then
4083             Act_T := Build_Default_Subtype (T, N);
4084          else
4085             --  Ada 2005: A limited object may be initialized by means of an
4086             --  aggregate. If the type has default discriminants it has an
4087             --  unconstrained nominal type, Its actual subtype will be obtained
4088             --  from the aggregate, and not from the default discriminants.
4089
4090             Act_T := Etype (E);
4091          end if;
4092
4093          Rewrite (Object_Definition (N), New_Occurrence_Of (Act_T, Loc));
4094
4095       elsif Nkind (E) = N_Function_Call
4096         and then Constant_Present (N)
4097         and then Has_Unconstrained_Elements (Etype (E))
4098       then
4099          --  The back-end has problems with constants of a discriminated type
4100          --  with defaults, if the initial value is a function call. We
4101          --  generate an intermediate temporary that will receive a reference
4102          --  to the result of the call. The initialization expression then
4103          --  becomes a dereference of that temporary.
4104
4105          Remove_Side_Effects (E);
4106
4107       --  If this is a constant declaration of an unconstrained type and
4108       --  the initialization is an aggregate, we can use the subtype of the
4109       --  aggregate for the declared entity because it is immutable.
4110
4111       elsif not Is_Constrained (T)
4112         and then Has_Discriminants (T)
4113         and then Constant_Present (N)
4114         and then not Has_Unchecked_Union (T)
4115         and then Nkind (E) = N_Aggregate
4116       then
4117          Act_T := Etype (E);
4118       end if;
4119
4120       --  Check No_Wide_Characters restriction
4121
4122       Check_Wide_Character_Restriction (T, Object_Definition (N));
4123
4124       --  Indicate this is not set in source. Certainly true for constants, and
4125       --  true for variables so far (will be reset for a variable if and when
4126       --  we encounter a modification in the source).
4127
4128       Set_Never_Set_In_Source (Id);
4129
4130       --  Now establish the proper kind and type of the object
4131
4132       if Constant_Present (N) then
4133          Set_Ekind            (Id, E_Constant);
4134          Set_Is_True_Constant (Id);
4135
4136       else
4137          Set_Ekind (Id, E_Variable);
4138
4139          --  A variable is set as shared passive if it appears in a shared
4140          --  passive package, and is at the outer level. This is not done for
4141          --  entities generated during expansion, because those are always
4142          --  manipulated locally.
4143
4144          if Is_Shared_Passive (Current_Scope)
4145            and then Is_Library_Level_Entity (Id)
4146            and then Comes_From_Source (Id)
4147          then
4148             Set_Is_Shared_Passive (Id);
4149             Check_Shared_Var (Id, T, N);
4150          end if;
4151
4152          --  Set Has_Initial_Value if initializing expression present. Note
4153          --  that if there is no initializing expression, we leave the state
4154          --  of this flag unchanged (usually it will be False, but notably in
4155          --  the case of exception choice variables, it will already be true).
4156
4157          if Present (E) then
4158             Set_Has_Initial_Value (Id);
4159          end if;
4160       end if;
4161
4162       --  Initialize alignment and size and capture alignment setting
4163
4164       Init_Alignment               (Id);
4165       Init_Esize                   (Id);
4166       Set_Optimize_Alignment_Flags (Id);
4167
4168       --  An object declared within a Ghost region is automatically Ghost
4169       --  (SPARK RM 6.9(2)).
4170
4171       if Ghost_Mode > None
4172         or else (Present (Prev_Entity) and then Is_Ghost_Entity (Prev_Entity))
4173       then
4174          Set_Is_Ghost_Entity (Id);
4175
4176          --  The Ghost policy in effect at the point of declaration and at the
4177          --  point of completion must match (SPARK RM 6.9(14)).
4178
4179          if Present (Prev_Entity) and then Is_Ghost_Entity (Prev_Entity) then
4180             Check_Ghost_Completion (Prev_Entity, Id);
4181          end if;
4182       end if;
4183
4184       --  Deal with aliased case
4185
4186       if Aliased_Present (N) then
4187          Set_Is_Aliased (Id);
4188
4189          --  If the object is aliased and the type is unconstrained with
4190          --  defaulted discriminants and there is no expression, then the
4191          --  object is constrained by the defaults, so it is worthwhile
4192          --  building the corresponding subtype.
4193
4194          --  Ada 2005 (AI-363): If the aliased object is discriminated and
4195          --  unconstrained, then only establish an actual subtype if the
4196          --  nominal subtype is indefinite. In definite cases the object is
4197          --  unconstrained in Ada 2005.
4198
4199          if No (E)
4200            and then Is_Record_Type (T)
4201            and then not Is_Constrained (T)
4202            and then Has_Discriminants (T)
4203            and then (Ada_Version < Ada_2005
4204                       or else not Is_Definite_Subtype (T))
4205          then
4206             Set_Actual_Subtype (Id, Build_Default_Subtype (T, N));
4207          end if;
4208       end if;
4209
4210       --  Now we can set the type of the object
4211
4212       Set_Etype (Id, Act_T);
4213
4214       --  Non-constant object is marked to be treated as volatile if type is
4215       --  volatile and we clear the Current_Value setting that may have been
4216       --  set above. Doing so for constants isn't required and might interfere
4217       --  with possible uses of the object as a static expression in contexts
4218       --  incompatible with volatility (e.g. as a case-statement alternative).
4219
4220       if Ekind (Id) /= E_Constant and then Treat_As_Volatile (Etype (Id)) then
4221          Set_Treat_As_Volatile (Id);
4222          Set_Current_Value (Id, Empty);
4223       end if;
4224
4225       --  Deal with controlled types
4226
4227       if Has_Controlled_Component (Etype (Id))
4228         or else Is_Controlled (Etype (Id))
4229       then
4230          if not Is_Library_Level_Entity (Id) then
4231             Check_Restriction (No_Nested_Finalization, N);
4232          else
4233             Validate_Controlled_Object (Id);
4234          end if;
4235       end if;
4236
4237       if Has_Task (Etype (Id)) then
4238          Check_Restriction (No_Tasking, N);
4239
4240          --  Deal with counting max tasks
4241
4242          --  Nothing to do if inside a generic
4243
4244          if Inside_A_Generic then
4245             null;
4246
4247          --  If library level entity, then count tasks
4248
4249          elsif Is_Library_Level_Entity (Id) then
4250             Check_Restriction (Max_Tasks, N, Count_Tasks (Etype (Id)));
4251
4252          --  If not library level entity, then indicate we don't know max
4253          --  tasks and also check task hierarchy restriction and blocking
4254          --  operation (since starting a task is definitely blocking).
4255
4256          else
4257             Check_Restriction (Max_Tasks, N);
4258             Check_Restriction (No_Task_Hierarchy, N);
4259             Check_Potentially_Blocking_Operation (N);
4260          end if;
4261
4262          --  A rather specialized test. If we see two tasks being declared
4263          --  of the same type in the same object declaration, and the task
4264          --  has an entry with an address clause, we know that program error
4265          --  will be raised at run time since we can't have two tasks with
4266          --  entries at the same address.
4267
4268          if Is_Task_Type (Etype (Id)) and then More_Ids (N) then
4269             declare
4270                E : Entity_Id;
4271
4272             begin
4273                E := First_Entity (Etype (Id));
4274                while Present (E) loop
4275                   if Ekind (E) = E_Entry
4276                     and then Present (Get_Attribute_Definition_Clause
4277                                         (E, Attribute_Address))
4278                   then
4279                      Error_Msg_Warn := SPARK_Mode /= On;
4280                      Error_Msg_N
4281                        ("more than one task with same entry address<<", N);
4282                      Error_Msg_N ("\Program_Error [<<", N);
4283                      Insert_Action (N,
4284                        Make_Raise_Program_Error (Loc,
4285                          Reason => PE_Duplicated_Entry_Address));
4286                      exit;
4287                   end if;
4288
4289                   Next_Entity (E);
4290                end loop;
4291             end;
4292          end if;
4293       end if;
4294
4295       --  Some simple constant-propagation: if the expression is a constant
4296       --  string initialized with a literal, share the literal. This avoids
4297       --  a run-time copy.
4298
4299       if Present (E)
4300         and then Is_Entity_Name (E)
4301         and then Ekind (Entity (E)) = E_Constant
4302         and then Base_Type (Etype (E)) = Standard_String
4303       then
4304          declare
4305             Val : constant Node_Id := Constant_Value (Entity (E));
4306          begin
4307             if Present (Val) and then Nkind (Val) = N_String_Literal then
4308                Rewrite (E, New_Copy (Val));
4309             end if;
4310          end;
4311       end if;
4312
4313       --  Another optimization: if the nominal subtype is unconstrained and
4314       --  the expression is a function call that returns an unconstrained
4315       --  type, rewrite the declaration as a renaming of the result of the
4316       --  call. The exceptions below are cases where the copy is expected,
4317       --  either by the back end (Aliased case) or by the semantics, as for
4318       --  initializing controlled types or copying tags for classwide types.
4319
4320       if Present (E)
4321         and then Nkind (E) = N_Explicit_Dereference
4322         and then Nkind (Original_Node (E)) = N_Function_Call
4323         and then not Is_Library_Level_Entity (Id)
4324         and then not Is_Constrained (Underlying_Type (T))
4325         and then not Is_Aliased (Id)
4326         and then not Is_Class_Wide_Type (T)
4327         and then not Is_Controlled_Active (T)
4328         and then not Has_Controlled_Component (Base_Type (T))
4329         and then Expander_Active
4330       then
4331          Rewrite (N,
4332            Make_Object_Renaming_Declaration (Loc,
4333              Defining_Identifier => Id,
4334              Access_Definition   => Empty,
4335              Subtype_Mark        => New_Occurrence_Of
4336                                       (Base_Type (Etype (Id)), Loc),
4337              Name                => E));
4338
4339          Set_Renamed_Object (Id, E);
4340
4341          --  Force generation of debugging information for the constant and for
4342          --  the renamed function call.
4343
4344          Set_Debug_Info_Needed (Id);
4345          Set_Debug_Info_Needed (Entity (Prefix (E)));
4346       end if;
4347
4348       if Present (Prev_Entity)
4349         and then Is_Frozen (Prev_Entity)
4350         and then not Error_Posted (Id)
4351       then
4352          Error_Msg_N ("full constant declaration appears too late", N);
4353       end if;
4354
4355       Check_Eliminated (Id);
4356
4357       --  Deal with setting In_Private_Part flag if in private part
4358
4359       if Ekind (Scope (Id)) = E_Package
4360         and then In_Private_Part (Scope (Id))
4361       then
4362          Set_In_Private_Part (Id);
4363       end if;
4364
4365       --  Check for violation of No_Local_Timing_Events
4366
4367       if Restriction_Check_Required (No_Local_Timing_Events)
4368         and then not Is_Library_Level_Entity (Id)
4369         and then Is_RTE (Etype (Id), RE_Timing_Event)
4370       then
4371          Check_Restriction (No_Local_Timing_Events, N);
4372       end if;
4373
4374    <<Leave>>
4375       --  Initialize the refined state of a variable here because this is a
4376       --  common destination for legal and illegal object declarations.
4377
4378       if Ekind (Id) = E_Variable then
4379          Set_Encapsulating_State (Id, Empty);
4380       end if;
4381
4382       if Has_Aspects (N) then
4383          Analyze_Aspect_Specifications (N, Id);
4384       end if;
4385
4386       Analyze_Dimension (N);
4387
4388       --  Verify whether the object declaration introduces an illegal hidden
4389       --  state within a package subject to a null abstract state.
4390
4391       if Ekind (Id) = E_Variable then
4392          Check_No_Hidden_State (Id);
4393       end if;
4394
4395       Ghost_Mode := Save_Ghost_Mode;
4396    end Analyze_Object_Declaration;
4397
4398    ---------------------------
4399    -- Analyze_Others_Choice --
4400    ---------------------------
4401
4402    --  Nothing to do for the others choice node itself, the semantic analysis
4403    --  of the others choice will occur as part of the processing of the parent
4404
4405    procedure Analyze_Others_Choice (N : Node_Id) is
4406       pragma Warnings (Off, N);
4407    begin
4408       null;
4409    end Analyze_Others_Choice;
4410
4411    -------------------------------------------
4412    -- Analyze_Private_Extension_Declaration --
4413    -------------------------------------------
4414
4415    procedure Analyze_Private_Extension_Declaration (N : Node_Id) is
4416       Indic       : constant Node_Id   := Subtype_Indication (N);
4417       T           : constant Entity_Id := Defining_Identifier (N);
4418       Parent_Base : Entity_Id;
4419       Parent_Type : Entity_Id;
4420
4421    begin
4422       --  Ada 2005 (AI-251): Decorate all names in list of ancestor interfaces
4423
4424       if Is_Non_Empty_List (Interface_List (N)) then
4425          declare
4426             Intf : Node_Id;
4427             T    : Entity_Id;
4428
4429          begin
4430             Intf := First (Interface_List (N));
4431             while Present (Intf) loop
4432                T := Find_Type_Of_Subtype_Indic (Intf);
4433
4434                Diagnose_Interface (Intf, T);
4435                Next (Intf);
4436             end loop;
4437          end;
4438       end if;
4439
4440       Generate_Definition (T);
4441
4442       --  For other than Ada 2012, just enter the name in the current scope
4443
4444       if Ada_Version < Ada_2012 then
4445          Enter_Name (T);
4446
4447       --  Ada 2012 (AI05-0162): Enter the name in the current scope handling
4448       --  case of private type that completes an incomplete type.
4449
4450       else
4451          declare
4452             Prev : Entity_Id;
4453
4454          begin
4455             Prev := Find_Type_Name (N);
4456
4457             pragma Assert (Prev = T
4458               or else (Ekind (Prev) = E_Incomplete_Type
4459                         and then Present (Full_View (Prev))
4460                         and then Full_View (Prev) = T));
4461          end;
4462       end if;
4463
4464       Parent_Type := Find_Type_Of_Subtype_Indic (Indic);
4465       Parent_Base := Base_Type (Parent_Type);
4466
4467       if Parent_Type = Any_Type or else Etype (Parent_Type) = Any_Type then
4468          Set_Ekind (T, Ekind (Parent_Type));
4469          Set_Etype (T, Any_Type);
4470          goto Leave;
4471
4472       elsif not Is_Tagged_Type (Parent_Type) then
4473          Error_Msg_N
4474            ("parent of type extension must be a tagged type ", Indic);
4475          goto Leave;
4476
4477       elsif Ekind_In (Parent_Type, E_Void, E_Incomplete_Type) then
4478          Error_Msg_N ("premature derivation of incomplete type", Indic);
4479          goto Leave;
4480
4481       elsif Is_Concurrent_Type (Parent_Type) then
4482          Error_Msg_N
4483            ("parent type of a private extension cannot be "
4484             & "a synchronized tagged type (RM 3.9.1 (3/1))", N);
4485
4486          Set_Etype              (T, Any_Type);
4487          Set_Ekind              (T, E_Limited_Private_Type);
4488          Set_Private_Dependents (T, New_Elmt_List);
4489          Set_Error_Posted       (T);
4490          goto Leave;
4491       end if;
4492
4493       --  Perhaps the parent type should be changed to the class-wide type's
4494       --  specific type in this case to prevent cascading errors ???
4495
4496       if Is_Class_Wide_Type (Parent_Type) then
4497          Error_Msg_N
4498            ("parent of type extension must not be a class-wide type", Indic);
4499          goto Leave;
4500       end if;
4501
4502       if (not Is_Package_Or_Generic_Package (Current_Scope)
4503            and then Nkind (Parent (N)) /= N_Generic_Subprogram_Declaration)
4504         or else In_Private_Part (Current_Scope)
4505
4506       then
4507          Error_Msg_N ("invalid context for private extension", N);
4508       end if;
4509
4510       --  Set common attributes
4511
4512       Set_Is_Pure          (T, Is_Pure (Current_Scope));
4513       Set_Scope            (T, Current_Scope);
4514       Set_Ekind            (T, E_Record_Type_With_Private);
4515       Init_Size_Align      (T);
4516       Set_Default_SSO      (T);
4517
4518       Set_Etype            (T,            Parent_Base);
4519       Set_Has_Task         (T, Has_Task  (Parent_Base));
4520       Set_Has_Protected    (T, Has_Task  (Parent_Base));
4521
4522       Set_Convention       (T, Convention     (Parent_Type));
4523       Set_First_Rep_Item   (T, First_Rep_Item (Parent_Type));
4524       Set_Is_First_Subtype (T);
4525       Make_Class_Wide_Type (T);
4526
4527       if Unknown_Discriminants_Present (N) then
4528          Set_Discriminant_Constraint (T, No_Elist);
4529       end if;
4530
4531       Build_Derived_Record_Type (N, Parent_Type, T);
4532
4533       --  Propagate inherited invariant information. The new type has
4534       --  invariants, if the parent type has inheritable invariants,
4535       --  and these invariants can in turn be inherited.
4536
4537       if Has_Inheritable_Invariants (Parent_Type) then
4538          Set_Has_Inheritable_Invariants (T);
4539          Set_Has_Invariants (T);
4540       end if;
4541
4542       --  Ada 2005 (AI-443): Synchronized private extension or a rewritten
4543       --  synchronized formal derived type.
4544
4545       if Ada_Version >= Ada_2005 and then Synchronized_Present (N) then
4546          Set_Is_Limited_Record (T);
4547
4548          --  Formal derived type case
4549
4550          if Is_Generic_Type (T) then
4551
4552             --  The parent must be a tagged limited type or a synchronized
4553             --  interface.
4554
4555             if (not Is_Tagged_Type (Parent_Type)
4556                  or else not Is_Limited_Type (Parent_Type))
4557               and then
4558                 (not Is_Interface (Parent_Type)
4559                   or else not Is_Synchronized_Interface (Parent_Type))
4560             then
4561                Error_Msg_NE ("parent type of & must be tagged limited " &
4562                              "or synchronized", N, T);
4563             end if;
4564
4565             --  The progenitors (if any) must be limited or synchronized
4566             --  interfaces.
4567
4568             if Present (Interfaces (T)) then
4569                declare
4570                   Iface      : Entity_Id;
4571                   Iface_Elmt : Elmt_Id;
4572
4573                begin
4574                   Iface_Elmt := First_Elmt (Interfaces (T));
4575                   while Present (Iface_Elmt) loop
4576                      Iface := Node (Iface_Elmt);
4577
4578                      if not Is_Limited_Interface (Iface)
4579                        and then not Is_Synchronized_Interface (Iface)
4580                      then
4581                         Error_Msg_NE ("progenitor & must be limited " &
4582                                       "or synchronized", N, Iface);
4583                      end if;
4584
4585                      Next_Elmt (Iface_Elmt);
4586                   end loop;
4587                end;
4588             end if;
4589
4590          --  Regular derived extension, the parent must be a limited or
4591          --  synchronized interface.
4592
4593          else
4594             if not Is_Interface (Parent_Type)
4595               or else (not Is_Limited_Interface (Parent_Type)
4596                         and then not Is_Synchronized_Interface (Parent_Type))
4597             then
4598                Error_Msg_NE
4599                  ("parent type of & must be limited interface", N, T);
4600             end if;
4601          end if;
4602
4603       --  A consequence of 3.9.4 (6/2) and 7.3 (7.2/2) is that a private
4604       --  extension with a synchronized parent must be explicitly declared
4605       --  synchronized, because the full view will be a synchronized type.
4606       --  This must be checked before the check for limited types below,
4607       --  to ensure that types declared limited are not allowed to extend
4608       --  synchronized interfaces.
4609
4610       elsif Is_Interface (Parent_Type)
4611         and then Is_Synchronized_Interface (Parent_Type)
4612         and then not Synchronized_Present (N)
4613       then
4614          Error_Msg_NE
4615            ("private extension of& must be explicitly synchronized",
4616              N, Parent_Type);
4617
4618       elsif Limited_Present (N) then
4619          Set_Is_Limited_Record (T);
4620
4621          if not Is_Limited_Type (Parent_Type)
4622            and then
4623              (not Is_Interface (Parent_Type)
4624                or else not Is_Limited_Interface (Parent_Type))
4625          then
4626             Error_Msg_NE ("parent type& of limited extension must be limited",
4627               N, Parent_Type);
4628          end if;
4629       end if;
4630
4631    <<Leave>>
4632       if Has_Aspects (N) then
4633          Analyze_Aspect_Specifications (N, T);
4634       end if;
4635    end Analyze_Private_Extension_Declaration;
4636
4637    ---------------------------------
4638    -- Analyze_Subtype_Declaration --
4639    ---------------------------------
4640
4641    procedure Analyze_Subtype_Declaration
4642      (N    : Node_Id;
4643       Skip : Boolean := False)
4644    is
4645       Id       : constant Entity_Id := Defining_Identifier (N);
4646       R_Checks : Check_Result;
4647       T        : Entity_Id;
4648
4649    begin
4650       Generate_Definition (Id);
4651       Set_Is_Pure (Id, Is_Pure (Current_Scope));
4652       Init_Size_Align (Id);
4653
4654       --  The following guard condition on Enter_Name is to handle cases where
4655       --  the defining identifier has already been entered into the scope but
4656       --  the declaration as a whole needs to be analyzed.
4657
4658       --  This case in particular happens for derived enumeration types. The
4659       --  derived enumeration type is processed as an inserted enumeration type
4660       --  declaration followed by a rewritten subtype declaration. The defining
4661       --  identifier, however, is entered into the name scope very early in the
4662       --  processing of the original type declaration and therefore needs to be
4663       --  avoided here, when the created subtype declaration is analyzed. (See
4664       --  Build_Derived_Types)
4665
4666       --  This also happens when the full view of a private type is derived
4667       --  type with constraints. In this case the entity has been introduced
4668       --  in the private declaration.
4669
4670       --  Finally this happens in some complex cases when validity checks are
4671       --  enabled, where the same subtype declaration may be analyzed twice.
4672       --  This can happen if the subtype is created by the pre-analysis of
4673       --  an attribute tht gives the range of a loop statement, and the loop
4674       --  itself appears within an if_statement that will be rewritten during
4675       --  expansion.
4676
4677       if Skip
4678         or else (Present (Etype (Id))
4679                   and then (Is_Private_Type (Etype (Id))
4680                              or else Is_Task_Type (Etype (Id))
4681                              or else Is_Rewrite_Substitution (N)))
4682       then
4683          null;
4684
4685       elsif Current_Entity (Id) = Id then
4686          null;
4687
4688       else
4689          Enter_Name (Id);
4690       end if;
4691
4692       T := Process_Subtype (Subtype_Indication (N), N, Id, 'P');
4693
4694       --  Class-wide equivalent types of records with unknown discriminants
4695       --  involve the generation of an itype which serves as the private view
4696       --  of a constrained record subtype. In such cases the base type of the
4697       --  current subtype we are processing is the private itype. Use the full
4698       --  of the private itype when decorating various attributes.
4699
4700       if Is_Itype (T)
4701         and then Is_Private_Type (T)
4702         and then Present (Full_View (T))
4703       then
4704          T := Full_View (T);
4705       end if;
4706
4707       --  Inherit common attributes
4708
4709       Set_Is_Volatile       (Id, Is_Volatile       (T));
4710       Set_Treat_As_Volatile (Id, Treat_As_Volatile (T));
4711       Set_Is_Generic_Type   (Id, Is_Generic_Type   (Base_Type (T)));
4712       Set_Convention        (Id, Convention        (T));
4713
4714       --  If ancestor has predicates then so does the subtype, and in addition
4715       --  we must delay the freeze to properly arrange predicate inheritance.
4716
4717       --  The Ancestor_Type test is really unpleasant, there seem to be cases
4718       --  in which T = ID, so the above tests and assignments do nothing???
4719
4720       if Has_Predicates (T)
4721         or else (Present (Ancestor_Subtype (T))
4722                   and then Has_Predicates (Ancestor_Subtype (T)))
4723       then
4724          Set_Has_Predicates (Id);
4725          Set_Has_Delayed_Freeze (Id);
4726       end if;
4727
4728       --  Subtype of Boolean cannot have a constraint in SPARK
4729
4730       if Is_Boolean_Type (T)
4731         and then Nkind (Subtype_Indication (N)) = N_Subtype_Indication
4732       then
4733          Check_SPARK_05_Restriction
4734            ("subtype of Boolean cannot have constraint", N);
4735       end if;
4736
4737       if Nkind (Subtype_Indication (N)) = N_Subtype_Indication then
4738          declare
4739             Cstr     : constant Node_Id := Constraint (Subtype_Indication (N));
4740             One_Cstr : Node_Id;
4741             Low      : Node_Id;
4742             High     : Node_Id;
4743
4744          begin
4745             if Nkind (Cstr) = N_Index_Or_Discriminant_Constraint then
4746                One_Cstr := First (Constraints (Cstr));
4747                while Present (One_Cstr) loop
4748
4749                   --  Index or discriminant constraint in SPARK must be a
4750                   --  subtype mark.
4751
4752                   if not
4753                     Nkind_In (One_Cstr, N_Identifier, N_Expanded_Name)
4754                   then
4755                      Check_SPARK_05_Restriction
4756                        ("subtype mark required", One_Cstr);
4757
4758                   --  String subtype must have a lower bound of 1 in SPARK.
4759                   --  Note that we do not need to test for the non-static case
4760                   --  here, since that was already taken care of in
4761                   --  Process_Range_Expr_In_Decl.
4762
4763                   elsif Base_Type (T) = Standard_String then
4764                      Get_Index_Bounds (One_Cstr, Low, High);
4765
4766                      if Is_OK_Static_Expression (Low)
4767                        and then Expr_Value (Low) /= 1
4768                      then
4769                         Check_SPARK_05_Restriction
4770                           ("String subtype must have lower bound of 1", N);
4771                      end if;
4772                   end if;
4773
4774                   Next (One_Cstr);
4775                end loop;
4776             end if;
4777          end;
4778       end if;
4779
4780       --  In the case where there is no constraint given in the subtype
4781       --  indication, Process_Subtype just returns the Subtype_Mark, so its
4782       --  semantic attributes must be established here.
4783
4784       if Nkind (Subtype_Indication (N)) /= N_Subtype_Indication then
4785          Set_Etype (Id, Base_Type (T));
4786
4787          --  Subtype of unconstrained array without constraint is not allowed
4788          --  in SPARK.
4789
4790          if Is_Array_Type (T) and then not Is_Constrained (T) then
4791             Check_SPARK_05_Restriction
4792               ("subtype of unconstrained array must have constraint", N);
4793          end if;
4794
4795          case Ekind (T) is
4796             when Array_Kind =>
4797                Set_Ekind                       (Id, E_Array_Subtype);
4798                Copy_Array_Subtype_Attributes   (Id, T);
4799
4800             when Decimal_Fixed_Point_Kind =>
4801                Set_Ekind                (Id, E_Decimal_Fixed_Point_Subtype);
4802                Set_Digits_Value         (Id, Digits_Value       (T));
4803                Set_Delta_Value          (Id, Delta_Value        (T));
4804                Set_Scale_Value          (Id, Scale_Value        (T));
4805                Set_Small_Value          (Id, Small_Value        (T));
4806                Set_Scalar_Range         (Id, Scalar_Range       (T));
4807                Set_Machine_Radix_10     (Id, Machine_Radix_10   (T));
4808                Set_Is_Constrained       (Id, Is_Constrained     (T));
4809                Set_Is_Known_Valid       (Id, Is_Known_Valid     (T));
4810                Set_RM_Size              (Id, RM_Size            (T));
4811
4812             when Enumeration_Kind =>
4813                Set_Ekind                (Id, E_Enumeration_Subtype);
4814                Set_First_Literal        (Id, First_Literal (Base_Type (T)));
4815                Set_Scalar_Range         (Id, Scalar_Range       (T));
4816                Set_Is_Character_Type    (Id, Is_Character_Type  (T));
4817                Set_Is_Constrained       (Id, Is_Constrained     (T));
4818                Set_Is_Known_Valid       (Id, Is_Known_Valid     (T));
4819                Set_RM_Size              (Id, RM_Size            (T));
4820                Inherit_Predicate_Flags  (Id, T);
4821
4822             when Ordinary_Fixed_Point_Kind =>
4823                Set_Ekind                (Id, E_Ordinary_Fixed_Point_Subtype);
4824                Set_Scalar_Range         (Id, Scalar_Range       (T));
4825                Set_Small_Value          (Id, Small_Value        (T));
4826                Set_Delta_Value          (Id, Delta_Value        (T));
4827                Set_Is_Constrained       (Id, Is_Constrained     (T));
4828                Set_Is_Known_Valid       (Id, Is_Known_Valid     (T));
4829                Set_RM_Size              (Id, RM_Size            (T));
4830
4831             when Float_Kind =>
4832                Set_Ekind                (Id, E_Floating_Point_Subtype);
4833                Set_Scalar_Range         (Id, Scalar_Range       (T));
4834                Set_Digits_Value         (Id, Digits_Value       (T));
4835                Set_Is_Constrained       (Id, Is_Constrained     (T));
4836
4837                --  If the floating point type has dimensions, these will be
4838                --  inherited subsequently when Analyze_Dimensions is called.
4839
4840             when Signed_Integer_Kind =>
4841                Set_Ekind                (Id, E_Signed_Integer_Subtype);
4842                Set_Scalar_Range         (Id, Scalar_Range       (T));
4843                Set_Is_Constrained       (Id, Is_Constrained     (T));
4844                Set_Is_Known_Valid       (Id, Is_Known_Valid     (T));
4845                Set_RM_Size              (Id, RM_Size            (T));
4846                Inherit_Predicate_Flags  (Id, T);
4847
4848             when Modular_Integer_Kind =>
4849                Set_Ekind                (Id, E_Modular_Integer_Subtype);
4850                Set_Scalar_Range         (Id, Scalar_Range       (T));
4851                Set_Is_Constrained       (Id, Is_Constrained     (T));
4852                Set_Is_Known_Valid       (Id, Is_Known_Valid     (T));
4853                Set_RM_Size              (Id, RM_Size            (T));
4854                Inherit_Predicate_Flags  (Id, T);
4855
4856             when Class_Wide_Kind =>
4857                Set_Ekind                (Id, E_Class_Wide_Subtype);
4858                Set_Class_Wide_Type      (Id, Class_Wide_Type    (T));
4859                Set_Cloned_Subtype       (Id, T);
4860                Set_Is_Tagged_Type       (Id, True);
4861                Set_Has_Unknown_Discriminants
4862                                         (Id, True);
4863                Set_No_Tagged_Streams_Pragma
4864                                         (Id, No_Tagged_Streams_Pragma (T));
4865
4866                if Ekind (T) = E_Class_Wide_Subtype then
4867                   Set_Equivalent_Type   (Id, Equivalent_Type    (T));
4868                end if;
4869
4870             when E_Record_Type | E_Record_Subtype =>
4871                Set_Ekind                (Id, E_Record_Subtype);
4872
4873                if Ekind (T) = E_Record_Subtype
4874                  and then Present (Cloned_Subtype (T))
4875                then
4876                   Set_Cloned_Subtype    (Id, Cloned_Subtype (T));
4877                else
4878                   Set_Cloned_Subtype    (Id, T);
4879                end if;
4880
4881                Set_First_Entity         (Id, First_Entity       (T));
4882                Set_Last_Entity          (Id, Last_Entity        (T));
4883                Set_Has_Discriminants    (Id, Has_Discriminants  (T));
4884                Set_Is_Constrained       (Id, Is_Constrained     (T));
4885                Set_Is_Limited_Record    (Id, Is_Limited_Record  (T));
4886                Set_Has_Implicit_Dereference
4887                                         (Id, Has_Implicit_Dereference (T));
4888                Set_Has_Unknown_Discriminants
4889                                         (Id, Has_Unknown_Discriminants (T));
4890
4891                if Has_Discriminants (T) then
4892                   Set_Discriminant_Constraint
4893                                         (Id, Discriminant_Constraint (T));
4894                   Set_Stored_Constraint_From_Discriminant_Constraint (Id);
4895
4896                elsif Has_Unknown_Discriminants (Id) then
4897                   Set_Discriminant_Constraint (Id, No_Elist);
4898                end if;
4899
4900                if Is_Tagged_Type (T) then
4901                   Set_Is_Tagged_Type    (Id, True);
4902                   Set_No_Tagged_Streams_Pragma
4903                                         (Id, No_Tagged_Streams_Pragma (T));
4904                   Set_Is_Abstract_Type  (Id, Is_Abstract_Type (T));
4905                   Set_Direct_Primitive_Operations
4906                                         (Id, Direct_Primitive_Operations (T));
4907                   Set_Class_Wide_Type   (Id, Class_Wide_Type (T));
4908
4909                   if Is_Interface (T) then
4910                      Set_Is_Interface (Id);
4911                      Set_Is_Limited_Interface (Id, Is_Limited_Interface (T));
4912                   end if;
4913                end if;
4914
4915             when Private_Kind =>
4916                Set_Ekind              (Id, Subtype_Kind (Ekind        (T)));
4917                Set_Has_Discriminants  (Id, Has_Discriminants          (T));
4918                Set_Is_Constrained     (Id, Is_Constrained             (T));
4919                Set_First_Entity       (Id, First_Entity               (T));
4920                Set_Last_Entity        (Id, Last_Entity                (T));
4921                Set_Private_Dependents (Id, New_Elmt_List);
4922                Set_Is_Limited_Record  (Id, Is_Limited_Record          (T));
4923                Set_Has_Implicit_Dereference
4924                                       (Id, Has_Implicit_Dereference   (T));
4925                Set_Has_Unknown_Discriminants
4926                                       (Id, Has_Unknown_Discriminants  (T));
4927                Set_Known_To_Have_Preelab_Init
4928                                       (Id, Known_To_Have_Preelab_Init (T));
4929
4930                if Is_Tagged_Type (T) then
4931                   Set_Is_Tagged_Type              (Id);
4932                   Set_No_Tagged_Streams_Pragma    (Id,
4933                     No_Tagged_Streams_Pragma (T));
4934                   Set_Is_Abstract_Type            (Id, Is_Abstract_Type (T));
4935                   Set_Class_Wide_Type             (Id, Class_Wide_Type  (T));
4936                   Set_Direct_Primitive_Operations (Id,
4937                     Direct_Primitive_Operations (T));
4938                end if;
4939
4940                --  In general the attributes of the subtype of a private type
4941                --  are the attributes of the partial view of parent. However,
4942                --  the full view may be a discriminated type, and the subtype
4943                --  must share the discriminant constraint to generate correct
4944                --  calls to initialization procedures.
4945
4946                if Has_Discriminants (T) then
4947                   Set_Discriminant_Constraint
4948                     (Id, Discriminant_Constraint (T));
4949                   Set_Stored_Constraint_From_Discriminant_Constraint (Id);
4950
4951                elsif Present (Full_View (T))
4952                  and then Has_Discriminants (Full_View (T))
4953                then
4954                   Set_Discriminant_Constraint
4955                     (Id, Discriminant_Constraint (Full_View (T)));
4956                   Set_Stored_Constraint_From_Discriminant_Constraint (Id);
4957
4958                   --  This would seem semantically correct, but apparently
4959                   --  generates spurious errors about missing components ???
4960
4961                   --  Set_Has_Discriminants (Id);
4962                end if;
4963
4964                Prepare_Private_Subtype_Completion (Id, N);
4965
4966                --  If this is the subtype of a constrained private type with
4967                --  discriminants that has got a full view and we also have
4968                --  built a completion just above, show that the completion
4969                --  is a clone of the full view to the back-end.
4970
4971                if Has_Discriminants (T)
4972                   and then not Has_Unknown_Discriminants (T)
4973                   and then not Is_Empty_Elmt_List (Discriminant_Constraint (T))
4974                   and then Present (Full_View (T))
4975                   and then Present (Full_View (Id))
4976                then
4977                   Set_Cloned_Subtype (Full_View (Id), Full_View (T));
4978                end if;
4979
4980             when Access_Kind =>
4981                Set_Ekind             (Id, E_Access_Subtype);
4982                Set_Is_Constrained    (Id, Is_Constrained        (T));
4983                Set_Is_Access_Constant
4984                                      (Id, Is_Access_Constant    (T));
4985                Set_Directly_Designated_Type
4986                                      (Id, Designated_Type       (T));
4987                Set_Can_Never_Be_Null (Id, Can_Never_Be_Null     (T));
4988
4989                --  A Pure library_item must not contain the declaration of a
4990                --  named access type, except within a subprogram, generic
4991                --  subprogram, task unit, or protected unit, or if it has
4992                --  a specified Storage_Size of zero (RM05-10.2.1(15.4-15.5)).
4993
4994                if Comes_From_Source (Id)
4995                  and then In_Pure_Unit
4996                  and then not In_Subprogram_Task_Protected_Unit
4997                  and then not No_Pool_Assigned (Id)
4998                then
4999                   Error_Msg_N
5000                     ("named access types not allowed in pure unit", N);
5001                end if;
5002
5003             when Concurrent_Kind =>
5004                Set_Ekind                (Id, Subtype_Kind (Ekind   (T)));
5005                Set_Corresponding_Record_Type (Id,
5006                                          Corresponding_Record_Type (T));
5007                Set_First_Entity         (Id, First_Entity          (T));
5008                Set_First_Private_Entity (Id, First_Private_Entity  (T));
5009                Set_Has_Discriminants    (Id, Has_Discriminants     (T));
5010                Set_Is_Constrained       (Id, Is_Constrained        (T));
5011                Set_Is_Tagged_Type       (Id, Is_Tagged_Type        (T));
5012                Set_Last_Entity          (Id, Last_Entity           (T));
5013
5014                if Is_Tagged_Type (T) then
5015                   Set_No_Tagged_Streams_Pragma
5016                     (Id, No_Tagged_Streams_Pragma (T));
5017                end if;
5018
5019                if Has_Discriminants (T) then
5020                   Set_Discriminant_Constraint
5021                     (Id, Discriminant_Constraint (T));
5022                   Set_Stored_Constraint_From_Discriminant_Constraint (Id);
5023                end if;
5024
5025             when Incomplete_Kind  =>
5026                if Ada_Version >= Ada_2005 then
5027
5028                   --  In Ada 2005 an incomplete type can be explicitly tagged:
5029                   --  propagate indication. Note that we also have to include
5030                   --  subtypes for Ada 2012 extended use of incomplete types.
5031
5032                   Set_Ekind              (Id, E_Incomplete_Subtype);
5033                   Set_Is_Tagged_Type     (Id, Is_Tagged_Type (T));
5034                   Set_Private_Dependents (Id, New_Elmt_List);
5035
5036                   if Is_Tagged_Type (Id) then
5037                      Set_No_Tagged_Streams_Pragma
5038                        (Id, No_Tagged_Streams_Pragma (T));
5039                      Set_Direct_Primitive_Operations (Id, New_Elmt_List);
5040                   end if;
5041
5042                   --  Ada 2005 (AI-412): Decorate an incomplete subtype of an
5043                   --  incomplete type visible through a limited with clause.
5044
5045                   if From_Limited_With (T)
5046                     and then Present (Non_Limited_View (T))
5047                   then
5048                      Set_From_Limited_With (Id);
5049                      Set_Non_Limited_View  (Id, Non_Limited_View (T));
5050
5051                   --  Ada 2005 (AI-412): Add the regular incomplete subtype
5052                   --  to the private dependents of the original incomplete
5053                   --  type for future transformation.
5054
5055                   else
5056                      Append_Elmt (Id, Private_Dependents (T));
5057                   end if;
5058
5059                --  If the subtype name denotes an incomplete type an error
5060                --  was already reported by Process_Subtype.
5061
5062                else
5063                   Set_Etype (Id, Any_Type);
5064                end if;
5065
5066             when others =>
5067                raise Program_Error;
5068          end case;
5069       end if;
5070
5071       if Etype (Id) = Any_Type then
5072          goto Leave;
5073       end if;
5074
5075       --  Some common processing on all types
5076
5077       Set_Size_Info      (Id, T);
5078       Set_First_Rep_Item (Id, First_Rep_Item (T));
5079
5080       --  If the parent type is a generic actual, so is the subtype. This may
5081       --  happen in a nested instance. Why Comes_From_Source test???
5082
5083       if not Comes_From_Source (N) then
5084          Set_Is_Generic_Actual_Type (Id, Is_Generic_Actual_Type (T));
5085       end if;
5086
5087       T := Etype (Id);
5088
5089       Set_Is_Immediately_Visible   (Id, True);
5090       Set_Depends_On_Private       (Id, Has_Private_Component (T));
5091       Set_Is_Descendent_Of_Address (Id, Is_Descendent_Of_Address (T));
5092
5093       if Is_Interface (T) then
5094          Set_Is_Interface (Id);
5095       end if;
5096
5097       if Present (Generic_Parent_Type (N))
5098         and then
5099           (Nkind (Parent (Generic_Parent_Type (N))) /=
5100                                               N_Formal_Type_Declaration
5101             or else Nkind (Formal_Type_Definition
5102                             (Parent (Generic_Parent_Type (N)))) /=
5103                                               N_Formal_Private_Type_Definition)
5104       then
5105          if Is_Tagged_Type (Id) then
5106
5107             --  If this is a generic actual subtype for a synchronized type,
5108             --  the primitive operations are those of the corresponding record
5109             --  for which there is a separate subtype declaration.
5110
5111             if Is_Concurrent_Type (Id) then
5112                null;
5113             elsif Is_Class_Wide_Type (Id) then
5114                Derive_Subprograms (Generic_Parent_Type (N), Id, Etype (T));
5115             else
5116                Derive_Subprograms (Generic_Parent_Type (N), Id, T);
5117             end if;
5118
5119          elsif Scope (Etype (Id)) /= Standard_Standard then
5120             Derive_Subprograms (Generic_Parent_Type (N), Id);
5121          end if;
5122       end if;
5123
5124       if Is_Private_Type (T) and then Present (Full_View (T)) then
5125          Conditional_Delay (Id, Full_View (T));
5126
5127       --  The subtypes of components or subcomponents of protected types
5128       --  do not need freeze nodes, which would otherwise appear in the
5129       --  wrong scope (before the freeze node for the protected type). The
5130       --  proper subtypes are those of the subcomponents of the corresponding
5131       --  record.
5132
5133       elsif Ekind (Scope (Id)) /= E_Protected_Type
5134         and then Present (Scope (Scope (Id))) -- error defense
5135         and then Ekind (Scope (Scope (Id))) /= E_Protected_Type
5136       then
5137          Conditional_Delay (Id, T);
5138       end if;
5139
5140       --  Check that Constraint_Error is raised for a scalar subtype indication
5141       --  when the lower or upper bound of a non-null range lies outside the
5142       --  range of the type mark.
5143
5144       if Nkind (Subtype_Indication (N)) = N_Subtype_Indication then
5145          if Is_Scalar_Type (Etype (Id))
5146             and then Scalar_Range (Id) /=
5147                      Scalar_Range (Etype (Subtype_Mark
5148                                            (Subtype_Indication (N))))
5149          then
5150             Apply_Range_Check
5151               (Scalar_Range (Id),
5152                Etype (Subtype_Mark (Subtype_Indication (N))));
5153
5154          --  In the array case, check compatibility for each index
5155
5156          elsif Is_Array_Type (Etype (Id)) and then Present (First_Index (Id))
5157          then
5158             --  This really should be a subprogram that finds the indications
5159             --  to check???
5160
5161             declare
5162                Subt_Index   : Node_Id := First_Index (Id);
5163                Target_Index : Node_Id :=
5164                                 First_Index (Etype
5165                                   (Subtype_Mark (Subtype_Indication (N))));
5166                Has_Dyn_Chk  : Boolean := Has_Dynamic_Range_Check (N);
5167
5168             begin
5169                while Present (Subt_Index) loop
5170                   if ((Nkind (Subt_Index) = N_Identifier
5171                         and then Ekind (Entity (Subt_Index)) in Scalar_Kind)
5172                        or else Nkind (Subt_Index) = N_Subtype_Indication)
5173                     and then
5174                       Nkind (Scalar_Range (Etype (Subt_Index))) = N_Range
5175                   then
5176                      declare
5177                         Target_Typ : constant Entity_Id :=
5178                                        Etype (Target_Index);
5179                      begin
5180                         R_Checks :=
5181                           Get_Range_Checks
5182                             (Scalar_Range (Etype (Subt_Index)),
5183                              Target_Typ,
5184                              Etype (Subt_Index),
5185                              Defining_Identifier (N));
5186
5187                         --  Reset Has_Dynamic_Range_Check on the subtype to
5188                         --  prevent elision of the index check due to a dynamic
5189                         --  check generated for a preceding index (needed since
5190                         --  Insert_Range_Checks tries to avoid generating
5191                         --  redundant checks on a given declaration).
5192
5193                         Set_Has_Dynamic_Range_Check (N, False);
5194
5195                         Insert_Range_Checks
5196                           (R_Checks,
5197                            N,
5198                            Target_Typ,
5199                            Sloc (Defining_Identifier (N)));
5200
5201                         --  Record whether this index involved a dynamic check
5202
5203                         Has_Dyn_Chk :=
5204                           Has_Dyn_Chk or else Has_Dynamic_Range_Check (N);
5205                      end;
5206                   end if;
5207
5208                   Next_Index (Subt_Index);
5209                   Next_Index (Target_Index);
5210                end loop;
5211
5212                --  Finally, mark whether the subtype involves dynamic checks
5213
5214                Set_Has_Dynamic_Range_Check (N, Has_Dyn_Chk);
5215             end;
5216          end if;
5217       end if;
5218
5219       --  A type invariant applies to any subtype in its scope, in particular
5220       --  to a generic actual.
5221
5222       if Has_Invariants (T) and then In_Open_Scopes (Scope (T)) then
5223          Set_Has_Invariants (Id);
5224          Set_Invariant_Procedure (Id, Invariant_Procedure (T));
5225       end if;
5226
5227       --  Make sure that generic actual types are properly frozen. The subtype
5228       --  is marked as a generic actual type when the enclosing instance is
5229       --  analyzed, so here we identify the subtype from the tree structure.
5230
5231       if Expander_Active
5232         and then Is_Generic_Actual_Type (Id)
5233         and then In_Instance
5234         and then not Comes_From_Source (N)
5235         and then Nkind (Subtype_Indication (N)) /= N_Subtype_Indication
5236         and then Is_Frozen (T)
5237       then
5238          Freeze_Before (N, Id);
5239       end if;
5240
5241       Set_Optimize_Alignment_Flags (Id);
5242       Check_Eliminated (Id);
5243
5244    <<Leave>>
5245       if Has_Aspects (N) then
5246          Analyze_Aspect_Specifications (N, Id);
5247       end if;
5248
5249       Analyze_Dimension (N);
5250
5251       --  Check No_Dynamic_Sized_Objects restriction, which disallows subtype
5252       --  indications on composite types where the constraints are dynamic.
5253       --  Note that object declarations and aggregates generate implicit
5254       --  subtype declarations, which this covers. One special case is that the
5255       --  implicitly generated "=" for discriminated types includes an
5256       --  offending subtype declaration, which is harmless, so we ignore it
5257       --  here.
5258
5259       if Nkind (Subtype_Indication (N)) = N_Subtype_Indication then
5260          declare
5261             Cstr : constant Node_Id := Constraint (Subtype_Indication (N));
5262          begin
5263             if Nkind (Cstr) = N_Index_Or_Discriminant_Constraint
5264               and then not (Is_Internal (Id)
5265                              and then Is_TSS (Scope (Id),
5266                                               TSS_Composite_Equality))
5267               and then not Within_Init_Proc
5268               and then not All_Composite_Constraints_Static (Cstr)
5269             then
5270                Check_Restriction (No_Dynamic_Sized_Objects, Cstr);
5271             end if;
5272          end;
5273       end if;
5274    end Analyze_Subtype_Declaration;
5275
5276    --------------------------------
5277    -- Analyze_Subtype_Indication --
5278    --------------------------------
5279
5280    procedure Analyze_Subtype_Indication (N : Node_Id) is
5281       T : constant Entity_Id := Subtype_Mark (N);
5282       R : constant Node_Id   := Range_Expression (Constraint (N));
5283
5284    begin
5285       Analyze (T);
5286
5287       if R /= Error then
5288          Analyze (R);
5289          Set_Etype (N, Etype (R));
5290          Resolve (R, Entity (T));
5291       else
5292          Set_Error_Posted (R);
5293          Set_Error_Posted (T);
5294       end if;
5295    end Analyze_Subtype_Indication;
5296
5297    --------------------------
5298    -- Analyze_Variant_Part --
5299    --------------------------
5300
5301    procedure Analyze_Variant_Part (N : Node_Id) is
5302       Discr_Name : Node_Id;
5303       Discr_Type : Entity_Id;
5304
5305       procedure Process_Variant (A : Node_Id);
5306       --  Analyze declarations for a single variant
5307
5308       package Analyze_Variant_Choices is
5309         new Generic_Analyze_Choices (Process_Variant);
5310       use Analyze_Variant_Choices;
5311
5312       ---------------------
5313       -- Process_Variant --
5314       ---------------------
5315
5316       procedure Process_Variant (A : Node_Id) is
5317          CL : constant Node_Id := Component_List (A);
5318       begin
5319          if not Null_Present (CL) then
5320             Analyze_Declarations (Component_Items (CL));
5321
5322             if Present (Variant_Part (CL)) then
5323                Analyze (Variant_Part (CL));
5324             end if;
5325          end if;
5326       end Process_Variant;
5327
5328    --  Start of processing for Analyze_Variant_Part
5329
5330    begin
5331       Discr_Name := Name (N);
5332       Analyze (Discr_Name);
5333
5334       --  If Discr_Name bad, get out (prevent cascaded errors)
5335
5336       if Etype (Discr_Name) = Any_Type then
5337          return;
5338       end if;
5339
5340       --  Check invalid discriminant in variant part
5341
5342       if Ekind (Entity (Discr_Name)) /= E_Discriminant then
5343          Error_Msg_N ("invalid discriminant name in variant part", Discr_Name);
5344       end if;
5345
5346       Discr_Type := Etype (Entity (Discr_Name));
5347
5348       if not Is_Discrete_Type (Discr_Type) then
5349          Error_Msg_N
5350            ("discriminant in a variant part must be of a discrete type",
5351              Name (N));
5352          return;
5353       end if;
5354
5355       --  Now analyze the choices, which also analyzes the declarations that
5356       --  are associated with each choice.
5357
5358       Analyze_Choices (Variants (N), Discr_Type);
5359
5360       --  Note: we used to instantiate and call Check_Choices here to check
5361       --  that the choices covered the discriminant, but it's too early to do
5362       --  that because of statically predicated subtypes, whose analysis may
5363       --  be deferred to their freeze point which may be as late as the freeze
5364       --  point of the containing record. So this call is now to be found in
5365       --  Freeze_Record_Declaration.
5366
5367    end Analyze_Variant_Part;
5368
5369    ----------------------------
5370    -- Array_Type_Declaration --
5371    ----------------------------
5372
5373    procedure Array_Type_Declaration (T : in out Entity_Id; Def : Node_Id) is
5374       Component_Def : constant Node_Id := Component_Definition (Def);
5375       Component_Typ : constant Node_Id := Subtype_Indication (Component_Def);
5376       Element_Type  : Entity_Id;
5377       Implicit_Base : Entity_Id;
5378       Index         : Node_Id;
5379       Related_Id    : Entity_Id := Empty;
5380       Nb_Index      : Nat;
5381       P             : constant Node_Id := Parent (Def);
5382       Priv          : Entity_Id;
5383
5384    begin
5385       if Nkind (Def) = N_Constrained_Array_Definition then
5386          Index := First (Discrete_Subtype_Definitions (Def));
5387       else
5388          Index := First (Subtype_Marks (Def));
5389       end if;
5390
5391       --  Find proper names for the implicit types which may be public. In case
5392       --  of anonymous arrays we use the name of the first object of that type
5393       --  as prefix.
5394
5395       if No (T) then
5396          Related_Id := Defining_Identifier (P);
5397       else
5398          Related_Id := T;
5399       end if;
5400
5401       Nb_Index := 1;
5402       while Present (Index) loop
5403          Analyze (Index);
5404
5405          --  Test for odd case of trying to index a type by the type itself
5406
5407          if Is_Entity_Name (Index) and then Entity (Index) = T then
5408             Error_Msg_N ("type& cannot be indexed by itself", Index);
5409             Set_Entity (Index, Standard_Boolean);
5410             Set_Etype (Index, Standard_Boolean);
5411          end if;
5412
5413          --  Check SPARK restriction requiring a subtype mark
5414
5415          if not Nkind_In (Index, N_Identifier, N_Expanded_Name) then
5416             Check_SPARK_05_Restriction ("subtype mark required", Index);
5417          end if;
5418
5419          --  Add a subtype declaration for each index of private array type
5420          --  declaration whose etype is also private. For example:
5421
5422          --     package Pkg is
5423          --        type Index is private;
5424          --     private
5425          --        type Table is array (Index) of ...
5426          --     end;
5427
5428          --  This is currently required by the expander for the internally
5429          --  generated equality subprogram of records with variant parts in
5430          --  which the etype of some component is such private type.
5431
5432          if Ekind (Current_Scope) = E_Package
5433            and then In_Private_Part (Current_Scope)
5434            and then Has_Private_Declaration (Etype (Index))
5435          then
5436             declare
5437                Loc   : constant Source_Ptr := Sloc (Def);
5438                New_E : Entity_Id;
5439                Decl  : Entity_Id;
5440
5441             begin
5442                New_E := Make_Temporary (Loc, 'T');
5443                Set_Is_Internal (New_E);
5444
5445                Decl :=
5446                  Make_Subtype_Declaration (Loc,
5447                    Defining_Identifier => New_E,
5448                    Subtype_Indication  =>
5449                      New_Occurrence_Of (Etype (Index), Loc));
5450
5451                Insert_Before (Parent (Def), Decl);
5452                Analyze (Decl);
5453                Set_Etype (Index, New_E);
5454
5455                --  If the index is a range the Entity attribute is not
5456                --  available. Example:
5457
5458                --     package Pkg is
5459                --        type T is private;
5460                --     private
5461                --        type T is new Natural;
5462                --        Table : array (T(1) .. T(10)) of Boolean;
5463                --     end Pkg;
5464
5465                if Nkind (Index) /= N_Range then
5466                   Set_Entity (Index, New_E);
5467                end if;
5468             end;
5469          end if;
5470
5471          Make_Index (Index, P, Related_Id, Nb_Index);
5472
5473          --  Check error of subtype with predicate for index type
5474
5475          Bad_Predicated_Subtype_Use
5476            ("subtype& has predicate, not allowed as index subtype",
5477             Index, Etype (Index));
5478
5479          --  Move to next index
5480
5481          Next_Index (Index);
5482          Nb_Index := Nb_Index + 1;
5483       end loop;
5484
5485       --  Process subtype indication if one is present
5486
5487       if Present (Component_Typ) then
5488          Element_Type := Process_Subtype (Component_Typ, P, Related_Id, 'C');
5489
5490          Set_Etype (Component_Typ, Element_Type);
5491
5492          if not Nkind_In (Component_Typ, N_Identifier, N_Expanded_Name) then
5493             Check_SPARK_05_Restriction
5494               ("subtype mark required", Component_Typ);
5495          end if;
5496
5497       --  Ada 2005 (AI-230): Access Definition case
5498
5499       else pragma Assert (Present (Access_Definition (Component_Def)));
5500
5501          --  Indicate that the anonymous access type is created by the
5502          --  array type declaration.
5503
5504          Element_Type := Access_Definition
5505                            (Related_Nod => P,
5506                             N           => Access_Definition (Component_Def));
5507          Set_Is_Local_Anonymous_Access (Element_Type);
5508
5509          --  Propagate the parent. This field is needed if we have to generate
5510          --  the master_id associated with an anonymous access to task type
5511          --  component (see Expand_N_Full_Type_Declaration.Build_Master)
5512
5513          Set_Parent (Element_Type, Parent (T));
5514
5515          --  Ada 2005 (AI-230): In case of components that are anonymous access
5516          --  types the level of accessibility depends on the enclosing type
5517          --  declaration
5518
5519          Set_Scope (Element_Type, Current_Scope); -- Ada 2005 (AI-230)
5520
5521          --  Ada 2005 (AI-254)
5522
5523          declare
5524             CD : constant Node_Id :=
5525                    Access_To_Subprogram_Definition
5526                      (Access_Definition (Component_Def));
5527          begin
5528             if Present (CD) and then Protected_Present (CD) then
5529                Element_Type :=
5530                  Replace_Anonymous_Access_To_Protected_Subprogram (Def);
5531             end if;
5532          end;
5533       end if;
5534
5535       --  Constrained array case
5536
5537       if No (T) then
5538          T := Create_Itype (E_Void, P, Related_Id, 'T');
5539       end if;
5540
5541       if Nkind (Def) = N_Constrained_Array_Definition then
5542
5543          --  Establish Implicit_Base as unconstrained base type
5544
5545          Implicit_Base := Create_Itype (E_Array_Type, P, Related_Id, 'B');
5546
5547          Set_Etype              (Implicit_Base, Implicit_Base);
5548          Set_Scope              (Implicit_Base, Current_Scope);
5549          Set_Has_Delayed_Freeze (Implicit_Base);
5550          Set_Default_SSO        (Implicit_Base);
5551
5552          --  The constrained array type is a subtype of the unconstrained one
5553
5554          Set_Ekind              (T, E_Array_Subtype);
5555          Init_Size_Align        (T);
5556          Set_Etype              (T, Implicit_Base);
5557          Set_Scope              (T, Current_Scope);
5558          Set_Is_Constrained     (T);
5559          Set_First_Index        (T,
5560            First (Discrete_Subtype_Definitions (Def)));
5561          Set_Has_Delayed_Freeze (T);
5562
5563          --  Complete setup of implicit base type
5564
5565          Set_First_Index       (Implicit_Base, First_Index (T));
5566          Set_Component_Type    (Implicit_Base, Element_Type);
5567          Set_Has_Task          (Implicit_Base, Has_Task (Element_Type));
5568          Set_Has_Protected     (Implicit_Base, Has_Protected (Element_Type));
5569          Set_Component_Size    (Implicit_Base, Uint_0);
5570          Set_Packed_Array_Impl_Type (Implicit_Base, Empty);
5571          Set_Has_Controlled_Component (Implicit_Base,
5572            Has_Controlled_Component (Element_Type)
5573              or else Is_Controlled_Active  (Element_Type));
5574          Set_Finalize_Storage_Only (Implicit_Base,
5575            Finalize_Storage_Only (Element_Type));
5576
5577          --  Inherit the "ghostness" from the constrained array type
5578
5579          if Ghost_Mode > None or else Is_Ghost_Entity (T) then
5580             Set_Is_Ghost_Entity (Implicit_Base);
5581          end if;
5582
5583       --  Unconstrained array case
5584
5585       else
5586          Set_Ekind                    (T, E_Array_Type);
5587          Init_Size_Align              (T);
5588          Set_Etype                    (T, T);
5589          Set_Scope                    (T, Current_Scope);
5590          Set_Component_Size           (T, Uint_0);
5591          Set_Is_Constrained           (T, False);
5592          Set_First_Index              (T, First (Subtype_Marks (Def)));
5593          Set_Has_Delayed_Freeze       (T, True);
5594          Set_Has_Task                 (T, Has_Task      (Element_Type));
5595          Set_Has_Protected            (T, Has_Protected (Element_Type));
5596          Set_Has_Controlled_Component (T, Has_Controlled_Component
5597                                                         (Element_Type)
5598                                             or else
5599                                           Is_Controlled_Active (Element_Type));
5600          Set_Finalize_Storage_Only    (T, Finalize_Storage_Only
5601                                                         (Element_Type));
5602          Set_Default_SSO              (T);
5603       end if;
5604
5605       --  Common attributes for both cases
5606
5607       Set_Component_Type (Base_Type (T), Element_Type);
5608       Set_Packed_Array_Impl_Type (T, Empty);
5609
5610       if Aliased_Present (Component_Definition (Def)) then
5611          Check_SPARK_05_Restriction
5612            ("aliased is not allowed", Component_Definition (Def));
5613          Set_Has_Aliased_Components (Etype (T));
5614       end if;
5615
5616       --  Ada 2005 (AI-231): Propagate the null-excluding attribute to the
5617       --  array type to ensure that objects of this type are initialized.
5618
5619       if Ada_Version >= Ada_2005 and then Can_Never_Be_Null (Element_Type) then
5620          Set_Can_Never_Be_Null (T);
5621
5622          if Null_Exclusion_Present (Component_Definition (Def))
5623
5624             --  No need to check itypes because in their case this check was
5625             --  done at their point of creation
5626
5627            and then not Is_Itype (Element_Type)
5628          then
5629             Error_Msg_N
5630               ("`NOT NULL` not allowed (null already excluded)",
5631                Subtype_Indication (Component_Definition (Def)));
5632          end if;
5633       end if;
5634
5635       Priv := Private_Component (Element_Type);
5636
5637       if Present (Priv) then
5638
5639          --  Check for circular definitions
5640
5641          if Priv = Any_Type then
5642             Set_Component_Type (Etype (T), Any_Type);
5643
5644          --  There is a gap in the visibility of operations on the composite
5645          --  type only if the component type is defined in a different scope.
5646
5647          elsif Scope (Priv) = Current_Scope then
5648             null;
5649
5650          elsif Is_Limited_Type (Priv) then
5651             Set_Is_Limited_Composite (Etype (T));
5652             Set_Is_Limited_Composite (T);
5653          else
5654             Set_Is_Private_Composite (Etype (T));
5655             Set_Is_Private_Composite (T);
5656          end if;
5657       end if;
5658
5659       --  A syntax error in the declaration itself may lead to an empty index
5660       --  list, in which case do a minimal patch.
5661
5662       if No (First_Index (T)) then
5663          Error_Msg_N ("missing index definition in array type declaration", T);
5664
5665          declare
5666             Indexes : constant List_Id :=
5667                         New_List (New_Occurrence_Of (Any_Id, Sloc (T)));
5668          begin
5669             Set_Discrete_Subtype_Definitions (Def, Indexes);
5670             Set_First_Index (T, First (Indexes));
5671             return;
5672          end;
5673       end if;
5674
5675       --  Create a concatenation operator for the new type. Internal array
5676       --  types created for packed entities do not need such, they are
5677       --  compatible with the user-defined type.
5678
5679       if Number_Dimensions (T) = 1
5680         and then not Is_Packed_Array_Impl_Type (T)
5681       then
5682          New_Concatenation_Op (T);
5683       end if;
5684
5685       --  In the case of an unconstrained array the parser has already verified
5686       --  that all the indexes are unconstrained but we still need to make sure
5687       --  that the element type is constrained.
5688
5689       if not Is_Definite_Subtype (Element_Type) then
5690          Error_Msg_N
5691            ("unconstrained element type in array declaration",
5692             Subtype_Indication (Component_Def));
5693
5694       elsif Is_Abstract_Type (Element_Type) then
5695          Error_Msg_N
5696            ("the type of a component cannot be abstract",
5697             Subtype_Indication (Component_Def));
5698       end if;
5699
5700       --  There may be an invariant declared for the component type, but
5701       --  the construction of the component invariant checking procedure
5702       --  takes place during expansion.
5703    end Array_Type_Declaration;
5704
5705    ------------------------------------------------------
5706    -- Replace_Anonymous_Access_To_Protected_Subprogram --
5707    ------------------------------------------------------
5708
5709    function Replace_Anonymous_Access_To_Protected_Subprogram
5710      (N : Node_Id) return Entity_Id
5711    is
5712       Loc : constant Source_Ptr := Sloc (N);
5713
5714       Curr_Scope : constant Scope_Stack_Entry :=
5715                      Scope_Stack.Table (Scope_Stack.Last);
5716
5717       Anon : constant Entity_Id := Make_Temporary (Loc, 'S');
5718
5719       Acc : Node_Id;
5720       --  Access definition in declaration
5721
5722       Comp : Node_Id;
5723       --  Object definition or formal definition with an access definition
5724
5725       Decl : Node_Id;
5726       --  Declaration of anonymous access to subprogram type
5727
5728       Spec : Node_Id;
5729       --  Original specification in access to subprogram
5730
5731       P : Node_Id;
5732
5733    begin
5734       Set_Is_Internal (Anon);
5735
5736       case Nkind (N) is
5737          when N_Component_Declaration       |
5738            N_Unconstrained_Array_Definition |
5739            N_Constrained_Array_Definition   =>
5740             Comp := Component_Definition (N);
5741             Acc  := Access_Definition (Comp);
5742
5743          when N_Discriminant_Specification =>
5744             Comp := Discriminant_Type (N);
5745             Acc  := Comp;
5746
5747          when N_Parameter_Specification =>
5748             Comp := Parameter_Type (N);
5749             Acc  := Comp;
5750
5751          when N_Access_Function_Definition  =>
5752             Comp := Result_Definition (N);
5753             Acc  := Comp;
5754
5755          when N_Object_Declaration  =>
5756             Comp := Object_Definition (N);
5757             Acc  := Comp;
5758
5759          when N_Function_Specification =>
5760             Comp := Result_Definition (N);
5761             Acc  := Comp;
5762
5763          when others =>
5764             raise Program_Error;
5765       end case;
5766
5767       Spec := Access_To_Subprogram_Definition (Acc);
5768
5769       Decl :=
5770         Make_Full_Type_Declaration (Loc,
5771           Defining_Identifier => Anon,
5772           Type_Definition     => Copy_Separate_Tree (Spec));
5773
5774       Mark_Rewrite_Insertion (Decl);
5775
5776       --  In ASIS mode, analyze the profile on the original node, because
5777       --  the separate copy does not provide enough links to recover the
5778       --  original tree. Analysis is limited to type annotations, within
5779       --  a temporary scope that serves as an anonymous subprogram to collect
5780       --  otherwise useless temporaries and itypes.
5781
5782       if ASIS_Mode then
5783          declare
5784             Typ : constant Entity_Id := Make_Temporary (Loc, 'S');
5785
5786          begin
5787             if Nkind (Spec) = N_Access_Function_Definition then
5788                Set_Ekind (Typ, E_Function);
5789             else
5790                Set_Ekind (Typ, E_Procedure);
5791             end if;
5792
5793             Set_Parent (Typ, N);
5794             Set_Scope  (Typ, Current_Scope);
5795             Push_Scope (Typ);
5796
5797             --  Nothing to do if procedure is parameterless
5798
5799             if Present (Parameter_Specifications (Spec)) then
5800                Process_Formals (Parameter_Specifications (Spec), Spec);
5801             end if;
5802
5803             if Nkind (Spec) = N_Access_Function_Definition then
5804                declare
5805                   Def : constant Node_Id := Result_Definition (Spec);
5806
5807                begin
5808                   --  The result might itself be an anonymous access type, so
5809                   --  have to recurse.
5810
5811                   if Nkind (Def) = N_Access_Definition then
5812                      if Present (Access_To_Subprogram_Definition (Def)) then
5813                         Set_Etype
5814                           (Def,
5815                            Replace_Anonymous_Access_To_Protected_Subprogram
5816                             (Spec));
5817                      else
5818                         Find_Type (Subtype_Mark (Def));
5819                      end if;
5820
5821                   else
5822                      Find_Type (Def);
5823                   end if;
5824                end;
5825             end if;
5826
5827             End_Scope;
5828          end;
5829       end if;
5830
5831       --  Insert the new declaration in the nearest enclosing scope. If the
5832       --  node is a body and N is its return type, the declaration belongs in
5833       --  the enclosing scope.
5834
5835       P := Parent (N);
5836
5837       if Nkind (P) = N_Subprogram_Body
5838         and then Nkind (N) = N_Function_Specification
5839       then
5840          P := Parent (P);
5841       end if;
5842
5843       while Present (P) and then not Has_Declarations (P) loop
5844          P := Parent (P);
5845       end loop;
5846
5847       pragma Assert (Present (P));
5848
5849       if Nkind (P) = N_Package_Specification then
5850          Prepend (Decl, Visible_Declarations (P));
5851       else
5852          Prepend (Decl, Declarations (P));
5853       end if;
5854
5855       --  Replace the anonymous type with an occurrence of the new declaration.
5856       --  In all cases the rewritten node does not have the null-exclusion
5857       --  attribute because (if present) it was already inherited by the
5858       --  anonymous entity (Anon). Thus, in case of components we do not
5859       --  inherit this attribute.
5860
5861       if Nkind (N) = N_Parameter_Specification then
5862          Rewrite (Comp, New_Occurrence_Of (Anon, Loc));
5863          Set_Etype (Defining_Identifier (N), Anon);
5864          Set_Null_Exclusion_Present (N, False);
5865
5866       elsif Nkind (N) = N_Object_Declaration then
5867          Rewrite (Comp, New_Occurrence_Of (Anon, Loc));
5868          Set_Etype (Defining_Identifier (N), Anon);
5869
5870       elsif Nkind (N) = N_Access_Function_Definition then
5871          Rewrite (Comp, New_Occurrence_Of (Anon, Loc));
5872
5873       elsif Nkind (N) = N_Function_Specification then
5874          Rewrite (Comp, New_Occurrence_Of (Anon, Loc));
5875          Set_Etype (Defining_Unit_Name (N), Anon);
5876
5877       else
5878          Rewrite (Comp,
5879            Make_Component_Definition (Loc,
5880              Subtype_Indication => New_Occurrence_Of (Anon, Loc)));
5881       end if;
5882
5883       Mark_Rewrite_Insertion (Comp);
5884
5885       if Nkind_In (N, N_Object_Declaration, N_Access_Function_Definition)
5886         or else (Nkind (Parent (N)) = N_Full_Type_Declaration
5887                   and then not Is_Type (Current_Scope))
5888       then
5889
5890          --  Declaration can be analyzed in the current scope.
5891
5892          Analyze (Decl);
5893
5894       else
5895          --  Temporarily remove the current scope (record or subprogram) from
5896          --  the stack to add the new declarations to the enclosing scope.
5897          --  The anonymous entity is an Itype with the proper attributes.
5898
5899          Scope_Stack.Decrement_Last;
5900          Analyze (Decl);
5901          Set_Is_Itype (Anon);
5902          Set_Associated_Node_For_Itype (Anon, N);
5903          Scope_Stack.Append (Curr_Scope);
5904       end if;
5905
5906       Set_Ekind (Anon, E_Anonymous_Access_Protected_Subprogram_Type);
5907       Set_Can_Use_Internal_Rep (Anon, not Always_Compatible_Rep_On_Target);
5908       return Anon;
5909    end Replace_Anonymous_Access_To_Protected_Subprogram;
5910
5911    -------------------------------
5912    -- Build_Derived_Access_Type --
5913    -------------------------------
5914
5915    procedure Build_Derived_Access_Type
5916      (N            : Node_Id;
5917       Parent_Type  : Entity_Id;
5918       Derived_Type : Entity_Id)
5919    is
5920       S : constant Node_Id := Subtype_Indication (Type_Definition (N));
5921
5922       Desig_Type      : Entity_Id;
5923       Discr           : Entity_Id;
5924       Discr_Con_Elist : Elist_Id;
5925       Discr_Con_El    : Elmt_Id;
5926       Subt            : Entity_Id;
5927
5928    begin
5929       --  Set the designated type so it is available in case this is an access
5930       --  to a self-referential type, e.g. a standard list type with a next
5931       --  pointer. Will be reset after subtype is built.
5932
5933       Set_Directly_Designated_Type
5934         (Derived_Type, Designated_Type (Parent_Type));
5935
5936       Subt := Process_Subtype (S, N);
5937
5938       if Nkind (S) /= N_Subtype_Indication
5939         and then Subt /= Base_Type (Subt)
5940       then
5941          Set_Ekind (Derived_Type, E_Access_Subtype);
5942       end if;
5943
5944       if Ekind (Derived_Type) = E_Access_Subtype then
5945          declare
5946             Pbase      : constant Entity_Id := Base_Type (Parent_Type);
5947             Ibase      : constant Entity_Id :=
5948                            Create_Itype (Ekind (Pbase), N, Derived_Type, 'B');
5949             Svg_Chars  : constant Name_Id   := Chars (Ibase);
5950             Svg_Next_E : constant Entity_Id := Next_Entity (Ibase);
5951
5952          begin
5953             Copy_Node (Pbase, Ibase);
5954
5955             Set_Chars             (Ibase, Svg_Chars);
5956             Set_Next_Entity       (Ibase, Svg_Next_E);
5957             Set_Sloc              (Ibase, Sloc (Derived_Type));
5958             Set_Scope             (Ibase, Scope (Derived_Type));
5959             Set_Freeze_Node       (Ibase, Empty);
5960             Set_Is_Frozen         (Ibase, False);
5961             Set_Comes_From_Source (Ibase, False);
5962             Set_Is_First_Subtype  (Ibase, False);
5963
5964             Set_Etype (Ibase, Pbase);
5965             Set_Etype (Derived_Type, Ibase);
5966          end;
5967       end if;
5968
5969       Set_Directly_Designated_Type
5970         (Derived_Type, Designated_Type (Subt));
5971
5972       Set_Is_Constrained     (Derived_Type, Is_Constrained (Subt));
5973       Set_Is_Access_Constant (Derived_Type, Is_Access_Constant (Parent_Type));
5974       Set_Size_Info          (Derived_Type,                     Parent_Type);
5975       Set_RM_Size            (Derived_Type, RM_Size            (Parent_Type));
5976       Set_Depends_On_Private (Derived_Type,
5977                               Has_Private_Component (Derived_Type));
5978       Conditional_Delay      (Derived_Type, Subt);
5979
5980       --  Ada 2005 (AI-231): Set the null-exclusion attribute, and verify
5981       --  that it is not redundant.
5982
5983       if Null_Exclusion_Present (Type_Definition (N)) then
5984          Set_Can_Never_Be_Null (Derived_Type);
5985
5986          --  What is with the "AND THEN FALSE" here ???
5987
5988          if Can_Never_Be_Null (Parent_Type)
5989            and then False
5990          then
5991             Error_Msg_NE
5992               ("`NOT NULL` not allowed (& already excludes null)",
5993                 N, Parent_Type);
5994          end if;
5995
5996       elsif Can_Never_Be_Null (Parent_Type) then
5997          Set_Can_Never_Be_Null (Derived_Type);
5998       end if;
5999
6000       --  Note: we do not copy the Storage_Size_Variable, since we always go to
6001       --  the root type for this information.
6002
6003       --  Apply range checks to discriminants for derived record case
6004       --  ??? THIS CODE SHOULD NOT BE HERE REALLY.
6005
6006       Desig_Type := Designated_Type (Derived_Type);
6007       if Is_Composite_Type (Desig_Type)
6008         and then (not Is_Array_Type (Desig_Type))
6009         and then Has_Discriminants (Desig_Type)
6010         and then Base_Type (Desig_Type) /= Desig_Type
6011       then
6012          Discr_Con_Elist := Discriminant_Constraint (Desig_Type);
6013          Discr_Con_El := First_Elmt (Discr_Con_Elist);
6014
6015          Discr := First_Discriminant (Base_Type (Desig_Type));
6016          while Present (Discr_Con_El) loop
6017             Apply_Range_Check (Node (Discr_Con_El), Etype (Discr));
6018             Next_Elmt (Discr_Con_El);
6019             Next_Discriminant (Discr);
6020          end loop;
6021       end if;
6022    end Build_Derived_Access_Type;
6023
6024    ------------------------------
6025    -- Build_Derived_Array_Type --
6026    ------------------------------
6027
6028    procedure Build_Derived_Array_Type
6029      (N            : Node_Id;
6030       Parent_Type  : Entity_Id;
6031       Derived_Type : Entity_Id)
6032    is
6033       Loc           : constant Source_Ptr := Sloc (N);
6034       Tdef          : constant Node_Id    := Type_Definition (N);
6035       Indic         : constant Node_Id    := Subtype_Indication (Tdef);
6036       Parent_Base   : constant Entity_Id  := Base_Type (Parent_Type);
6037       Implicit_Base : Entity_Id;
6038       New_Indic     : Node_Id;
6039
6040       procedure Make_Implicit_Base;
6041       --  If the parent subtype is constrained, the derived type is a subtype
6042       --  of an implicit base type derived from the parent base.
6043
6044       ------------------------
6045       -- Make_Implicit_Base --
6046       ------------------------
6047
6048       procedure Make_Implicit_Base is
6049       begin
6050          Implicit_Base :=
6051            Create_Itype (Ekind (Parent_Base), N, Derived_Type, 'B');
6052
6053          Set_Ekind (Implicit_Base, Ekind (Parent_Base));
6054          Set_Etype (Implicit_Base, Parent_Base);
6055
6056          Copy_Array_Subtype_Attributes   (Implicit_Base, Parent_Base);
6057          Copy_Array_Base_Type_Attributes (Implicit_Base, Parent_Base);
6058
6059          Set_Has_Delayed_Freeze (Implicit_Base, True);
6060
6061          --  Inherit the "ghostness" from the parent base type
6062
6063          if Ghost_Mode > None or else Is_Ghost_Entity (Parent_Base) then
6064             Set_Is_Ghost_Entity (Implicit_Base);
6065          end if;
6066       end Make_Implicit_Base;
6067
6068    --  Start of processing for Build_Derived_Array_Type
6069
6070    begin
6071       if not Is_Constrained (Parent_Type) then
6072          if Nkind (Indic) /= N_Subtype_Indication then
6073             Set_Ekind (Derived_Type, E_Array_Type);
6074
6075             Copy_Array_Subtype_Attributes   (Derived_Type, Parent_Type);
6076             Copy_Array_Base_Type_Attributes (Derived_Type, Parent_Type);
6077
6078             Set_Has_Delayed_Freeze (Derived_Type, True);
6079
6080          else
6081             Make_Implicit_Base;
6082             Set_Etype (Derived_Type, Implicit_Base);
6083
6084             New_Indic :=
6085               Make_Subtype_Declaration (Loc,
6086                 Defining_Identifier => Derived_Type,
6087                 Subtype_Indication  =>
6088                   Make_Subtype_Indication (Loc,
6089                     Subtype_Mark => New_Occurrence_Of (Implicit_Base, Loc),
6090                     Constraint => Constraint (Indic)));
6091
6092             Rewrite (N, New_Indic);
6093             Analyze (N);
6094          end if;
6095
6096       else
6097          if Nkind (Indic) /= N_Subtype_Indication then
6098             Make_Implicit_Base;
6099
6100             Set_Ekind                     (Derived_Type, Ekind (Parent_Type));
6101             Set_Etype                     (Derived_Type, Implicit_Base);
6102             Copy_Array_Subtype_Attributes (Derived_Type, Parent_Type);
6103
6104          else
6105             Error_Msg_N ("illegal constraint on constrained type", Indic);
6106          end if;
6107       end if;
6108
6109       --  If parent type is not a derived type itself, and is declared in
6110       --  closed scope (e.g. a subprogram), then we must explicitly introduce
6111       --  the new type's concatenation operator since Derive_Subprograms
6112       --  will not inherit the parent's operator. If the parent type is
6113       --  unconstrained, the operator is of the unconstrained base type.
6114
6115       if Number_Dimensions (Parent_Type) = 1
6116         and then not Is_Limited_Type (Parent_Type)
6117         and then not Is_Derived_Type (Parent_Type)
6118         and then not Is_Package_Or_Generic_Package
6119                        (Scope (Base_Type (Parent_Type)))
6120       then
6121          if not Is_Constrained (Parent_Type)
6122            and then Is_Constrained (Derived_Type)
6123          then
6124             New_Concatenation_Op (Implicit_Base);
6125          else
6126             New_Concatenation_Op (Derived_Type);
6127          end if;
6128       end if;
6129    end Build_Derived_Array_Type;
6130
6131    -----------------------------------
6132    -- Build_Derived_Concurrent_Type --
6133    -----------------------------------
6134
6135    procedure Build_Derived_Concurrent_Type
6136      (N            : Node_Id;
6137       Parent_Type  : Entity_Id;
6138       Derived_Type : Entity_Id)
6139    is
6140       Loc : constant Source_Ptr := Sloc (N);
6141
6142       Corr_Record      : constant Entity_Id := Make_Temporary (Loc, 'C');
6143       Corr_Decl        : Node_Id;
6144       Corr_Decl_Needed : Boolean;
6145       --  If the derived type has fewer discriminants than its parent, the
6146       --  corresponding record is also a derived type, in order to account for
6147       --  the bound discriminants. We create a full type declaration for it in
6148       --  this case.
6149
6150       Constraint_Present : constant Boolean :=
6151                              Nkind (Subtype_Indication (Type_Definition (N))) =
6152                                                           N_Subtype_Indication;
6153
6154       D_Constraint   : Node_Id;
6155       New_Constraint : Elist_Id;
6156       Old_Disc       : Entity_Id;
6157       New_Disc       : Entity_Id;
6158       New_N          : Node_Id;
6159
6160    begin
6161       Set_Stored_Constraint (Derived_Type, No_Elist);
6162       Corr_Decl_Needed := False;
6163       Old_Disc := Empty;
6164
6165       if Present (Discriminant_Specifications (N))
6166         and then Constraint_Present
6167       then
6168          Old_Disc := First_Discriminant (Parent_Type);
6169          New_Disc := First (Discriminant_Specifications (N));
6170          while Present (New_Disc) and then Present (Old_Disc) loop
6171             Next_Discriminant (Old_Disc);
6172             Next (New_Disc);
6173          end loop;
6174       end if;
6175
6176       if Present (Old_Disc) and then Expander_Active then
6177
6178          --  The new type has fewer discriminants, so we need to create a new
6179          --  corresponding record, which is derived from the corresponding
6180          --  record of the parent, and has a stored constraint that captures
6181          --  the values of the discriminant constraints. The corresponding
6182          --  record is needed only if expander is active and code generation is
6183          --  enabled.
6184
6185          --  The type declaration for the derived corresponding record has the
6186          --  same discriminant part and constraints as the current declaration.
6187          --  Copy the unanalyzed tree to build declaration.
6188
6189          Corr_Decl_Needed := True;
6190          New_N := Copy_Separate_Tree (N);
6191
6192          Corr_Decl :=
6193            Make_Full_Type_Declaration (Loc,
6194              Defining_Identifier         => Corr_Record,
6195              Discriminant_Specifications =>
6196                 Discriminant_Specifications (New_N),
6197              Type_Definition             =>
6198                Make_Derived_Type_Definition (Loc,
6199                  Subtype_Indication =>
6200                    Make_Subtype_Indication (Loc,
6201                      Subtype_Mark =>
6202                         New_Occurrence_Of
6203                           (Corresponding_Record_Type (Parent_Type), Loc),
6204                      Constraint   =>
6205                        Constraint
6206                          (Subtype_Indication (Type_Definition (New_N))))));
6207       end if;
6208
6209       --  Copy Storage_Size and Relative_Deadline variables if task case
6210
6211       if Is_Task_Type (Parent_Type) then
6212          Set_Storage_Size_Variable (Derived_Type,
6213            Storage_Size_Variable (Parent_Type));
6214          Set_Relative_Deadline_Variable (Derived_Type,
6215            Relative_Deadline_Variable (Parent_Type));
6216       end if;
6217
6218       if Present (Discriminant_Specifications (N)) then
6219          Push_Scope (Derived_Type);
6220          Check_Or_Process_Discriminants (N, Derived_Type);
6221
6222          if Constraint_Present then
6223             New_Constraint :=
6224               Expand_To_Stored_Constraint
6225                 (Parent_Type,
6226                  Build_Discriminant_Constraints
6227                    (Parent_Type,
6228                     Subtype_Indication (Type_Definition (N)), True));
6229          end if;
6230
6231          End_Scope;
6232
6233       elsif Constraint_Present then
6234
6235          --  Build constrained subtype, copying the constraint, and derive
6236          --  from it to create a derived constrained type.
6237
6238          declare
6239             Loc  : constant Source_Ptr := Sloc (N);
6240             Anon : constant Entity_Id :=
6241                      Make_Defining_Identifier (Loc,
6242                        Chars => New_External_Name (Chars (Derived_Type), 'T'));
6243             Decl : Node_Id;
6244
6245          begin
6246             Decl :=
6247               Make_Subtype_Declaration (Loc,
6248                 Defining_Identifier => Anon,
6249                 Subtype_Indication =>
6250                   New_Copy_Tree (Subtype_Indication (Type_Definition (N))));
6251             Insert_Before (N, Decl);
6252             Analyze (Decl);
6253
6254             Rewrite (Subtype_Indication (Type_Definition (N)),
6255               New_Occurrence_Of (Anon, Loc));
6256             Set_Analyzed (Derived_Type, False);
6257             Analyze (N);
6258             return;
6259          end;
6260       end if;
6261
6262       --  By default, operations and private data are inherited from parent.
6263       --  However, in the presence of bound discriminants, a new corresponding
6264       --  record will be created, see below.
6265
6266       Set_Has_Discriminants
6267         (Derived_Type, Has_Discriminants         (Parent_Type));
6268       Set_Corresponding_Record_Type
6269         (Derived_Type, Corresponding_Record_Type (Parent_Type));
6270
6271       --  Is_Constrained is set according the parent subtype, but is set to
6272       --  False if the derived type is declared with new discriminants.
6273
6274       Set_Is_Constrained
6275         (Derived_Type,
6276          (Is_Constrained (Parent_Type) or else Constraint_Present)
6277            and then not Present (Discriminant_Specifications (N)));
6278
6279       if Constraint_Present then
6280          if not Has_Discriminants (Parent_Type) then
6281             Error_Msg_N ("untagged parent must have discriminants", N);
6282
6283          elsif Present (Discriminant_Specifications (N)) then
6284
6285             --  Verify that new discriminants are used to constrain old ones
6286
6287             D_Constraint :=
6288               First
6289                 (Constraints
6290                   (Constraint (Subtype_Indication (Type_Definition (N)))));
6291
6292             Old_Disc := First_Discriminant (Parent_Type);
6293
6294             while Present (D_Constraint) loop
6295                if Nkind (D_Constraint) /= N_Discriminant_Association then
6296
6297                   --  Positional constraint. If it is a reference to a new
6298                   --  discriminant, it constrains the corresponding old one.
6299
6300                   if Nkind (D_Constraint) = N_Identifier then
6301                      New_Disc := First_Discriminant (Derived_Type);
6302                      while Present (New_Disc) loop
6303                         exit when Chars (New_Disc) = Chars (D_Constraint);
6304                         Next_Discriminant (New_Disc);
6305                      end loop;
6306
6307                      if Present (New_Disc) then
6308                         Set_Corresponding_Discriminant (New_Disc, Old_Disc);
6309                      end if;
6310                   end if;
6311
6312                   Next_Discriminant (Old_Disc);
6313
6314                   --  if this is a named constraint, search by name for the old
6315                   --  discriminants constrained by the new one.
6316
6317                elsif Nkind (Expression (D_Constraint)) = N_Identifier then
6318
6319                   --  Find new discriminant with that name
6320
6321                   New_Disc := First_Discriminant (Derived_Type);
6322                   while Present (New_Disc) loop
6323                      exit when
6324                        Chars (New_Disc) = Chars (Expression (D_Constraint));
6325                      Next_Discriminant (New_Disc);
6326                   end loop;
6327
6328                   if Present (New_Disc) then
6329
6330                      --  Verify that new discriminant renames some discriminant
6331                      --  of the parent type, and associate the new discriminant
6332                      --  with one or more old ones that it renames.
6333
6334                      declare
6335                         Selector : Node_Id;
6336
6337                      begin
6338                         Selector := First (Selector_Names (D_Constraint));
6339                         while Present (Selector) loop
6340                            Old_Disc := First_Discriminant (Parent_Type);
6341                            while Present (Old_Disc) loop
6342                               exit when Chars (Old_Disc) = Chars (Selector);
6343                               Next_Discriminant (Old_Disc);
6344                            end loop;
6345
6346                            if Present (Old_Disc) then
6347                               Set_Corresponding_Discriminant
6348                                 (New_Disc, Old_Disc);
6349                            end if;
6350
6351                            Next (Selector);
6352                         end loop;
6353                      end;
6354                   end if;
6355                end if;
6356
6357                Next (D_Constraint);
6358             end loop;
6359
6360             New_Disc := First_Discriminant (Derived_Type);
6361             while Present (New_Disc) loop
6362                if No (Corresponding_Discriminant (New_Disc)) then
6363                   Error_Msg_NE
6364                     ("new discriminant& must constrain old one", N, New_Disc);
6365
6366                elsif not
6367                  Subtypes_Statically_Compatible
6368                    (Etype (New_Disc),
6369                     Etype (Corresponding_Discriminant (New_Disc)))
6370                then
6371                   Error_Msg_NE
6372                     ("& not statically compatible with parent discriminant",
6373                       N, New_Disc);
6374                end if;
6375
6376                Next_Discriminant (New_Disc);
6377             end loop;
6378          end if;
6379
6380       elsif Present (Discriminant_Specifications (N)) then
6381          Error_Msg_N
6382            ("missing discriminant constraint in untagged derivation", N);
6383       end if;
6384
6385       --  The entity chain of the derived type includes the new discriminants
6386       --  but shares operations with the parent.
6387
6388       if Present (Discriminant_Specifications (N)) then
6389          Old_Disc := First_Discriminant (Parent_Type);
6390          while Present (Old_Disc) loop
6391             if No (Next_Entity (Old_Disc))
6392               or else Ekind (Next_Entity (Old_Disc)) /= E_Discriminant
6393             then
6394                Set_Next_Entity
6395                  (Last_Entity (Derived_Type), Next_Entity (Old_Disc));
6396                exit;
6397             end if;
6398
6399             Next_Discriminant (Old_Disc);
6400          end loop;
6401
6402       else
6403          Set_First_Entity (Derived_Type, First_Entity (Parent_Type));
6404          if Has_Discriminants (Parent_Type) then
6405             Set_Is_Constrained (Derived_Type, Is_Constrained (Parent_Type));
6406             Set_Discriminant_Constraint (
6407               Derived_Type, Discriminant_Constraint (Parent_Type));
6408          end if;
6409       end if;
6410
6411       Set_Last_Entity  (Derived_Type, Last_Entity  (Parent_Type));
6412
6413       Set_Has_Completion (Derived_Type);
6414
6415       if Corr_Decl_Needed then
6416          Set_Stored_Constraint (Derived_Type, New_Constraint);
6417          Insert_After (N, Corr_Decl);
6418          Analyze (Corr_Decl);
6419          Set_Corresponding_Record_Type (Derived_Type, Corr_Record);
6420       end if;
6421    end Build_Derived_Concurrent_Type;
6422
6423    ------------------------------------
6424    -- Build_Derived_Enumeration_Type --
6425    ------------------------------------
6426
6427    procedure Build_Derived_Enumeration_Type
6428      (N            : Node_Id;
6429       Parent_Type  : Entity_Id;
6430       Derived_Type : Entity_Id)
6431    is
6432       Loc           : constant Source_Ptr := Sloc (N);
6433       Def           : constant Node_Id    := Type_Definition (N);
6434       Indic         : constant Node_Id    := Subtype_Indication (Def);
6435       Implicit_Base : Entity_Id;
6436       Literal       : Entity_Id;
6437       New_Lit       : Entity_Id;
6438       Literals_List : List_Id;
6439       Type_Decl     : Node_Id;
6440       Hi, Lo        : Node_Id;
6441       Rang_Expr     : Node_Id;
6442
6443    begin
6444       --  Since types Standard.Character and Standard.[Wide_]Wide_Character do
6445       --  not have explicit literals lists we need to process types derived
6446       --  from them specially. This is handled by Derived_Standard_Character.
6447       --  If the parent type is a generic type, there are no literals either,
6448       --  and we construct the same skeletal representation as for the generic
6449       --  parent type.
6450
6451       if Is_Standard_Character_Type (Parent_Type) then
6452          Derived_Standard_Character (N, Parent_Type, Derived_Type);
6453
6454       elsif Is_Generic_Type (Root_Type (Parent_Type)) then
6455          declare
6456             Lo : Node_Id;
6457             Hi : Node_Id;
6458
6459          begin
6460             if Nkind (Indic) /= N_Subtype_Indication then
6461                Lo :=
6462                   Make_Attribute_Reference (Loc,
6463                     Attribute_Name => Name_First,
6464                     Prefix         => New_Occurrence_Of (Derived_Type, Loc));
6465                Set_Etype (Lo, Derived_Type);
6466
6467                Hi :=
6468                   Make_Attribute_Reference (Loc,
6469                     Attribute_Name => Name_Last,
6470                     Prefix         => New_Occurrence_Of (Derived_Type, Loc));
6471                Set_Etype (Hi, Derived_Type);
6472
6473                Set_Scalar_Range (Derived_Type,
6474                   Make_Range (Loc,
6475                     Low_Bound  => Lo,
6476                     High_Bound => Hi));
6477             else
6478
6479                --   Analyze subtype indication and verify compatibility
6480                --   with parent type.
6481
6482                if Base_Type (Process_Subtype (Indic, N)) /=
6483                   Base_Type (Parent_Type)
6484                then
6485                   Error_Msg_N
6486                     ("illegal constraint for formal discrete type", N);
6487                end if;
6488             end if;
6489          end;
6490
6491       else
6492          --  If a constraint is present, analyze the bounds to catch
6493          --  premature usage of the derived literals.
6494
6495          if Nkind (Indic) = N_Subtype_Indication
6496            and then Nkind (Range_Expression (Constraint (Indic))) = N_Range
6497          then
6498             Analyze (Low_Bound  (Range_Expression (Constraint (Indic))));
6499             Analyze (High_Bound (Range_Expression (Constraint (Indic))));
6500          end if;
6501
6502          --  Introduce an implicit base type for the derived type even if there
6503          --  is no constraint attached to it, since this seems closer to the
6504          --  Ada semantics. Build a full type declaration tree for the derived
6505          --  type using the implicit base type as the defining identifier. The
6506          --  build a subtype declaration tree which applies the constraint (if
6507          --  any) have it replace the derived type declaration.
6508
6509          Literal := First_Literal (Parent_Type);
6510          Literals_List := New_List;
6511          while Present (Literal)
6512            and then Ekind (Literal) = E_Enumeration_Literal
6513          loop
6514             --  Literals of the derived type have the same representation as
6515             --  those of the parent type, but this representation can be
6516             --  overridden by an explicit representation clause. Indicate
6517             --  that there is no explicit representation given yet. These
6518             --  derived literals are implicit operations of the new type,
6519             --  and can be overridden by explicit ones.
6520
6521             if Nkind (Literal) = N_Defining_Character_Literal then
6522                New_Lit :=
6523                  Make_Defining_Character_Literal (Loc, Chars (Literal));
6524             else
6525                New_Lit := Make_Defining_Identifier (Loc, Chars (Literal));
6526             end if;
6527
6528             Set_Ekind                (New_Lit, E_Enumeration_Literal);
6529             Set_Enumeration_Pos      (New_Lit, Enumeration_Pos (Literal));
6530             Set_Enumeration_Rep      (New_Lit, Enumeration_Rep (Literal));
6531             Set_Enumeration_Rep_Expr (New_Lit, Empty);
6532             Set_Alias                (New_Lit, Literal);
6533             Set_Is_Known_Valid       (New_Lit, True);
6534
6535             Append (New_Lit, Literals_List);
6536             Next_Literal (Literal);
6537          end loop;
6538
6539          Implicit_Base :=
6540            Make_Defining_Identifier (Sloc (Derived_Type),
6541              Chars => New_External_Name (Chars (Derived_Type), 'B'));
6542
6543          --  Indicate the proper nature of the derived type. This must be done
6544          --  before analysis of the literals, to recognize cases when a literal
6545          --  may be hidden by a previous explicit function definition (cf.
6546          --  c83031a).
6547
6548          Set_Ekind (Derived_Type, E_Enumeration_Subtype);
6549          Set_Etype (Derived_Type, Implicit_Base);
6550
6551          Type_Decl :=
6552            Make_Full_Type_Declaration (Loc,
6553              Defining_Identifier => Implicit_Base,
6554              Discriminant_Specifications => No_List,
6555              Type_Definition =>
6556                Make_Enumeration_Type_Definition (Loc, Literals_List));
6557
6558          Mark_Rewrite_Insertion (Type_Decl);
6559          Insert_Before (N, Type_Decl);
6560          Analyze (Type_Decl);
6561
6562          --  The anonymous base now has a full declaration, but this base
6563          --  is not a first subtype.
6564
6565          Set_Is_First_Subtype (Implicit_Base, False);
6566
6567          --  After the implicit base is analyzed its Etype needs to be changed
6568          --  to reflect the fact that it is derived from the parent type which
6569          --  was ignored during analysis. We also set the size at this point.
6570
6571          Set_Etype (Implicit_Base, Parent_Type);
6572
6573          Set_Size_Info      (Implicit_Base,                 Parent_Type);
6574          Set_RM_Size        (Implicit_Base, RM_Size        (Parent_Type));
6575          Set_First_Rep_Item (Implicit_Base, First_Rep_Item (Parent_Type));
6576
6577          --  Copy other flags from parent type
6578
6579          Set_Has_Non_Standard_Rep
6580                             (Implicit_Base, Has_Non_Standard_Rep
6581                                                            (Parent_Type));
6582          Set_Has_Pragma_Ordered
6583                             (Implicit_Base, Has_Pragma_Ordered
6584                                                            (Parent_Type));
6585          Set_Has_Delayed_Freeze (Implicit_Base);
6586
6587          --  Process the subtype indication including a validation check on the
6588          --  constraint, if any. If a constraint is given, its bounds must be
6589          --  implicitly converted to the new type.
6590
6591          if Nkind (Indic) = N_Subtype_Indication then
6592             declare
6593                R : constant Node_Id :=
6594                      Range_Expression (Constraint (Indic));
6595
6596             begin
6597                if Nkind (R) = N_Range then
6598                   Hi := Build_Scalar_Bound
6599                           (High_Bound (R), Parent_Type, Implicit_Base);
6600                   Lo := Build_Scalar_Bound
6601                           (Low_Bound  (R), Parent_Type, Implicit_Base);
6602
6603                else
6604                   --  Constraint is a Range attribute. Replace with explicit
6605                   --  mention of the bounds of the prefix, which must be a
6606                   --  subtype.
6607
6608                   Analyze (Prefix (R));
6609                   Hi :=
6610                     Convert_To (Implicit_Base,
6611                       Make_Attribute_Reference (Loc,
6612                         Attribute_Name => Name_Last,
6613                         Prefix =>
6614                           New_Occurrence_Of (Entity (Prefix (R)), Loc)));
6615
6616                   Lo :=
6617                     Convert_To (Implicit_Base,
6618                       Make_Attribute_Reference (Loc,
6619                         Attribute_Name => Name_First,
6620                         Prefix =>
6621                           New_Occurrence_Of (Entity (Prefix (R)), Loc)));
6622                end if;
6623             end;
6624
6625          else
6626             Hi :=
6627               Build_Scalar_Bound
6628                 (Type_High_Bound (Parent_Type),
6629                  Parent_Type, Implicit_Base);
6630             Lo :=
6631                Build_Scalar_Bound
6632                  (Type_Low_Bound (Parent_Type),
6633                   Parent_Type, Implicit_Base);
6634          end if;
6635
6636          Rang_Expr :=
6637            Make_Range (Loc,
6638              Low_Bound  => Lo,
6639              High_Bound => Hi);
6640
6641          --  If we constructed a default range for the case where no range
6642          --  was given, then the expressions in the range must not freeze
6643          --  since they do not correspond to expressions in the source.
6644
6645          if Nkind (Indic) /= N_Subtype_Indication then
6646             Set_Must_Not_Freeze (Lo);
6647             Set_Must_Not_Freeze (Hi);
6648             Set_Must_Not_Freeze (Rang_Expr);
6649          end if;
6650
6651          Rewrite (N,
6652            Make_Subtype_Declaration (Loc,
6653              Defining_Identifier => Derived_Type,
6654              Subtype_Indication =>
6655                Make_Subtype_Indication (Loc,
6656                  Subtype_Mark => New_Occurrence_Of (Implicit_Base, Loc),
6657                  Constraint =>
6658                    Make_Range_Constraint (Loc,
6659                      Range_Expression => Rang_Expr))));
6660
6661          Analyze (N);
6662
6663          --  Propagate the aspects from the original type declaration to the
6664          --  declaration of the implicit base.
6665
6666          Move_Aspects (From => Original_Node (N), To => Type_Decl);
6667
6668          --  Apply a range check. Since this range expression doesn't have an
6669          --  Etype, we have to specifically pass the Source_Typ parameter. Is
6670          --  this right???
6671
6672          if Nkind (Indic) = N_Subtype_Indication then
6673             Apply_Range_Check
6674               (Range_Expression (Constraint (Indic)), Parent_Type,
6675                Source_Typ => Entity (Subtype_Mark (Indic)));
6676          end if;
6677       end if;
6678    end Build_Derived_Enumeration_Type;
6679
6680    --------------------------------
6681    -- Build_Derived_Numeric_Type --
6682    --------------------------------
6683
6684    procedure Build_Derived_Numeric_Type
6685      (N            : Node_Id;
6686       Parent_Type  : Entity_Id;
6687       Derived_Type : Entity_Id)
6688    is
6689       Loc           : constant Source_Ptr := Sloc (N);
6690       Tdef          : constant Node_Id    := Type_Definition (N);
6691       Indic         : constant Node_Id    := Subtype_Indication (Tdef);
6692       Parent_Base   : constant Entity_Id  := Base_Type (Parent_Type);
6693       No_Constraint : constant Boolean    := Nkind (Indic) /=
6694                                                   N_Subtype_Indication;
6695       Implicit_Base : Entity_Id;
6696
6697       Lo : Node_Id;
6698       Hi : Node_Id;
6699
6700    begin
6701       --  Process the subtype indication including a validation check on
6702       --  the constraint if any.
6703
6704       Discard_Node (Process_Subtype (Indic, N));
6705
6706       --  Introduce an implicit base type for the derived type even if there
6707       --  is no constraint attached to it, since this seems closer to the Ada
6708       --  semantics.
6709
6710       Implicit_Base :=
6711         Create_Itype (Ekind (Parent_Base), N, Derived_Type, 'B');
6712
6713       Set_Etype          (Implicit_Base, Parent_Base);
6714       Set_Ekind          (Implicit_Base, Ekind          (Parent_Base));
6715       Set_Size_Info      (Implicit_Base,                 Parent_Base);
6716       Set_First_Rep_Item (Implicit_Base, First_Rep_Item (Parent_Base));
6717       Set_Parent         (Implicit_Base, Parent (Derived_Type));
6718       Set_Is_Known_Valid (Implicit_Base, Is_Known_Valid (Parent_Base));
6719
6720       --  Set RM Size for discrete type or decimal fixed-point type
6721       --  Ordinary fixed-point is excluded, why???
6722
6723       if Is_Discrete_Type (Parent_Base)
6724         or else Is_Decimal_Fixed_Point_Type (Parent_Base)
6725       then
6726          Set_RM_Size (Implicit_Base, RM_Size (Parent_Base));
6727       end if;
6728
6729       Set_Has_Delayed_Freeze (Implicit_Base);
6730
6731       Lo := New_Copy_Tree (Type_Low_Bound  (Parent_Base));
6732       Hi := New_Copy_Tree (Type_High_Bound (Parent_Base));
6733
6734       Set_Scalar_Range (Implicit_Base,
6735         Make_Range (Loc,
6736           Low_Bound  => Lo,
6737           High_Bound => Hi));
6738
6739       if Has_Infinities (Parent_Base) then
6740          Set_Includes_Infinities (Scalar_Range (Implicit_Base));
6741       end if;
6742
6743       --  The Derived_Type, which is the entity of the declaration, is a
6744       --  subtype of the implicit base. Its Ekind is a subtype, even in the
6745       --  absence of an explicit constraint.
6746
6747       Set_Etype (Derived_Type, Implicit_Base);
6748
6749       --  If we did not have a constraint, then the Ekind is set from the
6750       --  parent type (otherwise Process_Subtype has set the bounds)
6751
6752       if No_Constraint then
6753          Set_Ekind (Derived_Type, Subtype_Kind (Ekind (Parent_Type)));
6754       end if;
6755
6756       --  If we did not have a range constraint, then set the range from the
6757       --  parent type. Otherwise, the Process_Subtype call has set the bounds.
6758
6759       if No_Constraint or else not Has_Range_Constraint (Indic) then
6760          Set_Scalar_Range (Derived_Type,
6761            Make_Range (Loc,
6762              Low_Bound  => New_Copy_Tree (Type_Low_Bound  (Parent_Type)),
6763              High_Bound => New_Copy_Tree (Type_High_Bound (Parent_Type))));
6764          Set_Is_Constrained (Derived_Type, Is_Constrained (Parent_Type));
6765
6766          if Has_Infinities (Parent_Type) then
6767             Set_Includes_Infinities (Scalar_Range (Derived_Type));
6768          end if;
6769
6770          Set_Is_Known_Valid (Derived_Type, Is_Known_Valid (Parent_Type));
6771       end if;
6772
6773       Set_Is_Descendent_Of_Address (Derived_Type,
6774         Is_Descendent_Of_Address (Parent_Type));
6775       Set_Is_Descendent_Of_Address (Implicit_Base,
6776         Is_Descendent_Of_Address (Parent_Type));
6777
6778       --  Set remaining type-specific fields, depending on numeric type
6779
6780       if Is_Modular_Integer_Type (Parent_Type) then
6781          Set_Modulus (Implicit_Base, Modulus (Parent_Base));
6782
6783          Set_Non_Binary_Modulus
6784            (Implicit_Base, Non_Binary_Modulus (Parent_Base));
6785
6786          Set_Is_Known_Valid
6787            (Implicit_Base, Is_Known_Valid (Parent_Base));
6788
6789       elsif Is_Floating_Point_Type (Parent_Type) then
6790
6791          --  Digits of base type is always copied from the digits value of
6792          --  the parent base type, but the digits of the derived type will
6793          --  already have been set if there was a constraint present.
6794
6795          Set_Digits_Value (Implicit_Base, Digits_Value (Parent_Base));
6796          Set_Float_Rep    (Implicit_Base, Float_Rep    (Parent_Base));
6797
6798          if No_Constraint then
6799             Set_Digits_Value (Derived_Type, Digits_Value (Parent_Type));
6800          end if;
6801
6802       elsif Is_Fixed_Point_Type (Parent_Type) then
6803
6804          --  Small of base type and derived type are always copied from the
6805          --  parent base type, since smalls never change. The delta of the
6806          --  base type is also copied from the parent base type. However the
6807          --  delta of the derived type will have been set already if a
6808          --  constraint was present.
6809
6810          Set_Small_Value (Derived_Type,  Small_Value (Parent_Base));
6811          Set_Small_Value (Implicit_Base, Small_Value (Parent_Base));
6812          Set_Delta_Value (Implicit_Base, Delta_Value (Parent_Base));
6813
6814          if No_Constraint then
6815             Set_Delta_Value (Derived_Type,  Delta_Value (Parent_Type));
6816          end if;
6817
6818          --  The scale and machine radix in the decimal case are always
6819          --  copied from the parent base type.
6820
6821          if Is_Decimal_Fixed_Point_Type (Parent_Type) then
6822             Set_Scale_Value (Derived_Type,  Scale_Value (Parent_Base));
6823             Set_Scale_Value (Implicit_Base, Scale_Value (Parent_Base));
6824
6825             Set_Machine_Radix_10
6826               (Derived_Type,  Machine_Radix_10 (Parent_Base));
6827             Set_Machine_Radix_10
6828               (Implicit_Base, Machine_Radix_10 (Parent_Base));
6829
6830             Set_Digits_Value (Implicit_Base, Digits_Value (Parent_Base));
6831
6832             if No_Constraint then
6833                Set_Digits_Value (Derived_Type, Digits_Value (Parent_Base));
6834
6835             else
6836                --  the analysis of the subtype_indication sets the
6837                --  digits value of the derived type.
6838
6839                null;
6840             end if;
6841          end if;
6842       end if;
6843
6844       if Is_Integer_Type (Parent_Type) then
6845          Set_Has_Shift_Operator
6846            (Implicit_Base, Has_Shift_Operator (Parent_Type));
6847       end if;
6848
6849       --  The type of the bounds is that of the parent type, and they
6850       --  must be converted to the derived type.
6851
6852       Convert_Scalar_Bounds (N, Parent_Type, Derived_Type, Loc);
6853
6854       --  The implicit_base should be frozen when the derived type is frozen,
6855       --  but note that it is used in the conversions of the bounds. For fixed
6856       --  types we delay the determination of the bounds until the proper
6857       --  freezing point. For other numeric types this is rejected by GCC, for
6858       --  reasons that are currently unclear (???), so we choose to freeze the
6859       --  implicit base now. In the case of integers and floating point types
6860       --  this is harmless because subsequent representation clauses cannot
6861       --  affect anything, but it is still baffling that we cannot use the
6862       --  same mechanism for all derived numeric types.
6863
6864       --  There is a further complication: actually some representation
6865       --  clauses can affect the implicit base type. For example, attribute
6866       --  definition clauses for stream-oriented attributes need to set the
6867       --  corresponding TSS entries on the base type, and this normally
6868       --  cannot be done after the base type is frozen, so the circuitry in
6869       --  Sem_Ch13.New_Stream_Subprogram must account for this possibility
6870       --  and not use Set_TSS in this case.
6871
6872       --  There are also consequences for the case of delayed representation
6873       --  aspects for some cases. For example, a Size aspect is delayed and
6874       --  should not be evaluated to the freeze point. This early freezing
6875       --  means that the size attribute evaluation happens too early???
6876
6877       if Is_Fixed_Point_Type (Parent_Type) then
6878          Conditional_Delay (Implicit_Base, Parent_Type);
6879       else
6880          Freeze_Before (N, Implicit_Base);
6881       end if;
6882    end Build_Derived_Numeric_Type;
6883
6884    --------------------------------
6885    -- Build_Derived_Private_Type --
6886    --------------------------------
6887
6888    procedure Build_Derived_Private_Type
6889      (N             : Node_Id;
6890       Parent_Type   : Entity_Id;
6891       Derived_Type  : Entity_Id;
6892       Is_Completion : Boolean;
6893       Derive_Subps  : Boolean := True)
6894    is
6895       Loc       : constant Source_Ptr := Sloc (N);
6896       Par_Base  : constant Entity_Id  := Base_Type (Parent_Type);
6897       Par_Scope : constant Entity_Id  := Scope (Par_Base);
6898       Full_N    : constant Node_Id    := New_Copy_Tree (N);
6899       Full_Der  : Entity_Id           := New_Copy (Derived_Type);
6900       Full_P    : Entity_Id;
6901
6902       procedure Build_Full_Derivation;
6903       --  Build full derivation, i.e. derive from the full view
6904
6905       procedure Copy_And_Build;
6906       --  Copy derived type declaration, replace parent with its full view,
6907       --  and build derivation
6908
6909       ---------------------------
6910       -- Build_Full_Derivation --
6911       ---------------------------
6912
6913       procedure Build_Full_Derivation is
6914       begin
6915          --  If parent scope is not open, install the declarations
6916
6917          if not In_Open_Scopes (Par_Scope) then
6918             Install_Private_Declarations (Par_Scope);
6919             Install_Visible_Declarations (Par_Scope);
6920             Copy_And_Build;
6921             Uninstall_Declarations (Par_Scope);
6922
6923          --  If parent scope is open and in another unit, and parent has a
6924          --  completion, then the derivation is taking place in the visible
6925          --  part of a child unit. In that case retrieve the full view of
6926          --  the parent momentarily.
6927
6928          elsif not In_Same_Source_Unit (N, Parent_Type) then
6929             Full_P := Full_View (Parent_Type);
6930             Exchange_Declarations (Parent_Type);
6931             Copy_And_Build;
6932             Exchange_Declarations (Full_P);
6933
6934          --  Otherwise it is a local derivation
6935
6936          else
6937             Copy_And_Build;
6938          end if;
6939       end Build_Full_Derivation;
6940
6941       --------------------
6942       -- Copy_And_Build --
6943       --------------------
6944
6945       procedure Copy_And_Build is
6946          Full_Parent : Entity_Id := Parent_Type;
6947
6948       begin
6949          --  If the parent is itself derived from another private type,
6950          --  installing the private declarations has not affected its
6951          --  privacy status, so use its own full view explicitly.
6952
6953          if Is_Private_Type (Full_Parent)
6954            and then Present (Full_View (Full_Parent))
6955          then
6956             Full_Parent := Full_View (Full_Parent);
6957          end if;
6958
6959          --  And its underlying full view if necessary
6960
6961          if Is_Private_Type (Full_Parent)
6962            and then Present (Underlying_Full_View (Full_Parent))
6963          then
6964             Full_Parent := Underlying_Full_View (Full_Parent);
6965          end if;
6966
6967          --  For record, access and most enumeration types, derivation from
6968          --  the full view requires a fully-fledged declaration. In the other
6969          --  cases, just use an itype.
6970
6971          if Ekind (Full_Parent) in Record_Kind
6972            or else Ekind (Full_Parent) in Access_Kind
6973            or else
6974              (Ekind (Full_Parent) in Enumeration_Kind
6975                and then not Is_Standard_Character_Type (Full_Parent)
6976                and then not Is_Generic_Type (Root_Type (Full_Parent)))
6977          then
6978             --  Copy and adjust declaration to provide a completion for what
6979             --  is originally a private declaration. Indicate that full view
6980             --  is internally generated.
6981
6982             Set_Comes_From_Source (Full_N, False);
6983             Set_Comes_From_Source (Full_Der, False);
6984             Set_Parent (Full_Der, Full_N);
6985             Set_Defining_Identifier (Full_N, Full_Der);
6986
6987             --  If there are no constraints, adjust the subtype mark
6988
6989             if Nkind (Subtype_Indication (Type_Definition (Full_N))) /=
6990                                                        N_Subtype_Indication
6991             then
6992                Set_Subtype_Indication
6993                  (Type_Definition (Full_N),
6994                   New_Occurrence_Of (Full_Parent, Sloc (Full_N)));
6995             end if;
6996
6997             Insert_After (N, Full_N);
6998
6999             --  Build full view of derived type from full view of parent which
7000             --  is now installed. Subprograms have been derived on the partial
7001             --  view, the completion does not derive them anew.
7002
7003             if Ekind (Full_Parent) in Record_Kind then
7004
7005                --  If parent type is tagged, the completion inherits the proper
7006                --  primitive operations.
7007
7008                if Is_Tagged_Type (Parent_Type) then
7009                   Build_Derived_Record_Type
7010                     (Full_N, Full_Parent, Full_Der, Derive_Subps);
7011                else
7012                   Build_Derived_Record_Type
7013                     (Full_N, Full_Parent, Full_Der, Derive_Subps => False);
7014                end if;
7015
7016             else
7017                Build_Derived_Type
7018                  (Full_N, Full_Parent, Full_Der,
7019                   Is_Completion => False, Derive_Subps => False);
7020             end if;
7021
7022             --  The full declaration has been introduced into the tree and
7023             --  processed in the step above. It should not be analyzed again
7024             --  (when encountered later in the current list of declarations)
7025             --  to prevent spurious name conflicts. The full entity remains
7026             --  invisible.
7027
7028             Set_Analyzed (Full_N);
7029
7030          else
7031             Full_Der :=
7032               Make_Defining_Identifier (Sloc (Derived_Type),
7033                 Chars => Chars (Derived_Type));
7034             Set_Is_Itype (Full_Der);
7035             Set_Associated_Node_For_Itype (Full_Der, N);
7036             Set_Parent (Full_Der, N);
7037             Build_Derived_Type
7038               (N, Full_Parent, Full_Der,
7039                Is_Completion => False, Derive_Subps => False);
7040          end if;
7041
7042          Set_Has_Private_Declaration (Full_Der);
7043          Set_Has_Private_Declaration (Derived_Type);
7044
7045          Set_Scope                (Full_Der, Scope (Derived_Type));
7046          Set_Is_First_Subtype     (Full_Der, Is_First_Subtype (Derived_Type));
7047          Set_Has_Size_Clause      (Full_Der, False);
7048          Set_Has_Alignment_Clause (Full_Der, False);
7049          Set_Has_Delayed_Freeze   (Full_Der);
7050          Set_Is_Frozen            (Full_Der, False);
7051          Set_Freeze_Node          (Full_Der, Empty);
7052          Set_Depends_On_Private   (Full_Der, Has_Private_Component (Full_Der));
7053          Set_Is_Public            (Full_Der, Is_Public (Derived_Type));
7054
7055          --  The convention on the base type may be set in the private part
7056          --  and not propagated to the subtype until later, so we obtain the
7057          --  convention from the base type of the parent.
7058
7059          Set_Convention (Full_Der, Convention (Base_Type (Full_Parent)));
7060       end Copy_And_Build;
7061
7062    --  Start of processing for Build_Derived_Private_Type
7063
7064    begin
7065       if Is_Tagged_Type (Parent_Type) then
7066          Full_P := Full_View (Parent_Type);
7067
7068          --  A type extension of a type with unknown discriminants is an
7069          --  indefinite type that the back-end cannot handle directly.
7070          --  We treat it as a private type, and build a completion that is
7071          --  derived from the full view of the parent, and hopefully has
7072          --  known discriminants.
7073
7074          --  If the full view of the parent type has an underlying record view,
7075          --  use it to generate the underlying record view of this derived type
7076          --  (required for chains of derivations with unknown discriminants).
7077
7078          --  Minor optimization: we avoid the generation of useless underlying
7079          --  record view entities if the private type declaration has unknown
7080          --  discriminants but its corresponding full view has no
7081          --  discriminants.
7082
7083          if Has_Unknown_Discriminants (Parent_Type)
7084            and then Present (Full_P)
7085            and then (Has_Discriminants (Full_P)
7086                       or else Present (Underlying_Record_View (Full_P)))
7087            and then not In_Open_Scopes (Par_Scope)
7088            and then Expander_Active
7089          then
7090             declare
7091                Full_Der : constant Entity_Id := Make_Temporary (Loc, 'T');
7092                New_Ext  : constant Node_Id :=
7093                             Copy_Separate_Tree
7094                               (Record_Extension_Part (Type_Definition (N)));
7095                Decl     : Node_Id;
7096
7097             begin
7098                Build_Derived_Record_Type
7099                  (N, Parent_Type, Derived_Type, Derive_Subps);
7100
7101                --  Build anonymous completion, as a derivation from the full
7102                --  view of the parent. This is not a completion in the usual
7103                --  sense, because the current type is not private.
7104
7105                Decl :=
7106                  Make_Full_Type_Declaration (Loc,
7107                    Defining_Identifier => Full_Der,
7108                    Type_Definition     =>
7109                      Make_Derived_Type_Definition (Loc,
7110                        Subtype_Indication =>
7111                          New_Copy_Tree
7112                            (Subtype_Indication (Type_Definition (N))),
7113                        Record_Extension_Part => New_Ext));
7114
7115                --  If the parent type has an underlying record view, use it
7116                --  here to build the new underlying record view.
7117
7118                if Present (Underlying_Record_View (Full_P)) then
7119                   pragma Assert
7120                     (Nkind (Subtype_Indication (Type_Definition (Decl)))
7121                        = N_Identifier);
7122                   Set_Entity (Subtype_Indication (Type_Definition (Decl)),
7123                     Underlying_Record_View (Full_P));
7124                end if;
7125
7126                Install_Private_Declarations (Par_Scope);
7127                Install_Visible_Declarations (Par_Scope);
7128                Insert_Before (N, Decl);
7129
7130                --  Mark entity as an underlying record view before analysis,
7131                --  to avoid generating the list of its primitive operations
7132                --  (which is not really required for this entity) and thus
7133                --  prevent spurious errors associated with missing overriding
7134                --  of abstract primitives (overridden only for Derived_Type).
7135
7136                Set_Ekind (Full_Der, E_Record_Type);
7137                Set_Is_Underlying_Record_View (Full_Der);
7138                Set_Default_SSO (Full_Der);
7139
7140                Analyze (Decl);
7141
7142                pragma Assert (Has_Discriminants (Full_Der)
7143                  and then not Has_Unknown_Discriminants (Full_Der));
7144
7145                Uninstall_Declarations (Par_Scope);
7146
7147                --  Freeze the underlying record view, to prevent generation of
7148                --  useless dispatching information, which is simply shared with
7149                --  the real derived type.
7150
7151                Set_Is_Frozen (Full_Der);
7152
7153                --  If the derived type has access discriminants, create
7154                --  references to their anonymous types now, to prevent
7155                --  back-end problems when their first use is in generated
7156                --  bodies of primitives.
7157
7158                declare
7159                   E : Entity_Id;
7160
7161                begin
7162                   E := First_Entity (Full_Der);
7163
7164                   while Present (E) loop
7165                      if Ekind (E) = E_Discriminant
7166                        and then Ekind (Etype (E)) = E_Anonymous_Access_Type
7167                      then
7168                         Build_Itype_Reference (Etype (E), Decl);
7169                      end if;
7170
7171                      Next_Entity (E);
7172                   end loop;
7173                end;
7174
7175                --  Set up links between real entity and underlying record view
7176
7177                Set_Underlying_Record_View (Derived_Type, Base_Type (Full_Der));
7178                Set_Underlying_Record_View (Base_Type (Full_Der), Derived_Type);
7179             end;
7180
7181          --  If discriminants are known, build derived record
7182
7183          else
7184             Build_Derived_Record_Type
7185               (N, Parent_Type, Derived_Type, Derive_Subps);
7186          end if;
7187
7188          return;
7189
7190       elsif Has_Discriminants (Parent_Type) then
7191
7192          --  Build partial view of derived type from partial view of parent.
7193          --  This must be done before building the full derivation because the
7194          --  second derivation will modify the discriminants of the first and
7195          --  the discriminants are chained with the rest of the components in
7196          --  the full derivation.
7197
7198          Build_Derived_Record_Type
7199            (N, Parent_Type, Derived_Type, Derive_Subps);
7200
7201          --  Build the full derivation if this is not the anonymous derived
7202          --  base type created by Build_Derived_Record_Type in the constrained
7203          --  case (see point 5. of its head comment) since we build it for the
7204          --  derived subtype. And skip it for protected types altogether, as
7205          --  gigi does not use these types directly.
7206
7207          if Present (Full_View (Parent_Type))
7208            and then not Is_Itype (Derived_Type)
7209            and then not (Ekind (Full_View (Parent_Type)) in Protected_Kind)
7210          then
7211             declare
7212                Der_Base   : constant Entity_Id := Base_Type (Derived_Type);
7213                Discr      : Entity_Id;
7214                Last_Discr : Entity_Id;
7215
7216             begin
7217                --  If this is not a completion, construct the implicit full
7218                --  view by deriving from the full view of the parent type.
7219                --  But if this is a completion, the derived private type
7220                --  being built is a full view and the full derivation can
7221                --  only be its underlying full view.
7222
7223                Build_Full_Derivation;
7224
7225                if not Is_Completion then
7226                   Set_Full_View (Derived_Type, Full_Der);
7227                else
7228                   Set_Underlying_Full_View (Derived_Type, Full_Der);
7229                end if;
7230
7231                if not Is_Base_Type (Derived_Type) then
7232                   Set_Full_View (Der_Base, Base_Type (Full_Der));
7233                end if;
7234
7235                --  Copy the discriminant list from full view to the partial
7236                --  view (base type and its subtype). Gigi requires that the
7237                --  partial and full views have the same discriminants.
7238
7239                --  Note that since the partial view points to discriminants
7240                --  in the full view, their scope will be that of the full
7241                --  view. This might cause some front end problems and need
7242                --  adjustment???
7243
7244                Discr := First_Discriminant (Base_Type (Full_Der));
7245                Set_First_Entity (Der_Base, Discr);
7246
7247                loop
7248                   Last_Discr := Discr;
7249                   Next_Discriminant (Discr);
7250                   exit when No (Discr);
7251                end loop;
7252
7253                Set_Last_Entity (Der_Base, Last_Discr);
7254                Set_First_Entity (Derived_Type, First_Entity (Der_Base));
7255                Set_Last_Entity  (Derived_Type, Last_Entity  (Der_Base));
7256
7257                Set_Stored_Constraint
7258                  (Full_Der, Stored_Constraint (Derived_Type));
7259             end;
7260          end if;
7261
7262       elsif Present (Full_View (Parent_Type))
7263         and then Has_Discriminants (Full_View (Parent_Type))
7264       then
7265          if Has_Unknown_Discriminants (Parent_Type)
7266            and then Nkind (Subtype_Indication (Type_Definition (N))) =
7267                                                          N_Subtype_Indication
7268          then
7269             Error_Msg_N
7270               ("cannot constrain type with unknown discriminants",
7271                Subtype_Indication (Type_Definition (N)));
7272             return;
7273          end if;
7274
7275          --  If this is not a completion, construct the implicit full view by
7276          --  deriving from the full view of the parent type. But if this is a
7277          --  completion, the derived private type being built is a full view
7278          --  and the full derivation can only be its underlying full view.
7279
7280          Build_Full_Derivation;
7281
7282          if not Is_Completion then
7283             Set_Full_View (Derived_Type, Full_Der);
7284          else
7285             Set_Underlying_Full_View (Derived_Type, Full_Der);
7286          end if;
7287
7288          --  In any case, the primitive operations are inherited from the
7289          --  parent type, not from the internal full view.
7290
7291          Set_Etype (Base_Type (Derived_Type), Base_Type (Parent_Type));
7292
7293          if Derive_Subps then
7294             Derive_Subprograms (Parent_Type, Derived_Type);
7295          end if;
7296
7297          Set_Stored_Constraint (Derived_Type, No_Elist);
7298          Set_Is_Constrained
7299            (Derived_Type, Is_Constrained (Full_View (Parent_Type)));
7300
7301       else
7302          --  Untagged type, No discriminants on either view
7303
7304          if Nkind (Subtype_Indication (Type_Definition (N))) =
7305                                                    N_Subtype_Indication
7306          then
7307             Error_Msg_N
7308               ("illegal constraint on type without discriminants", N);
7309          end if;
7310
7311          if Present (Discriminant_Specifications (N))
7312            and then Present (Full_View (Parent_Type))
7313            and then not Is_Tagged_Type (Full_View (Parent_Type))
7314          then
7315             Error_Msg_N ("cannot add discriminants to untagged type", N);
7316          end if;
7317
7318          Set_Stored_Constraint  (Derived_Type, No_Elist);
7319          Set_Is_Constrained     (Derived_Type, Is_Constrained (Parent_Type));
7320          Set_Is_Controlled      (Derived_Type, Is_Controlled  (Parent_Type));
7321          Set_Disable_Controlled (Derived_Type, Disable_Controlled
7322                                                               (Parent_Type));
7323          Set_Has_Controlled_Component
7324                                 (Derived_Type, Has_Controlled_Component
7325                                                               (Parent_Type));
7326
7327          --  Direct controlled types do not inherit Finalize_Storage_Only flag
7328
7329          if not Is_Controlled_Active (Parent_Type) then
7330             Set_Finalize_Storage_Only
7331               (Base_Type (Derived_Type), Finalize_Storage_Only (Parent_Type));
7332          end if;
7333
7334          --  If this is not a completion, construct the implicit full view by
7335          --  deriving from the full view of the parent type.
7336
7337          --  ??? If the parent is untagged private and its completion is
7338          --  tagged, this mechanism will not work because we cannot derive from
7339          --  the tagged full view unless we have an extension.
7340
7341          if Present (Full_View (Parent_Type))
7342            and then not Is_Tagged_Type (Full_View (Parent_Type))
7343            and then not Is_Completion
7344          then
7345             Build_Full_Derivation;
7346             Set_Full_View (Derived_Type, Full_Der);
7347          end if;
7348       end if;
7349
7350       Set_Has_Unknown_Discriminants (Derived_Type,
7351         Has_Unknown_Discriminants (Parent_Type));
7352
7353       if Is_Private_Type (Derived_Type) then
7354          Set_Private_Dependents (Derived_Type, New_Elmt_List);
7355       end if;
7356
7357       --  If the parent base type is in scope, add the derived type to its
7358       --  list of private dependents, because its full view may become
7359       --  visible subsequently (in a nested private part, a body, or in a
7360       --  further child unit).
7361
7362       if Is_Private_Type (Par_Base) and then In_Open_Scopes (Par_Scope) then
7363          Append_Elmt (Derived_Type, Private_Dependents (Parent_Type));
7364
7365          --  Check for unusual case where a type completed by a private
7366          --  derivation occurs within a package nested in a child unit, and
7367          --  the parent is declared in an ancestor.
7368
7369          if Is_Child_Unit (Scope (Current_Scope))
7370            and then Is_Completion
7371            and then In_Private_Part (Current_Scope)
7372            and then Scope (Parent_Type) /= Current_Scope
7373
7374            --  Note that if the parent has a completion in the private part,
7375            --  (which is itself a derivation from some other private type)
7376            --  it is that completion that is visible, there is no full view
7377            --  available, and no special processing is needed.
7378
7379            and then Present (Full_View (Parent_Type))
7380          then
7381             --  In this case, the full view of the parent type will become
7382             --  visible in the body of the enclosing child, and only then will
7383             --  the current type be possibly non-private. Build an underlying
7384             --  full view that will be installed when the enclosing child body
7385             --  is compiled.
7386
7387             if Present (Underlying_Full_View (Derived_Type)) then
7388                Full_Der := Underlying_Full_View (Derived_Type);
7389             else
7390                Build_Full_Derivation;
7391                Set_Underlying_Full_View (Derived_Type, Full_Der);
7392             end if;
7393
7394             --  The full view will be used to swap entities on entry/exit to
7395             --  the body, and must appear in the entity list for the package.
7396
7397             Append_Entity (Full_Der, Scope (Derived_Type));
7398          end if;
7399       end if;
7400    end Build_Derived_Private_Type;
7401
7402    -------------------------------
7403    -- Build_Derived_Record_Type --
7404    -------------------------------
7405
7406    --  1. INTRODUCTION
7407
7408    --  Ideally we would like to use the same model of type derivation for
7409    --  tagged and untagged record types. Unfortunately this is not quite
7410    --  possible because the semantics of representation clauses is different
7411    --  for tagged and untagged records under inheritance. Consider the
7412    --  following:
7413
7414    --     type R (...) is [tagged] record ... end record;
7415    --     type T (...) is new R (...) [with ...];
7416
7417    --  The representation clauses for T can specify a completely different
7418    --  record layout from R's. Hence the same component can be placed in two
7419    --  very different positions in objects of type T and R. If R and T are
7420    --  tagged types, representation clauses for T can only specify the layout
7421    --  of non inherited components, thus components that are common in R and T
7422    --  have the same position in objects of type R and T.
7423
7424    --  This has two implications. The first is that the entire tree for R's
7425    --  declaration needs to be copied for T in the untagged case, so that T
7426    --  can be viewed as a record type of its own with its own representation
7427    --  clauses. The second implication is the way we handle discriminants.
7428    --  Specifically, in the untagged case we need a way to communicate to Gigi
7429    --  what are the real discriminants in the record, while for the semantics
7430    --  we need to consider those introduced by the user to rename the
7431    --  discriminants in the parent type. This is handled by introducing the
7432    --  notion of stored discriminants. See below for more.
7433
7434    --  Fortunately the way regular components are inherited can be handled in
7435    --  the same way in tagged and untagged types.
7436
7437    --  To complicate things a bit more the private view of a private extension
7438    --  cannot be handled in the same way as the full view (for one thing the
7439    --  semantic rules are somewhat different). We will explain what differs
7440    --  below.
7441
7442    --  2. DISCRIMINANTS UNDER INHERITANCE
7443
7444    --  The semantic rules governing the discriminants of derived types are
7445    --  quite subtle.
7446
7447    --   type Derived_Type_Name [KNOWN_DISCRIMINANT_PART] is new
7448    --      [abstract] Parent_Type_Name [CONSTRAINT] [RECORD_EXTENSION_PART]
7449
7450    --  If parent type has discriminants, then the discriminants that are
7451    --  declared in the derived type are [3.4 (11)]:
7452
7453    --  o The discriminants specified by a new KNOWN_DISCRIMINANT_PART, if
7454    --    there is one;
7455
7456    --  o Otherwise, each discriminant of the parent type (implicitly declared
7457    --    in the same order with the same specifications). In this case, the
7458    --    discriminants are said to be "inherited", or if unknown in the parent
7459    --    are also unknown in the derived type.
7460
7461    --  Furthermore if a KNOWN_DISCRIMINANT_PART is provided, then [3.7(13-18)]:
7462
7463    --  o The parent subtype must be constrained;
7464
7465    --  o If the parent type is not a tagged type, then each discriminant of
7466    --    the derived type must be used in the constraint defining a parent
7467    --    subtype. [Implementation note: This ensures that the new discriminant
7468    --    can share storage with an existing discriminant.]
7469
7470    --  For the derived type each discriminant of the parent type is either
7471    --  inherited, constrained to equal some new discriminant of the derived
7472    --  type, or constrained to the value of an expression.
7473
7474    --  When inherited or constrained to equal some new discriminant, the
7475    --  parent discriminant and the discriminant of the derived type are said
7476    --  to "correspond".
7477
7478    --  If a discriminant of the parent type is constrained to a specific value
7479    --  in the derived type definition, then the discriminant is said to be
7480    --  "specified" by that derived type definition.
7481
7482    --  3. DISCRIMINANTS IN DERIVED UNTAGGED RECORD TYPES
7483
7484    --  We have spoken about stored discriminants in point 1 (introduction)
7485    --  above. There are two sort of stored discriminants: implicit and
7486    --  explicit. As long as the derived type inherits the same discriminants as
7487    --  the root record type, stored discriminants are the same as regular
7488    --  discriminants, and are said to be implicit. However, if any discriminant
7489    --  in the root type was renamed in the derived type, then the derived
7490    --  type will contain explicit stored discriminants. Explicit stored
7491    --  discriminants are discriminants in addition to the semantically visible
7492    --  discriminants defined for the derived type. Stored discriminants are
7493    --  used by Gigi to figure out what are the physical discriminants in
7494    --  objects of the derived type (see precise definition in einfo.ads).
7495    --  As an example, consider the following:
7496
7497    --           type R  (D1, D2, D3 : Int) is record ... end record;
7498    --           type T1 is new R;
7499    --           type T2 (X1, X2: Int) is new T1 (X2, 88, X1);
7500    --           type T3 is new T2;
7501    --           type T4 (Y : Int) is new T3 (Y, 99);
7502
7503    --  The following table summarizes the discriminants and stored
7504    --  discriminants in R and T1 through T4.
7505
7506    --   Type      Discrim     Stored Discrim  Comment
7507    --    R      (D1, D2, D3)   (D1, D2, D3)   Girder discrims implicit in R
7508    --    T1     (D1, D2, D3)   (D1, D2, D3)   Girder discrims implicit in T1
7509    --    T2     (X1, X2)       (D1, D2, D3)   Girder discrims EXPLICIT in T2
7510    --    T3     (X1, X2)       (D1, D2, D3)   Girder discrims EXPLICIT in T3
7511    --    T4     (Y)            (D1, D2, D3)   Girder discrims EXPLICIT in T4
7512
7513    --  Field Corresponding_Discriminant (abbreviated CD below) allows us to
7514    --  find the corresponding discriminant in the parent type, while
7515    --  Original_Record_Component (abbreviated ORC below), the actual physical
7516    --  component that is renamed. Finally the field Is_Completely_Hidden
7517    --  (abbreviated ICH below) is set for all explicit stored discriminants
7518    --  (see einfo.ads for more info). For the above example this gives:
7519
7520    --                 Discrim     CD        ORC     ICH
7521    --                 ^^^^^^^     ^^        ^^^     ^^^
7522    --                 D1 in R    empty     itself    no
7523    --                 D2 in R    empty     itself    no
7524    --                 D3 in R    empty     itself    no
7525
7526    --                 D1 in T1  D1 in R    itself    no
7527    --                 D2 in T1  D2 in R    itself    no
7528    --                 D3 in T1  D3 in R    itself    no
7529
7530    --                 X1 in T2  D3 in T1  D3 in T2   no
7531    --                 X2 in T2  D1 in T1  D1 in T2   no
7532    --                 D1 in T2   empty    itself    yes
7533    --                 D2 in T2   empty    itself    yes
7534    --                 D3 in T2   empty    itself    yes
7535
7536    --                 X1 in T3  X1 in T2  D3 in T3   no
7537    --                 X2 in T3  X2 in T2  D1 in T3   no
7538    --                 D1 in T3   empty    itself    yes
7539    --                 D2 in T3   empty    itself    yes
7540    --                 D3 in T3   empty    itself    yes
7541
7542    --                 Y  in T4  X1 in T3  D3 in T3   no
7543    --                 D1 in T3   empty    itself    yes
7544    --                 D2 in T3   empty    itself    yes
7545    --                 D3 in T3   empty    itself    yes
7546
7547    --  4. DISCRIMINANTS IN DERIVED TAGGED RECORD TYPES
7548
7549    --  Type derivation for tagged types is fairly straightforward. If no
7550    --  discriminants are specified by the derived type, these are inherited
7551    --  from the parent. No explicit stored discriminants are ever necessary.
7552    --  The only manipulation that is done to the tree is that of adding a
7553    --  _parent field with parent type and constrained to the same constraint
7554    --  specified for the parent in the derived type definition. For instance:
7555
7556    --           type R  (D1, D2, D3 : Int) is tagged record ... end record;
7557    --           type T1 is new R with null record;
7558    --           type T2 (X1, X2: Int) is new T1 (X2, 88, X1) with null record;
7559
7560    --  are changed into:
7561
7562    --           type T1 (D1, D2, D3 : Int) is new R (D1, D2, D3) with record
7563    --              _parent : R (D1, D2, D3);
7564    --           end record;
7565
7566    --           type T2 (X1, X2: Int) is new T1 (X2, 88, X1) with record
7567    --              _parent : T1 (X2, 88, X1);
7568    --           end record;
7569
7570    --  The discriminants actually present in R, T1 and T2 as well as their CD,
7571    --  ORC and ICH fields are:
7572
7573    --                 Discrim     CD        ORC     ICH
7574    --                 ^^^^^^^     ^^        ^^^     ^^^
7575    --                 D1 in R    empty     itself    no
7576    --                 D2 in R    empty     itself    no
7577    --                 D3 in R    empty     itself    no
7578
7579    --                 D1 in T1  D1 in R    D1 in R   no
7580    --                 D2 in T1  D2 in R    D2 in R   no
7581    --                 D3 in T1  D3 in R    D3 in R   no
7582
7583    --                 X1 in T2  D3 in T1   D3 in R   no
7584    --                 X2 in T2  D1 in T1   D1 in R   no
7585
7586    --  5. FIRST TRANSFORMATION FOR DERIVED RECORDS
7587    --
7588    --  Regardless of whether we dealing with a tagged or untagged type
7589    --  we will transform all derived type declarations of the form
7590    --
7591    --               type T is new R (...) [with ...];
7592    --  or
7593    --               subtype S is R (...);
7594    --               type T is new S [with ...];
7595    --  into
7596    --               type BT is new R [with ...];
7597    --               subtype T is BT (...);
7598    --
7599    --  That is, the base derived type is constrained only if it has no
7600    --  discriminants. The reason for doing this is that GNAT's semantic model
7601    --  assumes that a base type with discriminants is unconstrained.
7602    --
7603    --  Note that, strictly speaking, the above transformation is not always
7604    --  correct. Consider for instance the following excerpt from ACVC b34011a:
7605    --
7606    --       procedure B34011A is
7607    --          type REC (D : integer := 0) is record
7608    --             I : Integer;
7609    --          end record;
7610
7611    --          package P is
7612    --             type T6 is new Rec;
7613    --             function F return T6;
7614    --          end P;
7615
7616    --          use P;
7617    --          package Q6 is
7618    --             type U is new T6 (Q6.F.I);                   -- ERROR: Q6.F.
7619    --          end Q6;
7620    --
7621    --  The definition of Q6.U is illegal. However transforming Q6.U into
7622
7623    --             type BaseU is new T6;
7624    --             subtype U is BaseU (Q6.F.I)
7625
7626    --  turns U into a legal subtype, which is incorrect. To avoid this problem
7627    --  we always analyze the constraint (in this case (Q6.F.I)) before applying
7628    --  the transformation described above.
7629
7630    --  There is another instance where the above transformation is incorrect.
7631    --  Consider:
7632
7633    --          package Pack is
7634    --             type Base (D : Integer) is tagged null record;
7635    --             procedure P (X : Base);
7636
7637    --             type Der is new Base (2) with null record;
7638    --             procedure P (X : Der);
7639    --          end Pack;
7640
7641    --  Then the above transformation turns this into
7642
7643    --             type Der_Base is new Base with null record;
7644    --             --  procedure P (X : Base) is implicitly inherited here
7645    --             --  as procedure P (X : Der_Base).
7646
7647    --             subtype Der is Der_Base (2);
7648    --             procedure P (X : Der);
7649    --             --  The overriding of P (X : Der_Base) is illegal since we
7650    --             --  have a parameter conformance problem.
7651
7652    --  To get around this problem, after having semantically processed Der_Base
7653    --  and the rewritten subtype declaration for Der, we copy Der_Base field
7654    --  Discriminant_Constraint from Der so that when parameter conformance is
7655    --  checked when P is overridden, no semantic errors are flagged.
7656
7657    --  6. SECOND TRANSFORMATION FOR DERIVED RECORDS
7658
7659    --  Regardless of whether we are dealing with a tagged or untagged type
7660    --  we will transform all derived type declarations of the form
7661
7662    --               type R (D1, .., Dn : ...) is [tagged] record ...;
7663    --               type T is new R [with ...];
7664    --  into
7665    --               type T (D1, .., Dn : ...) is new R (D1, .., Dn) [with ...];
7666
7667    --  The reason for such transformation is that it allows us to implement a
7668    --  very clean form of component inheritance as explained below.
7669
7670    --  Note that this transformation is not achieved by direct tree rewriting
7671    --  and manipulation, but rather by redoing the semantic actions that the
7672    --  above transformation will entail. This is done directly in routine
7673    --  Inherit_Components.
7674
7675    --  7. TYPE DERIVATION AND COMPONENT INHERITANCE
7676
7677    --  In both tagged and untagged derived types, regular non discriminant
7678    --  components are inherited in the derived type from the parent type. In
7679    --  the absence of discriminants component, inheritance is straightforward
7680    --  as components can simply be copied from the parent.
7681
7682    --  If the parent has discriminants, inheriting components constrained with
7683    --  these discriminants requires caution. Consider the following example:
7684
7685    --      type R  (D1, D2 : Positive) is [tagged] record
7686    --         S : String (D1 .. D2);
7687    --      end record;
7688
7689    --      type T1                is new R        [with null record];
7690    --      type T2 (X : positive) is new R (1, X) [with null record];
7691
7692    --  As explained in 6. above, T1 is rewritten as
7693    --      type T1 (D1, D2 : Positive) is new R (D1, D2) [with null record];
7694    --  which makes the treatment for T1 and T2 identical.
7695
7696    --  What we want when inheriting S, is that references to D1 and D2 in R are
7697    --  replaced with references to their correct constraints, i.e. D1 and D2 in
7698    --  T1 and 1 and X in T2. So all R's discriminant references are replaced
7699    --  with either discriminant references in the derived type or expressions.
7700    --  This replacement is achieved as follows: before inheriting R's
7701    --  components, a subtype R (D1, D2) for T1 (resp. R (1, X) for T2) is
7702    --  created in the scope of T1 (resp. scope of T2) so that discriminants D1
7703    --  and D2 of T1 are visible (resp. discriminant X of T2 is visible).
7704    --  For T2, for instance, this has the effect of replacing String (D1 .. D2)
7705    --  by String (1 .. X).
7706
7707    --  8. TYPE DERIVATION IN PRIVATE TYPE EXTENSIONS
7708
7709    --  We explain here the rules governing private type extensions relevant to
7710    --  type derivation. These rules are explained on the following example:
7711
7712    --      type D [(...)] is new A [(...)] with private;      <-- partial view
7713    --      type D [(...)] is new P [(...)] with null record;  <-- full view
7714
7715    --  Type A is called the ancestor subtype of the private extension.
7716    --  Type P is the parent type of the full view of the private extension. It
7717    --  must be A or a type derived from A.
7718
7719    --  The rules concerning the discriminants of private type extensions are
7720    --  [7.3(10-13)]:
7721
7722    --  o If a private extension inherits known discriminants from the ancestor
7723    --    subtype, then the full view must also inherit its discriminants from
7724    --    the ancestor subtype and the parent subtype of the full view must be
7725    --    constrained if and only if the ancestor subtype is constrained.
7726
7727    --  o If a partial view has unknown discriminants, then the full view may
7728    --    define a definite or an indefinite subtype, with or without
7729    --    discriminants.
7730
7731    --  o If a partial view has neither known nor unknown discriminants, then
7732    --    the full view must define a definite subtype.
7733
7734    --  o If the ancestor subtype of a private extension has constrained
7735    --    discriminants, then the parent subtype of the full view must impose a
7736    --    statically matching constraint on those discriminants.
7737
7738    --  This means that only the following forms of private extensions are
7739    --  allowed:
7740
7741    --      type D is new A with private;      <-- partial view
7742    --      type D is new P with null record;  <-- full view
7743
7744    --  If A has no discriminants than P has no discriminants, otherwise P must
7745    --  inherit A's discriminants.
7746
7747    --      type D is new A (...) with private;      <-- partial view
7748    --      type D is new P (:::) with null record;  <-- full view
7749
7750    --  P must inherit A's discriminants and (...) and (:::) must statically
7751    --  match.
7752
7753    --      subtype A is R (...);
7754    --      type D is new A with private;      <-- partial view
7755    --      type D is new P with null record;  <-- full view
7756
7757    --  P must have inherited R's discriminants and must be derived from A or
7758    --  any of its subtypes.
7759
7760    --      type D (..) is new A with private;              <-- partial view
7761    --      type D (..) is new P [(:::)] with null record;  <-- full view
7762
7763    --  No specific constraints on P's discriminants or constraint (:::).
7764    --  Note that A can be unconstrained, but the parent subtype P must either
7765    --  be constrained or (:::) must be present.
7766
7767    --      type D (..) is new A [(...)] with private;      <-- partial view
7768    --      type D (..) is new P [(:::)] with null record;  <-- full view
7769
7770    --  P's constraints on A's discriminants must statically match those
7771    --  imposed by (...).
7772
7773    --  9. IMPLEMENTATION OF TYPE DERIVATION FOR PRIVATE EXTENSIONS
7774
7775    --  The full view of a private extension is handled exactly as described
7776    --  above. The model chose for the private view of a private extension is
7777    --  the same for what concerns discriminants (i.e. they receive the same
7778    --  treatment as in the tagged case). However, the private view of the
7779    --  private extension always inherits the components of the parent base,
7780    --  without replacing any discriminant reference. Strictly speaking this is
7781    --  incorrect. However, Gigi never uses this view to generate code so this
7782    --  is a purely semantic issue. In theory, a set of transformations similar
7783    --  to those given in 5. and 6. above could be applied to private views of
7784    --  private extensions to have the same model of component inheritance as
7785    --  for non private extensions. However, this is not done because it would
7786    --  further complicate private type processing. Semantically speaking, this
7787    --  leaves us in an uncomfortable situation. As an example consider:
7788
7789    --          package Pack is
7790    --             type R (D : integer) is tagged record
7791    --                S : String (1 .. D);
7792    --             end record;
7793    --             procedure P (X : R);
7794    --             type T is new R (1) with private;
7795    --          private
7796    --             type T is new R (1) with null record;
7797    --          end;
7798
7799    --  This is transformed into:
7800
7801    --          package Pack is
7802    --             type R (D : integer) is tagged record
7803    --                S : String (1 .. D);
7804    --             end record;
7805    --             procedure P (X : R);
7806    --             type T is new R (1) with private;
7807    --          private
7808    --             type BaseT is new R with null record;
7809    --             subtype  T is BaseT (1);
7810    --          end;
7811
7812    --  (strictly speaking the above is incorrect Ada)
7813
7814    --  From the semantic standpoint the private view of private extension T
7815    --  should be flagged as constrained since one can clearly have
7816    --
7817    --             Obj : T;
7818    --
7819    --  in a unit withing Pack. However, when deriving subprograms for the
7820    --  private view of private extension T, T must be seen as unconstrained
7821    --  since T has discriminants (this is a constraint of the current
7822    --  subprogram derivation model). Thus, when processing the private view of
7823    --  a private extension such as T, we first mark T as unconstrained, we
7824    --  process it, we perform program derivation and just before returning from
7825    --  Build_Derived_Record_Type we mark T as constrained.
7826
7827    --  ??? Are there are other uncomfortable cases that we will have to
7828    --      deal with.
7829
7830    --  10. RECORD_TYPE_WITH_PRIVATE complications
7831
7832    --  Types that are derived from a visible record type and have a private
7833    --  extension present other peculiarities. They behave mostly like private
7834    --  types, but if they have primitive operations defined, these will not
7835    --  have the proper signatures for further inheritance, because other
7836    --  primitive operations will use the implicit base that we define for
7837    --  private derivations below. This affect subprogram inheritance (see
7838    --  Derive_Subprograms for details). We also derive the implicit base from
7839    --  the base type of the full view, so that the implicit base is a record
7840    --  type and not another private type, This avoids infinite loops.
7841
7842    procedure Build_Derived_Record_Type
7843      (N            : Node_Id;
7844       Parent_Type  : Entity_Id;
7845       Derived_Type : Entity_Id;
7846       Derive_Subps : Boolean := True)
7847    is
7848       Discriminant_Specs : constant Boolean :=
7849                              Present (Discriminant_Specifications (N));
7850       Is_Tagged          : constant Boolean := Is_Tagged_Type (Parent_Type);
7851       Loc                : constant Source_Ptr := Sloc (N);
7852       Private_Extension  : constant Boolean :=
7853                              Nkind (N) = N_Private_Extension_Declaration;
7854       Assoc_List         : Elist_Id;
7855       Constraint_Present : Boolean;
7856       Constrs            : Elist_Id;
7857       Discrim            : Entity_Id;
7858       Indic              : Node_Id;
7859       Inherit_Discrims   : Boolean := False;
7860       Last_Discrim       : Entity_Id;
7861       New_Base           : Entity_Id;
7862       New_Decl           : Node_Id;
7863       New_Discrs         : Elist_Id;
7864       New_Indic          : Node_Id;
7865       Parent_Base        : Entity_Id;
7866       Save_Etype         : Entity_Id;
7867       Save_Discr_Constr  : Elist_Id;
7868       Save_Next_Entity   : Entity_Id;
7869       Type_Def           : Node_Id;
7870
7871       Discs : Elist_Id := New_Elmt_List;
7872       --  An empty Discs list means that there were no constraints in the
7873       --  subtype indication or that there was an error processing it.
7874
7875    begin
7876       if Ekind (Parent_Type) = E_Record_Type_With_Private
7877         and then Present (Full_View (Parent_Type))
7878         and then Has_Discriminants (Parent_Type)
7879       then
7880          Parent_Base := Base_Type (Full_View (Parent_Type));
7881       else
7882          Parent_Base := Base_Type (Parent_Type);
7883       end if;
7884
7885       --  AI05-0115 : if this is a derivation from a private type in some
7886       --  other scope that may lead to invisible components for the derived
7887       --  type, mark it accordingly.
7888
7889       if Is_Private_Type (Parent_Type) then
7890          if Scope (Parent_Type) = Scope (Derived_Type) then
7891             null;
7892
7893          elsif In_Open_Scopes (Scope (Parent_Type))
7894            and then In_Private_Part (Scope (Parent_Type))
7895          then
7896             null;
7897
7898          else
7899             Set_Has_Private_Ancestor (Derived_Type);
7900          end if;
7901
7902       else
7903          Set_Has_Private_Ancestor
7904            (Derived_Type, Has_Private_Ancestor (Parent_Type));
7905       end if;
7906
7907       --  Before we start the previously documented transformations, here is
7908       --  little fix for size and alignment of tagged types. Normally when we
7909       --  derive type D from type P, we copy the size and alignment of P as the
7910       --  default for D, and in the absence of explicit representation clauses
7911       --  for D, the size and alignment are indeed the same as the parent.
7912
7913       --  But this is wrong for tagged types, since fields may be added, and
7914       --  the default size may need to be larger, and the default alignment may
7915       --  need to be larger.
7916
7917       --  We therefore reset the size and alignment fields in the tagged case.
7918       --  Note that the size and alignment will in any case be at least as
7919       --  large as the parent type (since the derived type has a copy of the
7920       --  parent type in the _parent field)
7921
7922       --  The type is also marked as being tagged here, which is needed when
7923       --  processing components with a self-referential anonymous access type
7924       --  in the call to Check_Anonymous_Access_Components below. Note that
7925       --  this flag is also set later on for completeness.
7926
7927       if Is_Tagged then
7928          Set_Is_Tagged_Type (Derived_Type);
7929          Init_Size_Align    (Derived_Type);
7930       end if;
7931
7932       --  STEP 0a: figure out what kind of derived type declaration we have
7933
7934       if Private_Extension then
7935          Type_Def := N;
7936          Set_Ekind (Derived_Type, E_Record_Type_With_Private);
7937          Set_Default_SSO (Derived_Type);
7938
7939       else
7940          Type_Def := Type_Definition (N);
7941
7942          --  Ekind (Parent_Base) is not necessarily E_Record_Type since
7943          --  Parent_Base can be a private type or private extension. However,
7944          --  for tagged types with an extension the newly added fields are
7945          --  visible and hence the Derived_Type is always an E_Record_Type.
7946          --  (except that the parent may have its own private fields).
7947          --  For untagged types we preserve the Ekind of the Parent_Base.
7948
7949          if Present (Record_Extension_Part (Type_Def)) then
7950             Set_Ekind (Derived_Type, E_Record_Type);
7951             Set_Default_SSO (Derived_Type);
7952
7953             --  Create internal access types for components with anonymous
7954             --  access types.
7955
7956             if Ada_Version >= Ada_2005 then
7957                Check_Anonymous_Access_Components
7958                  (N, Derived_Type, Derived_Type,
7959                    Component_List (Record_Extension_Part (Type_Def)));
7960             end if;
7961
7962          else
7963             Set_Ekind (Derived_Type, Ekind (Parent_Base));
7964          end if;
7965       end if;
7966
7967       --  Indic can either be an N_Identifier if the subtype indication
7968       --  contains no constraint or an N_Subtype_Indication if the subtype
7969       --  indication has a constraint.
7970
7971       Indic := Subtype_Indication (Type_Def);
7972       Constraint_Present := (Nkind (Indic) = N_Subtype_Indication);
7973
7974       --  Check that the type has visible discriminants. The type may be
7975       --  a private type with unknown discriminants whose full view has
7976       --  discriminants which are invisible.
7977
7978       if Constraint_Present then
7979          if not Has_Discriminants (Parent_Base)
7980            or else
7981              (Has_Unknown_Discriminants (Parent_Base)
7982                and then Is_Private_Type (Parent_Base))
7983          then
7984             Error_Msg_N
7985               ("invalid constraint: type has no discriminant",
7986                  Constraint (Indic));
7987
7988             Constraint_Present := False;
7989             Rewrite (Indic, New_Copy_Tree (Subtype_Mark (Indic)));
7990
7991          elsif Is_Constrained (Parent_Type) then
7992             Error_Msg_N
7993                ("invalid constraint: parent type is already constrained",
7994                   Constraint (Indic));
7995
7996             Constraint_Present := False;
7997             Rewrite (Indic, New_Copy_Tree (Subtype_Mark (Indic)));
7998          end if;
7999       end if;
8000
8001       --  STEP 0b: If needed, apply transformation given in point 5. above
8002
8003       if not Private_Extension
8004         and then Has_Discriminants (Parent_Type)
8005         and then not Discriminant_Specs
8006         and then (Is_Constrained (Parent_Type) or else Constraint_Present)
8007       then
8008          --  First, we must analyze the constraint (see comment in point 5.)
8009          --  The constraint may come from the subtype indication of the full
8010          --  declaration.
8011
8012          if Constraint_Present then
8013             New_Discrs := Build_Discriminant_Constraints (Parent_Type, Indic);
8014
8015          --  If there is no explicit constraint, there might be one that is
8016          --  inherited from a constrained parent type. In that case verify that
8017          --  it conforms to the constraint in the partial view. In perverse
8018          --  cases the parent subtypes of the partial and full view can have
8019          --  different constraints.
8020
8021          elsif Present (Stored_Constraint (Parent_Type)) then
8022             New_Discrs := Stored_Constraint (Parent_Type);
8023
8024          else
8025             New_Discrs := No_Elist;
8026          end if;
8027
8028          if Has_Discriminants (Derived_Type)
8029            and then Has_Private_Declaration (Derived_Type)
8030            and then Present (Discriminant_Constraint (Derived_Type))
8031            and then Present (New_Discrs)
8032          then
8033             --  Verify that constraints of the full view statically match
8034             --  those given in the partial view.
8035
8036             declare
8037                C1, C2 : Elmt_Id;
8038
8039             begin
8040                C1 := First_Elmt (New_Discrs);
8041                C2 := First_Elmt (Discriminant_Constraint (Derived_Type));
8042                while Present (C1) and then Present (C2) loop
8043                   if Fully_Conformant_Expressions (Node (C1), Node (C2))
8044                     or else
8045                       (Is_OK_Static_Expression (Node (C1))
8046                         and then Is_OK_Static_Expression (Node (C2))
8047                         and then
8048                           Expr_Value (Node (C1)) = Expr_Value (Node (C2)))
8049                   then
8050                      null;
8051
8052                   else
8053                      if Constraint_Present then
8054                         Error_Msg_N
8055                           ("constraint not conformant to previous declaration",
8056                            Node (C1));
8057                      else
8058                         Error_Msg_N
8059                           ("constraint of full view is incompatible "
8060                            & "with partial view", N);
8061                      end if;
8062                   end if;
8063
8064                   Next_Elmt (C1);
8065                   Next_Elmt (C2);
8066                end loop;
8067             end;
8068          end if;
8069
8070          --  Insert and analyze the declaration for the unconstrained base type
8071
8072          New_Base := Create_Itype (Ekind (Derived_Type), N, Derived_Type, 'B');
8073
8074          New_Decl :=
8075            Make_Full_Type_Declaration (Loc,
8076               Defining_Identifier => New_Base,
8077               Type_Definition     =>
8078                 Make_Derived_Type_Definition (Loc,
8079                   Abstract_Present      => Abstract_Present (Type_Def),
8080                   Limited_Present       => Limited_Present (Type_Def),
8081                   Subtype_Indication    =>
8082                     New_Occurrence_Of (Parent_Base, Loc),
8083                   Record_Extension_Part =>
8084                     Relocate_Node (Record_Extension_Part (Type_Def)),
8085                   Interface_List        => Interface_List (Type_Def)));
8086
8087          Set_Parent (New_Decl, Parent (N));
8088          Mark_Rewrite_Insertion (New_Decl);
8089          Insert_Before (N, New_Decl);
8090
8091          --  In the extension case, make sure ancestor is frozen appropriately
8092          --  (see also non-discriminated case below).
8093
8094          if Present (Record_Extension_Part (Type_Def))
8095            or else Is_Interface (Parent_Base)
8096          then
8097             Freeze_Before (New_Decl, Parent_Type);
8098          end if;
8099
8100          --  Note that this call passes False for the Derive_Subps parameter
8101          --  because subprogram derivation is deferred until after creating
8102          --  the subtype (see below).
8103
8104          Build_Derived_Type
8105            (New_Decl, Parent_Base, New_Base,
8106             Is_Completion => False, Derive_Subps => False);
8107
8108          --  ??? This needs re-examination to determine whether the
8109          --  above call can simply be replaced by a call to Analyze.
8110
8111          Set_Analyzed (New_Decl);
8112
8113          --  Insert and analyze the declaration for the constrained subtype
8114
8115          if Constraint_Present then
8116             New_Indic :=
8117               Make_Subtype_Indication (Loc,
8118                 Subtype_Mark => New_Occurrence_Of (New_Base, Loc),
8119                 Constraint   => Relocate_Node (Constraint (Indic)));
8120
8121          else
8122             declare
8123                Constr_List : constant List_Id := New_List;
8124                C           : Elmt_Id;
8125                Expr        : Node_Id;
8126
8127             begin
8128                C := First_Elmt (Discriminant_Constraint (Parent_Type));
8129                while Present (C) loop
8130                   Expr := Node (C);
8131
8132                   --  It is safe here to call New_Copy_Tree since we called
8133                   --  Force_Evaluation on each constraint previously
8134                   --  in Build_Discriminant_Constraints.
8135
8136                   Append (New_Copy_Tree (Expr), To => Constr_List);
8137
8138                   Next_Elmt (C);
8139                end loop;
8140
8141                New_Indic :=
8142                  Make_Subtype_Indication (Loc,
8143                    Subtype_Mark => New_Occurrence_Of (New_Base, Loc),
8144                    Constraint   =>
8145                      Make_Index_Or_Discriminant_Constraint (Loc, Constr_List));
8146             end;
8147          end if;
8148
8149          Rewrite (N,
8150            Make_Subtype_Declaration (Loc,
8151              Defining_Identifier => Derived_Type,
8152              Subtype_Indication  => New_Indic));
8153
8154          Analyze (N);
8155
8156          --  Derivation of subprograms must be delayed until the full subtype
8157          --  has been established, to ensure proper overriding of subprograms
8158          --  inherited by full types. If the derivations occurred as part of
8159          --  the call to Build_Derived_Type above, then the check for type
8160          --  conformance would fail because earlier primitive subprograms
8161          --  could still refer to the full type prior the change to the new
8162          --  subtype and hence would not match the new base type created here.
8163          --  Subprograms are not derived, however, when Derive_Subps is False
8164          --  (since otherwise there could be redundant derivations).
8165
8166          if Derive_Subps then
8167             Derive_Subprograms (Parent_Type, Derived_Type);
8168          end if;
8169
8170          --  For tagged types the Discriminant_Constraint of the new base itype
8171          --  is inherited from the first subtype so that no subtype conformance
8172          --  problem arise when the first subtype overrides primitive
8173          --  operations inherited by the implicit base type.
8174
8175          if Is_Tagged then
8176             Set_Discriminant_Constraint
8177               (New_Base, Discriminant_Constraint (Derived_Type));
8178          end if;
8179
8180          return;
8181       end if;
8182
8183       --  If we get here Derived_Type will have no discriminants or it will be
8184       --  a discriminated unconstrained base type.
8185
8186       --  STEP 1a: perform preliminary actions/checks for derived tagged types
8187
8188       if Is_Tagged then
8189
8190          --  The parent type is frozen for non-private extensions (RM 13.14(7))
8191          --  The declaration of a specific descendant of an interface type
8192          --  freezes the interface type (RM 13.14).
8193
8194          if not Private_Extension or else Is_Interface (Parent_Base) then
8195             Freeze_Before (N, Parent_Type);
8196          end if;
8197
8198          --  In Ada 2005 (AI-344), the restriction that a derived tagged type
8199          --  cannot be declared at a deeper level than its parent type is
8200          --  removed. The check on derivation within a generic body is also
8201          --  relaxed, but there's a restriction that a derived tagged type
8202          --  cannot be declared in a generic body if it's derived directly
8203          --  or indirectly from a formal type of that generic.
8204
8205          if Ada_Version >= Ada_2005 then
8206             if Present (Enclosing_Generic_Body (Derived_Type)) then
8207                declare
8208                   Ancestor_Type : Entity_Id;
8209
8210                begin
8211                   --  Check to see if any ancestor of the derived type is a
8212                   --  formal type.
8213
8214                   Ancestor_Type := Parent_Type;
8215                   while not Is_Generic_Type (Ancestor_Type)
8216                     and then Etype (Ancestor_Type) /= Ancestor_Type
8217                   loop
8218                      Ancestor_Type := Etype (Ancestor_Type);
8219                   end loop;
8220
8221                   --  If the derived type does have a formal type as an
8222                   --  ancestor, then it's an error if the derived type is
8223                   --  declared within the body of the generic unit that
8224                   --  declares the formal type in its generic formal part. It's
8225                   --  sufficient to check whether the ancestor type is declared
8226                   --  inside the same generic body as the derived type (such as
8227                   --  within a nested generic spec), in which case the
8228                   --  derivation is legal. If the formal type is declared
8229                   --  outside of that generic body, then it's guaranteed that
8230                   --  the derived type is declared within the generic body of
8231                   --  the generic unit declaring the formal type.
8232
8233                   if Is_Generic_Type (Ancestor_Type)
8234                     and then Enclosing_Generic_Body (Ancestor_Type) /=
8235                                Enclosing_Generic_Body (Derived_Type)
8236                   then
8237                      Error_Msg_NE
8238                        ("parent type of& must not be descendant of formal type"
8239                           & " of an enclosing generic body",
8240                             Indic, Derived_Type);
8241                   end if;
8242                end;
8243             end if;
8244
8245          elsif Type_Access_Level (Derived_Type) /=
8246                  Type_Access_Level (Parent_Type)
8247            and then not Is_Generic_Type (Derived_Type)
8248          then
8249             if Is_Controlled (Parent_Type) then
8250                Error_Msg_N
8251                  ("controlled type must be declared at the library level",
8252                   Indic);
8253             else
8254                Error_Msg_N
8255                  ("type extension at deeper accessibility level than parent",
8256                   Indic);
8257             end if;
8258
8259          else
8260             declare
8261                GB : constant Node_Id := Enclosing_Generic_Body (Derived_Type);
8262             begin
8263                if Present (GB)
8264                  and then GB /= Enclosing_Generic_Body (Parent_Base)
8265                then
8266                   Error_Msg_NE
8267                     ("parent type of& must not be outside generic body"
8268                        & " (RM 3.9.1(4))",
8269                          Indic, Derived_Type);
8270                end if;
8271             end;
8272          end if;
8273       end if;
8274
8275       --  Ada 2005 (AI-251)
8276
8277       if Ada_Version >= Ada_2005 and then Is_Tagged then
8278
8279          --  "The declaration of a specific descendant of an interface type
8280          --  freezes the interface type" (RM 13.14).
8281
8282          declare
8283             Iface : Node_Id;
8284          begin
8285             if Is_Non_Empty_List (Interface_List (Type_Def)) then
8286                Iface := First (Interface_List (Type_Def));
8287                while Present (Iface) loop
8288                   Freeze_Before (N, Etype (Iface));
8289                   Next (Iface);
8290                end loop;
8291             end if;
8292          end;
8293       end if;
8294
8295       --  STEP 1b : preliminary cleanup of the full view of private types
8296
8297       --  If the type is already marked as having discriminants, then it's the
8298       --  completion of a private type or private extension and we need to
8299       --  retain the discriminants from the partial view if the current
8300       --  declaration has Discriminant_Specifications so that we can verify
8301       --  conformance. However, we must remove any existing components that
8302       --  were inherited from the parent (and attached in Copy_And_Swap)
8303       --  because the full type inherits all appropriate components anyway, and
8304       --  we do not want the partial view's components interfering.
8305
8306       if Has_Discriminants (Derived_Type) and then Discriminant_Specs then
8307          Discrim := First_Discriminant (Derived_Type);
8308          loop
8309             Last_Discrim := Discrim;
8310             Next_Discriminant (Discrim);
8311             exit when No (Discrim);
8312          end loop;
8313
8314          Set_Last_Entity (Derived_Type, Last_Discrim);
8315
8316       --  In all other cases wipe out the list of inherited components (even
8317       --  inherited discriminants), it will be properly rebuilt here.
8318
8319       else
8320          Set_First_Entity (Derived_Type, Empty);
8321          Set_Last_Entity  (Derived_Type, Empty);
8322       end if;
8323
8324       --  STEP 1c: Initialize some flags for the Derived_Type
8325
8326       --  The following flags must be initialized here so that
8327       --  Process_Discriminants can check that discriminants of tagged types do
8328       --  not have a default initial value and that access discriminants are
8329       --  only specified for limited records. For completeness, these flags are
8330       --  also initialized along with all the other flags below.
8331
8332       --  AI-419: Limitedness is not inherited from an interface parent, so to
8333       --  be limited in that case the type must be explicitly declared as
8334       --  limited. However, task and protected interfaces are always limited.
8335
8336       if Limited_Present (Type_Def) then
8337          Set_Is_Limited_Record (Derived_Type);
8338
8339       elsif Is_Limited_Record (Parent_Type)
8340         or else (Present (Full_View (Parent_Type))
8341                   and then Is_Limited_Record (Full_View (Parent_Type)))
8342       then
8343          if not Is_Interface (Parent_Type)
8344            or else Is_Synchronized_Interface (Parent_Type)
8345            or else Is_Protected_Interface (Parent_Type)
8346            or else Is_Task_Interface (Parent_Type)
8347          then
8348             Set_Is_Limited_Record (Derived_Type);
8349          end if;
8350       end if;
8351
8352       --  STEP 2a: process discriminants of derived type if any
8353
8354       Push_Scope (Derived_Type);
8355
8356       if Discriminant_Specs then
8357          Set_Has_Unknown_Discriminants (Derived_Type, False);
8358
8359          --  The following call initializes fields Has_Discriminants and
8360          --  Discriminant_Constraint, unless we are processing the completion
8361          --  of a private type declaration.
8362
8363          Check_Or_Process_Discriminants (N, Derived_Type);
8364
8365          --  For untagged types, the constraint on the Parent_Type must be
8366          --  present and is used to rename the discriminants.
8367
8368          if not Is_Tagged and then not Has_Discriminants (Parent_Type) then
8369             Error_Msg_N ("untagged parent must have discriminants", Indic);
8370
8371          elsif not Is_Tagged and then not Constraint_Present then
8372             Error_Msg_N
8373               ("discriminant constraint needed for derived untagged records",
8374                Indic);
8375
8376          --  Otherwise the parent subtype must be constrained unless we have a
8377          --  private extension.
8378
8379          elsif not Constraint_Present
8380            and then not Private_Extension
8381            and then not Is_Constrained (Parent_Type)
8382          then
8383             Error_Msg_N
8384               ("unconstrained type not allowed in this context", Indic);
8385
8386          elsif Constraint_Present then
8387             --  The following call sets the field Corresponding_Discriminant
8388             --  for the discriminants in the Derived_Type.
8389
8390             Discs := Build_Discriminant_Constraints (Parent_Type, Indic, True);
8391
8392             --  For untagged types all new discriminants must rename
8393             --  discriminants in the parent. For private extensions new
8394             --  discriminants cannot rename old ones (implied by [7.3(13)]).
8395
8396             Discrim := First_Discriminant (Derived_Type);
8397             while Present (Discrim) loop
8398                if not Is_Tagged
8399                  and then No (Corresponding_Discriminant (Discrim))
8400                then
8401                   Error_Msg_N
8402                     ("new discriminants must constrain old ones", Discrim);
8403
8404                elsif Private_Extension
8405                  and then Present (Corresponding_Discriminant (Discrim))
8406                then
8407                   Error_Msg_N
8408                     ("only static constraints allowed for parent"
8409                      & " discriminants in the partial view", Indic);
8410                   exit;
8411                end if;
8412
8413                --  If a new discriminant is used in the constraint, then its
8414                --  subtype must be statically compatible with the parent
8415                --  discriminant's subtype (3.7(15)).
8416
8417                --  However, if the record contains an array constrained by
8418                --  the discriminant but with some different bound, the compiler
8419                --  attemps to create a smaller range for the discriminant type.
8420                --  (See exp_ch3.Adjust_Discriminants). In this case, where
8421                --  the discriminant type is a scalar type, the check must use
8422                --  the original discriminant type in the parent declaration.
8423
8424                declare
8425                   Corr_Disc : constant Entity_Id :=
8426                                 Corresponding_Discriminant (Discrim);
8427                   Disc_Type : constant Entity_Id := Etype (Discrim);
8428                   Corr_Type : Entity_Id;
8429
8430                begin
8431                   if Present (Corr_Disc) then
8432                      if Is_Scalar_Type (Disc_Type) then
8433                         Corr_Type :=
8434                            Entity (Discriminant_Type (Parent (Corr_Disc)));
8435                      else
8436                         Corr_Type := Etype (Corr_Disc);
8437                      end if;
8438
8439                      if not
8440                         Subtypes_Statically_Compatible (Disc_Type, Corr_Type)
8441                      then
8442                         Error_Msg_N
8443                           ("subtype must be compatible "
8444                            & "with parent discriminant",
8445                            Discrim);
8446                      end if;
8447                   end if;
8448                end;
8449
8450                Next_Discriminant (Discrim);
8451             end loop;
8452
8453             --  Check whether the constraints of the full view statically
8454             --  match those imposed by the parent subtype [7.3(13)].
8455
8456             if Present (Stored_Constraint (Derived_Type)) then
8457                declare
8458                   C1, C2 : Elmt_Id;
8459
8460                begin
8461                   C1 := First_Elmt (Discs);
8462                   C2 := First_Elmt (Stored_Constraint (Derived_Type));
8463                   while Present (C1) and then Present (C2) loop
8464                      if not
8465                        Fully_Conformant_Expressions (Node (C1), Node (C2))
8466                      then
8467                         Error_Msg_N
8468                           ("not conformant with previous declaration",
8469                            Node (C1));
8470                      end if;
8471
8472                      Next_Elmt (C1);
8473                      Next_Elmt (C2);
8474                   end loop;
8475                end;
8476             end if;
8477          end if;
8478
8479       --  STEP 2b: No new discriminants, inherit discriminants if any
8480
8481       else
8482          if Private_Extension then
8483             Set_Has_Unknown_Discriminants
8484               (Derived_Type,
8485                Has_Unknown_Discriminants (Parent_Type)
8486                  or else Unknown_Discriminants_Present (N));
8487
8488          --  The partial view of the parent may have unknown discriminants,
8489          --  but if the full view has discriminants and the parent type is
8490          --  in scope they must be inherited.
8491
8492          elsif Has_Unknown_Discriminants (Parent_Type)
8493            and then
8494             (not Has_Discriminants (Parent_Type)
8495               or else not In_Open_Scopes (Scope (Parent_Type)))
8496          then
8497             Set_Has_Unknown_Discriminants (Derived_Type);
8498          end if;
8499
8500          if not Has_Unknown_Discriminants (Derived_Type)
8501            and then not Has_Unknown_Discriminants (Parent_Base)
8502            and then Has_Discriminants (Parent_Type)
8503          then
8504             Inherit_Discrims := True;
8505             Set_Has_Discriminants
8506               (Derived_Type, True);
8507             Set_Discriminant_Constraint
8508               (Derived_Type, Discriminant_Constraint (Parent_Base));
8509          end if;
8510
8511          --  The following test is true for private types (remember
8512          --  transformation 5. is not applied to those) and in an error
8513          --  situation.
8514
8515          if Constraint_Present then
8516             Discs := Build_Discriminant_Constraints (Parent_Type, Indic);
8517          end if;
8518
8519          --  For now mark a new derived type as constrained only if it has no
8520          --  discriminants. At the end of Build_Derived_Record_Type we properly
8521          --  set this flag in the case of private extensions. See comments in
8522          --  point 9. just before body of Build_Derived_Record_Type.
8523
8524          Set_Is_Constrained
8525            (Derived_Type,
8526             not (Inherit_Discrims
8527                   or else Has_Unknown_Discriminants (Derived_Type)));
8528       end if;
8529
8530       --  STEP 3: initialize fields of derived type
8531
8532       Set_Is_Tagged_Type    (Derived_Type, Is_Tagged);
8533       Set_Stored_Constraint (Derived_Type, No_Elist);
8534
8535       --  Ada 2005 (AI-251): Private type-declarations can implement interfaces
8536       --  but cannot be interfaces
8537
8538       if not Private_Extension
8539          and then Ekind (Derived_Type) /= E_Private_Type
8540          and then Ekind (Derived_Type) /= E_Limited_Private_Type
8541       then
8542          if Interface_Present (Type_Def) then
8543             Analyze_Interface_Declaration (Derived_Type, Type_Def);
8544          end if;
8545
8546          Set_Interfaces (Derived_Type, No_Elist);
8547       end if;
8548
8549       --  Fields inherited from the Parent_Type
8550
8551       Set_Has_Specified_Layout
8552         (Derived_Type, Has_Specified_Layout     (Parent_Type));
8553       Set_Is_Limited_Composite
8554         (Derived_Type, Is_Limited_Composite     (Parent_Type));
8555       Set_Is_Private_Composite
8556         (Derived_Type, Is_Private_Composite     (Parent_Type));
8557
8558       if Is_Tagged_Type (Parent_Type) then
8559          Set_No_Tagged_Streams_Pragma
8560            (Derived_Type, No_Tagged_Streams_Pragma (Parent_Type));
8561       end if;
8562
8563       --  Fields inherited from the Parent_Base
8564
8565       Set_Has_Controlled_Component
8566         (Derived_Type, Has_Controlled_Component (Parent_Base));
8567       Set_Has_Non_Standard_Rep
8568         (Derived_Type, Has_Non_Standard_Rep     (Parent_Base));
8569       Set_Has_Primitive_Operations
8570         (Derived_Type, Has_Primitive_Operations (Parent_Base));
8571
8572       --  Fields inherited from the Parent_Base in the non-private case
8573
8574       if Ekind (Derived_Type) = E_Record_Type then
8575          Set_Has_Complex_Representation
8576            (Derived_Type, Has_Complex_Representation (Parent_Base));
8577       end if;
8578
8579       --  Fields inherited from the Parent_Base for record types
8580
8581       if Is_Record_Type (Derived_Type) then
8582          declare
8583             Parent_Full : Entity_Id;
8584
8585          begin
8586             --  Ekind (Parent_Base) is not necessarily E_Record_Type since
8587             --  Parent_Base can be a private type or private extension. Go
8588             --  to the full view here to get the E_Record_Type specific flags.
8589
8590             if Present (Full_View (Parent_Base)) then
8591                Parent_Full := Full_View (Parent_Base);
8592             else
8593                Parent_Full := Parent_Base;
8594             end if;
8595
8596             Set_OK_To_Reorder_Components
8597               (Derived_Type, OK_To_Reorder_Components (Parent_Full));
8598          end;
8599       end if;
8600
8601       --  Set fields for private derived types
8602
8603       if Is_Private_Type (Derived_Type) then
8604          Set_Depends_On_Private (Derived_Type, True);
8605          Set_Private_Dependents (Derived_Type, New_Elmt_List);
8606
8607       --  Inherit fields from non private record types. If this is the
8608       --  completion of a derivation from a private type, the parent itself
8609       --  is private, and the attributes come from its full view, which must
8610       --  be present.
8611
8612       else
8613          if Is_Private_Type (Parent_Base)
8614            and then not Is_Record_Type (Parent_Base)
8615          then
8616             Set_Component_Alignment
8617               (Derived_Type, Component_Alignment (Full_View (Parent_Base)));
8618             Set_C_Pass_By_Copy
8619               (Derived_Type, C_Pass_By_Copy      (Full_View (Parent_Base)));
8620          else
8621             Set_Component_Alignment
8622               (Derived_Type, Component_Alignment (Parent_Base));
8623             Set_C_Pass_By_Copy
8624               (Derived_Type, C_Pass_By_Copy      (Parent_Base));
8625          end if;
8626       end if;
8627
8628       --  Set fields for tagged types
8629
8630       if Is_Tagged then
8631          Set_Direct_Primitive_Operations (Derived_Type, New_Elmt_List);
8632
8633          --  All tagged types defined in Ada.Finalization are controlled
8634
8635          if Chars (Scope (Derived_Type)) = Name_Finalization
8636            and then Chars (Scope (Scope (Derived_Type))) = Name_Ada
8637            and then Scope (Scope (Scope (Derived_Type))) = Standard_Standard
8638          then
8639             Set_Is_Controlled (Derived_Type);
8640          else
8641             Set_Is_Controlled (Derived_Type, Is_Controlled (Parent_Base));
8642          end if;
8643
8644          --  Minor optimization: there is no need to generate the class-wide
8645          --  entity associated with an underlying record view.
8646
8647          if not Is_Underlying_Record_View (Derived_Type) then
8648             Make_Class_Wide_Type (Derived_Type);
8649          end if;
8650
8651          Set_Is_Abstract_Type (Derived_Type, Abstract_Present (Type_Def));
8652
8653          if Has_Discriminants (Derived_Type)
8654            and then Constraint_Present
8655          then
8656             Set_Stored_Constraint
8657               (Derived_Type, Expand_To_Stored_Constraint (Parent_Base, Discs));
8658          end if;
8659
8660          if Ada_Version >= Ada_2005 then
8661             declare
8662                Ifaces_List : Elist_Id;
8663
8664             begin
8665                --  Checks rules 3.9.4 (13/2 and 14/2)
8666
8667                if Comes_From_Source (Derived_Type)
8668                  and then not Is_Private_Type (Derived_Type)
8669                  and then Is_Interface (Parent_Type)
8670                  and then not Is_Interface (Derived_Type)
8671                then
8672                   if Is_Task_Interface (Parent_Type) then
8673                      Error_Msg_N
8674                        ("(Ada 2005) task type required (RM 3.9.4 (13.2))",
8675                         Derived_Type);
8676
8677                   elsif Is_Protected_Interface (Parent_Type) then
8678                      Error_Msg_N
8679                        ("(Ada 2005) protected type required (RM 3.9.4 (14.2))",
8680                         Derived_Type);
8681                   end if;
8682                end if;
8683
8684                --  Check ARM rules 3.9.4 (15/2), 9.1 (9.d/2) and 9.4 (11.d/2)
8685
8686                Check_Interfaces (N, Type_Def);
8687
8688                --  Ada 2005 (AI-251): Collect the list of progenitors that are
8689                --  not already in the parents.
8690
8691                Collect_Interfaces
8692                  (T               => Derived_Type,
8693                   Ifaces_List     => Ifaces_List,
8694                   Exclude_Parents => True);
8695
8696                Set_Interfaces (Derived_Type, Ifaces_List);
8697
8698                --  If the derived type is the anonymous type created for
8699                --  a declaration whose parent has a constraint, propagate
8700                --  the interface list to the source type. This must be done
8701                --  prior to the completion of the analysis of the source type
8702                --  because the components in the extension may contain current
8703                --  instances whose legality depends on some ancestor.
8704
8705                if Is_Itype (Derived_Type) then
8706                   declare
8707                      Def : constant Node_Id :=
8708                              Associated_Node_For_Itype (Derived_Type);
8709                   begin
8710                      if Present (Def)
8711                        and then Nkind (Def) = N_Full_Type_Declaration
8712                      then
8713                         Set_Interfaces
8714                           (Defining_Identifier (Def), Ifaces_List);
8715                      end if;
8716                   end;
8717                end if;
8718
8719                --  Propagate inherited invariant information of parents
8720                --  and progenitors
8721
8722                if Ada_Version >= Ada_2012
8723                  and then not Is_Interface (Derived_Type)
8724                then
8725                   if Has_Inheritable_Invariants (Parent_Type) then
8726                      Set_Has_Invariants (Derived_Type);
8727                      Set_Has_Inheritable_Invariants (Derived_Type);
8728
8729                   elsif not Is_Empty_Elmt_List (Ifaces_List) then
8730                      declare
8731                         AI : Elmt_Id;
8732
8733                      begin
8734                         AI := First_Elmt (Ifaces_List);
8735                         while Present (AI) loop
8736                            if Has_Inheritable_Invariants (Node (AI)) then
8737                               Set_Has_Invariants (Derived_Type);
8738                               Set_Has_Inheritable_Invariants (Derived_Type);
8739
8740                               exit;
8741                            end if;
8742
8743                            Next_Elmt (AI);
8744                         end loop;
8745                      end;
8746                   end if;
8747                end if;
8748
8749                --  A type extension is automatically Ghost when one of its
8750                --  progenitors is Ghost (SPARK RM 6.9(9)). This property is
8751                --  also inherited when the parent type is Ghost, but this is
8752                --  done in Build_Derived_Type as the mechanism also handles
8753                --  untagged derivations.
8754
8755                if Implements_Ghost_Interface (Derived_Type) then
8756                   Set_Is_Ghost_Entity (Derived_Type);
8757                end if;
8758             end;
8759          end if;
8760
8761       else
8762          Set_Is_Packed (Derived_Type, Is_Packed (Parent_Base));
8763          Set_Has_Non_Standard_Rep
8764                        (Derived_Type, Has_Non_Standard_Rep (Parent_Base));
8765       end if;
8766
8767       --  STEP 4: Inherit components from the parent base and constrain them.
8768       --          Apply the second transformation described in point 6. above.
8769
8770       if (not Is_Empty_Elmt_List (Discs) or else Inherit_Discrims)
8771         or else not Has_Discriminants (Parent_Type)
8772         or else not Is_Constrained (Parent_Type)
8773       then
8774          Constrs := Discs;
8775       else
8776          Constrs := Discriminant_Constraint (Parent_Type);
8777       end if;
8778
8779       Assoc_List :=
8780         Inherit_Components
8781           (N, Parent_Base, Derived_Type, Is_Tagged, Inherit_Discrims, Constrs);
8782
8783       --  STEP 5a: Copy the parent record declaration for untagged types
8784
8785       if not Is_Tagged then
8786
8787          --  Discriminant_Constraint (Derived_Type) has been properly
8788          --  constructed. Save it and temporarily set it to Empty because we
8789          --  do not want the call to New_Copy_Tree below to mess this list.
8790
8791          if Has_Discriminants (Derived_Type) then
8792             Save_Discr_Constr := Discriminant_Constraint (Derived_Type);
8793             Set_Discriminant_Constraint (Derived_Type, No_Elist);
8794          else
8795             Save_Discr_Constr := No_Elist;
8796          end if;
8797
8798          --  Save the Etype field of Derived_Type. It is correctly set now,
8799          --  but the call to New_Copy tree may remap it to point to itself,
8800          --  which is not what we want. Ditto for the Next_Entity field.
8801
8802          Save_Etype       := Etype (Derived_Type);
8803          Save_Next_Entity := Next_Entity (Derived_Type);
8804
8805          --  Assoc_List maps all stored discriminants in the Parent_Base to
8806          --  stored discriminants in the Derived_Type. It is fundamental that
8807          --  no types or itypes with discriminants other than the stored
8808          --  discriminants appear in the entities declared inside
8809          --  Derived_Type, since the back end cannot deal with it.
8810
8811          New_Decl :=
8812            New_Copy_Tree
8813              (Parent (Parent_Base), Map => Assoc_List, New_Sloc => Loc);
8814
8815          --  Restore the fields saved prior to the New_Copy_Tree call
8816          --  and compute the stored constraint.
8817
8818          Set_Etype       (Derived_Type, Save_Etype);
8819          Set_Next_Entity (Derived_Type, Save_Next_Entity);
8820
8821          if Has_Discriminants (Derived_Type) then
8822             Set_Discriminant_Constraint
8823               (Derived_Type, Save_Discr_Constr);
8824             Set_Stored_Constraint
8825               (Derived_Type, Expand_To_Stored_Constraint (Parent_Type, Discs));
8826             Replace_Components (Derived_Type, New_Decl);
8827             Set_Has_Implicit_Dereference
8828               (Derived_Type, Has_Implicit_Dereference (Parent_Type));
8829          end if;
8830
8831          --  Insert the new derived type declaration
8832
8833          Rewrite (N, New_Decl);
8834
8835       --  STEP 5b: Complete the processing for record extensions in generics
8836
8837       --  There is no completion for record extensions declared in the
8838       --  parameter part of a generic, so we need to complete processing for
8839       --  these generic record extensions here. The Record_Type_Definition call
8840       --  will change the Ekind of the components from E_Void to E_Component.
8841
8842       elsif Private_Extension and then Is_Generic_Type (Derived_Type) then
8843          Record_Type_Definition (Empty, Derived_Type);
8844
8845       --  STEP 5c: Process the record extension for non private tagged types
8846
8847       elsif not Private_Extension then
8848          Expand_Record_Extension (Derived_Type, Type_Def);
8849
8850          --  Note : previously in ASIS mode we set the Parent_Subtype of the
8851          --  derived type to propagate some semantic information. This led
8852          --  to other ASIS failures and has been removed.
8853
8854          --  Ada 2005 (AI-251): Addition of the Tag corresponding to all the
8855          --  implemented interfaces if we are in expansion mode
8856
8857          if Expander_Active
8858            and then Has_Interfaces (Derived_Type)
8859          then
8860             Add_Interface_Tag_Components (N, Derived_Type);
8861          end if;
8862
8863          --  Analyze the record extension
8864
8865          Record_Type_Definition
8866            (Record_Extension_Part (Type_Def), Derived_Type);
8867       end if;
8868
8869       End_Scope;
8870
8871       --  Nothing else to do if there is an error in the derivation.
8872       --  An unusual case: the full view may be derived from a type in an
8873       --  instance, when the partial view was used illegally as an actual
8874       --  in that instance, leading to a circular definition.
8875
8876       if Etype (Derived_Type) = Any_Type
8877         or else Etype (Parent_Type) = Derived_Type
8878       then
8879          return;
8880       end if;
8881
8882       --  Set delayed freeze and then derive subprograms, we need to do
8883       --  this in this order so that derived subprograms inherit the
8884       --  derived freeze if necessary.
8885
8886       Set_Has_Delayed_Freeze (Derived_Type);
8887
8888       if Derive_Subps then
8889          Derive_Subprograms (Parent_Type, Derived_Type);
8890       end if;
8891
8892       --  If we have a private extension which defines a constrained derived
8893       --  type mark as constrained here after we have derived subprograms. See
8894       --  comment on point 9. just above the body of Build_Derived_Record_Type.
8895
8896       if Private_Extension and then Inherit_Discrims then
8897          if Constraint_Present and then not Is_Empty_Elmt_List (Discs) then
8898             Set_Is_Constrained          (Derived_Type, True);
8899             Set_Discriminant_Constraint (Derived_Type, Discs);
8900
8901          elsif Is_Constrained (Parent_Type) then
8902             Set_Is_Constrained
8903               (Derived_Type, True);
8904             Set_Discriminant_Constraint
8905               (Derived_Type, Discriminant_Constraint (Parent_Type));
8906          end if;
8907       end if;
8908
8909       --  Update the class-wide type, which shares the now-completed entity
8910       --  list with its specific type. In case of underlying record views,
8911       --  we do not generate the corresponding class wide entity.
8912
8913       if Is_Tagged
8914         and then not Is_Underlying_Record_View (Derived_Type)
8915       then
8916          Set_First_Entity
8917            (Class_Wide_Type (Derived_Type), First_Entity (Derived_Type));
8918          Set_Last_Entity
8919            (Class_Wide_Type (Derived_Type), Last_Entity (Derived_Type));
8920       end if;
8921
8922       Check_Function_Writable_Actuals (N);
8923    end Build_Derived_Record_Type;
8924
8925    ------------------------
8926    -- Build_Derived_Type --
8927    ------------------------
8928
8929    procedure Build_Derived_Type
8930      (N             : Node_Id;
8931       Parent_Type   : Entity_Id;
8932       Derived_Type  : Entity_Id;
8933       Is_Completion : Boolean;
8934       Derive_Subps  : Boolean := True)
8935    is
8936       Parent_Base : constant Entity_Id := Base_Type (Parent_Type);
8937
8938    begin
8939       --  Set common attributes
8940
8941       Set_Scope              (Derived_Type, Current_Scope);
8942
8943       Set_Etype              (Derived_Type,                Parent_Base);
8944       Set_Ekind              (Derived_Type, Ekind         (Parent_Base));
8945       Set_Has_Task           (Derived_Type, Has_Task      (Parent_Base));
8946       Set_Has_Protected      (Derived_Type, Has_Protected (Parent_Base));
8947
8948       Set_Size_Info          (Derived_Type,                     Parent_Type);
8949       Set_RM_Size            (Derived_Type, RM_Size            (Parent_Type));
8950       Set_Is_Controlled      (Derived_Type, Is_Controlled      (Parent_Type));
8951       Set_Disable_Controlled (Derived_Type, Disable_Controlled (Parent_Type));
8952
8953       Set_Is_Tagged_Type (Derived_Type, Is_Tagged_Type (Parent_Type));
8954       Set_Is_Volatile    (Derived_Type, Is_Volatile    (Parent_Type));
8955
8956       if Is_Tagged_Type (Derived_Type) then
8957          Set_No_Tagged_Streams_Pragma
8958            (Derived_Type, No_Tagged_Streams_Pragma (Parent_Type));
8959       end if;
8960
8961       --  If the parent has primitive routines, set the derived type link
8962
8963       if Has_Primitive_Operations (Parent_Type) then
8964          Set_Derived_Type_Link (Parent_Base, Derived_Type);
8965       end if;
8966
8967       --  If the parent type is a private subtype, the convention on the base
8968       --  type may be set in the private part, and not propagated to the
8969       --  subtype until later, so we obtain the convention from the base type.
8970
8971       Set_Convention (Derived_Type, Convention (Parent_Base));
8972
8973       --  Set SSO default for record or array type
8974
8975       if (Is_Array_Type (Derived_Type) or else Is_Record_Type (Derived_Type))
8976         and then Is_Base_Type (Derived_Type)
8977       then
8978          Set_Default_SSO (Derived_Type);
8979       end if;
8980
8981       --  Propagate invariant information. The new type has invariants if
8982       --  they are inherited from the parent type, and these invariants can
8983       --  be further inherited, so both flags are set.
8984
8985       --  We similarly inherit predicates
8986
8987       if Has_Predicates (Parent_Type) then
8988          Set_Has_Predicates (Derived_Type);
8989       end if;
8990
8991       --  The derived type inherits the representation clauses of the parent
8992
8993       Inherit_Rep_Item_Chain (Derived_Type, Parent_Type);
8994
8995       --  Propagate the attributes related to pragma Default_Initial_Condition
8996       --  from the parent type to the private extension. A derived type always
8997       --  inherits the default initial condition flag from the parent type. If
8998       --  the derived type carries its own Default_Initial_Condition pragma,
8999       --  the flag is later reset in Analyze_Pragma. Note that both flags are
9000       --  mutually exclusive.
9001
9002       Propagate_Default_Init_Cond_Attributes
9003         (From_Typ             => Parent_Type,
9004          To_Typ               => Derived_Type,
9005          Parent_To_Derivation => True);
9006
9007       --  If the parent type has delayed rep aspects, then mark the derived
9008       --  type as possibly inheriting a delayed rep aspect.
9009
9010       if Has_Delayed_Rep_Aspects (Parent_Type) then
9011          Set_May_Inherit_Delayed_Rep_Aspects (Derived_Type);
9012       end if;
9013
9014       --  Propagate the attributes related to pragma Ghost from the parent type
9015       --  to the derived type or type extension (SPARK RM 6.9(9)).
9016
9017       if Is_Ghost_Entity (Parent_Type) then
9018          Set_Is_Ghost_Entity (Derived_Type);
9019       end if;
9020
9021       --  Type dependent processing
9022
9023       case Ekind (Parent_Type) is
9024          when Numeric_Kind =>
9025             Build_Derived_Numeric_Type (N, Parent_Type, Derived_Type);
9026
9027          when Array_Kind =>
9028             Build_Derived_Array_Type (N, Parent_Type,  Derived_Type);
9029
9030          when E_Record_Type
9031             | E_Record_Subtype
9032             | Class_Wide_Kind  =>
9033             Build_Derived_Record_Type
9034               (N, Parent_Type, Derived_Type, Derive_Subps);
9035             return;
9036
9037          when Enumeration_Kind =>
9038             Build_Derived_Enumeration_Type (N, Parent_Type, Derived_Type);
9039
9040          when Access_Kind =>
9041             Build_Derived_Access_Type (N, Parent_Type, Derived_Type);
9042
9043          when Incomplete_Or_Private_Kind =>
9044             Build_Derived_Private_Type
9045               (N, Parent_Type, Derived_Type, Is_Completion, Derive_Subps);
9046
9047             --  For discriminated types, the derivation includes deriving
9048             --  primitive operations. For others it is done below.
9049
9050             if Is_Tagged_Type (Parent_Type)
9051               or else Has_Discriminants (Parent_Type)
9052               or else (Present (Full_View (Parent_Type))
9053                         and then Has_Discriminants (Full_View (Parent_Type)))
9054             then
9055                return;
9056             end if;
9057
9058          when Concurrent_Kind =>
9059             Build_Derived_Concurrent_Type (N, Parent_Type, Derived_Type);
9060
9061          when others =>
9062             raise Program_Error;
9063       end case;
9064
9065       --  Nothing more to do if some error occurred
9066
9067       if Etype (Derived_Type) = Any_Type then
9068          return;
9069       end if;
9070
9071       --  Set delayed freeze and then derive subprograms, we need to do this
9072       --  in this order so that derived subprograms inherit the derived freeze
9073       --  if necessary.
9074
9075       Set_Has_Delayed_Freeze (Derived_Type);
9076
9077       if Derive_Subps then
9078          Derive_Subprograms (Parent_Type, Derived_Type);
9079       end if;
9080
9081       Set_Has_Primitive_Operations
9082         (Base_Type (Derived_Type), Has_Primitive_Operations (Parent_Type));
9083    end Build_Derived_Type;
9084
9085    -----------------------
9086    -- Build_Discriminal --
9087    -----------------------
9088
9089    procedure Build_Discriminal (Discrim : Entity_Id) is
9090       D_Minal : Entity_Id;
9091       CR_Disc : Entity_Id;
9092
9093    begin
9094       --  A discriminal has the same name as the discriminant
9095
9096       D_Minal := Make_Defining_Identifier (Sloc (Discrim), Chars (Discrim));
9097
9098       Set_Ekind     (D_Minal, E_In_Parameter);
9099       Set_Mechanism (D_Minal, Default_Mechanism);
9100       Set_Etype     (D_Minal, Etype (Discrim));
9101       Set_Scope     (D_Minal, Current_Scope);
9102
9103       Set_Discriminal (Discrim, D_Minal);
9104       Set_Discriminal_Link (D_Minal, Discrim);
9105
9106       --  For task types, build at once the discriminants of the corresponding
9107       --  record, which are needed if discriminants are used in entry defaults
9108       --  and in family bounds.
9109
9110       if Is_Concurrent_Type (Current_Scope)
9111            or else
9112          Is_Limited_Type    (Current_Scope)
9113       then
9114          CR_Disc := Make_Defining_Identifier (Sloc (Discrim), Chars (Discrim));
9115
9116          Set_Ekind            (CR_Disc, E_In_Parameter);
9117          Set_Mechanism        (CR_Disc, Default_Mechanism);
9118          Set_Etype            (CR_Disc, Etype (Discrim));
9119          Set_Scope            (CR_Disc, Current_Scope);
9120          Set_Discriminal_Link (CR_Disc, Discrim);
9121          Set_CR_Discriminant  (Discrim, CR_Disc);
9122       end if;
9123    end Build_Discriminal;
9124
9125    ------------------------------------
9126    -- Build_Discriminant_Constraints --
9127    ------------------------------------
9128
9129    function Build_Discriminant_Constraints
9130      (T           : Entity_Id;
9131       Def         : Node_Id;
9132       Derived_Def : Boolean := False) return Elist_Id
9133    is
9134       C        : constant Node_Id := Constraint (Def);
9135       Nb_Discr : constant Nat     := Number_Discriminants (T);
9136
9137       Discr_Expr : array (1 .. Nb_Discr) of Node_Id := (others => Empty);
9138       --  Saves the expression corresponding to a given discriminant in T
9139
9140       function Pos_Of_Discr (T : Entity_Id; D : Entity_Id) return Nat;
9141       --  Return the Position number within array Discr_Expr of a discriminant
9142       --  D within the discriminant list of the discriminated type T.
9143
9144       procedure Process_Discriminant_Expression
9145          (Expr : Node_Id;
9146           D    : Entity_Id);
9147       --  If this is a discriminant constraint on a partial view, do not
9148       --  generate an overflow check on the discriminant expression. The check
9149       --  will be generated when constraining the full view. Otherwise the
9150       --  backend creates duplicate symbols for the temporaries corresponding
9151       --  to the expressions to be checked, causing spurious assembler errors.
9152
9153       ------------------
9154       -- Pos_Of_Discr --
9155       ------------------
9156
9157       function Pos_Of_Discr (T : Entity_Id; D : Entity_Id) return Nat is
9158          Disc : Entity_Id;
9159
9160       begin
9161          Disc := First_Discriminant (T);
9162          for J in Discr_Expr'Range loop
9163             if Disc = D then
9164                return J;
9165             end if;
9166
9167             Next_Discriminant (Disc);
9168          end loop;
9169
9170          --  Note: Since this function is called on discriminants that are
9171          --  known to belong to the discriminated type, falling through the
9172          --  loop with no match signals an internal compiler error.
9173
9174          raise Program_Error;
9175       end Pos_Of_Discr;
9176
9177       -------------------------------------
9178       -- Process_Discriminant_Expression --
9179       -------------------------------------
9180
9181       procedure Process_Discriminant_Expression
9182          (Expr : Node_Id;
9183           D    : Entity_Id)
9184       is
9185          BDT : constant Entity_Id := Base_Type (Etype (D));
9186
9187       begin
9188          --  If this is a discriminant constraint on a partial view, do
9189          --  not generate an overflow on the discriminant expression. The
9190          --  check will be generated when constraining the full view.
9191
9192          if Is_Private_Type (T)
9193            and then Present (Full_View (T))
9194          then
9195             Analyze_And_Resolve (Expr, BDT, Suppress => Overflow_Check);
9196          else
9197             Analyze_And_Resolve (Expr, BDT);
9198          end if;
9199       end Process_Discriminant_Expression;
9200
9201       --  Declarations local to Build_Discriminant_Constraints
9202
9203       Discr : Entity_Id;
9204       E     : Entity_Id;
9205       Elist : constant Elist_Id := New_Elmt_List;
9206
9207       Constr   : Node_Id;
9208       Expr     : Node_Id;
9209       Id       : Node_Id;
9210       Position : Nat;
9211       Found    : Boolean;
9212
9213       Discrim_Present : Boolean := False;
9214
9215    --  Start of processing for Build_Discriminant_Constraints
9216
9217    begin
9218       --  The following loop will process positional associations only.
9219       --  For a positional association, the (single) discriminant is
9220       --  implicitly specified by position, in textual order (RM 3.7.2).
9221
9222       Discr  := First_Discriminant (T);
9223       Constr := First (Constraints (C));
9224       for D in Discr_Expr'Range loop
9225          exit when Nkind (Constr) = N_Discriminant_Association;
9226
9227          if No (Constr) then
9228             Error_Msg_N ("too few discriminants given in constraint", C);
9229             return New_Elmt_List;
9230
9231          elsif Nkind (Constr) = N_Range
9232            or else (Nkind (Constr) = N_Attribute_Reference
9233                      and then Attribute_Name (Constr) = Name_Range)
9234          then
9235             Error_Msg_N
9236               ("a range is not a valid discriminant constraint", Constr);
9237             Discr_Expr (D) := Error;
9238
9239          else
9240             Process_Discriminant_Expression (Constr, Discr);
9241             Discr_Expr (D) := Constr;
9242          end if;
9243
9244          Next_Discriminant (Discr);
9245          Next (Constr);
9246       end loop;
9247
9248       if No (Discr) and then Present (Constr) then
9249          Error_Msg_N ("too many discriminants given in constraint", Constr);
9250          return New_Elmt_List;
9251       end if;
9252
9253       --  Named associations can be given in any order, but if both positional
9254       --  and named associations are used in the same discriminant constraint,
9255       --  then positional associations must occur first, at their normal
9256       --  position. Hence once a named association is used, the rest of the
9257       --  discriminant constraint must use only named associations.
9258
9259       while Present (Constr) loop
9260
9261          --  Positional association forbidden after a named association
9262
9263          if Nkind (Constr) /= N_Discriminant_Association then
9264             Error_Msg_N ("positional association follows named one", Constr);
9265             return New_Elmt_List;
9266
9267          --  Otherwise it is a named association
9268
9269          else
9270             --  E records the type of the discriminants in the named
9271             --  association. All the discriminants specified in the same name
9272             --  association must have the same type.
9273
9274             E := Empty;
9275
9276             --  Search the list of discriminants in T to see if the simple name
9277             --  given in the constraint matches any of them.
9278
9279             Id := First (Selector_Names (Constr));
9280             while Present (Id) loop
9281                Found := False;
9282
9283                --  If Original_Discriminant is present, we are processing a
9284                --  generic instantiation and this is an instance node. We need
9285                --  to find the name of the corresponding discriminant in the
9286                --  actual record type T and not the name of the discriminant in
9287                --  the generic formal. Example:
9288
9289                --    generic
9290                --       type G (D : int) is private;
9291                --    package P is
9292                --       subtype W is G (D => 1);
9293                --    end package;
9294                --    type Rec (X : int) is record ... end record;
9295                --    package Q is new P (G => Rec);
9296
9297                --  At the point of the instantiation, formal type G is Rec
9298                --  and therefore when reanalyzing "subtype W is G (D => 1);"
9299                --  which really looks like "subtype W is Rec (D => 1);" at
9300                --  the point of instantiation, we want to find the discriminant
9301                --  that corresponds to D in Rec, i.e. X.
9302
9303                if Present (Original_Discriminant (Id))
9304                  and then In_Instance
9305                then
9306                   Discr := Find_Corresponding_Discriminant (Id, T);
9307                   Found := True;
9308
9309                else
9310                   Discr := First_Discriminant (T);
9311                   while Present (Discr) loop
9312                      if Chars (Discr) = Chars (Id) then
9313                         Found := True;
9314                         exit;
9315                      end if;
9316
9317                      Next_Discriminant (Discr);
9318                   end loop;
9319
9320                   if not Found then
9321                      Error_Msg_N ("& does not match any discriminant", Id);
9322                      return New_Elmt_List;
9323
9324                   --  If the parent type is a generic formal, preserve the
9325                   --  name of the discriminant for subsequent instances.
9326                   --  see comment at the beginning of this if statement.
9327
9328                   elsif Is_Generic_Type (Root_Type (T)) then
9329                      Set_Original_Discriminant (Id, Discr);
9330                   end if;
9331                end if;
9332
9333                Position := Pos_Of_Discr (T, Discr);
9334
9335                if Present (Discr_Expr (Position)) then
9336                   Error_Msg_N ("duplicate constraint for discriminant&", Id);
9337
9338                else
9339                   --  Each discriminant specified in the same named association
9340                   --  must be associated with a separate copy of the
9341                   --  corresponding expression.
9342
9343                   if Present (Next (Id)) then
9344                      Expr := New_Copy_Tree (Expression (Constr));
9345                      Set_Parent (Expr, Parent (Expression (Constr)));
9346                   else
9347                      Expr := Expression (Constr);
9348                   end if;
9349
9350                   Discr_Expr (Position) := Expr;
9351                   Process_Discriminant_Expression (Expr, Discr);
9352                end if;
9353
9354                --  A discriminant association with more than one discriminant
9355                --  name is only allowed if the named discriminants are all of
9356                --  the same type (RM 3.7.1(8)).
9357
9358                if E = Empty then
9359                   E := Base_Type (Etype (Discr));
9360
9361                elsif Base_Type (Etype (Discr)) /= E then
9362                   Error_Msg_N
9363                     ("all discriminants in an association " &
9364                      "must have the same type", Id);
9365                end if;
9366
9367                Next (Id);
9368             end loop;
9369          end if;
9370
9371          Next (Constr);
9372       end loop;
9373
9374       --  A discriminant constraint must provide exactly one value for each
9375       --  discriminant of the type (RM 3.7.1(8)).
9376
9377       for J in Discr_Expr'Range loop
9378          if No (Discr_Expr (J)) then
9379             Error_Msg_N ("too few discriminants given in constraint", C);
9380             return New_Elmt_List;
9381          end if;
9382       end loop;
9383
9384       --  Determine if there are discriminant expressions in the constraint
9385
9386       for J in Discr_Expr'Range loop
9387          if Denotes_Discriminant
9388               (Discr_Expr (J), Check_Concurrent => True)
9389          then
9390             Discrim_Present := True;
9391          end if;
9392       end loop;
9393
9394       --  Build an element list consisting of the expressions given in the
9395       --  discriminant constraint and apply the appropriate checks. The list
9396       --  is constructed after resolving any named discriminant associations
9397       --  and therefore the expressions appear in the textual order of the
9398       --  discriminants.
9399
9400       Discr := First_Discriminant (T);
9401       for J in Discr_Expr'Range loop
9402          if Discr_Expr (J) /= Error then
9403             Append_Elmt (Discr_Expr (J), Elist);
9404
9405             --  If any of the discriminant constraints is given by a
9406             --  discriminant and we are in a derived type declaration we
9407             --  have a discriminant renaming. Establish link between new
9408             --  and old discriminant.
9409
9410             if Denotes_Discriminant (Discr_Expr (J)) then
9411                if Derived_Def then
9412                   Set_Corresponding_Discriminant
9413                     (Entity (Discr_Expr (J)), Discr);
9414                end if;
9415
9416             --  Force the evaluation of non-discriminant expressions.
9417             --  If we have found a discriminant in the constraint 3.4(26)
9418             --  and 3.8(18) demand that no range checks are performed are
9419             --  after evaluation. If the constraint is for a component
9420             --  definition that has a per-object constraint, expressions are
9421             --  evaluated but not checked either. In all other cases perform
9422             --  a range check.
9423
9424             else
9425                if Discrim_Present then
9426                   null;
9427
9428                elsif Nkind (Parent (Parent (Def))) = N_Component_Declaration
9429                  and then
9430                    Has_Per_Object_Constraint
9431                      (Defining_Identifier (Parent (Parent (Def))))
9432                then
9433                   null;
9434
9435                elsif Is_Access_Type (Etype (Discr)) then
9436                   Apply_Constraint_Check (Discr_Expr (J), Etype (Discr));
9437
9438                else
9439                   Apply_Range_Check (Discr_Expr (J), Etype (Discr));
9440                end if;
9441
9442                Force_Evaluation (Discr_Expr (J));
9443             end if;
9444
9445             --  Check that the designated type of an access discriminant's
9446             --  expression is not a class-wide type unless the discriminant's
9447             --  designated type is also class-wide.
9448
9449             if Ekind (Etype (Discr)) = E_Anonymous_Access_Type
9450               and then not Is_Class_Wide_Type
9451                          (Designated_Type (Etype (Discr)))
9452               and then Etype (Discr_Expr (J)) /= Any_Type
9453               and then Is_Class_Wide_Type
9454                          (Designated_Type (Etype (Discr_Expr (J))))
9455             then
9456                Wrong_Type (Discr_Expr (J), Etype (Discr));
9457
9458             elsif Is_Access_Type (Etype (Discr))
9459               and then not Is_Access_Constant (Etype (Discr))
9460               and then Is_Access_Type (Etype (Discr_Expr (J)))
9461               and then Is_Access_Constant (Etype (Discr_Expr (J)))
9462             then
9463                Error_Msg_NE
9464                  ("constraint for discriminant& must be access to variable",
9465                     Def, Discr);
9466             end if;
9467          end if;
9468
9469          Next_Discriminant (Discr);
9470       end loop;
9471
9472       return Elist;
9473    end Build_Discriminant_Constraints;
9474
9475    ---------------------------------
9476    -- Build_Discriminated_Subtype --
9477    ---------------------------------
9478
9479    procedure Build_Discriminated_Subtype
9480      (T           : Entity_Id;
9481       Def_Id      : Entity_Id;
9482       Elist       : Elist_Id;
9483       Related_Nod : Node_Id;
9484       For_Access  : Boolean := False)
9485    is
9486       Has_Discrs  : constant Boolean := Has_Discriminants (T);
9487       Constrained : constant Boolean :=
9488                       (Has_Discrs
9489                          and then not Is_Empty_Elmt_List (Elist)
9490                          and then not Is_Class_Wide_Type (T))
9491                         or else Is_Constrained (T);
9492
9493    begin
9494       if Ekind (T) = E_Record_Type then
9495          if For_Access then
9496             Set_Ekind (Def_Id, E_Private_Subtype);
9497             Set_Is_For_Access_Subtype (Def_Id, True);
9498          else
9499             Set_Ekind (Def_Id, E_Record_Subtype);
9500          end if;
9501
9502          --  Inherit preelaboration flag from base, for types for which it
9503          --  may have been set: records, private types, protected types.
9504
9505          Set_Known_To_Have_Preelab_Init
9506            (Def_Id, Known_To_Have_Preelab_Init (T));
9507
9508       elsif Ekind (T) = E_Task_Type then
9509          Set_Ekind (Def_Id, E_Task_Subtype);
9510
9511       elsif Ekind (T) = E_Protected_Type then
9512          Set_Ekind (Def_Id, E_Protected_Subtype);
9513          Set_Known_To_Have_Preelab_Init
9514            (Def_Id, Known_To_Have_Preelab_Init (T));
9515
9516       elsif Is_Private_Type (T) then
9517          Set_Ekind (Def_Id, Subtype_Kind (Ekind (T)));
9518          Set_Known_To_Have_Preelab_Init
9519            (Def_Id, Known_To_Have_Preelab_Init (T));
9520
9521          --  Private subtypes may have private dependents
9522
9523          Set_Private_Dependents (Def_Id, New_Elmt_List);
9524
9525       elsif Is_Class_Wide_Type (T) then
9526          Set_Ekind (Def_Id, E_Class_Wide_Subtype);
9527
9528       else
9529          --  Incomplete type. Attach subtype to list of dependents, to be
9530          --  completed with full view of parent type,  unless is it the
9531          --  designated subtype of a record component within an init_proc.
9532          --  This last case arises for a component of an access type whose
9533          --  designated type is incomplete (e.g. a Taft Amendment type).
9534          --  The designated subtype is within an inner scope, and needs no
9535          --  elaboration, because only the access type is needed in the
9536          --  initialization procedure.
9537
9538          Set_Ekind (Def_Id, Ekind (T));
9539
9540          if For_Access and then Within_Init_Proc then
9541             null;
9542          else
9543             Append_Elmt (Def_Id, Private_Dependents (T));
9544          end if;
9545       end if;
9546
9547       Set_Etype             (Def_Id, T);
9548       Init_Size_Align       (Def_Id);
9549       Set_Has_Discriminants (Def_Id, Has_Discrs);
9550       Set_Is_Constrained    (Def_Id, Constrained);
9551
9552       Set_First_Entity      (Def_Id, First_Entity   (T));
9553       Set_Last_Entity       (Def_Id, Last_Entity    (T));
9554       Set_Has_Implicit_Dereference
9555                             (Def_Id, Has_Implicit_Dereference (T));
9556
9557       --  If the subtype is the completion of a private declaration, there may
9558       --  have been representation clauses for the partial view, and they must
9559       --  be preserved. Build_Derived_Type chains the inherited clauses with
9560       --  the ones appearing on the extension. If this comes from a subtype
9561       --  declaration, all clauses are inherited.
9562
9563       if No (First_Rep_Item (Def_Id)) then
9564          Set_First_Rep_Item (Def_Id, First_Rep_Item (T));
9565       end if;
9566
9567       if Is_Tagged_Type (T) then
9568          Set_Is_Tagged_Type (Def_Id);
9569          Set_No_Tagged_Streams_Pragma (Def_Id, No_Tagged_Streams_Pragma (T));
9570          Make_Class_Wide_Type (Def_Id);
9571       end if;
9572
9573       Set_Stored_Constraint (Def_Id, No_Elist);
9574
9575       if Has_Discrs then
9576          Set_Discriminant_Constraint (Def_Id, Elist);
9577          Set_Stored_Constraint_From_Discriminant_Constraint (Def_Id);
9578       end if;
9579
9580       if Is_Tagged_Type (T) then
9581
9582          --  Ada 2005 (AI-251): In case of concurrent types we inherit the
9583          --  concurrent record type (which has the list of primitive
9584          --  operations).
9585
9586          if Ada_Version >= Ada_2005
9587            and then Is_Concurrent_Type (T)
9588          then
9589             Set_Corresponding_Record_Type (Def_Id,
9590                Corresponding_Record_Type (T));
9591          else
9592             Set_Direct_Primitive_Operations (Def_Id,
9593               Direct_Primitive_Operations (T));
9594          end if;
9595
9596          Set_Is_Abstract_Type (Def_Id, Is_Abstract_Type (T));
9597       end if;
9598
9599       --  Subtypes introduced by component declarations do not need to be
9600       --  marked as delayed, and do not get freeze nodes, because the semantics
9601       --  verifies that the parents of the subtypes are frozen before the
9602       --  enclosing record is frozen.
9603
9604       if not Is_Type (Scope (Def_Id)) then
9605          Set_Depends_On_Private (Def_Id, Depends_On_Private (T));
9606
9607          if Is_Private_Type (T)
9608            and then Present (Full_View (T))
9609          then
9610             Conditional_Delay (Def_Id, Full_View (T));
9611          else
9612             Conditional_Delay (Def_Id, T);
9613          end if;
9614       end if;
9615
9616       if Is_Record_Type (T) then
9617          Set_Is_Limited_Record (Def_Id, Is_Limited_Record (T));
9618
9619          if Has_Discrs
9620             and then not Is_Empty_Elmt_List (Elist)
9621             and then not For_Access
9622          then
9623             Create_Constrained_Components (Def_Id, Related_Nod, T, Elist);
9624          elsif not For_Access then
9625             Set_Cloned_Subtype (Def_Id, T);
9626          end if;
9627       end if;
9628    end Build_Discriminated_Subtype;
9629
9630    ---------------------------
9631    -- Build_Itype_Reference --
9632    ---------------------------
9633
9634    procedure Build_Itype_Reference
9635      (Ityp : Entity_Id;
9636       Nod  : Node_Id)
9637    is
9638       IR : constant Node_Id := Make_Itype_Reference (Sloc (Nod));
9639    begin
9640
9641       --  Itype references are only created for use by the back-end
9642
9643       if Inside_A_Generic then
9644          return;
9645       else
9646          Set_Itype (IR, Ityp);
9647          Insert_After (Nod, IR);
9648       end if;
9649    end Build_Itype_Reference;
9650
9651    ------------------------
9652    -- Build_Scalar_Bound --
9653    ------------------------
9654
9655    function Build_Scalar_Bound
9656      (Bound : Node_Id;
9657       Par_T : Entity_Id;
9658       Der_T : Entity_Id) return Node_Id
9659    is
9660       New_Bound : Entity_Id;
9661
9662    begin
9663       --  Note: not clear why this is needed, how can the original bound
9664       --  be unanalyzed at this point? and if it is, what business do we
9665       --  have messing around with it? and why is the base type of the
9666       --  parent type the right type for the resolution. It probably is
9667       --  not. It is OK for the new bound we are creating, but not for
9668       --  the old one??? Still if it never happens, no problem.
9669
9670       Analyze_And_Resolve (Bound, Base_Type (Par_T));
9671
9672       if Nkind_In (Bound, N_Integer_Literal, N_Real_Literal) then
9673          New_Bound := New_Copy (Bound);
9674          Set_Etype (New_Bound, Der_T);
9675          Set_Analyzed (New_Bound);
9676
9677       elsif Is_Entity_Name (Bound) then
9678          New_Bound := OK_Convert_To (Der_T, New_Copy (Bound));
9679
9680       --  The following is almost certainly wrong. What business do we have
9681       --  relocating a node (Bound) that is presumably still attached to
9682       --  the tree elsewhere???
9683
9684       else
9685          New_Bound := OK_Convert_To (Der_T, Relocate_Node (Bound));
9686       end if;
9687
9688       Set_Etype (New_Bound, Der_T);
9689       return New_Bound;
9690    end Build_Scalar_Bound;
9691
9692    --------------------------------
9693    -- Build_Underlying_Full_View --
9694    --------------------------------
9695
9696    procedure Build_Underlying_Full_View
9697      (N   : Node_Id;
9698       Typ : Entity_Id;
9699       Par : Entity_Id)
9700    is
9701       Loc  : constant Source_Ptr := Sloc (N);
9702       Subt : constant Entity_Id :=
9703                Make_Defining_Identifier
9704                  (Loc, New_External_Name (Chars (Typ), 'S'));
9705
9706       Constr : Node_Id;
9707       Indic  : Node_Id;
9708       C      : Node_Id;
9709       Id     : Node_Id;
9710
9711       procedure Set_Discriminant_Name (Id : Node_Id);
9712       --  If the derived type has discriminants, they may rename discriminants
9713       --  of the parent. When building the full view of the parent, we need to
9714       --  recover the names of the original discriminants if the constraint is
9715       --  given by named associations.
9716
9717       ---------------------------
9718       -- Set_Discriminant_Name --
9719       ---------------------------
9720
9721       procedure Set_Discriminant_Name (Id : Node_Id) is
9722          Disc : Entity_Id;
9723
9724       begin
9725          Set_Original_Discriminant (Id, Empty);
9726
9727          if Has_Discriminants (Typ) then
9728             Disc := First_Discriminant (Typ);
9729             while Present (Disc) loop
9730                if Chars (Disc) = Chars (Id)
9731                  and then Present (Corresponding_Discriminant (Disc))
9732                then
9733                   Set_Chars (Id, Chars (Corresponding_Discriminant (Disc)));
9734                end if;
9735                Next_Discriminant (Disc);
9736             end loop;
9737          end if;
9738       end Set_Discriminant_Name;
9739
9740    --  Start of processing for Build_Underlying_Full_View
9741
9742    begin
9743       if Nkind (N) = N_Full_Type_Declaration then
9744          Constr := Constraint (Subtype_Indication (Type_Definition (N)));
9745
9746       elsif Nkind (N) = N_Subtype_Declaration then
9747          Constr := New_Copy_Tree (Constraint (Subtype_Indication (N)));
9748
9749       elsif Nkind (N) = N_Component_Declaration then
9750          Constr :=
9751            New_Copy_Tree
9752              (Constraint (Subtype_Indication (Component_Definition (N))));
9753
9754       else
9755          raise Program_Error;
9756       end if;
9757
9758       C := First (Constraints (Constr));
9759       while Present (C) loop
9760          if Nkind (C) = N_Discriminant_Association then
9761             Id := First (Selector_Names (C));
9762             while Present (Id) loop
9763                Set_Discriminant_Name (Id);
9764                Next (Id);
9765             end loop;
9766          end if;
9767
9768          Next (C);
9769       end loop;
9770
9771       Indic :=
9772         Make_Subtype_Declaration (Loc,
9773           Defining_Identifier => Subt,
9774           Subtype_Indication  =>
9775             Make_Subtype_Indication (Loc,
9776               Subtype_Mark => New_Occurrence_Of (Par, Loc),
9777               Constraint   => New_Copy_Tree (Constr)));
9778
9779       --  If this is a component subtype for an outer itype, it is not
9780       --  a list member, so simply set the parent link for analysis: if
9781       --  the enclosing type does not need to be in a declarative list,
9782       --  neither do the components.
9783
9784       if Is_List_Member (N)
9785         and then Nkind (N) /= N_Component_Declaration
9786       then
9787          Insert_Before (N, Indic);
9788       else
9789          Set_Parent (Indic, Parent (N));
9790       end if;
9791
9792       Analyze (Indic);
9793       Set_Underlying_Full_View (Typ, Full_View (Subt));
9794    end Build_Underlying_Full_View;
9795
9796    -------------------------------
9797    -- Check_Abstract_Overriding --
9798    -------------------------------
9799
9800    procedure Check_Abstract_Overriding (T : Entity_Id) is
9801       Alias_Subp : Entity_Id;
9802       Elmt       : Elmt_Id;
9803       Op_List    : Elist_Id;
9804       Subp       : Entity_Id;
9805       Type_Def   : Node_Id;
9806
9807       procedure Check_Pragma_Implemented (Subp : Entity_Id);
9808       --  Ada 2012 (AI05-0030): Subprogram Subp overrides an interface routine
9809       --  which has pragma Implemented already set. Check whether Subp's entity
9810       --  kind conforms to the implementation kind of the overridden routine.
9811
9812       procedure Check_Pragma_Implemented
9813         (Subp       : Entity_Id;
9814          Iface_Subp : Entity_Id);
9815       --  Ada 2012 (AI05-0030): Subprogram Subp overrides interface routine
9816       --  Iface_Subp and both entities have pragma Implemented already set on
9817       --  them. Check whether the two implementation kinds are conforming.
9818
9819       procedure Inherit_Pragma_Implemented
9820         (Subp       : Entity_Id;
9821          Iface_Subp : Entity_Id);
9822       --  Ada 2012 (AI05-0030): Interface primitive Subp overrides interface
9823       --  subprogram Iface_Subp which has been marked by pragma Implemented.
9824       --  Propagate the implementation kind of Iface_Subp to Subp.
9825
9826       ------------------------------
9827       -- Check_Pragma_Implemented --
9828       ------------------------------
9829
9830       procedure Check_Pragma_Implemented (Subp : Entity_Id) is
9831          Iface_Alias : constant Entity_Id := Interface_Alias (Subp);
9832          Impl_Kind   : constant Name_Id   := Implementation_Kind (Iface_Alias);
9833          Subp_Alias  : constant Entity_Id := Alias (Subp);
9834          Contr_Typ   : Entity_Id;
9835          Impl_Subp   : Entity_Id;
9836
9837       begin
9838          --  Subp must have an alias since it is a hidden entity used to link
9839          --  an interface subprogram to its overriding counterpart.
9840
9841          pragma Assert (Present (Subp_Alias));
9842
9843          --  Handle aliases to synchronized wrappers
9844
9845          Impl_Subp := Subp_Alias;
9846
9847          if Is_Primitive_Wrapper (Impl_Subp) then
9848             Impl_Subp := Wrapped_Entity (Impl_Subp);
9849          end if;
9850
9851          --  Extract the type of the controlling formal
9852
9853          Contr_Typ := Etype (First_Formal (Subp_Alias));
9854
9855          if Is_Concurrent_Record_Type (Contr_Typ) then
9856             Contr_Typ := Corresponding_Concurrent_Type (Contr_Typ);
9857          end if;
9858
9859          --  An interface subprogram whose implementation kind is By_Entry must
9860          --  be implemented by an entry.
9861
9862          if Impl_Kind = Name_By_Entry
9863            and then Ekind (Impl_Subp) /= E_Entry
9864          then
9865             Error_Msg_Node_2 := Iface_Alias;
9866             Error_Msg_NE
9867               ("type & must implement abstract subprogram & with an entry",
9868                Subp_Alias, Contr_Typ);
9869
9870          elsif Impl_Kind = Name_By_Protected_Procedure then
9871
9872             --  An interface subprogram whose implementation kind is By_
9873             --  Protected_Procedure cannot be implemented by a primitive
9874             --  procedure of a task type.
9875
9876             if Ekind (Contr_Typ) /= E_Protected_Type then
9877                Error_Msg_Node_2 := Contr_Typ;
9878                Error_Msg_NE
9879                  ("interface subprogram & cannot be implemented by a " &
9880                   "primitive procedure of task type &", Subp_Alias,
9881                   Iface_Alias);
9882
9883             --  An interface subprogram whose implementation kind is By_
9884             --  Protected_Procedure must be implemented by a procedure.
9885
9886             elsif Ekind (Impl_Subp) /= E_Procedure then
9887                Error_Msg_Node_2 := Iface_Alias;
9888                Error_Msg_NE
9889                  ("type & must implement abstract subprogram & with a " &
9890                   "procedure", Subp_Alias, Contr_Typ);
9891
9892             elsif Present (Get_Rep_Pragma (Impl_Subp, Name_Implemented))
9893               and then Implementation_Kind (Impl_Subp) /= Impl_Kind
9894             then
9895                Error_Msg_Name_1 := Impl_Kind;
9896                Error_Msg_N
9897                 ("overriding operation& must have synchronization%",
9898                  Subp_Alias);
9899             end if;
9900
9901          --  If primitive has Optional synchronization, overriding operation
9902          --  must match if it has an explicit synchronization..
9903
9904          elsif Present (Get_Rep_Pragma (Impl_Subp, Name_Implemented))
9905            and then Implementation_Kind (Impl_Subp) /= Impl_Kind
9906          then
9907                Error_Msg_Name_1 := Impl_Kind;
9908                Error_Msg_N
9909                 ("overriding operation& must have syncrhonization%",
9910                  Subp_Alias);
9911          end if;
9912       end Check_Pragma_Implemented;
9913
9914       ------------------------------
9915       -- Check_Pragma_Implemented --
9916       ------------------------------
9917
9918       procedure Check_Pragma_Implemented
9919         (Subp       : Entity_Id;
9920          Iface_Subp : Entity_Id)
9921       is
9922          Iface_Kind : constant Name_Id := Implementation_Kind (Iface_Subp);
9923          Subp_Kind  : constant Name_Id := Implementation_Kind (Subp);
9924
9925       begin
9926          --  Ada 2012 (AI05-0030): The implementation kinds of an overridden
9927          --  and overriding subprogram are different. In general this is an
9928          --  error except when the implementation kind of the overridden
9929          --  subprograms is By_Any or Optional.
9930
9931          if Iface_Kind /= Subp_Kind
9932            and then Iface_Kind /= Name_By_Any
9933            and then Iface_Kind /= Name_Optional
9934          then
9935             if Iface_Kind = Name_By_Entry then
9936                Error_Msg_N
9937                  ("incompatible implementation kind, overridden subprogram " &
9938                   "is marked By_Entry", Subp);
9939             else
9940                Error_Msg_N
9941                  ("incompatible implementation kind, overridden subprogram " &
9942                   "is marked By_Protected_Procedure", Subp);
9943             end if;
9944          end if;
9945       end Check_Pragma_Implemented;
9946
9947       --------------------------------
9948       -- Inherit_Pragma_Implemented --
9949       --------------------------------
9950
9951       procedure Inherit_Pragma_Implemented
9952         (Subp       : Entity_Id;
9953          Iface_Subp : Entity_Id)
9954       is
9955          Iface_Kind : constant Name_Id    := Implementation_Kind (Iface_Subp);
9956          Loc        : constant Source_Ptr := Sloc (Subp);
9957          Impl_Prag  : Node_Id;
9958
9959       begin
9960          --  Since the implementation kind is stored as a representation item
9961          --  rather than a flag, create a pragma node.
9962
9963          Impl_Prag :=
9964            Make_Pragma (Loc,
9965              Chars                        => Name_Implemented,
9966              Pragma_Argument_Associations => New_List (
9967                Make_Pragma_Argument_Association (Loc,
9968                  Expression => New_Occurrence_Of (Subp, Loc)),
9969
9970                Make_Pragma_Argument_Association (Loc,
9971                  Expression => Make_Identifier (Loc, Iface_Kind))));
9972
9973          --  The pragma doesn't need to be analyzed because it is internally
9974          --  built. It is safe to directly register it as a rep item since we
9975          --  are only interested in the characters of the implementation kind.
9976
9977          Record_Rep_Item (Subp, Impl_Prag);
9978       end Inherit_Pragma_Implemented;
9979
9980    --  Start of processing for Check_Abstract_Overriding
9981
9982    begin
9983       Op_List := Primitive_Operations (T);
9984
9985       --  Loop to check primitive operations
9986
9987       Elmt := First_Elmt (Op_List);
9988       while Present (Elmt) loop
9989          Subp := Node (Elmt);
9990          Alias_Subp := Alias (Subp);
9991
9992          --  Inherited subprograms are identified by the fact that they do not
9993          --  come from source, and the associated source location is the
9994          --  location of the first subtype of the derived type.
9995
9996          --  Ada 2005 (AI-228): Apply the rules of RM-3.9.3(6/2) for
9997          --  subprograms that "require overriding".
9998
9999          --  Special exception, do not complain about failure to override the
10000          --  stream routines _Input and _Output, as well as the primitive
10001          --  operations used in dispatching selects since we always provide
10002          --  automatic overridings for these subprograms.
10003
10004          --  The partial view of T may have been a private extension, for
10005          --  which inherited functions dispatching on result are abstract.
10006          --  If the full view is a null extension, there is no need for
10007          --  overriding in Ada 2005, but wrappers need to be built for them
10008          --  (see exp_ch3, Build_Controlling_Function_Wrappers).
10009
10010          if Is_Null_Extension (T)
10011            and then Has_Controlling_Result (Subp)
10012            and then Ada_Version >= Ada_2005
10013            and then Present (Alias_Subp)
10014            and then not Comes_From_Source (Subp)
10015            and then not Is_Abstract_Subprogram (Alias_Subp)
10016            and then not Is_Access_Type (Etype (Subp))
10017          then
10018             null;
10019
10020          --  Ada 2005 (AI-251): Internal entities of interfaces need no
10021          --  processing because this check is done with the aliased
10022          --  entity
10023
10024          elsif Present (Interface_Alias (Subp)) then
10025             null;
10026
10027          elsif (Is_Abstract_Subprogram (Subp)
10028                  or else Requires_Overriding (Subp)
10029                  or else
10030                    (Has_Controlling_Result (Subp)
10031                      and then Present (Alias_Subp)
10032                      and then not Comes_From_Source (Subp)
10033                      and then Sloc (Subp) = Sloc (First_Subtype (T))))
10034            and then not Is_TSS (Subp, TSS_Stream_Input)
10035            and then not Is_TSS (Subp, TSS_Stream_Output)
10036            and then not Is_Abstract_Type (T)
10037            and then not Is_Predefined_Interface_Primitive (Subp)
10038
10039             --  Ada 2005 (AI-251): Do not consider hidden entities associated
10040             --  with abstract interface types because the check will be done
10041             --  with the aliased entity (otherwise we generate a duplicated
10042             --  error message).
10043
10044            and then not Present (Interface_Alias (Subp))
10045          then
10046             if Present (Alias_Subp) then
10047
10048                --  Only perform the check for a derived subprogram when the
10049                --  type has an explicit record extension. This avoids incorrect
10050                --  flagging of abstract subprograms for the case of a type
10051                --  without an extension that is derived from a formal type
10052                --  with a tagged actual (can occur within a private part).
10053
10054                --  Ada 2005 (AI-391): In the case of an inherited function with
10055                --  a controlling result of the type, the rule does not apply if
10056                --  the type is a null extension (unless the parent function
10057                --  itself is abstract, in which case the function must still be
10058                --  be overridden). The expander will generate an overriding
10059                --  wrapper function calling the parent subprogram (see
10060                --  Exp_Ch3.Make_Controlling_Wrapper_Functions).
10061
10062                Type_Def := Type_Definition (Parent (T));
10063
10064                if Nkind (Type_Def) = N_Derived_Type_Definition
10065                  and then Present (Record_Extension_Part (Type_Def))
10066                  and then
10067                    (Ada_Version < Ada_2005
10068                       or else not Is_Null_Extension (T)
10069                       or else Ekind (Subp) = E_Procedure
10070                       or else not Has_Controlling_Result (Subp)
10071                       or else Is_Abstract_Subprogram (Alias_Subp)
10072                       or else Requires_Overriding (Subp)
10073                       or else Is_Access_Type (Etype (Subp)))
10074                then
10075                   --  Avoid reporting error in case of abstract predefined
10076                   --  primitive inherited from interface type because the
10077                   --  body of internally generated predefined primitives
10078                   --  of tagged types are generated later by Freeze_Type
10079
10080                   if Is_Interface (Root_Type (T))
10081                     and then Is_Abstract_Subprogram (Subp)
10082                     and then Is_Predefined_Dispatching_Operation (Subp)
10083                     and then not Comes_From_Source (Ultimate_Alias (Subp))
10084                   then
10085                      null;
10086
10087                   --  A null extension is not obliged to override an inherited
10088                   --  procedure subject to pragma Extensions_Visible with value
10089                   --  False and at least one controlling OUT parameter
10090                   --  (SPARK RM 6.1.7(6)).
10091
10092                   elsif Is_Null_Extension (T)
10093                     and then Is_EVF_Procedure (Subp)
10094                   then
10095                      null;
10096
10097                   else
10098                      Error_Msg_NE
10099                        ("type must be declared abstract or & overridden",
10100                         T, Subp);
10101
10102                      --  Traverse the whole chain of aliased subprograms to
10103                      --  complete the error notification. This is especially
10104                      --  useful for traceability of the chain of entities when
10105                      --  the subprogram corresponds with an interface
10106                      --  subprogram (which may be defined in another package).
10107
10108                      if Present (Alias_Subp) then
10109                         declare
10110                            E : Entity_Id;
10111
10112                         begin
10113                            E := Subp;
10114                            while Present (Alias (E)) loop
10115
10116                               --  Avoid reporting redundant errors on entities
10117                               --  inherited from interfaces
10118
10119                               if Sloc (E) /= Sloc (T) then
10120                                  Error_Msg_Sloc := Sloc (E);
10121                                  Error_Msg_NE
10122                                    ("\& has been inherited #", T, Subp);
10123                               end if;
10124
10125                               E := Alias (E);
10126                            end loop;
10127
10128                            Error_Msg_Sloc := Sloc (E);
10129
10130                            --  AI05-0068: report if there is an overriding
10131                            --  non-abstract subprogram that is invisible.
10132
10133                            if Is_Hidden (E)
10134                              and then not Is_Abstract_Subprogram (E)
10135                            then
10136                               Error_Msg_NE
10137                                 ("\& subprogram# is not visible",
10138                                  T, Subp);
10139
10140                            --  Clarify the case where a non-null extension must
10141                            --  override inherited procedure subject to pragma
10142                            --  Extensions_Visible with value False and at least
10143                            --  one controlling OUT param.
10144
10145                            elsif Is_EVF_Procedure (E) then
10146                               Error_Msg_NE
10147                                 ("\& # is subject to Extensions_Visible False",
10148                                  T, Subp);
10149
10150                            else
10151                               Error_Msg_NE
10152                                 ("\& has been inherited from subprogram #",
10153                                  T, Subp);
10154                            end if;
10155                         end;
10156                      end if;
10157                   end if;
10158
10159                --  Ada 2005 (AI-345): Protected or task type implementing
10160                --  abstract interfaces.
10161
10162                elsif Is_Concurrent_Record_Type (T)
10163                  and then Present (Interfaces (T))
10164                then
10165                   --  There is no need to check here RM 9.4(11.9/3) since we
10166                   --  are processing the corresponding record type and the
10167                   --  mode of the overriding subprograms was verified by
10168                   --  Check_Conformance when the corresponding concurrent
10169                   --  type declaration was analyzed.
10170
10171                   Error_Msg_NE
10172                     ("interface subprogram & must be overridden", T, Subp);
10173
10174                   --  Examine primitive operations of synchronized type to find
10175                   --  homonyms that have the wrong profile.
10176
10177                   declare
10178                      Prim : Entity_Id;
10179
10180                   begin
10181                      Prim := First_Entity (Corresponding_Concurrent_Type (T));
10182                      while Present (Prim) loop
10183                         if Chars (Prim) = Chars (Subp) then
10184                            Error_Msg_NE
10185                              ("profile is not type conformant with prefixed "
10186                               & "view profile of inherited operation&",
10187                               Prim, Subp);
10188                         end if;
10189
10190                         Next_Entity (Prim);
10191                      end loop;
10192                   end;
10193                end if;
10194
10195             else
10196                Error_Msg_Node_2 := T;
10197                Error_Msg_N
10198                  ("abstract subprogram& not allowed for type&", Subp);
10199
10200                --  Also post unconditional warning on the type (unconditional
10201                --  so that if there are more than one of these cases, we get
10202                --  them all, and not just the first one).
10203
10204                Error_Msg_Node_2 := Subp;
10205                Error_Msg_N ("nonabstract type& has abstract subprogram&!", T);
10206             end if;
10207
10208          --  A subprogram subject to pragma Extensions_Visible with value
10209          --  "True" cannot override a subprogram subject to the same pragma
10210          --  with value "False" (SPARK RM 6.1.7(5)).
10211
10212          elsif Extensions_Visible_Status (Subp) = Extensions_Visible_True
10213            and then Present (Overridden_Operation (Subp))
10214            and then Extensions_Visible_Status (Overridden_Operation (Subp)) =
10215                     Extensions_Visible_False
10216          then
10217             Error_Msg_Sloc := Sloc (Overridden_Operation (Subp));
10218             Error_Msg_N
10219               ("subprogram & with Extensions_Visible True cannot override "
10220                & "subprogram # with Extensions_Visible False", Subp);
10221          end if;
10222
10223          --  Ada 2012 (AI05-0030): Perform checks related to pragma Implemented
10224
10225          --  Subp is an expander-generated procedure which maps an interface
10226          --  alias to a protected wrapper. The interface alias is flagged by
10227          --  pragma Implemented. Ensure that Subp is a procedure when the
10228          --  implementation kind is By_Protected_Procedure or an entry when
10229          --  By_Entry.
10230
10231          if Ada_Version >= Ada_2012
10232            and then Is_Hidden (Subp)
10233            and then Present (Interface_Alias (Subp))
10234            and then Has_Rep_Pragma (Interface_Alias (Subp), Name_Implemented)
10235          then
10236             Check_Pragma_Implemented (Subp);
10237          end if;
10238
10239          --  Subp is an interface primitive which overrides another interface
10240          --  primitive marked with pragma Implemented.
10241
10242          if Ada_Version >= Ada_2012
10243            and then Present (Overridden_Operation (Subp))
10244            and then Has_Rep_Pragma
10245                       (Overridden_Operation (Subp), Name_Implemented)
10246          then
10247             --  If the overriding routine is also marked by Implemented, check
10248             --  that the two implementation kinds are conforming.
10249
10250             if Has_Rep_Pragma (Subp, Name_Implemented) then
10251                Check_Pragma_Implemented
10252                  (Subp       => Subp,
10253                   Iface_Subp => Overridden_Operation (Subp));
10254
10255             --  Otherwise the overriding routine inherits the implementation
10256             --  kind from the overridden subprogram.
10257
10258             else
10259                Inherit_Pragma_Implemented
10260                  (Subp       => Subp,
10261                   Iface_Subp => Overridden_Operation (Subp));
10262             end if;
10263          end if;
10264
10265          --  If the operation is a wrapper for a synchronized primitive, it
10266          --  may be called indirectly through a dispatching select. We assume
10267          --  that it will be referenced elsewhere indirectly, and suppress
10268          --  warnings about an unused entity.
10269
10270          if Is_Primitive_Wrapper (Subp)
10271            and then Present (Wrapped_Entity (Subp))
10272          then
10273             Set_Referenced (Wrapped_Entity (Subp));
10274          end if;
10275
10276          Next_Elmt (Elmt);
10277       end loop;
10278    end Check_Abstract_Overriding;
10279
10280    ------------------------------------------------
10281    -- Check_Access_Discriminant_Requires_Limited --
10282    ------------------------------------------------
10283
10284    procedure Check_Access_Discriminant_Requires_Limited
10285      (D   : Node_Id;
10286       Loc : Node_Id)
10287    is
10288    begin
10289       --  A discriminant_specification for an access discriminant shall appear
10290       --  only in the declaration for a task or protected type, or for a type
10291       --  with the reserved word 'limited' in its definition or in one of its
10292       --  ancestors (RM 3.7(10)).
10293
10294       --  AI-0063: The proper condition is that type must be immutably limited,
10295       --  or else be a partial view.
10296
10297       if Nkind (Discriminant_Type (D)) = N_Access_Definition then
10298          if Is_Limited_View (Current_Scope)
10299            or else
10300              (Nkind (Parent (Current_Scope)) = N_Private_Type_Declaration
10301                and then Limited_Present (Parent (Current_Scope)))
10302          then
10303             null;
10304
10305          else
10306             Error_Msg_N
10307               ("access discriminants allowed only for limited types", Loc);
10308          end if;
10309       end if;
10310    end Check_Access_Discriminant_Requires_Limited;
10311
10312    -----------------------------------
10313    -- Check_Aliased_Component_Types --
10314    -----------------------------------
10315
10316    procedure Check_Aliased_Component_Types (T : Entity_Id) is
10317       C : Entity_Id;
10318
10319    begin
10320       --  ??? Also need to check components of record extensions, but not
10321       --  components of protected types (which are always limited).
10322
10323       --  Ada 2005: AI-363 relaxes this rule, to allow heap objects of such
10324       --  types to be unconstrained. This is safe because it is illegal to
10325       --  create access subtypes to such types with explicit discriminant
10326       --  constraints.
10327
10328       if not Is_Limited_Type (T) then
10329          if Ekind (T) = E_Record_Type then
10330             C := First_Component (T);
10331             while Present (C) loop
10332                if Is_Aliased (C)
10333                  and then Has_Discriminants (Etype (C))
10334                  and then not Is_Constrained (Etype (C))
10335                  and then not In_Instance_Body
10336                  and then Ada_Version < Ada_2005
10337                then
10338                   Error_Msg_N
10339                     ("aliased component must be constrained (RM 3.6(11))",
10340                       C);
10341                end if;
10342
10343                Next_Component (C);
10344             end loop;
10345
10346          elsif Ekind (T) = E_Array_Type then
10347             if Has_Aliased_Components (T)
10348               and then Has_Discriminants (Component_Type (T))
10349               and then not Is_Constrained (Component_Type (T))
10350               and then not In_Instance_Body
10351               and then Ada_Version < Ada_2005
10352             then
10353                Error_Msg_N
10354                  ("aliased component type must be constrained (RM 3.6(11))",
10355                     T);
10356             end if;
10357          end if;
10358       end if;
10359    end Check_Aliased_Component_Types;
10360
10361    ---------------------------------------
10362    -- Check_Anonymous_Access_Components --
10363    ---------------------------------------
10364
10365    procedure Check_Anonymous_Access_Components
10366       (Typ_Decl  : Node_Id;
10367        Typ       : Entity_Id;
10368        Prev      : Entity_Id;
10369        Comp_List : Node_Id)
10370    is
10371       Loc         : constant Source_Ptr := Sloc (Typ_Decl);
10372       Anon_Access : Entity_Id;
10373       Acc_Def     : Node_Id;
10374       Comp        : Node_Id;
10375       Comp_Def    : Node_Id;
10376       Decl        : Node_Id;
10377       Type_Def    : Node_Id;
10378
10379       procedure Build_Incomplete_Type_Declaration;
10380       --  If the record type contains components that include an access to the
10381       --  current record, then create an incomplete type declaration for the
10382       --  record, to be used as the designated type of the anonymous access.
10383       --  This is done only once, and only if there is no previous partial
10384       --  view of the type.
10385
10386       function Designates_T (Subt : Node_Id) return Boolean;
10387       --  Check whether a node designates the enclosing record type, or 'Class
10388       --  of that type
10389
10390       function Mentions_T (Acc_Def : Node_Id) return Boolean;
10391       --  Check whether an access definition includes a reference to
10392       --  the enclosing record type. The reference can be a subtype mark
10393       --  in the access definition itself, a 'Class attribute reference, or
10394       --  recursively a reference appearing in a parameter specification
10395       --  or result definition of an access_to_subprogram definition.
10396
10397       --------------------------------------
10398       -- Build_Incomplete_Type_Declaration --
10399       --------------------------------------
10400
10401       procedure Build_Incomplete_Type_Declaration is
10402          Decl  : Node_Id;
10403          Inc_T : Entity_Id;
10404          H     : Entity_Id;
10405
10406          --  Is_Tagged indicates whether the type is tagged. It is tagged if
10407          --  it's "is new ... with record" or else "is tagged record ...".
10408
10409          Is_Tagged : constant Boolean :=
10410              (Nkind (Type_Definition (Typ_Decl)) = N_Derived_Type_Definition
10411                and then
10412                  Present (Record_Extension_Part (Type_Definition (Typ_Decl))))
10413            or else
10414              (Nkind (Type_Definition (Typ_Decl)) = N_Record_Definition
10415                and then Tagged_Present (Type_Definition (Typ_Decl)));
10416
10417       begin
10418          --  If there is a previous partial view, no need to create a new one
10419          --  If the partial view, given by Prev, is incomplete,  If Prev is
10420          --  a private declaration, full declaration is flagged accordingly.
10421
10422          if Prev /= Typ then
10423             if Is_Tagged then
10424                Make_Class_Wide_Type (Prev);
10425                Set_Class_Wide_Type (Typ, Class_Wide_Type (Prev));
10426                Set_Etype (Class_Wide_Type (Typ), Typ);
10427             end if;
10428
10429             return;
10430
10431          elsif Has_Private_Declaration (Typ) then
10432
10433             --  If we refer to T'Class inside T, and T is the completion of a
10434             --  private type, then make sure the class-wide type exists.
10435
10436             if Is_Tagged then
10437                Make_Class_Wide_Type (Typ);
10438             end if;
10439
10440             return;
10441
10442          --  If there was a previous anonymous access type, the incomplete
10443          --  type declaration will have been created already.
10444
10445          elsif Present (Current_Entity (Typ))
10446            and then Ekind (Current_Entity (Typ)) = E_Incomplete_Type
10447            and then Full_View (Current_Entity (Typ)) = Typ
10448          then
10449             if Is_Tagged
10450               and then Comes_From_Source (Current_Entity (Typ))
10451               and then not Is_Tagged_Type (Current_Entity (Typ))
10452             then
10453                Make_Class_Wide_Type (Typ);
10454                Error_Msg_N
10455                  ("incomplete view of tagged type should be declared tagged??",
10456                   Parent (Current_Entity (Typ)));
10457             end if;
10458             return;
10459
10460          else
10461             Inc_T := Make_Defining_Identifier (Loc, Chars (Typ));
10462             Decl  := Make_Incomplete_Type_Declaration (Loc, Inc_T);
10463
10464             --  Type has already been inserted into the current scope. Remove
10465             --  it, and add incomplete declaration for type, so that subsequent
10466             --  anonymous access types can use it. The entity is unchained from
10467             --  the homonym list and from immediate visibility. After analysis,
10468             --  the entity in the incomplete declaration becomes immediately
10469             --  visible in the record declaration that follows.
10470
10471             H := Current_Entity (Typ);
10472
10473             if H = Typ then
10474                Set_Name_Entity_Id (Chars (Typ), Homonym (Typ));
10475             else
10476                while Present (H)
10477                  and then Homonym (H) /= Typ
10478                loop
10479                   H := Homonym (Typ);
10480                end loop;
10481
10482                Set_Homonym (H, Homonym (Typ));
10483             end if;
10484
10485             Insert_Before (Typ_Decl, Decl);
10486             Analyze (Decl);
10487             Set_Full_View (Inc_T, Typ);
10488
10489             if Is_Tagged then
10490
10491                --  Create a common class-wide type for both views, and set the
10492                --  Etype of the class-wide type to the full view.
10493
10494                Make_Class_Wide_Type (Inc_T);
10495                Set_Class_Wide_Type (Typ, Class_Wide_Type (Inc_T));
10496                Set_Etype (Class_Wide_Type (Typ), Typ);
10497             end if;
10498          end if;
10499       end Build_Incomplete_Type_Declaration;
10500
10501       ------------------
10502       -- Designates_T --
10503       ------------------
10504
10505       function Designates_T (Subt : Node_Id) return Boolean is
10506          Type_Id : constant Name_Id := Chars (Typ);
10507
10508          function Names_T (Nam : Node_Id) return Boolean;
10509          --  The record type has not been introduced in the current scope
10510          --  yet, so we must examine the name of the type itself, either
10511          --  an identifier T, or an expanded name of the form P.T, where
10512          --  P denotes the current scope.
10513
10514          -------------
10515          -- Names_T --
10516          -------------
10517
10518          function Names_T (Nam : Node_Id) return Boolean is
10519          begin
10520             if Nkind (Nam) = N_Identifier then
10521                return Chars (Nam) = Type_Id;
10522
10523             elsif Nkind (Nam) = N_Selected_Component then
10524                if Chars (Selector_Name (Nam)) = Type_Id then
10525                   if Nkind (Prefix (Nam)) = N_Identifier then
10526                      return Chars (Prefix (Nam)) = Chars (Current_Scope);
10527
10528                   elsif Nkind (Prefix (Nam)) = N_Selected_Component then
10529                      return Chars (Selector_Name (Prefix (Nam))) =
10530                             Chars (Current_Scope);
10531                   else
10532                      return False;
10533                   end if;
10534
10535                else
10536                   return False;
10537                end if;
10538
10539             else
10540                return False;
10541             end if;
10542          end Names_T;
10543
10544       --  Start of processing for Designates_T
10545
10546       begin
10547          if Nkind (Subt) = N_Identifier then
10548             return Chars (Subt) = Type_Id;
10549
10550             --  Reference can be through an expanded name which has not been
10551             --  analyzed yet, and which designates enclosing scopes.
10552
10553          elsif Nkind (Subt) = N_Selected_Component then
10554             if Names_T (Subt) then
10555                return True;
10556
10557             --  Otherwise it must denote an entity that is already visible.
10558             --  The access definition may name a subtype of the enclosing
10559             --  type, if there is a previous incomplete declaration for it.
10560
10561             else
10562                Find_Selected_Component (Subt);
10563                return
10564                  Is_Entity_Name (Subt)
10565                    and then Scope (Entity (Subt)) = Current_Scope
10566                    and then
10567                      (Chars (Base_Type (Entity (Subt))) = Type_Id
10568                        or else
10569                          (Is_Class_Wide_Type (Entity (Subt))
10570                            and then
10571                              Chars (Etype (Base_Type (Entity (Subt)))) =
10572                                                                   Type_Id));
10573             end if;
10574
10575          --  A reference to the current type may appear as the prefix of
10576          --  a 'Class attribute.
10577
10578          elsif Nkind (Subt) = N_Attribute_Reference
10579            and then Attribute_Name (Subt) = Name_Class
10580          then
10581             return Names_T (Prefix (Subt));
10582
10583          else
10584             return False;
10585          end if;
10586       end Designates_T;
10587
10588       ----------------
10589       -- Mentions_T --
10590       ----------------
10591
10592       function Mentions_T (Acc_Def : Node_Id) return Boolean is
10593          Param_Spec : Node_Id;
10594
10595          Acc_Subprg : constant Node_Id :=
10596                         Access_To_Subprogram_Definition (Acc_Def);
10597
10598       begin
10599          if No (Acc_Subprg) then
10600             return Designates_T (Subtype_Mark (Acc_Def));
10601          end if;
10602
10603          --  Component is an access_to_subprogram: examine its formals,
10604          --  and result definition in the case of an access_to_function.
10605
10606          Param_Spec := First (Parameter_Specifications (Acc_Subprg));
10607          while Present (Param_Spec) loop
10608             if Nkind (Parameter_Type (Param_Spec)) = N_Access_Definition
10609               and then Mentions_T (Parameter_Type (Param_Spec))
10610             then
10611                return True;
10612
10613             elsif Designates_T (Parameter_Type (Param_Spec)) then
10614                return True;
10615             end if;
10616
10617             Next (Param_Spec);
10618          end loop;
10619
10620          if Nkind (Acc_Subprg) = N_Access_Function_Definition then
10621             if Nkind (Result_Definition (Acc_Subprg)) =
10622                  N_Access_Definition
10623             then
10624                return Mentions_T (Result_Definition (Acc_Subprg));
10625             else
10626                return Designates_T (Result_Definition (Acc_Subprg));
10627             end if;
10628          end if;
10629
10630          return False;
10631       end Mentions_T;
10632
10633    --  Start of processing for Check_Anonymous_Access_Components
10634
10635    begin
10636       if No (Comp_List) then
10637          return;
10638       end if;
10639
10640       Comp := First (Component_Items (Comp_List));
10641       while Present (Comp) loop
10642          if Nkind (Comp) = N_Component_Declaration
10643            and then Present
10644              (Access_Definition (Component_Definition (Comp)))
10645            and then
10646              Mentions_T (Access_Definition (Component_Definition (Comp)))
10647          then
10648             Comp_Def := Component_Definition (Comp);
10649             Acc_Def :=
10650               Access_To_Subprogram_Definition (Access_Definition (Comp_Def));
10651
10652             Build_Incomplete_Type_Declaration;
10653             Anon_Access := Make_Temporary (Loc, 'S');
10654
10655             --  Create a declaration for the anonymous access type: either
10656             --  an access_to_object or an access_to_subprogram.
10657
10658             if Present (Acc_Def) then
10659                if Nkind (Acc_Def) = N_Access_Function_Definition then
10660                   Type_Def :=
10661                     Make_Access_Function_Definition (Loc,
10662                       Parameter_Specifications =>
10663                         Parameter_Specifications (Acc_Def),
10664                       Result_Definition        => Result_Definition (Acc_Def));
10665                else
10666                   Type_Def :=
10667                     Make_Access_Procedure_Definition (Loc,
10668                       Parameter_Specifications =>
10669                         Parameter_Specifications (Acc_Def));
10670                end if;
10671
10672             else
10673                Type_Def :=
10674                  Make_Access_To_Object_Definition (Loc,
10675                    Subtype_Indication =>
10676                       Relocate_Node
10677                         (Subtype_Mark (Access_Definition (Comp_Def))));
10678
10679                Set_Constant_Present
10680                  (Type_Def, Constant_Present (Access_Definition (Comp_Def)));
10681                Set_All_Present
10682                  (Type_Def, All_Present (Access_Definition (Comp_Def)));
10683             end if;
10684
10685             Set_Null_Exclusion_Present
10686               (Type_Def,
10687                Null_Exclusion_Present (Access_Definition (Comp_Def)));
10688
10689             Decl :=
10690               Make_Full_Type_Declaration (Loc,
10691                 Defining_Identifier => Anon_Access,
10692                 Type_Definition     => Type_Def);
10693
10694             Insert_Before (Typ_Decl, Decl);
10695             Analyze (Decl);
10696
10697             --  If an access to subprogram, create the extra formals
10698
10699             if Present (Acc_Def) then
10700                Create_Extra_Formals (Designated_Type (Anon_Access));
10701
10702             --  If an access to object, preserve entity of designated type,
10703             --  for ASIS use, before rewriting the component definition.
10704
10705             else
10706                declare
10707                   Desig : Entity_Id;
10708
10709                begin
10710                   Desig := Entity (Subtype_Indication (Type_Def));
10711
10712                   --  If the access definition is to the current  record,
10713                   --  the visible entity at this point is an  incomplete
10714                   --  type. Retrieve the full view to simplify  ASIS queries
10715
10716                   if Ekind (Desig) = E_Incomplete_Type then
10717                      Desig := Full_View (Desig);
10718                   end if;
10719
10720                   Set_Entity
10721                     (Subtype_Mark (Access_Definition  (Comp_Def)), Desig);
10722                end;
10723             end if;
10724
10725             Rewrite (Comp_Def,
10726               Make_Component_Definition (Loc,
10727                 Subtype_Indication =>
10728                New_Occurrence_Of (Anon_Access, Loc)));
10729
10730             if Ekind (Designated_Type (Anon_Access)) = E_Subprogram_Type then
10731                Set_Ekind (Anon_Access, E_Anonymous_Access_Subprogram_Type);
10732             else
10733                Set_Ekind (Anon_Access, E_Anonymous_Access_Type);
10734             end if;
10735
10736             Set_Is_Local_Anonymous_Access (Anon_Access);
10737          end if;
10738
10739          Next (Comp);
10740       end loop;
10741
10742       if Present (Variant_Part (Comp_List)) then
10743          declare
10744             V : Node_Id;
10745          begin
10746             V := First_Non_Pragma (Variants (Variant_Part (Comp_List)));
10747             while Present (V) loop
10748                Check_Anonymous_Access_Components
10749                  (Typ_Decl, Typ, Prev, Component_List (V));
10750                Next_Non_Pragma (V);
10751             end loop;
10752          end;
10753       end if;
10754    end Check_Anonymous_Access_Components;
10755
10756    ----------------------
10757    -- Check_Completion --
10758    ----------------------
10759
10760    procedure Check_Completion (Body_Id : Node_Id := Empty) is
10761       E : Entity_Id;
10762
10763       procedure Post_Error;
10764       --  Post error message for lack of completion for entity E
10765
10766       ----------------
10767       -- Post_Error --
10768       ----------------
10769
10770       procedure Post_Error is
10771          procedure Missing_Body;
10772          --  Output missing body message
10773
10774          ------------------
10775          -- Missing_Body --
10776          ------------------
10777
10778          procedure Missing_Body is
10779          begin
10780             --  Spec is in same unit, so we can post on spec
10781
10782             if In_Same_Source_Unit (Body_Id, E) then
10783                Error_Msg_N ("missing body for &", E);
10784
10785             --  Spec is in a separate unit, so we have to post on the body
10786
10787             else
10788                Error_Msg_NE ("missing body for & declared#!", Body_Id, E);
10789             end if;
10790          end Missing_Body;
10791
10792       --  Start of processing for Post_Error
10793
10794       begin
10795          if not Comes_From_Source (E) then
10796             if Ekind_In (E, E_Task_Type, E_Protected_Type) then
10797
10798                --  It may be an anonymous protected type created for a
10799                --  single variable. Post error on variable, if present.
10800
10801                declare
10802                   Var : Entity_Id;
10803
10804                begin
10805                   Var := First_Entity (Current_Scope);
10806                   while Present (Var) loop
10807                      exit when Etype (Var) = E
10808                        and then Comes_From_Source (Var);
10809
10810                      Next_Entity (Var);
10811                   end loop;
10812
10813                   if Present (Var) then
10814                      E := Var;
10815                   end if;
10816                end;
10817             end if;
10818          end if;
10819
10820          --  If a generated entity has no completion, then either previous
10821          --  semantic errors have disabled the expansion phase, or else we had
10822          --  missing subunits, or else we are compiling without expansion,
10823          --  or else something is very wrong.
10824
10825          if not Comes_From_Source (E) then
10826             pragma Assert
10827               (Serious_Errors_Detected > 0
10828                 or else Configurable_Run_Time_Violations > 0
10829                 or else Subunits_Missing
10830                 or else not Expander_Active);
10831             return;
10832
10833          --  Here for source entity
10834
10835          else
10836             --  Here if no body to post the error message, so we post the error
10837             --  on the declaration that has no completion. This is not really
10838             --  the right place to post it, think about this later ???
10839
10840             if No (Body_Id) then
10841                if Is_Type (E) then
10842                   Error_Msg_NE
10843                     ("missing full declaration for }", Parent (E), E);
10844                else
10845                   Error_Msg_NE ("missing body for &", Parent (E), E);
10846                end if;
10847
10848             --  Package body has no completion for a declaration that appears
10849             --  in the corresponding spec. Post error on the body, with a
10850             --  reference to the non-completed declaration.
10851
10852             else
10853                Error_Msg_Sloc := Sloc (E);
10854
10855                if Is_Type (E) then
10856                   Error_Msg_NE ("missing full declaration for }!", Body_Id, E);
10857
10858                elsif Is_Overloadable (E)
10859                  and then Current_Entity_In_Scope (E) /= E
10860                then
10861                   --  It may be that the completion is mistyped and appears as
10862                   --  a distinct overloading of the entity.
10863
10864                   declare
10865                      Candidate : constant Entity_Id :=
10866                                    Current_Entity_In_Scope (E);
10867                      Decl      : constant Node_Id :=
10868                                    Unit_Declaration_Node (Candidate);
10869
10870                   begin
10871                      if Is_Overloadable (Candidate)
10872                        and then Ekind (Candidate) = Ekind (E)
10873                        and then Nkind (Decl) = N_Subprogram_Body
10874                        and then Acts_As_Spec (Decl)
10875                      then
10876                         Check_Type_Conformant (Candidate, E);
10877
10878                      else
10879                         Missing_Body;
10880                      end if;
10881                   end;
10882
10883                else
10884                   Missing_Body;
10885                end if;
10886             end if;
10887          end if;
10888       end Post_Error;
10889
10890       --  Local variables
10891
10892       Pack_Id : constant Entity_Id := Current_Scope;
10893
10894    --  Start of processing for Check_Completion
10895
10896    begin
10897       E := First_Entity (Pack_Id);
10898       while Present (E) loop
10899          if Is_Intrinsic_Subprogram (E) then
10900             null;
10901
10902          --  The following situation requires special handling: a child unit
10903          --  that appears in the context clause of the body of its parent:
10904
10905          --    procedure Parent.Child (...);
10906
10907          --    with Parent.Child;
10908          --    package body Parent is
10909
10910          --  Here Parent.Child appears as a local entity, but should not be
10911          --  flagged as requiring completion, because it is a compilation
10912          --  unit.
10913
10914          --  Ignore missing completion for a subprogram that does not come from
10915          --  source (including the _Call primitive operation of RAS types,
10916          --  which has to have the flag Comes_From_Source for other purposes):
10917          --  we assume that the expander will provide the missing completion.
10918          --  In case of previous errors, other expansion actions that provide
10919          --  bodies for null procedures with not be invoked, so inhibit message
10920          --  in those cases.
10921
10922          --  Note that E_Operator is not in the list that follows, because
10923          --  this kind is reserved for predefined operators, that are
10924          --  intrinsic and do not need completion.
10925
10926          elsif Ekind_In (E, E_Function,
10927                             E_Procedure,
10928                             E_Generic_Function,
10929                             E_Generic_Procedure)
10930          then
10931             if Has_Completion (E) then
10932                null;
10933
10934             elsif Is_Subprogram (E) and then Is_Abstract_Subprogram (E) then
10935                null;
10936
10937             elsif Is_Subprogram (E)
10938               and then (not Comes_From_Source (E)
10939                          or else Chars (E) = Name_uCall)
10940             then
10941                null;
10942
10943             elsif
10944                Nkind (Parent (Unit_Declaration_Node (E))) = N_Compilation_Unit
10945             then
10946                null;
10947
10948             elsif Nkind (Parent (E)) = N_Procedure_Specification
10949               and then Null_Present (Parent (E))
10950               and then Serious_Errors_Detected > 0
10951             then
10952                null;
10953
10954             else
10955                Post_Error;
10956             end if;
10957
10958          elsif Is_Entry (E) then
10959             if not Has_Completion (E) and then
10960               (Ekind (Scope (E)) = E_Protected_Object
10961                 or else Ekind (Scope (E)) = E_Protected_Type)
10962             then
10963                Post_Error;
10964             end if;
10965
10966          elsif Is_Package_Or_Generic_Package (E) then
10967             if Unit_Requires_Body (E) then
10968                if not Has_Completion (E)
10969                  and then Nkind (Parent (Unit_Declaration_Node (E))) /=
10970                                                        N_Compilation_Unit
10971                then
10972                   Post_Error;
10973                end if;
10974
10975             elsif not Is_Child_Unit (E) then
10976                May_Need_Implicit_Body (E);
10977             end if;
10978
10979          --  A formal incomplete type (Ada 2012) does not require a completion;
10980          --  other incomplete type declarations do.
10981
10982          elsif Ekind (E) = E_Incomplete_Type
10983            and then No (Underlying_Type (E))
10984            and then not Is_Generic_Type (E)
10985          then
10986             Post_Error;
10987
10988          elsif Ekind_In (E, E_Task_Type, E_Protected_Type)
10989            and then not Has_Completion (E)
10990          then
10991             Post_Error;
10992
10993          --  A single task declared in the current scope is a constant, verify
10994          --  that the body of its anonymous type is in the same scope. If the
10995          --  task is defined elsewhere, this may be a renaming declaration for
10996          --  which no completion is needed.
10997
10998          elsif Ekind (E) = E_Constant
10999            and then Ekind (Etype (E)) = E_Task_Type
11000            and then not Has_Completion (Etype (E))
11001            and then Scope (Etype (E)) = Current_Scope
11002          then
11003             Post_Error;
11004
11005          elsif Ekind (E) = E_Protected_Object
11006            and then not Has_Completion (Etype (E))
11007          then
11008             Post_Error;
11009
11010          elsif Ekind (E) = E_Record_Type then
11011             if Is_Tagged_Type (E) then
11012                Check_Abstract_Overriding (E);
11013                Check_Conventions (E);
11014             end if;
11015
11016             Check_Aliased_Component_Types (E);
11017
11018          elsif Ekind (E) = E_Array_Type then
11019             Check_Aliased_Component_Types (E);
11020
11021          end if;
11022
11023          Next_Entity (E);
11024       end loop;
11025    end Check_Completion;
11026
11027    ------------------------------------
11028    -- Check_CPP_Type_Has_No_Defaults --
11029    ------------------------------------
11030
11031    procedure Check_CPP_Type_Has_No_Defaults (T : Entity_Id) is
11032       Tdef  : constant Node_Id := Type_Definition (Declaration_Node (T));
11033       Clist : Node_Id;
11034       Comp  : Node_Id;
11035
11036    begin
11037       --  Obtain the component list
11038
11039       if Nkind (Tdef) = N_Record_Definition then
11040          Clist := Component_List (Tdef);
11041       else pragma Assert (Nkind (Tdef) = N_Derived_Type_Definition);
11042          Clist := Component_List (Record_Extension_Part (Tdef));
11043       end if;
11044
11045       --  Check all components to ensure no default expressions
11046
11047       if Present (Clist) then
11048          Comp := First (Component_Items (Clist));
11049          while Present (Comp) loop
11050             if Present (Expression (Comp)) then
11051                Error_Msg_N
11052                  ("component of imported 'C'P'P type cannot have "
11053                   & "default expression", Expression (Comp));
11054             end if;
11055
11056             Next (Comp);
11057          end loop;
11058       end if;
11059    end Check_CPP_Type_Has_No_Defaults;
11060
11061    ----------------------------
11062    -- Check_Delta_Expression --
11063    ----------------------------
11064
11065    procedure Check_Delta_Expression (E : Node_Id) is
11066    begin
11067       if not (Is_Real_Type (Etype (E))) then
11068          Wrong_Type (E, Any_Real);
11069
11070       elsif not Is_OK_Static_Expression (E) then
11071          Flag_Non_Static_Expr
11072            ("non-static expression used for delta value!", E);
11073
11074       elsif not UR_Is_Positive (Expr_Value_R (E)) then
11075          Error_Msg_N ("delta expression must be positive", E);
11076
11077       else
11078          return;
11079       end if;
11080
11081       --  If any of above errors occurred, then replace the incorrect
11082       --  expression by the real 0.1, which should prevent further errors.
11083
11084       Rewrite (E,
11085         Make_Real_Literal (Sloc (E), Ureal_Tenth));
11086       Analyze_And_Resolve (E, Standard_Float);
11087    end Check_Delta_Expression;
11088
11089    -----------------------------
11090    -- Check_Digits_Expression --
11091    -----------------------------
11092
11093    procedure Check_Digits_Expression (E : Node_Id) is
11094    begin
11095       if not (Is_Integer_Type (Etype (E))) then
11096          Wrong_Type (E, Any_Integer);
11097
11098       elsif not Is_OK_Static_Expression (E) then
11099          Flag_Non_Static_Expr
11100            ("non-static expression used for digits value!", E);
11101
11102       elsif Expr_Value (E) <= 0 then
11103          Error_Msg_N ("digits value must be greater than zero", E);
11104
11105       else
11106          return;
11107       end if;
11108
11109       --  If any of above errors occurred, then replace the incorrect
11110       --  expression by the integer 1, which should prevent further errors.
11111
11112       Rewrite (E, Make_Integer_Literal (Sloc (E), 1));
11113       Analyze_And_Resolve (E, Standard_Integer);
11114
11115    end Check_Digits_Expression;
11116
11117    --------------------------
11118    -- Check_Initialization --
11119    --------------------------
11120
11121    procedure Check_Initialization (T : Entity_Id; Exp : Node_Id) is
11122    begin
11123       --  Special processing for limited types
11124
11125       if Is_Limited_Type (T)
11126         and then not In_Instance
11127         and then not In_Inlined_Body
11128       then
11129          if not OK_For_Limited_Init (T, Exp) then
11130
11131             --  In GNAT mode, this is just a warning, to allow it to be evilly
11132             --  turned off. Otherwise it is a real error.
11133
11134             if GNAT_Mode then
11135                Error_Msg_N
11136                  ("??cannot initialize entities of limited type!", Exp);
11137
11138             elsif Ada_Version < Ada_2005 then
11139
11140                --  The side effect removal machinery may generate illegal Ada
11141                --  code to avoid the usage of access types and 'reference in
11142                --  SPARK mode. Since this is legal code with respect to theorem
11143                --  proving, do not emit the error.
11144
11145                if GNATprove_Mode
11146                  and then Nkind (Exp) = N_Function_Call
11147                  and then Nkind (Parent (Exp)) = N_Object_Declaration
11148                  and then not Comes_From_Source
11149                                 (Defining_Identifier (Parent (Exp)))
11150                then
11151                   null;
11152
11153                else
11154                   Error_Msg_N
11155                     ("cannot initialize entities of limited type", Exp);
11156                   Explain_Limited_Type (T, Exp);
11157                end if;
11158
11159             else
11160                --  Specialize error message according to kind of illegal
11161                --  initial expression.
11162
11163                if Nkind (Exp) = N_Type_Conversion
11164                  and then Nkind (Expression (Exp)) = N_Function_Call
11165                then
11166                   Error_Msg_N
11167                     ("illegal context for call"
11168                       & " to function with limited result", Exp);
11169
11170                else
11171                   Error_Msg_N
11172                     ("initialization of limited object requires aggregate "
11173                       & "or function call",  Exp);
11174                end if;
11175             end if;
11176          end if;
11177       end if;
11178
11179       --  In gnatc or gnatprove mode, make sure set Do_Range_Check flag gets
11180       --  set unless we can be sure that no range check is required.
11181
11182       if (GNATprove_Mode or not Expander_Active)
11183         and then Is_Scalar_Type (T)
11184         and then not Is_In_Range (Exp, T, Assume_Valid => True)
11185       then
11186          Set_Do_Range_Check (Exp);
11187       end if;
11188    end Check_Initialization;
11189
11190    ----------------------
11191    -- Check_Interfaces --
11192    ----------------------
11193
11194    procedure Check_Interfaces (N : Node_Id; Def : Node_Id) is
11195       Parent_Type : constant Entity_Id := Etype (Defining_Identifier (N));
11196
11197       Iface       : Node_Id;
11198       Iface_Def   : Node_Id;
11199       Iface_Typ   : Entity_Id;
11200       Parent_Node : Node_Id;
11201
11202       Is_Task : Boolean := False;
11203       --  Set True if parent type or any progenitor is a task interface
11204
11205       Is_Protected : Boolean := False;
11206       --  Set True if parent type or any progenitor is a protected interface
11207
11208       procedure Check_Ifaces (Iface_Def : Node_Id; Error_Node : Node_Id);
11209       --  Check that a progenitor is compatible with declaration. If an error
11210       --  message is output, it is posted on Error_Node.
11211
11212       ------------------
11213       -- Check_Ifaces --
11214       ------------------
11215
11216       procedure Check_Ifaces (Iface_Def : Node_Id; Error_Node : Node_Id) is
11217          Iface_Id : constant Entity_Id :=
11218                       Defining_Identifier (Parent (Iface_Def));
11219          Type_Def : Node_Id;
11220
11221       begin
11222          if Nkind (N) = N_Private_Extension_Declaration then
11223             Type_Def := N;
11224          else
11225             Type_Def := Type_Definition (N);
11226          end if;
11227
11228          if Is_Task_Interface (Iface_Id) then
11229             Is_Task := True;
11230
11231          elsif Is_Protected_Interface (Iface_Id) then
11232             Is_Protected := True;
11233          end if;
11234
11235          if Is_Synchronized_Interface (Iface_Id) then
11236
11237             --  A consequence of 3.9.4 (6/2) and 7.3 (7.2/2) is that a private
11238             --  extension derived from a synchronized interface must explicitly
11239             --  be declared synchronized, because the full view will be a
11240             --  synchronized type.
11241
11242             if Nkind (N) = N_Private_Extension_Declaration then
11243                if not Synchronized_Present (N) then
11244                   Error_Msg_NE
11245                     ("private extension of& must be explicitly synchronized",
11246                       N, Iface_Id);
11247                end if;
11248
11249             --  However, by 3.9.4(16/2), a full type that is a record extension
11250             --  is never allowed to derive from a synchronized interface (note
11251             --  that interfaces must be excluded from this check, because those
11252             --  are represented by derived type definitions in some cases).
11253
11254             elsif Nkind (Type_Definition (N)) = N_Derived_Type_Definition
11255               and then not Interface_Present (Type_Definition (N))
11256             then
11257                Error_Msg_N ("record extension cannot derive from synchronized "
11258                             & "interface", Error_Node);
11259             end if;
11260          end if;
11261
11262          --  Check that the characteristics of the progenitor are compatible
11263          --  with the explicit qualifier in the declaration.
11264          --  The check only applies to qualifiers that come from source.
11265          --  Limited_Present also appears in the declaration of corresponding
11266          --  records, and the check does not apply to them.
11267
11268          if Limited_Present (Type_Def)
11269            and then not
11270              Is_Concurrent_Record_Type (Defining_Identifier (N))
11271          then
11272             if Is_Limited_Interface (Parent_Type)
11273               and then not Is_Limited_Interface (Iface_Id)
11274             then
11275                Error_Msg_NE
11276                  ("progenitor & must be limited interface",
11277                    Error_Node, Iface_Id);
11278
11279             elsif
11280               (Task_Present (Iface_Def)
11281                 or else Protected_Present (Iface_Def)
11282                 or else Synchronized_Present (Iface_Def))
11283               and then Nkind (N) /= N_Private_Extension_Declaration
11284               and then not Error_Posted (N)
11285             then
11286                Error_Msg_NE
11287                  ("progenitor & must be limited interface",
11288                    Error_Node, Iface_Id);
11289             end if;
11290
11291          --  Protected interfaces can only inherit from limited, synchronized
11292          --  or protected interfaces.
11293
11294          elsif Nkind (N) = N_Full_Type_Declaration
11295            and then  Protected_Present (Type_Def)
11296          then
11297             if Limited_Present (Iface_Def)
11298               or else Synchronized_Present (Iface_Def)
11299               or else Protected_Present (Iface_Def)
11300             then
11301                null;
11302
11303             elsif Task_Present (Iface_Def) then
11304                Error_Msg_N ("(Ada 2005) protected interface cannot inherit "
11305                             & "from task interface", Error_Node);
11306
11307             else
11308                Error_Msg_N ("(Ada 2005) protected interface cannot inherit "
11309                             & "from non-limited interface", Error_Node);
11310             end if;
11311
11312          --  Ada 2005 (AI-345): Synchronized interfaces can only inherit from
11313          --  limited and synchronized.
11314
11315          elsif Synchronized_Present (Type_Def) then
11316             if Limited_Present (Iface_Def)
11317               or else Synchronized_Present (Iface_Def)
11318             then
11319                null;
11320
11321             elsif Protected_Present (Iface_Def)
11322               and then Nkind (N) /= N_Private_Extension_Declaration
11323             then
11324                Error_Msg_N ("(Ada 2005) synchronized interface cannot inherit "
11325                             & "from protected interface", Error_Node);
11326
11327             elsif Task_Present (Iface_Def)
11328               and then Nkind (N) /= N_Private_Extension_Declaration
11329             then
11330                Error_Msg_N ("(Ada 2005) synchronized interface cannot inherit "
11331                             & "from task interface", Error_Node);
11332
11333             elsif not Is_Limited_Interface (Iface_Id) then
11334                Error_Msg_N ("(Ada 2005) synchronized interface cannot inherit "
11335                             & "from non-limited interface", Error_Node);
11336             end if;
11337
11338          --  Ada 2005 (AI-345): Task interfaces can only inherit from limited,
11339          --  synchronized or task interfaces.
11340
11341          elsif Nkind (N) = N_Full_Type_Declaration
11342            and then Task_Present (Type_Def)
11343          then
11344             if Limited_Present (Iface_Def)
11345               or else Synchronized_Present (Iface_Def)
11346               or else Task_Present (Iface_Def)
11347             then
11348                null;
11349
11350             elsif Protected_Present (Iface_Def) then
11351                Error_Msg_N ("(Ada 2005) task interface cannot inherit from "
11352                             & "protected interface", Error_Node);
11353
11354             else
11355                Error_Msg_N ("(Ada 2005) task interface cannot inherit from "
11356                             & "non-limited interface", Error_Node);
11357             end if;
11358          end if;
11359       end Check_Ifaces;
11360
11361    --  Start of processing for Check_Interfaces
11362
11363    begin
11364       if Is_Interface (Parent_Type) then
11365          if Is_Task_Interface (Parent_Type) then
11366             Is_Task := True;
11367
11368          elsif Is_Protected_Interface (Parent_Type) then
11369             Is_Protected := True;
11370          end if;
11371       end if;
11372
11373       if Nkind (N) = N_Private_Extension_Declaration then
11374
11375          --  Check that progenitors are compatible with declaration
11376
11377          Iface := First (Interface_List (Def));
11378          while Present (Iface) loop
11379             Iface_Typ := Find_Type_Of_Subtype_Indic (Iface);
11380
11381             Parent_Node := Parent (Base_Type (Iface_Typ));
11382             Iface_Def   := Type_Definition (Parent_Node);
11383
11384             if not Is_Interface (Iface_Typ) then
11385                Diagnose_Interface (Iface, Iface_Typ);
11386             else
11387                Check_Ifaces (Iface_Def, Iface);
11388             end if;
11389
11390             Next (Iface);
11391          end loop;
11392
11393          if Is_Task and Is_Protected then
11394             Error_Msg_N
11395               ("type cannot derive from task and protected interface", N);
11396          end if;
11397
11398          return;
11399       end if;
11400
11401       --  Full type declaration of derived type.
11402       --  Check compatibility with parent if it is interface type
11403
11404       if Nkind (Type_Definition (N)) = N_Derived_Type_Definition
11405         and then Is_Interface (Parent_Type)
11406       then
11407          Parent_Node := Parent (Parent_Type);
11408
11409          --  More detailed checks for interface varieties
11410
11411          Check_Ifaces
11412            (Iface_Def  => Type_Definition (Parent_Node),
11413             Error_Node => Subtype_Indication (Type_Definition (N)));
11414       end if;
11415
11416       Iface := First (Interface_List (Def));
11417       while Present (Iface) loop
11418          Iface_Typ := Find_Type_Of_Subtype_Indic (Iface);
11419
11420          Parent_Node := Parent (Base_Type (Iface_Typ));
11421          Iface_Def   := Type_Definition (Parent_Node);
11422
11423          if not Is_Interface (Iface_Typ) then
11424             Diagnose_Interface (Iface, Iface_Typ);
11425
11426          else
11427             --  "The declaration of a specific descendant of an interface
11428             --   type freezes the interface type" RM 13.14
11429
11430             Freeze_Before (N, Iface_Typ);
11431             Check_Ifaces (Iface_Def, Error_Node => Iface);
11432          end if;
11433
11434          Next (Iface);
11435       end loop;
11436
11437       if Is_Task and Is_Protected then
11438          Error_Msg_N
11439            ("type cannot derive from task and protected interface", N);
11440       end if;
11441    end Check_Interfaces;
11442
11443    ------------------------------------
11444    -- Check_Or_Process_Discriminants --
11445    ------------------------------------
11446
11447    --  If an incomplete or private type declaration was already given for the
11448    --  type, the discriminants may have already been processed if they were
11449    --  present on the incomplete declaration. In this case a full conformance
11450    --  check has been performed in Find_Type_Name, and we then recheck here
11451    --  some properties that can't be checked on the partial view alone.
11452    --  Otherwise we call Process_Discriminants.
11453
11454    procedure Check_Or_Process_Discriminants
11455      (N    : Node_Id;
11456       T    : Entity_Id;
11457       Prev : Entity_Id := Empty)
11458    is
11459    begin
11460       if Has_Discriminants (T) then
11461
11462          --  Discriminants are already set on T if they were already present
11463          --  on the partial view. Make them visible to component declarations.
11464
11465          declare
11466             D : Entity_Id;
11467             --  Discriminant on T (full view) referencing expr on partial view
11468
11469             Prev_D : Entity_Id;
11470             --  Entity of corresponding discriminant on partial view
11471
11472             New_D : Node_Id;
11473             --  Discriminant specification for full view, expression is
11474             --  the syntactic copy on full view (which has been checked for
11475             --  conformance with partial view), only used here to post error
11476             --  message.
11477
11478          begin
11479             D     := First_Discriminant (T);
11480             New_D := First (Discriminant_Specifications (N));
11481             while Present (D) loop
11482                Prev_D := Current_Entity (D);
11483                Set_Current_Entity (D);
11484                Set_Is_Immediately_Visible (D);
11485                Set_Homonym (D, Prev_D);
11486
11487                --  Handle the case where there is an untagged partial view and
11488                --  the full view is tagged: must disallow discriminants with
11489                --  defaults, unless compiling for Ada 2012, which allows a
11490                --  limited tagged type to have defaulted discriminants (see
11491                --  AI05-0214). However, suppress error here if it was already
11492                --  reported on the default expression of the partial view.
11493
11494                if Is_Tagged_Type (T)
11495                  and then Present (Expression (Parent (D)))
11496                  and then (not Is_Limited_Type (Current_Scope)
11497                             or else Ada_Version < Ada_2012)
11498                  and then not Error_Posted (Expression (Parent (D)))
11499                then
11500                   if Ada_Version >= Ada_2012 then
11501                      Error_Msg_N
11502                        ("discriminants of nonlimited tagged type cannot have "
11503                         & "defaults",
11504                         Expression (New_D));
11505                   else
11506                      Error_Msg_N
11507                        ("discriminants of tagged type cannot have defaults",
11508                         Expression (New_D));
11509                   end if;
11510                end if;
11511
11512                --  Ada 2005 (AI-230): Access discriminant allowed in
11513                --  non-limited record types.
11514
11515                if Ada_Version < Ada_2005 then
11516
11517                   --  This restriction gets applied to the full type here. It
11518                   --  has already been applied earlier to the partial view.
11519
11520                   Check_Access_Discriminant_Requires_Limited (Parent (D), N);
11521                end if;
11522
11523                Next_Discriminant (D);
11524                Next (New_D);
11525             end loop;
11526          end;
11527
11528       elsif Present (Discriminant_Specifications (N)) then
11529          Process_Discriminants (N, Prev);
11530       end if;
11531    end Check_Or_Process_Discriminants;
11532
11533    ----------------------
11534    -- Check_Real_Bound --
11535    ----------------------
11536
11537    procedure Check_Real_Bound (Bound : Node_Id) is
11538    begin
11539       if not Is_Real_Type (Etype (Bound)) then
11540          Error_Msg_N
11541            ("bound in real type definition must be of real type", Bound);
11542
11543       elsif not Is_OK_Static_Expression (Bound) then
11544          Flag_Non_Static_Expr
11545            ("non-static expression used for real type bound!", Bound);
11546
11547       else
11548          return;
11549       end if;
11550
11551       Rewrite
11552         (Bound, Make_Real_Literal (Sloc (Bound), Ureal_0));
11553       Analyze (Bound);
11554       Resolve (Bound, Standard_Float);
11555    end Check_Real_Bound;
11556
11557    ------------------------------
11558    -- Complete_Private_Subtype --
11559    ------------------------------
11560
11561    procedure Complete_Private_Subtype
11562      (Priv        : Entity_Id;
11563       Full        : Entity_Id;
11564       Full_Base   : Entity_Id;
11565       Related_Nod : Node_Id)
11566    is
11567       Save_Next_Entity : Entity_Id;
11568       Save_Homonym     : Entity_Id;
11569
11570    begin
11571       --  Set semantic attributes for (implicit) private subtype completion.
11572       --  If the full type has no discriminants, then it is a copy of the
11573       --  full view of the base. Otherwise, it is a subtype of the base with
11574       --  a possible discriminant constraint. Save and restore the original
11575       --  Next_Entity field of full to ensure that the calls to Copy_Node do
11576       --  not corrupt the entity chain.
11577
11578       --  Note that the type of the full view is the same entity as the type
11579       --  of the partial view. In this fashion, the subtype has access to the
11580       --  correct view of the parent.
11581
11582       Save_Next_Entity := Next_Entity (Full);
11583       Save_Homonym     := Homonym (Priv);
11584
11585       case Ekind (Full_Base) is
11586          when E_Record_Type    |
11587               E_Record_Subtype |
11588               Class_Wide_Kind  |
11589               Private_Kind     |
11590               Task_Kind        |
11591               Protected_Kind   =>
11592             Copy_Node (Priv, Full);
11593
11594             Set_Has_Discriminants
11595                              (Full, Has_Discriminants (Full_Base));
11596             Set_Has_Unknown_Discriminants
11597                              (Full, Has_Unknown_Discriminants (Full_Base));
11598             Set_First_Entity (Full, First_Entity (Full_Base));
11599             Set_Last_Entity  (Full, Last_Entity (Full_Base));
11600
11601             --  If the underlying base type is constrained, we know that the
11602             --  full view of the subtype is constrained as well (the converse
11603             --  is not necessarily true).
11604
11605             if Is_Constrained (Full_Base) then
11606                Set_Is_Constrained (Full);
11607             end if;
11608
11609          when others =>
11610             Copy_Node (Full_Base, Full);
11611
11612             Set_Chars         (Full, Chars (Priv));
11613             Conditional_Delay (Full, Priv);
11614             Set_Sloc          (Full, Sloc (Priv));
11615       end case;
11616
11617       Set_Next_Entity               (Full, Save_Next_Entity);
11618       Set_Homonym                   (Full, Save_Homonym);
11619       Set_Associated_Node_For_Itype (Full, Related_Nod);
11620
11621       --  Set common attributes for all subtypes: kind, convention, etc.
11622
11623       Set_Ekind (Full, Subtype_Kind (Ekind (Full_Base)));
11624       Set_Convention (Full, Convention (Full_Base));
11625
11626       --  The Etype of the full view is inconsistent. Gigi needs to see the
11627       --  structural full view, which is what the current scheme gives: the
11628       --  Etype of the full view is the etype of the full base. However, if the
11629       --  full base is a derived type, the full view then looks like a subtype
11630       --  of the parent, not a subtype of the full base. If instead we write:
11631
11632       --       Set_Etype (Full, Full_Base);
11633
11634       --  then we get inconsistencies in the front-end (confusion between
11635       --  views). Several outstanding bugs are related to this ???
11636
11637       Set_Is_First_Subtype (Full, False);
11638       Set_Scope            (Full, Scope (Priv));
11639       Set_Size_Info        (Full, Full_Base);
11640       Set_RM_Size          (Full, RM_Size (Full_Base));
11641       Set_Is_Itype         (Full);
11642
11643       --  A subtype of a private-type-without-discriminants, whose full-view
11644       --  has discriminants with default expressions, is not constrained.
11645
11646       if not Has_Discriminants (Priv) then
11647          Set_Is_Constrained (Full, Is_Constrained (Full_Base));
11648
11649          if Has_Discriminants (Full_Base) then
11650             Set_Discriminant_Constraint
11651               (Full, Discriminant_Constraint (Full_Base));
11652
11653             --  The partial view may have been indefinite, the full view
11654             --  might not be.
11655
11656             Set_Has_Unknown_Discriminants
11657               (Full, Has_Unknown_Discriminants (Full_Base));
11658          end if;
11659       end if;
11660
11661       Set_First_Rep_Item     (Full, First_Rep_Item (Full_Base));
11662       Set_Depends_On_Private (Full, Has_Private_Component (Full));
11663
11664       --  Freeze the private subtype entity if its parent is delayed, and not
11665       --  already frozen. We skip this processing if the type is an anonymous
11666       --  subtype of a record component, or is the corresponding record of a
11667       --  protected type, since these are processed when the enclosing type
11668       --  is frozen.
11669
11670       if not Is_Type (Scope (Full)) then
11671          Set_Has_Delayed_Freeze (Full,
11672            Has_Delayed_Freeze (Full_Base)
11673              and then (not Is_Frozen (Full_Base)));
11674       end if;
11675
11676       Set_Freeze_Node (Full, Empty);
11677       Set_Is_Frozen (Full, False);
11678       Set_Full_View (Priv, Full);
11679
11680       if Has_Discriminants (Full) then
11681          Set_Stored_Constraint_From_Discriminant_Constraint (Full);
11682          Set_Stored_Constraint (Priv, Stored_Constraint (Full));
11683
11684          if Has_Unknown_Discriminants (Full) then
11685             Set_Discriminant_Constraint (Full, No_Elist);
11686          end if;
11687       end if;
11688
11689       if Ekind (Full_Base) = E_Record_Type
11690         and then Has_Discriminants (Full_Base)
11691         and then Has_Discriminants (Priv) -- might not, if errors
11692         and then not Has_Unknown_Discriminants (Priv)
11693         and then not Is_Empty_Elmt_List (Discriminant_Constraint (Priv))
11694       then
11695          Create_Constrained_Components
11696            (Full, Related_Nod, Full_Base, Discriminant_Constraint (Priv));
11697
11698       --  If the full base is itself derived from private, build a congruent
11699       --  subtype of its underlying type, for use by the back end. For a
11700       --  constrained record component, the declaration cannot be placed on
11701       --  the component list, but it must nevertheless be built an analyzed, to
11702       --  supply enough information for Gigi to compute the size of component.
11703
11704       elsif Ekind (Full_Base) in Private_Kind
11705         and then Is_Derived_Type (Full_Base)
11706         and then Has_Discriminants (Full_Base)
11707         and then (Ekind (Current_Scope) /= E_Record_Subtype)
11708       then
11709          if not Is_Itype (Priv)
11710            and then
11711              Nkind (Subtype_Indication (Parent (Priv))) = N_Subtype_Indication
11712          then
11713             Build_Underlying_Full_View
11714               (Parent (Priv), Full, Etype (Full_Base));
11715
11716          elsif Nkind (Related_Nod) = N_Component_Declaration then
11717             Build_Underlying_Full_View (Related_Nod, Full, Etype (Full_Base));
11718          end if;
11719
11720       elsif Is_Record_Type (Full_Base) then
11721
11722          --  Show Full is simply a renaming of Full_Base
11723
11724          Set_Cloned_Subtype (Full, Full_Base);
11725       end if;
11726
11727       --  It is unsafe to share the bounds of a scalar type, because the Itype
11728       --  is elaborated on demand, and if a bound is non-static then different
11729       --  orders of elaboration in different units will lead to different
11730       --  external symbols.
11731
11732       if Is_Scalar_Type (Full_Base) then
11733          Set_Scalar_Range (Full,
11734            Make_Range (Sloc (Related_Nod),
11735              Low_Bound  =>
11736                Duplicate_Subexpr_No_Checks (Type_Low_Bound  (Full_Base)),
11737              High_Bound =>
11738                Duplicate_Subexpr_No_Checks (Type_High_Bound (Full_Base))));
11739
11740          --  This completion inherits the bounds of the full parent, but if
11741          --  the parent is an unconstrained floating point type, so is the
11742          --  completion.
11743
11744          if Is_Floating_Point_Type (Full_Base) then
11745             Set_Includes_Infinities
11746              (Scalar_Range (Full), Has_Infinities (Full_Base));
11747          end if;
11748       end if;
11749
11750       --  ??? It seems that a lot of fields are missing that should be copied
11751       --  from Full_Base to Full. Here are some that are introduced in a
11752       --  non-disruptive way but a cleanup is necessary.
11753
11754       if Is_Tagged_Type (Full_Base) then
11755          Set_Is_Tagged_Type (Full);
11756          Set_Direct_Primitive_Operations
11757            (Full, Direct_Primitive_Operations (Full_Base));
11758          Set_No_Tagged_Streams_Pragma
11759            (Full, No_Tagged_Streams_Pragma (Full_Base));
11760
11761          --  Inherit class_wide type of full_base in case the partial view was
11762          --  not tagged. Otherwise it has already been created when the private
11763          --  subtype was analyzed.
11764
11765          if No (Class_Wide_Type (Full)) then
11766             Set_Class_Wide_Type (Full, Class_Wide_Type (Full_Base));
11767          end if;
11768
11769       --  If this is a subtype of a protected or task type, constrain its
11770       --  corresponding record, unless this is a subtype without constraints,
11771       --  i.e. a simple renaming as with an actual subtype in an instance.
11772
11773       elsif Is_Concurrent_Type (Full_Base) then
11774          if Has_Discriminants (Full)
11775            and then Present (Corresponding_Record_Type (Full_Base))
11776            and then
11777              not Is_Empty_Elmt_List (Discriminant_Constraint (Full))
11778          then
11779             Set_Corresponding_Record_Type (Full,
11780               Constrain_Corresponding_Record
11781                 (Full, Corresponding_Record_Type (Full_Base), Related_Nod));
11782
11783          else
11784             Set_Corresponding_Record_Type (Full,
11785               Corresponding_Record_Type (Full_Base));
11786          end if;
11787       end if;
11788
11789       --  Link rep item chain, and also setting of Has_Predicates from private
11790       --  subtype to full subtype, since we will need these on the full subtype
11791       --  to create the predicate function. Note that the full subtype may
11792       --  already have rep items, inherited from the full view of the base
11793       --  type, so we must be sure not to overwrite these entries.
11794
11795       declare
11796          Append    : Boolean;
11797          Item      : Node_Id;
11798          Next_Item : Node_Id;
11799
11800       begin
11801          Item := First_Rep_Item (Full);
11802
11803          --  If no existing rep items on full type, we can just link directly
11804          --  to the list of items on the private type, if any exist.. Same if
11805          --  the rep items are only those inherited from the base
11806
11807          if (No (Item)
11808               or else Nkind (Item) /= N_Aspect_Specification
11809               or else Entity (Item) = Full_Base)
11810              and then Present (First_Rep_Item (Priv))
11811          then
11812             Set_First_Rep_Item (Full, First_Rep_Item (Priv));
11813
11814          --  Otherwise, search to the end of items currently linked to the full
11815          --  subtype and append the private items to the end. However, if Priv
11816          --  and Full already have the same list of rep items, then the append
11817          --  is not done, as that would create a circularity.
11818
11819          elsif Item /= First_Rep_Item (Priv) then
11820             Append := True;
11821             loop
11822                Next_Item := Next_Rep_Item (Item);
11823                exit when No (Next_Item);
11824                Item := Next_Item;
11825
11826                --  If the private view has aspect specifications, the full view
11827                --  inherits them. Since these aspects may already have been
11828                --  attached to the full view during derivation, do not append
11829                --  them if already present.
11830
11831                if Item = First_Rep_Item (Priv) then
11832                   Append := False;
11833                   exit;
11834                end if;
11835             end loop;
11836
11837             --  And link the private type items at the end of the chain
11838
11839             if Append then
11840                Set_Next_Rep_Item (Item, First_Rep_Item (Priv));
11841             end if;
11842          end if;
11843       end;
11844
11845       --  Make sure Has_Predicates is set on full type if it is set on the
11846       --  private type. Note that it may already be set on the full type and
11847       --  if so, we don't want to unset it. Similarly, propagate information
11848       --  about delayed aspects, because the corresponding pragmas must be
11849       --  analyzed when one of the views is frozen. This last step is needed
11850       --  in particular when the full type is a scalar type for which an
11851       --  anonymous base type is constructed.
11852
11853       if Has_Predicates (Priv) then
11854          Set_Has_Predicates (Full);
11855       end if;
11856
11857       if Has_Delayed_Aspects (Priv) then
11858          Set_Has_Delayed_Aspects (Full);
11859       end if;
11860    end Complete_Private_Subtype;
11861
11862    ----------------------------
11863    -- Constant_Redeclaration --
11864    ----------------------------
11865
11866    procedure Constant_Redeclaration
11867      (Id : Entity_Id;
11868       N  : Node_Id;
11869       T  : out Entity_Id)
11870    is
11871       Prev    : constant Entity_Id := Current_Entity_In_Scope (Id);
11872       Obj_Def : constant Node_Id := Object_Definition (N);
11873       New_T   : Entity_Id;
11874
11875       procedure Check_Possible_Deferred_Completion
11876         (Prev_Id      : Entity_Id;
11877          Prev_Obj_Def : Node_Id;
11878          Curr_Obj_Def : Node_Id);
11879       --  Determine whether the two object definitions describe the partial
11880       --  and the full view of a constrained deferred constant. Generate
11881       --  a subtype for the full view and verify that it statically matches
11882       --  the subtype of the partial view.
11883
11884       procedure Check_Recursive_Declaration (Typ : Entity_Id);
11885       --  If deferred constant is an access type initialized with an allocator,
11886       --  check whether there is an illegal recursion in the definition,
11887       --  through a default value of some record subcomponent. This is normally
11888       --  detected when generating init procs, but requires this additional
11889       --  mechanism when expansion is disabled.
11890
11891       ----------------------------------------
11892       -- Check_Possible_Deferred_Completion --
11893       ----------------------------------------
11894
11895       procedure Check_Possible_Deferred_Completion
11896         (Prev_Id      : Entity_Id;
11897          Prev_Obj_Def : Node_Id;
11898          Curr_Obj_Def : Node_Id)
11899       is
11900       begin
11901          if Nkind (Prev_Obj_Def) = N_Subtype_Indication
11902            and then Present (Constraint (Prev_Obj_Def))
11903            and then Nkind (Curr_Obj_Def) = N_Subtype_Indication
11904            and then Present (Constraint (Curr_Obj_Def))
11905          then
11906             declare
11907                Loc    : constant Source_Ptr := Sloc (N);
11908                Def_Id : constant Entity_Id  := Make_Temporary (Loc, 'S');
11909                Decl   : constant Node_Id    :=
11910                           Make_Subtype_Declaration (Loc,
11911                             Defining_Identifier => Def_Id,
11912                             Subtype_Indication  =>
11913                               Relocate_Node (Curr_Obj_Def));
11914
11915             begin
11916                Insert_Before_And_Analyze (N, Decl);
11917                Set_Etype (Id, Def_Id);
11918
11919                if not Subtypes_Statically_Match (Etype (Prev_Id), Def_Id) then
11920                   Error_Msg_Sloc := Sloc (Prev_Id);
11921                   Error_Msg_N ("subtype does not statically match deferred "
11922                                & "declaration #", N);
11923                end if;
11924             end;
11925          end if;
11926       end Check_Possible_Deferred_Completion;
11927
11928       ---------------------------------
11929       -- Check_Recursive_Declaration --
11930       ---------------------------------
11931
11932       procedure Check_Recursive_Declaration (Typ : Entity_Id) is
11933          Comp : Entity_Id;
11934
11935       begin
11936          if Is_Record_Type (Typ) then
11937             Comp := First_Component (Typ);
11938             while Present (Comp) loop
11939                if Comes_From_Source (Comp) then
11940                   if Present (Expression (Parent (Comp)))
11941                     and then Is_Entity_Name (Expression (Parent (Comp)))
11942                     and then Entity (Expression (Parent (Comp))) = Prev
11943                   then
11944                      Error_Msg_Sloc := Sloc (Parent (Comp));
11945                      Error_Msg_NE
11946                        ("illegal circularity with declaration for & #",
11947                          N, Comp);
11948                      return;
11949
11950                   elsif Is_Record_Type (Etype (Comp)) then
11951                      Check_Recursive_Declaration (Etype (Comp));
11952                   end if;
11953                end if;
11954
11955                Next_Component (Comp);
11956             end loop;
11957          end if;
11958       end Check_Recursive_Declaration;
11959
11960    --  Start of processing for Constant_Redeclaration
11961
11962    begin
11963       if Nkind (Parent (Prev)) = N_Object_Declaration then
11964          if Nkind (Object_Definition
11965                      (Parent (Prev))) = N_Subtype_Indication
11966          then
11967             --  Find type of new declaration. The constraints of the two
11968             --  views must match statically, but there is no point in
11969             --  creating an itype for the full view.
11970
11971             if Nkind (Obj_Def) = N_Subtype_Indication then
11972                Find_Type (Subtype_Mark (Obj_Def));
11973                New_T := Entity (Subtype_Mark (Obj_Def));
11974
11975             else
11976                Find_Type (Obj_Def);
11977                New_T := Entity (Obj_Def);
11978             end if;
11979
11980             T := Etype (Prev);
11981
11982          else
11983             --  The full view may impose a constraint, even if the partial
11984             --  view does not, so construct the subtype.
11985
11986             New_T := Find_Type_Of_Object (Obj_Def, N);
11987             T     := New_T;
11988          end if;
11989
11990       else
11991          --  Current declaration is illegal, diagnosed below in Enter_Name
11992
11993          T := Empty;
11994          New_T := Any_Type;
11995       end if;
11996
11997       --  If previous full declaration or a renaming declaration exists, or if
11998       --  a homograph is present, let Enter_Name handle it, either with an
11999       --  error or with the removal of an overridden implicit subprogram.
12000       --  The previous one is a full declaration if it has an expression
12001       --  (which in the case of an aggregate is indicated by the Init flag).
12002
12003       if Ekind (Prev) /= E_Constant
12004         or else Nkind (Parent (Prev)) = N_Object_Renaming_Declaration
12005         or else Present (Expression (Parent (Prev)))
12006         or else Has_Init_Expression (Parent (Prev))
12007         or else Present (Full_View (Prev))
12008       then
12009          Enter_Name (Id);
12010
12011       --  Verify that types of both declarations match, or else that both types
12012       --  are anonymous access types whose designated subtypes statically match
12013       --  (as allowed in Ada 2005 by AI-385).
12014
12015       elsif Base_Type (Etype (Prev)) /= Base_Type (New_T)
12016         and then
12017           (Ekind (Etype (Prev)) /= E_Anonymous_Access_Type
12018              or else Ekind (Etype (New_T)) /= E_Anonymous_Access_Type
12019              or else Is_Access_Constant (Etype (New_T)) /=
12020                      Is_Access_Constant (Etype (Prev))
12021              or else Can_Never_Be_Null (Etype (New_T)) /=
12022                      Can_Never_Be_Null (Etype (Prev))
12023              or else Null_Exclusion_Present (Parent (Prev)) /=
12024                      Null_Exclusion_Present (Parent (Id))
12025              or else not Subtypes_Statically_Match
12026                            (Designated_Type (Etype (Prev)),
12027                             Designated_Type (Etype (New_T))))
12028       then
12029          Error_Msg_Sloc := Sloc (Prev);
12030          Error_Msg_N ("type does not match declaration#", N);
12031          Set_Full_View (Prev, Id);
12032          Set_Etype (Id, Any_Type);
12033
12034          --  A deferred constant whose type is an anonymous array is always
12035          --  illegal (unless imported). A detailed error message might be
12036          --  helpful for Ada beginners.
12037
12038          if Nkind (Object_Definition (Parent (Prev)))
12039             = N_Constrained_Array_Definition
12040            and then Nkind (Object_Definition (N))
12041               = N_Constrained_Array_Definition
12042          then
12043             Error_Msg_N ("\each anonymous array is a distinct type", N);
12044             Error_Msg_N ("a deferred constant must have a named type",
12045               Object_Definition (Parent (Prev)));
12046          end if;
12047
12048       elsif
12049         Null_Exclusion_Present (Parent (Prev))
12050           and then not Null_Exclusion_Present (N)
12051       then
12052          Error_Msg_Sloc := Sloc (Prev);
12053          Error_Msg_N ("null-exclusion does not match declaration#", N);
12054          Set_Full_View (Prev, Id);
12055          Set_Etype (Id, Any_Type);
12056
12057       --  If so, process the full constant declaration
12058
12059       else
12060          --  RM 7.4 (6): If the subtype defined by the subtype_indication in
12061          --  the deferred declaration is constrained, then the subtype defined
12062          --  by the subtype_indication in the full declaration shall match it
12063          --  statically.
12064
12065          Check_Possible_Deferred_Completion
12066            (Prev_Id      => Prev,
12067             Prev_Obj_Def => Object_Definition (Parent (Prev)),
12068             Curr_Obj_Def => Obj_Def);
12069
12070          Set_Full_View (Prev, Id);
12071          Set_Is_Public (Id, Is_Public (Prev));
12072          Set_Is_Internal (Id);
12073          Append_Entity (Id, Current_Scope);
12074
12075          --  Check ALIASED present if present before (RM 7.4(7))
12076
12077          if Is_Aliased (Prev)
12078            and then not Aliased_Present (N)
12079          then
12080             Error_Msg_Sloc := Sloc (Prev);
12081             Error_Msg_N ("ALIASED required (see declaration #)", N);
12082          end if;
12083
12084          --  Check that placement is in private part and that the incomplete
12085          --  declaration appeared in the visible part.
12086
12087          if Ekind (Current_Scope) = E_Package
12088            and then not In_Private_Part (Current_Scope)
12089          then
12090             Error_Msg_Sloc := Sloc (Prev);
12091             Error_Msg_N
12092               ("full constant for declaration # must be in private part", N);
12093
12094          elsif Ekind (Current_Scope) = E_Package
12095            and then
12096              List_Containing (Parent (Prev)) /=
12097                Visible_Declarations (Package_Specification (Current_Scope))
12098          then
12099             Error_Msg_N
12100               ("deferred constant must be declared in visible part",
12101                  Parent (Prev));
12102          end if;
12103
12104          if Is_Access_Type (T)
12105            and then Nkind (Expression (N)) = N_Allocator
12106          then
12107             Check_Recursive_Declaration (Designated_Type (T));
12108          end if;
12109
12110          --  A deferred constant is a visible entity. If type has invariants,
12111          --  verify that the initial value satisfies them.
12112
12113          if Has_Invariants (T) and then Present (Invariant_Procedure (T)) then
12114             Insert_After (N,
12115               Make_Invariant_Call (New_Occurrence_Of (Prev, Sloc (N))));
12116          end if;
12117       end if;
12118    end Constant_Redeclaration;
12119
12120    ----------------------
12121    -- Constrain_Access --
12122    ----------------------
12123
12124    procedure Constrain_Access
12125      (Def_Id      : in out Entity_Id;
12126       S           : Node_Id;
12127       Related_Nod : Node_Id)
12128    is
12129       T             : constant Entity_Id := Entity (Subtype_Mark (S));
12130       Desig_Type    : constant Entity_Id := Designated_Type (T);
12131       Desig_Subtype : Entity_Id := Create_Itype (E_Void, Related_Nod);
12132       Constraint_OK : Boolean := True;
12133
12134    begin
12135       if Is_Array_Type (Desig_Type) then
12136          Constrain_Array (Desig_Subtype, S, Related_Nod, Def_Id, 'P');
12137
12138       elsif (Is_Record_Type (Desig_Type)
12139               or else Is_Incomplete_Or_Private_Type (Desig_Type))
12140         and then not Is_Constrained (Desig_Type)
12141       then
12142          --  ??? The following code is a temporary bypass to ignore a
12143          --  discriminant constraint on access type if it is constraining
12144          --  the current record. Avoid creating the implicit subtype of the
12145          --  record we are currently compiling since right now, we cannot
12146          --  handle these. For now, just return the access type itself.
12147
12148          if Desig_Type = Current_Scope
12149            and then No (Def_Id)
12150          then
12151             Set_Ekind (Desig_Subtype, E_Record_Subtype);
12152             Def_Id := Entity (Subtype_Mark (S));
12153
12154             --  This call added to ensure that the constraint is analyzed
12155             --  (needed for a B test). Note that we still return early from
12156             --  this procedure to avoid recursive processing. ???
12157
12158             Constrain_Discriminated_Type
12159               (Desig_Subtype, S, Related_Nod, For_Access => True);
12160             return;
12161          end if;
12162
12163          --  Enforce rule that the constraint is illegal if there is an
12164          --  unconstrained view of the designated type. This means that the
12165          --  partial view (either a private type declaration or a derivation
12166          --  from a private type) has no discriminants. (Defect Report
12167          --  8652/0008, Technical Corrigendum 1, checked by ACATS B371001).
12168
12169          --  Rule updated for Ada 2005: The private type is said to have
12170          --  a constrained partial view, given that objects of the type
12171          --  can be declared. Furthermore, the rule applies to all access
12172          --  types, unlike the rule concerning default discriminants (see
12173          --  RM 3.7.1(7/3))
12174
12175          if (Ekind (T) = E_General_Access_Type or else Ada_Version >= Ada_2005)
12176            and then Has_Private_Declaration (Desig_Type)
12177            and then In_Open_Scopes (Scope (Desig_Type))
12178            and then Has_Discriminants (Desig_Type)
12179          then
12180             declare
12181                Pack  : constant Node_Id :=
12182                          Unit_Declaration_Node (Scope (Desig_Type));
12183                Decls : List_Id;
12184                Decl  : Node_Id;
12185
12186             begin
12187                if Nkind (Pack) = N_Package_Declaration then
12188                   Decls := Visible_Declarations (Specification (Pack));
12189                   Decl := First (Decls);
12190                   while Present (Decl) loop
12191                      if (Nkind (Decl) = N_Private_Type_Declaration
12192                           and then Chars (Defining_Identifier (Decl)) =
12193                                                            Chars (Desig_Type))
12194
12195                        or else
12196                         (Nkind (Decl) = N_Full_Type_Declaration
12197                           and then
12198                             Chars (Defining_Identifier (Decl)) =
12199                                                      Chars (Desig_Type)
12200                           and then Is_Derived_Type (Desig_Type)
12201                           and then
12202                             Has_Private_Declaration (Etype (Desig_Type)))
12203                      then
12204                         if No (Discriminant_Specifications (Decl)) then
12205                            Error_Msg_N
12206                              ("cannot constrain access type if designated "
12207                               & "type has constrained partial view", S);
12208                         end if;
12209
12210                         exit;
12211                      end if;
12212
12213                      Next (Decl);
12214                   end loop;
12215                end if;
12216             end;
12217          end if;
12218
12219          Constrain_Discriminated_Type (Desig_Subtype, S, Related_Nod,
12220            For_Access => True);
12221
12222       elsif Is_Concurrent_Type (Desig_Type)
12223         and then not Is_Constrained (Desig_Type)
12224       then
12225          Constrain_Concurrent (Desig_Subtype, S, Related_Nod, Desig_Type, ' ');
12226
12227       else
12228          Error_Msg_N ("invalid constraint on access type", S);
12229
12230          --  We simply ignore an invalid constraint
12231
12232          Desig_Subtype := Desig_Type;
12233          Constraint_OK := False;
12234       end if;
12235
12236       if No (Def_Id) then
12237          Def_Id := Create_Itype (E_Access_Subtype, Related_Nod);
12238       else
12239          Set_Ekind (Def_Id, E_Access_Subtype);
12240       end if;
12241
12242       if Constraint_OK then
12243          Set_Etype (Def_Id, Base_Type (T));
12244
12245          if Is_Private_Type (Desig_Type) then
12246             Prepare_Private_Subtype_Completion (Desig_Subtype, Related_Nod);
12247          end if;
12248       else
12249          Set_Etype (Def_Id, Any_Type);
12250       end if;
12251
12252       Set_Size_Info                (Def_Id, T);
12253       Set_Is_Constrained           (Def_Id, Constraint_OK);
12254       Set_Directly_Designated_Type (Def_Id, Desig_Subtype);
12255       Set_Depends_On_Private       (Def_Id, Has_Private_Component (Def_Id));
12256       Set_Is_Access_Constant       (Def_Id, Is_Access_Constant (T));
12257
12258       Conditional_Delay (Def_Id, T);
12259
12260       --  AI-363 : Subtypes of general access types whose designated types have
12261       --  default discriminants are disallowed. In instances, the rule has to
12262       --  be checked against the actual, of which T is the subtype. In a
12263       --  generic body, the rule is checked assuming that the actual type has
12264       --  defaulted discriminants.
12265
12266       if Ada_Version >= Ada_2005 or else Warn_On_Ada_2005_Compatibility then
12267          if Ekind (Base_Type (T)) = E_General_Access_Type
12268            and then Has_Defaulted_Discriminants (Desig_Type)
12269          then
12270             if Ada_Version < Ada_2005 then
12271                Error_Msg_N
12272                  ("access subtype of general access type would not " &
12273                   "be allowed in Ada 2005?y?", S);
12274             else
12275                Error_Msg_N
12276                  ("access subtype of general access type not allowed", S);
12277             end if;
12278
12279             Error_Msg_N ("\discriminants have defaults", S);
12280
12281          elsif Is_Access_Type (T)
12282            and then Is_Generic_Type (Desig_Type)
12283            and then Has_Discriminants (Desig_Type)
12284            and then In_Package_Body (Current_Scope)
12285          then
12286             if Ada_Version < Ada_2005 then
12287                Error_Msg_N
12288                  ("access subtype would not be allowed in generic body "
12289                   & "in Ada 2005?y?", S);
12290             else
12291                Error_Msg_N
12292                  ("access subtype not allowed in generic body", S);
12293             end if;
12294
12295             Error_Msg_N
12296               ("\designated type is a discriminated formal", S);
12297          end if;
12298       end if;
12299    end Constrain_Access;
12300
12301    ---------------------
12302    -- Constrain_Array --
12303    ---------------------
12304
12305    procedure Constrain_Array
12306      (Def_Id      : in out Entity_Id;
12307       SI          : Node_Id;
12308       Related_Nod : Node_Id;
12309       Related_Id  : Entity_Id;
12310       Suffix      : Character)
12311    is
12312       C                     : constant Node_Id := Constraint (SI);
12313       Number_Of_Constraints : Nat := 0;
12314       Index                 : Node_Id;
12315       S, T                  : Entity_Id;
12316       Constraint_OK         : Boolean := True;
12317
12318    begin
12319       T := Entity (Subtype_Mark (SI));
12320
12321       if Is_Access_Type (T) then
12322          T := Designated_Type (T);
12323       end if;
12324
12325       --  If an index constraint follows a subtype mark in a subtype indication
12326       --  then the type or subtype denoted by the subtype mark must not already
12327       --  impose an index constraint. The subtype mark must denote either an
12328       --  unconstrained array type or an access type whose designated type
12329       --  is such an array type... (RM 3.6.1)
12330
12331       if Is_Constrained (T) then
12332          Error_Msg_N ("array type is already constrained", Subtype_Mark (SI));
12333          Constraint_OK := False;
12334
12335       else
12336          S := First (Constraints (C));
12337          while Present (S) loop
12338             Number_Of_Constraints := Number_Of_Constraints + 1;
12339             Next (S);
12340          end loop;
12341
12342          --  In either case, the index constraint must provide a discrete
12343          --  range for each index of the array type and the type of each
12344          --  discrete range must be the same as that of the corresponding
12345          --  index. (RM 3.6.1)
12346
12347          if Number_Of_Constraints /= Number_Dimensions (T) then
12348             Error_Msg_NE ("incorrect number of index constraints for }", C, T);
12349             Constraint_OK := False;
12350
12351          else
12352             S := First (Constraints (C));
12353             Index := First_Index (T);
12354             Analyze (Index);
12355
12356             --  Apply constraints to each index type
12357
12358             for J in 1 .. Number_Of_Constraints loop
12359                Constrain_Index (Index, S, Related_Nod, Related_Id, Suffix, J);
12360                Next (Index);
12361                Next (S);
12362             end loop;
12363
12364          end if;
12365       end if;
12366
12367       if No (Def_Id) then
12368          Def_Id :=
12369            Create_Itype (E_Array_Subtype, Related_Nod, Related_Id, Suffix);
12370          Set_Parent (Def_Id, Related_Nod);
12371
12372       else
12373          Set_Ekind (Def_Id, E_Array_Subtype);
12374       end if;
12375
12376       Set_Size_Info      (Def_Id,                (T));
12377       Set_First_Rep_Item (Def_Id, First_Rep_Item (T));
12378       Set_Etype          (Def_Id, Base_Type      (T));
12379
12380       if Constraint_OK then
12381          Set_First_Index (Def_Id, First (Constraints (C)));
12382       else
12383          Set_First_Index (Def_Id, First_Index (T));
12384       end if;
12385
12386       Set_Is_Constrained     (Def_Id, True);
12387       Set_Is_Aliased         (Def_Id, Is_Aliased (T));
12388       Set_Depends_On_Private (Def_Id, Has_Private_Component (Def_Id));
12389
12390       Set_Is_Private_Composite (Def_Id, Is_Private_Composite (T));
12391       Set_Is_Limited_Composite (Def_Id, Is_Limited_Composite (T));
12392
12393       --  A subtype does not inherit the Packed_Array_Impl_Type of is parent.
12394       --  We need to initialize the attribute because if Def_Id is previously
12395       --  analyzed through a limited_with clause, it will have the attributes
12396       --  of an incomplete type, one of which is an Elist that overlaps the
12397       --  Packed_Array_Impl_Type field.
12398
12399       Set_Packed_Array_Impl_Type (Def_Id, Empty);
12400
12401       --  Build a freeze node if parent still needs one. Also make sure that
12402       --  the Depends_On_Private status is set because the subtype will need
12403       --  reprocessing at the time the base type does, and also we must set a
12404       --  conditional delay.
12405
12406       Set_Depends_On_Private (Def_Id, Depends_On_Private (T));
12407       Conditional_Delay (Def_Id, T);
12408    end Constrain_Array;
12409
12410    ------------------------------
12411    -- Constrain_Component_Type --
12412    ------------------------------
12413
12414    function Constrain_Component_Type
12415      (Comp            : Entity_Id;
12416       Constrained_Typ : Entity_Id;
12417       Related_Node    : Node_Id;
12418       Typ             : Entity_Id;
12419       Constraints     : Elist_Id) return Entity_Id
12420    is
12421       Loc         : constant Source_Ptr := Sloc (Constrained_Typ);
12422       Compon_Type : constant Entity_Id := Etype (Comp);
12423
12424       function Build_Constrained_Array_Type
12425         (Old_Type : Entity_Id) return Entity_Id;
12426       --  If Old_Type is an array type, one of whose indexes is constrained
12427       --  by a discriminant, build an Itype whose constraint replaces the
12428       --  discriminant with its value in the constraint.
12429
12430       function Build_Constrained_Discriminated_Type
12431         (Old_Type : Entity_Id) return Entity_Id;
12432       --  Ditto for record components
12433
12434       function Build_Constrained_Access_Type
12435         (Old_Type : Entity_Id) return Entity_Id;
12436       --  Ditto for access types. Makes use of previous two functions, to
12437       --  constrain designated type.
12438
12439       function Build_Subtype (T : Entity_Id; C : List_Id) return Entity_Id;
12440       --  T is an array or discriminated type, C is a list of constraints
12441       --  that apply to T. This routine builds the constrained subtype.
12442
12443       function Is_Discriminant (Expr : Node_Id) return Boolean;
12444       --  Returns True if Expr is a discriminant
12445
12446       function Get_Discr_Value (Discrim : Entity_Id) return Node_Id;
12447       --  Find the value of discriminant Discrim in Constraint
12448
12449       -----------------------------------
12450       -- Build_Constrained_Access_Type --
12451       -----------------------------------
12452
12453       function Build_Constrained_Access_Type
12454         (Old_Type : Entity_Id) return Entity_Id
12455       is
12456          Desig_Type    : constant Entity_Id := Designated_Type (Old_Type);
12457          Itype         : Entity_Id;
12458          Desig_Subtype : Entity_Id;
12459          Scop          : Entity_Id;
12460
12461       begin
12462          --  if the original access type was not embedded in the enclosing
12463          --  type definition, there is no need to produce a new access
12464          --  subtype. In fact every access type with an explicit constraint
12465          --  generates an itype whose scope is the enclosing record.
12466
12467          if not Is_Type (Scope (Old_Type)) then
12468             return Old_Type;
12469
12470          elsif Is_Array_Type (Desig_Type) then
12471             Desig_Subtype := Build_Constrained_Array_Type (Desig_Type);
12472
12473          elsif Has_Discriminants (Desig_Type) then
12474
12475             --  This may be an access type to an enclosing record type for
12476             --  which we are constructing the constrained components. Return
12477             --  the enclosing record subtype. This is not always correct,
12478             --  but avoids infinite recursion. ???
12479
12480             Desig_Subtype := Any_Type;
12481
12482             for J in reverse 0 .. Scope_Stack.Last loop
12483                Scop := Scope_Stack.Table (J).Entity;
12484
12485                if Is_Type (Scop)
12486                  and then Base_Type (Scop) = Base_Type (Desig_Type)
12487                then
12488                   Desig_Subtype := Scop;
12489                end if;
12490
12491                exit when not Is_Type (Scop);
12492             end loop;
12493
12494             if Desig_Subtype = Any_Type then
12495                Desig_Subtype :=
12496                  Build_Constrained_Discriminated_Type (Desig_Type);
12497             end if;
12498
12499          else
12500             return Old_Type;
12501          end if;
12502
12503          if Desig_Subtype /= Desig_Type then
12504
12505             --  The Related_Node better be here or else we won't be able
12506             --  to attach new itypes to a node in the tree.
12507
12508             pragma Assert (Present (Related_Node));
12509
12510             Itype := Create_Itype (E_Access_Subtype, Related_Node);
12511
12512             Set_Etype                    (Itype, Base_Type      (Old_Type));
12513             Set_Size_Info                (Itype,                (Old_Type));
12514             Set_Directly_Designated_Type (Itype, Desig_Subtype);
12515             Set_Depends_On_Private       (Itype, Has_Private_Component
12516                                                                 (Old_Type));
12517             Set_Is_Access_Constant       (Itype, Is_Access_Constant
12518                                                                 (Old_Type));
12519
12520             --  The new itype needs freezing when it depends on a not frozen
12521             --  type and the enclosing subtype needs freezing.
12522
12523             if Has_Delayed_Freeze (Constrained_Typ)
12524               and then not Is_Frozen (Constrained_Typ)
12525             then
12526                Conditional_Delay (Itype, Base_Type (Old_Type));
12527             end if;
12528
12529             return Itype;
12530
12531          else
12532             return Old_Type;
12533          end if;
12534       end Build_Constrained_Access_Type;
12535
12536       ----------------------------------
12537       -- Build_Constrained_Array_Type --
12538       ----------------------------------
12539
12540       function Build_Constrained_Array_Type
12541         (Old_Type : Entity_Id) return Entity_Id
12542       is
12543          Lo_Expr     : Node_Id;
12544          Hi_Expr     : Node_Id;
12545          Old_Index   : Node_Id;
12546          Range_Node  : Node_Id;
12547          Constr_List : List_Id;
12548
12549          Need_To_Create_Itype : Boolean := False;
12550
12551       begin
12552          Old_Index := First_Index (Old_Type);
12553          while Present (Old_Index) loop
12554             Get_Index_Bounds (Old_Index, Lo_Expr, Hi_Expr);
12555
12556             if Is_Discriminant (Lo_Expr)
12557                  or else
12558                Is_Discriminant (Hi_Expr)
12559             then
12560                Need_To_Create_Itype := True;
12561             end if;
12562
12563             Next_Index (Old_Index);
12564          end loop;
12565
12566          if Need_To_Create_Itype then
12567             Constr_List := New_List;
12568
12569             Old_Index := First_Index (Old_Type);
12570             while Present (Old_Index) loop
12571                Get_Index_Bounds (Old_Index, Lo_Expr, Hi_Expr);
12572
12573                if Is_Discriminant (Lo_Expr) then
12574                   Lo_Expr := Get_Discr_Value (Lo_Expr);
12575                end if;
12576
12577                if Is_Discriminant (Hi_Expr) then
12578                   Hi_Expr := Get_Discr_Value (Hi_Expr);
12579                end if;
12580
12581                Range_Node :=
12582                  Make_Range
12583                    (Loc, New_Copy_Tree (Lo_Expr), New_Copy_Tree (Hi_Expr));
12584
12585                Append (Range_Node, To => Constr_List);
12586
12587                Next_Index (Old_Index);
12588             end loop;
12589
12590             return Build_Subtype (Old_Type, Constr_List);
12591
12592          else
12593             return Old_Type;
12594          end if;
12595       end Build_Constrained_Array_Type;
12596
12597       ------------------------------------------
12598       -- Build_Constrained_Discriminated_Type --
12599       ------------------------------------------
12600
12601       function Build_Constrained_Discriminated_Type
12602         (Old_Type : Entity_Id) return Entity_Id
12603       is
12604          Expr           : Node_Id;
12605          Constr_List    : List_Id;
12606          Old_Constraint : Elmt_Id;
12607
12608          Need_To_Create_Itype : Boolean := False;
12609
12610       begin
12611          Old_Constraint := First_Elmt (Discriminant_Constraint (Old_Type));
12612          while Present (Old_Constraint) loop
12613             Expr := Node (Old_Constraint);
12614
12615             if Is_Discriminant (Expr) then
12616                Need_To_Create_Itype := True;
12617             end if;
12618
12619             Next_Elmt (Old_Constraint);
12620          end loop;
12621
12622          if Need_To_Create_Itype then
12623             Constr_List := New_List;
12624
12625             Old_Constraint := First_Elmt (Discriminant_Constraint (Old_Type));
12626             while Present (Old_Constraint) loop
12627                Expr := Node (Old_Constraint);
12628
12629                if Is_Discriminant (Expr) then
12630                   Expr := Get_Discr_Value (Expr);
12631                end if;
12632
12633                Append (New_Copy_Tree (Expr), To => Constr_List);
12634
12635                Next_Elmt (Old_Constraint);
12636             end loop;
12637
12638             return Build_Subtype (Old_Type, Constr_List);
12639
12640          else
12641             return Old_Type;
12642          end if;
12643       end Build_Constrained_Discriminated_Type;
12644
12645       -------------------
12646       -- Build_Subtype --
12647       -------------------
12648
12649       function Build_Subtype (T : Entity_Id; C : List_Id) return Entity_Id is
12650          Indic       : Node_Id;
12651          Subtyp_Decl : Node_Id;
12652          Def_Id      : Entity_Id;
12653          Btyp        : Entity_Id := Base_Type (T);
12654
12655       begin
12656          --  The Related_Node better be here or else we won't be able to
12657          --  attach new itypes to a node in the tree.
12658
12659          pragma Assert (Present (Related_Node));
12660
12661          --  If the view of the component's type is incomplete or private
12662          --  with unknown discriminants, then the constraint must be applied
12663          --  to the full type.
12664
12665          if Has_Unknown_Discriminants (Btyp)
12666            and then Present (Underlying_Type (Btyp))
12667          then
12668             Btyp := Underlying_Type (Btyp);
12669          end if;
12670
12671          Indic :=
12672            Make_Subtype_Indication (Loc,
12673              Subtype_Mark => New_Occurrence_Of (Btyp, Loc),
12674              Constraint   => Make_Index_Or_Discriminant_Constraint (Loc, C));
12675
12676          Def_Id := Create_Itype (Ekind (T), Related_Node);
12677
12678          Subtyp_Decl :=
12679            Make_Subtype_Declaration (Loc,
12680              Defining_Identifier => Def_Id,
12681              Subtype_Indication  => Indic);
12682
12683          Set_Parent (Subtyp_Decl, Parent (Related_Node));
12684
12685          --  Itypes must be analyzed with checks off (see package Itypes)
12686
12687          Analyze (Subtyp_Decl, Suppress => All_Checks);
12688
12689          return Def_Id;
12690       end Build_Subtype;
12691
12692       ---------------------
12693       -- Get_Discr_Value --
12694       ---------------------
12695
12696       function Get_Discr_Value (Discrim : Entity_Id) return Node_Id is
12697          D : Entity_Id;
12698          E : Elmt_Id;
12699
12700       begin
12701          --  The discriminant may be declared for the type, in which case we
12702          --  find it by iterating over the list of discriminants. If the
12703          --  discriminant is inherited from a parent type, it appears as the
12704          --  corresponding discriminant of the current type. This will be the
12705          --  case when constraining an inherited component whose constraint is
12706          --  given by a discriminant of the parent.
12707
12708          D := First_Discriminant (Typ);
12709          E := First_Elmt (Constraints);
12710
12711          while Present (D) loop
12712             if D = Entity (Discrim)
12713               or else D = CR_Discriminant (Entity (Discrim))
12714               or else Corresponding_Discriminant (D) = Entity (Discrim)
12715             then
12716                return Node (E);
12717             end if;
12718
12719             Next_Discriminant (D);
12720             Next_Elmt (E);
12721          end loop;
12722
12723          --  The Corresponding_Discriminant mechanism is incomplete, because
12724          --  the correspondence between new and old discriminants is not one
12725          --  to one: one new discriminant can constrain several old ones. In
12726          --  that case, scan sequentially the stored_constraint, the list of
12727          --  discriminants of the parents, and the constraints.
12728
12729          --  Previous code checked for the present of the Stored_Constraint
12730          --  list for the derived type, but did not use it at all. Should it
12731          --  be present when the component is a discriminated task type?
12732
12733          if Is_Derived_Type (Typ)
12734            and then Scope (Entity (Discrim)) = Etype (Typ)
12735          then
12736             D := First_Discriminant (Etype (Typ));
12737             E := First_Elmt (Constraints);
12738             while Present (D) loop
12739                if D = Entity (Discrim) then
12740                   return Node (E);
12741                end if;
12742
12743                Next_Discriminant (D);
12744                Next_Elmt (E);
12745             end loop;
12746          end if;
12747
12748          --  Something is wrong if we did not find the value
12749
12750          raise Program_Error;
12751       end Get_Discr_Value;
12752
12753       ---------------------
12754       -- Is_Discriminant --
12755       ---------------------
12756
12757       function Is_Discriminant (Expr : Node_Id) return Boolean is
12758          Discrim_Scope : Entity_Id;
12759
12760       begin
12761          if Denotes_Discriminant (Expr) then
12762             Discrim_Scope := Scope (Entity (Expr));
12763
12764             --  Either we have a reference to one of Typ's discriminants,
12765
12766             pragma Assert (Discrim_Scope = Typ
12767
12768                --  or to the discriminants of the parent type, in the case
12769                --  of a derivation of a tagged type with variants.
12770
12771                or else Discrim_Scope = Etype (Typ)
12772                or else Full_View (Discrim_Scope) = Etype (Typ)
12773
12774                --  or same as above for the case where the discriminants
12775                --  were declared in Typ's private view.
12776
12777                or else (Is_Private_Type (Discrim_Scope)
12778                          and then Chars (Discrim_Scope) = Chars (Typ))
12779
12780                --  or else we are deriving from the full view and the
12781                --  discriminant is declared in the private entity.
12782
12783                or else (Is_Private_Type (Typ)
12784                          and then Chars (Discrim_Scope) = Chars (Typ))
12785
12786                --  Or we are constrained the corresponding record of a
12787                --  synchronized type that completes a private declaration.
12788
12789                or else (Is_Concurrent_Record_Type (Typ)
12790                          and then
12791                            Corresponding_Concurrent_Type (Typ) = Discrim_Scope)
12792
12793                --  or we have a class-wide type, in which case make sure the
12794                --  discriminant found belongs to the root type.
12795
12796                or else (Is_Class_Wide_Type (Typ)
12797                          and then Etype (Typ) = Discrim_Scope));
12798
12799             return True;
12800          end if;
12801
12802          --  In all other cases we have something wrong
12803
12804          return False;
12805       end Is_Discriminant;
12806
12807    --  Start of processing for Constrain_Component_Type
12808
12809    begin
12810       if Nkind (Parent (Comp)) = N_Component_Declaration
12811         and then Comes_From_Source (Parent (Comp))
12812         and then Comes_From_Source
12813           (Subtype_Indication (Component_Definition (Parent (Comp))))
12814         and then
12815           Is_Entity_Name
12816             (Subtype_Indication (Component_Definition (Parent (Comp))))
12817       then
12818          return Compon_Type;
12819
12820       elsif Is_Array_Type (Compon_Type) then
12821          return Build_Constrained_Array_Type (Compon_Type);
12822
12823       elsif Has_Discriminants (Compon_Type) then
12824          return Build_Constrained_Discriminated_Type (Compon_Type);
12825
12826       elsif Is_Access_Type (Compon_Type) then
12827          return Build_Constrained_Access_Type (Compon_Type);
12828
12829       else
12830          return Compon_Type;
12831       end if;
12832    end Constrain_Component_Type;
12833
12834    --------------------------
12835    -- Constrain_Concurrent --
12836    --------------------------
12837
12838    --  For concurrent types, the associated record value type carries the same
12839    --  discriminants, so when we constrain a concurrent type, we must constrain
12840    --  the corresponding record type as well.
12841
12842    procedure Constrain_Concurrent
12843      (Def_Id      : in out Entity_Id;
12844       SI          : Node_Id;
12845       Related_Nod : Node_Id;
12846       Related_Id  : Entity_Id;
12847       Suffix      : Character)
12848    is
12849       --  Retrieve Base_Type to ensure getting to the concurrent type in the
12850       --  case of a private subtype (needed when only doing semantic analysis).
12851
12852       T_Ent : Entity_Id := Base_Type (Entity (Subtype_Mark (SI)));
12853       T_Val : Entity_Id;
12854
12855    begin
12856       if Is_Access_Type (T_Ent) then
12857          T_Ent := Designated_Type (T_Ent);
12858       end if;
12859
12860       T_Val := Corresponding_Record_Type (T_Ent);
12861
12862       if Present (T_Val) then
12863
12864          if No (Def_Id) then
12865             Def_Id := Create_Itype (E_Void, Related_Nod, Related_Id, Suffix);
12866
12867             --  Elaborate itype now, as it may be used in a subsequent
12868             --  synchronized operation in another scope.
12869
12870             if Nkind (Related_Nod) = N_Full_Type_Declaration then
12871                Build_Itype_Reference (Def_Id, Related_Nod);
12872             end if;
12873          end if;
12874
12875          Constrain_Discriminated_Type (Def_Id, SI, Related_Nod);
12876
12877          Set_Depends_On_Private (Def_Id, Has_Private_Component (Def_Id));
12878          Set_Corresponding_Record_Type (Def_Id,
12879            Constrain_Corresponding_Record (Def_Id, T_Val, Related_Nod));
12880
12881       else
12882          --  If there is no associated record, expansion is disabled and this
12883          --  is a generic context. Create a subtype in any case, so that
12884          --  semantic analysis can proceed.
12885
12886          if No (Def_Id) then
12887             Def_Id := Create_Itype (E_Void, Related_Nod, Related_Id, Suffix);
12888          end if;
12889
12890          Constrain_Discriminated_Type (Def_Id, SI, Related_Nod);
12891       end if;
12892    end Constrain_Concurrent;
12893
12894    ------------------------------------
12895    -- Constrain_Corresponding_Record --
12896    ------------------------------------
12897
12898    function Constrain_Corresponding_Record
12899      (Prot_Subt   : Entity_Id;
12900       Corr_Rec    : Entity_Id;
12901       Related_Nod : Node_Id) return Entity_Id
12902    is
12903       T_Sub : constant Entity_Id :=
12904                 Create_Itype (E_Record_Subtype, Related_Nod, Corr_Rec, 'C');
12905
12906    begin
12907       Set_Etype             (T_Sub, Corr_Rec);
12908       Set_Has_Discriminants (T_Sub, Has_Discriminants (Prot_Subt));
12909       Set_Is_Constrained    (T_Sub, True);
12910       Set_First_Entity      (T_Sub, First_Entity (Corr_Rec));
12911       Set_Last_Entity       (T_Sub, Last_Entity  (Corr_Rec));
12912
12913       if Has_Discriminants (Prot_Subt) then -- False only if errors.
12914          Set_Discriminant_Constraint
12915            (T_Sub, Discriminant_Constraint (Prot_Subt));
12916          Set_Stored_Constraint_From_Discriminant_Constraint (T_Sub);
12917          Create_Constrained_Components
12918            (T_Sub, Related_Nod, Corr_Rec, Discriminant_Constraint (T_Sub));
12919       end if;
12920
12921       Set_Depends_On_Private      (T_Sub, Has_Private_Component (T_Sub));
12922
12923       if Ekind (Scope (Prot_Subt)) /= E_Record_Type then
12924          Conditional_Delay (T_Sub, Corr_Rec);
12925
12926       else
12927          --  This is a component subtype: it will be frozen in the context of
12928          --  the enclosing record's init_proc, so that discriminant references
12929          --  are resolved to discriminals. (Note: we used to skip freezing
12930          --  altogether in that case, which caused errors downstream for
12931          --  components of a bit packed array type).
12932
12933          Set_Has_Delayed_Freeze (T_Sub);
12934       end if;
12935
12936       return T_Sub;
12937    end Constrain_Corresponding_Record;
12938
12939    -----------------------
12940    -- Constrain_Decimal --
12941    -----------------------
12942
12943    procedure Constrain_Decimal (Def_Id : Node_Id; S : Node_Id) is
12944       T           : constant Entity_Id  := Entity (Subtype_Mark (S));
12945       C           : constant Node_Id    := Constraint (S);
12946       Loc         : constant Source_Ptr := Sloc (C);
12947       Range_Expr  : Node_Id;
12948       Digits_Expr : Node_Id;
12949       Digits_Val  : Uint;
12950       Bound_Val   : Ureal;
12951
12952    begin
12953       Set_Ekind (Def_Id, E_Decimal_Fixed_Point_Subtype);
12954
12955       if Nkind (C) = N_Range_Constraint then
12956          Range_Expr := Range_Expression (C);
12957          Digits_Val := Digits_Value (T);
12958
12959       else
12960          pragma Assert (Nkind (C) = N_Digits_Constraint);
12961
12962          Check_SPARK_05_Restriction ("digits constraint is not allowed", S);
12963
12964          Digits_Expr := Digits_Expression (C);
12965          Analyze_And_Resolve (Digits_Expr, Any_Integer);
12966
12967          Check_Digits_Expression (Digits_Expr);
12968          Digits_Val := Expr_Value (Digits_Expr);
12969
12970          if Digits_Val > Digits_Value (T) then
12971             Error_Msg_N
12972                ("digits expression is incompatible with subtype", C);
12973             Digits_Val := Digits_Value (T);
12974          end if;
12975
12976          if Present (Range_Constraint (C)) then
12977             Range_Expr := Range_Expression (Range_Constraint (C));
12978          else
12979             Range_Expr := Empty;
12980          end if;
12981       end if;
12982
12983       Set_Etype            (Def_Id, Base_Type        (T));
12984       Set_Size_Info        (Def_Id,                  (T));
12985       Set_First_Rep_Item   (Def_Id, First_Rep_Item   (T));
12986       Set_Delta_Value      (Def_Id, Delta_Value      (T));
12987       Set_Scale_Value      (Def_Id, Scale_Value      (T));
12988       Set_Small_Value      (Def_Id, Small_Value      (T));
12989       Set_Machine_Radix_10 (Def_Id, Machine_Radix_10 (T));
12990       Set_Digits_Value     (Def_Id, Digits_Val);
12991
12992       --  Manufacture range from given digits value if no range present
12993
12994       if No (Range_Expr) then
12995          Bound_Val := (Ureal_10 ** Digits_Val - Ureal_1) * Small_Value (T);
12996          Range_Expr :=
12997            Make_Range (Loc,
12998              Low_Bound =>
12999                Convert_To (T, Make_Real_Literal (Loc, (-Bound_Val))),
13000              High_Bound =>
13001                Convert_To (T, Make_Real_Literal (Loc, Bound_Val)));
13002       end if;
13003
13004       Set_Scalar_Range_For_Subtype (Def_Id, Range_Expr, T);
13005       Set_Discrete_RM_Size (Def_Id);
13006
13007       --  Unconditionally delay the freeze, since we cannot set size
13008       --  information in all cases correctly until the freeze point.
13009
13010       Set_Has_Delayed_Freeze (Def_Id);
13011    end Constrain_Decimal;
13012
13013    ----------------------------------
13014    -- Constrain_Discriminated_Type --
13015    ----------------------------------
13016
13017    procedure Constrain_Discriminated_Type
13018      (Def_Id      : Entity_Id;
13019       S           : Node_Id;
13020       Related_Nod : Node_Id;
13021       For_Access  : Boolean := False)
13022    is
13023       E     : constant Entity_Id := Entity (Subtype_Mark (S));
13024       T     : Entity_Id;
13025       C     : Node_Id;
13026       Elist : Elist_Id := New_Elmt_List;
13027
13028       procedure Fixup_Bad_Constraint;
13029       --  This is called after finding a bad constraint, and after having
13030       --  posted an appropriate error message. The mission is to leave the
13031       --  entity T in as reasonable state as possible.
13032
13033       --------------------------
13034       -- Fixup_Bad_Constraint --
13035       --------------------------
13036
13037       procedure Fixup_Bad_Constraint is
13038       begin
13039          --  Set a reasonable Ekind for the entity. For an incomplete type,
13040          --  we can't do much, but for other types, we can set the proper
13041          --  corresponding subtype kind.
13042
13043          if Ekind (T) = E_Incomplete_Type then
13044             Set_Ekind (Def_Id, Ekind (T));
13045          else
13046             Set_Ekind (Def_Id, Subtype_Kind (Ekind (T)));
13047          end if;
13048
13049          --  Set Etype to the known type, to reduce chances of cascaded errors
13050
13051          Set_Etype (Def_Id, E);
13052          Set_Error_Posted (Def_Id);
13053       end Fixup_Bad_Constraint;
13054
13055    --  Start of processing for Constrain_Discriminated_Type
13056
13057    begin
13058       C := Constraint (S);
13059
13060       --  A discriminant constraint is only allowed in a subtype indication,
13061       --  after a subtype mark. This subtype mark must denote either a type
13062       --  with discriminants, or an access type whose designated type is a
13063       --  type with discriminants. A discriminant constraint specifies the
13064       --  values of these discriminants (RM 3.7.2(5)).
13065
13066       T := Base_Type (Entity (Subtype_Mark (S)));
13067
13068       if Is_Access_Type (T) then
13069          T := Designated_Type (T);
13070       end if;
13071
13072       --  Ada 2005 (AI-412): Constrained incomplete subtypes are illegal.
13073       --  Avoid generating an error for access-to-incomplete subtypes.
13074
13075       if Ada_Version >= Ada_2005
13076         and then Ekind (T) = E_Incomplete_Type
13077         and then Nkind (Parent (S)) = N_Subtype_Declaration
13078         and then not Is_Itype (Def_Id)
13079       then
13080          --  A little sanity check, emit an error message if the type
13081          --  has discriminants to begin with. Type T may be a regular
13082          --  incomplete type or imported via a limited with clause.
13083
13084          if Has_Discriminants (T)
13085            or else (From_Limited_With (T)
13086                      and then Present (Non_Limited_View (T))
13087                      and then Nkind (Parent (Non_Limited_View (T))) =
13088                                                N_Full_Type_Declaration
13089                      and then Present (Discriminant_Specifications
13090                                          (Parent (Non_Limited_View (T)))))
13091          then
13092             Error_Msg_N
13093               ("(Ada 2005) incomplete subtype may not be constrained", C);
13094          else
13095             Error_Msg_N ("invalid constraint: type has no discriminant", C);
13096          end if;
13097
13098          Fixup_Bad_Constraint;
13099          return;
13100
13101       --  Check that the type has visible discriminants. The type may be
13102       --  a private type with unknown discriminants whose full view has
13103       --  discriminants which are invisible.
13104
13105       elsif not Has_Discriminants (T)
13106         or else
13107           (Has_Unknown_Discriminants (T)
13108              and then Is_Private_Type (T))
13109       then
13110          Error_Msg_N ("invalid constraint: type has no discriminant", C);
13111          Fixup_Bad_Constraint;
13112          return;
13113
13114       elsif Is_Constrained (E)
13115         or else (Ekind (E) = E_Class_Wide_Subtype
13116                   and then Present (Discriminant_Constraint (E)))
13117       then
13118          Error_Msg_N ("type is already constrained", Subtype_Mark (S));
13119          Fixup_Bad_Constraint;
13120          return;
13121       end if;
13122
13123       --  T may be an unconstrained subtype (e.g. a generic actual).
13124       --  Constraint applies to the base type.
13125
13126       T := Base_Type (T);
13127
13128       Elist := Build_Discriminant_Constraints (T, S);
13129
13130       --  If the list returned was empty we had an error in building the
13131       --  discriminant constraint. We have also already signalled an error
13132       --  in the incomplete type case
13133
13134       if Is_Empty_Elmt_List (Elist) then
13135          Fixup_Bad_Constraint;
13136          return;
13137       end if;
13138
13139       Build_Discriminated_Subtype (T, Def_Id, Elist, Related_Nod, For_Access);
13140    end Constrain_Discriminated_Type;
13141
13142    ---------------------------
13143    -- Constrain_Enumeration --
13144    ---------------------------
13145
13146    procedure Constrain_Enumeration (Def_Id : Node_Id; S : Node_Id) is
13147       T : constant Entity_Id := Entity (Subtype_Mark (S));
13148       C : constant Node_Id   := Constraint (S);
13149
13150    begin
13151       Set_Ekind (Def_Id, E_Enumeration_Subtype);
13152
13153       Set_First_Literal     (Def_Id, First_Literal (Base_Type (T)));
13154
13155       Set_Etype             (Def_Id, Base_Type         (T));
13156       Set_Size_Info         (Def_Id,                   (T));
13157       Set_First_Rep_Item    (Def_Id, First_Rep_Item    (T));
13158       Set_Is_Character_Type (Def_Id, Is_Character_Type (T));
13159
13160       Set_Scalar_Range_For_Subtype (Def_Id, Range_Expression (C), T);
13161
13162       Set_Discrete_RM_Size (Def_Id);
13163    end Constrain_Enumeration;
13164
13165    ----------------------
13166    -- Constrain_Float --
13167    ----------------------
13168
13169    procedure Constrain_Float (Def_Id : Node_Id; S : Node_Id) is
13170       T    : constant Entity_Id := Entity (Subtype_Mark (S));
13171       C    : Node_Id;
13172       D    : Node_Id;
13173       Rais : Node_Id;
13174
13175    begin
13176       Set_Ekind (Def_Id, E_Floating_Point_Subtype);
13177
13178       Set_Etype          (Def_Id, Base_Type      (T));
13179       Set_Size_Info      (Def_Id,                (T));
13180       Set_First_Rep_Item (Def_Id, First_Rep_Item (T));
13181
13182       --  Process the constraint
13183
13184       C := Constraint (S);
13185
13186       --  Digits constraint present
13187
13188       if Nkind (C) = N_Digits_Constraint then
13189
13190          Check_SPARK_05_Restriction ("digits constraint is not allowed", S);
13191          Check_Restriction (No_Obsolescent_Features, C);
13192
13193          if Warn_On_Obsolescent_Feature then
13194             Error_Msg_N
13195               ("subtype digits constraint is an " &
13196                "obsolescent feature (RM J.3(8))?j?", C);
13197          end if;
13198
13199          D := Digits_Expression (C);
13200          Analyze_And_Resolve (D, Any_Integer);
13201          Check_Digits_Expression (D);
13202          Set_Digits_Value (Def_Id, Expr_Value (D));
13203
13204          --  Check that digits value is in range. Obviously we can do this
13205          --  at compile time, but it is strictly a runtime check, and of
13206          --  course there is an ACVC test that checks this.
13207
13208          if Digits_Value (Def_Id) > Digits_Value (T) then
13209             Error_Msg_Uint_1 := Digits_Value (T);
13210             Error_Msg_N ("??digits value is too large, maximum is ^", D);
13211             Rais :=
13212               Make_Raise_Constraint_Error (Sloc (D),
13213                 Reason => CE_Range_Check_Failed);
13214             Insert_Action (Declaration_Node (Def_Id), Rais);
13215          end if;
13216
13217          C := Range_Constraint (C);
13218
13219       --  No digits constraint present
13220
13221       else
13222          Set_Digits_Value (Def_Id, Digits_Value (T));
13223       end if;
13224
13225       --  Range constraint present
13226
13227       if Nkind (C) = N_Range_Constraint then
13228          Set_Scalar_Range_For_Subtype (Def_Id, Range_Expression (C), T);
13229
13230       --  No range constraint present
13231
13232       else
13233          pragma Assert (No (C));
13234          Set_Scalar_Range (Def_Id, Scalar_Range (T));
13235       end if;
13236
13237       Set_Is_Constrained (Def_Id);
13238    end Constrain_Float;
13239
13240    ---------------------
13241    -- Constrain_Index --
13242    ---------------------
13243
13244    procedure Constrain_Index
13245      (Index        : Node_Id;
13246       S            : Node_Id;
13247       Related_Nod  : Node_Id;
13248       Related_Id   : Entity_Id;
13249       Suffix       : Character;
13250       Suffix_Index : Nat)
13251    is
13252       Def_Id : Entity_Id;
13253       R      : Node_Id := Empty;
13254       T      : constant Entity_Id := Etype (Index);
13255
13256    begin
13257       Def_Id :=
13258         Create_Itype (E_Void, Related_Nod, Related_Id, Suffix, Suffix_Index);
13259       Set_Etype (Def_Id, Base_Type (T));
13260
13261       if Nkind (S) = N_Range
13262         or else
13263           (Nkind (S) = N_Attribute_Reference
13264             and then Attribute_Name (S) = Name_Range)
13265       then
13266          --  A Range attribute will be transformed into N_Range by Resolve
13267
13268          Analyze (S);
13269          Set_Etype (S, T);
13270          R := S;
13271
13272          Process_Range_Expr_In_Decl (R, T);
13273
13274          if not Error_Posted (S)
13275            and then
13276              (Nkind (S) /= N_Range
13277                or else not Covers (T, (Etype (Low_Bound (S))))
13278                or else not Covers (T, (Etype (High_Bound (S)))))
13279          then
13280             if Base_Type (T) /= Any_Type
13281               and then Etype (Low_Bound (S)) /= Any_Type
13282               and then Etype (High_Bound (S)) /= Any_Type
13283             then
13284                Error_Msg_N ("range expected", S);
13285             end if;
13286          end if;
13287
13288       elsif Nkind (S) = N_Subtype_Indication then
13289
13290          --  The parser has verified that this is a discrete indication
13291
13292          Resolve_Discrete_Subtype_Indication (S, T);
13293          Bad_Predicated_Subtype_Use
13294            ("subtype& has predicate, not allowed in index constraint",
13295             S, Entity (Subtype_Mark (S)));
13296
13297          R := Range_Expression (Constraint (S));
13298
13299          --  Capture values of bounds and generate temporaries for them if
13300          --  needed, since checks may cause duplication of the expressions
13301          --  which must not be reevaluated.
13302
13303          --  The forced evaluation removes side effects from expressions, which
13304          --  should occur also in GNATprove mode. Otherwise, we end up with
13305          --  unexpected insertions of actions at places where this is not
13306          --  supposed to occur, e.g. on default parameters of a call.
13307
13308          if Expander_Active or GNATprove_Mode then
13309             Force_Evaluation
13310               (Low_Bound (R),  Related_Id => Def_Id, Is_Low_Bound  => True);
13311             Force_Evaluation
13312               (High_Bound (R), Related_Id => Def_Id, Is_High_Bound => True);
13313          end if;
13314
13315       elsif Nkind (S) = N_Discriminant_Association then
13316
13317          --  Syntactically valid in subtype indication
13318
13319          Error_Msg_N ("invalid index constraint", S);
13320          Rewrite (S, New_Occurrence_Of (T, Sloc (S)));
13321          return;
13322
13323       --  Subtype_Mark case, no anonymous subtypes to construct
13324
13325       else
13326          Analyze (S);
13327
13328          if Is_Entity_Name (S) then
13329             if not Is_Type (Entity (S)) then
13330                Error_Msg_N ("expect subtype mark for index constraint", S);
13331
13332             elsif Base_Type (Entity (S)) /= Base_Type (T) then
13333                Wrong_Type (S, Base_Type (T));
13334
13335             --  Check error of subtype with predicate in index constraint
13336
13337             else
13338                Bad_Predicated_Subtype_Use
13339                  ("subtype& has predicate, not allowed in index constraint",
13340                   S, Entity (S));
13341             end if;
13342
13343             return;
13344
13345          else
13346             Error_Msg_N ("invalid index constraint", S);
13347             Rewrite (S, New_Occurrence_Of (T, Sloc (S)));
13348             return;
13349          end if;
13350       end if;
13351
13352       --  Complete construction of the Itype
13353
13354       if Is_Modular_Integer_Type (T) then
13355          Set_Ekind (Def_Id, E_Modular_Integer_Subtype);
13356
13357       elsif Is_Integer_Type (T) then
13358          Set_Ekind (Def_Id, E_Signed_Integer_Subtype);
13359
13360       else
13361          Set_Ekind (Def_Id, E_Enumeration_Subtype);
13362          Set_Is_Character_Type (Def_Id, Is_Character_Type (T));
13363          Set_First_Literal     (Def_Id, First_Literal (T));
13364       end if;
13365
13366       Set_Size_Info      (Def_Id,                (T));
13367       Set_RM_Size        (Def_Id, RM_Size        (T));
13368       Set_First_Rep_Item (Def_Id, First_Rep_Item (T));
13369
13370       Set_Scalar_Range   (Def_Id, R);
13371
13372       Set_Etype (S, Def_Id);
13373       Set_Discrete_RM_Size (Def_Id);
13374    end Constrain_Index;
13375
13376    -----------------------
13377    -- Constrain_Integer --
13378    -----------------------
13379
13380    procedure Constrain_Integer (Def_Id : Node_Id; S : Node_Id) is
13381       T : constant Entity_Id := Entity (Subtype_Mark (S));
13382       C : constant Node_Id   := Constraint (S);
13383
13384    begin
13385       Set_Scalar_Range_For_Subtype (Def_Id, Range_Expression (C), T);
13386
13387       if Is_Modular_Integer_Type (T) then
13388          Set_Ekind (Def_Id, E_Modular_Integer_Subtype);
13389       else
13390          Set_Ekind (Def_Id, E_Signed_Integer_Subtype);
13391       end if;
13392
13393       Set_Etype            (Def_Id, Base_Type      (T));
13394       Set_Size_Info        (Def_Id,                (T));
13395       Set_First_Rep_Item   (Def_Id, First_Rep_Item (T));
13396       Set_Discrete_RM_Size (Def_Id);
13397    end Constrain_Integer;
13398
13399    ------------------------------
13400    -- Constrain_Ordinary_Fixed --
13401    ------------------------------
13402
13403    procedure Constrain_Ordinary_Fixed (Def_Id : Node_Id; S : Node_Id) is
13404       T    : constant Entity_Id := Entity (Subtype_Mark (S));
13405       C    : Node_Id;
13406       D    : Node_Id;
13407       Rais : Node_Id;
13408
13409    begin
13410       Set_Ekind          (Def_Id, E_Ordinary_Fixed_Point_Subtype);
13411       Set_Etype          (Def_Id, Base_Type      (T));
13412       Set_Size_Info      (Def_Id,                (T));
13413       Set_First_Rep_Item (Def_Id, First_Rep_Item (T));
13414       Set_Small_Value    (Def_Id, Small_Value    (T));
13415
13416       --  Process the constraint
13417
13418       C := Constraint (S);
13419
13420       --  Delta constraint present
13421
13422       if Nkind (C) = N_Delta_Constraint then
13423
13424          Check_SPARK_05_Restriction ("delta constraint is not allowed", S);
13425          Check_Restriction (No_Obsolescent_Features, C);
13426
13427          if Warn_On_Obsolescent_Feature then
13428             Error_Msg_S
13429               ("subtype delta constraint is an " &
13430                "obsolescent feature (RM J.3(7))?j?");
13431          end if;
13432
13433          D := Delta_Expression (C);
13434          Analyze_And_Resolve (D, Any_Real);
13435          Check_Delta_Expression (D);
13436          Set_Delta_Value (Def_Id, Expr_Value_R (D));
13437
13438          --  Check that delta value is in range. Obviously we can do this
13439          --  at compile time, but it is strictly a runtime check, and of
13440          --  course there is an ACVC test that checks this.
13441
13442          if Delta_Value (Def_Id) < Delta_Value (T) then
13443             Error_Msg_N ("??delta value is too small", D);
13444             Rais :=
13445               Make_Raise_Constraint_Error (Sloc (D),
13446                 Reason => CE_Range_Check_Failed);
13447             Insert_Action (Declaration_Node (Def_Id), Rais);
13448          end if;
13449
13450          C := Range_Constraint (C);
13451
13452       --  No delta constraint present
13453
13454       else
13455          Set_Delta_Value (Def_Id, Delta_Value (T));
13456       end if;
13457
13458       --  Range constraint present
13459
13460       if Nkind (C) = N_Range_Constraint then
13461          Set_Scalar_Range_For_Subtype (Def_Id, Range_Expression (C), T);
13462
13463       --  No range constraint present
13464
13465       else
13466          pragma Assert (No (C));
13467          Set_Scalar_Range (Def_Id, Scalar_Range (T));
13468       end if;
13469
13470       Set_Discrete_RM_Size (Def_Id);
13471
13472       --  Unconditionally delay the freeze, since we cannot set size
13473       --  information in all cases correctly until the freeze point.
13474
13475       Set_Has_Delayed_Freeze (Def_Id);
13476    end Constrain_Ordinary_Fixed;
13477
13478    -----------------------
13479    -- Contain_Interface --
13480    -----------------------
13481
13482    function Contain_Interface
13483      (Iface  : Entity_Id;
13484       Ifaces : Elist_Id) return Boolean
13485    is
13486       Iface_Elmt : Elmt_Id;
13487
13488    begin
13489       if Present (Ifaces) then
13490          Iface_Elmt := First_Elmt (Ifaces);
13491          while Present (Iface_Elmt) loop
13492             if Node (Iface_Elmt) = Iface then
13493                return True;
13494             end if;
13495
13496             Next_Elmt (Iface_Elmt);
13497          end loop;
13498       end if;
13499
13500       return False;
13501    end Contain_Interface;
13502
13503    ---------------------------
13504    -- Convert_Scalar_Bounds --
13505    ---------------------------
13506
13507    procedure Convert_Scalar_Bounds
13508      (N            : Node_Id;
13509       Parent_Type  : Entity_Id;
13510       Derived_Type : Entity_Id;
13511       Loc          : Source_Ptr)
13512    is
13513       Implicit_Base : constant Entity_Id := Base_Type (Derived_Type);
13514
13515       Lo  : Node_Id;
13516       Hi  : Node_Id;
13517       Rng : Node_Id;
13518
13519    begin
13520       --  Defend against previous errors
13521
13522       if No (Scalar_Range (Derived_Type)) then
13523          Check_Error_Detected;
13524          return;
13525       end if;
13526
13527       Lo := Build_Scalar_Bound
13528               (Type_Low_Bound (Derived_Type),
13529                Parent_Type, Implicit_Base);
13530
13531       Hi := Build_Scalar_Bound
13532               (Type_High_Bound (Derived_Type),
13533                Parent_Type, Implicit_Base);
13534
13535       Rng :=
13536         Make_Range (Loc,
13537           Low_Bound  => Lo,
13538           High_Bound => Hi);
13539
13540       Set_Includes_Infinities (Rng, Has_Infinities (Derived_Type));
13541
13542       Set_Parent (Rng, N);
13543       Set_Scalar_Range (Derived_Type, Rng);
13544
13545       --  Analyze the bounds
13546
13547       Analyze_And_Resolve (Lo, Implicit_Base);
13548       Analyze_And_Resolve (Hi, Implicit_Base);
13549
13550       --  Analyze the range itself, except that we do not analyze it if
13551       --  the bounds are real literals, and we have a fixed-point type.
13552       --  The reason for this is that we delay setting the bounds in this
13553       --  case till we know the final Small and Size values (see circuit
13554       --  in Freeze.Freeze_Fixed_Point_Type for further details).
13555
13556       if Is_Fixed_Point_Type (Parent_Type)
13557         and then Nkind (Lo) = N_Real_Literal
13558         and then Nkind (Hi) = N_Real_Literal
13559       then
13560          return;
13561
13562       --  Here we do the analysis of the range
13563
13564       --  Note: we do this manually, since if we do a normal Analyze and
13565       --  Resolve call, there are problems with the conversions used for
13566       --  the derived type range.
13567
13568       else
13569          Set_Etype    (Rng, Implicit_Base);
13570          Set_Analyzed (Rng, True);
13571       end if;
13572    end Convert_Scalar_Bounds;
13573
13574    -------------------
13575    -- Copy_And_Swap --
13576    -------------------
13577
13578    procedure Copy_And_Swap (Priv, Full : Entity_Id) is
13579    begin
13580       --  Initialize new full declaration entity by copying the pertinent
13581       --  fields of the corresponding private declaration entity.
13582
13583       --  We temporarily set Ekind to a value appropriate for a type to
13584       --  avoid assert failures in Einfo from checking for setting type
13585       --  attributes on something that is not a type. Ekind (Priv) is an
13586       --  appropriate choice, since it allowed the attributes to be set
13587       --  in the first place. This Ekind value will be modified later.
13588
13589       Set_Ekind (Full, Ekind (Priv));
13590
13591       --  Also set Etype temporarily to Any_Type, again, in the absence
13592       --  of errors, it will be properly reset, and if there are errors,
13593       --  then we want a value of Any_Type to remain.
13594
13595       Set_Etype (Full, Any_Type);
13596
13597       --  Now start copying attributes
13598
13599       Set_Has_Discriminants          (Full, Has_Discriminants       (Priv));
13600
13601       if Has_Discriminants (Full) then
13602          Set_Discriminant_Constraint (Full, Discriminant_Constraint (Priv));
13603          Set_Stored_Constraint       (Full, Stored_Constraint       (Priv));
13604       end if;
13605
13606       Set_First_Rep_Item             (Full, First_Rep_Item          (Priv));
13607       Set_Homonym                    (Full, Homonym                 (Priv));
13608       Set_Is_Immediately_Visible     (Full, Is_Immediately_Visible  (Priv));
13609       Set_Is_Public                  (Full, Is_Public               (Priv));
13610       Set_Is_Pure                    (Full, Is_Pure                 (Priv));
13611       Set_Is_Tagged_Type             (Full, Is_Tagged_Type          (Priv));
13612       Set_Has_Pragma_Unmodified      (Full, Has_Pragma_Unmodified   (Priv));
13613       Set_Has_Pragma_Unreferenced    (Full, Has_Pragma_Unreferenced (Priv));
13614       Set_Has_Pragma_Unreferenced_Objects
13615                                      (Full, Has_Pragma_Unreferenced_Objects
13616                                                                     (Priv));
13617
13618       Conditional_Delay              (Full,                          Priv);
13619
13620       if Is_Tagged_Type (Full) then
13621          Set_Direct_Primitive_Operations
13622            (Full, Direct_Primitive_Operations (Priv));
13623          Set_No_Tagged_Streams_Pragma
13624            (Full, No_Tagged_Streams_Pragma (Priv));
13625
13626          if Is_Base_Type (Priv) then
13627             Set_Class_Wide_Type      (Full, Class_Wide_Type         (Priv));
13628          end if;
13629       end if;
13630
13631       Set_Is_Volatile                (Full, Is_Volatile             (Priv));
13632       Set_Treat_As_Volatile          (Full, Treat_As_Volatile       (Priv));
13633       Set_Scope                      (Full, Scope                   (Priv));
13634       Set_Next_Entity                (Full, Next_Entity             (Priv));
13635       Set_First_Entity               (Full, First_Entity            (Priv));
13636       Set_Last_Entity                (Full, Last_Entity             (Priv));
13637
13638       --  If access types have been recorded for later handling, keep them in
13639       --  the full view so that they get handled when the full view freeze
13640       --  node is expanded.
13641
13642       if Present (Freeze_Node (Priv))
13643         and then Present (Access_Types_To_Process (Freeze_Node (Priv)))
13644       then
13645          Ensure_Freeze_Node (Full);
13646          Set_Access_Types_To_Process
13647            (Freeze_Node (Full),
13648             Access_Types_To_Process (Freeze_Node (Priv)));
13649       end if;
13650
13651       --  Swap the two entities. Now Private is the full type entity and Full
13652       --  is the private one. They will be swapped back at the end of the
13653       --  private part. This swapping ensures that the entity that is visible
13654       --  in the private part is the full declaration.
13655
13656       Exchange_Entities (Priv, Full);
13657       Append_Entity (Full, Scope (Full));
13658    end Copy_And_Swap;
13659
13660    -------------------------------------
13661    -- Copy_Array_Base_Type_Attributes --
13662    -------------------------------------
13663
13664    procedure Copy_Array_Base_Type_Attributes (T1, T2 : Entity_Id) is
13665    begin
13666       Set_Component_Alignment      (T1, Component_Alignment      (T2));
13667       Set_Component_Type           (T1, Component_Type           (T2));
13668       Set_Component_Size           (T1, Component_Size           (T2));
13669       Set_Has_Controlled_Component (T1, Has_Controlled_Component (T2));
13670       Set_Has_Non_Standard_Rep     (T1, Has_Non_Standard_Rep     (T2));
13671       Set_Has_Protected            (T1, Has_Protected            (T2));
13672       Set_Has_Task                 (T1, Has_Task                 (T2));
13673       Set_Is_Packed                (T1, Is_Packed                (T2));
13674       Set_Has_Aliased_Components   (T1, Has_Aliased_Components   (T2));
13675       Set_Has_Atomic_Components    (T1, Has_Atomic_Components    (T2));
13676       Set_Has_Volatile_Components  (T1, Has_Volatile_Components  (T2));
13677    end Copy_Array_Base_Type_Attributes;
13678
13679    -----------------------------------
13680    -- Copy_Array_Subtype_Attributes --
13681    -----------------------------------
13682
13683    procedure Copy_Array_Subtype_Attributes (T1, T2 : Entity_Id) is
13684    begin
13685       Set_Size_Info (T1, T2);
13686
13687       Set_First_Index            (T1, First_Index            (T2));
13688       Set_Is_Aliased             (T1, Is_Aliased             (T2));
13689       Set_Is_Volatile            (T1, Is_Volatile            (T2));
13690       Set_Treat_As_Volatile      (T1, Treat_As_Volatile      (T2));
13691       Set_Is_Constrained         (T1, Is_Constrained         (T2));
13692       Set_Depends_On_Private     (T1, Has_Private_Component  (T2));
13693       Inherit_Rep_Item_Chain     (T1,                         T2);
13694       Set_Convention             (T1, Convention             (T2));
13695       Set_Is_Limited_Composite   (T1, Is_Limited_Composite   (T2));
13696       Set_Is_Private_Composite   (T1, Is_Private_Composite   (T2));
13697       Set_Packed_Array_Impl_Type (T1, Packed_Array_Impl_Type (T2));
13698    end Copy_Array_Subtype_Attributes;
13699
13700    -----------------------------------
13701    -- Create_Constrained_Components --
13702    -----------------------------------
13703
13704    procedure Create_Constrained_Components
13705      (Subt        : Entity_Id;
13706       Decl_Node   : Node_Id;
13707       Typ         : Entity_Id;
13708       Constraints : Elist_Id)
13709    is
13710       Loc         : constant Source_Ptr := Sloc (Subt);
13711       Comp_List   : constant Elist_Id   := New_Elmt_List;
13712       Parent_Type : constant Entity_Id  := Etype (Typ);
13713       Assoc_List  : constant List_Id    := New_List;
13714       Discr_Val   : Elmt_Id;
13715       Errors      : Boolean;
13716       New_C       : Entity_Id;
13717       Old_C       : Entity_Id;
13718       Is_Static   : Boolean := True;
13719
13720       procedure Collect_Fixed_Components (Typ : Entity_Id);
13721       --  Collect parent type components that do not appear in a variant part
13722
13723       procedure Create_All_Components;
13724       --  Iterate over Comp_List to create the components of the subtype
13725
13726       function Create_Component (Old_Compon : Entity_Id) return Entity_Id;
13727       --  Creates a new component from Old_Compon, copying all the fields from
13728       --  it, including its Etype, inserts the new component in the Subt entity
13729       --  chain and returns the new component.
13730
13731       function Is_Variant_Record (T : Entity_Id) return Boolean;
13732       --  If true, and discriminants are static, collect only components from
13733       --  variants selected by discriminant values.
13734
13735       ------------------------------
13736       -- Collect_Fixed_Components --
13737       ------------------------------
13738
13739       procedure Collect_Fixed_Components (Typ : Entity_Id) is
13740       begin
13741       --  Build association list for discriminants, and find components of the
13742       --  variant part selected by the values of the discriminants.
13743
13744          Old_C := First_Discriminant (Typ);
13745          Discr_Val := First_Elmt (Constraints);
13746          while Present (Old_C) loop
13747             Append_To (Assoc_List,
13748               Make_Component_Association (Loc,
13749                  Choices    => New_List (New_Occurrence_Of (Old_C, Loc)),
13750                  Expression => New_Copy (Node (Discr_Val))));
13751
13752             Next_Elmt (Discr_Val);
13753             Next_Discriminant (Old_C);
13754          end loop;
13755
13756          --  The tag and the possible parent component are unconditionally in
13757          --  the subtype.
13758
13759          if Is_Tagged_Type (Typ) or else Has_Controlled_Component (Typ) then
13760             Old_C := First_Component (Typ);
13761             while Present (Old_C) loop
13762                if Nam_In (Chars (Old_C), Name_uTag, Name_uParent) then
13763                   Append_Elmt (Old_C, Comp_List);
13764                end if;
13765
13766                Next_Component (Old_C);
13767             end loop;
13768          end if;
13769       end Collect_Fixed_Components;
13770
13771       ---------------------------
13772       -- Create_All_Components --
13773       ---------------------------
13774
13775       procedure Create_All_Components is
13776          Comp : Elmt_Id;
13777
13778       begin
13779          Comp := First_Elmt (Comp_List);
13780          while Present (Comp) loop
13781             Old_C := Node (Comp);
13782             New_C := Create_Component (Old_C);
13783
13784             Set_Etype
13785               (New_C,
13786                Constrain_Component_Type
13787                  (Old_C, Subt, Decl_Node, Typ, Constraints));
13788             Set_Is_Public (New_C, Is_Public (Subt));
13789
13790             Next_Elmt (Comp);
13791          end loop;
13792       end Create_All_Components;
13793
13794       ----------------------
13795       -- Create_Component --
13796       ----------------------
13797
13798       function Create_Component (Old_Compon : Entity_Id) return Entity_Id is
13799          New_Compon : constant Entity_Id := New_Copy (Old_Compon);
13800
13801       begin
13802          if Ekind (Old_Compon) = E_Discriminant
13803            and then Is_Completely_Hidden (Old_Compon)
13804          then
13805             --  This is a shadow discriminant created for a discriminant of
13806             --  the parent type, which needs to be present in the subtype.
13807             --  Give the shadow discriminant an internal name that cannot
13808             --  conflict with that of visible components.
13809
13810             Set_Chars (New_Compon, New_Internal_Name ('C'));
13811          end if;
13812
13813          --  Set the parent so we have a proper link for freezing etc. This is
13814          --  not a real parent pointer, since of course our parent does not own
13815          --  up to us and reference us, we are an illegitimate child of the
13816          --  original parent.
13817
13818          Set_Parent (New_Compon, Parent (Old_Compon));
13819
13820          --  If the old component's Esize was already determined and is a
13821          --  static value, then the new component simply inherits it. Otherwise
13822          --  the old component's size may require run-time determination, but
13823          --  the new component's size still might be statically determinable
13824          --  (if, for example it has a static constraint). In that case we want
13825          --  Layout_Type to recompute the component's size, so we reset its
13826          --  size and positional fields.
13827
13828          if Frontend_Layout_On_Target
13829            and then not Known_Static_Esize (Old_Compon)
13830          then
13831             Set_Esize (New_Compon, Uint_0);
13832             Init_Normalized_First_Bit    (New_Compon);
13833             Init_Normalized_Position     (New_Compon);
13834             Init_Normalized_Position_Max (New_Compon);
13835          end if;
13836
13837          --  We do not want this node marked as Comes_From_Source, since
13838          --  otherwise it would get first class status and a separate cross-
13839          --  reference line would be generated. Illegitimate children do not
13840          --  rate such recognition.
13841
13842          Set_Comes_From_Source (New_Compon, False);
13843
13844          --  But it is a real entity, and a birth certificate must be properly
13845          --  registered by entering it into the entity list.
13846
13847          Enter_Name (New_Compon);
13848
13849          return New_Compon;
13850       end Create_Component;
13851
13852       -----------------------
13853       -- Is_Variant_Record --
13854       -----------------------
13855
13856       function Is_Variant_Record (T : Entity_Id) return Boolean is
13857       begin
13858          return Nkind (Parent (T)) = N_Full_Type_Declaration
13859            and then Nkind (Type_Definition (Parent (T))) = N_Record_Definition
13860            and then Present (Component_List (Type_Definition (Parent (T))))
13861            and then
13862              Present
13863                (Variant_Part (Component_List (Type_Definition (Parent (T)))));
13864       end Is_Variant_Record;
13865
13866    --  Start of processing for Create_Constrained_Components
13867
13868    begin
13869       pragma Assert (Subt /= Base_Type (Subt));
13870       pragma Assert (Typ = Base_Type (Typ));
13871
13872       Set_First_Entity (Subt, Empty);
13873       Set_Last_Entity  (Subt, Empty);
13874
13875       --  Check whether constraint is fully static, in which case we can
13876       --  optimize the list of components.
13877
13878       Discr_Val := First_Elmt (Constraints);
13879       while Present (Discr_Val) loop
13880          if not Is_OK_Static_Expression (Node (Discr_Val)) then
13881             Is_Static := False;
13882             exit;
13883          end if;
13884
13885          Next_Elmt (Discr_Val);
13886       end loop;
13887
13888       Set_Has_Static_Discriminants (Subt, Is_Static);
13889
13890       Push_Scope (Subt);
13891
13892       --  Inherit the discriminants of the parent type
13893
13894       Add_Discriminants : declare
13895          Num_Disc : Int;
13896          Num_Gird : Int;
13897
13898       begin
13899          Num_Disc := 0;
13900          Old_C := First_Discriminant (Typ);
13901
13902          while Present (Old_C) loop
13903             Num_Disc := Num_Disc + 1;
13904             New_C := Create_Component (Old_C);
13905             Set_Is_Public (New_C, Is_Public (Subt));
13906             Next_Discriminant (Old_C);
13907          end loop;
13908
13909          --  For an untagged derived subtype, the number of discriminants may
13910          --  be smaller than the number of inherited discriminants, because
13911          --  several of them may be renamed by a single new discriminant or
13912          --  constrained. In this case, add the hidden discriminants back into
13913          --  the subtype, because they need to be present if the optimizer of
13914          --  the GCC 4.x back-end decides to break apart assignments between
13915          --  objects using the parent view into member-wise assignments.
13916
13917          Num_Gird := 0;
13918
13919          if Is_Derived_Type (Typ)
13920            and then not Is_Tagged_Type (Typ)
13921          then
13922             Old_C := First_Stored_Discriminant (Typ);
13923
13924             while Present (Old_C) loop
13925                Num_Gird := Num_Gird + 1;
13926                Next_Stored_Discriminant (Old_C);
13927             end loop;
13928          end if;
13929
13930          if Num_Gird > Num_Disc then
13931
13932             --  Find out multiple uses of new discriminants, and add hidden
13933             --  components for the extra renamed discriminants. We recognize
13934             --  multiple uses through the Corresponding_Discriminant of a
13935             --  new discriminant: if it constrains several old discriminants,
13936             --  this field points to the last one in the parent type. The
13937             --  stored discriminants of the derived type have the same name
13938             --  as those of the parent.
13939
13940             declare
13941                Constr    : Elmt_Id;
13942                New_Discr : Entity_Id;
13943                Old_Discr : Entity_Id;
13944
13945             begin
13946                Constr    := First_Elmt (Stored_Constraint (Typ));
13947                Old_Discr := First_Stored_Discriminant (Typ);
13948                while Present (Constr) loop
13949                   if Is_Entity_Name (Node (Constr))
13950                     and then Ekind (Entity (Node (Constr))) = E_Discriminant
13951                   then
13952                      New_Discr := Entity (Node (Constr));
13953
13954                      if Chars (Corresponding_Discriminant (New_Discr)) /=
13955                         Chars (Old_Discr)
13956                      then
13957                         --  The new discriminant has been used to rename a
13958                         --  subsequent old discriminant. Introduce a shadow
13959                         --  component for the current old discriminant.
13960
13961                         New_C := Create_Component (Old_Discr);
13962                         Set_Original_Record_Component (New_C, Old_Discr);
13963                      end if;
13964
13965                   else
13966                      --  The constraint has eliminated the old discriminant.
13967                      --  Introduce a shadow component.
13968
13969                      New_C := Create_Component (Old_Discr);
13970                      Set_Original_Record_Component (New_C, Old_Discr);
13971                   end if;
13972
13973                   Next_Elmt (Constr);
13974                   Next_Stored_Discriminant (Old_Discr);
13975                end loop;
13976             end;
13977          end if;
13978       end Add_Discriminants;
13979
13980       if Is_Static
13981         and then Is_Variant_Record (Typ)
13982       then
13983          Collect_Fixed_Components (Typ);
13984
13985          Gather_Components (
13986            Typ,
13987            Component_List (Type_Definition (Parent (Typ))),
13988            Governed_By   => Assoc_List,
13989            Into          => Comp_List,
13990            Report_Errors => Errors);
13991          pragma Assert (not Errors);
13992
13993          Create_All_Components;
13994
13995       --  If the subtype declaration is created for a tagged type derivation
13996       --  with constraints, we retrieve the record definition of the parent
13997       --  type to select the components of the proper variant.
13998
13999       elsif Is_Static
14000         and then Is_Tagged_Type (Typ)
14001         and then Nkind (Parent (Typ)) = N_Full_Type_Declaration
14002         and then
14003           Nkind (Type_Definition (Parent (Typ))) = N_Derived_Type_Definition
14004         and then Is_Variant_Record (Parent_Type)
14005       then
14006          Collect_Fixed_Components (Typ);
14007
14008          Gather_Components
14009            (Typ,
14010             Component_List (Type_Definition (Parent (Parent_Type))),
14011             Governed_By   => Assoc_List,
14012             Into          => Comp_List,
14013             Report_Errors => Errors);
14014
14015          --  Note: previously there was a check at this point that no errors
14016          --  were detected. As a consequence of AI05-220 there may be an error
14017          --  if an inherited discriminant that controls a variant has a non-
14018          --  static constraint.
14019
14020          --  If the tagged derivation has a type extension, collect all the
14021          --  new components therein.
14022
14023          if Present (Record_Extension_Part (Type_Definition (Parent (Typ))))
14024          then
14025             Old_C := First_Component (Typ);
14026             while Present (Old_C) loop
14027                if Original_Record_Component (Old_C) = Old_C
14028                  and then Chars (Old_C) /= Name_uTag
14029                  and then Chars (Old_C) /= Name_uParent
14030                then
14031                   Append_Elmt (Old_C, Comp_List);
14032                end if;
14033
14034                Next_Component (Old_C);
14035             end loop;
14036          end if;
14037
14038          Create_All_Components;
14039
14040       else
14041          --  If discriminants are not static, or if this is a multi-level type
14042          --  extension, we have to include all components of the parent type.
14043
14044          Old_C := First_Component (Typ);
14045          while Present (Old_C) loop
14046             New_C := Create_Component (Old_C);
14047
14048             Set_Etype
14049               (New_C,
14050                Constrain_Component_Type
14051                  (Old_C, Subt, Decl_Node, Typ, Constraints));
14052             Set_Is_Public (New_C, Is_Public (Subt));
14053
14054             Next_Component (Old_C);
14055          end loop;
14056       end if;
14057
14058       End_Scope;
14059    end Create_Constrained_Components;
14060
14061    ------------------------------------------
14062    -- Decimal_Fixed_Point_Type_Declaration --
14063    ------------------------------------------
14064
14065    procedure Decimal_Fixed_Point_Type_Declaration
14066      (T   : Entity_Id;
14067       Def : Node_Id)
14068    is
14069       Loc           : constant Source_Ptr := Sloc (Def);
14070       Digs_Expr     : constant Node_Id    := Digits_Expression (Def);
14071       Delta_Expr    : constant Node_Id    := Delta_Expression (Def);
14072       Implicit_Base : Entity_Id;
14073       Digs_Val      : Uint;
14074       Delta_Val     : Ureal;
14075       Scale_Val     : Uint;
14076       Bound_Val     : Ureal;
14077
14078    begin
14079       Check_SPARK_05_Restriction
14080         ("decimal fixed point type is not allowed", Def);
14081       Check_Restriction (No_Fixed_Point, Def);
14082
14083       --  Create implicit base type
14084
14085       Implicit_Base :=
14086         Create_Itype (E_Decimal_Fixed_Point_Type, Parent (Def), T, 'B');
14087       Set_Etype (Implicit_Base, Implicit_Base);
14088
14089       --  Analyze and process delta expression
14090
14091       Analyze_And_Resolve (Delta_Expr, Universal_Real);
14092
14093       Check_Delta_Expression (Delta_Expr);
14094       Delta_Val := Expr_Value_R (Delta_Expr);
14095
14096       --  Check delta is power of 10, and determine scale value from it
14097
14098       declare
14099          Val : Ureal;
14100
14101       begin
14102          Scale_Val := Uint_0;
14103          Val := Delta_Val;
14104
14105          if Val < Ureal_1 then
14106             while Val < Ureal_1 loop
14107                Val := Val * Ureal_10;
14108                Scale_Val := Scale_Val + 1;
14109             end loop;
14110
14111             if Scale_Val > 18 then
14112                Error_Msg_N ("scale exceeds maximum value of 18", Def);
14113                Scale_Val := UI_From_Int (+18);
14114             end if;
14115
14116          else
14117             while Val > Ureal_1 loop
14118                Val := Val / Ureal_10;
14119                Scale_Val := Scale_Val - 1;
14120             end loop;
14121
14122             if Scale_Val < -18 then
14123                Error_Msg_N ("scale is less than minimum value of -18", Def);
14124                Scale_Val := UI_From_Int (-18);
14125             end if;
14126          end if;
14127
14128          if Val /= Ureal_1 then
14129             Error_Msg_N ("delta expression must be a power of 10", Def);
14130             Delta_Val := Ureal_10 ** (-Scale_Val);
14131          end if;
14132       end;
14133
14134       --  Set delta, scale and small (small = delta for decimal type)
14135
14136       Set_Delta_Value (Implicit_Base, Delta_Val);
14137       Set_Scale_Value (Implicit_Base, Scale_Val);
14138       Set_Small_Value (Implicit_Base, Delta_Val);
14139
14140       --  Analyze and process digits expression
14141
14142       Analyze_And_Resolve (Digs_Expr, Any_Integer);
14143       Check_Digits_Expression (Digs_Expr);
14144       Digs_Val := Expr_Value (Digs_Expr);
14145
14146       if Digs_Val > 18 then
14147          Digs_Val := UI_From_Int (+18);
14148          Error_Msg_N ("digits value out of range, maximum is 18", Digs_Expr);
14149       end if;
14150
14151       Set_Digits_Value (Implicit_Base, Digs_Val);
14152       Bound_Val := UR_From_Uint (10 ** Digs_Val - 1) * Delta_Val;
14153
14154       --  Set range of base type from digits value for now. This will be
14155       --  expanded to represent the true underlying base range by Freeze.
14156
14157       Set_Fixed_Range (Implicit_Base, Loc, -Bound_Val, Bound_Val);
14158
14159       --  Note: We leave size as zero for now, size will be set at freeze
14160       --  time. We have to do this for ordinary fixed-point, because the size
14161       --  depends on the specified small, and we might as well do the same for
14162       --  decimal fixed-point.
14163
14164       pragma Assert (Esize (Implicit_Base) = Uint_0);
14165
14166       --  If there are bounds given in the declaration use them as the
14167       --  bounds of the first named subtype.
14168
14169       if Present (Real_Range_Specification (Def)) then
14170          declare
14171             RRS      : constant Node_Id := Real_Range_Specification (Def);
14172             Low      : constant Node_Id := Low_Bound (RRS);
14173             High     : constant Node_Id := High_Bound (RRS);
14174             Low_Val  : Ureal;
14175             High_Val : Ureal;
14176
14177          begin
14178             Analyze_And_Resolve (Low, Any_Real);
14179             Analyze_And_Resolve (High, Any_Real);
14180             Check_Real_Bound (Low);
14181             Check_Real_Bound (High);
14182             Low_Val := Expr_Value_R (Low);
14183             High_Val := Expr_Value_R (High);
14184
14185             if Low_Val < (-Bound_Val) then
14186                Error_Msg_N
14187                  ("range low bound too small for digits value", Low);
14188                Low_Val := -Bound_Val;
14189             end if;
14190
14191             if High_Val > Bound_Val then
14192                Error_Msg_N
14193                  ("range high bound too large for digits value", High);
14194                High_Val := Bound_Val;
14195             end if;
14196
14197             Set_Fixed_Range (T, Loc, Low_Val, High_Val);
14198          end;
14199
14200       --  If no explicit range, use range that corresponds to given
14201       --  digits value. This will end up as the final range for the
14202       --  first subtype.
14203
14204       else
14205          Set_Fixed_Range (T, Loc, -Bound_Val, Bound_Val);
14206       end if;
14207
14208       --  Complete entity for first subtype. The inheritance of the rep item
14209       --  chain ensures that SPARK-related pragmas are not clobbered when the
14210       --  decimal fixed point type acts as a full view of a private type.
14211
14212       Set_Ekind              (T, E_Decimal_Fixed_Point_Subtype);
14213       Set_Etype              (T, Implicit_Base);
14214       Set_Size_Info          (T, Implicit_Base);
14215       Inherit_Rep_Item_Chain (T, Implicit_Base);
14216       Set_Digits_Value       (T, Digs_Val);
14217       Set_Delta_Value        (T, Delta_Val);
14218       Set_Small_Value        (T, Delta_Val);
14219       Set_Scale_Value        (T, Scale_Val);
14220       Set_Is_Constrained     (T);
14221    end Decimal_Fixed_Point_Type_Declaration;
14222
14223    -----------------------------------
14224    -- Derive_Progenitor_Subprograms --
14225    -----------------------------------
14226
14227    procedure Derive_Progenitor_Subprograms
14228      (Parent_Type : Entity_Id;
14229       Tagged_Type : Entity_Id)
14230    is
14231       E          : Entity_Id;
14232       Elmt       : Elmt_Id;
14233       Iface      : Entity_Id;
14234       Iface_Elmt : Elmt_Id;
14235       Iface_Subp : Entity_Id;
14236       New_Subp   : Entity_Id := Empty;
14237       Prim_Elmt  : Elmt_Id;
14238       Subp       : Entity_Id;
14239       Typ        : Entity_Id;
14240
14241    begin
14242       pragma Assert (Ada_Version >= Ada_2005
14243         and then Is_Record_Type (Tagged_Type)
14244         and then Is_Tagged_Type (Tagged_Type)
14245         and then Has_Interfaces (Tagged_Type));
14246
14247       --  Step 1: Transfer to the full-view primitives associated with the
14248       --  partial-view that cover interface primitives. Conceptually this
14249       --  work should be done later by Process_Full_View; done here to
14250       --  simplify its implementation at later stages. It can be safely
14251       --  done here because interfaces must be visible in the partial and
14252       --  private view (RM 7.3(7.3/2)).
14253
14254       --  Small optimization: This work is only required if the parent may
14255       --  have entities whose Alias attribute reference an interface primitive.
14256       --  Such a situation may occur if the parent is an abstract type and the
14257       --  primitive has not been yet overridden or if the parent is a generic
14258       --  formal type covering interfaces.
14259
14260       --  If the tagged type is not abstract, it cannot have abstract
14261       --  primitives (the only entities in the list of primitives of
14262       --  non-abstract tagged types that can reference abstract primitives
14263       --  through its Alias attribute are the internal entities that have
14264       --  attribute Interface_Alias, and these entities are generated later
14265       --  by Add_Internal_Interface_Entities).
14266
14267       if In_Private_Part (Current_Scope)
14268         and then (Is_Abstract_Type (Parent_Type)
14269                     or else
14270                   Is_Generic_Type  (Parent_Type))
14271       then
14272          Elmt := First_Elmt (Primitive_Operations (Tagged_Type));
14273          while Present (Elmt) loop
14274             Subp := Node (Elmt);
14275
14276             --  At this stage it is not possible to have entities in the list
14277             --  of primitives that have attribute Interface_Alias.
14278
14279             pragma Assert (No (Interface_Alias (Subp)));
14280
14281             Typ := Find_Dispatching_Type (Ultimate_Alias (Subp));
14282
14283             if Is_Interface (Typ) then
14284                E := Find_Primitive_Covering_Interface
14285                       (Tagged_Type => Tagged_Type,
14286                        Iface_Prim  => Subp);
14287
14288                if Present (E)
14289                  and then Find_Dispatching_Type (Ultimate_Alias (E)) /= Typ
14290                then
14291                   Replace_Elmt (Elmt, E);
14292                   Remove_Homonym (Subp);
14293                end if;
14294             end if;
14295
14296             Next_Elmt (Elmt);
14297          end loop;
14298       end if;
14299
14300       --  Step 2: Add primitives of progenitors that are not implemented by
14301       --  parents of Tagged_Type.
14302
14303       if Present (Interfaces (Base_Type (Tagged_Type))) then
14304          Iface_Elmt := First_Elmt (Interfaces (Base_Type (Tagged_Type)));
14305          while Present (Iface_Elmt) loop
14306             Iface := Node (Iface_Elmt);
14307
14308             Prim_Elmt := First_Elmt (Primitive_Operations (Iface));
14309             while Present (Prim_Elmt) loop
14310                Iface_Subp := Node (Prim_Elmt);
14311
14312                --  Exclude derivation of predefined primitives except those
14313                --  that come from source, or are inherited from one that comes
14314                --  from source. Required to catch declarations of equality
14315                --  operators of interfaces. For example:
14316
14317                --     type Iface is interface;
14318                --     function "=" (Left, Right : Iface) return Boolean;
14319
14320                if not Is_Predefined_Dispatching_Operation (Iface_Subp)
14321                  or else Comes_From_Source (Ultimate_Alias (Iface_Subp))
14322                then
14323                   E := Find_Primitive_Covering_Interface
14324                          (Tagged_Type => Tagged_Type,
14325                           Iface_Prim  => Iface_Subp);
14326
14327                   --  If not found we derive a new primitive leaving its alias
14328                   --  attribute referencing the interface primitive.
14329
14330                   if No (E) then
14331                      Derive_Subprogram
14332                        (New_Subp, Iface_Subp, Tagged_Type, Iface);
14333
14334                   --  Ada 2012 (AI05-0197): If the covering primitive's name
14335                   --  differs from the name of the interface primitive then it
14336                   --  is a private primitive inherited from a parent type. In
14337                   --  such case, given that Tagged_Type covers the interface,
14338                   --  the inherited private primitive becomes visible. For such
14339                   --  purpose we add a new entity that renames the inherited
14340                   --  private primitive.
14341
14342                   elsif Chars (E) /= Chars (Iface_Subp) then
14343                      pragma Assert (Has_Suffix (E, 'P'));
14344                      Derive_Subprogram
14345                        (New_Subp, Iface_Subp, Tagged_Type, Iface);
14346                      Set_Alias (New_Subp, E);
14347                      Set_Is_Abstract_Subprogram (New_Subp,
14348                        Is_Abstract_Subprogram (E));
14349
14350                   --  Propagate to the full view interface entities associated
14351                   --  with the partial view.
14352
14353                   elsif In_Private_Part (Current_Scope)
14354                     and then Present (Alias (E))
14355                     and then Alias (E) = Iface_Subp
14356                     and then
14357                       List_Containing (Parent (E)) /=
14358                         Private_Declarations
14359                           (Specification
14360                             (Unit_Declaration_Node (Current_Scope)))
14361                   then
14362                      Append_Elmt (E, Primitive_Operations (Tagged_Type));
14363                   end if;
14364                end if;
14365
14366                Next_Elmt (Prim_Elmt);
14367             end loop;
14368
14369             Next_Elmt (Iface_Elmt);
14370          end loop;
14371       end if;
14372    end Derive_Progenitor_Subprograms;
14373
14374    -----------------------
14375    -- Derive_Subprogram --
14376    -----------------------
14377
14378    procedure Derive_Subprogram
14379      (New_Subp     : in out Entity_Id;
14380       Parent_Subp  : Entity_Id;
14381       Derived_Type : Entity_Id;
14382       Parent_Type  : Entity_Id;
14383       Actual_Subp  : Entity_Id := Empty)
14384    is
14385       Formal : Entity_Id;
14386       --  Formal parameter of parent primitive operation
14387
14388       Formal_Of_Actual : Entity_Id;
14389       --  Formal parameter of actual operation, when the derivation is to
14390       --  create a renaming for a primitive operation of an actual in an
14391       --  instantiation.
14392
14393       New_Formal : Entity_Id;
14394       --  Formal of inherited operation
14395
14396       Visible_Subp : Entity_Id := Parent_Subp;
14397
14398       function Is_Private_Overriding return Boolean;
14399       --  If Subp is a private overriding of a visible operation, the inherited
14400       --  operation derives from the overridden op (even though its body is the
14401       --  overriding one) and the inherited operation is visible now. See
14402       --  sem_disp to see the full details of the handling of the overridden
14403       --  subprogram, which is removed from the list of primitive operations of
14404       --  the type. The overridden subprogram is saved locally in Visible_Subp,
14405       --  and used to diagnose abstract operations that need overriding in the
14406       --  derived type.
14407
14408       procedure Replace_Type (Id, New_Id : Entity_Id);
14409       --  When the type is an anonymous access type, create a new access type
14410       --  designating the derived type.
14411
14412       procedure Set_Derived_Name;
14413       --  This procedure sets the appropriate Chars name for New_Subp. This
14414       --  is normally just a copy of the parent name. An exception arises for
14415       --  type support subprograms, where the name is changed to reflect the
14416       --  name of the derived type, e.g. if type foo is derived from type bar,
14417       --  then a procedure barDA is derived with a name fooDA.
14418
14419       ---------------------------
14420       -- Is_Private_Overriding --
14421       ---------------------------
14422
14423       function Is_Private_Overriding return Boolean is
14424          Prev : Entity_Id;
14425
14426       begin
14427          --  If the parent is not a dispatching operation there is no
14428          --  need to investigate overridings
14429
14430          if not Is_Dispatching_Operation (Parent_Subp) then
14431             return False;
14432          end if;
14433
14434          --  The visible operation that is overridden is a homonym of the
14435          --  parent subprogram. We scan the homonym chain to find the one
14436          --  whose alias is the subprogram we are deriving.
14437
14438          Prev := Current_Entity (Parent_Subp);
14439          while Present (Prev) loop
14440             if Ekind (Prev) = Ekind (Parent_Subp)
14441               and then Alias (Prev) = Parent_Subp
14442               and then Scope (Parent_Subp) = Scope (Prev)
14443               and then not Is_Hidden (Prev)
14444             then
14445                Visible_Subp := Prev;
14446                return True;
14447             end if;
14448
14449             Prev := Homonym (Prev);
14450          end loop;
14451
14452          return False;
14453       end Is_Private_Overriding;
14454
14455       ------------------
14456       -- Replace_Type --
14457       ------------------
14458
14459       procedure Replace_Type (Id, New_Id : Entity_Id) is
14460          Id_Type  : constant Entity_Id := Etype (Id);
14461          Acc_Type : Entity_Id;
14462          Par      : constant Node_Id := Parent (Derived_Type);
14463
14464       begin
14465          --  When the type is an anonymous access type, create a new access
14466          --  type designating the derived type. This itype must be elaborated
14467          --  at the point of the derivation, not on subsequent calls that may
14468          --  be out of the proper scope for Gigi, so we insert a reference to
14469          --  it after the derivation.
14470
14471          if Ekind (Id_Type) = E_Anonymous_Access_Type then
14472             declare
14473                Desig_Typ : Entity_Id := Designated_Type (Id_Type);
14474
14475             begin
14476                if Ekind (Desig_Typ) = E_Record_Type_With_Private
14477                  and then Present (Full_View (Desig_Typ))
14478                  and then not Is_Private_Type (Parent_Type)
14479                then
14480                   Desig_Typ := Full_View (Desig_Typ);
14481                end if;
14482
14483                if Base_Type (Desig_Typ) = Base_Type (Parent_Type)
14484
14485                   --  Ada 2005 (AI-251): Handle also derivations of abstract
14486                   --  interface primitives.
14487
14488                  or else (Is_Interface (Desig_Typ)
14489                            and then not Is_Class_Wide_Type (Desig_Typ))
14490                then
14491                   Acc_Type := New_Copy (Id_Type);
14492                   Set_Etype (Acc_Type, Acc_Type);
14493                   Set_Scope (Acc_Type, New_Subp);
14494
14495                   --  Set size of anonymous access type. If we have an access
14496                   --  to an unconstrained array, this is a fat pointer, so it
14497                   --  is sizes at twice addtress size.
14498
14499                   if Is_Array_Type (Desig_Typ)
14500                     and then not Is_Constrained (Desig_Typ)
14501                   then
14502                      Init_Size (Acc_Type, 2 * System_Address_Size);
14503
14504                   --  Other cases use a thin pointer
14505
14506                   else
14507                      Init_Size (Acc_Type, System_Address_Size);
14508                   end if;
14509
14510                   --  Set remaining characterstics of anonymous access type
14511
14512                   Init_Alignment (Acc_Type);
14513                   Set_Directly_Designated_Type (Acc_Type, Derived_Type);
14514
14515                   Set_Etype (New_Id, Acc_Type);
14516                   Set_Scope (New_Id, New_Subp);
14517
14518                   --  Create a reference to it
14519
14520                   Build_Itype_Reference (Acc_Type, Parent (Derived_Type));
14521
14522                else
14523                   Set_Etype (New_Id, Id_Type);
14524                end if;
14525             end;
14526
14527          --  In Ada2012, a formal may have an incomplete type but the type
14528          --  derivation that inherits the primitive follows the full view.
14529
14530          elsif Base_Type (Id_Type) = Base_Type (Parent_Type)
14531            or else
14532              (Ekind (Id_Type) = E_Record_Type_With_Private
14533                and then Present (Full_View (Id_Type))
14534                and then
14535                  Base_Type (Full_View (Id_Type)) = Base_Type (Parent_Type))
14536            or else
14537              (Ada_Version >= Ada_2012
14538                and then Ekind (Id_Type) = E_Incomplete_Type
14539                and then Full_View (Id_Type) = Parent_Type)
14540          then
14541             --  Constraint checks on formals are generated during expansion,
14542             --  based on the signature of the original subprogram. The bounds
14543             --  of the derived type are not relevant, and thus we can use
14544             --  the base type for the formals. However, the return type may be
14545             --  used in a context that requires that the proper static bounds
14546             --  be used (a case statement, for example)  and for those cases
14547             --  we must use the derived type (first subtype), not its base.
14548
14549             --  If the derived_type_definition has no constraints, we know that
14550             --  the derived type has the same constraints as the first subtype
14551             --  of the parent, and we can also use it rather than its base,
14552             --  which can lead to more efficient code.
14553
14554             if Etype (Id) = Parent_Type then
14555                if Is_Scalar_Type (Parent_Type)
14556                  and then
14557                    Subtypes_Statically_Compatible (Parent_Type, Derived_Type)
14558                then
14559                   Set_Etype (New_Id, Derived_Type);
14560
14561                elsif Nkind (Par) = N_Full_Type_Declaration
14562                  and then
14563                    Nkind (Type_Definition (Par)) = N_Derived_Type_Definition
14564                  and then
14565                    Is_Entity_Name
14566                      (Subtype_Indication (Type_Definition (Par)))
14567                then
14568                   Set_Etype (New_Id, Derived_Type);
14569
14570                else
14571                   Set_Etype (New_Id, Base_Type (Derived_Type));
14572                end if;
14573
14574             else
14575                Set_Etype (New_Id, Base_Type (Derived_Type));
14576             end if;
14577
14578          else
14579             Set_Etype (New_Id, Etype (Id));
14580          end if;
14581       end Replace_Type;
14582
14583       ----------------------
14584       -- Set_Derived_Name --
14585       ----------------------
14586
14587       procedure Set_Derived_Name is
14588          Nm : constant TSS_Name_Type := Get_TSS_Name (Parent_Subp);
14589       begin
14590          if Nm = TSS_Null then
14591             Set_Chars (New_Subp, Chars (Parent_Subp));
14592          else
14593             Set_Chars (New_Subp, Make_TSS_Name (Base_Type (Derived_Type), Nm));
14594          end if;
14595       end Set_Derived_Name;
14596
14597    --  Start of processing for Derive_Subprogram
14598
14599    begin
14600       New_Subp := New_Entity (Nkind (Parent_Subp), Sloc (Derived_Type));
14601       Set_Ekind (New_Subp, Ekind (Parent_Subp));
14602
14603       --  Check whether the inherited subprogram is a private operation that
14604       --  should be inherited but not yet made visible. Such subprograms can
14605       --  become visible at a later point (e.g., the private part of a public
14606       --  child unit) via Declare_Inherited_Private_Subprograms. If the
14607       --  following predicate is true, then this is not such a private
14608       --  operation and the subprogram simply inherits the name of the parent
14609       --  subprogram. Note the special check for the names of controlled
14610       --  operations, which are currently exempted from being inherited with
14611       --  a hidden name because they must be findable for generation of
14612       --  implicit run-time calls.
14613
14614       if not Is_Hidden (Parent_Subp)
14615         or else Is_Internal (Parent_Subp)
14616         or else Is_Private_Overriding
14617         or else Is_Internal_Name (Chars (Parent_Subp))
14618         or else Nam_In (Chars (Parent_Subp), Name_Initialize,
14619                                              Name_Adjust,
14620                                              Name_Finalize)
14621       then
14622          Set_Derived_Name;
14623
14624       --  An inherited dispatching equality will be overridden by an internally
14625       --  generated one, or by an explicit one, so preserve its name and thus
14626       --  its entry in the dispatch table. Otherwise, if Parent_Subp is a
14627       --  private operation it may become invisible if the full view has
14628       --  progenitors, and the dispatch table will be malformed.
14629       --  We check that the type is limited to handle the anomalous declaration
14630       --  of Limited_Controlled, which is derived from a non-limited type, and
14631       --  which is handled specially elsewhere as well.
14632
14633       elsif Chars (Parent_Subp) = Name_Op_Eq
14634         and then Is_Dispatching_Operation (Parent_Subp)
14635         and then Etype (Parent_Subp) = Standard_Boolean
14636         and then not Is_Limited_Type (Etype (First_Formal (Parent_Subp)))
14637         and then
14638           Etype (First_Formal (Parent_Subp)) =
14639             Etype (Next_Formal (First_Formal (Parent_Subp)))
14640       then
14641          Set_Derived_Name;
14642
14643       --  If parent is hidden, this can be a regular derivation if the
14644       --  parent is immediately visible in a non-instantiating context,
14645       --  or if we are in the private part of an instance. This test
14646       --  should still be refined ???
14647
14648       --  The test for In_Instance_Not_Visible avoids inheriting the derived
14649       --  operation as a non-visible operation in cases where the parent
14650       --  subprogram might not be visible now, but was visible within the
14651       --  original generic, so it would be wrong to make the inherited
14652       --  subprogram non-visible now. (Not clear if this test is fully
14653       --  correct; are there any cases where we should declare the inherited
14654       --  operation as not visible to avoid it being overridden, e.g., when
14655       --  the parent type is a generic actual with private primitives ???)
14656
14657       --  (they should be treated the same as other private inherited
14658       --  subprograms, but it's not clear how to do this cleanly). ???
14659
14660       elsif (In_Open_Scopes (Scope (Base_Type (Parent_Type)))
14661               and then Is_Immediately_Visible (Parent_Subp)
14662               and then not In_Instance)
14663         or else In_Instance_Not_Visible
14664       then
14665          Set_Derived_Name;
14666
14667       --  Ada 2005 (AI-251): Regular derivation if the parent subprogram
14668       --  overrides an interface primitive because interface primitives
14669       --  must be visible in the partial view of the parent (RM 7.3 (7.3/2))
14670
14671       elsif Ada_Version >= Ada_2005
14672          and then Is_Dispatching_Operation (Parent_Subp)
14673          and then Covers_Some_Interface (Parent_Subp)
14674       then
14675          Set_Derived_Name;
14676
14677       --  Otherwise, the type is inheriting a private operation, so enter
14678       --  it with a special name so it can't be overridden.
14679
14680       else
14681          Set_Chars (New_Subp, New_External_Name (Chars (Parent_Subp), 'P'));
14682       end if;
14683
14684       Set_Parent (New_Subp, Parent (Derived_Type));
14685
14686       if Present (Actual_Subp) then
14687          Replace_Type (Actual_Subp, New_Subp);
14688       else
14689          Replace_Type (Parent_Subp, New_Subp);
14690       end if;
14691
14692       Conditional_Delay (New_Subp, Parent_Subp);
14693
14694       --  If we are creating a renaming for a primitive operation of an
14695       --  actual of a generic derived type, we must examine the signature
14696       --  of the actual primitive, not that of the generic formal, which for
14697       --  example may be an interface. However the name and initial value
14698       --  of the inherited operation are those of the formal primitive.
14699
14700       Formal := First_Formal (Parent_Subp);
14701
14702       if Present (Actual_Subp) then
14703          Formal_Of_Actual := First_Formal (Actual_Subp);
14704       else
14705          Formal_Of_Actual := Empty;
14706       end if;
14707
14708       while Present (Formal) loop
14709          New_Formal := New_Copy (Formal);
14710
14711          --  Normally we do not go copying parents, but in the case of
14712          --  formals, we need to link up to the declaration (which is the
14713          --  parameter specification), and it is fine to link up to the
14714          --  original formal's parameter specification in this case.
14715
14716          Set_Parent (New_Formal, Parent (Formal));
14717          Append_Entity (New_Formal, New_Subp);
14718
14719          if Present (Formal_Of_Actual) then
14720             Replace_Type (Formal_Of_Actual, New_Formal);
14721             Next_Formal (Formal_Of_Actual);
14722          else
14723             Replace_Type (Formal, New_Formal);
14724          end if;
14725
14726          Next_Formal (Formal);
14727       end loop;
14728
14729       --  If this derivation corresponds to a tagged generic actual, then
14730       --  primitive operations rename those of the actual. Otherwise the
14731       --  primitive operations rename those of the parent type, If the parent
14732       --  renames an intrinsic operator, so does the new subprogram. We except
14733       --  concatenation, which is always properly typed, and does not get
14734       --  expanded as other intrinsic operations.
14735
14736       if No (Actual_Subp) then
14737          if Is_Intrinsic_Subprogram (Parent_Subp) then
14738             Set_Is_Intrinsic_Subprogram (New_Subp);
14739
14740             if Present (Alias (Parent_Subp))
14741               and then Chars (Parent_Subp) /= Name_Op_Concat
14742             then
14743                Set_Alias (New_Subp, Alias (Parent_Subp));
14744             else
14745                Set_Alias (New_Subp, Parent_Subp);
14746             end if;
14747
14748          else
14749             Set_Alias (New_Subp, Parent_Subp);
14750          end if;
14751
14752       else
14753          Set_Alias (New_Subp, Actual_Subp);
14754       end if;
14755
14756       --  Inherit the "ghostness" from the parent subprogram
14757
14758       if Is_Ghost_Entity (Alias (New_Subp)) then
14759          Set_Is_Ghost_Entity (New_Subp);
14760       end if;
14761
14762       --  Derived subprograms of a tagged type must inherit the convention
14763       --  of the parent subprogram (a requirement of AI-117). Derived
14764       --  subprograms of untagged types simply get convention Ada by default.
14765
14766       --  If the derived type is a tagged generic formal type with unknown
14767       --  discriminants, its convention is intrinsic (RM 6.3.1 (8)).
14768
14769       --  However, if the type is derived from a generic formal, the further
14770       --  inherited subprogram has the convention of the non-generic ancestor.
14771       --  Otherwise there would be no way to override the operation.
14772       --  (This is subject to forthcoming ARG discussions).
14773
14774       if Is_Tagged_Type (Derived_Type) then
14775          if Is_Generic_Type (Derived_Type)
14776            and then Has_Unknown_Discriminants (Derived_Type)
14777          then
14778             Set_Convention (New_Subp, Convention_Intrinsic);
14779
14780          else
14781             if Is_Generic_Type (Parent_Type)
14782               and then Has_Unknown_Discriminants (Parent_Type)
14783             then
14784                Set_Convention (New_Subp, Convention (Alias (Parent_Subp)));
14785             else
14786                Set_Convention (New_Subp, Convention (Parent_Subp));
14787             end if;
14788          end if;
14789       end if;
14790
14791       --  Predefined controlled operations retain their name even if the parent
14792       --  is hidden (see above), but they are not primitive operations if the
14793       --  ancestor is not visible, for example if the parent is a private
14794       --  extension completed with a controlled extension. Note that a full
14795       --  type that is controlled can break privacy: the flag Is_Controlled is
14796       --  set on both views of the type.
14797
14798       if Is_Controlled (Parent_Type)
14799         and then Nam_In (Chars (Parent_Subp), Name_Initialize,
14800                                               Name_Adjust,
14801                                               Name_Finalize)
14802         and then Is_Hidden (Parent_Subp)
14803         and then not Is_Visibly_Controlled (Parent_Type)
14804       then
14805          Set_Is_Hidden (New_Subp);
14806       end if;
14807
14808       Set_Is_Imported (New_Subp, Is_Imported (Parent_Subp));
14809       Set_Is_Exported (New_Subp, Is_Exported (Parent_Subp));
14810
14811       if Ekind (Parent_Subp) = E_Procedure then
14812          Set_Is_Valued_Procedure
14813            (New_Subp, Is_Valued_Procedure (Parent_Subp));
14814       else
14815          Set_Has_Controlling_Result
14816            (New_Subp, Has_Controlling_Result (Parent_Subp));
14817       end if;
14818
14819       --  No_Return must be inherited properly. If this is overridden in the
14820       --  case of a dispatching operation, then a check is made in Sem_Disp
14821       --  that the overriding operation is also No_Return (no such check is
14822       --  required for the case of non-dispatching operation.
14823
14824       Set_No_Return (New_Subp, No_Return (Parent_Subp));
14825
14826       --  A derived function with a controlling result is abstract. If the
14827       --  Derived_Type is a nonabstract formal generic derived type, then
14828       --  inherited operations are not abstract: the required check is done at
14829       --  instantiation time. If the derivation is for a generic actual, the
14830       --  function is not abstract unless the actual is.
14831
14832       if Is_Generic_Type (Derived_Type)
14833         and then not Is_Abstract_Type (Derived_Type)
14834       then
14835          null;
14836
14837       --  Ada 2005 (AI-228): Calculate the "require overriding" and "abstract"
14838       --  properties of the subprogram, as defined in RM-3.9.3(4/2-6/2).
14839
14840       --  A subprogram subject to pragma Extensions_Visible with value False
14841       --  requires overriding if the subprogram has at least one controlling
14842       --  OUT parameter (SPARK RM 6.1.7(6)).
14843
14844       elsif Ada_Version >= Ada_2005
14845         and then (Is_Abstract_Subprogram (Alias (New_Subp))
14846                    or else (Is_Tagged_Type (Derived_Type)
14847                              and then Etype (New_Subp) = Derived_Type
14848                              and then not Is_Null_Extension (Derived_Type))
14849                    or else (Is_Tagged_Type (Derived_Type)
14850                              and then Ekind (Etype (New_Subp)) =
14851                                                        E_Anonymous_Access_Type
14852                              and then Designated_Type (Etype (New_Subp)) =
14853                                                         Derived_Type
14854                              and then not Is_Null_Extension (Derived_Type))
14855                    or else (Comes_From_Source (Alias (New_Subp))
14856                              and then Is_EVF_Procedure (Alias (New_Subp))))
14857         and then No (Actual_Subp)
14858       then
14859          if not Is_Tagged_Type (Derived_Type)
14860            or else Is_Abstract_Type (Derived_Type)
14861            or else Is_Abstract_Subprogram (Alias (New_Subp))
14862          then
14863             Set_Is_Abstract_Subprogram (New_Subp);
14864          else
14865             Set_Requires_Overriding (New_Subp);
14866          end if;
14867
14868       elsif Ada_Version < Ada_2005
14869         and then (Is_Abstract_Subprogram (Alias (New_Subp))
14870                    or else (Is_Tagged_Type (Derived_Type)
14871                              and then Etype (New_Subp) = Derived_Type
14872                              and then No (Actual_Subp)))
14873       then
14874          Set_Is_Abstract_Subprogram (New_Subp);
14875
14876       --  AI05-0097 : an inherited operation that dispatches on result is
14877       --  abstract if the derived type is abstract, even if the parent type
14878       --  is concrete and the derived type is a null extension.
14879
14880       elsif Has_Controlling_Result (Alias (New_Subp))
14881         and then Is_Abstract_Type (Etype (New_Subp))
14882       then
14883          Set_Is_Abstract_Subprogram (New_Subp);
14884
14885       --  Finally, if the parent type is abstract we must verify that all
14886       --  inherited operations are either non-abstract or overridden, or that
14887       --  the derived type itself is abstract (this check is performed at the
14888       --  end of a package declaration, in Check_Abstract_Overriding). A
14889       --  private overriding in the parent type will not be visible in the
14890       --  derivation if we are not in an inner package or in a child unit of
14891       --  the parent type, in which case the abstractness of the inherited
14892       --  operation is carried to the new subprogram.
14893
14894       elsif Is_Abstract_Type (Parent_Type)
14895         and then not In_Open_Scopes (Scope (Parent_Type))
14896         and then Is_Private_Overriding
14897         and then Is_Abstract_Subprogram (Visible_Subp)
14898       then
14899          if No (Actual_Subp) then
14900             Set_Alias (New_Subp, Visible_Subp);
14901             Set_Is_Abstract_Subprogram (New_Subp, True);
14902
14903          else
14904             --  If this is a derivation for an instance of a formal derived
14905             --  type, abstractness comes from the primitive operation of the
14906             --  actual, not from the operation inherited from the ancestor.
14907
14908             Set_Is_Abstract_Subprogram
14909               (New_Subp, Is_Abstract_Subprogram (Actual_Subp));
14910          end if;
14911       end if;
14912
14913       New_Overloaded_Entity (New_Subp, Derived_Type);
14914
14915       --  Check for case of a derived subprogram for the instantiation of a
14916       --  formal derived tagged type, if so mark the subprogram as dispatching
14917       --  and inherit the dispatching attributes of the actual subprogram. The
14918       --  derived subprogram is effectively renaming of the actual subprogram,
14919       --  so it needs to have the same attributes as the actual.
14920
14921       if Present (Actual_Subp)
14922         and then Is_Dispatching_Operation (Actual_Subp)
14923       then
14924          Set_Is_Dispatching_Operation (New_Subp);
14925
14926          if Present (DTC_Entity (Actual_Subp)) then
14927             Set_DTC_Entity (New_Subp, DTC_Entity (Actual_Subp));
14928             Set_DT_Position_Value (New_Subp, DT_Position (Actual_Subp));
14929          end if;
14930       end if;
14931
14932       --  Indicate that a derived subprogram does not require a body and that
14933       --  it does not require processing of default expressions.
14934
14935       Set_Has_Completion (New_Subp);
14936       Set_Default_Expressions_Processed (New_Subp);
14937
14938       if Ekind (New_Subp) = E_Function then
14939          Set_Mechanism (New_Subp, Mechanism (Parent_Subp));
14940       end if;
14941    end Derive_Subprogram;
14942
14943    ------------------------
14944    -- Derive_Subprograms --
14945    ------------------------
14946
14947    procedure Derive_Subprograms
14948      (Parent_Type    : Entity_Id;
14949       Derived_Type   : Entity_Id;
14950       Generic_Actual : Entity_Id := Empty)
14951    is
14952       Op_List : constant Elist_Id :=
14953                   Collect_Primitive_Operations (Parent_Type);
14954
14955       function Check_Derived_Type return Boolean;
14956       --  Check that all the entities derived from Parent_Type are found in
14957       --  the list of primitives of Derived_Type exactly in the same order.
14958
14959       procedure Derive_Interface_Subprogram
14960         (New_Subp    : in out Entity_Id;
14961          Subp        : Entity_Id;
14962          Actual_Subp : Entity_Id);
14963       --  Derive New_Subp from the ultimate alias of the parent subprogram Subp
14964       --  (which is an interface primitive). If Generic_Actual is present then
14965       --  Actual_Subp is the actual subprogram corresponding with the generic
14966       --  subprogram Subp.
14967
14968       function Check_Derived_Type return Boolean is
14969          E        : Entity_Id;
14970          Elmt     : Elmt_Id;
14971          List     : Elist_Id;
14972          New_Subp : Entity_Id;
14973          Op_Elmt  : Elmt_Id;
14974          Subp     : Entity_Id;
14975
14976       begin
14977          --  Traverse list of entities in the current scope searching for
14978          --  an incomplete type whose full-view is derived type
14979
14980          E := First_Entity (Scope (Derived_Type));
14981          while Present (E) and then E /= Derived_Type loop
14982             if Ekind (E) = E_Incomplete_Type
14983               and then Present (Full_View (E))
14984               and then Full_View (E) = Derived_Type
14985             then
14986                --  Disable this test if Derived_Type completes an incomplete
14987                --  type because in such case more primitives can be added
14988                --  later to the list of primitives of Derived_Type by routine
14989                --  Process_Incomplete_Dependents
14990
14991                return True;
14992             end if;
14993
14994             E := Next_Entity (E);
14995          end loop;
14996
14997          List := Collect_Primitive_Operations (Derived_Type);
14998          Elmt := First_Elmt (List);
14999
15000          Op_Elmt := First_Elmt (Op_List);
15001          while Present (Op_Elmt) loop
15002             Subp     := Node (Op_Elmt);
15003             New_Subp := Node (Elmt);
15004
15005             --  At this early stage Derived_Type has no entities with attribute
15006             --  Interface_Alias. In addition, such primitives are always
15007             --  located at the end of the list of primitives of Parent_Type.
15008             --  Therefore, if found we can safely stop processing pending
15009             --  entities.
15010
15011             exit when Present (Interface_Alias (Subp));
15012
15013             --  Handle hidden entities
15014
15015             if not Is_Predefined_Dispatching_Operation (Subp)
15016               and then Is_Hidden (Subp)
15017             then
15018                if Present (New_Subp)
15019                  and then Primitive_Names_Match (Subp, New_Subp)
15020                then
15021                   Next_Elmt (Elmt);
15022                end if;
15023
15024             else
15025                if not Present (New_Subp)
15026                  or else Ekind (Subp) /= Ekind (New_Subp)
15027                  or else not Primitive_Names_Match (Subp, New_Subp)
15028                then
15029                   return False;
15030                end if;
15031
15032                Next_Elmt (Elmt);
15033             end if;
15034
15035             Next_Elmt (Op_Elmt);
15036          end loop;
15037
15038          return True;
15039       end Check_Derived_Type;
15040
15041       ---------------------------------
15042       -- Derive_Interface_Subprogram --
15043       ---------------------------------
15044
15045       procedure Derive_Interface_Subprogram
15046         (New_Subp    : in out Entity_Id;
15047          Subp        : Entity_Id;
15048          Actual_Subp : Entity_Id)
15049       is
15050          Iface_Subp : constant Entity_Id := Ultimate_Alias (Subp);
15051          Iface_Type : constant Entity_Id := Find_Dispatching_Type (Iface_Subp);
15052
15053       begin
15054          pragma Assert (Is_Interface (Iface_Type));
15055
15056          Derive_Subprogram
15057            (New_Subp     => New_Subp,
15058             Parent_Subp  => Iface_Subp,
15059             Derived_Type => Derived_Type,
15060             Parent_Type  => Iface_Type,
15061             Actual_Subp  => Actual_Subp);
15062
15063          --  Given that this new interface entity corresponds with a primitive
15064          --  of the parent that was not overridden we must leave it associated
15065          --  with its parent primitive to ensure that it will share the same
15066          --  dispatch table slot when overridden. We must set the Alias to Subp
15067          --  (instead of Iface_Subp), and we must fix Is_Abstract_Subprogram
15068          --  (in case we inherited Subp from Iface_Type via a nonabstract
15069          --  generic formal type).
15070
15071          if No (Actual_Subp) then
15072             Set_Alias (New_Subp, Subp);
15073
15074             declare
15075                T : Entity_Id := Find_Dispatching_Type (Subp);
15076             begin
15077                while Etype (T) /= T loop
15078                   if Is_Generic_Type (T) and then not Is_Abstract_Type (T) then
15079                      Set_Is_Abstract_Subprogram (New_Subp, False);
15080                      exit;
15081                   end if;
15082
15083                   T := Etype (T);
15084                end loop;
15085             end;
15086
15087          --  For instantiations this is not needed since the previous call to
15088          --  Derive_Subprogram leaves the entity well decorated.
15089
15090          else
15091             pragma Assert (Alias (New_Subp) = Actual_Subp);
15092             null;
15093          end if;
15094       end Derive_Interface_Subprogram;
15095
15096       --  Local variables
15097
15098       Alias_Subp   : Entity_Id;
15099       Act_List     : Elist_Id;
15100       Act_Elmt     : Elmt_Id;
15101       Act_Subp     : Entity_Id := Empty;
15102       Elmt         : Elmt_Id;
15103       Need_Search  : Boolean   := False;
15104       New_Subp     : Entity_Id := Empty;
15105       Parent_Base  : Entity_Id;
15106       Subp         : Entity_Id;
15107
15108    --  Start of processing for Derive_Subprograms
15109
15110    begin
15111       if Ekind (Parent_Type) = E_Record_Type_With_Private
15112         and then Has_Discriminants (Parent_Type)
15113         and then Present (Full_View (Parent_Type))
15114       then
15115          Parent_Base := Full_View (Parent_Type);
15116       else
15117          Parent_Base := Parent_Type;
15118       end if;
15119
15120       if Present (Generic_Actual) then
15121          Act_List := Collect_Primitive_Operations (Generic_Actual);
15122          Act_Elmt := First_Elmt (Act_List);
15123       else
15124          Act_List := No_Elist;
15125          Act_Elmt := No_Elmt;
15126       end if;
15127
15128       --  Derive primitives inherited from the parent. Note that if the generic
15129       --  actual is present, this is not really a type derivation, it is a
15130       --  completion within an instance.
15131
15132       --  Case 1: Derived_Type does not implement interfaces
15133
15134       if not Is_Tagged_Type (Derived_Type)
15135         or else (not Has_Interfaces (Derived_Type)
15136                   and then not (Present (Generic_Actual)
15137                                  and then Has_Interfaces (Generic_Actual)))
15138       then
15139          Elmt := First_Elmt (Op_List);
15140          while Present (Elmt) loop
15141             Subp := Node (Elmt);
15142
15143             --  Literals are derived earlier in the process of building the
15144             --  derived type, and are skipped here.
15145
15146             if Ekind (Subp) = E_Enumeration_Literal then
15147                null;
15148
15149             --  The actual is a direct descendant and the common primitive
15150             --  operations appear in the same order.
15151
15152             --  If the generic parent type is present, the derived type is an
15153             --  instance of a formal derived type, and within the instance its
15154             --  operations are those of the actual. We derive from the formal
15155             --  type but make the inherited operations aliases of the
15156             --  corresponding operations of the actual.
15157
15158             else
15159                pragma Assert (No (Node (Act_Elmt))
15160                  or else (Primitive_Names_Match (Subp, Node (Act_Elmt))
15161                            and then
15162                              Type_Conformant
15163                                (Subp, Node (Act_Elmt),
15164                                 Skip_Controlling_Formals => True)));
15165
15166                Derive_Subprogram
15167                  (New_Subp, Subp, Derived_Type, Parent_Base, Node (Act_Elmt));
15168
15169                if Present (Act_Elmt) then
15170                   Next_Elmt (Act_Elmt);
15171                end if;
15172             end if;
15173
15174             Next_Elmt (Elmt);
15175          end loop;
15176
15177       --  Case 2: Derived_Type implements interfaces
15178
15179       else
15180          --  If the parent type has no predefined primitives we remove
15181          --  predefined primitives from the list of primitives of generic
15182          --  actual to simplify the complexity of this algorithm.
15183
15184          if Present (Generic_Actual) then
15185             declare
15186                Has_Predefined_Primitives : Boolean := False;
15187
15188             begin
15189                --  Check if the parent type has predefined primitives
15190
15191                Elmt := First_Elmt (Op_List);
15192                while Present (Elmt) loop
15193                   Subp := Node (Elmt);
15194
15195                   if Is_Predefined_Dispatching_Operation (Subp)
15196                     and then not Comes_From_Source (Ultimate_Alias (Subp))
15197                   then
15198                      Has_Predefined_Primitives := True;
15199                      exit;
15200                   end if;
15201
15202                   Next_Elmt (Elmt);
15203                end loop;
15204
15205                --  Remove predefined primitives of Generic_Actual. We must use
15206                --  an auxiliary list because in case of tagged types the value
15207                --  returned by Collect_Primitive_Operations is the value stored
15208                --  in its Primitive_Operations attribute (and we don't want to
15209                --  modify its current contents).
15210
15211                if not Has_Predefined_Primitives then
15212                   declare
15213                      Aux_List : constant Elist_Id := New_Elmt_List;
15214
15215                   begin
15216                      Elmt := First_Elmt (Act_List);
15217                      while Present (Elmt) loop
15218                         Subp := Node (Elmt);
15219
15220                         if not Is_Predefined_Dispatching_Operation (Subp)
15221                           or else Comes_From_Source (Subp)
15222                         then
15223                            Append_Elmt (Subp, Aux_List);
15224                         end if;
15225
15226                         Next_Elmt (Elmt);
15227                      end loop;
15228
15229                      Act_List := Aux_List;
15230                   end;
15231                end if;
15232
15233                Act_Elmt := First_Elmt (Act_List);
15234                Act_Subp := Node (Act_Elmt);
15235             end;
15236          end if;
15237
15238          --  Stage 1: If the generic actual is not present we derive the
15239          --  primitives inherited from the parent type. If the generic parent
15240          --  type is present, the derived type is an instance of a formal
15241          --  derived type, and within the instance its operations are those of
15242          --  the actual. We derive from the formal type but make the inherited
15243          --  operations aliases of the corresponding operations of the actual.
15244
15245          Elmt := First_Elmt (Op_List);
15246          while Present (Elmt) loop
15247             Subp       := Node (Elmt);
15248             Alias_Subp := Ultimate_Alias (Subp);
15249
15250             --  Do not derive internal entities of the parent that link
15251             --  interface primitives with their covering primitive. These
15252             --  entities will be added to this type when frozen.
15253
15254             if Present (Interface_Alias (Subp)) then
15255                goto Continue;
15256             end if;
15257
15258             --  If the generic actual is present find the corresponding
15259             --  operation in the generic actual. If the parent type is a
15260             --  direct ancestor of the derived type then, even if it is an
15261             --  interface, the operations are inherited from the primary
15262             --  dispatch table and are in the proper order. If we detect here
15263             --  that primitives are not in the same order we traverse the list
15264             --  of primitive operations of the actual to find the one that
15265             --  implements the interface primitive.
15266
15267             if Need_Search
15268               or else
15269                 (Present (Generic_Actual)
15270                   and then Present (Act_Subp)
15271                   and then not
15272                     (Primitive_Names_Match (Subp, Act_Subp)
15273                        and then
15274                      Type_Conformant (Subp, Act_Subp,
15275                                       Skip_Controlling_Formals => True)))
15276             then
15277                pragma Assert (not Is_Ancestor (Parent_Base, Generic_Actual,
15278                                                Use_Full_View => True));
15279
15280                --  Remember that we need searching for all pending primitives
15281
15282                Need_Search := True;
15283
15284                --  Handle entities associated with interface primitives
15285
15286                if Present (Alias_Subp)
15287                  and then Is_Interface (Find_Dispatching_Type (Alias_Subp))
15288                  and then not Is_Predefined_Dispatching_Operation (Subp)
15289                then
15290                   --  Search for the primitive in the homonym chain
15291
15292                   Act_Subp :=
15293                     Find_Primitive_Covering_Interface
15294                       (Tagged_Type => Generic_Actual,
15295                        Iface_Prim  => Alias_Subp);
15296
15297                   --  Previous search may not locate primitives covering
15298                   --  interfaces defined in generics units or instantiations.
15299                   --  (it fails if the covering primitive has formals whose
15300                   --  type is also defined in generics or instantiations).
15301                   --  In such case we search in the list of primitives of the
15302                   --  generic actual for the internal entity that links the
15303                   --  interface primitive and the covering primitive.
15304
15305                   if No (Act_Subp)
15306                     and then Is_Generic_Type (Parent_Type)
15307                   then
15308                      --  This code has been designed to handle only generic
15309                      --  formals that implement interfaces that are defined
15310                      --  in a generic unit or instantiation. If this code is
15311                      --  needed for other cases we must review it because
15312                      --  (given that it relies on Original_Location to locate
15313                      --  the primitive of Generic_Actual that covers the
15314                      --  interface) it could leave linked through attribute
15315                      --  Alias entities of unrelated instantiations).
15316
15317                      pragma Assert
15318                        (Is_Generic_Unit
15319                           (Scope (Find_Dispatching_Type (Alias_Subp)))
15320                          or else
15321                            Instantiation_Depth
15322                              (Sloc (Find_Dispatching_Type (Alias_Subp))) > 0);
15323
15324                      declare
15325                         Iface_Prim_Loc : constant Source_Ptr :=
15326                                          Original_Location (Sloc (Alias_Subp));
15327
15328                         Elmt : Elmt_Id;
15329                         Prim : Entity_Id;
15330
15331                      begin
15332                         Elmt :=
15333                           First_Elmt (Primitive_Operations (Generic_Actual));
15334
15335                         Search : while Present (Elmt) loop
15336                            Prim := Node (Elmt);
15337
15338                            if Present (Interface_Alias (Prim))
15339                              and then Original_Location
15340                                         (Sloc (Interface_Alias (Prim))) =
15341                                                               Iface_Prim_Loc
15342                            then
15343                               Act_Subp := Alias (Prim);
15344                               exit Search;
15345                            end if;
15346
15347                            Next_Elmt (Elmt);
15348                         end loop Search;
15349                      end;
15350                   end if;
15351
15352                   pragma Assert (Present (Act_Subp)
15353                     or else Is_Abstract_Type (Generic_Actual)
15354                     or else Serious_Errors_Detected > 0);
15355
15356                --  Handle predefined primitives plus the rest of user-defined
15357                --  primitives
15358
15359                else
15360                   Act_Elmt := First_Elmt (Act_List);
15361                   while Present (Act_Elmt) loop
15362                      Act_Subp := Node (Act_Elmt);
15363
15364                      exit when Primitive_Names_Match (Subp, Act_Subp)
15365                        and then Type_Conformant
15366                                   (Subp, Act_Subp,
15367                                    Skip_Controlling_Formals => True)
15368                        and then No (Interface_Alias (Act_Subp));
15369
15370                      Next_Elmt (Act_Elmt);
15371                   end loop;
15372
15373                   if No (Act_Elmt) then
15374                      Act_Subp := Empty;
15375                   end if;
15376                end if;
15377             end if;
15378
15379             --   Case 1: If the parent is a limited interface then it has the
15380             --   predefined primitives of synchronized interfaces. However, the
15381             --   actual type may be a non-limited type and hence it does not
15382             --   have such primitives.
15383
15384             if Present (Generic_Actual)
15385               and then not Present (Act_Subp)
15386               and then Is_Limited_Interface (Parent_Base)
15387               and then Is_Predefined_Interface_Primitive (Subp)
15388             then
15389                null;
15390
15391             --  Case 2: Inherit entities associated with interfaces that were
15392             --  not covered by the parent type. We exclude here null interface
15393             --  primitives because they do not need special management.
15394
15395             --  We also exclude interface operations that are renamings. If the
15396             --  subprogram is an explicit renaming of an interface primitive,
15397             --  it is a regular primitive operation, and the presence of its
15398             --  alias is not relevant: it has to be derived like any other
15399             --  primitive.
15400
15401             elsif Present (Alias (Subp))
15402               and then Nkind (Unit_Declaration_Node (Subp)) /=
15403                                             N_Subprogram_Renaming_Declaration
15404               and then Is_Interface (Find_Dispatching_Type (Alias_Subp))
15405               and then not
15406                 (Nkind (Parent (Alias_Subp)) = N_Procedure_Specification
15407                   and then Null_Present (Parent (Alias_Subp)))
15408             then
15409                --  If this is an abstract private type then we transfer the
15410                --  derivation of the interface primitive from the partial view
15411                --  to the full view. This is safe because all the interfaces
15412                --  must be visible in the partial view. Done to avoid adding
15413                --  a new interface derivation to the private part of the
15414                --  enclosing package; otherwise this new derivation would be
15415                --  decorated as hidden when the analysis of the enclosing
15416                --  package completes.
15417
15418                if Is_Abstract_Type (Derived_Type)
15419                  and then In_Private_Part (Current_Scope)
15420                  and then Has_Private_Declaration (Derived_Type)
15421                then
15422                   declare
15423                      Partial_View : Entity_Id;
15424                      Elmt         : Elmt_Id;
15425                      Ent          : Entity_Id;
15426
15427                   begin
15428                      Partial_View := First_Entity (Current_Scope);
15429                      loop
15430                         exit when No (Partial_View)
15431                           or else (Has_Private_Declaration (Partial_View)
15432                                     and then
15433                                       Full_View (Partial_View) = Derived_Type);
15434
15435                         Next_Entity (Partial_View);
15436                      end loop;
15437
15438                      --  If the partial view was not found then the source code
15439                      --  has errors and the derivation is not needed.
15440
15441                      if Present (Partial_View) then
15442                         Elmt :=
15443                           First_Elmt (Primitive_Operations (Partial_View));
15444                         while Present (Elmt) loop
15445                            Ent := Node (Elmt);
15446
15447                            if Present (Alias (Ent))
15448                              and then Ultimate_Alias (Ent) = Alias (Subp)
15449                            then
15450                               Append_Elmt
15451                                 (Ent, Primitive_Operations (Derived_Type));
15452                               exit;
15453                            end if;
15454
15455                            Next_Elmt (Elmt);
15456                         end loop;
15457
15458                         --  If the interface primitive was not found in the
15459                         --  partial view then this interface primitive was
15460                         --  overridden. We add a derivation to activate in
15461                         --  Derive_Progenitor_Subprograms the machinery to
15462                         --  search for it.
15463
15464                         if No (Elmt) then
15465                            Derive_Interface_Subprogram
15466                              (New_Subp    => New_Subp,
15467                               Subp        => Subp,
15468                               Actual_Subp => Act_Subp);
15469                         end if;
15470                      end if;
15471                   end;
15472                else
15473                   Derive_Interface_Subprogram
15474                     (New_Subp     => New_Subp,
15475                      Subp         => Subp,
15476                      Actual_Subp  => Act_Subp);
15477                end if;
15478
15479             --  Case 3: Common derivation
15480
15481             else
15482                Derive_Subprogram
15483                  (New_Subp     => New_Subp,
15484                   Parent_Subp  => Subp,
15485                   Derived_Type => Derived_Type,
15486                   Parent_Type  => Parent_Base,
15487                   Actual_Subp  => Act_Subp);
15488             end if;
15489
15490             --  No need to update Act_Elm if we must search for the
15491             --  corresponding operation in the generic actual
15492
15493             if not Need_Search
15494               and then Present (Act_Elmt)
15495             then
15496                Next_Elmt (Act_Elmt);
15497                Act_Subp := Node (Act_Elmt);
15498             end if;
15499
15500             <<Continue>>
15501             Next_Elmt (Elmt);
15502          end loop;
15503
15504          --  Inherit additional operations from progenitors. If the derived
15505          --  type is a generic actual, there are not new primitive operations
15506          --  for the type because it has those of the actual, and therefore
15507          --  nothing needs to be done. The renamings generated above are not
15508          --  primitive operations, and their purpose is simply to make the
15509          --  proper operations visible within an instantiation.
15510
15511          if No (Generic_Actual) then
15512             Derive_Progenitor_Subprograms (Parent_Base, Derived_Type);
15513          end if;
15514       end if;
15515
15516       --  Final check: Direct descendants must have their primitives in the
15517       --  same order. We exclude from this test untagged types and instances
15518       --  of formal derived types. We skip this test if we have already
15519       --  reported serious errors in the sources.
15520
15521       pragma Assert (not Is_Tagged_Type (Derived_Type)
15522         or else Present (Generic_Actual)
15523         or else Serious_Errors_Detected > 0
15524         or else Check_Derived_Type);
15525    end Derive_Subprograms;
15526
15527    --------------------------------
15528    -- Derived_Standard_Character --
15529    --------------------------------
15530
15531    procedure Derived_Standard_Character
15532      (N            : Node_Id;
15533       Parent_Type  : Entity_Id;
15534       Derived_Type : Entity_Id)
15535    is
15536       Loc           : constant Source_Ptr := Sloc (N);
15537       Def           : constant Node_Id    := Type_Definition (N);
15538       Indic         : constant Node_Id    := Subtype_Indication (Def);
15539       Parent_Base   : constant Entity_Id  := Base_Type (Parent_Type);
15540       Implicit_Base : constant Entity_Id  :=
15541                         Create_Itype
15542                           (E_Enumeration_Type, N, Derived_Type, 'B');
15543
15544       Lo : Node_Id;
15545       Hi : Node_Id;
15546
15547    begin
15548       Discard_Node (Process_Subtype (Indic, N));
15549
15550       Set_Etype     (Implicit_Base, Parent_Base);
15551       Set_Size_Info (Implicit_Base, Root_Type (Parent_Type));
15552       Set_RM_Size   (Implicit_Base, RM_Size (Root_Type (Parent_Type)));
15553
15554       Set_Is_Character_Type  (Implicit_Base, True);
15555       Set_Has_Delayed_Freeze (Implicit_Base);
15556
15557       --  The bounds of the implicit base are the bounds of the parent base.
15558       --  Note that their type is the parent base.
15559
15560       Lo := New_Copy_Tree (Type_Low_Bound  (Parent_Base));
15561       Hi := New_Copy_Tree (Type_High_Bound (Parent_Base));
15562
15563       Set_Scalar_Range (Implicit_Base,
15564         Make_Range (Loc,
15565           Low_Bound  => Lo,
15566           High_Bound => Hi));
15567
15568       Conditional_Delay (Derived_Type, Parent_Type);
15569
15570       Set_Ekind (Derived_Type, E_Enumeration_Subtype);
15571       Set_Etype (Derived_Type, Implicit_Base);
15572       Set_Size_Info         (Derived_Type, Parent_Type);
15573
15574       if Unknown_RM_Size (Derived_Type) then
15575          Set_RM_Size (Derived_Type, RM_Size (Parent_Type));
15576       end if;
15577
15578       Set_Is_Character_Type (Derived_Type, True);
15579
15580       if Nkind (Indic) /= N_Subtype_Indication then
15581
15582          --  If no explicit constraint, the bounds are those
15583          --  of the parent type.
15584
15585          Lo := New_Copy_Tree (Type_Low_Bound  (Parent_Type));
15586          Hi := New_Copy_Tree (Type_High_Bound (Parent_Type));
15587          Set_Scalar_Range (Derived_Type, Make_Range (Loc, Lo, Hi));
15588       end if;
15589
15590       Convert_Scalar_Bounds (N, Parent_Type, Derived_Type, Loc);
15591
15592       --  Because the implicit base is used in the conversion of the bounds, we
15593       --  have to freeze it now. This is similar to what is done for numeric
15594       --  types, and it equally suspicious, but otherwise a non-static bound
15595       --  will have a reference to an unfrozen type, which is rejected by Gigi
15596       --  (???). This requires specific care for definition of stream
15597       --  attributes. For details, see comments at the end of
15598       --  Build_Derived_Numeric_Type.
15599
15600       Freeze_Before (N, Implicit_Base);
15601    end Derived_Standard_Character;
15602
15603    ------------------------------
15604    -- Derived_Type_Declaration --
15605    ------------------------------
15606
15607    procedure Derived_Type_Declaration
15608      (T             : Entity_Id;
15609       N             : Node_Id;
15610       Is_Completion : Boolean)
15611    is
15612       Parent_Type  : Entity_Id;
15613
15614       function Comes_From_Generic (Typ : Entity_Id) return Boolean;
15615       --  Check whether the parent type is a generic formal, or derives
15616       --  directly or indirectly from one.
15617
15618       ------------------------
15619       -- Comes_From_Generic --
15620       ------------------------
15621
15622       function Comes_From_Generic (Typ : Entity_Id) return Boolean is
15623       begin
15624          if Is_Generic_Type (Typ) then
15625             return True;
15626
15627          elsif Is_Generic_Type (Root_Type (Parent_Type)) then
15628             return True;
15629
15630          elsif Is_Private_Type (Typ)
15631            and then Present (Full_View (Typ))
15632            and then Is_Generic_Type (Root_Type (Full_View (Typ)))
15633          then
15634             return True;
15635
15636          elsif Is_Generic_Actual_Type (Typ) then
15637             return True;
15638
15639          else
15640             return False;
15641          end if;
15642       end Comes_From_Generic;
15643
15644       --  Local variables
15645
15646       Def          : constant Node_Id := Type_Definition (N);
15647       Iface_Def    : Node_Id;
15648       Indic        : constant Node_Id := Subtype_Indication (Def);
15649       Extension    : constant Node_Id := Record_Extension_Part (Def);
15650       Parent_Node  : Node_Id;
15651       Taggd        : Boolean;
15652
15653    --  Start of processing for Derived_Type_Declaration
15654
15655    begin
15656       Parent_Type := Find_Type_Of_Subtype_Indic (Indic);
15657
15658       --  Ada 2005 (AI-251): In case of interface derivation check that the
15659       --  parent is also an interface.
15660
15661       if Interface_Present (Def) then
15662          Check_SPARK_05_Restriction ("interface is not allowed", Def);
15663
15664          if not Is_Interface (Parent_Type) then
15665             Diagnose_Interface (Indic, Parent_Type);
15666
15667          else
15668             Parent_Node := Parent (Base_Type (Parent_Type));
15669             Iface_Def   := Type_Definition (Parent_Node);
15670
15671             --  Ada 2005 (AI-251): Limited interfaces can only inherit from
15672             --  other limited interfaces.
15673
15674             if Limited_Present (Def) then
15675                if Limited_Present (Iface_Def) then
15676                   null;
15677
15678                elsif Protected_Present (Iface_Def) then
15679                   Error_Msg_NE
15680                     ("descendant of & must be declared as a protected "
15681                      & "interface", N, Parent_Type);
15682
15683                elsif Synchronized_Present (Iface_Def) then
15684                   Error_Msg_NE
15685                     ("descendant of & must be declared as a synchronized "
15686                      & "interface", N, Parent_Type);
15687
15688                elsif Task_Present (Iface_Def) then
15689                   Error_Msg_NE
15690                     ("descendant of & must be declared as a task interface",
15691                        N, Parent_Type);
15692
15693                else
15694                   Error_Msg_N
15695                     ("(Ada 2005) limited interface cannot inherit from "
15696                      & "non-limited interface", Indic);
15697                end if;
15698
15699             --  Ada 2005 (AI-345): Non-limited interfaces can only inherit
15700             --  from non-limited or limited interfaces.
15701
15702             elsif not Protected_Present (Def)
15703               and then not Synchronized_Present (Def)
15704               and then not Task_Present (Def)
15705             then
15706                if Limited_Present (Iface_Def) then
15707                   null;
15708
15709                elsif Protected_Present (Iface_Def) then
15710                   Error_Msg_NE
15711                     ("descendant of & must be declared as a protected "
15712                      & "interface", N, Parent_Type);
15713
15714                elsif Synchronized_Present (Iface_Def) then
15715                   Error_Msg_NE
15716                     ("descendant of & must be declared as a synchronized "
15717                      & "interface", N, Parent_Type);
15718
15719                elsif Task_Present (Iface_Def) then
15720                   Error_Msg_NE
15721                     ("descendant of & must be declared as a task interface",
15722                        N, Parent_Type);
15723                else
15724                   null;
15725                end if;
15726             end if;
15727          end if;
15728       end if;
15729
15730       if Is_Tagged_Type (Parent_Type)
15731         and then Is_Concurrent_Type (Parent_Type)
15732         and then not Is_Interface (Parent_Type)
15733       then
15734          Error_Msg_N
15735            ("parent type of a record extension cannot be a synchronized "
15736             & "tagged type (RM 3.9.1 (3/1))", N);
15737          Set_Etype (T, Any_Type);
15738          return;
15739       end if;
15740
15741       --  Ada 2005 (AI-251): Decorate all the names in the list of ancestor
15742       --  interfaces
15743
15744       if Is_Tagged_Type (Parent_Type)
15745         and then Is_Non_Empty_List (Interface_List (Def))
15746       then
15747          declare
15748             Intf : Node_Id;
15749             T    : Entity_Id;
15750
15751          begin
15752             Intf := First (Interface_List (Def));
15753             while Present (Intf) loop
15754                T := Find_Type_Of_Subtype_Indic (Intf);
15755
15756                if not Is_Interface (T) then
15757                   Diagnose_Interface (Intf, T);
15758
15759                --  Check the rules of 3.9.4(12/2) and 7.5(2/2) that disallow
15760                --  a limited type from having a nonlimited progenitor.
15761
15762                elsif (Limited_Present (Def)
15763                        or else (not Is_Interface (Parent_Type)
15764                                  and then Is_Limited_Type (Parent_Type)))
15765                  and then not Is_Limited_Interface (T)
15766                then
15767                   Error_Msg_NE
15768                    ("progenitor interface& of limited type must be limited",
15769                      N, T);
15770                end if;
15771
15772                Next (Intf);
15773             end loop;
15774          end;
15775       end if;
15776
15777       if Parent_Type = Any_Type
15778         or else Etype (Parent_Type) = Any_Type
15779         or else (Is_Class_Wide_Type (Parent_Type)
15780                   and then Etype (Parent_Type) = T)
15781       then
15782          --  If Parent_Type is undefined or illegal, make new type into a
15783          --  subtype of Any_Type, and set a few attributes to prevent cascaded
15784          --  errors. If this is a self-definition, emit error now.
15785
15786          if T = Parent_Type or else T = Etype (Parent_Type) then
15787             Error_Msg_N ("type cannot be used in its own definition", Indic);
15788          end if;
15789
15790          Set_Ekind        (T, Ekind (Parent_Type));
15791          Set_Etype        (T, Any_Type);
15792          Set_Scalar_Range (T, Scalar_Range (Any_Type));
15793
15794          if Is_Tagged_Type (T)
15795            and then Is_Record_Type (T)
15796          then
15797             Set_Direct_Primitive_Operations (T, New_Elmt_List);
15798          end if;
15799
15800          return;
15801       end if;
15802
15803       --  Ada 2005 (AI-251): The case in which the parent of the full-view is
15804       --  an interface is special because the list of interfaces in the full
15805       --  view can be given in any order. For example:
15806
15807       --     type A is interface;
15808       --     type B is interface and A;
15809       --     type D is new B with private;
15810       --   private
15811       --     type D is new A and B with null record; -- 1 --
15812
15813       --  In this case we perform the following transformation of -1-:
15814
15815       --     type D is new B and A with null record;
15816
15817       --  If the parent of the full-view covers the parent of the partial-view
15818       --  we have two possible cases:
15819
15820       --     1) They have the same parent
15821       --     2) The parent of the full-view implements some further interfaces
15822
15823       --  In both cases we do not need to perform the transformation. In the
15824       --  first case the source program is correct and the transformation is
15825       --  not needed; in the second case the source program does not fulfill
15826       --  the no-hidden interfaces rule (AI-396) and the error will be reported
15827       --  later.
15828
15829       --  This transformation not only simplifies the rest of the analysis of
15830       --  this type declaration but also simplifies the correct generation of
15831       --  the object layout to the expander.
15832
15833       if In_Private_Part (Current_Scope)
15834         and then Is_Interface (Parent_Type)
15835       then
15836          declare
15837             Iface               : Node_Id;
15838             Partial_View        : Entity_Id;
15839             Partial_View_Parent : Entity_Id;
15840             New_Iface           : Node_Id;
15841
15842          begin
15843             --  Look for the associated private type declaration
15844
15845             Partial_View := First_Entity (Current_Scope);
15846             loop
15847                exit when No (Partial_View)
15848                  or else (Has_Private_Declaration (Partial_View)
15849                            and then Full_View (Partial_View) = T);
15850
15851                Next_Entity (Partial_View);
15852             end loop;
15853
15854             --  If the partial view was not found then the source code has
15855             --  errors and the transformation is not needed.
15856
15857             if Present (Partial_View) then
15858                Partial_View_Parent := Etype (Partial_View);
15859
15860                --  If the parent of the full-view covers the parent of the
15861                --  partial-view we have nothing else to do.
15862
15863                if Interface_Present_In_Ancestor
15864                     (Parent_Type, Partial_View_Parent)
15865                then
15866                   null;
15867
15868                --  Traverse the list of interfaces of the full-view to look
15869                --  for the parent of the partial-view and perform the tree
15870                --  transformation.
15871
15872                else
15873                   Iface := First (Interface_List (Def));
15874                   while Present (Iface) loop
15875                      if Etype (Iface) = Etype (Partial_View) then
15876                         Rewrite (Subtype_Indication (Def),
15877                           New_Copy (Subtype_Indication
15878                                      (Parent (Partial_View))));
15879
15880                         New_Iface :=
15881                           Make_Identifier (Sloc (N), Chars (Parent_Type));
15882                         Append (New_Iface, Interface_List (Def));
15883
15884                         --  Analyze the transformed code
15885
15886                         Derived_Type_Declaration (T, N, Is_Completion);
15887                         return;
15888                      end if;
15889
15890                      Next (Iface);
15891                   end loop;
15892                end if;
15893             end if;
15894          end;
15895       end if;
15896
15897       --  Only composite types other than array types are allowed to have
15898       --  discriminants.
15899
15900       if Present (Discriminant_Specifications (N)) then
15901          if (Is_Elementary_Type (Parent_Type)
15902                or else
15903              Is_Array_Type      (Parent_Type))
15904            and then not Error_Posted (N)
15905          then
15906             Error_Msg_N
15907               ("elementary or array type cannot have discriminants",
15908                Defining_Identifier (First (Discriminant_Specifications (N))));
15909             Set_Has_Discriminants (T, False);
15910
15911          --  The type is allowed to have discriminants
15912
15913          else
15914             Check_SPARK_05_Restriction ("discriminant type is not allowed", N);
15915          end if;
15916       end if;
15917
15918       --  In Ada 83, a derived type defined in a package specification cannot
15919       --  be used for further derivation until the end of its visible part.
15920       --  Note that derivation in the private part of the package is allowed.
15921
15922       if Ada_Version = Ada_83
15923         and then Is_Derived_Type (Parent_Type)
15924         and then In_Visible_Part (Scope (Parent_Type))
15925       then
15926          if Ada_Version = Ada_83 and then Comes_From_Source (Indic) then
15927             Error_Msg_N
15928               ("(Ada 83): premature use of type for derivation", Indic);
15929          end if;
15930       end if;
15931
15932       --  Check for early use of incomplete or private type
15933
15934       if Ekind_In (Parent_Type, E_Void, E_Incomplete_Type) then
15935          Error_Msg_N ("premature derivation of incomplete type", Indic);
15936          return;
15937
15938       elsif (Is_Incomplete_Or_Private_Type (Parent_Type)
15939               and then not Comes_From_Generic (Parent_Type))
15940         or else Has_Private_Component (Parent_Type)
15941       then
15942          --  The ancestor type of a formal type can be incomplete, in which
15943          --  case only the operations of the partial view are available in the
15944          --  generic. Subsequent checks may be required when the full view is
15945          --  analyzed to verify that a derivation from a tagged type has an
15946          --  extension.
15947
15948          if Nkind (Original_Node (N)) = N_Formal_Type_Declaration then
15949             null;
15950
15951          elsif No (Underlying_Type (Parent_Type))
15952            or else Has_Private_Component (Parent_Type)
15953          then
15954             Error_Msg_N
15955               ("premature derivation of derived or private type", Indic);
15956
15957             --  Flag the type itself as being in error, this prevents some
15958             --  nasty problems with subsequent uses of the malformed type.
15959
15960             Set_Error_Posted (T);
15961
15962          --  Check that within the immediate scope of an untagged partial
15963          --  view it's illegal to derive from the partial view if the
15964          --  full view is tagged. (7.3(7))
15965
15966          --  We verify that the Parent_Type is a partial view by checking
15967          --  that it is not a Full_Type_Declaration (i.e. a private type or
15968          --  private extension declaration), to distinguish a partial view
15969          --  from  a derivation from a private type which also appears as
15970          --  E_Private_Type. If the parent base type is not declared in an
15971          --  enclosing scope there is no need to check.
15972
15973          elsif Present (Full_View (Parent_Type))
15974            and then Nkind (Parent (Parent_Type)) /= N_Full_Type_Declaration
15975            and then not Is_Tagged_Type (Parent_Type)
15976            and then Is_Tagged_Type (Full_View (Parent_Type))
15977            and then In_Open_Scopes (Scope (Base_Type (Parent_Type)))
15978          then
15979             Error_Msg_N
15980               ("premature derivation from type with tagged full view",
15981                 Indic);
15982          end if;
15983       end if;
15984
15985       --  Check that form of derivation is appropriate
15986
15987       Taggd := Is_Tagged_Type (Parent_Type);
15988
15989       --  Set the parent type to the class-wide type's specific type in this
15990       --  case to prevent cascading errors
15991
15992       if Present (Extension) and then Is_Class_Wide_Type (Parent_Type) then
15993          Error_Msg_N ("parent type must not be a class-wide type", Indic);
15994          Set_Etype (T, Etype (Parent_Type));
15995          return;
15996       end if;
15997
15998       if Present (Extension) and then not Taggd then
15999          Error_Msg_N
16000            ("type derived from untagged type cannot have extension", Indic);
16001
16002       elsif No (Extension) and then Taggd then
16003
16004          --  If this declaration is within a private part (or body) of a
16005          --  generic instantiation then the derivation is allowed (the parent
16006          --  type can only appear tagged in this case if it's a generic actual
16007          --  type, since it would otherwise have been rejected in the analysis
16008          --  of the generic template).
16009
16010          if not Is_Generic_Actual_Type (Parent_Type)
16011            or else In_Visible_Part (Scope (Parent_Type))
16012          then
16013             if Is_Class_Wide_Type (Parent_Type) then
16014                Error_Msg_N
16015                  ("parent type must not be a class-wide type", Indic);
16016
16017                --  Use specific type to prevent cascaded errors.
16018
16019                Parent_Type := Etype (Parent_Type);
16020
16021             else
16022                Error_Msg_N
16023                  ("type derived from tagged type must have extension", Indic);
16024             end if;
16025          end if;
16026       end if;
16027
16028       --  AI-443: Synchronized formal derived types require a private
16029       --  extension. There is no point in checking the ancestor type or
16030       --  the progenitors since the construct is wrong to begin with.
16031
16032       if Ada_Version >= Ada_2005
16033         and then Is_Generic_Type (T)
16034         and then Present (Original_Node (N))
16035       then
16036          declare
16037             Decl : constant Node_Id := Original_Node (N);
16038
16039          begin
16040             if Nkind (Decl) = N_Formal_Type_Declaration
16041               and then Nkind (Formal_Type_Definition (Decl)) =
16042                                           N_Formal_Derived_Type_Definition
16043               and then Synchronized_Present (Formal_Type_Definition (Decl))
16044               and then No (Extension)
16045
16046                --  Avoid emitting a duplicate error message
16047
16048               and then not Error_Posted (Indic)
16049             then
16050                Error_Msg_N
16051                  ("synchronized derived type must have extension", N);
16052             end if;
16053          end;
16054       end if;
16055
16056       if Null_Exclusion_Present (Def)
16057         and then not Is_Access_Type (Parent_Type)
16058       then
16059          Error_Msg_N ("null exclusion can only apply to an access type", N);
16060       end if;
16061
16062       --  Avoid deriving parent primitives of underlying record views
16063
16064       Build_Derived_Type (N, Parent_Type, T, Is_Completion,
16065         Derive_Subps => not Is_Underlying_Record_View (T));
16066
16067       --  AI-419: The parent type of an explicitly limited derived type must
16068       --  be a limited type or a limited interface.
16069
16070       if Limited_Present (Def) then
16071          Set_Is_Limited_Record (T);
16072
16073          if Is_Interface (T) then
16074             Set_Is_Limited_Interface (T);
16075          end if;
16076
16077          if not Is_Limited_Type (Parent_Type)
16078            and then
16079              (not Is_Interface (Parent_Type)
16080                or else not Is_Limited_Interface (Parent_Type))
16081          then
16082             --  AI05-0096: a derivation in the private part of an instance is
16083             --  legal if the generic formal is untagged limited, and the actual
16084             --  is non-limited.
16085
16086             if Is_Generic_Actual_Type (Parent_Type)
16087               and then In_Private_Part (Current_Scope)
16088               and then
16089                 not Is_Tagged_Type
16090                       (Generic_Parent_Type (Parent (Parent_Type)))
16091             then
16092                null;
16093
16094             else
16095                Error_Msg_NE
16096                  ("parent type& of limited type must be limited",
16097                   N, Parent_Type);
16098             end if;
16099          end if;
16100       end if;
16101
16102       --  In SPARK, there are no derived type definitions other than type
16103       --  extensions of tagged record types.
16104
16105       if No (Extension) then
16106          Check_SPARK_05_Restriction
16107            ("derived type is not allowed", Original_Node (N));
16108       end if;
16109    end Derived_Type_Declaration;
16110
16111    ------------------------
16112    -- Diagnose_Interface --
16113    ------------------------
16114
16115    procedure Diagnose_Interface (N : Node_Id;  E : Entity_Id) is
16116    begin
16117       if not Is_Interface (E) and then  E /= Any_Type then
16118          Error_Msg_NE ("(Ada 2005) & must be an interface", N, E);
16119       end if;
16120    end Diagnose_Interface;
16121
16122    ----------------------------------
16123    -- Enumeration_Type_Declaration --
16124    ----------------------------------
16125
16126    procedure Enumeration_Type_Declaration (T : Entity_Id; Def : Node_Id) is
16127       Ev     : Uint;
16128       L      : Node_Id;
16129       R_Node : Node_Id;
16130       B_Node : Node_Id;
16131
16132    begin
16133       --  Create identifier node representing lower bound
16134
16135       B_Node := New_Node (N_Identifier, Sloc (Def));
16136       L := First (Literals (Def));
16137       Set_Chars (B_Node, Chars (L));
16138       Set_Entity (B_Node,  L);
16139       Set_Etype (B_Node, T);
16140       Set_Is_Static_Expression (B_Node, True);
16141
16142       R_Node := New_Node (N_Range, Sloc (Def));
16143       Set_Low_Bound  (R_Node, B_Node);
16144
16145       Set_Ekind (T, E_Enumeration_Type);
16146       Set_First_Literal (T, L);
16147       Set_Etype (T, T);
16148       Set_Is_Constrained (T);
16149
16150       Ev := Uint_0;
16151
16152       --  Loop through literals of enumeration type setting pos and rep values
16153       --  except that if the Ekind is already set, then it means the literal
16154       --  was already constructed (case of a derived type declaration and we
16155       --  should not disturb the Pos and Rep values.
16156
16157       while Present (L) loop
16158          if Ekind (L) /= E_Enumeration_Literal then
16159             Set_Ekind (L, E_Enumeration_Literal);
16160             Set_Enumeration_Pos (L, Ev);
16161             Set_Enumeration_Rep (L, Ev);
16162             Set_Is_Known_Valid  (L, True);
16163          end if;
16164
16165          Set_Etype (L, T);
16166          New_Overloaded_Entity (L);
16167          Generate_Definition (L);
16168          Set_Convention (L, Convention_Intrinsic);
16169
16170          --  Case of character literal
16171
16172          if Nkind (L) = N_Defining_Character_Literal then
16173             Set_Is_Character_Type (T, True);
16174
16175             --  Check violation of No_Wide_Characters
16176
16177             if Restriction_Check_Required (No_Wide_Characters) then
16178                Get_Name_String (Chars (L));
16179
16180                if Name_Len >= 3 and then Name_Buffer (1 .. 2) = "QW" then
16181                   Check_Restriction (No_Wide_Characters, L);
16182                end if;
16183             end if;
16184          end if;
16185
16186          Ev := Ev + 1;
16187          Next (L);
16188       end loop;
16189
16190       --  Now create a node representing upper bound
16191
16192       B_Node := New_Node (N_Identifier, Sloc (Def));
16193       Set_Chars (B_Node, Chars (Last (Literals (Def))));
16194       Set_Entity (B_Node,  Last (Literals (Def)));
16195       Set_Etype (B_Node, T);
16196       Set_Is_Static_Expression (B_Node, True);
16197
16198       Set_High_Bound (R_Node, B_Node);
16199
16200       --  Initialize various fields of the type. Some of this information
16201       --  may be overwritten later through rep.clauses.
16202
16203       Set_Scalar_Range    (T, R_Node);
16204       Set_RM_Size         (T, UI_From_Int (Minimum_Size (T)));
16205       Set_Enum_Esize      (T);
16206       Set_Enum_Pos_To_Rep (T, Empty);
16207
16208       --  Set Discard_Names if configuration pragma set, or if there is
16209       --  a parameterless pragma in the current declarative region
16210
16211       if Global_Discard_Names or else Discard_Names (Scope (T)) then
16212          Set_Discard_Names (T);
16213       end if;
16214
16215       --  Process end label if there is one
16216
16217       if Present (Def) then
16218          Process_End_Label (Def, 'e', T);
16219       end if;
16220    end Enumeration_Type_Declaration;
16221
16222    ---------------------------------
16223    -- Expand_To_Stored_Constraint --
16224    ---------------------------------
16225
16226    function Expand_To_Stored_Constraint
16227      (Typ        : Entity_Id;
16228       Constraint : Elist_Id) return Elist_Id
16229    is
16230       Explicitly_Discriminated_Type : Entity_Id;
16231       Expansion    : Elist_Id;
16232       Discriminant : Entity_Id;
16233
16234       function Type_With_Explicit_Discrims (Id : Entity_Id) return Entity_Id;
16235       --  Find the nearest type that actually specifies discriminants
16236
16237       ---------------------------------
16238       -- Type_With_Explicit_Discrims --
16239       ---------------------------------
16240
16241       function Type_With_Explicit_Discrims (Id : Entity_Id) return Entity_Id is
16242          Typ : constant E := Base_Type (Id);
16243
16244       begin
16245          if Ekind (Typ) in Incomplete_Or_Private_Kind then
16246             if Present (Full_View (Typ)) then
16247                return Type_With_Explicit_Discrims (Full_View (Typ));
16248             end if;
16249
16250          else
16251             if Has_Discriminants (Typ) then
16252                return Typ;
16253             end if;
16254          end if;
16255
16256          if Etype (Typ) = Typ then
16257             return Empty;
16258          elsif Has_Discriminants (Typ) then
16259             return Typ;
16260          else
16261             return Type_With_Explicit_Discrims (Etype (Typ));
16262          end if;
16263
16264       end Type_With_Explicit_Discrims;
16265
16266    --  Start of processing for Expand_To_Stored_Constraint
16267
16268    begin
16269       if No (Constraint) or else Is_Empty_Elmt_List (Constraint) then
16270          return No_Elist;
16271       end if;
16272
16273       Explicitly_Discriminated_Type := Type_With_Explicit_Discrims (Typ);
16274
16275       if No (Explicitly_Discriminated_Type) then
16276          return No_Elist;
16277       end if;
16278
16279       Expansion := New_Elmt_List;
16280
16281       Discriminant :=
16282          First_Stored_Discriminant (Explicitly_Discriminated_Type);
16283       while Present (Discriminant) loop
16284          Append_Elmt
16285            (Get_Discriminant_Value
16286               (Discriminant, Explicitly_Discriminated_Type, Constraint),
16287             To => Expansion);
16288          Next_Stored_Discriminant (Discriminant);
16289       end loop;
16290
16291       return Expansion;
16292    end Expand_To_Stored_Constraint;
16293
16294    ---------------------------
16295    -- Find_Hidden_Interface --
16296    ---------------------------
16297
16298    function Find_Hidden_Interface
16299      (Src  : Elist_Id;
16300       Dest : Elist_Id) return Entity_Id
16301    is
16302       Iface      : Entity_Id;
16303       Iface_Elmt : Elmt_Id;
16304
16305    begin
16306       if Present (Src) and then Present (Dest) then
16307          Iface_Elmt := First_Elmt (Src);
16308          while Present (Iface_Elmt) loop
16309             Iface := Node (Iface_Elmt);
16310
16311             if Is_Interface (Iface)
16312               and then not Contain_Interface (Iface, Dest)
16313             then
16314                return Iface;
16315             end if;
16316
16317             Next_Elmt (Iface_Elmt);
16318          end loop;
16319       end if;
16320
16321       return Empty;
16322    end Find_Hidden_Interface;
16323
16324    --------------------
16325    -- Find_Type_Name --
16326    --------------------
16327
16328    function Find_Type_Name (N : Node_Id) return Entity_Id is
16329       Id       : constant Entity_Id := Defining_Identifier (N);
16330       Prev     : Entity_Id;
16331       New_Id   : Entity_Id;
16332       Prev_Par : Node_Id;
16333
16334       procedure Check_Duplicate_Aspects;
16335       --  Check that aspects specified in a completion have not been specified
16336       --  already in the partial view. Type_Invariant and others can be
16337       --  specified on either view but never on both.
16338
16339       procedure Tag_Mismatch;
16340       --  Diagnose a tagged partial view whose full view is untagged.
16341       --  We post the message on the full view, with a reference to
16342       --  the previous partial view. The partial view can be private
16343       --  or incomplete, and these are handled in a different manner,
16344       --  so we determine the position of the error message from the
16345       --  respective slocs of both.
16346
16347       -----------------------------
16348       -- Check_Duplicate_Aspects --
16349       -----------------------------
16350
16351       procedure Check_Duplicate_Aspects is
16352          Prev_Aspects   : constant List_Id := Aspect_Specifications (Prev_Par);
16353          Full_Aspects   : constant List_Id := Aspect_Specifications (N);
16354          F_Spec, P_Spec : Node_Id;
16355
16356       begin
16357          if Present (Full_Aspects) then
16358             F_Spec := First (Full_Aspects);
16359             while Present (F_Spec) loop
16360                if Present (Prev_Aspects) then
16361                   P_Spec := First (Prev_Aspects);
16362                   while Present (P_Spec) loop
16363                      if Chars (Identifier (P_Spec)) =
16364                        Chars (Identifier (F_Spec))
16365                      then
16366                         Error_Msg_N
16367                           ("aspect already specified in private declaration",
16368                             F_Spec);
16369                         Remove (F_Spec);
16370                         return;
16371                      end if;
16372
16373                      Next (P_Spec);
16374                   end loop;
16375                end if;
16376
16377                if Has_Discriminants (Prev)
16378                  and then not Has_Unknown_Discriminants (Prev)
16379                  and then Chars (Identifier (F_Spec)) =
16380                    Name_Implicit_Dereference
16381                then
16382                   Error_Msg_N ("cannot specify aspect " &
16383                     "if partial view has known discriminants", F_Spec);
16384                end if;
16385
16386                Next (F_Spec);
16387             end loop;
16388          end if;
16389       end Check_Duplicate_Aspects;
16390
16391       ------------------
16392       -- Tag_Mismatch --
16393       ------------------
16394
16395       procedure Tag_Mismatch is
16396       begin
16397          if Sloc (Prev) < Sloc (Id) then
16398             if Ada_Version >= Ada_2012
16399               and then Nkind (N) = N_Private_Type_Declaration
16400             then
16401                Error_Msg_NE
16402                  ("declaration of private } must be a tagged type ", Id, Prev);
16403             else
16404                Error_Msg_NE
16405                  ("full declaration of } must be a tagged type ", Id, Prev);
16406             end if;
16407
16408          else
16409             if Ada_Version >= Ada_2012
16410               and then Nkind (N) = N_Private_Type_Declaration
16411             then
16412                Error_Msg_NE
16413                  ("declaration of private } must be a tagged type ", Prev, Id);
16414             else
16415                Error_Msg_NE
16416                  ("full declaration of } must be a tagged type ", Prev, Id);
16417             end if;
16418          end if;
16419       end Tag_Mismatch;
16420
16421    --  Start of processing for Find_Type_Name
16422
16423    begin
16424       --  Find incomplete declaration, if one was given
16425
16426       Prev := Current_Entity_In_Scope (Id);
16427
16428       --  New type declaration
16429
16430       if No (Prev) then
16431          Enter_Name (Id);
16432          return Id;
16433
16434       --  Previous declaration exists
16435
16436       else
16437          Prev_Par := Parent (Prev);
16438
16439          --  Error if not incomplete/private case except if previous
16440          --  declaration is implicit, etc. Enter_Name will emit error if
16441          --  appropriate.
16442
16443          if not Is_Incomplete_Or_Private_Type (Prev) then
16444             Enter_Name (Id);
16445             New_Id := Id;
16446
16447          --  Check invalid completion of private or incomplete type
16448
16449          elsif not Nkind_In (N, N_Full_Type_Declaration,
16450                                 N_Task_Type_Declaration,
16451                                 N_Protected_Type_Declaration)
16452            and then
16453              (Ada_Version < Ada_2012
16454                or else not Is_Incomplete_Type (Prev)
16455                or else not Nkind_In (N, N_Private_Type_Declaration,
16456                                         N_Private_Extension_Declaration))
16457          then
16458             --  Completion must be a full type declarations (RM 7.3(4))
16459
16460             Error_Msg_Sloc := Sloc (Prev);
16461             Error_Msg_NE ("invalid completion of }", Id, Prev);
16462
16463             --  Set scope of Id to avoid cascaded errors. Entity is never
16464             --  examined again, except when saving globals in generics.
16465
16466             Set_Scope (Id, Current_Scope);
16467             New_Id := Id;
16468
16469             --  If this is a repeated incomplete declaration, no further
16470             --  checks are possible.
16471
16472             if Nkind (N) = N_Incomplete_Type_Declaration then
16473                return Prev;
16474             end if;
16475
16476          --  Case of full declaration of incomplete type
16477
16478          elsif Ekind (Prev) = E_Incomplete_Type
16479            and then (Ada_Version < Ada_2012
16480                       or else No (Full_View (Prev))
16481                       or else not Is_Private_Type (Full_View (Prev)))
16482          then
16483             --  Indicate that the incomplete declaration has a matching full
16484             --  declaration. The defining occurrence of the incomplete
16485             --  declaration remains the visible one, and the procedure
16486             --  Get_Full_View dereferences it whenever the type is used.
16487
16488             if Present (Full_View (Prev)) then
16489                Error_Msg_NE ("invalid redeclaration of }", Id, Prev);
16490             end if;
16491
16492             Set_Full_View (Prev, Id);
16493             Append_Entity (Id, Current_Scope);
16494             Set_Is_Public (Id, Is_Public (Prev));
16495             Set_Is_Internal (Id);
16496             New_Id := Prev;
16497
16498             --  If the incomplete view is tagged, a class_wide type has been
16499             --  created already. Use it for the private type as well, in order
16500             --  to prevent multiple incompatible class-wide types that may be
16501             --  created for self-referential anonymous access components.
16502
16503             if Is_Tagged_Type (Prev)
16504               and then Present (Class_Wide_Type (Prev))
16505             then
16506                Set_Ekind (Id, Ekind (Prev));         --  will be reset later
16507                Set_Class_Wide_Type (Id, Class_Wide_Type (Prev));
16508
16509                --  The type of the classwide type is the current Id. Previously
16510                --  this was not done for private declarations because of order-
16511                --  of elaboration issues in the back-end, but gigi now handles
16512                --  this properly.
16513
16514                Set_Etype (Class_Wide_Type (Id), Id);
16515             end if;
16516
16517          --  Case of full declaration of private type
16518
16519          else
16520             --  If the private type was a completion of an incomplete type then
16521             --  update Prev to reference the private type
16522
16523             if Ada_Version >= Ada_2012
16524               and then Ekind (Prev) = E_Incomplete_Type
16525               and then Present (Full_View (Prev))
16526               and then Is_Private_Type (Full_View (Prev))
16527             then
16528                Prev := Full_View (Prev);
16529                Prev_Par := Parent (Prev);
16530             end if;
16531
16532             if Nkind (N) = N_Full_Type_Declaration
16533               and then Nkind_In
16534                          (Type_Definition (N), N_Record_Definition,
16535                                                N_Derived_Type_Definition)
16536               and then Interface_Present (Type_Definition (N))
16537             then
16538                Error_Msg_N
16539                  ("completion of private type cannot be an interface", N);
16540             end if;
16541
16542             if Nkind (Parent (Prev)) /= N_Private_Extension_Declaration then
16543                if Etype (Prev) /= Prev then
16544
16545                   --  Prev is a private subtype or a derived type, and needs
16546                   --  no completion.
16547
16548                   Error_Msg_NE ("invalid redeclaration of }", Id, Prev);
16549                   New_Id := Id;
16550
16551                elsif Ekind (Prev) = E_Private_Type
16552                  and then Nkind_In (N, N_Task_Type_Declaration,
16553                                        N_Protected_Type_Declaration)
16554                then
16555                   Error_Msg_N
16556                    ("completion of nonlimited type cannot be limited", N);
16557
16558                elsif Ekind (Prev) = E_Record_Type_With_Private
16559                  and then Nkind_In (N, N_Task_Type_Declaration,
16560                                        N_Protected_Type_Declaration)
16561                then
16562                   if not Is_Limited_Record (Prev) then
16563                      Error_Msg_N
16564                         ("completion of nonlimited type cannot be limited", N);
16565
16566                   elsif No (Interface_List (N)) then
16567                      Error_Msg_N
16568                         ("completion of tagged private type must be tagged",
16569                          N);
16570                   end if;
16571                end if;
16572
16573             --  Ada 2005 (AI-251): Private extension declaration of a task
16574             --  type or a protected type. This case arises when covering
16575             --  interface types.
16576
16577             elsif Nkind_In (N, N_Task_Type_Declaration,
16578                                N_Protected_Type_Declaration)
16579             then
16580                null;
16581
16582             elsif Nkind (N) /= N_Full_Type_Declaration
16583               or else Nkind (Type_Definition (N)) /= N_Derived_Type_Definition
16584             then
16585                Error_Msg_N
16586                  ("full view of private extension must be an extension", N);
16587
16588             elsif not (Abstract_Present (Parent (Prev)))
16589               and then Abstract_Present (Type_Definition (N))
16590             then
16591                Error_Msg_N
16592                  ("full view of non-abstract extension cannot be abstract", N);
16593             end if;
16594
16595             if not In_Private_Part (Current_Scope) then
16596                Error_Msg_N
16597                  ("declaration of full view must appear in private part", N);
16598             end if;
16599
16600             if Ada_Version >= Ada_2012 then
16601                Check_Duplicate_Aspects;
16602             end if;
16603
16604             Copy_And_Swap (Prev, Id);
16605             Set_Has_Private_Declaration (Prev);
16606             Set_Has_Private_Declaration (Id);
16607
16608             --  AI12-0133: Indicate whether we have a partial view with
16609             --  unknown discriminants, in which case initialization of objects
16610             --  of the type do not receive an invariant check.
16611
16612             Set_Partial_View_Has_Unknown_Discr
16613               (Prev, Has_Unknown_Discriminants (Id));
16614
16615             --  Preserve aspect and iterator flags that may have been set on
16616             --  the partial view.
16617
16618             Set_Has_Delayed_Aspects (Prev, Has_Delayed_Aspects (Id));
16619             Set_Has_Implicit_Dereference (Prev, Has_Implicit_Dereference (Id));
16620
16621             --  If no error, propagate freeze_node from private to full view.
16622             --  It may have been generated for an early operational item.
16623
16624             if Present (Freeze_Node (Id))
16625               and then Serious_Errors_Detected = 0
16626               and then No (Full_View (Id))
16627             then
16628                Set_Freeze_Node (Prev, Freeze_Node (Id));
16629                Set_Freeze_Node (Id, Empty);
16630                Set_First_Rep_Item (Prev, First_Rep_Item (Id));
16631             end if;
16632
16633             Set_Full_View (Id, Prev);
16634             New_Id := Prev;
16635          end if;
16636
16637          --  Verify that full declaration conforms to partial one
16638
16639          if Is_Incomplete_Or_Private_Type (Prev)
16640            and then Present (Discriminant_Specifications (Prev_Par))
16641          then
16642             if Present (Discriminant_Specifications (N)) then
16643                if Ekind (Prev) = E_Incomplete_Type then
16644                   Check_Discriminant_Conformance (N, Prev, Prev);
16645                else
16646                   Check_Discriminant_Conformance (N, Prev, Id);
16647                end if;
16648
16649             else
16650                Error_Msg_N
16651                  ("missing discriminants in full type declaration", N);
16652
16653                --  To avoid cascaded errors on subsequent use, share the
16654                --  discriminants of the partial view.
16655
16656                Set_Discriminant_Specifications (N,
16657                  Discriminant_Specifications (Prev_Par));
16658             end if;
16659          end if;
16660
16661          --  A prior untagged partial view can have an associated class-wide
16662          --  type due to use of the class attribute, and in this case the full
16663          --  type must also be tagged. This Ada 95 usage is deprecated in favor
16664          --  of incomplete tagged declarations, but we check for it.
16665
16666          if Is_Type (Prev)
16667            and then (Is_Tagged_Type (Prev)
16668                       or else Present (Class_Wide_Type (Prev)))
16669          then
16670             --  Ada 2012 (AI05-0162): A private type may be the completion of
16671             --  an incomplete type.
16672
16673             if Ada_Version >= Ada_2012
16674               and then Is_Incomplete_Type (Prev)
16675               and then Nkind_In (N, N_Private_Type_Declaration,
16676                                     N_Private_Extension_Declaration)
16677             then
16678                --  No need to check private extensions since they are tagged
16679
16680                if Nkind (N) = N_Private_Type_Declaration
16681                  and then not Tagged_Present (N)
16682                then
16683                   Tag_Mismatch;
16684                end if;
16685
16686             --  The full declaration is either a tagged type (including
16687             --  a synchronized type that implements interfaces) or a
16688             --  type extension, otherwise this is an error.
16689
16690             elsif Nkind_In (N, N_Task_Type_Declaration,
16691                                N_Protected_Type_Declaration)
16692             then
16693                if No (Interface_List (N)) and then not Error_Posted (N) then
16694                   Tag_Mismatch;
16695                end if;
16696
16697             elsif Nkind (Type_Definition (N)) = N_Record_Definition then
16698
16699                --  Indicate that the previous declaration (tagged incomplete
16700                --  or private declaration) requires the same on the full one.
16701
16702                if not Tagged_Present (Type_Definition (N)) then
16703                   Tag_Mismatch;
16704                   Set_Is_Tagged_Type (Id);
16705                end if;
16706
16707             elsif Nkind (Type_Definition (N)) = N_Derived_Type_Definition then
16708                if No (Record_Extension_Part (Type_Definition (N))) then
16709                   Error_Msg_NE
16710                     ("full declaration of } must be a record extension",
16711                      Prev, Id);
16712
16713                   --  Set some attributes to produce a usable full view
16714
16715                   Set_Is_Tagged_Type (Id);
16716                end if;
16717
16718             else
16719                Tag_Mismatch;
16720             end if;
16721          end if;
16722
16723          if Present (Prev)
16724            and then Nkind (Parent (Prev)) = N_Incomplete_Type_Declaration
16725            and then Present (Premature_Use (Parent (Prev)))
16726          then
16727             Error_Msg_Sloc := Sloc (N);
16728             Error_Msg_N
16729               ("\full declaration #", Premature_Use (Parent (Prev)));
16730          end if;
16731
16732          return New_Id;
16733       end if;
16734    end Find_Type_Name;
16735
16736    -------------------------
16737    -- Find_Type_Of_Object --
16738    -------------------------
16739
16740    function Find_Type_Of_Object
16741      (Obj_Def     : Node_Id;
16742       Related_Nod : Node_Id) return Entity_Id
16743    is
16744       Def_Kind : constant Node_Kind := Nkind (Obj_Def);
16745       P        : Node_Id := Parent (Obj_Def);
16746       T        : Entity_Id;
16747       Nam      : Name_Id;
16748
16749    begin
16750       --  If the parent is a component_definition node we climb to the
16751       --  component_declaration node
16752
16753       if Nkind (P) = N_Component_Definition then
16754          P := Parent (P);
16755       end if;
16756
16757       --  Case of an anonymous array subtype
16758
16759       if Nkind_In (Def_Kind, N_Constrained_Array_Definition,
16760                              N_Unconstrained_Array_Definition)
16761       then
16762          T := Empty;
16763          Array_Type_Declaration (T, Obj_Def);
16764
16765       --  Create an explicit subtype whenever possible
16766
16767       elsif Nkind (P) /= N_Component_Declaration
16768         and then Def_Kind = N_Subtype_Indication
16769       then
16770          --  Base name of subtype on object name, which will be unique in
16771          --  the current scope.
16772
16773          --  If this is a duplicate declaration, return base type, to avoid
16774          --  generating duplicate anonymous types.
16775
16776          if Error_Posted (P) then
16777             Analyze (Subtype_Mark (Obj_Def));
16778             return Entity (Subtype_Mark (Obj_Def));
16779          end if;
16780
16781          Nam :=
16782             New_External_Name
16783              (Chars (Defining_Identifier (Related_Nod)), 'S', 0, 'T');
16784
16785          T := Make_Defining_Identifier (Sloc (P), Nam);
16786
16787          Insert_Action (Obj_Def,
16788            Make_Subtype_Declaration (Sloc (P),
16789              Defining_Identifier => T,
16790              Subtype_Indication  => Relocate_Node (Obj_Def)));
16791
16792          --  This subtype may need freezing, and this will not be done
16793          --  automatically if the object declaration is not in declarative
16794          --  part. Since this is an object declaration, the type cannot always
16795          --  be frozen here. Deferred constants do not freeze their type
16796          --  (which often enough will be private).
16797
16798          if Nkind (P) = N_Object_Declaration
16799            and then Constant_Present (P)
16800            and then No (Expression (P))
16801          then
16802             null;
16803
16804          --  Here we freeze the base type of object type to catch premature use
16805          --  of discriminated private type without a full view.
16806
16807          else
16808             Insert_Actions (Obj_Def, Freeze_Entity (Base_Type (T), P));
16809          end if;
16810
16811       --  Ada 2005 AI-406: the object definition in an object declaration
16812       --  can be an access definition.
16813
16814       elsif Def_Kind = N_Access_Definition then
16815          T := Access_Definition (Related_Nod, Obj_Def);
16816
16817          Set_Is_Local_Anonymous_Access
16818            (T,
16819             V => (Ada_Version < Ada_2012)
16820                    or else (Nkind (P) /= N_Object_Declaration)
16821                    or else Is_Library_Level_Entity (Defining_Identifier (P)));
16822
16823       --  Otherwise, the object definition is just a subtype_mark
16824
16825       else
16826          T := Process_Subtype (Obj_Def, Related_Nod);
16827
16828          --  If expansion is disabled an object definition that is an aggregate
16829          --  will not get expanded and may lead to scoping problems in the back
16830          --  end, if the object is referenced in an inner scope. In that case
16831          --  create an itype reference for the object definition now. This
16832          --  may be redundant in some cases, but harmless.
16833
16834          if Is_Itype (T)
16835            and then Nkind (Related_Nod) = N_Object_Declaration
16836            and then ASIS_Mode
16837          then
16838             Build_Itype_Reference (T, Related_Nod);
16839          end if;
16840       end if;
16841
16842       return T;
16843    end Find_Type_Of_Object;
16844
16845    --------------------------------
16846    -- Find_Type_Of_Subtype_Indic --
16847    --------------------------------
16848
16849    function Find_Type_Of_Subtype_Indic (S : Node_Id) return Entity_Id is
16850       Typ : Entity_Id;
16851
16852    begin
16853       --  Case of subtype mark with a constraint
16854
16855       if Nkind (S) = N_Subtype_Indication then
16856          Find_Type (Subtype_Mark (S));
16857          Typ := Entity (Subtype_Mark (S));
16858
16859          if not
16860            Is_Valid_Constraint_Kind (Ekind (Typ), Nkind (Constraint (S)))
16861          then
16862             Error_Msg_N
16863               ("incorrect constraint for this kind of type", Constraint (S));
16864             Rewrite (S, New_Copy_Tree (Subtype_Mark (S)));
16865          end if;
16866
16867       --  Otherwise we have a subtype mark without a constraint
16868
16869       elsif Error_Posted (S) then
16870          Rewrite (S, New_Occurrence_Of (Any_Id, Sloc (S)));
16871          return Any_Type;
16872
16873       else
16874          Find_Type (S);
16875          Typ := Entity (S);
16876       end if;
16877
16878       --  Check No_Wide_Characters restriction
16879
16880       Check_Wide_Character_Restriction (Typ, S);
16881
16882       return Typ;
16883    end Find_Type_Of_Subtype_Indic;
16884
16885    -------------------------------------
16886    -- Floating_Point_Type_Declaration --
16887    -------------------------------------
16888
16889    procedure Floating_Point_Type_Declaration (T : Entity_Id; Def : Node_Id) is
16890       Digs          : constant Node_Id := Digits_Expression (Def);
16891       Max_Digs_Val  : constant Uint := Digits_Value (Standard_Long_Long_Float);
16892       Digs_Val      : Uint;
16893       Base_Typ      : Entity_Id;
16894       Implicit_Base : Entity_Id;
16895       Bound         : Node_Id;
16896
16897       function Can_Derive_From (E : Entity_Id) return Boolean;
16898       --  Find if given digits value, and possibly a specified range, allows
16899       --  derivation from specified type
16900
16901       function Find_Base_Type return Entity_Id;
16902       --  Find a predefined base type that Def can derive from, or generate
16903       --  an error and substitute Long_Long_Float if none exists.
16904
16905       ---------------------
16906       -- Can_Derive_From --
16907       ---------------------
16908
16909       function Can_Derive_From (E : Entity_Id) return Boolean is
16910          Spec : constant Entity_Id := Real_Range_Specification (Def);
16911
16912       begin
16913          --  Check specified "digits" constraint
16914
16915          if Digs_Val > Digits_Value (E) then
16916             return False;
16917          end if;
16918
16919          --  Check for matching range, if specified
16920
16921          if Present (Spec) then
16922             if Expr_Value_R (Type_Low_Bound (E)) >
16923                Expr_Value_R (Low_Bound (Spec))
16924             then
16925                return False;
16926             end if;
16927
16928             if Expr_Value_R (Type_High_Bound (E)) <
16929                Expr_Value_R (High_Bound (Spec))
16930             then
16931                return False;
16932             end if;
16933          end if;
16934
16935          return True;
16936       end Can_Derive_From;
16937
16938       --------------------
16939       -- Find_Base_Type --
16940       --------------------
16941
16942       function Find_Base_Type return Entity_Id is
16943          Choice : Elmt_Id := First_Elmt (Predefined_Float_Types);
16944
16945       begin
16946          --  Iterate over the predefined types in order, returning the first
16947          --  one that Def can derive from.
16948
16949          while Present (Choice) loop
16950             if Can_Derive_From (Node (Choice)) then
16951                return Node (Choice);
16952             end if;
16953
16954             Next_Elmt (Choice);
16955          end loop;
16956
16957          --  If we can't derive from any existing type, use Long_Long_Float
16958          --  and give appropriate message explaining the problem.
16959
16960          if Digs_Val > Max_Digs_Val then
16961             --  It might be the case that there is a type with the requested
16962             --  range, just not the combination of digits and range.
16963
16964             Error_Msg_N
16965               ("no predefined type has requested range and precision",
16966                Real_Range_Specification (Def));
16967
16968          else
16969             Error_Msg_N
16970               ("range too large for any predefined type",
16971                Real_Range_Specification (Def));
16972          end if;
16973
16974          return Standard_Long_Long_Float;
16975       end Find_Base_Type;
16976
16977    --  Start of processing for Floating_Point_Type_Declaration
16978
16979    begin
16980       Check_Restriction (No_Floating_Point, Def);
16981
16982       --  Create an implicit base type
16983
16984       Implicit_Base :=
16985         Create_Itype (E_Floating_Point_Type, Parent (Def), T, 'B');
16986
16987       --  Analyze and verify digits value
16988
16989       Analyze_And_Resolve (Digs, Any_Integer);
16990       Check_Digits_Expression (Digs);
16991       Digs_Val := Expr_Value (Digs);
16992
16993       --  Process possible range spec and find correct type to derive from
16994
16995       Process_Real_Range_Specification (Def);
16996
16997       --  Check that requested number of digits is not too high.
16998
16999       if Digs_Val > Max_Digs_Val then
17000
17001          --  The check for Max_Base_Digits may be somewhat expensive, as it
17002          --  requires reading System, so only do it when necessary.
17003
17004          declare
17005             Max_Base_Digits : constant Uint :=
17006                                 Expr_Value
17007                                   (Expression
17008                                      (Parent (RTE (RE_Max_Base_Digits))));
17009
17010          begin
17011             if Digs_Val > Max_Base_Digits then
17012                Error_Msg_Uint_1 := Max_Base_Digits;
17013                Error_Msg_N ("digits value out of range, maximum is ^", Digs);
17014
17015             elsif No (Real_Range_Specification (Def)) then
17016                Error_Msg_Uint_1 := Max_Digs_Val;
17017                Error_Msg_N ("types with more than ^ digits need range spec "
17018                  & "(RM 3.5.7(6))", Digs);
17019             end if;
17020          end;
17021       end if;
17022
17023       --  Find a suitable type to derive from or complain and use a substitute
17024
17025       Base_Typ := Find_Base_Type;
17026
17027       --  If there are bounds given in the declaration use them as the bounds
17028       --  of the type, otherwise use the bounds of the predefined base type
17029       --  that was chosen based on the Digits value.
17030
17031       if Present (Real_Range_Specification (Def)) then
17032          Set_Scalar_Range (T, Real_Range_Specification (Def));
17033          Set_Is_Constrained (T);
17034
17035          --  The bounds of this range must be converted to machine numbers
17036          --  in accordance with RM 4.9(38).
17037
17038          Bound := Type_Low_Bound (T);
17039
17040          if Nkind (Bound) = N_Real_Literal then
17041             Set_Realval
17042               (Bound, Machine (Base_Typ, Realval (Bound), Round, Bound));
17043             Set_Is_Machine_Number (Bound);
17044          end if;
17045
17046          Bound := Type_High_Bound (T);
17047
17048          if Nkind (Bound) = N_Real_Literal then
17049             Set_Realval
17050               (Bound, Machine (Base_Typ, Realval (Bound), Round, Bound));
17051             Set_Is_Machine_Number (Bound);
17052          end if;
17053
17054       else
17055          Set_Scalar_Range (T, Scalar_Range (Base_Typ));
17056       end if;
17057
17058       --  Complete definition of implicit base and declared first subtype. The
17059       --  inheritance of the rep item chain ensures that SPARK-related pragmas
17060       --  are not clobbered when the floating point type acts as a full view of
17061       --  a private type.
17062
17063       Set_Etype              (Implicit_Base,                 Base_Typ);
17064       Set_Scalar_Range       (Implicit_Base, Scalar_Range   (Base_Typ));
17065       Set_Size_Info          (Implicit_Base,                 Base_Typ);
17066       Set_RM_Size            (Implicit_Base, RM_Size        (Base_Typ));
17067       Set_First_Rep_Item     (Implicit_Base, First_Rep_Item (Base_Typ));
17068       Set_Digits_Value       (Implicit_Base, Digits_Value   (Base_Typ));
17069       Set_Float_Rep          (Implicit_Base, Float_Rep      (Base_Typ));
17070
17071       Set_Ekind              (T, E_Floating_Point_Subtype);
17072       Set_Etype              (T,          Implicit_Base);
17073       Set_Size_Info          (T,          Implicit_Base);
17074       Set_RM_Size            (T, RM_Size (Implicit_Base));
17075       Inherit_Rep_Item_Chain (T,          Implicit_Base);
17076       Set_Digits_Value       (T, Digs_Val);
17077    end Floating_Point_Type_Declaration;
17078
17079    ----------------------------
17080    -- Get_Discriminant_Value --
17081    ----------------------------
17082
17083    --  This is the situation:
17084
17085    --  There is a non-derived type
17086
17087    --       type T0 (Dx, Dy, Dz...)
17088
17089    --  There are zero or more levels of derivation, with each derivation
17090    --  either purely inheriting the discriminants, or defining its own.
17091
17092    --       type Ti      is new Ti-1
17093    --  or
17094    --       type Ti (Dw) is new Ti-1(Dw, 1, X+Y)
17095    --  or
17096    --       subtype Ti is ...
17097
17098    --  The subtype issue is avoided by the use of Original_Record_Component,
17099    --  and the fact that derived subtypes also derive the constraints.
17100
17101    --  This chain leads back from
17102
17103    --       Typ_For_Constraint
17104
17105    --  Typ_For_Constraint has discriminants, and the value for each
17106    --  discriminant is given by its corresponding Elmt of Constraints.
17107
17108    --  Discriminant is some discriminant in this hierarchy
17109
17110    --  We need to return its value
17111
17112    --  We do this by recursively searching each level, and looking for
17113    --  Discriminant. Once we get to the bottom, we start backing up
17114    --  returning the value for it which may in turn be a discriminant
17115    --  further up, so on the backup we continue the substitution.
17116
17117    function Get_Discriminant_Value
17118      (Discriminant       : Entity_Id;
17119       Typ_For_Constraint : Entity_Id;
17120       Constraint         : Elist_Id) return Node_Id
17121    is
17122       function Root_Corresponding_Discriminant
17123         (Discr : Entity_Id) return Entity_Id;
17124       --  Given a discriminant, traverse the chain of inherited discriminants
17125       --  and return the topmost discriminant.
17126
17127       function Search_Derivation_Levels
17128         (Ti                    : Entity_Id;
17129          Discrim_Values        : Elist_Id;
17130          Stored_Discrim_Values : Boolean) return Node_Or_Entity_Id;
17131       --  This is the routine that performs the recursive search of levels
17132       --  as described above.
17133
17134       -------------------------------------
17135       -- Root_Corresponding_Discriminant --
17136       -------------------------------------
17137
17138       function Root_Corresponding_Discriminant
17139         (Discr : Entity_Id) return Entity_Id
17140       is
17141          D : Entity_Id;
17142
17143       begin
17144          D := Discr;
17145          while Present (Corresponding_Discriminant (D)) loop
17146             D := Corresponding_Discriminant (D);
17147          end loop;
17148
17149          return D;
17150       end Root_Corresponding_Discriminant;
17151
17152       ------------------------------
17153       -- Search_Derivation_Levels --
17154       ------------------------------
17155
17156       function Search_Derivation_Levels
17157         (Ti                    : Entity_Id;
17158          Discrim_Values        : Elist_Id;
17159          Stored_Discrim_Values : Boolean) return Node_Or_Entity_Id
17160       is
17161          Assoc          : Elmt_Id;
17162          Disc           : Entity_Id;
17163          Result         : Node_Or_Entity_Id;
17164          Result_Entity  : Node_Id;
17165
17166       begin
17167          --  If inappropriate type, return Error, this happens only in
17168          --  cascaded error situations, and we want to avoid a blow up.
17169
17170          if not Is_Composite_Type (Ti) or else Is_Array_Type (Ti) then
17171             return Error;
17172          end if;
17173
17174          --  Look deeper if possible. Use Stored_Constraints only for
17175          --  untagged types. For tagged types use the given constraint.
17176          --  This asymmetry needs explanation???
17177
17178          if not Stored_Discrim_Values
17179            and then Present (Stored_Constraint (Ti))
17180            and then not Is_Tagged_Type (Ti)
17181          then
17182             Result :=
17183               Search_Derivation_Levels (Ti, Stored_Constraint (Ti), True);
17184          else
17185             declare
17186                Td : constant Entity_Id := Etype (Ti);
17187
17188             begin
17189                if Td = Ti then
17190                   Result := Discriminant;
17191
17192                else
17193                   if Present (Stored_Constraint (Ti)) then
17194                      Result :=
17195                         Search_Derivation_Levels
17196                           (Td, Stored_Constraint (Ti), True);
17197                   else
17198                      Result :=
17199                         Search_Derivation_Levels
17200                           (Td, Discrim_Values, Stored_Discrim_Values);
17201                   end if;
17202                end if;
17203             end;
17204          end if;
17205
17206          --  Extra underlying places to search, if not found above. For
17207          --  concurrent types, the relevant discriminant appears in the
17208          --  corresponding record. For a type derived from a private type
17209          --  without discriminant, the full view inherits the discriminants
17210          --  of the full view of the parent.
17211
17212          if Result = Discriminant then
17213             if Is_Concurrent_Type (Ti)
17214               and then Present (Corresponding_Record_Type (Ti))
17215             then
17216                Result :=
17217                  Search_Derivation_Levels (
17218                    Corresponding_Record_Type (Ti),
17219                    Discrim_Values,
17220                    Stored_Discrim_Values);
17221
17222             elsif Is_Private_Type (Ti)
17223               and then not Has_Discriminants (Ti)
17224               and then Present (Full_View (Ti))
17225               and then Etype (Full_View (Ti)) /= Ti
17226             then
17227                Result :=
17228                  Search_Derivation_Levels (
17229                    Full_View (Ti),
17230                    Discrim_Values,
17231                    Stored_Discrim_Values);
17232             end if;
17233          end if;
17234
17235          --  If Result is not a (reference to a) discriminant, return it,
17236          --  otherwise set Result_Entity to the discriminant.
17237
17238          if Nkind (Result) = N_Defining_Identifier then
17239             pragma Assert (Result = Discriminant);
17240             Result_Entity := Result;
17241
17242          else
17243             if not Denotes_Discriminant (Result) then
17244                return Result;
17245             end if;
17246
17247             Result_Entity := Entity (Result);
17248          end if;
17249
17250          --  See if this level of derivation actually has discriminants because
17251          --  tagged derivations can add them, hence the lower levels need not
17252          --  have any.
17253
17254          if not Has_Discriminants (Ti) then
17255             return Result;
17256          end if;
17257
17258          --  Scan Ti's discriminants for Result_Entity, and return its
17259          --  corresponding value, if any.
17260
17261          Result_Entity := Original_Record_Component (Result_Entity);
17262
17263          Assoc := First_Elmt (Discrim_Values);
17264
17265          if Stored_Discrim_Values then
17266             Disc := First_Stored_Discriminant (Ti);
17267          else
17268             Disc := First_Discriminant (Ti);
17269          end if;
17270
17271          while Present (Disc) loop
17272             pragma Assert (Present (Assoc));
17273
17274             if Original_Record_Component (Disc) = Result_Entity then
17275                return Node (Assoc);
17276             end if;
17277
17278             Next_Elmt (Assoc);
17279
17280             if Stored_Discrim_Values then
17281                Next_Stored_Discriminant (Disc);
17282             else
17283                Next_Discriminant (Disc);
17284             end if;
17285          end loop;
17286
17287          --  Could not find it
17288
17289          return Result;
17290       end Search_Derivation_Levels;
17291
17292       --  Local Variables
17293
17294       Result : Node_Or_Entity_Id;
17295
17296    --  Start of processing for Get_Discriminant_Value
17297
17298    begin
17299       --  ??? This routine is a gigantic mess and will be deleted. For the
17300       --  time being just test for the trivial case before calling recurse.
17301
17302       if Base_Type (Scope (Discriminant)) = Base_Type (Typ_For_Constraint) then
17303          declare
17304             D : Entity_Id;
17305             E : Elmt_Id;
17306
17307          begin
17308             D := First_Discriminant (Typ_For_Constraint);
17309             E := First_Elmt (Constraint);
17310             while Present (D) loop
17311                if Chars (D) = Chars (Discriminant) then
17312                   return Node (E);
17313                end if;
17314
17315                Next_Discriminant (D);
17316                Next_Elmt (E);
17317             end loop;
17318          end;
17319       end if;
17320
17321       Result := Search_Derivation_Levels
17322         (Typ_For_Constraint, Constraint, False);
17323
17324       --  ??? hack to disappear when this routine is gone
17325
17326       if Nkind (Result) = N_Defining_Identifier then
17327          declare
17328             D : Entity_Id;
17329             E : Elmt_Id;
17330
17331          begin
17332             D := First_Discriminant (Typ_For_Constraint);
17333             E := First_Elmt (Constraint);
17334             while Present (D) loop
17335                if Root_Corresponding_Discriminant (D) = Discriminant then
17336                   return Node (E);
17337                end if;
17338
17339                Next_Discriminant (D);
17340                Next_Elmt (E);
17341             end loop;
17342          end;
17343       end if;
17344
17345       pragma Assert (Nkind (Result) /= N_Defining_Identifier);
17346       return Result;
17347    end Get_Discriminant_Value;
17348
17349    --------------------------
17350    -- Has_Range_Constraint --
17351    --------------------------
17352
17353    function Has_Range_Constraint (N : Node_Id) return Boolean is
17354       C : constant Node_Id := Constraint (N);
17355
17356    begin
17357       if Nkind (C) = N_Range_Constraint then
17358          return True;
17359
17360       elsif Nkind (C) = N_Digits_Constraint then
17361          return
17362             Is_Decimal_Fixed_Point_Type (Entity (Subtype_Mark (N)))
17363               or else Present (Range_Constraint (C));
17364
17365       elsif Nkind (C) = N_Delta_Constraint then
17366          return Present (Range_Constraint (C));
17367
17368       else
17369          return False;
17370       end if;
17371    end Has_Range_Constraint;
17372
17373    ------------------------
17374    -- Inherit_Components --
17375    ------------------------
17376
17377    function Inherit_Components
17378      (N             : Node_Id;
17379       Parent_Base   : Entity_Id;
17380       Derived_Base  : Entity_Id;
17381       Is_Tagged     : Boolean;
17382       Inherit_Discr : Boolean;
17383       Discs         : Elist_Id) return Elist_Id
17384    is
17385       Assoc_List : constant Elist_Id := New_Elmt_List;
17386
17387       procedure Inherit_Component
17388         (Old_C          : Entity_Id;
17389          Plain_Discrim  : Boolean := False;
17390          Stored_Discrim : Boolean := False);
17391       --  Inherits component Old_C from Parent_Base to the Derived_Base. If
17392       --  Plain_Discrim is True, Old_C is a discriminant. If Stored_Discrim is
17393       --  True, Old_C is a stored discriminant. If they are both false then
17394       --  Old_C is a regular component.
17395
17396       -----------------------
17397       -- Inherit_Component --
17398       -----------------------
17399
17400       procedure Inherit_Component
17401         (Old_C          : Entity_Id;
17402          Plain_Discrim  : Boolean := False;
17403          Stored_Discrim : Boolean := False)
17404       is
17405          procedure Set_Anonymous_Type (Id : Entity_Id);
17406          --  Id denotes the entity of an access discriminant or anonymous
17407          --  access component. Set the type of Id to either the same type of
17408          --  Old_C or create a new one depending on whether the parent and
17409          --  the child types are in the same scope.
17410
17411          ------------------------
17412          -- Set_Anonymous_Type --
17413          ------------------------
17414
17415          procedure Set_Anonymous_Type (Id : Entity_Id) is
17416             Old_Typ : constant Entity_Id := Etype (Old_C);
17417
17418          begin
17419             if Scope (Parent_Base) = Scope (Derived_Base) then
17420                Set_Etype (Id, Old_Typ);
17421
17422             --  The parent and the derived type are in two different scopes.
17423             --  Reuse the type of the original discriminant / component by
17424             --  copying it in order to preserve all attributes.
17425
17426             else
17427                declare
17428                   Typ : constant Entity_Id := New_Copy (Old_Typ);
17429
17430                begin
17431                   Set_Etype (Id, Typ);
17432
17433                   --  Since we do not generate component declarations for
17434                   --  inherited components, associate the itype with the
17435                   --  derived type.
17436
17437                   Set_Associated_Node_For_Itype (Typ, Parent (Derived_Base));
17438                   Set_Scope                     (Typ, Derived_Base);
17439                end;
17440             end if;
17441          end Set_Anonymous_Type;
17442
17443          --  Local variables and constants
17444
17445          New_C : constant Entity_Id := New_Copy (Old_C);
17446
17447          Corr_Discrim : Entity_Id;
17448          Discrim      : Entity_Id;
17449
17450       --  Start of processing for Inherit_Component
17451
17452       begin
17453          pragma Assert (not Is_Tagged or not Stored_Discrim);
17454
17455          Set_Parent (New_C, Parent (Old_C));
17456
17457          --  Regular discriminants and components must be inserted in the scope
17458          --  of the Derived_Base. Do it here.
17459
17460          if not Stored_Discrim then
17461             Enter_Name (New_C);
17462          end if;
17463
17464          --  For tagged types the Original_Record_Component must point to
17465          --  whatever this field was pointing to in the parent type. This has
17466          --  already been achieved by the call to New_Copy above.
17467
17468          if not Is_Tagged then
17469             Set_Original_Record_Component (New_C, New_C);
17470          end if;
17471
17472          --  Set the proper type of an access discriminant
17473
17474          if Ekind (New_C) = E_Discriminant
17475            and then Ekind (Etype (New_C)) = E_Anonymous_Access_Type
17476          then
17477             Set_Anonymous_Type (New_C);
17478          end if;
17479
17480          --  If we have inherited a component then see if its Etype contains
17481          --  references to Parent_Base discriminants. In this case, replace
17482          --  these references with the constraints given in Discs. We do not
17483          --  do this for the partial view of private types because this is
17484          --  not needed (only the components of the full view will be used
17485          --  for code generation) and cause problem. We also avoid this
17486          --  transformation in some error situations.
17487
17488          if Ekind (New_C) = E_Component then
17489
17490             --  Set the proper type of an anonymous access component
17491
17492             if Ekind (Etype (New_C)) = E_Anonymous_Access_Type then
17493                Set_Anonymous_Type (New_C);
17494
17495             elsif (Is_Private_Type (Derived_Base)
17496                     and then not Is_Generic_Type (Derived_Base))
17497               or else (Is_Empty_Elmt_List (Discs)
17498                         and then not Expander_Active)
17499             then
17500                Set_Etype (New_C, Etype (Old_C));
17501
17502             else
17503                --  The current component introduces a circularity of the
17504                --  following kind:
17505
17506                --     limited with Pack_2;
17507                --     package Pack_1 is
17508                --        type T_1 is tagged record
17509                --           Comp : access Pack_2.T_2;
17510                --           ...
17511                --        end record;
17512                --     end Pack_1;
17513
17514                --     with Pack_1;
17515                --     package Pack_2 is
17516                --        type T_2 is new Pack_1.T_1 with ...;
17517                --     end Pack_2;
17518
17519                Set_Etype
17520                  (New_C,
17521                   Constrain_Component_Type
17522                     (Old_C, Derived_Base, N, Parent_Base, Discs));
17523             end if;
17524          end if;
17525
17526          --  In derived tagged types it is illegal to reference a non
17527          --  discriminant component in the parent type. To catch this, mark
17528          --  these components with an Ekind of E_Void. This will be reset in
17529          --  Record_Type_Definition after processing the record extension of
17530          --  the derived type.
17531
17532          --  If the declaration is a private extension, there is no further
17533          --  record extension to process, and the components retain their
17534          --  current kind, because they are visible at this point.
17535
17536          if Is_Tagged and then Ekind (New_C) = E_Component
17537            and then Nkind (N) /= N_Private_Extension_Declaration
17538          then
17539             Set_Ekind (New_C, E_Void);
17540          end if;
17541
17542          if Plain_Discrim then
17543             Set_Corresponding_Discriminant (New_C, Old_C);
17544             Build_Discriminal (New_C);
17545
17546          --  If we are explicitly inheriting a stored discriminant it will be
17547          --  completely hidden.
17548
17549          elsif Stored_Discrim then
17550             Set_Corresponding_Discriminant (New_C, Empty);
17551             Set_Discriminal (New_C, Empty);
17552             Set_Is_Completely_Hidden (New_C);
17553
17554             --  Set the Original_Record_Component of each discriminant in the
17555             --  derived base to point to the corresponding stored that we just
17556             --  created.
17557
17558             Discrim := First_Discriminant (Derived_Base);
17559             while Present (Discrim) loop
17560                Corr_Discrim := Corresponding_Discriminant (Discrim);
17561
17562                --  Corr_Discrim could be missing in an error situation
17563
17564                if Present (Corr_Discrim)
17565                  and then Original_Record_Component (Corr_Discrim) = Old_C
17566                then
17567                   Set_Original_Record_Component (Discrim, New_C);
17568                end if;
17569
17570                Next_Discriminant (Discrim);
17571             end loop;
17572
17573             Append_Entity (New_C, Derived_Base);
17574          end if;
17575
17576          if not Is_Tagged then
17577             Append_Elmt (Old_C, Assoc_List);
17578             Append_Elmt (New_C, Assoc_List);
17579          end if;
17580       end Inherit_Component;
17581
17582       --  Variables local to Inherit_Component
17583
17584       Loc : constant Source_Ptr := Sloc (N);
17585
17586       Parent_Discrim : Entity_Id;
17587       Stored_Discrim : Entity_Id;
17588       D              : Entity_Id;
17589       Component      : Entity_Id;
17590
17591    --  Start of processing for Inherit_Components
17592
17593    begin
17594       if not Is_Tagged then
17595          Append_Elmt (Parent_Base,  Assoc_List);
17596          Append_Elmt (Derived_Base, Assoc_List);
17597       end if;
17598
17599       --  Inherit parent discriminants if needed
17600
17601       if Inherit_Discr then
17602          Parent_Discrim := First_Discriminant (Parent_Base);
17603          while Present (Parent_Discrim) loop
17604             Inherit_Component (Parent_Discrim, Plain_Discrim => True);
17605             Next_Discriminant (Parent_Discrim);
17606          end loop;
17607       end if;
17608
17609       --  Create explicit stored discrims for untagged types when necessary
17610
17611       if not Has_Unknown_Discriminants (Derived_Base)
17612         and then Has_Discriminants (Parent_Base)
17613         and then not Is_Tagged
17614         and then
17615           (not Inherit_Discr
17616             or else First_Discriminant (Parent_Base) /=
17617                     First_Stored_Discriminant (Parent_Base))
17618       then
17619          Stored_Discrim := First_Stored_Discriminant (Parent_Base);
17620          while Present (Stored_Discrim) loop
17621             Inherit_Component (Stored_Discrim, Stored_Discrim => True);
17622             Next_Stored_Discriminant (Stored_Discrim);
17623          end loop;
17624       end if;
17625
17626       --  See if we can apply the second transformation for derived types, as
17627       --  explained in point 6. in the comments above Build_Derived_Record_Type
17628       --  This is achieved by appending Derived_Base discriminants into Discs,
17629       --  which has the side effect of returning a non empty Discs list to the
17630       --  caller of Inherit_Components, which is what we want. This must be
17631       --  done for private derived types if there are explicit stored
17632       --  discriminants, to ensure that we can retrieve the values of the
17633       --  constraints provided in the ancestors.
17634
17635       if Inherit_Discr
17636         and then Is_Empty_Elmt_List (Discs)
17637         and then Present (First_Discriminant (Derived_Base))
17638         and then
17639           (not Is_Private_Type (Derived_Base)
17640             or else Is_Completely_Hidden
17641                       (First_Stored_Discriminant (Derived_Base))
17642             or else Is_Generic_Type (Derived_Base))
17643       then
17644          D := First_Discriminant (Derived_Base);
17645          while Present (D) loop
17646             Append_Elmt (New_Occurrence_Of (D, Loc), Discs);
17647             Next_Discriminant (D);
17648          end loop;
17649       end if;
17650
17651       --  Finally, inherit non-discriminant components unless they are not
17652       --  visible because defined or inherited from the full view of the
17653       --  parent. Don't inherit the _parent field of the parent type.
17654
17655       Component := First_Entity (Parent_Base);
17656       while Present (Component) loop
17657
17658          --  Ada 2005 (AI-251): Do not inherit components associated with
17659          --  secondary tags of the parent.
17660
17661          if Ekind (Component) = E_Component
17662            and then Present (Related_Type (Component))
17663          then
17664             null;
17665
17666          elsif Ekind (Component) /= E_Component
17667            or else Chars (Component) = Name_uParent
17668          then
17669             null;
17670
17671          --  If the derived type is within the parent type's declarative
17672          --  region, then the components can still be inherited even though
17673          --  they aren't visible at this point. This can occur for cases
17674          --  such as within public child units where the components must
17675          --  become visible upon entering the child unit's private part.
17676
17677          elsif not Is_Visible_Component (Component)
17678            and then not In_Open_Scopes (Scope (Parent_Base))
17679          then
17680             null;
17681
17682          elsif Ekind_In (Derived_Base, E_Private_Type,
17683                                        E_Limited_Private_Type)
17684          then
17685             null;
17686
17687          else
17688             Inherit_Component (Component);
17689          end if;
17690
17691          Next_Entity (Component);
17692       end loop;
17693
17694       --  For tagged derived types, inherited discriminants cannot be used in
17695       --  component declarations of the record extension part. To achieve this
17696       --  we mark the inherited discriminants as not visible.
17697
17698       if Is_Tagged and then Inherit_Discr then
17699          D := First_Discriminant (Derived_Base);
17700          while Present (D) loop
17701             Set_Is_Immediately_Visible (D, False);
17702             Next_Discriminant (D);
17703          end loop;
17704       end if;
17705
17706       return Assoc_List;
17707    end Inherit_Components;
17708
17709    -----------------------------
17710    -- Inherit_Predicate_Flags --
17711    -----------------------------
17712
17713    procedure Inherit_Predicate_Flags (Subt, Par : Entity_Id) is
17714    begin
17715       Set_Has_Predicates (Subt, Has_Predicates (Par));
17716       Set_Has_Static_Predicate_Aspect
17717         (Subt, Has_Static_Predicate_Aspect (Par));
17718       Set_Has_Dynamic_Predicate_Aspect
17719         (Subt, Has_Dynamic_Predicate_Aspect (Par));
17720    end Inherit_Predicate_Flags;
17721
17722    ----------------------
17723    -- Is_EVF_Procedure --
17724    ----------------------
17725
17726    function Is_EVF_Procedure (Subp : Entity_Id) return Boolean is
17727       Formal : Entity_Id;
17728
17729    begin
17730       --  Examine the formals of an Extensions_Visible False procedure looking
17731       --  for a controlling OUT parameter.
17732
17733       if Ekind (Subp) = E_Procedure
17734         and then Extensions_Visible_Status (Subp) = Extensions_Visible_False
17735       then
17736          Formal := First_Formal (Subp);
17737          while Present (Formal) loop
17738             if Ekind (Formal) = E_Out_Parameter
17739               and then Is_Controlling_Formal (Formal)
17740             then
17741                return True;
17742             end if;
17743
17744             Next_Formal (Formal);
17745          end loop;
17746       end if;
17747
17748       return False;
17749    end Is_EVF_Procedure;
17750
17751    -----------------------
17752    -- Is_Null_Extension --
17753    -----------------------
17754
17755    function Is_Null_Extension (T : Entity_Id) return Boolean is
17756       Type_Decl : constant Node_Id := Parent (Base_Type (T));
17757       Comp_List : Node_Id;
17758       Comp      : Node_Id;
17759
17760    begin
17761       if Nkind (Type_Decl) /= N_Full_Type_Declaration
17762         or else not Is_Tagged_Type (T)
17763         or else Nkind (Type_Definition (Type_Decl)) /=
17764                                               N_Derived_Type_Definition
17765         or else No (Record_Extension_Part (Type_Definition (Type_Decl)))
17766       then
17767          return False;
17768       end if;
17769
17770       Comp_List :=
17771         Component_List (Record_Extension_Part (Type_Definition (Type_Decl)));
17772
17773       if Present (Discriminant_Specifications (Type_Decl)) then
17774          return False;
17775
17776       elsif Present (Comp_List)
17777         and then Is_Non_Empty_List (Component_Items (Comp_List))
17778       then
17779          Comp := First (Component_Items (Comp_List));
17780
17781          --  Only user-defined components are relevant. The component list
17782          --  may also contain a parent component and internal components
17783          --  corresponding to secondary tags, but these do not determine
17784          --  whether this is a null extension.
17785
17786          while Present (Comp) loop
17787             if Comes_From_Source (Comp) then
17788                return False;
17789             end if;
17790
17791             Next (Comp);
17792          end loop;
17793
17794          return True;
17795
17796       else
17797          return True;
17798       end if;
17799    end Is_Null_Extension;
17800
17801    ------------------------------
17802    -- Is_Valid_Constraint_Kind --
17803    ------------------------------
17804
17805    function Is_Valid_Constraint_Kind
17806      (T_Kind          : Type_Kind;
17807       Constraint_Kind : Node_Kind) return Boolean
17808    is
17809    begin
17810       case T_Kind is
17811          when Enumeration_Kind |
17812               Integer_Kind =>
17813             return Constraint_Kind = N_Range_Constraint;
17814
17815          when Decimal_Fixed_Point_Kind =>
17816             return Nkind_In (Constraint_Kind, N_Digits_Constraint,
17817                                               N_Range_Constraint);
17818
17819          when Ordinary_Fixed_Point_Kind =>
17820             return Nkind_In (Constraint_Kind, N_Delta_Constraint,
17821                                               N_Range_Constraint);
17822
17823          when Float_Kind =>
17824             return Nkind_In (Constraint_Kind, N_Digits_Constraint,
17825                                               N_Range_Constraint);
17826
17827          when Access_Kind       |
17828               Array_Kind        |
17829               E_Record_Type     |
17830               E_Record_Subtype  |
17831               Class_Wide_Kind   |
17832               E_Incomplete_Type |
17833               Private_Kind      |
17834               Concurrent_Kind  =>
17835             return Constraint_Kind = N_Index_Or_Discriminant_Constraint;
17836
17837          when others =>
17838             return True; -- Error will be detected later
17839       end case;
17840    end Is_Valid_Constraint_Kind;
17841
17842    --------------------------
17843    -- Is_Visible_Component --
17844    --------------------------
17845
17846    function Is_Visible_Component
17847      (C : Entity_Id;
17848       N : Node_Id := Empty) return Boolean
17849    is
17850       Original_Comp : Entity_Id := Empty;
17851       Original_Type : Entity_Id;
17852       Type_Scope    : Entity_Id;
17853
17854       function Is_Local_Type (Typ : Entity_Id) return Boolean;
17855       --  Check whether parent type of inherited component is declared locally,
17856       --  possibly within a nested package or instance. The current scope is
17857       --  the derived record itself.
17858
17859       -------------------
17860       -- Is_Local_Type --
17861       -------------------
17862
17863       function Is_Local_Type (Typ : Entity_Id) return Boolean is
17864          Scop : Entity_Id;
17865
17866       begin
17867          Scop := Scope (Typ);
17868          while Present (Scop)
17869            and then Scop /= Standard_Standard
17870          loop
17871             if Scop = Scope (Current_Scope) then
17872                return True;
17873             end if;
17874
17875             Scop := Scope (Scop);
17876          end loop;
17877
17878          return False;
17879       end Is_Local_Type;
17880
17881    --  Start of processing for Is_Visible_Component
17882
17883    begin
17884       if Ekind_In (C, E_Component, E_Discriminant) then
17885          Original_Comp := Original_Record_Component (C);
17886       end if;
17887
17888       if No (Original_Comp) then
17889
17890          --  Premature usage, or previous error
17891
17892          return False;
17893
17894       else
17895          Original_Type := Scope (Original_Comp);
17896          Type_Scope    := Scope (Base_Type (Scope (C)));
17897       end if;
17898
17899       --  This test only concerns tagged types
17900
17901       if not Is_Tagged_Type (Original_Type) then
17902          return True;
17903
17904       --  If it is _Parent or _Tag, there is no visibility issue
17905
17906       elsif not Comes_From_Source (Original_Comp) then
17907          return True;
17908
17909       --  Discriminants are visible unless the (private) type has unknown
17910       --  discriminants. If the discriminant reference is inserted for a
17911       --  discriminant check on a full view it is also visible.
17912
17913       elsif Ekind (Original_Comp) = E_Discriminant
17914         and then
17915           (not Has_Unknown_Discriminants (Original_Type)
17916             or else (Present (N)
17917                       and then Nkind (N) = N_Selected_Component
17918                       and then Nkind (Prefix (N)) = N_Type_Conversion
17919                       and then not Comes_From_Source (Prefix (N))))
17920       then
17921          return True;
17922
17923       --  In the body of an instantiation, no need to check for the visibility
17924       --  of a component.
17925
17926       elsif In_Instance_Body then
17927          return True;
17928
17929       --  If the component has been declared in an ancestor which is currently
17930       --  a private type, then it is not visible. The same applies if the
17931       --  component's containing type is not in an open scope and the original
17932       --  component's enclosing type is a visible full view of a private type
17933       --  (which can occur in cases where an attempt is being made to reference
17934       --  a component in a sibling package that is inherited from a visible
17935       --  component of a type in an ancestor package; the component in the
17936       --  sibling package should not be visible even though the component it
17937       --  inherited from is visible). This does not apply however in the case
17938       --  where the scope of the type is a private child unit, or when the
17939       --  parent comes from a local package in which the ancestor is currently
17940       --  visible. The latter suppression of visibility is needed for cases
17941       --  that are tested in B730006.
17942
17943       elsif Is_Private_Type (Original_Type)
17944         or else
17945           (not Is_Private_Descendant (Type_Scope)
17946             and then not In_Open_Scopes (Type_Scope)
17947             and then Has_Private_Declaration (Original_Type))
17948       then
17949          --  If the type derives from an entity in a formal package, there
17950          --  are no additional visible components.
17951
17952          if Nkind (Original_Node (Unit_Declaration_Node (Type_Scope))) =
17953             N_Formal_Package_Declaration
17954          then
17955             return False;
17956
17957          --  if we are not in the private part of the current package, there
17958          --  are no additional visible components.
17959
17960          elsif Ekind (Scope (Current_Scope)) = E_Package
17961            and then not In_Private_Part (Scope (Current_Scope))
17962          then
17963             return False;
17964          else
17965             return
17966               Is_Child_Unit (Cunit_Entity (Current_Sem_Unit))
17967                 and then In_Open_Scopes (Scope (Original_Type))
17968                 and then Is_Local_Type (Type_Scope);
17969          end if;
17970
17971       --  There is another weird way in which a component may be invisible when
17972       --  the private and the full view are not derived from the same ancestor.
17973       --  Here is an example :
17974
17975       --       type A1 is tagged      record F1 : integer; end record;
17976       --       type A2 is new A1 with record F2 : integer; end record;
17977       --       type T is new A1 with private;
17978       --     private
17979       --       type T is new A2 with null record;
17980
17981       --  In this case, the full view of T inherits F1 and F2 but the private
17982       --  view inherits only F1
17983
17984       else
17985          declare
17986             Ancestor : Entity_Id := Scope (C);
17987
17988          begin
17989             loop
17990                if Ancestor = Original_Type then
17991                   return True;
17992
17993                --  The ancestor may have a partial view of the original type,
17994                --  but if the full view is in scope, as in a child body, the
17995                --  component is visible.
17996
17997                elsif In_Private_Part (Scope (Original_Type))
17998                  and then Full_View (Ancestor) = Original_Type
17999                then
18000                   return True;
18001
18002                elsif Ancestor = Etype (Ancestor) then
18003
18004                   --  No further ancestors to examine
18005
18006                   return False;
18007                end if;
18008
18009                Ancestor := Etype (Ancestor);
18010             end loop;
18011          end;
18012       end if;
18013    end Is_Visible_Component;
18014
18015    --------------------------
18016    -- Make_Class_Wide_Type --
18017    --------------------------
18018
18019    procedure Make_Class_Wide_Type (T : Entity_Id) is
18020       CW_Type : Entity_Id;
18021       CW_Name : Name_Id;
18022       Next_E  : Entity_Id;
18023
18024    begin
18025       if Present (Class_Wide_Type (T)) then
18026
18027          --  The class-wide type is a partially decorated entity created for a
18028          --  unanalyzed tagged type referenced through a limited with clause.
18029          --  When the tagged type is analyzed, its class-wide type needs to be
18030          --  redecorated. Note that we reuse the entity created by Decorate_
18031          --  Tagged_Type in order to preserve all links.
18032
18033          if Materialize_Entity (Class_Wide_Type (T)) then
18034             CW_Type := Class_Wide_Type (T);
18035             Set_Materialize_Entity (CW_Type, False);
18036
18037          --  The class wide type can have been defined by the partial view, in
18038          --  which case everything is already done.
18039
18040          else
18041             return;
18042          end if;
18043
18044       --  Default case, we need to create a new class-wide type
18045
18046       else
18047          CW_Type :=
18048            New_External_Entity (E_Void, Scope (T), Sloc (T), T, 'C', 0, 'T');
18049       end if;
18050
18051       --  Inherit root type characteristics
18052
18053       CW_Name := Chars (CW_Type);
18054       Next_E  := Next_Entity (CW_Type);
18055       Copy_Node (T, CW_Type);
18056       Set_Comes_From_Source (CW_Type, False);
18057       Set_Chars (CW_Type, CW_Name);
18058       Set_Parent (CW_Type, Parent (T));
18059       Set_Next_Entity (CW_Type, Next_E);
18060
18061       --  Ensure we have a new freeze node for the class-wide type. The partial
18062       --  view may have freeze action of its own, requiring a proper freeze
18063       --  node, and the same freeze node cannot be shared between the two
18064       --  types.
18065
18066       Set_Has_Delayed_Freeze (CW_Type);
18067       Set_Freeze_Node (CW_Type, Empty);
18068
18069       --  Customize the class-wide type: It has no prim. op., it cannot be
18070       --  abstract and its Etype points back to the specific root type.
18071
18072       Set_Ekind                       (CW_Type, E_Class_Wide_Type);
18073       Set_Is_Tagged_Type              (CW_Type, True);
18074       Set_Direct_Primitive_Operations (CW_Type, New_Elmt_List);
18075       Set_Is_Abstract_Type            (CW_Type, False);
18076       Set_Is_Constrained              (CW_Type, False);
18077       Set_Is_First_Subtype            (CW_Type, Is_First_Subtype (T));
18078       Set_Default_SSO                 (CW_Type);
18079
18080       if Ekind (T) = E_Class_Wide_Subtype then
18081          Set_Etype (CW_Type, Etype (Base_Type (T)));
18082       else
18083          Set_Etype (CW_Type, T);
18084       end if;
18085
18086       Set_No_Tagged_Streams_Pragma (CW_Type, No_Tagged_Streams);
18087
18088       --  If this is the class_wide type of a constrained subtype, it does
18089       --  not have discriminants.
18090
18091       Set_Has_Discriminants (CW_Type,
18092         Has_Discriminants (T) and then not Is_Constrained (T));
18093
18094       Set_Has_Unknown_Discriminants (CW_Type, True);
18095       Set_Class_Wide_Type (T, CW_Type);
18096       Set_Equivalent_Type (CW_Type, Empty);
18097
18098       --  The class-wide type of a class-wide type is itself (RM 3.9(14))
18099
18100       Set_Class_Wide_Type (CW_Type, CW_Type);
18101
18102       --  Inherit the "ghostness" from the root tagged type
18103
18104       if Ghost_Mode > None or else Is_Ghost_Entity (T) then
18105          Set_Is_Ghost_Entity (CW_Type);
18106       end if;
18107    end Make_Class_Wide_Type;
18108
18109    ----------------
18110    -- Make_Index --
18111    ----------------
18112
18113    procedure Make_Index
18114      (N            : Node_Id;
18115       Related_Nod  : Node_Id;
18116       Related_Id   : Entity_Id := Empty;
18117       Suffix_Index : Nat       := 1;
18118       In_Iter_Schm : Boolean   := False)
18119    is
18120       R      : Node_Id;
18121       T      : Entity_Id;
18122       Def_Id : Entity_Id := Empty;
18123       Found  : Boolean := False;
18124
18125    begin
18126       --  For a discrete range used in a constrained array definition and
18127       --  defined by a range, an implicit conversion to the predefined type
18128       --  INTEGER is assumed if each bound is either a numeric literal, a named
18129       --  number, or an attribute, and the type of both bounds (prior to the
18130       --  implicit conversion) is the type universal_integer. Otherwise, both
18131       --  bounds must be of the same discrete type, other than universal
18132       --  integer; this type must be determinable independently of the
18133       --  context, but using the fact that the type must be discrete and that
18134       --  both bounds must have the same type.
18135
18136       --  Character literals also have a universal type in the absence of
18137       --  of additional context,  and are resolved to Standard_Character.
18138
18139       if Nkind (N) = N_Range then
18140
18141          --  The index is given by a range constraint. The bounds are known
18142          --  to be of a consistent type.
18143
18144          if not Is_Overloaded (N) then
18145             T := Etype (N);
18146
18147             --  For universal bounds, choose the specific predefined type
18148
18149             if T = Universal_Integer then
18150                T := Standard_Integer;
18151
18152             elsif T = Any_Character then
18153                Ambiguous_Character (Low_Bound (N));
18154
18155                T := Standard_Character;
18156             end if;
18157
18158          --  The node may be overloaded because some user-defined operators
18159          --  are available, but if a universal interpretation exists it is
18160          --  also the selected one.
18161
18162          elsif Universal_Interpretation (N) = Universal_Integer then
18163             T := Standard_Integer;
18164
18165          else
18166             T := Any_Type;
18167
18168             declare
18169                Ind : Interp_Index;
18170                It  : Interp;
18171
18172             begin
18173                Get_First_Interp (N, Ind, It);
18174                while Present (It.Typ) loop
18175                   if Is_Discrete_Type (It.Typ) then
18176
18177                      if Found
18178                        and then not Covers (It.Typ, T)
18179                        and then not Covers (T, It.Typ)
18180                      then
18181                         Error_Msg_N ("ambiguous bounds in discrete range", N);
18182                         exit;
18183                      else
18184                         T := It.Typ;
18185                         Found := True;
18186                      end if;
18187                   end if;
18188
18189                   Get_Next_Interp (Ind, It);
18190                end loop;
18191
18192                if T = Any_Type then
18193                   Error_Msg_N ("discrete type required for range", N);
18194                   Set_Etype (N, Any_Type);
18195                   return;
18196
18197                elsif T = Universal_Integer then
18198                   T := Standard_Integer;
18199                end if;
18200             end;
18201          end if;
18202
18203          if not Is_Discrete_Type (T) then
18204             Error_Msg_N ("discrete type required for range", N);
18205             Set_Etype (N, Any_Type);
18206             return;
18207          end if;
18208
18209          if Nkind (Low_Bound (N)) = N_Attribute_Reference
18210            and then Attribute_Name (Low_Bound (N)) = Name_First
18211            and then Is_Entity_Name (Prefix (Low_Bound (N)))
18212            and then Is_Type (Entity (Prefix (Low_Bound (N))))
18213            and then Is_Discrete_Type (Entity (Prefix (Low_Bound (N))))
18214          then
18215             --  The type of the index will be the type of the prefix, as long
18216             --  as the upper bound is 'Last of the same type.
18217
18218             Def_Id := Entity (Prefix (Low_Bound (N)));
18219
18220             if Nkind (High_Bound (N)) /= N_Attribute_Reference
18221               or else Attribute_Name (High_Bound (N)) /= Name_Last
18222               or else not Is_Entity_Name (Prefix (High_Bound (N)))
18223               or else Entity (Prefix (High_Bound (N))) /= Def_Id
18224             then
18225                Def_Id := Empty;
18226             end if;
18227          end if;
18228
18229          R := N;
18230          Process_Range_Expr_In_Decl (R, T, In_Iter_Schm => In_Iter_Schm);
18231
18232       elsif Nkind (N) = N_Subtype_Indication then
18233
18234          --  The index is given by a subtype with a range constraint
18235
18236          T := Base_Type (Entity (Subtype_Mark (N)));
18237
18238          if not Is_Discrete_Type (T) then
18239             Error_Msg_N ("discrete type required for range", N);
18240             Set_Etype (N, Any_Type);
18241             return;
18242          end if;
18243
18244          R := Range_Expression (Constraint (N));
18245
18246          Resolve (R, T);
18247          Process_Range_Expr_In_Decl
18248            (R, Entity (Subtype_Mark (N)), In_Iter_Schm => In_Iter_Schm);
18249
18250       elsif Nkind (N) = N_Attribute_Reference then
18251
18252          --  Catch beginner's error (use of attribute other than 'Range)
18253
18254          if Attribute_Name (N) /= Name_Range then
18255             Error_Msg_N ("expect attribute ''Range", N);
18256             Set_Etype (N, Any_Type);
18257             return;
18258          end if;
18259
18260          --  If the node denotes the range of a type mark, that is also the
18261          --  resulting type, and we do not need to create an Itype for it.
18262
18263          if Is_Entity_Name (Prefix (N))
18264            and then Comes_From_Source (N)
18265            and then Is_Type (Entity (Prefix (N)))
18266            and then Is_Discrete_Type (Entity (Prefix (N)))
18267          then
18268             Def_Id := Entity (Prefix (N));
18269          end if;
18270
18271          Analyze_And_Resolve (N);
18272          T := Etype (N);
18273          R := N;
18274
18275       --  If none of the above, must be a subtype. We convert this to a
18276       --  range attribute reference because in the case of declared first
18277       --  named subtypes, the types in the range reference can be different
18278       --  from the type of the entity. A range attribute normalizes the
18279       --  reference and obtains the correct types for the bounds.
18280
18281       --  This transformation is in the nature of an expansion, is only
18282       --  done if expansion is active. In particular, it is not done on
18283       --  formal generic types,  because we need to retain the name of the
18284       --  original index for instantiation purposes.
18285
18286       else
18287          if not Is_Entity_Name (N) or else not Is_Type (Entity (N)) then
18288             Error_Msg_N ("invalid subtype mark in discrete range ", N);
18289             Set_Etype (N, Any_Integer);
18290             return;
18291
18292          else
18293             --  The type mark may be that of an incomplete type. It is only
18294             --  now that we can get the full view, previous analysis does
18295             --  not look specifically for a type mark.
18296
18297             Set_Entity (N, Get_Full_View (Entity (N)));
18298             Set_Etype  (N, Entity (N));
18299             Def_Id := Entity (N);
18300
18301             if not Is_Discrete_Type (Def_Id) then
18302                Error_Msg_N ("discrete type required for index", N);
18303                Set_Etype (N, Any_Type);
18304                return;
18305             end if;
18306          end if;
18307
18308          if Expander_Active then
18309             Rewrite (N,
18310               Make_Attribute_Reference (Sloc (N),
18311                 Attribute_Name => Name_Range,
18312                 Prefix         => Relocate_Node (N)));
18313
18314             --  The original was a subtype mark that does not freeze. This
18315             --  means that the rewritten version must not freeze either.
18316
18317             Set_Must_Not_Freeze (N);
18318             Set_Must_Not_Freeze (Prefix (N));
18319             Analyze_And_Resolve (N);
18320             T := Etype (N);
18321             R := N;
18322
18323          --  If expander is inactive, type is legal, nothing else to construct
18324
18325          else
18326             return;
18327          end if;
18328       end if;
18329
18330       if not Is_Discrete_Type (T) then
18331          Error_Msg_N ("discrete type required for range", N);
18332          Set_Etype (N, Any_Type);
18333          return;
18334
18335       elsif T = Any_Type then
18336          Set_Etype (N, Any_Type);
18337          return;
18338       end if;
18339
18340       --  We will now create the appropriate Itype to describe the range, but
18341       --  first a check. If we originally had a subtype, then we just label
18342       --  the range with this subtype. Not only is there no need to construct
18343       --  a new subtype, but it is wrong to do so for two reasons:
18344
18345       --    1. A legality concern, if we have a subtype, it must not freeze,
18346       --       and the Itype would cause freezing incorrectly
18347
18348       --    2. An efficiency concern, if we created an Itype, it would not be
18349       --       recognized as the same type for the purposes of eliminating
18350       --       checks in some circumstances.
18351
18352       --  We signal this case by setting the subtype entity in Def_Id
18353
18354       if No (Def_Id) then
18355          Def_Id :=
18356            Create_Itype (E_Void, Related_Nod, Related_Id, 'D', Suffix_Index);
18357          Set_Etype (Def_Id, Base_Type (T));
18358
18359          if Is_Signed_Integer_Type (T) then
18360             Set_Ekind (Def_Id, E_Signed_Integer_Subtype);
18361
18362          elsif Is_Modular_Integer_Type (T) then
18363             Set_Ekind (Def_Id, E_Modular_Integer_Subtype);
18364
18365          else
18366             Set_Ekind             (Def_Id, E_Enumeration_Subtype);
18367             Set_Is_Character_Type (Def_Id, Is_Character_Type (T));
18368             Set_First_Literal     (Def_Id, First_Literal (T));
18369          end if;
18370
18371          Set_Size_Info      (Def_Id,                  (T));
18372          Set_RM_Size        (Def_Id, RM_Size          (T));
18373          Set_First_Rep_Item (Def_Id, First_Rep_Item   (T));
18374
18375          Set_Scalar_Range   (Def_Id, R);
18376          Conditional_Delay  (Def_Id, T);
18377
18378          if Nkind (N) = N_Subtype_Indication then
18379             Inherit_Predicate_Flags (Def_Id, Entity (Subtype_Mark (N)));
18380          end if;
18381
18382          --  In the subtype indication case, if the immediate parent of the
18383          --  new subtype is non-static, then the subtype we create is non-
18384          --  static, even if its bounds are static.
18385
18386          if Nkind (N) = N_Subtype_Indication
18387            and then not Is_OK_Static_Subtype (Entity (Subtype_Mark (N)))
18388          then
18389             Set_Is_Non_Static_Subtype (Def_Id);
18390          end if;
18391       end if;
18392
18393       --  Final step is to label the index with this constructed type
18394
18395       Set_Etype (N, Def_Id);
18396    end Make_Index;
18397
18398    ------------------------------
18399    -- Modular_Type_Declaration --
18400    ------------------------------
18401
18402    procedure Modular_Type_Declaration (T : Entity_Id; Def : Node_Id) is
18403       Mod_Expr : constant Node_Id := Expression (Def);
18404       M_Val    : Uint;
18405
18406       procedure Set_Modular_Size (Bits : Int);
18407       --  Sets RM_Size to Bits, and Esize to normal word size above this
18408
18409       ----------------------
18410       -- Set_Modular_Size --
18411       ----------------------
18412
18413       procedure Set_Modular_Size (Bits : Int) is
18414       begin
18415          Set_RM_Size (T, UI_From_Int (Bits));
18416
18417          if Bits <= 8 then
18418             Init_Esize (T, 8);
18419
18420          elsif Bits <= 16 then
18421             Init_Esize (T, 16);
18422
18423          elsif Bits <= 32 then
18424             Init_Esize (T, 32);
18425
18426          else
18427             Init_Esize (T, System_Max_Binary_Modulus_Power);
18428          end if;
18429
18430          if not Non_Binary_Modulus (T) and then Esize (T) = RM_Size (T) then
18431             Set_Is_Known_Valid (T);
18432          end if;
18433       end Set_Modular_Size;
18434
18435    --  Start of processing for Modular_Type_Declaration
18436
18437    begin
18438       --  If the mod expression is (exactly) 2 * literal, where literal is
18439       --  64 or less,then almost certainly the * was meant to be **. Warn.
18440
18441       if Warn_On_Suspicious_Modulus_Value
18442         and then Nkind (Mod_Expr) = N_Op_Multiply
18443         and then Nkind (Left_Opnd (Mod_Expr)) = N_Integer_Literal
18444         and then Intval (Left_Opnd (Mod_Expr)) = Uint_2
18445         and then Nkind (Right_Opnd (Mod_Expr)) = N_Integer_Literal
18446         and then Intval (Right_Opnd (Mod_Expr)) <= Uint_64
18447       then
18448          Error_Msg_N
18449            ("suspicious MOD value, was '*'* intended'??M?", Mod_Expr);
18450       end if;
18451
18452       --  Proceed with analysis of mod expression
18453
18454       Analyze_And_Resolve (Mod_Expr, Any_Integer);
18455       Set_Etype (T, T);
18456       Set_Ekind (T, E_Modular_Integer_Type);
18457       Init_Alignment (T);
18458       Set_Is_Constrained (T);
18459
18460       if not Is_OK_Static_Expression (Mod_Expr) then
18461          Flag_Non_Static_Expr
18462            ("non-static expression used for modular type bound!", Mod_Expr);
18463          M_Val := 2 ** System_Max_Binary_Modulus_Power;
18464       else
18465          M_Val := Expr_Value (Mod_Expr);
18466       end if;
18467
18468       if M_Val < 1 then
18469          Error_Msg_N ("modulus value must be positive", Mod_Expr);
18470          M_Val := 2 ** System_Max_Binary_Modulus_Power;
18471       end if;
18472
18473       if M_Val > 2 ** Standard_Long_Integer_Size then
18474          Check_Restriction (No_Long_Long_Integers, Mod_Expr);
18475       end if;
18476
18477       Set_Modulus (T, M_Val);
18478
18479       --   Create bounds for the modular type based on the modulus given in
18480       --   the type declaration and then analyze and resolve those bounds.
18481
18482       Set_Scalar_Range (T,
18483         Make_Range (Sloc (Mod_Expr),
18484           Low_Bound  => Make_Integer_Literal (Sloc (Mod_Expr), 0),
18485           High_Bound => Make_Integer_Literal (Sloc (Mod_Expr), M_Val - 1)));
18486
18487       --  Properly analyze the literals for the range. We do this manually
18488       --  because we can't go calling Resolve, since we are resolving these
18489       --  bounds with the type, and this type is certainly not complete yet.
18490
18491       Set_Etype (Low_Bound  (Scalar_Range (T)), T);
18492       Set_Etype (High_Bound (Scalar_Range (T)), T);
18493       Set_Is_Static_Expression (Low_Bound  (Scalar_Range (T)));
18494       Set_Is_Static_Expression (High_Bound (Scalar_Range (T)));
18495
18496       --  Loop through powers of two to find number of bits required
18497
18498       for Bits in Int range 0 .. System_Max_Binary_Modulus_Power loop
18499
18500          --  Binary case
18501
18502          if M_Val = 2 ** Bits then
18503             Set_Modular_Size (Bits);
18504             return;
18505
18506          --  Nonbinary case
18507
18508          elsif M_Val < 2 ** Bits then
18509             Check_SPARK_05_Restriction ("modulus should be a power of 2", T);
18510             Set_Non_Binary_Modulus (T);
18511
18512             if Bits > System_Max_Nonbinary_Modulus_Power then
18513                Error_Msg_Uint_1 :=
18514                  UI_From_Int (System_Max_Nonbinary_Modulus_Power);
18515                Error_Msg_F
18516                  ("nonbinary modulus exceeds limit (2 '*'*^ - 1)", Mod_Expr);
18517                Set_Modular_Size (System_Max_Binary_Modulus_Power);
18518                return;
18519
18520             else
18521                --  In the nonbinary case, set size as per RM 13.3(55)
18522
18523                Set_Modular_Size (Bits);
18524                return;
18525             end if;
18526          end if;
18527
18528       end loop;
18529
18530       --  If we fall through, then the size exceed System.Max_Binary_Modulus
18531       --  so we just signal an error and set the maximum size.
18532
18533       Error_Msg_Uint_1 := UI_From_Int (System_Max_Binary_Modulus_Power);
18534       Error_Msg_F ("modulus exceeds limit (2 '*'*^)", Mod_Expr);
18535
18536       Set_Modular_Size (System_Max_Binary_Modulus_Power);
18537       Init_Alignment (T);
18538
18539    end Modular_Type_Declaration;
18540
18541    --------------------------
18542    -- New_Concatenation_Op --
18543    --------------------------
18544
18545    procedure New_Concatenation_Op (Typ : Entity_Id) is
18546       Loc : constant Source_Ptr := Sloc (Typ);
18547       Op  : Entity_Id;
18548
18549       function Make_Op_Formal (Typ, Op : Entity_Id) return Entity_Id;
18550       --  Create abbreviated declaration for the formal of a predefined
18551       --  Operator 'Op' of type 'Typ'
18552
18553       --------------------
18554       -- Make_Op_Formal --
18555       --------------------
18556
18557       function Make_Op_Formal (Typ, Op : Entity_Id) return Entity_Id is
18558          Formal : Entity_Id;
18559       begin
18560          Formal := New_Internal_Entity (E_In_Parameter, Op, Loc, 'P');
18561          Set_Etype (Formal, Typ);
18562          Set_Mechanism (Formal, Default_Mechanism);
18563          return Formal;
18564       end Make_Op_Formal;
18565
18566    --  Start of processing for New_Concatenation_Op
18567
18568    begin
18569       Op := Make_Defining_Operator_Symbol (Loc, Name_Op_Concat);
18570
18571       Set_Ekind                   (Op, E_Operator);
18572       Set_Scope                   (Op, Current_Scope);
18573       Set_Etype                   (Op, Typ);
18574       Set_Homonym                 (Op, Get_Name_Entity_Id (Name_Op_Concat));
18575       Set_Is_Immediately_Visible  (Op);
18576       Set_Is_Intrinsic_Subprogram (Op);
18577       Set_Has_Completion          (Op);
18578       Append_Entity               (Op, Current_Scope);
18579
18580       Set_Name_Entity_Id (Name_Op_Concat, Op);
18581
18582       Append_Entity (Make_Op_Formal (Typ, Op), Op);
18583       Append_Entity (Make_Op_Formal (Typ, Op), Op);
18584    end New_Concatenation_Op;
18585
18586    -------------------------
18587    -- OK_For_Limited_Init --
18588    -------------------------
18589
18590    --  ???Check all calls of this, and compare the conditions under which it's
18591    --  called.
18592
18593    function OK_For_Limited_Init
18594      (Typ : Entity_Id;
18595       Exp : Node_Id) return Boolean
18596    is
18597    begin
18598       return Is_CPP_Constructor_Call (Exp)
18599         or else (Ada_Version >= Ada_2005
18600                   and then not Debug_Flag_Dot_L
18601                   and then OK_For_Limited_Init_In_05 (Typ, Exp));
18602    end OK_For_Limited_Init;
18603
18604    -------------------------------
18605    -- OK_For_Limited_Init_In_05 --
18606    -------------------------------
18607
18608    function OK_For_Limited_Init_In_05
18609      (Typ : Entity_Id;
18610       Exp : Node_Id) return Boolean
18611    is
18612    begin
18613       --  An object of a limited interface type can be initialized with any
18614       --  expression of a nonlimited descendant type.
18615
18616       if Is_Class_Wide_Type (Typ)
18617         and then Is_Limited_Interface (Typ)
18618         and then not Is_Limited_Type (Etype (Exp))
18619       then
18620          return True;
18621       end if;
18622
18623       --  Ada 2005 (AI-287, AI-318): Relax the strictness of the front end in
18624       --  case of limited aggregates (including extension aggregates), and
18625       --  function calls. The function call may have been given in prefixed
18626       --  notation, in which case the original node is an indexed component.
18627       --  If the function is parameterless, the original node was an explicit
18628       --  dereference. The function may also be parameterless, in which case
18629       --  the source node is just an identifier.
18630
18631       --  A branch of a conditional expression may have been removed if the
18632       --  condition is statically known. This happens during expansion, and
18633       --  thus will not happen if previous errors were encountered. The check
18634       --  will have been performed on the chosen branch, which replaces the
18635       --  original conditional expression.
18636
18637       if No (Exp) then
18638          return True;
18639       end if;
18640
18641       case Nkind (Original_Node (Exp)) is
18642          when N_Aggregate | N_Extension_Aggregate | N_Function_Call | N_Op =>
18643             return True;
18644
18645          when N_Identifier =>
18646             return Present (Entity (Original_Node (Exp)))
18647               and then Ekind (Entity (Original_Node (Exp))) = E_Function;
18648
18649          when N_Qualified_Expression =>
18650             return
18651               OK_For_Limited_Init_In_05
18652                 (Typ, Expression (Original_Node (Exp)));
18653
18654          --  Ada 2005 (AI-251): If a class-wide interface object is initialized
18655          --  with a function call, the expander has rewritten the call into an
18656          --  N_Type_Conversion node to force displacement of the pointer to
18657          --  reference the component containing the secondary dispatch table.
18658          --  Otherwise a type conversion is not a legal context.
18659          --  A return statement for a build-in-place function returning a
18660          --  synchronized type also introduces an unchecked conversion.
18661
18662          when N_Type_Conversion           |
18663               N_Unchecked_Type_Conversion =>
18664             return not Comes_From_Source (Exp)
18665               and then
18666                 OK_For_Limited_Init_In_05
18667                   (Typ, Expression (Original_Node (Exp)));
18668
18669          when N_Indexed_Component     |
18670               N_Selected_Component    |
18671               N_Explicit_Dereference  =>
18672             return Nkind (Exp) = N_Function_Call;
18673
18674          --  A use of 'Input is a function call, hence allowed. Normally the
18675          --  attribute will be changed to a call, but the attribute by itself
18676          --  can occur with -gnatc.
18677
18678          when N_Attribute_Reference =>
18679             return Attribute_Name (Original_Node (Exp)) = Name_Input;
18680
18681          --  For a case expression, all dependent expressions must be legal
18682
18683          when N_Case_Expression =>
18684             declare
18685                Alt : Node_Id;
18686
18687             begin
18688                Alt := First (Alternatives (Original_Node (Exp)));
18689                while Present (Alt) loop
18690                   if not OK_For_Limited_Init_In_05 (Typ, Expression (Alt)) then
18691                      return False;
18692                   end if;
18693
18694                   Next (Alt);
18695                end loop;
18696
18697                return True;
18698             end;
18699
18700          --  For an if expression, all dependent expressions must be legal
18701
18702          when N_If_Expression =>
18703             declare
18704                Then_Expr : constant Node_Id :=
18705                              Next (First (Expressions (Original_Node (Exp))));
18706                Else_Expr : constant Node_Id := Next (Then_Expr);
18707             begin
18708                return OK_For_Limited_Init_In_05 (Typ, Then_Expr)
18709                         and then
18710                       OK_For_Limited_Init_In_05 (Typ, Else_Expr);
18711             end;
18712
18713          when others =>
18714             return False;
18715       end case;
18716    end OK_For_Limited_Init_In_05;
18717
18718    -------------------------------------------
18719    -- Ordinary_Fixed_Point_Type_Declaration --
18720    -------------------------------------------
18721
18722    procedure Ordinary_Fixed_Point_Type_Declaration
18723      (T   : Entity_Id;
18724       Def : Node_Id)
18725    is
18726       Loc           : constant Source_Ptr := Sloc (Def);
18727       Delta_Expr    : constant Node_Id    := Delta_Expression (Def);
18728       RRS           : constant Node_Id    := Real_Range_Specification (Def);
18729       Implicit_Base : Entity_Id;
18730       Delta_Val     : Ureal;
18731       Small_Val     : Ureal;
18732       Low_Val       : Ureal;
18733       High_Val      : Ureal;
18734
18735    begin
18736       Check_Restriction (No_Fixed_Point, Def);
18737
18738       --  Create implicit base type
18739
18740       Implicit_Base :=
18741         Create_Itype (E_Ordinary_Fixed_Point_Type, Parent (Def), T, 'B');
18742       Set_Etype (Implicit_Base, Implicit_Base);
18743
18744       --  Analyze and process delta expression
18745
18746       Analyze_And_Resolve (Delta_Expr, Any_Real);
18747
18748       Check_Delta_Expression (Delta_Expr);
18749       Delta_Val := Expr_Value_R (Delta_Expr);
18750
18751       Set_Delta_Value (Implicit_Base, Delta_Val);
18752
18753       --  Compute default small from given delta, which is the largest power
18754       --  of two that does not exceed the given delta value.
18755
18756       declare
18757          Tmp   : Ureal;
18758          Scale : Int;
18759
18760       begin
18761          Tmp := Ureal_1;
18762          Scale := 0;
18763
18764          if Delta_Val < Ureal_1 then
18765             while Delta_Val < Tmp loop
18766                Tmp := Tmp / Ureal_2;
18767                Scale := Scale + 1;
18768             end loop;
18769
18770          else
18771             loop
18772                Tmp := Tmp * Ureal_2;
18773                exit when Tmp > Delta_Val;
18774                Scale := Scale - 1;
18775             end loop;
18776          end if;
18777
18778          Small_Val := UR_From_Components (Uint_1, UI_From_Int (Scale), 2);
18779       end;
18780
18781       Set_Small_Value (Implicit_Base, Small_Val);
18782
18783       --  If no range was given, set a dummy range
18784
18785       if RRS <= Empty_Or_Error then
18786          Low_Val  := -Small_Val;
18787          High_Val := Small_Val;
18788
18789       --  Otherwise analyze and process given range
18790
18791       else
18792          declare
18793             Low  : constant Node_Id := Low_Bound  (RRS);
18794             High : constant Node_Id := High_Bound (RRS);
18795
18796          begin
18797             Analyze_And_Resolve (Low, Any_Real);
18798             Analyze_And_Resolve (High, Any_Real);
18799             Check_Real_Bound (Low);
18800             Check_Real_Bound (High);
18801
18802             --  Obtain and set the range
18803
18804             Low_Val  := Expr_Value_R (Low);
18805             High_Val := Expr_Value_R (High);
18806
18807             if Low_Val > High_Val then
18808                Error_Msg_NE ("??fixed point type& has null range", Def, T);
18809             end if;
18810          end;
18811       end if;
18812
18813       --  The range for both the implicit base and the declared first subtype
18814       --  cannot be set yet, so we use the special routine Set_Fixed_Range to
18815       --  set a temporary range in place. Note that the bounds of the base
18816       --  type will be widened to be symmetrical and to fill the available
18817       --  bits when the type is frozen.
18818
18819       --  We could do this with all discrete types, and probably should, but
18820       --  we absolutely have to do it for fixed-point, since the end-points
18821       --  of the range and the size are determined by the small value, which
18822       --  could be reset before the freeze point.
18823
18824       Set_Fixed_Range (Implicit_Base, Loc, Low_Val, High_Val);
18825       Set_Fixed_Range (T, Loc, Low_Val, High_Val);
18826
18827       --  Complete definition of first subtype. The inheritance of the rep item
18828       --  chain ensures that SPARK-related pragmas are not clobbered when the
18829       --  ordinary fixed point type acts as a full view of a private type.
18830
18831       Set_Ekind              (T, E_Ordinary_Fixed_Point_Subtype);
18832       Set_Etype              (T, Implicit_Base);
18833       Init_Size_Align        (T);
18834       Inherit_Rep_Item_Chain (T, Implicit_Base);
18835       Set_Small_Value        (T, Small_Val);
18836       Set_Delta_Value        (T, Delta_Val);
18837       Set_Is_Constrained     (T);
18838    end Ordinary_Fixed_Point_Type_Declaration;
18839
18840    ----------------------------------
18841    -- Preanalyze_Assert_Expression --
18842    ----------------------------------
18843
18844    procedure Preanalyze_Assert_Expression (N : Node_Id; T : Entity_Id) is
18845    begin
18846       In_Assertion_Expr := In_Assertion_Expr + 1;
18847       Preanalyze_Spec_Expression (N, T);
18848       In_Assertion_Expr := In_Assertion_Expr - 1;
18849    end Preanalyze_Assert_Expression;
18850
18851    -----------------------------------
18852    -- Preanalyze_Default_Expression --
18853    -----------------------------------
18854
18855    procedure Preanalyze_Default_Expression (N : Node_Id; T : Entity_Id) is
18856       Save_In_Default_Expr : constant Boolean := In_Default_Expr;
18857    begin
18858       In_Default_Expr := True;
18859       Preanalyze_Spec_Expression (N, T);
18860       In_Default_Expr := Save_In_Default_Expr;
18861    end Preanalyze_Default_Expression;
18862
18863    --------------------------------
18864    -- Preanalyze_Spec_Expression --
18865    --------------------------------
18866
18867    procedure Preanalyze_Spec_Expression (N : Node_Id; T : Entity_Id) is
18868       Save_In_Spec_Expression : constant Boolean := In_Spec_Expression;
18869    begin
18870       In_Spec_Expression := True;
18871       Preanalyze_And_Resolve (N, T);
18872       In_Spec_Expression := Save_In_Spec_Expression;
18873    end Preanalyze_Spec_Expression;
18874
18875    ----------------------------------------
18876    -- Prepare_Private_Subtype_Completion --
18877    ----------------------------------------
18878
18879    procedure Prepare_Private_Subtype_Completion
18880      (Id          : Entity_Id;
18881       Related_Nod : Node_Id)
18882    is
18883       Id_B   : constant Entity_Id := Base_Type (Id);
18884       Full_B : Entity_Id := Full_View (Id_B);
18885       Full   : Entity_Id;
18886
18887    begin
18888       if Present (Full_B) then
18889
18890          --  Get to the underlying full view if necessary
18891
18892          if Is_Private_Type (Full_B)
18893            and then Present (Underlying_Full_View (Full_B))
18894          then
18895             Full_B := Underlying_Full_View (Full_B);
18896          end if;
18897
18898          --  The Base_Type is already completed, we can complete the subtype
18899          --  now. We have to create a new entity with the same name, Thus we
18900          --  can't use Create_Itype.
18901
18902          Full := Make_Defining_Identifier (Sloc (Id), Chars (Id));
18903          Set_Is_Itype (Full);
18904          Set_Associated_Node_For_Itype (Full, Related_Nod);
18905          Complete_Private_Subtype (Id, Full, Full_B, Related_Nod);
18906       end if;
18907
18908       --  The parent subtype may be private, but the base might not, in some
18909       --  nested instances. In that case, the subtype does not need to be
18910       --  exchanged. It would still be nice to make private subtypes and their
18911       --  bases consistent at all times ???
18912
18913       if Is_Private_Type (Id_B) then
18914          Append_Elmt (Id, Private_Dependents (Id_B));
18915       end if;
18916    end Prepare_Private_Subtype_Completion;
18917
18918    ---------------------------
18919    -- Process_Discriminants --
18920    ---------------------------
18921
18922    procedure Process_Discriminants
18923      (N    : Node_Id;
18924       Prev : Entity_Id := Empty)
18925    is
18926       Elist               : constant Elist_Id := New_Elmt_List;
18927       Id                  : Node_Id;
18928       Discr               : Node_Id;
18929       Discr_Number        : Uint;
18930       Discr_Type          : Entity_Id;
18931       Default_Present     : Boolean := False;
18932       Default_Not_Present : Boolean := False;
18933
18934    begin
18935       --  A composite type other than an array type can have discriminants.
18936       --  On entry, the current scope is the composite type.
18937
18938       --  The discriminants are initially entered into the scope of the type
18939       --  via Enter_Name with the default Ekind of E_Void to prevent premature
18940       --  use, as explained at the end of this procedure.
18941
18942       Discr := First (Discriminant_Specifications (N));
18943       while Present (Discr) loop
18944          Enter_Name (Defining_Identifier (Discr));
18945
18946          --  For navigation purposes we add a reference to the discriminant
18947          --  in the entity for the type. If the current declaration is a
18948          --  completion, place references on the partial view. Otherwise the
18949          --  type is the current scope.
18950
18951          if Present (Prev) then
18952
18953             --  The references go on the partial view, if present. If the
18954             --  partial view has discriminants, the references have been
18955             --  generated already.
18956
18957             if not Has_Discriminants (Prev) then
18958                Generate_Reference (Prev, Defining_Identifier (Discr), 'd');
18959             end if;
18960          else
18961             Generate_Reference
18962               (Current_Scope, Defining_Identifier (Discr), 'd');
18963          end if;
18964
18965          if Nkind (Discriminant_Type (Discr)) = N_Access_Definition then
18966             Discr_Type := Access_Definition (Discr, Discriminant_Type (Discr));
18967
18968             --  Ada 2005 (AI-254)
18969
18970             if Present (Access_To_Subprogram_Definition
18971                          (Discriminant_Type (Discr)))
18972               and then Protected_Present (Access_To_Subprogram_Definition
18973                                            (Discriminant_Type (Discr)))
18974             then
18975                Discr_Type :=
18976                  Replace_Anonymous_Access_To_Protected_Subprogram (Discr);
18977             end if;
18978
18979          else
18980             Find_Type (Discriminant_Type (Discr));
18981             Discr_Type := Etype (Discriminant_Type (Discr));
18982
18983             if Error_Posted (Discriminant_Type (Discr)) then
18984                Discr_Type := Any_Type;
18985             end if;
18986          end if;
18987
18988          --  Handling of discriminants that are access types
18989
18990          if Is_Access_Type (Discr_Type) then
18991
18992             --  Ada 2005 (AI-230): Access discriminant allowed in non-
18993             --  limited record types
18994
18995             if Ada_Version < Ada_2005 then
18996                Check_Access_Discriminant_Requires_Limited
18997                  (Discr, Discriminant_Type (Discr));
18998             end if;
18999
19000             if Ada_Version = Ada_83 and then Comes_From_Source (Discr) then
19001                Error_Msg_N
19002                  ("(Ada 83) access discriminant not allowed", Discr);
19003             end if;
19004
19005          --  If not access type, must be a discrete type
19006
19007          elsif not Is_Discrete_Type (Discr_Type) then
19008             Error_Msg_N
19009               ("discriminants must have a discrete or access type",
19010                Discriminant_Type (Discr));
19011          end if;
19012
19013          Set_Etype (Defining_Identifier (Discr), Discr_Type);
19014
19015          --  If a discriminant specification includes the assignment compound
19016          --  delimiter followed by an expression, the expression is the default
19017          --  expression of the discriminant; the default expression must be of
19018          --  the type of the discriminant. (RM 3.7.1) Since this expression is
19019          --  a default expression, we do the special preanalysis, since this
19020          --  expression does not freeze (see section "Handling of Default and
19021          --  Per-Object Expressions" in spec of package Sem).
19022
19023          if Present (Expression (Discr)) then
19024             Preanalyze_Spec_Expression (Expression (Discr), Discr_Type);
19025
19026             --  Legaity checks
19027
19028             if Nkind (N) = N_Formal_Type_Declaration then
19029                Error_Msg_N
19030                  ("discriminant defaults not allowed for formal type",
19031                   Expression (Discr));
19032
19033             --  Flag an error for a tagged type with defaulted discriminants,
19034             --  excluding limited tagged types when compiling for Ada 2012
19035             --  (see AI05-0214).
19036
19037             elsif Is_Tagged_Type (Current_Scope)
19038               and then (not Is_Limited_Type (Current_Scope)
19039                          or else Ada_Version < Ada_2012)
19040               and then Comes_From_Source (N)
19041             then
19042                --  Note: see similar test in Check_Or_Process_Discriminants, to
19043                --  handle the (illegal) case of the completion of an untagged
19044                --  view with discriminants with defaults by a tagged full view.
19045                --  We skip the check if Discr does not come from source, to
19046                --  account for the case of an untagged derived type providing
19047                --  defaults for a renamed discriminant from a private untagged
19048                --  ancestor with a tagged full view (ACATS B460006).
19049
19050                if Ada_Version >= Ada_2012 then
19051                   Error_Msg_N
19052                     ("discriminants of nonlimited tagged type cannot have"
19053                        & " defaults",
19054                      Expression (Discr));
19055                else
19056                   Error_Msg_N
19057                     ("discriminants of tagged type cannot have defaults",
19058                      Expression (Discr));
19059                end if;
19060
19061             else
19062                Default_Present := True;
19063                Append_Elmt (Expression (Discr), Elist);
19064
19065                --  Tag the defining identifiers for the discriminants with
19066                --  their corresponding default expressions from the tree.
19067
19068                Set_Discriminant_Default_Value
19069                  (Defining_Identifier (Discr), Expression (Discr));
19070             end if;
19071
19072             --  In gnatc or gnatprove mode, make sure set Do_Range_Check flag
19073             --  gets set unless we can be sure that no range check is required.
19074
19075             if (GNATprove_Mode or not Expander_Active)
19076               and then not
19077                 Is_In_Range
19078                   (Expression (Discr), Discr_Type, Assume_Valid => True)
19079             then
19080                Set_Do_Range_Check (Expression (Discr));
19081             end if;
19082
19083          --  No default discriminant value given
19084
19085          else
19086             Default_Not_Present := True;
19087          end if;
19088
19089          --  Ada 2005 (AI-231): Create an Itype that is a duplicate of
19090          --  Discr_Type but with the null-exclusion attribute
19091
19092          if Ada_Version >= Ada_2005 then
19093
19094             --  Ada 2005 (AI-231): Static checks
19095
19096             if Can_Never_Be_Null (Discr_Type) then
19097                Null_Exclusion_Static_Checks (Discr);
19098
19099             elsif Is_Access_Type (Discr_Type)
19100               and then Null_Exclusion_Present (Discr)
19101
19102                --  No need to check itypes because in their case this check
19103                --  was done at their point of creation
19104
19105               and then not Is_Itype (Discr_Type)
19106             then
19107                if Can_Never_Be_Null (Discr_Type) then
19108                   Error_Msg_NE
19109                     ("`NOT NULL` not allowed (& already excludes null)",
19110                      Discr,
19111                      Discr_Type);
19112                end if;
19113
19114                Set_Etype (Defining_Identifier (Discr),
19115                  Create_Null_Excluding_Itype
19116                    (T           => Discr_Type,
19117                     Related_Nod => Discr));
19118
19119             --  Check for improper null exclusion if the type is otherwise
19120             --  legal for a discriminant.
19121
19122             elsif Null_Exclusion_Present (Discr)
19123               and then Is_Discrete_Type (Discr_Type)
19124             then
19125                Error_Msg_N
19126                  ("null exclusion can only apply to an access type", Discr);
19127             end if;
19128
19129             --  Ada 2005 (AI-402): access discriminants of nonlimited types
19130             --  can't have defaults. Synchronized types, or types that are
19131             --  explicitly limited are fine, but special tests apply to derived
19132             --  types in generics: in a generic body we have to assume the
19133             --  worst, and therefore defaults are not allowed if the parent is
19134             --  a generic formal private type (see ACATS B370001).
19135
19136             if Is_Access_Type (Discr_Type) and then Default_Present then
19137                if Ekind (Discr_Type) /= E_Anonymous_Access_Type
19138                  or else Is_Limited_Record (Current_Scope)
19139                  or else Is_Concurrent_Type (Current_Scope)
19140                  or else Is_Concurrent_Record_Type (Current_Scope)
19141                  or else Ekind (Current_Scope) = E_Limited_Private_Type
19142                then
19143                   if not Is_Derived_Type (Current_Scope)
19144                     or else not Is_Generic_Type (Etype (Current_Scope))
19145                     or else not In_Package_Body (Scope (Etype (Current_Scope)))
19146                     or else Limited_Present
19147                               (Type_Definition (Parent (Current_Scope)))
19148                   then
19149                      null;
19150
19151                   else
19152                      Error_Msg_N
19153                        ("access discriminants of nonlimited types cannot "
19154                         & "have defaults", Expression (Discr));
19155                   end if;
19156
19157                elsif Present (Expression (Discr)) then
19158                   Error_Msg_N
19159                     ("(Ada 2005) access discriminants of nonlimited types "
19160                      & "cannot have defaults", Expression (Discr));
19161                end if;
19162             end if;
19163          end if;
19164
19165          --  A discriminant cannot be effectively volatile (SPARK RM 7.1.3(6)).
19166          --  This check is relevant only when SPARK_Mode is on as it is not a
19167          --  standard Ada legality rule.
19168
19169          if SPARK_Mode = On
19170            and then Is_Effectively_Volatile (Defining_Identifier (Discr))
19171          then
19172             Error_Msg_N ("discriminant cannot be volatile", Discr);
19173          end if;
19174
19175          Next (Discr);
19176       end loop;
19177
19178       --  An element list consisting of the default expressions of the
19179       --  discriminants is constructed in the above loop and used to set
19180       --  the Discriminant_Constraint attribute for the type. If an object
19181       --  is declared of this (record or task) type without any explicit
19182       --  discriminant constraint given, this element list will form the
19183       --  actual parameters for the corresponding initialization procedure
19184       --  for the type.
19185
19186       Set_Discriminant_Constraint (Current_Scope, Elist);
19187       Set_Stored_Constraint (Current_Scope, No_Elist);
19188
19189       --  Default expressions must be provided either for all or for none
19190       --  of the discriminants of a discriminant part. (RM 3.7.1)
19191
19192       if Default_Present and then Default_Not_Present then
19193          Error_Msg_N
19194            ("incomplete specification of defaults for discriminants", N);
19195       end if;
19196
19197       --  The use of the name of a discriminant is not allowed in default
19198       --  expressions of a discriminant part if the specification of the
19199       --  discriminant is itself given in the discriminant part. (RM 3.7.1)
19200
19201       --  To detect this, the discriminant names are entered initially with an
19202       --  Ekind of E_Void (which is the default Ekind given by Enter_Name). Any
19203       --  attempt to use a void entity (for example in an expression that is
19204       --  type-checked) produces the error message: premature usage. Now after
19205       --  completing the semantic analysis of the discriminant part, we can set
19206       --  the Ekind of all the discriminants appropriately.
19207
19208       Discr := First (Discriminant_Specifications (N));
19209       Discr_Number := Uint_1;
19210       while Present (Discr) loop
19211          Id := Defining_Identifier (Discr);
19212          Set_Ekind (Id, E_Discriminant);
19213          Init_Component_Location (Id);
19214          Init_Esize (Id);
19215          Set_Discriminant_Number (Id, Discr_Number);
19216
19217          --  Make sure this is always set, even in illegal programs
19218
19219          Set_Corresponding_Discriminant (Id, Empty);
19220
19221          --  Initialize the Original_Record_Component to the entity itself.
19222          --  Inherit_Components will propagate the right value to
19223          --  discriminants in derived record types.
19224
19225          Set_Original_Record_Component (Id, Id);
19226
19227          --  Create the discriminal for the discriminant
19228
19229          Build_Discriminal (Id);
19230
19231          Next (Discr);
19232          Discr_Number := Discr_Number + 1;
19233       end loop;
19234
19235       Set_Has_Discriminants (Current_Scope);
19236    end Process_Discriminants;
19237
19238    -----------------------
19239    -- Process_Full_View --
19240    -----------------------
19241
19242    procedure Process_Full_View (N : Node_Id; Full_T, Priv_T : Entity_Id) is
19243       procedure Collect_Implemented_Interfaces
19244         (Typ    : Entity_Id;
19245          Ifaces : Elist_Id);
19246       --  Ada 2005: Gather all the interfaces that Typ directly or
19247       --  inherently implements. Duplicate entries are not added to
19248       --  the list Ifaces.
19249
19250       ------------------------------------
19251       -- Collect_Implemented_Interfaces --
19252       ------------------------------------
19253
19254       procedure Collect_Implemented_Interfaces
19255         (Typ    : Entity_Id;
19256          Ifaces : Elist_Id)
19257       is
19258          Iface      : Entity_Id;
19259          Iface_Elmt : Elmt_Id;
19260
19261       begin
19262          --  Abstract interfaces are only associated with tagged record types
19263
19264          if not Is_Tagged_Type (Typ) or else not Is_Record_Type (Typ) then
19265             return;
19266          end if;
19267
19268          --  Recursively climb to the ancestors
19269
19270          if Etype (Typ) /= Typ
19271
19272             --  Protect the frontend against wrong cyclic declarations like:
19273
19274             --     type B is new A with private;
19275             --     type C is new A with private;
19276             --  private
19277             --     type B is new C with null record;
19278             --     type C is new B with null record;
19279
19280            and then Etype (Typ) /= Priv_T
19281            and then Etype (Typ) /= Full_T
19282          then
19283             --  Keep separate the management of private type declarations
19284
19285             if Ekind (Typ) = E_Record_Type_With_Private then
19286
19287                --  Handle the following illegal usage:
19288                --      type Private_Type is tagged private;
19289                --   private
19290                --      type Private_Type is new Type_Implementing_Iface;
19291
19292                if Present (Full_View (Typ))
19293                  and then Etype (Typ) /= Full_View (Typ)
19294                then
19295                   if Is_Interface (Etype (Typ)) then
19296                      Append_Unique_Elmt (Etype (Typ), Ifaces);
19297                   end if;
19298
19299                   Collect_Implemented_Interfaces (Etype (Typ), Ifaces);
19300                end if;
19301
19302             --  Non-private types
19303
19304             else
19305                if Is_Interface (Etype (Typ)) then
19306                   Append_Unique_Elmt (Etype (Typ), Ifaces);
19307                end if;
19308
19309                Collect_Implemented_Interfaces (Etype (Typ), Ifaces);
19310             end if;
19311          end if;
19312
19313          --  Handle entities in the list of abstract interfaces
19314
19315          if Present (Interfaces (Typ)) then
19316             Iface_Elmt := First_Elmt (Interfaces (Typ));
19317             while Present (Iface_Elmt) loop
19318                Iface := Node (Iface_Elmt);
19319
19320                pragma Assert (Is_Interface (Iface));
19321
19322                if not Contain_Interface (Iface, Ifaces) then
19323                   Append_Elmt (Iface, Ifaces);
19324                   Collect_Implemented_Interfaces (Iface, Ifaces);
19325                end if;
19326
19327                Next_Elmt (Iface_Elmt);
19328             end loop;
19329          end if;
19330       end Collect_Implemented_Interfaces;
19331
19332       --  Local variables
19333
19334       Full_Indic  : Node_Id;
19335       Full_Parent : Entity_Id;
19336       Priv_Parent : Entity_Id;
19337
19338    --  Start of processing for Process_Full_View
19339
19340    begin
19341       --  First some sanity checks that must be done after semantic
19342       --  decoration of the full view and thus cannot be placed with other
19343       --  similar checks in Find_Type_Name
19344
19345       if not Is_Limited_Type (Priv_T)
19346         and then (Is_Limited_Type (Full_T)
19347                    or else Is_Limited_Composite (Full_T))
19348       then
19349          if In_Instance then
19350             null;
19351          else
19352             Error_Msg_N
19353               ("completion of nonlimited type cannot be limited", Full_T);
19354             Explain_Limited_Type (Full_T, Full_T);
19355          end if;
19356
19357       elsif Is_Abstract_Type (Full_T)
19358         and then not Is_Abstract_Type (Priv_T)
19359       then
19360          Error_Msg_N
19361            ("completion of nonabstract type cannot be abstract", Full_T);
19362
19363       elsif Is_Tagged_Type (Priv_T)
19364         and then Is_Limited_Type (Priv_T)
19365         and then not Is_Limited_Type (Full_T)
19366       then
19367          --  If pragma CPP_Class was applied to the private declaration
19368          --  propagate the limitedness to the full-view
19369
19370          if Is_CPP_Class (Priv_T) then
19371             Set_Is_Limited_Record (Full_T);
19372
19373          --  GNAT allow its own definition of Limited_Controlled to disobey
19374          --  this rule in order in ease the implementation. This test is safe
19375          --  because Root_Controlled is defined in a child of System that
19376          --  normal programs are not supposed to use.
19377
19378          elsif Is_RTE (Etype (Full_T), RE_Root_Controlled) then
19379             Set_Is_Limited_Composite (Full_T);
19380          else
19381             Error_Msg_N
19382               ("completion of limited tagged type must be limited", Full_T);
19383          end if;
19384
19385       elsif Is_Generic_Type (Priv_T) then
19386          Error_Msg_N ("generic type cannot have a completion", Full_T);
19387       end if;
19388
19389       --  Check that ancestor interfaces of private and full views are
19390       --  consistent. We omit this check for synchronized types because
19391       --  they are performed on the corresponding record type when frozen.
19392
19393       if Ada_Version >= Ada_2005
19394         and then Is_Tagged_Type (Priv_T)
19395         and then Is_Tagged_Type (Full_T)
19396         and then not Is_Concurrent_Type (Full_T)
19397       then
19398          declare
19399             Iface         : Entity_Id;
19400             Priv_T_Ifaces : constant Elist_Id := New_Elmt_List;
19401             Full_T_Ifaces : constant Elist_Id := New_Elmt_List;
19402
19403          begin
19404             Collect_Implemented_Interfaces (Priv_T, Priv_T_Ifaces);
19405             Collect_Implemented_Interfaces (Full_T, Full_T_Ifaces);
19406
19407             --  Ada 2005 (AI-251): The partial view shall be a descendant of
19408             --  an interface type if and only if the full type is descendant
19409             --  of the interface type (AARM 7.3 (7.3/2)).
19410
19411             Iface := Find_Hidden_Interface (Priv_T_Ifaces, Full_T_Ifaces);
19412
19413             if Present (Iface) then
19414                Error_Msg_NE
19415                  ("interface in partial view& not implemented by full type "
19416                   & "(RM-2005 7.3 (7.3/2))", Full_T, Iface);
19417             end if;
19418
19419             Iface := Find_Hidden_Interface (Full_T_Ifaces, Priv_T_Ifaces);
19420
19421             if Present (Iface) then
19422                Error_Msg_NE
19423                  ("interface & not implemented by partial view "
19424                   & "(RM-2005 7.3 (7.3/2))", Full_T, Iface);
19425             end if;
19426          end;
19427       end if;
19428
19429       if Is_Tagged_Type (Priv_T)
19430         and then Nkind (Parent (Priv_T)) = N_Private_Extension_Declaration
19431         and then Is_Derived_Type (Full_T)
19432       then
19433          Priv_Parent := Etype (Priv_T);
19434
19435          --  The full view of a private extension may have been transformed
19436          --  into an unconstrained derived type declaration and a subtype
19437          --  declaration (see build_derived_record_type for details).
19438
19439          if Nkind (N) = N_Subtype_Declaration then
19440             Full_Indic  := Subtype_Indication (N);
19441             Full_Parent := Etype (Base_Type (Full_T));
19442          else
19443             Full_Indic  := Subtype_Indication (Type_Definition (N));
19444             Full_Parent := Etype (Full_T);
19445          end if;
19446
19447          --  Check that the parent type of the full type is a descendant of
19448          --  the ancestor subtype given in the private extension. If either
19449          --  entity has an Etype equal to Any_Type then we had some previous
19450          --  error situation [7.3(8)].
19451
19452          if Priv_Parent = Any_Type or else Full_Parent = Any_Type then
19453             return;
19454
19455          --  Ada 2005 (AI-251): Interfaces in the full type can be given in
19456          --  any order. Therefore we don't have to check that its parent must
19457          --  be a descendant of the parent of the private type declaration.
19458
19459          elsif Is_Interface (Priv_Parent)
19460            and then Is_Interface (Full_Parent)
19461          then
19462             null;
19463
19464          --  Ada 2005 (AI-251): If the parent of the private type declaration
19465          --  is an interface there is no need to check that it is an ancestor
19466          --  of the associated full type declaration. The required tests for
19467          --  this case are performed by Build_Derived_Record_Type.
19468
19469          elsif not Is_Interface (Base_Type (Priv_Parent))
19470            and then not Is_Ancestor (Base_Type (Priv_Parent), Full_Parent)
19471          then
19472             Error_Msg_N
19473               ("parent of full type must descend from parent"
19474                   & " of private extension", Full_Indic);
19475
19476          --  First check a formal restriction, and then proceed with checking
19477          --  Ada rules. Since the formal restriction is not a serious error, we
19478          --  don't prevent further error detection for this check, hence the
19479          --  ELSE.
19480
19481          else
19482             --  In formal mode, when completing a private extension the type
19483             --  named in the private part must be exactly the same as that
19484             --  named in the visible part.
19485
19486             if Priv_Parent /= Full_Parent then
19487                Error_Msg_Name_1 := Chars (Priv_Parent);
19488                Check_SPARK_05_Restriction ("% expected", Full_Indic);
19489             end if;
19490
19491             --  Check the rules of 7.3(10): if the private extension inherits
19492             --  known discriminants, then the full type must also inherit those
19493             --  discriminants from the same (ancestor) type, and the parent
19494             --  subtype of the full type must be constrained if and only if
19495             --  the ancestor subtype of the private extension is constrained.
19496
19497             if No (Discriminant_Specifications (Parent (Priv_T)))
19498               and then not Has_Unknown_Discriminants (Priv_T)
19499               and then Has_Discriminants (Base_Type (Priv_Parent))
19500             then
19501                declare
19502                   Priv_Indic  : constant Node_Id :=
19503                                   Subtype_Indication (Parent (Priv_T));
19504
19505                   Priv_Constr : constant Boolean :=
19506                                   Is_Constrained (Priv_Parent)
19507                                     or else
19508                                       Nkind (Priv_Indic) = N_Subtype_Indication
19509                                     or else
19510                                       Is_Constrained (Entity (Priv_Indic));
19511
19512                   Full_Constr : constant Boolean :=
19513                                   Is_Constrained (Full_Parent)
19514                                     or else
19515                                       Nkind (Full_Indic) = N_Subtype_Indication
19516                                     or else
19517                                       Is_Constrained (Entity (Full_Indic));
19518
19519                   Priv_Discr : Entity_Id;
19520                   Full_Discr : Entity_Id;
19521
19522                begin
19523                   Priv_Discr := First_Discriminant (Priv_Parent);
19524                   Full_Discr := First_Discriminant (Full_Parent);
19525                   while Present (Priv_Discr) and then Present (Full_Discr) loop
19526                      if Original_Record_Component (Priv_Discr) =
19527                         Original_Record_Component (Full_Discr)
19528                        or else
19529                          Corresponding_Discriminant (Priv_Discr) =
19530                          Corresponding_Discriminant (Full_Discr)
19531                      then
19532                         null;
19533                      else
19534                         exit;
19535                      end if;
19536
19537                      Next_Discriminant (Priv_Discr);
19538                      Next_Discriminant (Full_Discr);
19539                   end loop;
19540
19541                   if Present (Priv_Discr) or else Present (Full_Discr) then
19542                      Error_Msg_N
19543                        ("full view must inherit discriminants of the parent"
19544                         & " type used in the private extension", Full_Indic);
19545
19546                   elsif Priv_Constr and then not Full_Constr then
19547                      Error_Msg_N
19548                        ("parent subtype of full type must be constrained",
19549                         Full_Indic);
19550
19551                   elsif Full_Constr and then not Priv_Constr then
19552                      Error_Msg_N
19553                        ("parent subtype of full type must be unconstrained",
19554                         Full_Indic);
19555                   end if;
19556                end;
19557
19558                --  Check the rules of 7.3(12): if a partial view has neither
19559                --  known or unknown discriminants, then the full type
19560                --  declaration shall define a definite subtype.
19561
19562             elsif      not Has_Unknown_Discriminants (Priv_T)
19563               and then not Has_Discriminants (Priv_T)
19564               and then not Is_Constrained (Full_T)
19565             then
19566                Error_Msg_N
19567                  ("full view must define a constrained type if partial view"
19568                   & " has no discriminants", Full_T);
19569             end if;
19570
19571             --  ??????? Do we implement the following properly ?????
19572             --  If the ancestor subtype of a private extension has constrained
19573             --  discriminants, then the parent subtype of the full view shall
19574             --  impose a statically matching constraint on those discriminants
19575             --  [7.3(13)].
19576          end if;
19577
19578       else
19579          --  For untagged types, verify that a type without discriminants is
19580          --  not completed with an unconstrained type. A separate error message
19581          --  is produced if the full type has defaulted discriminants.
19582
19583          if Is_Definite_Subtype (Priv_T)
19584            and then not Is_Definite_Subtype (Full_T)
19585          then
19586             Error_Msg_Sloc := Sloc (Parent (Priv_T));
19587             Error_Msg_NE
19588               ("full view of& not compatible with declaration#",
19589                Full_T, Priv_T);
19590
19591             if not Is_Tagged_Type (Full_T) then
19592                Error_Msg_N
19593                  ("\one is constrained, the other unconstrained", Full_T);
19594             end if;
19595          end if;
19596       end if;
19597
19598       --  AI-419: verify that the use of "limited" is consistent
19599
19600       declare
19601          Orig_Decl : constant Node_Id := Original_Node (N);
19602
19603       begin
19604          if Nkind (Parent (Priv_T)) = N_Private_Extension_Declaration
19605            and then Nkind (Orig_Decl) = N_Full_Type_Declaration
19606            and then Nkind
19607              (Type_Definition (Orig_Decl)) = N_Derived_Type_Definition
19608          then
19609             if not Limited_Present (Parent (Priv_T))
19610               and then not Synchronized_Present (Parent (Priv_T))
19611               and then Limited_Present (Type_Definition (Orig_Decl))
19612             then
19613                Error_Msg_N
19614                  ("full view of non-limited extension cannot be limited", N);
19615
19616             --  Conversely, if the partial view carries the limited keyword,
19617             --  the full view must as well, even if it may be redundant.
19618
19619             elsif Limited_Present (Parent (Priv_T))
19620               and then not Limited_Present (Type_Definition (Orig_Decl))
19621             then
19622                Error_Msg_N
19623                  ("full view of limited extension must be explicitly limited",
19624                   N);
19625             end if;
19626          end if;
19627       end;
19628
19629       --  Ada 2005 (AI-443): A synchronized private extension must be
19630       --  completed by a task or protected type.
19631
19632       if Ada_Version >= Ada_2005
19633         and then Nkind (Parent (Priv_T)) = N_Private_Extension_Declaration
19634         and then Synchronized_Present (Parent (Priv_T))
19635         and then not Is_Concurrent_Type (Full_T)
19636       then
19637          Error_Msg_N ("full view of synchronized extension must " &
19638                       "be synchronized type", N);
19639       end if;
19640
19641       --  Ada 2005 AI-363: if the full view has discriminants with
19642       --  defaults, it is illegal to declare constrained access subtypes
19643       --  whose designated type is the current type. This allows objects
19644       --  of the type that are declared in the heap to be unconstrained.
19645
19646       if not Has_Unknown_Discriminants (Priv_T)
19647         and then not Has_Discriminants (Priv_T)
19648         and then Has_Discriminants (Full_T)
19649         and then
19650           Present (Discriminant_Default_Value (First_Discriminant (Full_T)))
19651       then
19652          Set_Has_Constrained_Partial_View (Full_T);
19653          Set_Has_Constrained_Partial_View (Priv_T);
19654       end if;
19655
19656       --  Create a full declaration for all its subtypes recorded in
19657       --  Private_Dependents and swap them similarly to the base type. These
19658       --  are subtypes that have been define before the full declaration of
19659       --  the private type. We also swap the entry in Private_Dependents list
19660       --  so we can properly restore the private view on exit from the scope.
19661
19662       declare
19663          Priv_Elmt : Elmt_Id;
19664          Priv_Scop : Entity_Id;
19665          Priv      : Entity_Id;
19666          Full      : Entity_Id;
19667
19668       begin
19669          Priv_Elmt := First_Elmt (Private_Dependents (Priv_T));
19670          while Present (Priv_Elmt) loop
19671             Priv := Node (Priv_Elmt);
19672             Priv_Scop := Scope (Priv);
19673
19674             if Ekind_In (Priv, E_Private_Subtype,
19675                                E_Limited_Private_Subtype,
19676                                E_Record_Subtype_With_Private)
19677             then
19678                Full := Make_Defining_Identifier (Sloc (Priv), Chars (Priv));
19679                Set_Is_Itype (Full);
19680                Set_Parent (Full, Parent (Priv));
19681                Set_Associated_Node_For_Itype (Full, N);
19682
19683                --  Now we need to complete the private subtype, but since the
19684                --  base type has already been swapped, we must also swap the
19685                --  subtypes (and thus, reverse the arguments in the call to
19686                --  Complete_Private_Subtype). Also note that we may need to
19687                --  re-establish the scope of the private subtype.
19688
19689                Copy_And_Swap (Priv, Full);
19690
19691                if not In_Open_Scopes (Priv_Scop) then
19692                   Push_Scope (Priv_Scop);
19693
19694                else
19695                   --  Reset Priv_Scop to Empty to indicate no scope was pushed
19696
19697                   Priv_Scop := Empty;
19698                end if;
19699
19700                Complete_Private_Subtype (Full, Priv, Full_T, N);
19701
19702                if Present (Priv_Scop) then
19703                   Pop_Scope;
19704                end if;
19705
19706                Replace_Elmt (Priv_Elmt, Full);
19707             end if;
19708
19709             Next_Elmt (Priv_Elmt);
19710          end loop;
19711       end;
19712
19713       --  If the private view was tagged, copy the new primitive operations
19714       --  from the private view to the full view.
19715
19716       if Is_Tagged_Type (Full_T) then
19717          declare
19718             Disp_Typ  : Entity_Id;
19719             Full_List : Elist_Id;
19720             Prim      : Entity_Id;
19721             Prim_Elmt : Elmt_Id;
19722             Priv_List : Elist_Id;
19723
19724             function Contains
19725               (E : Entity_Id;
19726                L : Elist_Id) return Boolean;
19727             --  Determine whether list L contains element E
19728
19729             --------------
19730             -- Contains --
19731             --------------
19732
19733             function Contains
19734               (E : Entity_Id;
19735                L : Elist_Id) return Boolean
19736             is
19737                List_Elmt : Elmt_Id;
19738
19739             begin
19740                List_Elmt := First_Elmt (L);
19741                while Present (List_Elmt) loop
19742                   if Node (List_Elmt) = E then
19743                      return True;
19744                   end if;
19745
19746                   Next_Elmt (List_Elmt);
19747                end loop;
19748
19749                return False;
19750             end Contains;
19751
19752          --  Start of processing
19753
19754          begin
19755             if Is_Tagged_Type (Priv_T) then
19756                Priv_List := Primitive_Operations (Priv_T);
19757                Prim_Elmt := First_Elmt (Priv_List);
19758
19759                --  In the case of a concurrent type completing a private tagged
19760                --  type, primitives may have been declared in between the two
19761                --  views. These subprograms need to be wrapped the same way
19762                --  entries and protected procedures are handled because they
19763                --  cannot be directly shared by the two views.
19764
19765                if Is_Concurrent_Type (Full_T) then
19766                   declare
19767                      Conc_Typ  : constant Entity_Id :=
19768                                    Corresponding_Record_Type (Full_T);
19769                      Curr_Nod  : Node_Id := Parent (Conc_Typ);
19770                      Wrap_Spec : Node_Id;
19771
19772                   begin
19773                      while Present (Prim_Elmt) loop
19774                         Prim := Node (Prim_Elmt);
19775
19776                         if Comes_From_Source (Prim)
19777                           and then not Is_Abstract_Subprogram (Prim)
19778                         then
19779                            Wrap_Spec :=
19780                              Make_Subprogram_Declaration (Sloc (Prim),
19781                                Specification =>
19782                                  Build_Wrapper_Spec
19783                                    (Subp_Id => Prim,
19784                                     Obj_Typ => Conc_Typ,
19785                                     Formals =>
19786                                       Parameter_Specifications (
19787                                         Parent (Prim))));
19788
19789                            Insert_After (Curr_Nod, Wrap_Spec);
19790                            Curr_Nod := Wrap_Spec;
19791
19792                            Analyze (Wrap_Spec);
19793                         end if;
19794
19795                         Next_Elmt (Prim_Elmt);
19796                      end loop;
19797
19798                      return;
19799                   end;
19800
19801                --  For non-concurrent types, transfer explicit primitives, but
19802                --  omit those inherited from the parent of the private view
19803                --  since they will be re-inherited later on.
19804
19805                else
19806                   Full_List := Primitive_Operations (Full_T);
19807
19808                   while Present (Prim_Elmt) loop
19809                      Prim := Node (Prim_Elmt);
19810
19811                      if Comes_From_Source (Prim)
19812                        and then not Contains (Prim, Full_List)
19813                      then
19814                         Append_Elmt (Prim, Full_List);
19815                      end if;
19816
19817                      Next_Elmt (Prim_Elmt);
19818                   end loop;
19819                end if;
19820
19821             --  Untagged private view
19822
19823             else
19824                Full_List := Primitive_Operations (Full_T);
19825
19826                --  In this case the partial view is untagged, so here we locate
19827                --  all of the earlier primitives that need to be treated as
19828                --  dispatching (those that appear between the two views). Note
19829                --  that these additional operations must all be new operations
19830                --  (any earlier operations that override inherited operations
19831                --  of the full view will already have been inserted in the
19832                --  primitives list, marked by Check_Operation_From_Private_View
19833                --  as dispatching. Note that implicit "/=" operators are
19834                --  excluded from being added to the primitives list since they
19835                --  shouldn't be treated as dispatching (tagged "/=" is handled
19836                --  specially).
19837
19838                Prim := Next_Entity (Full_T);
19839                while Present (Prim) and then Prim /= Priv_T loop
19840                   if Ekind_In (Prim, E_Procedure, E_Function) then
19841                      Disp_Typ := Find_Dispatching_Type (Prim);
19842
19843                      if Disp_Typ = Full_T
19844                        and then (Chars (Prim) /= Name_Op_Ne
19845                                   or else Comes_From_Source (Prim))
19846                      then
19847                         Check_Controlling_Formals (Full_T, Prim);
19848
19849                         if not Is_Dispatching_Operation (Prim) then
19850                            Append_Elmt (Prim, Full_List);
19851                            Set_Is_Dispatching_Operation (Prim, True);
19852                            Set_DT_Position_Value (Prim, No_Uint);
19853                         end if;
19854
19855                      elsif Is_Dispatching_Operation (Prim)
19856                        and then Disp_Typ  /= Full_T
19857                      then
19858
19859                         --  Verify that it is not otherwise controlled by a
19860                         --  formal or a return value of type T.
19861
19862                         Check_Controlling_Formals (Disp_Typ, Prim);
19863                      end if;
19864                   end if;
19865
19866                   Next_Entity (Prim);
19867                end loop;
19868             end if;
19869
19870             --  For the tagged case, the two views can share the same primitive
19871             --  operations list and the same class-wide type. Update attributes
19872             --  of the class-wide type which depend on the full declaration.
19873
19874             if Is_Tagged_Type (Priv_T) then
19875                Set_Direct_Primitive_Operations (Priv_T, Full_List);
19876                Set_Class_Wide_Type
19877                  (Base_Type (Full_T), Class_Wide_Type (Priv_T));
19878
19879                Set_Has_Task (Class_Wide_Type (Priv_T), Has_Task      (Full_T));
19880                Set_Has_Protected
19881                             (Class_Wide_Type (Priv_T), Has_Protected (Full_T));
19882             end if;
19883          end;
19884       end if;
19885
19886       --  Ada 2005 AI 161: Check preelaborable initialization consistency
19887
19888       if Known_To_Have_Preelab_Init (Priv_T) then
19889
19890          --  Case where there is a pragma Preelaborable_Initialization. We
19891          --  always allow this in predefined units, which is cheating a bit,
19892          --  but it means we don't have to struggle to meet the requirements in
19893          --  the RM for having Preelaborable Initialization. Otherwise we
19894          --  require that the type meets the RM rules. But we can't check that
19895          --  yet, because of the rule about overriding Initialize, so we simply
19896          --  set a flag that will be checked at freeze time.
19897
19898          if not In_Predefined_Unit (Full_T) then
19899             Set_Must_Have_Preelab_Init (Full_T);
19900          end if;
19901       end if;
19902
19903       --  If pragma CPP_Class was applied to the private type declaration,
19904       --  propagate it now to the full type declaration.
19905
19906       if Is_CPP_Class (Priv_T) then
19907          Set_Is_CPP_Class (Full_T);
19908          Set_Convention   (Full_T, Convention_CPP);
19909
19910          --  Check that components of imported CPP types do not have default
19911          --  expressions.
19912
19913          Check_CPP_Type_Has_No_Defaults (Full_T);
19914       end if;
19915
19916       --  If the private view has user specified stream attributes, then so has
19917       --  the full view.
19918
19919       --  Why the test, how could these flags be already set in Full_T ???
19920
19921       if Has_Specified_Stream_Read (Priv_T) then
19922          Set_Has_Specified_Stream_Read (Full_T);
19923       end if;
19924
19925       if Has_Specified_Stream_Write (Priv_T) then
19926          Set_Has_Specified_Stream_Write (Full_T);
19927       end if;
19928
19929       if Has_Specified_Stream_Input (Priv_T) then
19930          Set_Has_Specified_Stream_Input (Full_T);
19931       end if;
19932
19933       if Has_Specified_Stream_Output (Priv_T) then
19934          Set_Has_Specified_Stream_Output (Full_T);
19935       end if;
19936
19937       --  Propagate the attributes related to pragma Default_Initial_Condition
19938       --  from the private to the full view. Note that both flags are mutually
19939       --  exclusive.
19940
19941       if Has_Default_Init_Cond (Priv_T)
19942         or else Has_Inherited_Default_Init_Cond (Priv_T)
19943       then
19944          Propagate_Default_Init_Cond_Attributes
19945            (From_Typ             => Priv_T,
19946             To_Typ               => Full_T,
19947             Private_To_Full_View => True);
19948
19949       --  In the case where the full view is derived from another private type,
19950       --  the attributes related to pragma Default_Initial_Condition must be
19951       --  propagated from the full to the private view to maintain consistency
19952       --  of views.
19953
19954       --    package Pack is
19955       --       type Parent_Typ is private
19956       --         with Default_Initial_Condition ...;
19957       --    private
19958       --       type Parent_Typ is ...;
19959       --    end Pack;
19960
19961       --    with Pack; use Pack;
19962       --    package Pack_2 is
19963       --       type Deriv_Typ is private;         --  must inherit
19964       --    private
19965       --       type Deriv_Typ is new Parent_Typ;  --  must inherit
19966       --    end Pack_2;
19967
19968       elsif Has_Default_Init_Cond (Full_T)
19969         or else Has_Inherited_Default_Init_Cond (Full_T)
19970       then
19971          Propagate_Default_Init_Cond_Attributes
19972            (From_Typ             => Full_T,
19973             To_Typ               => Priv_T,
19974             Private_To_Full_View => True);
19975       end if;
19976
19977       if Is_Ghost_Entity (Priv_T) then
19978
19979          --  The Ghost policy in effect at the point of declaration and at the
19980          --  point of completion must match (SPARK RM 6.9(14)).
19981
19982          Check_Ghost_Completion (Priv_T, Full_T);
19983
19984          --  In the case where the private view of a tagged type lacks a parent
19985          --  type and is subject to pragma Ghost, ensure that the parent type
19986          --  specified by the full view is also Ghost (SPARK RM 6.9(9)).
19987
19988          if Is_Derived_Type (Full_T) then
19989             Check_Ghost_Derivation (Full_T);
19990          end if;
19991
19992          --  Propagate the attributes related to pragma Ghost from the private
19993          --  to the full view.
19994
19995          Mark_Full_View_As_Ghost (Priv_T, Full_T);
19996       end if;
19997
19998       --  Propagate invariants to full type
19999
20000       if Has_Invariants (Priv_T) then
20001          Set_Has_Invariants (Full_T);
20002          Set_Invariant_Procedure (Full_T, Invariant_Procedure (Priv_T));
20003       end if;
20004
20005       if Has_Inheritable_Invariants (Priv_T) then
20006          Set_Has_Inheritable_Invariants (Full_T);
20007       end if;
20008
20009       --  Check hidden inheritance of class-wide type invariants
20010
20011       if Ada_Version >= Ada_2012
20012         and then not Has_Inheritable_Invariants (Full_T)
20013         and then In_Private_Part (Current_Scope)
20014         and then Has_Interfaces (Full_T)
20015       then
20016          declare
20017             Ifaces : Elist_Id;
20018             AI     : Elmt_Id;
20019
20020          begin
20021             Collect_Interfaces (Full_T, Ifaces, Exclude_Parents => True);
20022
20023             AI := First_Elmt (Ifaces);
20024             while Present (AI) loop
20025                if Has_Inheritable_Invariants (Node (AI)) then
20026                   Error_Msg_N
20027                     ("hidden inheritance of class-wide type invariants " &
20028                      "not allowed", N);
20029                   exit;
20030                end if;
20031
20032                Next_Elmt (AI);
20033             end loop;
20034          end;
20035       end if;
20036
20037       --  Propagate predicates to full type, and predicate function if already
20038       --  defined. It is not clear that this can actually happen? the partial
20039       --  view cannot be frozen yet, and the predicate function has not been
20040       --  built. Still it is a cheap check and seems safer to make it.
20041
20042       if Has_Predicates (Priv_T) then
20043          if Present (Predicate_Function (Priv_T)) then
20044             Set_Predicate_Function (Full_T, Predicate_Function (Priv_T));
20045          end if;
20046
20047          Set_Has_Predicates (Full_T);
20048       end if;
20049    end Process_Full_View;
20050
20051    -----------------------------------
20052    -- Process_Incomplete_Dependents --
20053    -----------------------------------
20054
20055    procedure Process_Incomplete_Dependents
20056      (N      : Node_Id;
20057       Full_T : Entity_Id;
20058       Inc_T  : Entity_Id)
20059    is
20060       Inc_Elmt : Elmt_Id;
20061       Priv_Dep : Entity_Id;
20062       New_Subt : Entity_Id;
20063
20064       Disc_Constraint : Elist_Id;
20065
20066    begin
20067       if No (Private_Dependents (Inc_T)) then
20068          return;
20069       end if;
20070
20071       --  Itypes that may be generated by the completion of an incomplete
20072       --  subtype are not used by the back-end and not attached to the tree.
20073       --  They are created only for constraint-checking purposes.
20074
20075       Inc_Elmt := First_Elmt (Private_Dependents (Inc_T));
20076       while Present (Inc_Elmt) loop
20077          Priv_Dep := Node (Inc_Elmt);
20078
20079          if Ekind (Priv_Dep) = E_Subprogram_Type then
20080
20081             --  An Access_To_Subprogram type may have a return type or a
20082             --  parameter type that is incomplete. Replace with the full view.
20083
20084             if Etype (Priv_Dep) = Inc_T then
20085                Set_Etype (Priv_Dep, Full_T);
20086             end if;
20087
20088             declare
20089                Formal : Entity_Id;
20090
20091             begin
20092                Formal := First_Formal (Priv_Dep);
20093                while Present (Formal) loop
20094                   if Etype (Formal) = Inc_T then
20095                      Set_Etype (Formal, Full_T);
20096                   end if;
20097
20098                   Next_Formal (Formal);
20099                end loop;
20100             end;
20101
20102          elsif Is_Overloadable (Priv_Dep) then
20103
20104             --  If a subprogram in the incomplete dependents list is primitive
20105             --  for a tagged full type then mark it as a dispatching operation,
20106             --  check whether it overrides an inherited subprogram, and check
20107             --  restrictions on its controlling formals. Note that a protected
20108             --  operation is never dispatching: only its wrapper operation
20109             --  (which has convention Ada) is.
20110
20111             if Is_Tagged_Type (Full_T)
20112               and then Is_Primitive (Priv_Dep)
20113               and then Convention (Priv_Dep) /= Convention_Protected
20114             then
20115                Check_Operation_From_Incomplete_Type (Priv_Dep, Inc_T);
20116                Set_Is_Dispatching_Operation (Priv_Dep);
20117                Check_Controlling_Formals (Full_T, Priv_Dep);
20118             end if;
20119
20120          elsif Ekind (Priv_Dep) = E_Subprogram_Body then
20121
20122             --  Can happen during processing of a body before the completion
20123             --  of a TA type. Ignore, because spec is also on dependent list.
20124
20125             return;
20126
20127          --  Ada 2005 (AI-412): Transform a regular incomplete subtype into a
20128          --  corresponding subtype of the full view.
20129
20130          elsif Ekind (Priv_Dep) = E_Incomplete_Subtype then
20131             Set_Subtype_Indication
20132               (Parent (Priv_Dep), New_Occurrence_Of (Full_T, Sloc (Priv_Dep)));
20133             Set_Etype (Priv_Dep, Full_T);
20134             Set_Ekind (Priv_Dep, Subtype_Kind (Ekind (Full_T)));
20135             Set_Analyzed (Parent (Priv_Dep), False);
20136
20137             --  Reanalyze the declaration, suppressing the call to
20138             --  Enter_Name to avoid duplicate names.
20139
20140             Analyze_Subtype_Declaration
20141               (N    => Parent (Priv_Dep),
20142                Skip => True);
20143
20144          --  Dependent is a subtype
20145
20146          else
20147             --  We build a new subtype indication using the full view of the
20148             --  incomplete parent. The discriminant constraints have been
20149             --  elaborated already at the point of the subtype declaration.
20150
20151             New_Subt := Create_Itype (E_Void, N);
20152
20153             if Has_Discriminants (Full_T) then
20154                Disc_Constraint := Discriminant_Constraint (Priv_Dep);
20155             else
20156                Disc_Constraint := No_Elist;
20157             end if;
20158
20159             Build_Discriminated_Subtype (Full_T, New_Subt, Disc_Constraint, N);
20160             Set_Full_View (Priv_Dep, New_Subt);
20161          end if;
20162
20163          Next_Elmt (Inc_Elmt);
20164       end loop;
20165    end Process_Incomplete_Dependents;
20166
20167    --------------------------------
20168    -- Process_Range_Expr_In_Decl --
20169    --------------------------------
20170
20171    procedure Process_Range_Expr_In_Decl
20172      (R            : Node_Id;
20173       T            : Entity_Id;
20174       Subtyp       : Entity_Id := Empty;
20175       Check_List   : List_Id   := Empty_List;
20176       R_Check_Off  : Boolean   := False;
20177       In_Iter_Schm : Boolean   := False)
20178    is
20179       Lo, Hi      : Node_Id;
20180       R_Checks    : Check_Result;
20181       Insert_Node : Node_Id;
20182       Def_Id      : Entity_Id;
20183
20184    begin
20185       Analyze_And_Resolve (R, Base_Type (T));
20186
20187       if Nkind (R) = N_Range then
20188
20189          --  In SPARK, all ranges should be static, with the exception of the
20190          --  discrete type definition of a loop parameter specification.
20191
20192          if not In_Iter_Schm
20193            and then not Is_OK_Static_Range (R)
20194          then
20195             Check_SPARK_05_Restriction ("range should be static", R);
20196          end if;
20197
20198          Lo := Low_Bound (R);
20199          Hi := High_Bound (R);
20200
20201          --  Validity checks on the range of a quantified expression are
20202          --  delayed until the construct is transformed into a loop.
20203
20204          if Nkind (Parent (R)) = N_Loop_Parameter_Specification
20205            and then Nkind (Parent (Parent (R))) = N_Quantified_Expression
20206          then
20207             null;
20208
20209          --  We need to ensure validity of the bounds here, because if we
20210          --  go ahead and do the expansion, then the expanded code will get
20211          --  analyzed with range checks suppressed and we miss the check.
20212
20213          --  WARNING: The capture of the range bounds with xxx_FIRST/_LAST and
20214          --  the temporaries generated by routine Remove_Side_Effects by means
20215          --  of validity checks must use the same names. When a range appears
20216          --  in the parent of a generic, the range is processed with checks
20217          --  disabled as part of the generic context and with checks enabled
20218          --  for code generation purposes. This leads to link issues as the
20219          --  generic contains references to xxx_FIRST/_LAST, but the inlined
20220          --  template sees the temporaries generated by Remove_Side_Effects.
20221
20222          else
20223             Validity_Check_Range (R, Subtyp);
20224          end if;
20225
20226          --  If there were errors in the declaration, try and patch up some
20227          --  common mistakes in the bounds. The cases handled are literals
20228          --  which are Integer where the expected type is Real and vice versa.
20229          --  These corrections allow the compilation process to proceed further
20230          --  along since some basic assumptions of the format of the bounds
20231          --  are guaranteed.
20232
20233          if Etype (R) = Any_Type then
20234             if Nkind (Lo) = N_Integer_Literal and then Is_Real_Type (T) then
20235                Rewrite (Lo,
20236                  Make_Real_Literal (Sloc (Lo), UR_From_Uint (Intval (Lo))));
20237
20238             elsif Nkind (Hi) = N_Integer_Literal and then Is_Real_Type (T) then
20239                Rewrite (Hi,
20240                  Make_Real_Literal (Sloc (Hi), UR_From_Uint (Intval (Hi))));
20241
20242             elsif Nkind (Lo) = N_Real_Literal and then Is_Integer_Type (T) then
20243                Rewrite (Lo,
20244                  Make_Integer_Literal (Sloc (Lo), UR_To_Uint (Realval (Lo))));
20245
20246             elsif Nkind (Hi) = N_Real_Literal and then Is_Integer_Type (T) then
20247                Rewrite (Hi,
20248                  Make_Integer_Literal (Sloc (Hi), UR_To_Uint (Realval (Hi))));
20249             end if;
20250
20251             Set_Etype (Lo, T);
20252             Set_Etype (Hi, T);
20253          end if;
20254
20255          --  If the bounds of the range have been mistakenly given as string
20256          --  literals (perhaps in place of character literals), then an error
20257          --  has already been reported, but we rewrite the string literal as a
20258          --  bound of the range's type to avoid blowups in later processing
20259          --  that looks at static values.
20260
20261          if Nkind (Lo) = N_String_Literal then
20262             Rewrite (Lo,
20263               Make_Attribute_Reference (Sloc (Lo),
20264                 Prefix         => New_Occurrence_Of (T, Sloc (Lo)),
20265                 Attribute_Name => Name_First));
20266             Analyze_And_Resolve (Lo);
20267          end if;
20268
20269          if Nkind (Hi) = N_String_Literal then
20270             Rewrite (Hi,
20271               Make_Attribute_Reference (Sloc (Hi),
20272                 Prefix         => New_Occurrence_Of (T, Sloc (Hi)),
20273                 Attribute_Name => Name_First));
20274             Analyze_And_Resolve (Hi);
20275          end if;
20276
20277          --  If bounds aren't scalar at this point then exit, avoiding
20278          --  problems with further processing of the range in this procedure.
20279
20280          if not Is_Scalar_Type (Etype (Lo)) then
20281             return;
20282          end if;
20283
20284          --  Resolve (actually Sem_Eval) has checked that the bounds are in
20285          --  then range of the base type. Here we check whether the bounds
20286          --  are in the range of the subtype itself. Note that if the bounds
20287          --  represent the null range the Constraint_Error exception should
20288          --  not be raised.
20289
20290          --  ??? The following code should be cleaned up as follows
20291
20292          --  1. The Is_Null_Range (Lo, Hi) test should disappear since it
20293          --     is done in the call to Range_Check (R, T); below
20294
20295          --  2. The use of R_Check_Off should be investigated and possibly
20296          --     removed, this would clean up things a bit.
20297
20298          if Is_Null_Range (Lo, Hi) then
20299             null;
20300
20301          else
20302             --  Capture values of bounds and generate temporaries for them
20303             --  if needed, before applying checks, since checks may cause
20304             --  duplication of the expression without forcing evaluation.
20305
20306             --  The forced evaluation removes side effects from expressions,
20307             --  which should occur also in GNATprove mode. Otherwise, we end up
20308             --  with unexpected insertions of actions at places where this is
20309             --  not supposed to occur, e.g. on default parameters of a call.
20310
20311             if Expander_Active or GNATprove_Mode then
20312
20313                --  Call Force_Evaluation to create declarations as needed to
20314                --  deal with side effects, and also create typ_FIRST/LAST
20315                --  entities for bounds if we have a subtype name.
20316
20317                --  Note: we do this transformation even if expansion is not
20318                --  active if we are in GNATprove_Mode since the transformation
20319                --  is in general required to ensure that the resulting tree has
20320                --  proper Ada semantics.
20321
20322                Force_Evaluation
20323                  (Lo, Related_Id => Subtyp, Is_Low_Bound  => True);
20324                Force_Evaluation
20325                  (Hi, Related_Id => Subtyp, Is_High_Bound => True);
20326             end if;
20327
20328             --  We use a flag here instead of suppressing checks on the type
20329             --  because the type we check against isn't necessarily the place
20330             --  where we put the check.
20331
20332             if not R_Check_Off then
20333                R_Checks := Get_Range_Checks (R, T);
20334
20335                --  Look up tree to find an appropriate insertion point. We
20336                --  can't just use insert_actions because later processing
20337                --  depends on the insertion node. Prior to Ada 2012 the
20338                --  insertion point could only be a declaration or a loop, but
20339                --  quantified expressions can appear within any context in an
20340                --  expression, and the insertion point can be any statement,
20341                --  pragma, or declaration.
20342
20343                Insert_Node := Parent (R);
20344                while Present (Insert_Node) loop
20345                   exit when
20346                     Nkind (Insert_Node) in N_Declaration
20347                     and then
20348                       not Nkind_In
20349                         (Insert_Node, N_Component_Declaration,
20350                                       N_Loop_Parameter_Specification,
20351                                       N_Function_Specification,
20352                                       N_Procedure_Specification);
20353
20354                   exit when Nkind (Insert_Node) in N_Later_Decl_Item
20355                     or else Nkind (Insert_Node) in
20356                               N_Statement_Other_Than_Procedure_Call
20357                     or else Nkind_In (Insert_Node, N_Procedure_Call_Statement,
20358                                                    N_Pragma);
20359
20360                   Insert_Node := Parent (Insert_Node);
20361                end loop;
20362
20363                --  Why would Type_Decl not be present???  Without this test,
20364                --  short regression tests fail.
20365
20366                if Present (Insert_Node) then
20367
20368                   --  Case of loop statement. Verify that the range is part
20369                   --  of the subtype indication of the iteration scheme.
20370
20371                   if Nkind (Insert_Node) = N_Loop_Statement then
20372                      declare
20373                         Indic : Node_Id;
20374
20375                      begin
20376                         Indic := Parent (R);
20377                         while Present (Indic)
20378                           and then Nkind (Indic) /= N_Subtype_Indication
20379                         loop
20380                            Indic := Parent (Indic);
20381                         end loop;
20382
20383                         if Present (Indic) then
20384                            Def_Id := Etype (Subtype_Mark (Indic));
20385
20386                            Insert_Range_Checks
20387                              (R_Checks,
20388                               Insert_Node,
20389                               Def_Id,
20390                               Sloc (Insert_Node),
20391                               R,
20392                               Do_Before => True);
20393                         end if;
20394                      end;
20395
20396                   --  Insertion before a declaration. If the declaration
20397                   --  includes discriminants, the list of applicable checks
20398                   --  is given by the caller.
20399
20400                   elsif Nkind (Insert_Node) in N_Declaration then
20401                      Def_Id := Defining_Identifier (Insert_Node);
20402
20403                      if (Ekind (Def_Id) = E_Record_Type
20404                           and then Depends_On_Discriminant (R))
20405                        or else
20406                         (Ekind (Def_Id) = E_Protected_Type
20407                           and then Has_Discriminants (Def_Id))
20408                      then
20409                         Append_Range_Checks
20410                           (R_Checks,
20411                             Check_List, Def_Id, Sloc (Insert_Node), R);
20412
20413                      else
20414                         Insert_Range_Checks
20415                           (R_Checks,
20416                             Insert_Node, Def_Id, Sloc (Insert_Node), R);
20417
20418                      end if;
20419
20420                   --  Insertion before a statement. Range appears in the
20421                   --  context of a quantified expression. Insertion will
20422                   --  take place when expression is expanded.
20423
20424                   else
20425                      null;
20426                   end if;
20427                end if;
20428             end if;
20429          end if;
20430
20431       --  Case of other than an explicit N_Range node
20432
20433       --  The forced evaluation removes side effects from expressions, which
20434       --  should occur also in GNATprove mode. Otherwise, we end up with
20435       --  unexpected insertions of actions at places where this is not
20436       --  supposed to occur, e.g. on default parameters of a call.
20437
20438       elsif Expander_Active or GNATprove_Mode then
20439          Get_Index_Bounds (R, Lo, Hi);
20440          Force_Evaluation (Lo);
20441          Force_Evaluation (Hi);
20442       end if;
20443    end Process_Range_Expr_In_Decl;
20444
20445    --------------------------------------
20446    -- Process_Real_Range_Specification --
20447    --------------------------------------
20448
20449    procedure Process_Real_Range_Specification (Def : Node_Id) is
20450       Spec : constant Node_Id := Real_Range_Specification (Def);
20451       Lo   : Node_Id;
20452       Hi   : Node_Id;
20453       Err  : Boolean := False;
20454
20455       procedure Analyze_Bound (N : Node_Id);
20456       --  Analyze and check one bound
20457
20458       -------------------
20459       -- Analyze_Bound --
20460       -------------------
20461
20462       procedure Analyze_Bound (N : Node_Id) is
20463       begin
20464          Analyze_And_Resolve (N, Any_Real);
20465
20466          if not Is_OK_Static_Expression (N) then
20467             Flag_Non_Static_Expr
20468               ("bound in real type definition is not static!", N);
20469             Err := True;
20470          end if;
20471       end Analyze_Bound;
20472
20473    --  Start of processing for Process_Real_Range_Specification
20474
20475    begin
20476       if Present (Spec) then
20477          Lo := Low_Bound (Spec);
20478          Hi := High_Bound (Spec);
20479          Analyze_Bound (Lo);
20480          Analyze_Bound (Hi);
20481
20482          --  If error, clear away junk range specification
20483
20484          if Err then
20485             Set_Real_Range_Specification (Def, Empty);
20486          end if;
20487       end if;
20488    end Process_Real_Range_Specification;
20489
20490    ---------------------
20491    -- Process_Subtype --
20492    ---------------------
20493
20494    function Process_Subtype
20495      (S           : Node_Id;
20496       Related_Nod : Node_Id;
20497       Related_Id  : Entity_Id := Empty;
20498       Suffix      : Character := ' ') return Entity_Id
20499    is
20500       P               : Node_Id;
20501       Def_Id          : Entity_Id;
20502       Error_Node      : Node_Id;
20503       Full_View_Id    : Entity_Id;
20504       Subtype_Mark_Id : Entity_Id;
20505
20506       May_Have_Null_Exclusion : Boolean;
20507
20508       procedure Check_Incomplete (T : Entity_Id);
20509       --  Called to verify that an incomplete type is not used prematurely
20510
20511       ----------------------
20512       -- Check_Incomplete --
20513       ----------------------
20514
20515       procedure Check_Incomplete (T : Entity_Id) is
20516       begin
20517          --  Ada 2005 (AI-412): Incomplete subtypes are legal
20518
20519          if Ekind (Root_Type (Entity (T))) = E_Incomplete_Type
20520            and then
20521              not (Ada_Version >= Ada_2005
20522                    and then
20523                      (Nkind (Parent (T)) = N_Subtype_Declaration
20524                        or else (Nkind (Parent (T)) = N_Subtype_Indication
20525                                  and then Nkind (Parent (Parent (T))) =
20526                                                    N_Subtype_Declaration)))
20527          then
20528             Error_Msg_N ("invalid use of type before its full declaration", T);
20529          end if;
20530       end Check_Incomplete;
20531
20532    --  Start of processing for Process_Subtype
20533
20534    begin
20535       --  Case of no constraints present
20536
20537       if Nkind (S) /= N_Subtype_Indication then
20538          Find_Type (S);
20539          Check_Incomplete (S);
20540          P := Parent (S);
20541
20542          --  Ada 2005 (AI-231): Static check
20543
20544          if Ada_Version >= Ada_2005
20545            and then Present (P)
20546            and then Null_Exclusion_Present (P)
20547            and then Nkind (P) /= N_Access_To_Object_Definition
20548            and then not Is_Access_Type (Entity (S))
20549          then
20550             Error_Msg_N ("`NOT NULL` only allowed for an access type", S);
20551          end if;
20552
20553          --  The following is ugly, can't we have a range or even a flag???
20554
20555          May_Have_Null_Exclusion :=
20556            Nkind_In (P, N_Access_Definition,
20557                         N_Access_Function_Definition,
20558                         N_Access_Procedure_Definition,
20559                         N_Access_To_Object_Definition,
20560                         N_Allocator,
20561                         N_Component_Definition)
20562              or else
20563            Nkind_In (P, N_Derived_Type_Definition,
20564                         N_Discriminant_Specification,
20565                         N_Formal_Object_Declaration,
20566                         N_Object_Declaration,
20567                         N_Object_Renaming_Declaration,
20568                         N_Parameter_Specification,
20569                         N_Subtype_Declaration);
20570
20571          --  Create an Itype that is a duplicate of Entity (S) but with the
20572          --  null-exclusion attribute.
20573
20574          if May_Have_Null_Exclusion
20575            and then Is_Access_Type (Entity (S))
20576            and then Null_Exclusion_Present (P)
20577
20578             --  No need to check the case of an access to object definition.
20579             --  It is correct to define double not-null pointers.
20580
20581             --  Example:
20582             --     type Not_Null_Int_Ptr is not null access Integer;
20583             --     type Acc is not null access Not_Null_Int_Ptr;
20584
20585            and then Nkind (P) /= N_Access_To_Object_Definition
20586          then
20587             if Can_Never_Be_Null (Entity (S)) then
20588                case Nkind (Related_Nod) is
20589                   when N_Full_Type_Declaration =>
20590                      if Nkind (Type_Definition (Related_Nod))
20591                        in N_Array_Type_Definition
20592                      then
20593                         Error_Node :=
20594                           Subtype_Indication
20595                             (Component_Definition
20596                              (Type_Definition (Related_Nod)));
20597                      else
20598                         Error_Node :=
20599                           Subtype_Indication (Type_Definition (Related_Nod));
20600                      end if;
20601
20602                   when N_Subtype_Declaration =>
20603                      Error_Node := Subtype_Indication (Related_Nod);
20604
20605                   when N_Object_Declaration =>
20606                      Error_Node := Object_Definition (Related_Nod);
20607
20608                   when N_Component_Declaration =>
20609                      Error_Node :=
20610                        Subtype_Indication (Component_Definition (Related_Nod));
20611
20612                   when N_Allocator =>
20613                      Error_Node := Expression (Related_Nod);
20614
20615                   when others =>
20616                      pragma Assert (False);
20617                      Error_Node := Related_Nod;
20618                end case;
20619
20620                Error_Msg_NE
20621                  ("`NOT NULL` not allowed (& already excludes null)",
20622                   Error_Node,
20623                   Entity (S));
20624             end if;
20625
20626             Set_Etype  (S,
20627               Create_Null_Excluding_Itype
20628                 (T           => Entity (S),
20629                  Related_Nod => P));
20630             Set_Entity (S, Etype (S));
20631          end if;
20632
20633          return Entity (S);
20634
20635       --  Case of constraint present, so that we have an N_Subtype_Indication
20636       --  node (this node is created only if constraints are present).
20637
20638       else
20639          Find_Type (Subtype_Mark (S));
20640
20641          if Nkind (Parent (S)) /= N_Access_To_Object_Definition
20642            and then not
20643             (Nkind (Parent (S)) = N_Subtype_Declaration
20644               and then Is_Itype (Defining_Identifier (Parent (S))))
20645          then
20646             Check_Incomplete (Subtype_Mark (S));
20647          end if;
20648
20649          P := Parent (S);
20650          Subtype_Mark_Id := Entity (Subtype_Mark (S));
20651
20652          --  Explicit subtype declaration case
20653
20654          if Nkind (P) = N_Subtype_Declaration then
20655             Def_Id := Defining_Identifier (P);
20656
20657          --  Explicit derived type definition case
20658
20659          elsif Nkind (P) = N_Derived_Type_Definition then
20660             Def_Id := Defining_Identifier (Parent (P));
20661
20662          --  Implicit case, the Def_Id must be created as an implicit type.
20663          --  The one exception arises in the case of concurrent types, array
20664          --  and access types, where other subsidiary implicit types may be
20665          --  created and must appear before the main implicit type. In these
20666          --  cases we leave Def_Id set to Empty as a signal that Create_Itype
20667          --  has not yet been called to create Def_Id.
20668
20669          else
20670             if Is_Array_Type (Subtype_Mark_Id)
20671               or else Is_Concurrent_Type (Subtype_Mark_Id)
20672               or else Is_Access_Type (Subtype_Mark_Id)
20673             then
20674                Def_Id := Empty;
20675
20676             --  For the other cases, we create a new unattached Itype,
20677             --  and set the indication to ensure it gets attached later.
20678
20679             else
20680                Def_Id :=
20681                  Create_Itype (E_Void, Related_Nod, Related_Id, Suffix);
20682             end if;
20683          end if;
20684
20685          --  If the kind of constraint is invalid for this kind of type,
20686          --  then give an error, and then pretend no constraint was given.
20687
20688          if not Is_Valid_Constraint_Kind
20689                    (Ekind (Subtype_Mark_Id), Nkind (Constraint (S)))
20690          then
20691             Error_Msg_N
20692               ("incorrect constraint for this kind of type", Constraint (S));
20693
20694             Rewrite (S, New_Copy_Tree (Subtype_Mark (S)));
20695
20696             --  Set Ekind of orphan itype, to prevent cascaded errors
20697
20698             if Present (Def_Id) then
20699                Set_Ekind (Def_Id, Ekind (Any_Type));
20700             end if;
20701
20702             --  Make recursive call, having got rid of the bogus constraint
20703
20704             return Process_Subtype (S, Related_Nod, Related_Id, Suffix);
20705          end if;
20706
20707          --  Remaining processing depends on type. Select on Base_Type kind to
20708          --  ensure getting to the concrete type kind in the case of a private
20709          --  subtype (needed when only doing semantic analysis).
20710
20711          case Ekind (Base_Type (Subtype_Mark_Id)) is
20712             when Access_Kind =>
20713
20714                --  If this is a constraint on a class-wide type, discard it.
20715                --  There is currently no way to express a partial discriminant
20716                --  constraint on a type with unknown discriminants. This is
20717                --  a pathology that the ACATS wisely decides not to test.
20718
20719                if Is_Class_Wide_Type (Designated_Type (Subtype_Mark_Id)) then
20720                   if Comes_From_Source (S) then
20721                      Error_Msg_N
20722                        ("constraint on class-wide type ignored??",
20723                         Constraint (S));
20724                   end if;
20725
20726                   if Nkind (P) = N_Subtype_Declaration then
20727                      Set_Subtype_Indication (P,
20728                         New_Occurrence_Of (Subtype_Mark_Id, Sloc (S)));
20729                   end if;
20730
20731                   return Subtype_Mark_Id;
20732                end if;
20733
20734                Constrain_Access (Def_Id, S, Related_Nod);
20735
20736                if Expander_Active
20737                  and then  Is_Itype (Designated_Type (Def_Id))
20738                  and then Nkind (Related_Nod) = N_Subtype_Declaration
20739                  and then not Is_Incomplete_Type (Designated_Type (Def_Id))
20740                then
20741                   Build_Itype_Reference
20742                     (Designated_Type (Def_Id), Related_Nod);
20743                end if;
20744
20745             when Array_Kind =>
20746                Constrain_Array (Def_Id, S, Related_Nod, Related_Id, Suffix);
20747
20748             when Decimal_Fixed_Point_Kind =>
20749                Constrain_Decimal (Def_Id, S);
20750
20751             when Enumeration_Kind =>
20752                Constrain_Enumeration (Def_Id, S);
20753                Inherit_Predicate_Flags (Def_Id, Subtype_Mark_Id);
20754
20755             when Ordinary_Fixed_Point_Kind =>
20756                Constrain_Ordinary_Fixed (Def_Id, S);
20757
20758             when Float_Kind =>
20759                Constrain_Float (Def_Id, S);
20760
20761             when Integer_Kind =>
20762                Constrain_Integer (Def_Id, S);
20763                Inherit_Predicate_Flags (Def_Id, Subtype_Mark_Id);
20764
20765             when E_Record_Type     |
20766                  E_Record_Subtype  |
20767                  Class_Wide_Kind   |
20768                  E_Incomplete_Type =>
20769                Constrain_Discriminated_Type (Def_Id, S, Related_Nod);
20770
20771                if Ekind (Def_Id) = E_Incomplete_Type then
20772                   Set_Private_Dependents (Def_Id, New_Elmt_List);
20773                end if;
20774
20775             when Private_Kind =>
20776                Constrain_Discriminated_Type (Def_Id, S, Related_Nod);
20777                Set_Private_Dependents (Def_Id, New_Elmt_List);
20778
20779                --  In case of an invalid constraint prevent further processing
20780                --  since the type constructed is missing expected fields.
20781
20782                if Etype (Def_Id) = Any_Type then
20783                   return Def_Id;
20784                end if;
20785
20786                --  If the full view is that of a task with discriminants,
20787                --  we must constrain both the concurrent type and its
20788                --  corresponding record type. Otherwise we will just propagate
20789                --  the constraint to the full view, if available.
20790
20791                if Present (Full_View (Subtype_Mark_Id))
20792                  and then Has_Discriminants (Subtype_Mark_Id)
20793                  and then Is_Concurrent_Type (Full_View (Subtype_Mark_Id))
20794                then
20795                   Full_View_Id :=
20796                     Create_Itype (E_Void, Related_Nod, Related_Id, Suffix);
20797
20798                   Set_Entity (Subtype_Mark (S), Full_View (Subtype_Mark_Id));
20799                   Constrain_Concurrent (Full_View_Id, S,
20800                     Related_Nod, Related_Id, Suffix);
20801                   Set_Entity (Subtype_Mark (S), Subtype_Mark_Id);
20802                   Set_Full_View (Def_Id, Full_View_Id);
20803
20804                   --  Introduce an explicit reference to the private subtype,
20805                   --  to prevent scope anomalies in gigi if first use appears
20806                   --  in a nested context, e.g. a later function body.
20807                   --  Should this be generated in other contexts than a full
20808                   --  type declaration?
20809
20810                   if Is_Itype (Def_Id)
20811                     and then
20812                       Nkind (Parent (P)) = N_Full_Type_Declaration
20813                   then
20814                      Build_Itype_Reference (Def_Id, Parent (P));
20815                   end if;
20816
20817                else
20818                   Prepare_Private_Subtype_Completion (Def_Id, Related_Nod);
20819                end if;
20820
20821             when Concurrent_Kind  =>
20822                Constrain_Concurrent (Def_Id, S,
20823                  Related_Nod, Related_Id, Suffix);
20824
20825             when others =>
20826                Error_Msg_N ("invalid subtype mark in subtype indication", S);
20827          end case;
20828
20829          --  Size and Convention are always inherited from the base type
20830
20831          Set_Size_Info  (Def_Id,            (Subtype_Mark_Id));
20832          Set_Convention (Def_Id, Convention (Subtype_Mark_Id));
20833
20834          return Def_Id;
20835       end if;
20836    end Process_Subtype;
20837
20838    --------------------------------------------
20839    -- Propagate_Default_Init_Cond_Attributes --
20840    --------------------------------------------
20841
20842    procedure Propagate_Default_Init_Cond_Attributes
20843      (From_Typ             : Entity_Id;
20844       To_Typ               : Entity_Id;
20845       Parent_To_Derivation : Boolean := False;
20846       Private_To_Full_View : Boolean := False)
20847    is
20848       procedure Remove_Default_Init_Cond_Procedure (Typ : Entity_Id);
20849       --  Remove the default initial procedure (if any) from the rep chain of
20850       --  type Typ.
20851
20852       ----------------------------------------
20853       -- Remove_Default_Init_Cond_Procedure --
20854       ----------------------------------------
20855
20856       procedure Remove_Default_Init_Cond_Procedure (Typ : Entity_Id) is
20857          Found : Boolean := False;
20858          Prev  : Entity_Id;
20859          Subp  : Entity_Id;
20860
20861       begin
20862          Prev := Typ;
20863          Subp := Subprograms_For_Type (Typ);
20864          while Present (Subp) loop
20865             if Is_Default_Init_Cond_Procedure (Subp) then
20866                Found := True;
20867                exit;
20868             end if;
20869
20870             Prev := Subp;
20871             Subp := Subprograms_For_Type (Subp);
20872          end loop;
20873
20874          if Found then
20875             Set_Subprograms_For_Type (Prev, Subprograms_For_Type (Subp));
20876             Set_Subprograms_For_Type (Subp, Empty);
20877          end if;
20878       end Remove_Default_Init_Cond_Procedure;
20879
20880       --  Local variables
20881
20882       Inherit_Procedure : Boolean := False;
20883
20884    --  Start of processing for Propagate_Default_Init_Cond_Attributes
20885
20886    begin
20887       if Has_Default_Init_Cond (From_Typ) then
20888
20889          --  A derived type inherits the attributes from its parent type
20890
20891          if Parent_To_Derivation then
20892             Set_Has_Inherited_Default_Init_Cond (To_Typ);
20893
20894          --  A full view shares the attributes with its private view
20895
20896          else
20897             Set_Has_Default_Init_Cond (To_Typ);
20898          end if;
20899
20900          Inherit_Procedure := True;
20901
20902          --  Due to the order of expansion, a derived private type is processed
20903          --  by two routines which both attempt to set the attributes related
20904          --  to pragma Default_Initial_Condition - Build_Derived_Type and then
20905          --  Process_Full_View.
20906
20907          --    package Pack is
20908          --       type Parent_Typ is private
20909          --         with Default_Initial_Condition ...;
20910          --    private
20911          --       type Parent_Typ is ...;
20912          --    end Pack;
20913
20914          --    with Pack; use Pack;
20915          --    package Pack_2 is
20916          --       type Deriv_Typ is private
20917          --         with Default_Initial_Condition ...;
20918          --    private
20919          --       type Deriv_Typ is new Parent_Typ;
20920          --    end Pack_2;
20921
20922          --  When Build_Derived_Type operates, it sets the attributes on the
20923          --  full view without taking into account that the private view may
20924          --  define its own default initial condition procedure. This becomes
20925          --  apparent in Process_Full_View which must undo some of the work by
20926          --  Build_Derived_Type and propagate the attributes from the private
20927          --  to the full view.
20928
20929          if Private_To_Full_View then
20930             Set_Has_Inherited_Default_Init_Cond (To_Typ, False);
20931             Remove_Default_Init_Cond_Procedure (To_Typ);
20932          end if;
20933
20934       --  A type must inherit the default initial condition procedure from a
20935       --  parent type when the parent itself is inheriting the procedure or
20936       --  when it is defining one. This circuitry is also used when dealing
20937       --  with the private / full view of a type.
20938
20939       elsif Has_Inherited_Default_Init_Cond (From_Typ)
20940         or (Parent_To_Derivation
20941               and Present (Get_Pragma
20942                     (From_Typ, Pragma_Default_Initial_Condition)))
20943       then
20944          Set_Has_Inherited_Default_Init_Cond (To_Typ);
20945          Inherit_Procedure := True;
20946       end if;
20947
20948       if Inherit_Procedure
20949         and then No (Default_Init_Cond_Procedure (To_Typ))
20950       then
20951          Set_Default_Init_Cond_Procedure
20952            (To_Typ, Default_Init_Cond_Procedure (From_Typ));
20953       end if;
20954    end Propagate_Default_Init_Cond_Attributes;
20955
20956    -----------------------------
20957    -- Record_Type_Declaration --
20958    -----------------------------
20959
20960    procedure Record_Type_Declaration
20961      (T    : Entity_Id;
20962       N    : Node_Id;
20963       Prev : Entity_Id)
20964    is
20965       Def       : constant Node_Id := Type_Definition (N);
20966       Is_Tagged : Boolean;
20967       Tag_Comp  : Entity_Id;
20968
20969    begin
20970       --  These flags must be initialized before calling Process_Discriminants
20971       --  because this routine makes use of them.
20972
20973       Set_Ekind             (T, E_Record_Type);
20974       Set_Etype             (T, T);
20975       Init_Size_Align       (T);
20976       Set_Interfaces        (T, No_Elist);
20977       Set_Stored_Constraint (T, No_Elist);
20978       Set_Default_SSO       (T);
20979
20980       --  Normal case
20981
20982       if Ada_Version < Ada_2005 or else not Interface_Present (Def) then
20983          if Limited_Present (Def) then
20984             Check_SPARK_05_Restriction ("limited is not allowed", N);
20985          end if;
20986
20987          if Abstract_Present (Def) then
20988             Check_SPARK_05_Restriction ("abstract is not allowed", N);
20989          end if;
20990
20991          --  The flag Is_Tagged_Type might have already been set by
20992          --  Find_Type_Name if it detected an error for declaration T. This
20993          --  arises in the case of private tagged types where the full view
20994          --  omits the word tagged.
20995
20996          Is_Tagged :=
20997            Tagged_Present (Def)
20998              or else (Serious_Errors_Detected > 0 and then Is_Tagged_Type (T));
20999
21000          Set_Is_Limited_Record (T, Limited_Present (Def));
21001
21002          if Is_Tagged then
21003             Set_Is_Tagged_Type (T, True);
21004             Set_No_Tagged_Streams_Pragma (T, No_Tagged_Streams);
21005          end if;
21006
21007          --  Type is abstract if full declaration carries keyword, or if
21008          --  previous partial view did.
21009
21010          Set_Is_Abstract_Type    (T, Is_Abstract_Type (T)
21011                                       or else Abstract_Present (Def));
21012
21013       else
21014          Check_SPARK_05_Restriction ("interface is not allowed", N);
21015
21016          Is_Tagged := True;
21017          Analyze_Interface_Declaration (T, Def);
21018
21019          if Present (Discriminant_Specifications (N)) then
21020             Error_Msg_N
21021               ("interface types cannot have discriminants",
21022                 Defining_Identifier
21023                   (First (Discriminant_Specifications (N))));
21024          end if;
21025       end if;
21026
21027       --  First pass: if there are self-referential access components,
21028       --  create the required anonymous access type declarations, and if
21029       --  need be an incomplete type declaration for T itself.
21030
21031       Check_Anonymous_Access_Components (N, T, Prev, Component_List (Def));
21032
21033       if Ada_Version >= Ada_2005
21034         and then Present (Interface_List (Def))
21035       then
21036          Check_Interfaces (N, Def);
21037
21038          declare
21039             Ifaces_List : Elist_Id;
21040
21041          begin
21042             --  Ada 2005 (AI-251): Collect the list of progenitors that are not
21043             --  already in the parents.
21044
21045             Collect_Interfaces
21046               (T               => T,
21047                Ifaces_List     => Ifaces_List,
21048                Exclude_Parents => True);
21049
21050             Set_Interfaces (T, Ifaces_List);
21051          end;
21052       end if;
21053
21054       --  Records constitute a scope for the component declarations within.
21055       --  The scope is created prior to the processing of these declarations.
21056       --  Discriminants are processed first, so that they are visible when
21057       --  processing the other components. The Ekind of the record type itself
21058       --  is set to E_Record_Type (subtypes appear as E_Record_Subtype).
21059
21060       --  Enter record scope
21061
21062       Push_Scope (T);
21063
21064       --  If an incomplete or private type declaration was already given for
21065       --  the type, then this scope already exists, and the discriminants have
21066       --  been declared within. We must verify that the full declaration
21067       --  matches the incomplete one.
21068
21069       Check_Or_Process_Discriminants (N, T, Prev);
21070
21071       Set_Is_Constrained     (T, not Has_Discriminants (T));
21072       Set_Has_Delayed_Freeze (T, True);
21073
21074       --  For tagged types add a manually analyzed component corresponding
21075       --  to the component _tag, the corresponding piece of tree will be
21076       --  expanded as part of the freezing actions if it is not a CPP_Class.
21077
21078       if Is_Tagged then
21079
21080          --  Do not add the tag unless we are in expansion mode
21081
21082          if Expander_Active then
21083             Tag_Comp := Make_Defining_Identifier (Sloc (Def), Name_uTag);
21084             Enter_Name (Tag_Comp);
21085
21086             Set_Ekind                     (Tag_Comp, E_Component);
21087             Set_Is_Tag                    (Tag_Comp);
21088             Set_Is_Aliased                (Tag_Comp);
21089             Set_Etype                     (Tag_Comp, RTE (RE_Tag));
21090             Set_DT_Entry_Count            (Tag_Comp, No_Uint);
21091             Set_Original_Record_Component (Tag_Comp, Tag_Comp);
21092             Init_Component_Location       (Tag_Comp);
21093
21094             --  Ada 2005 (AI-251): Addition of the Tag corresponding to all the
21095             --  implemented interfaces.
21096
21097             if Has_Interfaces (T) then
21098                Add_Interface_Tag_Components (N, T);
21099             end if;
21100          end if;
21101
21102          Make_Class_Wide_Type (T);
21103          Set_Direct_Primitive_Operations (T, New_Elmt_List);
21104       end if;
21105
21106       --  We must suppress range checks when processing record components in
21107       --  the presence of discriminants, since we don't want spurious checks to
21108       --  be generated during their analysis, but Suppress_Range_Checks flags
21109       --  must be reset the after processing the record definition.
21110
21111       --  Note: this is the only use of Kill_Range_Checks, and is a bit odd,
21112       --  couldn't we just use the normal range check suppression method here.
21113       --  That would seem cleaner ???
21114
21115       if Has_Discriminants (T) and then not Range_Checks_Suppressed (T) then
21116          Set_Kill_Range_Checks (T, True);
21117          Record_Type_Definition (Def, Prev);
21118          Set_Kill_Range_Checks (T, False);
21119       else
21120          Record_Type_Definition (Def, Prev);
21121       end if;
21122
21123       --  Exit from record scope
21124
21125       End_Scope;
21126
21127       --  Ada 2005 (AI-251 and AI-345): Derive the interface subprograms of all
21128       --  the implemented interfaces and associate them an aliased entity.
21129
21130       if Is_Tagged
21131         and then not Is_Empty_List (Interface_List (Def))
21132       then
21133          Derive_Progenitor_Subprograms (T, T);
21134       end if;
21135
21136       Check_Function_Writable_Actuals (N);
21137    end Record_Type_Declaration;
21138
21139    ----------------------------
21140    -- Record_Type_Definition --
21141    ----------------------------
21142
21143    procedure Record_Type_Definition (Def : Node_Id; Prev_T : Entity_Id) is
21144       Component          : Entity_Id;
21145       Ctrl_Components    : Boolean := False;
21146       Final_Storage_Only : Boolean;
21147       T                  : Entity_Id;
21148
21149    begin
21150       if Ekind (Prev_T) = E_Incomplete_Type then
21151          T := Full_View (Prev_T);
21152       else
21153          T := Prev_T;
21154       end if;
21155
21156       --  In SPARK, tagged types and type extensions may only be declared in
21157       --  the specification of library unit packages.
21158
21159       if Present (Def) and then Is_Tagged_Type (T) then
21160          declare
21161             Typ  : Node_Id;
21162             Ctxt : Node_Id;
21163
21164          begin
21165             if Nkind (Parent (Def)) = N_Full_Type_Declaration then
21166                Typ := Parent (Def);
21167             else
21168                pragma Assert
21169                  (Nkind (Parent (Def)) = N_Derived_Type_Definition);
21170                Typ := Parent (Parent (Def));
21171             end if;
21172
21173             Ctxt := Parent (Typ);
21174
21175             if Nkind (Ctxt) = N_Package_Body
21176               and then Nkind (Parent (Ctxt)) = N_Compilation_Unit
21177             then
21178                Check_SPARK_05_Restriction
21179                  ("type should be defined in package specification", Typ);
21180
21181             elsif Nkind (Ctxt) /= N_Package_Specification
21182               or else Nkind (Parent (Parent (Ctxt))) /= N_Compilation_Unit
21183             then
21184                Check_SPARK_05_Restriction
21185                  ("type should be defined in library unit package", Typ);
21186             end if;
21187          end;
21188       end if;
21189
21190       Final_Storage_Only := not Is_Controlled_Active (T);
21191
21192       --  Ada 2005: Check whether an explicit Limited is present in a derived
21193       --  type declaration.
21194
21195       if Nkind (Parent (Def)) = N_Derived_Type_Definition
21196         and then Limited_Present (Parent (Def))
21197       then
21198          Set_Is_Limited_Record (T);
21199       end if;
21200
21201       --  If the component list of a record type is defined by the reserved
21202       --  word null and there is no discriminant part, then the record type has
21203       --  no components and all records of the type are null records (RM 3.7)
21204       --  This procedure is also called to process the extension part of a
21205       --  record extension, in which case the current scope may have inherited
21206       --  components.
21207
21208       if No (Def)
21209         or else No (Component_List (Def))
21210         or else Null_Present (Component_List (Def))
21211       then
21212          if not Is_Tagged_Type (T) then
21213             Check_SPARK_05_Restriction ("untagged record cannot be null", Def);
21214          end if;
21215
21216       else
21217          Analyze_Declarations (Component_Items (Component_List (Def)));
21218
21219          if Present (Variant_Part (Component_List (Def))) then
21220             Check_SPARK_05_Restriction ("variant part is not allowed", Def);
21221             Analyze (Variant_Part (Component_List (Def)));
21222          end if;
21223       end if;
21224
21225       --  After completing the semantic analysis of the record definition,
21226       --  record components, both new and inherited, are accessible. Set their
21227       --  kind accordingly. Exclude malformed itypes from illegal declarations,
21228       --  whose Ekind may be void.
21229
21230       Component := First_Entity (Current_Scope);
21231       while Present (Component) loop
21232          if Ekind (Component) = E_Void
21233            and then not Is_Itype (Component)
21234          then
21235             Set_Ekind (Component, E_Component);
21236             Init_Component_Location (Component);
21237          end if;
21238
21239          if Has_Task (Etype (Component)) then
21240             Set_Has_Task (T);
21241          end if;
21242
21243          if Has_Protected (Etype (Component)) then
21244             Set_Has_Protected (T);
21245          end if;
21246
21247          if Ekind (Component) /= E_Component then
21248             null;
21249
21250          --  Do not set Has_Controlled_Component on a class-wide equivalent
21251          --  type. See Make_CW_Equivalent_Type.
21252
21253          elsif not Is_Class_Wide_Equivalent_Type (T)
21254            and then (Has_Controlled_Component (Etype (Component))
21255                       or else (Chars (Component) /= Name_uParent
21256                                 and then Is_Controlled_Active
21257                                            (Etype (Component))))
21258          then
21259             Set_Has_Controlled_Component (T, True);
21260             Final_Storage_Only :=
21261               Final_Storage_Only
21262                 and then Finalize_Storage_Only (Etype (Component));
21263             Ctrl_Components := True;
21264          end if;
21265
21266          Next_Entity (Component);
21267       end loop;
21268
21269       --  A Type is Finalize_Storage_Only only if all its controlled components
21270       --  are also.
21271
21272       if Ctrl_Components then
21273          Set_Finalize_Storage_Only (T, Final_Storage_Only);
21274       end if;
21275
21276       --  Place reference to end record on the proper entity, which may
21277       --  be a partial view.
21278
21279       if Present (Def) then
21280          Process_End_Label (Def, 'e', Prev_T);
21281       end if;
21282    end Record_Type_Definition;
21283
21284    ------------------------
21285    -- Replace_Components --
21286    ------------------------
21287
21288    procedure Replace_Components (Typ : Entity_Id; Decl : Node_Id) is
21289       function Process (N : Node_Id) return Traverse_Result;
21290
21291       -------------
21292       -- Process --
21293       -------------
21294
21295       function Process (N : Node_Id) return Traverse_Result is
21296          Comp : Entity_Id;
21297
21298       begin
21299          if Nkind (N) = N_Discriminant_Specification then
21300             Comp := First_Discriminant (Typ);
21301             while Present (Comp) loop
21302                if Chars (Comp) = Chars (Defining_Identifier (N)) then
21303                   Set_Defining_Identifier (N, Comp);
21304                   exit;
21305                end if;
21306
21307                Next_Discriminant (Comp);
21308             end loop;
21309
21310          elsif Nkind (N) = N_Component_Declaration then
21311             Comp := First_Component (Typ);
21312             while Present (Comp) loop
21313                if Chars (Comp) = Chars (Defining_Identifier (N)) then
21314                   Set_Defining_Identifier (N, Comp);
21315                   exit;
21316                end if;
21317
21318                Next_Component (Comp);
21319             end loop;
21320          end if;
21321
21322          return OK;
21323       end Process;
21324
21325       procedure Replace is new Traverse_Proc (Process);
21326
21327    --  Start of processing for Replace_Components
21328
21329    begin
21330       Replace (Decl);
21331    end Replace_Components;
21332
21333    -------------------------------
21334    -- Set_Completion_Referenced --
21335    -------------------------------
21336
21337    procedure Set_Completion_Referenced (E : Entity_Id) is
21338    begin
21339       --  If in main unit, mark entity that is a completion as referenced,
21340       --  warnings go on the partial view when needed.
21341
21342       if In_Extended_Main_Source_Unit (E) then
21343          Set_Referenced (E);
21344       end if;
21345    end Set_Completion_Referenced;
21346
21347    ---------------------
21348    -- Set_Default_SSO --
21349    ---------------------
21350
21351    procedure Set_Default_SSO (T : Entity_Id) is
21352    begin
21353       case Opt.Default_SSO is
21354          when ' ' =>
21355             null;
21356          when 'L' =>
21357             Set_SSO_Set_Low_By_Default (T, True);
21358          when 'H' =>
21359             Set_SSO_Set_High_By_Default (T, True);
21360          when others =>
21361             raise Program_Error;
21362       end case;
21363    end Set_Default_SSO;
21364
21365    ---------------------
21366    -- Set_Fixed_Range --
21367    ---------------------
21368
21369    --  The range for fixed-point types is complicated by the fact that we
21370    --  do not know the exact end points at the time of the declaration. This
21371    --  is true for three reasons:
21372
21373    --     A size clause may affect the fudging of the end-points.
21374    --     A small clause may affect the values of the end-points.
21375    --     We try to include the end-points if it does not affect the size.
21376
21377    --  This means that the actual end-points must be established at the
21378    --  point when the type is frozen. Meanwhile, we first narrow the range
21379    --  as permitted (so that it will fit if necessary in a small specified
21380    --  size), and then build a range subtree with these narrowed bounds.
21381    --  Set_Fixed_Range constructs the range from real literal values, and
21382    --  sets the range as the Scalar_Range of the given fixed-point type entity.
21383
21384    --  The parent of this range is set to point to the entity so that it is
21385    --  properly hooked into the tree (unlike normal Scalar_Range entries for
21386    --  other scalar types, which are just pointers to the range in the
21387    --  original tree, this would otherwise be an orphan).
21388
21389    --  The tree is left unanalyzed. When the type is frozen, the processing
21390    --  in Freeze.Freeze_Fixed_Point_Type notices that the range is not
21391    --  analyzed, and uses this as an indication that it should complete
21392    --  work on the range (it will know the final small and size values).
21393
21394    procedure Set_Fixed_Range
21395      (E   : Entity_Id;
21396       Loc : Source_Ptr;
21397       Lo  : Ureal;
21398       Hi  : Ureal)
21399    is
21400       S : constant Node_Id :=
21401             Make_Range (Loc,
21402               Low_Bound  => Make_Real_Literal (Loc, Lo),
21403               High_Bound => Make_Real_Literal (Loc, Hi));
21404    begin
21405       Set_Scalar_Range (E, S);
21406       Set_Parent (S, E);
21407
21408       --  Before the freeze point, the bounds of a fixed point are universal
21409       --  and carry the corresponding type.
21410
21411       Set_Etype (Low_Bound (S),  Universal_Real);
21412       Set_Etype (High_Bound (S), Universal_Real);
21413    end Set_Fixed_Range;
21414
21415    ----------------------------------
21416    -- Set_Scalar_Range_For_Subtype --
21417    ----------------------------------
21418
21419    procedure Set_Scalar_Range_For_Subtype
21420      (Def_Id : Entity_Id;
21421       R      : Node_Id;
21422       Subt   : Entity_Id)
21423    is
21424       Kind : constant Entity_Kind := Ekind (Def_Id);
21425
21426    begin
21427       --  Defend against previous error
21428
21429       if Nkind (R) = N_Error then
21430          return;
21431       end if;
21432
21433       Set_Scalar_Range (Def_Id, R);
21434
21435       --  We need to link the range into the tree before resolving it so
21436       --  that types that are referenced, including importantly the subtype
21437       --  itself, are properly frozen (Freeze_Expression requires that the
21438       --  expression be properly linked into the tree). Of course if it is
21439       --  already linked in, then we do not disturb the current link.
21440
21441       if No (Parent (R)) then
21442          Set_Parent (R, Def_Id);
21443       end if;
21444
21445       --  Reset the kind of the subtype during analysis of the range, to
21446       --  catch possible premature use in the bounds themselves.
21447
21448       Set_Ekind (Def_Id, E_Void);
21449       Process_Range_Expr_In_Decl (R, Subt, Subtyp => Def_Id);
21450       Set_Ekind (Def_Id, Kind);
21451    end Set_Scalar_Range_For_Subtype;
21452
21453    --------------------------------------------------------
21454    -- Set_Stored_Constraint_From_Discriminant_Constraint --
21455    --------------------------------------------------------
21456
21457    procedure Set_Stored_Constraint_From_Discriminant_Constraint
21458      (E : Entity_Id)
21459    is
21460    begin
21461       --  Make sure set if encountered during Expand_To_Stored_Constraint
21462
21463       Set_Stored_Constraint (E, No_Elist);
21464
21465       --  Give it the right value
21466
21467       if Is_Constrained (E) and then Has_Discriminants (E) then
21468          Set_Stored_Constraint (E,
21469            Expand_To_Stored_Constraint (E, Discriminant_Constraint (E)));
21470       end if;
21471    end Set_Stored_Constraint_From_Discriminant_Constraint;
21472
21473    -------------------------------------
21474    -- Signed_Integer_Type_Declaration --
21475    -------------------------------------
21476
21477    procedure Signed_Integer_Type_Declaration (T : Entity_Id; Def : Node_Id) is
21478       Implicit_Base : Entity_Id;
21479       Base_Typ      : Entity_Id;
21480       Lo_Val        : Uint;
21481       Hi_Val        : Uint;
21482       Errs          : Boolean := False;
21483       Lo            : Node_Id;
21484       Hi            : Node_Id;
21485
21486       function Can_Derive_From (E : Entity_Id) return Boolean;
21487       --  Determine whether given bounds allow derivation from specified type
21488
21489       procedure Check_Bound (Expr : Node_Id);
21490       --  Check bound to make sure it is integral and static. If not, post
21491       --  appropriate error message and set Errs flag
21492
21493       ---------------------
21494       -- Can_Derive_From --
21495       ---------------------
21496
21497       --  Note we check both bounds against both end values, to deal with
21498       --  strange types like ones with a range of 0 .. -12341234.
21499
21500       function Can_Derive_From (E : Entity_Id) return Boolean is
21501          Lo : constant Uint := Expr_Value (Type_Low_Bound (E));
21502          Hi : constant Uint := Expr_Value (Type_High_Bound (E));
21503       begin
21504          return Lo <= Lo_Val and then Lo_Val <= Hi
21505                   and then
21506                 Lo <= Hi_Val and then Hi_Val <= Hi;
21507       end Can_Derive_From;
21508
21509       -----------------
21510       -- Check_Bound --
21511       -----------------
21512
21513       procedure Check_Bound (Expr : Node_Id) is
21514       begin
21515          --  If a range constraint is used as an integer type definition, each
21516          --  bound of the range must be defined by a static expression of some
21517          --  integer type, but the two bounds need not have the same integer
21518          --  type (Negative bounds are allowed.) (RM 3.5.4)
21519
21520          if not Is_Integer_Type (Etype (Expr)) then
21521             Error_Msg_N
21522               ("integer type definition bounds must be of integer type", Expr);
21523             Errs := True;
21524
21525          elsif not Is_OK_Static_Expression (Expr) then
21526             Flag_Non_Static_Expr
21527               ("non-static expression used for integer type bound!", Expr);
21528             Errs := True;
21529
21530          --  The bounds are folded into literals, and we set their type to be
21531          --  universal, to avoid typing difficulties: we cannot set the type
21532          --  of the literal to the new type, because this would be a forward
21533          --  reference for the back end,  and if the original type is user-
21534          --  defined this can lead to spurious semantic errors (e.g. 2928-003).
21535
21536          else
21537             if Is_Entity_Name (Expr) then
21538                Fold_Uint (Expr, Expr_Value (Expr), True);
21539             end if;
21540
21541             Set_Etype (Expr, Universal_Integer);
21542          end if;
21543       end Check_Bound;
21544
21545    --  Start of processing for Signed_Integer_Type_Declaration
21546
21547    begin
21548       --  Create an anonymous base type
21549
21550       Implicit_Base :=
21551         Create_Itype (E_Signed_Integer_Type, Parent (Def), T, 'B');
21552
21553       --  Analyze and check the bounds, they can be of any integer type
21554
21555       Lo := Low_Bound (Def);
21556       Hi := High_Bound (Def);
21557
21558       --  Arbitrarily use Integer as the type if either bound had an error
21559
21560       if Hi = Error or else Lo = Error then
21561          Base_Typ := Any_Integer;
21562          Set_Error_Posted (T, True);
21563
21564       --  Here both bounds are OK expressions
21565
21566       else
21567          Analyze_And_Resolve (Lo, Any_Integer);
21568          Analyze_And_Resolve (Hi, Any_Integer);
21569
21570          Check_Bound (Lo);
21571          Check_Bound (Hi);
21572
21573          if Errs then
21574             Hi := Type_High_Bound (Standard_Long_Long_Integer);
21575             Lo := Type_Low_Bound (Standard_Long_Long_Integer);
21576          end if;
21577
21578          --  Find type to derive from
21579
21580          Lo_Val := Expr_Value (Lo);
21581          Hi_Val := Expr_Value (Hi);
21582
21583          if Can_Derive_From (Standard_Short_Short_Integer) then
21584             Base_Typ := Base_Type (Standard_Short_Short_Integer);
21585
21586          elsif Can_Derive_From (Standard_Short_Integer) then
21587             Base_Typ := Base_Type (Standard_Short_Integer);
21588
21589          elsif Can_Derive_From (Standard_Integer) then
21590             Base_Typ := Base_Type (Standard_Integer);
21591
21592          elsif Can_Derive_From (Standard_Long_Integer) then
21593             Base_Typ := Base_Type (Standard_Long_Integer);
21594
21595          elsif Can_Derive_From (Standard_Long_Long_Integer) then
21596             Check_Restriction (No_Long_Long_Integers, Def);
21597             Base_Typ := Base_Type (Standard_Long_Long_Integer);
21598
21599          else
21600             Base_Typ := Base_Type (Standard_Long_Long_Integer);
21601             Error_Msg_N ("integer type definition bounds out of range", Def);
21602             Hi := Type_High_Bound (Standard_Long_Long_Integer);
21603             Lo := Type_Low_Bound (Standard_Long_Long_Integer);
21604          end if;
21605       end if;
21606
21607       --  Complete both implicit base and declared first subtype entities. The
21608       --  inheritance of the rep item chain ensures that SPARK-related pragmas
21609       --  are not clobbered when the signed integer type acts as a full view of
21610       --  a private type.
21611
21612       Set_Etype          (Implicit_Base,                 Base_Typ);
21613       Set_Size_Info      (Implicit_Base,                 Base_Typ);
21614       Set_RM_Size        (Implicit_Base, RM_Size        (Base_Typ));
21615       Set_First_Rep_Item (Implicit_Base, First_Rep_Item (Base_Typ));
21616       Set_Scalar_Range   (Implicit_Base, Scalar_Range   (Base_Typ));
21617
21618       Set_Ekind              (T, E_Signed_Integer_Subtype);
21619       Set_Etype              (T, Implicit_Base);
21620       Set_Size_Info          (T, Implicit_Base);
21621       Inherit_Rep_Item_Chain (T, Implicit_Base);
21622       Set_Scalar_Range       (T, Def);
21623       Set_RM_Size            (T, UI_From_Int (Minimum_Size (T)));
21624       Set_Is_Constrained     (T);
21625    end Signed_Integer_Type_Declaration;
21626
21627 end Sem_Ch3;