76d60a426401cc3f19118024a9c13538d2f0b75a
[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-2010, 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 Debug; use Debug;
30 with Elists; use Elists;
31 with Einfo; use Einfo;
32 with Errout; use Errout;
33 with Eval_Fat; use Eval_Fat;
34 with Exp_Ch3; use Exp_Ch3;
35 with Exp_Ch9; use Exp_Ch9;
36 with Exp_Disp; use Exp_Disp;
37 with Exp_Dist; use Exp_Dist;
38 with Exp_Tss; use Exp_Tss;
39 with Exp_Util; use Exp_Util;
40 with Fname; use Fname;
41 with Freeze; use Freeze;
42 with Itypes; use Itypes;
43 with Layout; use Layout;
44 with Lib; use Lib;
45 with Lib.Xref; use Lib.Xref;
46 with Namet; use Namet;
47 with Nmake; use Nmake;
48 with Opt; use Opt;
49 with Restrict; use Restrict;
50 with Rident; use Rident;
51 with Rtsfind; use Rtsfind;
52 with Sem; use Sem;
53 with Sem_Aux; use Sem_Aux;
54 with Sem_Case; use Sem_Case;
55 with Sem_Cat; use Sem_Cat;
56 with Sem_Ch6; use Sem_Ch6;
57 with Sem_Ch7; use Sem_Ch7;
58 with Sem_Ch8; use Sem_Ch8;
59 with Sem_Ch13; use Sem_Ch13;
60 with Sem_Disp; use Sem_Disp;
61 with Sem_Dist; use Sem_Dist;
62 with Sem_Elim; use Sem_Elim;
63 with Sem_Eval; use Sem_Eval;
64 with Sem_Mech; use Sem_Mech;
65 with Sem_Prag; use Sem_Prag;
66 with Sem_Res; use Sem_Res;
67 with Sem_Smem; use Sem_Smem;
68 with Sem_Type; use Sem_Type;
69 with Sem_Util; use Sem_Util;
70 with Sem_Warn; use Sem_Warn;
71 with Stand; use Stand;
72 with Sinfo; use Sinfo;
73 with Sinput; use Sinput;
74 with Snames; use Snames;
75 with Targparm; use Targparm;
76 with Tbuild; use Tbuild;
77 with Ttypes; use Ttypes;
78 with Uintp; use Uintp;
79 with Urealp; use Urealp;
80
81 package body Sem_Ch3 is
82
83 -----------------------
84 -- Local Subprograms --
85 -----------------------
86
87 procedure Add_Interface_Tag_Components (N : Node_Id; Typ : Entity_Id);
88 -- Ada 2005 (AI-251): Add the tag components corresponding to all the
89 -- abstract interface types implemented by a record type or a derived
90 -- record type.
91
92 procedure Build_Derived_Type
93 (N : Node_Id;
94 Parent_Type : Entity_Id;
95 Derived_Type : Entity_Id;
96 Is_Completion : Boolean;
97 Derive_Subps : Boolean := True);
98 -- Create and decorate a Derived_Type given the Parent_Type entity. N is
99 -- the N_Full_Type_Declaration node containing the derived type definition.
100 -- Parent_Type is the entity for the parent type in the derived type
101 -- definition and Derived_Type the actual derived type. Is_Completion must
102 -- be set to False if Derived_Type is the N_Defining_Identifier node in N
103 -- (i.e. Derived_Type = Defining_Identifier (N)). In this case N is not the
104 -- completion of a private type declaration. If Is_Completion is set to
105 -- True, N is the completion of a private type declaration and Derived_Type
106 -- is different from the defining identifier inside N (i.e. Derived_Type /=
107 -- Defining_Identifier (N)). Derive_Subps indicates whether the parent
108 -- subprograms should be derived. The only case where this parameter is
109 -- False is when Build_Derived_Type is recursively called to process an
110 -- implicit derived full type for a type derived from a private type (in
111 -- that case the subprograms must only be derived for the private view of
112 -- the type).
113 --
114 -- ??? These flags need a bit of re-examination and re-documentation:
115 -- ??? are they both necessary (both seem related to the recursion)?
116
117 procedure Build_Derived_Access_Type
118 (N : Node_Id;
119 Parent_Type : Entity_Id;
120 Derived_Type : Entity_Id);
121 -- Subsidiary procedure to Build_Derived_Type. For a derived access type,
122 -- create an implicit base if the parent type is constrained or if the
123 -- subtype indication has a constraint.
124
125 procedure Build_Derived_Array_Type
126 (N : Node_Id;
127 Parent_Type : Entity_Id;
128 Derived_Type : Entity_Id);
129 -- Subsidiary procedure to Build_Derived_Type. For a derived array type,
130 -- create an implicit base if the parent type is constrained or if the
131 -- subtype indication has a constraint.
132
133 procedure Build_Derived_Concurrent_Type
134 (N : Node_Id;
135 Parent_Type : Entity_Id;
136 Derived_Type : Entity_Id);
137 -- Subsidiary procedure to Build_Derived_Type. For a derived task or
138 -- protected type, inherit entries and protected subprograms, check
139 -- legality of discriminant constraints if any.
140
141 procedure Build_Derived_Enumeration_Type
142 (N : Node_Id;
143 Parent_Type : Entity_Id;
144 Derived_Type : Entity_Id);
145 -- Subsidiary procedure to Build_Derived_Type. For a derived enumeration
146 -- type, we must create a new list of literals. Types derived from
147 -- Character and [Wide_]Wide_Character are special-cased.
148
149 procedure Build_Derived_Numeric_Type
150 (N : Node_Id;
151 Parent_Type : Entity_Id;
152 Derived_Type : Entity_Id);
153 -- Subsidiary procedure to Build_Derived_Type. For numeric types, create
154 -- an anonymous base type, and propagate constraint to subtype if needed.
155
156 procedure Build_Derived_Private_Type
157 (N : Node_Id;
158 Parent_Type : Entity_Id;
159 Derived_Type : Entity_Id;
160 Is_Completion : Boolean;
161 Derive_Subps : Boolean := True);
162 -- Subsidiary procedure to Build_Derived_Type. This procedure is complex
163 -- because the parent may or may not have a completion, and the derivation
164 -- may itself be a completion.
165
166 procedure Build_Derived_Record_Type
167 (N : Node_Id;
168 Parent_Type : Entity_Id;
169 Derived_Type : Entity_Id;
170 Derive_Subps : Boolean := True);
171 -- Subsidiary procedure for Build_Derived_Type and
172 -- Analyze_Private_Extension_Declaration used for tagged and untagged
173 -- record types. All parameters are as in Build_Derived_Type except that
174 -- N, in addition to being an N_Full_Type_Declaration node, can also be an
175 -- N_Private_Extension_Declaration node. See the definition of this routine
176 -- for much more info. Derive_Subps indicates whether subprograms should
177 -- be derived from the parent type. The only case where Derive_Subps is
178 -- False is for an implicit derived full type for a type derived from a
179 -- private type (see Build_Derived_Type).
180
181 procedure Build_Discriminal (Discrim : Entity_Id);
182 -- Create the discriminal corresponding to discriminant Discrim, that is
183 -- the parameter corresponding to Discrim to be used in initialization
184 -- procedures for the type where Discrim is a discriminant. Discriminals
185 -- are not used during semantic analysis, and are not fully defined
186 -- entities until expansion. Thus they are not given a scope until
187 -- initialization procedures are built.
188
189 function Build_Discriminant_Constraints
190 (T : Entity_Id;
191 Def : Node_Id;
192 Derived_Def : Boolean := False) return Elist_Id;
193 -- Validate discriminant constraints and return the list of the constraints
194 -- in order of discriminant declarations, where T is the discriminated
195 -- unconstrained type. Def is the N_Subtype_Indication node where the
196 -- discriminants constraints for T are specified. Derived_Def is True
197 -- when building the discriminant constraints in a derived type definition
198 -- of the form "type D (...) is new T (xxx)". In this case T is the parent
199 -- type and Def is the constraint "(xxx)" on T and this routine sets the
200 -- Corresponding_Discriminant field of the discriminants in the derived
201 -- type D to point to the corresponding discriminants in the parent type T.
202
203 procedure Build_Discriminated_Subtype
204 (T : Entity_Id;
205 Def_Id : Entity_Id;
206 Elist : Elist_Id;
207 Related_Nod : Node_Id;
208 For_Access : Boolean := False);
209 -- Subsidiary procedure to Constrain_Discriminated_Type and to
210 -- Process_Incomplete_Dependents. Given
211 --
212 -- T (a possibly discriminated base type)
213 -- Def_Id (a very partially built subtype for T),
214 --
215 -- the call completes Def_Id to be the appropriate E_*_Subtype.
216 --
217 -- The Elist is the list of discriminant constraints if any (it is set
218 -- to No_Elist if T is not a discriminated type, and to an empty list if
219 -- T has discriminants but there are no discriminant constraints). The
220 -- Related_Nod is the same as Decl_Node in Create_Constrained_Components.
221 -- The For_Access says whether or not this subtype is really constraining
222 -- an access type. That is its sole purpose is the designated type of an
223 -- access type -- in which case a Private_Subtype Is_For_Access_Subtype
224 -- is built to avoid freezing T when the access subtype is frozen.
225
226 function Build_Scalar_Bound
227 (Bound : Node_Id;
228 Par_T : Entity_Id;
229 Der_T : Entity_Id) return Node_Id;
230 -- The bounds of a derived scalar type are conversions of the bounds of
231 -- the parent type. Optimize the representation if the bounds are literals.
232 -- Needs a more complete spec--what are the parameters exactly, and what
233 -- exactly is the returned value, and how is Bound affected???
234
235 procedure Build_Underlying_Full_View
236 (N : Node_Id;
237 Typ : Entity_Id;
238 Par : Entity_Id);
239 -- If the completion of a private type is itself derived from a private
240 -- type, or if the full view of a private subtype is itself private, the
241 -- back-end has no way to compute the actual size of this type. We build
242 -- an internal subtype declaration of the proper parent type to convey
243 -- this information. This extra mechanism is needed because a full
244 -- view cannot itself have a full view (it would get clobbered during
245 -- view exchanges).
246
247 procedure Check_Access_Discriminant_Requires_Limited
248 (D : Node_Id;
249 Loc : Node_Id);
250 -- Check the restriction that the type to which an access discriminant
251 -- belongs must be a concurrent type or a descendant of a type with
252 -- the reserved word 'limited' in its declaration.
253
254 procedure Check_Anonymous_Access_Components
255 (Typ_Decl : Node_Id;
256 Typ : Entity_Id;
257 Prev : Entity_Id;
258 Comp_List : Node_Id);
259 -- Ada 2005 AI-382: an access component in a record definition can refer to
260 -- the enclosing record, in which case it denotes the type itself, and not
261 -- the current instance of the type. We create an anonymous access type for
262 -- the component, and flag it as an access to a component, so accessibility
263 -- checks are properly performed on it. The declaration of the access type
264 -- is placed ahead of that of the record to prevent order-of-elaboration
265 -- circularity issues in Gigi. We create an incomplete type for the record
266 -- declaration, which is the designated type of the anonymous access.
267
268 procedure Check_Delta_Expression (E : Node_Id);
269 -- Check that the expression represented by E is suitable for use as a
270 -- delta expression, i.e. it is of real type and is static.
271
272 procedure Check_Digits_Expression (E : Node_Id);
273 -- Check that the expression represented by E is suitable for use as a
274 -- digits expression, i.e. it is of integer type, positive and static.
275
276 procedure Check_Initialization (T : Entity_Id; Exp : Node_Id);
277 -- Validate the initialization of an object declaration. T is the required
278 -- type, and Exp is the initialization expression.
279
280 procedure Check_Interfaces (N : Node_Id; Def : Node_Id);
281 -- Check ARM rules 3.9.4 (15/2), 9.1 (9.d/2) and 9.4 (11.d/2)
282
283 procedure Check_Or_Process_Discriminants
284 (N : Node_Id;
285 T : Entity_Id;
286 Prev : Entity_Id := Empty);
287 -- If N is the full declaration of the completion T of an incomplete or
288 -- private type, check its discriminants (which are already known to be
289 -- conformant with those of the partial view, see Find_Type_Name),
290 -- otherwise process them. Prev is the entity of the partial declaration,
291 -- if any.
292
293 procedure Check_Real_Bound (Bound : Node_Id);
294 -- Check given bound for being of real type and static. If not, post an
295 -- appropriate message, and rewrite the bound with the real literal zero.
296
297 procedure Constant_Redeclaration
298 (Id : Entity_Id;
299 N : Node_Id;
300 T : out Entity_Id);
301 -- Various checks on legality of full declaration of deferred constant.
302 -- Id is the entity for the redeclaration, N is the N_Object_Declaration,
303 -- node. The caller has not yet set any attributes of this entity.
304
305 function Contain_Interface
306 (Iface : Entity_Id;
307 Ifaces : Elist_Id) return Boolean;
308 -- Ada 2005: Determine whether Iface is present in the list Ifaces
309
310 procedure Convert_Scalar_Bounds
311 (N : Node_Id;
312 Parent_Type : Entity_Id;
313 Derived_Type : Entity_Id;
314 Loc : Source_Ptr);
315 -- For derived scalar types, convert the bounds in the type definition to
316 -- the derived type, and complete their analysis. Given a constraint of the
317 -- form ".. new T range Lo .. Hi", Lo and Hi are analyzed and resolved with
318 -- T'Base, the parent_type. The bounds of the derived type (the anonymous
319 -- base) are copies of Lo and Hi. Finally, the bounds of the derived
320 -- subtype are conversions of those bounds to the derived_type, so that
321 -- their typing is consistent.
322
323 procedure Copy_Array_Base_Type_Attributes (T1, T2 : Entity_Id);
324 -- Copies attributes from array base type T2 to array base type T1. Copies
325 -- only attributes that apply to base types, but not subtypes.
326
327 procedure Copy_Array_Subtype_Attributes (T1, T2 : Entity_Id);
328 -- Copies attributes from array subtype T2 to array subtype T1. Copies
329 -- attributes that apply to both subtypes and base types.
330
331 procedure Create_Constrained_Components
332 (Subt : Entity_Id;
333 Decl_Node : Node_Id;
334 Typ : Entity_Id;
335 Constraints : Elist_Id);
336 -- Build the list of entities for a constrained discriminated record
337 -- subtype. If a component depends on a discriminant, replace its subtype
338 -- using the discriminant values in the discriminant constraint. Subt
339 -- is the defining identifier for the subtype whose list of constrained
340 -- entities we will create. Decl_Node is the type declaration node where
341 -- we will attach all the itypes created. Typ is the base discriminated
342 -- type for the subtype Subt. Constraints is the list of discriminant
343 -- constraints for Typ.
344
345 function Constrain_Component_Type
346 (Comp : Entity_Id;
347 Constrained_Typ : Entity_Id;
348 Related_Node : Node_Id;
349 Typ : Entity_Id;
350 Constraints : Elist_Id) return Entity_Id;
351 -- Given a discriminated base type Typ, a list of discriminant constraint
352 -- Constraints for Typ and a component of Typ, with type Compon_Type,
353 -- create and return the type corresponding to Compon_type where all
354 -- discriminant references are replaced with the corresponding constraint.
355 -- If no discriminant references occur in Compon_Typ then return it as is.
356 -- Constrained_Typ is the final constrained subtype to which the
357 -- constrained Compon_Type belongs. Related_Node is the node where we will
358 -- attach all the itypes created.
359 --
360 -- Above description is confused, what is Compon_Type???
361
362 procedure Constrain_Access
363 (Def_Id : in out Entity_Id;
364 S : Node_Id;
365 Related_Nod : Node_Id);
366 -- Apply a list of constraints to an access type. If Def_Id is empty, it is
367 -- an anonymous type created for a subtype indication. In that case it is
368 -- created in the procedure and attached to Related_Nod.
369
370 procedure Constrain_Array
371 (Def_Id : in out Entity_Id;
372 SI : Node_Id;
373 Related_Nod : Node_Id;
374 Related_Id : Entity_Id;
375 Suffix : Character);
376 -- Apply a list of index constraints to an unconstrained array type. The
377 -- first parameter is the entity for the resulting subtype. A value of
378 -- Empty for Def_Id indicates that an implicit type must be created, but
379 -- creation is delayed (and must be done by this procedure) because other
380 -- subsidiary implicit types must be created first (which is why Def_Id
381 -- is an in/out parameter). The second parameter is a subtype indication
382 -- node for the constrained array to be created (e.g. something of the
383 -- form string (1 .. 10)). Related_Nod gives the place where this type
384 -- has to be inserted in the tree. The Related_Id and Suffix parameters
385 -- are used to build the associated Implicit type name.
386
387 procedure Constrain_Concurrent
388 (Def_Id : in out Entity_Id;
389 SI : Node_Id;
390 Related_Nod : Node_Id;
391 Related_Id : Entity_Id;
392 Suffix : Character);
393 -- Apply list of discriminant constraints to an unconstrained concurrent
394 -- type.
395 --
396 -- SI is the N_Subtype_Indication node containing the constraint and
397 -- the unconstrained type to constrain.
398 --
399 -- Def_Id is the entity for the resulting constrained subtype. A value
400 -- of Empty for Def_Id indicates that an implicit type must be created,
401 -- but creation is delayed (and must be done by this procedure) because
402 -- other subsidiary implicit types must be created first (which is why
403 -- Def_Id is an in/out parameter).
404 --
405 -- Related_Nod gives the place where this type has to be inserted
406 -- in the tree
407 --
408 -- The last two arguments are used to create its external name if needed.
409
410 function Constrain_Corresponding_Record
411 (Prot_Subt : Entity_Id;
412 Corr_Rec : Entity_Id;
413 Related_Nod : Node_Id;
414 Related_Id : Entity_Id) return Entity_Id;
415 -- When constraining a protected type or task type with discriminants,
416 -- constrain the corresponding record with the same discriminant values.
417
418 procedure Constrain_Decimal (Def_Id : Node_Id; S : Node_Id);
419 -- Constrain a decimal fixed point type with a digits constraint and/or a
420 -- range constraint, and build E_Decimal_Fixed_Point_Subtype entity.
421
422 procedure Constrain_Discriminated_Type
423 (Def_Id : Entity_Id;
424 S : Node_Id;
425 Related_Nod : Node_Id;
426 For_Access : Boolean := False);
427 -- Process discriminant constraints of composite type. Verify that values
428 -- have been provided for all discriminants, that the original type is
429 -- unconstrained, and that the types of the supplied expressions match
430 -- the discriminant types. The first three parameters are like in routine
431 -- Constrain_Concurrent. See Build_Discriminated_Subtype for an explanation
432 -- of For_Access.
433
434 procedure Constrain_Enumeration (Def_Id : Node_Id; S : Node_Id);
435 -- Constrain an enumeration type with a range constraint. This is identical
436 -- to Constrain_Integer, but for the Ekind of the resulting subtype.
437
438 procedure Constrain_Float (Def_Id : Node_Id; S : Node_Id);
439 -- Constrain a floating point type with either a digits constraint
440 -- and/or a range constraint, building a E_Floating_Point_Subtype.
441
442 procedure Constrain_Index
443 (Index : Node_Id;
444 S : Node_Id;
445 Related_Nod : Node_Id;
446 Related_Id : Entity_Id;
447 Suffix : Character;
448 Suffix_Index : Nat);
449 -- Process an index constraint S in a constrained array declaration. The
450 -- constraint can be a subtype name, or a range with or without an explicit
451 -- subtype mark. The index is the corresponding index of the unconstrained
452 -- array. The Related_Id and Suffix parameters are used to build the
453 -- associated Implicit type name.
454
455 procedure Constrain_Integer (Def_Id : Node_Id; S : Node_Id);
456 -- Build subtype of a signed or modular integer type
457
458 procedure Constrain_Ordinary_Fixed (Def_Id : Node_Id; S : Node_Id);
459 -- Constrain an ordinary fixed point type with a range constraint, and
460 -- build an E_Ordinary_Fixed_Point_Subtype entity.
461
462 procedure Copy_And_Swap (Priv, Full : Entity_Id);
463 -- Copy the Priv entity into the entity of its full declaration then swap
464 -- the two entities in such a manner that the former private type is now
465 -- seen as a full type.
466
467 procedure Decimal_Fixed_Point_Type_Declaration
468 (T : Entity_Id;
469 Def : Node_Id);
470 -- Create a new decimal fixed point type, and apply the constraint to
471 -- obtain a subtype of this new type.
472
473 procedure Complete_Private_Subtype
474 (Priv : Entity_Id;
475 Full : Entity_Id;
476 Full_Base : Entity_Id;
477 Related_Nod : Node_Id);
478 -- Complete the implicit full view of a private subtype by setting the
479 -- appropriate semantic fields. If the full view of the parent is a record
480 -- type, build constrained components of subtype.
481
482 procedure Derive_Progenitor_Subprograms
483 (Parent_Type : Entity_Id;
484 Tagged_Type : Entity_Id);
485 -- Ada 2005 (AI-251): To complete type derivation, collect the primitive
486 -- operations of progenitors of Tagged_Type, and replace the subsidiary
487 -- subtypes with Tagged_Type, to build the specs of the inherited interface
488 -- primitives. The derived primitives are aliased to those of the
489 -- interface. This routine takes care also of transferring to the full view
490 -- subprograms associated with the partial view of Tagged_Type that cover
491 -- interface primitives.
492
493 procedure Derived_Standard_Character
494 (N : Node_Id;
495 Parent_Type : Entity_Id;
496 Derived_Type : Entity_Id);
497 -- Subsidiary procedure to Build_Derived_Enumeration_Type which handles
498 -- derivations from types Standard.Character and Standard.Wide_Character.
499
500 procedure Derived_Type_Declaration
501 (T : Entity_Id;
502 N : Node_Id;
503 Is_Completion : Boolean);
504 -- Process a derived type declaration. Build_Derived_Type is invoked
505 -- to process the actual derived type definition. Parameters N and
506 -- Is_Completion have the same meaning as in Build_Derived_Type.
507 -- T is the N_Defining_Identifier for the entity defined in the
508 -- N_Full_Type_Declaration node N, that is T is the derived type.
509
510 procedure Enumeration_Type_Declaration (T : Entity_Id; Def : Node_Id);
511 -- Insert each literal in symbol table, as an overloadable identifier. Each
512 -- enumeration type is mapped into a sequence of integers, and each literal
513 -- is defined as a constant with integer value. If any of the literals are
514 -- character literals, the type is a character type, which means that
515 -- strings are legal aggregates for arrays of components of the type.
516
517 function Expand_To_Stored_Constraint
518 (Typ : Entity_Id;
519 Constraint : Elist_Id) return Elist_Id;
520 -- Given a constraint (i.e. a list of expressions) on the discriminants of
521 -- Typ, expand it into a constraint on the stored discriminants and return
522 -- the new list of expressions constraining the stored discriminants.
523
524 function Find_Type_Of_Object
525 (Obj_Def : Node_Id;
526 Related_Nod : Node_Id) return Entity_Id;
527 -- Get type entity for object referenced by Obj_Def, attaching the
528 -- implicit types generated to Related_Nod
529
530 procedure Floating_Point_Type_Declaration (T : Entity_Id; Def : Node_Id);
531 -- Create a new float and apply the constraint to obtain subtype of it
532
533 function Has_Range_Constraint (N : Node_Id) return Boolean;
534 -- Given an N_Subtype_Indication node N, return True if a range constraint
535 -- is present, either directly, or as part of a digits or delta constraint.
536 -- In addition, a digits constraint in the decimal case returns True, since
537 -- it establishes a default range if no explicit range is present.
538
539 function Inherit_Components
540 (N : Node_Id;
541 Parent_Base : Entity_Id;
542 Derived_Base : Entity_Id;
543 Is_Tagged : Boolean;
544 Inherit_Discr : Boolean;
545 Discs : Elist_Id) return Elist_Id;
546 -- Called from Build_Derived_Record_Type to inherit the components of
547 -- Parent_Base (a base type) into the Derived_Base (the derived base type).
548 -- For more information on derived types and component inheritance please
549 -- consult the comment above the body of Build_Derived_Record_Type.
550 --
551 -- N is the original derived type declaration
552 --
553 -- Is_Tagged is set if we are dealing with tagged types
554 --
555 -- If Inherit_Discr is set, Derived_Base inherits its discriminants from
556 -- Parent_Base, otherwise no discriminants are inherited.
557 --
558 -- Discs gives the list of constraints that apply to Parent_Base in the
559 -- derived type declaration. If Discs is set to No_Elist, then we have
560 -- the following situation:
561 --
562 -- type Parent (D1..Dn : ..) is [tagged] record ...;
563 -- type Derived is new Parent [with ...];
564 --
565 -- which gets treated as
566 --
567 -- type Derived (D1..Dn : ..) is new Parent (D1,..,Dn) [with ...];
568 --
569 -- For untagged types the returned value is an association list. The list
570 -- starts from the association (Parent_Base => Derived_Base), and then it
571 -- contains a sequence of the associations of the form
572 --
573 -- (Old_Component => New_Component),
574 --
575 -- where Old_Component is the Entity_Id of a component in Parent_Base and
576 -- New_Component is the Entity_Id of the corresponding component in
577 -- Derived_Base. For untagged records, this association list is needed when
578 -- copying the record declaration for the derived base. In the tagged case
579 -- the value returned is irrelevant.
580
581 function Is_Valid_Constraint_Kind
582 (T_Kind : Type_Kind;
583 Constraint_Kind : Node_Kind) return Boolean;
584 -- Returns True if it is legal to apply the given kind of constraint to the
585 -- given kind of type (index constraint to an array type, for example).
586
587 procedure Modular_Type_Declaration (T : Entity_Id; Def : Node_Id);
588 -- Create new modular type. Verify that modulus is in bounds and is
589 -- a power of two (implementation restriction).
590
591 procedure New_Concatenation_Op (Typ : Entity_Id);
592 -- Create an abbreviated declaration for an operator in order to
593 -- materialize concatenation on array types.
594
595 procedure Ordinary_Fixed_Point_Type_Declaration
596 (T : Entity_Id;
597 Def : Node_Id);
598 -- Create a new ordinary fixed point type, and apply the constraint to
599 -- obtain subtype of it.
600
601 procedure Prepare_Private_Subtype_Completion
602 (Id : Entity_Id;
603 Related_Nod : Node_Id);
604 -- Id is a subtype of some private type. Creates the full declaration
605 -- associated with Id whenever possible, i.e. when the full declaration
606 -- of the base type is already known. Records each subtype into
607 -- Private_Dependents of the base type.
608
609 procedure Process_Incomplete_Dependents
610 (N : Node_Id;
611 Full_T : Entity_Id;
612 Inc_T : Entity_Id);
613 -- Process all entities that depend on an incomplete type. There include
614 -- subtypes, subprogram types that mention the incomplete type in their
615 -- profiles, and subprogram with access parameters that designate the
616 -- incomplete type.
617
618 -- Inc_T is the defining identifier of an incomplete type declaration, its
619 -- Ekind is E_Incomplete_Type.
620 --
621 -- N is the corresponding N_Full_Type_Declaration for Inc_T.
622 --
623 -- Full_T is N's defining identifier.
624 --
625 -- Subtypes of incomplete types with discriminants are completed when the
626 -- parent type is. This is simpler than private subtypes, because they can
627 -- only appear in the same scope, and there is no need to exchange views.
628 -- Similarly, access_to_subprogram types may have a parameter or a return
629 -- type that is an incomplete type, and that must be replaced with the
630 -- full type.
631 --
632 -- If the full type is tagged, subprogram with access parameters that
633 -- designated the incomplete may be primitive operations of the full type,
634 -- and have to be processed accordingly.
635
636 procedure Process_Real_Range_Specification (Def : Node_Id);
637 -- Given the type definition for a real type, this procedure processes and
638 -- checks the real range specification of this type definition if one is
639 -- present. If errors are found, error messages are posted, and the
640 -- Real_Range_Specification of Def is reset to Empty.
641
642 procedure Record_Type_Declaration
643 (T : Entity_Id;
644 N : Node_Id;
645 Prev : Entity_Id);
646 -- Process a record type declaration (for both untagged and tagged
647 -- records). Parameters T and N are exactly like in procedure
648 -- Derived_Type_Declaration, except that no flag Is_Completion is needed
649 -- for this routine. If this is the completion of an incomplete type
650 -- declaration, Prev is the entity of the incomplete declaration, used for
651 -- cross-referencing. Otherwise Prev = T.
652
653 procedure Record_Type_Definition (Def : Node_Id; Prev_T : Entity_Id);
654 -- This routine is used to process the actual record type definition (both
655 -- for untagged and tagged records). Def is a record type definition node.
656 -- This procedure analyzes the components in this record type definition.
657 -- Prev_T is the entity for the enclosing record type. It is provided so
658 -- that its Has_Task flag can be set if any of the component have Has_Task
659 -- set. If the declaration is the completion of an incomplete type
660 -- declaration, Prev_T is the original incomplete type, whose full view is
661 -- the record type.
662
663 procedure Replace_Components (Typ : Entity_Id; Decl : Node_Id);
664 -- Subsidiary to Build_Derived_Record_Type. For untagged records, we
665 -- build a copy of the declaration tree of the parent, and we create
666 -- independently the list of components for the derived type. Semantic
667 -- information uses the component entities, but record representation
668 -- clauses are validated on the declaration tree. This procedure replaces
669 -- discriminants and components in the declaration with those that have
670 -- been created by Inherit_Components.
671
672 procedure Set_Fixed_Range
673 (E : Entity_Id;
674 Loc : Source_Ptr;
675 Lo : Ureal;
676 Hi : Ureal);
677 -- Build a range node with the given bounds and set it as the Scalar_Range
678 -- of the given fixed-point type entity. Loc is the source location used
679 -- for the constructed range. See body for further details.
680
681 procedure Set_Scalar_Range_For_Subtype
682 (Def_Id : Entity_Id;
683 R : Node_Id;
684 Subt : Entity_Id);
685 -- This routine is used to set the scalar range field for a subtype given
686 -- Def_Id, the entity for the subtype, and R, the range expression for the
687 -- scalar range. Subt provides the parent subtype to be used to analyze,
688 -- resolve, and check the given range.
689
690 procedure Signed_Integer_Type_Declaration (T : Entity_Id; Def : Node_Id);
691 -- Create a new signed integer entity, and apply the constraint to obtain
692 -- the required first named subtype of this type.
693
694 procedure Set_Stored_Constraint_From_Discriminant_Constraint
695 (E : Entity_Id);
696 -- E is some record type. This routine computes E's Stored_Constraint
697 -- from its Discriminant_Constraint.
698
699 procedure Diagnose_Interface (N : Node_Id; E : Entity_Id);
700 -- Check that an entity in a list of progenitors is an interface,
701 -- emit error otherwise.
702
703 -----------------------
704 -- Access_Definition --
705 -----------------------
706
707 function Access_Definition
708 (Related_Nod : Node_Id;
709 N : Node_Id) return Entity_Id
710 is
711 Loc : constant Source_Ptr := Sloc (Related_Nod);
712 Anon_Type : Entity_Id;
713 Anon_Scope : Entity_Id;
714 Desig_Type : Entity_Id;
715 Decl : Entity_Id;
716 Enclosing_Prot_Type : Entity_Id := Empty;
717
718 begin
719 if Is_Entry (Current_Scope)
720 and then Is_Task_Type (Etype (Scope (Current_Scope)))
721 then
722 Error_Msg_N ("task entries cannot have access parameters", N);
723 return Empty;
724 end if;
725
726 -- Ada 2005: for an object declaration the corresponding anonymous
727 -- type is declared in the current scope.
728
729 -- If the access definition is the return type of another access to
730 -- function, scope is the current one, because it is the one of the
731 -- current type declaration.
732
733 if Nkind_In (Related_Nod, N_Object_Declaration,
734 N_Access_Function_Definition)
735 then
736 Anon_Scope := Current_Scope;
737
738 -- For the anonymous function result case, retrieve the scope of the
739 -- function specification's associated entity rather than using the
740 -- current scope. The current scope will be the function itself if the
741 -- formal part is currently being analyzed, but will be the parent scope
742 -- in the case of a parameterless function, and we always want to use
743 -- the function's parent scope. Finally, if the function is a child
744 -- unit, we must traverse the tree to retrieve the proper entity.
745
746 elsif Nkind (Related_Nod) = N_Function_Specification
747 and then Nkind (Parent (N)) /= N_Parameter_Specification
748 then
749 -- If the current scope is a protected type, the anonymous access
750 -- is associated with one of the protected operations, and must
751 -- be available in the scope that encloses the protected declaration.
752 -- Otherwise the type is in the scope enclosing the subprogram.
753
754 -- If the function has formals, The return type of a subprogram
755 -- declaration is analyzed in the scope of the subprogram (see
756 -- Process_Formals) and thus the protected type, if present, is
757 -- the scope of the current function scope.
758
759 if Ekind (Current_Scope) = E_Protected_Type then
760 Enclosing_Prot_Type := Current_Scope;
761
762 elsif Ekind (Current_Scope) = E_Function
763 and then Ekind (Scope (Current_Scope)) = E_Protected_Type
764 then
765 Enclosing_Prot_Type := Scope (Current_Scope);
766 end if;
767
768 if Present (Enclosing_Prot_Type) then
769 Anon_Scope := Scope (Enclosing_Prot_Type);
770
771 else
772 Anon_Scope := Scope (Defining_Entity (Related_Nod));
773 end if;
774
775 else
776 -- For access formals, access components, and access discriminants,
777 -- the scope is that of the enclosing declaration,
778
779 Anon_Scope := Scope (Current_Scope);
780 end if;
781
782 Anon_Type :=
783 Create_Itype
784 (E_Anonymous_Access_Type, Related_Nod, Scope_Id => Anon_Scope);
785
786 if All_Present (N)
787 and then Ada_Version >= Ada_2005
788 then
789 Error_Msg_N ("ALL is not permitted for anonymous access types", N);
790 end if;
791
792 -- Ada 2005 (AI-254): In case of anonymous access to subprograms call
793 -- the corresponding semantic routine
794
795 if Present (Access_To_Subprogram_Definition (N)) then
796 Access_Subprogram_Declaration
797 (T_Name => Anon_Type,
798 T_Def => Access_To_Subprogram_Definition (N));
799
800 if Ekind (Anon_Type) = E_Access_Protected_Subprogram_Type then
801 Set_Ekind
802 (Anon_Type, E_Anonymous_Access_Protected_Subprogram_Type);
803 else
804 Set_Ekind
805 (Anon_Type, E_Anonymous_Access_Subprogram_Type);
806 end if;
807
808 Set_Can_Use_Internal_Rep
809 (Anon_Type, not Always_Compatible_Rep_On_Target);
810
811 -- If the anonymous access is associated with a protected operation
812 -- create a reference to it after the enclosing protected definition
813 -- because the itype will be used in the subsequent bodies.
814
815 if Ekind (Current_Scope) = E_Protected_Type then
816 Build_Itype_Reference (Anon_Type, Parent (Current_Scope));
817 end if;
818
819 return Anon_Type;
820 end if;
821
822 Find_Type (Subtype_Mark (N));
823 Desig_Type := Entity (Subtype_Mark (N));
824
825 Set_Directly_Designated_Type (Anon_Type, Desig_Type);
826 Set_Etype (Anon_Type, Anon_Type);
827
828 -- Make sure the anonymous access type has size and alignment fields
829 -- set, as required by gigi. This is necessary in the case of the
830 -- Task_Body_Procedure.
831
832 if not Has_Private_Component (Desig_Type) then
833 Layout_Type (Anon_Type);
834 end if;
835
836 -- Ada 2005 (AI-231): Ada 2005 semantics for anonymous access differs
837 -- from Ada 95 semantics. In Ada 2005, anonymous access must specify if
838 -- the null value is allowed. In Ada 95 the null value is never allowed.
839
840 if Ada_Version >= Ada_2005 then
841 Set_Can_Never_Be_Null (Anon_Type, Null_Exclusion_Present (N));
842 else
843 Set_Can_Never_Be_Null (Anon_Type, True);
844 end if;
845
846 -- The anonymous access type is as public as the discriminated type or
847 -- subprogram that defines it. It is imported (for back-end purposes)
848 -- if the designated type is.
849
850 Set_Is_Public (Anon_Type, Is_Public (Scope (Anon_Type)));
851
852 -- Ada 2005 (AI-231): Propagate the access-constant attribute
853
854 Set_Is_Access_Constant (Anon_Type, Constant_Present (N));
855
856 -- The context is either a subprogram declaration, object declaration,
857 -- or an access discriminant, in a private or a full type declaration.
858 -- In the case of a subprogram, if the designated type is incomplete,
859 -- the operation will be a primitive operation of the full type, to be
860 -- updated subsequently. If the type is imported through a limited_with
861 -- clause, the subprogram is not a primitive operation of the type
862 -- (which is declared elsewhere in some other scope).
863
864 if Ekind (Desig_Type) = E_Incomplete_Type
865 and then not From_With_Type (Desig_Type)
866 and then Is_Overloadable (Current_Scope)
867 then
868 Append_Elmt (Current_Scope, Private_Dependents (Desig_Type));
869 Set_Has_Delayed_Freeze (Current_Scope);
870 end if;
871
872 -- Ada 2005: if the designated type is an interface that may contain
873 -- tasks, create a Master entity for the declaration. This must be done
874 -- before expansion of the full declaration, because the declaration may
875 -- include an expression that is an allocator, whose expansion needs the
876 -- proper Master for the created tasks.
877
878 if Nkind (Related_Nod) = N_Object_Declaration
879 and then Expander_Active
880 then
881 if Is_Interface (Desig_Type)
882 and then Is_Limited_Record (Desig_Type)
883 then
884 Build_Class_Wide_Master (Anon_Type);
885
886 -- Similarly, if the type is an anonymous access that designates
887 -- tasks, create a master entity for it in the current context.
888
889 elsif Has_Task (Desig_Type)
890 and then Comes_From_Source (Related_Nod)
891 and then not Restriction_Active (No_Task_Hierarchy)
892 then
893 if not Has_Master_Entity (Current_Scope) then
894 Decl :=
895 Make_Object_Declaration (Loc,
896 Defining_Identifier =>
897 Make_Defining_Identifier (Loc, Name_uMaster),
898 Constant_Present => True,
899 Object_Definition =>
900 New_Reference_To (RTE (RE_Master_Id), Loc),
901 Expression =>
902 Make_Explicit_Dereference (Loc,
903 New_Reference_To (RTE (RE_Current_Master), Loc)));
904
905 Insert_Before (Related_Nod, Decl);
906 Analyze (Decl);
907
908 Set_Master_Id (Anon_Type, Defining_Identifier (Decl));
909 Set_Has_Master_Entity (Current_Scope);
910 else
911 Build_Master_Renaming (Related_Nod, Anon_Type);
912 end if;
913 end if;
914 end if;
915
916 -- For a private component of a protected type, it is imperative that
917 -- the back-end elaborate the type immediately after the protected
918 -- declaration, because this type will be used in the declarations
919 -- created for the component within each protected body, so we must
920 -- create an itype reference for it now.
921
922 if Nkind (Parent (Related_Nod)) = N_Protected_Definition then
923 Build_Itype_Reference (Anon_Type, Parent (Parent (Related_Nod)));
924
925 -- Similarly, if the access definition is the return result of a
926 -- function, create an itype reference for it because it will be used
927 -- within the function body. For a regular function that is not a
928 -- compilation unit, insert reference after the declaration. For a
929 -- protected operation, insert it after the enclosing protected type
930 -- declaration. In either case, do not create a reference for a type
931 -- obtained through a limited_with clause, because this would introduce
932 -- semantic dependencies.
933
934 -- Similarly, do not create a reference if the designated type is a
935 -- generic formal, because no use of it will reach the backend.
936
937 elsif Nkind (Related_Nod) = N_Function_Specification
938 and then not From_With_Type (Desig_Type)
939 and then not Is_Generic_Type (Desig_Type)
940 then
941 if Present (Enclosing_Prot_Type) then
942 Build_Itype_Reference (Anon_Type, Parent (Enclosing_Prot_Type));
943
944 elsif Is_List_Member (Parent (Related_Nod))
945 and then Nkind (Parent (N)) /= N_Parameter_Specification
946 then
947 Build_Itype_Reference (Anon_Type, Parent (Related_Nod));
948 end if;
949
950 -- Finally, create an itype reference for an object declaration of an
951 -- anonymous access type. This is strictly necessary only for deferred
952 -- constants, but in any case will avoid out-of-scope problems in the
953 -- back-end.
954
955 elsif Nkind (Related_Nod) = N_Object_Declaration then
956 Build_Itype_Reference (Anon_Type, Related_Nod);
957 end if;
958
959 return Anon_Type;
960 end Access_Definition;
961
962 -----------------------------------
963 -- Access_Subprogram_Declaration --
964 -----------------------------------
965
966 procedure Access_Subprogram_Declaration
967 (T_Name : Entity_Id;
968 T_Def : Node_Id)
969 is
970
971 procedure Check_For_Premature_Usage (Def : Node_Id);
972 -- Check that type T_Name is not used, directly or recursively, as a
973 -- parameter or a return type in Def. Def is either a subtype, an
974 -- access_definition, or an access_to_subprogram_definition.
975
976 -------------------------------
977 -- Check_For_Premature_Usage --
978 -------------------------------
979
980 procedure Check_For_Premature_Usage (Def : Node_Id) is
981 Param : Node_Id;
982
983 begin
984 -- Check for a subtype mark
985
986 if Nkind (Def) in N_Has_Etype then
987 if Etype (Def) = T_Name then
988 Error_Msg_N
989 ("type& cannot be used before end of its declaration", Def);
990 end if;
991
992 -- If this is not a subtype, then this is an access_definition
993
994 elsif Nkind (Def) = N_Access_Definition then
995 if Present (Access_To_Subprogram_Definition (Def)) then
996 Check_For_Premature_Usage
997 (Access_To_Subprogram_Definition (Def));
998 else
999 Check_For_Premature_Usage (Subtype_Mark (Def));
1000 end if;
1001
1002 -- The only cases left are N_Access_Function_Definition and
1003 -- N_Access_Procedure_Definition.
1004
1005 else
1006 if Present (Parameter_Specifications (Def)) then
1007 Param := First (Parameter_Specifications (Def));
1008 while Present (Param) loop
1009 Check_For_Premature_Usage (Parameter_Type (Param));
1010 Param := Next (Param);
1011 end loop;
1012 end if;
1013
1014 if Nkind (Def) = N_Access_Function_Definition then
1015 Check_For_Premature_Usage (Result_Definition (Def));
1016 end if;
1017 end if;
1018 end Check_For_Premature_Usage;
1019
1020 -- Local variables
1021
1022 Formals : constant List_Id := Parameter_Specifications (T_Def);
1023 Formal : Entity_Id;
1024 D_Ityp : Node_Id;
1025 Desig_Type : constant Entity_Id :=
1026 Create_Itype (E_Subprogram_Type, Parent (T_Def));
1027
1028 -- Start of processing for Access_Subprogram_Declaration
1029
1030 begin
1031 -- Associate the Itype node with the inner full-type declaration or
1032 -- subprogram spec or entry body. This is required to handle nested
1033 -- anonymous declarations. For example:
1034
1035 -- procedure P
1036 -- (X : access procedure
1037 -- (Y : access procedure
1038 -- (Z : access T)))
1039
1040 D_Ityp := Associated_Node_For_Itype (Desig_Type);
1041 while not (Nkind_In (D_Ityp, N_Full_Type_Declaration,
1042 N_Private_Type_Declaration,
1043 N_Private_Extension_Declaration,
1044 N_Procedure_Specification,
1045 N_Function_Specification,
1046 N_Entry_Body)
1047
1048 or else
1049 Nkind_In (D_Ityp, N_Object_Declaration,
1050 N_Object_Renaming_Declaration,
1051 N_Formal_Object_Declaration,
1052 N_Formal_Type_Declaration,
1053 N_Task_Type_Declaration,
1054 N_Protected_Type_Declaration))
1055 loop
1056 D_Ityp := Parent (D_Ityp);
1057 pragma Assert (D_Ityp /= Empty);
1058 end loop;
1059
1060 Set_Associated_Node_For_Itype (Desig_Type, D_Ityp);
1061
1062 if Nkind_In (D_Ityp, N_Procedure_Specification,
1063 N_Function_Specification)
1064 then
1065 Set_Scope (Desig_Type, Scope (Defining_Entity (D_Ityp)));
1066
1067 elsif Nkind_In (D_Ityp, N_Full_Type_Declaration,
1068 N_Object_Declaration,
1069 N_Object_Renaming_Declaration,
1070 N_Formal_Type_Declaration)
1071 then
1072 Set_Scope (Desig_Type, Scope (Defining_Identifier (D_Ityp)));
1073 end if;
1074
1075 if Nkind (T_Def) = N_Access_Function_Definition then
1076 if Nkind (Result_Definition (T_Def)) = N_Access_Definition then
1077 declare
1078 Acc : constant Node_Id := Result_Definition (T_Def);
1079
1080 begin
1081 if Present (Access_To_Subprogram_Definition (Acc))
1082 and then
1083 Protected_Present (Access_To_Subprogram_Definition (Acc))
1084 then
1085 Set_Etype
1086 (Desig_Type,
1087 Replace_Anonymous_Access_To_Protected_Subprogram
1088 (T_Def));
1089
1090 else
1091 Set_Etype
1092 (Desig_Type,
1093 Access_Definition (T_Def, Result_Definition (T_Def)));
1094 end if;
1095 end;
1096
1097 else
1098 Analyze (Result_Definition (T_Def));
1099
1100 declare
1101 Typ : constant Entity_Id := Entity (Result_Definition (T_Def));
1102
1103 begin
1104 -- If a null exclusion is imposed on the result type, then
1105 -- create a null-excluding itype (an access subtype) and use
1106 -- it as the function's Etype.
1107
1108 if Is_Access_Type (Typ)
1109 and then Null_Exclusion_In_Return_Present (T_Def)
1110 then
1111 Set_Etype (Desig_Type,
1112 Create_Null_Excluding_Itype
1113 (T => Typ,
1114 Related_Nod => T_Def,
1115 Scope_Id => Current_Scope));
1116
1117 else
1118 if From_With_Type (Typ) then
1119
1120 -- AI05-151: Incomplete types are allowed in all basic
1121 -- declarations, including access to subprograms.
1122
1123 if Ada_Version >= Ada_2012 then
1124 null;
1125
1126 else
1127 Error_Msg_NE
1128 ("illegal use of incomplete type&",
1129 Result_Definition (T_Def), Typ);
1130 end if;
1131
1132 elsif Ekind (Current_Scope) = E_Package
1133 and then In_Private_Part (Current_Scope)
1134 then
1135 if Ekind (Typ) = E_Incomplete_Type then
1136 Append_Elmt (Desig_Type, Private_Dependents (Typ));
1137
1138 elsif Is_Class_Wide_Type (Typ)
1139 and then Ekind (Etype (Typ)) = E_Incomplete_Type
1140 then
1141 Append_Elmt
1142 (Desig_Type, Private_Dependents (Etype (Typ)));
1143 end if;
1144 end if;
1145
1146 Set_Etype (Desig_Type, Typ);
1147 end if;
1148 end;
1149 end if;
1150
1151 if not (Is_Type (Etype (Desig_Type))) then
1152 Error_Msg_N
1153 ("expect type in function specification",
1154 Result_Definition (T_Def));
1155 end if;
1156
1157 else
1158 Set_Etype (Desig_Type, Standard_Void_Type);
1159 end if;
1160
1161 if Present (Formals) then
1162 Push_Scope (Desig_Type);
1163
1164 -- A bit of a kludge here. These kludges will be removed when Itypes
1165 -- have proper parent pointers to their declarations???
1166
1167 -- Kludge 1) Link defining_identifier of formals. Required by
1168 -- First_Formal to provide its functionality.
1169
1170 declare
1171 F : Node_Id;
1172
1173 begin
1174 F := First (Formals);
1175 while Present (F) loop
1176 if No (Parent (Defining_Identifier (F))) then
1177 Set_Parent (Defining_Identifier (F), F);
1178 end if;
1179
1180 Next (F);
1181 end loop;
1182 end;
1183
1184 Process_Formals (Formals, Parent (T_Def));
1185
1186 -- Kludge 2) End_Scope requires that the parent pointer be set to
1187 -- something reasonable, but Itypes don't have parent pointers. So
1188 -- we set it and then unset it ???
1189
1190 Set_Parent (Desig_Type, T_Name);
1191 End_Scope;
1192 Set_Parent (Desig_Type, Empty);
1193 end if;
1194
1195 -- Check for premature usage of the type being defined
1196
1197 Check_For_Premature_Usage (T_Def);
1198
1199 -- The return type and/or any parameter type may be incomplete. Mark
1200 -- the subprogram_type as depending on the incomplete type, so that
1201 -- it can be updated when the full type declaration is seen. This
1202 -- only applies to incomplete types declared in some enclosing scope,
1203 -- not to limited views from other packages.
1204
1205 if Present (Formals) then
1206 Formal := First_Formal (Desig_Type);
1207 while Present (Formal) loop
1208 if Ekind (Formal) /= E_In_Parameter
1209 and then Nkind (T_Def) = N_Access_Function_Definition
1210 then
1211 Error_Msg_N ("functions can only have IN parameters", Formal);
1212 end if;
1213
1214 if Ekind (Etype (Formal)) = E_Incomplete_Type
1215 and then In_Open_Scopes (Scope (Etype (Formal)))
1216 then
1217 Append_Elmt (Desig_Type, Private_Dependents (Etype (Formal)));
1218 Set_Has_Delayed_Freeze (Desig_Type);
1219 end if;
1220
1221 Next_Formal (Formal);
1222 end loop;
1223 end if;
1224
1225 -- If the return type is incomplete, this is legal as long as the
1226 -- type is declared in the current scope and will be completed in
1227 -- it (rather than being part of limited view).
1228
1229 if Ekind (Etype (Desig_Type)) = E_Incomplete_Type
1230 and then not Has_Delayed_Freeze (Desig_Type)
1231 and then In_Open_Scopes (Scope (Etype (Desig_Type)))
1232 then
1233 Append_Elmt (Desig_Type, Private_Dependents (Etype (Desig_Type)));
1234 Set_Has_Delayed_Freeze (Desig_Type);
1235 end if;
1236
1237 Check_Delayed_Subprogram (Desig_Type);
1238
1239 if Protected_Present (T_Def) then
1240 Set_Ekind (T_Name, E_Access_Protected_Subprogram_Type);
1241 Set_Convention (Desig_Type, Convention_Protected);
1242 else
1243 Set_Ekind (T_Name, E_Access_Subprogram_Type);
1244 end if;
1245
1246 Set_Can_Use_Internal_Rep (T_Name, not Always_Compatible_Rep_On_Target);
1247
1248 Set_Etype (T_Name, T_Name);
1249 Init_Size_Align (T_Name);
1250 Set_Directly_Designated_Type (T_Name, Desig_Type);
1251
1252 -- Ada 2005 (AI-231): Propagate the null-excluding attribute
1253
1254 Set_Can_Never_Be_Null (T_Name, Null_Exclusion_Present (T_Def));
1255
1256 Check_Restriction (No_Access_Subprograms, T_Def);
1257 end Access_Subprogram_Declaration;
1258
1259 ----------------------------
1260 -- Access_Type_Declaration --
1261 ----------------------------
1262
1263 procedure Access_Type_Declaration (T : Entity_Id; Def : Node_Id) is
1264 S : constant Node_Id := Subtype_Indication (Def);
1265 P : constant Node_Id := Parent (Def);
1266 begin
1267 -- Check for permissible use of incomplete type
1268
1269 if Nkind (S) /= N_Subtype_Indication then
1270 Analyze (S);
1271
1272 if Ekind (Root_Type (Entity (S))) = E_Incomplete_Type then
1273 Set_Directly_Designated_Type (T, Entity (S));
1274 else
1275 Set_Directly_Designated_Type (T,
1276 Process_Subtype (S, P, T, 'P'));
1277 end if;
1278
1279 else
1280 Set_Directly_Designated_Type (T,
1281 Process_Subtype (S, P, T, 'P'));
1282 end if;
1283
1284 if All_Present (Def) or Constant_Present (Def) then
1285 Set_Ekind (T, E_General_Access_Type);
1286 else
1287 Set_Ekind (T, E_Access_Type);
1288 end if;
1289
1290 if Base_Type (Designated_Type (T)) = T then
1291 Error_Msg_N ("access type cannot designate itself", S);
1292
1293 -- In Ada 2005, the type may have a limited view through some unit
1294 -- in its own context, allowing the following circularity that cannot
1295 -- be detected earlier
1296
1297 elsif Is_Class_Wide_Type (Designated_Type (T))
1298 and then Etype (Designated_Type (T)) = T
1299 then
1300 Error_Msg_N
1301 ("access type cannot designate its own classwide type", S);
1302
1303 -- Clean up indication of tagged status to prevent cascaded errors
1304
1305 Set_Is_Tagged_Type (T, False);
1306 end if;
1307
1308 Set_Etype (T, T);
1309
1310 -- If the type has appeared already in a with_type clause, it is
1311 -- frozen and the pointer size is already set. Else, initialize.
1312
1313 if not From_With_Type (T) then
1314 Init_Size_Align (T);
1315 end if;
1316
1317 -- Note that Has_Task is always false, since the access type itself
1318 -- is not a task type. See Einfo for more description on this point.
1319 -- Exactly the same consideration applies to Has_Controlled_Component.
1320
1321 Set_Has_Task (T, False);
1322 Set_Has_Controlled_Component (T, False);
1323
1324 -- Initialize Associated_Final_Chain explicitly to Empty, to avoid
1325 -- problems where an incomplete view of this entity has been previously
1326 -- established by a limited with and an overlaid version of this field
1327 -- (Stored_Constraint) was initialized for the incomplete view.
1328
1329 Set_Associated_Final_Chain (T, Empty);
1330
1331 -- Ada 2005 (AI-231): Propagate the null-excluding and access-constant
1332 -- attributes
1333
1334 Set_Can_Never_Be_Null (T, Null_Exclusion_Present (Def));
1335 Set_Is_Access_Constant (T, Constant_Present (Def));
1336 end Access_Type_Declaration;
1337
1338 ----------------------------------
1339 -- Add_Interface_Tag_Components --
1340 ----------------------------------
1341
1342 procedure Add_Interface_Tag_Components (N : Node_Id; Typ : Entity_Id) is
1343 Loc : constant Source_Ptr := Sloc (N);
1344 L : List_Id;
1345 Last_Tag : Node_Id;
1346
1347 procedure Add_Tag (Iface : Entity_Id);
1348 -- Add tag for one of the progenitor interfaces
1349
1350 -------------
1351 -- Add_Tag --
1352 -------------
1353
1354 procedure Add_Tag (Iface : Entity_Id) is
1355 Decl : Node_Id;
1356 Def : Node_Id;
1357 Tag : Entity_Id;
1358 Offset : Entity_Id;
1359
1360 begin
1361 pragma Assert (Is_Tagged_Type (Iface)
1362 and then Is_Interface (Iface));
1363
1364 -- This is a reasonable place to propagate predicates
1365
1366 if Has_Predicates (Iface) then
1367 Set_Has_Predicates (Typ);
1368 end if;
1369
1370 Def :=
1371 Make_Component_Definition (Loc,
1372 Aliased_Present => True,
1373 Subtype_Indication =>
1374 New_Occurrence_Of (RTE (RE_Interface_Tag), Loc));
1375
1376 Tag := Make_Temporary (Loc, 'V');
1377
1378 Decl :=
1379 Make_Component_Declaration (Loc,
1380 Defining_Identifier => Tag,
1381 Component_Definition => Def);
1382
1383 Analyze_Component_Declaration (Decl);
1384
1385 Set_Analyzed (Decl);
1386 Set_Ekind (Tag, E_Component);
1387 Set_Is_Tag (Tag);
1388 Set_Is_Aliased (Tag);
1389 Set_Related_Type (Tag, Iface);
1390 Init_Component_Location (Tag);
1391
1392 pragma Assert (Is_Frozen (Iface));
1393
1394 Set_DT_Entry_Count (Tag,
1395 DT_Entry_Count (First_Entity (Iface)));
1396
1397 if No (Last_Tag) then
1398 Prepend (Decl, L);
1399 else
1400 Insert_After (Last_Tag, Decl);
1401 end if;
1402
1403 Last_Tag := Decl;
1404
1405 -- If the ancestor has discriminants we need to give special support
1406 -- to store the offset_to_top value of the secondary dispatch tables.
1407 -- For this purpose we add a supplementary component just after the
1408 -- field that contains the tag associated with each secondary DT.
1409
1410 if Typ /= Etype (Typ)
1411 and then Has_Discriminants (Etype (Typ))
1412 then
1413 Def :=
1414 Make_Component_Definition (Loc,
1415 Subtype_Indication =>
1416 New_Occurrence_Of (RTE (RE_Storage_Offset), Loc));
1417
1418 Offset := Make_Temporary (Loc, 'V');
1419
1420 Decl :=
1421 Make_Component_Declaration (Loc,
1422 Defining_Identifier => Offset,
1423 Component_Definition => Def);
1424
1425 Analyze_Component_Declaration (Decl);
1426
1427 Set_Analyzed (Decl);
1428 Set_Ekind (Offset, E_Component);
1429 Set_Is_Aliased (Offset);
1430 Set_Related_Type (Offset, Iface);
1431 Init_Component_Location (Offset);
1432 Insert_After (Last_Tag, Decl);
1433 Last_Tag := Decl;
1434 end if;
1435 end Add_Tag;
1436
1437 -- Local variables
1438
1439 Elmt : Elmt_Id;
1440 Ext : Node_Id;
1441 Comp : Node_Id;
1442
1443 -- Start of processing for Add_Interface_Tag_Components
1444
1445 begin
1446 if not RTE_Available (RE_Interface_Tag) then
1447 Error_Msg
1448 ("(Ada 2005) interface types not supported by this run-time!",
1449 Sloc (N));
1450 return;
1451 end if;
1452
1453 if Ekind (Typ) /= E_Record_Type
1454 or else (Is_Concurrent_Record_Type (Typ)
1455 and then Is_Empty_List (Abstract_Interface_List (Typ)))
1456 or else (not Is_Concurrent_Record_Type (Typ)
1457 and then No (Interfaces (Typ))
1458 and then Is_Empty_Elmt_List (Interfaces (Typ)))
1459 then
1460 return;
1461 end if;
1462
1463 -- Find the current last tag
1464
1465 if Nkind (Type_Definition (N)) = N_Derived_Type_Definition then
1466 Ext := Record_Extension_Part (Type_Definition (N));
1467 else
1468 pragma Assert (Nkind (Type_Definition (N)) = N_Record_Definition);
1469 Ext := Type_Definition (N);
1470 end if;
1471
1472 Last_Tag := Empty;
1473
1474 if not (Present (Component_List (Ext))) then
1475 Set_Null_Present (Ext, False);
1476 L := New_List;
1477 Set_Component_List (Ext,
1478 Make_Component_List (Loc,
1479 Component_Items => L,
1480 Null_Present => False));
1481 else
1482 if Nkind (Type_Definition (N)) = N_Derived_Type_Definition then
1483 L := Component_Items
1484 (Component_List
1485 (Record_Extension_Part
1486 (Type_Definition (N))));
1487 else
1488 L := Component_Items
1489 (Component_List
1490 (Type_Definition (N)));
1491 end if;
1492
1493 -- Find the last tag component
1494
1495 Comp := First (L);
1496 while Present (Comp) loop
1497 if Nkind (Comp) = N_Component_Declaration
1498 and then Is_Tag (Defining_Identifier (Comp))
1499 then
1500 Last_Tag := Comp;
1501 end if;
1502
1503 Next (Comp);
1504 end loop;
1505 end if;
1506
1507 -- At this point L references the list of components and Last_Tag
1508 -- references the current last tag (if any). Now we add the tag
1509 -- corresponding with all the interfaces that are not implemented
1510 -- by the parent.
1511
1512 if Present (Interfaces (Typ)) then
1513 Elmt := First_Elmt (Interfaces (Typ));
1514 while Present (Elmt) loop
1515 Add_Tag (Node (Elmt));
1516 Next_Elmt (Elmt);
1517 end loop;
1518 end if;
1519 end Add_Interface_Tag_Components;
1520
1521 -------------------------------------
1522 -- Add_Internal_Interface_Entities --
1523 -------------------------------------
1524
1525 procedure Add_Internal_Interface_Entities (Tagged_Type : Entity_Id) is
1526 Elmt : Elmt_Id;
1527 Iface : Entity_Id;
1528 Iface_Elmt : Elmt_Id;
1529 Iface_Prim : Entity_Id;
1530 Ifaces_List : Elist_Id;
1531 New_Subp : Entity_Id := Empty;
1532 Prim : Entity_Id;
1533 Restore_Scope : Boolean := False;
1534
1535 begin
1536 pragma Assert (Ada_Version >= Ada_2005
1537 and then Is_Record_Type (Tagged_Type)
1538 and then Is_Tagged_Type (Tagged_Type)
1539 and then Has_Interfaces (Tagged_Type)
1540 and then not Is_Interface (Tagged_Type));
1541
1542 -- Ensure that the internal entities are added to the scope of the type
1543
1544 if Scope (Tagged_Type) /= Current_Scope then
1545 Push_Scope (Scope (Tagged_Type));
1546 Restore_Scope := True;
1547 end if;
1548
1549 Collect_Interfaces (Tagged_Type, Ifaces_List);
1550
1551 Iface_Elmt := First_Elmt (Ifaces_List);
1552 while Present (Iface_Elmt) loop
1553 Iface := Node (Iface_Elmt);
1554
1555 -- Originally we excluded here from this processing interfaces that
1556 -- are parents of Tagged_Type because their primitives are located
1557 -- in the primary dispatch table (and hence no auxiliary internal
1558 -- entities are required to handle secondary dispatch tables in such
1559 -- case). However, these auxiliary entities are also required to
1560 -- handle derivations of interfaces in formals of generics (see
1561 -- Derive_Subprograms).
1562
1563 Elmt := First_Elmt (Primitive_Operations (Iface));
1564 while Present (Elmt) loop
1565 Iface_Prim := Node (Elmt);
1566
1567 if not Is_Predefined_Dispatching_Operation (Iface_Prim) then
1568 Prim :=
1569 Find_Primitive_Covering_Interface
1570 (Tagged_Type => Tagged_Type,
1571 Iface_Prim => Iface_Prim);
1572
1573 pragma Assert (Present (Prim));
1574
1575 Derive_Subprogram
1576 (New_Subp => New_Subp,
1577 Parent_Subp => Iface_Prim,
1578 Derived_Type => Tagged_Type,
1579 Parent_Type => Iface);
1580
1581 -- Ada 2005 (AI-251): Decorate internal entity Iface_Subp
1582 -- associated with interface types. These entities are
1583 -- only registered in the list of primitives of its
1584 -- corresponding tagged type because they are only used
1585 -- to fill the contents of the secondary dispatch tables.
1586 -- Therefore they are removed from the homonym chains.
1587
1588 Set_Is_Hidden (New_Subp);
1589 Set_Is_Internal (New_Subp);
1590 Set_Alias (New_Subp, Prim);
1591 Set_Is_Abstract_Subprogram
1592 (New_Subp, Is_Abstract_Subprogram (Prim));
1593 Set_Interface_Alias (New_Subp, Iface_Prim);
1594
1595 -- Internal entities associated with interface types are
1596 -- only registered in the list of primitives of the tagged
1597 -- type. They are only used to fill the contents of the
1598 -- secondary dispatch tables. Therefore they are not needed
1599 -- in the homonym chains.
1600
1601 Remove_Homonym (New_Subp);
1602
1603 -- Hidden entities associated with interfaces must have set
1604 -- the Has_Delay_Freeze attribute to ensure that, in case of
1605 -- locally defined tagged types (or compiling with static
1606 -- dispatch tables generation disabled) the corresponding
1607 -- entry of the secondary dispatch table is filled when
1608 -- such an entity is frozen.
1609
1610 Set_Has_Delayed_Freeze (New_Subp);
1611 end if;
1612
1613 Next_Elmt (Elmt);
1614 end loop;
1615
1616 Next_Elmt (Iface_Elmt);
1617 end loop;
1618
1619 if Restore_Scope then
1620 Pop_Scope;
1621 end if;
1622 end Add_Internal_Interface_Entities;
1623
1624 -----------------------------------
1625 -- Analyze_Component_Declaration --
1626 -----------------------------------
1627
1628 procedure Analyze_Component_Declaration (N : Node_Id) is
1629 Id : constant Entity_Id := Defining_Identifier (N);
1630 E : constant Node_Id := Expression (N);
1631 T : Entity_Id;
1632 P : Entity_Id;
1633
1634 function Contains_POC (Constr : Node_Id) return Boolean;
1635 -- Determines whether a constraint uses the discriminant of a record
1636 -- type thus becoming a per-object constraint (POC).
1637
1638 function Is_Known_Limited (Typ : Entity_Id) return Boolean;
1639 -- Typ is the type of the current component, check whether this type is
1640 -- a limited type. Used to validate declaration against that of
1641 -- enclosing record.
1642
1643 ------------------
1644 -- Contains_POC --
1645 ------------------
1646
1647 function Contains_POC (Constr : Node_Id) return Boolean is
1648 begin
1649 -- Prevent cascaded errors
1650
1651 if Error_Posted (Constr) then
1652 return False;
1653 end if;
1654
1655 case Nkind (Constr) is
1656 when N_Attribute_Reference =>
1657 return
1658 Attribute_Name (Constr) = Name_Access
1659 and then Prefix (Constr) = Scope (Entity (Prefix (Constr)));
1660
1661 when N_Discriminant_Association =>
1662 return Denotes_Discriminant (Expression (Constr));
1663
1664 when N_Identifier =>
1665 return Denotes_Discriminant (Constr);
1666
1667 when N_Index_Or_Discriminant_Constraint =>
1668 declare
1669 IDC : Node_Id;
1670
1671 begin
1672 IDC := First (Constraints (Constr));
1673 while Present (IDC) loop
1674
1675 -- One per-object constraint is sufficient
1676
1677 if Contains_POC (IDC) then
1678 return True;
1679 end if;
1680
1681 Next (IDC);
1682 end loop;
1683
1684 return False;
1685 end;
1686
1687 when N_Range =>
1688 return Denotes_Discriminant (Low_Bound (Constr))
1689 or else
1690 Denotes_Discriminant (High_Bound (Constr));
1691
1692 when N_Range_Constraint =>
1693 return Denotes_Discriminant (Range_Expression (Constr));
1694
1695 when others =>
1696 return False;
1697
1698 end case;
1699 end Contains_POC;
1700
1701 ----------------------
1702 -- Is_Known_Limited --
1703 ----------------------
1704
1705 function Is_Known_Limited (Typ : Entity_Id) return Boolean is
1706 P : constant Entity_Id := Etype (Typ);
1707 R : constant Entity_Id := Root_Type (Typ);
1708
1709 begin
1710 if Is_Limited_Record (Typ) then
1711 return True;
1712
1713 -- If the root type is limited (and not a limited interface)
1714 -- so is the current type
1715
1716 elsif Is_Limited_Record (R)
1717 and then
1718 (not Is_Interface (R)
1719 or else not Is_Limited_Interface (R))
1720 then
1721 return True;
1722
1723 -- Else the type may have a limited interface progenitor, but a
1724 -- limited record parent.
1725
1726 elsif R /= P
1727 and then Is_Limited_Record (P)
1728 then
1729 return True;
1730
1731 else
1732 return False;
1733 end if;
1734 end Is_Known_Limited;
1735
1736 -- Start of processing for Analyze_Component_Declaration
1737
1738 begin
1739 Generate_Definition (Id);
1740 Enter_Name (Id);
1741
1742 if Present (Subtype_Indication (Component_Definition (N))) then
1743 T := Find_Type_Of_Object
1744 (Subtype_Indication (Component_Definition (N)), N);
1745
1746 -- Ada 2005 (AI-230): Access Definition case
1747
1748 else
1749 pragma Assert (Present
1750 (Access_Definition (Component_Definition (N))));
1751
1752 T := Access_Definition
1753 (Related_Nod => N,
1754 N => Access_Definition (Component_Definition (N)));
1755 Set_Is_Local_Anonymous_Access (T);
1756
1757 -- Ada 2005 (AI-254)
1758
1759 if Present (Access_To_Subprogram_Definition
1760 (Access_Definition (Component_Definition (N))))
1761 and then Protected_Present (Access_To_Subprogram_Definition
1762 (Access_Definition
1763 (Component_Definition (N))))
1764 then
1765 T := Replace_Anonymous_Access_To_Protected_Subprogram (N);
1766 end if;
1767 end if;
1768
1769 -- If the subtype is a constrained subtype of the enclosing record,
1770 -- (which must have a partial view) the back-end does not properly
1771 -- handle the recursion. Rewrite the component declaration with an
1772 -- explicit subtype indication, which is acceptable to Gigi. We can copy
1773 -- the tree directly because side effects have already been removed from
1774 -- discriminant constraints.
1775
1776 if Ekind (T) = E_Access_Subtype
1777 and then Is_Entity_Name (Subtype_Indication (Component_Definition (N)))
1778 and then Comes_From_Source (T)
1779 and then Nkind (Parent (T)) = N_Subtype_Declaration
1780 and then Etype (Directly_Designated_Type (T)) = Current_Scope
1781 then
1782 Rewrite
1783 (Subtype_Indication (Component_Definition (N)),
1784 New_Copy_Tree (Subtype_Indication (Parent (T))));
1785 T := Find_Type_Of_Object
1786 (Subtype_Indication (Component_Definition (N)), N);
1787 end if;
1788
1789 -- If the component declaration includes a default expression, then we
1790 -- check that the component is not of a limited type (RM 3.7(5)),
1791 -- and do the special preanalysis of the expression (see section on
1792 -- "Handling of Default and Per-Object Expressions" in the spec of
1793 -- package Sem).
1794
1795 if Present (E) then
1796 Preanalyze_Spec_Expression (E, T);
1797 Check_Initialization (T, E);
1798
1799 if Ada_Version >= Ada_2005
1800 and then Ekind (T) = E_Anonymous_Access_Type
1801 and then Etype (E) /= Any_Type
1802 then
1803 -- Check RM 3.9.2(9): "if the expected type for an expression is
1804 -- an anonymous access-to-specific tagged type, then the object
1805 -- designated by the expression shall not be dynamically tagged
1806 -- unless it is a controlling operand in a call on a dispatching
1807 -- operation"
1808
1809 if Is_Tagged_Type (Directly_Designated_Type (T))
1810 and then
1811 Ekind (Directly_Designated_Type (T)) /= E_Class_Wide_Type
1812 and then
1813 Ekind (Directly_Designated_Type (Etype (E))) =
1814 E_Class_Wide_Type
1815 then
1816 Error_Msg_N
1817 ("access to specific tagged type required (RM 3.9.2(9))", E);
1818 end if;
1819
1820 -- (Ada 2005: AI-230): Accessibility check for anonymous
1821 -- components
1822
1823 if Type_Access_Level (Etype (E)) > Type_Access_Level (T) then
1824 Error_Msg_N
1825 ("expression has deeper access level than component " &
1826 "(RM 3.10.2 (12.2))", E);
1827 end if;
1828
1829 -- The initialization expression is a reference to an access
1830 -- discriminant. The type of the discriminant is always deeper
1831 -- than any access type.
1832
1833 if Ekind (Etype (E)) = E_Anonymous_Access_Type
1834 and then Is_Entity_Name (E)
1835 and then Ekind (Entity (E)) = E_In_Parameter
1836 and then Present (Discriminal_Link (Entity (E)))
1837 then
1838 Error_Msg_N
1839 ("discriminant has deeper accessibility level than target",
1840 E);
1841 end if;
1842 end if;
1843 end if;
1844
1845 -- The parent type may be a private view with unknown discriminants,
1846 -- and thus unconstrained. Regular components must be constrained.
1847
1848 if Is_Indefinite_Subtype (T) and then Chars (Id) /= Name_uParent then
1849 if Is_Class_Wide_Type (T) then
1850 Error_Msg_N
1851 ("class-wide subtype with unknown discriminants" &
1852 " in component declaration",
1853 Subtype_Indication (Component_Definition (N)));
1854 else
1855 Error_Msg_N
1856 ("unconstrained subtype in component declaration",
1857 Subtype_Indication (Component_Definition (N)));
1858 end if;
1859
1860 -- Components cannot be abstract, except for the special case of
1861 -- the _Parent field (case of extending an abstract tagged type)
1862
1863 elsif Is_Abstract_Type (T) and then Chars (Id) /= Name_uParent then
1864 Error_Msg_N ("type of a component cannot be abstract", N);
1865 end if;
1866
1867 Set_Etype (Id, T);
1868 Set_Is_Aliased (Id, Aliased_Present (Component_Definition (N)));
1869
1870 -- The component declaration may have a per-object constraint, set
1871 -- the appropriate flag in the defining identifier of the subtype.
1872
1873 if Present (Subtype_Indication (Component_Definition (N))) then
1874 declare
1875 Sindic : constant Node_Id :=
1876 Subtype_Indication (Component_Definition (N));
1877 begin
1878 if Nkind (Sindic) = N_Subtype_Indication
1879 and then Present (Constraint (Sindic))
1880 and then Contains_POC (Constraint (Sindic))
1881 then
1882 Set_Has_Per_Object_Constraint (Id);
1883 end if;
1884 end;
1885 end if;
1886
1887 -- Ada 2005 (AI-231): Propagate the null-excluding attribute and carry
1888 -- out some static checks.
1889
1890 if Ada_Version >= Ada_2005
1891 and then Can_Never_Be_Null (T)
1892 then
1893 Null_Exclusion_Static_Checks (N);
1894 end if;
1895
1896 -- If this component is private (or depends on a private type), flag the
1897 -- record type to indicate that some operations are not available.
1898
1899 P := Private_Component (T);
1900
1901 if Present (P) then
1902
1903 -- Check for circular definitions
1904
1905 if P = Any_Type then
1906 Set_Etype (Id, Any_Type);
1907
1908 -- There is a gap in the visibility of operations only if the
1909 -- component type is not defined in the scope of the record type.
1910
1911 elsif Scope (P) = Scope (Current_Scope) then
1912 null;
1913
1914 elsif Is_Limited_Type (P) then
1915 Set_Is_Limited_Composite (Current_Scope);
1916
1917 else
1918 Set_Is_Private_Composite (Current_Scope);
1919 end if;
1920 end if;
1921
1922 if P /= Any_Type
1923 and then Is_Limited_Type (T)
1924 and then Chars (Id) /= Name_uParent
1925 and then Is_Tagged_Type (Current_Scope)
1926 then
1927 if Is_Derived_Type (Current_Scope)
1928 and then not Is_Known_Limited (Current_Scope)
1929 then
1930 Error_Msg_N
1931 ("extension of nonlimited type cannot have limited components",
1932 N);
1933
1934 if Is_Interface (Root_Type (Current_Scope)) then
1935 Error_Msg_N
1936 ("\limitedness is not inherited from limited interface", N);
1937 Error_Msg_N ("\add LIMITED to type indication", N);
1938 end if;
1939
1940 Explain_Limited_Type (T, N);
1941 Set_Etype (Id, Any_Type);
1942 Set_Is_Limited_Composite (Current_Scope, False);
1943
1944 elsif not Is_Derived_Type (Current_Scope)
1945 and then not Is_Limited_Record (Current_Scope)
1946 and then not Is_Concurrent_Type (Current_Scope)
1947 then
1948 Error_Msg_N
1949 ("nonlimited tagged type cannot have limited components", N);
1950 Explain_Limited_Type (T, N);
1951 Set_Etype (Id, Any_Type);
1952 Set_Is_Limited_Composite (Current_Scope, False);
1953 end if;
1954 end if;
1955
1956 Set_Original_Record_Component (Id, Id);
1957 Analyze_Aspect_Specifications (N, Id, Aspect_Specifications (N));
1958 end Analyze_Component_Declaration;
1959
1960 --------------------------
1961 -- Analyze_Declarations --
1962 --------------------------
1963
1964 procedure Analyze_Declarations (L : List_Id) is
1965 D : Node_Id;
1966 Freeze_From : Entity_Id := Empty;
1967 Next_Node : Node_Id;
1968
1969 procedure Adjust_D;
1970 -- Adjust D not to include implicit label declarations, since these
1971 -- have strange Sloc values that result in elaboration check problems.
1972 -- (They have the sloc of the label as found in the source, and that
1973 -- is ahead of the current declarative part).
1974
1975 --------------
1976 -- Adjust_D --
1977 --------------
1978
1979 procedure Adjust_D is
1980 begin
1981 while Present (Prev (D))
1982 and then Nkind (D) = N_Implicit_Label_Declaration
1983 loop
1984 Prev (D);
1985 end loop;
1986 end Adjust_D;
1987
1988 -- Start of processing for Analyze_Declarations
1989
1990 begin
1991 D := First (L);
1992 while Present (D) loop
1993
1994 -- Complete analysis of declaration
1995
1996 Analyze (D);
1997 Next_Node := Next (D);
1998
1999 if No (Freeze_From) then
2000 Freeze_From := First_Entity (Current_Scope);
2001 end if;
2002
2003 -- At the end of a declarative part, freeze remaining entities
2004 -- declared in it. The end of the visible declarations of package
2005 -- specification is not the end of a declarative part if private
2006 -- declarations are present. The end of a package declaration is a
2007 -- freezing point only if it a library package. A task definition or
2008 -- protected type definition is not a freeze point either. Finally,
2009 -- we do not freeze entities in generic scopes, because there is no
2010 -- code generated for them and freeze nodes will be generated for
2011 -- the instance.
2012
2013 -- The end of a package instantiation is not a freeze point, but
2014 -- for now we make it one, because the generic body is inserted
2015 -- (currently) immediately after. Generic instantiations will not
2016 -- be a freeze point once delayed freezing of bodies is implemented.
2017 -- (This is needed in any case for early instantiations ???).
2018
2019 if No (Next_Node) then
2020 if Nkind_In (Parent (L), N_Component_List,
2021 N_Task_Definition,
2022 N_Protected_Definition)
2023 then
2024 null;
2025
2026 elsif Nkind (Parent (L)) /= N_Package_Specification then
2027 if Nkind (Parent (L)) = N_Package_Body then
2028 Freeze_From := First_Entity (Current_Scope);
2029 end if;
2030
2031 Adjust_D;
2032 Freeze_All (Freeze_From, D);
2033 Freeze_From := Last_Entity (Current_Scope);
2034
2035 elsif Scope (Current_Scope) /= Standard_Standard
2036 and then not Is_Child_Unit (Current_Scope)
2037 and then No (Generic_Parent (Parent (L)))
2038 then
2039 null;
2040
2041 elsif L /= Visible_Declarations (Parent (L))
2042 or else No (Private_Declarations (Parent (L)))
2043 or else Is_Empty_List (Private_Declarations (Parent (L)))
2044 then
2045 Adjust_D;
2046 Freeze_All (Freeze_From, D);
2047 Freeze_From := Last_Entity (Current_Scope);
2048 end if;
2049
2050 -- If next node is a body then freeze all types before the body.
2051 -- An exception occurs for some expander-generated bodies. If these
2052 -- are generated at places where in general language rules would not
2053 -- allow a freeze point, then we assume that the expander has
2054 -- explicitly checked that all required types are properly frozen,
2055 -- and we do not cause general freezing here. This special circuit
2056 -- is used when the encountered body is marked as having already
2057 -- been analyzed.
2058
2059 -- In all other cases (bodies that come from source, and expander
2060 -- generated bodies that have not been analyzed yet), freeze all
2061 -- types now. Note that in the latter case, the expander must take
2062 -- care to attach the bodies at a proper place in the tree so as to
2063 -- not cause unwanted freezing at that point.
2064
2065 elsif not Analyzed (Next_Node)
2066 and then (Nkind_In (Next_Node, N_Subprogram_Body,
2067 N_Entry_Body,
2068 N_Package_Body,
2069 N_Protected_Body,
2070 N_Task_Body)
2071 or else
2072 Nkind (Next_Node) in N_Body_Stub)
2073 then
2074 Adjust_D;
2075 Freeze_All (Freeze_From, D);
2076 Freeze_From := Last_Entity (Current_Scope);
2077 end if;
2078
2079 D := Next_Node;
2080 end loop;
2081
2082 -- One more thing to do, we need to scan the declarations to check
2083 -- for any precondition/postcondition pragmas (Pre/Post aspects have
2084 -- by this stage been converted into corresponding pragmas). It is
2085 -- at this point that we analyze the expressions in such pragmas,
2086 -- to implement the delayed visibility requirement.
2087
2088 declare
2089 Decl : Node_Id;
2090 Spec : Node_Id;
2091 Sent : Entity_Id;
2092 Prag : Node_Id;
2093
2094 begin
2095 Decl := First (L);
2096 while Present (Decl) loop
2097 if Nkind (Original_Node (Decl)) = N_Subprogram_Declaration then
2098 Spec := Specification (Original_Node (Decl));
2099 Sent := Defining_Unit_Name (Spec);
2100 Prag := Spec_PPC_List (Sent);
2101 while Present (Prag) loop
2102 Analyze_PPC_In_Decl_Part (Prag, Sent);
2103 Prag := Next_Pragma (Prag);
2104 end loop;
2105 end if;
2106
2107 Next (Decl);
2108 end loop;
2109 end;
2110 end Analyze_Declarations;
2111
2112 -----------------------------------
2113 -- Analyze_Full_Type_Declaration --
2114 -----------------------------------
2115
2116 procedure Analyze_Full_Type_Declaration (N : Node_Id) is
2117 Def : constant Node_Id := Type_Definition (N);
2118 Def_Id : constant Entity_Id := Defining_Identifier (N);
2119 T : Entity_Id;
2120 Prev : Entity_Id;
2121
2122 Is_Remote : constant Boolean :=
2123 (Is_Remote_Types (Current_Scope)
2124 or else Is_Remote_Call_Interface (Current_Scope))
2125 and then not (In_Private_Part (Current_Scope)
2126 or else In_Package_Body (Current_Scope));
2127
2128 procedure Check_Ops_From_Incomplete_Type;
2129 -- If there is a tagged incomplete partial view of the type, transfer
2130 -- its operations to the full view, and indicate that the type of the
2131 -- controlling parameter (s) is this full view.
2132
2133 ------------------------------------
2134 -- Check_Ops_From_Incomplete_Type --
2135 ------------------------------------
2136
2137 procedure Check_Ops_From_Incomplete_Type is
2138 Elmt : Elmt_Id;
2139 Formal : Entity_Id;
2140 Op : Entity_Id;
2141
2142 begin
2143 if Prev /= T
2144 and then Ekind (Prev) = E_Incomplete_Type
2145 and then Is_Tagged_Type (Prev)
2146 and then Is_Tagged_Type (T)
2147 then
2148 Elmt := First_Elmt (Primitive_Operations (Prev));
2149 while Present (Elmt) loop
2150 Op := Node (Elmt);
2151 Prepend_Elmt (Op, Primitive_Operations (T));
2152
2153 Formal := First_Formal (Op);
2154 while Present (Formal) loop
2155 if Etype (Formal) = Prev then
2156 Set_Etype (Formal, T);
2157 end if;
2158
2159 Next_Formal (Formal);
2160 end loop;
2161
2162 if Etype (Op) = Prev then
2163 Set_Etype (Op, T);
2164 end if;
2165
2166 Next_Elmt (Elmt);
2167 end loop;
2168 end if;
2169 end Check_Ops_From_Incomplete_Type;
2170
2171 -- Start of processing for Analyze_Full_Type_Declaration
2172
2173 begin
2174 Prev := Find_Type_Name (N);
2175
2176 -- The full view, if present, now points to the current type
2177
2178 -- Ada 2005 (AI-50217): If the type was previously decorated when
2179 -- imported through a LIMITED WITH clause, it appears as incomplete
2180 -- but has no full view.
2181
2182 if Ekind (Prev) = E_Incomplete_Type
2183 and then Present (Full_View (Prev))
2184 then
2185 T := Full_View (Prev);
2186 else
2187 T := Prev;
2188 end if;
2189
2190 Set_Is_Pure (T, Is_Pure (Current_Scope));
2191
2192 -- We set the flag Is_First_Subtype here. It is needed to set the
2193 -- corresponding flag for the Implicit class-wide-type created
2194 -- during tagged types processing.
2195
2196 Set_Is_First_Subtype (T, True);
2197
2198 -- Only composite types other than array types are allowed to have
2199 -- discriminants.
2200
2201 case Nkind (Def) is
2202
2203 -- For derived types, the rule will be checked once we've figured
2204 -- out the parent type.
2205
2206 when N_Derived_Type_Definition =>
2207 null;
2208
2209 -- For record types, discriminants are allowed
2210
2211 when N_Record_Definition =>
2212 null;
2213
2214 when others =>
2215 if Present (Discriminant_Specifications (N)) then
2216 Error_Msg_N
2217 ("elementary or array type cannot have discriminants",
2218 Defining_Identifier
2219 (First (Discriminant_Specifications (N))));
2220 end if;
2221 end case;
2222
2223 -- Elaborate the type definition according to kind, and generate
2224 -- subsidiary (implicit) subtypes where needed. We skip this if it was
2225 -- already done (this happens during the reanalysis that follows a call
2226 -- to the high level optimizer).
2227
2228 if not Analyzed (T) then
2229 Set_Analyzed (T);
2230
2231 case Nkind (Def) is
2232
2233 when N_Access_To_Subprogram_Definition =>
2234 Access_Subprogram_Declaration (T, Def);
2235
2236 -- If this is a remote access to subprogram, we must create the
2237 -- equivalent fat pointer type, and related subprograms.
2238
2239 if Is_Remote then
2240 Process_Remote_AST_Declaration (N);
2241 end if;
2242
2243 -- Validate categorization rule against access type declaration
2244 -- usually a violation in Pure unit, Shared_Passive unit.
2245
2246 Validate_Access_Type_Declaration (T, N);
2247
2248 when N_Access_To_Object_Definition =>
2249 Access_Type_Declaration (T, Def);
2250
2251 -- Validate categorization rule against access type declaration
2252 -- usually a violation in Pure unit, Shared_Passive unit.
2253
2254 Validate_Access_Type_Declaration (T, N);
2255
2256 -- If we are in a Remote_Call_Interface package and define a
2257 -- RACW, then calling stubs and specific stream attributes
2258 -- must be added.
2259
2260 if Is_Remote
2261 and then Is_Remote_Access_To_Class_Wide_Type (Def_Id)
2262 then
2263 Add_RACW_Features (Def_Id);
2264 end if;
2265
2266 -- Set no strict aliasing flag if config pragma seen
2267
2268 if Opt.No_Strict_Aliasing then
2269 Set_No_Strict_Aliasing (Base_Type (Def_Id));
2270 end if;
2271
2272 when N_Array_Type_Definition =>
2273 Array_Type_Declaration (T, Def);
2274
2275 when N_Derived_Type_Definition =>
2276 Derived_Type_Declaration (T, N, T /= Def_Id);
2277
2278 when N_Enumeration_Type_Definition =>
2279 Enumeration_Type_Declaration (T, Def);
2280
2281 when N_Floating_Point_Definition =>
2282 Floating_Point_Type_Declaration (T, Def);
2283
2284 when N_Decimal_Fixed_Point_Definition =>
2285 Decimal_Fixed_Point_Type_Declaration (T, Def);
2286
2287 when N_Ordinary_Fixed_Point_Definition =>
2288 Ordinary_Fixed_Point_Type_Declaration (T, Def);
2289
2290 when N_Signed_Integer_Type_Definition =>
2291 Signed_Integer_Type_Declaration (T, Def);
2292
2293 when N_Modular_Type_Definition =>
2294 Modular_Type_Declaration (T, Def);
2295
2296 when N_Record_Definition =>
2297 Record_Type_Declaration (T, N, Prev);
2298
2299 -- If declaration has a parse error, nothing to elaborate.
2300
2301 when N_Error =>
2302 null;
2303
2304 when others =>
2305 raise Program_Error;
2306
2307 end case;
2308 end if;
2309
2310 if Etype (T) = Any_Type then
2311 return;
2312 end if;
2313
2314 -- Some common processing for all types
2315
2316 Set_Depends_On_Private (T, Has_Private_Component (T));
2317 Check_Ops_From_Incomplete_Type;
2318
2319 -- Both the declared entity, and its anonymous base type if one
2320 -- was created, need freeze nodes allocated.
2321
2322 declare
2323 B : constant Entity_Id := Base_Type (T);
2324
2325 begin
2326 -- In the case where the base type differs from the first subtype, we
2327 -- pre-allocate a freeze node, and set the proper link to the first
2328 -- subtype. Freeze_Entity will use this preallocated freeze node when
2329 -- it freezes the entity.
2330
2331 -- This does not apply if the base type is a generic type, whose
2332 -- declaration is independent of the current derived definition.
2333
2334 if B /= T and then not Is_Generic_Type (B) then
2335 Ensure_Freeze_Node (B);
2336 Set_First_Subtype_Link (Freeze_Node (B), T);
2337 end if;
2338
2339 -- A type that is imported through a limited_with clause cannot
2340 -- generate any code, and thus need not be frozen. However, an access
2341 -- type with an imported designated type needs a finalization list,
2342 -- which may be referenced in some other package that has non-limited
2343 -- visibility on the designated type. Thus we must create the
2344 -- finalization list at the point the access type is frozen, to
2345 -- prevent unsatisfied references at link time.
2346
2347 if not From_With_Type (T) or else Is_Access_Type (T) then
2348 Set_Has_Delayed_Freeze (T);
2349 end if;
2350 end;
2351
2352 -- Case where T is the full declaration of some private type which has
2353 -- been swapped in Defining_Identifier (N).
2354
2355 if T /= Def_Id and then Is_Private_Type (Def_Id) then
2356 Process_Full_View (N, T, Def_Id);
2357
2358 -- Record the reference. The form of this is a little strange, since
2359 -- the full declaration has been swapped in. So the first parameter
2360 -- here represents the entity to which a reference is made which is
2361 -- the "real" entity, i.e. the one swapped in, and the second
2362 -- parameter provides the reference location.
2363
2364 -- Also, we want to kill Has_Pragma_Unreferenced temporarily here
2365 -- since we don't want a complaint about the full type being an
2366 -- unwanted reference to the private type
2367
2368 declare
2369 B : constant Boolean := Has_Pragma_Unreferenced (T);
2370 begin
2371 Set_Has_Pragma_Unreferenced (T, False);
2372 Generate_Reference (T, T, 'c');
2373 Set_Has_Pragma_Unreferenced (T, B);
2374 end;
2375
2376 Set_Completion_Referenced (Def_Id);
2377
2378 -- For completion of incomplete type, process incomplete dependents
2379 -- and always mark the full type as referenced (it is the incomplete
2380 -- type that we get for any real reference).
2381
2382 elsif Ekind (Prev) = E_Incomplete_Type then
2383 Process_Incomplete_Dependents (N, T, Prev);
2384 Generate_Reference (Prev, Def_Id, 'c');
2385 Set_Completion_Referenced (Def_Id);
2386
2387 -- If not private type or incomplete type completion, this is a real
2388 -- definition of a new entity, so record it.
2389
2390 else
2391 Generate_Definition (Def_Id);
2392 end if;
2393
2394 if Chars (Scope (Def_Id)) = Name_System
2395 and then Chars (Def_Id) = Name_Address
2396 and then Is_Predefined_File_Name (Unit_File_Name (Get_Source_Unit (N)))
2397 then
2398 Set_Is_Descendent_Of_Address (Def_Id);
2399 Set_Is_Descendent_Of_Address (Base_Type (Def_Id));
2400 Set_Is_Descendent_Of_Address (Prev);
2401 end if;
2402
2403 Set_Optimize_Alignment_Flags (Def_Id);
2404 Check_Eliminated (Def_Id);
2405
2406 Analyze_Aspect_Specifications (N, Def_Id, Aspect_Specifications (N));
2407 end Analyze_Full_Type_Declaration;
2408
2409 ----------------------------------
2410 -- Analyze_Incomplete_Type_Decl --
2411 ----------------------------------
2412
2413 procedure Analyze_Incomplete_Type_Decl (N : Node_Id) is
2414 F : constant Boolean := Is_Pure (Current_Scope);
2415 T : Entity_Id;
2416
2417 begin
2418 Generate_Definition (Defining_Identifier (N));
2419
2420 -- Process an incomplete declaration. The identifier must not have been
2421 -- declared already in the scope. However, an incomplete declaration may
2422 -- appear in the private part of a package, for a private type that has
2423 -- already been declared.
2424
2425 -- In this case, the discriminants (if any) must match
2426
2427 T := Find_Type_Name (N);
2428
2429 Set_Ekind (T, E_Incomplete_Type);
2430 Init_Size_Align (T);
2431 Set_Is_First_Subtype (T, True);
2432 Set_Etype (T, T);
2433
2434 -- Ada 2005 (AI-326): Minimum decoration to give support to tagged
2435 -- incomplete types.
2436
2437 if Tagged_Present (N) then
2438 Set_Is_Tagged_Type (T);
2439 Make_Class_Wide_Type (T);
2440 Set_Direct_Primitive_Operations (T, New_Elmt_List);
2441 end if;
2442
2443 Push_Scope (T);
2444
2445 Set_Stored_Constraint (T, No_Elist);
2446
2447 if Present (Discriminant_Specifications (N)) then
2448 Process_Discriminants (N);
2449 end if;
2450
2451 End_Scope;
2452
2453 -- If the type has discriminants, non-trivial subtypes may be
2454 -- declared before the full view of the type. The full views of those
2455 -- subtypes will be built after the full view of the type.
2456
2457 Set_Private_Dependents (T, New_Elmt_List);
2458 Set_Is_Pure (T, F);
2459 end Analyze_Incomplete_Type_Decl;
2460
2461 -----------------------------------
2462 -- Analyze_Interface_Declaration --
2463 -----------------------------------
2464
2465 procedure Analyze_Interface_Declaration (T : Entity_Id; Def : Node_Id) is
2466 CW : constant Entity_Id := Class_Wide_Type (T);
2467
2468 begin
2469 Set_Is_Tagged_Type (T);
2470
2471 Set_Is_Limited_Record (T, Limited_Present (Def)
2472 or else Task_Present (Def)
2473 or else Protected_Present (Def)
2474 or else Synchronized_Present (Def));
2475
2476 -- Type is abstract if full declaration carries keyword, or if previous
2477 -- partial view did.
2478
2479 Set_Is_Abstract_Type (T);
2480 Set_Is_Interface (T);
2481
2482 -- Type is a limited interface if it includes the keyword limited, task,
2483 -- protected, or synchronized.
2484
2485 Set_Is_Limited_Interface
2486 (T, Limited_Present (Def)
2487 or else Protected_Present (Def)
2488 or else Synchronized_Present (Def)
2489 or else Task_Present (Def));
2490
2491 Set_Interfaces (T, New_Elmt_List);
2492 Set_Direct_Primitive_Operations (T, New_Elmt_List);
2493
2494 -- Complete the decoration of the class-wide entity if it was already
2495 -- built (i.e. during the creation of the limited view)
2496
2497 if Present (CW) then
2498 Set_Is_Interface (CW);
2499 Set_Is_Limited_Interface (CW, Is_Limited_Interface (T));
2500 end if;
2501
2502 -- Check runtime support for synchronized interfaces
2503
2504 if VM_Target = No_VM
2505 and then (Is_Task_Interface (T)
2506 or else Is_Protected_Interface (T)
2507 or else Is_Synchronized_Interface (T))
2508 and then not RTE_Available (RE_Select_Specific_Data)
2509 then
2510 Error_Msg_CRT ("synchronized interfaces", T);
2511 end if;
2512 end Analyze_Interface_Declaration;
2513
2514 -----------------------------
2515 -- Analyze_Itype_Reference --
2516 -----------------------------
2517
2518 -- Nothing to do. This node is placed in the tree only for the benefit of
2519 -- back end processing, and has no effect on the semantic processing.
2520
2521 procedure Analyze_Itype_Reference (N : Node_Id) is
2522 begin
2523 pragma Assert (Is_Itype (Itype (N)));
2524 null;
2525 end Analyze_Itype_Reference;
2526
2527 --------------------------------
2528 -- Analyze_Number_Declaration --
2529 --------------------------------
2530
2531 procedure Analyze_Number_Declaration (N : Node_Id) is
2532 Id : constant Entity_Id := Defining_Identifier (N);
2533 E : constant Node_Id := Expression (N);
2534 T : Entity_Id;
2535 Index : Interp_Index;
2536 It : Interp;
2537
2538 begin
2539 Generate_Definition (Id);
2540 Enter_Name (Id);
2541
2542 -- This is an optimization of a common case of an integer literal
2543
2544 if Nkind (E) = N_Integer_Literal then
2545 Set_Is_Static_Expression (E, True);
2546 Set_Etype (E, Universal_Integer);
2547
2548 Set_Etype (Id, Universal_Integer);
2549 Set_Ekind (Id, E_Named_Integer);
2550 Set_Is_Frozen (Id, True);
2551 return;
2552 end if;
2553
2554 Set_Is_Pure (Id, Is_Pure (Current_Scope));
2555
2556 -- Process expression, replacing error by integer zero, to avoid
2557 -- cascaded errors or aborts further along in the processing
2558
2559 -- Replace Error by integer zero, which seems least likely to
2560 -- cause cascaded errors.
2561
2562 if E = Error then
2563 Rewrite (E, Make_Integer_Literal (Sloc (E), Uint_0));
2564 Set_Error_Posted (E);
2565 end if;
2566
2567 Analyze (E);
2568
2569 -- Verify that the expression is static and numeric. If
2570 -- the expression is overloaded, we apply the preference
2571 -- rule that favors root numeric types.
2572
2573 if not Is_Overloaded (E) then
2574 T := Etype (E);
2575
2576 else
2577 T := Any_Type;
2578
2579 Get_First_Interp (E, Index, It);
2580 while Present (It.Typ) loop
2581 if (Is_Integer_Type (It.Typ)
2582 or else Is_Real_Type (It.Typ))
2583 and then (Scope (Base_Type (It.Typ))) = Standard_Standard
2584 then
2585 if T = Any_Type then
2586 T := It.Typ;
2587
2588 elsif It.Typ = Universal_Real
2589 or else It.Typ = Universal_Integer
2590 then
2591 -- Choose universal interpretation over any other
2592
2593 T := It.Typ;
2594 exit;
2595 end if;
2596 end if;
2597
2598 Get_Next_Interp (Index, It);
2599 end loop;
2600 end if;
2601
2602 if Is_Integer_Type (T) then
2603 Resolve (E, T);
2604 Set_Etype (Id, Universal_Integer);
2605 Set_Ekind (Id, E_Named_Integer);
2606
2607 elsif Is_Real_Type (T) then
2608
2609 -- Because the real value is converted to universal_real, this is a
2610 -- legal context for a universal fixed expression.
2611
2612 if T = Universal_Fixed then
2613 declare
2614 Loc : constant Source_Ptr := Sloc (N);
2615 Conv : constant Node_Id := Make_Type_Conversion (Loc,
2616 Subtype_Mark =>
2617 New_Occurrence_Of (Universal_Real, Loc),
2618 Expression => Relocate_Node (E));
2619
2620 begin
2621 Rewrite (E, Conv);
2622 Analyze (E);
2623 end;
2624
2625 elsif T = Any_Fixed then
2626 Error_Msg_N ("illegal context for mixed mode operation", E);
2627
2628 -- Expression is of the form : universal_fixed * integer. Try to
2629 -- resolve as universal_real.
2630
2631 T := Universal_Real;
2632 Set_Etype (E, T);
2633 end if;
2634
2635 Resolve (E, T);
2636 Set_Etype (Id, Universal_Real);
2637 Set_Ekind (Id, E_Named_Real);
2638
2639 else
2640 Wrong_Type (E, Any_Numeric);
2641 Resolve (E, T);
2642
2643 Set_Etype (Id, T);
2644 Set_Ekind (Id, E_Constant);
2645 Set_Never_Set_In_Source (Id, True);
2646 Set_Is_True_Constant (Id, True);
2647 return;
2648 end if;
2649
2650 if Nkind_In (E, N_Integer_Literal, N_Real_Literal) then
2651 Set_Etype (E, Etype (Id));
2652 end if;
2653
2654 if not Is_OK_Static_Expression (E) then
2655 Flag_Non_Static_Expr
2656 ("non-static expression used in number declaration!", E);
2657 Rewrite (E, Make_Integer_Literal (Sloc (N), 1));
2658 Set_Etype (E, Any_Type);
2659 end if;
2660 end Analyze_Number_Declaration;
2661
2662 --------------------------------
2663 -- Analyze_Object_Declaration --
2664 --------------------------------
2665
2666 procedure Analyze_Object_Declaration (N : Node_Id) is
2667 Loc : constant Source_Ptr := Sloc (N);
2668 Id : constant Entity_Id := Defining_Identifier (N);
2669 T : Entity_Id;
2670 Act_T : Entity_Id;
2671
2672 E : Node_Id := Expression (N);
2673 -- E is set to Expression (N) throughout this routine. When
2674 -- Expression (N) is modified, E is changed accordingly.
2675
2676 Prev_Entity : Entity_Id := Empty;
2677
2678 function Count_Tasks (T : Entity_Id) return Uint;
2679 -- This function is called when a non-generic library level object of a
2680 -- task type is declared. Its function is to count the static number of
2681 -- tasks declared within the type (it is only called if Has_Tasks is set
2682 -- for T). As a side effect, if an array of tasks with non-static bounds
2683 -- or a variant record type is encountered, Check_Restrictions is called
2684 -- indicating the count is unknown.
2685
2686 -----------------
2687 -- Count_Tasks --
2688 -----------------
2689
2690 function Count_Tasks (T : Entity_Id) return Uint is
2691 C : Entity_Id;
2692 X : Node_Id;
2693 V : Uint;
2694
2695 begin
2696 if Is_Task_Type (T) then
2697 return Uint_1;
2698
2699 elsif Is_Record_Type (T) then
2700 if Has_Discriminants (T) then
2701 Check_Restriction (Max_Tasks, N);
2702 return Uint_0;
2703
2704 else
2705 V := Uint_0;
2706 C := First_Component (T);
2707 while Present (C) loop
2708 V := V + Count_Tasks (Etype (C));
2709 Next_Component (C);
2710 end loop;
2711
2712 return V;
2713 end if;
2714
2715 elsif Is_Array_Type (T) then
2716 X := First_Index (T);
2717 V := Count_Tasks (Component_Type (T));
2718 while Present (X) loop
2719 C := Etype (X);
2720
2721 if not Is_Static_Subtype (C) then
2722 Check_Restriction (Max_Tasks, N);
2723 return Uint_0;
2724 else
2725 V := V * (UI_Max (Uint_0,
2726 Expr_Value (Type_High_Bound (C)) -
2727 Expr_Value (Type_Low_Bound (C)) + Uint_1));
2728 end if;
2729
2730 Next_Index (X);
2731 end loop;
2732
2733 return V;
2734
2735 else
2736 return Uint_0;
2737 end if;
2738 end Count_Tasks;
2739
2740 -- Start of processing for Analyze_Object_Declaration
2741
2742 begin
2743 -- There are three kinds of implicit types generated by an
2744 -- object declaration:
2745
2746 -- 1. Those for generated by the original Object Definition
2747
2748 -- 2. Those generated by the Expression
2749
2750 -- 3. Those used to constrained the Object Definition with the
2751 -- expression constraints when it is unconstrained
2752
2753 -- They must be generated in this order to avoid order of elaboration
2754 -- issues. Thus the first step (after entering the name) is to analyze
2755 -- the object definition.
2756
2757 if Constant_Present (N) then
2758 Prev_Entity := Current_Entity_In_Scope (Id);
2759
2760 if Present (Prev_Entity)
2761 and then
2762 -- If the homograph is an implicit subprogram, it is overridden
2763 -- by the current declaration.
2764
2765 ((Is_Overloadable (Prev_Entity)
2766 and then Is_Inherited_Operation (Prev_Entity))
2767
2768 -- The current object is a discriminal generated for an entry
2769 -- family index. Even though the index is a constant, in this
2770 -- particular context there is no true constant redeclaration.
2771 -- Enter_Name will handle the visibility.
2772
2773 or else
2774 (Is_Discriminal (Id)
2775 and then Ekind (Discriminal_Link (Id)) =
2776 E_Entry_Index_Parameter)
2777
2778 -- The current object is the renaming for a generic declared
2779 -- within the instance.
2780
2781 or else
2782 (Ekind (Prev_Entity) = E_Package
2783 and then Nkind (Parent (Prev_Entity)) =
2784 N_Package_Renaming_Declaration
2785 and then not Comes_From_Source (Prev_Entity)
2786 and then Is_Generic_Instance (Renamed_Entity (Prev_Entity))))
2787 then
2788 Prev_Entity := Empty;
2789 end if;
2790 end if;
2791
2792 if Present (Prev_Entity) then
2793 Constant_Redeclaration (Id, N, T);
2794
2795 Generate_Reference (Prev_Entity, Id, 'c');
2796 Set_Completion_Referenced (Id);
2797
2798 if Error_Posted (N) then
2799
2800 -- Type mismatch or illegal redeclaration, Do not analyze
2801 -- expression to avoid cascaded errors.
2802
2803 T := Find_Type_Of_Object (Object_Definition (N), N);
2804 Set_Etype (Id, T);
2805 Set_Ekind (Id, E_Variable);
2806 goto Leave;
2807 end if;
2808
2809 -- In the normal case, enter identifier at the start to catch premature
2810 -- usage in the initialization expression.
2811
2812 else
2813 Generate_Definition (Id);
2814 Enter_Name (Id);
2815
2816 Mark_Coextensions (N, Object_Definition (N));
2817
2818 T := Find_Type_Of_Object (Object_Definition (N), N);
2819
2820 if Nkind (Object_Definition (N)) = N_Access_Definition
2821 and then Present
2822 (Access_To_Subprogram_Definition (Object_Definition (N)))
2823 and then Protected_Present
2824 (Access_To_Subprogram_Definition (Object_Definition (N)))
2825 then
2826 T := Replace_Anonymous_Access_To_Protected_Subprogram (N);
2827 end if;
2828
2829 if Error_Posted (Id) then
2830 Set_Etype (Id, T);
2831 Set_Ekind (Id, E_Variable);
2832 goto Leave;
2833 end if;
2834 end if;
2835
2836 -- Ada 2005 (AI-231): Propagate the null-excluding attribute and carry
2837 -- out some static checks
2838
2839 if Ada_Version >= Ada_2005
2840 and then Can_Never_Be_Null (T)
2841 then
2842 -- In case of aggregates we must also take care of the correct
2843 -- initialization of nested aggregates bug this is done at the
2844 -- point of the analysis of the aggregate (see sem_aggr.adb)
2845
2846 if Present (Expression (N))
2847 and then Nkind (Expression (N)) = N_Aggregate
2848 then
2849 null;
2850
2851 else
2852 declare
2853 Save_Typ : constant Entity_Id := Etype (Id);
2854 begin
2855 Set_Etype (Id, T); -- Temp. decoration for static checks
2856 Null_Exclusion_Static_Checks (N);
2857 Set_Etype (Id, Save_Typ);
2858 end;
2859 end if;
2860 end if;
2861
2862 Set_Is_Pure (Id, Is_Pure (Current_Scope));
2863
2864 -- If deferred constant, make sure context is appropriate. We detect
2865 -- a deferred constant as a constant declaration with no expression.
2866 -- A deferred constant can appear in a package body if its completion
2867 -- is by means of an interface pragma.
2868
2869 if Constant_Present (N)
2870 and then No (E)
2871 then
2872 -- A deferred constant may appear in the declarative part of the
2873 -- following constructs:
2874
2875 -- blocks
2876 -- entry bodies
2877 -- extended return statements
2878 -- package specs
2879 -- package bodies
2880 -- subprogram bodies
2881 -- task bodies
2882
2883 -- When declared inside a package spec, a deferred constant must be
2884 -- completed by a full constant declaration or pragma Import. In all
2885 -- other cases, the only proper completion is pragma Import. Extended
2886 -- return statements are flagged as invalid contexts because they do
2887 -- not have a declarative part and so cannot accommodate the pragma.
2888
2889 if Ekind (Current_Scope) = E_Return_Statement then
2890 Error_Msg_N
2891 ("invalid context for deferred constant declaration (RM 7.4)",
2892 N);
2893 Error_Msg_N
2894 ("\declaration requires an initialization expression",
2895 N);
2896 Set_Constant_Present (N, False);
2897
2898 -- In Ada 83, deferred constant must be of private type
2899
2900 elsif not Is_Private_Type (T) then
2901 if Ada_Version = Ada_83 and then Comes_From_Source (N) then
2902 Error_Msg_N
2903 ("(Ada 83) deferred constant must be private type", N);
2904 end if;
2905 end if;
2906
2907 -- If not a deferred constant, then object declaration freezes its type
2908
2909 else
2910 Check_Fully_Declared (T, N);
2911 Freeze_Before (N, T);
2912 end if;
2913
2914 -- If the object was created by a constrained array definition, then
2915 -- set the link in both the anonymous base type and anonymous subtype
2916 -- that are built to represent the array type to point to the object.
2917
2918 if Nkind (Object_Definition (Declaration_Node (Id))) =
2919 N_Constrained_Array_Definition
2920 then
2921 Set_Related_Array_Object (T, Id);
2922 Set_Related_Array_Object (Base_Type (T), Id);
2923 end if;
2924
2925 -- Special checks for protected objects not at library level
2926
2927 if Is_Protected_Type (T)
2928 and then not Is_Library_Level_Entity (Id)
2929 then
2930 Check_Restriction (No_Local_Protected_Objects, Id);
2931
2932 -- Protected objects with interrupt handlers must be at library level
2933
2934 -- Ada 2005: this test is not needed (and the corresponding clause
2935 -- in the RM is removed) because accessibility checks are sufficient
2936 -- to make handlers not at the library level illegal.
2937
2938 if Has_Interrupt_Handler (T)
2939 and then Ada_Version < Ada_2005
2940 then
2941 Error_Msg_N
2942 ("interrupt object can only be declared at library level", Id);
2943 end if;
2944 end if;
2945
2946 -- The actual subtype of the object is the nominal subtype, unless
2947 -- the nominal one is unconstrained and obtained from the expression.
2948
2949 Act_T := T;
2950
2951 -- Process initialization expression if present and not in error
2952
2953 if Present (E) and then E /= Error then
2954
2955 -- Generate an error in case of CPP class-wide object initialization.
2956 -- Required because otherwise the expansion of the class-wide
2957 -- assignment would try to use 'size to initialize the object
2958 -- (primitive that is not available in CPP tagged types).
2959
2960 if Is_Class_Wide_Type (Act_T)
2961 and then
2962 (Is_CPP_Class (Root_Type (Etype (Act_T)))
2963 or else
2964 (Present (Full_View (Root_Type (Etype (Act_T))))
2965 and then
2966 Is_CPP_Class (Full_View (Root_Type (Etype (Act_T))))))
2967 then
2968 Error_Msg_N
2969 ("predefined assignment not available for 'C'P'P tagged types",
2970 E);
2971 end if;
2972
2973 Mark_Coextensions (N, E);
2974 Analyze (E);
2975
2976 -- In case of errors detected in the analysis of the expression,
2977 -- decorate it with the expected type to avoid cascaded errors
2978
2979 if No (Etype (E)) then
2980 Set_Etype (E, T);
2981 end if;
2982
2983 -- If an initialization expression is present, then we set the
2984 -- Is_True_Constant flag. It will be reset if this is a variable
2985 -- and it is indeed modified.
2986
2987 Set_Is_True_Constant (Id, True);
2988
2989 -- If we are analyzing a constant declaration, set its completion
2990 -- flag after analyzing and resolving the expression.
2991
2992 if Constant_Present (N) then
2993 Set_Has_Completion (Id);
2994 end if;
2995
2996 -- Set type and resolve (type may be overridden later on)
2997
2998 Set_Etype (Id, T);
2999 Resolve (E, T);
3000
3001 -- If E is null and has been replaced by an N_Raise_Constraint_Error
3002 -- node (which was marked already-analyzed), we need to set the type
3003 -- to something other than Any_Access in order to keep gigi happy.
3004
3005 if Etype (E) = Any_Access then
3006 Set_Etype (E, T);
3007 end if;
3008
3009 -- If the object is an access to variable, the initialization
3010 -- expression cannot be an access to constant.
3011
3012 if Is_Access_Type (T)
3013 and then not Is_Access_Constant (T)
3014 and then Is_Access_Type (Etype (E))
3015 and then Is_Access_Constant (Etype (E))
3016 then
3017 Error_Msg_N
3018 ("access to variable cannot be initialized "
3019 & "with an access-to-constant expression", E);
3020 end if;
3021
3022 if not Assignment_OK (N) then
3023 Check_Initialization (T, E);
3024 end if;
3025
3026 Check_Unset_Reference (E);
3027
3028 -- If this is a variable, then set current value. If this is a
3029 -- declared constant of a scalar type with a static expression,
3030 -- indicate that it is always valid.
3031
3032 if not Constant_Present (N) then
3033 if Compile_Time_Known_Value (E) then
3034 Set_Current_Value (Id, E);
3035 end if;
3036
3037 elsif Is_Scalar_Type (T)
3038 and then Is_OK_Static_Expression (E)
3039 then
3040 Set_Is_Known_Valid (Id);
3041 end if;
3042
3043 -- Deal with setting of null flags
3044
3045 if Is_Access_Type (T) then
3046 if Known_Non_Null (E) then
3047 Set_Is_Known_Non_Null (Id, True);
3048 elsif Known_Null (E)
3049 and then not Can_Never_Be_Null (Id)
3050 then
3051 Set_Is_Known_Null (Id, True);
3052 end if;
3053 end if;
3054
3055 -- Check incorrect use of dynamically tagged expressions.
3056
3057 if Is_Tagged_Type (T) then
3058 Check_Dynamically_Tagged_Expression
3059 (Expr => E,
3060 Typ => T,
3061 Related_Nod => N);
3062 end if;
3063
3064 Apply_Scalar_Range_Check (E, T);
3065 Apply_Static_Length_Check (E, T);
3066 end if;
3067
3068 -- If the No_Streams restriction is set, check that the type of the
3069 -- object is not, and does not contain, any subtype derived from
3070 -- Ada.Streams.Root_Stream_Type. Note that we guard the call to
3071 -- Has_Stream just for efficiency reasons. There is no point in
3072 -- spending time on a Has_Stream check if the restriction is not set.
3073
3074 if Restriction_Check_Required (No_Streams) then
3075 if Has_Stream (T) then
3076 Check_Restriction (No_Streams, N);
3077 end if;
3078 end if;
3079
3080 -- Deal with predicate check before we start to do major rewriting.
3081 -- it is OK to initialize and then check the initialized value, since
3082 -- the object goes out of scope if we get a predicate failure. Note
3083 -- that we do this in the analyzer and not the expander because the
3084 -- analyzer does some substantial rewriting in some cases.
3085
3086 -- We need a predicate check if the type has predicates, and if either
3087 -- there is an initializing expression, or for default initialization
3088 -- when we have at least one case of an explicit default initial value.
3089
3090 if not Suppress_Assignment_Checks (N)
3091 and then Present (Predicate_Function (T))
3092 and then
3093 (Present (E)
3094 or else
3095 Is_Partially_Initialized_Type (T, Include_Implicit => False))
3096 then
3097 Insert_After (N,
3098 Make_Predicate_Check (T, New_Occurrence_Of (Id, Loc)));
3099 end if;
3100
3101 -- Case of unconstrained type
3102
3103 if Is_Indefinite_Subtype (T) then
3104
3105 -- Nothing to do in deferred constant case
3106
3107 if Constant_Present (N) and then No (E) then
3108 null;
3109
3110 -- Case of no initialization present
3111
3112 elsif No (E) then
3113 if No_Initialization (N) then
3114 null;
3115
3116 elsif Is_Class_Wide_Type (T) then
3117 Error_Msg_N
3118 ("initialization required in class-wide declaration ", N);
3119
3120 else
3121 Error_Msg_N
3122 ("unconstrained subtype not allowed (need initialization)",
3123 Object_Definition (N));
3124
3125 if Is_Record_Type (T) and then Has_Discriminants (T) then
3126 Error_Msg_N
3127 ("\provide initial value or explicit discriminant values",
3128 Object_Definition (N));
3129
3130 Error_Msg_NE
3131 ("\or give default discriminant values for type&",
3132 Object_Definition (N), T);
3133
3134 elsif Is_Array_Type (T) then
3135 Error_Msg_N
3136 ("\provide initial value or explicit array bounds",
3137 Object_Definition (N));
3138 end if;
3139 end if;
3140
3141 -- Case of initialization present but in error. Set initial
3142 -- expression as absent (but do not make above complaints)
3143
3144 elsif E = Error then
3145 Set_Expression (N, Empty);
3146 E := Empty;
3147
3148 -- Case of initialization present
3149
3150 else
3151 -- Not allowed in Ada 83
3152
3153 if not Constant_Present (N) then
3154 if Ada_Version = Ada_83
3155 and then Comes_From_Source (Object_Definition (N))
3156 then
3157 Error_Msg_N
3158 ("(Ada 83) unconstrained variable not allowed",
3159 Object_Definition (N));
3160 end if;
3161 end if;
3162
3163 -- Now we constrain the variable from the initializing expression
3164
3165 -- If the expression is an aggregate, it has been expanded into
3166 -- individual assignments. Retrieve the actual type from the
3167 -- expanded construct.
3168
3169 if Is_Array_Type (T)
3170 and then No_Initialization (N)
3171 and then Nkind (Original_Node (E)) = N_Aggregate
3172 then
3173 Act_T := Etype (E);
3174
3175 -- In case of class-wide interface object declarations we delay
3176 -- the generation of the equivalent record type declarations until
3177 -- its expansion because there are cases in they are not required.
3178
3179 elsif Is_Interface (T) then
3180 null;
3181
3182 else
3183 Expand_Subtype_From_Expr (N, T, Object_Definition (N), E);
3184 Act_T := Find_Type_Of_Object (Object_Definition (N), N);
3185 end if;
3186
3187 Set_Is_Constr_Subt_For_U_Nominal (Act_T);
3188
3189 if Aliased_Present (N) then
3190 Set_Is_Constr_Subt_For_UN_Aliased (Act_T);
3191 end if;
3192
3193 Freeze_Before (N, Act_T);
3194 Freeze_Before (N, T);
3195 end if;
3196
3197 elsif Is_Array_Type (T)
3198 and then No_Initialization (N)
3199 and then Nkind (Original_Node (E)) = N_Aggregate
3200 then
3201 if not Is_Entity_Name (Object_Definition (N)) then
3202 Act_T := Etype (E);
3203 Check_Compile_Time_Size (Act_T);
3204
3205 if Aliased_Present (N) then
3206 Set_Is_Constr_Subt_For_UN_Aliased (Act_T);
3207 end if;
3208 end if;
3209
3210 -- When the given object definition and the aggregate are specified
3211 -- independently, and their lengths might differ do a length check.
3212 -- This cannot happen if the aggregate is of the form (others =>...)
3213
3214 if not Is_Constrained (T) then
3215 null;
3216
3217 elsif Nkind (E) = N_Raise_Constraint_Error then
3218
3219 -- Aggregate is statically illegal. Place back in declaration
3220
3221 Set_Expression (N, E);
3222 Set_No_Initialization (N, False);
3223
3224 elsif T = Etype (E) then
3225 null;
3226
3227 elsif Nkind (E) = N_Aggregate
3228 and then Present (Component_Associations (E))
3229 and then Present (Choices (First (Component_Associations (E))))
3230 and then Nkind (First
3231 (Choices (First (Component_Associations (E))))) = N_Others_Choice
3232 then
3233 null;
3234
3235 else
3236 Apply_Length_Check (E, T);
3237 end if;
3238
3239 -- If the type is limited unconstrained with defaulted discriminants and
3240 -- there is no expression, then the object is constrained by the
3241 -- defaults, so it is worthwhile building the corresponding subtype.
3242
3243 elsif (Is_Limited_Record (T) or else Is_Concurrent_Type (T))
3244 and then not Is_Constrained (T)
3245 and then Has_Discriminants (T)
3246 then
3247 if No (E) then
3248 Act_T := Build_Default_Subtype (T, N);
3249 else
3250 -- Ada 2005: a limited object may be initialized by means of an
3251 -- aggregate. If the type has default discriminants it has an
3252 -- unconstrained nominal type, Its actual subtype will be obtained
3253 -- from the aggregate, and not from the default discriminants.
3254
3255 Act_T := Etype (E);
3256 end if;
3257
3258 Rewrite (Object_Definition (N), New_Occurrence_Of (Act_T, Loc));
3259
3260 elsif Present (Underlying_Type (T))
3261 and then not Is_Constrained (Underlying_Type (T))
3262 and then Has_Discriminants (Underlying_Type (T))
3263 and then Nkind (E) = N_Function_Call
3264 and then Constant_Present (N)
3265 then
3266 -- The back-end has problems with constants of a discriminated type
3267 -- with defaults, if the initial value is a function call. We
3268 -- generate an intermediate temporary for the result of the call.
3269 -- It is unclear why this should make it acceptable to gcc. ???
3270
3271 Remove_Side_Effects (E);
3272 end if;
3273
3274 -- Check No_Wide_Characters restriction
3275
3276 Check_Wide_Character_Restriction (T, Object_Definition (N));
3277
3278 -- Indicate this is not set in source. Certainly true for constants,
3279 -- and true for variables so far (will be reset for a variable if and
3280 -- when we encounter a modification in the source).
3281
3282 Set_Never_Set_In_Source (Id, True);
3283
3284 -- Now establish the proper kind and type of the object
3285
3286 if Constant_Present (N) then
3287 Set_Ekind (Id, E_Constant);
3288 Set_Is_True_Constant (Id, True);
3289
3290 else
3291 Set_Ekind (Id, E_Variable);
3292
3293 -- A variable is set as shared passive if it appears in a shared
3294 -- passive package, and is at the outer level. This is not done
3295 -- for entities generated during expansion, because those are
3296 -- always manipulated locally.
3297
3298 if Is_Shared_Passive (Current_Scope)
3299 and then Is_Library_Level_Entity (Id)
3300 and then Comes_From_Source (Id)
3301 then
3302 Set_Is_Shared_Passive (Id);
3303 Check_Shared_Var (Id, T, N);
3304 end if;
3305
3306 -- Set Has_Initial_Value if initializing expression present. Note
3307 -- that if there is no initializing expression, we leave the state
3308 -- of this flag unchanged (usually it will be False, but notably in
3309 -- the case of exception choice variables, it will already be true).
3310
3311 if Present (E) then
3312 Set_Has_Initial_Value (Id, True);
3313 end if;
3314 end if;
3315
3316 -- Initialize alignment and size and capture alignment setting
3317
3318 Init_Alignment (Id);
3319 Init_Esize (Id);
3320 Set_Optimize_Alignment_Flags (Id);
3321
3322 -- Deal with aliased case
3323
3324 if Aliased_Present (N) then
3325 Set_Is_Aliased (Id);
3326
3327 -- If the object is aliased and the type is unconstrained with
3328 -- defaulted discriminants and there is no expression, then the
3329 -- object is constrained by the defaults, so it is worthwhile
3330 -- building the corresponding subtype.
3331
3332 -- Ada 2005 (AI-363): If the aliased object is discriminated and
3333 -- unconstrained, then only establish an actual subtype if the
3334 -- nominal subtype is indefinite. In definite cases the object is
3335 -- unconstrained in Ada 2005.
3336
3337 if No (E)
3338 and then Is_Record_Type (T)
3339 and then not Is_Constrained (T)
3340 and then Has_Discriminants (T)
3341 and then (Ada_Version < Ada_2005 or else Is_Indefinite_Subtype (T))
3342 then
3343 Set_Actual_Subtype (Id, Build_Default_Subtype (T, N));
3344 end if;
3345 end if;
3346
3347 -- Now we can set the type of the object
3348
3349 Set_Etype (Id, Act_T);
3350
3351 -- Deal with controlled types
3352
3353 if Has_Controlled_Component (Etype (Id))
3354 or else Is_Controlled (Etype (Id))
3355 then
3356 if not Is_Library_Level_Entity (Id) then
3357 Check_Restriction (No_Nested_Finalization, N);
3358 else
3359 Validate_Controlled_Object (Id);
3360 end if;
3361
3362 -- Generate a warning when an initialization causes an obvious ABE
3363 -- violation. If the init expression is a simple aggregate there
3364 -- shouldn't be any initialize/adjust call generated. This will be
3365 -- true as soon as aggregates are built in place when possible.
3366
3367 -- ??? at the moment we do not generate warnings for temporaries
3368 -- created for those aggregates although Program_Error might be
3369 -- generated if compiled with -gnato.
3370
3371 if Is_Controlled (Etype (Id))
3372 and then Comes_From_Source (Id)
3373 then
3374 declare
3375 BT : constant Entity_Id := Base_Type (Etype (Id));
3376
3377 Implicit_Call : Entity_Id;
3378 pragma Warnings (Off, Implicit_Call);
3379 -- ??? what is this for (never referenced!)
3380
3381 function Is_Aggr (N : Node_Id) return Boolean;
3382 -- Check that N is an aggregate
3383
3384 -------------
3385 -- Is_Aggr --
3386 -------------
3387
3388 function Is_Aggr (N : Node_Id) return Boolean is
3389 begin
3390 case Nkind (Original_Node (N)) is
3391 when N_Aggregate | N_Extension_Aggregate =>
3392 return True;
3393
3394 when N_Qualified_Expression |
3395 N_Type_Conversion |
3396 N_Unchecked_Type_Conversion =>
3397 return Is_Aggr (Expression (Original_Node (N)));
3398
3399 when others =>
3400 return False;
3401 end case;
3402 end Is_Aggr;
3403
3404 begin
3405 -- If no underlying type, we already are in an error situation.
3406 -- Do not try to add a warning since we do not have access to
3407 -- prim-op list.
3408
3409 if No (Underlying_Type (BT)) then
3410 Implicit_Call := Empty;
3411
3412 -- A generic type does not have usable primitive operators.
3413 -- Initialization calls are built for instances.
3414
3415 elsif Is_Generic_Type (BT) then
3416 Implicit_Call := Empty;
3417
3418 -- If the init expression is not an aggregate, an adjust call
3419 -- will be generated
3420
3421 elsif Present (E) and then not Is_Aggr (E) then
3422 Implicit_Call := Find_Prim_Op (BT, Name_Adjust);
3423
3424 -- If no init expression and we are not in the deferred
3425 -- constant case, an Initialize call will be generated
3426
3427 elsif No (E) and then not Constant_Present (N) then
3428 Implicit_Call := Find_Prim_Op (BT, Name_Initialize);
3429
3430 else
3431 Implicit_Call := Empty;
3432 end if;
3433 end;
3434 end if;
3435 end if;
3436
3437 if Has_Task (Etype (Id)) then
3438 Check_Restriction (No_Tasking, N);
3439
3440 -- Deal with counting max tasks
3441
3442 -- Nothing to do if inside a generic
3443
3444 if Inside_A_Generic then
3445 null;
3446
3447 -- If library level entity, then count tasks
3448
3449 elsif Is_Library_Level_Entity (Id) then
3450 Check_Restriction (Max_Tasks, N, Count_Tasks (Etype (Id)));
3451
3452 -- If not library level entity, then indicate we don't know max
3453 -- tasks and also check task hierarchy restriction and blocking
3454 -- operation (since starting a task is definitely blocking!)
3455
3456 else
3457 Check_Restriction (Max_Tasks, N);
3458 Check_Restriction (No_Task_Hierarchy, N);
3459 Check_Potentially_Blocking_Operation (N);
3460 end if;
3461
3462 -- A rather specialized test. If we see two tasks being declared
3463 -- of the same type in the same object declaration, and the task
3464 -- has an entry with an address clause, we know that program error
3465 -- will be raised at run time since we can't have two tasks with
3466 -- entries at the same address.
3467
3468 if Is_Task_Type (Etype (Id)) and then More_Ids (N) then
3469 declare
3470 E : Entity_Id;
3471
3472 begin
3473 E := First_Entity (Etype (Id));
3474 while Present (E) loop
3475 if Ekind (E) = E_Entry
3476 and then Present (Get_Attribute_Definition_Clause
3477 (E, Attribute_Address))
3478 then
3479 Error_Msg_N
3480 ("?more than one task with same entry address", N);
3481 Error_Msg_N
3482 ("\?Program_Error will be raised at run time", N);
3483 Insert_Action (N,
3484 Make_Raise_Program_Error (Loc,
3485 Reason => PE_Duplicated_Entry_Address));
3486 exit;
3487 end if;
3488
3489 Next_Entity (E);
3490 end loop;
3491 end;
3492 end if;
3493 end if;
3494
3495 -- Some simple constant-propagation: if the expression is a constant
3496 -- string initialized with a literal, share the literal. This avoids
3497 -- a run-time copy.
3498
3499 if Present (E)
3500 and then Is_Entity_Name (E)
3501 and then Ekind (Entity (E)) = E_Constant
3502 and then Base_Type (Etype (E)) = Standard_String
3503 then
3504 declare
3505 Val : constant Node_Id := Constant_Value (Entity (E));
3506 begin
3507 if Present (Val)
3508 and then Nkind (Val) = N_String_Literal
3509 then
3510 Rewrite (E, New_Copy (Val));
3511 end if;
3512 end;
3513 end if;
3514
3515 -- Another optimization: if the nominal subtype is unconstrained and
3516 -- the expression is a function call that returns an unconstrained
3517 -- type, rewrite the declaration as a renaming of the result of the
3518 -- call. The exceptions below are cases where the copy is expected,
3519 -- either by the back end (Aliased case) or by the semantics, as for
3520 -- initializing controlled types or copying tags for classwide types.
3521
3522 if Present (E)
3523 and then Nkind (E) = N_Explicit_Dereference
3524 and then Nkind (Original_Node (E)) = N_Function_Call
3525 and then not Is_Library_Level_Entity (Id)
3526 and then not Is_Constrained (Underlying_Type (T))
3527 and then not Is_Aliased (Id)
3528 and then not Is_Class_Wide_Type (T)
3529 and then not Is_Controlled (T)
3530 and then not Has_Controlled_Component (Base_Type (T))
3531 and then Expander_Active
3532 then
3533 Rewrite (N,
3534 Make_Object_Renaming_Declaration (Loc,
3535 Defining_Identifier => Id,
3536 Access_Definition => Empty,
3537 Subtype_Mark => New_Occurrence_Of
3538 (Base_Type (Etype (Id)), Loc),
3539 Name => E));
3540
3541 Set_Renamed_Object (Id, E);
3542
3543 -- Force generation of debugging information for the constant and for
3544 -- the renamed function call.
3545
3546 Set_Debug_Info_Needed (Id);
3547 Set_Debug_Info_Needed (Entity (Prefix (E)));
3548 end if;
3549
3550 if Present (Prev_Entity)
3551 and then Is_Frozen (Prev_Entity)
3552 and then not Error_Posted (Id)
3553 then
3554 Error_Msg_N ("full constant declaration appears too late", N);
3555 end if;
3556
3557 Check_Eliminated (Id);
3558
3559 -- Deal with setting In_Private_Part flag if in private part
3560
3561 if Ekind (Scope (Id)) = E_Package
3562 and then In_Private_Part (Scope (Id))
3563 then
3564 Set_In_Private_Part (Id);
3565 end if;
3566
3567 -- Check for violation of No_Local_Timing_Events
3568
3569 if Is_RTE (Etype (Id), RE_Timing_Event)
3570 and then not Is_Library_Level_Entity (Id)
3571 then
3572 Check_Restriction (No_Local_Timing_Events, N);
3573 end if;
3574
3575 <<Leave>>
3576 Analyze_Aspect_Specifications (N, Id, Aspect_Specifications (N));
3577 end Analyze_Object_Declaration;
3578
3579 ---------------------------
3580 -- Analyze_Others_Choice --
3581 ---------------------------
3582
3583 -- Nothing to do for the others choice node itself, the semantic analysis
3584 -- of the others choice will occur as part of the processing of the parent
3585
3586 procedure Analyze_Others_Choice (N : Node_Id) is
3587 pragma Warnings (Off, N);
3588 begin
3589 null;
3590 end Analyze_Others_Choice;
3591
3592 -------------------------------------------
3593 -- Analyze_Private_Extension_Declaration --
3594 -------------------------------------------
3595
3596 procedure Analyze_Private_Extension_Declaration (N : Node_Id) is
3597 T : constant Entity_Id := Defining_Identifier (N);
3598 Indic : constant Node_Id := Subtype_Indication (N);
3599 Parent_Type : Entity_Id;
3600 Parent_Base : Entity_Id;
3601
3602 begin
3603 -- Ada 2005 (AI-251): Decorate all names in list of ancestor interfaces
3604
3605 if Is_Non_Empty_List (Interface_List (N)) then
3606 declare
3607 Intf : Node_Id;
3608 T : Entity_Id;
3609
3610 begin
3611 Intf := First (Interface_List (N));
3612 while Present (Intf) loop
3613 T := Find_Type_Of_Subtype_Indic (Intf);
3614
3615 Diagnose_Interface (Intf, T);
3616 Next (Intf);
3617 end loop;
3618 end;
3619 end if;
3620
3621 Generate_Definition (T);
3622
3623 -- For other than Ada 2012, just enter the name in the current scope
3624
3625 if Ada_Version < Ada_2012 then
3626 Enter_Name (T);
3627
3628 -- Ada 2012 (AI05-0162): Enter the name in the current scope handling
3629 -- case of private type that completes an incomplete type.
3630
3631 else
3632 declare
3633 Prev : Entity_Id;
3634
3635 begin
3636 Prev := Find_Type_Name (N);
3637
3638 pragma Assert (Prev = T
3639 or else (Ekind (Prev) = E_Incomplete_Type
3640 and then Present (Full_View (Prev))
3641 and then Full_View (Prev) = T));
3642 end;
3643 end if;
3644
3645 Parent_Type := Find_Type_Of_Subtype_Indic (Indic);
3646 Parent_Base := Base_Type (Parent_Type);
3647
3648 if Parent_Type = Any_Type
3649 or else Etype (Parent_Type) = Any_Type
3650 then
3651 Set_Ekind (T, Ekind (Parent_Type));
3652 Set_Etype (T, Any_Type);
3653 goto Leave;
3654
3655 elsif not Is_Tagged_Type (Parent_Type) then
3656 Error_Msg_N
3657 ("parent of type extension must be a tagged type ", Indic);
3658 goto Leave;
3659
3660 elsif Ekind_In (Parent_Type, E_Void, E_Incomplete_Type) then
3661 Error_Msg_N ("premature derivation of incomplete type", Indic);
3662 goto Leave;
3663
3664 elsif Is_Concurrent_Type (Parent_Type) then
3665 Error_Msg_N
3666 ("parent type of a private extension cannot be "
3667 & "a synchronized tagged type (RM 3.9.1 (3/1))", N);
3668
3669 Set_Etype (T, Any_Type);
3670 Set_Ekind (T, E_Limited_Private_Type);
3671 Set_Private_Dependents (T, New_Elmt_List);
3672 Set_Error_Posted (T);
3673 goto Leave;
3674 end if;
3675
3676 -- Perhaps the parent type should be changed to the class-wide type's
3677 -- specific type in this case to prevent cascading errors ???
3678
3679 if Is_Class_Wide_Type (Parent_Type) then
3680 Error_Msg_N
3681 ("parent of type extension must not be a class-wide type", Indic);
3682 goto Leave;
3683 end if;
3684
3685 if (not Is_Package_Or_Generic_Package (Current_Scope)
3686 and then Nkind (Parent (N)) /= N_Generic_Subprogram_Declaration)
3687 or else In_Private_Part (Current_Scope)
3688
3689 then
3690 Error_Msg_N ("invalid context for private extension", N);
3691 end if;
3692
3693 -- Set common attributes
3694
3695 Set_Is_Pure (T, Is_Pure (Current_Scope));
3696 Set_Scope (T, Current_Scope);
3697 Set_Ekind (T, E_Record_Type_With_Private);
3698 Init_Size_Align (T);
3699
3700 Set_Etype (T, Parent_Base);
3701 Set_Has_Task (T, Has_Task (Parent_Base));
3702
3703 Set_Convention (T, Convention (Parent_Type));
3704 Set_First_Rep_Item (T, First_Rep_Item (Parent_Type));
3705 Set_Is_First_Subtype (T);
3706 Make_Class_Wide_Type (T);
3707
3708 if Unknown_Discriminants_Present (N) then
3709 Set_Discriminant_Constraint (T, No_Elist);
3710 end if;
3711
3712 Build_Derived_Record_Type (N, Parent_Type, T);
3713
3714 -- Ada 2005 (AI-443): Synchronized private extension or a rewritten
3715 -- synchronized formal derived type.
3716
3717 if Ada_Version >= Ada_2005
3718 and then Synchronized_Present (N)
3719 then
3720 Set_Is_Limited_Record (T);
3721
3722 -- Formal derived type case
3723
3724 if Is_Generic_Type (T) then
3725
3726 -- The parent must be a tagged limited type or a synchronized
3727 -- interface.
3728
3729 if (not Is_Tagged_Type (Parent_Type)
3730 or else not Is_Limited_Type (Parent_Type))
3731 and then
3732 (not Is_Interface (Parent_Type)
3733 or else not Is_Synchronized_Interface (Parent_Type))
3734 then
3735 Error_Msg_NE ("parent type of & must be tagged limited " &
3736 "or synchronized", N, T);
3737 end if;
3738
3739 -- The progenitors (if any) must be limited or synchronized
3740 -- interfaces.
3741
3742 if Present (Interfaces (T)) then
3743 declare
3744 Iface : Entity_Id;
3745 Iface_Elmt : Elmt_Id;
3746
3747 begin
3748 Iface_Elmt := First_Elmt (Interfaces (T));
3749 while Present (Iface_Elmt) loop
3750 Iface := Node (Iface_Elmt);
3751
3752 if not Is_Limited_Interface (Iface)
3753 and then not Is_Synchronized_Interface (Iface)
3754 then
3755 Error_Msg_NE ("progenitor & must be limited " &
3756 "or synchronized", N, Iface);
3757 end if;
3758
3759 Next_Elmt (Iface_Elmt);
3760 end loop;
3761 end;
3762 end if;
3763
3764 -- Regular derived extension, the parent must be a limited or
3765 -- synchronized interface.
3766
3767 else
3768 if not Is_Interface (Parent_Type)
3769 or else (not Is_Limited_Interface (Parent_Type)
3770 and then
3771 not Is_Synchronized_Interface (Parent_Type))
3772 then
3773 Error_Msg_NE
3774 ("parent type of & must be limited interface", N, T);
3775 end if;
3776 end if;
3777
3778 -- A consequence of 3.9.4 (6/2) and 7.3 (7.2/2) is that a private
3779 -- extension with a synchronized parent must be explicitly declared
3780 -- synchronized, because the full view will be a synchronized type.
3781 -- This must be checked before the check for limited types below,
3782 -- to ensure that types declared limited are not allowed to extend
3783 -- synchronized interfaces.
3784
3785 elsif Is_Interface (Parent_Type)
3786 and then Is_Synchronized_Interface (Parent_Type)
3787 and then not Synchronized_Present (N)
3788 then
3789 Error_Msg_NE
3790 ("private extension of& must be explicitly synchronized",
3791 N, Parent_Type);
3792
3793 elsif Limited_Present (N) then
3794 Set_Is_Limited_Record (T);
3795
3796 if not Is_Limited_Type (Parent_Type)
3797 and then
3798 (not Is_Interface (Parent_Type)
3799 or else not Is_Limited_Interface (Parent_Type))
3800 then
3801 Error_Msg_NE ("parent type& of limited extension must be limited",
3802 N, Parent_Type);
3803 end if;
3804 end if;
3805
3806 <<Leave>>
3807 Analyze_Aspect_Specifications (N, T, Aspect_Specifications (N));
3808 end Analyze_Private_Extension_Declaration;
3809
3810 ---------------------------------
3811 -- Analyze_Subtype_Declaration --
3812 ---------------------------------
3813
3814 procedure Analyze_Subtype_Declaration
3815 (N : Node_Id;
3816 Skip : Boolean := False)
3817 is
3818 Id : constant Entity_Id := Defining_Identifier (N);
3819 T : Entity_Id;
3820 R_Checks : Check_Result;
3821
3822 begin
3823 Generate_Definition (Id);
3824 Set_Is_Pure (Id, Is_Pure (Current_Scope));
3825 Init_Size_Align (Id);
3826
3827 -- The following guard condition on Enter_Name is to handle cases where
3828 -- the defining identifier has already been entered into the scope but
3829 -- the declaration as a whole needs to be analyzed.
3830
3831 -- This case in particular happens for derived enumeration types. The
3832 -- derived enumeration type is processed as an inserted enumeration type
3833 -- declaration followed by a rewritten subtype declaration. The defining
3834 -- identifier, however, is entered into the name scope very early in the
3835 -- processing of the original type declaration and therefore needs to be
3836 -- avoided here, when the created subtype declaration is analyzed. (See
3837 -- Build_Derived_Types)
3838
3839 -- This also happens when the full view of a private type is derived
3840 -- type with constraints. In this case the entity has been introduced
3841 -- in the private declaration.
3842
3843 if Skip
3844 or else (Present (Etype (Id))
3845 and then (Is_Private_Type (Etype (Id))
3846 or else Is_Task_Type (Etype (Id))
3847 or else Is_Rewrite_Substitution (N)))
3848 then
3849 null;
3850
3851 else
3852 Enter_Name (Id);
3853 end if;
3854
3855 T := Process_Subtype (Subtype_Indication (N), N, Id, 'P');
3856
3857 -- Inherit common attributes
3858
3859 Set_Is_Generic_Type (Id, Is_Generic_Type (Base_Type (T)));
3860 Set_Is_Volatile (Id, Is_Volatile (T));
3861 Set_Treat_As_Volatile (Id, Treat_As_Volatile (T));
3862 Set_Is_Atomic (Id, Is_Atomic (T));
3863 Set_Is_Ada_2005_Only (Id, Is_Ada_2005_Only (T));
3864 Set_Is_Ada_2012_Only (Id, Is_Ada_2012_Only (T));
3865 Set_Convention (Id, Convention (T));
3866
3867 -- If ancestor has predicates then so does the subtype, and in addition
3868 -- we must delay the freeze to properly arrange predicate inheritance.
3869
3870 -- The Ancestor_Type test is a big kludge, there seem to be cases in
3871 -- which T = ID, so the above tests and assignments do nothing???
3872
3873 if Has_Predicates (T)
3874 or else (Present (Ancestor_Subtype (T))
3875 and then Has_Predicates (Ancestor_Subtype (T)))
3876 then
3877 Set_Has_Predicates (Id);
3878 Set_Has_Delayed_Freeze (Id);
3879 end if;
3880
3881 -- In the case where there is no constraint given in the subtype
3882 -- indication, Process_Subtype just returns the Subtype_Mark, so its
3883 -- semantic attributes must be established here.
3884
3885 if Nkind (Subtype_Indication (N)) /= N_Subtype_Indication then
3886 Set_Etype (Id, Base_Type (T));
3887
3888 case Ekind (T) is
3889 when Array_Kind =>
3890 Set_Ekind (Id, E_Array_Subtype);
3891 Copy_Array_Subtype_Attributes (Id, T);
3892
3893 when Decimal_Fixed_Point_Kind =>
3894 Set_Ekind (Id, E_Decimal_Fixed_Point_Subtype);
3895 Set_Digits_Value (Id, Digits_Value (T));
3896 Set_Delta_Value (Id, Delta_Value (T));
3897 Set_Scale_Value (Id, Scale_Value (T));
3898 Set_Small_Value (Id, Small_Value (T));
3899 Set_Scalar_Range (Id, Scalar_Range (T));
3900 Set_Machine_Radix_10 (Id, Machine_Radix_10 (T));
3901 Set_Is_Constrained (Id, Is_Constrained (T));
3902 Set_Is_Known_Valid (Id, Is_Known_Valid (T));
3903 Set_RM_Size (Id, RM_Size (T));
3904
3905 when Enumeration_Kind =>
3906 Set_Ekind (Id, E_Enumeration_Subtype);
3907 Set_First_Literal (Id, First_Literal (Base_Type (T)));
3908 Set_Scalar_Range (Id, Scalar_Range (T));
3909 Set_Is_Character_Type (Id, Is_Character_Type (T));
3910 Set_Is_Constrained (Id, Is_Constrained (T));
3911 Set_Is_Known_Valid (Id, Is_Known_Valid (T));
3912 Set_RM_Size (Id, RM_Size (T));
3913
3914 when Ordinary_Fixed_Point_Kind =>
3915 Set_Ekind (Id, E_Ordinary_Fixed_Point_Subtype);
3916 Set_Scalar_Range (Id, Scalar_Range (T));
3917 Set_Small_Value (Id, Small_Value (T));
3918 Set_Delta_Value (Id, Delta_Value (T));
3919 Set_Is_Constrained (Id, Is_Constrained (T));
3920 Set_Is_Known_Valid (Id, Is_Known_Valid (T));
3921 Set_RM_Size (Id, RM_Size (T));
3922
3923 when Float_Kind =>
3924 Set_Ekind (Id, E_Floating_Point_Subtype);
3925 Set_Scalar_Range (Id, Scalar_Range (T));
3926 Set_Digits_Value (Id, Digits_Value (T));
3927 Set_Is_Constrained (Id, Is_Constrained (T));
3928
3929 when Signed_Integer_Kind =>
3930 Set_Ekind (Id, E_Signed_Integer_Subtype);
3931 Set_Scalar_Range (Id, Scalar_Range (T));
3932 Set_Is_Constrained (Id, Is_Constrained (T));
3933 Set_Is_Known_Valid (Id, Is_Known_Valid (T));
3934 Set_RM_Size (Id, RM_Size (T));
3935
3936 when Modular_Integer_Kind =>
3937 Set_Ekind (Id, E_Modular_Integer_Subtype);
3938 Set_Scalar_Range (Id, Scalar_Range (T));
3939 Set_Is_Constrained (Id, Is_Constrained (T));
3940 Set_Is_Known_Valid (Id, Is_Known_Valid (T));
3941 Set_RM_Size (Id, RM_Size (T));
3942
3943 when Class_Wide_Kind =>
3944 Set_Ekind (Id, E_Class_Wide_Subtype);
3945 Set_First_Entity (Id, First_Entity (T));
3946 Set_Last_Entity (Id, Last_Entity (T));
3947 Set_Class_Wide_Type (Id, Class_Wide_Type (T));
3948 Set_Cloned_Subtype (Id, T);
3949 Set_Is_Tagged_Type (Id, True);
3950 Set_Has_Unknown_Discriminants
3951 (Id, True);
3952
3953 if Ekind (T) = E_Class_Wide_Subtype then
3954 Set_Equivalent_Type (Id, Equivalent_Type (T));
3955 end if;
3956
3957 when E_Record_Type | E_Record_Subtype =>
3958 Set_Ekind (Id, E_Record_Subtype);
3959
3960 if Ekind (T) = E_Record_Subtype
3961 and then Present (Cloned_Subtype (T))
3962 then
3963 Set_Cloned_Subtype (Id, Cloned_Subtype (T));
3964 else
3965 Set_Cloned_Subtype (Id, T);
3966 end if;
3967
3968 Set_First_Entity (Id, First_Entity (T));
3969 Set_Last_Entity (Id, Last_Entity (T));
3970 Set_Has_Discriminants (Id, Has_Discriminants (T));
3971 Set_Is_Constrained (Id, Is_Constrained (T));
3972 Set_Is_Limited_Record (Id, Is_Limited_Record (T));
3973 Set_Has_Unknown_Discriminants
3974 (Id, Has_Unknown_Discriminants (T));
3975
3976 if Has_Discriminants (T) then
3977 Set_Discriminant_Constraint
3978 (Id, Discriminant_Constraint (T));
3979 Set_Stored_Constraint_From_Discriminant_Constraint (Id);
3980
3981 elsif Has_Unknown_Discriminants (Id) then
3982 Set_Discriminant_Constraint (Id, No_Elist);
3983 end if;
3984
3985 if Is_Tagged_Type (T) then
3986 Set_Is_Tagged_Type (Id);
3987 Set_Is_Abstract_Type (Id, Is_Abstract_Type (T));
3988 Set_Direct_Primitive_Operations
3989 (Id, Direct_Primitive_Operations (T));
3990 Set_Class_Wide_Type (Id, Class_Wide_Type (T));
3991
3992 if Is_Interface (T) then
3993 Set_Is_Interface (Id);
3994 Set_Is_Limited_Interface (Id, Is_Limited_Interface (T));
3995 end if;
3996 end if;
3997
3998 when Private_Kind =>
3999 Set_Ekind (Id, Subtype_Kind (Ekind (T)));
4000 Set_Has_Discriminants (Id, Has_Discriminants (T));
4001 Set_Is_Constrained (Id, Is_Constrained (T));
4002 Set_First_Entity (Id, First_Entity (T));
4003 Set_Last_Entity (Id, Last_Entity (T));
4004 Set_Private_Dependents (Id, New_Elmt_List);
4005 Set_Is_Limited_Record (Id, Is_Limited_Record (T));
4006 Set_Has_Unknown_Discriminants
4007 (Id, Has_Unknown_Discriminants (T));
4008 Set_Known_To_Have_Preelab_Init
4009 (Id, Known_To_Have_Preelab_Init (T));
4010
4011 if Is_Tagged_Type (T) then
4012 Set_Is_Tagged_Type (Id);
4013 Set_Is_Abstract_Type (Id, Is_Abstract_Type (T));
4014 Set_Class_Wide_Type (Id, Class_Wide_Type (T));
4015 Set_Direct_Primitive_Operations (Id,
4016 Direct_Primitive_Operations (T));
4017 end if;
4018
4019 -- In general the attributes of the subtype of a private type
4020 -- are the attributes of the partial view of parent. However,
4021 -- the full view may be a discriminated type, and the subtype
4022 -- must share the discriminant constraint to generate correct
4023 -- calls to initialization procedures.
4024
4025 if Has_Discriminants (T) then
4026 Set_Discriminant_Constraint
4027 (Id, Discriminant_Constraint (T));
4028 Set_Stored_Constraint_From_Discriminant_Constraint (Id);
4029
4030 elsif Present (Full_View (T))
4031 and then Has_Discriminants (Full_View (T))
4032 then
4033 Set_Discriminant_Constraint
4034 (Id, Discriminant_Constraint (Full_View (T)));
4035 Set_Stored_Constraint_From_Discriminant_Constraint (Id);
4036
4037 -- This would seem semantically correct, but apparently
4038 -- confuses the back-end. To be explained and checked with
4039 -- current version ???
4040
4041 -- Set_Has_Discriminants (Id);
4042 end if;
4043
4044 Prepare_Private_Subtype_Completion (Id, N);
4045
4046 when Access_Kind =>
4047 Set_Ekind (Id, E_Access_Subtype);
4048 Set_Is_Constrained (Id, Is_Constrained (T));
4049 Set_Is_Access_Constant
4050 (Id, Is_Access_Constant (T));
4051 Set_Directly_Designated_Type
4052 (Id, Designated_Type (T));
4053 Set_Can_Never_Be_Null (Id, Can_Never_Be_Null (T));
4054
4055 -- A Pure library_item must not contain the declaration of a
4056 -- named access type, except within a subprogram, generic
4057 -- subprogram, task unit, or protected unit, or if it has
4058 -- a specified Storage_Size of zero (RM05-10.2.1(15.4-15.5)).
4059
4060 if Comes_From_Source (Id)
4061 and then In_Pure_Unit
4062 and then not In_Subprogram_Task_Protected_Unit
4063 and then not No_Pool_Assigned (Id)
4064 then
4065 Error_Msg_N
4066 ("named access types not allowed in pure unit", N);
4067 end if;
4068
4069 when Concurrent_Kind =>
4070 Set_Ekind (Id, Subtype_Kind (Ekind (T)));
4071 Set_Corresponding_Record_Type (Id,
4072 Corresponding_Record_Type (T));
4073 Set_First_Entity (Id, First_Entity (T));
4074 Set_First_Private_Entity (Id, First_Private_Entity (T));
4075 Set_Has_Discriminants (Id, Has_Discriminants (T));
4076 Set_Is_Constrained (Id, Is_Constrained (T));
4077 Set_Is_Tagged_Type (Id, Is_Tagged_Type (T));
4078 Set_Last_Entity (Id, Last_Entity (T));
4079
4080 if Has_Discriminants (T) then
4081 Set_Discriminant_Constraint (Id,
4082 Discriminant_Constraint (T));
4083 Set_Stored_Constraint_From_Discriminant_Constraint (Id);
4084 end if;
4085
4086 when E_Incomplete_Type =>
4087 if Ada_Version >= Ada_2005 then
4088 Set_Ekind (Id, E_Incomplete_Subtype);
4089
4090 -- Ada 2005 (AI-412): Decorate an incomplete subtype
4091 -- of an incomplete type visible through a limited
4092 -- with clause.
4093
4094 if From_With_Type (T)
4095 and then Present (Non_Limited_View (T))
4096 then
4097 Set_From_With_Type (Id);
4098 Set_Non_Limited_View (Id, Non_Limited_View (T));
4099
4100 -- Ada 2005 (AI-412): Add the regular incomplete subtype
4101 -- to the private dependents of the original incomplete
4102 -- type for future transformation.
4103
4104 else
4105 Append_Elmt (Id, Private_Dependents (T));
4106 end if;
4107
4108 -- If the subtype name denotes an incomplete type an error
4109 -- was already reported by Process_Subtype.
4110
4111 else
4112 Set_Etype (Id, Any_Type);
4113 end if;
4114
4115 when others =>
4116 raise Program_Error;
4117 end case;
4118 end if;
4119
4120 if Etype (Id) = Any_Type then
4121 goto Leave;
4122 end if;
4123
4124 -- Some common processing on all types
4125
4126 Set_Size_Info (Id, T);
4127 Set_First_Rep_Item (Id, First_Rep_Item (T));
4128
4129 T := Etype (Id);
4130
4131 Set_Is_Immediately_Visible (Id, True);
4132 Set_Depends_On_Private (Id, Has_Private_Component (T));
4133 Set_Is_Descendent_Of_Address (Id, Is_Descendent_Of_Address (T));
4134
4135 if Is_Interface (T) then
4136 Set_Is_Interface (Id);
4137 end if;
4138
4139 if Present (Generic_Parent_Type (N))
4140 and then
4141 (Nkind
4142 (Parent (Generic_Parent_Type (N))) /= N_Formal_Type_Declaration
4143 or else Nkind
4144 (Formal_Type_Definition (Parent (Generic_Parent_Type (N))))
4145 /= N_Formal_Private_Type_Definition)
4146 then
4147 if Is_Tagged_Type (Id) then
4148
4149 -- If this is a generic actual subtype for a synchronized type,
4150 -- the primitive operations are those of the corresponding record
4151 -- for which there is a separate subtype declaration.
4152
4153 if Is_Concurrent_Type (Id) then
4154 null;
4155 elsif Is_Class_Wide_Type (Id) then
4156 Derive_Subprograms (Generic_Parent_Type (N), Id, Etype (T));
4157 else
4158 Derive_Subprograms (Generic_Parent_Type (N), Id, T);
4159 end if;
4160
4161 elsif Scope (Etype (Id)) /= Standard_Standard then
4162 Derive_Subprograms (Generic_Parent_Type (N), Id);
4163 end if;
4164 end if;
4165
4166 if Is_Private_Type (T)
4167 and then Present (Full_View (T))
4168 then
4169 Conditional_Delay (Id, Full_View (T));
4170
4171 -- The subtypes of components or subcomponents of protected types
4172 -- do not need freeze nodes, which would otherwise appear in the
4173 -- wrong scope (before the freeze node for the protected type). The
4174 -- proper subtypes are those of the subcomponents of the corresponding
4175 -- record.
4176
4177 elsif Ekind (Scope (Id)) /= E_Protected_Type
4178 and then Present (Scope (Scope (Id))) -- error defense!
4179 and then Ekind (Scope (Scope (Id))) /= E_Protected_Type
4180 then
4181 Conditional_Delay (Id, T);
4182 end if;
4183
4184 -- Check that constraint_error is raised for a scalar subtype
4185 -- indication when the lower or upper bound of a non-null range
4186 -- lies outside the range of the type mark.
4187
4188 if Nkind (Subtype_Indication (N)) = N_Subtype_Indication then
4189 if Is_Scalar_Type (Etype (Id))
4190 and then Scalar_Range (Id) /=
4191 Scalar_Range (Etype (Subtype_Mark
4192 (Subtype_Indication (N))))
4193 then
4194 Apply_Range_Check
4195 (Scalar_Range (Id),
4196 Etype (Subtype_Mark (Subtype_Indication (N))));
4197
4198 elsif Is_Array_Type (Etype (Id))
4199 and then Present (First_Index (Id))
4200 then
4201 -- This really should be a subprogram that finds the indications
4202 -- to check???
4203
4204 if ((Nkind (First_Index (Id)) = N_Identifier
4205 and then Ekind (Entity (First_Index (Id))) in Scalar_Kind)
4206 or else Nkind (First_Index (Id)) = N_Subtype_Indication)
4207 and then
4208 Nkind (Scalar_Range (Etype (First_Index (Id)))) = N_Range
4209 then
4210 declare
4211 Target_Typ : constant Entity_Id :=
4212 Etype
4213 (First_Index (Etype
4214 (Subtype_Mark (Subtype_Indication (N)))));
4215 begin
4216 R_Checks :=
4217 Get_Range_Checks
4218 (Scalar_Range (Etype (First_Index (Id))),
4219 Target_Typ,
4220 Etype (First_Index (Id)),
4221 Defining_Identifier (N));
4222
4223 Insert_Range_Checks
4224 (R_Checks,
4225 N,
4226 Target_Typ,
4227 Sloc (Defining_Identifier (N)));
4228 end;
4229 end if;
4230 end if;
4231 end if;
4232
4233 -- Make sure that generic actual types are properly frozen. The subtype
4234 -- is marked as a generic actual type when the enclosing instance is
4235 -- analyzed, so here we identify the subtype from the tree structure.
4236
4237 if Expander_Active
4238 and then Is_Generic_Actual_Type (Id)
4239 and then In_Instance
4240 and then not Comes_From_Source (N)
4241 and then Nkind (Subtype_Indication (N)) /= N_Subtype_Indication
4242 and then Is_Frozen (T)
4243 then
4244 Freeze_Before (N, Id);
4245 end if;
4246
4247 Set_Optimize_Alignment_Flags (Id);
4248 Check_Eliminated (Id);
4249
4250 <<Leave>>
4251 Analyze_Aspect_Specifications (N, Id, Aspect_Specifications (N));
4252 end Analyze_Subtype_Declaration;
4253
4254 --------------------------------
4255 -- Analyze_Subtype_Indication --
4256 --------------------------------
4257
4258 procedure Analyze_Subtype_Indication (N : Node_Id) is
4259 T : constant Entity_Id := Subtype_Mark (N);
4260 R : constant Node_Id := Range_Expression (Constraint (N));
4261
4262 begin
4263 Analyze (T);
4264
4265 if R /= Error then
4266 Analyze (R);
4267 Set_Etype (N, Etype (R));
4268 Resolve (R, Entity (T));
4269 else
4270 Set_Error_Posted (R);
4271 Set_Error_Posted (T);
4272 end if;
4273 end Analyze_Subtype_Indication;
4274
4275 --------------------------
4276 -- Analyze_Variant_Part --
4277 --------------------------
4278
4279 procedure Analyze_Variant_Part (N : Node_Id) is
4280
4281 procedure Non_Static_Choice_Error (Choice : Node_Id);
4282 -- Error routine invoked by the generic instantiation below when the
4283 -- variant part has a non static choice.
4284
4285 procedure Process_Declarations (Variant : Node_Id);
4286 -- Analyzes all the declarations associated with a Variant. Needed by
4287 -- the generic instantiation below.
4288
4289 package Variant_Choices_Processing is new
4290 Generic_Choices_Processing
4291 (Get_Alternatives => Variants,
4292 Get_Choices => Discrete_Choices,
4293 Process_Empty_Choice => No_OP,
4294 Process_Non_Static_Choice => Non_Static_Choice_Error,
4295 Process_Associated_Node => Process_Declarations);
4296 use Variant_Choices_Processing;
4297 -- Instantiation of the generic choice processing package
4298
4299 -----------------------------
4300 -- Non_Static_Choice_Error --
4301 -----------------------------
4302
4303 procedure Non_Static_Choice_Error (Choice : Node_Id) is
4304 begin
4305 Flag_Non_Static_Expr
4306 ("choice given in variant part is not static!", Choice);
4307 end Non_Static_Choice_Error;
4308
4309 --------------------------
4310 -- Process_Declarations --
4311 --------------------------
4312
4313 procedure Process_Declarations (Variant : Node_Id) is
4314 begin
4315 if not Null_Present (Component_List (Variant)) then
4316 Analyze_Declarations (Component_Items (Component_List (Variant)));
4317
4318 if Present (Variant_Part (Component_List (Variant))) then
4319 Analyze (Variant_Part (Component_List (Variant)));
4320 end if;
4321 end if;
4322 end Process_Declarations;
4323
4324 -- Local Variables
4325
4326 Discr_Name : Node_Id;
4327 Discr_Type : Entity_Id;
4328
4329 Dont_Care : Boolean;
4330 Others_Present : Boolean := False;
4331
4332 pragma Warnings (Off, Dont_Care);
4333 pragma Warnings (Off, Others_Present);
4334 -- We don't care about the assigned values of any of these
4335
4336 -- Start of processing for Analyze_Variant_Part
4337
4338 begin
4339 Discr_Name := Name (N);
4340 Analyze (Discr_Name);
4341
4342 -- If Discr_Name bad, get out (prevent cascaded errors)
4343
4344 if Etype (Discr_Name) = Any_Type then
4345 return;
4346 end if;
4347
4348 -- Check invalid discriminant in variant part
4349
4350 if Ekind (Entity (Discr_Name)) /= E_Discriminant then
4351 Error_Msg_N ("invalid discriminant name in variant part", Discr_Name);
4352 end if;
4353
4354 Discr_Type := Etype (Entity (Discr_Name));
4355
4356 if not Is_Discrete_Type (Discr_Type) then
4357 Error_Msg_N
4358 ("discriminant in a variant part must be of a discrete type",
4359 Name (N));
4360 return;
4361 end if;
4362
4363 -- Call the instantiated Analyze_Choices which does the rest of the work
4364
4365 Analyze_Choices (N, Discr_Type, Dont_Care, Others_Present);
4366 end Analyze_Variant_Part;
4367
4368 ----------------------------
4369 -- Array_Type_Declaration --
4370 ----------------------------
4371
4372 procedure Array_Type_Declaration (T : in out Entity_Id; Def : Node_Id) is
4373 Component_Def : constant Node_Id := Component_Definition (Def);
4374 Element_Type : Entity_Id;
4375 Implicit_Base : Entity_Id;
4376 Index : Node_Id;
4377 Related_Id : Entity_Id := Empty;
4378 Nb_Index : Nat;
4379 P : constant Node_Id := Parent (Def);
4380 Priv : Entity_Id;
4381
4382 begin
4383 if Nkind (Def) = N_Constrained_Array_Definition then
4384 Index := First (Discrete_Subtype_Definitions (Def));
4385 else
4386 Index := First (Subtype_Marks (Def));
4387 end if;
4388
4389 -- Find proper names for the implicit types which may be public. In case
4390 -- of anonymous arrays we use the name of the first object of that type
4391 -- as prefix.
4392
4393 if No (T) then
4394 Related_Id := Defining_Identifier (P);
4395 else
4396 Related_Id := T;
4397 end if;
4398
4399 Nb_Index := 1;
4400 while Present (Index) loop
4401 Analyze (Index);
4402
4403 -- Add a subtype declaration for each index of private array type
4404 -- declaration whose etype is also private. For example:
4405
4406 -- package Pkg is
4407 -- type Index is private;
4408 -- private
4409 -- type Table is array (Index) of ...
4410 -- end;
4411
4412 -- This is currently required by the expander for the internally
4413 -- generated equality subprogram of records with variant parts in
4414 -- which the etype of some component is such private type.
4415
4416 if Ekind (Current_Scope) = E_Package
4417 and then In_Private_Part (Current_Scope)
4418 and then Has_Private_Declaration (Etype (Index))
4419 then
4420 declare
4421 Loc : constant Source_Ptr := Sloc (Def);
4422 New_E : Entity_Id;
4423 Decl : Entity_Id;
4424
4425 begin
4426 New_E := Make_Temporary (Loc, 'T');
4427 Set_Is_Internal (New_E);
4428
4429 Decl :=
4430 Make_Subtype_Declaration (Loc,
4431 Defining_Identifier => New_E,
4432 Subtype_Indication =>
4433 New_Occurrence_Of (Etype (Index), Loc));
4434
4435 Insert_Before (Parent (Def), Decl);
4436 Analyze (Decl);
4437 Set_Etype (Index, New_E);
4438
4439 -- If the index is a range the Entity attribute is not
4440 -- available. Example:
4441
4442 -- package Pkg is
4443 -- type T is private;
4444 -- private
4445 -- type T is new Natural;
4446 -- Table : array (T(1) .. T(10)) of Boolean;
4447 -- end Pkg;
4448
4449 if Nkind (Index) /= N_Range then
4450 Set_Entity (Index, New_E);
4451 end if;
4452 end;
4453 end if;
4454
4455 Make_Index (Index, P, Related_Id, Nb_Index);
4456
4457 -- Check error of subtype with predicate for index type
4458
4459 Bad_Predicated_Subtype_Use
4460 ("subtype& has predicate, not allowed as index subtype",
4461 Index, Etype (Index));
4462
4463 -- Move to next index
4464
4465 Next_Index (Index);
4466 Nb_Index := Nb_Index + 1;
4467 end loop;
4468
4469 -- Process subtype indication if one is present
4470
4471 if Present (Subtype_Indication (Component_Def)) then
4472 Element_Type :=
4473 Process_Subtype
4474 (Subtype_Indication (Component_Def), P, Related_Id, 'C');
4475
4476 -- Ada 2005 (AI-230): Access Definition case
4477
4478 else pragma Assert (Present (Access_Definition (Component_Def)));
4479
4480 -- Indicate that the anonymous access type is created by the
4481 -- array type declaration.
4482
4483 Element_Type := Access_Definition
4484 (Related_Nod => P,
4485 N => Access_Definition (Component_Def));
4486 Set_Is_Local_Anonymous_Access (Element_Type);
4487
4488 -- Propagate the parent. This field is needed if we have to generate
4489 -- the master_id associated with an anonymous access to task type
4490 -- component (see Expand_N_Full_Type_Declaration.Build_Master)
4491
4492 Set_Parent (Element_Type, Parent (T));
4493
4494 -- Ada 2005 (AI-230): In case of components that are anonymous access
4495 -- types the level of accessibility depends on the enclosing type
4496 -- declaration
4497
4498 Set_Scope (Element_Type, Current_Scope); -- Ada 2005 (AI-230)
4499
4500 -- Ada 2005 (AI-254)
4501
4502 declare
4503 CD : constant Node_Id :=
4504 Access_To_Subprogram_Definition
4505 (Access_Definition (Component_Def));
4506 begin
4507 if Present (CD) and then Protected_Present (CD) then
4508 Element_Type :=
4509 Replace_Anonymous_Access_To_Protected_Subprogram (Def);
4510 end if;
4511 end;
4512 end if;
4513
4514 -- Constrained array case
4515
4516 if No (T) then
4517 T := Create_Itype (E_Void, P, Related_Id, 'T');
4518 end if;
4519
4520 if Nkind (Def) = N_Constrained_Array_Definition then
4521
4522 -- Establish Implicit_Base as unconstrained base type
4523
4524 Implicit_Base := Create_Itype (E_Array_Type, P, Related_Id, 'B');
4525
4526 Set_Etype (Implicit_Base, Implicit_Base);
4527 Set_Scope (Implicit_Base, Current_Scope);
4528 Set_Has_Delayed_Freeze (Implicit_Base);
4529
4530 -- The constrained array type is a subtype of the unconstrained one
4531
4532 Set_Ekind (T, E_Array_Subtype);
4533 Init_Size_Align (T);
4534 Set_Etype (T, Implicit_Base);
4535 Set_Scope (T, Current_Scope);
4536 Set_Is_Constrained (T, True);
4537 Set_First_Index (T, First (Discrete_Subtype_Definitions (Def)));
4538 Set_Has_Delayed_Freeze (T);
4539
4540 -- Complete setup of implicit base type
4541
4542 Set_First_Index (Implicit_Base, First_Index (T));
4543 Set_Component_Type (Implicit_Base, Element_Type);
4544 Set_Has_Task (Implicit_Base, Has_Task (Element_Type));
4545 Set_Component_Size (Implicit_Base, Uint_0);
4546 Set_Packed_Array_Type (Implicit_Base, Empty);
4547 Set_Has_Controlled_Component
4548 (Implicit_Base, Has_Controlled_Component
4549 (Element_Type)
4550 or else Is_Controlled
4551 (Element_Type));
4552 Set_Finalize_Storage_Only
4553 (Implicit_Base, Finalize_Storage_Only
4554 (Element_Type));
4555
4556 -- Unconstrained array case
4557
4558 else
4559 Set_Ekind (T, E_Array_Type);
4560 Init_Size_Align (T);
4561 Set_Etype (T, T);
4562 Set_Scope (T, Current_Scope);
4563 Set_Component_Size (T, Uint_0);
4564 Set_Is_Constrained (T, False);
4565 Set_First_Index (T, First (Subtype_Marks (Def)));
4566 Set_Has_Delayed_Freeze (T, True);
4567 Set_Has_Task (T, Has_Task (Element_Type));
4568 Set_Has_Controlled_Component (T, Has_Controlled_Component
4569 (Element_Type)
4570 or else
4571 Is_Controlled (Element_Type));
4572 Set_Finalize_Storage_Only (T, Finalize_Storage_Only
4573 (Element_Type));
4574 end if;
4575
4576 -- Common attributes for both cases
4577
4578 Set_Component_Type (Base_Type (T), Element_Type);
4579 Set_Packed_Array_Type (T, Empty);
4580
4581 if Aliased_Present (Component_Definition (Def)) then
4582 Set_Has_Aliased_Components (Etype (T));
4583 end if;
4584
4585 -- Ada 2005 (AI-231): Propagate the null-excluding attribute to the
4586 -- array type to ensure that objects of this type are initialized.
4587
4588 if Ada_Version >= Ada_2005
4589 and then Can_Never_Be_Null (Element_Type)
4590 then
4591 Set_Can_Never_Be_Null (T);
4592
4593 if Null_Exclusion_Present (Component_Definition (Def))
4594
4595 -- No need to check itypes because in their case this check was
4596 -- done at their point of creation
4597
4598 and then not Is_Itype (Element_Type)
4599 then
4600 Error_Msg_N
4601 ("`NOT NULL` not allowed (null already excluded)",
4602 Subtype_Indication (Component_Definition (Def)));
4603 end if;
4604 end if;
4605
4606 Priv := Private_Component (Element_Type);
4607
4608 if Present (Priv) then
4609
4610 -- Check for circular definitions
4611
4612 if Priv = Any_Type then
4613 Set_Component_Type (Etype (T), Any_Type);
4614
4615 -- There is a gap in the visibility of operations on the composite
4616 -- type only if the component type is defined in a different scope.
4617
4618 elsif Scope (Priv) = Current_Scope then
4619 null;
4620
4621 elsif Is_Limited_Type (Priv) then
4622 Set_Is_Limited_Composite (Etype (T));
4623 Set_Is_Limited_Composite (T);
4624 else
4625 Set_Is_Private_Composite (Etype (T));
4626 Set_Is_Private_Composite (T);
4627 end if;
4628 end if;
4629
4630 -- A syntax error in the declaration itself may lead to an empty index
4631 -- list, in which case do a minimal patch.
4632
4633 if No (First_Index (T)) then
4634 Error_Msg_N ("missing index definition in array type declaration", T);
4635
4636 declare
4637 Indexes : constant List_Id :=
4638 New_List (New_Occurrence_Of (Any_Id, Sloc (T)));
4639 begin
4640 Set_Discrete_Subtype_Definitions (Def, Indexes);
4641 Set_First_Index (T, First (Indexes));
4642 return;
4643 end;
4644 end if;
4645
4646 -- Create a concatenation operator for the new type. Internal array
4647 -- types created for packed entities do not need such, they are
4648 -- compatible with the user-defined type.
4649
4650 if Number_Dimensions (T) = 1
4651 and then not Is_Packed_Array_Type (T)
4652 then
4653 New_Concatenation_Op (T);
4654 end if;
4655
4656 -- In the case of an unconstrained array the parser has already verified
4657 -- that all the indexes are unconstrained but we still need to make sure
4658 -- that the element type is constrained.
4659
4660 if Is_Indefinite_Subtype (Element_Type) then
4661 Error_Msg_N
4662 ("unconstrained element type in array declaration",
4663 Subtype_Indication (Component_Def));
4664
4665 elsif Is_Abstract_Type (Element_Type) then
4666 Error_Msg_N
4667 ("the type of a component cannot be abstract",
4668 Subtype_Indication (Component_Def));
4669 end if;
4670 end Array_Type_Declaration;
4671
4672 ------------------------------------------------------
4673 -- Replace_Anonymous_Access_To_Protected_Subprogram --
4674 ------------------------------------------------------
4675
4676 function Replace_Anonymous_Access_To_Protected_Subprogram
4677 (N : Node_Id) return Entity_Id
4678 is
4679 Loc : constant Source_Ptr := Sloc (N);
4680
4681 Curr_Scope : constant Scope_Stack_Entry :=
4682 Scope_Stack.Table (Scope_Stack.Last);
4683
4684 Anon : constant Entity_Id := Make_Temporary (Loc, 'S');
4685 Acc : Node_Id;
4686 Comp : Node_Id;
4687 Decl : Node_Id;
4688 P : Node_Id;
4689
4690 begin
4691 Set_Is_Internal (Anon);
4692
4693 case Nkind (N) is
4694 when N_Component_Declaration |
4695 N_Unconstrained_Array_Definition |
4696 N_Constrained_Array_Definition =>
4697 Comp := Component_Definition (N);
4698 Acc := Access_Definition (Comp);
4699
4700 when N_Discriminant_Specification =>
4701 Comp := Discriminant_Type (N);
4702 Acc := Comp;
4703
4704 when N_Parameter_Specification =>
4705 Comp := Parameter_Type (N);
4706 Acc := Comp;
4707
4708 when N_Access_Function_Definition =>
4709 Comp := Result_Definition (N);
4710 Acc := Comp;
4711
4712 when N_Object_Declaration =>
4713 Comp := Object_Definition (N);
4714 Acc := Comp;
4715
4716 when N_Function_Specification =>
4717 Comp := Result_Definition (N);
4718 Acc := Comp;
4719
4720 when others =>
4721 raise Program_Error;
4722 end case;
4723
4724 Decl := Make_Full_Type_Declaration (Loc,
4725 Defining_Identifier => Anon,
4726 Type_Definition =>
4727 Copy_Separate_Tree (Access_To_Subprogram_Definition (Acc)));
4728
4729 Mark_Rewrite_Insertion (Decl);
4730
4731 -- Insert the new declaration in the nearest enclosing scope. If the
4732 -- node is a body and N is its return type, the declaration belongs in
4733 -- the enclosing scope.
4734
4735 P := Parent (N);
4736
4737 if Nkind (P) = N_Subprogram_Body
4738 and then Nkind (N) = N_Function_Specification
4739 then
4740 P := Parent (P);
4741 end if;
4742
4743 while Present (P) and then not Has_Declarations (P) loop
4744 P := Parent (P);
4745 end loop;
4746
4747 pragma Assert (Present (P));
4748
4749 if Nkind (P) = N_Package_Specification then
4750 Prepend (Decl, Visible_Declarations (P));
4751 else
4752 Prepend (Decl, Declarations (P));
4753 end if;
4754
4755 -- Replace the anonymous type with an occurrence of the new declaration.
4756 -- In all cases the rewritten node does not have the null-exclusion
4757 -- attribute because (if present) it was already inherited by the
4758 -- anonymous entity (Anon). Thus, in case of components we do not
4759 -- inherit this attribute.
4760
4761 if Nkind (N) = N_Parameter_Specification then
4762 Rewrite (Comp, New_Occurrence_Of (Anon, Loc));
4763 Set_Etype (Defining_Identifier (N), Anon);
4764 Set_Null_Exclusion_Present (N, False);
4765
4766 elsif Nkind (N) = N_Object_Declaration then
4767 Rewrite (Comp, New_Occurrence_Of (Anon, Loc));
4768 Set_Etype (Defining_Identifier (N), Anon);
4769
4770 elsif Nkind (N) = N_Access_Function_Definition then
4771 Rewrite (Comp, New_Occurrence_Of (Anon, Loc));
4772
4773 elsif Nkind (N) = N_Function_Specification then
4774 Rewrite (Comp, New_Occurrence_Of (Anon, Loc));
4775 Set_Etype (Defining_Unit_Name (N), Anon);
4776
4777 else
4778 Rewrite (Comp,
4779 Make_Component_Definition (Loc,
4780 Subtype_Indication => New_Occurrence_Of (Anon, Loc)));
4781 end if;
4782
4783 Mark_Rewrite_Insertion (Comp);
4784
4785 if Nkind_In (N, N_Object_Declaration, N_Access_Function_Definition) then
4786 Analyze (Decl);
4787
4788 else
4789 -- Temporarily remove the current scope (record or subprogram) from
4790 -- the stack to add the new declarations to the enclosing scope.
4791
4792 Scope_Stack.Decrement_Last;
4793 Analyze (Decl);
4794 Set_Is_Itype (Anon);
4795 Scope_Stack.Append (Curr_Scope);
4796 end if;
4797
4798 Set_Ekind (Anon, E_Anonymous_Access_Protected_Subprogram_Type);
4799 Set_Can_Use_Internal_Rep (Anon, not Always_Compatible_Rep_On_Target);
4800 return Anon;
4801 end Replace_Anonymous_Access_To_Protected_Subprogram;
4802
4803 -------------------------------
4804 -- Build_Derived_Access_Type --
4805 -------------------------------
4806
4807 procedure Build_Derived_Access_Type
4808 (N : Node_Id;
4809 Parent_Type : Entity_Id;
4810 Derived_Type : Entity_Id)
4811 is
4812 S : constant Node_Id := Subtype_Indication (Type_Definition (N));
4813
4814 Desig_Type : Entity_Id;
4815 Discr : Entity_Id;
4816 Discr_Con_Elist : Elist_Id;
4817 Discr_Con_El : Elmt_Id;
4818 Subt : Entity_Id;
4819
4820 begin
4821 -- Set the designated type so it is available in case this is an access
4822 -- to a self-referential type, e.g. a standard list type with a next
4823 -- pointer. Will be reset after subtype is built.
4824
4825 Set_Directly_Designated_Type
4826 (Derived_Type, Designated_Type (Parent_Type));
4827
4828 Subt := Process_Subtype (S, N);
4829
4830 if Nkind (S) /= N_Subtype_Indication
4831 and then Subt /= Base_Type (Subt)
4832 then
4833 Set_Ekind (Derived_Type, E_Access_Subtype);
4834 end if;
4835
4836 if Ekind (Derived_Type) = E_Access_Subtype then
4837 declare
4838 Pbase : constant Entity_Id := Base_Type (Parent_Type);
4839 Ibase : constant Entity_Id :=
4840 Create_Itype (Ekind (Pbase), N, Derived_Type, 'B');
4841 Svg_Chars : constant Name_Id := Chars (Ibase);
4842 Svg_Next_E : constant Entity_Id := Next_Entity (Ibase);
4843
4844 begin
4845 Copy_Node (Pbase, Ibase);
4846
4847 Set_Chars (Ibase, Svg_Chars);
4848 Set_Next_Entity (Ibase, Svg_Next_E);
4849 Set_Sloc (Ibase, Sloc (Derived_Type));
4850 Set_Scope (Ibase, Scope (Derived_Type));
4851 Set_Freeze_Node (Ibase, Empty);
4852 Set_Is_Frozen (Ibase, False);
4853 Set_Comes_From_Source (Ibase, False);
4854 Set_Is_First_Subtype (Ibase, False);
4855
4856 Set_Etype (Ibase, Pbase);
4857 Set_Etype (Derived_Type, Ibase);
4858 end;
4859 end if;
4860
4861 Set_Directly_Designated_Type
4862 (Derived_Type, Designated_Type (Subt));
4863
4864 Set_Is_Constrained (Derived_Type, Is_Constrained (Subt));
4865 Set_Is_Access_Constant (Derived_Type, Is_Access_Constant (Parent_Type));
4866 Set_Size_Info (Derived_Type, Parent_Type);
4867 Set_RM_Size (Derived_Type, RM_Size (Parent_Type));
4868 Set_Depends_On_Private (Derived_Type,
4869 Has_Private_Component (Derived_Type));
4870 Conditional_Delay (Derived_Type, Subt);
4871
4872 -- Ada 2005 (AI-231): Set the null-exclusion attribute, and verify
4873 -- that it is not redundant.
4874
4875 if Null_Exclusion_Present (Type_Definition (N)) then
4876 Set_Can_Never_Be_Null (Derived_Type);
4877
4878 if Can_Never_Be_Null (Parent_Type)
4879 and then False
4880 then
4881 Error_Msg_NE
4882 ("`NOT NULL` not allowed (& already excludes null)",
4883 N, Parent_Type);
4884 end if;
4885
4886 elsif Can_Never_Be_Null (Parent_Type) then
4887 Set_Can_Never_Be_Null (Derived_Type);
4888 end if;
4889
4890 -- Note: we do not copy the Storage_Size_Variable, since we always go to
4891 -- the root type for this information.
4892
4893 -- Apply range checks to discriminants for derived record case
4894 -- ??? THIS CODE SHOULD NOT BE HERE REALLY.
4895
4896 Desig_Type := Designated_Type (Derived_Type);
4897 if Is_Composite_Type (Desig_Type)
4898 and then (not Is_Array_Type (Desig_Type))
4899 and then Has_Discriminants (Desig_Type)
4900 and then Base_Type (Desig_Type) /= Desig_Type
4901 then
4902 Discr_Con_Elist := Discriminant_Constraint (Desig_Type);
4903 Discr_Con_El := First_Elmt (Discr_Con_Elist);
4904
4905 Discr := First_Discriminant (Base_Type (Desig_Type));
4906 while Present (Discr_Con_El) loop
4907 Apply_Range_Check (Node (Discr_Con_El), Etype (Discr));
4908 Next_Elmt (Discr_Con_El);
4909 Next_Discriminant (Discr);
4910 end loop;
4911 end if;
4912 end Build_Derived_Access_Type;
4913
4914 ------------------------------
4915 -- Build_Derived_Array_Type --
4916 ------------------------------
4917
4918 procedure Build_Derived_Array_Type
4919 (N : Node_Id;
4920 Parent_Type : Entity_Id;
4921 Derived_Type : Entity_Id)
4922 is
4923 Loc : constant Source_Ptr := Sloc (N);
4924 Tdef : constant Node_Id := Type_Definition (N);
4925 Indic : constant Node_Id := Subtype_Indication (Tdef);
4926 Parent_Base : constant Entity_Id := Base_Type (Parent_Type);
4927 Implicit_Base : Entity_Id;
4928 New_Indic : Node_Id;
4929
4930 procedure Make_Implicit_Base;
4931 -- If the parent subtype is constrained, the derived type is a subtype
4932 -- of an implicit base type derived from the parent base.
4933
4934 ------------------------
4935 -- Make_Implicit_Base --
4936 ------------------------
4937
4938 procedure Make_Implicit_Base is
4939 begin
4940 Implicit_Base :=
4941 Create_Itype (Ekind (Parent_Base), N, Derived_Type, 'B');
4942
4943 Set_Ekind (Implicit_Base, Ekind (Parent_Base));
4944 Set_Etype (Implicit_Base, Parent_Base);
4945
4946 Copy_Array_Subtype_Attributes (Implicit_Base, Parent_Base);
4947 Copy_Array_Base_Type_Attributes (Implicit_Base, Parent_Base);
4948
4949 Set_Has_Delayed_Freeze (Implicit_Base, True);
4950 end Make_Implicit_Base;
4951
4952 -- Start of processing for Build_Derived_Array_Type
4953
4954 begin
4955 if not Is_Constrained (Parent_Type) then
4956 if Nkind (Indic) /= N_Subtype_Indication then
4957 Set_Ekind (Derived_Type, E_Array_Type);
4958
4959 Copy_Array_Subtype_Attributes (Derived_Type, Parent_Type);
4960 Copy_Array_Base_Type_Attributes (Derived_Type, Parent_Type);
4961
4962 Set_Has_Delayed_Freeze (Derived_Type, True);
4963
4964 else
4965 Make_Implicit_Base;
4966 Set_Etype (Derived_Type, Implicit_Base);
4967
4968 New_Indic :=
4969 Make_Subtype_Declaration (Loc,
4970 Defining_Identifier => Derived_Type,
4971 Subtype_Indication =>
4972 Make_Subtype_Indication (Loc,
4973 Subtype_Mark => New_Reference_To (Implicit_Base, Loc),
4974 Constraint => Constraint (Indic)));
4975
4976 Rewrite (N, New_Indic);
4977 Analyze (N);
4978 end if;
4979
4980 else
4981 if Nkind (Indic) /= N_Subtype_Indication then
4982 Make_Implicit_Base;
4983
4984 Set_Ekind (Derived_Type, Ekind (Parent_Type));
4985 Set_Etype (Derived_Type, Implicit_Base);
4986 Copy_Array_Subtype_Attributes (Derived_Type, Parent_Type);
4987
4988 else
4989 Error_Msg_N ("illegal constraint on constrained type", Indic);
4990 end if;
4991 end if;
4992
4993 -- If parent type is not a derived type itself, and is declared in
4994 -- closed scope (e.g. a subprogram), then we must explicitly introduce
4995 -- the new type's concatenation operator since Derive_Subprograms
4996 -- will not inherit the parent's operator. If the parent type is
4997 -- unconstrained, the operator is of the unconstrained base type.
4998
4999 if Number_Dimensions (Parent_Type) = 1
5000 and then not Is_Limited_Type (Parent_Type)
5001 and then not Is_Derived_Type (Parent_Type)
5002 and then not Is_Package_Or_Generic_Package
5003 (Scope (Base_Type (Parent_Type)))
5004 then
5005 if not Is_Constrained (Parent_Type)
5006 and then Is_Constrained (Derived_Type)
5007 then
5008 New_Concatenation_Op (Implicit_Base);
5009 else
5010 New_Concatenation_Op (Derived_Type);
5011 end if;
5012 end if;
5013 end Build_Derived_Array_Type;
5014
5015 -----------------------------------
5016 -- Build_Derived_Concurrent_Type --
5017 -----------------------------------
5018
5019 procedure Build_Derived_Concurrent_Type
5020 (N : Node_Id;
5021 Parent_Type : Entity_Id;
5022 Derived_Type : Entity_Id)
5023 is
5024 Loc : constant Source_Ptr := Sloc (N);
5025
5026 Corr_Record : constant Entity_Id := Make_Temporary (Loc, 'C');
5027 Corr_Decl : Node_Id;
5028 Corr_Decl_Needed : Boolean;
5029 -- If the derived type has fewer discriminants than its parent, the
5030 -- corresponding record is also a derived type, in order to account for
5031 -- the bound discriminants. We create a full type declaration for it in
5032 -- this case.
5033
5034 Constraint_Present : constant Boolean :=
5035 Nkind (Subtype_Indication (Type_Definition (N))) =
5036 N_Subtype_Indication;
5037
5038 D_Constraint : Node_Id;
5039 New_Constraint : Elist_Id;
5040 Old_Disc : Entity_Id;
5041 New_Disc : Entity_Id;
5042 New_N : Node_Id;
5043
5044 begin
5045 Set_Stored_Constraint (Derived_Type, No_Elist);
5046 Corr_Decl_Needed := False;
5047 Old_Disc := Empty;
5048
5049 if Present (Discriminant_Specifications (N))
5050 and then Constraint_Present
5051 then
5052 Old_Disc := First_Discriminant (Parent_Type);
5053 New_Disc := First (Discriminant_Specifications (N));
5054 while Present (New_Disc) and then Present (Old_Disc) loop
5055 Next_Discriminant (Old_Disc);
5056 Next (New_Disc);
5057 end loop;
5058 end if;
5059
5060 if Present (Old_Disc) and then Expander_Active then
5061
5062 -- The new type has fewer discriminants, so we need to create a new
5063 -- corresponding record, which is derived from the corresponding
5064 -- record of the parent, and has a stored constraint that captures
5065 -- the values of the discriminant constraints. The corresponding
5066 -- record is needed only if expander is active and code generation is
5067 -- enabled.
5068
5069 -- The type declaration for the derived corresponding record has the
5070 -- same discriminant part and constraints as the current declaration.
5071 -- Copy the unanalyzed tree to build declaration.
5072
5073 Corr_Decl_Needed := True;
5074 New_N := Copy_Separate_Tree (N);
5075
5076 Corr_Decl :=
5077 Make_Full_Type_Declaration (Loc,
5078 Defining_Identifier => Corr_Record,
5079 Discriminant_Specifications =>
5080 Discriminant_Specifications (New_N),
5081 Type_Definition =>
5082 Make_Derived_Type_Definition (Loc,
5083 Subtype_Indication =>
5084 Make_Subtype_Indication (Loc,
5085 Subtype_Mark =>
5086 New_Occurrence_Of
5087 (Corresponding_Record_Type (Parent_Type), Loc),
5088 Constraint =>
5089 Constraint
5090 (Subtype_Indication (Type_Definition (New_N))))));
5091 end if;
5092
5093 -- Copy Storage_Size and Relative_Deadline variables if task case
5094
5095 if Is_Task_Type (Parent_Type) then
5096 Set_Storage_Size_Variable (Derived_Type,
5097 Storage_Size_Variable (Parent_Type));
5098 Set_Relative_Deadline_Variable (Derived_Type,
5099 Relative_Deadline_Variable (Parent_Type));
5100 end if;
5101
5102 if Present (Discriminant_Specifications (N)) then
5103 Push_Scope (Derived_Type);
5104 Check_Or_Process_Discriminants (N, Derived_Type);
5105
5106 if Constraint_Present then
5107 New_Constraint :=
5108 Expand_To_Stored_Constraint
5109 (Parent_Type,
5110 Build_Discriminant_Constraints
5111 (Parent_Type,
5112 Subtype_Indication (Type_Definition (N)), True));
5113 end if;
5114
5115 End_Scope;
5116
5117 elsif Constraint_Present then
5118
5119 -- Build constrained subtype and derive from it
5120
5121 declare
5122 Loc : constant Source_Ptr := Sloc (N);
5123 Anon : constant Entity_Id :=
5124 Make_Defining_Identifier (Loc,
5125 New_External_Name (Chars (Derived_Type), 'T'));
5126 Decl : Node_Id;
5127
5128 begin
5129 Decl :=
5130 Make_Subtype_Declaration (Loc,
5131 Defining_Identifier => Anon,
5132 Subtype_Indication =>
5133 Subtype_Indication (Type_Definition (N)));
5134 Insert_Before (N, Decl);
5135 Analyze (Decl);
5136
5137 Rewrite (Subtype_Indication (Type_Definition (N)),
5138 New_Occurrence_Of (Anon, Loc));
5139 Set_Analyzed (Derived_Type, False);
5140 Analyze (N);
5141 return;
5142 end;
5143 end if;
5144
5145 -- By default, operations and private data are inherited from parent.
5146 -- However, in the presence of bound discriminants, a new corresponding
5147 -- record will be created, see below.
5148
5149 Set_Has_Discriminants
5150 (Derived_Type, Has_Discriminants (Parent_Type));
5151 Set_Corresponding_Record_Type
5152 (Derived_Type, Corresponding_Record_Type (Parent_Type));
5153
5154 -- Is_Constrained is set according the parent subtype, but is set to
5155 -- False if the derived type is declared with new discriminants.
5156
5157 Set_Is_Constrained
5158 (Derived_Type,
5159 (Is_Constrained (Parent_Type) or else Constraint_Present)
5160 and then not Present (Discriminant_Specifications (N)));
5161
5162 if Constraint_Present then
5163 if not Has_Discriminants (Parent_Type) then
5164 Error_Msg_N ("untagged parent must have discriminants", N);
5165
5166 elsif Present (Discriminant_Specifications (N)) then
5167
5168 -- Verify that new discriminants are used to constrain old ones
5169
5170 D_Constraint :=
5171 First
5172 (Constraints
5173 (Constraint (Subtype_Indication (Type_Definition (N)))));
5174
5175 Old_Disc := First_Discriminant (Parent_Type);
5176
5177 while Present (D_Constraint) loop
5178 if Nkind (D_Constraint) /= N_Discriminant_Association then
5179
5180 -- Positional constraint. If it is a reference to a new
5181 -- discriminant, it constrains the corresponding old one.
5182
5183 if Nkind (D_Constraint) = N_Identifier then
5184 New_Disc := First_Discriminant (Derived_Type);
5185 while Present (New_Disc) loop
5186 exit when Chars (New_Disc) = Chars (D_Constraint);
5187 Next_Discriminant (New_Disc);
5188 end loop;
5189
5190 if Present (New_Disc) then
5191 Set_Corresponding_Discriminant (New_Disc, Old_Disc);
5192 end if;
5193 end if;
5194
5195 Next_Discriminant (Old_Disc);
5196
5197 -- if this is a named constraint, search by name for the old
5198 -- discriminants constrained by the new one.
5199
5200 elsif Nkind (Expression (D_Constraint)) = N_Identifier then
5201
5202 -- Find new discriminant with that name
5203
5204 New_Disc := First_Discriminant (Derived_Type);
5205 while Present (New_Disc) loop
5206 exit when
5207 Chars (New_Disc) = Chars (Expression (D_Constraint));
5208 Next_Discriminant (New_Disc);
5209 end loop;
5210
5211 if Present (New_Disc) then
5212
5213 -- Verify that new discriminant renames some discriminant
5214 -- of the parent type, and associate the new discriminant
5215 -- with one or more old ones that it renames.
5216
5217 declare
5218 Selector : Node_Id;
5219
5220 begin
5221 Selector := First (Selector_Names (D_Constraint));
5222 while Present (Selector) loop
5223 Old_Disc := First_Discriminant (Parent_Type);
5224 while Present (Old_Disc) loop
5225 exit when Chars (Old_Disc) = Chars (Selector);
5226 Next_Discriminant (Old_Disc);
5227 end loop;
5228
5229 if Present (Old_Disc) then
5230 Set_Corresponding_Discriminant
5231 (New_Disc, Old_Disc);
5232 end if;
5233
5234 Next (Selector);
5235 end loop;
5236 end;
5237 end if;
5238 end if;
5239
5240 Next (D_Constraint);
5241 end loop;
5242
5243 New_Disc := First_Discriminant (Derived_Type);
5244 while Present (New_Disc) loop
5245 if No (Corresponding_Discriminant (New_Disc)) then
5246 Error_Msg_NE
5247 ("new discriminant& must constrain old one", N, New_Disc);
5248
5249 elsif not
5250 Subtypes_Statically_Compatible
5251 (Etype (New_Disc),
5252 Etype (Corresponding_Discriminant (New_Disc)))
5253 then
5254 Error_Msg_NE
5255 ("& not statically compatible with parent discriminant",
5256 N, New_Disc);
5257 end if;
5258
5259 Next_Discriminant (New_Disc);
5260 end loop;
5261 end if;
5262
5263 elsif Present (Discriminant_Specifications (N)) then
5264 Error_Msg_N
5265 ("missing discriminant constraint in untagged derivation", N);
5266 end if;
5267
5268 -- The entity chain of the derived type includes the new discriminants
5269 -- but shares operations with the parent.
5270
5271 if Present (Discriminant_Specifications (N)) then
5272 Old_Disc := First_Discriminant (Parent_Type);
5273 while Present (Old_Disc) loop
5274 if No (Next_Entity (Old_Disc))
5275 or else Ekind (Next_Entity (Old_Disc)) /= E_Discriminant
5276 then
5277 Set_Next_Entity
5278 (Last_Entity (Derived_Type), Next_Entity (Old_Disc));
5279 exit;
5280 end if;
5281
5282 Next_Discriminant (Old_Disc);
5283 end loop;
5284
5285 else
5286 Set_First_Entity (Derived_Type, First_Entity (Parent_Type));
5287 if Has_Discriminants (Parent_Type) then
5288 Set_Is_Constrained (Derived_Type, Is_Constrained (Parent_Type));
5289 Set_Discriminant_Constraint (
5290 Derived_Type, Discriminant_Constraint (Parent_Type));
5291 end if;
5292 end if;
5293
5294 Set_Last_Entity (Derived_Type, Last_Entity (Parent_Type));
5295
5296 Set_Has_Completion (Derived_Type);
5297
5298 if Corr_Decl_Needed then
5299 Set_Stored_Constraint (Derived_Type, New_Constraint);
5300 Insert_After (N, Corr_Decl);
5301 Analyze (Corr_Decl);
5302 Set_Corresponding_Record_Type (Derived_Type, Corr_Record);
5303 end if;
5304 end Build_Derived_Concurrent_Type;
5305
5306 ------------------------------------
5307 -- Build_Derived_Enumeration_Type --
5308 ------------------------------------
5309
5310 procedure Build_Derived_Enumeration_Type
5311 (N : Node_Id;
5312 Parent_Type : Entity_Id;
5313 Derived_Type : Entity_Id)
5314 is
5315 Loc : constant Source_Ptr := Sloc (N);
5316 Def : constant Node_Id := Type_Definition (N);
5317 Indic : constant Node_Id := Subtype_Indication (Def);
5318 Implicit_Base : Entity_Id;
5319 Literal : Entity_Id;
5320 New_Lit : Entity_Id;
5321 Literals_List : List_Id;
5322 Type_Decl : Node_Id;
5323 Hi, Lo : Node_Id;
5324 Rang_Expr : Node_Id;
5325
5326 begin
5327 -- Since types Standard.Character and Standard.[Wide_]Wide_Character do
5328 -- not have explicit literals lists we need to process types derived
5329 -- from them specially. This is handled by Derived_Standard_Character.
5330 -- If the parent type is a generic type, there are no literals either,
5331 -- and we construct the same skeletal representation as for the generic
5332 -- parent type.
5333
5334 if Is_Standard_Character_Type (Parent_Type) then
5335 Derived_Standard_Character (N, Parent_Type, Derived_Type);
5336
5337 elsif Is_Generic_Type (Root_Type (Parent_Type)) then
5338 declare
5339 Lo : Node_Id;
5340 Hi : Node_Id;
5341
5342 begin
5343 if Nkind (Indic) /= N_Subtype_Indication then
5344 Lo :=
5345 Make_Attribute_Reference (Loc,
5346 Attribute_Name => Name_First,
5347 Prefix => New_Reference_To (Derived_Type, Loc));
5348 Set_Etype (Lo, Derived_Type);
5349
5350 Hi :=
5351 Make_Attribute_Reference (Loc,
5352 Attribute_Name => Name_Last,
5353 Prefix => New_Reference_To (Derived_Type, Loc));
5354 Set_Etype (Hi, Derived_Type);
5355
5356 Set_Scalar_Range (Derived_Type,
5357 Make_Range (Loc,
5358 Low_Bound => Lo,
5359 High_Bound => Hi));
5360 else
5361
5362 -- Analyze subtype indication and verify compatibility
5363 -- with parent type.
5364
5365 if Base_Type (Process_Subtype (Indic, N)) /=
5366 Base_Type (Parent_Type)
5367 then
5368 Error_Msg_N
5369 ("illegal constraint for formal discrete type", N);
5370 end if;
5371 end if;
5372 end;
5373
5374 else
5375 -- If a constraint is present, analyze the bounds to catch
5376 -- premature usage of the derived literals.
5377
5378 if Nkind (Indic) = N_Subtype_Indication
5379 and then Nkind (Range_Expression (Constraint (Indic))) = N_Range
5380 then
5381 Analyze (Low_Bound (Range_Expression (Constraint (Indic))));
5382 Analyze (High_Bound (Range_Expression (Constraint (Indic))));
5383 end if;
5384
5385 -- Introduce an implicit base type for the derived type even if there
5386 -- is no constraint attached to it, since this seems closer to the
5387 -- Ada semantics. Build a full type declaration tree for the derived
5388 -- type using the implicit base type as the defining identifier. The
5389 -- build a subtype declaration tree which applies the constraint (if
5390 -- any) have it replace the derived type declaration.
5391
5392 Literal := First_Literal (Parent_Type);
5393 Literals_List := New_List;
5394 while Present (Literal)
5395 and then Ekind (Literal) = E_Enumeration_Literal
5396 loop
5397 -- Literals of the derived type have the same representation as
5398 -- those of the parent type, but this representation can be
5399 -- overridden by an explicit representation clause. Indicate
5400 -- that there is no explicit representation given yet. These
5401 -- derived literals are implicit operations of the new type,
5402 -- and can be overridden by explicit ones.
5403
5404 if Nkind (Literal) = N_Defining_Character_Literal then
5405 New_Lit :=
5406 Make_Defining_Character_Literal (Loc, Chars (Literal));
5407 else
5408 New_Lit := Make_Defining_Identifier (Loc, Chars (Literal));
5409 end if;
5410
5411 Set_Ekind (New_Lit, E_Enumeration_Literal);
5412 Set_Enumeration_Pos (New_Lit, Enumeration_Pos (Literal));
5413 Set_Enumeration_Rep (New_Lit, Enumeration_Rep (Literal));
5414 Set_Enumeration_Rep_Expr (New_Lit, Empty);
5415 Set_Alias (New_Lit, Literal);
5416 Set_Is_Known_Valid (New_Lit, True);
5417
5418 Append (New_Lit, Literals_List);
5419 Next_Literal (Literal);
5420 end loop;
5421
5422 Implicit_Base :=
5423 Make_Defining_Identifier (Sloc (Derived_Type),
5424 New_External_Name (Chars (Derived_Type), 'B'));
5425
5426 -- Indicate the proper nature of the derived type. This must be done
5427 -- before analysis of the literals, to recognize cases when a literal
5428 -- may be hidden by a previous explicit function definition (cf.
5429 -- c83031a).
5430
5431 Set_Ekind (Derived_Type, E_Enumeration_Subtype);
5432 Set_Etype (Derived_Type, Implicit_Base);
5433
5434 Type_Decl :=
5435 Make_Full_Type_Declaration (Loc,
5436 Defining_Identifier => Implicit_Base,
5437 Discriminant_Specifications => No_List,
5438 Type_Definition =>
5439 Make_Enumeration_Type_Definition (Loc, Literals_List));
5440
5441 Mark_Rewrite_Insertion (Type_Decl);
5442 Insert_Before (N, Type_Decl);
5443 Analyze (Type_Decl);
5444
5445 -- After the implicit base is analyzed its Etype needs to be changed
5446 -- to reflect the fact that it is derived from the parent type which
5447 -- was ignored during analysis. We also set the size at this point.
5448
5449 Set_Etype (Implicit_Base, Parent_Type);
5450
5451 Set_Size_Info (Implicit_Base, Parent_Type);
5452 Set_RM_Size (Implicit_Base, RM_Size (Parent_Type));
5453 Set_First_Rep_Item (Implicit_Base, First_Rep_Item (Parent_Type));
5454
5455 -- Copy other flags from parent type
5456
5457 Set_Has_Non_Standard_Rep
5458 (Implicit_Base, Has_Non_Standard_Rep
5459 (Parent_Type));
5460 Set_Has_Pragma_Ordered
5461 (Implicit_Base, Has_Pragma_Ordered
5462 (Parent_Type));
5463 Set_Has_Delayed_Freeze (Implicit_Base);
5464
5465 -- Process the subtype indication including a validation check on the
5466 -- constraint, if any. If a constraint is given, its bounds must be
5467 -- implicitly converted to the new type.
5468
5469 if Nkind (Indic) = N_Subtype_Indication then
5470 declare
5471 R : constant Node_Id :=
5472 Range_Expression (Constraint (Indic));
5473
5474 begin
5475 if Nkind (R) = N_Range then
5476 Hi := Build_Scalar_Bound
5477 (High_Bound (R), Parent_Type, Implicit_Base);
5478 Lo := Build_Scalar_Bound
5479 (Low_Bound (R), Parent_Type, Implicit_Base);
5480
5481 else
5482 -- Constraint is a Range attribute. Replace with explicit
5483 -- mention of the bounds of the prefix, which must be a
5484 -- subtype.
5485
5486 Analyze (Prefix (R));
5487 Hi :=
5488 Convert_To (Implicit_Base,
5489 Make_Attribute_Reference (Loc,
5490 Attribute_Name => Name_Last,
5491 Prefix =>
5492 New_Occurrence_Of (Entity (Prefix (R)), Loc)));
5493
5494 Lo :=
5495 Convert_To (Implicit_Base,
5496 Make_Attribute_Reference (Loc,
5497 Attribute_Name => Name_First,
5498 Prefix =>
5499 New_Occurrence_Of (Entity (Prefix (R)), Loc)));
5500 end if;
5501 end;
5502
5503 else
5504 Hi :=
5505 Build_Scalar_Bound
5506 (Type_High_Bound (Parent_Type),
5507 Parent_Type, Implicit_Base);
5508 Lo :=
5509 Build_Scalar_Bound
5510 (Type_Low_Bound (Parent_Type),
5511 Parent_Type, Implicit_Base);
5512 end if;
5513
5514 Rang_Expr :=
5515 Make_Range (Loc,
5516 Low_Bound => Lo,
5517 High_Bound => Hi);
5518
5519 -- If we constructed a default range for the case where no range
5520 -- was given, then the expressions in the range must not freeze
5521 -- since they do not correspond to expressions in the source.
5522
5523 if Nkind (Indic) /= N_Subtype_Indication then
5524 Set_Must_Not_Freeze (Lo);
5525 Set_Must_Not_Freeze (Hi);
5526 Set_Must_Not_Freeze (Rang_Expr);
5527 end if;
5528
5529 Rewrite (N,
5530 Make_Subtype_Declaration (Loc,
5531 Defining_Identifier => Derived_Type,
5532 Subtype_Indication =>
5533 Make_Subtype_Indication (Loc,
5534 Subtype_Mark => New_Occurrence_Of (Implicit_Base, Loc),
5535 Constraint =>
5536 Make_Range_Constraint (Loc,
5537 Range_Expression => Rang_Expr))));
5538
5539 Analyze (N);
5540
5541 -- If pragma Discard_Names applies on the first subtype of the parent
5542 -- type, then it must be applied on this subtype as well.
5543
5544 if Einfo.Discard_Names (First_Subtype (Parent_Type)) then
5545 Set_Discard_Names (Derived_Type);
5546 end if;
5547
5548 -- Apply a range check. Since this range expression doesn't have an
5549 -- Etype, we have to specifically pass the Source_Typ parameter. Is
5550 -- this right???
5551
5552 if Nkind (Indic) = N_Subtype_Indication then
5553 Apply_Range_Check (Range_Expression (Constraint (Indic)),
5554 Parent_Type,
5555 Source_Typ => Entity (Subtype_Mark (Indic)));
5556 end if;
5557 end if;
5558 end Build_Derived_Enumeration_Type;
5559
5560 --------------------------------
5561 -- Build_Derived_Numeric_Type --
5562 --------------------------------
5563
5564 procedure Build_Derived_Numeric_Type
5565 (N : Node_Id;
5566 Parent_Type : Entity_Id;
5567 Derived_Type : Entity_Id)
5568 is
5569 Loc : constant Source_Ptr := Sloc (N);
5570 Tdef : constant Node_Id := Type_Definition (N);
5571 Indic : constant Node_Id := Subtype_Indication (Tdef);
5572 Parent_Base : constant Entity_Id := Base_Type (Parent_Type);
5573 No_Constraint : constant Boolean := Nkind (Indic) /=
5574 N_Subtype_Indication;
5575 Implicit_Base : Entity_Id;
5576
5577 Lo : Node_Id;
5578 Hi : Node_Id;
5579
5580 begin
5581 -- Process the subtype indication including a validation check on
5582 -- the constraint if any.
5583
5584 Discard_Node (Process_Subtype (Indic, N));
5585
5586 -- Introduce an implicit base type for the derived type even if there
5587 -- is no constraint attached to it, since this seems closer to the Ada
5588 -- semantics.
5589
5590 Implicit_Base :=
5591 Create_Itype (Ekind (Parent_Base), N, Derived_Type, 'B');
5592
5593 Set_Etype (Implicit_Base, Parent_Base);
5594 Set_Ekind (Implicit_Base, Ekind (Parent_Base));
5595 Set_Size_Info (Implicit_Base, Parent_Base);
5596 Set_First_Rep_Item (Implicit_Base, First_Rep_Item (Parent_Base));
5597 Set_Parent (Implicit_Base, Parent (Derived_Type));
5598 Set_Is_Known_Valid (Implicit_Base, Is_Known_Valid (Parent_Base));
5599
5600 -- Set RM Size for discrete type or decimal fixed-point type
5601 -- Ordinary fixed-point is excluded, why???
5602
5603 if Is_Discrete_Type (Parent_Base)
5604 or else Is_Decimal_Fixed_Point_Type (Parent_Base)
5605 then
5606 Set_RM_Size (Implicit_Base, RM_Size (Parent_Base));
5607 end if;
5608
5609 Set_Has_Delayed_Freeze (Implicit_Base);
5610
5611 Lo := New_Copy_Tree (Type_Low_Bound (Parent_Base));
5612 Hi := New_Copy_Tree (Type_High_Bound (Parent_Base));
5613
5614 Set_Scalar_Range (Implicit_Base,
5615 Make_Range (Loc,
5616 Low_Bound => Lo,
5617 High_Bound => Hi));
5618
5619 if Has_Infinities (Parent_Base) then
5620 Set_Includes_Infinities (Scalar_Range (Implicit_Base));
5621 end if;
5622
5623 -- The Derived_Type, which is the entity of the declaration, is a
5624 -- subtype of the implicit base. Its Ekind is a subtype, even in the
5625 -- absence of an explicit constraint.
5626
5627 Set_Etype (Derived_Type, Implicit_Base);
5628
5629 -- If we did not have a constraint, then the Ekind is set from the
5630 -- parent type (otherwise Process_Subtype has set the bounds)
5631
5632 if No_Constraint then
5633 Set_Ekind (Derived_Type, Subtype_Kind (Ekind (Parent_Type)));
5634 end if;
5635
5636 -- If we did not have a range constraint, then set the range from the
5637 -- parent type. Otherwise, the Process_Subtype call has set the bounds.
5638
5639 if No_Constraint
5640 or else not Has_Range_Constraint (Indic)
5641 then
5642 Set_Scalar_Range (Derived_Type,
5643 Make_Range (Loc,
5644 Low_Bound => New_Copy_Tree (Type_Low_Bound (Parent_Type)),
5645 High_Bound => New_Copy_Tree (Type_High_Bound (Parent_Type))));
5646 Set_Is_Constrained (Derived_Type, Is_Constrained (Parent_Type));
5647
5648 if Has_Infinities (Parent_Type) then
5649 Set_Includes_Infinities (Scalar_Range (Derived_Type));
5650 end if;
5651
5652 Set_Is_Known_Valid (Derived_Type, Is_Known_Valid (Parent_Type));
5653 end if;
5654
5655 Set_Is_Descendent_Of_Address (Derived_Type,
5656 Is_Descendent_Of_Address (Parent_Type));
5657 Set_Is_Descendent_Of_Address (Implicit_Base,
5658 Is_Descendent_Of_Address (Parent_Type));
5659
5660 -- Set remaining type-specific fields, depending on numeric type
5661
5662 if Is_Modular_Integer_Type (Parent_Type) then
5663 Set_Modulus (Implicit_Base, Modulus (Parent_Base));
5664
5665 Set_Non_Binary_Modulus
5666 (Implicit_Base, Non_Binary_Modulus (Parent_Base));
5667
5668 Set_Is_Known_Valid
5669 (Implicit_Base, Is_Known_Valid (Parent_Base));
5670
5671 elsif Is_Floating_Point_Type (Parent_Type) then
5672
5673 -- Digits of base type is always copied from the digits value of
5674 -- the parent base type, but the digits of the derived type will
5675 -- already have been set if there was a constraint present.
5676
5677 Set_Digits_Value (Implicit_Base, Digits_Value (Parent_Base));
5678 Set_Float_Rep (Implicit_Base, Float_Rep (Parent_Base));
5679
5680 if No_Constraint then
5681 Set_Digits_Value (Derived_Type, Digits_Value (Parent_Type));
5682 end if;
5683
5684 elsif Is_Fixed_Point_Type (Parent_Type) then
5685
5686 -- Small of base type and derived type are always copied from the
5687 -- parent base type, since smalls never change. The delta of the
5688 -- base type is also copied from the parent base type. However the
5689 -- delta of the derived type will have been set already if a
5690 -- constraint was present.
5691
5692 Set_Small_Value (Derived_Type, Small_Value (Parent_Base));
5693 Set_Small_Value (Implicit_Base, Small_Value (Parent_Base));
5694 Set_Delta_Value (Implicit_Base, Delta_Value (Parent_Base));
5695
5696 if No_Constraint then
5697 Set_Delta_Value (Derived_Type, Delta_Value (Parent_Type));
5698 end if;
5699
5700 -- The scale and machine radix in the decimal case are always
5701 -- copied from the parent base type.
5702
5703 if Is_Decimal_Fixed_Point_Type (Parent_Type) then
5704 Set_Scale_Value (Derived_Type, Scale_Value (Parent_Base));
5705 Set_Scale_Value (Implicit_Base, Scale_Value (Parent_Base));
5706
5707 Set_Machine_Radix_10
5708 (Derived_Type, Machine_Radix_10 (Parent_Base));
5709 Set_Machine_Radix_10
5710 (Implicit_Base, Machine_Radix_10 (Parent_Base));
5711
5712 Set_Digits_Value (Implicit_Base, Digits_Value (Parent_Base));
5713
5714 if No_Constraint then
5715 Set_Digits_Value (Derived_Type, Digits_Value (Parent_Base));
5716
5717 else
5718 -- the analysis of the subtype_indication sets the
5719 -- digits value of the derived type.
5720
5721 null;
5722 end if;
5723 end if;
5724 end if;
5725
5726 -- The type of the bounds is that of the parent type, and they
5727 -- must be converted to the derived type.
5728
5729 Convert_Scalar_Bounds (N, Parent_Type, Derived_Type, Loc);
5730
5731 -- The implicit_base should be frozen when the derived type is frozen,
5732 -- but note that it is used in the conversions of the bounds. For fixed
5733 -- types we delay the determination of the bounds until the proper
5734 -- freezing point. For other numeric types this is rejected by GCC, for
5735 -- reasons that are currently unclear (???), so we choose to freeze the
5736 -- implicit base now. In the case of integers and floating point types
5737 -- this is harmless because subsequent representation clauses cannot
5738 -- affect anything, but it is still baffling that we cannot use the
5739 -- same mechanism for all derived numeric types.
5740
5741 -- There is a further complication: actually *some* representation
5742 -- clauses can affect the implicit base type. Namely, attribute
5743 -- definition clauses for stream-oriented attributes need to set the
5744 -- corresponding TSS entries on the base type, and this normally cannot
5745 -- be done after the base type is frozen, so the circuitry in
5746 -- Sem_Ch13.New_Stream_Subprogram must account for this possibility and
5747 -- not use Set_TSS in this case.
5748
5749 if Is_Fixed_Point_Type (Parent_Type) then
5750 Conditional_Delay (Implicit_Base, Parent_Type);
5751 else
5752 Freeze_Before (N, Implicit_Base);
5753 end if;
5754 end Build_Derived_Numeric_Type;
5755
5756 --------------------------------
5757 -- Build_Derived_Private_Type --
5758 --------------------------------
5759
5760 procedure Build_Derived_Private_Type
5761 (N : Node_Id;
5762 Parent_Type : Entity_Id;
5763 Derived_Type : Entity_Id;
5764 Is_Completion : Boolean;
5765 Derive_Subps : Boolean := True)
5766 is
5767 Loc : constant Source_Ptr := Sloc (N);
5768 Der_Base : Entity_Id;
5769 Discr : Entity_Id;
5770 Full_Decl : Node_Id := Empty;
5771 Full_Der : Entity_Id;
5772 Full_P : Entity_Id;
5773 Last_Discr : Entity_Id;
5774 Par_Scope : constant Entity_Id := Scope (Base_Type (Parent_Type));
5775 Swapped : Boolean := False;
5776
5777 procedure Copy_And_Build;
5778 -- Copy derived type declaration, replace parent with its full view,
5779 -- and analyze new declaration.
5780
5781 --------------------
5782 -- Copy_And_Build --
5783 --------------------
5784
5785 procedure Copy_And_Build is
5786 Full_N : Node_Id;
5787
5788 begin
5789 if Ekind (Parent_Type) in Record_Kind
5790 or else
5791 (Ekind (Parent_Type) in Enumeration_Kind
5792 and then not Is_Standard_Character_Type (Parent_Type)
5793 and then not Is_Generic_Type (Root_Type (Parent_Type)))
5794 then
5795 Full_N := New_Copy_Tree (N);
5796 Insert_After (N, Full_N);
5797 Build_Derived_Type (
5798 Full_N, Parent_Type, Full_Der, True, Derive_Subps => False);
5799
5800 else
5801 Build_Derived_Type (
5802 N, Parent_Type, Full_Der, True, Derive_Subps => False);
5803 end if;
5804 end Copy_And_Build;
5805
5806 -- Start of processing for Build_Derived_Private_Type
5807
5808 begin
5809 if Is_Tagged_Type (Parent_Type) then
5810 Full_P := Full_View (Parent_Type);
5811
5812 -- A type extension of a type with unknown discriminants is an
5813 -- indefinite type that the back-end cannot handle directly.
5814 -- We treat it as a private type, and build a completion that is
5815 -- derived from the full view of the parent, and hopefully has
5816 -- known discriminants.
5817
5818 -- If the full view of the parent type has an underlying record view,
5819 -- use it to generate the underlying record view of this derived type
5820 -- (required for chains of derivations with unknown discriminants).
5821
5822 -- Minor optimization: we avoid the generation of useless underlying
5823 -- record view entities if the private type declaration has unknown
5824 -- discriminants but its corresponding full view has no
5825 -- discriminants.
5826
5827 if Has_Unknown_Discriminants (Parent_Type)
5828 and then Present (Full_P)
5829 and then (Has_Discriminants (Full_P)
5830 or else Present (Underlying_Record_View (Full_P)))
5831 and then not In_Open_Scopes (Par_Scope)
5832 and then Expander_Active
5833 then
5834 declare
5835 Full_Der : constant Entity_Id := Make_Temporary (Loc, 'T');
5836 New_Ext : constant Node_Id :=
5837 Copy_Separate_Tree
5838 (Record_Extension_Part (Type_Definition (N)));
5839 Decl : Node_Id;
5840
5841 begin
5842 Build_Derived_Record_Type
5843 (N, Parent_Type, Derived_Type, Derive_Subps);
5844
5845 -- Build anonymous completion, as a derivation from the full
5846 -- view of the parent. This is not a completion in the usual
5847 -- sense, because the current type is not private.
5848
5849 Decl :=
5850 Make_Full_Type_Declaration (Loc,
5851 Defining_Identifier => Full_Der,
5852 Type_Definition =>
5853 Make_Derived_Type_Definition (Loc,
5854 Subtype_Indication =>
5855 New_Copy_Tree
5856 (Subtype_Indication (Type_Definition (N))),
5857 Record_Extension_Part => New_Ext));
5858
5859 -- If the parent type has an underlying record view, use it
5860 -- here to build the new underlying record view.
5861
5862 if Present (Underlying_Record_View (Full_P)) then
5863 pragma Assert
5864 (Nkind (Subtype_Indication (Type_Definition (Decl)))
5865 = N_Identifier);
5866 Set_Entity (Subtype_Indication (Type_Definition (Decl)),
5867 Underlying_Record_View (Full_P));
5868 end if;
5869
5870 Install_Private_Declarations (Par_Scope);
5871 Install_Visible_Declarations (Par_Scope);
5872 Insert_Before (N, Decl);
5873
5874 -- Mark entity as an underlying record view before analysis,
5875 -- to avoid generating the list of its primitive operations
5876 -- (which is not really required for this entity) and thus
5877 -- prevent spurious errors associated with missing overriding
5878 -- of abstract primitives (overridden only for Derived_Type).
5879
5880 Set_Ekind (Full_Der, E_Record_Type);
5881 Set_Is_Underlying_Record_View (Full_Der);
5882
5883 Analyze (Decl);
5884
5885 pragma Assert (Has_Discriminants (Full_Der)
5886 and then not Has_Unknown_Discriminants (Full_Der));
5887
5888 Uninstall_Declarations (Par_Scope);
5889
5890 -- Freeze the underlying record view, to prevent generation of
5891 -- useless dispatching information, which is simply shared with
5892 -- the real derived type.
5893
5894 Set_Is_Frozen (Full_Der);
5895
5896 -- Set up links between real entity and underlying record view
5897
5898 Set_Underlying_Record_View (Derived_Type, Base_Type (Full_Der));
5899 Set_Underlying_Record_View (Base_Type (Full_Der), Derived_Type);
5900 end;
5901
5902 -- If discriminants are known, build derived record
5903
5904 else
5905 Build_Derived_Record_Type
5906 (N, Parent_Type, Derived_Type, Derive_Subps);
5907 end if;
5908
5909 return;
5910
5911 elsif Has_Discriminants (Parent_Type) then
5912 if Present (Full_View (Parent_Type)) then
5913 if not Is_Completion then
5914
5915 -- Copy declaration for subsequent analysis, to provide a
5916 -- completion for what is a private declaration. Indicate that
5917 -- the full type is internally generated.
5918
5919 Full_Decl := New_Copy_Tree (N);
5920 Full_Der := New_Copy (Derived_Type);
5921 Set_Comes_From_Source (Full_Decl, False);
5922 Set_Comes_From_Source (Full_Der, False);
5923 Set_Parent (Full_Der, Full_Decl);
5924
5925 Insert_After (N, Full_Decl);
5926
5927 else
5928 -- If this is a completion, the full view being built is itself
5929 -- private. We build a subtype of the parent with the same
5930 -- constraints as this full view, to convey to the back end the
5931 -- constrained components and the size of this subtype. If the
5932 -- parent is constrained, its full view can serve as the
5933 -- underlying full view of the derived type.
5934
5935 if No (Discriminant_Specifications (N)) then
5936 if Nkind (Subtype_Indication (Type_Definition (N))) =
5937 N_Subtype_Indication
5938 then
5939 Build_Underlying_Full_View (N, Derived_Type, Parent_Type);
5940
5941 elsif Is_Constrained (Full_View (Parent_Type)) then
5942 Set_Underlying_Full_View
5943 (Derived_Type, Full_View (Parent_Type));
5944 end if;
5945
5946 else
5947 -- If there are new discriminants, the parent subtype is
5948 -- constrained by them, but it is not clear how to build
5949 -- the Underlying_Full_View in this case???
5950
5951 null;
5952 end if;
5953 end if;
5954 end if;
5955
5956 -- Build partial view of derived type from partial view of parent
5957
5958 Build_Derived_Record_Type
5959 (N, Parent_Type, Derived_Type, Derive_Subps);
5960
5961 if Present (Full_View (Parent_Type)) and then not Is_Completion then
5962 if not In_Open_Scopes (Par_Scope)
5963 or else not In_Same_Source_Unit (N, Parent_Type)
5964 then
5965 -- Swap partial and full views temporarily
5966
5967 Install_Private_Declarations (Par_Scope);
5968 Install_Visible_Declarations (Par_Scope);
5969 Swapped := True;
5970 end if;
5971
5972 -- Build full view of derived type from full view of parent which
5973 -- is now installed. Subprograms have been derived on the partial
5974 -- view, the completion does not derive them anew.
5975
5976 if not Is_Tagged_Type (Parent_Type) then
5977
5978 -- If the parent is itself derived from another private type,
5979 -- installing the private declarations has not affected its
5980 -- privacy status, so use its own full view explicitly.
5981
5982 if Is_Private_Type (Parent_Type) then
5983 Build_Derived_Record_Type
5984 (Full_Decl, Full_View (Parent_Type), Full_Der, False);
5985 else
5986 Build_Derived_Record_Type
5987 (Full_Decl, Parent_Type, Full_Der, False);
5988 end if;
5989
5990 else
5991 -- If full view of parent is tagged, the completion inherits
5992 -- the proper primitive operations.
5993
5994 Set_Defining_Identifier (Full_Decl, Full_Der);
5995 Build_Derived_Record_Type
5996 (Full_Decl, Parent_Type, Full_Der, Derive_Subps);
5997 end if;
5998
5999 -- The full declaration has been introduced into the tree and
6000 -- processed in the step above. It should not be analyzed again
6001 -- (when encountered later in the current list of declarations)
6002 -- to prevent spurious name conflicts. The full entity remains
6003 -- invisible.
6004
6005 Set_Analyzed (Full_Decl);
6006
6007 if Swapped then
6008 Uninstall_Declarations (Par_Scope);
6009
6010 if In_Open_Scopes (Par_Scope) then
6011 Install_Visible_Declarations (Par_Scope);
6012 end if;
6013 end if;
6014
6015 Der_Base := Base_Type (Derived_Type);
6016 Set_Full_View (Derived_Type, Full_Der);
6017 Set_Full_View (Der_Base, Base_Type (Full_Der));
6018
6019 -- Copy the discriminant list from full view to the partial views
6020 -- (base type and its subtype). Gigi requires that the partial and
6021 -- full views have the same discriminants.
6022
6023 -- Note that since the partial view is pointing to discriminants
6024 -- in the full view, their scope will be that of the full view.
6025 -- This might cause some front end problems and need adjustment???
6026
6027 Discr := First_Discriminant (Base_Type (Full_Der));
6028 Set_First_Entity (Der_Base, Discr);
6029
6030 loop
6031 Last_Discr := Discr;
6032 Next_Discriminant (Discr);
6033 exit when No (Discr);
6034 end loop;
6035
6036 Set_Last_Entity (Der_Base, Last_Discr);
6037
6038 Set_First_Entity (Derived_Type, First_Entity (Der_Base));
6039 Set_Last_Entity (Derived_Type, Last_Entity (Der_Base));
6040 Set_Stored_Constraint (Full_Der, Stored_Constraint (Derived_Type));
6041
6042 else
6043 -- If this is a completion, the derived type stays private and
6044 -- there is no need to create a further full view, except in the
6045 -- unusual case when the derivation is nested within a child unit,
6046 -- see below.
6047
6048 null;
6049 end if;
6050
6051 elsif Present (Full_View (Parent_Type))
6052 and then Has_Discriminants (Full_View (Parent_Type))
6053 then
6054 if Has_Unknown_Discriminants (Parent_Type)
6055 and then Nkind (Subtype_Indication (Type_Definition (N))) =
6056 N_Subtype_Indication
6057 then
6058 Error_Msg_N
6059 ("cannot constrain type with unknown discriminants",
6060 Subtype_Indication (Type_Definition (N)));
6061 return;
6062 end if;
6063
6064 -- If full view of parent is a record type, build full view as a
6065 -- derivation from the parent's full view. Partial view remains
6066 -- private. For code generation and linking, the full view must have
6067 -- the same public status as the partial one. This full view is only
6068 -- needed if the parent type is in an enclosing scope, so that the
6069 -- full view may actually become visible, e.g. in a child unit. This
6070 -- is both more efficient, and avoids order of freezing problems with
6071 -- the added entities.
6072
6073 if not Is_Private_Type (Full_View (Parent_Type))
6074 and then (In_Open_Scopes (Scope (Parent_Type)))
6075 then
6076 Full_Der := Make_Defining_Identifier (Sloc (Derived_Type),
6077 Chars (Derived_Type));
6078 Set_Is_Itype (Full_Der);
6079 Set_Has_Private_Declaration (Full_Der);
6080 Set_Has_Private_Declaration (Derived_Type);
6081 Set_Associated_Node_For_Itype (Full_Der, N);
6082 Set_Parent (Full_Der, Parent (Derived_Type));
6083 Set_Full_View (Derived_Type, Full_Der);
6084 Set_Is_Public (Full_Der, Is_Public (Derived_Type));
6085 Full_P := Full_View (Parent_Type);
6086 Exchange_Declarations (Parent_Type);
6087 Copy_And_Build;
6088 Exchange_Declarations (Full_P);
6089
6090 else
6091 Build_Derived_Record_Type
6092 (N, Full_View (Parent_Type), Derived_Type,
6093 Derive_Subps => False);
6094 end if;
6095
6096 -- In any case, the primitive operations are inherited from the
6097 -- parent type, not from the internal full view.
6098
6099 Set_Etype (Base_Type (Derived_Type), Base_Type (Parent_Type));
6100
6101 if Derive_Subps then
6102 Derive_Subprograms (Parent_Type, Derived_Type);
6103 end if;
6104
6105 else
6106 -- Untagged type, No discriminants on either view
6107
6108 if Nkind (Subtype_Indication (Type_Definition (N))) =
6109 N_Subtype_Indication
6110 then
6111 Error_Msg_N
6112 ("illegal constraint on type without discriminants", N);
6113 end if;
6114
6115 if Present (Discriminant_Specifications (N))
6116 and then Present (Full_View (Parent_Type))
6117 and then not Is_Tagged_Type (Full_View (Parent_Type))
6118 then
6119 Error_Msg_N ("cannot add discriminants to untagged type", N);
6120 end if;
6121
6122 Set_Stored_Constraint (Derived_Type, No_Elist);
6123 Set_Is_Constrained (Derived_Type, Is_Constrained (Parent_Type));
6124 Set_Is_Controlled (Derived_Type, Is_Controlled (Parent_Type));
6125 Set_Has_Controlled_Component
6126 (Derived_Type, Has_Controlled_Component
6127 (Parent_Type));
6128
6129 -- Direct controlled types do not inherit Finalize_Storage_Only flag
6130
6131 if not Is_Controlled (Parent_Type) then
6132 Set_Finalize_Storage_Only
6133 (Base_Type (Derived_Type), Finalize_Storage_Only (Parent_Type));
6134 end if;
6135
6136 -- Construct the implicit full view by deriving from full view of the
6137 -- parent type. In order to get proper visibility, we install the
6138 -- parent scope and its declarations.
6139
6140 -- ??? If the parent is untagged private and its completion is
6141 -- tagged, this mechanism will not work because we cannot derive from
6142 -- the tagged full view unless we have an extension.
6143
6144 if Present (Full_View (Parent_Type))
6145 and then not Is_Tagged_Type (Full_View (Parent_Type))
6146 and then not Is_Completion
6147 then
6148 Full_Der :=
6149 Make_Defining_Identifier (Sloc (Derived_Type),
6150 Chars => Chars (Derived_Type));
6151 Set_Is_Itype (Full_Der);
6152 Set_Has_Private_Declaration (Full_Der);
6153 Set_Has_Private_Declaration (Derived_Type);
6154 Set_Associated_Node_For_Itype (Full_Der, N);
6155 Set_Parent (Full_Der, Parent (Derived_Type));
6156 Set_Full_View (Derived_Type, Full_Der);
6157
6158 if not In_Open_Scopes (Par_Scope) then
6159 Install_Private_Declarations (Par_Scope);
6160 Install_Visible_Declarations (Par_Scope);
6161 Copy_And_Build;
6162 Uninstall_Declarations (Par_Scope);
6163
6164 -- If parent scope is open and in another unit, and parent has a
6165 -- completion, then the derivation is taking place in the visible
6166 -- part of a child unit. In that case retrieve the full view of
6167 -- the parent momentarily.
6168
6169 elsif not In_Same_Source_Unit (N, Parent_Type) then
6170 Full_P := Full_View (Parent_Type);
6171 Exchange_Declarations (Parent_Type);
6172 Copy_And_Build;
6173 Exchange_Declarations (Full_P);
6174
6175 -- Otherwise it is a local derivation
6176
6177 else
6178 Copy_And_Build;
6179 end if;
6180
6181 Set_Scope (Full_Der, Current_Scope);
6182 Set_Is_First_Subtype (Full_Der,
6183 Is_First_Subtype (Derived_Type));
6184 Set_Has_Size_Clause (Full_Der, False);
6185 Set_Has_Alignment_Clause (Full_Der, False);
6186 Set_Next_Entity (Full_Der, Empty);
6187 Set_Has_Delayed_Freeze (Full_Der);
6188 Set_Is_Frozen (Full_Der, False);
6189 Set_Freeze_Node (Full_Der, Empty);
6190 Set_Depends_On_Private (Full_Der,
6191 Has_Private_Component (Full_Der));
6192 Set_Public_Status (Full_Der);
6193 end if;
6194 end if;
6195
6196 Set_Has_Unknown_Discriminants (Derived_Type,
6197 Has_Unknown_Discriminants (Parent_Type));
6198
6199 if Is_Private_Type (Derived_Type) then
6200 Set_Private_Dependents (Derived_Type, New_Elmt_List);
6201 end if;
6202
6203 if Is_Private_Type (Parent_Type)
6204 and then Base_Type (Parent_Type) = Parent_Type
6205 and then In_Open_Scopes (Scope (Parent_Type))
6206 then
6207 Append_Elmt (Derived_Type, Private_Dependents (Parent_Type));
6208
6209 if Is_Child_Unit (Scope (Current_Scope))
6210 and then Is_Completion
6211 and then In_Private_Part (Current_Scope)
6212 and then Scope (Parent_Type) /= Current_Scope
6213 then
6214 -- This is the unusual case where a type completed by a private
6215 -- derivation occurs within a package nested in a child unit, and
6216 -- the parent is declared in an ancestor. In this case, the full
6217 -- view of the parent type will become visible in the body of
6218 -- the enclosing child, and only then will the current type be
6219 -- possibly non-private. We build a underlying full view that
6220 -- will be installed when the enclosing child body is compiled.
6221
6222 Full_Der :=
6223 Make_Defining_Identifier (Sloc (Derived_Type),
6224 Chars => Chars (Derived_Type));
6225 Set_Is_Itype (Full_Der);
6226 Build_Itype_Reference (Full_Der, N);
6227
6228 -- The full view will be used to swap entities on entry/exit to
6229 -- the body, and must appear in the entity list for the package.
6230
6231 Append_Entity (Full_Der, Scope (Derived_Type));
6232 Set_Has_Private_Declaration (Full_Der);
6233 Set_Has_Private_Declaration (Derived_Type);
6234 Set_Associated_Node_For_Itype (Full_Der, N);
6235 Set_Parent (Full_Der, Parent (Derived_Type));
6236 Full_P := Full_View (Parent_Type);
6237 Exchange_Declarations (Parent_Type);
6238 Copy_And_Build;
6239 Exchange_Declarations (Full_P);
6240 Set_Underlying_Full_View (Derived_Type, Full_Der);
6241 end if;
6242 end if;
6243 end Build_Derived_Private_Type;
6244
6245 -------------------------------
6246 -- Build_Derived_Record_Type --
6247 -------------------------------
6248
6249 -- 1. INTRODUCTION
6250
6251 -- Ideally we would like to use the same model of type derivation for
6252 -- tagged and untagged record types. Unfortunately this is not quite
6253 -- possible because the semantics of representation clauses is different
6254 -- for tagged and untagged records under inheritance. Consider the
6255 -- following:
6256
6257 -- type R (...) is [tagged] record ... end record;
6258 -- type T (...) is new R (...) [with ...];
6259
6260 -- The representation clauses for T can specify a completely different
6261 -- record layout from R's. Hence the same component can be placed in two
6262 -- very different positions in objects of type T and R. If R and T are
6263 -- tagged types, representation clauses for T can only specify the layout
6264 -- of non inherited components, thus components that are common in R and T
6265 -- have the same position in objects of type R and T.
6266
6267 -- This has two implications. The first is that the entire tree for R's
6268 -- declaration needs to be copied for T in the untagged case, so that T
6269 -- can be viewed as a record type of its own with its own representation
6270 -- clauses. The second implication is the way we handle discriminants.
6271 -- Specifically, in the untagged case we need a way to communicate to Gigi
6272 -- what are the real discriminants in the record, while for the semantics
6273 -- we need to consider those introduced by the user to rename the
6274 -- discriminants in the parent type. This is handled by introducing the
6275 -- notion of stored discriminants. See below for more.
6276
6277 -- Fortunately the way regular components are inherited can be handled in
6278 -- the same way in tagged and untagged types.
6279
6280 -- To complicate things a bit more the private view of a private extension
6281 -- cannot be handled in the same way as the full view (for one thing the
6282 -- semantic rules are somewhat different). We will explain what differs
6283 -- below.
6284
6285 -- 2. DISCRIMINANTS UNDER INHERITANCE
6286
6287 -- The semantic rules governing the discriminants of derived types are
6288 -- quite subtle.
6289
6290 -- type Derived_Type_Name [KNOWN_DISCRIMINANT_PART] is new
6291 -- [abstract] Parent_Type_Name [CONSTRAINT] [RECORD_EXTENSION_PART]
6292
6293 -- If parent type has discriminants, then the discriminants that are
6294 -- declared in the derived type are [3.4 (11)]:
6295
6296 -- o The discriminants specified by a new KNOWN_DISCRIMINANT_PART, if
6297 -- there is one;
6298
6299 -- o Otherwise, each discriminant of the parent type (implicitly declared
6300 -- in the same order with the same specifications). In this case, the
6301 -- discriminants are said to be "inherited", or if unknown in the parent
6302 -- are also unknown in the derived type.
6303
6304 -- Furthermore if a KNOWN_DISCRIMINANT_PART is provided, then [3.7(13-18)]:
6305
6306 -- o The parent subtype shall be constrained;
6307
6308 -- o If the parent type is not a tagged type, then each discriminant of
6309 -- the derived type shall be used in the constraint defining a parent
6310 -- subtype. [Implementation note: This ensures that the new discriminant
6311 -- can share storage with an existing discriminant.]
6312
6313 -- For the derived type each discriminant of the parent type is either
6314 -- inherited, constrained to equal some new discriminant of the derived
6315 -- type, or constrained to the value of an expression.
6316
6317 -- When inherited or constrained to equal some new discriminant, the
6318 -- parent discriminant and the discriminant of the derived type are said
6319 -- to "correspond".
6320
6321 -- If a discriminant of the parent type is constrained to a specific value
6322 -- in the derived type definition, then the discriminant is said to be
6323 -- "specified" by that derived type definition.
6324
6325 -- 3. DISCRIMINANTS IN DERIVED UNTAGGED RECORD TYPES
6326
6327 -- We have spoken about stored discriminants in point 1 (introduction)
6328 -- above. There are two sort of stored discriminants: implicit and
6329 -- explicit. As long as the derived type inherits the same discriminants as
6330 -- the root record type, stored discriminants are the same as regular
6331 -- discriminants, and are said to be implicit. However, if any discriminant
6332 -- in the root type was renamed in the derived type, then the derived
6333 -- type will contain explicit stored discriminants. Explicit stored
6334 -- discriminants are discriminants in addition to the semantically visible
6335 -- discriminants defined for the derived type. Stored discriminants are
6336 -- used by Gigi to figure out what are the physical discriminants in
6337 -- objects of the derived type (see precise definition in einfo.ads).
6338 -- As an example, consider the following:
6339
6340 -- type R (D1, D2, D3 : Int) is record ... end record;
6341 -- type T1 is new R;
6342 -- type T2 (X1, X2: Int) is new T1 (X2, 88, X1);
6343 -- type T3 is new T2;
6344 -- type T4 (Y : Int) is new T3 (Y, 99);
6345
6346 -- The following table summarizes the discriminants and stored
6347 -- discriminants in R and T1 through T4.
6348
6349 -- Type Discrim Stored Discrim Comment
6350 -- R (D1, D2, D3) (D1, D2, D3) Girder discrims implicit in R
6351 -- T1 (D1, D2, D3) (D1, D2, D3) Girder discrims implicit in T1
6352 -- T2 (X1, X2) (D1, D2, D3) Girder discrims EXPLICIT in T2
6353 -- T3 (X1, X2) (D1, D2, D3) Girder discrims EXPLICIT in T3
6354 -- T4 (Y) (D1, D2, D3) Girder discrims EXPLICIT in T4
6355
6356 -- Field Corresponding_Discriminant (abbreviated CD below) allows us to
6357 -- find the corresponding discriminant in the parent type, while
6358 -- Original_Record_Component (abbreviated ORC below), the actual physical
6359 -- component that is renamed. Finally the field Is_Completely_Hidden
6360 -- (abbreviated ICH below) is set for all explicit stored discriminants
6361 -- (see einfo.ads for more info). For the above example this gives:
6362
6363 -- Discrim CD ORC ICH
6364 -- ^^^^^^^ ^^ ^^^ ^^^
6365 -- D1 in R empty itself no
6366 -- D2 in R empty itself no
6367 -- D3 in R empty itself no
6368
6369 -- D1 in T1 D1 in R itself no
6370 -- D2 in T1 D2 in R itself no
6371 -- D3 in T1 D3 in R itself no
6372
6373 -- X1 in T2 D3 in T1 D3 in T2 no
6374 -- X2 in T2 D1 in T1 D1 in T2 no
6375 -- D1 in T2 empty itself yes
6376 -- D2 in T2 empty itself yes
6377 -- D3 in T2 empty itself yes
6378
6379 -- X1 in T3 X1 in T2 D3 in T3 no
6380 -- X2 in T3 X2 in T2 D1 in T3 no
6381 -- D1 in T3 empty itself yes
6382 -- D2 in T3 empty itself yes
6383 -- D3 in T3 empty itself yes
6384
6385 -- Y in T4 X1 in T3 D3 in T3 no
6386 -- D1 in T3 empty itself yes
6387 -- D2 in T3 empty itself yes
6388 -- D3 in T3 empty itself yes
6389
6390 -- 4. DISCRIMINANTS IN DERIVED TAGGED RECORD TYPES
6391
6392 -- Type derivation for tagged types is fairly straightforward. If no
6393 -- discriminants are specified by the derived type, these are inherited
6394 -- from the parent. No explicit stored discriminants are ever necessary.
6395 -- The only manipulation that is done to the tree is that of adding a
6396 -- _parent field with parent type and constrained to the same constraint
6397 -- specified for the parent in the derived type definition. For instance:
6398
6399 -- type R (D1, D2, D3 : Int) is tagged record ... end record;
6400 -- type T1 is new R with null record;
6401 -- type T2 (X1, X2: Int) is new T1 (X2, 88, X1) with null record;
6402
6403 -- are changed into:
6404
6405 -- type T1 (D1, D2, D3 : Int) is new R (D1, D2, D3) with record
6406 -- _parent : R (D1, D2, D3);
6407 -- end record;
6408
6409 -- type T2 (X1, X2: Int) is new T1 (X2, 88, X1) with record
6410 -- _parent : T1 (X2, 88, X1);
6411 -- end record;
6412
6413 -- The discriminants actually present in R, T1 and T2 as well as their CD,
6414 -- ORC and ICH fields are:
6415
6416 -- Discrim CD ORC ICH
6417 -- ^^^^^^^ ^^ ^^^ ^^^
6418 -- D1 in R empty itself no
6419 -- D2 in R empty itself no
6420 -- D3 in R empty itself no
6421
6422 -- D1 in T1 D1 in R D1 in R no
6423 -- D2 in T1 D2 in R D2 in R no
6424 -- D3 in T1 D3 in R D3 in R no
6425
6426 -- X1 in T2 D3 in T1 D3 in R no
6427 -- X2 in T2 D1 in T1 D1 in R no
6428
6429 -- 5. FIRST TRANSFORMATION FOR DERIVED RECORDS
6430 --
6431 -- Regardless of whether we dealing with a tagged or untagged type
6432 -- we will transform all derived type declarations of the form
6433 --
6434 -- type T is new R (...) [with ...];
6435 -- or
6436 -- subtype S is R (...);
6437 -- type T is new S [with ...];
6438 -- into
6439 -- type BT is new R [with ...];
6440 -- subtype T is BT (...);
6441 --
6442 -- That is, the base derived type is constrained only if it has no
6443 -- discriminants. The reason for doing this is that GNAT's semantic model
6444 -- assumes that a base type with discriminants is unconstrained.
6445 --
6446 -- Note that, strictly speaking, the above transformation is not always
6447 -- correct. Consider for instance the following excerpt from ACVC b34011a:
6448 --
6449 -- procedure B34011A is
6450 -- type REC (D : integer := 0) is record
6451 -- I : Integer;
6452 -- end record;
6453
6454 -- package P is
6455 -- type T6 is new Rec;
6456 -- function F return T6;
6457 -- end P;
6458
6459 -- use P;
6460 -- package Q6 is
6461 -- type U is new T6 (Q6.F.I); -- ERROR: Q6.F.
6462 -- end Q6;
6463 --
6464 -- The definition of Q6.U is illegal. However transforming Q6.U into
6465
6466 -- type BaseU is new T6;
6467 -- subtype U is BaseU (Q6.F.I)
6468
6469 -- turns U into a legal subtype, which is incorrect. To avoid this problem
6470 -- we always analyze the constraint (in this case (Q6.F.I)) before applying
6471 -- the transformation described above.
6472
6473 -- There is another instance where the above transformation is incorrect.
6474 -- Consider:
6475
6476 -- package Pack is
6477 -- type Base (D : Integer) is tagged null record;
6478 -- procedure P (X : Base);
6479
6480 -- type Der is new Base (2) with null record;
6481 -- procedure P (X : Der);
6482 -- end Pack;
6483
6484 -- Then the above transformation turns this into
6485
6486 -- type Der_Base is new Base with null record;
6487 -- -- procedure P (X : Base) is implicitly inherited here
6488 -- -- as procedure P (X : Der_Base).
6489
6490 -- subtype Der is Der_Base (2);
6491 -- procedure P (X : Der);
6492 -- -- The overriding of P (X : Der_Base) is illegal since we
6493 -- -- have a parameter conformance problem.
6494
6495 -- To get around this problem, after having semantically processed Der_Base
6496 -- and the rewritten subtype declaration for Der, we copy Der_Base field
6497 -- Discriminant_Constraint from Der so that when parameter conformance is
6498 -- checked when P is overridden, no semantic errors are flagged.
6499
6500 -- 6. SECOND TRANSFORMATION FOR DERIVED RECORDS
6501
6502 -- Regardless of whether we are dealing with a tagged or untagged type
6503 -- we will transform all derived type declarations of the form
6504
6505 -- type R (D1, .., Dn : ...) is [tagged] record ...;
6506 -- type T is new R [with ...];
6507 -- into
6508 -- type T (D1, .., Dn : ...) is new R (D1, .., Dn) [with ...];
6509
6510 -- The reason for such transformation is that it allows us to implement a
6511 -- very clean form of component inheritance as explained below.
6512
6513 -- Note that this transformation is not achieved by direct tree rewriting
6514 -- and manipulation, but rather by redoing the semantic actions that the
6515 -- above transformation will entail. This is done directly in routine
6516 -- Inherit_Components.
6517
6518 -- 7. TYPE DERIVATION AND COMPONENT INHERITANCE
6519
6520 -- In both tagged and untagged derived types, regular non discriminant
6521 -- components are inherited in the derived type from the parent type. In
6522 -- the absence of discriminants component, inheritance is straightforward
6523 -- as components can simply be copied from the parent.
6524
6525 -- If the parent has discriminants, inheriting components constrained with
6526 -- these discriminants requires caution. Consider the following example:
6527
6528 -- type R (D1, D2 : Positive) is [tagged] record
6529 -- S : String (D1 .. D2);
6530 -- end record;
6531
6532 -- type T1 is new R [with null record];
6533 -- type T2 (X : positive) is new R (1, X) [with null record];
6534
6535 -- As explained in 6. above, T1 is rewritten as
6536 -- type T1 (D1, D2 : Positive) is new R (D1, D2) [with null record];
6537 -- which makes the treatment for T1 and T2 identical.
6538
6539 -- What we want when inheriting S, is that references to D1 and D2 in R are
6540 -- replaced with references to their correct constraints, i.e. D1 and D2 in
6541 -- T1 and 1 and X in T2. So all R's discriminant references are replaced
6542 -- with either discriminant references in the derived type or expressions.
6543 -- This replacement is achieved as follows: before inheriting R's
6544 -- components, a subtype R (D1, D2) for T1 (resp. R (1, X) for T2) is
6545 -- created in the scope of T1 (resp. scope of T2) so that discriminants D1
6546 -- and D2 of T1 are visible (resp. discriminant X of T2 is visible).
6547 -- For T2, for instance, this has the effect of replacing String (D1 .. D2)
6548 -- by String (1 .. X).
6549
6550 -- 8. TYPE DERIVATION IN PRIVATE TYPE EXTENSIONS
6551
6552 -- We explain here the rules governing private type extensions relevant to
6553 -- type derivation. These rules are explained on the following example:
6554
6555 -- type D [(...)] is new A [(...)] with private; <-- partial view
6556 -- type D [(...)] is new P [(...)] with null record; <-- full view
6557
6558 -- Type A is called the ancestor subtype of the private extension.
6559 -- Type P is the parent type of the full view of the private extension. It
6560 -- must be A or a type derived from A.
6561
6562 -- The rules concerning the discriminants of private type extensions are
6563 -- [7.3(10-13)]:
6564
6565 -- o If a private extension inherits known discriminants from the ancestor
6566 -- subtype, then the full view shall also inherit its discriminants from
6567 -- the ancestor subtype and the parent subtype of the full view shall be
6568 -- constrained if and only if the ancestor subtype is constrained.
6569
6570 -- o If a partial view has unknown discriminants, then the full view may
6571 -- define a definite or an indefinite subtype, with or without
6572 -- discriminants.
6573
6574 -- o If a partial view has neither known nor unknown discriminants, then
6575 -- the full view shall define a definite subtype.
6576
6577 -- o If the ancestor subtype of a private extension has constrained
6578 -- discriminants, then the parent subtype of the full view shall impose a
6579 -- statically matching constraint on those discriminants.
6580
6581 -- This means that only the following forms of private extensions are
6582 -- allowed:
6583
6584 -- type D is new A with private; <-- partial view
6585 -- type D is new P with null record; <-- full view
6586
6587 -- If A has no discriminants than P has no discriminants, otherwise P must
6588 -- inherit A's discriminants.
6589
6590 -- type D is new A (...) with private; <-- partial view
6591 -- type D is new P (:::) with null record; <-- full view
6592
6593 -- P must inherit A's discriminants and (...) and (:::) must statically
6594 -- match.
6595
6596 -- subtype A is R (...);
6597 -- type D is new A with private; <-- partial view
6598 -- type D is new P with null record; <-- full view
6599
6600 -- P must have inherited R's discriminants and must be derived from A or
6601 -- any of its subtypes.
6602
6603 -- type D (..) is new A with private; <-- partial view
6604 -- type D (..) is new P [(:::)] with null record; <-- full view
6605
6606 -- No specific constraints on P's discriminants or constraint (:::).
6607 -- Note that A can be unconstrained, but the parent subtype P must either
6608 -- be constrained or (:::) must be present.
6609
6610 -- type D (..) is new A [(...)] with private; <-- partial view
6611 -- type D (..) is new P [(:::)] with null record; <-- full view
6612
6613 -- P's constraints on A's discriminants must statically match those
6614 -- imposed by (...).
6615
6616 -- 9. IMPLEMENTATION OF TYPE DERIVATION FOR PRIVATE EXTENSIONS
6617
6618 -- The full view of a private extension is handled exactly as described
6619 -- above. The model chose for the private view of a private extension is
6620 -- the same for what concerns discriminants (i.e. they receive the same
6621 -- treatment as in the tagged case). However, the private view of the
6622 -- private extension always inherits the components of the parent base,
6623 -- without replacing any discriminant reference. Strictly speaking this is
6624 -- incorrect. However, Gigi never uses this view to generate code so this
6625 -- is a purely semantic issue. In theory, a set of transformations similar
6626 -- to those given in 5. and 6. above could be applied to private views of
6627 -- private extensions to have the same model of component inheritance as
6628 -- for non private extensions. However, this is not done because it would
6629 -- further complicate private type processing. Semantically speaking, this
6630 -- leaves us in an uncomfortable situation. As an example consider:
6631
6632 -- package Pack is
6633 -- type R (D : integer) is tagged record
6634 -- S : String (1 .. D);
6635 -- end record;
6636 -- procedure P (X : R);
6637 -- type T is new R (1) with private;
6638 -- private
6639 -- type T is new R (1) with null record;
6640 -- end;
6641
6642 -- This is transformed into:
6643
6644 -- package Pack is
6645 -- type R (D : integer) is tagged record
6646 -- S : String (1 .. D);
6647 -- end record;
6648 -- procedure P (X : R);
6649 -- type T is new R (1) with private;
6650 -- private
6651 -- type BaseT is new R with null record;
6652 -- subtype T is BaseT (1);
6653 -- end;
6654
6655 -- (strictly speaking the above is incorrect Ada)
6656
6657 -- From the semantic standpoint the private view of private extension T
6658 -- should be flagged as constrained since one can clearly have
6659 --
6660 -- Obj : T;
6661 --
6662 -- in a unit withing Pack. However, when deriving subprograms for the
6663 -- private view of private extension T, T must be seen as unconstrained
6664 -- since T has discriminants (this is a constraint of the current
6665 -- subprogram derivation model). Thus, when processing the private view of
6666 -- a private extension such as T, we first mark T as unconstrained, we
6667 -- process it, we perform program derivation and just before returning from
6668 -- Build_Derived_Record_Type we mark T as constrained.
6669
6670 -- ??? Are there are other uncomfortable cases that we will have to
6671 -- deal with.
6672
6673 -- 10. RECORD_TYPE_WITH_PRIVATE complications
6674
6675 -- Types that are derived from a visible record type and have a private
6676 -- extension present other peculiarities. They behave mostly like private
6677 -- types, but if they have primitive operations defined, these will not
6678 -- have the proper signatures for further inheritance, because other
6679 -- primitive operations will use the implicit base that we define for
6680 -- private derivations below. This affect subprogram inheritance (see
6681 -- Derive_Subprograms for details). We also derive the implicit base from
6682 -- the base type of the full view, so that the implicit base is a record
6683 -- type and not another private type, This avoids infinite loops.
6684
6685 procedure Build_Derived_Record_Type
6686 (N : Node_Id;
6687 Parent_Type : Entity_Id;
6688 Derived_Type : Entity_Id;
6689 Derive_Subps : Boolean := True)
6690 is
6691 Loc : constant Source_Ptr := Sloc (N);
6692 Parent_Base : Entity_Id;
6693 Type_Def : Node_Id;
6694 Indic : Node_Id;
6695 Discrim : Entity_Id;
6696 Last_Discrim : Entity_Id;
6697 Constrs : Elist_Id;
6698
6699 Discs : Elist_Id := New_Elmt_List;
6700 -- An empty Discs list means that there were no constraints in the
6701 -- subtype indication or that there was an error processing it.
6702
6703 Assoc_List : Elist_Id;
6704 New_Discrs : Elist_Id;
6705 New_Base : Entity_Id;
6706 New_Decl : Node_Id;
6707 New_Indic : Node_Id;
6708
6709 Is_Tagged : constant Boolean := Is_Tagged_Type (Parent_Type);
6710 Discriminant_Specs : constant Boolean :=
6711 Present (Discriminant_Specifications (N));
6712 Private_Extension : constant Boolean :=
6713 Nkind (N) = N_Private_Extension_Declaration;
6714
6715 Constraint_Present : Boolean;
6716 Inherit_Discrims : Boolean := False;
6717 Save_Etype : Entity_Id;
6718 Save_Discr_Constr : Elist_Id;
6719 Save_Next_Entity : Entity_Id;
6720
6721 begin
6722 if Ekind (Parent_Type) = E_Record_Type_With_Private
6723 and then Present (Full_View (Parent_Type))
6724 and then Has_Discriminants (Parent_Type)
6725 then
6726 Parent_Base := Base_Type (Full_View (Parent_Type));
6727 else
6728 Parent_Base := Base_Type (Parent_Type);
6729 end if;
6730
6731 -- Before we start the previously documented transformations, here is
6732 -- little fix for size and alignment of tagged types. Normally when we
6733 -- derive type D from type P, we copy the size and alignment of P as the
6734 -- default for D, and in the absence of explicit representation clauses
6735 -- for D, the size and alignment are indeed the same as the parent.
6736
6737 -- But this is wrong for tagged types, since fields may be added, and
6738 -- the default size may need to be larger, and the default alignment may
6739 -- need to be larger.
6740
6741 -- We therefore reset the size and alignment fields in the tagged case.
6742 -- Note that the size and alignment will in any case be at least as
6743 -- large as the parent type (since the derived type has a copy of the
6744 -- parent type in the _parent field)
6745
6746 -- The type is also marked as being tagged here, which is needed when
6747 -- processing components with a self-referential anonymous access type
6748 -- in the call to Check_Anonymous_Access_Components below. Note that
6749 -- this flag is also set later on for completeness.
6750
6751 if Is_Tagged then
6752 Set_Is_Tagged_Type (Derived_Type);
6753 Init_Size_Align (Derived_Type);
6754 end if;
6755
6756 -- STEP 0a: figure out what kind of derived type declaration we have
6757
6758 if Private_Extension then
6759 Type_Def := N;
6760 Set_Ekind (Derived_Type, E_Record_Type_With_Private);
6761
6762 else
6763 Type_Def := Type_Definition (N);
6764
6765 -- Ekind (Parent_Base) is not necessarily E_Record_Type since
6766 -- Parent_Base can be a private type or private extension. However,
6767 -- for tagged types with an extension the newly added fields are
6768 -- visible and hence the Derived_Type is always an E_Record_Type.
6769 -- (except that the parent may have its own private fields).
6770 -- For untagged types we preserve the Ekind of the Parent_Base.
6771
6772 if Present (Record_Extension_Part (Type_Def)) then
6773 Set_Ekind (Derived_Type, E_Record_Type);
6774
6775 -- Create internal access types for components with anonymous
6776 -- access types.
6777
6778 if Ada_Version >= Ada_2005 then
6779 Check_Anonymous_Access_Components
6780 (N, Derived_Type, Derived_Type,
6781 Component_List (Record_Extension_Part (Type_Def)));
6782 end if;
6783
6784 else
6785 Set_Ekind (Derived_Type, Ekind (Parent_Base));
6786 end if;
6787 end if;
6788
6789 -- Indic can either be an N_Identifier if the subtype indication
6790 -- contains no constraint or an N_Subtype_Indication if the subtype
6791 -- indication has a constraint.
6792
6793 Indic := Subtype_Indication (Type_Def);
6794 Constraint_Present := (Nkind (Indic) = N_Subtype_Indication);
6795
6796 -- Check that the type has visible discriminants. The type may be
6797 -- a private type with unknown discriminants whose full view has
6798 -- discriminants which are invisible.
6799
6800 if Constraint_Present then
6801 if not Has_Discriminants (Parent_Base)
6802 or else
6803 (Has_Unknown_Discriminants (Parent_Base)
6804 and then Is_Private_Type (Parent_Base))
6805 then
6806 Error_Msg_N
6807 ("invalid constraint: type has no discriminant",
6808 Constraint (Indic));
6809
6810 Constraint_Present := False;
6811 Rewrite (Indic, New_Copy_Tree (Subtype_Mark (Indic)));
6812
6813 elsif Is_Constrained (Parent_Type) then
6814 Error_Msg_N
6815 ("invalid constraint: parent type is already constrained",
6816 Constraint (Indic));
6817
6818 Constraint_Present := False;
6819 Rewrite (Indic, New_Copy_Tree (Subtype_Mark (Indic)));
6820 end if;
6821 end if;
6822
6823 -- STEP 0b: If needed, apply transformation given in point 5. above
6824
6825 if not Private_Extension
6826 and then Has_Discriminants (Parent_Type)
6827 and then not Discriminant_Specs
6828 and then (Is_Constrained (Parent_Type) or else Constraint_Present)
6829 then
6830 -- First, we must analyze the constraint (see comment in point 5.)
6831
6832 if Constraint_Present then
6833 New_Discrs := Build_Discriminant_Constraints (Parent_Type, Indic);
6834
6835 if Has_Discriminants (Derived_Type)
6836 and then Has_Private_Declaration (Derived_Type)
6837 and then Present (Discriminant_Constraint (Derived_Type))
6838 then
6839 -- Verify that constraints of the full view statically match
6840 -- those given in the partial view.
6841
6842 declare
6843 C1, C2 : Elmt_Id;
6844
6845 begin
6846 C1 := First_Elmt (New_Discrs);
6847 C2 := First_Elmt (Discriminant_Constraint (Derived_Type));
6848 while Present (C1) and then Present (C2) loop
6849 if Fully_Conformant_Expressions (Node (C1), Node (C2))
6850 or else
6851 (Is_OK_Static_Expression (Node (C1))
6852 and then
6853 Is_OK_Static_Expression (Node (C2))
6854 and then
6855 Expr_Value (Node (C1)) = Expr_Value (Node (C2)))
6856 then
6857 null;
6858
6859 else
6860 Error_Msg_N (
6861 "constraint not conformant to previous declaration",
6862 Node (C1));
6863 end if;
6864
6865 Next_Elmt (C1);
6866 Next_Elmt (C2);
6867 end loop;
6868 end;
6869 end if;
6870 end if;
6871
6872 -- Insert and analyze the declaration for the unconstrained base type
6873
6874 New_Base := Create_Itype (Ekind (Derived_Type), N, Derived_Type, 'B');
6875
6876 New_Decl :=
6877 Make_Full_Type_Declaration (Loc,
6878 Defining_Identifier => New_Base,
6879 Type_Definition =>
6880 Make_Derived_Type_Definition (Loc,
6881 Abstract_Present => Abstract_Present (Type_Def),
6882 Limited_Present => Limited_Present (Type_Def),
6883 Subtype_Indication =>
6884 New_Occurrence_Of (Parent_Base, Loc),
6885 Record_Extension_Part =>
6886 Relocate_Node (Record_Extension_Part (Type_Def)),
6887 Interface_List => Interface_List (Type_Def)));
6888
6889 Set_Parent (New_Decl, Parent (N));
6890 Mark_Rewrite_Insertion (New_Decl);
6891 Insert_Before (N, New_Decl);
6892
6893 -- In the extension case, make sure ancestor is frozen appropriately
6894 -- (see also non-discriminated case below).
6895
6896 if Present (Record_Extension_Part (Type_Def))
6897 or else Is_Interface (Parent_Base)
6898 then
6899 Freeze_Before (New_Decl, Parent_Type);
6900 end if;
6901
6902 -- Note that this call passes False for the Derive_Subps parameter
6903 -- because subprogram derivation is deferred until after creating
6904 -- the subtype (see below).
6905
6906 Build_Derived_Type
6907 (New_Decl, Parent_Base, New_Base,
6908 Is_Completion => True, Derive_Subps => False);
6909
6910 -- ??? This needs re-examination to determine whether the
6911 -- above call can simply be replaced by a call to Analyze.
6912
6913 Set_Analyzed (New_Decl);
6914
6915 -- Insert and analyze the declaration for the constrained subtype
6916
6917 if Constraint_Present then
6918 New_Indic :=
6919 Make_Subtype_Indication (Loc,
6920 Subtype_Mark => New_Occurrence_Of (New_Base, Loc),
6921 Constraint => Relocate_Node (Constraint (Indic)));
6922
6923 else
6924 declare
6925 Constr_List : constant List_Id := New_List;
6926 C : Elmt_Id;
6927 Expr : Node_Id;
6928
6929 begin
6930 C := First_Elmt (Discriminant_Constraint (Parent_Type));
6931 while Present (C) loop
6932 Expr := Node (C);
6933
6934 -- It is safe here to call New_Copy_Tree since
6935 -- Force_Evaluation was called on each constraint in
6936 -- Build_Discriminant_Constraints.
6937
6938 Append (New_Copy_Tree (Expr), To => Constr_List);
6939
6940 Next_Elmt (C);
6941 end loop;
6942
6943 New_Indic :=
6944 Make_Subtype_Indication (Loc,
6945 Subtype_Mark => New_Occurrence_Of (New_Base, Loc),
6946 Constraint =>
6947 Make_Index_Or_Discriminant_Constraint (Loc, Constr_List));
6948 end;
6949 end if;
6950
6951 Rewrite (N,
6952 Make_Subtype_Declaration (Loc,
6953 Defining_Identifier => Derived_Type,
6954 Subtype_Indication => New_Indic));
6955
6956 Analyze (N);
6957
6958 -- Derivation of subprograms must be delayed until the full subtype
6959 -- has been established to ensure proper overriding of subprograms
6960 -- inherited by full types. If the derivations occurred as part of
6961 -- the call to Build_Derived_Type above, then the check for type
6962 -- conformance would fail because earlier primitive subprograms
6963 -- could still refer to the full type prior the change to the new
6964 -- subtype and hence would not match the new base type created here.
6965
6966 Derive_Subprograms (Parent_Type, Derived_Type);
6967
6968 -- For tagged types the Discriminant_Constraint of the new base itype
6969 -- is inherited from the first subtype so that no subtype conformance
6970 -- problem arise when the first subtype overrides primitive
6971 -- operations inherited by the implicit base type.
6972
6973 if Is_Tagged then
6974 Set_Discriminant_Constraint
6975 (New_Base, Discriminant_Constraint (Derived_Type));
6976 end if;
6977
6978 return;
6979 end if;
6980
6981 -- If we get here Derived_Type will have no discriminants or it will be
6982 -- a discriminated unconstrained base type.
6983
6984 -- STEP 1a: perform preliminary actions/checks for derived tagged types
6985
6986 if Is_Tagged then
6987
6988 -- The parent type is frozen for non-private extensions (RM 13.14(7))
6989 -- The declaration of a specific descendant of an interface type
6990 -- freezes the interface type (RM 13.14).
6991
6992 if not Private_Extension or else Is_Interface (Parent_Base) then
6993 Freeze_Before (N, Parent_Type);
6994 end if;
6995
6996 -- In Ada 2005 (AI-344), the restriction that a derived tagged type
6997 -- cannot be declared at a deeper level than its parent type is
6998 -- removed. The check on derivation within a generic body is also
6999 -- relaxed, but there's a restriction that a derived tagged type
7000 -- cannot be declared in a generic body if it's derived directly
7001 -- or indirectly from a formal type of that generic.
7002
7003 if Ada_Version >= Ada_2005 then
7004 if Present (Enclosing_Generic_Body (Derived_Type)) then
7005 declare
7006 Ancestor_Type : Entity_Id;
7007
7008 begin
7009 -- Check to see if any ancestor of the derived type is a
7010 -- formal type.
7011
7012 Ancestor_Type := Parent_Type;
7013 while not Is_Generic_Type (Ancestor_Type)
7014 and then Etype (Ancestor_Type) /= Ancestor_Type
7015 loop
7016 Ancestor_Type := Etype (Ancestor_Type);
7017 end loop;
7018
7019 -- If the derived type does have a formal type as an
7020 -- ancestor, then it's an error if the derived type is
7021 -- declared within the body of the generic unit that
7022 -- declares the formal type in its generic formal part. It's
7023 -- sufficient to check whether the ancestor type is declared
7024 -- inside the same generic body as the derived type (such as
7025 -- within a nested generic spec), in which case the
7026 -- derivation is legal. If the formal type is declared
7027 -- outside of that generic body, then it's guaranteed that
7028 -- the derived type is declared within the generic body of
7029 -- the generic unit declaring the formal type.
7030
7031 if Is_Generic_Type (Ancestor_Type)
7032 and then Enclosing_Generic_Body (Ancestor_Type) /=
7033 Enclosing_Generic_Body (Derived_Type)
7034 then
7035 Error_Msg_NE
7036 ("parent type of& must not be descendant of formal type"
7037 & " of an enclosing generic body",
7038 Indic, Derived_Type);
7039 end if;
7040 end;
7041 end if;
7042
7043 elsif Type_Access_Level (Derived_Type) /=
7044 Type_Access_Level (Parent_Type)
7045 and then not Is_Generic_Type (Derived_Type)
7046 then
7047 if Is_Controlled (Parent_Type) then
7048 Error_Msg_N
7049 ("controlled type must be declared at the library level",
7050 Indic);
7051 else
7052 Error_Msg_N
7053 ("type extension at deeper accessibility level than parent",
7054 Indic);
7055 end if;
7056
7057 else
7058 declare
7059 GB : constant Node_Id := Enclosing_Generic_Body (Derived_Type);
7060
7061 begin
7062 if Present (GB)
7063 and then GB /= Enclosing_Generic_Body (Parent_Base)
7064 then
7065 Error_Msg_NE
7066 ("parent type of& must not be outside generic body"
7067 & " (RM 3.9.1(4))",
7068 Indic, Derived_Type);
7069 end if;
7070 end;
7071 end if;
7072 end if;
7073
7074 -- Ada 2005 (AI-251)
7075
7076 if Ada_Version >= Ada_2005 and then Is_Tagged then
7077
7078 -- "The declaration of a specific descendant of an interface type
7079 -- freezes the interface type" (RM 13.14).
7080
7081 declare
7082 Iface : Node_Id;
7083 begin
7084 if Is_Non_Empty_List (Interface_List (Type_Def)) then
7085 Iface := First (Interface_List (Type_Def));
7086 while Present (Iface) loop
7087 Freeze_Before (N, Etype (Iface));
7088 Next (Iface);
7089 end loop;
7090 end if;
7091 end;
7092 end if;
7093
7094 -- STEP 1b : preliminary cleanup of the full view of private types
7095
7096 -- If the type is already marked as having discriminants, then it's the
7097 -- completion of a private type or private extension and we need to
7098 -- retain the discriminants from the partial view if the current
7099 -- declaration has Discriminant_Specifications so that we can verify
7100 -- conformance. However, we must remove any existing components that
7101 -- were inherited from the parent (and attached in Copy_And_Swap)
7102 -- because the full type inherits all appropriate components anyway, and
7103 -- we do not want the partial view's components interfering.
7104
7105 if Has_Discriminants (Derived_Type) and then Discriminant_Specs then
7106 Discrim := First_Discriminant (Derived_Type);
7107 loop
7108 Last_Discrim := Discrim;
7109 Next_Discriminant (Discrim);
7110 exit when No (Discrim);
7111 end loop;
7112
7113 Set_Last_Entity (Derived_Type, Last_Discrim);
7114
7115 -- In all other cases wipe out the list of inherited components (even
7116 -- inherited discriminants), it will be properly rebuilt here.
7117
7118 else
7119 Set_First_Entity (Derived_Type, Empty);
7120 Set_Last_Entity (Derived_Type, Empty);
7121 end if;
7122
7123 -- STEP 1c: Initialize some flags for the Derived_Type
7124
7125 -- The following flags must be initialized here so that
7126 -- Process_Discriminants can check that discriminants of tagged types do
7127 -- not have a default initial value and that access discriminants are
7128 -- only specified for limited records. For completeness, these flags are
7129 -- also initialized along with all the other flags below.
7130
7131 -- AI-419: Limitedness is not inherited from an interface parent, so to
7132 -- be limited in that case the type must be explicitly declared as
7133 -- limited. However, task and protected interfaces are always limited.
7134
7135 if Limited_Present (Type_Def) then
7136 Set_Is_Limited_Record (Derived_Type);
7137
7138 elsif Is_Limited_Record (Parent_Type)
7139 or else (Present (Full_View (Parent_Type))
7140 and then Is_Limited_Record (Full_View (Parent_Type)))
7141 then
7142 if not Is_Interface (Parent_Type)
7143 or else Is_Synchronized_Interface (Parent_Type)
7144 or else Is_Protected_Interface (Parent_Type)
7145 or else Is_Task_Interface (Parent_Type)
7146 then
7147 Set_Is_Limited_Record (Derived_Type);
7148 end if;
7149 end if;
7150
7151 -- STEP 2a: process discriminants of derived type if any
7152
7153 Push_Scope (Derived_Type);
7154
7155 if Discriminant_Specs then
7156 Set_Has_Unknown_Discriminants (Derived_Type, False);
7157
7158 -- The following call initializes fields Has_Discriminants and
7159 -- Discriminant_Constraint, unless we are processing the completion
7160 -- of a private type declaration.
7161
7162 Check_Or_Process_Discriminants (N, Derived_Type);
7163
7164 -- For untagged types, the constraint on the Parent_Type must be
7165 -- present and is used to rename the discriminants.
7166
7167 if not Is_Tagged and then not Has_Discriminants (Parent_Type) then
7168 Error_Msg_N ("untagged parent must have discriminants", Indic);
7169
7170 elsif not Is_Tagged and then not Constraint_Present then
7171 Error_Msg_N
7172 ("discriminant constraint needed for derived untagged records",
7173 Indic);
7174
7175 -- Otherwise the parent subtype must be constrained unless we have a
7176 -- private extension.
7177
7178 elsif not Constraint_Present
7179 and then not Private_Extension
7180 and then not Is_Constrained (Parent_Type)
7181 then
7182 Error_Msg_N
7183 ("unconstrained type not allowed in this context", Indic);
7184
7185 elsif Constraint_Present then
7186 -- The following call sets the field Corresponding_Discriminant
7187 -- for the discriminants in the Derived_Type.
7188
7189 Discs := Build_Discriminant_Constraints (Parent_Type, Indic, True);
7190
7191 -- For untagged types all new discriminants must rename
7192 -- discriminants in the parent. For private extensions new
7193 -- discriminants cannot rename old ones (implied by [7.3(13)]).
7194
7195 Discrim := First_Discriminant (Derived_Type);
7196 while Present (Discrim) loop
7197 if not Is_Tagged
7198 and then No (Corresponding_Discriminant (Discrim))
7199 then
7200 Error_Msg_N
7201 ("new discriminants must constrain old ones", Discrim);
7202
7203 elsif Private_Extension
7204 and then Present (Corresponding_Discriminant (Discrim))
7205 then
7206 Error_Msg_N
7207 ("only static constraints allowed for parent"
7208 & " discriminants in the partial view", Indic);
7209 exit;
7210 end if;
7211
7212 -- If a new discriminant is used in the constraint, then its
7213 -- subtype must be statically compatible with the parent
7214 -- discriminant's subtype (3.7(15)).
7215
7216 if Present (Corresponding_Discriminant (Discrim))
7217 and then
7218 not Subtypes_Statically_Compatible
7219 (Etype (Discrim),
7220 Etype (Corresponding_Discriminant (Discrim)))
7221 then
7222 Error_Msg_N
7223 ("subtype must be compatible with parent discriminant",
7224 Discrim);
7225 end if;
7226
7227 Next_Discriminant (Discrim);
7228 end loop;
7229
7230 -- Check whether the constraints of the full view statically
7231 -- match those imposed by the parent subtype [7.3(13)].
7232
7233 if Present (Stored_Constraint (Derived_Type)) then
7234 declare
7235 C1, C2 : Elmt_Id;
7236
7237 begin
7238 C1 := First_Elmt (Discs);
7239 C2 := First_Elmt (Stored_Constraint (Derived_Type));
7240 while Present (C1) and then Present (C2) loop
7241 if not
7242 Fully_Conformant_Expressions (Node (C1), Node (C2))
7243 then
7244 Error_Msg_N
7245 ("not conformant with previous declaration",
7246 Node (C1));
7247 end if;
7248
7249 Next_Elmt (C1);
7250 Next_Elmt (C2);
7251 end loop;
7252 end;
7253 end if;
7254 end if;
7255
7256 -- STEP 2b: No new discriminants, inherit discriminants if any
7257
7258 else
7259 if Private_Extension then
7260 Set_Has_Unknown_Discriminants
7261 (Derived_Type,
7262 Has_Unknown_Discriminants (Parent_Type)
7263 or else Unknown_Discriminants_Present (N));
7264
7265 -- The partial view of the parent may have unknown discriminants,
7266 -- but if the full view has discriminants and the parent type is
7267 -- in scope they must be inherited.
7268
7269 elsif Has_Unknown_Discriminants (Parent_Type)
7270 and then
7271 (not Has_Discriminants (Parent_Type)
7272 or else not In_Open_Scopes (Scope (Parent_Type)))
7273 then
7274 Set_Has_Unknown_Discriminants (Derived_Type);
7275 end if;
7276
7277 if not Has_Unknown_Discriminants (Derived_Type)
7278 and then not Has_Unknown_Discriminants (Parent_Base)
7279 and then Has_Discriminants (Parent_Type)
7280 then
7281 Inherit_Discrims := True;
7282 Set_Has_Discriminants
7283 (Derived_Type, True);
7284 Set_Discriminant_Constraint
7285 (Derived_Type, Discriminant_Constraint (Parent_Base));
7286 end if;
7287
7288 -- The following test is true for private types (remember
7289 -- transformation 5. is not applied to those) and in an error
7290 -- situation.
7291
7292 if Constraint_Present then
7293 Discs := Build_Discriminant_Constraints (Parent_Type, Indic);
7294 end if;
7295
7296 -- For now mark a new derived type as constrained only if it has no
7297 -- discriminants. At the end of Build_Derived_Record_Type we properly
7298 -- set this flag in the case of private extensions. See comments in
7299 -- point 9. just before body of Build_Derived_Record_Type.
7300
7301 Set_Is_Constrained
7302 (Derived_Type,
7303 not (Inherit_Discrims
7304 or else Has_Unknown_Discriminants (Derived_Type)));
7305 end if;
7306
7307 -- STEP 3: initialize fields of derived type
7308
7309 Set_Is_Tagged_Type (Derived_Type, Is_Tagged);
7310 Set_Stored_Constraint (Derived_Type, No_Elist);
7311
7312 -- Ada 2005 (AI-251): Private type-declarations can implement interfaces
7313 -- but cannot be interfaces
7314
7315 if not Private_Extension
7316 and then Ekind (Derived_Type) /= E_Private_Type
7317 and then Ekind (Derived_Type) /= E_Limited_Private_Type
7318 then
7319 if Interface_Present (Type_Def) then
7320 Analyze_Interface_Declaration (Derived_Type, Type_Def);
7321 end if;
7322
7323 Set_Interfaces (Derived_Type, No_Elist);
7324 end if;
7325
7326 -- Fields inherited from the Parent_Type
7327
7328 Set_Discard_Names
7329 (Derived_Type, Einfo.Discard_Names (Parent_Type));
7330 Set_Has_Specified_Layout
7331 (Derived_Type, Has_Specified_Layout (Parent_Type));
7332 Set_Is_Limited_Composite
7333 (Derived_Type, Is_Limited_Composite (Parent_Type));
7334 Set_Is_Private_Composite
7335 (Derived_Type, Is_Private_Composite (Parent_Type));
7336
7337 -- Fields inherited from the Parent_Base
7338
7339 Set_Has_Controlled_Component
7340 (Derived_Type, Has_Controlled_Component (Parent_Base));
7341 Set_Has_Non_Standard_Rep
7342 (Derived_Type, Has_Non_Standard_Rep (Parent_Base));
7343 Set_Has_Primitive_Operations
7344 (Derived_Type, Has_Primitive_Operations (Parent_Base));
7345
7346 -- Fields inherited from the Parent_Base in the non-private case
7347
7348 if Ekind (Derived_Type) = E_Record_Type then
7349 Set_Has_Complex_Representation
7350 (Derived_Type, Has_Complex_Representation (Parent_Base));
7351 end if;
7352
7353 -- Fields inherited from the Parent_Base for record types
7354
7355 if Is_Record_Type (Derived_Type) then
7356
7357 -- Ekind (Parent_Base) is not necessarily E_Record_Type since
7358 -- Parent_Base can be a private type or private extension.
7359
7360 if Present (Full_View (Parent_Base)) then
7361 Set_OK_To_Reorder_Components
7362 (Derived_Type,
7363 OK_To_Reorder_Components (Full_View (Parent_Base)));
7364 Set_Reverse_Bit_Order
7365 (Derived_Type, Reverse_Bit_Order (Full_View (Parent_Base)));
7366 else
7367 Set_OK_To_Reorder_Components
7368 (Derived_Type, OK_To_Reorder_Components (Parent_Base));
7369 Set_Reverse_Bit_Order
7370 (Derived_Type, Reverse_Bit_Order (Parent_Base));
7371 end if;
7372 end if;
7373
7374 -- Direct controlled types do not inherit Finalize_Storage_Only flag
7375
7376 if not Is_Controlled (Parent_Type) then
7377 Set_Finalize_Storage_Only
7378 (Derived_Type, Finalize_Storage_Only (Parent_Type));
7379 end if;
7380
7381 -- Set fields for private derived types
7382
7383 if Is_Private_Type (Derived_Type) then
7384 Set_Depends_On_Private (Derived_Type, True);
7385 Set_Private_Dependents (Derived_Type, New_Elmt_List);
7386
7387 -- Inherit fields from non private record types. If this is the
7388 -- completion of a derivation from a private type, the parent itself
7389 -- is private, and the attributes come from its full view, which must
7390 -- be present.
7391
7392 else
7393 if Is_Private_Type (Parent_Base)
7394 and then not Is_Record_Type (Parent_Base)
7395 then
7396 Set_Component_Alignment
7397 (Derived_Type, Component_Alignment (Full_View (Parent_Base)));
7398 Set_C_Pass_By_Copy
7399 (Derived_Type, C_Pass_By_Copy (Full_View (Parent_Base)));
7400 else
7401 Set_Component_Alignment
7402 (Derived_Type, Component_Alignment (Parent_Base));
7403 Set_C_Pass_By_Copy
7404 (Derived_Type, C_Pass_By_Copy (Parent_Base));
7405 end if;
7406 end if;
7407
7408 -- Set fields for tagged types
7409
7410 if Is_Tagged then
7411 Set_Direct_Primitive_Operations (Derived_Type, New_Elmt_List);
7412
7413 -- All tagged types defined in Ada.Finalization are controlled
7414
7415 if Chars (Scope (Derived_Type)) = Name_Finalization
7416 and then Chars (Scope (Scope (Derived_Type))) = Name_Ada
7417 and then Scope (Scope (Scope (Derived_Type))) = Standard_Standard
7418 then
7419 Set_Is_Controlled (Derived_Type);
7420 else
7421 Set_Is_Controlled (Derived_Type, Is_Controlled (Parent_Base));
7422 end if;
7423
7424 -- Minor optimization: there is no need to generate the class-wide
7425 -- entity associated with an underlying record view.
7426
7427 if not Is_Underlying_Record_View (Derived_Type) then
7428 Make_Class_Wide_Type (Derived_Type);
7429 end if;
7430
7431 Set_Is_Abstract_Type (Derived_Type, Abstract_Present (Type_Def));
7432
7433 if Has_Discriminants (Derived_Type)
7434 and then Constraint_Present
7435 then
7436 Set_Stored_Constraint
7437 (Derived_Type, Expand_To_Stored_Constraint (Parent_Base, Discs));
7438 end if;
7439
7440 if Ada_Version >= Ada_2005 then
7441 declare
7442 Ifaces_List : Elist_Id;
7443
7444 begin
7445 -- Checks rules 3.9.4 (13/2 and 14/2)
7446
7447 if Comes_From_Source (Derived_Type)
7448 and then not Is_Private_Type (Derived_Type)
7449 and then Is_Interface (Parent_Type)
7450 and then not Is_Interface (Derived_Type)
7451 then
7452 if Is_Task_Interface (Parent_Type) then
7453 Error_Msg_N
7454 ("(Ada 2005) task type required (RM 3.9.4 (13.2))",
7455 Derived_Type);
7456
7457 elsif Is_Protected_Interface (Parent_Type) then
7458 Error_Msg_N
7459 ("(Ada 2005) protected type required (RM 3.9.4 (14.2))",
7460 Derived_Type);
7461 end if;
7462 end if;
7463
7464 -- Check ARM rules 3.9.4 (15/2), 9.1 (9.d/2) and 9.4 (11.d/2)
7465
7466 Check_Interfaces (N, Type_Def);
7467
7468 -- Ada 2005 (AI-251): Collect the list of progenitors that are
7469 -- not already in the parents.
7470
7471 Collect_Interfaces
7472 (T => Derived_Type,
7473 Ifaces_List => Ifaces_List,
7474 Exclude_Parents => True);
7475
7476 Set_Interfaces (Derived_Type, Ifaces_List);
7477
7478 -- If the derived type is the anonymous type created for
7479 -- a declaration whose parent has a constraint, propagate
7480 -- the interface list to the source type. This must be done
7481 -- prior to the completion of the analysis of the source type
7482 -- because the components in the extension may contain current
7483 -- instances whose legality depends on some ancestor.
7484
7485 if Is_Itype (Derived_Type) then
7486 declare
7487 Def : constant Node_Id :=
7488 Associated_Node_For_Itype (Derived_Type);
7489 begin
7490 if Present (Def)
7491 and then Nkind (Def) = N_Full_Type_Declaration
7492 then
7493 Set_Interfaces
7494 (Defining_Identifier (Def), Ifaces_List);
7495 end if;
7496 end;
7497 end if;
7498 end;
7499 end if;
7500
7501 else
7502 Set_Is_Packed (Derived_Type, Is_Packed (Parent_Base));
7503 Set_Has_Non_Standard_Rep
7504 (Derived_Type, Has_Non_Standard_Rep (Parent_Base));
7505 end if;
7506
7507 -- STEP 4: Inherit components from the parent base and constrain them.
7508 -- Apply the second transformation described in point 6. above.
7509
7510 if (not Is_Empty_Elmt_List (Discs) or else Inherit_Discrims)
7511 or else not Has_Discriminants (Parent_Type)
7512 or else not Is_Constrained (Parent_Type)
7513 then
7514 Constrs := Discs;
7515 else
7516 Constrs := Discriminant_Constraint (Parent_Type);
7517 end if;
7518
7519 Assoc_List :=
7520 Inherit_Components
7521 (N, Parent_Base, Derived_Type, Is_Tagged, Inherit_Discrims, Constrs);
7522
7523 -- STEP 5a: Copy the parent record declaration for untagged types
7524
7525 if not Is_Tagged then
7526
7527 -- Discriminant_Constraint (Derived_Type) has been properly
7528 -- constructed. Save it and temporarily set it to Empty because we
7529 -- do not want the call to New_Copy_Tree below to mess this list.
7530
7531 if Has_Discriminants (Derived_Type) then
7532 Save_Discr_Constr := Discriminant_Constraint (Derived_Type);
7533 Set_Discriminant_Constraint (Derived_Type, No_Elist);
7534 else
7535 Save_Discr_Constr := No_Elist;
7536 end if;
7537
7538 -- Save the Etype field of Derived_Type. It is correctly set now,
7539 -- but the call to New_Copy tree may remap it to point to itself,
7540 -- which is not what we want. Ditto for the Next_Entity field.
7541
7542 Save_Etype := Etype (Derived_Type);
7543 Save_Next_Entity := Next_Entity (Derived_Type);
7544
7545 -- Assoc_List maps all stored discriminants in the Parent_Base to
7546 -- stored discriminants in the Derived_Type. It is fundamental that
7547 -- no types or itypes with discriminants other than the stored
7548 -- discriminants appear in the entities declared inside
7549 -- Derived_Type, since the back end cannot deal with it.
7550
7551 New_Decl :=
7552 New_Copy_Tree
7553 (Parent (Parent_Base), Map => Assoc_List, New_Sloc => Loc);
7554
7555 -- Restore the fields saved prior to the New_Copy_Tree call
7556 -- and compute the stored constraint.
7557
7558 Set_Etype (Derived_Type, Save_Etype);
7559 Set_Next_Entity (Derived_Type, Save_Next_Entity);
7560
7561 if Has_Discriminants (Derived_Type) then
7562 Set_Discriminant_Constraint
7563 (Derived_Type, Save_Discr_Constr);
7564 Set_Stored_Constraint
7565 (Derived_Type, Expand_To_Stored_Constraint (Parent_Type, Discs));
7566 Replace_Components (Derived_Type, New_Decl);
7567 end if;
7568
7569 -- Insert the new derived type declaration
7570
7571 Rewrite (N, New_Decl);
7572
7573 -- STEP 5b: Complete the processing for record extensions in generics
7574
7575 -- There is no completion for record extensions declared in the
7576 -- parameter part of a generic, so we need to complete processing for
7577 -- these generic record extensions here. The Record_Type_Definition call
7578 -- will change the Ekind of the components from E_Void to E_Component.
7579
7580 elsif Private_Extension and then Is_Generic_Type (Derived_Type) then
7581 Record_Type_Definition (Empty, Derived_Type);
7582
7583 -- STEP 5c: Process the record extension for non private tagged types
7584
7585 elsif not Private_Extension then
7586
7587 -- Add the _parent field in the derived type
7588
7589 Expand_Record_Extension (Derived_Type, Type_Def);
7590
7591 -- Ada 2005 (AI-251): Addition of the Tag corresponding to all the
7592 -- implemented interfaces if we are in expansion mode
7593
7594 if Expander_Active
7595 and then Has_Interfaces (Derived_Type)
7596 then
7597 Add_Interface_Tag_Components (N, Derived_Type);
7598 end if;
7599
7600 -- Analyze the record extension
7601
7602 Record_Type_Definition
7603 (Record_Extension_Part (Type_Def), Derived_Type);
7604 end if;
7605
7606 End_Scope;
7607
7608 -- Nothing else to do if there is an error in the derivation.
7609 -- An unusual case: the full view may be derived from a type in an
7610 -- instance, when the partial view was used illegally as an actual
7611 -- in that instance, leading to a circular definition.
7612
7613 if Etype (Derived_Type) = Any_Type
7614 or else Etype (Parent_Type) = Derived_Type
7615 then
7616 return;
7617 end if;
7618
7619 -- Set delayed freeze and then derive subprograms, we need to do
7620 -- this in this order so that derived subprograms inherit the
7621 -- derived freeze if necessary.
7622
7623 Set_Has_Delayed_Freeze (Derived_Type);
7624
7625 if Derive_Subps then
7626 Derive_Subprograms (Parent_Type, Derived_Type);
7627 end if;
7628
7629 -- If we have a private extension which defines a constrained derived
7630 -- type mark as constrained here after we have derived subprograms. See
7631 -- comment on point 9. just above the body of Build_Derived_Record_Type.
7632
7633 if Private_Extension and then Inherit_Discrims then
7634 if Constraint_Present and then not Is_Empty_Elmt_List (Discs) then
7635 Set_Is_Constrained (Derived_Type, True);
7636 Set_Discriminant_Constraint (Derived_Type, Discs);
7637
7638 elsif Is_Constrained (Parent_Type) then
7639 Set_Is_Constrained
7640 (Derived_Type, True);
7641 Set_Discriminant_Constraint
7642 (Derived_Type, Discriminant_Constraint (Parent_Type));
7643 end if;
7644 end if;
7645
7646 -- Update the class-wide type, which shares the now-completed entity
7647 -- list with its specific type. In case of underlying record views,
7648 -- we do not generate the corresponding class wide entity.
7649
7650 if Is_Tagged
7651 and then not Is_Underlying_Record_View (Derived_Type)
7652 then
7653 Set_First_Entity
7654 (Class_Wide_Type (Derived_Type), First_Entity (Derived_Type));
7655 Set_Last_Entity
7656 (Class_Wide_Type (Derived_Type), Last_Entity (Derived_Type));
7657 end if;
7658
7659 -- Update the scope of anonymous access types of discriminants and other
7660 -- components, to prevent scope anomalies in gigi, when the derivation
7661 -- appears in a scope nested within that of the parent.
7662
7663 declare
7664 D : Entity_Id;
7665
7666 begin
7667 D := First_Entity (Derived_Type);
7668 while Present (D) loop
7669 if Ekind_In (D, E_Discriminant, E_Component) then
7670 if Is_Itype (Etype (D))
7671 and then Ekind (Etype (D)) = E_Anonymous_Access_Type
7672 then
7673 Set_Scope (Etype (D), Current_Scope);
7674 end if;
7675 end if;
7676
7677 Next_Entity (D);
7678 end loop;
7679 end;
7680 end Build_Derived_Record_Type;
7681
7682 ------------------------
7683 -- Build_Derived_Type --
7684 ------------------------
7685
7686 procedure Build_Derived_Type
7687 (N : Node_Id;
7688 Parent_Type : Entity_Id;
7689 Derived_Type : Entity_Id;
7690 Is_Completion : Boolean;
7691 Derive_Subps : Boolean := True)
7692 is
7693 Parent_Base : constant Entity_Id := Base_Type (Parent_Type);
7694
7695 begin
7696 -- Set common attributes
7697
7698 Set_Scope (Derived_Type, Current_Scope);
7699
7700 Set_Ekind (Derived_Type, Ekind (Parent_Base));
7701 Set_Etype (Derived_Type, Parent_Base);
7702 Set_Has_Task (Derived_Type, Has_Task (Parent_Base));
7703
7704 Set_Size_Info (Derived_Type, Parent_Type);
7705 Set_RM_Size (Derived_Type, RM_Size (Parent_Type));
7706 Set_Convention (Derived_Type, Convention (Parent_Type));
7707 Set_Is_Controlled (Derived_Type, Is_Controlled (Parent_Type));
7708 Set_Is_Tagged_Type (Derived_Type, Is_Tagged_Type (Parent_Type));
7709
7710 -- Propagate invariant information. The new type has invariants if
7711 -- they are inherited from the parent type, and these invariants can
7712 -- be further inherited, so both flags are set.
7713
7714 if Has_Inheritable_Invariants (Parent_Type) then
7715 Set_Has_Inheritable_Invariants (Derived_Type);
7716 Set_Has_Invariants (Derived_Type);
7717 end if;
7718
7719 -- We similarly inherit predicates
7720
7721 if Has_Predicates (Parent_Type) then
7722 Set_Has_Predicates (Derived_Type);
7723 end if;
7724
7725 -- The derived type inherits the representation clauses of the parent.
7726 -- However, for a private type that is completed by a derivation, there
7727 -- may be operation attributes that have been specified already (stream
7728 -- attributes and External_Tag) and those must be provided. Finally,
7729 -- if the partial view is a private extension, the representation items
7730 -- of the parent have been inherited already, and should not be chained
7731 -- twice to the derived type.
7732
7733 if Is_Tagged_Type (Parent_Type)
7734 and then Present (First_Rep_Item (Derived_Type))
7735 then
7736 -- The existing items are either operational items or items inherited
7737 -- from a private extension declaration.
7738
7739 declare
7740 Rep : Node_Id;
7741 -- Used to iterate over representation items of the derived type
7742
7743 Last_Rep : Node_Id;
7744 -- Last representation item of the (non-empty) representation
7745 -- item list of the derived type.
7746
7747 Found : Boolean := False;
7748
7749 begin
7750 Rep := First_Rep_Item (Derived_Type);
7751 Last_Rep := Rep;
7752 while Present (Rep) loop
7753 if Rep = First_Rep_Item (Parent_Type) then
7754 Found := True;
7755 exit;
7756
7757 else
7758 Rep := Next_Rep_Item (Rep);
7759
7760 if Present (Rep) then
7761 Last_Rep := Rep;
7762 end if;
7763 end if;
7764 end loop;
7765
7766 -- Here if we either encountered the parent type's first rep
7767 -- item on the derived type's rep item list (in which case
7768 -- Found is True, and we have nothing else to do), or if we
7769 -- reached the last rep item of the derived type, which is
7770 -- Last_Rep, in which case we further chain the parent type's
7771 -- rep items to those of the derived type.
7772
7773 if not Found then
7774 Set_Next_Rep_Item (Last_Rep, First_Rep_Item (Parent_Type));
7775 end if;
7776 end;
7777
7778 else
7779 Set_First_Rep_Item (Derived_Type, First_Rep_Item (Parent_Type));
7780 end if;
7781
7782 case Ekind (Parent_Type) is
7783 when Numeric_Kind =>
7784 Build_Derived_Numeric_Type (N, Parent_Type, Derived_Type);
7785
7786 when Array_Kind =>
7787 Build_Derived_Array_Type (N, Parent_Type, Derived_Type);
7788
7789 when E_Record_Type
7790 | E_Record_Subtype
7791 | Class_Wide_Kind =>
7792 Build_Derived_Record_Type
7793 (N, Parent_Type, Derived_Type, Derive_Subps);
7794 return;
7795
7796 when Enumeration_Kind =>
7797 Build_Derived_Enumeration_Type (N, Parent_Type, Derived_Type);
7798
7799 when Access_Kind =>
7800 Build_Derived_Access_Type (N, Parent_Type, Derived_Type);
7801
7802 when Incomplete_Or_Private_Kind =>
7803 Build_Derived_Private_Type
7804 (N, Parent_Type, Derived_Type, Is_Completion, Derive_Subps);
7805
7806 -- For discriminated types, the derivation includes deriving
7807 -- primitive operations. For others it is done below.
7808
7809 if Is_Tagged_Type (Parent_Type)
7810 or else Has_Discriminants (Parent_Type)
7811 or else (Present (Full_View (Parent_Type))
7812 and then Has_Discriminants (Full_View (Parent_Type)))
7813 then
7814 return;
7815 end if;
7816
7817 when Concurrent_Kind =>
7818 Build_Derived_Concurrent_Type (N, Parent_Type, Derived_Type);
7819
7820 when others =>
7821 raise Program_Error;
7822 end case;
7823
7824 if Etype (Derived_Type) = Any_Type then
7825 return;
7826 end if;
7827
7828 -- Set delayed freeze and then derive subprograms, we need to do this
7829 -- in this order so that derived subprograms inherit the derived freeze
7830 -- if necessary.
7831
7832 Set_Has_Delayed_Freeze (Derived_Type);
7833 if Derive_Subps then
7834 Derive_Subprograms (Parent_Type, Derived_Type);
7835 end if;
7836
7837 Set_Has_Primitive_Operations
7838 (Base_Type (Derived_Type), Has_Primitive_Operations (Parent_Type));
7839 end Build_Derived_Type;
7840
7841 -----------------------
7842 -- Build_Discriminal --
7843 -----------------------
7844
7845 procedure Build_Discriminal (Discrim : Entity_Id) is
7846 D_Minal : Entity_Id;
7847 CR_Disc : Entity_Id;
7848
7849 begin
7850 -- A discriminal has the same name as the discriminant
7851
7852 D_Minal :=
7853 Make_Defining_Identifier (Sloc (Discrim),
7854 Chars => Chars (Discrim));
7855
7856 Set_Ekind (D_Minal, E_In_Parameter);
7857 Set_Mechanism (D_Minal, Default_Mechanism);
7858 Set_Etype (D_Minal, Etype (Discrim));
7859 Set_Scope (D_Minal, Current_Scope);
7860
7861 Set_Discriminal (Discrim, D_Minal);
7862 Set_Discriminal_Link (D_Minal, Discrim);
7863
7864 -- For task types, build at once the discriminants of the corresponding
7865 -- record, which are needed if discriminants are used in entry defaults
7866 -- and in family bounds.
7867
7868 if Is_Concurrent_Type (Current_Scope)
7869 or else Is_Limited_Type (Current_Scope)
7870 then
7871 CR_Disc := Make_Defining_Identifier (Sloc (Discrim), Chars (Discrim));
7872
7873 Set_Ekind (CR_Disc, E_In_Parameter);
7874 Set_Mechanism (CR_Disc, Default_Mechanism);
7875 Set_Etype (CR_Disc, Etype (Discrim));
7876 Set_Scope (CR_Disc, Current_Scope);
7877 Set_Discriminal_Link (CR_Disc, Discrim);
7878 Set_CR_Discriminant (Discrim, CR_Disc);
7879 end if;
7880 end Build_Discriminal;
7881
7882 ------------------------------------
7883 -- Build_Discriminant_Constraints --
7884 ------------------------------------
7885
7886 function Build_Discriminant_Constraints
7887 (T : Entity_Id;
7888 Def : Node_Id;
7889 Derived_Def : Boolean := False) return Elist_Id
7890 is
7891 C : constant Node_Id := Constraint (Def);
7892 Nb_Discr : constant Nat := Number_Discriminants (T);
7893
7894 Discr_Expr : array (1 .. Nb_Discr) of Node_Id := (others => Empty);
7895 -- Saves the expression corresponding to a given discriminant in T
7896
7897 function Pos_Of_Discr (T : Entity_Id; D : Entity_Id) return Nat;
7898 -- Return the Position number within array Discr_Expr of a discriminant
7899 -- D within the discriminant list of the discriminated type T.
7900
7901 ------------------
7902 -- Pos_Of_Discr --
7903 ------------------
7904
7905 function Pos_Of_Discr (T : Entity_Id; D : Entity_Id) return Nat is
7906 Disc : Entity_Id;
7907
7908 begin
7909 Disc := First_Discriminant (T);
7910 for J in Discr_Expr'Range loop
7911 if Disc = D then
7912 return J;
7913 end if;
7914
7915 Next_Discriminant (Disc);
7916 end loop;
7917
7918 -- Note: Since this function is called on discriminants that are
7919 -- known to belong to the discriminated type, falling through the
7920 -- loop with no match signals an internal compiler error.
7921
7922 raise Program_Error;
7923 end Pos_Of_Discr;
7924
7925 -- Declarations local to Build_Discriminant_Constraints
7926
7927 Discr : Entity_Id;
7928 E : Entity_Id;
7929 Elist : constant Elist_Id := New_Elmt_List;
7930
7931 Constr : Node_Id;
7932 Expr : Node_Id;
7933 Id : Node_Id;
7934 Position : Nat;
7935 Found : Boolean;
7936
7937 Discrim_Present : Boolean := False;
7938
7939 -- Start of processing for Build_Discriminant_Constraints
7940
7941 begin
7942 -- The following loop will process positional associations only.
7943 -- For a positional association, the (single) discriminant is
7944 -- implicitly specified by position, in textual order (RM 3.7.2).
7945
7946 Discr := First_Discriminant (T);
7947 Constr := First (Constraints (C));
7948 for D in Discr_Expr'Range loop
7949 exit when Nkind (Constr) = N_Discriminant_Association;
7950
7951 if No (Constr) then
7952 Error_Msg_N ("too few discriminants given in constraint", C);
7953 return New_Elmt_List;
7954
7955 elsif Nkind (Constr) = N_Range
7956 or else (Nkind (Constr) = N_Attribute_Reference
7957 and then
7958 Attribute_Name (Constr) = Name_Range)
7959 then
7960 Error_Msg_N
7961 ("a range is not a valid discriminant constraint", Constr);
7962 Discr_Expr (D) := Error;
7963
7964 else
7965 Analyze_And_Resolve (Constr, Base_Type (Etype (Discr)));
7966 Discr_Expr (D) := Constr;
7967 end if;
7968
7969 Next_Discriminant (Discr);
7970 Next (Constr);
7971 end loop;
7972
7973 if No (Discr) and then Present (Constr) then
7974 Error_Msg_N ("too many discriminants given in constraint", Constr);
7975 return New_Elmt_List;
7976 end if;
7977
7978 -- Named associations can be given in any order, but if both positional
7979 -- and named associations are used in the same discriminant constraint,
7980 -- then positional associations must occur first, at their normal
7981 -- position. Hence once a named association is used, the rest of the
7982 -- discriminant constraint must use only named associations.
7983
7984 while Present (Constr) loop
7985
7986 -- Positional association forbidden after a named association
7987
7988 if Nkind (Constr) /= N_Discriminant_Association then
7989 Error_Msg_N ("positional association follows named one", Constr);
7990 return New_Elmt_List;
7991
7992 -- Otherwise it is a named association
7993
7994 else
7995 -- E records the type of the discriminants in the named
7996 -- association. All the discriminants specified in the same name
7997 -- association must have the same type.
7998
7999 E := Empty;
8000
8001 -- Search the list of discriminants in T to see if the simple name
8002 -- given in the constraint matches any of them.
8003
8004 Id := First (Selector_Names (Constr));
8005 while Present (Id) loop
8006 Found := False;
8007
8008 -- If Original_Discriminant is present, we are processing a
8009 -- generic instantiation and this is an instance node. We need
8010 -- to find the name of the corresponding discriminant in the
8011 -- actual record type T and not the name of the discriminant in
8012 -- the generic formal. Example:
8013
8014 -- generic
8015 -- type G (D : int) is private;
8016 -- package P is
8017 -- subtype W is G (D => 1);
8018 -- end package;
8019 -- type Rec (X : int) is record ... end record;
8020 -- package Q is new P (G => Rec);
8021
8022 -- At the point of the instantiation, formal type G is Rec
8023 -- and therefore when reanalyzing "subtype W is G (D => 1);"
8024 -- which really looks like "subtype W is Rec (D => 1);" at
8025 -- the point of instantiation, we want to find the discriminant
8026 -- that corresponds to D in Rec, i.e. X.
8027
8028 if Present (Original_Discriminant (Id)) then
8029 Discr := Find_Corresponding_Discriminant (Id, T);
8030 Found := True;
8031
8032 else
8033 Discr := First_Discriminant (T);
8034 while Present (Discr) loop
8035 if Chars (Discr) = Chars (Id) then
8036 Found := True;
8037 exit;
8038 end if;
8039
8040 Next_Discriminant (Discr);
8041 end loop;
8042
8043 if not Found then
8044 Error_Msg_N ("& does not match any discriminant", Id);
8045 return New_Elmt_List;
8046
8047 -- The following is only useful for the benefit of generic
8048 -- instances but it does not interfere with other
8049 -- processing for the non-generic case so we do it in all
8050 -- cases (for generics this statement is executed when
8051 -- processing the generic definition, see comment at the
8052 -- beginning of this if statement).
8053
8054 else
8055 Set_Original_Discriminant (Id, Discr);
8056 end if;
8057 end if;
8058
8059 Position := Pos_Of_Discr (T, Discr);
8060
8061 if Present (Discr_Expr (Position)) then
8062 Error_Msg_N ("duplicate constraint for discriminant&", Id);
8063
8064 else
8065 -- Each discriminant specified in the same named association
8066 -- must be associated with a separate copy of the
8067 -- corresponding expression.
8068
8069 if Present (Next (Id)) then
8070 Expr := New_Copy_Tree (Expression (Constr));
8071 Set_Parent (Expr, Parent (Expression (Constr)));
8072 else
8073 Expr := Expression (Constr);
8074 end if;
8075
8076 Discr_Expr (Position) := Expr;
8077 Analyze_And_Resolve (Expr, Base_Type (Etype (Discr)));
8078 end if;
8079
8080 -- A discriminant association with more than one discriminant
8081 -- name is only allowed if the named discriminants are all of
8082 -- the same type (RM 3.7.1(8)).
8083
8084 if E = Empty then
8085 E := Base_Type (Etype (Discr));
8086
8087 elsif Base_Type (Etype (Discr)) /= E then
8088 Error_Msg_N
8089 ("all discriminants in an association " &
8090 "must have the same type", Id);
8091 end if;
8092
8093 Next (Id);
8094 end loop;
8095 end if;
8096
8097 Next (Constr);
8098 end loop;
8099
8100 -- A discriminant constraint must provide exactly one value for each
8101 -- discriminant of the type (RM 3.7.1(8)).
8102
8103 for J in Discr_Expr'Range loop
8104 if No (Discr_Expr (J)) then
8105 Error_Msg_N ("too few discriminants given in constraint", C);
8106 return New_Elmt_List;
8107 end if;
8108 end loop;
8109
8110 -- Determine if there are discriminant expressions in the constraint
8111
8112 for J in Discr_Expr'Range loop
8113 if Denotes_Discriminant
8114 (Discr_Expr (J), Check_Concurrent => True)
8115 then
8116 Discrim_Present := True;
8117 end if;
8118 end loop;
8119
8120 -- Build an element list consisting of the expressions given in the
8121 -- discriminant constraint and apply the appropriate checks. The list
8122 -- is constructed after resolving any named discriminant associations
8123 -- and therefore the expressions appear in the textual order of the
8124 -- discriminants.
8125
8126 Discr := First_Discriminant (T);
8127 for J in Discr_Expr'Range loop
8128 if Discr_Expr (J) /= Error then
8129 Append_Elmt (Discr_Expr (J), Elist);
8130
8131 -- If any of the discriminant constraints is given by a
8132 -- discriminant and we are in a derived type declaration we
8133 -- have a discriminant renaming. Establish link between new
8134 -- and old discriminant.
8135
8136 if Denotes_Discriminant (Discr_Expr (J)) then
8137 if Derived_Def then
8138 Set_Corresponding_Discriminant
8139 (Entity (Discr_Expr (J)), Discr);
8140 end if;
8141
8142 -- Force the evaluation of non-discriminant expressions.
8143 -- If we have found a discriminant in the constraint 3.4(26)
8144 -- and 3.8(18) demand that no range checks are performed are
8145 -- after evaluation. If the constraint is for a component
8146 -- definition that has a per-object constraint, expressions are
8147 -- evaluated but not checked either. In all other cases perform
8148 -- a range check.
8149
8150 else
8151 if Discrim_Present then
8152 null;
8153
8154 elsif Nkind (Parent (Parent (Def))) = N_Component_Declaration
8155 and then
8156 Has_Per_Object_Constraint
8157 (Defining_Identifier (Parent (Parent (Def))))
8158 then
8159 null;
8160
8161 elsif Is_Access_Type (Etype (Discr)) then
8162 Apply_Constraint_Check (Discr_Expr (J), Etype (Discr));
8163
8164 else
8165 Apply_Range_Check (Discr_Expr (J), Etype (Discr));
8166 end if;
8167
8168 Force_Evaluation (Discr_Expr (J));
8169 end if;
8170
8171 -- Check that the designated type of an access discriminant's
8172 -- expression is not a class-wide type unless the discriminant's
8173 -- designated type is also class-wide.
8174
8175 if Ekind (Etype (Discr)) = E_Anonymous_Access_Type
8176 and then not Is_Class_Wide_Type
8177 (Designated_Type (Etype (Discr)))
8178 and then Etype (Discr_Expr (J)) /= Any_Type
8179 and then Is_Class_Wide_Type
8180 (Designated_Type (Etype (Discr_Expr (J))))
8181 then
8182 Wrong_Type (Discr_Expr (J), Etype (Discr));
8183
8184 elsif Is_Access_Type (Etype (Discr))
8185 and then not Is_Access_Constant (Etype (Discr))
8186 and then Is_Access_Type (Etype (Discr_Expr (J)))
8187 and then Is_Access_Constant (Etype (Discr_Expr (J)))
8188 then
8189 Error_Msg_NE
8190 ("constraint for discriminant& must be access to variable",
8191 Def, Discr);
8192 end if;
8193 end if;
8194
8195 Next_Discriminant (Discr);
8196 end loop;
8197
8198 return Elist;
8199 end Build_Discriminant_Constraints;
8200
8201 ---------------------------------
8202 -- Build_Discriminated_Subtype --
8203 ---------------------------------
8204
8205 procedure Build_Discriminated_Subtype
8206 (T : Entity_Id;
8207 Def_Id : Entity_Id;
8208 Elist : Elist_Id;
8209 Related_Nod : Node_Id;
8210 For_Access : Boolean := False)
8211 is
8212 Has_Discrs : constant Boolean := Has_Discriminants (T);
8213 Constrained : constant Boolean :=
8214 (Has_Discrs
8215 and then not Is_Empty_Elmt_List (Elist)
8216 and then not Is_Class_Wide_Type (T))
8217 or else Is_Constrained (T);
8218
8219 begin
8220 if Ekind (T) = E_Record_Type then
8221 if For_Access then
8222 Set_Ekind (Def_Id, E_Private_Subtype);
8223 Set_Is_For_Access_Subtype (Def_Id, True);
8224 else
8225 Set_Ekind (Def_Id, E_Record_Subtype);
8226 end if;
8227
8228 -- Inherit preelaboration flag from base, for types for which it
8229 -- may have been set: records, private types, protected types.
8230
8231 Set_Known_To_Have_Preelab_Init
8232 (Def_Id, Known_To_Have_Preelab_Init (T));
8233
8234 elsif Ekind (T) = E_Task_Type then
8235 Set_Ekind (Def_Id, E_Task_Subtype);
8236
8237 elsif Ekind (T) = E_Protected_Type then
8238 Set_Ekind (Def_Id, E_Protected_Subtype);
8239 Set_Known_To_Have_Preelab_Init
8240 (Def_Id, Known_To_Have_Preelab_Init (T));
8241
8242 elsif Is_Private_Type (T) then
8243 Set_Ekind (Def_Id, Subtype_Kind (Ekind (T)));
8244 Set_Known_To_Have_Preelab_Init
8245 (Def_Id, Known_To_Have_Preelab_Init (T));
8246
8247 elsif Is_Class_Wide_Type (T) then
8248 Set_Ekind (Def_Id, E_Class_Wide_Subtype);
8249
8250 else
8251 -- Incomplete type. Attach subtype to list of dependents, to be
8252 -- completed with full view of parent type, unless is it the
8253 -- designated subtype of a record component within an init_proc.
8254 -- This last case arises for a component of an access type whose
8255 -- designated type is incomplete (e.g. a Taft Amendment type).
8256 -- The designated subtype is within an inner scope, and needs no
8257 -- elaboration, because only the access type is needed in the
8258 -- initialization procedure.
8259
8260 Set_Ekind (Def_Id, Ekind (T));
8261
8262 if For_Access and then Within_Init_Proc then
8263 null;
8264 else
8265 Append_Elmt (Def_Id, Private_Dependents (T));
8266 end if;
8267 end if;
8268
8269 Set_Etype (Def_Id, T);
8270 Init_Size_Align (Def_Id);
8271 Set_Has_Discriminants (Def_Id, Has_Discrs);
8272 Set_Is_Constrained (Def_Id, Constrained);
8273
8274 Set_First_Entity (Def_Id, First_Entity (T));
8275 Set_Last_Entity (Def_Id, Last_Entity (T));
8276
8277 -- If the subtype is the completion of a private declaration, there may
8278 -- have been representation clauses for the partial view, and they must
8279 -- be preserved. Build_Derived_Type chains the inherited clauses with
8280 -- the ones appearing on the extension. If this comes from a subtype
8281 -- declaration, all clauses are inherited.
8282
8283 if No (First_Rep_Item (Def_Id)) then
8284 Set_First_Rep_Item (Def_Id, First_Rep_Item (T));
8285 end if;
8286
8287 if Is_Tagged_Type (T) then
8288 Set_Is_Tagged_Type (Def_Id);
8289 Make_Class_Wide_Type (Def_Id);
8290 end if;
8291
8292 Set_Stored_Constraint (Def_Id, No_Elist);
8293
8294 if Has_Discrs then
8295 Set_Discriminant_Constraint (Def_Id, Elist);
8296 Set_Stored_Constraint_From_Discriminant_Constraint (Def_Id);
8297 end if;
8298
8299 if Is_Tagged_Type (T) then
8300
8301 -- Ada 2005 (AI-251): In case of concurrent types we inherit the
8302 -- concurrent record type (which has the list of primitive
8303 -- operations).
8304
8305 if Ada_Version >= Ada_2005
8306 and then Is_Concurrent_Type (T)
8307 then
8308 Set_Corresponding_Record_Type (Def_Id,
8309 Corresponding_Record_Type (T));
8310 else
8311 Set_Direct_Primitive_Operations (Def_Id,
8312 Direct_Primitive_Operations (T));
8313 end if;
8314
8315 Set_Is_Abstract_Type (Def_Id, Is_Abstract_Type (T));
8316 end if;
8317
8318 -- Subtypes introduced by component declarations do not need to be
8319 -- marked as delayed, and do not get freeze nodes, because the semantics
8320 -- verifies that the parents of the subtypes are frozen before the
8321 -- enclosing record is frozen.
8322
8323 if not Is_Type (Scope (Def_Id)) then
8324 Set_Depends_On_Private (Def_Id, Depends_On_Private (T));
8325
8326 if Is_Private_Type (T)
8327 and then Present (Full_View (T))
8328 then
8329 Conditional_Delay (Def_Id, Full_View (T));
8330 else
8331 Conditional_Delay (Def_Id, T);
8332 end if;
8333 end if;
8334
8335 if Is_Record_Type (T) then
8336 Set_Is_Limited_Record (Def_Id, Is_Limited_Record (T));
8337
8338 if Has_Discrs
8339 and then not Is_Empty_Elmt_List (Elist)
8340 and then not For_Access
8341 then
8342 Create_Constrained_Components (Def_Id, Related_Nod, T, Elist);
8343 elsif not For_Access then
8344 Set_Cloned_Subtype (Def_Id, T);
8345 end if;
8346 end if;
8347 end Build_Discriminated_Subtype;
8348
8349 ---------------------------
8350 -- Build_Itype_Reference --
8351 ---------------------------
8352
8353 procedure Build_Itype_Reference
8354 (Ityp : Entity_Id;
8355 Nod : Node_Id)
8356 is
8357 IR : constant Node_Id := Make_Itype_Reference (Sloc (Nod));
8358 begin
8359 Set_Itype (IR, Ityp);
8360 Insert_After (Nod, IR);
8361 end Build_Itype_Reference;
8362
8363 ------------------------
8364 -- Build_Scalar_Bound --
8365 ------------------------
8366
8367 function Build_Scalar_Bound
8368 (Bound : Node_Id;
8369 Par_T : Entity_Id;
8370 Der_T : Entity_Id) return Node_Id
8371 is
8372 New_Bound : Entity_Id;
8373
8374 begin
8375 -- Note: not clear why this is needed, how can the original bound
8376 -- be unanalyzed at this point? and if it is, what business do we
8377 -- have messing around with it? and why is the base type of the
8378 -- parent type the right type for the resolution. It probably is
8379 -- not! It is OK for the new bound we are creating, but not for
8380 -- the old one??? Still if it never happens, no problem!
8381
8382 Analyze_And_Resolve (Bound, Base_Type (Par_T));
8383
8384 if Nkind_In (Bound, N_Integer_Literal, N_Real_Literal) then
8385 New_Bound := New_Copy (Bound);
8386 Set_Etype (New_Bound, Der_T);
8387 Set_Analyzed (New_Bound);
8388
8389 elsif Is_Entity_Name (Bound) then
8390 New_Bound := OK_Convert_To (Der_T, New_Copy (Bound));
8391
8392 -- The following is almost certainly wrong. What business do we have
8393 -- relocating a node (Bound) that is presumably still attached to
8394 -- the tree elsewhere???
8395
8396 else
8397 New_Bound := OK_Convert_To (Der_T, Relocate_Node (Bound));
8398 end if;
8399
8400 Set_Etype (New_Bound, Der_T);
8401 return New_Bound;
8402 end Build_Scalar_Bound;
8403
8404 --------------------------------
8405 -- Build_Underlying_Full_View --
8406 --------------------------------
8407
8408 procedure Build_Underlying_Full_View
8409 (N : Node_Id;
8410 Typ : Entity_Id;
8411 Par : Entity_Id)
8412 is
8413 Loc : constant Source_Ptr := Sloc (N);
8414 Subt : constant Entity_Id :=
8415 Make_Defining_Identifier
8416 (Loc, New_External_Name (Chars (Typ), 'S'));
8417
8418 Constr : Node_Id;
8419 Indic : Node_Id;
8420 C : Node_Id;
8421 Id : Node_Id;
8422
8423 procedure Set_Discriminant_Name (Id : Node_Id);
8424 -- If the derived type has discriminants, they may rename discriminants
8425 -- of the parent. When building the full view of the parent, we need to
8426 -- recover the names of the original discriminants if the constraint is
8427 -- given by named associations.
8428
8429 ---------------------------
8430 -- Set_Discriminant_Name --
8431 ---------------------------
8432
8433 procedure Set_Discriminant_Name (Id : Node_Id) is
8434 Disc : Entity_Id;
8435
8436 begin
8437 Set_Original_Discriminant (Id, Empty);
8438
8439 if Has_Discriminants (Typ) then
8440 Disc := First_Discriminant (Typ);
8441 while Present (Disc) loop
8442 if Chars (Disc) = Chars (Id)
8443 and then Present (Corresponding_Discriminant (Disc))
8444 then
8445 Set_Chars (Id, Chars (Corresponding_Discriminant (Disc)));
8446 end if;
8447 Next_Discriminant (Disc);
8448 end loop;
8449 end if;
8450 end Set_Discriminant_Name;
8451
8452 -- Start of processing for Build_Underlying_Full_View
8453
8454 begin
8455 if Nkind (N) = N_Full_Type_Declaration then
8456 Constr := Constraint (Subtype_Indication (Type_Definition (N)));
8457
8458 elsif Nkind (N) = N_Subtype_Declaration then
8459 Constr := New_Copy_Tree (Constraint (Subtype_Indication (N)));
8460
8461 elsif Nkind (N) = N_Component_Declaration then
8462 Constr :=
8463 New_Copy_Tree
8464 (Constraint (Subtype_Indication (Component_Definition (N))));
8465
8466 else
8467 raise Program_Error;
8468 end if;
8469
8470 C := First (Constraints (Constr));
8471 while Present (C) loop
8472 if Nkind (C) = N_Discriminant_Association then
8473 Id := First (Selector_Names (C));
8474 while Present (Id) loop
8475 Set_Discriminant_Name (Id);
8476 Next (Id);
8477 end loop;
8478 end if;
8479
8480 Next (C);
8481 end loop;
8482
8483 Indic :=
8484 Make_Subtype_Declaration (Loc,
8485 Defining_Identifier => Subt,
8486 Subtype_Indication =>
8487 Make_Subtype_Indication (Loc,
8488 Subtype_Mark => New_Reference_To (Par, Loc),
8489 Constraint => New_Copy_Tree (Constr)));
8490
8491 -- If this is a component subtype for an outer itype, it is not
8492 -- a list member, so simply set the parent link for analysis: if
8493 -- the enclosing type does not need to be in a declarative list,
8494 -- neither do the components.
8495
8496 if Is_List_Member (N)
8497 and then Nkind (N) /= N_Component_Declaration
8498 then
8499 Insert_Before (N, Indic);
8500 else
8501 Set_Parent (Indic, Parent (N));
8502 end if;
8503
8504 Analyze (Indic);
8505 Set_Underlying_Full_View (Typ, Full_View (Subt));
8506 end Build_Underlying_Full_View;
8507
8508 -------------------------------
8509 -- Check_Abstract_Overriding --
8510 -------------------------------
8511
8512 procedure Check_Abstract_Overriding (T : Entity_Id) is
8513 Alias_Subp : Entity_Id;
8514 Elmt : Elmt_Id;
8515 Op_List : Elist_Id;
8516 Subp : Entity_Id;
8517 Type_Def : Node_Id;
8518
8519 procedure Check_Pragma_Implemented (Subp : Entity_Id);
8520 -- Ada 2012 (AI05-0030): Subprogram Subp overrides an interface routine
8521 -- which has pragma Implemented already set. Check whether Subp's entity
8522 -- kind conforms to the implementation kind of the overridden routine.
8523
8524 procedure Check_Pragma_Implemented
8525 (Subp : Entity_Id;
8526 Iface_Subp : Entity_Id);
8527 -- Ada 2012 (AI05-0030): Subprogram Subp overrides interface routine
8528 -- Iface_Subp and both entities have pragma Implemented already set on
8529 -- them. Check whether the two implementation kinds are conforming.
8530
8531 procedure Inherit_Pragma_Implemented
8532 (Subp : Entity_Id;
8533 Iface_Subp : Entity_Id);
8534 -- Ada 2012 (AI05-0030): Interface primitive Subp overrides interface
8535 -- subprogram Iface_Subp which has been marked by pragma Implemented.
8536 -- Propagate the implementation kind of Iface_Subp to Subp.
8537
8538 ------------------------------
8539 -- Check_Pragma_Implemented --
8540 ------------------------------
8541
8542 procedure Check_Pragma_Implemented (Subp : Entity_Id) is
8543 Iface_Alias : constant Entity_Id := Interface_Alias (Subp);
8544 Impl_Kind : constant Name_Id := Implementation_Kind (Iface_Alias);
8545 Contr_Typ : Entity_Id;
8546
8547 begin
8548 -- Subp must have an alias since it is a hidden entity used to link
8549 -- an interface subprogram to its overriding counterpart.
8550
8551 pragma Assert (Present (Alias (Subp)));
8552
8553 -- Extract the type of the controlling formal
8554
8555 Contr_Typ := Etype (First_Formal (Alias (Subp)));
8556
8557 if Is_Concurrent_Record_Type (Contr_Typ) then
8558 Contr_Typ := Corresponding_Concurrent_Type (Contr_Typ);
8559 end if;
8560
8561 -- An interface subprogram whose implementation kind is By_Entry must
8562 -- be implemented by an entry.
8563
8564 if Impl_Kind = Name_By_Entry
8565 and then Ekind (Wrapped_Entity (Alias (Subp))) /= E_Entry
8566 then
8567 Error_Msg_Node_2 := Iface_Alias;
8568 Error_Msg_NE
8569 ("type & must implement abstract subprogram & with an entry",
8570 Alias (Subp), Contr_Typ);
8571
8572 elsif Impl_Kind = Name_By_Protected_Procedure then
8573
8574 -- An interface subprogram whose implementation kind is By_
8575 -- Protected_Procedure cannot be implemented by a primitive
8576 -- procedure of a task type.
8577
8578 if Ekind (Contr_Typ) /= E_Protected_Type then
8579 Error_Msg_Node_2 := Contr_Typ;
8580 Error_Msg_NE
8581 ("interface subprogram & cannot be implemented by a " &
8582 "primitive procedure of task type &", Alias (Subp),
8583 Iface_Alias);
8584
8585 -- An interface subprogram whose implementation kind is By_
8586 -- Protected_Procedure must be implemented by a procedure.
8587
8588 elsif Is_Primitive_Wrapper (Alias (Subp))
8589 and then Ekind (Wrapped_Entity (Alias (Subp))) /= E_Procedure
8590 then
8591 Error_Msg_Node_2 := Iface_Alias;
8592 Error_Msg_NE
8593 ("type & must implement abstract subprogram & with a " &
8594 "procedure", Alias (Subp), Contr_Typ);
8595 end if;
8596 end if;
8597 end Check_Pragma_Implemented;
8598
8599 ------------------------------
8600 -- Check_Pragma_Implemented --
8601 ------------------------------
8602
8603 procedure Check_Pragma_Implemented
8604 (Subp : Entity_Id;
8605 Iface_Subp : Entity_Id)
8606 is
8607 Iface_Kind : constant Name_Id := Implementation_Kind (Iface_Subp);
8608 Subp_Kind : constant Name_Id := Implementation_Kind (Subp);
8609
8610 begin
8611 -- Ada 2012 (AI05-0030): The implementation kinds of an overridden
8612 -- and overriding subprogram are different. In general this is an
8613 -- error except when the implementation kind of the overridden
8614 -- subprograms is By_Any.
8615
8616 if Iface_Kind /= Subp_Kind
8617 and then Iface_Kind /= Name_By_Any
8618 then
8619 if Iface_Kind = Name_By_Entry then
8620 Error_Msg_N
8621 ("incompatible implementation kind, overridden subprogram " &
8622 "is marked By_Entry", Subp);
8623 else
8624 Error_Msg_N
8625 ("incompatible implementation kind, overridden subprogram " &
8626 "is marked By_Protected_Procedure", Subp);
8627 end if;
8628 end if;
8629 end Check_Pragma_Implemented;
8630
8631 --------------------------------
8632 -- Inherit_Pragma_Implemented --
8633 --------------------------------
8634
8635 procedure Inherit_Pragma_Implemented
8636 (Subp : Entity_Id;
8637 Iface_Subp : Entity_Id)
8638 is
8639 Iface_Kind : constant Name_Id := Implementation_Kind (Iface_Subp);
8640 Loc : constant Source_Ptr := Sloc (Subp);
8641 Impl_Prag : Node_Id;
8642
8643 begin
8644 -- Since the implementation kind is stored as a representation item
8645 -- rather than a flag, create a pragma node.
8646
8647 Impl_Prag :=
8648 Make_Pragma (Loc,
8649 Chars => Name_Implemented,
8650 Pragma_Argument_Associations => New_List (
8651 Make_Pragma_Argument_Association (Loc,
8652 Expression =>
8653 New_Reference_To (Subp, Loc)),
8654
8655 Make_Pragma_Argument_Association (Loc,
8656 Expression =>
8657 Make_Identifier (Loc, Iface_Kind))));
8658
8659 -- The pragma doesn't need to be analyzed because it is internaly
8660 -- build. It is safe to directly register it as a rep item since we
8661 -- are only interested in the characters of the implementation kind.
8662
8663 Record_Rep_Item (Subp, Impl_Prag);
8664 end Inherit_Pragma_Implemented;
8665
8666 -- Start of processing for Check_Abstract_Overriding
8667
8668 begin
8669 Op_List := Primitive_Operations (T);
8670
8671 -- Loop to check primitive operations
8672
8673 Elmt := First_Elmt (Op_List);
8674 while Present (Elmt) loop
8675 Subp := Node (Elmt);
8676 Alias_Subp := Alias (Subp);
8677
8678 -- Inherited subprograms are identified by the fact that they do not
8679 -- come from source, and the associated source location is the
8680 -- location of the first subtype of the derived type.
8681
8682 -- Ada 2005 (AI-228): Apply the rules of RM-3.9.3(6/2) for
8683 -- subprograms that "require overriding".
8684
8685 -- Special exception, do not complain about failure to override the
8686 -- stream routines _Input and _Output, as well as the primitive
8687 -- operations used in dispatching selects since we always provide
8688 -- automatic overridings for these subprograms.
8689
8690 -- Also ignore this rule for convention CIL since .NET libraries
8691 -- do bizarre things with interfaces???
8692
8693 -- The partial view of T may have been a private extension, for
8694 -- which inherited functions dispatching on result are abstract.
8695 -- If the full view is a null extension, there is no need for
8696 -- overriding in Ada2005, but wrappers need to be built for them
8697 -- (see exp_ch3, Build_Controlling_Function_Wrappers).
8698
8699 if Is_Null_Extension (T)
8700 and then Has_Controlling_Result (Subp)
8701 and then Ada_Version >= Ada_2005
8702 and then Present (Alias_Subp)
8703 and then not Comes_From_Source (Subp)
8704 and then not Is_Abstract_Subprogram (Alias_Subp)
8705 and then not Is_Access_Type (Etype (Subp))
8706 then
8707 null;
8708
8709 -- Ada 2005 (AI-251): Internal entities of interfaces need no
8710 -- processing because this check is done with the aliased
8711 -- entity
8712
8713 elsif Present (Interface_Alias (Subp)) then
8714 null;
8715
8716 elsif (Is_Abstract_Subprogram (Subp)
8717 or else Requires_Overriding (Subp)
8718 or else
8719 (Has_Controlling_Result (Subp)
8720 and then Present (Alias_Subp)
8721 and then not Comes_From_Source (Subp)
8722 and then Sloc (Subp) = Sloc (First_Subtype (T))))
8723 and then not Is_TSS (Subp, TSS_Stream_Input)
8724 and then not Is_TSS (Subp, TSS_Stream_Output)
8725 and then not Is_Abstract_Type (T)
8726 and then Convention (T) /= Convention_CIL
8727 and then not Is_Predefined_Interface_Primitive (Subp)
8728
8729 -- Ada 2005 (AI-251): Do not consider hidden entities associated
8730 -- with abstract interface types because the check will be done
8731 -- with the aliased entity (otherwise we generate a duplicated
8732 -- error message).
8733
8734 and then not Present (Interface_Alias (Subp))
8735 then
8736 if Present (Alias_Subp) then
8737
8738 -- Only perform the check for a derived subprogram when the
8739 -- type has an explicit record extension. This avoids incorrect
8740 -- flagging of abstract subprograms for the case of a type
8741 -- without an extension that is derived from a formal type
8742 -- with a tagged actual (can occur within a private part).
8743
8744 -- Ada 2005 (AI-391): In the case of an inherited function with
8745 -- a controlling result of the type, the rule does not apply if
8746 -- the type is a null extension (unless the parent function
8747 -- itself is abstract, in which case the function must still be
8748 -- be overridden). The expander will generate an overriding
8749 -- wrapper function calling the parent subprogram (see
8750 -- Exp_Ch3.Make_Controlling_Wrapper_Functions).
8751
8752 Type_Def := Type_Definition (Parent (T));
8753
8754 if Nkind (Type_Def) = N_Derived_Type_Definition
8755 and then Present (Record_Extension_Part (Type_Def))
8756 and then
8757 (Ada_Version < Ada_2005
8758 or else not Is_Null_Extension (T)
8759 or else Ekind (Subp) = E_Procedure
8760 or else not Has_Controlling_Result (Subp)
8761 or else Is_Abstract_Subprogram (Alias_Subp)
8762 or else Requires_Overriding (Subp)
8763 or else Is_Access_Type (Etype (Subp)))
8764 then
8765 -- Avoid reporting error in case of abstract predefined
8766 -- primitive inherited from interface type because the
8767 -- body of internally generated predefined primitives
8768 -- of tagged types are generated later by Freeze_Type
8769
8770 if Is_Interface (Root_Type (T))
8771 and then Is_Abstract_Subprogram (Subp)
8772 and then Is_Predefined_Dispatching_Operation (Subp)
8773 and then not Comes_From_Source (Ultimate_Alias (Subp))
8774 then
8775 null;
8776
8777 else
8778 Error_Msg_NE
8779 ("type must be declared abstract or & overridden",
8780 T, Subp);
8781
8782 -- Traverse the whole chain of aliased subprograms to
8783 -- complete the error notification. This is especially
8784 -- useful for traceability of the chain of entities when
8785 -- the subprogram corresponds with an interface
8786 -- subprogram (which may be defined in another package).
8787
8788 if Present (Alias_Subp) then
8789 declare
8790 E : Entity_Id;
8791
8792 begin
8793 E := Subp;
8794 while Present (Alias (E)) loop
8795 Error_Msg_Sloc := Sloc (E);
8796 Error_Msg_NE
8797 ("\& has been inherited #", T, Subp);
8798 E := Alias (E);
8799 end loop;
8800
8801 Error_Msg_Sloc := Sloc (E);
8802 Error_Msg_NE
8803 ("\& has been inherited from subprogram #",
8804 T, Subp);
8805 end;
8806 end if;
8807 end if;
8808
8809 -- Ada 2005 (AI-345): Protected or task type implementing
8810 -- abstract interfaces.
8811
8812 elsif Is_Concurrent_Record_Type (T)
8813 and then Present (Interfaces (T))
8814 then
8815 -- The controlling formal of Subp must be of mode "out",
8816 -- "in out" or an access-to-variable to be overridden.
8817
8818 -- Error message below needs rewording (remember comma
8819 -- in -gnatj mode) ???
8820
8821 if Ekind (First_Formal (Subp)) = E_In_Parameter
8822 and then Ekind (Subp) /= E_Function
8823 then
8824 if not Is_Predefined_Dispatching_Operation (Subp) then
8825 Error_Msg_NE
8826 ("first formal of & must be of mode `OUT`, " &
8827 "`IN OUT` or access-to-variable", T, Subp);
8828 Error_Msg_N
8829 ("\to be overridden by protected procedure or " &
8830 "entry (RM 9.4(11.9/2))", T);
8831 end if;
8832
8833 -- Some other kind of overriding failure
8834
8835 else
8836 Error_Msg_NE
8837 ("interface subprogram & must be overridden",
8838 T, Subp);
8839
8840 -- Examine primitive operations of synchronized type,
8841 -- to find homonyms that have the wrong profile.
8842
8843 declare
8844 Prim : Entity_Id;
8845
8846 begin
8847 Prim :=
8848 First_Entity (Corresponding_Concurrent_Type (T));
8849 while Present (Prim) loop
8850 if Chars (Prim) = Chars (Subp) then
8851 Error_Msg_NE
8852 ("profile is not type conformant with "
8853 & "prefixed view profile of "
8854 & "inherited operation&", Prim, Subp);
8855 end if;
8856
8857 Next_Entity (Prim);
8858 end loop;
8859 end;
8860 end if;
8861 end if;
8862
8863 else
8864 Error_Msg_Node_2 := T;
8865 Error_Msg_N
8866 ("abstract subprogram& not allowed for type&", Subp);
8867
8868 -- Also post unconditional warning on the type (unconditional
8869 -- so that if there are more than one of these cases, we get
8870 -- them all, and not just the first one).
8871
8872 Error_Msg_Node_2 := Subp;
8873 Error_Msg_N ("nonabstract type& has abstract subprogram&!", T);
8874 end if;
8875 end if;
8876
8877 -- Ada 2012 (AI05-0030): Perform some checks related to pragma
8878 -- Implemented
8879
8880 -- Subp is an expander-generated procedure which maps an interface
8881 -- alias to a protected wrapper. The interface alias is flagged by
8882 -- pragma Implemented. Ensure that Subp is a procedure when the
8883 -- implementation kind is By_Protected_Procedure or an entry when
8884 -- By_Entry.
8885
8886 if Ada_Version >= Ada_2012
8887 and then Is_Hidden (Subp)
8888 and then Present (Interface_Alias (Subp))
8889 and then Has_Rep_Pragma (Interface_Alias (Subp), Name_Implemented)
8890 then
8891 Check_Pragma_Implemented (Subp);
8892 end if;
8893
8894 -- Subp is an interface primitive which overrides another interface
8895 -- primitive marked with pragma Implemented.
8896
8897 if Ada_Version >= Ada_2012
8898 and then Present (Overridden_Operation (Subp))
8899 and then Has_Rep_Pragma
8900 (Overridden_Operation (Subp), Name_Implemented)
8901 then
8902 -- If the overriding routine is also marked by Implemented, check
8903 -- that the two implementation kinds are conforming.
8904
8905 if Has_Rep_Pragma (Subp, Name_Implemented) then
8906 Check_Pragma_Implemented
8907 (Subp => Subp,
8908 Iface_Subp => Overridden_Operation (Subp));
8909
8910 -- Otherwise the overriding routine inherits the implementation
8911 -- kind from the overridden subprogram.
8912
8913 else
8914 Inherit_Pragma_Implemented
8915 (Subp => Subp,
8916 Iface_Subp => Overridden_Operation (Subp));
8917 end if;
8918 end if;
8919
8920 Next_Elmt (Elmt);
8921 end loop;
8922 end Check_Abstract_Overriding;
8923
8924 ------------------------------------------------
8925 -- Check_Access_Discriminant_Requires_Limited --
8926 ------------------------------------------------
8927
8928 procedure Check_Access_Discriminant_Requires_Limited
8929 (D : Node_Id;
8930 Loc : Node_Id)
8931 is
8932 begin
8933 -- A discriminant_specification for an access discriminant shall appear
8934 -- only in the declaration for a task or protected type, or for a type
8935 -- with the reserved word 'limited' in its definition or in one of its
8936 -- ancestors (RM 3.7(10)).
8937
8938 -- AI-0063: The proper condition is that type must be immutably limited,
8939 -- or else be a partial view.
8940
8941 if Nkind (Discriminant_Type (D)) = N_Access_Definition then
8942 if Is_Immutably_Limited_Type (Current_Scope)
8943 or else
8944 (Nkind (Parent (Current_Scope)) = N_Private_Type_Declaration
8945 and then Limited_Present (Parent (Current_Scope)))
8946 then
8947 null;
8948
8949 else
8950 Error_Msg_N
8951 ("access discriminants allowed only for limited types", Loc);
8952 end if;
8953 end if;
8954 end Check_Access_Discriminant_Requires_Limited;
8955
8956 -----------------------------------
8957 -- Check_Aliased_Component_Types --
8958 -----------------------------------
8959
8960 procedure Check_Aliased_Component_Types (T : Entity_Id) is
8961 C : Entity_Id;
8962
8963 begin
8964 -- ??? Also need to check components of record extensions, but not
8965 -- components of protected types (which are always limited).
8966
8967 -- Ada 2005: AI-363 relaxes this rule, to allow heap objects of such
8968 -- types to be unconstrained. This is safe because it is illegal to
8969 -- create access subtypes to such types with explicit discriminant
8970 -- constraints.
8971
8972 if not Is_Limited_Type (T) then
8973 if Ekind (T) = E_Record_Type then
8974 C := First_Component (T);
8975 while Present (C) loop
8976 if Is_Aliased (C)
8977 and then Has_Discriminants (Etype (C))
8978 and then not Is_Constrained (Etype (C))
8979 and then not In_Instance_Body
8980 and then Ada_Version < Ada_2005
8981 then
8982 Error_Msg_N
8983 ("aliased component must be constrained (RM 3.6(11))",
8984 C);
8985 end if;
8986
8987 Next_Component (C);
8988 end loop;
8989
8990 elsif Ekind (T) = E_Array_Type then
8991 if Has_Aliased_Components (T)
8992 and then Has_Discriminants (Component_Type (T))
8993 and then not Is_Constrained (Component_Type (T))
8994 and then not In_Instance_Body
8995 and then Ada_Version < Ada_2005
8996 then
8997 Error_Msg_N
8998 ("aliased component type must be constrained (RM 3.6(11))",
8999 T);
9000 end if;
9001 end if;
9002 end if;
9003 end Check_Aliased_Component_Types;
9004
9005 ----------------------
9006 -- Check_Completion --
9007 ----------------------
9008
9009 procedure Check_Completion (Body_Id : Node_Id := Empty) is
9010 E : Entity_Id;
9011
9012 procedure Post_Error;
9013 -- Post error message for lack of completion for entity E
9014
9015 ----------------
9016 -- Post_Error --
9017 ----------------
9018
9019 procedure Post_Error is
9020
9021 procedure Missing_Body;
9022 -- Output missing body message
9023
9024 ------------------
9025 -- Missing_Body --
9026 ------------------
9027
9028 procedure Missing_Body is
9029 begin
9030 -- Spec is in same unit, so we can post on spec
9031
9032 if In_Same_Source_Unit (Body_Id, E) then
9033 Error_Msg_N ("missing body for &", E);
9034
9035 -- Spec is in a separate unit, so we have to post on the body
9036
9037 else
9038 Error_Msg_NE ("missing body for & declared#!", Body_Id, E);
9039 end if;
9040 end Missing_Body;
9041
9042 -- Start of processing for Post_Error
9043
9044 begin
9045 if not Comes_From_Source (E) then
9046
9047 if Ekind_In (E, E_Task_Type, E_Protected_Type) then
9048 -- It may be an anonymous protected type created for a
9049 -- single variable. Post error on variable, if present.
9050
9051 declare
9052 Var : Entity_Id;
9053
9054 begin
9055 Var := First_Entity (Current_Scope);
9056 while Present (Var) loop
9057 exit when Etype (Var) = E
9058 and then Comes_From_Source (Var);
9059
9060 Next_Entity (Var);
9061 end loop;
9062
9063 if Present (Var) then
9064 E := Var;
9065 end if;
9066 end;
9067 end if;
9068 end if;
9069
9070 -- If a generated entity has no completion, then either previous
9071 -- semantic errors have disabled the expansion phase, or else we had
9072 -- missing subunits, or else we are compiling without expansion,
9073 -- or else something is very wrong.
9074
9075 if not Comes_From_Source (E) then
9076 pragma Assert
9077 (Serious_Errors_Detected > 0
9078 or else Configurable_Run_Time_Violations > 0
9079 or else Subunits_Missing
9080 or else not Expander_Active);
9081 return;
9082
9083 -- Here for source entity
9084
9085 else
9086 -- Here if no body to post the error message, so we post the error
9087 -- on the declaration that has no completion. This is not really
9088 -- the right place to post it, think about this later ???
9089
9090 if No (Body_Id) then
9091 if Is_Type (E) then
9092 Error_Msg_NE
9093 ("missing full declaration for }", Parent (E), E);
9094 else
9095 Error_Msg_NE ("missing body for &", Parent (E), E);
9096 end if;
9097
9098 -- Package body has no completion for a declaration that appears
9099 -- in the corresponding spec. Post error on the body, with a
9100 -- reference to the non-completed declaration.
9101
9102 else
9103 Error_Msg_Sloc := Sloc (E);
9104
9105 if Is_Type (E) then
9106 Error_Msg_NE ("missing full declaration for }!", Body_Id, E);
9107
9108 elsif Is_Overloadable (E)
9109 and then Current_Entity_In_Scope (E) /= E
9110 then
9111 -- It may be that the completion is mistyped and appears as
9112 -- a distinct overloading of the entity.
9113
9114 declare
9115 Candidate : constant Entity_Id :=
9116 Current_Entity_In_Scope (E);
9117 Decl : constant Node_Id :=
9118 Unit_Declaration_Node (Candidate);
9119
9120 begin
9121 if Is_Overloadable (Candidate)
9122 and then Ekind (Candidate) = Ekind (E)
9123 and then Nkind (Decl) = N_Subprogram_Body
9124 and then Acts_As_Spec (Decl)
9125 then
9126 Check_Type_Conformant (Candidate, E);
9127
9128 else
9129 Missing_Body;
9130 end if;
9131 end;
9132
9133 else
9134 Missing_Body;
9135 end if;
9136 end if;
9137 end if;
9138 end Post_Error;
9139
9140 -- Start of processing for Check_Completion
9141
9142 begin
9143 E := First_Entity (Current_Scope);
9144 while Present (E) loop
9145 if Is_Intrinsic_Subprogram (E) then
9146 null;
9147
9148 -- The following situation requires special handling: a child unit
9149 -- that appears in the context clause of the body of its parent:
9150
9151 -- procedure Parent.Child (...);
9152
9153 -- with Parent.Child;
9154 -- package body Parent is
9155
9156 -- Here Parent.Child appears as a local entity, but should not be
9157 -- flagged as requiring completion, because it is a compilation
9158 -- unit.
9159
9160 -- Ignore missing completion for a subprogram that does not come from
9161 -- source (including the _Call primitive operation of RAS types,
9162 -- which has to have the flag Comes_From_Source for other purposes):
9163 -- we assume that the expander will provide the missing completion.
9164 -- In case of previous errors, other expansion actions that provide
9165 -- bodies for null procedures with not be invoked, so inhibit message
9166 -- in those cases.
9167 -- Note that E_Operator is not in the list that follows, because
9168 -- this kind is reserved for predefined operators, that are
9169 -- intrinsic and do not need completion.
9170
9171 elsif Ekind (E) = E_Function
9172 or else Ekind (E) = E_Procedure
9173 or else Ekind (E) = E_Generic_Function
9174 or else Ekind (E) = E_Generic_Procedure
9175 then
9176 if Has_Completion (E) then
9177 null;
9178
9179 elsif Is_Subprogram (E) and then Is_Abstract_Subprogram (E) then
9180 null;
9181
9182 elsif Is_Subprogram (E)
9183 and then (not Comes_From_Source (E)
9184 or else Chars (E) = Name_uCall)
9185 then
9186 null;
9187
9188 elsif
9189 Nkind (Parent (Unit_Declaration_Node (E))) = N_Compilation_Unit
9190 then
9191 null;
9192
9193 elsif Nkind (Parent (E)) = N_Procedure_Specification
9194 and then Null_Present (Parent (E))
9195 and then Serious_Errors_Detected > 0
9196 then
9197 null;
9198
9199 else
9200 Post_Error;
9201 end if;
9202
9203 elsif Is_Entry (E) then
9204 if not Has_Completion (E) and then
9205 (Ekind (Scope (E)) = E_Protected_Object
9206 or else Ekind (Scope (E)) = E_Protected_Type)
9207 then
9208 Post_Error;
9209 end if;
9210
9211 elsif Is_Package_Or_Generic_Package (E) then
9212 if Unit_Requires_Body (E) then
9213 if not Has_Completion (E)
9214 and then Nkind (Parent (Unit_Declaration_Node (E))) /=
9215 N_Compilation_Unit
9216 then
9217 Post_Error;
9218 end if;
9219
9220 elsif not Is_Child_Unit (E) then
9221 May_Need_Implicit_Body (E);
9222 end if;
9223
9224 elsif Ekind (E) = E_Incomplete_Type
9225 and then No (Underlying_Type (E))
9226 then
9227 Post_Error;
9228
9229 elsif (Ekind (E) = E_Task_Type or else
9230 Ekind (E) = E_Protected_Type)
9231 and then not Has_Completion (E)
9232 then
9233 Post_Error;
9234
9235 -- A single task declared in the current scope is a constant, verify
9236 -- that the body of its anonymous type is in the same scope. If the
9237 -- task is defined elsewhere, this may be a renaming declaration for
9238 -- which no completion is needed.
9239
9240 elsif Ekind (E) = E_Constant
9241 and then Ekind (Etype (E)) = E_Task_Type
9242 and then not Has_Completion (Etype (E))
9243 and then Scope (Etype (E)) = Current_Scope
9244 then
9245 Post_Error;
9246
9247 elsif Ekind (E) = E_Protected_Object
9248 and then not Has_Completion (Etype (E))
9249 then
9250 Post_Error;
9251
9252 elsif Ekind (E) = E_Record_Type then
9253 if Is_Tagged_Type (E) then
9254 Check_Abstract_Overriding (E);
9255 Check_Conventions (E);
9256 end if;
9257
9258 Check_Aliased_Component_Types (E);
9259
9260 elsif Ekind (E) = E_Array_Type then
9261 Check_Aliased_Component_Types (E);
9262
9263 end if;
9264
9265 Next_Entity (E);
9266 end loop;
9267 end Check_Completion;
9268
9269 ----------------------------
9270 -- Check_Delta_Expression --
9271 ----------------------------
9272
9273 procedure Check_Delta_Expression (E : Node_Id) is
9274 begin
9275 if not (Is_Real_Type (Etype (E))) then
9276 Wrong_Type (E, Any_Real);
9277
9278 elsif not Is_OK_Static_Expression (E) then
9279 Flag_Non_Static_Expr
9280 ("non-static expression used for delta value!", E);
9281
9282 elsif not UR_Is_Positive (Expr_Value_R (E)) then
9283 Error_Msg_N ("delta expression must be positive", E);
9284
9285 else
9286 return;
9287 end if;
9288
9289 -- If any of above errors occurred, then replace the incorrect
9290 -- expression by the real 0.1, which should prevent further errors.
9291
9292 Rewrite (E,
9293 Make_Real_Literal (Sloc (E), Ureal_Tenth));
9294 Analyze_And_Resolve (E, Standard_Float);
9295 end Check_Delta_Expression;
9296
9297 -----------------------------
9298 -- Check_Digits_Expression --
9299 -----------------------------
9300
9301 procedure Check_Digits_Expression (E : Node_Id) is
9302 begin
9303 if not (Is_Integer_Type (Etype (E))) then
9304 Wrong_Type (E, Any_Integer);
9305
9306 elsif not Is_OK_Static_Expression (E) then
9307 Flag_Non_Static_Expr
9308 ("non-static expression used for digits value!", E);
9309
9310 elsif Expr_Value (E) <= 0 then
9311 Error_Msg_N ("digits value must be greater than zero", E);
9312
9313 else
9314 return;
9315 end if;
9316
9317 -- If any of above errors occurred, then replace the incorrect
9318 -- expression by the integer 1, which should prevent further errors.
9319
9320 Rewrite (E, Make_Integer_Literal (Sloc (E), 1));
9321 Analyze_And_Resolve (E, Standard_Integer);
9322
9323 end Check_Digits_Expression;
9324
9325 --------------------------
9326 -- Check_Initialization --
9327 --------------------------
9328
9329 procedure Check_Initialization (T : Entity_Id; Exp : Node_Id) is
9330 begin
9331 if Is_Limited_Type (T)
9332 and then not In_Instance
9333 and then not In_Inlined_Body
9334 then
9335 if not OK_For_Limited_Init (T, Exp) then
9336
9337 -- In GNAT mode, this is just a warning, to allow it to be evilly
9338 -- turned off. Otherwise it is a real error.
9339
9340 if GNAT_Mode then
9341 Error_Msg_N
9342 ("?cannot initialize entities of limited type!", Exp);
9343
9344 elsif Ada_Version < Ada_2005 then
9345 Error_Msg_N
9346 ("cannot initialize entities of limited type", Exp);
9347 Explain_Limited_Type (T, Exp);
9348
9349 else
9350 -- Specialize error message according to kind of illegal
9351 -- initial expression.
9352
9353 if Nkind (Exp) = N_Type_Conversion
9354 and then Nkind (Expression (Exp)) = N_Function_Call
9355 then
9356 Error_Msg_N
9357 ("illegal context for call"
9358 & " to function with limited result", Exp);
9359
9360 else
9361 Error_Msg_N
9362 ("initialization of limited object requires aggregate "
9363 & "or function call", Exp);
9364 end if;
9365 end if;
9366 end if;
9367 end if;
9368 end Check_Initialization;
9369
9370 ----------------------
9371 -- Check_Interfaces --
9372 ----------------------
9373
9374 procedure Check_Interfaces (N : Node_Id; Def : Node_Id) is
9375 Parent_Type : constant Entity_Id := Etype (Defining_Identifier (N));
9376
9377 Iface : Node_Id;
9378 Iface_Def : Node_Id;
9379 Iface_Typ : Entity_Id;
9380 Parent_Node : Node_Id;
9381
9382 Is_Task : Boolean := False;
9383 -- Set True if parent type or any progenitor is a task interface
9384
9385 Is_Protected : Boolean := False;
9386 -- Set True if parent type or any progenitor is a protected interface
9387
9388 procedure Check_Ifaces (Iface_Def : Node_Id; Error_Node : Node_Id);
9389 -- Check that a progenitor is compatible with declaration.
9390 -- Error is posted on Error_Node.
9391
9392 ------------------
9393 -- Check_Ifaces --
9394 ------------------
9395
9396 procedure Check_Ifaces (Iface_Def : Node_Id; Error_Node : Node_Id) is
9397 Iface_Id : constant Entity_Id :=
9398 Defining_Identifier (Parent (Iface_Def));
9399 Type_Def : Node_Id;
9400
9401 begin
9402 if Nkind (N) = N_Private_Extension_Declaration then
9403 Type_Def := N;
9404 else
9405 Type_Def := Type_Definition (N);
9406 end if;
9407
9408 if Is_Task_Interface (Iface_Id) then
9409 Is_Task := True;
9410
9411 elsif Is_Protected_Interface (Iface_Id) then
9412 Is_Protected := True;
9413 end if;
9414
9415 if Is_Synchronized_Interface (Iface_Id) then
9416
9417 -- A consequence of 3.9.4 (6/2) and 7.3 (7.2/2) is that a private
9418 -- extension derived from a synchronized interface must explicitly
9419 -- be declared synchronized, because the full view will be a
9420 -- synchronized type.
9421
9422 if Nkind (N) = N_Private_Extension_Declaration then
9423 if not Synchronized_Present (N) then
9424 Error_Msg_NE
9425 ("private extension of& must be explicitly synchronized",
9426 N, Iface_Id);
9427 end if;
9428
9429 -- However, by 3.9.4(16/2), a full type that is a record extension
9430 -- is never allowed to derive from a synchronized interface (note
9431 -- that interfaces must be excluded from this check, because those
9432 -- are represented by derived type definitions in some cases).
9433
9434 elsif Nkind (Type_Definition (N)) = N_Derived_Type_Definition
9435 and then not Interface_Present (Type_Definition (N))
9436 then
9437 Error_Msg_N ("record extension cannot derive from synchronized"
9438 & " interface", Error_Node);
9439 end if;
9440 end if;
9441
9442 -- Check that the characteristics of the progenitor are compatible
9443 -- with the explicit qualifier in the declaration.
9444 -- The check only applies to qualifiers that come from source.
9445 -- Limited_Present also appears in the declaration of corresponding
9446 -- records, and the check does not apply to them.
9447
9448 if Limited_Present (Type_Def)
9449 and then not
9450 Is_Concurrent_Record_Type (Defining_Identifier (N))
9451 then
9452 if Is_Limited_Interface (Parent_Type)
9453 and then not Is_Limited_Interface (Iface_Id)
9454 then
9455 Error_Msg_NE
9456 ("progenitor& must be limited interface",
9457 Error_Node, Iface_Id);
9458
9459 elsif
9460 (Task_Present (Iface_Def)
9461 or else Protected_Present (Iface_Def)
9462 or else Synchronized_Present (Iface_Def))
9463 and then Nkind (N) /= N_Private_Extension_Declaration
9464 and then not Error_Posted (N)
9465 then
9466 Error_Msg_NE
9467 ("progenitor& must be limited interface",
9468 Error_Node, Iface_Id);
9469 end if;
9470
9471 -- Protected interfaces can only inherit from limited, synchronized
9472 -- or protected interfaces.
9473
9474 elsif Nkind (N) = N_Full_Type_Declaration
9475 and then Protected_Present (Type_Def)
9476 then
9477 if Limited_Present (Iface_Def)
9478 or else Synchronized_Present (Iface_Def)
9479 or else Protected_Present (Iface_Def)
9480 then
9481 null;
9482
9483 elsif Task_Present (Iface_Def) then
9484 Error_Msg_N ("(Ada 2005) protected interface cannot inherit"
9485 & " from task interface", Error_Node);
9486
9487 else
9488 Error_Msg_N ("(Ada 2005) protected interface cannot inherit"
9489 & " from non-limited interface", Error_Node);
9490 end if;
9491
9492 -- Ada 2005 (AI-345): Synchronized interfaces can only inherit from
9493 -- limited and synchronized.
9494
9495 elsif Synchronized_Present (Type_Def) then
9496 if Limited_Present (Iface_Def)
9497 or else Synchronized_Present (Iface_Def)
9498 then
9499 null;
9500
9501 elsif Protected_Present (Iface_Def)
9502 and then Nkind (N) /= N_Private_Extension_Declaration
9503 then
9504 Error_Msg_N ("(Ada 2005) synchronized interface cannot inherit"
9505 & " from protected interface", Error_Node);
9506
9507 elsif Task_Present (Iface_Def)
9508 and then Nkind (N) /= N_Private_Extension_Declaration
9509 then
9510 Error_Msg_N ("(Ada 2005) synchronized interface cannot inherit"
9511 & " from task interface", Error_Node);
9512
9513 elsif not Is_Limited_Interface (Iface_Id) then
9514 Error_Msg_N ("(Ada 2005) synchronized interface cannot inherit"
9515 & " from non-limited interface", Error_Node);
9516 end if;
9517
9518 -- Ada 2005 (AI-345): Task interfaces can only inherit from limited,
9519 -- synchronized or task interfaces.
9520
9521 elsif Nkind (N) = N_Full_Type_Declaration
9522 and then Task_Present (Type_Def)
9523 then
9524 if Limited_Present (Iface_Def)
9525 or else Synchronized_Present (Iface_Def)
9526 or else Task_Present (Iface_Def)
9527 then
9528 null;
9529
9530 elsif Protected_Present (Iface_Def) then
9531 Error_Msg_N ("(Ada 2005) task interface cannot inherit from"
9532 & " protected interface", Error_Node);
9533
9534 else
9535 Error_Msg_N ("(Ada 2005) task interface cannot inherit from"
9536 & " non-limited interface", Error_Node);
9537 end if;
9538 end if;
9539 end Check_Ifaces;
9540
9541 -- Start of processing for Check_Interfaces
9542
9543 begin
9544 if Is_Interface (Parent_Type) then
9545 if Is_Task_Interface (Parent_Type) then
9546 Is_Task := True;
9547
9548 elsif Is_Protected_Interface (Parent_Type) then
9549 Is_Protected := True;
9550 end if;
9551 end if;
9552
9553 if Nkind (N) = N_Private_Extension_Declaration then
9554
9555 -- Check that progenitors are compatible with declaration
9556
9557 Iface := First (Interface_List (Def));
9558 while Present (Iface) loop
9559 Iface_Typ := Find_Type_Of_Subtype_Indic (Iface);
9560
9561 Parent_Node := Parent (Base_Type (Iface_Typ));
9562 Iface_Def := Type_Definition (Parent_Node);
9563
9564 if not Is_Interface (Iface_Typ) then
9565 Diagnose_Interface (Iface, Iface_Typ);
9566
9567 else
9568 Check_Ifaces (Iface_Def, Iface);
9569 end if;
9570
9571 Next (Iface);
9572 end loop;
9573
9574 if Is_Task and Is_Protected then
9575 Error_Msg_N
9576 ("type cannot derive from task and protected interface", N);
9577 end if;
9578
9579 return;
9580 end if;
9581
9582 -- Full type declaration of derived type.
9583 -- Check compatibility with parent if it is interface type
9584
9585 if Nkind (Type_Definition (N)) = N_Derived_Type_Definition
9586 and then Is_Interface (Parent_Type)
9587 then
9588 Parent_Node := Parent (Parent_Type);
9589
9590 -- More detailed checks for interface varieties
9591
9592 Check_Ifaces
9593 (Iface_Def => Type_Definition (Parent_Node),
9594 Error_Node => Subtype_Indication (Type_Definition (N)));
9595 end if;
9596
9597 Iface := First (Interface_List (Def));
9598 while Present (Iface) loop
9599 Iface_Typ := Find_Type_Of_Subtype_Indic (Iface);
9600
9601 Parent_Node := Parent (Base_Type (Iface_Typ));
9602 Iface_Def := Type_Definition (Parent_Node);
9603
9604 if not Is_Interface (Iface_Typ) then
9605 Diagnose_Interface (Iface, Iface_Typ);
9606
9607 else
9608 -- "The declaration of a specific descendant of an interface
9609 -- type freezes the interface type" RM 13.14
9610
9611 Freeze_Before (N, Iface_Typ);
9612 Check_Ifaces (Iface_Def, Error_Node => Iface);
9613 end if;
9614
9615 Next (Iface);
9616 end loop;
9617
9618 if Is_Task and Is_Protected then
9619 Error_Msg_N
9620 ("type cannot derive from task and protected interface", N);
9621 end if;
9622 end Check_Interfaces;
9623
9624 ------------------------------------
9625 -- Check_Or_Process_Discriminants --
9626 ------------------------------------
9627
9628 -- If an incomplete or private type declaration was already given for the
9629 -- type, the discriminants may have already been processed if they were
9630 -- present on the incomplete declaration. In this case a full conformance
9631 -- check has been performed in Find_Type_Name, and we then recheck here
9632 -- some properties that can't be checked on the partial view alone.
9633 -- Otherwise we call Process_Discriminants.
9634
9635 procedure Check_Or_Process_Discriminants
9636 (N : Node_Id;
9637 T : Entity_Id;
9638 Prev : Entity_Id := Empty)
9639 is
9640 begin
9641 if Has_Discriminants (T) then
9642
9643 -- Discriminants are already set on T if they were already present
9644 -- on the partial view. Make them visible to component declarations.
9645
9646 declare
9647 D : Entity_Id;
9648 -- Discriminant on T (full view) referencing expr on partial view
9649
9650 Prev_D : Entity_Id;
9651 -- Entity of corresponding discriminant on partial view
9652
9653 New_D : Node_Id;
9654 -- Discriminant specification for full view, expression is the
9655 -- syntactic copy on full view (which has been checked for
9656 -- conformance with partial view), only used here to post error
9657 -- message.
9658
9659 begin
9660 D := First_Discriminant (T);
9661 New_D := First (Discriminant_Specifications (N));
9662 while Present (D) loop
9663 Prev_D := Current_Entity (D);
9664 Set_Current_Entity (D);
9665 Set_Is_Immediately_Visible (D);
9666 Set_Homonym (D, Prev_D);
9667
9668 -- Handle the case where there is an untagged partial view and
9669 -- the full view is tagged: must disallow discriminants with
9670 -- defaults, unless compiling for Ada 2012, which allows a
9671 -- limited tagged type to have defaulted discriminants (see
9672 -- AI05-0214). However, suppress the error here if it was
9673 -- already reported on the default expression of the partial
9674 -- view.
9675
9676 if Is_Tagged_Type (T)
9677 and then Present (Expression (Parent (D)))
9678 and then (not Is_Limited_Type (Current_Scope)
9679 or else Ada_Version < Ada_2012)
9680 and then not Error_Posted (Expression (Parent (D)))
9681 then
9682 if Ada_Version >= Ada_2012 then
9683 Error_Msg_N
9684 ("discriminants of nonlimited tagged type cannot have"
9685 & " defaults",
9686 Expression (New_D));
9687 else
9688 Error_Msg_N
9689 ("discriminants of tagged type cannot have defaults",
9690 Expression (New_D));
9691 end if;
9692 end if;
9693
9694 -- Ada 2005 (AI-230): Access discriminant allowed in
9695 -- non-limited record types.
9696
9697 if Ada_Version < Ada_2005 then
9698
9699 -- This restriction gets applied to the full type here. It
9700 -- has already been applied earlier to the partial view.
9701
9702 Check_Access_Discriminant_Requires_Limited (Parent (D), N);
9703 end if;
9704
9705 Next_Discriminant (D);
9706 Next (New_D);
9707 end loop;
9708 end;
9709
9710 elsif Present (Discriminant_Specifications (N)) then
9711 Process_Discriminants (N, Prev);
9712 end if;
9713 end Check_Or_Process_Discriminants;
9714
9715 ----------------------
9716 -- Check_Real_Bound --
9717 ----------------------
9718
9719 procedure Check_Real_Bound (Bound : Node_Id) is
9720 begin
9721 if not Is_Real_Type (Etype (Bound)) then
9722 Error_Msg_N
9723 ("bound in real type definition must be of real type", Bound);
9724
9725 elsif not Is_OK_Static_Expression (Bound) then
9726 Flag_Non_Static_Expr
9727 ("non-static expression used for real type bound!", Bound);
9728
9729 else
9730 return;
9731 end if;
9732
9733 Rewrite
9734 (Bound, Make_Real_Literal (Sloc (Bound), Ureal_0));
9735 Analyze (Bound);
9736 Resolve (Bound, Standard_Float);
9737 end Check_Real_Bound;
9738
9739 ------------------------------
9740 -- Complete_Private_Subtype --
9741 ------------------------------
9742
9743 procedure Complete_Private_Subtype
9744 (Priv : Entity_Id;
9745 Full : Entity_Id;
9746 Full_Base : Entity_Id;
9747 Related_Nod : Node_Id)
9748 is
9749 Save_Next_Entity : Entity_Id;
9750 Save_Homonym : Entity_Id;
9751
9752 begin
9753 -- Set semantic attributes for (implicit) private subtype completion.
9754 -- If the full type has no discriminants, then it is a copy of the full
9755 -- view of the base. Otherwise, it is a subtype of the base with a
9756 -- possible discriminant constraint. Save and restore the original
9757 -- Next_Entity field of full to ensure that the calls to Copy_Node
9758 -- do not corrupt the entity chain.
9759
9760 -- Note that the type of the full view is the same entity as the type of
9761 -- the partial view. In this fashion, the subtype has access to the
9762 -- correct view of the parent.
9763
9764 Save_Next_Entity := Next_Entity (Full);
9765 Save_Homonym := Homonym (Priv);
9766
9767 case Ekind (Full_Base) is
9768 when E_Record_Type |
9769 E_Record_Subtype |
9770 Class_Wide_Kind |
9771 Private_Kind |
9772 Task_Kind |
9773 Protected_Kind =>
9774 Copy_Node (Priv, Full);
9775
9776 Set_Has_Discriminants (Full, Has_Discriminants (Full_Base));
9777 Set_First_Entity (Full, First_Entity (Full_Base));
9778 Set_Last_Entity (Full, Last_Entity (Full_Base));
9779
9780 when others =>
9781 Copy_Node (Full_Base, Full);
9782 Set_Chars (Full, Chars (Priv));
9783 Conditional_Delay (Full, Priv);
9784 Set_Sloc (Full, Sloc (Priv));
9785 end case;
9786
9787 Set_Next_Entity (Full, Save_Next_Entity);
9788 Set_Homonym (Full, Save_Homonym);
9789 Set_Associated_Node_For_Itype (Full, Related_Nod);
9790
9791 -- Set common attributes for all subtypes
9792
9793 Set_Ekind (Full, Subtype_Kind (Ekind (Full_Base)));
9794
9795 -- The Etype of the full view is inconsistent. Gigi needs to see the
9796 -- structural full view, which is what the current scheme gives:
9797 -- the Etype of the full view is the etype of the full base. However,
9798 -- if the full base is a derived type, the full view then looks like
9799 -- a subtype of the parent, not a subtype of the full base. If instead
9800 -- we write:
9801
9802 -- Set_Etype (Full, Full_Base);
9803
9804 -- then we get inconsistencies in the front-end (confusion between
9805 -- views). Several outstanding bugs are related to this ???
9806
9807 Set_Is_First_Subtype (Full, False);
9808 Set_Scope (Full, Scope (Priv));
9809 Set_Size_Info (Full, Full_Base);
9810 Set_RM_Size (Full, RM_Size (Full_Base));
9811 Set_Is_Itype (Full);
9812
9813 -- A subtype of a private-type-without-discriminants, whose full-view
9814 -- has discriminants with default expressions, is not constrained!
9815
9816 if not Has_Discriminants (Priv) then
9817 Set_Is_Constrained (Full, Is_Constrained (Full_Base));
9818
9819 if Has_Discriminants (Full_Base) then
9820 Set_Discriminant_Constraint
9821 (Full, Discriminant_Constraint (Full_Base));
9822
9823 -- The partial view may have been indefinite, the full view
9824 -- might not be.
9825
9826 Set_Has_Unknown_Discriminants
9827 (Full, Has_Unknown_Discriminants (Full_Base));
9828 end if;
9829 end if;
9830
9831 Set_First_Rep_Item (Full, First_Rep_Item (Full_Base));
9832 Set_Depends_On_Private (Full, Has_Private_Component (Full));
9833
9834 -- Freeze the private subtype entity if its parent is delayed, and not
9835 -- already frozen. We skip this processing if the type is an anonymous
9836 -- subtype of a record component, or is the corresponding record of a
9837 -- protected type, since ???
9838
9839 if not Is_Type (Scope (Full)) then
9840 Set_Has_Delayed_Freeze (Full,
9841 Has_Delayed_Freeze (Full_Base)
9842 and then (not Is_Frozen (Full_Base)));
9843 end if;
9844
9845 Set_Freeze_Node (Full, Empty);
9846 Set_Is_Frozen (Full, False);
9847 Set_Full_View (Priv, Full);
9848
9849 if Has_Discriminants (Full) then
9850 Set_Stored_Constraint_From_Discriminant_Constraint (Full);
9851 Set_Stored_Constraint (Priv, Stored_Constraint (Full));
9852
9853 if Has_Unknown_Discriminants (Full) then
9854 Set_Discriminant_Constraint (Full, No_Elist);
9855 end if;
9856 end if;
9857
9858 if Ekind (Full_Base) = E_Record_Type
9859 and then Has_Discriminants (Full_Base)
9860 and then Has_Discriminants (Priv) -- might not, if errors
9861 and then not Has_Unknown_Discriminants (Priv)
9862 and then not Is_Empty_Elmt_List (Discriminant_Constraint (Priv))
9863 then
9864 Create_Constrained_Components
9865 (Full, Related_Nod, Full_Base, Discriminant_Constraint (Priv));
9866
9867 -- If the full base is itself derived from private, build a congruent
9868 -- subtype of its underlying type, for use by the back end. For a
9869 -- constrained record component, the declaration cannot be placed on
9870 -- the component list, but it must nevertheless be built an analyzed, to
9871 -- supply enough information for Gigi to compute the size of component.
9872
9873 elsif Ekind (Full_Base) in Private_Kind
9874 and then Is_Derived_Type (Full_Base)
9875 and then Has_Discriminants (Full_Base)
9876 and then (Ekind (Current_Scope) /= E_Record_Subtype)
9877 then
9878 if not Is_Itype (Priv)
9879 and then
9880 Nkind (Subtype_Indication (Parent (Priv))) = N_Subtype_Indication
9881 then
9882 Build_Underlying_Full_View
9883 (Parent (Priv), Full, Etype (Full_Base));
9884
9885 elsif Nkind (Related_Nod) = N_Component_Declaration then
9886 Build_Underlying_Full_View (Related_Nod, Full, Etype (Full_Base));
9887 end if;
9888
9889 elsif Is_Record_Type (Full_Base) then
9890
9891 -- Show Full is simply a renaming of Full_Base
9892
9893 Set_Cloned_Subtype (Full, Full_Base);
9894 end if;
9895
9896 -- It is unsafe to share to bounds of a scalar type, because the Itype
9897 -- is elaborated on demand, and if a bound is non-static then different
9898 -- orders of elaboration in different units will lead to different
9899 -- external symbols.
9900
9901 if Is_Scalar_Type (Full_Base) then
9902 Set_Scalar_Range (Full,
9903 Make_Range (Sloc (Related_Nod),
9904 Low_Bound =>
9905 Duplicate_Subexpr_No_Checks (Type_Low_Bound (Full_Base)),
9906 High_Bound =>
9907 Duplicate_Subexpr_No_Checks (Type_High_Bound (Full_Base))));
9908
9909 -- This completion inherits the bounds of the full parent, but if
9910 -- the parent is an unconstrained floating point type, so is the
9911 -- completion.
9912
9913 if Is_Floating_Point_Type (Full_Base) then
9914 Set_Includes_Infinities
9915 (Scalar_Range (Full), Has_Infinities (Full_Base));
9916 end if;
9917 end if;
9918
9919 -- ??? It seems that a lot of fields are missing that should be copied
9920 -- from Full_Base to Full. Here are some that are introduced in a
9921 -- non-disruptive way but a cleanup is necessary.
9922
9923 if Is_Tagged_Type (Full_Base) then
9924 Set_Is_Tagged_Type (Full);
9925 Set_Direct_Primitive_Operations (Full,
9926 Direct_Primitive_Operations (Full_Base));
9927
9928 -- Inherit class_wide type of full_base in case the partial view was
9929 -- not tagged. Otherwise it has already been created when the private
9930 -- subtype was analyzed.
9931
9932 if No (Class_Wide_Type (Full)) then
9933 Set_Class_Wide_Type (Full, Class_Wide_Type (Full_Base));
9934 end if;
9935
9936 -- If this is a subtype of a protected or task type, constrain its
9937 -- corresponding record, unless this is a subtype without constraints,
9938 -- i.e. a simple renaming as with an actual subtype in an instance.
9939
9940 elsif Is_Concurrent_Type (Full_Base) then
9941 if Has_Discriminants (Full)
9942 and then Present (Corresponding_Record_Type (Full_Base))
9943 and then
9944 not Is_Empty_Elmt_List (Discriminant_Constraint (Full))
9945 then
9946 Set_Corresponding_Record_Type (Full,
9947 Constrain_Corresponding_Record
9948 (Full, Corresponding_Record_Type (Full_Base),
9949 Related_Nod, Full_Base));
9950
9951 else
9952 Set_Corresponding_Record_Type (Full,
9953 Corresponding_Record_Type (Full_Base));
9954 end if;
9955 end if;
9956
9957 -- Link rep item chain, and also setting of Has_Predicates from private
9958 -- subtype to full subtype, since we will need these on the full subtype
9959 -- to create the predicate function. Note that the full subtype may
9960 -- already have rep items, inherited from the full view of the base
9961 -- type, so we must be sure not to overwrite these entries.
9962
9963 declare
9964 Item : Node_Id;
9965 Next_Item : Node_Id;
9966
9967 begin
9968 Item := First_Rep_Item (Full);
9969
9970 -- If no existing rep items on full type, we can just link directly
9971 -- to the list of items on the private type.
9972
9973 if No (Item) then
9974 Set_First_Rep_Item (Full, First_Rep_Item (Priv));
9975
9976 -- Else search to end of items currently linked to the full subtype
9977
9978 else
9979 loop
9980 Next_Item := Next_Rep_Item (Item);
9981 exit when No (Next_Item);
9982 Item := Next_Item;
9983 end loop;
9984
9985 -- And link the private type items at the end of the chain
9986
9987 Set_Next_Rep_Item (Item, First_Rep_Item (Priv));
9988 end if;
9989 end;
9990
9991 -- Make sure Has_Predicates is set on full type if it is set on the
9992 -- private type. Note that it may already be set on the full type and
9993 -- if so, we don't want to unset it.
9994
9995 if Has_Predicates (Priv) then
9996 Set_Has_Predicates (Full);
9997 end if;
9998 end Complete_Private_Subtype;
9999
10000 ----------------------------
10001 -- Constant_Redeclaration --
10002 ----------------------------
10003
10004 procedure Constant_Redeclaration
10005 (Id : Entity_Id;
10006 N : Node_Id;
10007 T : out Entity_Id)
10008 is
10009 Prev : constant Entity_Id := Current_Entity_In_Scope (Id);
10010 Obj_Def : constant Node_Id := Object_Definition (N);
10011 New_T : Entity_Id;
10012
10013 procedure Check_Possible_Deferred_Completion
10014 (Prev_Id : Entity_Id;
10015 Prev_Obj_Def : Node_Id;
10016 Curr_Obj_Def : Node_Id);
10017 -- Determine whether the two object definitions describe the partial
10018 -- and the full view of a constrained deferred constant. Generate
10019 -- a subtype for the full view and verify that it statically matches
10020 -- the subtype of the partial view.
10021
10022 procedure Check_Recursive_Declaration (Typ : Entity_Id);
10023 -- If deferred constant is an access type initialized with an allocator,
10024 -- check whether there is an illegal recursion in the definition,
10025 -- through a default value of some record subcomponent. This is normally
10026 -- detected when generating init procs, but requires this additional
10027 -- mechanism when expansion is disabled.
10028
10029 ----------------------------------------
10030 -- Check_Possible_Deferred_Completion --
10031 ----------------------------------------
10032
10033 procedure Check_Possible_Deferred_Completion
10034 (Prev_Id : Entity_Id;
10035 Prev_Obj_Def : Node_Id;
10036 Curr_Obj_Def : Node_Id)
10037 is
10038 begin
10039 if Nkind (Prev_Obj_Def) = N_Subtype_Indication
10040 and then Present (Constraint (Prev_Obj_Def))
10041 and then Nkind (Curr_Obj_Def) = N_Subtype_Indication
10042 and then Present (Constraint (Curr_Obj_Def))
10043 then
10044 declare
10045 Loc : constant Source_Ptr := Sloc (N);
10046 Def_Id : constant Entity_Id := Make_Temporary (Loc, 'S');
10047 Decl : constant Node_Id :=
10048 Make_Subtype_Declaration (Loc,
10049 Defining_Identifier => Def_Id,
10050 Subtype_Indication =>
10051 Relocate_Node (Curr_Obj_Def));
10052
10053 begin
10054 Insert_Before_And_Analyze (N, Decl);
10055 Set_Etype (Id, Def_Id);
10056
10057 if not Subtypes_Statically_Match (Etype (Prev_Id), Def_Id) then
10058 Error_Msg_Sloc := Sloc (Prev_Id);
10059 Error_Msg_N ("subtype does not statically match deferred " &
10060 "declaration#", N);
10061 end if;
10062 end;
10063 end if;
10064 end Check_Possible_Deferred_Completion;
10065
10066 ---------------------------------
10067 -- Check_Recursive_Declaration --
10068 ---------------------------------
10069
10070 procedure Check_Recursive_Declaration (Typ : Entity_Id) is
10071 Comp : Entity_Id;
10072
10073 begin
10074 if Is_Record_Type (Typ) then
10075 Comp := First_Component (Typ);
10076 while Present (Comp) loop
10077 if Comes_From_Source (Comp) then
10078 if Present (Expression (Parent (Comp)))
10079 and then Is_Entity_Name (Expression (Parent (Comp)))
10080 and then Entity (Expression (Parent (Comp))) = Prev
10081 then
10082 Error_Msg_Sloc := Sloc (Parent (Comp));
10083 Error_Msg_NE
10084 ("illegal circularity with declaration for&#",
10085 N, Comp);
10086 return;
10087
10088 elsif Is_Record_Type (Etype (Comp)) then
10089 Check_Recursive_Declaration (Etype (Comp));
10090 end if;
10091 end if;
10092
10093 Next_Component (Comp);
10094 end loop;
10095 end if;
10096 end Check_Recursive_Declaration;
10097
10098 -- Start of processing for Constant_Redeclaration
10099
10100 begin
10101 if Nkind (Parent (Prev)) = N_Object_Declaration then
10102 if Nkind (Object_Definition
10103 (Parent (Prev))) = N_Subtype_Indication
10104 then
10105 -- Find type of new declaration. The constraints of the two
10106 -- views must match statically, but there is no point in
10107 -- creating an itype for the full view.
10108
10109 if Nkind (Obj_Def) = N_Subtype_Indication then
10110 Find_Type (Subtype_Mark (Obj_Def));
10111 New_T := Entity (Subtype_Mark (Obj_Def));
10112
10113 else
10114 Find_Type (Obj_Def);
10115 New_T := Entity (Obj_Def);
10116 end if;
10117
10118 T := Etype (Prev);
10119
10120 else
10121 -- The full view may impose a constraint, even if the partial
10122 -- view does not, so construct the subtype.
10123
10124 New_T := Find_Type_Of_Object (Obj_Def, N);
10125 T := New_T;
10126 end if;
10127
10128 else
10129 -- Current declaration is illegal, diagnosed below in Enter_Name
10130
10131 T := Empty;
10132 New_T := Any_Type;
10133 end if;
10134
10135 -- If previous full declaration or a renaming declaration exists, or if
10136 -- a homograph is present, let Enter_Name handle it, either with an
10137 -- error or with the removal of an overridden implicit subprogram.
10138
10139 if Ekind (Prev) /= E_Constant
10140 or else Nkind (Parent (Prev)) = N_Object_Renaming_Declaration
10141 or else Present (Expression (Parent (Prev)))
10142 or else Present (Full_View (Prev))
10143 then
10144 Enter_Name (Id);
10145
10146 -- Verify that types of both declarations match, or else that both types
10147 -- are anonymous access types whose designated subtypes statically match
10148 -- (as allowed in Ada 2005 by AI-385).
10149
10150 elsif Base_Type (Etype (Prev)) /= Base_Type (New_T)
10151 and then
10152 (Ekind (Etype (Prev)) /= E_Anonymous_Access_Type
10153 or else Ekind (Etype (New_T)) /= E_Anonymous_Access_Type
10154 or else Is_Access_Constant (Etype (New_T)) /=
10155 Is_Access_Constant (Etype (Prev))
10156 or else Can_Never_Be_Null (Etype (New_T)) /=
10157 Can_Never_Be_Null (Etype (Prev))
10158 or else Null_Exclusion_Present (Parent (Prev)) /=
10159 Null_Exclusion_Present (Parent (Id))
10160 or else not Subtypes_Statically_Match
10161 (Designated_Type (Etype (Prev)),
10162 Designated_Type (Etype (New_T))))
10163 then
10164 Error_Msg_Sloc := Sloc (Prev);
10165 Error_Msg_N ("type does not match declaration#", N);
10166 Set_Full_View (Prev, Id);
10167 Set_Etype (Id, Any_Type);
10168
10169 elsif
10170 Null_Exclusion_Present (Parent (Prev))
10171 and then not Null_Exclusion_Present (N)
10172 then
10173 Error_Msg_Sloc := Sloc (Prev);
10174 Error_Msg_N ("null-exclusion does not match declaration#", N);
10175 Set_Full_View (Prev, Id);
10176 Set_Etype (Id, Any_Type);
10177
10178 -- If so, process the full constant declaration
10179
10180 else
10181 -- RM 7.4 (6): If the subtype defined by the subtype_indication in
10182 -- the deferred declaration is constrained, then the subtype defined
10183 -- by the subtype_indication in the full declaration shall match it
10184 -- statically.
10185
10186 Check_Possible_Deferred_Completion
10187 (Prev_Id => Prev,
10188 Prev_Obj_Def => Object_Definition (Parent (Prev)),
10189 Curr_Obj_Def => Obj_Def);
10190
10191 Set_Full_View (Prev, Id);
10192 Set_Is_Public (Id, Is_Public (Prev));
10193 Set_Is_Internal (Id);
10194 Append_Entity (Id, Current_Scope);
10195
10196 -- Check ALIASED present if present before (RM 7.4(7))
10197
10198 if Is_Aliased (Prev)
10199 and then not Aliased_Present (N)
10200 then
10201 Error_Msg_Sloc := Sloc (Prev);
10202 Error_Msg_N ("ALIASED required (see declaration#)", N);
10203 end if;
10204
10205 -- Check that placement is in private part and that the incomplete
10206 -- declaration appeared in the visible part.
10207
10208 if Ekind (Current_Scope) = E_Package
10209 and then not In_Private_Part (Current_Scope)
10210 then
10211 Error_Msg_Sloc := Sloc (Prev);
10212 Error_Msg_N
10213 ("full constant for declaration#"
10214 & " must be in private part", N);
10215
10216 elsif Ekind (Current_Scope) = E_Package
10217 and then
10218 List_Containing (Parent (Prev)) /=
10219 Visible_Declarations
10220 (Specification (Unit_Declaration_Node (Current_Scope)))
10221 then
10222 Error_Msg_N
10223 ("deferred constant must be declared in visible part",
10224 Parent (Prev));
10225 end if;
10226
10227 if Is_Access_Type (T)
10228 and then Nkind (Expression (N)) = N_Allocator
10229 then
10230 Check_Recursive_Declaration (Designated_Type (T));
10231 end if;
10232 end if;
10233 end Constant_Redeclaration;
10234
10235 ----------------------
10236 -- Constrain_Access --
10237 ----------------------
10238
10239 procedure Constrain_Access
10240 (Def_Id : in out Entity_Id;
10241 S : Node_Id;
10242 Related_Nod : Node_Id)
10243 is
10244 T : constant Entity_Id := Entity (Subtype_Mark (S));
10245 Desig_Type : constant Entity_Id := Designated_Type (T);
10246 Desig_Subtype : Entity_Id := Create_Itype (E_Void, Related_Nod);
10247 Constraint_OK : Boolean := True;
10248
10249 function Has_Defaulted_Discriminants (Typ : Entity_Id) return Boolean;
10250 -- Simple predicate to test for defaulted discriminants
10251 -- Shouldn't this be in sem_util???
10252
10253 ---------------------------------
10254 -- Has_Defaulted_Discriminants --
10255 ---------------------------------
10256
10257 function Has_Defaulted_Discriminants (Typ : Entity_Id) return Boolean is
10258 begin
10259 return Has_Discriminants (Typ)
10260 and then Present (First_Discriminant (Typ))
10261 and then Present
10262 (Discriminant_Default_Value (First_Discriminant (Typ)));
10263 end Has_Defaulted_Discriminants;
10264
10265 -- Start of processing for Constrain_Access
10266
10267 begin
10268 if Is_Array_Type (Desig_Type) then
10269 Constrain_Array (Desig_Subtype, S, Related_Nod, Def_Id, 'P');
10270
10271 elsif (Is_Record_Type (Desig_Type)
10272 or else Is_Incomplete_Or_Private_Type (Desig_Type))
10273 and then not Is_Constrained (Desig_Type)
10274 then
10275 -- ??? The following code is a temporary kludge to ignore a
10276 -- discriminant constraint on access type if it is constraining
10277 -- the current record. Avoid creating the implicit subtype of the
10278 -- record we are currently compiling since right now, we cannot
10279 -- handle these. For now, just return the access type itself.
10280
10281 if Desig_Type = Current_Scope
10282 and then No (Def_Id)
10283 then
10284 Set_Ekind (Desig_Subtype, E_Record_Subtype);
10285 Def_Id := Entity (Subtype_Mark (S));
10286
10287 -- This call added to ensure that the constraint is analyzed
10288 -- (needed for a B test). Note that we still return early from
10289 -- this procedure to avoid recursive processing. ???
10290
10291 Constrain_Discriminated_Type
10292 (Desig_Subtype, S, Related_Nod, For_Access => True);
10293 return;
10294 end if;
10295
10296 if (Ekind (T) = E_General_Access_Type
10297 or else Ada_Version >= Ada_2005)
10298 and then Has_Private_Declaration (Desig_Type)
10299 and then In_Open_Scopes (Scope (Desig_Type))
10300 and then Has_Discriminants (Desig_Type)
10301 then
10302 -- Enforce rule that the constraint is illegal if there is
10303 -- an unconstrained view of the designated type. This means
10304 -- that the partial view (either a private type declaration or
10305 -- a derivation from a private type) has no discriminants.
10306 -- (Defect Report 8652/0008, Technical Corrigendum 1, checked
10307 -- by ACATS B371001).
10308
10309 -- Rule updated for Ada 2005: the private type is said to have
10310 -- a constrained partial view, given that objects of the type
10311 -- can be declared. Furthermore, the rule applies to all access
10312 -- types, unlike the rule concerning default discriminants.
10313
10314 declare
10315 Pack : constant Node_Id :=
10316 Unit_Declaration_Node (Scope (Desig_Type));
10317 Decls : List_Id;
10318 Decl : Node_Id;
10319
10320 begin
10321 if Nkind (Pack) = N_Package_Declaration then
10322 Decls := Visible_Declarations (Specification (Pack));
10323 Decl := First (Decls);
10324 while Present (Decl) loop
10325 if (Nkind (Decl) = N_Private_Type_Declaration
10326 and then
10327 Chars (Defining_Identifier (Decl)) =
10328 Chars (Desig_Type))
10329
10330 or else
10331 (Nkind (Decl) = N_Full_Type_Declaration
10332 and then
10333 Chars (Defining_Identifier (Decl)) =
10334 Chars (Desig_Type)
10335 and then Is_Derived_Type (Desig_Type)
10336 and then
10337 Has_Private_Declaration (Etype (Desig_Type)))
10338 then
10339 if No (Discriminant_Specifications (Decl)) then
10340 Error_Msg_N
10341 ("cannot constrain general access type if " &
10342 "designated type has constrained partial view",
10343 S);
10344 end if;
10345
10346 exit;
10347 end if;
10348
10349 Next (Decl);
10350 end loop;
10351 end if;
10352 end;
10353 end if;
10354
10355 Constrain_Discriminated_Type (Desig_Subtype, S, Related_Nod,
10356 For_Access => True);
10357
10358 elsif (Is_Task_Type (Desig_Type)
10359 or else Is_Protected_Type (Desig_Type))
10360 and then not Is_Constrained (Desig_Type)
10361 then
10362 Constrain_Concurrent
10363 (Desig_Subtype, S, Related_Nod, Desig_Type, ' ');
10364
10365 else
10366 Error_Msg_N ("invalid constraint on access type", S);
10367 Desig_Subtype := Desig_Type; -- Ignore invalid constraint.
10368 Constraint_OK := False;
10369 end if;
10370
10371 if No (Def_Id) then
10372 Def_Id := Create_Itype (E_Access_Subtype, Related_Nod);
10373 else
10374 Set_Ekind (Def_Id, E_Access_Subtype);
10375 end if;
10376
10377 if Constraint_OK then
10378 Set_Etype (Def_Id, Base_Type (T));
10379
10380 if Is_Private_Type (Desig_Type) then
10381 Prepare_Private_Subtype_Completion (Desig_Subtype, Related_Nod);
10382 end if;
10383 else
10384 Set_Etype (Def_Id, Any_Type);
10385 end if;
10386
10387 Set_Size_Info (Def_Id, T);
10388 Set_Is_Constrained (Def_Id, Constraint_OK);
10389 Set_Directly_Designated_Type (Def_Id, Desig_Subtype);
10390 Set_Depends_On_Private (Def_Id, Has_Private_Component (Def_Id));
10391 Set_Is_Access_Constant (Def_Id, Is_Access_Constant (T));
10392
10393 Conditional_Delay (Def_Id, T);
10394
10395 -- AI-363 : Subtypes of general access types whose designated types have
10396 -- default discriminants are disallowed. In instances, the rule has to
10397 -- be checked against the actual, of which T is the subtype. In a
10398 -- generic body, the rule is checked assuming that the actual type has
10399 -- defaulted discriminants.
10400
10401 if Ada_Version >= Ada_2005 or else Warn_On_Ada_2005_Compatibility then
10402 if Ekind (Base_Type (T)) = E_General_Access_Type
10403 and then Has_Defaulted_Discriminants (Desig_Type)
10404 then
10405 if Ada_Version < Ada_2005 then
10406 Error_Msg_N
10407 ("access subtype of general access type would not " &
10408 "be allowed in Ada 2005?", S);
10409 else
10410 Error_Msg_N
10411 ("access subype of general access type not allowed", S);
10412 end if;
10413
10414 Error_Msg_N ("\discriminants have defaults", S);
10415
10416 elsif Is_Access_Type (T)
10417 and then Is_Generic_Type (Desig_Type)
10418 and then Has_Discriminants (Desig_Type)
10419 and then In_Package_Body (Current_Scope)
10420 then
10421 if Ada_Version < Ada_2005 then
10422 Error_Msg_N
10423 ("access subtype would not be allowed in generic body " &
10424 "in Ada 2005?", S);
10425 else
10426 Error_Msg_N
10427 ("access subtype not allowed in generic body", S);
10428 end if;
10429
10430 Error_Msg_N
10431 ("\designated type is a discriminated formal", S);
10432 end if;
10433 end if;
10434 end Constrain_Access;
10435
10436 ---------------------
10437 -- Constrain_Array --
10438 ---------------------
10439
10440 procedure Constrain_Array
10441 (Def_Id : in out Entity_Id;
10442 SI : Node_Id;
10443 Related_Nod : Node_Id;
10444 Related_Id : Entity_Id;
10445 Suffix : Character)
10446 is
10447 C : constant Node_Id := Constraint (SI);
10448 Number_Of_Constraints : Nat := 0;
10449 Index : Node_Id;
10450 S, T : Entity_Id;
10451 Constraint_OK : Boolean := True;
10452
10453 begin
10454 T := Entity (Subtype_Mark (SI));
10455
10456 if Ekind (T) in Access_Kind then
10457 T := Designated_Type (T);
10458 end if;
10459
10460 -- If an index constraint follows a subtype mark in a subtype indication
10461 -- then the type or subtype denoted by the subtype mark must not already
10462 -- impose an index constraint. The subtype mark must denote either an
10463 -- unconstrained array type or an access type whose designated type
10464 -- is such an array type... (RM 3.6.1)
10465
10466 if Is_Constrained (T) then
10467 Error_Msg_N ("array type is already constrained", Subtype_Mark (SI));
10468 Constraint_OK := False;
10469
10470 else
10471 S := First (Constraints (C));
10472 while Present (S) loop
10473 Number_Of_Constraints := Number_Of_Constraints + 1;
10474 Next (S);
10475 end loop;
10476
10477 -- In either case, the index constraint must provide a discrete
10478 -- range for each index of the array type and the type of each
10479 -- discrete range must be the same as that of the corresponding
10480 -- index. (RM 3.6.1)
10481
10482 if Number_Of_Constraints /= Number_Dimensions (T) then
10483 Error_Msg_NE ("incorrect number of index constraints for }", C, T);
10484 Constraint_OK := False;
10485
10486 else
10487 S := First (Constraints (C));
10488 Index := First_Index (T);
10489 Analyze (Index);
10490
10491 -- Apply constraints to each index type
10492
10493 for J in 1 .. Number_Of_Constraints loop
10494 Constrain_Index (Index, S, Related_Nod, Related_Id, Suffix, J);
10495 Next (Index);
10496 Next (S);
10497 end loop;
10498
10499 end if;
10500 end if;
10501
10502 if No (Def_Id) then
10503 Def_Id :=
10504 Create_Itype (E_Array_Subtype, Related_Nod, Related_Id, Suffix);
10505 Set_Parent (Def_Id, Related_Nod);
10506
10507 else
10508 Set_Ekind (Def_Id, E_Array_Subtype);
10509 end if;
10510
10511 Set_Size_Info (Def_Id, (T));
10512 Set_First_Rep_Item (Def_Id, First_Rep_Item (T));
10513 Set_Etype (Def_Id, Base_Type (T));
10514
10515 if Constraint_OK then
10516 Set_First_Index (Def_Id, First (Constraints (C)));
10517 else
10518 Set_First_Index (Def_Id, First_Index (T));
10519 end if;
10520
10521 Set_Is_Constrained (Def_Id, True);
10522 Set_Is_Aliased (Def_Id, Is_Aliased (T));
10523 Set_Depends_On_Private (Def_Id, Has_Private_Component (Def_Id));
10524
10525 Set_Is_Private_Composite (Def_Id, Is_Private_Composite (T));
10526 Set_Is_Limited_Composite (Def_Id, Is_Limited_Composite (T));
10527
10528 -- A subtype does not inherit the packed_array_type of is parent. We
10529 -- need to initialize the attribute because if Def_Id is previously
10530 -- analyzed through a limited_with clause, it will have the attributes
10531 -- of an incomplete type, one of which is an Elist that overlaps the
10532 -- Packed_Array_Type field.
10533
10534 Set_Packed_Array_Type (Def_Id, Empty);
10535
10536 -- Build a freeze node if parent still needs one. Also make sure that
10537 -- the Depends_On_Private status is set because the subtype will need
10538 -- reprocessing at the time the base type does, and also we must set a
10539 -- conditional delay.
10540
10541 Set_Depends_On_Private (Def_Id, Depends_On_Private (T));
10542 Conditional_Delay (Def_Id, T);
10543 end Constrain_Array;
10544
10545 ------------------------------
10546 -- Constrain_Component_Type --
10547 ------------------------------
10548
10549 function Constrain_Component_Type
10550 (Comp : Entity_Id;
10551 Constrained_Typ : Entity_Id;
10552 Related_Node : Node_Id;
10553 Typ : Entity_Id;
10554 Constraints : Elist_Id) return Entity_Id
10555 is
10556 Loc : constant Source_Ptr := Sloc (Constrained_Typ);
10557 Compon_Type : constant Entity_Id := Etype (Comp);
10558
10559 function Build_Constrained_Array_Type
10560 (Old_Type : Entity_Id) return Entity_Id;
10561 -- If Old_Type is an array type, one of whose indexes is constrained
10562 -- by a discriminant, build an Itype whose constraint replaces the
10563 -- discriminant with its value in the constraint.
10564
10565 function Build_Constrained_Discriminated_Type
10566 (Old_Type : Entity_Id) return Entity_Id;
10567 -- Ditto for record components
10568
10569 function Build_Constrained_Access_Type
10570 (Old_Type : Entity_Id) return Entity_Id;
10571 -- Ditto for access types. Makes use of previous two functions, to
10572 -- constrain designated type.
10573
10574 function Build_Subtype (T : Entity_Id; C : List_Id) return Entity_Id;
10575 -- T is an array or discriminated type, C is a list of constraints
10576 -- that apply to T. This routine builds the constrained subtype.
10577
10578 function Is_Discriminant (Expr : Node_Id) return Boolean;
10579 -- Returns True if Expr is a discriminant
10580
10581 function Get_Discr_Value (Discrim : Entity_Id) return Node_Id;
10582 -- Find the value of discriminant Discrim in Constraint
10583
10584 -----------------------------------
10585 -- Build_Constrained_Access_Type --
10586 -----------------------------------
10587
10588 function Build_Constrained_Access_Type
10589 (Old_Type : Entity_Id) return Entity_Id
10590 is
10591 Desig_Type : constant Entity_Id := Designated_Type (Old_Type);
10592 Itype : Entity_Id;
10593 Desig_Subtype : Entity_Id;
10594 Scop : Entity_Id;
10595
10596 begin
10597 -- if the original access type was not embedded in the enclosing
10598 -- type definition, there is no need to produce a new access
10599 -- subtype. In fact every access type with an explicit constraint
10600 -- generates an itype whose scope is the enclosing record.
10601
10602 if not Is_Type (Scope (Old_Type)) then
10603 return Old_Type;
10604
10605 elsif Is_Array_Type (Desig_Type) then
10606 Desig_Subtype := Build_Constrained_Array_Type (Desig_Type);
10607
10608 elsif Has_Discriminants (Desig_Type) then
10609
10610 -- This may be an access type to an enclosing record type for
10611 -- which we are constructing the constrained components. Return
10612 -- the enclosing record subtype. This is not always correct,
10613 -- but avoids infinite recursion. ???
10614
10615 Desig_Subtype := Any_Type;
10616
10617 for J in reverse 0 .. Scope_Stack.Last loop
10618 Scop := Scope_Stack.Table (J).Entity;
10619
10620 if Is_Type (Scop)
10621 and then Base_Type (Scop) = Base_Type (Desig_Type)
10622 then
10623 Desig_Subtype := Scop;
10624 end if;
10625
10626 exit when not Is_Type (Scop);
10627 end loop;
10628
10629 if Desig_Subtype = Any_Type then
10630 Desig_Subtype :=
10631 Build_Constrained_Discriminated_Type (Desig_Type);
10632 end if;
10633
10634 else
10635 return Old_Type;
10636 end if;
10637
10638 if Desig_Subtype /= Desig_Type then
10639
10640 -- The Related_Node better be here or else we won't be able
10641 -- to attach new itypes to a node in the tree.
10642
10643 pragma Assert (Present (Related_Node));
10644
10645 Itype := Create_Itype (E_Access_Subtype, Related_Node);
10646
10647 Set_Etype (Itype, Base_Type (Old_Type));
10648 Set_Size_Info (Itype, (Old_Type));
10649 Set_Directly_Designated_Type (Itype, Desig_Subtype);
10650 Set_Depends_On_Private (Itype, Has_Private_Component
10651 (Old_Type));
10652 Set_Is_Access_Constant (Itype, Is_Access_Constant
10653 (Old_Type));
10654
10655 -- The new itype needs freezing when it depends on a not frozen
10656 -- type and the enclosing subtype needs freezing.
10657
10658 if Has_Delayed_Freeze (Constrained_Typ)
10659 and then not Is_Frozen (Constrained_Typ)
10660 then
10661 Conditional_Delay (Itype, Base_Type (Old_Type));
10662 end if;
10663
10664 return Itype;
10665
10666 else
10667 return Old_Type;
10668 end if;
10669 end Build_Constrained_Access_Type;
10670
10671 ----------------------------------
10672 -- Build_Constrained_Array_Type --
10673 ----------------------------------
10674
10675 function Build_Constrained_Array_Type
10676 (Old_Type : Entity_Id) return Entity_Id
10677 is
10678 Lo_Expr : Node_Id;
10679 Hi_Expr : Node_Id;
10680 Old_Index : Node_Id;
10681 Range_Node : Node_Id;
10682 Constr_List : List_Id;
10683
10684 Need_To_Create_Itype : Boolean := False;
10685
10686 begin
10687 Old_Index := First_Index (Old_Type);
10688 while Present (Old_Index) loop
10689 Get_Index_Bounds (Old_Index, Lo_Expr, Hi_Expr);
10690
10691 if Is_Discriminant (Lo_Expr)
10692 or else Is_Discriminant (Hi_Expr)
10693 then
10694 Need_To_Create_Itype := True;
10695 end if;
10696
10697 Next_Index (Old_Index);
10698 end loop;
10699
10700 if Need_To_Create_Itype then
10701 Constr_List := New_List;
10702
10703 Old_Index := First_Index (Old_Type);
10704 while Present (Old_Index) loop
10705 Get_Index_Bounds (Old_Index, Lo_Expr, Hi_Expr);
10706
10707 if Is_Discriminant (Lo_Expr) then
10708 Lo_Expr := Get_Discr_Value (Lo_Expr);
10709 end if;
10710
10711 if Is_Discriminant (Hi_Expr) then
10712 Hi_Expr := Get_Discr_Value (Hi_Expr);
10713 end if;
10714
10715 Range_Node :=
10716 Make_Range
10717 (Loc, New_Copy_Tree (Lo_Expr), New_Copy_Tree (Hi_Expr));
10718
10719 Append (Range_Node, To => Constr_List);
10720
10721 Next_Index (Old_Index);
10722 end loop;
10723
10724 return Build_Subtype (Old_Type, Constr_List);
10725
10726 else
10727 return Old_Type;
10728 end if;
10729 end Build_Constrained_Array_Type;
10730
10731 ------------------------------------------
10732 -- Build_Constrained_Discriminated_Type --
10733 ------------------------------------------
10734
10735 function Build_Constrained_Discriminated_Type
10736 (Old_Type : Entity_Id) return Entity_Id
10737 is
10738 Expr : Node_Id;
10739 Constr_List : List_Id;
10740 Old_Constraint : Elmt_Id;
10741
10742 Need_To_Create_Itype : Boolean := False;
10743
10744 begin
10745 Old_Constraint := First_Elmt (Discriminant_Constraint (Old_Type));
10746 while Present (Old_Constraint) loop
10747 Expr := Node (Old_Constraint);
10748
10749 if Is_Discriminant (Expr) then
10750 Need_To_Create_Itype := True;
10751 end if;
10752
10753 Next_Elmt (Old_Constraint);
10754 end loop;
10755
10756 if Need_To_Create_Itype then
10757 Constr_List := New_List;
10758
10759 Old_Constraint := First_Elmt (Discriminant_Constraint (Old_Type));
10760 while Present (Old_Constraint) loop
10761 Expr := Node (Old_Constraint);
10762
10763 if Is_Discriminant (Expr) then
10764 Expr := Get_Discr_Value (Expr);
10765 end if;
10766
10767 Append (New_Copy_Tree (Expr), To => Constr_List);
10768
10769 Next_Elmt (Old_Constraint);
10770 end loop;
10771
10772 return Build_Subtype (Old_Type, Constr_List);
10773
10774 else
10775 return Old_Type;
10776 end if;
10777 end Build_Constrained_Discriminated_Type;
10778
10779 -------------------
10780 -- Build_Subtype --
10781 -------------------
10782
10783 function Build_Subtype (T : Entity_Id; C : List_Id) return Entity_Id is
10784 Indic : Node_Id;
10785 Subtyp_Decl : Node_Id;
10786 Def_Id : Entity_Id;
10787 Btyp : Entity_Id := Base_Type (T);
10788
10789 begin
10790 -- The Related_Node better be here or else we won't be able to
10791 -- attach new itypes to a node in the tree.
10792
10793 pragma Assert (Present (Related_Node));
10794
10795 -- If the view of the component's type is incomplete or private
10796 -- with unknown discriminants, then the constraint must be applied
10797 -- to the full type.
10798
10799 if Has_Unknown_Discriminants (Btyp)
10800 and then Present (Underlying_Type (Btyp))
10801 then
10802 Btyp := Underlying_Type (Btyp);
10803 end if;
10804
10805 Indic :=
10806 Make_Subtype_Indication (Loc,
10807 Subtype_Mark => New_Occurrence_Of (Btyp, Loc),
10808 Constraint => Make_Index_Or_Discriminant_Constraint (Loc, C));
10809
10810 Def_Id := Create_Itype (Ekind (T), Related_Node);
10811
10812 Subtyp_Decl :=
10813 Make_Subtype_Declaration (Loc,
10814 Defining_Identifier => Def_Id,
10815 Subtype_Indication => Indic);
10816
10817 Set_Parent (Subtyp_Decl, Parent (Related_Node));
10818
10819 -- Itypes must be analyzed with checks off (see package Itypes)
10820
10821 Analyze (Subtyp_Decl, Suppress => All_Checks);
10822
10823 return Def_Id;
10824 end Build_Subtype;
10825
10826 ---------------------
10827 -- Get_Discr_Value --
10828 ---------------------
10829
10830 function Get_Discr_Value (Discrim : Entity_Id) return Node_Id is
10831 D : Entity_Id;
10832 E : Elmt_Id;
10833
10834 begin
10835 -- The discriminant may be declared for the type, in which case we
10836 -- find it by iterating over the list of discriminants. If the
10837 -- discriminant is inherited from a parent type, it appears as the
10838 -- corresponding discriminant of the current type. This will be the
10839 -- case when constraining an inherited component whose constraint is
10840 -- given by a discriminant of the parent.
10841
10842 D := First_Discriminant (Typ);
10843 E := First_Elmt (Constraints);
10844
10845 while Present (D) loop
10846 if D = Entity (Discrim)
10847 or else D = CR_Discriminant (Entity (Discrim))
10848 or else Corresponding_Discriminant (D) = Entity (Discrim)
10849 then
10850 return Node (E);
10851 end if;
10852
10853 Next_Discriminant (D);
10854 Next_Elmt (E);
10855 end loop;
10856
10857 -- The Corresponding_Discriminant mechanism is incomplete, because
10858 -- the correspondence between new and old discriminants is not one
10859 -- to one: one new discriminant can constrain several old ones. In
10860 -- that case, scan sequentially the stored_constraint, the list of
10861 -- discriminants of the parents, and the constraints.
10862 -- Previous code checked for the present of the Stored_Constraint
10863 -- list for the derived type, but did not use it at all. Should it
10864 -- be present when the component is a discriminated task type?
10865
10866 if Is_Derived_Type (Typ)
10867 and then Scope (Entity (Discrim)) = Etype (Typ)
10868 then
10869 D := First_Discriminant (Etype (Typ));
10870 E := First_Elmt (Constraints);
10871 while Present (D) loop
10872 if D = Entity (Discrim) then
10873 return Node (E);
10874 end if;
10875
10876 Next_Discriminant (D);
10877 Next_Elmt (E);
10878 end loop;
10879 end if;
10880
10881 -- Something is wrong if we did not find the value
10882
10883 raise Program_Error;
10884 end Get_Discr_Value;
10885
10886 ---------------------
10887 -- Is_Discriminant --
10888 ---------------------
10889
10890 function Is_Discriminant (Expr : Node_Id) return Boolean is
10891 Discrim_Scope : Entity_Id;
10892
10893 begin
10894 if Denotes_Discriminant (Expr) then
10895 Discrim_Scope := Scope (Entity (Expr));
10896
10897 -- Either we have a reference to one of Typ's discriminants,
10898
10899 pragma Assert (Discrim_Scope = Typ
10900
10901 -- or to the discriminants of the parent type, in the case
10902 -- of a derivation of a tagged type with variants.
10903
10904 or else Discrim_Scope = Etype (Typ)
10905 or else Full_View (Discrim_Scope) = Etype (Typ)
10906
10907 -- or same as above for the case where the discriminants
10908 -- were declared in Typ's private view.
10909
10910 or else (Is_Private_Type (Discrim_Scope)
10911 and then Chars (Discrim_Scope) = Chars (Typ))
10912
10913 -- or else we are deriving from the full view and the
10914 -- discriminant is declared in the private entity.
10915
10916 or else (Is_Private_Type (Typ)
10917 and then Chars (Discrim_Scope) = Chars (Typ))
10918
10919 -- Or we are constrained the corresponding record of a
10920 -- synchronized type that completes a private declaration.
10921
10922 or else (Is_Concurrent_Record_Type (Typ)
10923 and then
10924 Corresponding_Concurrent_Type (Typ) = Discrim_Scope)
10925
10926 -- or we have a class-wide type, in which case make sure the
10927 -- discriminant found belongs to the root type.
10928
10929 or else (Is_Class_Wide_Type (Typ)
10930 and then Etype (Typ) = Discrim_Scope));
10931
10932 return True;
10933 end if;
10934
10935 -- In all other cases we have something wrong
10936
10937 return False;
10938 end Is_Discriminant;
10939
10940 -- Start of processing for Constrain_Component_Type
10941
10942 begin
10943 if Nkind (Parent (Comp)) = N_Component_Declaration
10944 and then Comes_From_Source (Parent (Comp))
10945 and then Comes_From_Source
10946 (Subtype_Indication (Component_Definition (Parent (Comp))))
10947 and then
10948 Is_Entity_Name
10949 (Subtype_Indication (Component_Definition (Parent (Comp))))
10950 then
10951 return Compon_Type;
10952
10953 elsif Is_Array_Type (Compon_Type) then
10954 return Build_Constrained_Array_Type (Compon_Type);
10955
10956 elsif Has_Discriminants (Compon_Type) then
10957 return Build_Constrained_Discriminated_Type (Compon_Type);
10958
10959 elsif Is_Access_Type (Compon_Type) then
10960 return Build_Constrained_Access_Type (Compon_Type);
10961
10962 else
10963 return Compon_Type;
10964 end if;
10965 end Constrain_Component_Type;
10966
10967 --------------------------
10968 -- Constrain_Concurrent --
10969 --------------------------
10970
10971 -- For concurrent types, the associated record value type carries the same
10972 -- discriminants, so when we constrain a concurrent type, we must constrain
10973 -- the corresponding record type as well.
10974
10975 procedure Constrain_Concurrent
10976 (Def_Id : in out Entity_Id;
10977 SI : Node_Id;
10978 Related_Nod : Node_Id;
10979 Related_Id : Entity_Id;
10980 Suffix : Character)
10981 is
10982 T_Ent : Entity_Id := Entity (Subtype_Mark (SI));
10983 T_Val : Entity_Id;
10984
10985 begin
10986 if Ekind (T_Ent) in Access_Kind then
10987 T_Ent := Designated_Type (T_Ent);
10988 end if;
10989
10990 T_Val := Corresponding_Record_Type (T_Ent);
10991
10992 if Present (T_Val) then
10993
10994 if No (Def_Id) then
10995 Def_Id := Create_Itype (E_Void, Related_Nod, Related_Id, Suffix);
10996 end if;
10997
10998 Constrain_Discriminated_Type (Def_Id, SI, Related_Nod);
10999
11000 Set_Depends_On_Private (Def_Id, Has_Private_Component (Def_Id));
11001 Set_Corresponding_Record_Type (Def_Id,
11002 Constrain_Corresponding_Record
11003 (Def_Id, T_Val, Related_Nod, Related_Id));
11004
11005 else
11006 -- If there is no associated record, expansion is disabled and this
11007 -- is a generic context. Create a subtype in any case, so that
11008 -- semantic analysis can proceed.
11009
11010 if No (Def_Id) then
11011 Def_Id := Create_Itype (E_Void, Related_Nod, Related_Id, Suffix);
11012 end if;
11013
11014 Constrain_Discriminated_Type (Def_Id, SI, Related_Nod);
11015 end if;
11016 end Constrain_Concurrent;
11017
11018 ------------------------------------
11019 -- Constrain_Corresponding_Record --
11020 ------------------------------------
11021
11022 function Constrain_Corresponding_Record
11023 (Prot_Subt : Entity_Id;
11024 Corr_Rec : Entity_Id;
11025 Related_Nod : Node_Id;
11026 Related_Id : Entity_Id) return Entity_Id
11027 is
11028 T_Sub : constant Entity_Id :=
11029 Create_Itype (E_Record_Subtype, Related_Nod, Related_Id, 'V');
11030
11031 begin
11032 Set_Etype (T_Sub, Corr_Rec);
11033 Set_Has_Discriminants (T_Sub, Has_Discriminants (Prot_Subt));
11034 Set_Is_Constrained (T_Sub, True);
11035 Set_First_Entity (T_Sub, First_Entity (Corr_Rec));
11036 Set_Last_Entity (T_Sub, Last_Entity (Corr_Rec));
11037
11038 -- As elsewhere, we do not want to create a freeze node for this itype
11039 -- if it is created for a constrained component of an enclosing record
11040 -- because references to outer discriminants will appear out of scope.
11041
11042 if Ekind (Scope (Prot_Subt)) /= E_Record_Type then
11043 Conditional_Delay (T_Sub, Corr_Rec);
11044 else
11045 Set_Is_Frozen (T_Sub);
11046 end if;
11047
11048 if Has_Discriminants (Prot_Subt) then -- False only if errors.
11049 Set_Discriminant_Constraint
11050 (T_Sub, Discriminant_Constraint (Prot_Subt));
11051 Set_Stored_Constraint_From_Discriminant_Constraint (T_Sub);
11052 Create_Constrained_Components
11053 (T_Sub, Related_Nod, Corr_Rec, Discriminant_Constraint (T_Sub));
11054 end if;
11055
11056 Set_Depends_On_Private (T_Sub, Has_Private_Component (T_Sub));
11057
11058 return T_Sub;
11059 end Constrain_Corresponding_Record;
11060
11061 -----------------------
11062 -- Constrain_Decimal --
11063 -----------------------
11064
11065 procedure Constrain_Decimal (Def_Id : Node_Id; S : Node_Id) is
11066 T : constant Entity_Id := Entity (Subtype_Mark (S));
11067 C : constant Node_Id := Constraint (S);
11068 Loc : constant Source_Ptr := Sloc (C);
11069 Range_Expr : Node_Id;
11070 Digits_Expr : Node_Id;
11071 Digits_Val : Uint;
11072 Bound_Val : Ureal;
11073
11074 begin
11075 Set_Ekind (Def_Id, E_Decimal_Fixed_Point_Subtype);
11076
11077 if Nkind (C) = N_Range_Constraint then
11078 Range_Expr := Range_Expression (C);
11079 Digits_Val := Digits_Value (T);
11080
11081 else
11082 pragma Assert (Nkind (C) = N_Digits_Constraint);
11083 Digits_Expr := Digits_Expression (C);
11084 Analyze_And_Resolve (Digits_Expr, Any_Integer);
11085
11086 Check_Digits_Expression (Digits_Expr);
11087 Digits_Val := Expr_Value (Digits_Expr);
11088
11089 if Digits_Val > Digits_Value (T) then
11090 Error_Msg_N
11091 ("digits expression is incompatible with subtype", C);
11092 Digits_Val := Digits_Value (T);
11093 end if;
11094
11095 if Present (Range_Constraint (C)) then
11096 Range_Expr := Range_Expression (Range_Constraint (C));
11097 else
11098 Range_Expr := Empty;
11099 end if;
11100 end if;
11101
11102 Set_Etype (Def_Id, Base_Type (T));
11103 Set_Size_Info (Def_Id, (T));
11104 Set_First_Rep_Item (Def_Id, First_Rep_Item (T));
11105 Set_Delta_Value (Def_Id, Delta_Value (T));
11106 Set_Scale_Value (Def_Id, Scale_Value (T));
11107 Set_Small_Value (Def_Id, Small_Value (T));
11108 Set_Machine_Radix_10 (Def_Id, Machine_Radix_10 (T));
11109 Set_Digits_Value (Def_Id, Digits_Val);
11110
11111 -- Manufacture range from given digits value if no range present
11112
11113 if No (Range_Expr) then
11114 Bound_Val := (Ureal_10 ** Digits_Val - Ureal_1) * Small_Value (T);
11115 Range_Expr :=
11116 Make_Range (Loc,
11117 Low_Bound =>
11118 Convert_To (T, Make_Real_Literal (Loc, (-Bound_Val))),
11119 High_Bound =>
11120 Convert_To (T, Make_Real_Literal (Loc, Bound_Val)));
11121 end if;
11122
11123 Set_Scalar_Range_For_Subtype (Def_Id, Range_Expr, T);
11124 Set_Discrete_RM_Size (Def_Id);
11125
11126 -- Unconditionally delay the freeze, since we cannot set size
11127 -- information in all cases correctly until the freeze point.
11128
11129 Set_Has_Delayed_Freeze (Def_Id);
11130 end Constrain_Decimal;
11131
11132 ----------------------------------
11133 -- Constrain_Discriminated_Type --
11134 ----------------------------------
11135
11136 procedure Constrain_Discriminated_Type
11137 (Def_Id : Entity_Id;
11138 S : Node_Id;
11139 Related_Nod : Node_Id;
11140 For_Access : Boolean := False)
11141 is
11142 E : constant Entity_Id := Entity (Subtype_Mark (S));
11143 T : Entity_Id;
11144 C : Node_Id;
11145 Elist : Elist_Id := New_Elmt_List;
11146
11147 procedure Fixup_Bad_Constraint;
11148 -- This is called after finding a bad constraint, and after having
11149 -- posted an appropriate error message. The mission is to leave the
11150 -- entity T in as reasonable state as possible!
11151
11152 --------------------------
11153 -- Fixup_Bad_Constraint --
11154 --------------------------
11155
11156 procedure Fixup_Bad_Constraint is
11157 begin
11158 -- Set a reasonable Ekind for the entity. For an incomplete type,
11159 -- we can't do much, but for other types, we can set the proper
11160 -- corresponding subtype kind.
11161
11162 if Ekind (T) = E_Incomplete_Type then
11163 Set_Ekind (Def_Id, Ekind (T));
11164 else
11165 Set_Ekind (Def_Id, Subtype_Kind (Ekind (T)));
11166 end if;
11167
11168 -- Set Etype to the known type, to reduce chances of cascaded errors
11169
11170 Set_Etype (Def_Id, E);
11171 Set_Error_Posted (Def_Id);
11172 end Fixup_Bad_Constraint;
11173
11174 -- Start of processing for Constrain_Discriminated_Type
11175
11176 begin
11177 C := Constraint (S);
11178
11179 -- A discriminant constraint is only allowed in a subtype indication,
11180 -- after a subtype mark. This subtype mark must denote either a type
11181 -- with discriminants, or an access type whose designated type is a
11182 -- type with discriminants. A discriminant constraint specifies the
11183 -- values of these discriminants (RM 3.7.2(5)).
11184
11185 T := Base_Type (Entity (Subtype_Mark (S)));
11186
11187 if Ekind (T) in Access_Kind then
11188 T := Designated_Type (T);
11189 end if;
11190
11191 -- Ada 2005 (AI-412): Constrained incomplete subtypes are illegal.
11192 -- Avoid generating an error for access-to-incomplete subtypes.
11193
11194 if Ada_Version >= Ada_2005
11195 and then Ekind (T) = E_Incomplete_Type
11196 and then Nkind (Parent (S)) = N_Subtype_Declaration
11197 and then not Is_Itype (Def_Id)
11198 then
11199 -- A little sanity check, emit an error message if the type
11200 -- has discriminants to begin with. Type T may be a regular
11201 -- incomplete type or imported via a limited with clause.
11202
11203 if Has_Discriminants (T)
11204 or else
11205 (From_With_Type (T)
11206 and then Present (Non_Limited_View (T))
11207 and then Nkind (Parent (Non_Limited_View (T))) =
11208 N_Full_Type_Declaration
11209 and then Present (Discriminant_Specifications
11210 (Parent (Non_Limited_View (T)))))
11211 then
11212 Error_Msg_N
11213 ("(Ada 2005) incomplete subtype may not be constrained", C);
11214 else
11215 Error_Msg_N ("invalid constraint: type has no discriminant", C);
11216 end if;
11217
11218 Fixup_Bad_Constraint;
11219 return;
11220
11221 -- Check that the type has visible discriminants. The type may be
11222 -- a private type with unknown discriminants whose full view has
11223 -- discriminants which are invisible.
11224
11225 elsif not Has_Discriminants (T)
11226 or else
11227 (Has_Unknown_Discriminants (T)
11228 and then Is_Private_Type (T))
11229 then
11230 Error_Msg_N ("invalid constraint: type has no discriminant", C);
11231 Fixup_Bad_Constraint;
11232 return;
11233
11234 elsif Is_Constrained (E)
11235 or else (Ekind (E) = E_Class_Wide_Subtype
11236 and then Present (Discriminant_Constraint (E)))
11237 then
11238 Error_Msg_N ("type is already constrained", Subtype_Mark (S));
11239 Fixup_Bad_Constraint;
11240 return;
11241 end if;
11242
11243 -- T may be an unconstrained subtype (e.g. a generic actual).
11244 -- Constraint applies to the base type.
11245
11246 T := Base_Type (T);
11247
11248 Elist := Build_Discriminant_Constraints (T, S);
11249
11250 -- If the list returned was empty we had an error in building the
11251 -- discriminant constraint. We have also already signalled an error
11252 -- in the incomplete type case
11253
11254 if Is_Empty_Elmt_List (Elist) then
11255 Fixup_Bad_Constraint;
11256 return;
11257 end if;
11258
11259 Build_Discriminated_Subtype (T, Def_Id, Elist, Related_Nod, For_Access);
11260 end Constrain_Discriminated_Type;
11261
11262 ---------------------------
11263 -- Constrain_Enumeration --
11264 ---------------------------
11265
11266 procedure Constrain_Enumeration (Def_Id : Node_Id; S : Node_Id) is
11267 T : constant Entity_Id := Entity (Subtype_Mark (S));
11268 C : constant Node_Id := Constraint (S);
11269
11270 begin
11271 Set_Ekind (Def_Id, E_Enumeration_Subtype);
11272
11273 Set_First_Literal (Def_Id, First_Literal (Base_Type (T)));
11274
11275 Set_Etype (Def_Id, Base_Type (T));
11276 Set_Size_Info (Def_Id, (T));
11277 Set_First_Rep_Item (Def_Id, First_Rep_Item (T));
11278 Set_Is_Character_Type (Def_Id, Is_Character_Type (T));
11279
11280 Set_Scalar_Range_For_Subtype (Def_Id, Range_Expression (C), T);
11281
11282 Set_Discrete_RM_Size (Def_Id);
11283 end Constrain_Enumeration;
11284
11285 ----------------------
11286 -- Constrain_Float --
11287 ----------------------
11288
11289 procedure Constrain_Float (Def_Id : Node_Id; S : Node_Id) is
11290 T : constant Entity_Id := Entity (Subtype_Mark (S));
11291 C : Node_Id;
11292 D : Node_Id;
11293 Rais : Node_Id;
11294
11295 begin
11296 Set_Ekind (Def_Id, E_Floating_Point_Subtype);
11297
11298 Set_Etype (Def_Id, Base_Type (T));
11299 Set_Size_Info (Def_Id, (T));
11300 Set_First_Rep_Item (Def_Id, First_Rep_Item (T));
11301
11302 -- Process the constraint
11303
11304 C := Constraint (S);
11305
11306 -- Digits constraint present
11307
11308 if Nkind (C) = N_Digits_Constraint then
11309 Check_Restriction (No_Obsolescent_Features, C);
11310
11311 if Warn_On_Obsolescent_Feature then
11312 Error_Msg_N
11313 ("subtype digits constraint is an " &
11314 "obsolescent feature (RM J.3(8))?", C);
11315 end if;
11316
11317 D := Digits_Expression (C);
11318 Analyze_And_Resolve (D, Any_Integer);
11319 Check_Digits_Expression (D);
11320 Set_Digits_Value (Def_Id, Expr_Value (D));
11321
11322 -- Check that digits value is in range. Obviously we can do this
11323 -- at compile time, but it is strictly a runtime check, and of
11324 -- course there is an ACVC test that checks this!
11325
11326 if Digits_Value (Def_Id) > Digits_Value (T) then
11327 Error_Msg_Uint_1 := Digits_Value (T);
11328 Error_Msg_N ("?digits value is too large, maximum is ^", D);
11329 Rais :=
11330 Make_Raise_Constraint_Error (Sloc (D),
11331 Reason => CE_Range_Check_Failed);
11332 Insert_Action (Declaration_Node (Def_Id), Rais);
11333 end if;
11334
11335 C := Range_Constraint (C);
11336
11337 -- No digits constraint present
11338
11339 else
11340 Set_Digits_Value (Def_Id, Digits_Value (T));
11341 end if;
11342
11343 -- Range constraint present
11344
11345 if Nkind (C) = N_Range_Constraint then
11346 Set_Scalar_Range_For_Subtype (Def_Id, Range_Expression (C), T);
11347
11348 -- No range constraint present
11349
11350 else
11351 pragma Assert (No (C));
11352 Set_Scalar_Range (Def_Id, Scalar_Range (T));
11353 end if;
11354
11355 Set_Is_Constrained (Def_Id);
11356 end Constrain_Float;
11357
11358 ---------------------
11359 -- Constrain_Index --
11360 ---------------------
11361
11362 procedure Constrain_Index
11363 (Index : Node_Id;
11364 S : Node_Id;
11365 Related_Nod : Node_Id;
11366 Related_Id : Entity_Id;
11367 Suffix : Character;
11368 Suffix_Index : Nat)
11369 is
11370 Def_Id : Entity_Id;
11371 R : Node_Id := Empty;
11372 T : constant Entity_Id := Etype (Index);
11373
11374 begin
11375 if Nkind (S) = N_Range
11376 or else
11377 (Nkind (S) = N_Attribute_Reference
11378 and then Attribute_Name (S) = Name_Range)
11379 then
11380 -- A Range attribute will transformed into N_Range by Resolve
11381
11382 Analyze (S);
11383 Set_Etype (S, T);
11384 R := S;
11385
11386 Process_Range_Expr_In_Decl (R, T, Empty_List);
11387
11388 if not Error_Posted (S)
11389 and then
11390 (Nkind (S) /= N_Range
11391 or else not Covers (T, (Etype (Low_Bound (S))))
11392 or else not Covers (T, (Etype (High_Bound (S)))))
11393 then
11394 if Base_Type (T) /= Any_Type
11395 and then Etype (Low_Bound (S)) /= Any_Type
11396 and then Etype (High_Bound (S)) /= Any_Type
11397 then
11398 Error_Msg_N ("range expected", S);
11399 end if;
11400 end if;
11401
11402 elsif Nkind (S) = N_Subtype_Indication then
11403
11404 -- The parser has verified that this is a discrete indication
11405
11406 Resolve_Discrete_Subtype_Indication (S, T);
11407 R := Range_Expression (Constraint (S));
11408
11409 elsif Nkind (S) = N_Discriminant_Association then
11410
11411 -- Syntactically valid in subtype indication
11412
11413 Error_Msg_N ("invalid index constraint", S);
11414 Rewrite (S, New_Occurrence_Of (T, Sloc (S)));
11415 return;
11416
11417 -- Subtype_Mark case, no anonymous subtypes to construct
11418
11419 else
11420 Analyze (S);
11421
11422 if Is_Entity_Name (S) then
11423 if not Is_Type (Entity (S)) then
11424 Error_Msg_N ("expect subtype mark for index constraint", S);
11425
11426 elsif Base_Type (Entity (S)) /= Base_Type (T) then
11427 Wrong_Type (S, Base_Type (T));
11428
11429 -- Check error of subtype with predicate in index constraint
11430
11431 else
11432 Bad_Predicated_Subtype_Use
11433 ("subtype& has predicate, not allowed in index constraint",
11434 S, Entity (S));
11435 end if;
11436
11437 return;
11438
11439 else
11440 Error_Msg_N ("invalid index constraint", S);
11441 Rewrite (S, New_Occurrence_Of (T, Sloc (S)));
11442 return;
11443 end if;
11444 end if;
11445
11446 Def_Id :=
11447 Create_Itype (E_Void, Related_Nod, Related_Id, Suffix, Suffix_Index);
11448
11449 Set_Etype (Def_Id, Base_Type (T));
11450
11451 if Is_Modular_Integer_Type (T) then
11452 Set_Ekind (Def_Id, E_Modular_Integer_Subtype);
11453
11454 elsif Is_Integer_Type (T) then
11455 Set_Ekind (Def_Id, E_Signed_Integer_Subtype);
11456
11457 else
11458 Set_Ekind (Def_Id, E_Enumeration_Subtype);
11459 Set_Is_Character_Type (Def_Id, Is_Character_Type (T));
11460 Set_First_Literal (Def_Id, First_Literal (T));
11461 end if;
11462
11463 Set_Size_Info (Def_Id, (T));
11464 Set_RM_Size (Def_Id, RM_Size (T));
11465 Set_First_Rep_Item (Def_Id, First_Rep_Item (T));
11466
11467 Set_Scalar_Range (Def_Id, R);
11468
11469 Set_Etype (S, Def_Id);
11470 Set_Discrete_RM_Size (Def_Id);
11471 end Constrain_Index;
11472
11473 -----------------------
11474 -- Constrain_Integer --
11475 -----------------------
11476
11477 procedure Constrain_Integer (Def_Id : Node_Id; S : Node_Id) is
11478 T : constant Entity_Id := Entity (Subtype_Mark (S));
11479 C : constant Node_Id := Constraint (S);
11480
11481 begin
11482 Set_Scalar_Range_For_Subtype (Def_Id, Range_Expression (C), T);
11483
11484 if Is_Modular_Integer_Type (T) then
11485 Set_Ekind (Def_Id, E_Modular_Integer_Subtype);
11486 else
11487 Set_Ekind (Def_Id, E_Signed_Integer_Subtype);
11488 end if;
11489
11490 Set_Etype (Def_Id, Base_Type (T));
11491 Set_Size_Info (Def_Id, (T));
11492 Set_First_Rep_Item (Def_Id, First_Rep_Item (T));
11493 Set_Discrete_RM_Size (Def_Id);
11494 end Constrain_Integer;
11495
11496 ------------------------------
11497 -- Constrain_Ordinary_Fixed --
11498 ------------------------------
11499
11500 procedure Constrain_Ordinary_Fixed (Def_Id : Node_Id; S : Node_Id) is
11501 T : constant Entity_Id := Entity (Subtype_Mark (S));
11502 C : Node_Id;
11503 D : Node_Id;
11504 Rais : Node_Id;
11505
11506 begin
11507 Set_Ekind (Def_Id, E_Ordinary_Fixed_Point_Subtype);
11508 Set_Etype (Def_Id, Base_Type (T));
11509 Set_Size_Info (Def_Id, (T));
11510 Set_First_Rep_Item (Def_Id, First_Rep_Item (T));
11511 Set_Small_Value (Def_Id, Small_Value (T));
11512
11513 -- Process the constraint
11514
11515 C := Constraint (S);
11516
11517 -- Delta constraint present
11518
11519 if Nkind (C) = N_Delta_Constraint then
11520 Check_Restriction (No_Obsolescent_Features, C);
11521
11522 if Warn_On_Obsolescent_Feature then
11523 Error_Msg_S
11524 ("subtype delta constraint is an " &
11525 "obsolescent feature (RM J.3(7))?");
11526 end if;
11527
11528 D := Delta_Expression (C);
11529 Analyze_And_Resolve (D, Any_Real);
11530 Check_Delta_Expression (D);
11531 Set_Delta_Value (Def_Id, Expr_Value_R (D));
11532
11533 -- Check that delta value is in range. Obviously we can do this
11534 -- at compile time, but it is strictly a runtime check, and of
11535 -- course there is an ACVC test that checks this!
11536
11537 if Delta_Value (Def_Id) < Delta_Value (T) then
11538 Error_Msg_N ("?delta value is too small", D);
11539 Rais :=
11540 Make_Raise_Constraint_Error (Sloc (D),
11541 Reason => CE_Range_Check_Failed);
11542 Insert_Action (Declaration_Node (Def_Id), Rais);
11543 end if;
11544
11545 C := Range_Constraint (C);
11546
11547 -- No delta constraint present
11548
11549 else
11550 Set_Delta_Value (Def_Id, Delta_Value (T));
11551 end if;
11552
11553 -- Range constraint present
11554
11555 if Nkind (C) = N_Range_Constraint then
11556 Set_Scalar_Range_For_Subtype (Def_Id, Range_Expression (C), T);
11557
11558 -- No range constraint present
11559
11560 else
11561 pragma Assert (No (C));
11562 Set_Scalar_Range (Def_Id, Scalar_Range (T));
11563
11564 end if;
11565
11566 Set_Discrete_RM_Size (Def_Id);
11567
11568 -- Unconditionally delay the freeze, since we cannot set size
11569 -- information in all cases correctly until the freeze point.
11570
11571 Set_Has_Delayed_Freeze (Def_Id);
11572 end Constrain_Ordinary_Fixed;
11573
11574 -----------------------
11575 -- Contain_Interface --
11576 -----------------------
11577
11578 function Contain_Interface
11579 (Iface : Entity_Id;
11580 Ifaces : Elist_Id) return Boolean
11581 is
11582 Iface_Elmt : Elmt_Id;
11583
11584 begin
11585 if Present (Ifaces) then
11586 Iface_Elmt := First_Elmt (Ifaces);
11587 while Present (Iface_Elmt) loop
11588 if Node (Iface_Elmt) = Iface then
11589 return True;
11590 end if;
11591
11592 Next_Elmt (Iface_Elmt);
11593 end loop;
11594 end if;
11595
11596 return False;
11597 end Contain_Interface;
11598
11599 ---------------------------
11600 -- Convert_Scalar_Bounds --
11601 ---------------------------
11602
11603 procedure Convert_Scalar_Bounds
11604 (N : Node_Id;
11605 Parent_Type : Entity_Id;
11606 Derived_Type : Entity_Id;
11607 Loc : Source_Ptr)
11608 is
11609 Implicit_Base : constant Entity_Id := Base_Type (Derived_Type);
11610
11611 Lo : Node_Id;
11612 Hi : Node_Id;
11613 Rng : Node_Id;
11614
11615 begin
11616 -- Defend against previous errors
11617
11618 if No (Scalar_Range (Derived_Type)) then
11619 return;
11620 end if;
11621
11622 Lo := Build_Scalar_Bound
11623 (Type_Low_Bound (Derived_Type),
11624 Parent_Type, Implicit_Base);
11625
11626 Hi := Build_Scalar_Bound
11627 (Type_High_Bound (Derived_Type),
11628 Parent_Type, Implicit_Base);
11629
11630 Rng :=
11631 Make_Range (Loc,
11632 Low_Bound => Lo,
11633 High_Bound => Hi);
11634
11635 Set_Includes_Infinities (Rng, Has_Infinities (Derived_Type));
11636
11637 Set_Parent (Rng, N);
11638 Set_Scalar_Range (Derived_Type, Rng);
11639
11640 -- Analyze the bounds
11641
11642 Analyze_And_Resolve (Lo, Implicit_Base);
11643 Analyze_And_Resolve (Hi, Implicit_Base);
11644
11645 -- Analyze the range itself, except that we do not analyze it if
11646 -- the bounds are real literals, and we have a fixed-point type.
11647 -- The reason for this is that we delay setting the bounds in this
11648 -- case till we know the final Small and Size values (see circuit
11649 -- in Freeze.Freeze_Fixed_Point_Type for further details).
11650
11651 if Is_Fixed_Point_Type (Parent_Type)
11652 and then Nkind (Lo) = N_Real_Literal
11653 and then Nkind (Hi) = N_Real_Literal
11654 then
11655 return;
11656
11657 -- Here we do the analysis of the range
11658
11659 -- Note: we do this manually, since if we do a normal Analyze and
11660 -- Resolve call, there are problems with the conversions used for
11661 -- the derived type range.
11662
11663 else
11664 Set_Etype (Rng, Implicit_Base);
11665 Set_Analyzed (Rng, True);
11666 end if;
11667 end Convert_Scalar_Bounds;
11668
11669 -------------------
11670 -- Copy_And_Swap --
11671 -------------------
11672
11673 procedure Copy_And_Swap (Priv, Full : Entity_Id) is
11674 begin
11675 -- Initialize new full declaration entity by copying the pertinent
11676 -- fields of the corresponding private declaration entity.
11677
11678 -- We temporarily set Ekind to a value appropriate for a type to
11679 -- avoid assert failures in Einfo from checking for setting type
11680 -- attributes on something that is not a type. Ekind (Priv) is an
11681 -- appropriate choice, since it allowed the attributes to be set
11682 -- in the first place. This Ekind value will be modified later.
11683
11684 Set_Ekind (Full, Ekind (Priv));
11685
11686 -- Also set Etype temporarily to Any_Type, again, in the absence
11687 -- of errors, it will be properly reset, and if there are errors,
11688 -- then we want a value of Any_Type to remain.
11689
11690 Set_Etype (Full, Any_Type);
11691
11692 -- Now start copying attributes
11693
11694 Set_Has_Discriminants (Full, Has_Discriminants (Priv));
11695
11696 if Has_Discriminants (Full) then
11697 Set_Discriminant_Constraint (Full, Discriminant_Constraint (Priv));
11698 Set_Stored_Constraint (Full, Stored_Constraint (Priv));
11699 end if;
11700
11701 Set_First_Rep_Item (Full, First_Rep_Item (Priv));
11702 Set_Homonym (Full, Homonym (Priv));
11703 Set_Is_Immediately_Visible (Full, Is_Immediately_Visible (Priv));
11704 Set_Is_Public (Full, Is_Public (Priv));
11705 Set_Is_Pure (Full, Is_Pure (Priv));
11706 Set_Is_Tagged_Type (Full, Is_Tagged_Type (Priv));
11707 Set_Has_Pragma_Unmodified (Full, Has_Pragma_Unmodified (Priv));
11708 Set_Has_Pragma_Unreferenced (Full, Has_Pragma_Unreferenced (Priv));
11709 Set_Has_Pragma_Unreferenced_Objects
11710 (Full, Has_Pragma_Unreferenced_Objects
11711 (Priv));
11712
11713 Conditional_Delay (Full, Priv);
11714
11715 if Is_Tagged_Type (Full) then
11716 Set_Direct_Primitive_Operations (Full,
11717 Direct_Primitive_Operations (Priv));
11718
11719 if Priv = Base_Type (Priv) then
11720 Set_Class_Wide_Type (Full, Class_Wide_Type (Priv));
11721 end if;
11722 end if;
11723
11724 Set_Is_Volatile (Full, Is_Volatile (Priv));
11725 Set_Treat_As_Volatile (Full, Treat_As_Volatile (Priv));
11726 Set_Scope (Full, Scope (Priv));
11727 Set_Next_Entity (Full, Next_Entity (Priv));
11728 Set_First_Entity (Full, First_Entity (Priv));
11729 Set_Last_Entity (Full, Last_Entity (Priv));
11730
11731 -- If access types have been recorded for later handling, keep them in
11732 -- the full view so that they get handled when the full view freeze
11733 -- node is expanded.
11734
11735 if Present (Freeze_Node (Priv))
11736 and then Present (Access_Types_To_Process (Freeze_Node (Priv)))
11737 then
11738 Ensure_Freeze_Node (Full);
11739 Set_Access_Types_To_Process
11740 (Freeze_Node (Full),
11741 Access_Types_To_Process (Freeze_Node (Priv)));
11742 end if;
11743
11744 -- Swap the two entities. Now Privat is the full type entity and Full is
11745 -- the private one. They will be swapped back at the end of the private
11746 -- part. This swapping ensures that the entity that is visible in the
11747 -- private part is the full declaration.
11748
11749 Exchange_Entities (Priv, Full);
11750 Append_Entity (Full, Scope (Full));
11751 end Copy_And_Swap;
11752
11753 -------------------------------------
11754 -- Copy_Array_Base_Type_Attributes --
11755 -------------------------------------
11756
11757 procedure Copy_Array_Base_Type_Attributes (T1, T2 : Entity_Id) is
11758 begin
11759 Set_Component_Alignment (T1, Component_Alignment (T2));
11760 Set_Component_Type (T1, Component_Type (T2));
11761 Set_Component_Size (T1, Component_Size (T2));
11762 Set_Has_Controlled_Component (T1, Has_Controlled_Component (T2));
11763 Set_Finalize_Storage_Only (T1, Finalize_Storage_Only (T2));
11764 Set_Has_Non_Standard_Rep (T1, Has_Non_Standard_Rep (T2));
11765 Set_Has_Task (T1, Has_Task (T2));
11766 Set_Is_Packed (T1, Is_Packed (T2));
11767 Set_Has_Aliased_Components (T1, Has_Aliased_Components (T2));
11768 Set_Has_Atomic_Components (T1, Has_Atomic_Components (T2));
11769 Set_Has_Volatile_Components (T1, Has_Volatile_Components (T2));
11770 end Copy_Array_Base_Type_Attributes;
11771
11772 -----------------------------------
11773 -- Copy_Array_Subtype_Attributes --
11774 -----------------------------------
11775
11776 procedure Copy_Array_Subtype_Attributes (T1, T2 : Entity_Id) is
11777 begin
11778 Set_Size_Info (T1, T2);
11779
11780 Set_First_Index (T1, First_Index (T2));
11781 Set_Is_Aliased (T1, Is_Aliased (T2));
11782 Set_Is_Atomic (T1, Is_Atomic (T2));
11783 Set_Is_Volatile (T1, Is_Volatile (T2));
11784 Set_Treat_As_Volatile (T1, Treat_As_Volatile (T2));
11785 Set_Is_Constrained (T1, Is_Constrained (T2));
11786 Set_Depends_On_Private (T1, Has_Private_Component (T2));
11787 Set_First_Rep_Item (T1, First_Rep_Item (T2));
11788 Set_Convention (T1, Convention (T2));
11789 Set_Is_Limited_Composite (T1, Is_Limited_Composite (T2));
11790 Set_Is_Private_Composite (T1, Is_Private_Composite (T2));
11791 Set_Packed_Array_Type (T1, Packed_Array_Type (T2));
11792 end Copy_Array_Subtype_Attributes;
11793
11794 -----------------------------------
11795 -- Create_Constrained_Components --
11796 -----------------------------------
11797
11798 procedure Create_Constrained_Components
11799 (Subt : Entity_Id;
11800 Decl_Node : Node_Id;
11801 Typ : Entity_Id;
11802 Constraints : Elist_Id)
11803 is
11804 Loc : constant Source_Ptr := Sloc (Subt);
11805 Comp_List : constant Elist_Id := New_Elmt_List;
11806 Parent_Type : constant Entity_Id := Etype (Typ);
11807 Assoc_List : constant List_Id := New_List;
11808 Discr_Val : Elmt_Id;
11809 Errors : Boolean;
11810 New_C : Entity_Id;
11811 Old_C : Entity_Id;
11812 Is_Static : Boolean := True;
11813
11814 procedure Collect_Fixed_Components (Typ : Entity_Id);
11815 -- Collect parent type components that do not appear in a variant part
11816
11817 procedure Create_All_Components;
11818 -- Iterate over Comp_List to create the components of the subtype
11819
11820 function Create_Component (Old_Compon : Entity_Id) return Entity_Id;
11821 -- Creates a new component from Old_Compon, copying all the fields from
11822 -- it, including its Etype, inserts the new component in the Subt entity
11823 -- chain and returns the new component.
11824
11825 function Is_Variant_Record (T : Entity_Id) return Boolean;
11826 -- If true, and discriminants are static, collect only components from
11827 -- variants selected by discriminant values.
11828
11829 ------------------------------
11830 -- Collect_Fixed_Components --
11831 ------------------------------
11832
11833 procedure Collect_Fixed_Components (Typ : Entity_Id) is
11834 begin
11835 -- Build association list for discriminants, and find components of the
11836 -- variant part selected by the values of the discriminants.
11837
11838 Old_C := First_Discriminant (Typ);
11839 Discr_Val := First_Elmt (Constraints);
11840 while Present (Old_C) loop
11841 Append_To (Assoc_List,
11842 Make_Component_Association (Loc,
11843 Choices => New_List (New_Occurrence_Of (Old_C, Loc)),
11844 Expression => New_Copy (Node (Discr_Val))));
11845
11846 Next_Elmt (Discr_Val);
11847 Next_Discriminant (Old_C);
11848 end loop;
11849
11850 -- The tag, and the possible parent and controller components
11851 -- are unconditionally in the subtype.
11852
11853 if Is_Tagged_Type (Typ)
11854 or else Has_Controlled_Component (Typ)
11855 then
11856 Old_C := First_Component (Typ);
11857 while Present (Old_C) loop
11858 if Chars ((Old_C)) = Name_uTag
11859 or else Chars ((Old_C)) = Name_uParent
11860 or else Chars ((Old_C)) = Name_uController
11861 then
11862 Append_Elmt (Old_C, Comp_List);
11863 end if;
11864
11865 Next_Component (Old_C);
11866 end loop;
11867 end if;
11868 end Collect_Fixed_Components;
11869
11870 ---------------------------
11871 -- Create_All_Components --
11872 ---------------------------
11873
11874 procedure Create_All_Components is
11875 Comp : Elmt_Id;
11876
11877 begin
11878 Comp := First_Elmt (Comp_List);
11879 while Present (Comp) loop
11880 Old_C := Node (Comp);
11881 New_C := Create_Component (Old_C);
11882
11883 Set_Etype
11884 (New_C,
11885 Constrain_Component_Type
11886 (Old_C, Subt, Decl_Node, Typ, Constraints));
11887 Set_Is_Public (New_C, Is_Public (Subt));
11888
11889 Next_Elmt (Comp);
11890 end loop;
11891 end Create_All_Components;
11892
11893 ----------------------
11894 -- Create_Component --
11895 ----------------------
11896
11897 function Create_Component (Old_Compon : Entity_Id) return Entity_Id is
11898 New_Compon : constant Entity_Id := New_Copy (Old_Compon);
11899
11900 begin
11901 if Ekind (Old_Compon) = E_Discriminant
11902 and then Is_Completely_Hidden (Old_Compon)
11903 then
11904 -- This is a shadow discriminant created for a discriminant of
11905 -- the parent type, which needs to be present in the subtype.
11906 -- Give the shadow discriminant an internal name that cannot
11907 -- conflict with that of visible components.
11908
11909 Set_Chars (New_Compon, New_Internal_Name ('C'));
11910 end if;
11911
11912 -- Set the parent so we have a proper link for freezing etc. This is
11913 -- not a real parent pointer, since of course our parent does not own
11914 -- up to us and reference us, we are an illegitimate child of the
11915 -- original parent!
11916
11917 Set_Parent (New_Compon, Parent (Old_Compon));
11918
11919 -- If the old component's Esize was already determined and is a
11920 -- static value, then the new component simply inherits it. Otherwise
11921 -- the old component's size may require run-time determination, but
11922 -- the new component's size still might be statically determinable
11923 -- (if, for example it has a static constraint). In that case we want
11924 -- Layout_Type to recompute the component's size, so we reset its
11925 -- size and positional fields.
11926
11927 if Frontend_Layout_On_Target
11928 and then not Known_Static_Esize (Old_Compon)
11929 then
11930 Set_Esize (New_Compon, Uint_0);
11931 Init_Normalized_First_Bit (New_Compon);
11932 Init_Normalized_Position (New_Compon);
11933 Init_Normalized_Position_Max (New_Compon);
11934 end if;
11935
11936 -- We do not want this node marked as Comes_From_Source, since
11937 -- otherwise it would get first class status and a separate cross-
11938 -- reference line would be generated. Illegitimate children do not
11939 -- rate such recognition.
11940
11941 Set_Comes_From_Source (New_Compon, False);
11942
11943 -- But it is a real entity, and a birth certificate must be properly
11944 -- registered by entering it into the entity list.
11945
11946 Enter_Name (New_Compon);
11947
11948 return New_Compon;
11949 end Create_Component;
11950
11951 -----------------------
11952 -- Is_Variant_Record --
11953 -----------------------
11954
11955 function Is_Variant_Record (T : Entity_Id) return Boolean is
11956 begin
11957 return Nkind (Parent (T)) = N_Full_Type_Declaration
11958 and then Nkind (Type_Definition (Parent (T))) = N_Record_Definition
11959 and then Present (Component_List (Type_Definition (Parent (T))))
11960 and then
11961 Present
11962 (Variant_Part (Component_List (Type_Definition (Parent (T)))));
11963 end Is_Variant_Record;
11964
11965 -- Start of processing for Create_Constrained_Components
11966
11967 begin
11968 pragma Assert (Subt /= Base_Type (Subt));
11969 pragma Assert (Typ = Base_Type (Typ));
11970
11971 Set_First_Entity (Subt, Empty);
11972 Set_Last_Entity (Subt, Empty);
11973
11974 -- Check whether constraint is fully static, in which case we can
11975 -- optimize the list of components.
11976
11977 Discr_Val := First_Elmt (Constraints);
11978 while Present (Discr_Val) loop
11979 if not Is_OK_Static_Expression (Node (Discr_Val)) then
11980 Is_Static := False;
11981 exit;
11982 end if;
11983
11984 Next_Elmt (Discr_Val);
11985 end loop;
11986
11987 Set_Has_Static_Discriminants (Subt, Is_Static);
11988
11989 Push_Scope (Subt);
11990
11991 -- Inherit the discriminants of the parent type
11992
11993 Add_Discriminants : declare
11994 Num_Disc : Int;
11995 Num_Gird : Int;
11996
11997 begin
11998 Num_Disc := 0;
11999 Old_C := First_Discriminant (Typ);
12000
12001 while Present (Old_C) loop
12002 Num_Disc := Num_Disc + 1;
12003 New_C := Create_Component (Old_C);
12004 Set_Is_Public (New_C, Is_Public (Subt));
12005 Next_Discriminant (Old_C);
12006 end loop;
12007
12008 -- For an untagged derived subtype, the number of discriminants may
12009 -- be smaller than the number of inherited discriminants, because
12010 -- several of them may be renamed by a single new discriminant or
12011 -- constrained. In this case, add the hidden discriminants back into
12012 -- the subtype, because they need to be present if the optimizer of
12013 -- the GCC 4.x back-end decides to break apart assignments between
12014 -- objects using the parent view into member-wise assignments.
12015
12016 Num_Gird := 0;
12017
12018 if Is_Derived_Type (Typ)
12019 and then not Is_Tagged_Type (Typ)
12020 then
12021 Old_C := First_Stored_Discriminant (Typ);
12022
12023 while Present (Old_C) loop
12024 Num_Gird := Num_Gird + 1;
12025 Next_Stored_Discriminant (Old_C);
12026 end loop;
12027 end if;
12028
12029 if Num_Gird > Num_Disc then
12030
12031 -- Find out multiple uses of new discriminants, and add hidden
12032 -- components for the extra renamed discriminants. We recognize
12033 -- multiple uses through the Corresponding_Discriminant of a
12034 -- new discriminant: if it constrains several old discriminants,
12035 -- this field points to the last one in the parent type. The
12036 -- stored discriminants of the derived type have the same name
12037 -- as those of the parent.
12038
12039 declare
12040 Constr : Elmt_Id;
12041 New_Discr : Entity_Id;
12042 Old_Discr : Entity_Id;
12043
12044 begin
12045 Constr := First_Elmt (Stored_Constraint (Typ));
12046 Old_Discr := First_Stored_Discriminant (Typ);
12047 while Present (Constr) loop
12048 if Is_Entity_Name (Node (Constr))
12049 and then Ekind (Entity (Node (Constr))) = E_Discriminant
12050 then
12051 New_Discr := Entity (Node (Constr));
12052
12053 if Chars (Corresponding_Discriminant (New_Discr)) /=
12054 Chars (Old_Discr)
12055 then
12056 -- The new discriminant has been used to rename a
12057 -- subsequent old discriminant. Introduce a shadow
12058 -- component for the current old discriminant.
12059
12060 New_C := Create_Component (Old_Discr);
12061 Set_Original_Record_Component (New_C, Old_Discr);
12062 end if;
12063
12064 else
12065 -- The constraint has eliminated the old discriminant.
12066 -- Introduce a shadow component.
12067
12068 New_C := Create_Component (Old_Discr);
12069 Set_Original_Record_Component (New_C, Old_Discr);
12070 end if;
12071
12072 Next_Elmt (Constr);
12073 Next_Stored_Discriminant (Old_Discr);
12074 end loop;
12075 end;
12076 end if;
12077 end Add_Discriminants;
12078
12079 if Is_Static
12080 and then Is_Variant_Record (Typ)
12081 then
12082 Collect_Fixed_Components (Typ);
12083
12084 Gather_Components (
12085 Typ,
12086 Component_List (Type_Definition (Parent (Typ))),
12087 Governed_By => Assoc_List,
12088 Into => Comp_List,
12089 Report_Errors => Errors);
12090 pragma Assert (not Errors);
12091
12092 Create_All_Components;
12093
12094 -- If the subtype declaration is created for a tagged type derivation
12095 -- with constraints, we retrieve the record definition of the parent
12096 -- type to select the components of the proper variant.
12097
12098 elsif Is_Static
12099 and then Is_Tagged_Type (Typ)
12100 and then Nkind (Parent (Typ)) = N_Full_Type_Declaration
12101 and then
12102 Nkind (Type_Definition (Parent (Typ))) = N_Derived_Type_Definition
12103 and then Is_Variant_Record (Parent_Type)
12104 then
12105 Collect_Fixed_Components (Typ);
12106
12107 Gather_Components (
12108 Typ,
12109 Component_List (Type_Definition (Parent (Parent_Type))),
12110 Governed_By => Assoc_List,
12111 Into => Comp_List,
12112 Report_Errors => Errors);
12113 pragma Assert (not Errors);
12114
12115 -- If the tagged derivation has a type extension, collect all the
12116 -- new components therein.
12117
12118 if Present
12119 (Record_Extension_Part (Type_Definition (Parent (Typ))))
12120 then
12121 Old_C := First_Component (Typ);
12122 while Present (Old_C) loop
12123 if Original_Record_Component (Old_C) = Old_C
12124 and then Chars (Old_C) /= Name_uTag
12125 and then Chars (Old_C) /= Name_uParent
12126 and then Chars (Old_C) /= Name_uController
12127 then
12128 Append_Elmt (Old_C, Comp_List);
12129 end if;
12130
12131 Next_Component (Old_C);
12132 end loop;
12133 end if;
12134
12135 Create_All_Components;
12136
12137 else
12138 -- If discriminants are not static, or if this is a multi-level type
12139 -- extension, we have to include all components of the parent type.
12140
12141 Old_C := First_Component (Typ);
12142 while Present (Old_C) loop
12143 New_C := Create_Component (Old_C);
12144
12145 Set_Etype
12146 (New_C,
12147 Constrain_Component_Type
12148 (Old_C, Subt, Decl_Node, Typ, Constraints));
12149 Set_Is_Public (New_C, Is_Public (Subt));
12150
12151 Next_Component (Old_C);
12152 end loop;
12153 end if;
12154
12155 End_Scope;
12156 end Create_Constrained_Components;
12157
12158 ------------------------------------------
12159 -- Decimal_Fixed_Point_Type_Declaration --
12160 ------------------------------------------
12161
12162 procedure Decimal_Fixed_Point_Type_Declaration
12163 (T : Entity_Id;
12164 Def : Node_Id)
12165 is
12166 Loc : constant Source_Ptr := Sloc (Def);
12167 Digs_Expr : constant Node_Id := Digits_Expression (Def);
12168 Delta_Expr : constant Node_Id := Delta_Expression (Def);
12169 Implicit_Base : Entity_Id;
12170 Digs_Val : Uint;
12171 Delta_Val : Ureal;
12172 Scale_Val : Uint;
12173 Bound_Val : Ureal;
12174
12175 begin
12176 Check_Restriction (No_Fixed_Point, Def);
12177
12178 -- Create implicit base type
12179
12180 Implicit_Base :=
12181 Create_Itype (E_Decimal_Fixed_Point_Type, Parent (Def), T, 'B');
12182 Set_Etype (Implicit_Base, Implicit_Base);
12183
12184 -- Analyze and process delta expression
12185
12186 Analyze_And_Resolve (Delta_Expr, Universal_Real);
12187
12188 Check_Delta_Expression (Delta_Expr);
12189 Delta_Val := Expr_Value_R (Delta_Expr);
12190
12191 -- Check delta is power of 10, and determine scale value from it
12192
12193 declare
12194 Val : Ureal;
12195
12196 begin
12197 Scale_Val := Uint_0;
12198 Val := Delta_Val;
12199
12200 if Val < Ureal_1 then
12201 while Val < Ureal_1 loop
12202 Val := Val * Ureal_10;
12203 Scale_Val := Scale_Val + 1;
12204 end loop;
12205
12206 if Scale_Val > 18 then
12207 Error_Msg_N ("scale exceeds maximum value of 18", Def);
12208 Scale_Val := UI_From_Int (+18);
12209 end if;
12210
12211 else
12212 while Val > Ureal_1 loop
12213 Val := Val / Ureal_10;
12214 Scale_Val := Scale_Val - 1;
12215 end loop;
12216
12217 if Scale_Val < -18 then
12218 Error_Msg_N ("scale is less than minimum value of -18", Def);
12219 Scale_Val := UI_From_Int (-18);
12220 end if;
12221 end if;
12222
12223 if Val /= Ureal_1 then
12224 Error_Msg_N ("delta expression must be a power of 10", Def);
12225 Delta_Val := Ureal_10 ** (-Scale_Val);
12226 end if;
12227 end;
12228
12229 -- Set delta, scale and small (small = delta for decimal type)
12230
12231 Set_Delta_Value (Implicit_Base, Delta_Val);
12232 Set_Scale_Value (Implicit_Base, Scale_Val);
12233 Set_Small_Value (Implicit_Base, Delta_Val);
12234
12235 -- Analyze and process digits expression
12236
12237 Analyze_And_Resolve (Digs_Expr, Any_Integer);
12238 Check_Digits_Expression (Digs_Expr);
12239 Digs_Val := Expr_Value (Digs_Expr);
12240
12241 if Digs_Val > 18 then
12242 Digs_Val := UI_From_Int (+18);
12243 Error_Msg_N ("digits value out of range, maximum is 18", Digs_Expr);
12244 end if;
12245
12246 Set_Digits_Value (Implicit_Base, Digs_Val);
12247 Bound_Val := UR_From_Uint (10 ** Digs_Val - 1) * Delta_Val;
12248
12249 -- Set range of base type from digits value for now. This will be
12250 -- expanded to represent the true underlying base range by Freeze.
12251
12252 Set_Fixed_Range (Implicit_Base, Loc, -Bound_Val, Bound_Val);
12253
12254 -- Note: We leave size as zero for now, size will be set at freeze
12255 -- time. We have to do this for ordinary fixed-point, because the size
12256 -- depends on the specified small, and we might as well do the same for
12257 -- decimal fixed-point.
12258
12259 pragma Assert (Esize (Implicit_Base) = Uint_0);
12260
12261 -- If there are bounds given in the declaration use them as the
12262 -- bounds of the first named subtype.
12263
12264 if Present (Real_Range_Specification (Def)) then
12265 declare
12266 RRS : constant Node_Id := Real_Range_Specification (Def);
12267 Low : constant Node_Id := Low_Bound (RRS);
12268 High : constant Node_Id := High_Bound (RRS);
12269 Low_Val : Ureal;
12270 High_Val : Ureal;
12271
12272 begin
12273 Analyze_And_Resolve (Low, Any_Real);
12274 Analyze_And_Resolve (High, Any_Real);
12275 Check_Real_Bound (Low);
12276 Check_Real_Bound (High);
12277 Low_Val := Expr_Value_R (Low);
12278 High_Val := Expr_Value_R (High);
12279
12280 if Low_Val < (-Bound_Val) then
12281 Error_Msg_N
12282 ("range low bound too small for digits value", Low);
12283 Low_Val := -Bound_Val;
12284 end if;
12285
12286 if High_Val > Bound_Val then
12287 Error_Msg_N
12288 ("range high bound too large for digits value", High);
12289 High_Val := Bound_Val;
12290 end if;
12291
12292 Set_Fixed_Range (T, Loc, Low_Val, High_Val);
12293 end;
12294
12295 -- If no explicit range, use range that corresponds to given
12296 -- digits value. This will end up as the final range for the
12297 -- first subtype.
12298
12299 else
12300 Set_Fixed_Range (T, Loc, -Bound_Val, Bound_Val);
12301 end if;
12302
12303 -- Complete entity for first subtype
12304
12305 Set_Ekind (T, E_Decimal_Fixed_Point_Subtype);
12306 Set_Etype (T, Implicit_Base);
12307 Set_Size_Info (T, Implicit_Base);
12308 Set_First_Rep_Item (T, First_Rep_Item (Implicit_Base));
12309 Set_Digits_Value (T, Digs_Val);
12310 Set_Delta_Value (T, Delta_Val);
12311 Set_Small_Value (T, Delta_Val);
12312 Set_Scale_Value (T, Scale_Val);
12313 Set_Is_Constrained (T);
12314 end Decimal_Fixed_Point_Type_Declaration;
12315
12316 -----------------------------------
12317 -- Derive_Progenitor_Subprograms --
12318 -----------------------------------
12319
12320 procedure Derive_Progenitor_Subprograms
12321 (Parent_Type : Entity_Id;
12322 Tagged_Type : Entity_Id)
12323 is
12324 E : Entity_Id;
12325 Elmt : Elmt_Id;
12326 Iface : Entity_Id;
12327 Iface_Elmt : Elmt_Id;
12328 Iface_Subp : Entity_Id;
12329 New_Subp : Entity_Id := Empty;
12330 Prim_Elmt : Elmt_Id;
12331 Subp : Entity_Id;
12332 Typ : Entity_Id;
12333
12334 begin
12335 pragma Assert (Ada_Version >= Ada_2005
12336 and then Is_Record_Type (Tagged_Type)
12337 and then Is_Tagged_Type (Tagged_Type)
12338 and then Has_Interfaces (Tagged_Type));
12339
12340 -- Step 1: Transfer to the full-view primitives associated with the
12341 -- partial-view that cover interface primitives. Conceptually this
12342 -- work should be done later by Process_Full_View; done here to
12343 -- simplify its implementation at later stages. It can be safely
12344 -- done here because interfaces must be visible in the partial and
12345 -- private view (RM 7.3(7.3/2)).
12346
12347 -- Small optimization: This work is only required if the parent is
12348 -- abstract. If the tagged type is not abstract, it cannot have
12349 -- abstract primitives (the only entities in the list of primitives of
12350 -- non-abstract tagged types that can reference abstract primitives
12351 -- through its Alias attribute are the internal entities that have
12352 -- attribute Interface_Alias, and these entities are generated later
12353 -- by Add_Internal_Interface_Entities).
12354
12355 if In_Private_Part (Current_Scope)
12356 and then Is_Abstract_Type (Parent_Type)
12357 then
12358 Elmt := First_Elmt (Primitive_Operations (Tagged_Type));
12359 while Present (Elmt) loop
12360 Subp := Node (Elmt);
12361
12362 -- At this stage it is not possible to have entities in the list
12363 -- of primitives that have attribute Interface_Alias
12364
12365 pragma Assert (No (Interface_Alias (Subp)));
12366
12367 Typ := Find_Dispatching_Type (Ultimate_Alias (Subp));
12368
12369 if Is_Interface (Typ) then
12370 E := Find_Primitive_Covering_Interface
12371 (Tagged_Type => Tagged_Type,
12372 Iface_Prim => Subp);
12373
12374 if Present (E)
12375 and then Find_Dispatching_Type (Ultimate_Alias (E)) /= Typ
12376 then
12377 Replace_Elmt (Elmt, E);
12378 Remove_Homonym (Subp);
12379 end if;
12380 end if;
12381
12382 Next_Elmt (Elmt);
12383 end loop;
12384 end if;
12385
12386 -- Step 2: Add primitives of progenitors that are not implemented by
12387 -- parents of Tagged_Type
12388
12389 if Present (Interfaces (Base_Type (Tagged_Type))) then
12390 Iface_Elmt := First_Elmt (Interfaces (Base_Type (Tagged_Type)));
12391 while Present (Iface_Elmt) loop
12392 Iface := Node (Iface_Elmt);
12393
12394 Prim_Elmt := First_Elmt (Primitive_Operations (Iface));
12395 while Present (Prim_Elmt) loop
12396 Iface_Subp := Node (Prim_Elmt);
12397
12398 -- Exclude derivation of predefined primitives except those
12399 -- that come from source. Required to catch declarations of
12400 -- equality operators of interfaces. For example:
12401
12402 -- type Iface is interface;
12403 -- function "=" (Left, Right : Iface) return Boolean;
12404
12405 if not Is_Predefined_Dispatching_Operation (Iface_Subp)
12406 or else Comes_From_Source (Iface_Subp)
12407 then
12408 E := Find_Primitive_Covering_Interface
12409 (Tagged_Type => Tagged_Type,
12410 Iface_Prim => Iface_Subp);
12411
12412 -- If not found we derive a new primitive leaving its alias
12413 -- attribute referencing the interface primitive
12414
12415 if No (E) then
12416 Derive_Subprogram
12417 (New_Subp, Iface_Subp, Tagged_Type, Iface);
12418
12419 -- Propagate to the full view interface entities associated
12420 -- with the partial view
12421
12422 elsif In_Private_Part (Current_Scope)
12423 and then Present (Alias (E))
12424 and then Alias (E) = Iface_Subp
12425 and then
12426 List_Containing (Parent (E)) /=
12427 Private_Declarations
12428 (Specification
12429 (Unit_Declaration_Node (Current_Scope)))
12430 then
12431 Append_Elmt (E, Primitive_Operations (Tagged_Type));
12432 end if;
12433 end if;
12434
12435 Next_Elmt (Prim_Elmt);
12436 end loop;
12437
12438 Next_Elmt (Iface_Elmt);
12439 end loop;
12440 end if;
12441 end Derive_Progenitor_Subprograms;
12442
12443 -----------------------
12444 -- Derive_Subprogram --
12445 -----------------------
12446
12447 procedure Derive_Subprogram
12448 (New_Subp : in out Entity_Id;
12449 Parent_Subp : Entity_Id;
12450 Derived_Type : Entity_Id;
12451 Parent_Type : Entity_Id;
12452 Actual_Subp : Entity_Id := Empty)
12453 is
12454 Formal : Entity_Id;
12455 -- Formal parameter of parent primitive operation
12456
12457 Formal_Of_Actual : Entity_Id;
12458 -- Formal parameter of actual operation, when the derivation is to
12459 -- create a renaming for a primitive operation of an actual in an
12460 -- instantiation.
12461
12462 New_Formal : Entity_Id;
12463 -- Formal of inherited operation
12464
12465 Visible_Subp : Entity_Id := Parent_Subp;
12466
12467 function Is_Private_Overriding return Boolean;
12468 -- If Subp is a private overriding of a visible operation, the inherited
12469 -- operation derives from the overridden op (even though its body is the
12470 -- overriding one) and the inherited operation is visible now. See
12471 -- sem_disp to see the full details of the handling of the overridden
12472 -- subprogram, which is removed from the list of primitive operations of
12473 -- the type. The overridden subprogram is saved locally in Visible_Subp,
12474 -- and used to diagnose abstract operations that need overriding in the
12475 -- derived type.
12476
12477 procedure Replace_Type (Id, New_Id : Entity_Id);
12478 -- When the type is an anonymous access type, create a new access type
12479 -- designating the derived type.
12480
12481 procedure Set_Derived_Name;
12482 -- This procedure sets the appropriate Chars name for New_Subp. This
12483 -- is normally just a copy of the parent name. An exception arises for
12484 -- type support subprograms, where the name is changed to reflect the
12485 -- name of the derived type, e.g. if type foo is derived from type bar,
12486 -- then a procedure barDA is derived with a name fooDA.
12487
12488 ---------------------------
12489 -- Is_Private_Overriding --
12490 ---------------------------
12491
12492 function Is_Private_Overriding return Boolean is
12493 Prev : Entity_Id;
12494
12495 begin
12496 -- If the parent is not a dispatching operation there is no
12497 -- need to investigate overridings
12498
12499 if not Is_Dispatching_Operation (Parent_Subp) then
12500 return False;
12501 end if;
12502
12503 -- The visible operation that is overridden is a homonym of the
12504 -- parent subprogram. We scan the homonym chain to find the one
12505 -- whose alias is the subprogram we are deriving.
12506
12507 Prev := Current_Entity (Parent_Subp);
12508 while Present (Prev) loop
12509 if Ekind (Prev) = Ekind (Parent_Subp)
12510 and then Alias (Prev) = Parent_Subp
12511 and then Scope (Parent_Subp) = Scope (Prev)
12512 and then not Is_Hidden (Prev)
12513 then
12514 Visible_Subp := Prev;
12515 return True;
12516 end if;
12517
12518 Prev := Homonym (Prev);
12519 end loop;
12520
12521 return False;
12522 end Is_Private_Overriding;
12523
12524 ------------------
12525 -- Replace_Type --
12526 ------------------
12527
12528 procedure Replace_Type (Id, New_Id : Entity_Id) is
12529 Acc_Type : Entity_Id;
12530 Par : constant Node_Id := Parent (Derived_Type);
12531
12532 begin
12533 -- When the type is an anonymous access type, create a new access
12534 -- type designating the derived type. This itype must be elaborated
12535 -- at the point of the derivation, not on subsequent calls that may
12536 -- be out of the proper scope for Gigi, so we insert a reference to
12537 -- it after the derivation.
12538
12539 if Ekind (Etype (Id)) = E_Anonymous_Access_Type then
12540 declare
12541 Desig_Typ : Entity_Id := Designated_Type (Etype (Id));
12542
12543 begin
12544 if Ekind (Desig_Typ) = E_Record_Type_With_Private
12545 and then Present (Full_View (Desig_Typ))
12546 and then not Is_Private_Type (Parent_Type)
12547 then
12548 Desig_Typ := Full_View (Desig_Typ);
12549 end if;
12550
12551 if Base_Type (Desig_Typ) = Base_Type (Parent_Type)
12552
12553 -- Ada 2005 (AI-251): Handle also derivations of abstract
12554 -- interface primitives.
12555
12556 or else (Is_Interface (Desig_Typ)
12557 and then not Is_Class_Wide_Type (Desig_Typ))
12558 then
12559 Acc_Type := New_Copy (Etype (Id));
12560 Set_Etype (Acc_Type, Acc_Type);
12561 Set_Scope (Acc_Type, New_Subp);
12562
12563 -- Compute size of anonymous access type
12564
12565 if Is_Array_Type (Desig_Typ)
12566 and then not Is_Constrained (Desig_Typ)
12567 then
12568 Init_Size (Acc_Type, 2 * System_Address_Size);
12569 else
12570 Init_Size (Acc_Type, System_Address_Size);
12571 end if;
12572
12573 Init_Alignment (Acc_Type);
12574 Set_Directly_Designated_Type (Acc_Type, Derived_Type);
12575
12576 Set_Etype (New_Id, Acc_Type);
12577 Set_Scope (New_Id, New_Subp);
12578
12579 -- Create a reference to it
12580 Build_Itype_Reference (Acc_Type, Parent (Derived_Type));
12581
12582 else
12583 Set_Etype (New_Id, Etype (Id));
12584 end if;
12585 end;
12586
12587 elsif Base_Type (Etype (Id)) = Base_Type (Parent_Type)
12588 or else
12589 (Ekind (Etype (Id)) = E_Record_Type_With_Private
12590 and then Present (Full_View (Etype (Id)))
12591 and then
12592 Base_Type (Full_View (Etype (Id))) = Base_Type (Parent_Type))
12593 then
12594 -- Constraint checks on formals are generated during expansion,
12595 -- based on the signature of the original subprogram. The bounds
12596 -- of the derived type are not relevant, and thus we can use
12597 -- the base type for the formals. However, the return type may be
12598 -- used in a context that requires that the proper static bounds
12599 -- be used (a case statement, for example) and for those cases
12600 -- we must use the derived type (first subtype), not its base.
12601
12602 -- If the derived_type_definition has no constraints, we know that
12603 -- the derived type has the same constraints as the first subtype
12604 -- of the parent, and we can also use it rather than its base,
12605 -- which can lead to more efficient code.
12606
12607 if Etype (Id) = Parent_Type then
12608 if Is_Scalar_Type (Parent_Type)
12609 and then
12610 Subtypes_Statically_Compatible (Parent_Type, Derived_Type)
12611 then
12612 Set_Etype (New_Id, Derived_Type);
12613
12614 elsif Nkind (Par) = N_Full_Type_Declaration
12615 and then
12616 Nkind (Type_Definition (Par)) = N_Derived_Type_Definition
12617 and then
12618 Is_Entity_Name
12619 (Subtype_Indication (Type_Definition (Par)))
12620 then
12621 Set_Etype (New_Id, Derived_Type);
12622
12623 else
12624 Set_Etype (New_Id, Base_Type (Derived_Type));
12625 end if;
12626
12627 else
12628 Set_Etype (New_Id, Base_Type (Derived_Type));
12629 end if;
12630
12631 else
12632 Set_Etype (New_Id, Etype (Id));
12633 end if;
12634 end Replace_Type;
12635
12636 ----------------------
12637 -- Set_Derived_Name --
12638 ----------------------
12639
12640 procedure Set_Derived_Name is
12641 Nm : constant TSS_Name_Type := Get_TSS_Name (Parent_Subp);
12642 begin
12643 if Nm = TSS_Null then
12644 Set_Chars (New_Subp, Chars (Parent_Subp));
12645 else
12646 Set_Chars (New_Subp, Make_TSS_Name (Base_Type (Derived_Type), Nm));
12647 end if;
12648 end Set_Derived_Name;
12649
12650 -- Start of processing for Derive_Subprogram
12651
12652 begin
12653 New_Subp :=
12654 New_Entity (Nkind (Parent_Subp), Sloc (Derived_Type));
12655 Set_Ekind (New_Subp, Ekind (Parent_Subp));
12656
12657 -- Check whether the inherited subprogram is a private operation that
12658 -- should be inherited but not yet made visible. Such subprograms can
12659 -- become visible at a later point (e.g., the private part of a public
12660 -- child unit) via Declare_Inherited_Private_Subprograms. If the
12661 -- following predicate is true, then this is not such a private
12662 -- operation and the subprogram simply inherits the name of the parent
12663 -- subprogram. Note the special check for the names of controlled
12664 -- operations, which are currently exempted from being inherited with
12665 -- a hidden name because they must be findable for generation of
12666 -- implicit run-time calls.
12667
12668 if not Is_Hidden (Parent_Subp)
12669 or else Is_Internal (Parent_Subp)
12670 or else Is_Private_Overriding
12671 or else Is_Internal_Name (Chars (Parent_Subp))
12672 or else Chars (Parent_Subp) = Name_Initialize
12673 or else Chars (Parent_Subp) = Name_Adjust
12674 or else Chars (Parent_Subp) = Name_Finalize
12675 then
12676 Set_Derived_Name;
12677
12678 -- An inherited dispatching equality will be overridden by an internally
12679 -- generated one, or by an explicit one, so preserve its name and thus
12680 -- its entry in the dispatch table. Otherwise, if Parent_Subp is a
12681 -- private operation it may become invisible if the full view has
12682 -- progenitors, and the dispatch table will be malformed.
12683 -- We check that the type is limited to handle the anomalous declaration
12684 -- of Limited_Controlled, which is derived from a non-limited type, and
12685 -- which is handled specially elsewhere as well.
12686
12687 elsif Chars (Parent_Subp) = Name_Op_Eq
12688 and then Is_Dispatching_Operation (Parent_Subp)
12689 and then Etype (Parent_Subp) = Standard_Boolean
12690 and then not Is_Limited_Type (Etype (First_Formal (Parent_Subp)))
12691 and then
12692 Etype (First_Formal (Parent_Subp)) =
12693 Etype (Next_Formal (First_Formal (Parent_Subp)))
12694 then
12695 Set_Derived_Name;
12696
12697 -- If parent is hidden, this can be a regular derivation if the
12698 -- parent is immediately visible in a non-instantiating context,
12699 -- or if we are in the private part of an instance. This test
12700 -- should still be refined ???
12701
12702 -- The test for In_Instance_Not_Visible avoids inheriting the derived
12703 -- operation as a non-visible operation in cases where the parent
12704 -- subprogram might not be visible now, but was visible within the
12705 -- original generic, so it would be wrong to make the inherited
12706 -- subprogram non-visible now. (Not clear if this test is fully
12707 -- correct; are there any cases where we should declare the inherited
12708 -- operation as not visible to avoid it being overridden, e.g., when
12709 -- the parent type is a generic actual with private primitives ???)
12710
12711 -- (they should be treated the same as other private inherited
12712 -- subprograms, but it's not clear how to do this cleanly). ???
12713
12714 elsif (In_Open_Scopes (Scope (Base_Type (Parent_Type)))
12715 and then Is_Immediately_Visible (Parent_Subp)
12716 and then not In_Instance)
12717 or else In_Instance_Not_Visible
12718 then
12719 Set_Derived_Name;
12720
12721 -- Ada 2005 (AI-251): Regular derivation if the parent subprogram
12722 -- overrides an interface primitive because interface primitives
12723 -- must be visible in the partial view of the parent (RM 7.3 (7.3/2))
12724
12725 elsif Ada_Version >= Ada_2005
12726 and then Is_Dispatching_Operation (Parent_Subp)
12727 and then Covers_Some_Interface (Parent_Subp)
12728 then
12729 Set_Derived_Name;
12730
12731 -- Otherwise, the type is inheriting a private operation, so enter
12732 -- it with a special name so it can't be overridden.
12733
12734 else
12735 Set_Chars (New_Subp, New_External_Name (Chars (Parent_Subp), 'P'));
12736 end if;
12737
12738 Set_Parent (New_Subp, Parent (Derived_Type));
12739
12740 if Present (Actual_Subp) then
12741 Replace_Type (Actual_Subp, New_Subp);
12742 else
12743 Replace_Type (Parent_Subp, New_Subp);
12744 end if;
12745
12746 Conditional_Delay (New_Subp, Parent_Subp);
12747
12748 -- If we are creating a renaming for a primitive operation of an
12749 -- actual of a generic derived type, we must examine the signature
12750 -- of the actual primitive, not that of the generic formal, which for
12751 -- example may be an interface. However the name and initial value
12752 -- of the inherited operation are those of the formal primitive.
12753
12754 Formal := First_Formal (Parent_Subp);
12755
12756 if Present (Actual_Subp) then
12757 Formal_Of_Actual := First_Formal (Actual_Subp);
12758 else
12759 Formal_Of_Actual := Empty;
12760 end if;
12761
12762 while Present (Formal) loop
12763 New_Formal := New_Copy (Formal);
12764
12765 -- Normally we do not go copying parents, but in the case of
12766 -- formals, we need to link up to the declaration (which is the
12767 -- parameter specification), and it is fine to link up to the
12768 -- original formal's parameter specification in this case.
12769
12770 Set_Parent (New_Formal, Parent (Formal));
12771 Append_Entity (New_Formal, New_Subp);
12772
12773 if Present (Formal_Of_Actual) then
12774 Replace_Type (Formal_Of_Actual, New_Formal);
12775 Next_Formal (Formal_Of_Actual);
12776 else
12777 Replace_Type (Formal, New_Formal);
12778 end if;
12779
12780 Next_Formal (Formal);
12781 end loop;
12782
12783 -- If this derivation corresponds to a tagged generic actual, then
12784 -- primitive operations rename those of the actual. Otherwise the
12785 -- primitive operations rename those of the parent type, If the parent
12786 -- renames an intrinsic operator, so does the new subprogram. We except
12787 -- concatenation, which is always properly typed, and does not get
12788 -- expanded as other intrinsic operations.
12789
12790 if No (Actual_Subp) then
12791 if Is_Intrinsic_Subprogram (Parent_Subp) then
12792 Set_Is_Intrinsic_Subprogram (New_Subp);
12793
12794 if Present (Alias (Parent_Subp))
12795 and then Chars (Parent_Subp) /= Name_Op_Concat
12796 then
12797 Set_Alias (New_Subp, Alias (Parent_Subp));
12798 else
12799 Set_Alias (New_Subp, Parent_Subp);
12800 end if;
12801
12802 else
12803 Set_Alias (New_Subp, Parent_Subp);
12804 end if;
12805
12806 else
12807 Set_Alias (New_Subp, Actual_Subp);
12808 end if;
12809
12810 -- Derived subprograms of a tagged type must inherit the convention
12811 -- of the parent subprogram (a requirement of AI-117). Derived
12812 -- subprograms of untagged types simply get convention Ada by default.
12813
12814 if Is_Tagged_Type (Derived_Type) then
12815 Set_Convention (New_Subp, Convention (Parent_Subp));
12816 end if;
12817
12818 -- Predefined controlled operations retain their name even if the parent
12819 -- is hidden (see above), but they are not primitive operations if the
12820 -- ancestor is not visible, for example if the parent is a private
12821 -- extension completed with a controlled extension. Note that a full
12822 -- type that is controlled can break privacy: the flag Is_Controlled is
12823 -- set on both views of the type.
12824
12825 if Is_Controlled (Parent_Type)
12826 and then
12827 (Chars (Parent_Subp) = Name_Initialize
12828 or else Chars (Parent_Subp) = Name_Adjust
12829 or else Chars (Parent_Subp) = Name_Finalize)
12830 and then Is_Hidden (Parent_Subp)
12831 and then not Is_Visibly_Controlled (Parent_Type)
12832 then
12833 Set_Is_Hidden (New_Subp);
12834 end if;
12835
12836 Set_Is_Imported (New_Subp, Is_Imported (Parent_Subp));
12837 Set_Is_Exported (New_Subp, Is_Exported (Parent_Subp));
12838
12839 if Ekind (Parent_Subp) = E_Procedure then
12840 Set_Is_Valued_Procedure
12841 (New_Subp, Is_Valued_Procedure (Parent_Subp));
12842 else
12843 Set_Has_Controlling_Result
12844 (New_Subp, Has_Controlling_Result (Parent_Subp));
12845 end if;
12846
12847 -- No_Return must be inherited properly. If this is overridden in the
12848 -- case of a dispatching operation, then a check is made in Sem_Disp
12849 -- that the overriding operation is also No_Return (no such check is
12850 -- required for the case of non-dispatching operation.
12851
12852 Set_No_Return (New_Subp, No_Return (Parent_Subp));
12853
12854 -- A derived function with a controlling result is abstract. If the
12855 -- Derived_Type is a nonabstract formal generic derived type, then
12856 -- inherited operations are not abstract: the required check is done at
12857 -- instantiation time. If the derivation is for a generic actual, the
12858 -- function is not abstract unless the actual is.
12859
12860 if Is_Generic_Type (Derived_Type)
12861 and then not Is_Abstract_Type (Derived_Type)
12862 then
12863 null;
12864
12865 -- Ada 2005 (AI-228): Calculate the "require overriding" and "abstract"
12866 -- properties of the subprogram, as defined in RM-3.9.3(4/2-6/2).
12867
12868 elsif Ada_Version >= Ada_2005
12869 and then (Is_Abstract_Subprogram (Alias (New_Subp))
12870 or else (Is_Tagged_Type (Derived_Type)
12871 and then Etype (New_Subp) = Derived_Type
12872 and then not Is_Null_Extension (Derived_Type))
12873 or else (Is_Tagged_Type (Derived_Type)
12874 and then Ekind (Etype (New_Subp)) =
12875 E_Anonymous_Access_Type
12876 and then Designated_Type (Etype (New_Subp)) =
12877 Derived_Type
12878 and then not Is_Null_Extension (Derived_Type)))
12879 and then No (Actual_Subp)
12880 then
12881 if not Is_Tagged_Type (Derived_Type)
12882 or else Is_Abstract_Type (Derived_Type)
12883 or else Is_Abstract_Subprogram (Alias (New_Subp))
12884 then
12885 Set_Is_Abstract_Subprogram (New_Subp);
12886 else
12887 Set_Requires_Overriding (New_Subp);
12888 end if;
12889
12890 elsif Ada_Version < Ada_2005
12891 and then (Is_Abstract_Subprogram (Alias (New_Subp))
12892 or else (Is_Tagged_Type (Derived_Type)
12893 and then Etype (New_Subp) = Derived_Type
12894 and then No (Actual_Subp)))
12895 then
12896 Set_Is_Abstract_Subprogram (New_Subp);
12897
12898 -- AI05-0097 : an inherited operation that dispatches on result is
12899 -- abstract if the derived type is abstract, even if the parent type
12900 -- is concrete and the derived type is a null extension.
12901
12902 elsif Has_Controlling_Result (Alias (New_Subp))
12903 and then Is_Abstract_Type (Etype (New_Subp))
12904 then
12905 Set_Is_Abstract_Subprogram (New_Subp);
12906
12907 -- Finally, if the parent type is abstract we must verify that all
12908 -- inherited operations are either non-abstract or overridden, or that
12909 -- the derived type itself is abstract (this check is performed at the
12910 -- end of a package declaration, in Check_Abstract_Overriding). A
12911 -- private overriding in the parent type will not be visible in the
12912 -- derivation if we are not in an inner package or in a child unit of
12913 -- the parent type, in which case the abstractness of the inherited
12914 -- operation is carried to the new subprogram.
12915
12916 elsif Is_Abstract_Type (Parent_Type)
12917 and then not In_Open_Scopes (Scope (Parent_Type))
12918 and then Is_Private_Overriding
12919 and then Is_Abstract_Subprogram (Visible_Subp)
12920 then
12921 if No (Actual_Subp) then
12922 Set_Alias (New_Subp, Visible_Subp);
12923 Set_Is_Abstract_Subprogram (New_Subp, True);
12924
12925 else
12926 -- If this is a derivation for an instance of a formal derived
12927 -- type, abstractness comes from the primitive operation of the
12928 -- actual, not from the operation inherited from the ancestor.
12929
12930 Set_Is_Abstract_Subprogram
12931 (New_Subp, Is_Abstract_Subprogram (Actual_Subp));
12932 end if;
12933 end if;
12934
12935 New_Overloaded_Entity (New_Subp, Derived_Type);
12936
12937 -- Check for case of a derived subprogram for the instantiation of a
12938 -- formal derived tagged type, if so mark the subprogram as dispatching
12939 -- and inherit the dispatching attributes of the parent subprogram. The
12940 -- derived subprogram is effectively renaming of the actual subprogram,
12941 -- so it needs to have the same attributes as the actual.
12942
12943 if Present (Actual_Subp)
12944 and then Is_Dispatching_Operation (Parent_Subp)
12945 then
12946 Set_Is_Dispatching_Operation (New_Subp);
12947
12948 if Present (DTC_Entity (Parent_Subp)) then
12949 Set_DTC_Entity (New_Subp, DTC_Entity (Parent_Subp));
12950 Set_DT_Position (New_Subp, DT_Position (Parent_Subp));
12951 end if;
12952 end if;
12953
12954 -- Indicate that a derived subprogram does not require a body and that
12955 -- it does not require processing of default expressions.
12956
12957 Set_Has_Completion (New_Subp);
12958 Set_Default_Expressions_Processed (New_Subp);
12959
12960 if Ekind (New_Subp) = E_Function then
12961 Set_Mechanism (New_Subp, Mechanism (Parent_Subp));
12962 end if;
12963 end Derive_Subprogram;
12964
12965 ------------------------
12966 -- Derive_Subprograms --
12967 ------------------------
12968
12969 procedure Derive_Subprograms
12970 (Parent_Type : Entity_Id;
12971 Derived_Type : Entity_Id;
12972 Generic_Actual : Entity_Id := Empty)
12973 is
12974 Op_List : constant Elist_Id :=
12975 Collect_Primitive_Operations (Parent_Type);
12976
12977 function Check_Derived_Type return Boolean;
12978 -- Check that all the entities derived from Parent_Type are found in
12979 -- the list of primitives of Derived_Type exactly in the same order.
12980
12981 procedure Derive_Interface_Subprogram
12982 (New_Subp : in out Entity_Id;
12983 Subp : Entity_Id;
12984 Actual_Subp : Entity_Id);
12985 -- Derive New_Subp from the ultimate alias of the parent subprogram Subp
12986 -- (which is an interface primitive). If Generic_Actual is present then
12987 -- Actual_Subp is the actual subprogram corresponding with the generic
12988 -- subprogram Subp.
12989
12990 function Check_Derived_Type return Boolean is
12991 E : Entity_Id;
12992 Elmt : Elmt_Id;
12993 List : Elist_Id;
12994 New_Subp : Entity_Id;
12995 Op_Elmt : Elmt_Id;
12996 Subp : Entity_Id;
12997
12998 begin
12999 -- Traverse list of entities in the current scope searching for
13000 -- an incomplete type whose full-view is derived type
13001
13002 E := First_Entity (Scope (Derived_Type));
13003 while Present (E)
13004 and then E /= Derived_Type
13005 loop
13006 if Ekind (E) = E_Incomplete_Type
13007 and then Present (Full_View (E))
13008 and then Full_View (E) = Derived_Type
13009 then
13010 -- Disable this test if Derived_Type completes an incomplete
13011 -- type because in such case more primitives can be added
13012 -- later to the list of primitives of Derived_Type by routine
13013 -- Process_Incomplete_Dependents
13014
13015 return True;
13016 end if;
13017
13018 E := Next_Entity (E);
13019 end loop;
13020
13021 List := Collect_Primitive_Operations (Derived_Type);
13022 Elmt := First_Elmt (List);
13023
13024 Op_Elmt := First_Elmt (Op_List);
13025 while Present (Op_Elmt) loop
13026 Subp := Node (Op_Elmt);
13027 New_Subp := Node (Elmt);
13028
13029 -- At this early stage Derived_Type has no entities with attribute
13030 -- Interface_Alias. In addition, such primitives are always
13031 -- located at the end of the list of primitives of Parent_Type.
13032 -- Therefore, if found we can safely stop processing pending
13033 -- entities.
13034
13035 exit when Present (Interface_Alias (Subp));
13036
13037 -- Handle hidden entities
13038
13039 if not Is_Predefined_Dispatching_Operation (Subp)
13040 and then Is_Hidden (Subp)
13041 then
13042 if Present (New_Subp)
13043 and then Primitive_Names_Match (Subp, New_Subp)
13044 then
13045 Next_Elmt (Elmt);
13046 end if;
13047
13048 else
13049 if not Present (New_Subp)
13050 or else Ekind (Subp) /= Ekind (New_Subp)
13051 or else not Primitive_Names_Match (Subp, New_Subp)
13052 then
13053 return False;
13054 end if;
13055
13056 Next_Elmt (Elmt);
13057 end if;
13058
13059 Next_Elmt (Op_Elmt);
13060 end loop;
13061
13062 return True;
13063 end Check_Derived_Type;
13064
13065 ---------------------------------
13066 -- Derive_Interface_Subprogram --
13067 ---------------------------------
13068
13069 procedure Derive_Interface_Subprogram
13070 (New_Subp : in out Entity_Id;
13071 Subp : Entity_Id;
13072 Actual_Subp : Entity_Id)
13073 is
13074 Iface_Subp : constant Entity_Id := Ultimate_Alias (Subp);
13075 Iface_Type : constant Entity_Id := Find_Dispatching_Type (Iface_Subp);
13076
13077 begin
13078 pragma Assert (Is_Interface (Iface_Type));
13079
13080 Derive_Subprogram
13081 (New_Subp => New_Subp,
13082 Parent_Subp => Iface_Subp,
13083 Derived_Type => Derived_Type,
13084 Parent_Type => Iface_Type,
13085 Actual_Subp => Actual_Subp);
13086
13087 -- Given that this new interface entity corresponds with a primitive
13088 -- of the parent that was not overridden we must leave it associated
13089 -- with its parent primitive to ensure that it will share the same
13090 -- dispatch table slot when overridden.
13091
13092 if No (Actual_Subp) then
13093 Set_Alias (New_Subp, Subp);
13094
13095 -- For instantiations this is not needed since the previous call to
13096 -- Derive_Subprogram leaves the entity well decorated.
13097
13098 else
13099 pragma Assert (Alias (New_Subp) = Actual_Subp);
13100 null;
13101 end if;
13102 end Derive_Interface_Subprogram;
13103
13104 -- Local variables
13105
13106 Alias_Subp : Entity_Id;
13107 Act_List : Elist_Id;
13108 Act_Elmt : Elmt_Id := No_Elmt;
13109 Act_Subp : Entity_Id := Empty;
13110 Elmt : Elmt_Id;
13111 Need_Search : Boolean := False;
13112 New_Subp : Entity_Id := Empty;
13113 Parent_Base : Entity_Id;
13114 Subp : Entity_Id;
13115
13116 -- Start of processing for Derive_Subprograms
13117
13118 begin
13119 if Ekind (Parent_Type) = E_Record_Type_With_Private
13120 and then Has_Discriminants (Parent_Type)
13121 and then Present (Full_View (Parent_Type))
13122 then
13123 Parent_Base := Full_View (Parent_Type);
13124 else
13125 Parent_Base := Parent_Type;
13126 end if;
13127
13128 if Present (Generic_Actual) then
13129 Act_List := Collect_Primitive_Operations (Generic_Actual);
13130 Act_Elmt := First_Elmt (Act_List);
13131 end if;
13132
13133 -- Derive primitives inherited from the parent. Note that if the generic
13134 -- actual is present, this is not really a type derivation, it is a
13135 -- completion within an instance.
13136
13137 -- Case 1: Derived_Type does not implement interfaces
13138
13139 if not Is_Tagged_Type (Derived_Type)
13140 or else (not Has_Interfaces (Derived_Type)
13141 and then not (Present (Generic_Actual)
13142 and then
13143 Has_Interfaces (Generic_Actual)))
13144 then
13145 Elmt := First_Elmt (Op_List);
13146 while Present (Elmt) loop
13147 Subp := Node (Elmt);
13148
13149 -- Literals are derived earlier in the process of building the
13150 -- derived type, and are skipped here.
13151
13152 if Ekind (Subp) = E_Enumeration_Literal then
13153 null;
13154
13155 -- The actual is a direct descendant and the common primitive
13156 -- operations appear in the same order.
13157
13158 -- If the generic parent type is present, the derived type is an
13159 -- instance of a formal derived type, and within the instance its
13160 -- operations are those of the actual. We derive from the formal
13161 -- type but make the inherited operations aliases of the
13162 -- corresponding operations of the actual.
13163
13164 else
13165 pragma Assert (No (Node (Act_Elmt))
13166 or else (Primitive_Names_Match (Subp, Node (Act_Elmt))
13167 and then
13168 Type_Conformant (Subp, Node (Act_Elmt),
13169 Skip_Controlling_Formals => True)));
13170
13171 Derive_Subprogram
13172 (New_Subp, Subp, Derived_Type, Parent_Base, Node (Act_Elmt));
13173
13174 if Present (Act_Elmt) then
13175 Next_Elmt (Act_Elmt);
13176 end if;
13177 end if;
13178
13179 Next_Elmt (Elmt);
13180 end loop;
13181
13182 -- Case 2: Derived_Type implements interfaces
13183
13184 else
13185 -- If the parent type has no predefined primitives we remove
13186 -- predefined primitives from the list of primitives of generic
13187 -- actual to simplify the complexity of this algorithm.
13188
13189 if Present (Generic_Actual) then
13190 declare
13191 Has_Predefined_Primitives : Boolean := False;
13192
13193 begin
13194 -- Check if the parent type has predefined primitives
13195
13196 Elmt := First_Elmt (Op_List);
13197 while Present (Elmt) loop
13198 Subp := Node (Elmt);
13199
13200 if Is_Predefined_Dispatching_Operation (Subp)
13201 and then not Comes_From_Source (Ultimate_Alias (Subp))
13202 then
13203 Has_Predefined_Primitives := True;
13204 exit;
13205 end if;
13206
13207 Next_Elmt (Elmt);
13208 end loop;
13209
13210 -- Remove predefined primitives of Generic_Actual. We must use
13211 -- an auxiliary list because in case of tagged types the value
13212 -- returned by Collect_Primitive_Operations is the value stored
13213 -- in its Primitive_Operations attribute (and we don't want to
13214 -- modify its current contents).
13215
13216 if not Has_Predefined_Primitives then
13217 declare
13218 Aux_List : constant Elist_Id := New_Elmt_List;
13219
13220 begin
13221 Elmt := First_Elmt (Act_List);
13222 while Present (Elmt) loop
13223 Subp := Node (Elmt);
13224
13225 if not Is_Predefined_Dispatching_Operation (Subp)
13226 or else Comes_From_Source (Subp)
13227 then
13228 Append_Elmt (Subp, Aux_List);
13229 end if;
13230
13231 Next_Elmt (Elmt);
13232 end loop;
13233
13234 Act_List := Aux_List;
13235 end;
13236 end if;
13237
13238 Act_Elmt := First_Elmt (Act_List);
13239 Act_Subp := Node (Act_Elmt);
13240 end;
13241 end if;
13242
13243 -- Stage 1: If the generic actual is not present we derive the
13244 -- primitives inherited from the parent type. If the generic parent
13245 -- type is present, the derived type is an instance of a formal
13246 -- derived type, and within the instance its operations are those of
13247 -- the actual. We derive from the formal type but make the inherited
13248 -- operations aliases of the corresponding operations of the actual.
13249
13250 Elmt := First_Elmt (Op_List);
13251 while Present (Elmt) loop
13252 Subp := Node (Elmt);
13253 Alias_Subp := Ultimate_Alias (Subp);
13254
13255 -- Do not derive internal entities of the parent that link
13256 -- interface primitives with their covering primitive. These
13257 -- entities will be added to this type when frozen.
13258
13259 if Present (Interface_Alias (Subp)) then
13260 goto Continue;
13261 end if;
13262
13263 -- If the generic actual is present find the corresponding
13264 -- operation in the generic actual. If the parent type is a
13265 -- direct ancestor of the derived type then, even if it is an
13266 -- interface, the operations are inherited from the primary
13267 -- dispatch table and are in the proper order. If we detect here
13268 -- that primitives are not in the same order we traverse the list
13269 -- of primitive operations of the actual to find the one that
13270 -- implements the interface primitive.
13271
13272 if Need_Search
13273 or else
13274 (Present (Generic_Actual)
13275 and then Present (Act_Subp)
13276 and then not
13277 (Primitive_Names_Match (Subp, Act_Subp)
13278 and then
13279 Type_Conformant (Subp, Act_Subp,
13280 Skip_Controlling_Formals => True)))
13281 then
13282 pragma Assert (not Is_Ancestor (Parent_Base, Generic_Actual));
13283
13284 -- Remember that we need searching for all pending primitives
13285
13286 Need_Search := True;
13287
13288 -- Handle entities associated with interface primitives
13289
13290 if Present (Alias_Subp)
13291 and then Is_Interface (Find_Dispatching_Type (Alias_Subp))
13292 and then not Is_Predefined_Dispatching_Operation (Subp)
13293 then
13294 -- Search for the primitive in the homonym chain
13295
13296 Act_Subp :=
13297 Find_Primitive_Covering_Interface
13298 (Tagged_Type => Generic_Actual,
13299 Iface_Prim => Alias_Subp);
13300
13301 -- Previous search may not locate primitives covering
13302 -- interfaces defined in generics units or instantiations.
13303 -- (it fails if the covering primitive has formals whose
13304 -- type is also defined in generics or instantiations).
13305 -- In such case we search in the list of primitives of the
13306 -- generic actual for the internal entity that links the
13307 -- interface primitive and the covering primitive.
13308
13309 if No (Act_Subp)
13310 and then Is_Generic_Type (Parent_Type)
13311 then
13312 -- This code has been designed to handle only generic
13313 -- formals that implement interfaces that are defined
13314 -- in a generic unit or instantiation. If this code is
13315 -- needed for other cases we must review it because
13316 -- (given that it relies on Original_Location to locate
13317 -- the primitive of Generic_Actual that covers the
13318 -- interface) it could leave linked through attribute
13319 -- Alias entities of unrelated instantiations).
13320
13321 pragma Assert
13322 (Is_Generic_Unit
13323 (Scope (Find_Dispatching_Type (Alias_Subp)))
13324 or else
13325 Instantiation_Depth
13326 (Sloc (Find_Dispatching_Type (Alias_Subp))) > 0);
13327
13328 declare
13329 Iface_Prim_Loc : constant Source_Ptr :=
13330 Original_Location (Sloc (Alias_Subp));
13331 Elmt : Elmt_Id;
13332 Prim : Entity_Id;
13333 begin
13334 Elmt :=
13335 First_Elmt (Primitive_Operations (Generic_Actual));
13336
13337 Search : while Present (Elmt) loop
13338 Prim := Node (Elmt);
13339
13340 if Present (Interface_Alias (Prim))
13341 and then Original_Location
13342 (Sloc (Interface_Alias (Prim)))
13343 = Iface_Prim_Loc
13344 then
13345 Act_Subp := Alias (Prim);
13346 exit Search;
13347 end if;
13348
13349 Next_Elmt (Elmt);
13350 end loop Search;
13351 end;
13352 end if;
13353
13354 pragma Assert (Present (Act_Subp)
13355 or else Is_Abstract_Type (Generic_Actual)
13356 or else Serious_Errors_Detected > 0);
13357
13358 -- Handle predefined primitives plus the rest of user-defined
13359 -- primitives
13360
13361 else
13362 Act_Elmt := First_Elmt (Act_List);
13363 while Present (Act_Elmt) loop
13364 Act_Subp := Node (Act_Elmt);
13365
13366 exit when Primitive_Names_Match (Subp, Act_Subp)
13367 and then Type_Conformant
13368 (Subp, Act_Subp,
13369 Skip_Controlling_Formals => True)
13370 and then No (Interface_Alias (Act_Subp));
13371
13372 Next_Elmt (Act_Elmt);
13373 end loop;
13374
13375 if No (Act_Elmt) then
13376 Act_Subp := Empty;
13377 end if;
13378 end if;
13379 end if;
13380
13381 -- Case 1: If the parent is a limited interface then it has the
13382 -- predefined primitives of synchronized interfaces. However, the
13383 -- actual type may be a non-limited type and hence it does not
13384 -- have such primitives.
13385
13386 if Present (Generic_Actual)
13387 and then not Present (Act_Subp)
13388 and then Is_Limited_Interface (Parent_Base)
13389 and then Is_Predefined_Interface_Primitive (Subp)
13390 then
13391 null;
13392
13393 -- Case 2: Inherit entities associated with interfaces that were
13394 -- not covered by the parent type. We exclude here null interface
13395 -- primitives because they do not need special management.
13396
13397 -- We also exclude interface operations that are renamings. If the
13398 -- subprogram is an explicit renaming of an interface primitive,
13399 -- it is a regular primitive operation, and the presence of its
13400 -- alias is not relevant: it has to be derived like any other
13401 -- primitive.
13402
13403 elsif Present (Alias (Subp))
13404 and then Nkind (Unit_Declaration_Node (Subp)) /=
13405 N_Subprogram_Renaming_Declaration
13406 and then Is_Interface (Find_Dispatching_Type (Alias_Subp))
13407 and then not
13408 (Nkind (Parent (Alias_Subp)) = N_Procedure_Specification
13409 and then Null_Present (Parent (Alias_Subp)))
13410 then
13411 -- If this is an abstract private type then we transfer the
13412 -- derivation of the interface primitive from the partial view
13413 -- to the full view. This is safe because all the interfaces
13414 -- must be visible in the partial view. Done to avoid adding
13415 -- a new interface derivation to the private part of the
13416 -- enclosing package; otherwise this new derivation would be
13417 -- decorated as hidden when the analysis of the enclosing
13418 -- package completes.
13419
13420 if Is_Abstract_Type (Derived_Type)
13421 and then In_Private_Part (Current_Scope)
13422 and then Has_Private_Declaration (Derived_Type)
13423 then
13424 declare
13425 Partial_View : Entity_Id;
13426 Elmt : Elmt_Id;
13427 Ent : Entity_Id;
13428
13429 begin
13430 Partial_View := First_Entity (Current_Scope);
13431 loop
13432 exit when No (Partial_View)
13433 or else (Has_Private_Declaration (Partial_View)
13434 and then
13435 Full_View (Partial_View) = Derived_Type);
13436
13437 Next_Entity (Partial_View);
13438 end loop;
13439
13440 -- If the partial view was not found then the source code
13441 -- has errors and the derivation is not needed.
13442
13443 if Present (Partial_View) then
13444 Elmt :=
13445 First_Elmt (Primitive_Operations (Partial_View));
13446 while Present (Elmt) loop
13447 Ent := Node (Elmt);
13448
13449 if Present (Alias (Ent))
13450 and then Ultimate_Alias (Ent) = Alias (Subp)
13451 then
13452 Append_Elmt
13453 (Ent, Primitive_Operations (Derived_Type));
13454 exit;
13455 end if;
13456
13457 Next_Elmt (Elmt);
13458 end loop;
13459
13460 -- If the interface primitive was not found in the
13461 -- partial view then this interface primitive was
13462 -- overridden. We add a derivation to activate in
13463 -- Derive_Progenitor_Subprograms the machinery to
13464 -- search for it.
13465
13466 if No (Elmt) then
13467 Derive_Interface_Subprogram
13468 (New_Subp => New_Subp,
13469 Subp => Subp,
13470 Actual_Subp => Act_Subp);
13471 end if;
13472 end if;
13473 end;
13474 else
13475 Derive_Interface_Subprogram
13476 (New_Subp => New_Subp,
13477 Subp => Subp,
13478 Actual_Subp => Act_Subp);
13479 end if;
13480
13481 -- Case 3: Common derivation
13482
13483 else
13484 Derive_Subprogram
13485 (New_Subp => New_Subp,
13486 Parent_Subp => Subp,
13487 Derived_Type => Derived_Type,
13488 Parent_Type => Parent_Base,
13489 Actual_Subp => Act_Subp);
13490 end if;
13491
13492 -- No need to update Act_Elm if we must search for the
13493 -- corresponding operation in the generic actual
13494
13495 if not Need_Search
13496 and then Present (Act_Elmt)
13497 then
13498 Next_Elmt (Act_Elmt);
13499 Act_Subp := Node (Act_Elmt);
13500 end if;
13501
13502 <<Continue>>
13503 Next_Elmt (Elmt);
13504 end loop;
13505
13506 -- Inherit additional operations from progenitors. If the derived
13507 -- type is a generic actual, there are not new primitive operations
13508 -- for the type because it has those of the actual, and therefore
13509 -- nothing needs to be done. The renamings generated above are not
13510 -- primitive operations, and their purpose is simply to make the
13511 -- proper operations visible within an instantiation.
13512
13513 if No (Generic_Actual) then
13514 Derive_Progenitor_Subprograms (Parent_Base, Derived_Type);
13515 end if;
13516 end if;
13517
13518 -- Final check: Direct descendants must have their primitives in the
13519 -- same order. We exclude from this test untagged types and instances
13520 -- of formal derived types. We skip this test if we have already
13521 -- reported serious errors in the sources.
13522
13523 pragma Assert (not Is_Tagged_Type (Derived_Type)
13524 or else Present (Generic_Actual)
13525 or else Serious_Errors_Detected > 0
13526 or else Check_Derived_Type);
13527 end Derive_Subprograms;
13528
13529 --------------------------------
13530 -- Derived_Standard_Character --
13531 --------------------------------
13532
13533 procedure Derived_Standard_Character
13534 (N : Node_Id;
13535 Parent_Type : Entity_Id;
13536 Derived_Type : Entity_Id)
13537 is
13538 Loc : constant Source_Ptr := Sloc (N);
13539 Def : constant Node_Id := Type_Definition (N);
13540 Indic : constant Node_Id := Subtype_Indication (Def);
13541 Parent_Base : constant Entity_Id := Base_Type (Parent_Type);
13542 Implicit_Base : constant Entity_Id :=
13543 Create_Itype
13544 (E_Enumeration_Type, N, Derived_Type, 'B');
13545
13546 Lo : Node_Id;
13547 Hi : Node_Id;
13548
13549 begin
13550 Discard_Node (Process_Subtype (Indic, N));
13551
13552 Set_Etype (Implicit_Base, Parent_Base);
13553 Set_Size_Info (Implicit_Base, Root_Type (Parent_Type));
13554 Set_RM_Size (Implicit_Base, RM_Size (Root_Type (Parent_Type)));
13555
13556 Set_Is_Character_Type (Implicit_Base, True);
13557 Set_Has_Delayed_Freeze (Implicit_Base);
13558
13559 -- The bounds of the implicit base are the bounds of the parent base.
13560 -- Note that their type is the parent base.
13561
13562 Lo := New_Copy_Tree (Type_Low_Bound (Parent_Base));
13563 Hi := New_Copy_Tree (Type_High_Bound (Parent_Base));
13564
13565 Set_Scalar_Range (Implicit_Base,
13566 Make_Range (Loc,
13567 Low_Bound => Lo,
13568 High_Bound => Hi));
13569
13570 Conditional_Delay (Derived_Type, Parent_Type);
13571
13572 Set_Ekind (Derived_Type, E_Enumeration_Subtype);
13573 Set_Etype (Derived_Type, Implicit_Base);
13574 Set_Size_Info (Derived_Type, Parent_Type);
13575
13576 if Unknown_RM_Size (Derived_Type) then
13577 Set_RM_Size (Derived_Type, RM_Size (Parent_Type));
13578 end if;
13579
13580 Set_Is_Character_Type (Derived_Type, True);
13581
13582 if Nkind (Indic) /= N_Subtype_Indication then
13583
13584 -- If no explicit constraint, the bounds are those
13585 -- of the parent type.
13586
13587 Lo := New_Copy_Tree (Type_Low_Bound (Parent_Type));
13588 Hi := New_Copy_Tree (Type_High_Bound (Parent_Type));
13589 Set_Scalar_Range (Derived_Type, Make_Range (Loc, Lo, Hi));
13590 end if;
13591
13592 Convert_Scalar_Bounds (N, Parent_Type, Derived_Type, Loc);
13593
13594 -- Because the implicit base is used in the conversion of the bounds, we
13595 -- have to freeze it now. This is similar to what is done for numeric
13596 -- types, and it equally suspicious, but otherwise a non-static bound
13597 -- will have a reference to an unfrozen type, which is rejected by Gigi
13598 -- (???). This requires specific care for definition of stream
13599 -- attributes. For details, see comments at the end of
13600 -- Build_Derived_Numeric_Type.
13601
13602 Freeze_Before (N, Implicit_Base);
13603 end Derived_Standard_Character;
13604
13605 ------------------------------
13606 -- Derived_Type_Declaration --
13607 ------------------------------
13608
13609 procedure Derived_Type_Declaration
13610 (T : Entity_Id;
13611 N : Node_Id;
13612 Is_Completion : Boolean)
13613 is
13614 Parent_Type : Entity_Id;
13615
13616 function Comes_From_Generic (Typ : Entity_Id) return Boolean;
13617 -- Check whether the parent type is a generic formal, or derives
13618 -- directly or indirectly from one.
13619
13620 ------------------------
13621 -- Comes_From_Generic --
13622 ------------------------
13623
13624 function Comes_From_Generic (Typ : Entity_Id) return Boolean is
13625 begin
13626 if Is_Generic_Type (Typ) then
13627 return True;
13628
13629 elsif Is_Generic_Type (Root_Type (Parent_Type)) then
13630 return True;
13631
13632 elsif Is_Private_Type (Typ)
13633 and then Present (Full_View (Typ))
13634 and then Is_Generic_Type (Root_Type (Full_View (Typ)))
13635 then
13636 return True;
13637
13638 elsif Is_Generic_Actual_Type (Typ) then
13639 return True;
13640
13641 else
13642 return False;
13643 end if;
13644 end Comes_From_Generic;
13645
13646 -- Local variables
13647
13648 Def : constant Node_Id := Type_Definition (N);
13649 Iface_Def : Node_Id;
13650 Indic : constant Node_Id := Subtype_Indication (Def);
13651 Extension : constant Node_Id := Record_Extension_Part (Def);
13652 Parent_Node : Node_Id;
13653 Parent_Scope : Entity_Id;
13654 Taggd : Boolean;
13655
13656 -- Start of processing for Derived_Type_Declaration
13657
13658 begin
13659 Parent_Type := Find_Type_Of_Subtype_Indic (Indic);
13660
13661 -- Ada 2005 (AI-251): In case of interface derivation check that the
13662 -- parent is also an interface.
13663
13664 if Interface_Present (Def) then
13665 if not Is_Interface (Parent_Type) then
13666 Diagnose_Interface (Indic, Parent_Type);
13667
13668 else
13669 Parent_Node := Parent (Base_Type (Parent_Type));
13670 Iface_Def := Type_Definition (Parent_Node);
13671
13672 -- Ada 2005 (AI-251): Limited interfaces can only inherit from
13673 -- other limited interfaces.
13674
13675 if Limited_Present (Def) then
13676 if Limited_Present (Iface_Def) then
13677 null;
13678
13679 elsif Protected_Present (Iface_Def) then
13680 Error_Msg_NE
13681 ("descendant of& must be declared"
13682 & " as a protected interface",
13683 N, Parent_Type);
13684
13685 elsif Synchronized_Present (Iface_Def) then
13686 Error_Msg_NE
13687 ("descendant of& must be declared"
13688 & " as a synchronized interface",
13689 N, Parent_Type);
13690
13691 elsif Task_Present (Iface_Def) then
13692 Error_Msg_NE
13693 ("descendant of& must be declared as a task interface",
13694 N, Parent_Type);
13695
13696 else
13697 Error_Msg_N
13698 ("(Ada 2005) limited interface cannot "
13699 & "inherit from non-limited interface", Indic);
13700 end if;
13701
13702 -- Ada 2005 (AI-345): Non-limited interfaces can only inherit
13703 -- from non-limited or limited interfaces.
13704
13705 elsif not Protected_Present (Def)
13706 and then not Synchronized_Present (Def)
13707 and then not Task_Present (Def)
13708 then
13709 if Limited_Present (Iface_Def) then
13710 null;
13711
13712 elsif Protected_Present (Iface_Def) then
13713 Error_Msg_NE
13714 ("descendant of& must be declared"
13715 & " as a protected interface",
13716 N, Parent_Type);
13717
13718 elsif Synchronized_Present (Iface_Def) then
13719 Error_Msg_NE
13720 ("descendant of& must be declared"
13721 & " as a synchronized interface",
13722 N, Parent_Type);
13723
13724 elsif Task_Present (Iface_Def) then
13725 Error_Msg_NE
13726 ("descendant of& must be declared as a task interface",
13727 N, Parent_Type);
13728 else
13729 null;
13730 end if;
13731 end if;
13732 end if;
13733 end if;
13734
13735 if Is_Tagged_Type (Parent_Type)
13736 and then Is_Concurrent_Type (Parent_Type)
13737 and then not Is_Interface (Parent_Type)
13738 then
13739 Error_Msg_N
13740 ("parent type of a record extension cannot be "
13741 & "a synchronized tagged type (RM 3.9.1 (3/1))", N);
13742 Set_Etype (T, Any_Type);
13743 return;
13744 end if;
13745
13746 -- Ada 2005 (AI-251): Decorate all the names in the list of ancestor
13747 -- interfaces
13748
13749 if Is_Tagged_Type (Parent_Type)
13750 and then Is_Non_Empty_List (Interface_List (Def))
13751 then
13752 declare
13753 Intf : Node_Id;
13754 T : Entity_Id;
13755
13756 begin
13757 Intf := First (Interface_List (Def));
13758 while Present (Intf) loop
13759 T := Find_Type_Of_Subtype_Indic (Intf);
13760
13761 if not Is_Interface (T) then
13762 Diagnose_Interface (Intf, T);
13763
13764 -- Check the rules of 3.9.4(12/2) and 7.5(2/2) that disallow
13765 -- a limited type from having a nonlimited progenitor.
13766
13767 elsif (Limited_Present (Def)
13768 or else (not Is_Interface (Parent_Type)
13769 and then Is_Limited_Type (Parent_Type)))
13770 and then not Is_Limited_Interface (T)
13771 then
13772 Error_Msg_NE
13773 ("progenitor interface& of limited type must be limited",
13774 N, T);
13775 end if;
13776
13777 Next (Intf);
13778 end loop;
13779 end;
13780 end if;
13781
13782 if Parent_Type = Any_Type
13783 or else Etype (Parent_Type) = Any_Type
13784 or else (Is_Class_Wide_Type (Parent_Type)
13785 and then Etype (Parent_Type) = T)
13786 then
13787 -- If Parent_Type is undefined or illegal, make new type into a
13788 -- subtype of Any_Type, and set a few attributes to prevent cascaded
13789 -- errors. If this is a self-definition, emit error now.
13790
13791 if T = Parent_Type
13792 or else T = Etype (Parent_Type)
13793 then
13794 Error_Msg_N ("type cannot be used in its own definition", Indic);
13795 end if;
13796
13797 Set_Ekind (T, Ekind (Parent_Type));
13798 Set_Etype (T, Any_Type);
13799 Set_Scalar_Range (T, Scalar_Range (Any_Type));
13800
13801 if Is_Tagged_Type (T)
13802 and then Is_Record_Type (T)
13803 then
13804 Set_Direct_Primitive_Operations (T, New_Elmt_List);
13805 end if;
13806
13807 return;
13808 end if;
13809
13810 -- Ada 2005 (AI-251): The case in which the parent of the full-view is
13811 -- an interface is special because the list of interfaces in the full
13812 -- view can be given in any order. For example:
13813
13814 -- type A is interface;
13815 -- type B is interface and A;
13816 -- type D is new B with private;
13817 -- private
13818 -- type D is new A and B with null record; -- 1 --
13819
13820 -- In this case we perform the following transformation of -1-:
13821
13822 -- type D is new B and A with null record;
13823
13824 -- If the parent of the full-view covers the parent of the partial-view
13825 -- we have two possible cases:
13826
13827 -- 1) They have the same parent
13828 -- 2) The parent of the full-view implements some further interfaces
13829
13830 -- In both cases we do not need to perform the transformation. In the
13831 -- first case the source program is correct and the transformation is
13832 -- not needed; in the second case the source program does not fulfill
13833 -- the no-hidden interfaces rule (AI-396) and the error will be reported
13834 -- later.
13835
13836 -- This transformation not only simplifies the rest of the analysis of
13837 -- this type declaration but also simplifies the correct generation of
13838 -- the object layout to the expander.
13839
13840 if In_Private_Part (Current_Scope)
13841 and then Is_Interface (Parent_Type)
13842 then
13843 declare
13844 Iface : Node_Id;
13845 Partial_View : Entity_Id;
13846 Partial_View_Parent : Entity_Id;
13847 New_Iface : Node_Id;
13848
13849 begin
13850 -- Look for the associated private type declaration
13851
13852 Partial_View := First_Entity (Current_Scope);
13853 loop
13854 exit when No (Partial_View)
13855 or else (Has_Private_Declaration (Partial_View)
13856 and then Full_View (Partial_View) = T);
13857
13858 Next_Entity (Partial_View);
13859 end loop;
13860
13861 -- If the partial view was not found then the source code has
13862 -- errors and the transformation is not needed.
13863
13864 if Present (Partial_View) then
13865 Partial_View_Parent := Etype (Partial_View);
13866
13867 -- If the parent of the full-view covers the parent of the
13868 -- partial-view we have nothing else to do.
13869
13870 if Interface_Present_In_Ancestor
13871 (Parent_Type, Partial_View_Parent)
13872 then
13873 null;
13874
13875 -- Traverse the list of interfaces of the full-view to look
13876 -- for the parent of the partial-view and perform the tree
13877 -- transformation.
13878
13879 else
13880 Iface := First (Interface_List (Def));
13881 while Present (Iface) loop
13882 if Etype (Iface) = Etype (Partial_View) then
13883 Rewrite (Subtype_Indication (Def),
13884 New_Copy (Subtype_Indication
13885 (Parent (Partial_View))));
13886
13887 New_Iface := Make_Identifier (Sloc (N),
13888 Chars (Parent_Type));
13889 Append (New_Iface, Interface_List (Def));
13890
13891 -- Analyze the transformed code
13892
13893 Derived_Type_Declaration (T, N, Is_Completion);
13894 return;
13895 end if;
13896
13897 Next (Iface);
13898 end loop;
13899 end if;
13900 end if;
13901 end;
13902 end if;
13903
13904 -- Only composite types other than array types are allowed to have
13905 -- discriminants.
13906
13907 if Present (Discriminant_Specifications (N))
13908 and then (Is_Elementary_Type (Parent_Type)
13909 or else Is_Array_Type (Parent_Type))
13910 and then not Error_Posted (N)
13911 then
13912 Error_Msg_N
13913 ("elementary or array type cannot have discriminants",
13914 Defining_Identifier (First (Discriminant_Specifications (N))));
13915 Set_Has_Discriminants (T, False);
13916 end if;
13917
13918 -- In Ada 83, a derived type defined in a package specification cannot
13919 -- be used for further derivation until the end of its visible part.
13920 -- Note that derivation in the private part of the package is allowed.
13921
13922 if Ada_Version = Ada_83
13923 and then Is_Derived_Type (Parent_Type)
13924 and then In_Visible_Part (Scope (Parent_Type))
13925 then
13926 if Ada_Version = Ada_83 and then Comes_From_Source (Indic) then
13927 Error_Msg_N
13928 ("(Ada 83): premature use of type for derivation", Indic);
13929 end if;
13930 end if;
13931
13932 -- Check for early use of incomplete or private type
13933
13934 if Ekind_In (Parent_Type, E_Void, E_Incomplete_Type) then
13935 Error_Msg_N ("premature derivation of incomplete type", Indic);
13936 return;
13937
13938 elsif (Is_Incomplete_Or_Private_Type (Parent_Type)
13939 and then not Comes_From_Generic (Parent_Type))
13940 or else Has_Private_Component (Parent_Type)
13941 then
13942 -- The ancestor type of a formal type can be incomplete, in which
13943 -- case only the operations of the partial view are available in
13944 -- the generic. Subsequent checks may be required when the full
13945 -- view is analyzed, to verify that derivation from a tagged type
13946 -- has an extension.
13947
13948 if Nkind (Original_Node (N)) = N_Formal_Type_Declaration then
13949 null;
13950
13951 elsif No (Underlying_Type (Parent_Type))
13952 or else Has_Private_Component (Parent_Type)
13953 then
13954 Error_Msg_N
13955 ("premature derivation of derived or private type", Indic);
13956
13957 -- Flag the type itself as being in error, this prevents some
13958 -- nasty problems with subsequent uses of the malformed type.
13959
13960 Set_Error_Posted (T);
13961
13962 -- Check that within the immediate scope of an untagged partial
13963 -- view it's illegal to derive from the partial view if the
13964 -- full view is tagged. (7.3(7))
13965
13966 -- We verify that the Parent_Type is a partial view by checking
13967 -- that it is not a Full_Type_Declaration (i.e. a private type or
13968 -- private extension declaration), to distinguish a partial view
13969 -- from a derivation from a private type which also appears as
13970 -- E_Private_Type.
13971
13972 elsif Present (Full_View (Parent_Type))
13973 and then Nkind (Parent (Parent_Type)) /= N_Full_Type_Declaration
13974 and then not Is_Tagged_Type (Parent_Type)
13975 and then Is_Tagged_Type (Full_View (Parent_Type))
13976 then
13977 Parent_Scope := Scope (T);
13978 while Present (Parent_Scope)
13979 and then Parent_Scope /= Standard_Standard
13980 loop
13981 if Parent_Scope = Scope (Parent_Type) then
13982 Error_Msg_N
13983 ("premature derivation from type with tagged full view",
13984 Indic);
13985 end if;
13986
13987 Parent_Scope := Scope (Parent_Scope);
13988 end loop;
13989 end if;
13990 end if;
13991
13992 -- Check that form of derivation is appropriate
13993
13994 Taggd := Is_Tagged_Type (Parent_Type);
13995
13996 -- Perhaps the parent type should be changed to the class-wide type's
13997 -- specific type in this case to prevent cascading errors ???
13998
13999 if Present (Extension) and then Is_Class_Wide_Type (Parent_Type) then
14000 Error_Msg_N ("parent type must not be a class-wide type", Indic);
14001 return;
14002 end if;
14003
14004 if Present (Extension) and then not Taggd then
14005 Error_Msg_N
14006 ("type derived from untagged type cannot have extension", Indic);
14007
14008 elsif No (Extension) and then Taggd then
14009
14010 -- If this declaration is within a private part (or body) of a
14011 -- generic instantiation then the derivation is allowed (the parent
14012 -- type can only appear tagged in this case if it's a generic actual
14013 -- type, since it would otherwise have been rejected in the analysis
14014 -- of the generic template).
14015
14016 if not Is_Generic_Actual_Type (Parent_Type)
14017 or else In_Visible_Part (Scope (Parent_Type))
14018 then
14019 if Is_Class_Wide_Type (Parent_Type) then
14020 Error_Msg_N
14021 ("parent type must not be a class-wide type", Indic);
14022
14023 -- Use specific type to prevent cascaded errors.
14024
14025 Parent_Type := Etype (Parent_Type);
14026
14027 else
14028 Error_Msg_N
14029 ("type derived from tagged type must have extension", Indic);
14030 end if;
14031 end if;
14032 end if;
14033
14034 -- AI-443: Synchronized formal derived types require a private
14035 -- extension. There is no point in checking the ancestor type or
14036 -- the progenitors since the construct is wrong to begin with.
14037
14038 if Ada_Version >= Ada_2005
14039 and then Is_Generic_Type (T)
14040 and then Present (Original_Node (N))
14041 then
14042 declare
14043 Decl : constant Node_Id := Original_Node (N);
14044
14045 begin
14046 if Nkind (Decl) = N_Formal_Type_Declaration
14047 and then Nkind (Formal_Type_Definition (Decl)) =
14048 N_Formal_Derived_Type_Definition
14049 and then Synchronized_Present (Formal_Type_Definition (Decl))
14050 and then No (Extension)
14051
14052 -- Avoid emitting a duplicate error message
14053
14054 and then not Error_Posted (Indic)
14055 then
14056 Error_Msg_N
14057 ("synchronized derived type must have extension", N);
14058 end if;
14059 end;
14060 end if;
14061
14062 if Null_Exclusion_Present (Def)
14063 and then not Is_Access_Type (Parent_Type)
14064 then
14065 Error_Msg_N ("null exclusion can only apply to an access type", N);
14066 end if;
14067
14068 -- Avoid deriving parent primitives of underlying record views
14069
14070 Build_Derived_Type (N, Parent_Type, T, Is_Completion,
14071 Derive_Subps => not Is_Underlying_Record_View (T));
14072
14073 -- AI-419: The parent type of an explicitly limited derived type must
14074 -- be a limited type or a limited interface.
14075
14076 if Limited_Present (Def) then
14077 Set_Is_Limited_Record (T);
14078
14079 if Is_Interface (T) then
14080 Set_Is_Limited_Interface (T);
14081 end if;
14082
14083 if not Is_Limited_Type (Parent_Type)
14084 and then
14085 (not Is_Interface (Parent_Type)
14086 or else not Is_Limited_Interface (Parent_Type))
14087 then
14088 -- AI05-0096: a derivation in the private part of an instance is
14089 -- legal if the generic formal is untagged limited, and the actual
14090 -- is non-limited.
14091
14092 if Is_Generic_Actual_Type (Parent_Type)
14093 and then In_Private_Part (Current_Scope)
14094 and then
14095 not Is_Tagged_Type
14096 (Generic_Parent_Type (Parent (Parent_Type)))
14097 then
14098 null;
14099
14100 else
14101 Error_Msg_NE
14102 ("parent type& of limited type must be limited",
14103 N, Parent_Type);
14104 end if;
14105 end if;
14106 end if;
14107 end Derived_Type_Declaration;
14108
14109 ------------------------
14110 -- Diagnose_Interface --
14111 ------------------------
14112
14113 procedure Diagnose_Interface (N : Node_Id; E : Entity_Id) is
14114 begin
14115 if not Is_Interface (E)
14116 and then E /= Any_Type
14117 then
14118 Error_Msg_NE ("(Ada 2005) & must be an interface", N, E);
14119 end if;
14120 end Diagnose_Interface;
14121
14122 ----------------------------------
14123 -- Enumeration_Type_Declaration --
14124 ----------------------------------
14125
14126 procedure Enumeration_Type_Declaration (T : Entity_Id; Def : Node_Id) is
14127 Ev : Uint;
14128 L : Node_Id;
14129 R_Node : Node_Id;
14130 B_Node : Node_Id;
14131
14132 begin
14133 -- Create identifier node representing lower bound
14134
14135 B_Node := New_Node (N_Identifier, Sloc (Def));
14136 L := First (Literals (Def));
14137 Set_Chars (B_Node, Chars (L));
14138 Set_Entity (B_Node, L);
14139 Set_Etype (B_Node, T);
14140 Set_Is_Static_Expression (B_Node, True);
14141
14142 R_Node := New_Node (N_Range, Sloc (Def));
14143 Set_Low_Bound (R_Node, B_Node);
14144
14145 Set_Ekind (T, E_Enumeration_Type);
14146 Set_First_Literal (T, L);
14147 Set_Etype (T, T);
14148 Set_Is_Constrained (T);
14149
14150 Ev := Uint_0;
14151
14152 -- Loop through literals of enumeration type setting pos and rep values
14153 -- except that if the Ekind is already set, then it means the literal
14154 -- was already constructed (case of a derived type declaration and we
14155 -- should not disturb the Pos and Rep values.
14156
14157 while Present (L) loop
14158 if Ekind (L) /= E_Enumeration_Literal then
14159 Set_Ekind (L, E_Enumeration_Literal);
14160 Set_Enumeration_Pos (L, Ev);
14161 Set_Enumeration_Rep (L, Ev);
14162 Set_Is_Known_Valid (L, True);
14163 end if;
14164
14165 Set_Etype (L, T);
14166 New_Overloaded_Entity (L);
14167 Generate_Definition (L);
14168 Set_Convention (L, Convention_Intrinsic);
14169
14170 -- Case of character literal
14171
14172 if Nkind (L) = N_Defining_Character_Literal then
14173 Set_Is_Character_Type (T, True);
14174
14175 -- Check violation of No_Wide_Characters
14176
14177 if Restriction_Check_Required (No_Wide_Characters) then
14178 Get_Name_String (Chars (L));
14179
14180 if Name_Len >= 3 and then Name_Buffer (1 .. 2) = "QW" then
14181 Check_Restriction (No_Wide_Characters, L);
14182 end if;
14183 end if;
14184 end if;
14185
14186 Ev := Ev + 1;
14187 Next (L);
14188 end loop;
14189
14190 -- Now create a node representing upper bound
14191
14192 B_Node := New_Node (N_Identifier, Sloc (Def));
14193 Set_Chars (B_Node, Chars (Last (Literals (Def))));
14194 Set_Entity (B_Node, Last (Literals (Def)));
14195 Set_Etype (B_Node, T);
14196 Set_Is_Static_Expression (B_Node, True);
14197
14198 Set_High_Bound (R_Node, B_Node);
14199
14200 -- Initialize various fields of the type. Some of this information
14201 -- may be overwritten later through rep.clauses.
14202
14203 Set_Scalar_Range (T, R_Node);
14204 Set_RM_Size (T, UI_From_Int (Minimum_Size (T)));
14205 Set_Enum_Esize (T);
14206 Set_Enum_Pos_To_Rep (T, Empty);
14207
14208 -- Set Discard_Names if configuration pragma set, or if there is
14209 -- a parameterless pragma in the current declarative region
14210
14211 if Global_Discard_Names
14212 or else Discard_Names (Scope (T))
14213 then
14214 Set_Discard_Names (T);
14215 end if;
14216
14217 -- Process end label if there is one
14218
14219 if Present (Def) then
14220 Process_End_Label (Def, 'e', T);
14221 end if;
14222 end Enumeration_Type_Declaration;
14223
14224 ---------------------------------
14225 -- Expand_To_Stored_Constraint --
14226 ---------------------------------
14227
14228 function Expand_To_Stored_Constraint
14229 (Typ : Entity_Id;
14230 Constraint : Elist_Id) return Elist_Id
14231 is
14232 Explicitly_Discriminated_Type : Entity_Id;
14233 Expansion : Elist_Id;
14234 Discriminant : Entity_Id;
14235
14236 function Type_With_Explicit_Discrims (Id : Entity_Id) return Entity_Id;
14237 -- Find the nearest type that actually specifies discriminants
14238
14239 ---------------------------------
14240 -- Type_With_Explicit_Discrims --
14241 ---------------------------------
14242
14243 function Type_With_Explicit_Discrims (Id : Entity_Id) return Entity_Id is
14244 Typ : constant E := Base_Type (Id);
14245
14246 begin
14247 if Ekind (Typ) in Incomplete_Or_Private_Kind then
14248 if Present (Full_View (Typ)) then
14249 return Type_With_Explicit_Discrims (Full_View (Typ));
14250 end if;
14251
14252 else
14253 if Has_Discriminants (Typ) then
14254 return Typ;
14255 end if;
14256 end if;
14257
14258 if Etype (Typ) = Typ then
14259 return Empty;
14260 elsif Has_Discriminants (Typ) then
14261 return Typ;
14262 else
14263 return Type_With_Explicit_Discrims (Etype (Typ));
14264 end if;
14265
14266 end Type_With_Explicit_Discrims;
14267
14268 -- Start of processing for Expand_To_Stored_Constraint
14269
14270 begin
14271 if No (Constraint)
14272 or else Is_Empty_Elmt_List (Constraint)
14273 then
14274 return No_Elist;
14275 end if;
14276
14277 Explicitly_Discriminated_Type := Type_With_Explicit_Discrims (Typ);
14278
14279 if No (Explicitly_Discriminated_Type) then
14280 return No_Elist;
14281 end if;
14282
14283 Expansion := New_Elmt_List;
14284
14285 Discriminant :=
14286 First_Stored_Discriminant (Explicitly_Discriminated_Type);
14287 while Present (Discriminant) loop
14288 Append_Elmt (
14289 Get_Discriminant_Value (
14290 Discriminant, Explicitly_Discriminated_Type, Constraint),
14291 Expansion);
14292 Next_Stored_Discriminant (Discriminant);
14293 end loop;
14294
14295 return Expansion;
14296 end Expand_To_Stored_Constraint;
14297
14298 ---------------------------
14299 -- Find_Hidden_Interface --
14300 ---------------------------
14301
14302 function Find_Hidden_Interface
14303 (Src : Elist_Id;
14304 Dest : Elist_Id) return Entity_Id
14305 is
14306 Iface : Entity_Id;
14307 Iface_Elmt : Elmt_Id;
14308
14309 begin
14310 if Present (Src) and then Present (Dest) then
14311 Iface_Elmt := First_Elmt (Src);
14312 while Present (Iface_Elmt) loop
14313 Iface := Node (Iface_Elmt);
14314
14315 if Is_Interface (Iface)
14316 and then not Contain_Interface (Iface, Dest)
14317 then
14318 return Iface;
14319 end if;
14320
14321 Next_Elmt (Iface_Elmt);
14322 end loop;
14323 end if;
14324
14325 return Empty;
14326 end Find_Hidden_Interface;
14327
14328 --------------------
14329 -- Find_Type_Name --
14330 --------------------
14331
14332 function Find_Type_Name (N : Node_Id) return Entity_Id is
14333 Id : constant Entity_Id := Defining_Identifier (N);
14334 Prev : Entity_Id;
14335 New_Id : Entity_Id;
14336 Prev_Par : Node_Id;
14337
14338 procedure Tag_Mismatch;
14339 -- Diagnose a tagged partial view whose full view is untagged.
14340 -- We post the message on the full view, with a reference to
14341 -- the previous partial view. The partial view can be private
14342 -- or incomplete, and these are handled in a different manner,
14343 -- so we determine the position of the error message from the
14344 -- respective slocs of both.
14345
14346 ------------------
14347 -- Tag_Mismatch --
14348 ------------------
14349
14350 procedure Tag_Mismatch is
14351 begin
14352 if Sloc (Prev) < Sloc (Id) then
14353 if Ada_Version >= Ada_2012
14354 and then Nkind (N) = N_Private_Type_Declaration
14355 then
14356 Error_Msg_NE
14357 ("declaration of private } must be a tagged type ", Id, Prev);
14358 else
14359 Error_Msg_NE
14360 ("full declaration of } must be a tagged type ", Id, Prev);
14361 end if;
14362 else
14363 if Ada_Version >= Ada_2012
14364 and then Nkind (N) = N_Private_Type_Declaration
14365 then
14366 Error_Msg_NE
14367 ("declaration of private } must be a tagged type ", Prev, Id);
14368 else
14369 Error_Msg_NE
14370 ("full declaration of } must be a tagged type ", Prev, Id);
14371 end if;
14372 end if;
14373 end Tag_Mismatch;
14374
14375 -- Start of processing for Find_Type_Name
14376
14377 begin
14378 -- Find incomplete declaration, if one was given
14379
14380 Prev := Current_Entity_In_Scope (Id);
14381
14382 -- New type declaration
14383
14384 if No (Prev) then
14385 Enter_Name (Id);
14386 return Id;
14387
14388 -- Previous declaration exists
14389
14390 else
14391 Prev_Par := Parent (Prev);
14392
14393 -- Error if not incomplete/private case except if previous
14394 -- declaration is implicit, etc. Enter_Name will emit error if
14395 -- appropriate.
14396
14397 if not Is_Incomplete_Or_Private_Type (Prev) then
14398 Enter_Name (Id);
14399 New_Id := Id;
14400
14401 -- Check invalid completion of private or incomplete type
14402
14403 elsif not Nkind_In (N, N_Full_Type_Declaration,
14404 N_Task_Type_Declaration,
14405 N_Protected_Type_Declaration)
14406 and then
14407 (Ada_Version < Ada_2012
14408 or else not Is_Incomplete_Type (Prev)
14409 or else not Nkind_In (N, N_Private_Type_Declaration,
14410 N_Private_Extension_Declaration))
14411 then
14412 -- Completion must be a full type declarations (RM 7.3(4))
14413
14414 Error_Msg_Sloc := Sloc (Prev);
14415 Error_Msg_NE ("invalid completion of }", Id, Prev);
14416
14417 -- Set scope of Id to avoid cascaded errors. Entity is never
14418 -- examined again, except when saving globals in generics.
14419
14420 Set_Scope (Id, Current_Scope);
14421 New_Id := Id;
14422
14423 -- If this is a repeated incomplete declaration, no further
14424 -- checks are possible.
14425
14426 if Nkind (N) = N_Incomplete_Type_Declaration then
14427 return Prev;
14428 end if;
14429
14430 -- Case of full declaration of incomplete type
14431
14432 elsif Ekind (Prev) = E_Incomplete_Type
14433 and then (Ada_Version < Ada_2012
14434 or else No (Full_View (Prev))
14435 or else not Is_Private_Type (Full_View (Prev)))
14436 then
14437
14438 -- Indicate that the incomplete declaration has a matching full
14439 -- declaration. The defining occurrence of the incomplete
14440 -- declaration remains the visible one, and the procedure
14441 -- Get_Full_View dereferences it whenever the type is used.
14442
14443 if Present (Full_View (Prev)) then
14444 Error_Msg_NE ("invalid redeclaration of }", Id, Prev);
14445 end if;
14446
14447 Set_Full_View (Prev, Id);
14448 Append_Entity (Id, Current_Scope);
14449 Set_Is_Public (Id, Is_Public (Prev));
14450 Set_Is_Internal (Id);
14451 New_Id := Prev;
14452
14453 -- If the incomplete view is tagged, a class_wide type has been
14454 -- created already. Use it for the private type as well, in order
14455 -- to prevent multiple incompatible class-wide types that may be
14456 -- created for self-referential anonymous access components.
14457
14458 if Is_Tagged_Type (Prev)
14459 and then Present (Class_Wide_Type (Prev))
14460 then
14461 Set_Ekind (Id, Ekind (Prev)); -- will be reset later
14462 Set_Class_Wide_Type (Id, Class_Wide_Type (Prev));
14463 Set_Etype (Class_Wide_Type (Id), Id);
14464 end if;
14465
14466 -- Case of full declaration of private type
14467
14468 else
14469 -- If the private type was a completion of an incomplete type then
14470 -- update Prev to reference the private type
14471
14472 if Ada_Version >= Ada_2012
14473 and then Ekind (Prev) = E_Incomplete_Type
14474 and then Present (Full_View (Prev))
14475 and then Is_Private_Type (Full_View (Prev))
14476 then
14477 Prev := Full_View (Prev);
14478 Prev_Par := Parent (Prev);
14479 end if;
14480
14481 if Nkind (Parent (Prev)) /= N_Private_Extension_Declaration then
14482 if Etype (Prev) /= Prev then
14483
14484 -- Prev is a private subtype or a derived type, and needs
14485 -- no completion.
14486
14487 Error_Msg_NE ("invalid redeclaration of }", Id, Prev);
14488 New_Id := Id;
14489
14490 elsif Ekind (Prev) = E_Private_Type
14491 and then Nkind_In (N, N_Task_Type_Declaration,
14492 N_Protected_Type_Declaration)
14493 then
14494 Error_Msg_N
14495 ("completion of nonlimited type cannot be limited", N);
14496
14497 elsif Ekind (Prev) = E_Record_Type_With_Private
14498 and then Nkind_In (N, N_Task_Type_Declaration,
14499 N_Protected_Type_Declaration)
14500 then
14501 if not Is_Limited_Record (Prev) then
14502 Error_Msg_N
14503 ("completion of nonlimited type cannot be limited", N);
14504
14505 elsif No (Interface_List (N)) then
14506 Error_Msg_N
14507 ("completion of tagged private type must be tagged",
14508 N);
14509 end if;
14510
14511 elsif Nkind (N) = N_Full_Type_Declaration
14512 and then
14513 Nkind (Type_Definition (N)) = N_Record_Definition
14514 and then Interface_Present (Type_Definition (N))
14515 then
14516 Error_Msg_N
14517 ("completion of private type cannot be an interface", N);
14518 end if;
14519
14520 -- Ada 2005 (AI-251): Private extension declaration of a task
14521 -- type or a protected type. This case arises when covering
14522 -- interface types.
14523
14524 elsif Nkind_In (N, N_Task_Type_Declaration,
14525 N_Protected_Type_Declaration)
14526 then
14527 null;
14528
14529 elsif Nkind (N) /= N_Full_Type_Declaration
14530 or else Nkind (Type_Definition (N)) /= N_Derived_Type_Definition
14531 then
14532 Error_Msg_N
14533 ("full view of private extension must be an extension", N);
14534
14535 elsif not (Abstract_Present (Parent (Prev)))
14536 and then Abstract_Present (Type_Definition (N))
14537 then
14538 Error_Msg_N
14539 ("full view of non-abstract extension cannot be abstract", N);
14540 end if;
14541
14542 if not In_Private_Part (Current_Scope) then
14543 Error_Msg_N
14544 ("declaration of full view must appear in private part", N);
14545 end if;
14546
14547 Copy_And_Swap (Prev, Id);
14548 Set_Has_Private_Declaration (Prev);
14549 Set_Has_Private_Declaration (Id);
14550
14551 -- If no error, propagate freeze_node from private to full view.
14552 -- It may have been generated for an early operational item.
14553
14554 if Present (Freeze_Node (Id))
14555 and then Serious_Errors_Detected = 0
14556 and then No (Full_View (Id))
14557 then
14558 Set_Freeze_Node (Prev, Freeze_Node (Id));
14559 Set_Freeze_Node (Id, Empty);
14560 Set_First_Rep_Item (Prev, First_Rep_Item (Id));
14561 end if;
14562
14563 Set_Full_View (Id, Prev);
14564 New_Id := Prev;
14565 end if;
14566
14567 -- Verify that full declaration conforms to partial one
14568
14569 if Is_Incomplete_Or_Private_Type (Prev)
14570 and then Present (Discriminant_Specifications (Prev_Par))
14571 then
14572 if Present (Discriminant_Specifications (N)) then
14573 if Ekind (Prev) = E_Incomplete_Type then
14574 Check_Discriminant_Conformance (N, Prev, Prev);
14575 else
14576 Check_Discriminant_Conformance (N, Prev, Id);
14577 end if;
14578
14579 else
14580 Error_Msg_N
14581 ("missing discriminants in full type declaration", N);
14582
14583 -- To avoid cascaded errors on subsequent use, share the
14584 -- discriminants of the partial view.
14585
14586 Set_Discriminant_Specifications (N,
14587 Discriminant_Specifications (Prev_Par));
14588 end if;
14589 end if;
14590
14591 -- A prior untagged partial view can have an associated class-wide
14592 -- type due to use of the class attribute, and in this case the full
14593 -- type must also be tagged. This Ada 95 usage is deprecated in favor
14594 -- of incomplete tagged declarations, but we check for it.
14595
14596 if Is_Type (Prev)
14597 and then (Is_Tagged_Type (Prev)
14598 or else Present (Class_Wide_Type (Prev)))
14599 then
14600 -- Ada 2012 (AI05-0162): A private type may be the completion of
14601 -- an incomplete type
14602
14603 if Ada_Version >= Ada_2012
14604 and then Is_Incomplete_Type (Prev)
14605 and then Nkind_In (N, N_Private_Type_Declaration,
14606 N_Private_Extension_Declaration)
14607 then
14608 -- No need to check private extensions since they are tagged
14609
14610 if Nkind (N) = N_Private_Type_Declaration
14611 and then not Tagged_Present (N)
14612 then
14613 Tag_Mismatch;
14614 end if;
14615
14616 -- The full declaration is either a tagged type (including
14617 -- a synchronized type that implements interfaces) or a
14618 -- type extension, otherwise this is an error.
14619
14620 elsif Nkind_In (N, N_Task_Type_Declaration,
14621 N_Protected_Type_Declaration)
14622 then
14623 if No (Interface_List (N))
14624 and then not Error_Posted (N)
14625 then
14626 Tag_Mismatch;
14627 end if;
14628
14629 elsif Nkind (Type_Definition (N)) = N_Record_Definition then
14630
14631 -- Indicate that the previous declaration (tagged incomplete
14632 -- or private declaration) requires the same on the full one.
14633
14634 if not Tagged_Present (Type_Definition (N)) then
14635 Tag_Mismatch;
14636 Set_Is_Tagged_Type (Id);
14637 end if;
14638
14639 elsif Nkind (Type_Definition (N)) = N_Derived_Type_Definition then
14640 if No (Record_Extension_Part (Type_Definition (N))) then
14641 Error_Msg_NE
14642 ("full declaration of } must be a record extension",
14643 Prev, Id);
14644
14645 -- Set some attributes to produce a usable full view
14646
14647 Set_Is_Tagged_Type (Id);
14648 end if;
14649
14650 else
14651 Tag_Mismatch;
14652 end if;
14653 end if;
14654
14655 return New_Id;
14656 end if;
14657 end Find_Type_Name;
14658
14659 -------------------------
14660 -- Find_Type_Of_Object --
14661 -------------------------
14662
14663 function Find_Type_Of_Object
14664 (Obj_Def : Node_Id;
14665 Related_Nod : Node_Id) return Entity_Id
14666 is
14667 Def_Kind : constant Node_Kind := Nkind (Obj_Def);
14668 P : Node_Id := Parent (Obj_Def);
14669 T : Entity_Id;
14670 Nam : Name_Id;
14671
14672 begin
14673 -- If the parent is a component_definition node we climb to the
14674 -- component_declaration node
14675
14676 if Nkind (P) = N_Component_Definition then
14677 P := Parent (P);
14678 end if;
14679
14680 -- Case of an anonymous array subtype
14681
14682 if Nkind_In (Def_Kind, N_Constrained_Array_Definition,
14683 N_Unconstrained_Array_Definition)
14684 then
14685 T := Empty;
14686 Array_Type_Declaration (T, Obj_Def);
14687
14688 -- Create an explicit subtype whenever possible
14689
14690 elsif Nkind (P) /= N_Component_Declaration
14691 and then Def_Kind = N_Subtype_Indication
14692 then
14693 -- Base name of subtype on object name, which will be unique in
14694 -- the current scope.
14695
14696 -- If this is a duplicate declaration, return base type, to avoid
14697 -- generating duplicate anonymous types.
14698
14699 if Error_Posted (P) then
14700 Analyze (Subtype_Mark (Obj_Def));
14701 return Entity (Subtype_Mark (Obj_Def));
14702 end if;
14703
14704 Nam :=
14705 New_External_Name
14706 (Chars (Defining_Identifier (Related_Nod)), 'S', 0, 'T');
14707
14708 T := Make_Defining_Identifier (Sloc (P), Nam);
14709
14710 Insert_Action (Obj_Def,
14711 Make_Subtype_Declaration (Sloc (P),
14712 Defining_Identifier => T,
14713 Subtype_Indication => Relocate_Node (Obj_Def)));
14714
14715 -- This subtype may need freezing, and this will not be done
14716 -- automatically if the object declaration is not in declarative
14717 -- part. Since this is an object declaration, the type cannot always
14718 -- be frozen here. Deferred constants do not freeze their type
14719 -- (which often enough will be private).
14720
14721 if Nkind (P) = N_Object_Declaration
14722 and then Constant_Present (P)
14723 and then No (Expression (P))
14724 then
14725 null;
14726 else
14727 Insert_Actions (Obj_Def, Freeze_Entity (T, P));
14728 end if;
14729
14730 -- Ada 2005 AI-406: the object definition in an object declaration
14731 -- can be an access definition.
14732
14733 elsif Def_Kind = N_Access_Definition then
14734 T := Access_Definition (Related_Nod, Obj_Def);
14735 Set_Is_Local_Anonymous_Access (T);
14736
14737 -- Otherwise, the object definition is just a subtype_mark
14738
14739 else
14740 T := Process_Subtype (Obj_Def, Related_Nod);
14741 end if;
14742
14743 return T;
14744 end Find_Type_Of_Object;
14745
14746 --------------------------------
14747 -- Find_Type_Of_Subtype_Indic --
14748 --------------------------------
14749
14750 function Find_Type_Of_Subtype_Indic (S : Node_Id) return Entity_Id is
14751 Typ : Entity_Id;
14752
14753 begin
14754 -- Case of subtype mark with a constraint
14755
14756 if Nkind (S) = N_Subtype_Indication then
14757 Find_Type (Subtype_Mark (S));
14758 Typ := Entity (Subtype_Mark (S));
14759
14760 if not
14761 Is_Valid_Constraint_Kind (Ekind (Typ), Nkind (Constraint (S)))
14762 then
14763 Error_Msg_N
14764 ("incorrect constraint for this kind of type", Constraint (S));
14765 Rewrite (S, New_Copy_Tree (Subtype_Mark (S)));
14766 end if;
14767
14768 -- Otherwise we have a subtype mark without a constraint
14769
14770 elsif Error_Posted (S) then
14771 Rewrite (S, New_Occurrence_Of (Any_Id, Sloc (S)));
14772 return Any_Type;
14773
14774 else
14775 Find_Type (S);
14776 Typ := Entity (S);
14777 end if;
14778
14779 -- Check No_Wide_Characters restriction
14780
14781 Check_Wide_Character_Restriction (Typ, S);
14782
14783 return Typ;
14784 end Find_Type_Of_Subtype_Indic;
14785
14786 -------------------------------------
14787 -- Floating_Point_Type_Declaration --
14788 -------------------------------------
14789
14790 procedure Floating_Point_Type_Declaration (T : Entity_Id; Def : Node_Id) is
14791 Digs : constant Node_Id := Digits_Expression (Def);
14792 Digs_Val : Uint;
14793 Base_Typ : Entity_Id;
14794 Implicit_Base : Entity_Id;
14795 Bound : Node_Id;
14796
14797 function Can_Derive_From (E : Entity_Id) return Boolean;
14798 -- Find if given digits value allows derivation from specified type
14799
14800 ---------------------
14801 -- Can_Derive_From --
14802 ---------------------
14803
14804 function Can_Derive_From (E : Entity_Id) return Boolean is
14805 Spec : constant Entity_Id := Real_Range_Specification (Def);
14806
14807 begin
14808 if Digs_Val > Digits_Value (E) then
14809 return False;
14810 end if;
14811
14812 if Present (Spec) then
14813 if Expr_Value_R (Type_Low_Bound (E)) >
14814 Expr_Value_R (Low_Bound (Spec))
14815 then
14816 return False;
14817 end if;
14818
14819 if Expr_Value_R (Type_High_Bound (E)) <
14820 Expr_Value_R (High_Bound (Spec))
14821 then
14822 return False;
14823 end if;
14824 end if;
14825
14826 return True;
14827 end Can_Derive_From;
14828
14829 -- Start of processing for Floating_Point_Type_Declaration
14830
14831 begin
14832 Check_Restriction (No_Floating_Point, Def);
14833
14834 -- Create an implicit base type
14835
14836 Implicit_Base :=
14837 Create_Itype (E_Floating_Point_Type, Parent (Def), T, 'B');
14838
14839 -- Analyze and verify digits value
14840
14841 Analyze_And_Resolve (Digs, Any_Integer);
14842 Check_Digits_Expression (Digs);
14843 Digs_Val := Expr_Value (Digs);
14844
14845 -- Process possible range spec and find correct type to derive from
14846
14847 Process_Real_Range_Specification (Def);
14848
14849 if Can_Derive_From (Standard_Short_Float) then
14850 Base_Typ := Standard_Short_Float;
14851 elsif Can_Derive_From (Standard_Float) then
14852 Base_Typ := Standard_Float;
14853 elsif Can_Derive_From (Standard_Long_Float) then
14854 Base_Typ := Standard_Long_Float;
14855 elsif Can_Derive_From (Standard_Long_Long_Float) then
14856 Base_Typ := Standard_Long_Long_Float;
14857
14858 -- If we can't derive from any existing type, use long_long_float
14859 -- and give appropriate message explaining the problem.
14860
14861 else
14862 Base_Typ := Standard_Long_Long_Float;
14863
14864 if Digs_Val >= Digits_Value (Standard_Long_Long_Float) then
14865 Error_Msg_Uint_1 := Digits_Value (Standard_Long_Long_Float);
14866 Error_Msg_N ("digits value out of range, maximum is ^", Digs);
14867
14868 else
14869 Error_Msg_N
14870 ("range too large for any predefined type",
14871 Real_Range_Specification (Def));
14872 end if;
14873 end if;
14874
14875 -- If there are bounds given in the declaration use them as the bounds
14876 -- of the type, otherwise use the bounds of the predefined base type
14877 -- that was chosen based on the Digits value.
14878
14879 if Present (Real_Range_Specification (Def)) then
14880 Set_Scalar_Range (T, Real_Range_Specification (Def));
14881 Set_Is_Constrained (T);
14882
14883 -- The bounds of this range must be converted to machine numbers
14884 -- in accordance with RM 4.9(38).
14885
14886 Bound := Type_Low_Bound (T);
14887
14888 if Nkind (Bound) = N_Real_Literal then
14889 Set_Realval
14890 (Bound, Machine (Base_Typ, Realval (Bound), Round, Bound));
14891 Set_Is_Machine_Number (Bound);
14892 end if;
14893
14894 Bound := Type_High_Bound (T);
14895
14896 if Nkind (Bound) = N_Real_Literal then
14897 Set_Realval
14898 (Bound, Machine (Base_Typ, Realval (Bound), Round, Bound));
14899 Set_Is_Machine_Number (Bound);
14900 end if;
14901
14902 else
14903 Set_Scalar_Range (T, Scalar_Range (Base_Typ));
14904 end if;
14905
14906 -- Complete definition of implicit base and declared first subtype
14907
14908 Set_Etype (Implicit_Base, Base_Typ);
14909
14910 Set_Scalar_Range (Implicit_Base, Scalar_Range (Base_Typ));
14911 Set_Size_Info (Implicit_Base, (Base_Typ));
14912 Set_RM_Size (Implicit_Base, RM_Size (Base_Typ));
14913 Set_First_Rep_Item (Implicit_Base, First_Rep_Item (Base_Typ));
14914 Set_Digits_Value (Implicit_Base, Digits_Value (Base_Typ));
14915 Set_Float_Rep (Implicit_Base, Float_Rep (Base_Typ));
14916
14917 Set_Ekind (T, E_Floating_Point_Subtype);
14918 Set_Etype (T, Implicit_Base);
14919
14920 Set_Size_Info (T, (Implicit_Base));
14921 Set_RM_Size (T, RM_Size (Implicit_Base));
14922 Set_First_Rep_Item (T, First_Rep_Item (Implicit_Base));
14923 Set_Digits_Value (T, Digs_Val);
14924 end Floating_Point_Type_Declaration;
14925
14926 ----------------------------
14927 -- Get_Discriminant_Value --
14928 ----------------------------
14929
14930 -- This is the situation:
14931
14932 -- There is a non-derived type
14933
14934 -- type T0 (Dx, Dy, Dz...)
14935
14936 -- There are zero or more levels of derivation, with each derivation
14937 -- either purely inheriting the discriminants, or defining its own.
14938
14939 -- type Ti is new Ti-1
14940 -- or
14941 -- type Ti (Dw) is new Ti-1(Dw, 1, X+Y)
14942 -- or
14943 -- subtype Ti is ...
14944
14945 -- The subtype issue is avoided by the use of Original_Record_Component,
14946 -- and the fact that derived subtypes also derive the constraints.
14947
14948 -- This chain leads back from
14949
14950 -- Typ_For_Constraint
14951
14952 -- Typ_For_Constraint has discriminants, and the value for each
14953 -- discriminant is given by its corresponding Elmt of Constraints.
14954
14955 -- Discriminant is some discriminant in this hierarchy
14956
14957 -- We need to return its value
14958
14959 -- We do this by recursively searching each level, and looking for
14960 -- Discriminant. Once we get to the bottom, we start backing up
14961 -- returning the value for it which may in turn be a discriminant
14962 -- further up, so on the backup we continue the substitution.
14963
14964 function Get_Discriminant_Value
14965 (Discriminant : Entity_Id;
14966 Typ_For_Constraint : Entity_Id;
14967 Constraint : Elist_Id) return Node_Id
14968 is
14969 function Search_Derivation_Levels
14970 (Ti : Entity_Id;
14971 Discrim_Values : Elist_Id;
14972 Stored_Discrim_Values : Boolean) return Node_Or_Entity_Id;
14973 -- This is the routine that performs the recursive search of levels
14974 -- as described above.
14975
14976 ------------------------------
14977 -- Search_Derivation_Levels --
14978 ------------------------------
14979
14980 function Search_Derivation_Levels
14981 (Ti : Entity_Id;
14982 Discrim_Values : Elist_Id;
14983 Stored_Discrim_Values : Boolean) return Node_Or_Entity_Id
14984 is
14985 Assoc : Elmt_Id;
14986 Disc : Entity_Id;
14987 Result : Node_Or_Entity_Id;
14988 Result_Entity : Node_Id;
14989
14990 begin
14991 -- If inappropriate type, return Error, this happens only in
14992 -- cascaded error situations, and we want to avoid a blow up.
14993
14994 if not Is_Composite_Type (Ti) or else Is_Array_Type (Ti) then
14995 return Error;
14996 end if;
14997
14998 -- Look deeper if possible. Use Stored_Constraints only for
14999 -- untagged types. For tagged types use the given constraint.
15000 -- This asymmetry needs explanation???
15001
15002 if not Stored_Discrim_Values
15003 and then Present (Stored_Constraint (Ti))
15004 and then not Is_Tagged_Type (Ti)
15005 then
15006 Result :=
15007 Search_Derivation_Levels (Ti, Stored_Constraint (Ti), True);
15008 else
15009 declare
15010 Td : constant Entity_Id := Etype (Ti);
15011
15012 begin
15013 if Td = Ti then
15014 Result := Discriminant;
15015
15016 else
15017 if Present (Stored_Constraint (Ti)) then
15018 Result :=
15019 Search_Derivation_Levels
15020 (Td, Stored_Constraint (Ti), True);
15021 else
15022 Result :=
15023 Search_Derivation_Levels
15024 (Td, Discrim_Values, Stored_Discrim_Values);
15025 end if;
15026 end if;
15027 end;
15028 end if;
15029
15030 -- Extra underlying places to search, if not found above. For
15031 -- concurrent types, the relevant discriminant appears in the
15032 -- corresponding record. For a type derived from a private type
15033 -- without discriminant, the full view inherits the discriminants
15034 -- of the full view of the parent.
15035
15036 if Result = Discriminant then
15037 if Is_Concurrent_Type (Ti)
15038 and then Present (Corresponding_Record_Type (Ti))
15039 then
15040 Result :=
15041 Search_Derivation_Levels (
15042 Corresponding_Record_Type (Ti),
15043 Discrim_Values,
15044 Stored_Discrim_Values);
15045
15046 elsif Is_Private_Type (Ti)
15047 and then not Has_Discriminants (Ti)
15048 and then Present (Full_View (Ti))
15049 and then Etype (Full_View (Ti)) /= Ti
15050 then
15051 Result :=
15052 Search_Derivation_Levels (
15053 Full_View (Ti),
15054 Discrim_Values,
15055 Stored_Discrim_Values);
15056 end if;
15057 end if;
15058
15059 -- If Result is not a (reference to a) discriminant, return it,
15060 -- otherwise set Result_Entity to the discriminant.
15061
15062 if Nkind (Result) = N_Defining_Identifier then
15063 pragma Assert (Result = Discriminant);
15064 Result_Entity := Result;
15065
15066 else
15067 if not Denotes_Discriminant (Result) then
15068 return Result;
15069 end if;
15070
15071 Result_Entity := Entity (Result);
15072 end if;
15073
15074 -- See if this level of derivation actually has discriminants
15075 -- because tagged derivations can add them, hence the lower
15076 -- levels need not have any.
15077
15078 if not Has_Discriminants (Ti) then
15079 return Result;
15080 end if;
15081
15082 -- Scan Ti's discriminants for Result_Entity,
15083 -- and return its corresponding value, if any.
15084
15085 Result_Entity := Original_Record_Component (Result_Entity);
15086
15087 Assoc := First_Elmt (Discrim_Values);
15088
15089 if Stored_Discrim_Values then
15090 Disc := First_Stored_Discriminant (Ti);
15091 else
15092 Disc := First_Discriminant (Ti);
15093 end if;
15094
15095 while Present (Disc) loop
15096 pragma Assert (Present (Assoc));
15097
15098 if Original_Record_Component (Disc) = Result_Entity then
15099 return Node (Assoc);
15100 end if;
15101
15102 Next_Elmt (Assoc);
15103
15104 if Stored_Discrim_Values then
15105 Next_Stored_Discriminant (Disc);
15106 else
15107 Next_Discriminant (Disc);
15108 end if;
15109 end loop;
15110
15111 -- Could not find it
15112 --
15113 return Result;
15114 end Search_Derivation_Levels;
15115
15116 -- Local Variables
15117
15118 Result : Node_Or_Entity_Id;
15119
15120 -- Start of processing for Get_Discriminant_Value
15121
15122 begin
15123 -- ??? This routine is a gigantic mess and will be deleted. For the
15124 -- time being just test for the trivial case before calling recurse.
15125
15126 if Base_Type (Scope (Discriminant)) = Base_Type (Typ_For_Constraint) then
15127 declare
15128 D : Entity_Id;
15129 E : Elmt_Id;
15130
15131 begin
15132 D := First_Discriminant (Typ_For_Constraint);
15133 E := First_Elmt (Constraint);
15134 while Present (D) loop
15135 if Chars (D) = Chars (Discriminant) then
15136 return Node (E);
15137 end if;
15138
15139 Next_Discriminant (D);
15140 Next_Elmt (E);
15141 end loop;
15142 end;
15143 end if;
15144
15145 Result := Search_Derivation_Levels
15146 (Typ_For_Constraint, Constraint, False);
15147
15148 -- ??? hack to disappear when this routine is gone
15149
15150 if Nkind (Result) = N_Defining_Identifier then
15151 declare
15152 D : Entity_Id;
15153 E : Elmt_Id;
15154
15155 begin
15156 D := First_Discriminant (Typ_For_Constraint);
15157 E := First_Elmt (Constraint);
15158 while Present (D) loop
15159 if Corresponding_Discriminant (D) = Discriminant then
15160 return Node (E);
15161 end if;
15162
15163 Next_Discriminant (D);
15164 Next_Elmt (E);
15165 end loop;
15166 end;
15167 end if;
15168
15169 pragma Assert (Nkind (Result) /= N_Defining_Identifier);
15170 return Result;
15171 end Get_Discriminant_Value;
15172
15173 --------------------------
15174 -- Has_Range_Constraint --
15175 --------------------------
15176
15177 function Has_Range_Constraint (N : Node_Id) return Boolean is
15178 C : constant Node_Id := Constraint (N);
15179
15180 begin
15181 if Nkind (C) = N_Range_Constraint then
15182 return True;
15183
15184 elsif Nkind (C) = N_Digits_Constraint then
15185 return
15186 Is_Decimal_Fixed_Point_Type (Entity (Subtype_Mark (N)))
15187 or else
15188 Present (Range_Constraint (C));
15189
15190 elsif Nkind (C) = N_Delta_Constraint then
15191 return Present (Range_Constraint (C));
15192
15193 else
15194 return False;
15195 end if;
15196 end Has_Range_Constraint;
15197
15198 ------------------------
15199 -- Inherit_Components --
15200 ------------------------
15201
15202 function Inherit_Components
15203 (N : Node_Id;
15204 Parent_Base : Entity_Id;
15205 Derived_Base : Entity_Id;
15206 Is_Tagged : Boolean;
15207 Inherit_Discr : Boolean;
15208 Discs : Elist_Id) return Elist_Id
15209 is
15210 Assoc_List : constant Elist_Id := New_Elmt_List;
15211
15212 procedure Inherit_Component
15213 (Old_C : Entity_Id;
15214 Plain_Discrim : Boolean := False;
15215 Stored_Discrim : Boolean := False);
15216 -- Inherits component Old_C from Parent_Base to the Derived_Base. If
15217 -- Plain_Discrim is True, Old_C is a discriminant. If Stored_Discrim is
15218 -- True, Old_C is a stored discriminant. If they are both false then
15219 -- Old_C is a regular component.
15220
15221 -----------------------
15222 -- Inherit_Component --
15223 -----------------------
15224
15225 procedure Inherit_Component
15226 (Old_C : Entity_Id;
15227 Plain_Discrim : Boolean := False;
15228 Stored_Discrim : Boolean := False)
15229 is
15230 New_C : constant Entity_Id := New_Copy (Old_C);
15231
15232 Discrim : Entity_Id;
15233 Corr_Discrim : Entity_Id;
15234
15235 begin
15236 pragma Assert (not Is_Tagged or else not Stored_Discrim);
15237
15238 Set_Parent (New_C, Parent (Old_C));
15239
15240 -- Regular discriminants and components must be inserted in the scope
15241 -- of the Derived_Base. Do it here.
15242
15243 if not Stored_Discrim then
15244 Enter_Name (New_C);
15245 end if;
15246
15247 -- For tagged types the Original_Record_Component must point to
15248 -- whatever this field was pointing to in the parent type. This has
15249 -- already been achieved by the call to New_Copy above.
15250
15251 if not Is_Tagged then
15252 Set_Original_Record_Component (New_C, New_C);
15253 end if;
15254
15255 -- If we have inherited a component then see if its Etype contains
15256 -- references to Parent_Base discriminants. In this case, replace
15257 -- these references with the constraints given in Discs. We do not
15258 -- do this for the partial view of private types because this is
15259 -- not needed (only the components of the full view will be used
15260 -- for code generation) and cause problem. We also avoid this
15261 -- transformation in some error situations.
15262
15263 if Ekind (New_C) = E_Component then
15264 if (Is_Private_Type (Derived_Base)
15265 and then not Is_Generic_Type (Derived_Base))
15266 or else (Is_Empty_Elmt_List (Discs)
15267 and then not Expander_Active)
15268 then
15269 Set_Etype (New_C, Etype (Old_C));
15270
15271 else
15272 -- The current component introduces a circularity of the
15273 -- following kind:
15274
15275 -- limited with Pack_2;
15276 -- package Pack_1 is
15277 -- type T_1 is tagged record
15278 -- Comp : access Pack_2.T_2;
15279 -- ...
15280 -- end record;
15281 -- end Pack_1;
15282
15283 -- with Pack_1;
15284 -- package Pack_2 is
15285 -- type T_2 is new Pack_1.T_1 with ...;
15286 -- end Pack_2;
15287
15288 Set_Etype
15289 (New_C,
15290 Constrain_Component_Type
15291 (Old_C, Derived_Base, N, Parent_Base, Discs));
15292 end if;
15293 end if;
15294
15295 -- In derived tagged types it is illegal to reference a non
15296 -- discriminant component in the parent type. To catch this, mark
15297 -- these components with an Ekind of E_Void. This will be reset in
15298 -- Record_Type_Definition after processing the record extension of
15299 -- the derived type.
15300
15301 -- If the declaration is a private extension, there is no further
15302 -- record extension to process, and the components retain their
15303 -- current kind, because they are visible at this point.
15304
15305 if Is_Tagged and then Ekind (New_C) = E_Component
15306 and then Nkind (N) /= N_Private_Extension_Declaration
15307 then
15308 Set_Ekind (New_C, E_Void);
15309 end if;
15310
15311 if Plain_Discrim then
15312 Set_Corresponding_Discriminant (New_C, Old_C);
15313 Build_Discriminal (New_C);
15314
15315 -- If we are explicitly inheriting a stored discriminant it will be
15316 -- completely hidden.
15317
15318 elsif Stored_Discrim then
15319 Set_Corresponding_Discriminant (New_C, Empty);
15320 Set_Discriminal (New_C, Empty);
15321 Set_Is_Completely_Hidden (New_C);
15322
15323 -- Set the Original_Record_Component of each discriminant in the
15324 -- derived base to point to the corresponding stored that we just
15325 -- created.
15326
15327 Discrim := First_Discriminant (Derived_Base);
15328 while Present (Discrim) loop
15329 Corr_Discrim := Corresponding_Discriminant (Discrim);
15330
15331 -- Corr_Discrim could be missing in an error situation
15332
15333 if Present (Corr_Discrim)
15334 and then Original_Record_Component (Corr_Discrim) = Old_C
15335 then
15336 Set_Original_Record_Component (Discrim, New_C);
15337 end if;
15338
15339 Next_Discriminant (Discrim);
15340 end loop;
15341
15342 Append_Entity (New_C, Derived_Base);
15343 end if;
15344
15345 if not Is_Tagged then
15346 Append_Elmt (Old_C, Assoc_List);
15347 Append_Elmt (New_C, Assoc_List);
15348 end if;
15349 end Inherit_Component;
15350
15351 -- Variables local to Inherit_Component
15352
15353 Loc : constant Source_Ptr := Sloc (N);
15354
15355 Parent_Discrim : Entity_Id;
15356 Stored_Discrim : Entity_Id;
15357 D : Entity_Id;
15358 Component : Entity_Id;
15359
15360 -- Start of processing for Inherit_Components
15361
15362 begin
15363 if not Is_Tagged then
15364 Append_Elmt (Parent_Base, Assoc_List);
15365 Append_Elmt (Derived_Base, Assoc_List);
15366 end if;
15367
15368 -- Inherit parent discriminants if needed
15369
15370 if Inherit_Discr then
15371 Parent_Discrim := First_Discriminant (Parent_Base);
15372 while Present (Parent_Discrim) loop
15373 Inherit_Component (Parent_Discrim, Plain_Discrim => True);
15374 Next_Discriminant (Parent_Discrim);
15375 end loop;
15376 end if;
15377
15378 -- Create explicit stored discrims for untagged types when necessary
15379
15380 if not Has_Unknown_Discriminants (Derived_Base)
15381 and then Has_Discriminants (Parent_Base)
15382 and then not Is_Tagged
15383 and then
15384 (not Inherit_Discr
15385 or else First_Discriminant (Parent_Base) /=
15386 First_Stored_Discriminant (Parent_Base))
15387 then
15388 Stored_Discrim := First_Stored_Discriminant (Parent_Base);
15389 while Present (Stored_Discrim) loop
15390 Inherit_Component (Stored_Discrim, Stored_Discrim => True);
15391 Next_Stored_Discriminant (Stored_Discrim);
15392 end loop;
15393 end if;
15394
15395 -- See if we can apply the second transformation for derived types, as
15396 -- explained in point 6. in the comments above Build_Derived_Record_Type
15397 -- This is achieved by appending Derived_Base discriminants into Discs,
15398 -- which has the side effect of returning a non empty Discs list to the
15399 -- caller of Inherit_Components, which is what we want. This must be
15400 -- done for private derived types if there are explicit stored
15401 -- discriminants, to ensure that we can retrieve the values of the
15402 -- constraints provided in the ancestors.
15403
15404 if Inherit_Discr
15405 and then Is_Empty_Elmt_List (Discs)
15406 and then Present (First_Discriminant (Derived_Base))
15407 and then
15408 (not Is_Private_Type (Derived_Base)
15409 or else Is_Completely_Hidden
15410 (First_Stored_Discriminant (Derived_Base))
15411 or else Is_Generic_Type (Derived_Base))
15412 then
15413 D := First_Discriminant (Derived_Base);
15414 while Present (D) loop
15415 Append_Elmt (New_Reference_To (D, Loc), Discs);
15416 Next_Discriminant (D);
15417 end loop;
15418 end if;
15419
15420 -- Finally, inherit non-discriminant components unless they are not
15421 -- visible because defined or inherited from the full view of the
15422 -- parent. Don't inherit the _parent field of the parent type.
15423
15424 Component := First_Entity (Parent_Base);
15425 while Present (Component) loop
15426
15427 -- Ada 2005 (AI-251): Do not inherit components associated with
15428 -- secondary tags of the parent.
15429
15430 if Ekind (Component) = E_Component
15431 and then Present (Related_Type (Component))
15432 then
15433 null;
15434
15435 elsif Ekind (Component) /= E_Component
15436 or else Chars (Component) = Name_uParent
15437 then
15438 null;
15439
15440 -- If the derived type is within the parent type's declarative
15441 -- region, then the components can still be inherited even though
15442 -- they aren't visible at this point. This can occur for cases
15443 -- such as within public child units where the components must
15444 -- become visible upon entering the child unit's private part.
15445
15446 elsif not Is_Visible_Component (Component)
15447 and then not In_Open_Scopes (Scope (Parent_Base))
15448 then
15449 null;
15450
15451 elsif Ekind_In (Derived_Base, E_Private_Type,
15452 E_Limited_Private_Type)
15453 then
15454 null;
15455
15456 else
15457 Inherit_Component (Component);
15458 end if;
15459
15460 Next_Entity (Component);
15461 end loop;
15462
15463 -- For tagged derived types, inherited discriminants cannot be used in
15464 -- component declarations of the record extension part. To achieve this
15465 -- we mark the inherited discriminants as not visible.
15466
15467 if Is_Tagged and then Inherit_Discr then
15468 D := First_Discriminant (Derived_Base);
15469 while Present (D) loop
15470 Set_Is_Immediately_Visible (D, False);
15471 Next_Discriminant (D);
15472 end loop;
15473 end if;
15474
15475 return Assoc_List;
15476 end Inherit_Components;
15477
15478 -----------------------
15479 -- Is_Null_Extension --
15480 -----------------------
15481
15482 function Is_Null_Extension (T : Entity_Id) return Boolean is
15483 Type_Decl : constant Node_Id := Parent (Base_Type (T));
15484 Comp_List : Node_Id;
15485 Comp : Node_Id;
15486
15487 begin
15488 if Nkind (Type_Decl) /= N_Full_Type_Declaration
15489 or else not Is_Tagged_Type (T)
15490 or else Nkind (Type_Definition (Type_Decl)) /=
15491 N_Derived_Type_Definition
15492 or else No (Record_Extension_Part (Type_Definition (Type_Decl)))
15493 then
15494 return False;
15495 end if;
15496
15497 Comp_List :=
15498 Component_List (Record_Extension_Part (Type_Definition (Type_Decl)));
15499
15500 if Present (Discriminant_Specifications (Type_Decl)) then
15501 return False;
15502
15503 elsif Present (Comp_List)
15504 and then Is_Non_Empty_List (Component_Items (Comp_List))
15505 then
15506 Comp := First (Component_Items (Comp_List));
15507
15508 -- Only user-defined components are relevant. The component list
15509 -- may also contain a parent component and internal components
15510 -- corresponding to secondary tags, but these do not determine
15511 -- whether this is a null extension.
15512
15513 while Present (Comp) loop
15514 if Comes_From_Source (Comp) then
15515 return False;
15516 end if;
15517
15518 Next (Comp);
15519 end loop;
15520
15521 return True;
15522 else
15523 return True;
15524 end if;
15525 end Is_Null_Extension;
15526
15527 ------------------------------
15528 -- Is_Valid_Constraint_Kind --
15529 ------------------------------
15530
15531 function Is_Valid_Constraint_Kind
15532 (T_Kind : Type_Kind;
15533 Constraint_Kind : Node_Kind) return Boolean
15534 is
15535 begin
15536 case T_Kind is
15537 when Enumeration_Kind |
15538 Integer_Kind =>
15539 return Constraint_Kind = N_Range_Constraint;
15540
15541 when Decimal_Fixed_Point_Kind =>
15542 return Nkind_In (Constraint_Kind, N_Digits_Constraint,
15543 N_Range_Constraint);
15544
15545 when Ordinary_Fixed_Point_Kind =>
15546 return Nkind_In (Constraint_Kind, N_Delta_Constraint,
15547 N_Range_Constraint);
15548
15549 when Float_Kind =>
15550 return Nkind_In (Constraint_Kind, N_Digits_Constraint,
15551 N_Range_Constraint);
15552
15553 when Access_Kind |
15554 Array_Kind |
15555 E_Record_Type |
15556 E_Record_Subtype |
15557 Class_Wide_Kind |
15558 E_Incomplete_Type |
15559 Private_Kind |
15560 Concurrent_Kind =>
15561 return Constraint_Kind = N_Index_Or_Discriminant_Constraint;
15562
15563 when others =>
15564 return True; -- Error will be detected later
15565 end case;
15566 end Is_Valid_Constraint_Kind;
15567
15568 --------------------------
15569 -- Is_Visible_Component --
15570 --------------------------
15571
15572 function Is_Visible_Component (C : Entity_Id) return Boolean is
15573 Original_Comp : Entity_Id := Empty;
15574 Original_Scope : Entity_Id;
15575 Type_Scope : Entity_Id;
15576
15577 function Is_Local_Type (Typ : Entity_Id) return Boolean;
15578 -- Check whether parent type of inherited component is declared locally,
15579 -- possibly within a nested package or instance. The current scope is
15580 -- the derived record itself.
15581
15582 -------------------
15583 -- Is_Local_Type --
15584 -------------------
15585
15586 function Is_Local_Type (Typ : Entity_Id) return Boolean is
15587 Scop : Entity_Id;
15588
15589 begin
15590 Scop := Scope (Typ);
15591 while Present (Scop)
15592 and then Scop /= Standard_Standard
15593 loop
15594 if Scop = Scope (Current_Scope) then
15595 return True;
15596 end if;
15597
15598 Scop := Scope (Scop);
15599 end loop;
15600
15601 return False;
15602 end Is_Local_Type;
15603
15604 -- Start of processing for Is_Visible_Component
15605
15606 begin
15607 if Ekind_In (C, E_Component, E_Discriminant) then
15608 Original_Comp := Original_Record_Component (C);
15609 end if;
15610
15611 if No (Original_Comp) then
15612
15613 -- Premature usage, or previous error
15614
15615 return False;
15616
15617 else
15618 Original_Scope := Scope (Original_Comp);
15619 Type_Scope := Scope (Base_Type (Scope (C)));
15620 end if;
15621
15622 -- This test only concerns tagged types
15623
15624 if not Is_Tagged_Type (Original_Scope) then
15625 return True;
15626
15627 -- If it is _Parent or _Tag, there is no visibility issue
15628
15629 elsif not Comes_From_Source (Original_Comp) then
15630 return True;
15631
15632 -- If we are in the body of an instantiation, the component is visible
15633 -- even when the parent type (possibly defined in an enclosing unit or
15634 -- in a parent unit) might not.
15635
15636 elsif In_Instance_Body then
15637 return True;
15638
15639 -- Discriminants are always visible
15640
15641 elsif Ekind (Original_Comp) = E_Discriminant
15642 and then not Has_Unknown_Discriminants (Original_Scope)
15643 then
15644 return True;
15645
15646 -- If the component has been declared in an ancestor which is currently
15647 -- a private type, then it is not visible. The same applies if the
15648 -- component's containing type is not in an open scope and the original
15649 -- component's enclosing type is a visible full view of a private type
15650 -- (which can occur in cases where an attempt is being made to reference
15651 -- a component in a sibling package that is inherited from a visible
15652 -- component of a type in an ancestor package; the component in the
15653 -- sibling package should not be visible even though the component it
15654 -- inherited from is visible). This does not apply however in the case
15655 -- where the scope of the type is a private child unit, or when the
15656 -- parent comes from a local package in which the ancestor is currently
15657 -- visible. The latter suppression of visibility is needed for cases
15658 -- that are tested in B730006.
15659
15660 elsif Is_Private_Type (Original_Scope)
15661 or else
15662 (not Is_Private_Descendant (Type_Scope)
15663 and then not In_Open_Scopes (Type_Scope)
15664 and then Has_Private_Declaration (Original_Scope))
15665 then
15666 -- If the type derives from an entity in a formal package, there
15667 -- are no additional visible components.
15668
15669 if Nkind (Original_Node (Unit_Declaration_Node (Type_Scope))) =
15670 N_Formal_Package_Declaration
15671 then
15672 return False;
15673
15674 -- if we are not in the private part of the current package, there
15675 -- are no additional visible components.
15676
15677 elsif Ekind (Scope (Current_Scope)) = E_Package
15678 and then not In_Private_Part (Scope (Current_Scope))
15679 then
15680 return False;
15681 else
15682 return
15683 Is_Child_Unit (Cunit_Entity (Current_Sem_Unit))
15684 and then In_Open_Scopes (Scope (Original_Scope))
15685 and then Is_Local_Type (Type_Scope);
15686 end if;
15687
15688 -- There is another weird way in which a component may be invisible
15689 -- when the private and the full view are not derived from the same
15690 -- ancestor. Here is an example :
15691
15692 -- type A1 is tagged record F1 : integer; end record;
15693 -- type A2 is new A1 with record F2 : integer; end record;
15694 -- type T is new A1 with private;
15695 -- private
15696 -- type T is new A2 with null record;
15697
15698 -- In this case, the full view of T inherits F1 and F2 but the private
15699 -- view inherits only F1
15700
15701 else
15702 declare
15703 Ancestor : Entity_Id := Scope (C);
15704
15705 begin
15706 loop
15707 if Ancestor = Original_Scope then
15708 return True;
15709 elsif Ancestor = Etype (Ancestor) then
15710 return False;
15711 end if;
15712
15713 Ancestor := Etype (Ancestor);
15714 end loop;
15715 end;
15716 end if;
15717 end Is_Visible_Component;
15718
15719 --------------------------
15720 -- Make_Class_Wide_Type --
15721 --------------------------
15722
15723 procedure Make_Class_Wide_Type (T : Entity_Id) is
15724 CW_Type : Entity_Id;
15725 CW_Name : Name_Id;
15726 Next_E : Entity_Id;
15727
15728 begin
15729 -- The class wide type can have been defined by the partial view, in
15730 -- which case everything is already done.
15731
15732 if Present (Class_Wide_Type (T)) then
15733 return;
15734 end if;
15735
15736 CW_Type :=
15737 New_External_Entity (E_Void, Scope (T), Sloc (T), T, 'C', 0, 'T');
15738
15739 -- Inherit root type characteristics
15740
15741 CW_Name := Chars (CW_Type);
15742 Next_E := Next_Entity (CW_Type);
15743 Copy_Node (T, CW_Type);
15744 Set_Comes_From_Source (CW_Type, False);
15745 Set_Chars (CW_Type, CW_Name);
15746 Set_Parent (CW_Type, Parent (T));
15747 Set_Next_Entity (CW_Type, Next_E);
15748
15749 -- Ensure we have a new freeze node for the class-wide type. The partial
15750 -- view may have freeze action of its own, requiring a proper freeze
15751 -- node, and the same freeze node cannot be shared between the two
15752 -- types.
15753
15754 Set_Has_Delayed_Freeze (CW_Type);
15755 Set_Freeze_Node (CW_Type, Empty);
15756
15757 -- Customize the class-wide type: It has no prim. op., it cannot be
15758 -- abstract and its Etype points back to the specific root type.
15759
15760 Set_Ekind (CW_Type, E_Class_Wide_Type);
15761 Set_Is_Tagged_Type (CW_Type, True);
15762 Set_Direct_Primitive_Operations (CW_Type, New_Elmt_List);
15763 Set_Is_Abstract_Type (CW_Type, False);
15764 Set_Is_Constrained (CW_Type, False);
15765 Set_Is_First_Subtype (CW_Type, Is_First_Subtype (T));
15766
15767 if Ekind (T) = E_Class_Wide_Subtype then
15768 Set_Etype (CW_Type, Etype (Base_Type (T)));
15769 else
15770 Set_Etype (CW_Type, T);
15771 end if;
15772
15773 -- If this is the class_wide type of a constrained subtype, it does
15774 -- not have discriminants.
15775
15776 Set_Has_Discriminants (CW_Type,
15777 Has_Discriminants (T) and then not Is_Constrained (T));
15778
15779 Set_Has_Unknown_Discriminants (CW_Type, True);
15780 Set_Class_Wide_Type (T, CW_Type);
15781 Set_Equivalent_Type (CW_Type, Empty);
15782
15783 -- The class-wide type of a class-wide type is itself (RM 3.9(14))
15784
15785 Set_Class_Wide_Type (CW_Type, CW_Type);
15786 end Make_Class_Wide_Type;
15787
15788 ----------------
15789 -- Make_Index --
15790 ----------------
15791
15792 procedure Make_Index
15793 (I : Node_Id;
15794 Related_Nod : Node_Id;
15795 Related_Id : Entity_Id := Empty;
15796 Suffix_Index : Nat := 1)
15797 is
15798 R : Node_Id;
15799 T : Entity_Id;
15800 Def_Id : Entity_Id := Empty;
15801 Found : Boolean := False;
15802
15803 begin
15804 -- For a discrete range used in a constrained array definition and
15805 -- defined by a range, an implicit conversion to the predefined type
15806 -- INTEGER is assumed if each bound is either a numeric literal, a named
15807 -- number, or an attribute, and the type of both bounds (prior to the
15808 -- implicit conversion) is the type universal_integer. Otherwise, both
15809 -- bounds must be of the same discrete type, other than universal
15810 -- integer; this type must be determinable independently of the
15811 -- context, but using the fact that the type must be discrete and that
15812 -- both bounds must have the same type.
15813
15814 -- Character literals also have a universal type in the absence of
15815 -- of additional context, and are resolved to Standard_Character.
15816
15817 if Nkind (I) = N_Range then
15818
15819 -- The index is given by a range constraint. The bounds are known
15820 -- to be of a consistent type.
15821
15822 if not Is_Overloaded (I) then
15823 T := Etype (I);
15824
15825 -- For universal bounds, choose the specific predefined type
15826
15827 if T = Universal_Integer then
15828 T := Standard_Integer;
15829
15830 elsif T = Any_Character then
15831 Ambiguous_Character (Low_Bound (I));
15832
15833 T := Standard_Character;
15834 end if;
15835
15836 -- The node may be overloaded because some user-defined operators
15837 -- are available, but if a universal interpretation exists it is
15838 -- also the selected one.
15839
15840 elsif Universal_Interpretation (I) = Universal_Integer then
15841 T := Standard_Integer;
15842
15843 else
15844 T := Any_Type;
15845
15846 declare
15847 Ind : Interp_Index;
15848 It : Interp;
15849
15850 begin
15851 Get_First_Interp (I, Ind, It);
15852 while Present (It.Typ) loop
15853 if Is_Discrete_Type (It.Typ) then
15854
15855 if Found
15856 and then not Covers (It.Typ, T)
15857 and then not Covers (T, It.Typ)
15858 then
15859 Error_Msg_N ("ambiguous bounds in discrete range", I);
15860 exit;
15861 else
15862 T := It.Typ;
15863 Found := True;
15864 end if;
15865 end if;
15866
15867 Get_Next_Interp (Ind, It);
15868 end loop;
15869
15870 if T = Any_Type then
15871 Error_Msg_N ("discrete type required for range", I);
15872 Set_Etype (I, Any_Type);
15873 return;
15874
15875 elsif T = Universal_Integer then
15876 T := Standard_Integer;
15877 end if;
15878 end;
15879 end if;
15880
15881 if not Is_Discrete_Type (T) then
15882 Error_Msg_N ("discrete type required for range", I);
15883 Set_Etype (I, Any_Type);
15884 return;
15885 end if;
15886
15887 if Nkind (Low_Bound (I)) = N_Attribute_Reference
15888 and then Attribute_Name (Low_Bound (I)) = Name_First
15889 and then Is_Entity_Name (Prefix (Low_Bound (I)))
15890 and then Is_Type (Entity (Prefix (Low_Bound (I))))
15891 and then Is_Discrete_Type (Entity (Prefix (Low_Bound (I))))
15892 then
15893 -- The type of the index will be the type of the prefix, as long
15894 -- as the upper bound is 'Last of the same type.
15895
15896 Def_Id := Entity (Prefix (Low_Bound (I)));
15897
15898 if Nkind (High_Bound (I)) /= N_Attribute_Reference
15899 or else Attribute_Name (High_Bound (I)) /= Name_Last
15900 or else not Is_Entity_Name (Prefix (High_Bound (I)))
15901 or else Entity (Prefix (High_Bound (I))) /= Def_Id
15902 then
15903 Def_Id := Empty;
15904 end if;
15905 end if;
15906
15907 R := I;
15908 Process_Range_Expr_In_Decl (R, T);
15909
15910 elsif Nkind (I) = N_Subtype_Indication then
15911
15912 -- The index is given by a subtype with a range constraint
15913
15914 T := Base_Type (Entity (Subtype_Mark (I)));
15915
15916 if not Is_Discrete_Type (T) then
15917 Error_Msg_N ("discrete type required for range", I);
15918 Set_Etype (I, Any_Type);
15919 return;
15920 end if;
15921
15922 R := Range_Expression (Constraint (I));
15923
15924 Resolve (R, T);
15925 Process_Range_Expr_In_Decl (R, Entity (Subtype_Mark (I)));
15926
15927 elsif Nkind (I) = N_Attribute_Reference then
15928
15929 -- The parser guarantees that the attribute is a RANGE attribute
15930
15931 -- If the node denotes the range of a type mark, that is also the
15932 -- resulting type, and we do no need to create an Itype for it.
15933
15934 if Is_Entity_Name (Prefix (I))
15935 and then Comes_From_Source (I)
15936 and then Is_Type (Entity (Prefix (I)))
15937 and then Is_Discrete_Type (Entity (Prefix (I)))
15938 then
15939 Def_Id := Entity (Prefix (I));
15940 end if;
15941
15942 Analyze_And_Resolve (I);
15943 T := Etype (I);
15944 R := I;
15945
15946 -- If none of the above, must be a subtype. We convert this to a
15947 -- range attribute reference because in the case of declared first
15948 -- named subtypes, the types in the range reference can be different
15949 -- from the type of the entity. A range attribute normalizes the
15950 -- reference and obtains the correct types for the bounds.
15951
15952 -- This transformation is in the nature of an expansion, is only
15953 -- done if expansion is active. In particular, it is not done on
15954 -- formal generic types, because we need to retain the name of the
15955 -- original index for instantiation purposes.
15956
15957 else
15958 if not Is_Entity_Name (I) or else not Is_Type (Entity (I)) then
15959 Error_Msg_N ("invalid subtype mark in discrete range ", I);
15960 Set_Etype (I, Any_Integer);
15961 return;
15962
15963 else
15964 -- The type mark may be that of an incomplete type. It is only
15965 -- now that we can get the full view, previous analysis does
15966 -- not look specifically for a type mark.
15967
15968 Set_Entity (I, Get_Full_View (Entity (I)));
15969 Set_Etype (I, Entity (I));
15970 Def_Id := Entity (I);
15971
15972 if not Is_Discrete_Type (Def_Id) then
15973 Error_Msg_N ("discrete type required for index", I);
15974 Set_Etype (I, Any_Type);
15975 return;
15976 end if;
15977 end if;
15978
15979 if Expander_Active then
15980 Rewrite (I,
15981 Make_Attribute_Reference (Sloc (I),
15982 Attribute_Name => Name_Range,
15983 Prefix => Relocate_Node (I)));
15984
15985 -- The original was a subtype mark that does not freeze. This
15986 -- means that the rewritten version must not freeze either.
15987
15988 Set_Must_Not_Freeze (I);
15989 Set_Must_Not_Freeze (Prefix (I));
15990
15991 -- Is order critical??? if so, document why, if not
15992 -- use Analyze_And_Resolve
15993
15994 Analyze_And_Resolve (I);
15995 T := Etype (I);
15996 R := I;
15997
15998 -- If expander is inactive, type is legal, nothing else to construct
15999
16000 else
16001 return;
16002 end if;
16003 end if;
16004
16005 if not Is_Discrete_Type (T) then
16006 Error_Msg_N ("discrete type required for range", I);
16007 Set_Etype (I, Any_Type);
16008 return;
16009
16010 elsif T = Any_Type then
16011 Set_Etype (I, Any_Type);
16012 return;
16013 end if;
16014
16015 -- We will now create the appropriate Itype to describe the range, but
16016 -- first a check. If we originally had a subtype, then we just label
16017 -- the range with this subtype. Not only is there no need to construct
16018 -- a new subtype, but it is wrong to do so for two reasons:
16019
16020 -- 1. A legality concern, if we have a subtype, it must not freeze,
16021 -- and the Itype would cause freezing incorrectly
16022
16023 -- 2. An efficiency concern, if we created an Itype, it would not be
16024 -- recognized as the same type for the purposes of eliminating
16025 -- checks in some circumstances.
16026
16027 -- We signal this case by setting the subtype entity in Def_Id
16028
16029 if No (Def_Id) then
16030 Def_Id :=
16031 Create_Itype (E_Void, Related_Nod, Related_Id, 'D', Suffix_Index);
16032 Set_Etype (Def_Id, Base_Type (T));
16033
16034 if Is_Signed_Integer_Type (T) then
16035 Set_Ekind (Def_Id, E_Signed_Integer_Subtype);
16036
16037 elsif Is_Modular_Integer_Type (T) then
16038 Set_Ekind (Def_Id, E_Modular_Integer_Subtype);
16039
16040 else
16041 Set_Ekind (Def_Id, E_Enumeration_Subtype);
16042 Set_Is_Character_Type (Def_Id, Is_Character_Type (T));
16043 Set_First_Literal (Def_Id, First_Literal (T));
16044 end if;
16045
16046 Set_Size_Info (Def_Id, (T));
16047 Set_RM_Size (Def_Id, RM_Size (T));
16048 Set_First_Rep_Item (Def_Id, First_Rep_Item (T));
16049
16050 Set_Scalar_Range (Def_Id, R);
16051 Conditional_Delay (Def_Id, T);
16052
16053 -- In the subtype indication case, if the immediate parent of the
16054 -- new subtype is non-static, then the subtype we create is non-
16055 -- static, even if its bounds are static.
16056
16057 if Nkind (I) = N_Subtype_Indication
16058 and then not Is_Static_Subtype (Entity (Subtype_Mark (I)))
16059 then
16060 Set_Is_Non_Static_Subtype (Def_Id);
16061 end if;
16062 end if;
16063
16064 -- Final step is to label the index with this constructed type
16065
16066 Set_Etype (I, Def_Id);
16067 end Make_Index;
16068
16069 ------------------------------
16070 -- Modular_Type_Declaration --
16071 ------------------------------
16072
16073 procedure Modular_Type_Declaration (T : Entity_Id; Def : Node_Id) is
16074 Mod_Expr : constant Node_Id := Expression (Def);
16075 M_Val : Uint;
16076
16077 procedure Set_Modular_Size (Bits : Int);
16078 -- Sets RM_Size to Bits, and Esize to normal word size above this
16079
16080 ----------------------
16081 -- Set_Modular_Size --
16082 ----------------------
16083
16084 procedure Set_Modular_Size (Bits : Int) is
16085 begin
16086 Set_RM_Size (T, UI_From_Int (Bits));
16087
16088 if Bits <= 8 then
16089 Init_Esize (T, 8);
16090
16091 elsif Bits <= 16 then
16092 Init_Esize (T, 16);
16093
16094 elsif Bits <= 32 then
16095 Init_Esize (T, 32);
16096
16097 else
16098 Init_Esize (T, System_Max_Binary_Modulus_Power);
16099 end if;
16100
16101 if not Non_Binary_Modulus (T)
16102 and then Esize (T) = RM_Size (T)
16103 then
16104 Set_Is_Known_Valid (T);
16105 end if;
16106 end Set_Modular_Size;
16107
16108 -- Start of processing for Modular_Type_Declaration
16109
16110 begin
16111 Analyze_And_Resolve (Mod_Expr, Any_Integer);
16112 Set_Etype (T, T);
16113 Set_Ekind (T, E_Modular_Integer_Type);
16114 Init_Alignment (T);
16115 Set_Is_Constrained (T);
16116
16117 if not Is_OK_Static_Expression (Mod_Expr) then
16118 Flag_Non_Static_Expr
16119 ("non-static expression used for modular type bound!", Mod_Expr);
16120 M_Val := 2 ** System_Max_Binary_Modulus_Power;
16121 else
16122 M_Val := Expr_Value (Mod_Expr);
16123 end if;
16124
16125 if M_Val < 1 then
16126 Error_Msg_N ("modulus value must be positive", Mod_Expr);
16127 M_Val := 2 ** System_Max_Binary_Modulus_Power;
16128 end if;
16129
16130 Set_Modulus (T, M_Val);
16131
16132 -- Create bounds for the modular type based on the modulus given in
16133 -- the type declaration and then analyze and resolve those bounds.
16134
16135 Set_Scalar_Range (T,
16136 Make_Range (Sloc (Mod_Expr),
16137 Low_Bound =>
16138 Make_Integer_Literal (Sloc (Mod_Expr), 0),
16139 High_Bound =>
16140 Make_Integer_Literal (Sloc (Mod_Expr), M_Val - 1)));
16141
16142 -- Properly analyze the literals for the range. We do this manually
16143 -- because we can't go calling Resolve, since we are resolving these
16144 -- bounds with the type, and this type is certainly not complete yet!
16145
16146 Set_Etype (Low_Bound (Scalar_Range (T)), T);
16147 Set_Etype (High_Bound (Scalar_Range (T)), T);
16148 Set_Is_Static_Expression (Low_Bound (Scalar_Range (T)));
16149 Set_Is_Static_Expression (High_Bound (Scalar_Range (T)));
16150
16151 -- Loop through powers of two to find number of bits required
16152
16153 for Bits in Int range 0 .. System_Max_Binary_Modulus_Power loop
16154
16155 -- Binary case
16156
16157 if M_Val = 2 ** Bits then
16158 Set_Modular_Size (Bits);
16159 return;
16160
16161 -- Non-binary case
16162
16163 elsif M_Val < 2 ** Bits then
16164 Set_Non_Binary_Modulus (T);
16165
16166 if Bits > System_Max_Nonbinary_Modulus_Power then
16167 Error_Msg_Uint_1 :=
16168 UI_From_Int (System_Max_Nonbinary_Modulus_Power);
16169 Error_Msg_F
16170 ("nonbinary modulus exceeds limit (2 '*'*^ - 1)", Mod_Expr);
16171 Set_Modular_Size (System_Max_Binary_Modulus_Power);
16172 return;
16173
16174 else
16175 -- In the non-binary case, set size as per RM 13.3(55)
16176
16177 Set_Modular_Size (Bits);
16178 return;
16179 end if;
16180 end if;
16181
16182 end loop;
16183
16184 -- If we fall through, then the size exceed System.Max_Binary_Modulus
16185 -- so we just signal an error and set the maximum size.
16186
16187 Error_Msg_Uint_1 := UI_From_Int (System_Max_Binary_Modulus_Power);
16188 Error_Msg_F ("modulus exceeds limit (2 '*'*^)", Mod_Expr);
16189
16190 Set_Modular_Size (System_Max_Binary_Modulus_Power);
16191 Init_Alignment (T);
16192
16193 end Modular_Type_Declaration;
16194
16195 --------------------------
16196 -- New_Concatenation_Op --
16197 --------------------------
16198
16199 procedure New_Concatenation_Op (Typ : Entity_Id) is
16200 Loc : constant Source_Ptr := Sloc (Typ);
16201 Op : Entity_Id;
16202
16203 function Make_Op_Formal (Typ, Op : Entity_Id) return Entity_Id;
16204 -- Create abbreviated declaration for the formal of a predefined
16205 -- Operator 'Op' of type 'Typ'
16206
16207 --------------------
16208 -- Make_Op_Formal --
16209 --------------------
16210
16211 function Make_Op_Formal (Typ, Op : Entity_Id) return Entity_Id is
16212 Formal : Entity_Id;
16213 begin
16214 Formal := New_Internal_Entity (E_In_Parameter, Op, Loc, 'P');
16215 Set_Etype (Formal, Typ);
16216 Set_Mechanism (Formal, Default_Mechanism);
16217 return Formal;
16218 end Make_Op_Formal;
16219
16220 -- Start of processing for New_Concatenation_Op
16221
16222 begin
16223 Op := Make_Defining_Operator_Symbol (Loc, Name_Op_Concat);
16224
16225 Set_Ekind (Op, E_Operator);
16226 Set_Scope (Op, Current_Scope);
16227 Set_Etype (Op, Typ);
16228 Set_Homonym (Op, Get_Name_Entity_Id (Name_Op_Concat));
16229 Set_Is_Immediately_Visible (Op);
16230 Set_Is_Intrinsic_Subprogram (Op);
16231 Set_Has_Completion (Op);
16232 Append_Entity (Op, Current_Scope);
16233
16234 Set_Name_Entity_Id (Name_Op_Concat, Op);
16235
16236 Append_Entity (Make_Op_Formal (Typ, Op), Op);
16237 Append_Entity (Make_Op_Formal (Typ, Op), Op);
16238 end New_Concatenation_Op;
16239
16240 -------------------------
16241 -- OK_For_Limited_Init --
16242 -------------------------
16243
16244 -- ???Check all calls of this, and compare the conditions under which it's
16245 -- called.
16246
16247 function OK_For_Limited_Init
16248 (Typ : Entity_Id;
16249 Exp : Node_Id) return Boolean
16250 is
16251 begin
16252 return Is_CPP_Constructor_Call (Exp)
16253 or else (Ada_Version >= Ada_2005
16254 and then not Debug_Flag_Dot_L
16255 and then OK_For_Limited_Init_In_05 (Typ, Exp));
16256 end OK_For_Limited_Init;
16257
16258 -------------------------------
16259 -- OK_For_Limited_Init_In_05 --
16260 -------------------------------
16261
16262 function OK_For_Limited_Init_In_05
16263 (Typ : Entity_Id;
16264 Exp : Node_Id) return Boolean
16265 is
16266 begin
16267 -- An object of a limited interface type can be initialized with any
16268 -- expression of a nonlimited descendant type.
16269
16270 if Is_Class_Wide_Type (Typ)
16271 and then Is_Limited_Interface (Typ)
16272 and then not Is_Limited_Type (Etype (Exp))
16273 then
16274 return True;
16275 end if;
16276
16277 -- Ada 2005 (AI-287, AI-318): Relax the strictness of the front end in
16278 -- case of limited aggregates (including extension aggregates), and
16279 -- function calls. The function call may have been given in prefixed
16280 -- notation, in which case the original node is an indexed component.
16281 -- If the function is parameterless, the original node was an explicit
16282 -- dereference.
16283
16284 case Nkind (Original_Node (Exp)) is
16285 when N_Aggregate | N_Extension_Aggregate | N_Function_Call | N_Op =>
16286 return True;
16287
16288 when N_Qualified_Expression =>
16289 return
16290 OK_For_Limited_Init_In_05
16291 (Typ, Expression (Original_Node (Exp)));
16292
16293 -- Ada 2005 (AI-251): If a class-wide interface object is initialized
16294 -- with a function call, the expander has rewritten the call into an
16295 -- N_Type_Conversion node to force displacement of the pointer to
16296 -- reference the component containing the secondary dispatch table.
16297 -- Otherwise a type conversion is not a legal context.
16298 -- A return statement for a build-in-place function returning a
16299 -- synchronized type also introduces an unchecked conversion.
16300
16301 when N_Type_Conversion |
16302 N_Unchecked_Type_Conversion =>
16303 return not Comes_From_Source (Exp)
16304 and then
16305 OK_For_Limited_Init_In_05
16306 (Typ, Expression (Original_Node (Exp)));
16307
16308 when N_Indexed_Component |
16309 N_Selected_Component |
16310 N_Explicit_Dereference =>
16311 return Nkind (Exp) = N_Function_Call;
16312
16313 -- A use of 'Input is a function call, hence allowed. Normally the
16314 -- attribute will be changed to a call, but the attribute by itself
16315 -- can occur with -gnatc.
16316
16317 when N_Attribute_Reference =>
16318 return Attribute_Name (Original_Node (Exp)) = Name_Input;
16319
16320 when others =>
16321 return False;
16322 end case;
16323 end OK_For_Limited_Init_In_05;
16324
16325 -------------------------------------------
16326 -- Ordinary_Fixed_Point_Type_Declaration --
16327 -------------------------------------------
16328
16329 procedure Ordinary_Fixed_Point_Type_Declaration
16330 (T : Entity_Id;
16331 Def : Node_Id)
16332 is
16333 Loc : constant Source_Ptr := Sloc (Def);
16334 Delta_Expr : constant Node_Id := Delta_Expression (Def);
16335 RRS : constant Node_Id := Real_Range_Specification (Def);
16336 Implicit_Base : Entity_Id;
16337 Delta_Val : Ureal;
16338 Small_Val : Ureal;
16339 Low_Val : Ureal;
16340 High_Val : Ureal;
16341
16342 begin
16343 Check_Restriction (No_Fixed_Point, Def);
16344
16345 -- Create implicit base type
16346
16347 Implicit_Base :=
16348 Create_Itype (E_Ordinary_Fixed_Point_Type, Parent (Def), T, 'B');
16349 Set_Etype (Implicit_Base, Implicit_Base);
16350
16351 -- Analyze and process delta expression
16352
16353 Analyze_And_Resolve (Delta_Expr, Any_Real);
16354
16355 Check_Delta_Expression (Delta_Expr);
16356 Delta_Val := Expr_Value_R (Delta_Expr);
16357
16358 Set_Delta_Value (Implicit_Base, Delta_Val);
16359
16360 -- Compute default small from given delta, which is the largest power
16361 -- of two that does not exceed the given delta value.
16362
16363 declare
16364 Tmp : Ureal;
16365 Scale : Int;
16366
16367 begin
16368 Tmp := Ureal_1;
16369 Scale := 0;
16370
16371 if Delta_Val < Ureal_1 then
16372 while Delta_Val < Tmp loop
16373 Tmp := Tmp / Ureal_2;
16374 Scale := Scale + 1;
16375 end loop;
16376
16377 else
16378 loop
16379 Tmp := Tmp * Ureal_2;
16380 exit when Tmp > Delta_Val;
16381 Scale := Scale - 1;
16382 end loop;
16383 end if;
16384
16385 Small_Val := UR_From_Components (Uint_1, UI_From_Int (Scale), 2);
16386 end;
16387
16388 Set_Small_Value (Implicit_Base, Small_Val);
16389
16390 -- If no range was given, set a dummy range
16391
16392 if RRS <= Empty_Or_Error then
16393 Low_Val := -Small_Val;
16394 High_Val := Small_Val;
16395
16396 -- Otherwise analyze and process given range
16397
16398 else
16399 declare
16400 Low : constant Node_Id := Low_Bound (RRS);
16401 High : constant Node_Id := High_Bound (RRS);
16402
16403 begin
16404 Analyze_And_Resolve (Low, Any_Real);
16405 Analyze_And_Resolve (High, Any_Real);
16406 Check_Real_Bound (Low);
16407 Check_Real_Bound (High);
16408
16409 -- Obtain and set the range
16410
16411 Low_Val := Expr_Value_R (Low);
16412 High_Val := Expr_Value_R (High);
16413
16414 if Low_Val > High_Val then
16415 Error_Msg_NE ("?fixed point type& has null range", Def, T);
16416 end if;
16417 end;
16418 end if;
16419
16420 -- The range for both the implicit base and the declared first subtype
16421 -- cannot be set yet, so we use the special routine Set_Fixed_Range to
16422 -- set a temporary range in place. Note that the bounds of the base
16423 -- type will be widened to be symmetrical and to fill the available
16424 -- bits when the type is frozen.
16425
16426 -- We could do this with all discrete types, and probably should, but
16427 -- we absolutely have to do it for fixed-point, since the end-points
16428 -- of the range and the size are determined by the small value, which
16429 -- could be reset before the freeze point.
16430
16431 Set_Fixed_Range (Implicit_Base, Loc, Low_Val, High_Val);
16432 Set_Fixed_Range (T, Loc, Low_Val, High_Val);
16433
16434 -- Complete definition of first subtype
16435
16436 Set_Ekind (T, E_Ordinary_Fixed_Point_Subtype);
16437 Set_Etype (T, Implicit_Base);
16438 Init_Size_Align (T);
16439 Set_First_Rep_Item (T, First_Rep_Item (Implicit_Base));
16440 Set_Small_Value (T, Small_Val);
16441 Set_Delta_Value (T, Delta_Val);
16442 Set_Is_Constrained (T);
16443
16444 end Ordinary_Fixed_Point_Type_Declaration;
16445
16446 ----------------------------------------
16447 -- Prepare_Private_Subtype_Completion --
16448 ----------------------------------------
16449
16450 procedure Prepare_Private_Subtype_Completion
16451 (Id : Entity_Id;
16452 Related_Nod : Node_Id)
16453 is
16454 Id_B : constant Entity_Id := Base_Type (Id);
16455 Full_B : constant Entity_Id := Full_View (Id_B);
16456 Full : Entity_Id;
16457
16458 begin
16459 if Present (Full_B) then
16460
16461 -- The Base_Type is already completed, we can complete the subtype
16462 -- now. We have to create a new entity with the same name, Thus we
16463 -- can't use Create_Itype.
16464
16465 -- This is messy, should be fixed ???
16466
16467 Full := Make_Defining_Identifier (Sloc (Id), Chars (Id));
16468 Set_Is_Itype (Full);
16469 Set_Associated_Node_For_Itype (Full, Related_Nod);
16470 Complete_Private_Subtype (Id, Full, Full_B, Related_Nod);
16471 end if;
16472
16473 -- The parent subtype may be private, but the base might not, in some
16474 -- nested instances. In that case, the subtype does not need to be
16475 -- exchanged. It would still be nice to make private subtypes and their
16476 -- bases consistent at all times ???
16477
16478 if Is_Private_Type (Id_B) then
16479 Append_Elmt (Id, Private_Dependents (Id_B));
16480 end if;
16481
16482 end Prepare_Private_Subtype_Completion;
16483
16484 ---------------------------
16485 -- Process_Discriminants --
16486 ---------------------------
16487
16488 procedure Process_Discriminants
16489 (N : Node_Id;
16490 Prev : Entity_Id := Empty)
16491 is
16492 Elist : constant Elist_Id := New_Elmt_List;
16493 Id : Node_Id;
16494 Discr : Node_Id;
16495 Discr_Number : Uint;
16496 Discr_Type : Entity_Id;
16497 Default_Present : Boolean := False;
16498 Default_Not_Present : Boolean := False;
16499
16500 begin
16501 -- A composite type other than an array type can have discriminants.
16502 -- On entry, the current scope is the composite type.
16503
16504 -- The discriminants are initially entered into the scope of the type
16505 -- via Enter_Name with the default Ekind of E_Void to prevent premature
16506 -- use, as explained at the end of this procedure.
16507
16508 Discr := First (Discriminant_Specifications (N));
16509 while Present (Discr) loop
16510 Enter_Name (Defining_Identifier (Discr));
16511
16512 -- For navigation purposes we add a reference to the discriminant
16513 -- in the entity for the type. If the current declaration is a
16514 -- completion, place references on the partial view. Otherwise the
16515 -- type is the current scope.
16516
16517 if Present (Prev) then
16518
16519 -- The references go on the partial view, if present. If the
16520 -- partial view has discriminants, the references have been
16521 -- generated already.
16522
16523 if not Has_Discriminants (Prev) then
16524 Generate_Reference (Prev, Defining_Identifier (Discr), 'd');
16525 end if;
16526 else
16527 Generate_Reference
16528 (Current_Scope, Defining_Identifier (Discr), 'd');
16529 end if;
16530
16531 if Nkind (Discriminant_Type (Discr)) = N_Access_Definition then
16532 Discr_Type := Access_Definition (Discr, Discriminant_Type (Discr));
16533
16534 -- Ada 2005 (AI-254)
16535
16536 if Present (Access_To_Subprogram_Definition
16537 (Discriminant_Type (Discr)))
16538 and then Protected_Present (Access_To_Subprogram_Definition
16539 (Discriminant_Type (Discr)))
16540 then
16541 Discr_Type :=
16542 Replace_Anonymous_Access_To_Protected_Subprogram (Discr);
16543 end if;
16544
16545 else
16546 Find_Type (Discriminant_Type (Discr));
16547 Discr_Type := Etype (Discriminant_Type (Discr));
16548
16549 if Error_Posted (Discriminant_Type (Discr)) then
16550 Discr_Type := Any_Type;
16551 end if;
16552 end if;
16553
16554 if Is_Access_Type (Discr_Type) then
16555
16556 -- Ada 2005 (AI-230): Access discriminant allowed in non-limited
16557 -- record types
16558
16559 if Ada_Version < Ada_2005 then
16560 Check_Access_Discriminant_Requires_Limited
16561 (Discr, Discriminant_Type (Discr));
16562 end if;
16563
16564 if Ada_Version = Ada_83 and then Comes_From_Source (Discr) then
16565 Error_Msg_N
16566 ("(Ada 83) access discriminant not allowed", Discr);
16567 end if;
16568
16569 elsif not Is_Discrete_Type (Discr_Type) then
16570 Error_Msg_N ("discriminants must have a discrete or access type",
16571 Discriminant_Type (Discr));
16572 end if;
16573
16574 Set_Etype (Defining_Identifier (Discr), Discr_Type);
16575
16576 -- If a discriminant specification includes the assignment compound
16577 -- delimiter followed by an expression, the expression is the default
16578 -- expression of the discriminant; the default expression must be of
16579 -- the type of the discriminant. (RM 3.7.1) Since this expression is
16580 -- a default expression, we do the special preanalysis, since this
16581 -- expression does not freeze (see "Handling of Default and Per-
16582 -- Object Expressions" in spec of package Sem).
16583
16584 if Present (Expression (Discr)) then
16585 Preanalyze_Spec_Expression (Expression (Discr), Discr_Type);
16586
16587 if Nkind (N) = N_Formal_Type_Declaration then
16588 Error_Msg_N
16589 ("discriminant defaults not allowed for formal type",
16590 Expression (Discr));
16591
16592 -- Flag an error for a tagged type with defaulted discriminants,
16593 -- excluding limited tagged types when compiling for Ada 2012
16594 -- (see AI05-0214).
16595
16596 elsif Is_Tagged_Type (Current_Scope)
16597 and then (not Is_Limited_Type (Current_Scope)
16598 or else Ada_Version < Ada_2012)
16599 and then Comes_From_Source (N)
16600 then
16601 -- Note: see similar test in Check_Or_Process_Discriminants, to
16602 -- handle the (illegal) case of the completion of an untagged
16603 -- view with discriminants with defaults by a tagged full view.
16604 -- We skip the check if Discr does not come from source, to
16605 -- account for the case of an untagged derived type providing
16606 -- defaults for a renamed discriminant from a private untagged
16607 -- ancestor with a tagged full view (ACATS B460006).
16608
16609 if Ada_Version >= Ada_2012 then
16610 Error_Msg_N
16611 ("discriminants of nonlimited tagged type cannot have"
16612 & " defaults",
16613 Expression (Discr));
16614 else
16615 Error_Msg_N
16616 ("discriminants of tagged type cannot have defaults",
16617 Expression (Discr));
16618 end if;
16619
16620 else
16621 Default_Present := True;
16622 Append_Elmt (Expression (Discr), Elist);
16623
16624 -- Tag the defining identifiers for the discriminants with
16625 -- their corresponding default expressions from the tree.
16626
16627 Set_Discriminant_Default_Value
16628 (Defining_Identifier (Discr), Expression (Discr));
16629 end if;
16630
16631 else
16632 Default_Not_Present := True;
16633 end if;
16634
16635 -- Ada 2005 (AI-231): Create an Itype that is a duplicate of
16636 -- Discr_Type but with the null-exclusion attribute
16637
16638 if Ada_Version >= Ada_2005 then
16639
16640 -- Ada 2005 (AI-231): Static checks
16641
16642 if Can_Never_Be_Null (Discr_Type) then
16643 Null_Exclusion_Static_Checks (Discr);
16644
16645 elsif Is_Access_Type (Discr_Type)
16646 and then Null_Exclusion_Present (Discr)
16647
16648 -- No need to check itypes because in their case this check
16649 -- was done at their point of creation
16650
16651 and then not Is_Itype (Discr_Type)
16652 then
16653 if Can_Never_Be_Null (Discr_Type) then
16654 Error_Msg_NE
16655 ("`NOT NULL` not allowed (& already excludes null)",
16656 Discr,
16657 Discr_Type);
16658 end if;
16659
16660 Set_Etype (Defining_Identifier (Discr),
16661 Create_Null_Excluding_Itype
16662 (T => Discr_Type,
16663 Related_Nod => Discr));
16664
16665 -- Check for improper null exclusion if the type is otherwise
16666 -- legal for a discriminant.
16667
16668 elsif Null_Exclusion_Present (Discr)
16669 and then Is_Discrete_Type (Discr_Type)
16670 then
16671 Error_Msg_N
16672 ("null exclusion can only apply to an access type", Discr);
16673 end if;
16674
16675 -- Ada 2005 (AI-402): access discriminants of nonlimited types
16676 -- can't have defaults. Synchronized types, or types that are
16677 -- explicitly limited are fine, but special tests apply to derived
16678 -- types in generics: in a generic body we have to assume the
16679 -- worst, and therefore defaults are not allowed if the parent is
16680 -- a generic formal private type (see ACATS B370001).
16681
16682 if Is_Access_Type (Discr_Type) then
16683 if Ekind (Discr_Type) /= E_Anonymous_Access_Type
16684 or else not Default_Present
16685 or else Is_Limited_Record (Current_Scope)
16686 or else Is_Concurrent_Type (Current_Scope)
16687 or else Is_Concurrent_Record_Type (Current_Scope)
16688 or else Ekind (Current_Scope) = E_Limited_Private_Type
16689 then
16690 if not Is_Derived_Type (Current_Scope)
16691 or else not Is_Generic_Type (Etype (Current_Scope))
16692 or else not In_Package_Body (Scope (Etype (Current_Scope)))
16693 or else Limited_Present
16694 (Type_Definition (Parent (Current_Scope)))
16695 then
16696 null;
16697
16698 else
16699 Error_Msg_N ("access discriminants of nonlimited types",
16700 Expression (Discr));
16701 Error_Msg_N ("\cannot have defaults", Expression (Discr));
16702 end if;
16703
16704 elsif Present (Expression (Discr)) then
16705 Error_Msg_N
16706 ("(Ada 2005) access discriminants of nonlimited types",
16707 Expression (Discr));
16708 Error_Msg_N ("\cannot have defaults", Expression (Discr));
16709 end if;
16710 end if;
16711 end if;
16712
16713 Next (Discr);
16714 end loop;
16715
16716 -- An element list consisting of the default expressions of the
16717 -- discriminants is constructed in the above loop and used to set
16718 -- the Discriminant_Constraint attribute for the type. If an object
16719 -- is declared of this (record or task) type without any explicit
16720 -- discriminant constraint given, this element list will form the
16721 -- actual parameters for the corresponding initialization procedure
16722 -- for the type.
16723
16724 Set_Discriminant_Constraint (Current_Scope, Elist);
16725 Set_Stored_Constraint (Current_Scope, No_Elist);
16726
16727 -- Default expressions must be provided either for all or for none
16728 -- of the discriminants of a discriminant part. (RM 3.7.1)
16729
16730 if Default_Present and then Default_Not_Present then
16731 Error_Msg_N
16732 ("incomplete specification of defaults for discriminants", N);
16733 end if;
16734
16735 -- The use of the name of a discriminant is not allowed in default
16736 -- expressions of a discriminant part if the specification of the
16737 -- discriminant is itself given in the discriminant part. (RM 3.7.1)
16738
16739 -- To detect this, the discriminant names are entered initially with an
16740 -- Ekind of E_Void (which is the default Ekind given by Enter_Name). Any
16741 -- attempt to use a void entity (for example in an expression that is
16742 -- type-checked) produces the error message: premature usage. Now after
16743 -- completing the semantic analysis of the discriminant part, we can set
16744 -- the Ekind of all the discriminants appropriately.
16745
16746 Discr := First (Discriminant_Specifications (N));
16747 Discr_Number := Uint_1;
16748 while Present (Discr) loop
16749 Id := Defining_Identifier (Discr);
16750 Set_Ekind (Id, E_Discriminant);
16751 Init_Component_Location (Id);
16752 Init_Esize (Id);
16753 Set_Discriminant_Number (Id, Discr_Number);
16754
16755 -- Make sure this is always set, even in illegal programs
16756
16757 Set_Corresponding_Discriminant (Id, Empty);
16758
16759 -- Initialize the Original_Record_Component to the entity itself.
16760 -- Inherit_Components will propagate the right value to
16761 -- discriminants in derived record types.
16762
16763 Set_Original_Record_Component (Id, Id);
16764
16765 -- Create the discriminal for the discriminant
16766
16767 Build_Discriminal (Id);
16768
16769 Next (Discr);
16770 Discr_Number := Discr_Number + 1;
16771 end loop;
16772
16773 Set_Has_Discriminants (Current_Scope);
16774 end Process_Discriminants;
16775
16776 -----------------------
16777 -- Process_Full_View --
16778 -----------------------
16779
16780 procedure Process_Full_View (N : Node_Id; Full_T, Priv_T : Entity_Id) is
16781 Priv_Parent : Entity_Id;
16782 Full_Parent : Entity_Id;
16783 Full_Indic : Node_Id;
16784
16785 procedure Collect_Implemented_Interfaces
16786 (Typ : Entity_Id;
16787 Ifaces : Elist_Id);
16788 -- Ada 2005: Gather all the interfaces that Typ directly or
16789 -- inherently implements. Duplicate entries are not added to
16790 -- the list Ifaces.
16791
16792 ------------------------------------
16793 -- Collect_Implemented_Interfaces --
16794 ------------------------------------
16795
16796 procedure Collect_Implemented_Interfaces
16797 (Typ : Entity_Id;
16798 Ifaces : Elist_Id)
16799 is
16800 Iface : Entity_Id;
16801 Iface_Elmt : Elmt_Id;
16802
16803 begin
16804 -- Abstract interfaces are only associated with tagged record types
16805
16806 if not Is_Tagged_Type (Typ)
16807 or else not Is_Record_Type (Typ)
16808 then
16809 return;
16810 end if;
16811
16812 -- Recursively climb to the ancestors
16813
16814 if Etype (Typ) /= Typ
16815
16816 -- Protect the frontend against wrong cyclic declarations like:
16817
16818 -- type B is new A with private;
16819 -- type C is new A with private;
16820 -- private
16821 -- type B is new C with null record;
16822 -- type C is new B with null record;
16823
16824 and then Etype (Typ) /= Priv_T
16825 and then Etype (Typ) /= Full_T
16826 then
16827 -- Keep separate the management of private type declarations
16828
16829 if Ekind (Typ) = E_Record_Type_With_Private then
16830
16831 -- Handle the following erronous case:
16832 -- type Private_Type is tagged private;
16833 -- private
16834 -- type Private_Type is new Type_Implementing_Iface;
16835
16836 if Present (Full_View (Typ))
16837 and then Etype (Typ) /= Full_View (Typ)
16838 then
16839 if Is_Interface (Etype (Typ)) then
16840 Append_Unique_Elmt (Etype (Typ), Ifaces);
16841 end if;
16842
16843 Collect_Implemented_Interfaces (Etype (Typ), Ifaces);
16844 end if;
16845
16846 -- Non-private types
16847
16848 else
16849 if Is_Interface (Etype (Typ)) then
16850 Append_Unique_Elmt (Etype (Typ), Ifaces);
16851 end if;
16852
16853 Collect_Implemented_Interfaces (Etype (Typ), Ifaces);
16854 end if;
16855 end if;
16856
16857 -- Handle entities in the list of abstract interfaces
16858
16859 if Present (Interfaces (Typ)) then
16860 Iface_Elmt := First_Elmt (Interfaces (Typ));
16861 while Present (Iface_Elmt) loop
16862 Iface := Node (Iface_Elmt);
16863
16864 pragma Assert (Is_Interface (Iface));
16865
16866 if not Contain_Interface (Iface, Ifaces) then
16867 Append_Elmt (Iface, Ifaces);
16868 Collect_Implemented_Interfaces (Iface, Ifaces);
16869 end if;
16870
16871 Next_Elmt (Iface_Elmt);
16872 end loop;
16873 end if;
16874 end Collect_Implemented_Interfaces;
16875
16876 -- Start of processing for Process_Full_View
16877
16878 begin
16879 -- First some sanity checks that must be done after semantic
16880 -- decoration of the full view and thus cannot be placed with other
16881 -- similar checks in Find_Type_Name
16882
16883 if not Is_Limited_Type (Priv_T)
16884 and then (Is_Limited_Type (Full_T)
16885 or else Is_Limited_Composite (Full_T))
16886 then
16887 Error_Msg_N
16888 ("completion of nonlimited type cannot be limited", Full_T);
16889 Explain_Limited_Type (Full_T, Full_T);
16890
16891 elsif Is_Abstract_Type (Full_T)
16892 and then not Is_Abstract_Type (Priv_T)
16893 then
16894 Error_Msg_N
16895 ("completion of nonabstract type cannot be abstract", Full_T);
16896
16897 elsif Is_Tagged_Type (Priv_T)
16898 and then Is_Limited_Type (Priv_T)
16899 and then not Is_Limited_Type (Full_T)
16900 then
16901 -- If pragma CPP_Class was applied to the private declaration
16902 -- propagate the limitedness to the full-view
16903
16904 if Is_CPP_Class (Priv_T) then
16905 Set_Is_Limited_Record (Full_T);
16906
16907 -- GNAT allow its own definition of Limited_Controlled to disobey
16908 -- this rule in order in ease the implementation. The next test is
16909 -- safe because Root_Controlled is defined in a private system child
16910
16911 elsif Etype (Full_T) = Full_View (RTE (RE_Root_Controlled)) then
16912 Set_Is_Limited_Composite (Full_T);
16913 else
16914 Error_Msg_N
16915 ("completion of limited tagged type must be limited", Full_T);
16916 end if;
16917
16918 elsif Is_Generic_Type (Priv_T) then
16919 Error_Msg_N ("generic type cannot have a completion", Full_T);
16920 end if;
16921
16922 -- Check that ancestor interfaces of private and full views are
16923 -- consistent. We omit this check for synchronized types because
16924 -- they are performed on the corresponding record type when frozen.
16925
16926 if Ada_Version >= Ada_2005
16927 and then Is_Tagged_Type (Priv_T)
16928 and then Is_Tagged_Type (Full_T)
16929 and then not Is_Concurrent_Type (Full_T)
16930 then
16931 declare
16932 Iface : Entity_Id;
16933 Priv_T_Ifaces : constant Elist_Id := New_Elmt_List;
16934 Full_T_Ifaces : constant Elist_Id := New_Elmt_List;
16935
16936 begin
16937 Collect_Implemented_Interfaces (Priv_T, Priv_T_Ifaces);
16938 Collect_Implemented_Interfaces (Full_T, Full_T_Ifaces);
16939
16940 -- Ada 2005 (AI-251): The partial view shall be a descendant of
16941 -- an interface type if and only if the full type is descendant
16942 -- of the interface type (AARM 7.3 (7.3/2).
16943
16944 Iface := Find_Hidden_Interface (Priv_T_Ifaces, Full_T_Ifaces);
16945
16946 if Present (Iface) then
16947 Error_Msg_NE
16948 ("interface & not implemented by full type " &
16949 "(RM-2005 7.3 (7.3/2))", Priv_T, Iface);
16950 end if;
16951
16952 Iface := Find_Hidden_Interface (Full_T_Ifaces, Priv_T_Ifaces);
16953
16954 if Present (Iface) then
16955 Error_Msg_NE
16956 ("interface & not implemented by partial view " &
16957 "(RM-2005 7.3 (7.3/2))", Full_T, Iface);
16958 end if;
16959 end;
16960 end if;
16961
16962 if Is_Tagged_Type (Priv_T)
16963 and then Nkind (Parent (Priv_T)) = N_Private_Extension_Declaration
16964 and then Is_Derived_Type (Full_T)
16965 then
16966 Priv_Parent := Etype (Priv_T);
16967
16968 -- The full view of a private extension may have been transformed
16969 -- into an unconstrained derived type declaration and a subtype
16970 -- declaration (see build_derived_record_type for details).
16971
16972 if Nkind (N) = N_Subtype_Declaration then
16973 Full_Indic := Subtype_Indication (N);
16974 Full_Parent := Etype (Base_Type (Full_T));
16975 else
16976 Full_Indic := Subtype_Indication (Type_Definition (N));
16977 Full_Parent := Etype (Full_T);
16978 end if;
16979
16980 -- Check that the parent type of the full type is a descendant of
16981 -- the ancestor subtype given in the private extension. If either
16982 -- entity has an Etype equal to Any_Type then we had some previous
16983 -- error situation [7.3(8)].
16984
16985 if Priv_Parent = Any_Type or else Full_Parent = Any_Type then
16986 return;
16987
16988 -- Ada 2005 (AI-251): Interfaces in the full-typ can be given in
16989 -- any order. Therefore we don't have to check that its parent must
16990 -- be a descendant of the parent of the private type declaration.
16991
16992 elsif Is_Interface (Priv_Parent)
16993 and then Is_Interface (Full_Parent)
16994 then
16995 null;
16996
16997 -- Ada 2005 (AI-251): If the parent of the private type declaration
16998 -- is an interface there is no need to check that it is an ancestor
16999 -- of the associated full type declaration. The required tests for
17000 -- this case are performed by Build_Derived_Record_Type.
17001
17002 elsif not Is_Interface (Base_Type (Priv_Parent))
17003 and then not Is_Ancestor (Base_Type (Priv_Parent), Full_Parent)
17004 then
17005 Error_Msg_N
17006 ("parent of full type must descend from parent"
17007 & " of private extension", Full_Indic);
17008
17009 -- Check the rules of 7.3(10): if the private extension inherits
17010 -- known discriminants, then the full type must also inherit those
17011 -- discriminants from the same (ancestor) type, and the parent
17012 -- subtype of the full type must be constrained if and only if
17013 -- the ancestor subtype of the private extension is constrained.
17014
17015 elsif No (Discriminant_Specifications (Parent (Priv_T)))
17016 and then not Has_Unknown_Discriminants (Priv_T)
17017 and then Has_Discriminants (Base_Type (Priv_Parent))
17018 then
17019 declare
17020 Priv_Indic : constant Node_Id :=
17021 Subtype_Indication (Parent (Priv_T));
17022
17023 Priv_Constr : constant Boolean :=
17024 Is_Constrained (Priv_Parent)
17025 or else
17026 Nkind (Priv_Indic) = N_Subtype_Indication
17027 or else Is_Constrained (Entity (Priv_Indic));
17028
17029 Full_Constr : constant Boolean :=
17030 Is_Constrained (Full_Parent)
17031 or else
17032 Nkind (Full_Indic) = N_Subtype_Indication
17033 or else Is_Constrained (Entity (Full_Indic));
17034
17035 Priv_Discr : Entity_Id;
17036 Full_Discr : Entity_Id;
17037
17038 begin
17039 Priv_Discr := First_Discriminant (Priv_Parent);
17040 Full_Discr := First_Discriminant (Full_Parent);
17041 while Present (Priv_Discr) and then Present (Full_Discr) loop
17042 if Original_Record_Component (Priv_Discr) =
17043 Original_Record_Component (Full_Discr)
17044 or else
17045 Corresponding_Discriminant (Priv_Discr) =
17046 Corresponding_Discriminant (Full_Discr)
17047 then
17048 null;
17049 else
17050 exit;
17051 end if;
17052
17053 Next_Discriminant (Priv_Discr);
17054 Next_Discriminant (Full_Discr);
17055 end loop;
17056
17057 if Present (Priv_Discr) or else Present (Full_Discr) then
17058 Error_Msg_N
17059 ("full view must inherit discriminants of the parent type"
17060 & " used in the private extension", Full_Indic);
17061
17062 elsif Priv_Constr and then not Full_Constr then
17063 Error_Msg_N
17064 ("parent subtype of full type must be constrained",
17065 Full_Indic);
17066
17067 elsif Full_Constr and then not Priv_Constr then
17068 Error_Msg_N
17069 ("parent subtype of full type must be unconstrained",
17070 Full_Indic);
17071 end if;
17072 end;
17073
17074 -- Check the rules of 7.3(12): if a partial view has neither known
17075 -- or unknown discriminants, then the full type declaration shall
17076 -- define a definite subtype.
17077
17078 elsif not Has_Unknown_Discriminants (Priv_T)
17079 and then not Has_Discriminants (Priv_T)
17080 and then not Is_Constrained (Full_T)
17081 then
17082 Error_Msg_N
17083 ("full view must define a constrained type if partial view"
17084 & " has no discriminants", Full_T);
17085 end if;
17086
17087 -- ??????? Do we implement the following properly ?????
17088 -- If the ancestor subtype of a private extension has constrained
17089 -- discriminants, then the parent subtype of the full view shall
17090 -- impose a statically matching constraint on those discriminants
17091 -- [7.3(13)].
17092
17093 else
17094 -- For untagged types, verify that a type without discriminants
17095 -- is not completed with an unconstrained type.
17096
17097 if not Is_Indefinite_Subtype (Priv_T)
17098 and then Is_Indefinite_Subtype (Full_T)
17099 then
17100 Error_Msg_N ("full view of type must be definite subtype", Full_T);
17101 end if;
17102 end if;
17103
17104 -- AI-419: verify that the use of "limited" is consistent
17105
17106 declare
17107 Orig_Decl : constant Node_Id := Original_Node (N);
17108
17109 begin
17110 if Nkind (Parent (Priv_T)) = N_Private_Extension_Declaration
17111 and then not Limited_Present (Parent (Priv_T))
17112 and then not Synchronized_Present (Parent (Priv_T))
17113 and then Nkind (Orig_Decl) = N_Full_Type_Declaration
17114 and then Nkind
17115 (Type_Definition (Orig_Decl)) = N_Derived_Type_Definition
17116 and then Limited_Present (Type_Definition (Orig_Decl))
17117 then
17118 Error_Msg_N
17119 ("full view of non-limited extension cannot be limited", N);
17120 end if;
17121 end;
17122
17123 -- Ada 2005 (AI-443): A synchronized private extension must be
17124 -- completed by a task or protected type.
17125
17126 if Ada_Version >= Ada_2005
17127 and then Nkind (Parent (Priv_T)) = N_Private_Extension_Declaration
17128 and then Synchronized_Present (Parent (Priv_T))
17129 and then not Is_Concurrent_Type (Full_T)
17130 then
17131 Error_Msg_N ("full view of synchronized extension must " &
17132 "be synchronized type", N);
17133 end if;
17134
17135 -- Ada 2005 AI-363: if the full view has discriminants with
17136 -- defaults, it is illegal to declare constrained access subtypes
17137 -- whose designated type is the current type. This allows objects
17138 -- of the type that are declared in the heap to be unconstrained.
17139
17140 if not Has_Unknown_Discriminants (Priv_T)
17141 and then not Has_Discriminants (Priv_T)
17142 and then Has_Discriminants (Full_T)
17143 and then
17144 Present (Discriminant_Default_Value (First_Discriminant (Full_T)))
17145 then
17146 Set_Has_Constrained_Partial_View (Full_T);
17147 Set_Has_Constrained_Partial_View (Priv_T);
17148 end if;
17149
17150 -- Create a full declaration for all its subtypes recorded in
17151 -- Private_Dependents and swap them similarly to the base type. These
17152 -- are subtypes that have been define before the full declaration of
17153 -- the private type. We also swap the entry in Private_Dependents list
17154 -- so we can properly restore the private view on exit from the scope.
17155
17156 declare
17157 Priv_Elmt : Elmt_Id;
17158 Priv : Entity_Id;
17159 Full : Entity_Id;
17160
17161 begin
17162 Priv_Elmt := First_Elmt (Private_Dependents (Priv_T));
17163 while Present (Priv_Elmt) loop
17164 Priv := Node (Priv_Elmt);
17165
17166 if Ekind_In (Priv, E_Private_Subtype,
17167 E_Limited_Private_Subtype,
17168 E_Record_Subtype_With_Private)
17169 then
17170 Full := Make_Defining_Identifier (Sloc (Priv), Chars (Priv));
17171 Set_Is_Itype (Full);
17172 Set_Parent (Full, Parent (Priv));
17173 Set_Associated_Node_For_Itype (Full, N);
17174
17175 -- Now we need to complete the private subtype, but since the
17176 -- base type has already been swapped, we must also swap the
17177 -- subtypes (and thus, reverse the arguments in the call to
17178 -- Complete_Private_Subtype).
17179
17180 Copy_And_Swap (Priv, Full);
17181 Complete_Private_Subtype (Full, Priv, Full_T, N);
17182 Replace_Elmt (Priv_Elmt, Full);
17183 end if;
17184
17185 Next_Elmt (Priv_Elmt);
17186 end loop;
17187 end;
17188
17189 -- If the private view was tagged, copy the new primitive operations
17190 -- from the private view to the full view.
17191
17192 if Is_Tagged_Type (Full_T) then
17193 declare
17194 Disp_Typ : Entity_Id;
17195 Full_List : Elist_Id;
17196 Prim : Entity_Id;
17197 Prim_Elmt : Elmt_Id;
17198 Priv_List : Elist_Id;
17199
17200 function Contains
17201 (E : Entity_Id;
17202 L : Elist_Id) return Boolean;
17203 -- Determine whether list L contains element E
17204
17205 --------------
17206 -- Contains --
17207 --------------
17208
17209 function Contains
17210 (E : Entity_Id;
17211 L : Elist_Id) return Boolean
17212 is
17213 List_Elmt : Elmt_Id;
17214
17215 begin
17216 List_Elmt := First_Elmt (L);
17217 while Present (List_Elmt) loop
17218 if Node (List_Elmt) = E then
17219 return True;
17220 end if;
17221
17222 Next_Elmt (List_Elmt);
17223 end loop;
17224
17225 return False;
17226 end Contains;
17227
17228 -- Start of processing
17229
17230 begin
17231 if Is_Tagged_Type (Priv_T) then
17232 Priv_List := Primitive_Operations (Priv_T);
17233 Prim_Elmt := First_Elmt (Priv_List);
17234
17235 -- In the case of a concurrent type completing a private tagged
17236 -- type, primitives may have been declared in between the two
17237 -- views. These subprograms need to be wrapped the same way
17238 -- entries and protected procedures are handled because they
17239 -- cannot be directly shared by the two views.
17240
17241 if Is_Concurrent_Type (Full_T) then
17242 declare
17243 Conc_Typ : constant Entity_Id :=
17244 Corresponding_Record_Type (Full_T);
17245 Curr_Nod : Node_Id := Parent (Conc_Typ);
17246 Wrap_Spec : Node_Id;
17247
17248 begin
17249 while Present (Prim_Elmt) loop
17250 Prim := Node (Prim_Elmt);
17251
17252 if Comes_From_Source (Prim)
17253 and then not Is_Abstract_Subprogram (Prim)
17254 then
17255 Wrap_Spec :=
17256 Make_Subprogram_Declaration (Sloc (Prim),
17257 Specification =>
17258 Build_Wrapper_Spec
17259 (Subp_Id => Prim,
17260 Obj_Typ => Conc_Typ,
17261 Formals =>
17262 Parameter_Specifications (
17263 Parent (Prim))));
17264
17265 Insert_After (Curr_Nod, Wrap_Spec);
17266 Curr_Nod := Wrap_Spec;
17267
17268 Analyze (Wrap_Spec);
17269 end if;
17270
17271 Next_Elmt (Prim_Elmt);
17272 end loop;
17273
17274 return;
17275 end;
17276
17277 -- For non-concurrent types, transfer explicit primitives, but
17278 -- omit those inherited from the parent of the private view
17279 -- since they will be re-inherited later on.
17280
17281 else
17282 Full_List := Primitive_Operations (Full_T);
17283
17284 while Present (Prim_Elmt) loop
17285 Prim := Node (Prim_Elmt);
17286
17287 if Comes_From_Source (Prim)
17288 and then not Contains (Prim, Full_List)
17289 then
17290 Append_Elmt (Prim, Full_List);
17291 end if;
17292
17293 Next_Elmt (Prim_Elmt);
17294 end loop;
17295 end if;
17296
17297 -- Untagged private view
17298
17299 else
17300 Full_List := Primitive_Operations (Full_T);
17301
17302 -- In this case the partial view is untagged, so here we locate
17303 -- all of the earlier primitives that need to be treated as
17304 -- dispatching (those that appear between the two views). Note
17305 -- that these additional operations must all be new operations
17306 -- (any earlier operations that override inherited operations
17307 -- of the full view will already have been inserted in the
17308 -- primitives list, marked by Check_Operation_From_Private_View
17309 -- as dispatching. Note that implicit "/=" operators are
17310 -- excluded from being added to the primitives list since they
17311 -- shouldn't be treated as dispatching (tagged "/=" is handled
17312 -- specially).
17313
17314 Prim := Next_Entity (Full_T);
17315 while Present (Prim) and then Prim /= Priv_T loop
17316 if Ekind_In (Prim, E_Procedure, E_Function) then
17317 Disp_Typ := Find_Dispatching_Type (Prim);
17318
17319 if Disp_Typ = Full_T
17320 and then (Chars (Prim) /= Name_Op_Ne
17321 or else Comes_From_Source (Prim))
17322 then
17323 Check_Controlling_Formals (Full_T, Prim);
17324
17325 if not Is_Dispatching_Operation (Prim) then
17326 Append_Elmt (Prim, Full_List);
17327 Set_Is_Dispatching_Operation (Prim, True);
17328 Set_DT_Position (Prim, No_Uint);
17329 end if;
17330
17331 elsif Is_Dispatching_Operation (Prim)
17332 and then Disp_Typ /= Full_T
17333 then
17334
17335 -- Verify that it is not otherwise controlled by a
17336 -- formal or a return value of type T.
17337
17338 Check_Controlling_Formals (Disp_Typ, Prim);
17339 end if;
17340 end if;
17341
17342 Next_Entity (Prim);
17343 end loop;
17344 end if;
17345
17346 -- For the tagged case, the two views can share the same primitive
17347 -- operations list and the same class-wide type. Update attributes
17348 -- of the class-wide type which depend on the full declaration.
17349
17350 if Is_Tagged_Type (Priv_T) then
17351 Set_Direct_Primitive_Operations (Priv_T, Full_List);
17352 Set_Class_Wide_Type
17353 (Base_Type (Full_T), Class_Wide_Type (Priv_T));
17354
17355 Set_Has_Task (Class_Wide_Type (Priv_T), Has_Task (Full_T));
17356 end if;
17357 end;
17358 end if;
17359
17360 -- Ada 2005 AI 161: Check preelaboratable initialization consistency
17361
17362 if Known_To_Have_Preelab_Init (Priv_T) then
17363
17364 -- Case where there is a pragma Preelaborable_Initialization. We
17365 -- always allow this in predefined units, which is a bit of a kludge,
17366 -- but it means we don't have to struggle to meet the requirements in
17367 -- the RM for having Preelaborable Initialization. Otherwise we
17368 -- require that the type meets the RM rules. But we can't check that
17369 -- yet, because of the rule about overriding Ininitialize, so we
17370 -- simply set a flag that will be checked at freeze time.
17371
17372 if not In_Predefined_Unit (Full_T) then
17373 Set_Must_Have_Preelab_Init (Full_T);
17374 end if;
17375 end if;
17376
17377 -- If pragma CPP_Class was applied to the private type declaration,
17378 -- propagate it now to the full type declaration.
17379
17380 if Is_CPP_Class (Priv_T) then
17381 Set_Is_CPP_Class (Full_T);
17382 Set_Convention (Full_T, Convention_CPP);
17383 end if;
17384
17385 -- If the private view has user specified stream attributes, then so has
17386 -- the full view.
17387
17388 -- Why the test, how could these flags be already set in Full_T ???
17389
17390 if Has_Specified_Stream_Read (Priv_T) then
17391 Set_Has_Specified_Stream_Read (Full_T);
17392 end if;
17393
17394 if Has_Specified_Stream_Write (Priv_T) then
17395 Set_Has_Specified_Stream_Write (Full_T);
17396 end if;
17397
17398 if Has_Specified_Stream_Input (Priv_T) then
17399 Set_Has_Specified_Stream_Input (Full_T);
17400 end if;
17401
17402 if Has_Specified_Stream_Output (Priv_T) then
17403 Set_Has_Specified_Stream_Output (Full_T);
17404 end if;
17405
17406 -- Deal with invariants
17407
17408 if Has_Invariants (Full_T)
17409 or else
17410 Has_Invariants (Priv_T)
17411 then
17412 Set_Has_Invariants (Full_T);
17413 Set_Has_Invariants (Priv_T);
17414 end if;
17415
17416 if Has_Inheritable_Invariants (Full_T)
17417 or else
17418 Has_Inheritable_Invariants (Priv_T)
17419 then
17420 Set_Has_Inheritable_Invariants (Full_T);
17421 Set_Has_Inheritable_Invariants (Priv_T);
17422 end if;
17423
17424 -- This is where we build the invariant procedure if needed
17425
17426 if Has_Invariants (Priv_T) then
17427 declare
17428 PDecl : Entity_Id;
17429 PBody : Entity_Id;
17430 Packg : constant Node_Id := Declaration_Node (Scope (Priv_T));
17431
17432 begin
17433 Build_Invariant_Procedure (Full_T, PDecl, PBody);
17434
17435 -- Error defense, normally these should be set
17436
17437 if Present (PDecl) and then Present (PBody) then
17438
17439 -- Spec goes at the end of the public part of the package.
17440 -- That's behind us, so we have to manually analyze the
17441 -- inserted spec.
17442
17443 Append_To (Visible_Declarations (Packg), PDecl);
17444 Analyze (PDecl);
17445
17446 -- Body goes at the end of the private part of the package.
17447 -- That's ahead of us so it will get analyzed later on when
17448 -- we come to it.
17449
17450 Append_To (Private_Declarations (Packg), PBody);
17451
17452 -- Copy Invariant procedure to private declaration
17453
17454 Set_Invariant_Procedure (Priv_T, Invariant_Procedure (Full_T));
17455 Set_Has_Invariants (Priv_T);
17456 end if;
17457 end;
17458 end if;
17459
17460 -- Propagate predicates to full type
17461
17462 if Has_Predicates (Priv_T) then
17463 Set_Predicate_Function (Priv_T, Predicate_Function (Full_T));
17464 Set_Has_Predicates (Priv_T);
17465 end if;
17466 end Process_Full_View;
17467
17468 -----------------------------------
17469 -- Process_Incomplete_Dependents --
17470 -----------------------------------
17471
17472 procedure Process_Incomplete_Dependents
17473 (N : Node_Id;
17474 Full_T : Entity_Id;
17475 Inc_T : Entity_Id)
17476 is
17477 Inc_Elmt : Elmt_Id;
17478 Priv_Dep : Entity_Id;
17479 New_Subt : Entity_Id;
17480
17481 Disc_Constraint : Elist_Id;
17482
17483 begin
17484 if No (Private_Dependents (Inc_T)) then
17485 return;
17486 end if;
17487
17488 -- Itypes that may be generated by the completion of an incomplete
17489 -- subtype are not used by the back-end and not attached to the tree.
17490 -- They are created only for constraint-checking purposes.
17491
17492 Inc_Elmt := First_Elmt (Private_Dependents (Inc_T));
17493 while Present (Inc_Elmt) loop
17494 Priv_Dep := Node (Inc_Elmt);
17495
17496 if Ekind (Priv_Dep) = E_Subprogram_Type then
17497
17498 -- An Access_To_Subprogram type may have a return type or a
17499 -- parameter type that is incomplete. Replace with the full view.
17500
17501 if Etype (Priv_Dep) = Inc_T then
17502 Set_Etype (Priv_Dep, Full_T);
17503 end if;
17504
17505 declare
17506 Formal : Entity_Id;
17507
17508 begin
17509 Formal := First_Formal (Priv_Dep);
17510 while Present (Formal) loop
17511 if Etype (Formal) = Inc_T then
17512 Set_Etype (Formal, Full_T);
17513 end if;
17514
17515 Next_Formal (Formal);
17516 end loop;
17517 end;
17518
17519 elsif Is_Overloadable (Priv_Dep) then
17520
17521 -- A protected operation is never dispatching: only its
17522 -- wrapper operation (which has convention Ada) is.
17523
17524 if Is_Tagged_Type (Full_T)
17525 and then Convention (Priv_Dep) /= Convention_Protected
17526 then
17527
17528 -- Subprogram has an access parameter whose designated type
17529 -- was incomplete. Reexamine declaration now, because it may
17530 -- be a primitive operation of the full type.
17531
17532 Check_Operation_From_Incomplete_Type (Priv_Dep, Inc_T);
17533 Set_Is_Dispatching_Operation (Priv_Dep);
17534 Check_Controlling_Formals (Full_T, Priv_Dep);
17535 end if;
17536
17537 elsif Ekind (Priv_Dep) = E_Subprogram_Body then
17538
17539 -- Can happen during processing of a body before the completion
17540 -- of a TA type. Ignore, because spec is also on dependent list.
17541
17542 return;
17543
17544 -- Ada 2005 (AI-412): Transform a regular incomplete subtype into a
17545 -- corresponding subtype of the full view.
17546
17547 elsif Ekind (Priv_Dep) = E_Incomplete_Subtype then
17548 Set_Subtype_Indication
17549 (Parent (Priv_Dep), New_Reference_To (Full_T, Sloc (Priv_Dep)));
17550 Set_Etype (Priv_Dep, Full_T);
17551 Set_Ekind (Priv_Dep, Subtype_Kind (Ekind (Full_T)));
17552 Set_Analyzed (Parent (Priv_Dep), False);
17553
17554 -- Reanalyze the declaration, suppressing the call to
17555 -- Enter_Name to avoid duplicate names.
17556
17557 Analyze_Subtype_Declaration
17558 (N => Parent (Priv_Dep),
17559 Skip => True);
17560
17561 -- Dependent is a subtype
17562
17563 else
17564 -- We build a new subtype indication using the full view of the
17565 -- incomplete parent. The discriminant constraints have been
17566 -- elaborated already at the point of the subtype declaration.
17567
17568 New_Subt := Create_Itype (E_Void, N);
17569
17570 if Has_Discriminants (Full_T) then
17571 Disc_Constraint := Discriminant_Constraint (Priv_Dep);
17572 else
17573 Disc_Constraint := No_Elist;
17574 end if;
17575
17576 Build_Discriminated_Subtype (Full_T, New_Subt, Disc_Constraint, N);
17577 Set_Full_View (Priv_Dep, New_Subt);
17578 end if;
17579
17580 Next_Elmt (Inc_Elmt);
17581 end loop;
17582 end Process_Incomplete_Dependents;
17583
17584 --------------------------------
17585 -- Process_Range_Expr_In_Decl --
17586 --------------------------------
17587
17588 procedure Process_Range_Expr_In_Decl
17589 (R : Node_Id;
17590 T : Entity_Id;
17591 Check_List : List_Id := Empty_List;
17592 R_Check_Off : Boolean := False)
17593 is
17594 Lo, Hi : Node_Id;
17595 R_Checks : Check_Result;
17596 Type_Decl : Node_Id;
17597 Def_Id : Entity_Id;
17598
17599 begin
17600 Analyze_And_Resolve (R, Base_Type (T));
17601
17602 if Nkind (R) = N_Range then
17603 Lo := Low_Bound (R);
17604 Hi := High_Bound (R);
17605
17606 -- We need to ensure validity of the bounds here, because if we
17607 -- go ahead and do the expansion, then the expanded code will get
17608 -- analyzed with range checks suppressed and we miss the check.
17609
17610 Validity_Check_Range (R);
17611
17612 -- If there were errors in the declaration, try and patch up some
17613 -- common mistakes in the bounds. The cases handled are literals
17614 -- which are Integer where the expected type is Real and vice versa.
17615 -- These corrections allow the compilation process to proceed further
17616 -- along since some basic assumptions of the format of the bounds
17617 -- are guaranteed.
17618
17619 if Etype (R) = Any_Type then
17620
17621 if Nkind (Lo) = N_Integer_Literal and then Is_Real_Type (T) then
17622 Rewrite (Lo,
17623 Make_Real_Literal (Sloc (Lo), UR_From_Uint (Intval (Lo))));
17624
17625 elsif Nkind (Hi) = N_Integer_Literal and then Is_Real_Type (T) then
17626 Rewrite (Hi,
17627 Make_Real_Literal (Sloc (Hi), UR_From_Uint (Intval (Hi))));
17628
17629 elsif Nkind (Lo) = N_Real_Literal and then Is_Integer_Type (T) then
17630 Rewrite (Lo,
17631 Make_Integer_Literal (Sloc (Lo), UR_To_Uint (Realval (Lo))));
17632
17633 elsif Nkind (Hi) = N_Real_Literal and then Is_Integer_Type (T) then
17634 Rewrite (Hi,
17635 Make_Integer_Literal (Sloc (Hi), UR_To_Uint (Realval (Hi))));
17636 end if;
17637
17638 Set_Etype (Lo, T);
17639 Set_Etype (Hi, T);
17640 end if;
17641
17642 -- If the bounds of the range have been mistakenly given as string
17643 -- literals (perhaps in place of character literals), then an error
17644 -- has already been reported, but we rewrite the string literal as a
17645 -- bound of the range's type to avoid blowups in later processing
17646 -- that looks at static values.
17647
17648 if Nkind (Lo) = N_String_Literal then
17649 Rewrite (Lo,
17650 Make_Attribute_Reference (Sloc (Lo),
17651 Attribute_Name => Name_First,
17652 Prefix => New_Reference_To (T, Sloc (Lo))));
17653 Analyze_And_Resolve (Lo);
17654 end if;
17655
17656 if Nkind (Hi) = N_String_Literal then
17657 Rewrite (Hi,
17658 Make_Attribute_Reference (Sloc (Hi),
17659 Attribute_Name => Name_First,
17660 Prefix => New_Reference_To (T, Sloc (Hi))));
17661 Analyze_And_Resolve (Hi);
17662 end if;
17663
17664 -- If bounds aren't scalar at this point then exit, avoiding
17665 -- problems with further processing of the range in this procedure.
17666
17667 if not Is_Scalar_Type (Etype (Lo)) then
17668 return;
17669 end if;
17670
17671 -- Resolve (actually Sem_Eval) has checked that the bounds are in
17672 -- then range of the base type. Here we check whether the bounds
17673 -- are in the range of the subtype itself. Note that if the bounds
17674 -- represent the null range the Constraint_Error exception should
17675 -- not be raised.
17676
17677 -- ??? The following code should be cleaned up as follows
17678
17679 -- 1. The Is_Null_Range (Lo, Hi) test should disappear since it
17680 -- is done in the call to Range_Check (R, T); below
17681
17682 -- 2. The use of R_Check_Off should be investigated and possibly
17683 -- removed, this would clean up things a bit.
17684
17685 if Is_Null_Range (Lo, Hi) then
17686 null;
17687
17688 else
17689 -- Capture values of bounds and generate temporaries for them
17690 -- if needed, before applying checks, since checks may cause
17691 -- duplication of the expression without forcing evaluation.
17692
17693 if Expander_Active then
17694 Force_Evaluation (Lo);
17695 Force_Evaluation (Hi);
17696 end if;
17697
17698 -- We use a flag here instead of suppressing checks on the
17699 -- type because the type we check against isn't necessarily
17700 -- the place where we put the check.
17701
17702 if not R_Check_Off then
17703 R_Checks := Get_Range_Checks (R, T);
17704
17705 -- Look up tree to find an appropriate insertion point.
17706 -- This seems really junk code, and very brittle, couldn't
17707 -- we just use an insert actions call of some kind ???
17708
17709 Type_Decl := Parent (R);
17710 while Present (Type_Decl) and then not
17711 (Nkind_In (Type_Decl, N_Full_Type_Declaration,
17712 N_Subtype_Declaration,
17713 N_Loop_Statement,
17714 N_Task_Type_Declaration)
17715 or else
17716 Nkind_In (Type_Decl, N_Single_Task_Declaration,
17717 N_Protected_Type_Declaration,
17718 N_Single_Protected_Declaration))
17719 loop
17720 Type_Decl := Parent (Type_Decl);
17721 end loop;
17722
17723 -- Why would Type_Decl not be present??? Without this test,
17724 -- short regression tests fail.
17725
17726 if Present (Type_Decl) then
17727
17728 -- Case of loop statement (more comments ???)
17729
17730 if Nkind (Type_Decl) = N_Loop_Statement then
17731 declare
17732 Indic : Node_Id;
17733
17734 begin
17735 Indic := Parent (R);
17736 while Present (Indic)
17737 and then Nkind (Indic) /= N_Subtype_Indication
17738 loop
17739 Indic := Parent (Indic);
17740 end loop;
17741
17742 if Present (Indic) then
17743 Def_Id := Etype (Subtype_Mark (Indic));
17744
17745 Insert_Range_Checks
17746 (R_Checks,
17747 Type_Decl,
17748 Def_Id,
17749 Sloc (Type_Decl),
17750 R,
17751 Do_Before => True);
17752 end if;
17753 end;
17754
17755 -- All other cases (more comments ???)
17756
17757 else
17758 Def_Id := Defining_Identifier (Type_Decl);
17759
17760 if (Ekind (Def_Id) = E_Record_Type
17761 and then Depends_On_Discriminant (R))
17762 or else
17763 (Ekind (Def_Id) = E_Protected_Type
17764 and then Has_Discriminants (Def_Id))
17765 then
17766 Append_Range_Checks
17767 (R_Checks, Check_List, Def_Id, Sloc (Type_Decl), R);
17768
17769 else
17770 Insert_Range_Checks
17771 (R_Checks, Type_Decl, Def_Id, Sloc (Type_Decl), R);
17772
17773 end if;
17774 end if;
17775 end if;
17776 end if;
17777 end if;
17778
17779 elsif Expander_Active then
17780 Get_Index_Bounds (R, Lo, Hi);
17781 Force_Evaluation (Lo);
17782 Force_Evaluation (Hi);
17783 end if;
17784 end Process_Range_Expr_In_Decl;
17785
17786 --------------------------------------
17787 -- Process_Real_Range_Specification --
17788 --------------------------------------
17789
17790 procedure Process_Real_Range_Specification (Def : Node_Id) is
17791 Spec : constant Node_Id := Real_Range_Specification (Def);
17792 Lo : Node_Id;
17793 Hi : Node_Id;
17794 Err : Boolean := False;
17795
17796 procedure Analyze_Bound (N : Node_Id);
17797 -- Analyze and check one bound
17798
17799 -------------------
17800 -- Analyze_Bound --
17801 -------------------
17802
17803 procedure Analyze_Bound (N : Node_Id) is
17804 begin
17805 Analyze_And_Resolve (N, Any_Real);
17806
17807 if not Is_OK_Static_Expression (N) then
17808 Flag_Non_Static_Expr
17809 ("bound in real type definition is not static!", N);
17810 Err := True;
17811 end if;
17812 end Analyze_Bound;
17813
17814 -- Start of processing for Process_Real_Range_Specification
17815
17816 begin
17817 if Present (Spec) then
17818 Lo := Low_Bound (Spec);
17819 Hi := High_Bound (Spec);
17820 Analyze_Bound (Lo);
17821 Analyze_Bound (Hi);
17822
17823 -- If error, clear away junk range specification
17824
17825 if Err then
17826 Set_Real_Range_Specification (Def, Empty);
17827 end if;
17828 end if;
17829 end Process_Real_Range_Specification;
17830
17831 ---------------------
17832 -- Process_Subtype --
17833 ---------------------
17834
17835 function Process_Subtype
17836 (S : Node_Id;
17837 Related_Nod : Node_Id;
17838 Related_Id : Entity_Id := Empty;
17839 Suffix : Character := ' ') return Entity_Id
17840 is
17841 P : Node_Id;
17842 Def_Id : Entity_Id;
17843 Error_Node : Node_Id;
17844 Full_View_Id : Entity_Id;
17845 Subtype_Mark_Id : Entity_Id;
17846
17847 May_Have_Null_Exclusion : Boolean;
17848
17849 procedure Check_Incomplete (T : Entity_Id);
17850 -- Called to verify that an incomplete type is not used prematurely
17851
17852 ----------------------
17853 -- Check_Incomplete --
17854 ----------------------
17855
17856 procedure Check_Incomplete (T : Entity_Id) is
17857 begin
17858 -- Ada 2005 (AI-412): Incomplete subtypes are legal
17859
17860 if Ekind (Root_Type (Entity (T))) = E_Incomplete_Type
17861 and then
17862 not (Ada_Version >= Ada_2005
17863 and then
17864 (Nkind (Parent (T)) = N_Subtype_Declaration
17865 or else
17866 (Nkind (Parent (T)) = N_Subtype_Indication
17867 and then Nkind (Parent (Parent (T))) =
17868 N_Subtype_Declaration)))
17869 then
17870 Error_Msg_N ("invalid use of type before its full declaration", T);
17871 end if;
17872 end Check_Incomplete;
17873
17874 -- Start of processing for Process_Subtype
17875
17876 begin
17877 -- Case of no constraints present
17878
17879 if Nkind (S) /= N_Subtype_Indication then
17880 Find_Type (S);
17881 Check_Incomplete (S);
17882 P := Parent (S);
17883
17884 -- Ada 2005 (AI-231): Static check
17885
17886 if Ada_Version >= Ada_2005
17887 and then Present (P)
17888 and then Null_Exclusion_Present (P)
17889 and then Nkind (P) /= N_Access_To_Object_Definition
17890 and then not Is_Access_Type (Entity (S))
17891 then
17892 Error_Msg_N ("`NOT NULL` only allowed for an access type", S);
17893 end if;
17894
17895 -- The following is ugly, can't we have a range or even a flag???
17896
17897 May_Have_Null_Exclusion :=
17898 Nkind_In (P, N_Access_Definition,
17899 N_Access_Function_Definition,
17900 N_Access_Procedure_Definition,
17901 N_Access_To_Object_Definition,
17902 N_Allocator,
17903 N_Component_Definition)
17904 or else
17905 Nkind_In (P, N_Derived_Type_Definition,
17906 N_Discriminant_Specification,
17907 N_Formal_Object_Declaration,
17908 N_Object_Declaration,
17909 N_Object_Renaming_Declaration,
17910 N_Parameter_Specification,
17911 N_Subtype_Declaration);
17912
17913 -- Create an Itype that is a duplicate of Entity (S) but with the
17914 -- null-exclusion attribute.
17915
17916 if May_Have_Null_Exclusion
17917 and then Is_Access_Type (Entity (S))
17918 and then Null_Exclusion_Present (P)
17919
17920 -- No need to check the case of an access to object definition.
17921 -- It is correct to define double not-null pointers.
17922
17923 -- Example:
17924 -- type Not_Null_Int_Ptr is not null access Integer;
17925 -- type Acc is not null access Not_Null_Int_Ptr;
17926
17927 and then Nkind (P) /= N_Access_To_Object_Definition
17928 then
17929 if Can_Never_Be_Null (Entity (S)) then
17930 case Nkind (Related_Nod) is
17931 when N_Full_Type_Declaration =>
17932 if Nkind (Type_Definition (Related_Nod))
17933 in N_Array_Type_Definition
17934 then
17935 Error_Node :=
17936 Subtype_Indication
17937 (Component_Definition
17938 (Type_Definition (Related_Nod)));
17939 else
17940 Error_Node :=
17941 Subtype_Indication (Type_Definition (Related_Nod));
17942 end if;
17943
17944 when N_Subtype_Declaration =>
17945 Error_Node := Subtype_Indication (Related_Nod);
17946
17947 when N_Object_Declaration =>
17948 Error_Node := Object_Definition (Related_Nod);
17949
17950 when N_Component_Declaration =>
17951 Error_Node :=
17952 Subtype_Indication (Component_Definition (Related_Nod));
17953
17954 when N_Allocator =>
17955 Error_Node := Expression (Related_Nod);
17956
17957 when others =>
17958 pragma Assert (False);
17959 Error_Node := Related_Nod;
17960 end case;
17961
17962 Error_Msg_NE
17963 ("`NOT NULL` not allowed (& already excludes null)",
17964 Error_Node,
17965 Entity (S));
17966 end if;
17967
17968 Set_Etype (S,
17969 Create_Null_Excluding_Itype
17970 (T => Entity (S),
17971 Related_Nod => P));
17972 Set_Entity (S, Etype (S));
17973 end if;
17974
17975 return Entity (S);
17976
17977 -- Case of constraint present, so that we have an N_Subtype_Indication
17978 -- node (this node is created only if constraints are present).
17979
17980 else
17981 Find_Type (Subtype_Mark (S));
17982
17983 if Nkind (Parent (S)) /= N_Access_To_Object_Definition
17984 and then not
17985 (Nkind (Parent (S)) = N_Subtype_Declaration
17986 and then Is_Itype (Defining_Identifier (Parent (S))))
17987 then
17988 Check_Incomplete (Subtype_Mark (S));
17989 end if;
17990
17991 P := Parent (S);
17992 Subtype_Mark_Id := Entity (Subtype_Mark (S));
17993
17994 -- Explicit subtype declaration case
17995
17996 if Nkind (P) = N_Subtype_Declaration then
17997 Def_Id := Defining_Identifier (P);
17998
17999 -- Explicit derived type definition case
18000
18001 elsif Nkind (P) = N_Derived_Type_Definition then
18002 Def_Id := Defining_Identifier (Parent (P));
18003
18004 -- Implicit case, the Def_Id must be created as an implicit type.
18005 -- The one exception arises in the case of concurrent types, array
18006 -- and access types, where other subsidiary implicit types may be
18007 -- created and must appear before the main implicit type. In these
18008 -- cases we leave Def_Id set to Empty as a signal that Create_Itype
18009 -- has not yet been called to create Def_Id.
18010
18011 else
18012 if Is_Array_Type (Subtype_Mark_Id)
18013 or else Is_Concurrent_Type (Subtype_Mark_Id)
18014 or else Is_Access_Type (Subtype_Mark_Id)
18015 then
18016 Def_Id := Empty;
18017
18018 -- For the other cases, we create a new unattached Itype,
18019 -- and set the indication to ensure it gets attached later.
18020
18021 else
18022 Def_Id :=
18023 Create_Itype (E_Void, Related_Nod, Related_Id, Suffix);
18024 end if;
18025 end if;
18026
18027 -- If the kind of constraint is invalid for this kind of type,
18028 -- then give an error, and then pretend no constraint was given.
18029
18030 if not Is_Valid_Constraint_Kind
18031 (Ekind (Subtype_Mark_Id), Nkind (Constraint (S)))
18032 then
18033 Error_Msg_N
18034 ("incorrect constraint for this kind of type", Constraint (S));
18035
18036 Rewrite (S, New_Copy_Tree (Subtype_Mark (S)));
18037
18038 -- Set Ekind of orphan itype, to prevent cascaded errors
18039
18040 if Present (Def_Id) then
18041 Set_Ekind (Def_Id, Ekind (Any_Type));
18042 end if;
18043
18044 -- Make recursive call, having got rid of the bogus constraint
18045
18046 return Process_Subtype (S, Related_Nod, Related_Id, Suffix);
18047 end if;
18048
18049 -- Remaining processing depends on type
18050
18051 case Ekind (Subtype_Mark_Id) is
18052 when Access_Kind =>
18053 Constrain_Access (Def_Id, S, Related_Nod);
18054
18055 if Expander_Active
18056 and then Is_Itype (Designated_Type (Def_Id))
18057 and then Nkind (Related_Nod) = N_Subtype_Declaration
18058 and then not Is_Incomplete_Type (Designated_Type (Def_Id))
18059 then
18060 Build_Itype_Reference
18061 (Designated_Type (Def_Id), Related_Nod);
18062 end if;
18063
18064 when Array_Kind =>
18065 Constrain_Array (Def_Id, S, Related_Nod, Related_Id, Suffix);
18066
18067 when Decimal_Fixed_Point_Kind =>
18068 Constrain_Decimal (Def_Id, S);
18069
18070 when Enumeration_Kind =>
18071 Constrain_Enumeration (Def_Id, S);
18072
18073 when Ordinary_Fixed_Point_Kind =>
18074 Constrain_Ordinary_Fixed (Def_Id, S);
18075
18076 when Float_Kind =>
18077 Constrain_Float (Def_Id, S);
18078
18079 when Integer_Kind =>
18080 Constrain_Integer (Def_Id, S);
18081
18082 when E_Record_Type |
18083 E_Record_Subtype |
18084 Class_Wide_Kind |
18085 E_Incomplete_Type =>
18086 Constrain_Discriminated_Type (Def_Id, S, Related_Nod);
18087
18088 if Ekind (Def_Id) = E_Incomplete_Type then
18089 Set_Private_Dependents (Def_Id, New_Elmt_List);
18090 end if;
18091
18092 when Private_Kind =>
18093 Constrain_Discriminated_Type (Def_Id, S, Related_Nod);
18094 Set_Private_Dependents (Def_Id, New_Elmt_List);
18095
18096 -- In case of an invalid constraint prevent further processing
18097 -- since the type constructed is missing expected fields.
18098
18099 if Etype (Def_Id) = Any_Type then
18100 return Def_Id;
18101 end if;
18102
18103 -- If the full view is that of a task with discriminants,
18104 -- we must constrain both the concurrent type and its
18105 -- corresponding record type. Otherwise we will just propagate
18106 -- the constraint to the full view, if available.
18107
18108 if Present (Full_View (Subtype_Mark_Id))
18109 and then Has_Discriminants (Subtype_Mark_Id)
18110 and then Is_Concurrent_Type (Full_View (Subtype_Mark_Id))
18111 then
18112 Full_View_Id :=
18113 Create_Itype (E_Void, Related_Nod, Related_Id, Suffix);
18114
18115 Set_Entity (Subtype_Mark (S), Full_View (Subtype_Mark_Id));
18116 Constrain_Concurrent (Full_View_Id, S,
18117 Related_Nod, Related_Id, Suffix);
18118 Set_Entity (Subtype_Mark (S), Subtype_Mark_Id);
18119 Set_Full_View (Def_Id, Full_View_Id);
18120
18121 -- Introduce an explicit reference to the private subtype,
18122 -- to prevent scope anomalies in gigi if first use appears
18123 -- in a nested context, e.g. a later function body.
18124 -- Should this be generated in other contexts than a full
18125 -- type declaration?
18126
18127 if Is_Itype (Def_Id)
18128 and then
18129 Nkind (Parent (P)) = N_Full_Type_Declaration
18130 then
18131 Build_Itype_Reference (Def_Id, Parent (P));
18132 end if;
18133
18134 else
18135 Prepare_Private_Subtype_Completion (Def_Id, Related_Nod);
18136 end if;
18137
18138 when Concurrent_Kind =>
18139 Constrain_Concurrent (Def_Id, S,
18140 Related_Nod, Related_Id, Suffix);
18141
18142 when others =>
18143 Error_Msg_N ("invalid subtype mark in subtype indication", S);
18144 end case;
18145
18146 -- Size and Convention are always inherited from the base type
18147
18148 Set_Size_Info (Def_Id, (Subtype_Mark_Id));
18149 Set_Convention (Def_Id, Convention (Subtype_Mark_Id));
18150
18151 return Def_Id;
18152 end if;
18153 end Process_Subtype;
18154
18155 ---------------------------------------
18156 -- Check_Anonymous_Access_Components --
18157 ---------------------------------------
18158
18159 procedure Check_Anonymous_Access_Components
18160 (Typ_Decl : Node_Id;
18161 Typ : Entity_Id;
18162 Prev : Entity_Id;
18163 Comp_List : Node_Id)
18164 is
18165 Loc : constant Source_Ptr := Sloc (Typ_Decl);
18166 Anon_Access : Entity_Id;
18167 Acc_Def : Node_Id;
18168 Comp : Node_Id;
18169 Comp_Def : Node_Id;
18170 Decl : Node_Id;
18171 Type_Def : Node_Id;
18172
18173 procedure Build_Incomplete_Type_Declaration;
18174 -- If the record type contains components that include an access to the
18175 -- current record, then create an incomplete type declaration for the
18176 -- record, to be used as the designated type of the anonymous access.
18177 -- This is done only once, and only if there is no previous partial
18178 -- view of the type.
18179
18180 function Designates_T (Subt : Node_Id) return Boolean;
18181 -- Check whether a node designates the enclosing record type, or 'Class
18182 -- of that type
18183
18184 function Mentions_T (Acc_Def : Node_Id) return Boolean;
18185 -- Check whether an access definition includes a reference to
18186 -- the enclosing record type. The reference can be a subtype mark
18187 -- in the access definition itself, a 'Class attribute reference, or
18188 -- recursively a reference appearing in a parameter specification
18189 -- or result definition of an access_to_subprogram definition.
18190
18191 --------------------------------------
18192 -- Build_Incomplete_Type_Declaration --
18193 --------------------------------------
18194
18195 procedure Build_Incomplete_Type_Declaration is
18196 Decl : Node_Id;
18197 Inc_T : Entity_Id;
18198 H : Entity_Id;
18199
18200 -- Is_Tagged indicates whether the type is tagged. It is tagged if
18201 -- it's "is new ... with record" or else "is tagged record ...".
18202
18203 Is_Tagged : constant Boolean :=
18204 (Nkind (Type_Definition (Typ_Decl)) = N_Derived_Type_Definition
18205 and then
18206 Present
18207 (Record_Extension_Part (Type_Definition (Typ_Decl))))
18208 or else
18209 (Nkind (Type_Definition (Typ_Decl)) = N_Record_Definition
18210 and then Tagged_Present (Type_Definition (Typ_Decl)));
18211
18212 begin
18213 -- If there is a previous partial view, no need to create a new one
18214 -- If the partial view, given by Prev, is incomplete, If Prev is
18215 -- a private declaration, full declaration is flagged accordingly.
18216
18217 if Prev /= Typ then
18218 if Is_Tagged then
18219 Make_Class_Wide_Type (Prev);
18220 Set_Class_Wide_Type (Typ, Class_Wide_Type (Prev));
18221 Set_Etype (Class_Wide_Type (Typ), Typ);
18222 end if;
18223
18224 return;
18225
18226 elsif Has_Private_Declaration (Typ) then
18227
18228 -- If we refer to T'Class inside T, and T is the completion of a
18229 -- private type, then we need to make sure the class-wide type
18230 -- exists.
18231
18232 if Is_Tagged then
18233 Make_Class_Wide_Type (Typ);
18234 end if;
18235
18236 return;
18237
18238 -- If there was a previous anonymous access type, the incomplete
18239 -- type declaration will have been created already.
18240
18241 elsif Present (Current_Entity (Typ))
18242 and then Ekind (Current_Entity (Typ)) = E_Incomplete_Type
18243 and then Full_View (Current_Entity (Typ)) = Typ
18244 then
18245 if Is_Tagged
18246 and then Comes_From_Source (Current_Entity (Typ))
18247 and then not Is_Tagged_Type (Current_Entity (Typ))
18248 then
18249 Make_Class_Wide_Type (Typ);
18250 Error_Msg_N
18251 ("incomplete view of tagged type should be declared tagged?",
18252 Parent (Current_Entity (Typ)));
18253 end if;
18254 return;
18255
18256 else
18257 Inc_T := Make_Defining_Identifier (Loc, Chars (Typ));
18258 Decl := Make_Incomplete_Type_Declaration (Loc, Inc_T);
18259
18260 -- Type has already been inserted into the current scope. Remove
18261 -- it, and add incomplete declaration for type, so that subsequent
18262 -- anonymous access types can use it. The entity is unchained from
18263 -- the homonym list and from immediate visibility. After analysis,
18264 -- the entity in the incomplete declaration becomes immediately
18265 -- visible in the record declaration that follows.
18266
18267 H := Current_Entity (Typ);
18268
18269 if H = Typ then
18270 Set_Name_Entity_Id (Chars (Typ), Homonym (Typ));
18271 else
18272 while Present (H)
18273 and then Homonym (H) /= Typ
18274 loop
18275 H := Homonym (Typ);
18276 end loop;
18277
18278 Set_Homonym (H, Homonym (Typ));
18279 end if;
18280
18281 Insert_Before (Typ_Decl, Decl);
18282 Analyze (Decl);
18283 Set_Full_View (Inc_T, Typ);
18284
18285 if Is_Tagged then
18286
18287 -- Create a common class-wide type for both views, and set the
18288 -- Etype of the class-wide type to the full view.
18289
18290 Make_Class_Wide_Type (Inc_T);
18291 Set_Class_Wide_Type (Typ, Class_Wide_Type (Inc_T));
18292 Set_Etype (Class_Wide_Type (Typ), Typ);
18293 end if;
18294 end if;
18295 end Build_Incomplete_Type_Declaration;
18296
18297 ------------------
18298 -- Designates_T --
18299 ------------------
18300
18301 function Designates_T (Subt : Node_Id) return Boolean is
18302 Type_Id : constant Name_Id := Chars (Typ);
18303
18304 function Names_T (Nam : Node_Id) return Boolean;
18305 -- The record type has not been introduced in the current scope
18306 -- yet, so we must examine the name of the type itself, either
18307 -- an identifier T, or an expanded name of the form P.T, where
18308 -- P denotes the current scope.
18309
18310 -------------
18311 -- Names_T --
18312 -------------
18313
18314 function Names_T (Nam : Node_Id) return Boolean is
18315 begin
18316 if Nkind (Nam) = N_Identifier then
18317 return Chars (Nam) = Type_Id;
18318
18319 elsif Nkind (Nam) = N_Selected_Component then
18320 if Chars (Selector_Name (Nam)) = Type_Id then
18321 if Nkind (Prefix (Nam)) = N_Identifier then
18322 return Chars (Prefix (Nam)) = Chars (Current_Scope);
18323
18324 elsif Nkind (Prefix (Nam)) = N_Selected_Component then
18325 return Chars (Selector_Name (Prefix (Nam))) =
18326 Chars (Current_Scope);
18327 else
18328 return False;
18329 end if;
18330
18331 else
18332 return False;
18333 end if;
18334
18335 else
18336 return False;
18337 end if;
18338 end Names_T;
18339
18340 -- Start of processing for Designates_T
18341
18342 begin
18343 if Nkind (Subt) = N_Identifier then
18344 return Chars (Subt) = Type_Id;
18345
18346 -- Reference can be through an expanded name which has not been
18347 -- analyzed yet, and which designates enclosing scopes.
18348
18349 elsif Nkind (Subt) = N_Selected_Component then
18350 if Names_T (Subt) then
18351 return True;
18352
18353 -- Otherwise it must denote an entity that is already visible.
18354 -- The access definition may name a subtype of the enclosing
18355 -- type, if there is a previous incomplete declaration for it.
18356
18357 else
18358 Find_Selected_Component (Subt);
18359 return
18360 Is_Entity_Name (Subt)
18361 and then Scope (Entity (Subt)) = Current_Scope
18362 and then
18363 (Chars (Base_Type (Entity (Subt))) = Type_Id
18364 or else
18365 (Is_Class_Wide_Type (Entity (Subt))
18366 and then
18367 Chars (Etype (Base_Type (Entity (Subt)))) =
18368 Type_Id));
18369 end if;
18370
18371 -- A reference to the current type may appear as the prefix of
18372 -- a 'Class attribute.
18373
18374 elsif Nkind (Subt) = N_Attribute_Reference
18375 and then Attribute_Name (Subt) = Name_Class
18376 then
18377 return Names_T (Prefix (Subt));
18378
18379 else
18380 return False;
18381 end if;
18382 end Designates_T;
18383
18384 ----------------
18385 -- Mentions_T --
18386 ----------------
18387
18388 function Mentions_T (Acc_Def : Node_Id) return Boolean is
18389 Param_Spec : Node_Id;
18390
18391 Acc_Subprg : constant Node_Id :=
18392 Access_To_Subprogram_Definition (Acc_Def);
18393
18394 begin
18395 if No (Acc_Subprg) then
18396 return Designates_T (Subtype_Mark (Acc_Def));
18397 end if;
18398
18399 -- Component is an access_to_subprogram: examine its formals,
18400 -- and result definition in the case of an access_to_function.
18401
18402 Param_Spec := First (Parameter_Specifications (Acc_Subprg));
18403 while Present (Param_Spec) loop
18404 if Nkind (Parameter_Type (Param_Spec)) = N_Access_Definition
18405 and then Mentions_T (Parameter_Type (Param_Spec))
18406 then
18407 return True;
18408
18409 elsif Designates_T (Parameter_Type (Param_Spec)) then
18410 return True;
18411 end if;
18412
18413 Next (Param_Spec);
18414 end loop;
18415
18416 if Nkind (Acc_Subprg) = N_Access_Function_Definition then
18417 if Nkind (Result_Definition (Acc_Subprg)) =
18418 N_Access_Definition
18419 then
18420 return Mentions_T (Result_Definition (Acc_Subprg));
18421 else
18422 return Designates_T (Result_Definition (Acc_Subprg));
18423 end if;
18424 end if;
18425
18426 return False;
18427 end Mentions_T;
18428
18429 -- Start of processing for Check_Anonymous_Access_Components
18430
18431 begin
18432 if No (Comp_List) then
18433 return;
18434 end if;
18435
18436 Comp := First (Component_Items (Comp_List));
18437 while Present (Comp) loop
18438 if Nkind (Comp) = N_Component_Declaration
18439 and then Present
18440 (Access_Definition (Component_Definition (Comp)))
18441 and then
18442 Mentions_T (Access_Definition (Component_Definition (Comp)))
18443 then
18444 Comp_Def := Component_Definition (Comp);
18445 Acc_Def :=
18446 Access_To_Subprogram_Definition
18447 (Access_Definition (Comp_Def));
18448
18449 Build_Incomplete_Type_Declaration;
18450 Anon_Access := Make_Temporary (Loc, 'S');
18451
18452 -- Create a declaration for the anonymous access type: either
18453 -- an access_to_object or an access_to_subprogram.
18454
18455 if Present (Acc_Def) then
18456 if Nkind (Acc_Def) = N_Access_Function_Definition then
18457 Type_Def :=
18458 Make_Access_Function_Definition (Loc,
18459 Parameter_Specifications =>
18460 Parameter_Specifications (Acc_Def),
18461 Result_Definition => Result_Definition (Acc_Def));
18462 else
18463 Type_Def :=
18464 Make_Access_Procedure_Definition (Loc,
18465 Parameter_Specifications =>
18466 Parameter_Specifications (Acc_Def));
18467 end if;
18468
18469 else
18470 Type_Def :=
18471 Make_Access_To_Object_Definition (Loc,
18472 Subtype_Indication =>
18473 Relocate_Node
18474 (Subtype_Mark
18475 (Access_Definition (Comp_Def))));
18476
18477 Set_Constant_Present
18478 (Type_Def, Constant_Present (Access_Definition (Comp_Def)));
18479 Set_All_Present
18480 (Type_Def, All_Present (Access_Definition (Comp_Def)));
18481 end if;
18482
18483 Set_Null_Exclusion_Present
18484 (Type_Def,
18485 Null_Exclusion_Present (Access_Definition (Comp_Def)));
18486
18487 Decl :=
18488 Make_Full_Type_Declaration (Loc,
18489 Defining_Identifier => Anon_Access,
18490 Type_Definition => Type_Def);
18491
18492 Insert_Before (Typ_Decl, Decl);
18493 Analyze (Decl);
18494
18495 -- If an access to object, Preserve entity of designated type,
18496 -- for ASIS use, before rewriting the component definition.
18497
18498 if No (Acc_Def) then
18499 declare
18500 Desig : Entity_Id;
18501
18502 begin
18503 Desig := Entity (Subtype_Indication (Type_Def));
18504
18505 -- If the access definition is to the current record,
18506 -- the visible entity at this point is an incomplete
18507 -- type. Retrieve the full view to simplify ASIS queries
18508
18509 if Ekind (Desig) = E_Incomplete_Type then
18510 Desig := Full_View (Desig);
18511 end if;
18512
18513 Set_Entity
18514 (Subtype_Mark (Access_Definition (Comp_Def)), Desig);
18515 end;
18516 end if;
18517
18518 Rewrite (Comp_Def,
18519 Make_Component_Definition (Loc,
18520 Subtype_Indication =>
18521 New_Occurrence_Of (Anon_Access, Loc)));
18522
18523 if Ekind (Designated_Type (Anon_Access)) = E_Subprogram_Type then
18524 Set_Ekind (Anon_Access, E_Anonymous_Access_Subprogram_Type);
18525 else
18526 Set_Ekind (Anon_Access, E_Anonymous_Access_Type);
18527 end if;
18528
18529 Set_Is_Local_Anonymous_Access (Anon_Access);
18530 end if;
18531
18532 Next (Comp);
18533 end loop;
18534
18535 if Present (Variant_Part (Comp_List)) then
18536 declare
18537 V : Node_Id;
18538 begin
18539 V := First_Non_Pragma (Variants (Variant_Part (Comp_List)));
18540 while Present (V) loop
18541 Check_Anonymous_Access_Components
18542 (Typ_Decl, Typ, Prev, Component_List (V));
18543 Next_Non_Pragma (V);
18544 end loop;
18545 end;
18546 end if;
18547 end Check_Anonymous_Access_Components;
18548
18549 --------------------------------
18550 -- Preanalyze_Spec_Expression --
18551 --------------------------------
18552
18553 procedure Preanalyze_Spec_Expression (N : Node_Id; T : Entity_Id) is
18554 Save_In_Spec_Expression : constant Boolean := In_Spec_Expression;
18555 begin
18556 In_Spec_Expression := True;
18557 Preanalyze_And_Resolve (N, T);
18558 In_Spec_Expression := Save_In_Spec_Expression;
18559 end Preanalyze_Spec_Expression;
18560
18561 -----------------------------
18562 -- Record_Type_Declaration --
18563 -----------------------------
18564
18565 procedure Record_Type_Declaration
18566 (T : Entity_Id;
18567 N : Node_Id;
18568 Prev : Entity_Id)
18569 is
18570 Def : constant Node_Id := Type_Definition (N);
18571 Is_Tagged : Boolean;
18572 Tag_Comp : Entity_Id;
18573
18574 begin
18575 -- These flags must be initialized before calling Process_Discriminants
18576 -- because this routine makes use of them.
18577
18578 Set_Ekind (T, E_Record_Type);
18579 Set_Etype (T, T);
18580 Init_Size_Align (T);
18581 Set_Interfaces (T, No_Elist);
18582 Set_Stored_Constraint (T, No_Elist);
18583
18584 -- Normal case
18585
18586 if Ada_Version < Ada_2005
18587 or else not Interface_Present (Def)
18588 then
18589 -- The flag Is_Tagged_Type might have already been set by
18590 -- Find_Type_Name if it detected an error for declaration T. This
18591 -- arises in the case of private tagged types where the full view
18592 -- omits the word tagged.
18593
18594 Is_Tagged :=
18595 Tagged_Present (Def)
18596 or else (Serious_Errors_Detected > 0 and then Is_Tagged_Type (T));
18597
18598 Set_Is_Tagged_Type (T, Is_Tagged);
18599 Set_Is_Limited_Record (T, Limited_Present (Def));
18600
18601 -- Type is abstract if full declaration carries keyword, or if
18602 -- previous partial view did.
18603
18604 Set_Is_Abstract_Type (T, Is_Abstract_Type (T)
18605 or else Abstract_Present (Def));
18606
18607 else
18608 Is_Tagged := True;
18609 Analyze_Interface_Declaration (T, Def);
18610
18611 if Present (Discriminant_Specifications (N)) then
18612 Error_Msg_N
18613 ("interface types cannot have discriminants",
18614 Defining_Identifier
18615 (First (Discriminant_Specifications (N))));
18616 end if;
18617 end if;
18618
18619 -- First pass: if there are self-referential access components,
18620 -- create the required anonymous access type declarations, and if
18621 -- need be an incomplete type declaration for T itself.
18622
18623 Check_Anonymous_Access_Components (N, T, Prev, Component_List (Def));
18624
18625 if Ada_Version >= Ada_2005
18626 and then Present (Interface_List (Def))
18627 then
18628 Check_Interfaces (N, Def);
18629
18630 declare
18631 Ifaces_List : Elist_Id;
18632
18633 begin
18634 -- Ada 2005 (AI-251): Collect the list of progenitors that are not
18635 -- already in the parents.
18636
18637 Collect_Interfaces
18638 (T => T,
18639 Ifaces_List => Ifaces_List,
18640 Exclude_Parents => True);
18641
18642 Set_Interfaces (T, Ifaces_List);
18643 end;
18644 end if;
18645
18646 -- Records constitute a scope for the component declarations within.
18647 -- The scope is created prior to the processing of these declarations.
18648 -- Discriminants are processed first, so that they are visible when
18649 -- processing the other components. The Ekind of the record type itself
18650 -- is set to E_Record_Type (subtypes appear as E_Record_Subtype).
18651
18652 -- Enter record scope
18653
18654 Push_Scope (T);
18655
18656 -- If an incomplete or private type declaration was already given for
18657 -- the type, then this scope already exists, and the discriminants have
18658 -- been declared within. We must verify that the full declaration
18659 -- matches the incomplete one.
18660
18661 Check_Or_Process_Discriminants (N, T, Prev);
18662
18663 Set_Is_Constrained (T, not Has_Discriminants (T));
18664 Set_Has_Delayed_Freeze (T, True);
18665
18666 -- For tagged types add a manually analyzed component corresponding
18667 -- to the component _tag, the corresponding piece of tree will be
18668 -- expanded as part of the freezing actions if it is not a CPP_Class.
18669
18670 if Is_Tagged then
18671
18672 -- Do not add the tag unless we are in expansion mode
18673
18674 if Expander_Active then
18675 Tag_Comp := Make_Defining_Identifier (Sloc (Def), Name_uTag);
18676 Enter_Name (Tag_Comp);
18677
18678 Set_Ekind (Tag_Comp, E_Component);
18679 Set_Is_Tag (Tag_Comp);
18680 Set_Is_Aliased (Tag_Comp);
18681 Set_Etype (Tag_Comp, RTE (RE_Tag));
18682 Set_DT_Entry_Count (Tag_Comp, No_Uint);
18683 Set_Original_Record_Component (Tag_Comp, Tag_Comp);
18684 Init_Component_Location (Tag_Comp);
18685
18686 -- Ada 2005 (AI-251): Addition of the Tag corresponding to all the
18687 -- implemented interfaces.
18688
18689 if Has_Interfaces (T) then
18690 Add_Interface_Tag_Components (N, T);
18691 end if;
18692 end if;
18693
18694 Make_Class_Wide_Type (T);
18695 Set_Direct_Primitive_Operations (T, New_Elmt_List);
18696 end if;
18697
18698 -- We must suppress range checks when processing record components in
18699 -- the presence of discriminants, since we don't want spurious checks to
18700 -- be generated during their analysis, but Suppress_Range_Checks flags
18701 -- must be reset the after processing the record definition.
18702
18703 -- Note: this is the only use of Kill_Range_Checks, and is a bit odd,
18704 -- couldn't we just use the normal range check suppression method here.
18705 -- That would seem cleaner ???
18706
18707 if Has_Discriminants (T) and then not Range_Checks_Suppressed (T) then
18708 Set_Kill_Range_Checks (T, True);
18709 Record_Type_Definition (Def, Prev);
18710 Set_Kill_Range_Checks (T, False);
18711 else
18712 Record_Type_Definition (Def, Prev);
18713 end if;
18714
18715 -- Exit from record scope
18716
18717 End_Scope;
18718
18719 -- Ada 2005 (AI-251 and AI-345): Derive the interface subprograms of all
18720 -- the implemented interfaces and associate them an aliased entity.
18721
18722 if Is_Tagged
18723 and then not Is_Empty_List (Interface_List (Def))
18724 then
18725 Derive_Progenitor_Subprograms (T, T);
18726 end if;
18727 end Record_Type_Declaration;
18728
18729 ----------------------------
18730 -- Record_Type_Definition --
18731 ----------------------------
18732
18733 procedure Record_Type_Definition (Def : Node_Id; Prev_T : Entity_Id) is
18734 Component : Entity_Id;
18735 Ctrl_Components : Boolean := False;
18736 Final_Storage_Only : Boolean;
18737 T : Entity_Id;
18738
18739 begin
18740 if Ekind (Prev_T) = E_Incomplete_Type then
18741 T := Full_View (Prev_T);
18742 else
18743 T := Prev_T;
18744 end if;
18745
18746 Final_Storage_Only := not Is_Controlled (T);
18747
18748 -- Ada 2005: check whether an explicit Limited is present in a derived
18749 -- type declaration.
18750
18751 if Nkind (Parent (Def)) = N_Derived_Type_Definition
18752 and then Limited_Present (Parent (Def))
18753 then
18754 Set_Is_Limited_Record (T);
18755 end if;
18756
18757 -- If the component list of a record type is defined by the reserved
18758 -- word null and there is no discriminant part, then the record type has
18759 -- no components and all records of the type are null records (RM 3.7)
18760 -- This procedure is also called to process the extension part of a
18761 -- record extension, in which case the current scope may have inherited
18762 -- components.
18763
18764 if No (Def)
18765 or else No (Component_List (Def))
18766 or else Null_Present (Component_List (Def))
18767 then
18768 null;
18769
18770 else
18771 Analyze_Declarations (Component_Items (Component_List (Def)));
18772
18773 if Present (Variant_Part (Component_List (Def))) then
18774 Analyze (Variant_Part (Component_List (Def)));
18775 end if;
18776 end if;
18777
18778 -- After completing the semantic analysis of the record definition,
18779 -- record components, both new and inherited, are accessible. Set their
18780 -- kind accordingly. Exclude malformed itypes from illegal declarations,
18781 -- whose Ekind may be void.
18782
18783 Component := First_Entity (Current_Scope);
18784 while Present (Component) loop
18785 if Ekind (Component) = E_Void
18786 and then not Is_Itype (Component)
18787 then
18788 Set_Ekind (Component, E_Component);
18789 Init_Component_Location (Component);
18790 end if;
18791
18792 if Has_Task (Etype (Component)) then
18793 Set_Has_Task (T);
18794 end if;
18795
18796 if Ekind (Component) /= E_Component then
18797 null;
18798
18799 -- Do not set Has_Controlled_Component on a class-wide equivalent
18800 -- type. See Make_CW_Equivalent_Type.
18801
18802 elsif not Is_Class_Wide_Equivalent_Type (T)
18803 and then (Has_Controlled_Component (Etype (Component))
18804 or else (Chars (Component) /= Name_uParent
18805 and then Is_Controlled (Etype (Component))))
18806 then
18807 Set_Has_Controlled_Component (T, True);
18808 Final_Storage_Only :=
18809 Final_Storage_Only
18810 and then Finalize_Storage_Only (Etype (Component));
18811 Ctrl_Components := True;
18812 end if;
18813
18814 Next_Entity (Component);
18815 end loop;
18816
18817 -- A Type is Finalize_Storage_Only only if all its controlled components
18818 -- are also.
18819
18820 if Ctrl_Components then
18821 Set_Finalize_Storage_Only (T, Final_Storage_Only);
18822 end if;
18823
18824 -- Place reference to end record on the proper entity, which may
18825 -- be a partial view.
18826
18827 if Present (Def) then
18828 Process_End_Label (Def, 'e', Prev_T);
18829 end if;
18830 end Record_Type_Definition;
18831
18832 ------------------------
18833 -- Replace_Components --
18834 ------------------------
18835
18836 procedure Replace_Components (Typ : Entity_Id; Decl : Node_Id) is
18837 function Process (N : Node_Id) return Traverse_Result;
18838
18839 -------------
18840 -- Process --
18841 -------------
18842
18843 function Process (N : Node_Id) return Traverse_Result is
18844 Comp : Entity_Id;
18845
18846 begin
18847 if Nkind (N) = N_Discriminant_Specification then
18848 Comp := First_Discriminant (Typ);
18849 while Present (Comp) loop
18850 if Chars (Comp) = Chars (Defining_Identifier (N)) then
18851 Set_Defining_Identifier (N, Comp);
18852 exit;
18853 end if;
18854
18855 Next_Discriminant (Comp);
18856 end loop;
18857
18858 elsif Nkind (N) = N_Component_Declaration then
18859 Comp := First_Component (Typ);
18860 while Present (Comp) loop
18861 if Chars (Comp) = Chars (Defining_Identifier (N)) then
18862 Set_Defining_Identifier (N, Comp);
18863 exit;
18864 end if;
18865
18866 Next_Component (Comp);
18867 end loop;
18868 end if;
18869
18870 return OK;
18871 end Process;
18872
18873 procedure Replace is new Traverse_Proc (Process);
18874
18875 -- Start of processing for Replace_Components
18876
18877 begin
18878 Replace (Decl);
18879 end Replace_Components;
18880
18881 -------------------------------
18882 -- Set_Completion_Referenced --
18883 -------------------------------
18884
18885 procedure Set_Completion_Referenced (E : Entity_Id) is
18886 begin
18887 -- If in main unit, mark entity that is a completion as referenced,
18888 -- warnings go on the partial view when needed.
18889
18890 if In_Extended_Main_Source_Unit (E) then
18891 Set_Referenced (E);
18892 end if;
18893 end Set_Completion_Referenced;
18894
18895 ---------------------
18896 -- Set_Fixed_Range --
18897 ---------------------
18898
18899 -- The range for fixed-point types is complicated by the fact that we
18900 -- do not know the exact end points at the time of the declaration. This
18901 -- is true for three reasons:
18902
18903 -- A size clause may affect the fudging of the end-points
18904 -- A small clause may affect the values of the end-points
18905 -- We try to include the end-points if it does not affect the size
18906
18907 -- This means that the actual end-points must be established at the point
18908 -- when the type is frozen. Meanwhile, we first narrow the range as
18909 -- permitted (so that it will fit if necessary in a small specified size),
18910 -- and then build a range subtree with these narrowed bounds.
18911
18912 -- Set_Fixed_Range constructs the range from real literal values, and sets
18913 -- the range as the Scalar_Range of the given fixed-point type entity.
18914
18915 -- The parent of this range is set to point to the entity so that it is
18916 -- properly hooked into the tree (unlike normal Scalar_Range entries for
18917 -- other scalar types, which are just pointers to the range in the
18918 -- original tree, this would otherwise be an orphan).
18919
18920 -- The tree is left unanalyzed. When the type is frozen, the processing
18921 -- in Freeze.Freeze_Fixed_Point_Type notices that the range is not
18922 -- analyzed, and uses this as an indication that it should complete
18923 -- work on the range (it will know the final small and size values).
18924
18925 procedure Set_Fixed_Range
18926 (E : Entity_Id;
18927 Loc : Source_Ptr;
18928 Lo : Ureal;
18929 Hi : Ureal)
18930 is
18931 S : constant Node_Id :=
18932 Make_Range (Loc,
18933 Low_Bound => Make_Real_Literal (Loc, Lo),
18934 High_Bound => Make_Real_Literal (Loc, Hi));
18935 begin
18936 Set_Scalar_Range (E, S);
18937 Set_Parent (S, E);
18938 end Set_Fixed_Range;
18939
18940 ----------------------------------
18941 -- Set_Scalar_Range_For_Subtype --
18942 ----------------------------------
18943
18944 procedure Set_Scalar_Range_For_Subtype
18945 (Def_Id : Entity_Id;
18946 R : Node_Id;
18947 Subt : Entity_Id)
18948 is
18949 Kind : constant Entity_Kind := Ekind (Def_Id);
18950
18951 begin
18952 -- Defend against previous error
18953
18954 if Nkind (R) = N_Error then
18955 return;
18956 end if;
18957
18958 Set_Scalar_Range (Def_Id, R);
18959
18960 -- We need to link the range into the tree before resolving it so
18961 -- that types that are referenced, including importantly the subtype
18962 -- itself, are properly frozen (Freeze_Expression requires that the
18963 -- expression be properly linked into the tree). Of course if it is
18964 -- already linked in, then we do not disturb the current link.
18965
18966 if No (Parent (R)) then
18967 Set_Parent (R, Def_Id);
18968 end if;
18969
18970 -- Reset the kind of the subtype during analysis of the range, to
18971 -- catch possible premature use in the bounds themselves.
18972
18973 Set_Ekind (Def_Id, E_Void);
18974 Process_Range_Expr_In_Decl (R, Subt);
18975 Set_Ekind (Def_Id, Kind);
18976 end Set_Scalar_Range_For_Subtype;
18977
18978 --------------------------------------------------------
18979 -- Set_Stored_Constraint_From_Discriminant_Constraint --
18980 --------------------------------------------------------
18981
18982 procedure Set_Stored_Constraint_From_Discriminant_Constraint
18983 (E : Entity_Id)
18984 is
18985 begin
18986 -- Make sure set if encountered during Expand_To_Stored_Constraint
18987
18988 Set_Stored_Constraint (E, No_Elist);
18989
18990 -- Give it the right value
18991
18992 if Is_Constrained (E) and then Has_Discriminants (E) then
18993 Set_Stored_Constraint (E,
18994 Expand_To_Stored_Constraint (E, Discriminant_Constraint (E)));
18995 end if;
18996 end Set_Stored_Constraint_From_Discriminant_Constraint;
18997
18998 -------------------------------------
18999 -- Signed_Integer_Type_Declaration --
19000 -------------------------------------
19001
19002 procedure Signed_Integer_Type_Declaration (T : Entity_Id; Def : Node_Id) is
19003 Implicit_Base : Entity_Id;
19004 Base_Typ : Entity_Id;
19005 Lo_Val : Uint;
19006 Hi_Val : Uint;
19007 Errs : Boolean := False;
19008 Lo : Node_Id;
19009 Hi : Node_Id;
19010
19011 function Can_Derive_From (E : Entity_Id) return Boolean;
19012 -- Determine whether given bounds allow derivation from specified type
19013
19014 procedure Check_Bound (Expr : Node_Id);
19015 -- Check bound to make sure it is integral and static. If not, post
19016 -- appropriate error message and set Errs flag
19017
19018 ---------------------
19019 -- Can_Derive_From --
19020 ---------------------
19021
19022 -- Note we check both bounds against both end values, to deal with
19023 -- strange types like ones with a range of 0 .. -12341234.
19024
19025 function Can_Derive_From (E : Entity_Id) return Boolean is
19026 Lo : constant Uint := Expr_Value (Type_Low_Bound (E));
19027 Hi : constant Uint := Expr_Value (Type_High_Bound (E));
19028 begin
19029 return Lo <= Lo_Val and then Lo_Val <= Hi
19030 and then
19031 Lo <= Hi_Val and then Hi_Val <= Hi;
19032 end Can_Derive_From;
19033
19034 -----------------
19035 -- Check_Bound --
19036 -----------------
19037
19038 procedure Check_Bound (Expr : Node_Id) is
19039 begin
19040 -- If a range constraint is used as an integer type definition, each
19041 -- bound of the range must be defined by a static expression of some
19042 -- integer type, but the two bounds need not have the same integer
19043 -- type (Negative bounds are allowed.) (RM 3.5.4)
19044
19045 if not Is_Integer_Type (Etype (Expr)) then
19046 Error_Msg_N
19047 ("integer type definition bounds must be of integer type", Expr);
19048 Errs := True;
19049
19050 elsif not Is_OK_Static_Expression (Expr) then
19051 Flag_Non_Static_Expr
19052 ("non-static expression used for integer type bound!", Expr);
19053 Errs := True;
19054
19055 -- The bounds are folded into literals, and we set their type to be
19056 -- universal, to avoid typing difficulties: we cannot set the type
19057 -- of the literal to the new type, because this would be a forward
19058 -- reference for the back end, and if the original type is user-
19059 -- defined this can lead to spurious semantic errors (e.g. 2928-003).
19060
19061 else
19062 if Is_Entity_Name (Expr) then
19063 Fold_Uint (Expr, Expr_Value (Expr), True);
19064 end if;
19065
19066 Set_Etype (Expr, Universal_Integer);
19067 end if;
19068 end Check_Bound;
19069
19070 -- Start of processing for Signed_Integer_Type_Declaration
19071
19072 begin
19073 -- Create an anonymous base type
19074
19075 Implicit_Base :=
19076 Create_Itype (E_Signed_Integer_Type, Parent (Def), T, 'B');
19077
19078 -- Analyze and check the bounds, they can be of any integer type
19079
19080 Lo := Low_Bound (Def);
19081 Hi := High_Bound (Def);
19082
19083 -- Arbitrarily use Integer as the type if either bound had an error
19084
19085 if Hi = Error or else Lo = Error then
19086 Base_Typ := Any_Integer;
19087 Set_Error_Posted (T, True);
19088
19089 -- Here both bounds are OK expressions
19090
19091 else
19092 Analyze_And_Resolve (Lo, Any_Integer);
19093 Analyze_And_Resolve (Hi, Any_Integer);
19094
19095 Check_Bound (Lo);
19096 Check_Bound (Hi);
19097
19098 if Errs then
19099 Hi := Type_High_Bound (Standard_Long_Long_Integer);
19100 Lo := Type_Low_Bound (Standard_Long_Long_Integer);
19101 end if;
19102
19103 -- Find type to derive from
19104
19105 Lo_Val := Expr_Value (Lo);
19106 Hi_Val := Expr_Value (Hi);
19107
19108 if Can_Derive_From (Standard_Short_Short_Integer) then
19109 Base_Typ := Base_Type (Standard_Short_Short_Integer);
19110
19111 elsif Can_Derive_From (Standard_Short_Integer) then
19112 Base_Typ := Base_Type (Standard_Short_Integer);
19113
19114 elsif Can_Derive_From (Standard_Integer) then
19115 Base_Typ := Base_Type (Standard_Integer);
19116
19117 elsif Can_Derive_From (Standard_Long_Integer) then
19118 Base_Typ := Base_Type (Standard_Long_Integer);
19119
19120 elsif Can_Derive_From (Standard_Long_Long_Integer) then
19121 Base_Typ := Base_Type (Standard_Long_Long_Integer);
19122
19123 else
19124 Base_Typ := Base_Type (Standard_Long_Long_Integer);
19125 Error_Msg_N ("integer type definition bounds out of range", Def);
19126 Hi := Type_High_Bound (Standard_Long_Long_Integer);
19127 Lo := Type_Low_Bound (Standard_Long_Long_Integer);
19128 end if;
19129 end if;
19130
19131 -- Complete both implicit base and declared first subtype entities
19132
19133 Set_Etype (Implicit_Base, Base_Typ);
19134 Set_Scalar_Range (Implicit_Base, Scalar_Range (Base_Typ));
19135 Set_Size_Info (Implicit_Base, (Base_Typ));
19136 Set_RM_Size (Implicit_Base, RM_Size (Base_Typ));
19137 Set_First_Rep_Item (Implicit_Base, First_Rep_Item (Base_Typ));
19138
19139 Set_Ekind (T, E_Signed_Integer_Subtype);
19140 Set_Etype (T, Implicit_Base);
19141
19142 Set_Size_Info (T, (Implicit_Base));
19143 Set_First_Rep_Item (T, First_Rep_Item (Implicit_Base));
19144 Set_Scalar_Range (T, Def);
19145 Set_RM_Size (T, UI_From_Int (Minimum_Size (T)));
19146 Set_Is_Constrained (T);
19147 end Signed_Integer_Type_Declaration;
19148
19149 end Sem_Ch3;