]> gcc.gnu.org Git - gcc.git/blame - gcc/ada/freeze.adb
linux-atomic.c (SYNC_LOCK_RELEASE): Place memory barrier before the lock release.
[gcc.git] / gcc / ada / freeze.adb
CommitLineData
8dc10d38 1------------------------------------------------------------------------------
70482933
RK
2-- --
3-- GNAT COMPILER COMPONENTS --
4-- --
5-- F R E E Z E --
6-- --
7-- B o d y --
8-- --
748086b7 9-- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
70482933
RK
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- --
748086b7 13-- ware Foundation; either version 3, or (at your option) any later ver- --
70482933
RK
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 --
748086b7
JJ
16-- or FITNESS FOR A PARTICULAR PURPOSE. --
17-- --
18-- You should have received a copy of the GNU General Public License along --
19-- with this program; see file COPYING3. If not see --
20-- <http://www.gnu.org/licenses/>. --
70482933
RK
21-- --
22-- GNAT was originally developed by the GNAT team at New York University. --
71ff80dc 23-- Extensive contributions were provided by Ada Core Technologies Inc. --
70482933
RK
24-- --
25------------------------------------------------------------------------------
26
27with Atree; use Atree;
28with Debug; use Debug;
29with Einfo; use Einfo;
30with Elists; use Elists;
31with Errout; use Errout;
1ce1f005 32with Exp_Ch3; use Exp_Ch3;
70482933 33with Exp_Ch7; use Exp_Ch7;
ce2b6ba5 34with Exp_Disp; use Exp_Disp;
70482933
RK
35with Exp_Pakd; use Exp_Pakd;
36with Exp_Util; use Exp_Util;
fbf5a39b 37with Exp_Tss; use Exp_Tss;
70482933 38with Layout; use Layout;
7d8b9c99 39with Namet; use Namet;
70482933
RK
40with Nlists; use Nlists;
41with Nmake; use Nmake;
42with Opt; use Opt;
43with Restrict; use Restrict;
6e937c1c 44with Rident; use Rident;
70482933 45with Sem; use Sem;
a4100e55 46with Sem_Aux; use Sem_Aux;
70482933
RK
47with Sem_Cat; use Sem_Cat;
48with Sem_Ch6; use Sem_Ch6;
49with Sem_Ch7; use Sem_Ch7;
50with Sem_Ch8; use Sem_Ch8;
51with Sem_Ch13; use Sem_Ch13;
52with Sem_Eval; use Sem_Eval;
53with Sem_Mech; use Sem_Mech;
54with Sem_Prag; use Sem_Prag;
55with Sem_Res; use Sem_Res;
56with Sem_Util; use Sem_Util;
57with Sinfo; use Sinfo;
58with Snames; use Snames;
59with Stand; use Stand;
60with Targparm; use Targparm;
61with Tbuild; use Tbuild;
62with Ttypes; use Ttypes;
63with Uintp; use Uintp;
64with Urealp; use Urealp;
65
66package body Freeze is
67
68 -----------------------
69 -- Local Subprograms --
70 -----------------------
71
72 procedure Adjust_Esize_For_Alignment (Typ : Entity_Id);
73 -- Typ is a type that is being frozen. If no size clause is given,
74 -- but a default Esize has been computed, then this default Esize is
75 -- adjusted up if necessary to be consistent with a given alignment,
76 -- but never to a value greater than Long_Long_Integer'Size. This
77 -- is used for all discrete types and for fixed-point types.
78
79 procedure Build_And_Analyze_Renamed_Body
80 (Decl : Node_Id;
81 New_S : Entity_Id;
82 After : in out Node_Id);
49e90211 83 -- Build body for a renaming declaration, insert in tree and analyze
70482933 84
fbf5a39b
AC
85 procedure Check_Address_Clause (E : Entity_Id);
86 -- Apply legality checks to address clauses for object declarations,
2c9beb8a 87 -- at the point the object is frozen.
fbf5a39b 88
70482933
RK
89 procedure Check_Strict_Alignment (E : Entity_Id);
90 -- E is a base type. If E is tagged or has a component that is aliased
91 -- or tagged or contains something this is aliased or tagged, set
92 -- Strict_Alignment.
93
94 procedure Check_Unsigned_Type (E : Entity_Id);
95 pragma Inline (Check_Unsigned_Type);
96 -- If E is a fixed-point or discrete type, then all the necessary work
97 -- to freeze it is completed except for possible setting of the flag
98 -- Is_Unsigned_Type, which is done by this procedure. The call has no
99 -- effect if the entity E is not a discrete or fixed-point type.
100
101 procedure Freeze_And_Append
102 (Ent : Entity_Id;
103 Loc : Source_Ptr;
104 Result : in out List_Id);
105 -- Freezes Ent using Freeze_Entity, and appends the resulting list of
106 -- nodes to Result, modifying Result from No_List if necessary.
107
108 procedure Freeze_Enumeration_Type (Typ : Entity_Id);
109 -- Freeze enumeration type. The Esize field is set as processing
110 -- proceeds (i.e. set by default when the type is declared and then
111 -- adjusted by rep clauses. What this procedure does is to make sure
112 -- that if a foreign convention is specified, and no specific size
113 -- is given, then the size must be at least Integer'Size.
114
70482933
RK
115 procedure Freeze_Static_Object (E : Entity_Id);
116 -- If an object is frozen which has Is_Statically_Allocated set, then
117 -- all referenced types must also be marked with this flag. This routine
118 -- is in charge of meeting this requirement for the object entity E.
119
120 procedure Freeze_Subprogram (E : Entity_Id);
121 -- Perform freezing actions for a subprogram (create extra formals,
122 -- and set proper default mechanism values). Note that this routine
123 -- is not called for internal subprograms, for which neither of these
124 -- actions is needed (or desirable, we do not want for example to have
125 -- these extra formals present in initialization procedures, where they
126 -- would serve no purpose). In this call E is either a subprogram or
127 -- a subprogram type (i.e. an access to a subprogram).
128
129 function Is_Fully_Defined (T : Entity_Id) return Boolean;
bde58e32 130 -- True if T is not private and has no private components, or has a full
657a9dd9
AC
131 -- view. Used to determine whether the designated type of an access type
132 -- should be frozen when the access type is frozen. This is done when an
133 -- allocator is frozen, or an expression that may involve attributes of
134 -- the designated type. Otherwise freezing the access type does not freeze
135 -- the designated type.
70482933
RK
136
137 procedure Process_Default_Expressions
138 (E : Entity_Id;
139 After : in out Node_Id);
140 -- This procedure is called for each subprogram to complete processing
141 -- of default expressions at the point where all types are known to be
142 -- frozen. The expressions must be analyzed in full, to make sure that
143 -- all error processing is done (they have only been pre-analyzed). If
144 -- the expression is not an entity or literal, its analysis may generate
145 -- code which must not be executed. In that case we build a function
146 -- body to hold that code. This wrapper function serves no other purpose
147 -- (it used to be called to evaluate the default, but now the default is
148 -- inlined at each point of call).
149
150 procedure Set_Component_Alignment_If_Not_Set (Typ : Entity_Id);
151 -- Typ is a record or array type that is being frozen. This routine
152 -- sets the default component alignment from the scope stack values
153 -- if the alignment is otherwise not specified.
154
155 procedure Check_Debug_Info_Needed (T : Entity_Id);
156 -- As each entity is frozen, this routine is called to deal with the
157 -- setting of Debug_Info_Needed for the entity. This flag is set if
158 -- the entity comes from source, or if we are in Debug_Generated_Code
159 -- mode or if the -gnatdV debug flag is set. However, it never sets
1b24ada5
RD
160 -- the flag if Debug_Info_Off is set. This procedure also ensures that
161 -- subsidiary entities have the flag set as required.
70482933 162
c6823a20
EB
163 procedure Undelay_Type (T : Entity_Id);
164 -- T is a type of a component that we know to be an Itype.
165 -- We don't want this to have a Freeze_Node, so ensure it doesn't.
166 -- Do the same for any Full_View or Corresponding_Record_Type.
167
fbf5a39b
AC
168 procedure Warn_Overlay
169 (Expr : Node_Id;
170 Typ : Entity_Id;
171 Nam : Node_Id);
172 -- Expr is the expression for an address clause for entity Nam whose type
173 -- is Typ. If Typ has a default initialization, and there is no explicit
174 -- initialization in the source declaration, check whether the address
175 -- clause might cause overlaying of an entity, and emit a warning on the
176 -- side effect that the initialization will cause.
177
70482933
RK
178 -------------------------------
179 -- Adjust_Esize_For_Alignment --
180 -------------------------------
181
182 procedure Adjust_Esize_For_Alignment (Typ : Entity_Id) is
183 Align : Uint;
184
185 begin
186 if Known_Esize (Typ) and then Known_Alignment (Typ) then
187 Align := Alignment_In_Bits (Typ);
188
189 if Align > Esize (Typ)
190 and then Align <= Standard_Long_Long_Integer_Size
191 then
192 Set_Esize (Typ, Align);
193 end if;
194 end if;
195 end Adjust_Esize_For_Alignment;
196
197 ------------------------------------
198 -- Build_And_Analyze_Renamed_Body --
199 ------------------------------------
200
201 procedure Build_And_Analyze_Renamed_Body
202 (Decl : Node_Id;
203 New_S : Entity_Id;
204 After : in out Node_Id)
205 is
206 Body_Node : constant Node_Id := Build_Renamed_Body (Decl, New_S);
70482933
RK
207 begin
208 Insert_After (After, Body_Node);
209 Mark_Rewrite_Insertion (Body_Node);
210 Analyze (Body_Node);
211 After := Body_Node;
212 end Build_And_Analyze_Renamed_Body;
213
214 ------------------------
215 -- Build_Renamed_Body --
216 ------------------------
217
218 function Build_Renamed_Body
219 (Decl : Node_Id;
fbf5a39b 220 New_S : Entity_Id) return Node_Id
70482933
RK
221 is
222 Loc : constant Source_Ptr := Sloc (New_S);
223 -- We use for the source location of the renamed body, the location
224 -- of the spec entity. It might seem more natural to use the location
225 -- of the renaming declaration itself, but that would be wrong, since
226 -- then the body we create would look as though it was created far
227 -- too late, and this could cause problems with elaboration order
228 -- analysis, particularly in connection with instantiations.
229
230 N : constant Node_Id := Unit_Declaration_Node (New_S);
231 Nam : constant Node_Id := Name (N);
232 Old_S : Entity_Id;
233 Spec : constant Node_Id := New_Copy_Tree (Specification (Decl));
234 Actuals : List_Id := No_List;
235 Call_Node : Node_Id;
236 Call_Name : Node_Id;
237 Body_Node : Node_Id;
238 Formal : Entity_Id;
239 O_Formal : Entity_Id;
240 Param_Spec : Node_Id;
241
def46b54
RD
242 Pref : Node_Id := Empty;
243 -- If the renamed entity is a primitive operation given in prefix form,
244 -- the prefix is the target object and it has to be added as the first
245 -- actual in the generated call.
246
70482933 247 begin
def46b54
RD
248 -- Determine the entity being renamed, which is the target of the call
249 -- statement. If the name is an explicit dereference, this is a renaming
250 -- of a subprogram type rather than a subprogram. The name itself is
251 -- fully analyzed.
70482933
RK
252
253 if Nkind (Nam) = N_Selected_Component then
254 Old_S := Entity (Selector_Name (Nam));
255
256 elsif Nkind (Nam) = N_Explicit_Dereference then
257 Old_S := Etype (Nam);
258
259 elsif Nkind (Nam) = N_Indexed_Component then
70482933
RK
260 if Is_Entity_Name (Prefix (Nam)) then
261 Old_S := Entity (Prefix (Nam));
262 else
263 Old_S := Entity (Selector_Name (Prefix (Nam)));
264 end if;
265
266 elsif Nkind (Nam) = N_Character_Literal then
267 Old_S := Etype (New_S);
268
269 else
270 Old_S := Entity (Nam);
271 end if;
272
273 if Is_Entity_Name (Nam) then
07fc65c4 274
def46b54
RD
275 -- If the renamed entity is a predefined operator, retain full name
276 -- to ensure its visibility.
07fc65c4
GB
277
278 if Ekind (Old_S) = E_Operator
279 and then Nkind (Nam) = N_Expanded_Name
280 then
281 Call_Name := New_Copy (Name (N));
282 else
283 Call_Name := New_Reference_To (Old_S, Loc);
284 end if;
285
70482933 286 else
def46b54
RD
287 if Nkind (Nam) = N_Selected_Component
288 and then Present (First_Formal (Old_S))
289 and then
290 (Is_Controlling_Formal (First_Formal (Old_S))
291 or else Is_Class_Wide_Type (Etype (First_Formal (Old_S))))
292 then
293
294 -- Retrieve the target object, to be added as a first actual
295 -- in the call.
296
297 Call_Name := New_Occurrence_Of (Old_S, Loc);
298 Pref := Prefix (Nam);
299
300 else
301 Call_Name := New_Copy (Name (N));
302 end if;
70482933
RK
303
304 -- The original name may have been overloaded, but
305 -- is fully resolved now.
306
307 Set_Is_Overloaded (Call_Name, False);
308 end if;
309
def46b54
RD
310 -- For simple renamings, subsequent calls can be expanded directly as
311 -- called to the renamed entity. The body must be generated in any case
312 -- for calls they may appear elsewhere.
70482933
RK
313
314 if (Ekind (Old_S) = E_Function
315 or else Ekind (Old_S) = E_Procedure)
316 and then Nkind (Decl) = N_Subprogram_Declaration
317 then
318 Set_Body_To_Inline (Decl, Old_S);
319 end if;
320
321 -- The body generated for this renaming is an internal artifact, and
322 -- does not constitute a freeze point for the called entity.
323
324 Set_Must_Not_Freeze (Call_Name);
325
326 Formal := First_Formal (Defining_Entity (Decl));
327
def46b54
RD
328 if Present (Pref) then
329 declare
330 Pref_Type : constant Entity_Id := Etype (Pref);
331 Form_Type : constant Entity_Id := Etype (First_Formal (Old_S));
332
333 begin
334
335 -- The controlling formal may be an access parameter, or the
e14c931f 336 -- actual may be an access value, so adjust accordingly.
def46b54
RD
337
338 if Is_Access_Type (Pref_Type)
339 and then not Is_Access_Type (Form_Type)
340 then
341 Actuals := New_List
342 (Make_Explicit_Dereference (Loc, Relocate_Node (Pref)));
343
344 elsif Is_Access_Type (Form_Type)
345 and then not Is_Access_Type (Pref)
346 then
347 Actuals := New_List
348 (Make_Attribute_Reference (Loc,
349 Attribute_Name => Name_Access,
350 Prefix => Relocate_Node (Pref)));
351 else
352 Actuals := New_List (Pref);
353 end if;
354 end;
355
356 elsif Present (Formal) then
70482933
RK
357 Actuals := New_List;
358
def46b54
RD
359 else
360 Actuals := No_List;
361 end if;
362
363 if Present (Formal) then
70482933
RK
364 while Present (Formal) loop
365 Append (New_Reference_To (Formal, Loc), Actuals);
366 Next_Formal (Formal);
367 end loop;
368 end if;
369
def46b54
RD
370 -- If the renamed entity is an entry, inherit its profile. For other
371 -- renamings as bodies, both profiles must be subtype conformant, so it
372 -- is not necessary to replace the profile given in the declaration.
373 -- However, default values that are aggregates are rewritten when
374 -- partially analyzed, so we recover the original aggregate to insure
375 -- that subsequent conformity checking works. Similarly, if the default
376 -- expression was constant-folded, recover the original expression.
70482933
RK
377
378 Formal := First_Formal (Defining_Entity (Decl));
379
380 if Present (Formal) then
381 O_Formal := First_Formal (Old_S);
382 Param_Spec := First (Parameter_Specifications (Spec));
383
384 while Present (Formal) loop
385 if Is_Entry (Old_S) then
386
387 if Nkind (Parameter_Type (Param_Spec)) /=
388 N_Access_Definition
389 then
390 Set_Etype (Formal, Etype (O_Formal));
391 Set_Entity (Parameter_Type (Param_Spec), Etype (O_Formal));
392 end if;
393
07fc65c4
GB
394 elsif Nkind (Default_Value (O_Formal)) = N_Aggregate
395 or else Nkind (Original_Node (Default_Value (O_Formal))) /=
396 Nkind (Default_Value (O_Formal))
397 then
70482933
RK
398 Set_Expression (Param_Spec,
399 New_Copy_Tree (Original_Node (Default_Value (O_Formal))));
400 end if;
401
402 Next_Formal (Formal);
403 Next_Formal (O_Formal);
404 Next (Param_Spec);
405 end loop;
406 end if;
407
408 -- If the renamed entity is a function, the generated body contains a
409 -- return statement. Otherwise, build a procedure call. If the entity is
410 -- an entry, subsequent analysis of the call will transform it into the
411 -- proper entry or protected operation call. If the renamed entity is
412 -- a character literal, return it directly.
413
414 if Ekind (Old_S) = E_Function
415 or else Ekind (Old_S) = E_Operator
416 or else (Ekind (Old_S) = E_Subprogram_Type
417 and then Etype (Old_S) /= Standard_Void_Type)
418 then
419 Call_Node :=
86cde7b1 420 Make_Simple_Return_Statement (Loc,
70482933
RK
421 Expression =>
422 Make_Function_Call (Loc,
423 Name => Call_Name,
424 Parameter_Associations => Actuals));
425
426 elsif Ekind (Old_S) = E_Enumeration_Literal then
427 Call_Node :=
86cde7b1 428 Make_Simple_Return_Statement (Loc,
70482933
RK
429 Expression => New_Occurrence_Of (Old_S, Loc));
430
431 elsif Nkind (Nam) = N_Character_Literal then
432 Call_Node :=
86cde7b1 433 Make_Simple_Return_Statement (Loc,
70482933
RK
434 Expression => Call_Name);
435
436 else
437 Call_Node :=
438 Make_Procedure_Call_Statement (Loc,
439 Name => Call_Name,
440 Parameter_Associations => Actuals);
441 end if;
442
49e90211 443 -- Create entities for subprogram body and formals
70482933
RK
444
445 Set_Defining_Unit_Name (Spec,
446 Make_Defining_Identifier (Loc, Chars => Chars (New_S)));
447
448 Param_Spec := First (Parameter_Specifications (Spec));
449
450 while Present (Param_Spec) loop
451 Set_Defining_Identifier (Param_Spec,
452 Make_Defining_Identifier (Loc,
453 Chars => Chars (Defining_Identifier (Param_Spec))));
454 Next (Param_Spec);
455 end loop;
456
457 Body_Node :=
458 Make_Subprogram_Body (Loc,
459 Specification => Spec,
460 Declarations => New_List,
461 Handled_Statement_Sequence =>
462 Make_Handled_Sequence_Of_Statements (Loc,
463 Statements => New_List (Call_Node)));
464
465 if Nkind (Decl) /= N_Subprogram_Declaration then
466 Rewrite (N,
467 Make_Subprogram_Declaration (Loc,
468 Specification => Specification (N)));
469 end if;
470
471 -- Link the body to the entity whose declaration it completes. If
def46b54
RD
472 -- the body is analyzed when the renamed entity is frozen, it may
473 -- be necessary to restore the proper scope (see package Exp_Ch13).
70482933
RK
474
475 if Nkind (N) = N_Subprogram_Renaming_Declaration
476 and then Present (Corresponding_Spec (N))
477 then
478 Set_Corresponding_Spec (Body_Node, Corresponding_Spec (N));
479 else
480 Set_Corresponding_Spec (Body_Node, New_S);
481 end if;
482
483 return Body_Node;
484 end Build_Renamed_Body;
485
fbf5a39b
AC
486 --------------------------
487 -- Check_Address_Clause --
488 --------------------------
489
490 procedure Check_Address_Clause (E : Entity_Id) is
491 Addr : constant Node_Id := Address_Clause (E);
492 Expr : Node_Id;
493 Decl : constant Node_Id := Declaration_Node (E);
494 Typ : constant Entity_Id := Etype (E);
495
496 begin
497 if Present (Addr) then
498 Expr := Expression (Addr);
499
def46b54
RD
500 -- If we have no initialization of any kind, then we don't need to
501 -- place any restrictions on the address clause, because the object
502 -- will be elaborated after the address clause is evaluated. This
503 -- happens if the declaration has no initial expression, or the type
504 -- has no implicit initialization, or the object is imported.
fbf5a39b 505
def46b54
RD
506 -- The same holds for all initialized scalar types and all access
507 -- types. Packed bit arrays of size up to 64 are represented using a
508 -- modular type with an initialization (to zero) and can be processed
509 -- like other initialized scalar types.
fbf5a39b
AC
510
511 -- If the type is controlled, code to attach the object to a
512 -- finalization chain is generated at the point of declaration,
513 -- and therefore the elaboration of the object cannot be delayed:
514 -- the address expression must be a constant.
515
516 if (No (Expression (Decl))
048e5cef 517 and then not Needs_Finalization (Typ)
fbf5a39b
AC
518 and then
519 (not Has_Non_Null_Base_Init_Proc (Typ)
520 or else Is_Imported (E)))
521
522 or else
523 (Present (Expression (Decl))
524 and then Is_Scalar_Type (Typ))
525
526 or else
527 Is_Access_Type (Typ)
528
529 or else
530 (Is_Bit_Packed_Array (Typ)
531 and then
532 Is_Modular_Integer_Type (Packed_Array_Type (Typ)))
533 then
534 null;
535
def46b54
RD
536 -- Otherwise, we require the address clause to be constant because
537 -- the call to the initialization procedure (or the attach code) has
538 -- to happen at the point of the declaration.
f3b57ab0
AC
539 -- Actually the IP call has been moved to the freeze actions
540 -- anyway, so maybe we can relax this restriction???
fbf5a39b
AC
541
542 else
543 Check_Constant_Address_Clause (Expr, E);
f3b57ab0
AC
544
545 -- Has_Delayed_Freeze was set on E when the address clause was
546 -- analyzed. Reset the flag now unless freeze actions were
547 -- attached to it in the mean time.
548
549 if No (Freeze_Node (E)) then
550 Set_Has_Delayed_Freeze (E, False);
551 end if;
fbf5a39b
AC
552 end if;
553
554 if not Error_Posted (Expr)
048e5cef 555 and then not Needs_Finalization (Typ)
fbf5a39b
AC
556 then
557 Warn_Overlay (Expr, Typ, Name (Addr));
558 end if;
559 end if;
560 end Check_Address_Clause;
561
70482933
RK
562 -----------------------------
563 -- Check_Compile_Time_Size --
564 -----------------------------
565
566 procedure Check_Compile_Time_Size (T : Entity_Id) is
567
c6823a20 568 procedure Set_Small_Size (T : Entity_Id; S : Uint);
70482933 569 -- Sets the compile time known size (32 bits or less) in the Esize
c6823a20 570 -- field, of T checking for a size clause that was given which attempts
70482933
RK
571 -- to give a smaller size.
572
573 function Size_Known (T : Entity_Id) return Boolean;
07fc65c4 574 -- Recursive function that does all the work
70482933
RK
575
576 function Static_Discriminated_Components (T : Entity_Id) return Boolean;
577 -- If T is a constrained subtype, its size is not known if any of its
578 -- discriminant constraints is not static and it is not a null record.
fbf5a39b 579 -- The test is conservative and doesn't check that the components are
70482933
RK
580 -- in fact constrained by non-static discriminant values. Could be made
581 -- more precise ???
582
583 --------------------
584 -- Set_Small_Size --
585 --------------------
586
c6823a20 587 procedure Set_Small_Size (T : Entity_Id; S : Uint) is
70482933
RK
588 begin
589 if S > 32 then
590 return;
591
592 elsif Has_Size_Clause (T) then
593 if RM_Size (T) < S then
594 Error_Msg_Uint_1 := S;
595 Error_Msg_NE
d58b9515 596 ("size for& too small, minimum allowed is ^",
70482933
RK
597 Size_Clause (T), T);
598
599 elsif Unknown_Esize (T) then
600 Set_Esize (T, S);
601 end if;
602
603 -- Set sizes if not set already
604
605 else
606 if Unknown_Esize (T) then
607 Set_Esize (T, S);
608 end if;
609
610 if Unknown_RM_Size (T) then
611 Set_RM_Size (T, S);
612 end if;
613 end if;
614 end Set_Small_Size;
615
616 ----------------
617 -- Size_Known --
618 ----------------
619
620 function Size_Known (T : Entity_Id) return Boolean is
621 Index : Entity_Id;
622 Comp : Entity_Id;
623 Ctyp : Entity_Id;
624 Low : Node_Id;
625 High : Node_Id;
626
627 begin
628 if Size_Known_At_Compile_Time (T) then
629 return True;
630
c6a9797e
RD
631 -- Always True for scalar types. This is true even for generic formal
632 -- scalar types. We used to return False in the latter case, but the
633 -- size is known at compile time, even in the template, we just do
634 -- not know the exact size but that's not the point of this routine.
635
70482933
RK
636 elsif Is_Scalar_Type (T)
637 or else Is_Task_Type (T)
638 then
c6a9797e
RD
639 return True;
640
641 -- Array types
70482933
RK
642
643 elsif Is_Array_Type (T) then
c6a9797e
RD
644
645 -- String literals always have known size, and we can set it
646
70482933 647 if Ekind (T) = E_String_Literal_Subtype then
c6823a20
EB
648 Set_Small_Size (T, Component_Size (T)
649 * String_Literal_Length (T));
70482933
RK
650 return True;
651
c6a9797e
RD
652 -- Unconstrained types never have known at compile time size
653
70482933
RK
654 elsif not Is_Constrained (T) then
655 return False;
656
def46b54
RD
657 -- Don't do any recursion on type with error posted, since we may
658 -- have a malformed type that leads us into a loop.
07fc65c4
GB
659
660 elsif Error_Posted (T) then
661 return False;
662
c6a9797e
RD
663 -- Otherwise if component size unknown, then array size unknown
664
70482933
RK
665 elsif not Size_Known (Component_Type (T)) then
666 return False;
667 end if;
668
def46b54
RD
669 -- Check for all indexes static, and also compute possible size
670 -- (in case it is less than 32 and may be packable).
70482933
RK
671
672 declare
673 Esiz : Uint := Component_Size (T);
674 Dim : Uint;
675
676 begin
677 Index := First_Index (T);
70482933
RK
678 while Present (Index) loop
679 if Nkind (Index) = N_Range then
680 Get_Index_Bounds (Index, Low, High);
681
682 elsif Error_Posted (Scalar_Range (Etype (Index))) then
683 return False;
684
685 else
686 Low := Type_Low_Bound (Etype (Index));
687 High := Type_High_Bound (Etype (Index));
688 end if;
689
690 if not Compile_Time_Known_Value (Low)
691 or else not Compile_Time_Known_Value (High)
692 or else Etype (Index) = Any_Type
693 then
694 return False;
695
696 else
697 Dim := Expr_Value (High) - Expr_Value (Low) + 1;
698
699 if Dim >= 0 then
700 Esiz := Esiz * Dim;
701 else
702 Esiz := Uint_0;
703 end if;
704 end if;
705
706 Next_Index (Index);
707 end loop;
708
c6823a20 709 Set_Small_Size (T, Esiz);
70482933
RK
710 return True;
711 end;
712
c6a9797e
RD
713 -- Access types always have known at compile time sizes
714
70482933
RK
715 elsif Is_Access_Type (T) then
716 return True;
717
c6a9797e
RD
718 -- For non-generic private types, go to underlying type if present
719
70482933
RK
720 elsif Is_Private_Type (T)
721 and then not Is_Generic_Type (T)
722 and then Present (Underlying_Type (T))
723 then
def46b54
RD
724 -- Don't do any recursion on type with error posted, since we may
725 -- have a malformed type that leads us into a loop.
07fc65c4
GB
726
727 if Error_Posted (T) then
728 return False;
729 else
730 return Size_Known (Underlying_Type (T));
731 end if;
70482933 732
c6a9797e
RD
733 -- Record types
734
70482933 735 elsif Is_Record_Type (T) then
fbf5a39b
AC
736
737 -- A class-wide type is never considered to have a known size
738
70482933
RK
739 if Is_Class_Wide_Type (T) then
740 return False;
741
fbf5a39b
AC
742 -- A subtype of a variant record must not have non-static
743 -- discriminanted components.
744
745 elsif T /= Base_Type (T)
746 and then not Static_Discriminated_Components (T)
747 then
748 return False;
70482933 749
def46b54
RD
750 -- Don't do any recursion on type with error posted, since we may
751 -- have a malformed type that leads us into a loop.
07fc65c4
GB
752
753 elsif Error_Posted (T) then
754 return False;
fbf5a39b 755 end if;
07fc65c4 756
fbf5a39b 757 -- Now look at the components of the record
70482933 758
fbf5a39b 759 declare
def46b54
RD
760 -- The following two variables are used to keep track of the
761 -- size of packed records if we can tell the size of the packed
762 -- record in the front end. Packed_Size_Known is True if so far
763 -- we can figure out the size. It is initialized to True for a
764 -- packed record, unless the record has discriminants. The
765 -- reason we eliminate the discriminated case is that we don't
766 -- know the way the back end lays out discriminated packed
767 -- records. If Packed_Size_Known is True, then Packed_Size is
768 -- the size in bits so far.
fbf5a39b
AC
769
770 Packed_Size_Known : Boolean :=
771 Is_Packed (T)
772 and then not Has_Discriminants (T);
773
774 Packed_Size : Uint := Uint_0;
775
776 begin
777 -- Test for variant part present
778
779 if Has_Discriminants (T)
780 and then Present (Parent (T))
781 and then Nkind (Parent (T)) = N_Full_Type_Declaration
782 and then Nkind (Type_Definition (Parent (T))) =
783 N_Record_Definition
784 and then not Null_Present (Type_Definition (Parent (T)))
785 and then Present (Variant_Part
786 (Component_List (Type_Definition (Parent (T)))))
787 then
788 -- If variant part is present, and type is unconstrained,
789 -- then we must have defaulted discriminants, or a size
790 -- clause must be present for the type, or else the size
791 -- is definitely not known at compile time.
792
793 if not Is_Constrained (T)
794 and then
795 No (Discriminant_Default_Value
796 (First_Discriminant (T)))
797 and then Unknown_Esize (T)
70482933 798 then
fbf5a39b
AC
799 return False;
800 end if;
801 end if;
70482933 802
fbf5a39b
AC
803 -- Loop through components
804
fea9e956 805 Comp := First_Component_Or_Discriminant (T);
fbf5a39b 806 while Present (Comp) loop
fea9e956 807 Ctyp := Etype (Comp);
fbf5a39b 808
fea9e956
ES
809 -- We do not know the packed size if there is a component
810 -- clause present (we possibly could, but this would only
811 -- help in the case of a record with partial rep clauses.
812 -- That's because in the case of full rep clauses, the
813 -- size gets figured out anyway by a different circuit).
fbf5a39b 814
fea9e956
ES
815 if Present (Component_Clause (Comp)) then
816 Packed_Size_Known := False;
817 end if;
70482933 818
fea9e956
ES
819 -- We need to identify a component that is an array where
820 -- the index type is an enumeration type with non-standard
821 -- representation, and some bound of the type depends on a
822 -- discriminant.
70482933 823
fea9e956 824 -- This is because gigi computes the size by doing a
e14c931f 825 -- substitution of the appropriate discriminant value in
fea9e956
ES
826 -- the size expression for the base type, and gigi is not
827 -- clever enough to evaluate the resulting expression (which
828 -- involves a call to rep_to_pos) at compile time.
fbf5a39b 829
fea9e956
ES
830 -- It would be nice if gigi would either recognize that
831 -- this expression can be computed at compile time, or
832 -- alternatively figured out the size from the subtype
833 -- directly, where all the information is at hand ???
fbf5a39b 834
fea9e956
ES
835 if Is_Array_Type (Etype (Comp))
836 and then Present (Packed_Array_Type (Etype (Comp)))
837 then
838 declare
839 Ocomp : constant Entity_Id :=
840 Original_Record_Component (Comp);
841 OCtyp : constant Entity_Id := Etype (Ocomp);
842 Ind : Node_Id;
843 Indtyp : Entity_Id;
844 Lo, Hi : Node_Id;
70482933 845
fea9e956
ES
846 begin
847 Ind := First_Index (OCtyp);
848 while Present (Ind) loop
849 Indtyp := Etype (Ind);
70482933 850
fea9e956
ES
851 if Is_Enumeration_Type (Indtyp)
852 and then Has_Non_Standard_Rep (Indtyp)
853 then
854 Lo := Type_Low_Bound (Indtyp);
855 Hi := Type_High_Bound (Indtyp);
fbf5a39b 856
fea9e956
ES
857 if Is_Entity_Name (Lo)
858 and then Ekind (Entity (Lo)) = E_Discriminant
859 then
860 return False;
fbf5a39b 861
fea9e956
ES
862 elsif Is_Entity_Name (Hi)
863 and then Ekind (Entity (Hi)) = E_Discriminant
864 then
865 return False;
866 end if;
867 end if;
fbf5a39b 868
fea9e956
ES
869 Next_Index (Ind);
870 end loop;
871 end;
872 end if;
70482933 873
def46b54
RD
874 -- Clearly size of record is not known if the size of one of
875 -- the components is not known.
70482933 876
fea9e956
ES
877 if not Size_Known (Ctyp) then
878 return False;
879 end if;
70482933 880
fea9e956 881 -- Accumulate packed size if possible
70482933 882
fea9e956 883 if Packed_Size_Known then
70482933 884
fea9e956
ES
885 -- We can only deal with elementary types, since for
886 -- non-elementary components, alignment enters into the
887 -- picture, and we don't know enough to handle proper
888 -- alignment in this context. Packed arrays count as
889 -- elementary if the representation is a modular type.
fbf5a39b 890
fea9e956
ES
891 if Is_Elementary_Type (Ctyp)
892 or else (Is_Array_Type (Ctyp)
893 and then Present (Packed_Array_Type (Ctyp))
894 and then Is_Modular_Integer_Type
895 (Packed_Array_Type (Ctyp)))
896 then
897 -- If RM_Size is known and static, then we can
898 -- keep accumulating the packed size.
70482933 899
fea9e956 900 if Known_Static_RM_Size (Ctyp) then
70482933 901
fea9e956
ES
902 -- A little glitch, to be removed sometime ???
903 -- gigi does not understand zero sizes yet.
904
905 if RM_Size (Ctyp) = Uint_0 then
70482933 906 Packed_Size_Known := False;
fea9e956
ES
907
908 -- Normal case where we can keep accumulating the
909 -- packed array size.
910
911 else
912 Packed_Size := Packed_Size + RM_Size (Ctyp);
70482933 913 end if;
fbf5a39b 914
fea9e956
ES
915 -- If we have a field whose RM_Size is not known then
916 -- we can't figure out the packed size here.
fbf5a39b
AC
917
918 else
919 Packed_Size_Known := False;
70482933 920 end if;
fea9e956
ES
921
922 -- If we have a non-elementary type we can't figure out
923 -- the packed array size (alignment issues).
924
925 else
926 Packed_Size_Known := False;
70482933 927 end if;
fbf5a39b 928 end if;
70482933 929
fea9e956 930 Next_Component_Or_Discriminant (Comp);
fbf5a39b 931 end loop;
70482933 932
fbf5a39b 933 if Packed_Size_Known then
c6823a20 934 Set_Small_Size (T, Packed_Size);
fbf5a39b 935 end if;
70482933 936
fbf5a39b
AC
937 return True;
938 end;
70482933 939
c6a9797e
RD
940 -- All other cases, size not known at compile time
941
70482933
RK
942 else
943 return False;
944 end if;
945 end Size_Known;
946
947 -------------------------------------
948 -- Static_Discriminated_Components --
949 -------------------------------------
950
951 function Static_Discriminated_Components
0da2c8ac 952 (T : Entity_Id) return Boolean
70482933
RK
953 is
954 Constraint : Elmt_Id;
955
956 begin
957 if Has_Discriminants (T)
958 and then Present (Discriminant_Constraint (T))
959 and then Present (First_Component (T))
960 then
961 Constraint := First_Elmt (Discriminant_Constraint (T));
70482933
RK
962 while Present (Constraint) loop
963 if not Compile_Time_Known_Value (Node (Constraint)) then
964 return False;
965 end if;
966
967 Next_Elmt (Constraint);
968 end loop;
969 end if;
970
971 return True;
972 end Static_Discriminated_Components;
973
974 -- Start of processing for Check_Compile_Time_Size
975
976 begin
977 Set_Size_Known_At_Compile_Time (T, Size_Known (T));
978 end Check_Compile_Time_Size;
979
980 -----------------------------
981 -- Check_Debug_Info_Needed --
982 -----------------------------
983
984 procedure Check_Debug_Info_Needed (T : Entity_Id) is
985 begin
1b24ada5 986 if Debug_Info_Off (T) then
70482933
RK
987 return;
988
989 elsif Comes_From_Source (T)
990 or else Debug_Generated_Code
991 or else Debug_Flag_VV
1b24ada5 992 or else Needs_Debug_Info (T)
70482933
RK
993 then
994 Set_Debug_Info_Needed (T);
995 end if;
996 end Check_Debug_Info_Needed;
997
998 ----------------------------
999 -- Check_Strict_Alignment --
1000 ----------------------------
1001
1002 procedure Check_Strict_Alignment (E : Entity_Id) is
1003 Comp : Entity_Id;
1004
1005 begin
1006 if Is_Tagged_Type (E) or else Is_Concurrent_Type (E) then
1007 Set_Strict_Alignment (E);
1008
1009 elsif Is_Array_Type (E) then
1010 Set_Strict_Alignment (E, Strict_Alignment (Component_Type (E)));
1011
1012 elsif Is_Record_Type (E) then
1013 if Is_Limited_Record (E) then
1014 Set_Strict_Alignment (E);
1015 return;
1016 end if;
1017
1018 Comp := First_Component (E);
1019
1020 while Present (Comp) loop
1021 if not Is_Type (Comp)
1022 and then (Strict_Alignment (Etype (Comp))
fbf5a39b 1023 or else Is_Aliased (Comp))
70482933
RK
1024 then
1025 Set_Strict_Alignment (E);
1026 return;
1027 end if;
1028
1029 Next_Component (Comp);
1030 end loop;
1031 end if;
1032 end Check_Strict_Alignment;
1033
1034 -------------------------
1035 -- Check_Unsigned_Type --
1036 -------------------------
1037
1038 procedure Check_Unsigned_Type (E : Entity_Id) is
1039 Ancestor : Entity_Id;
1040 Lo_Bound : Node_Id;
1041 Btyp : Entity_Id;
1042
1043 begin
1044 if not Is_Discrete_Or_Fixed_Point_Type (E) then
1045 return;
1046 end if;
1047
1048 -- Do not attempt to analyze case where range was in error
1049
1050 if Error_Posted (Scalar_Range (E)) then
1051 return;
1052 end if;
1053
1054 -- The situation that is non trivial is something like
1055
1056 -- subtype x1 is integer range -10 .. +10;
1057 -- subtype x2 is x1 range 0 .. V1;
1058 -- subtype x3 is x2 range V2 .. V3;
1059 -- subtype x4 is x3 range V4 .. V5;
1060
1061 -- where Vn are variables. Here the base type is signed, but we still
1062 -- know that x4 is unsigned because of the lower bound of x2.
1063
1064 -- The only way to deal with this is to look up the ancestor chain
1065
1066 Ancestor := E;
1067 loop
1068 if Ancestor = Any_Type or else Etype (Ancestor) = Any_Type then
1069 return;
1070 end if;
1071
1072 Lo_Bound := Type_Low_Bound (Ancestor);
1073
1074 if Compile_Time_Known_Value (Lo_Bound) then
1075
1076 if Expr_Rep_Value (Lo_Bound) >= 0 then
1077 Set_Is_Unsigned_Type (E, True);
1078 end if;
1079
1080 return;
1081
1082 else
1083 Ancestor := Ancestor_Subtype (Ancestor);
1084
1085 -- If no ancestor had a static lower bound, go to base type
1086
1087 if No (Ancestor) then
1088
1089 -- Note: the reason we still check for a compile time known
1090 -- value for the base type is that at least in the case of
1091 -- generic formals, we can have bounds that fail this test,
1092 -- and there may be other cases in error situations.
1093
1094 Btyp := Base_Type (E);
1095
1096 if Btyp = Any_Type or else Etype (Btyp) = Any_Type then
1097 return;
1098 end if;
1099
1100 Lo_Bound := Type_Low_Bound (Base_Type (E));
1101
1102 if Compile_Time_Known_Value (Lo_Bound)
1103 and then Expr_Rep_Value (Lo_Bound) >= 0
1104 then
1105 Set_Is_Unsigned_Type (E, True);
1106 end if;
1107
1108 return;
70482933
RK
1109 end if;
1110 end if;
1111 end loop;
1112 end Check_Unsigned_Type;
1113
cfb120b5
AC
1114 -------------------------
1115 -- Is_Atomic_Aggregate --
1116 -------------------------
fbf5a39b 1117
cfb120b5 1118 function Is_Atomic_Aggregate
b0159fbe
AC
1119 (E : Entity_Id;
1120 Typ : Entity_Id) return Boolean
1121 is
fbf5a39b
AC
1122 Loc : constant Source_Ptr := Sloc (E);
1123 New_N : Node_Id;
b0159fbe 1124 Par : Node_Id;
fbf5a39b
AC
1125 Temp : Entity_Id;
1126
1127 begin
b0159fbe
AC
1128 Par := Parent (E);
1129
01957849 1130 -- Array may be qualified, so find outer context
b0159fbe
AC
1131
1132 if Nkind (Par) = N_Qualified_Expression then
1133 Par := Parent (Par);
1134 end if;
1135
fb2e11ee 1136 if Nkind_In (Par, N_Object_Declaration, N_Assignment_Statement)
b0159fbe 1137 and then Comes_From_Source (Par)
fbf5a39b
AC
1138 then
1139 Temp :=
1140 Make_Defining_Identifier (Loc,
1141 New_Internal_Name ('T'));
1142
1143 New_N :=
1144 Make_Object_Declaration (Loc,
1145 Defining_Identifier => Temp,
c6a9797e
RD
1146 Object_Definition => New_Occurrence_Of (Typ, Loc),
1147 Expression => Relocate_Node (E));
b0159fbe 1148 Insert_Before (Par, New_N);
fbf5a39b
AC
1149 Analyze (New_N);
1150
b0159fbe
AC
1151 Set_Expression (Par, New_Occurrence_Of (Temp, Loc));
1152 return True;
fbf5a39b 1153
b0159fbe
AC
1154 else
1155 return False;
fbf5a39b 1156 end if;
cfb120b5 1157 end Is_Atomic_Aggregate;
fbf5a39b 1158
70482933
RK
1159 ----------------
1160 -- Freeze_All --
1161 ----------------
1162
1163 -- Note: the easy coding for this procedure would be to just build a
1164 -- single list of freeze nodes and then insert them and analyze them
1165 -- all at once. This won't work, because the analysis of earlier freeze
1166 -- nodes may recursively freeze types which would otherwise appear later
1167 -- on in the freeze list. So we must analyze and expand the freeze nodes
1168 -- as they are generated.
1169
1170 procedure Freeze_All (From : Entity_Id; After : in out Node_Id) is
1171 Loc : constant Source_Ptr := Sloc (After);
1172 E : Entity_Id;
1173 Decl : Node_Id;
1174
1175 procedure Freeze_All_Ent (From : Entity_Id; After : in out Node_Id);
def46b54
RD
1176 -- This is the internal recursive routine that does freezing of entities
1177 -- (but NOT the analysis of default expressions, which should not be
1178 -- recursive, we don't want to analyze those till we are sure that ALL
1179 -- the types are frozen).
70482933 1180
fbf5a39b
AC
1181 --------------------
1182 -- Freeze_All_Ent --
1183 --------------------
1184
70482933
RK
1185 procedure Freeze_All_Ent
1186 (From : Entity_Id;
1187 After : in out Node_Id)
1188 is
1189 E : Entity_Id;
1190 Flist : List_Id;
1191 Lastn : Node_Id;
1192
1193 procedure Process_Flist;
def46b54
RD
1194 -- If freeze nodes are present, insert and analyze, and reset cursor
1195 -- for next insertion.
70482933 1196
fbf5a39b
AC
1197 -------------------
1198 -- Process_Flist --
1199 -------------------
1200
70482933
RK
1201 procedure Process_Flist is
1202 begin
1203 if Is_Non_Empty_List (Flist) then
1204 Lastn := Next (After);
1205 Insert_List_After_And_Analyze (After, Flist);
1206
1207 if Present (Lastn) then
1208 After := Prev (Lastn);
1209 else
1210 After := Last (List_Containing (After));
1211 end if;
1212 end if;
1213 end Process_Flist;
1214
fbf5a39b
AC
1215 -- Start or processing for Freeze_All_Ent
1216
70482933
RK
1217 begin
1218 E := From;
1219 while Present (E) loop
1220
1221 -- If the entity is an inner package which is not a package
def46b54
RD
1222 -- renaming, then its entities must be frozen at this point. Note
1223 -- that such entities do NOT get frozen at the end of the nested
1224 -- package itself (only library packages freeze).
70482933
RK
1225
1226 -- Same is true for task declarations, where anonymous records
1227 -- created for entry parameters must be frozen.
1228
1229 if Ekind (E) = E_Package
1230 and then No (Renamed_Object (E))
1231 and then not Is_Child_Unit (E)
1232 and then not Is_Frozen (E)
1233 then
7d8b9c99 1234 Push_Scope (E);
70482933
RK
1235 Install_Visible_Declarations (E);
1236 Install_Private_Declarations (E);
1237
1238 Freeze_All (First_Entity (E), After);
1239
1240 End_Package_Scope (E);
1241
1242 elsif Ekind (E) in Task_Kind
1243 and then
1244 (Nkind (Parent (E)) = N_Task_Type_Declaration
fbf5a39b 1245 or else
70482933
RK
1246 Nkind (Parent (E)) = N_Single_Task_Declaration)
1247 then
7d8b9c99 1248 Push_Scope (E);
70482933
RK
1249 Freeze_All (First_Entity (E), After);
1250 End_Scope;
1251
1252 -- For a derived tagged type, we must ensure that all the
def46b54
RD
1253 -- primitive operations of the parent have been frozen, so that
1254 -- their addresses will be in the parent's dispatch table at the
1255 -- point it is inherited.
70482933
RK
1256
1257 elsif Ekind (E) = E_Record_Type
1258 and then Is_Tagged_Type (E)
1259 and then Is_Tagged_Type (Etype (E))
1260 and then Is_Derived_Type (E)
1261 then
1262 declare
1263 Prim_List : constant Elist_Id :=
1264 Primitive_Operations (Etype (E));
fbf5a39b
AC
1265
1266 Prim : Elmt_Id;
1267 Subp : Entity_Id;
70482933
RK
1268
1269 begin
1270 Prim := First_Elmt (Prim_List);
1271
1272 while Present (Prim) loop
1273 Subp := Node (Prim);
1274
1275 if Comes_From_Source (Subp)
1276 and then not Is_Frozen (Subp)
1277 then
1278 Flist := Freeze_Entity (Subp, Loc);
1279 Process_Flist;
1280 end if;
1281
1282 Next_Elmt (Prim);
1283 end loop;
1284 end;
1285 end if;
1286
1287 if not Is_Frozen (E) then
1288 Flist := Freeze_Entity (E, Loc);
1289 Process_Flist;
1290 end if;
1291
def46b54
RD
1292 -- If an incomplete type is still not frozen, this may be a
1293 -- premature freezing because of a body declaration that follows.
1294 -- Indicate where the freezing took place.
fbf5a39b 1295
def46b54
RD
1296 -- If the freezing is caused by the end of the current declarative
1297 -- part, it is a Taft Amendment type, and there is no error.
fbf5a39b
AC
1298
1299 if not Is_Frozen (E)
1300 and then Ekind (E) = E_Incomplete_Type
1301 then
1302 declare
1303 Bod : constant Node_Id := Next (After);
1304
1305 begin
1306 if (Nkind (Bod) = N_Subprogram_Body
1307 or else Nkind (Bod) = N_Entry_Body
1308 or else Nkind (Bod) = N_Package_Body
1309 or else Nkind (Bod) = N_Protected_Body
1310 or else Nkind (Bod) = N_Task_Body
1311 or else Nkind (Bod) in N_Body_Stub)
1312 and then
1313 List_Containing (After) = List_Containing (Parent (E))
1314 then
1315 Error_Msg_Sloc := Sloc (Next (After));
1316 Error_Msg_NE
1317 ("type& is frozen# before its full declaration",
1318 Parent (E), E);
1319 end if;
1320 end;
1321 end if;
1322
70482933
RK
1323 Next_Entity (E);
1324 end loop;
1325 end Freeze_All_Ent;
1326
1327 -- Start of processing for Freeze_All
1328
1329 begin
1330 Freeze_All_Ent (From, After);
1331
1332 -- Now that all types are frozen, we can deal with default expressions
1333 -- that require us to build a default expression functions. This is the
1334 -- point at which such functions are constructed (after all types that
1335 -- might be used in such expressions have been frozen).
fbf5a39b 1336
70482933
RK
1337 -- We also add finalization chains to access types whose designated
1338 -- types are controlled. This is normally done when freezing the type,
1339 -- but this misses recursive type definitions where the later members
c6a9797e 1340 -- of the recursion introduce controlled components.
70482933
RK
1341
1342 -- Loop through entities
1343
1344 E := From;
1345 while Present (E) loop
70482933
RK
1346 if Is_Subprogram (E) then
1347
1348 if not Default_Expressions_Processed (E) then
1349 Process_Default_Expressions (E, After);
1350 end if;
1351
1352 if not Has_Completion (E) then
1353 Decl := Unit_Declaration_Node (E);
1354
1355 if Nkind (Decl) = N_Subprogram_Renaming_Declaration then
1356 Build_And_Analyze_Renamed_Body (Decl, E, After);
1357
1358 elsif Nkind (Decl) = N_Subprogram_Declaration
1359 and then Present (Corresponding_Body (Decl))
1360 and then
1361 Nkind (Unit_Declaration_Node (Corresponding_Body (Decl)))
fbf5a39b 1362 = N_Subprogram_Renaming_Declaration
70482933
RK
1363 then
1364 Build_And_Analyze_Renamed_Body
1365 (Decl, Corresponding_Body (Decl), After);
1366 end if;
1367 end if;
1368
1369 elsif Ekind (E) in Task_Kind
1370 and then
1371 (Nkind (Parent (E)) = N_Task_Type_Declaration
fbf5a39b 1372 or else
70482933
RK
1373 Nkind (Parent (E)) = N_Single_Task_Declaration)
1374 then
1375 declare
1376 Ent : Entity_Id;
70482933
RK
1377 begin
1378 Ent := First_Entity (E);
1379
1380 while Present (Ent) loop
1381
1382 if Is_Entry (Ent)
1383 and then not Default_Expressions_Processed (Ent)
1384 then
1385 Process_Default_Expressions (Ent, After);
1386 end if;
1387
1388 Next_Entity (Ent);
1389 end loop;
1390 end;
1391
1392 elsif Is_Access_Type (E)
1393 and then Comes_From_Source (E)
1394 and then Ekind (Directly_Designated_Type (E)) = E_Incomplete_Type
048e5cef 1395 and then Needs_Finalization (Designated_Type (E))
70482933
RK
1396 and then No (Associated_Final_Chain (E))
1397 then
1398 Build_Final_List (Parent (E), E);
1399 end if;
1400
1401 Next_Entity (E);
1402 end loop;
70482933
RK
1403 end Freeze_All;
1404
1405 -----------------------
1406 -- Freeze_And_Append --
1407 -----------------------
1408
1409 procedure Freeze_And_Append
1410 (Ent : Entity_Id;
1411 Loc : Source_Ptr;
1412 Result : in out List_Id)
1413 is
1414 L : constant List_Id := Freeze_Entity (Ent, Loc);
70482933
RK
1415 begin
1416 if Is_Non_Empty_List (L) then
1417 if Result = No_List then
1418 Result := L;
1419 else
1420 Append_List (L, Result);
1421 end if;
1422 end if;
1423 end Freeze_And_Append;
1424
1425 -------------------
1426 -- Freeze_Before --
1427 -------------------
1428
1429 procedure Freeze_Before (N : Node_Id; T : Entity_Id) is
1430 Freeze_Nodes : constant List_Id := Freeze_Entity (T, Sloc (N));
70482933
RK
1431 begin
1432 if Is_Non_Empty_List (Freeze_Nodes) then
fbf5a39b 1433 Insert_Actions (N, Freeze_Nodes);
70482933
RK
1434 end if;
1435 end Freeze_Before;
1436
1437 -------------------
1438 -- Freeze_Entity --
1439 -------------------
1440
1441 function Freeze_Entity (E : Entity_Id; Loc : Source_Ptr) return List_Id is
c6823a20 1442 Test_E : Entity_Id := E;
70482933
RK
1443 Comp : Entity_Id;
1444 F_Node : Node_Id;
1445 Result : List_Id;
1446 Indx : Node_Id;
1447 Formal : Entity_Id;
1448 Atype : Entity_Id;
1449
4c8a5bb8
AC
1450 Has_Default_Initialization : Boolean := False;
1451 -- This flag gets set to true for a variable with default initialization
1452
70482933 1453 procedure Check_Current_Instance (Comp_Decl : Node_Id);
edd63e9b
ES
1454 -- Check that an Access or Unchecked_Access attribute with a prefix
1455 -- which is the current instance type can only be applied when the type
1456 -- is limited.
70482933 1457
67b3acf8
RD
1458 procedure Check_Suspicious_Modulus (Utype : Entity_Id);
1459 -- Give warning for modulus of 8, 16, 32, or 64 given as an explicit
1460 -- integer literal without an explicit corresponding size clause. The
1461 -- caller has checked that Utype is a modular integer type.
1462
70482933
RK
1463 function After_Last_Declaration return Boolean;
1464 -- If Loc is a freeze_entity that appears after the last declaration
1465 -- in the scope, inhibit error messages on late completion.
1466
1467 procedure Freeze_Record_Type (Rec : Entity_Id);
edd63e9b
ES
1468 -- Freeze each component, handle some representation clauses, and freeze
1469 -- primitive operations if this is a tagged type.
70482933
RK
1470
1471 ----------------------------
1472 -- After_Last_Declaration --
1473 ----------------------------
1474
1475 function After_Last_Declaration return Boolean is
fb2e11ee 1476 Spec : constant Node_Id := Parent (Current_Scope);
70482933
RK
1477 begin
1478 if Nkind (Spec) = N_Package_Specification then
1479 if Present (Private_Declarations (Spec)) then
1480 return Loc >= Sloc (Last (Private_Declarations (Spec)));
70482933
RK
1481 elsif Present (Visible_Declarations (Spec)) then
1482 return Loc >= Sloc (Last (Visible_Declarations (Spec)));
1483 else
1484 return False;
1485 end if;
70482933
RK
1486 else
1487 return False;
1488 end if;
1489 end After_Last_Declaration;
1490
1491 ----------------------------
1492 -- Check_Current_Instance --
1493 ----------------------------
1494
1495 procedure Check_Current_Instance (Comp_Decl : Node_Id) is
1496
32c760e6
ES
1497 Rec_Type : constant Entity_Id :=
1498 Scope (Defining_Identifier (Comp_Decl));
1499
1500 Decl : constant Node_Id := Parent (Rec_Type);
1501
70482933 1502 function Process (N : Node_Id) return Traverse_Result;
49e90211 1503 -- Process routine to apply check to given node
70482933 1504
fbf5a39b
AC
1505 -------------
1506 -- Process --
1507 -------------
1508
70482933
RK
1509 function Process (N : Node_Id) return Traverse_Result is
1510 begin
1511 case Nkind (N) is
1512 when N_Attribute_Reference =>
def46b54 1513 if (Attribute_Name (N) = Name_Access
70482933
RK
1514 or else
1515 Attribute_Name (N) = Name_Unchecked_Access)
1516 and then Is_Entity_Name (Prefix (N))
1517 and then Is_Type (Entity (Prefix (N)))
1518 and then Entity (Prefix (N)) = E
1519 then
1520 Error_Msg_N
1521 ("current instance must be a limited type", Prefix (N));
1522 return Abandon;
1523 else
1524 return OK;
1525 end if;
1526
1527 when others => return OK;
1528 end case;
1529 end Process;
1530
1531 procedure Traverse is new Traverse_Proc (Process);
1532
1533 -- Start of processing for Check_Current_Instance
1534
1535 begin
32c760e6
ES
1536 -- In Ada95, the (imprecise) rule is that the current instance of a
1537 -- limited type is aliased. In Ada2005, limitedness must be explicit:
1538 -- either a tagged type, or a limited record.
1539
1540 if Is_Limited_Type (Rec_Type)
fb2e11ee 1541 and then (Ada_Version < Ada_05 or else Is_Tagged_Type (Rec_Type))
32c760e6
ES
1542 then
1543 return;
1544
1545 elsif Nkind (Decl) = N_Full_Type_Declaration
1546 and then Limited_Present (Type_Definition (Decl))
1547 then
1548 return;
1549
1550 else
1551 Traverse (Comp_Decl);
1552 end if;
70482933
RK
1553 end Check_Current_Instance;
1554
67b3acf8
RD
1555 ------------------------------
1556 -- Check_Suspicious_Modulus --
1557 ------------------------------
1558
1559 procedure Check_Suspicious_Modulus (Utype : Entity_Id) is
1560 Decl : constant Node_Id := Declaration_Node (Underlying_Type (Utype));
1561
1562 begin
1563 if Nkind (Decl) = N_Full_Type_Declaration then
1564 declare
1565 Tdef : constant Node_Id := Type_Definition (Decl);
1566 begin
1567 if Nkind (Tdef) = N_Modular_Type_Definition then
1568 declare
1569 Modulus : constant Node_Id :=
1570 Original_Node (Expression (Tdef));
1571 begin
1572 if Nkind (Modulus) = N_Integer_Literal then
1573 declare
1574 Modv : constant Uint := Intval (Modulus);
1575 Sizv : constant Uint := RM_Size (Utype);
1576
1577 begin
1578 -- First case, modulus and size are the same. This
1579 -- happens if you have something like mod 32, with
1580 -- an explicit size of 32, this is for sure a case
1581 -- where the warning is given, since it is seems
1582 -- very unlikely that someone would want e.g. a
1583 -- five bit type stored in 32 bits. It is much
1584 -- more likely they wanted a 32-bit type.
1585
1586 if Modv = Sizv then
1587 null;
1588
1589 -- Second case, the modulus is 32 or 64 and no
1590 -- size clause is present. This is a less clear
1591 -- case for giving the warning, but in the case
1592 -- of 32/64 (5-bit or 6-bit types) these seem rare
1593 -- enough that it is a likely error (and in any
1594 -- case using 2**5 or 2**6 in these cases seems
1595 -- clearer. We don't include 8 or 16 here, simply
1596 -- because in practice 3-bit and 4-bit types are
1597 -- more common and too many false positives if
1598 -- we warn in these cases.
1599
1600 elsif not Has_Size_Clause (Utype)
1601 and then (Modv = Uint_32 or else Modv = Uint_64)
1602 then
1603 null;
1604
1605 -- No warning needed
1606
1607 else
1608 return;
1609 end if;
1610
1611 -- If we fall through, give warning
1612
1613 Error_Msg_Uint_1 := Modv;
1614 Error_Msg_N
1615 ("?2 '*'*^' may have been intended here",
1616 Modulus);
1617 end;
1618 end if;
1619 end;
1620 end if;
1621 end;
1622 end if;
1623 end Check_Suspicious_Modulus;
1624
70482933
RK
1625 ------------------------
1626 -- Freeze_Record_Type --
1627 ------------------------
1628
1629 procedure Freeze_Record_Type (Rec : Entity_Id) is
1630 Comp : Entity_Id;
fbf5a39b 1631 IR : Node_Id;
70482933 1632 ADC : Node_Id;
c6823a20 1633 Prev : Entity_Id;
70482933 1634
67ce0d7e
RD
1635 Junk : Boolean;
1636 pragma Warnings (Off, Junk);
1637
70482933
RK
1638 Unplaced_Component : Boolean := False;
1639 -- Set True if we find at least one component with no component
1640 -- clause (used to warn about useless Pack pragmas).
1641
1642 Placed_Component : Boolean := False;
1643 -- Set True if we find at least one component with a component
8dc10d38
AC
1644 -- clause (used to warn about useless Bit_Order pragmas, and also
1645 -- to detect cases where Implicit_Packing may have an effect).
1646
1647 All_Scalar_Components : Boolean := True;
1648 -- Set False if we encounter a component of a non-scalar type
1649
1650 Scalar_Component_Total_RM_Size : Uint := Uint_0;
1651 Scalar_Component_Total_Esize : Uint := Uint_0;
1652 -- Accumulates total RM_Size values and total Esize values of all
1653 -- scalar components. Used for processing of Implicit_Packing.
70482933 1654
e18d6a15
JM
1655 function Check_Allocator (N : Node_Id) return Node_Id;
1656 -- If N is an allocator, possibly wrapped in one or more level of
1657 -- qualified expression(s), return the inner allocator node, else
1658 -- return Empty.
19590d70 1659
7d8b9c99
RD
1660 procedure Check_Itype (Typ : Entity_Id);
1661 -- If the component subtype is an access to a constrained subtype of
1662 -- an already frozen type, make the subtype frozen as well. It might
1663 -- otherwise be frozen in the wrong scope, and a freeze node on
1664 -- subtype has no effect. Similarly, if the component subtype is a
1665 -- regular (not protected) access to subprogram, set the anonymous
1666 -- subprogram type to frozen as well, to prevent an out-of-scope
1667 -- freeze node at some eventual point of call. Protected operations
1668 -- are handled elsewhere.
6e059adb 1669
19590d70
GD
1670 ---------------------
1671 -- Check_Allocator --
1672 ---------------------
1673
e18d6a15
JM
1674 function Check_Allocator (N : Node_Id) return Node_Id is
1675 Inner : Node_Id;
19590d70 1676 begin
e18d6a15 1677 Inner := N;
e18d6a15
JM
1678 loop
1679 if Nkind (Inner) = N_Allocator then
1680 return Inner;
e18d6a15
JM
1681 elsif Nkind (Inner) = N_Qualified_Expression then
1682 Inner := Expression (Inner);
e18d6a15
JM
1683 else
1684 return Empty;
1685 end if;
1686 end loop;
19590d70
GD
1687 end Check_Allocator;
1688
6871ba5f
AC
1689 -----------------
1690 -- Check_Itype --
1691 -----------------
1692
7d8b9c99
RD
1693 procedure Check_Itype (Typ : Entity_Id) is
1694 Desig : constant Entity_Id := Designated_Type (Typ);
1695
6e059adb
AC
1696 begin
1697 if not Is_Frozen (Desig)
1698 and then Is_Frozen (Base_Type (Desig))
1699 then
1700 Set_Is_Frozen (Desig);
1701
1702 -- In addition, add an Itype_Reference to ensure that the
7d8b9c99
RD
1703 -- access subtype is elaborated early enough. This cannot be
1704 -- done if the subtype may depend on discriminants.
6e059adb
AC
1705
1706 if Ekind (Comp) = E_Component
1707 and then Is_Itype (Etype (Comp))
1708 and then not Has_Discriminants (Rec)
1709 then
1710 IR := Make_Itype_Reference (Sloc (Comp));
1711 Set_Itype (IR, Desig);
1712
1713 if No (Result) then
1714 Result := New_List (IR);
1715 else
1716 Append (IR, Result);
1717 end if;
1718 end if;
7d8b9c99
RD
1719
1720 elsif Ekind (Typ) = E_Anonymous_Access_Subprogram_Type
1721 and then Convention (Desig) /= Convention_Protected
1722 then
1723 Set_Is_Frozen (Desig);
6e059adb
AC
1724 end if;
1725 end Check_Itype;
1726
1727 -- Start of processing for Freeze_Record_Type
1728
70482933 1729 begin
7d8b9c99
RD
1730 -- If this is a subtype of a controlled type, declared without a
1731 -- constraint, the _controller may not appear in the component list
1732 -- if the parent was not frozen at the point of subtype declaration.
1733 -- Inherit the _controller component now.
fbf5a39b
AC
1734
1735 if Rec /= Base_Type (Rec)
1736 and then Has_Controlled_Component (Rec)
1737 then
1738 if Nkind (Parent (Rec)) = N_Subtype_Declaration
1739 and then Is_Entity_Name (Subtype_Indication (Parent (Rec)))
1740 then
1741 Set_First_Entity (Rec, First_Entity (Base_Type (Rec)));
1742
49e90211 1743 -- If this is an internal type without a declaration, as for
6871ba5f
AC
1744 -- record component, the base type may not yet be frozen, and its
1745 -- controller has not been created. Add an explicit freeze node
49e90211
ES
1746 -- for the itype, so it will be frozen after the base type. This
1747 -- freeze node is used to communicate with the expander, in order
1748 -- to create the controller for the enclosing record, and it is
1749 -- deleted afterwards (see exp_ch3). It must not be created when
1750 -- expansion is off, because it might appear in the wrong context
1751 -- for the back end.
fbf5a39b
AC
1752
1753 elsif Is_Itype (Rec)
1754 and then Has_Delayed_Freeze (Base_Type (Rec))
1755 and then
1756 Nkind (Associated_Node_For_Itype (Rec)) =
49e90211
ES
1757 N_Component_Declaration
1758 and then Expander_Active
fbf5a39b
AC
1759 then
1760 Ensure_Freeze_Node (Rec);
1761 end if;
1762 end if;
1763
49e90211 1764 -- Freeze components and embedded subtypes
70482933
RK
1765
1766 Comp := First_Entity (Rec);
c6823a20 1767 Prev := Empty;
c6823a20 1768 while Present (Comp) loop
70482933 1769
49e90211 1770 -- First handle the (real) component case
70482933
RK
1771
1772 if Ekind (Comp) = E_Component
1773 or else Ekind (Comp) = E_Discriminant
1774 then
70482933
RK
1775 declare
1776 CC : constant Node_Id := Component_Clause (Comp);
1777
1778 begin
c6823a20
EB
1779 -- Freezing a record type freezes the type of each of its
1780 -- components. However, if the type of the component is
1781 -- part of this record, we do not want or need a separate
1782 -- Freeze_Node. Note that Is_Itype is wrong because that's
1783 -- also set in private type cases. We also can't check for
1784 -- the Scope being exactly Rec because of private types and
1785 -- record extensions.
1786
1787 if Is_Itype (Etype (Comp))
1788 and then Is_Record_Type (Underlying_Type
1789 (Scope (Etype (Comp))))
1790 then
1791 Undelay_Type (Etype (Comp));
1792 end if;
1793
1794 Freeze_And_Append (Etype (Comp), Loc, Result);
1795
0da2c8ac
AC
1796 -- Check for error of component clause given for variable
1797 -- sized type. We have to delay this test till this point,
1798 -- since the component type has to be frozen for us to know
1799 -- if it is variable length. We omit this test in a generic
1800 -- context, it will be applied at instantiation time.
1801
70482933
RK
1802 if Present (CC) then
1803 Placed_Component := True;
1804
07fc65c4
GB
1805 if Inside_A_Generic then
1806 null;
1807
7d8b9c99
RD
1808 elsif not
1809 Size_Known_At_Compile_Time
1810 (Underlying_Type (Etype (Comp)))
70482933
RK
1811 then
1812 Error_Msg_N
1813 ("component clause not allowed for variable " &
1814 "length component", CC);
1815 end if;
1816
1817 else
1818 Unplaced_Component := True;
1819 end if;
70482933 1820
0da2c8ac 1821 -- Case of component requires byte alignment
70482933 1822
0da2c8ac 1823 if Must_Be_On_Byte_Boundary (Etype (Comp)) then
70482933 1824
0da2c8ac 1825 -- Set the enclosing record to also require byte align
70482933 1826
0da2c8ac 1827 Set_Must_Be_On_Byte_Boundary (Rec);
70482933 1828
7d8b9c99
RD
1829 -- Check for component clause that is inconsistent with
1830 -- the required byte boundary alignment.
70482933 1831
0da2c8ac
AC
1832 if Present (CC)
1833 and then Normalized_First_Bit (Comp) mod
1834 System_Storage_Unit /= 0
1835 then
1836 Error_Msg_N
1837 ("component & must be byte aligned",
1838 Component_Name (Component_Clause (Comp)));
1839 end if;
1840 end if;
70482933 1841
7d8b9c99
RD
1842 -- If component clause is present, then deal with the non-
1843 -- default bit order case for Ada 95 mode. The required
fea9e956
ES
1844 -- processing for Ada 2005 mode is handled separately after
1845 -- processing all components.
70482933 1846
0da2c8ac
AC
1847 -- We only do this processing for the base type, and in
1848 -- fact that's important, since otherwise if there are
1849 -- record subtypes, we could reverse the bits once for
1850 -- each subtype, which would be incorrect.
70482933 1851
0da2c8ac
AC
1852 if Present (CC)
1853 and then Reverse_Bit_Order (Rec)
1854 and then Ekind (E) = E_Record_Type
fea9e956 1855 and then Ada_Version <= Ada_95
0da2c8ac
AC
1856 then
1857 declare
1858 CFB : constant Uint := Component_Bit_Offset (Comp);
1859 CSZ : constant Uint := Esize (Comp);
1860 CLC : constant Node_Id := Component_Clause (Comp);
1861 Pos : constant Node_Id := Position (CLC);
1862 FB : constant Node_Id := First_Bit (CLC);
1863
1864 Storage_Unit_Offset : constant Uint :=
1865 CFB / System_Storage_Unit;
1866
1867 Start_Bit : constant Uint :=
1868 CFB mod System_Storage_Unit;
1869
1870 begin
1871 -- Cases where field goes over storage unit boundary
1872
1873 if Start_Bit + CSZ > System_Storage_Unit then
70482933 1874
0da2c8ac
AC
1875 -- Allow multi-byte field but generate warning
1876
1877 if Start_Bit mod System_Storage_Unit = 0
1878 and then CSZ mod System_Storage_Unit = 0
1879 then
70482933 1880 Error_Msg_N
0da2c8ac
AC
1881 ("multi-byte field specified with non-standard"
1882 & " Bit_Order?", CLC);
1883
1884 if Bytes_Big_Endian then
1885 Error_Msg_N
1886 ("bytes are not reversed "
1887 & "(component is big-endian)?", CLC);
1888 else
1889 Error_Msg_N
1890 ("bytes are not reversed "
1891 & "(component is little-endian)?", CLC);
1892 end if;
1893
c6084ae0 1894 -- Do not allow non-contiguous field
0da2c8ac 1895
70482933
RK
1896 else
1897 Error_Msg_N
c6084ae0
AC
1898 ("attempt to specify non-contiguous field "
1899 & "not permitted", CLC);
0da2c8ac 1900 Error_Msg_N
c6084ae0
AC
1901 ("\caused by non-standard Bit_Order "
1902 & "specified", CLC);
1903 Error_Msg_N
1904 ("\consider possibility of using "
1905 & "Ada 2005 mode here", CLC);
70482933
RK
1906 end if;
1907
c6084ae0 1908 -- Case where field fits in one storage unit
70482933
RK
1909
1910 else
0da2c8ac 1911 -- Give warning if suspicious component clause
70482933 1912
fea9e956
ES
1913 if Intval (FB) >= System_Storage_Unit
1914 and then Warn_On_Reverse_Bit_Order
1915 then
0da2c8ac
AC
1916 Error_Msg_N
1917 ("?Bit_Order clause does not affect " &
1918 "byte ordering", Pos);
1919 Error_Msg_Uint_1 :=
1920 Intval (Pos) + Intval (FB) /
1921 System_Storage_Unit;
1922 Error_Msg_N
1923 ("?position normalized to ^ before bit " &
1924 "order interpreted", Pos);
1925 end if;
70482933 1926
0da2c8ac
AC
1927 -- Here is where we fix up the Component_Bit_Offset
1928 -- value to account for the reverse bit order.
1929 -- Some examples of what needs to be done are:
70482933 1930
0da2c8ac
AC
1931 -- First_Bit .. Last_Bit Component_Bit_Offset
1932 -- old new old new
70482933 1933
0da2c8ac
AC
1934 -- 0 .. 0 7 .. 7 0 7
1935 -- 0 .. 1 6 .. 7 0 6
1936 -- 0 .. 2 5 .. 7 0 5
1937 -- 0 .. 7 0 .. 7 0 4
70482933 1938
0da2c8ac
AC
1939 -- 1 .. 1 6 .. 6 1 6
1940 -- 1 .. 4 3 .. 6 1 3
1941 -- 4 .. 7 0 .. 3 4 0
70482933 1942
0da2c8ac
AC
1943 -- The general rule is that the first bit is
1944 -- is obtained by subtracting the old ending bit
1945 -- from storage_unit - 1.
70482933 1946
0da2c8ac
AC
1947 Set_Component_Bit_Offset
1948 (Comp,
1949 (Storage_Unit_Offset * System_Storage_Unit) +
1950 (System_Storage_Unit - 1) -
1951 (Start_Bit + CSZ - 1));
70482933 1952
0da2c8ac
AC
1953 Set_Normalized_First_Bit
1954 (Comp,
1955 Component_Bit_Offset (Comp) mod
1956 System_Storage_Unit);
1957 end if;
1958 end;
1959 end if;
1960 end;
70482933
RK
1961 end if;
1962
426d2717 1963 -- Gather data for possible Implicit_Packing later
8dc10d38 1964
426d2717
AC
1965 if not Is_Scalar_Type (Etype (Comp)) then
1966 All_Scalar_Components := False;
1967 else
1968 Scalar_Component_Total_RM_Size :=
1969 Scalar_Component_Total_RM_Size + RM_Size (Etype (Comp));
1970 Scalar_Component_Total_Esize :=
1971 Scalar_Component_Total_Esize + Esize (Etype (Comp));
8dc10d38
AC
1972 end if;
1973
c6823a20
EB
1974 -- If the component is an Itype with Delayed_Freeze and is either
1975 -- a record or array subtype and its base type has not yet been
1976 -- frozen, we must remove this from the entity list of this
1977 -- record and put it on the entity list of the scope of its base
1978 -- type. Note that we know that this is not the type of a
1979 -- component since we cleared Has_Delayed_Freeze for it in the
1980 -- previous loop. Thus this must be the Designated_Type of an
1981 -- access type, which is the type of a component.
1982
1983 if Is_Itype (Comp)
1984 and then Is_Type (Scope (Comp))
1985 and then Is_Composite_Type (Comp)
1986 and then Base_Type (Comp) /= Comp
1987 and then Has_Delayed_Freeze (Comp)
1988 and then not Is_Frozen (Base_Type (Comp))
1989 then
1990 declare
1991 Will_Be_Frozen : Boolean := False;
1b24ada5 1992 S : Entity_Id;
c6823a20
EB
1993
1994 begin
fea9e956
ES
1995 -- We have a pretty bad kludge here. Suppose Rec is subtype
1996 -- being defined in a subprogram that's created as part of
1997 -- the freezing of Rec'Base. In that case, we know that
1998 -- Comp'Base must have already been frozen by the time we
1999 -- get to elaborate this because Gigi doesn't elaborate any
2000 -- bodies until it has elaborated all of the declarative
2001 -- part. But Is_Frozen will not be set at this point because
2002 -- we are processing code in lexical order.
2003
2004 -- We detect this case by going up the Scope chain of Rec
2005 -- and seeing if we have a subprogram scope before reaching
2006 -- the top of the scope chain or that of Comp'Base. If we
2007 -- do, then mark that Comp'Base will actually be frozen. If
2008 -- so, we merely undelay it.
c6823a20 2009
1b24ada5 2010 S := Scope (Rec);
c6823a20
EB
2011 while Present (S) loop
2012 if Is_Subprogram (S) then
2013 Will_Be_Frozen := True;
2014 exit;
2015 elsif S = Scope (Base_Type (Comp)) then
2016 exit;
2017 end if;
2018
2019 S := Scope (S);
2020 end loop;
2021
2022 if Will_Be_Frozen then
2023 Undelay_Type (Comp);
2024 else
2025 if Present (Prev) then
2026 Set_Next_Entity (Prev, Next_Entity (Comp));
2027 else
2028 Set_First_Entity (Rec, Next_Entity (Comp));
2029 end if;
2030
2031 -- Insert in entity list of scope of base type (which
2032 -- must be an enclosing scope, because still unfrozen).
2033
2034 Append_Entity (Comp, Scope (Base_Type (Comp)));
2035 end if;
2036 end;
2037
def46b54
RD
2038 -- If the component is an access type with an allocator as default
2039 -- value, the designated type will be frozen by the corresponding
2040 -- expression in init_proc. In order to place the freeze node for
2041 -- the designated type before that for the current record type,
2042 -- freeze it now.
c6823a20
EB
2043
2044 -- Same process if the component is an array of access types,
2045 -- initialized with an aggregate. If the designated type is
def46b54
RD
2046 -- private, it cannot contain allocators, and it is premature
2047 -- to freeze the type, so we check for this as well.
c6823a20
EB
2048
2049 elsif Is_Access_Type (Etype (Comp))
2050 and then Present (Parent (Comp))
2051 and then Present (Expression (Parent (Comp)))
c6823a20
EB
2052 then
2053 declare
e18d6a15
JM
2054 Alloc : constant Node_Id :=
2055 Check_Allocator (Expression (Parent (Comp)));
c6823a20
EB
2056
2057 begin
e18d6a15 2058 if Present (Alloc) then
19590d70 2059
e18d6a15
JM
2060 -- If component is pointer to a classwide type, freeze
2061 -- the specific type in the expression being allocated.
2062 -- The expression may be a subtype indication, in which
2063 -- case freeze the subtype mark.
c6823a20 2064
e18d6a15
JM
2065 if Is_Class_Wide_Type
2066 (Designated_Type (Etype (Comp)))
0f4cb75c 2067 then
e18d6a15
JM
2068 if Is_Entity_Name (Expression (Alloc)) then
2069 Freeze_And_Append
2070 (Entity (Expression (Alloc)), Loc, Result);
2071 elsif
2072 Nkind (Expression (Alloc)) = N_Subtype_Indication
2073 then
2074 Freeze_And_Append
2075 (Entity (Subtype_Mark (Expression (Alloc))),
2076 Loc, Result);
2077 end if;
0f4cb75c 2078
e18d6a15
JM
2079 elsif Is_Itype (Designated_Type (Etype (Comp))) then
2080 Check_Itype (Etype (Comp));
0f4cb75c 2081
e18d6a15
JM
2082 else
2083 Freeze_And_Append
2084 (Designated_Type (Etype (Comp)), Loc, Result);
2085 end if;
c6823a20
EB
2086 end if;
2087 end;
2088
2089 elsif Is_Access_Type (Etype (Comp))
2090 and then Is_Itype (Designated_Type (Etype (Comp)))
2091 then
7d8b9c99 2092 Check_Itype (Etype (Comp));
c6823a20
EB
2093
2094 elsif Is_Array_Type (Etype (Comp))
2095 and then Is_Access_Type (Component_Type (Etype (Comp)))
2096 and then Present (Parent (Comp))
2097 and then Nkind (Parent (Comp)) = N_Component_Declaration
2098 and then Present (Expression (Parent (Comp)))
2099 and then Nkind (Expression (Parent (Comp))) = N_Aggregate
2100 and then Is_Fully_Defined
2101 (Designated_Type (Component_Type (Etype (Comp))))
2102 then
2103 Freeze_And_Append
2104 (Designated_Type
2105 (Component_Type (Etype (Comp))), Loc, Result);
2106 end if;
2107
2108 Prev := Comp;
70482933
RK
2109 Next_Entity (Comp);
2110 end loop;
2111
fea9e956
ES
2112 -- Deal with pragma Bit_Order
2113
2114 if Reverse_Bit_Order (Rec) and then Base_Type (Rec) = Rec then
2115 if not Placed_Component then
2116 ADC :=
2117 Get_Attribute_Definition_Clause (Rec, Attribute_Bit_Order);
2118 Error_Msg_N
2119 ("?Bit_Order specification has no effect", ADC);
2120 Error_Msg_N
2121 ("\?since no component clauses were specified", ADC);
2122
def46b54
RD
2123 -- Here is where we do Ada 2005 processing for bit order (the Ada
2124 -- 95 case was already taken care of above).
70482933 2125
fea9e956
ES
2126 elsif Ada_Version >= Ada_05 then
2127 Adjust_Record_For_Reverse_Bit_Order (Rec);
2128 end if;
70482933
RK
2129 end if;
2130
1b24ada5
RD
2131 -- Set OK_To_Reorder_Components depending on debug flags
2132
2133 if Rec = Base_Type (Rec)
2134 and then Convention (Rec) = Convention_Ada
2135 then
2136 if (Has_Discriminants (Rec) and then Debug_Flag_Dot_V)
2137 or else
2138 (not Has_Discriminants (Rec) and then Debug_Flag_Dot_R)
2139 then
2140 Set_OK_To_Reorder_Components (Rec);
2141 end if;
2142 end if;
2143
ee094616
RD
2144 -- Check for useless pragma Pack when all components placed. We only
2145 -- do this check for record types, not subtypes, since a subtype may
2146 -- have all its components placed, and it still makes perfectly good
1b24ada5
RD
2147 -- sense to pack other subtypes or the parent type. We do not give
2148 -- this warning if Optimize_Alignment is set to Space, since the
2149 -- pragma Pack does have an effect in this case (it always resets
2150 -- the alignment to one).
70482933 2151
ee094616
RD
2152 if Ekind (Rec) = E_Record_Type
2153 and then Is_Packed (Rec)
70482933 2154 and then not Unplaced_Component
1b24ada5 2155 and then Optimize_Alignment /= 'S'
70482933 2156 then
def46b54
RD
2157 -- Reset packed status. Probably not necessary, but we do it so
2158 -- that there is no chance of the back end doing something strange
2159 -- with this redundant indication of packing.
ee094616 2160
70482933 2161 Set_Is_Packed (Rec, False);
ee094616
RD
2162
2163 -- Give warning if redundant constructs warnings on
2164
2165 if Warn_On_Redundant_Constructs then
2166 Error_Msg_N
2167 ("?pragma Pack has no effect, no unplaced components",
2168 Get_Rep_Pragma (Rec, Name_Pack));
2169 end if;
70482933
RK
2170 end if;
2171
ee094616
RD
2172 -- If this is the record corresponding to a remote type, freeze the
2173 -- remote type here since that is what we are semantically freezing.
2174 -- This prevents the freeze node for that type in an inner scope.
70482933
RK
2175
2176 -- Also, Check for controlled components and unchecked unions.
ee094616
RD
2177 -- Finally, enforce the restriction that access attributes with a
2178 -- current instance prefix can only apply to limited types.
70482933 2179
8dc10d38 2180 if Ekind (Rec) = E_Record_Type then
70482933
RK
2181 if Present (Corresponding_Remote_Type (Rec)) then
2182 Freeze_And_Append
2183 (Corresponding_Remote_Type (Rec), Loc, Result);
2184 end if;
2185
2186 Comp := First_Component (Rec);
70482933
RK
2187 while Present (Comp) loop
2188 if Has_Controlled_Component (Etype (Comp))
2189 or else (Chars (Comp) /= Name_uParent
2190 and then Is_Controlled (Etype (Comp)))
2191 or else (Is_Protected_Type (Etype (Comp))
2192 and then Present
2193 (Corresponding_Record_Type (Etype (Comp)))
2194 and then Has_Controlled_Component
2195 (Corresponding_Record_Type (Etype (Comp))))
2196 then
2197 Set_Has_Controlled_Component (Rec);
2198 exit;
2199 end if;
2200
2201 if Has_Unchecked_Union (Etype (Comp)) then
2202 Set_Has_Unchecked_Union (Rec);
2203 end if;
2204
32c760e6
ES
2205 if Has_Per_Object_Constraint (Comp) then
2206
ee094616
RD
2207 -- Scan component declaration for likely misuses of current
2208 -- instance, either in a constraint or a default expression.
70482933
RK
2209
2210 Check_Current_Instance (Parent (Comp));
2211 end if;
2212
2213 Next_Component (Comp);
2214 end loop;
2215 end if;
2216
2217 Set_Component_Alignment_If_Not_Set (Rec);
2218
ee094616
RD
2219 -- For first subtypes, check if there are any fixed-point fields with
2220 -- component clauses, where we must check the size. This is not done
2221 -- till the freeze point, since for fixed-point types, we do not know
2222 -- the size until the type is frozen. Similar processing applies to
2223 -- bit packed arrays.
70482933
RK
2224
2225 if Is_First_Subtype (Rec) then
2226 Comp := First_Component (Rec);
2227
2228 while Present (Comp) loop
2229 if Present (Component_Clause (Comp))
d05ef0ab
AC
2230 and then (Is_Fixed_Point_Type (Etype (Comp))
2231 or else
2232 Is_Bit_Packed_Array (Etype (Comp)))
70482933
RK
2233 then
2234 Check_Size
d05ef0ab 2235 (Component_Name (Component_Clause (Comp)),
70482933
RK
2236 Etype (Comp),
2237 Esize (Comp),
2238 Junk);
2239 end if;
2240
2241 Next_Component (Comp);
2242 end loop;
2243 end if;
7d8b9c99
RD
2244
2245 -- Generate warning for applying C or C++ convention to a record
2246 -- with discriminants. This is suppressed for the unchecked union
1b24ada5
RD
2247 -- case, since the whole point in this case is interface C. We also
2248 -- do not generate this within instantiations, since we will have
2249 -- generated a message on the template.
7d8b9c99
RD
2250
2251 if Has_Discriminants (E)
2252 and then not Is_Unchecked_Union (E)
7d8b9c99
RD
2253 and then (Convention (E) = Convention_C
2254 or else
2255 Convention (E) = Convention_CPP)
2256 and then Comes_From_Source (E)
1b24ada5
RD
2257 and then not In_Instance
2258 and then not Has_Warnings_Off (E)
2259 and then not Has_Warnings_Off (Base_Type (E))
7d8b9c99
RD
2260 then
2261 declare
2262 Cprag : constant Node_Id := Get_Rep_Pragma (E, Name_Convention);
2263 A2 : Node_Id;
2264
2265 begin
2266 if Present (Cprag) then
2267 A2 := Next (First (Pragma_Argument_Associations (Cprag)));
2268
2269 if Convention (E) = Convention_C then
2270 Error_Msg_N
2271 ("?variant record has no direct equivalent in C", A2);
2272 else
2273 Error_Msg_N
2274 ("?variant record has no direct equivalent in C++", A2);
2275 end if;
2276
2277 Error_Msg_NE
2278 ("\?use of convention for type& is dubious", A2, E);
2279 end if;
2280 end;
2281 end if;
8dc10d38 2282
ce14c577 2283 -- See if Size is too small as is (and implicit packing might help)
8dc10d38 2284
426d2717 2285 if not Is_Packed (Rec)
ce14c577
AC
2286
2287 -- No implicit packing if even one component is explicitly placed
2288
426d2717 2289 and then not Placed_Component
ce14c577
AC
2290
2291 -- Must have size clause and all scalar components
2292
8dc10d38
AC
2293 and then Has_Size_Clause (Rec)
2294 and then All_Scalar_Components
ce14c577
AC
2295
2296 -- Do not try implicit packing on records with discriminants, too
2297 -- complicated, especially in the variant record case.
2298
8dc10d38 2299 and then not Has_Discriminants (Rec)
ce14c577
AC
2300
2301 -- We can implicitly pack if the specified size of the record is
2302 -- less than the sum of the object sizes (no point in packing if
2303 -- this is not the case).
2304
8dc10d38 2305 and then Esize (Rec) < Scalar_Component_Total_Esize
ce14c577
AC
2306
2307 -- And the total RM size cannot be greater than the specified size
2308 -- since otherwise packing will not get us where we have to be!
2309
8dc10d38 2310 and then Esize (Rec) >= Scalar_Component_Total_RM_Size
ce14c577
AC
2311
2312 -- Never do implicit packing in CodePeer mode since we don't do
2313 -- any packing ever in this mode (why not???)
2314
d58b9515 2315 and then not CodePeer_Mode
8dc10d38 2316 then
426d2717
AC
2317 -- If implicit packing enabled, do it
2318
2319 if Implicit_Packing then
2320 Set_Is_Packed (Rec);
2321
2322 -- Otherwise flag the size clause
2323
2324 else
2325 declare
2326 Sz : constant Node_Id := Size_Clause (Rec);
2327 begin
2995ebee 2328 Error_Msg_NE -- CODEFIX
426d2717 2329 ("size given for& too small", Sz, Rec);
2995ebee 2330 Error_Msg_N -- CODEFIX
426d2717
AC
2331 ("\use explicit pragma Pack "
2332 & "or use pragma Implicit_Packing", Sz);
2333 end;
2334 end if;
8dc10d38 2335 end if;
70482933
RK
2336 end Freeze_Record_Type;
2337
2338 -- Start of processing for Freeze_Entity
2339
2340 begin
c6823a20
EB
2341 -- We are going to test for various reasons why this entity need not be
2342 -- frozen here, but in the case of an Itype that's defined within a
2343 -- record, that test actually applies to the record.
2344
2345 if Is_Itype (E) and then Is_Record_Type (Scope (E)) then
2346 Test_E := Scope (E);
2347 elsif Is_Itype (E) and then Present (Underlying_Type (Scope (E)))
2348 and then Is_Record_Type (Underlying_Type (Scope (E)))
2349 then
2350 Test_E := Underlying_Type (Scope (E));
2351 end if;
2352
fbf5a39b 2353 -- Do not freeze if already frozen since we only need one freeze node
70482933
RK
2354
2355 if Is_Frozen (E) then
2356 return No_List;
2357
c6823a20
EB
2358 -- It is improper to freeze an external entity within a generic because
2359 -- its freeze node will appear in a non-valid context. The entity will
2360 -- be frozen in the proper scope after the current generic is analyzed.
70482933 2361
c6823a20 2362 elsif Inside_A_Generic and then External_Ref_In_Generic (Test_E) then
70482933
RK
2363 return No_List;
2364
2365 -- Do not freeze a global entity within an inner scope created during
2366 -- expansion. A call to subprogram E within some internal procedure
2367 -- (a stream attribute for example) might require freezing E, but the
2368 -- freeze node must appear in the same declarative part as E itself.
2369 -- The two-pass elaboration mechanism in gigi guarantees that E will
2370 -- be frozen before the inner call is elaborated. We exclude constants
2371 -- from this test, because deferred constants may be frozen early, and
19590d70
GD
2372 -- must be diagnosed (e.g. in the case of a deferred constant being used
2373 -- in a default expression). If the enclosing subprogram comes from
2374 -- source, or is a generic instance, then the freeze point is the one
2375 -- mandated by the language, and we freeze the entity. A subprogram that
2376 -- is a child unit body that acts as a spec does not have a spec that
2377 -- comes from source, but can only come from source.
70482933 2378
c6823a20
EB
2379 elsif In_Open_Scopes (Scope (Test_E))
2380 and then Scope (Test_E) /= Current_Scope
2381 and then Ekind (Test_E) /= E_Constant
70482933
RK
2382 then
2383 declare
2384 S : Entity_Id := Current_Scope;
2385
2386 begin
2387 while Present (S) loop
2388 if Is_Overloadable (S) then
2389 if Comes_From_Source (S)
2390 or else Is_Generic_Instance (S)
fea9e956 2391 or else Is_Child_Unit (S)
70482933
RK
2392 then
2393 exit;
2394 else
2395 return No_List;
2396 end if;
2397 end if;
2398
2399 S := Scope (S);
2400 end loop;
2401 end;
555360a5
AC
2402
2403 -- Similarly, an inlined instance body may make reference to global
2404 -- entities, but these references cannot be the proper freezing point
def46b54
RD
2405 -- for them, and in the absence of inlining freezing will take place in
2406 -- their own scope. Normally instance bodies are analyzed after the
2407 -- enclosing compilation, and everything has been frozen at the proper
2408 -- place, but with front-end inlining an instance body is compiled
2409 -- before the end of the enclosing scope, and as a result out-of-order
2410 -- freezing must be prevented.
555360a5
AC
2411
2412 elsif Front_End_Inlining
7d8b9c99 2413 and then In_Instance_Body
c6823a20 2414 and then Present (Scope (Test_E))
555360a5
AC
2415 then
2416 declare
c6823a20
EB
2417 S : Entity_Id := Scope (Test_E);
2418
555360a5
AC
2419 begin
2420 while Present (S) loop
2421 if Is_Generic_Instance (S) then
2422 exit;
2423 else
2424 S := Scope (S);
2425 end if;
2426 end loop;
2427
2428 if No (S) then
2429 return No_List;
2430 end if;
2431 end;
70482933
RK
2432 end if;
2433
2434 -- Here to freeze the entity
2435
2436 Result := No_List;
2437 Set_Is_Frozen (E);
2438
2439 -- Case of entity being frozen is other than a type
2440
2441 if not Is_Type (E) then
2442
2443 -- If entity is exported or imported and does not have an external
2444 -- name, now is the time to provide the appropriate default name.
2445 -- Skip this if the entity is stubbed, since we don't need a name
75a64833
AC
2446 -- for any stubbed routine. For the case on intrinsics, if no
2447 -- external name is specified, then calls will be handled in
2448 -- Exp_Intr.Expand_Intrinsic_Call, and no name is needed; if
2449 -- an external name is provided, then Expand_Intrinsic_Call leaves
2450 -- calls in place for expansion by GIGI.
70482933
RK
2451
2452 if (Is_Imported (E) or else Is_Exported (E))
2453 and then No (Interface_Name (E))
2454 and then Convention (E) /= Convention_Stubbed
75a64833 2455 and then Convention (E) /= Convention_Intrinsic
70482933
RK
2456 then
2457 Set_Encoded_Interface_Name
2458 (E, Get_Default_External_Name (E));
fbf5a39b 2459
bbaba73f
EB
2460 -- If entity is an atomic object appearing in a declaration and
2461 -- the expression is an aggregate, assign it to a temporary to
2462 -- ensure that the actual assignment is done atomically rather
2463 -- than component-wise (the assignment to the temp may be done
2464 -- component-wise, but that is harmless).
fbf5a39b
AC
2465
2466 elsif Is_Atomic (E)
2467 and then Nkind (Parent (E)) = N_Object_Declaration
2468 and then Present (Expression (Parent (E)))
bbaba73f 2469 and then Nkind (Expression (Parent (E))) = N_Aggregate
b0159fbe 2470 and then
cfb120b5 2471 Is_Atomic_Aggregate (Expression (Parent (E)), Etype (E))
fbf5a39b 2472 then
b0159fbe 2473 null;
70482933
RK
2474 end if;
2475
2476 -- For a subprogram, freeze all parameter types and also the return
fbf5a39b 2477 -- type (RM 13.14(14)). However skip this for internal subprograms.
70482933 2478 -- This is also the point where any extra formal parameters are
fb2e11ee
AC
2479 -- created since we now know whether the subprogram will use a
2480 -- foreign convention.
70482933
RK
2481
2482 if Is_Subprogram (E) then
70482933 2483 if not Is_Internal (E) then
70482933 2484 declare
6d11af89 2485 F_Type : Entity_Id;
def46b54 2486 R_Type : Entity_Id;
6d11af89 2487 Warn_Node : Node_Id;
70482933 2488
70482933
RK
2489 begin
2490 -- Loop through formals
2491
2492 Formal := First_Formal (E);
70482933 2493 while Present (Formal) loop
70482933
RK
2494 F_Type := Etype (Formal);
2495 Freeze_And_Append (F_Type, Loc, Result);
2496
2497 if Is_Private_Type (F_Type)
2498 and then Is_Private_Type (Base_Type (F_Type))
2499 and then No (Full_View (Base_Type (F_Type)))
2500 and then not Is_Generic_Type (F_Type)
2501 and then not Is_Derived_Type (F_Type)
2502 then
2503 -- If the type of a formal is incomplete, subprogram
2504 -- is being frozen prematurely. Within an instance
2505 -- (but not within a wrapper package) this is an
fb2e11ee 2506 -- artifact of our need to regard the end of an
70482933
RK
2507 -- instantiation as a freeze point. Otherwise it is
2508 -- a definite error.
fbf5a39b 2509
70482933
RK
2510 if In_Instance then
2511 Set_Is_Frozen (E, False);
2512 return No_List;
2513
86cde7b1
RD
2514 elsif not After_Last_Declaration
2515 and then not Freezing_Library_Level_Tagged_Type
2516 then
70482933
RK
2517 Error_Msg_Node_1 := F_Type;
2518 Error_Msg
2519 ("type& must be fully defined before this point",
2520 Loc);
2521 end if;
2522 end if;
2523
def46b54 2524 -- Check suspicious parameter for C function. These tests
1b24ada5 2525 -- apply only to exported/imported subprograms.
70482933 2526
def46b54 2527 if Warn_On_Export_Import
1b24ada5 2528 and then Comes_From_Source (E)
def46b54
RD
2529 and then (Convention (E) = Convention_C
2530 or else
2531 Convention (E) = Convention_CPP)
def46b54 2532 and then (Is_Imported (E) or else Is_Exported (E))
1b24ada5
RD
2533 and then Convention (E) /= Convention (Formal)
2534 and then not Has_Warnings_Off (E)
2535 and then not Has_Warnings_Off (F_Type)
2536 and then not Has_Warnings_Off (Formal)
fbf5a39b 2537 then
b3afa59b
AC
2538 -- Qualify mention of formals with subprogram name
2539
70482933 2540 Error_Msg_Qual_Level := 1;
def46b54
RD
2541
2542 -- Check suspicious use of fat C pointer
2543
2544 if Is_Access_Type (F_Type)
2545 and then Esize (F_Type) > Ttypes.System_Address_Size
2546 then
2547 Error_Msg_N
b3afa59b
AC
2548 ("?type of & does not correspond to C pointer!",
2549 Formal);
def46b54
RD
2550
2551 -- Check suspicious return of boolean
2552
2553 elsif Root_Type (F_Type) = Standard_Boolean
2554 and then Convention (F_Type) = Convention_Ada
67198556
RD
2555 and then not Has_Warnings_Off (F_Type)
2556 and then not Has_Size_Clause (F_Type)
6a2afd13 2557 and then VM_Target = No_VM
def46b54
RD
2558 then
2559 Error_Msg_N
b3afa59b
AC
2560 ("& is an 8-bit Ada Boolean?", Formal);
2561 Error_Msg_N
2562 ("\use appropriate corresponding type in C "
2563 & "(e.g. char)?", Formal);
def46b54
RD
2564
2565 -- Check suspicious tagged type
2566
2567 elsif (Is_Tagged_Type (F_Type)
2568 or else (Is_Access_Type (F_Type)
2569 and then
2570 Is_Tagged_Type
2571 (Designated_Type (F_Type))))
2572 and then Convention (E) = Convention_C
2573 then
2574 Error_Msg_N
e7d72fb9 2575 ("?& involves a tagged type which does not "
def46b54
RD
2576 & "correspond to any C type!", Formal);
2577
2578 -- Check wrong convention subprogram pointer
2579
2580 elsif Ekind (F_Type) = E_Access_Subprogram_Type
2581 and then not Has_Foreign_Convention (F_Type)
2582 then
2583 Error_Msg_N
2584 ("?subprogram pointer & should "
2585 & "have foreign convention!", Formal);
2586 Error_Msg_Sloc := Sloc (F_Type);
2587 Error_Msg_NE
2588 ("\?add Convention pragma to declaration of &#",
2589 Formal, F_Type);
2590 end if;
2591
b3afa59b
AC
2592 -- Turn off name qualification after message output
2593
70482933
RK
2594 Error_Msg_Qual_Level := 0;
2595 end if;
2596
2597 -- Check for unconstrained array in exported foreign
2598 -- convention case.
2599
def46b54 2600 if Has_Foreign_Convention (E)
70482933
RK
2601 and then not Is_Imported (E)
2602 and then Is_Array_Type (F_Type)
2603 and then not Is_Constrained (F_Type)
fbf5a39b 2604 and then Warn_On_Export_Import
3acdda2d
AC
2605
2606 -- Exclude VM case, since both .NET and JVM can handle
2607 -- unconstrained arrays without a problem.
2608
2609 and then VM_Target = No_VM
70482933
RK
2610 then
2611 Error_Msg_Qual_Level := 1;
6d11af89
AC
2612
2613 -- If this is an inherited operation, place the
2614 -- warning on the derived type declaration, rather
2615 -- than on the original subprogram.
2616
2617 if Nkind (Original_Node (Parent (E))) =
2618 N_Full_Type_Declaration
2619 then
2620 Warn_Node := Parent (E);
2621
2622 if Formal = First_Formal (E) then
2623 Error_Msg_NE
add9f797 2624 ("?in inherited operation&", Warn_Node, E);
6d11af89
AC
2625 end if;
2626 else
2627 Warn_Node := Formal;
2628 end if;
2629
2630 Error_Msg_NE
70482933 2631 ("?type of argument& is unconstrained array",
6d11af89
AC
2632 Warn_Node, Formal);
2633 Error_Msg_NE
70482933 2634 ("?foreign caller must pass bounds explicitly",
6d11af89 2635 Warn_Node, Formal);
70482933
RK
2636 Error_Msg_Qual_Level := 0;
2637 end if;
2638
d8db0bca
JM
2639 if not From_With_Type (F_Type) then
2640 if Is_Access_Type (F_Type) then
2641 F_Type := Designated_Type (F_Type);
2642 end if;
2643
7d8b9c99
RD
2644 -- If the formal is an anonymous_access_to_subprogram
2645 -- freeze the subprogram type as well, to prevent
2646 -- scope anomalies in gigi, because there is no other
2647 -- clear point at which it could be frozen.
2648
93bcda23 2649 if Is_Itype (Etype (Formal))
7d8b9c99
RD
2650 and then Ekind (F_Type) = E_Subprogram_Type
2651 then
57747aec 2652 Freeze_And_Append (F_Type, Loc, Result);
d8db0bca
JM
2653 end if;
2654 end if;
2655
70482933
RK
2656 Next_Formal (Formal);
2657 end loop;
2658
5e39baa6 2659 -- Case of function: similar checks on return type
70482933
RK
2660
2661 if Ekind (E) = E_Function then
def46b54
RD
2662
2663 -- Freeze return type
2664
2665 R_Type := Etype (E);
2666 Freeze_And_Append (R_Type, Loc, Result);
2667
2668 -- Check suspicious return type for C function
70482933 2669
fbf5a39b 2670 if Warn_On_Export_Import
def46b54
RD
2671 and then (Convention (E) = Convention_C
2672 or else
2673 Convention (E) = Convention_CPP)
def46b54 2674 and then (Is_Imported (E) or else Is_Exported (E))
fbf5a39b 2675 then
def46b54
RD
2676 -- Check suspicious return of fat C pointer
2677
2678 if Is_Access_Type (R_Type)
2679 and then Esize (R_Type) > Ttypes.System_Address_Size
1b24ada5
RD
2680 and then not Has_Warnings_Off (E)
2681 and then not Has_Warnings_Off (R_Type)
def46b54
RD
2682 then
2683 Error_Msg_N
2684 ("?return type of& does not "
2685 & "correspond to C pointer!", E);
2686
2687 -- Check suspicious return of boolean
2688
2689 elsif Root_Type (R_Type) = Standard_Boolean
2690 and then Convention (R_Type) = Convention_Ada
6a2afd13 2691 and then VM_Target = No_VM
1b24ada5
RD
2692 and then not Has_Warnings_Off (E)
2693 and then not Has_Warnings_Off (R_Type)
67198556 2694 and then not Has_Size_Clause (R_Type)
def46b54 2695 then
b3afa59b
AC
2696 declare
2697 N : constant Node_Id :=
2698 Result_Definition (Declaration_Node (E));
2699 begin
2700 Error_Msg_NE
2701 ("return type of & is an 8-bit Ada Boolean?",
2702 N, E);
2703 Error_Msg_NE
2704 ("\use appropriate corresponding type in C "
2705 & "(e.g. char)?", N, E);
2706 end;
70482933 2707
def46b54
RD
2708 -- Check suspicious return tagged type
2709
2710 elsif (Is_Tagged_Type (R_Type)
2711 or else (Is_Access_Type (R_Type)
2712 and then
2713 Is_Tagged_Type
2714 (Designated_Type (R_Type))))
2715 and then Convention (E) = Convention_C
1b24ada5
RD
2716 and then not Has_Warnings_Off (E)
2717 and then not Has_Warnings_Off (R_Type)
def46b54
RD
2718 then
2719 Error_Msg_N
2720 ("?return type of & does not "
2721 & "correspond to C type!", E);
2722
2723 -- Check return of wrong convention subprogram pointer
2724
2725 elsif Ekind (R_Type) = E_Access_Subprogram_Type
2726 and then not Has_Foreign_Convention (R_Type)
1b24ada5
RD
2727 and then not Has_Warnings_Off (E)
2728 and then not Has_Warnings_Off (R_Type)
def46b54
RD
2729 then
2730 Error_Msg_N
2731 ("?& should return a foreign "
2732 & "convention subprogram pointer", E);
2733 Error_Msg_Sloc := Sloc (R_Type);
2734 Error_Msg_NE
2735 ("\?add Convention pragma to declaration of& #",
2736 E, R_Type);
2737 end if;
2738 end if;
2739
e7d72fb9
AC
2740 -- Give warning for suspicous return of a result of an
2741 -- unconstrained array type in a foreign convention
2742 -- function.
59366db6 2743
e7d72fb9
AC
2744 if Has_Foreign_Convention (E)
2745
2746 -- We are looking for a return of unconstrained array
2747
2748 and then Is_Array_Type (R_Type)
93bcda23 2749 and then not Is_Constrained (R_Type)
e7d72fb9
AC
2750
2751 -- Exclude imported routines, the warning does not
2752 -- belong on the import, but on the routine definition.
2753
70482933 2754 and then not Is_Imported (E)
e7d72fb9
AC
2755
2756 -- Exclude VM case, since both .NET and JVM can handle
2757 -- return of unconstrained arrays without a problem.
2758
f3b57ab0 2759 and then VM_Target = No_VM
e7d72fb9
AC
2760
2761 -- Check that general warning is enabled, and that it
2762 -- is not suppressed for this particular case.
2763
fbf5a39b 2764 and then Warn_On_Export_Import
1b24ada5 2765 and then not Has_Warnings_Off (E)
93bcda23 2766 and then not Has_Warnings_Off (R_Type)
70482933
RK
2767 then
2768 Error_Msg_N
fbf5a39b 2769 ("?foreign convention function& should not " &
1b24ada5 2770 "return unconstrained array!", E);
70482933
RK
2771 end if;
2772 end if;
2773 end;
2774 end if;
2775
2776 -- Must freeze its parent first if it is a derived subprogram
2777
2778 if Present (Alias (E)) then
2779 Freeze_And_Append (Alias (E), Loc, Result);
2780 end if;
2781
19590d70
GD
2782 -- We don't freeze internal subprograms, because we don't normally
2783 -- want addition of extra formals or mechanism setting to happen
2784 -- for those. However we do pass through predefined dispatching
2785 -- cases, since extra formals may be needed in some cases, such as
2786 -- for the stream 'Input function (build-in-place formals).
2787
2788 if not Is_Internal (E)
2789 or else Is_Predefined_Dispatching_Operation (E)
2790 then
70482933
RK
2791 Freeze_Subprogram (E);
2792 end if;
2793
2794 -- Here for other than a subprogram or type
2795
2796 else
2797 -- If entity has a type, and it is not a generic unit, then
7d8b9c99 2798 -- freeze it first (RM 13.14(10)).
70482933 2799
ac72c9c5 2800 if Present (Etype (E))
70482933
RK
2801 and then Ekind (E) /= E_Generic_Function
2802 then
2803 Freeze_And_Append (Etype (E), Loc, Result);
2804 end if;
2805
2c9beb8a 2806 -- Special processing for objects created by object declaration
70482933
RK
2807
2808 if Nkind (Declaration_Node (E)) = N_Object_Declaration then
2c9beb8a 2809
6823270c
AC
2810 -- Abstract type allowed only for C++ imported variables or
2811 -- constants.
2812
2813 -- Note: we inhibit this check for objects that do not come
2814 -- from source because there is at least one case (the
2815 -- expansion of x'class'input where x is abstract) where we
2816 -- legitimately generate an abstract object.
2817
2818 if Is_Abstract_Type (Etype (E))
2819 and then Comes_From_Source (Parent (E))
2820 and then not (Is_Imported (E)
2821 and then Is_CPP_Class (Etype (E)))
2822 then
2823 Error_Msg_N ("type of object cannot be abstract",
2824 Object_Definition (Parent (E)));
2825
2826 if Is_CPP_Class (Etype (E)) then
2827 Error_Msg_NE ("\} may need a cpp_constructor",
2828 Object_Definition (Parent (E)), Etype (E));
2829 end if;
2830 end if;
2831
2c9beb8a
RD
2832 -- For object created by object declaration, perform required
2833 -- categorization (preelaborate and pure) checks. Defer these
2834 -- checks to freeze time since pragma Import inhibits default
2835 -- initialization and thus pragma Import affects these checks.
2836
70482933 2837 Validate_Object_Declaration (Declaration_Node (E));
2c9beb8a 2838
1ce1f005 2839 -- If there is an address clause, check that it is valid
2c9beb8a 2840
fbf5a39b 2841 Check_Address_Clause (E);
2c9beb8a 2842
1ce1f005
GD
2843 -- If the object needs any kind of default initialization, an
2844 -- error must be issued if No_Default_Initialization applies.
2845 -- The check doesn't apply to imported objects, which are not
2846 -- ever default initialized, and is why the check is deferred
2847 -- until freezing, at which point we know if Import applies.
4fec4e7a
ES
2848 -- Deferred constants are also exempted from this test because
2849 -- their completion is explicit, or through an import pragma.
1ce1f005 2850
4fec4e7a
ES
2851 if Ekind (E) = E_Constant
2852 and then Present (Full_View (E))
2853 then
2854 null;
2855
2856 elsif Comes_From_Source (E)
b6e209b5 2857 and then not Is_Imported (E)
1ce1f005
GD
2858 and then not Has_Init_Expression (Declaration_Node (E))
2859 and then
2860 ((Has_Non_Null_Base_Init_Proc (Etype (E))
2861 and then not No_Initialization (Declaration_Node (E))
2862 and then not Is_Value_Type (Etype (E))
2863 and then not Suppress_Init_Proc (Etype (E)))
2864 or else
2865 (Needs_Simple_Initialization (Etype (E))
2866 and then not Is_Internal (E)))
2867 then
4c8a5bb8 2868 Has_Default_Initialization := True;
1ce1f005
GD
2869 Check_Restriction
2870 (No_Default_Initialization, Declaration_Node (E));
2871 end if;
2872
4c8a5bb8
AC
2873 -- Check that a Thread_Local_Storage variable does not have
2874 -- default initialization, and any explicit initialization must
2875 -- either be the null constant or a static constant.
2876
2877 if Has_Pragma_Thread_Local_Storage (E) then
2878 declare
2879 Decl : constant Node_Id := Declaration_Node (E);
2880 begin
2881 if Has_Default_Initialization
2882 or else
2883 (Has_Init_Expression (Decl)
2884 and then
2885 (No (Expression (Decl))
2886 or else not
2887 (Is_Static_Expression (Expression (Decl))
2888 or else
2889 Nkind (Expression (Decl)) = N_Null)))
2890 then
2891 Error_Msg_NE
2892 ("Thread_Local_Storage variable& is "
2893 & "improperly initialized", Decl, E);
2894 Error_Msg_NE
2895 ("\only allowed initialization is explicit "
2896 & "NULL or static expression", Decl, E);
2897 end if;
2898 end;
2899 end if;
2900
def46b54
RD
2901 -- For imported objects, set Is_Public unless there is also an
2902 -- address clause, which means that there is no external symbol
2903 -- needed for the Import (Is_Public may still be set for other
2904 -- unrelated reasons). Note that we delayed this processing
2905 -- till freeze time so that we can be sure not to set the flag
2906 -- if there is an address clause. If there is such a clause,
2907 -- then the only purpose of the Import pragma is to suppress
2908 -- implicit initialization.
2c9beb8a
RD
2909
2910 if Is_Imported (E)
add9f797 2911 and then No (Address_Clause (E))
2c9beb8a
RD
2912 then
2913 Set_Is_Public (E);
2914 end if;
7d8b9c99
RD
2915
2916 -- For convention C objects of an enumeration type, warn if
2917 -- the size is not integer size and no explicit size given.
2918 -- Skip warning for Boolean, and Character, assume programmer
2919 -- expects 8-bit sizes for these cases.
2920
2921 if (Convention (E) = Convention_C
2922 or else
2923 Convention (E) = Convention_CPP)
2924 and then Is_Enumeration_Type (Etype (E))
2925 and then not Is_Character_Type (Etype (E))
2926 and then not Is_Boolean_Type (Etype (E))
2927 and then Esize (Etype (E)) < Standard_Integer_Size
2928 and then not Has_Size_Clause (E)
2929 then
2930 Error_Msg_Uint_1 := UI_From_Int (Standard_Integer_Size);
2931 Error_Msg_N
2932 ("?convention C enumeration object has size less than ^",
2933 E);
2934 Error_Msg_N ("\?use explicit size clause to set size", E);
2935 end if;
70482933
RK
2936 end if;
2937
2938 -- Check that a constant which has a pragma Volatile[_Components]
7d8b9c99 2939 -- or Atomic[_Components] also has a pragma Import (RM C.6(13)).
70482933
RK
2940
2941 -- Note: Atomic[_Components] also sets Volatile[_Components]
2942
2943 if Ekind (E) = E_Constant
2944 and then (Has_Volatile_Components (E) or else Is_Volatile (E))
2945 and then not Is_Imported (E)
2946 then
2947 -- Make sure we actually have a pragma, and have not merely
2948 -- inherited the indication from elsewhere (e.g. an address
2949 -- clause, which is not good enough in RM terms!)
2950
1d571f3b 2951 if Has_Rep_Pragma (E, Name_Atomic)
91b1417d 2952 or else
1d571f3b 2953 Has_Rep_Pragma (E, Name_Atomic_Components)
70482933
RK
2954 then
2955 Error_Msg_N
91b1417d 2956 ("stand alone atomic constant must be " &
def46b54 2957 "imported (RM C.6(13))", E);
91b1417d 2958
1d571f3b 2959 elsif Has_Rep_Pragma (E, Name_Volatile)
91b1417d 2960 or else
1d571f3b 2961 Has_Rep_Pragma (E, Name_Volatile_Components)
91b1417d
AC
2962 then
2963 Error_Msg_N
2964 ("stand alone volatile constant must be " &
86cde7b1 2965 "imported (RM C.6(13))", E);
70482933
RK
2966 end if;
2967 end if;
2968
2969 -- Static objects require special handling
2970
2971 if (Ekind (E) = E_Constant or else Ekind (E) = E_Variable)
2972 and then Is_Statically_Allocated (E)
2973 then
2974 Freeze_Static_Object (E);
2975 end if;
2976
2977 -- Remaining step is to layout objects
2978
2979 if Ekind (E) = E_Variable
2980 or else
2981 Ekind (E) = E_Constant
2982 or else
2983 Ekind (E) = E_Loop_Parameter
2984 or else
2985 Is_Formal (E)
2986 then
2987 Layout_Object (E);
2988 end if;
2989 end if;
2990
2991 -- Case of a type or subtype being frozen
2992
2993 else
31b5873d
GD
2994 -- We used to check here that a full type must have preelaborable
2995 -- initialization if it completes a private type specified with
2996 -- pragma Preelaborable_Intialization, but that missed cases where
2997 -- the types occur within a generic package, since the freezing
2998 -- that occurs within a containing scope generally skips traversal
2999 -- of a generic unit's declarations (those will be frozen within
3000 -- instances). This check was moved to Analyze_Package_Specification.
3f1ede06 3001
70482933
RK
3002 -- The type may be defined in a generic unit. This can occur when
3003 -- freezing a generic function that returns the type (which is
3004 -- defined in a parent unit). It is clearly meaningless to freeze
3005 -- this type. However, if it is a subtype, its size may be determi-
3006 -- nable and used in subsequent checks, so might as well try to
3007 -- compute it.
3008
3009 if Present (Scope (E))
3010 and then Is_Generic_Unit (Scope (E))
3011 then
3012 Check_Compile_Time_Size (E);
3013 return No_List;
3014 end if;
3015
3016 -- Deal with special cases of freezing for subtype
3017
3018 if E /= Base_Type (E) then
3019
86cde7b1
RD
3020 -- Before we do anything else, a specialized test for the case of
3021 -- a size given for an array where the array needs to be packed,
3022 -- but was not so the size cannot be honored. This would of course
3023 -- be caught by the backend, and indeed we don't catch all cases.
3024 -- The point is that we can give a better error message in those
3025 -- cases that we do catch with the circuitry here. Also if pragma
3026 -- Implicit_Packing is set, this is where the packing occurs.
3027
3028 -- The reason we do this so early is that the processing in the
3029 -- automatic packing case affects the layout of the base type, so
3030 -- it must be done before we freeze the base type.
3031
3032 if Is_Array_Type (E) then
3033 declare
3034 Lo, Hi : Node_Id;
3035 Ctyp : constant Entity_Id := Component_Type (E);
3036
3037 begin
3038 -- Check enabling conditions. These are straightforward
3039 -- except for the test for a limited composite type. This
3040 -- eliminates the rare case of a array of limited components
3041 -- where there are issues of whether or not we can go ahead
3042 -- and pack the array (since we can't freely pack and unpack
3043 -- arrays if they are limited).
3044
3045 -- Note that we check the root type explicitly because the
3046 -- whole point is we are doing this test before we have had
3047 -- a chance to freeze the base type (and it is that freeze
3048 -- action that causes stuff to be inherited).
3049
3050 if Present (Size_Clause (E))
3051 and then Known_Static_Esize (E)
3052 and then not Is_Packed (E)
3053 and then not Has_Pragma_Pack (E)
3054 and then Number_Dimensions (E) = 1
3055 and then not Has_Component_Size_Clause (E)
3056 and then Known_Static_Esize (Ctyp)
3057 and then not Is_Limited_Composite (E)
3058 and then not Is_Packed (Root_Type (E))
3059 and then not Has_Component_Size_Clause (Root_Type (E))
d58b9515 3060 and then not CodePeer_Mode
86cde7b1
RD
3061 then
3062 Get_Index_Bounds (First_Index (E), Lo, Hi);
3063
3064 if Compile_Time_Known_Value (Lo)
3065 and then Compile_Time_Known_Value (Hi)
3066 and then Known_Static_RM_Size (Ctyp)
3067 and then RM_Size (Ctyp) < 64
3068 then
3069 declare
3070 Lov : constant Uint := Expr_Value (Lo);
3071 Hiv : constant Uint := Expr_Value (Hi);
3072 Len : constant Uint := UI_Max
3073 (Uint_0,
3074 Hiv - Lov + 1);
3075 Rsiz : constant Uint := RM_Size (Ctyp);
3076 SZ : constant Node_Id := Size_Clause (E);
3077 Btyp : constant Entity_Id := Base_Type (E);
3078
3079 -- What we are looking for here is the situation where
3080 -- the RM_Size given would be exactly right if there
3081 -- was a pragma Pack (resulting in the component size
3082 -- being the same as the RM_Size). Furthermore, the
3083 -- component type size must be an odd size (not a
5a989c6b
AC
3084 -- multiple of storage unit). If the component RM size
3085 -- is an exact number of storage units that is a power
3086 -- of two, the array is not packed and has a standard
3087 -- representation.
86cde7b1
RD
3088
3089 begin
3090 if RM_Size (E) = Len * Rsiz
3091 and then Rsiz mod System_Storage_Unit /= 0
3092 then
3093 -- For implicit packing mode, just set the
fd366a46 3094 -- component size silently.
86cde7b1
RD
3095
3096 if Implicit_Packing then
3097 Set_Component_Size (Btyp, Rsiz);
3098 Set_Is_Bit_Packed_Array (Btyp);
3099 Set_Is_Packed (Btyp);
3100 Set_Has_Non_Standard_Rep (Btyp);
3101
3102 -- Otherwise give an error message
3103
3104 else
3105 Error_Msg_NE
3106 ("size given for& too small", SZ, E);
3107 Error_Msg_N
3108 ("\use explicit pragma Pack "
3109 & "or use pragma Implicit_Packing", SZ);
3110 end if;
5a989c6b
AC
3111
3112 elsif RM_Size (E) = Len * Rsiz
3113 and then Implicit_Packing
3114 and then
3115 (Rsiz / System_Storage_Unit = 1
3116 or else Rsiz / System_Storage_Unit = 2
3117 or else Rsiz / System_Storage_Unit = 4)
3118 then
3119
3120 -- Not a packed array, but indicate the desired
3121 -- component size, for the back-end.
3122
3123 Set_Component_Size (Btyp, Rsiz);
86cde7b1
RD
3124 end if;
3125 end;
3126 end if;
3127 end if;
3128 end;
3129 end if;
3130
def46b54
RD
3131 -- If ancestor subtype present, freeze that first. Note that this
3132 -- will also get the base type frozen.
70482933
RK
3133
3134 Atype := Ancestor_Subtype (E);
3135
3136 if Present (Atype) then
3137 Freeze_And_Append (Atype, Loc, Result);
3138
def46b54
RD
3139 -- Otherwise freeze the base type of the entity before freezing
3140 -- the entity itself (RM 13.14(15)).
70482933
RK
3141
3142 elsif E /= Base_Type (E) then
3143 Freeze_And_Append (Base_Type (E), Loc, Result);
3144 end if;
3145
fbf5a39b 3146 -- For a derived type, freeze its parent type first (RM 13.14(15))
70482933
RK
3147
3148 elsif Is_Derived_Type (E) then
3149 Freeze_And_Append (Etype (E), Loc, Result);
3150 Freeze_And_Append (First_Subtype (Etype (E)), Loc, Result);
3151 end if;
3152
3153 -- For array type, freeze index types and component type first
fbf5a39b 3154 -- before freezing the array (RM 13.14(15)).
70482933
RK
3155
3156 if Is_Array_Type (E) then
3157 declare
fbf5a39b 3158 Ctyp : constant Entity_Id := Component_Type (E);
70482933
RK
3159
3160 Non_Standard_Enum : Boolean := False;
7d8b9c99
RD
3161 -- Set true if any of the index types is an enumeration type
3162 -- with a non-standard representation.
70482933
RK
3163
3164 begin
3165 Freeze_And_Append (Ctyp, Loc, Result);
3166
3167 Indx := First_Index (E);
3168 while Present (Indx) loop
3169 Freeze_And_Append (Etype (Indx), Loc, Result);
3170
3171 if Is_Enumeration_Type (Etype (Indx))
3172 and then Has_Non_Standard_Rep (Etype (Indx))
3173 then
3174 Non_Standard_Enum := True;
3175 end if;
3176
3177 Next_Index (Indx);
3178 end loop;
3179
07fc65c4 3180 -- Processing that is done only for base types
70482933
RK
3181
3182 if Ekind (E) = E_Array_Type then
07fc65c4
GB
3183
3184 -- Propagate flags for component type
3185
70482933
RK
3186 if Is_Controlled (Component_Type (E))
3187 or else Has_Controlled_Component (Ctyp)
3188 then
3189 Set_Has_Controlled_Component (E);
3190 end if;
3191
3192 if Has_Unchecked_Union (Component_Type (E)) then
3193 Set_Has_Unchecked_Union (E);
3194 end if;
70482933 3195
07fc65c4
GB
3196 -- If packing was requested or if the component size was set
3197 -- explicitly, then see if bit packing is required. This
3198 -- processing is only done for base types, since all the
3199 -- representation aspects involved are type-related. This
3200 -- is not just an optimization, if we start processing the
e14c931f 3201 -- subtypes, they interfere with the settings on the base
07fc65c4
GB
3202 -- type (this is because Is_Packed has a slightly different
3203 -- meaning before and after freezing).
70482933 3204
70482933
RK
3205 declare
3206 Csiz : Uint;
3207 Esiz : Uint;
3208
3209 begin
3210 if (Is_Packed (E) or else Has_Pragma_Pack (E))
3211 and then not Has_Atomic_Components (E)
3212 and then Known_Static_RM_Size (Ctyp)
3213 then
3214 Csiz := UI_Max (RM_Size (Ctyp), 1);
3215
3216 elsif Known_Component_Size (E) then
3217 Csiz := Component_Size (E);
3218
3219 elsif not Known_Static_Esize (Ctyp) then
3220 Csiz := Uint_0;
3221
3222 else
3223 Esiz := Esize (Ctyp);
3224
3225 -- We can set the component size if it is less than
3226 -- 16, rounding it up to the next storage unit size.
3227
3228 if Esiz <= 8 then
3229 Csiz := Uint_8;
3230 elsif Esiz <= 16 then
3231 Csiz := Uint_16;
3232 else
3233 Csiz := Uint_0;
3234 end if;
3235
7d8b9c99
RD
3236 -- Set component size up to match alignment if it
3237 -- would otherwise be less than the alignment. This
3238 -- deals with cases of types whose alignment exceeds
3239 -- their size (padded types).
70482933
RK
3240
3241 if Csiz /= 0 then
3242 declare
3243 A : constant Uint := Alignment_In_Bits (Ctyp);
70482933
RK
3244 begin
3245 if Csiz < A then
3246 Csiz := A;
3247 end if;
3248 end;
3249 end if;
70482933
RK
3250 end if;
3251
86cde7b1
RD
3252 -- Case of component size that may result in packing
3253
70482933 3254 if 1 <= Csiz and then Csiz <= 64 then
86cde7b1
RD
3255 declare
3256 Ent : constant Entity_Id :=
3257 First_Subtype (E);
3258 Pack_Pragma : constant Node_Id :=
3259 Get_Rep_Pragma (Ent, Name_Pack);
3260 Comp_Size_C : constant Node_Id :=
3261 Get_Attribute_Definition_Clause
3262 (Ent, Attribute_Component_Size);
3263 begin
3264 -- Warn if we have pack and component size so that
3265 -- the pack is ignored.
70482933 3266
86cde7b1
RD
3267 -- Note: here we must check for the presence of a
3268 -- component size before checking for a Pack pragma
3269 -- to deal with the case where the array type is a
3270 -- derived type whose parent is currently private.
3271
3272 if Present (Comp_Size_C)
3273 and then Has_Pragma_Pack (Ent)
3274 then
3275 Error_Msg_Sloc := Sloc (Comp_Size_C);
3276 Error_Msg_NE
3277 ("?pragma Pack for& ignored!",
3278 Pack_Pragma, Ent);
3279 Error_Msg_N
3280 ("\?explicit component size given#!",
3281 Pack_Pragma);
3282 end if;
70482933 3283
86cde7b1
RD
3284 -- Set component size if not already set by a
3285 -- component size clause.
70482933 3286
86cde7b1
RD
3287 if not Present (Comp_Size_C) then
3288 Set_Component_Size (E, Csiz);
3289 end if;
fbf5a39b 3290
86cde7b1
RD
3291 -- Check for base type of 8, 16, 32 bits, where an
3292 -- unsigned subtype has a length one less than the
3293 -- base type (e.g. Natural subtype of Integer).
fbf5a39b 3294
86cde7b1
RD
3295 -- In such cases, if a component size was not set
3296 -- explicitly, then generate a warning.
fbf5a39b 3297
86cde7b1
RD
3298 if Has_Pragma_Pack (E)
3299 and then not Present (Comp_Size_C)
3300 and then
3301 (Csiz = 7 or else Csiz = 15 or else Csiz = 31)
3302 and then Esize (Base_Type (Ctyp)) = Csiz + 1
3303 then
3304 Error_Msg_Uint_1 := Csiz;
3305
3306 if Present (Pack_Pragma) then
3307 Error_Msg_N
3308 ("?pragma Pack causes component size "
3309 & "to be ^!", Pack_Pragma);
3310 Error_Msg_N
3311 ("\?use Component_Size to set "
3312 & "desired value!", Pack_Pragma);
3313 end if;
fbf5a39b 3314 end if;
fbf5a39b 3315
86cde7b1
RD
3316 -- Actual packing is not needed for 8, 16, 32, 64.
3317 -- Also not needed for 24 if alignment is 1.
70482933 3318
86cde7b1
RD
3319 if Csiz = 8
3320 or else Csiz = 16
3321 or else Csiz = 32
3322 or else Csiz = 64
3323 or else (Csiz = 24 and then Alignment (Ctyp) = 1)
3324 then
3325 -- Here the array was requested to be packed,
3326 -- but the packing request had no effect, so
3327 -- Is_Packed is reset.
70482933 3328
86cde7b1
RD
3329 -- Note: semantically this means that we lose
3330 -- track of the fact that a derived type
3331 -- inherited a pragma Pack that was non-
3332 -- effective, but that seems fine.
70482933 3333
86cde7b1
RD
3334 -- We regard a Pack pragma as a request to set
3335 -- a representation characteristic, and this
3336 -- request may be ignored.
70482933 3337
86cde7b1 3338 Set_Is_Packed (Base_Type (E), False);
70482933 3339
86cde7b1 3340 -- In all other cases, packing is indeed needed
70482933 3341
86cde7b1
RD
3342 else
3343 Set_Has_Non_Standard_Rep (Base_Type (E));
3344 Set_Is_Bit_Packed_Array (Base_Type (E));
3345 Set_Is_Packed (Base_Type (E));
3346 end if;
3347 end;
70482933
RK
3348 end if;
3349 end;
07fc65c4
GB
3350
3351 -- Processing that is done only for subtypes
3352
3353 else
3354 -- Acquire alignment from base type
3355
3356 if Unknown_Alignment (E) then
3357 Set_Alignment (E, Alignment (Base_Type (E)));
7d8b9c99 3358 Adjust_Esize_Alignment (E);
07fc65c4
GB
3359 end if;
3360 end if;
3361
d05ef0ab
AC
3362 -- For bit-packed arrays, check the size
3363
75a64833 3364 if Is_Bit_Packed_Array (E) and then Known_RM_Size (E) then
d05ef0ab 3365 declare
67ce0d7e
RD
3366 SizC : constant Node_Id := Size_Clause (E);
3367
d05ef0ab 3368 Discard : Boolean;
67ce0d7e 3369 pragma Warnings (Off, Discard);
d05ef0ab
AC
3370
3371 begin
3372 -- It is not clear if it is possible to have no size
7d8b9c99
RD
3373 -- clause at this stage, but it is not worth worrying
3374 -- about. Post error on the entity name in the size
d05ef0ab
AC
3375 -- clause if present, else on the type entity itself.
3376
3377 if Present (SizC) then
7d8b9c99 3378 Check_Size (Name (SizC), E, RM_Size (E), Discard);
d05ef0ab 3379 else
7d8b9c99 3380 Check_Size (E, E, RM_Size (E), Discard);
d05ef0ab
AC
3381 end if;
3382 end;
3383 end if;
3384
70482933
RK
3385 -- If any of the index types was an enumeration type with
3386 -- a non-standard rep clause, then we indicate that the
3387 -- array type is always packed (even if it is not bit packed).
3388
3389 if Non_Standard_Enum then
3390 Set_Has_Non_Standard_Rep (Base_Type (E));
3391 Set_Is_Packed (Base_Type (E));
3392 end if;
70482933 3393
0da2c8ac 3394 Set_Component_Alignment_If_Not_Set (E);
70482933 3395
0da2c8ac
AC
3396 -- If the array is packed, we must create the packed array
3397 -- type to be used to actually implement the type. This is
3398 -- only needed for real array types (not for string literal
3399 -- types, since they are present only for the front end).
70482933 3400
0da2c8ac
AC
3401 if Is_Packed (E)
3402 and then Ekind (E) /= E_String_Literal_Subtype
3403 then
3404 Create_Packed_Array_Type (E);
3405 Freeze_And_Append (Packed_Array_Type (E), Loc, Result);
70482933 3406
0da2c8ac 3407 -- Size information of packed array type is copied to the
fea9e956 3408 -- array type, since this is really the representation. But
def46b54
RD
3409 -- do not override explicit existing size values. If the
3410 -- ancestor subtype is constrained the packed_array_type
3411 -- will be inherited from it, but the size may have been
3412 -- provided already, and must not be overridden either.
fea9e956 3413
def46b54
RD
3414 if not Has_Size_Clause (E)
3415 and then
3416 (No (Ancestor_Subtype (E))
3417 or else not Has_Size_Clause (Ancestor_Subtype (E)))
3418 then
fea9e956
ES
3419 Set_Esize (E, Esize (Packed_Array_Type (E)));
3420 Set_RM_Size (E, RM_Size (Packed_Array_Type (E)));
3421 end if;
70482933 3422
fea9e956
ES
3423 if not Has_Alignment_Clause (E) then
3424 Set_Alignment (E, Alignment (Packed_Array_Type (E)));
3425 end if;
0da2c8ac
AC
3426 end if;
3427
def46b54
RD
3428 -- For non-packed arrays set the alignment of the array to the
3429 -- alignment of the component type if it is unknown. Skip this
3430 -- in atomic case (atomic arrays may need larger alignments).
0da2c8ac
AC
3431
3432 if not Is_Packed (E)
3433 and then Unknown_Alignment (E)
3434 and then Known_Alignment (Ctyp)
3435 and then Known_Static_Component_Size (E)
3436 and then Known_Static_Esize (Ctyp)
3437 and then Esize (Ctyp) = Component_Size (E)
3438 and then not Is_Atomic (E)
3439 then
3440 Set_Alignment (E, Alignment (Component_Type (E)));
3441 end if;
3442 end;
70482933 3443
fbf5a39b
AC
3444 -- For a class-wide type, the corresponding specific type is
3445 -- frozen as well (RM 13.14(15))
70482933
RK
3446
3447 elsif Is_Class_Wide_Type (E) then
3448 Freeze_And_Append (Root_Type (E), Loc, Result);
3449
86cde7b1
RD
3450 -- If the base type of the class-wide type is still incomplete,
3451 -- the class-wide remains unfrozen as well. This is legal when
3452 -- E is the formal of a primitive operation of some other type
3453 -- which is being frozen.
3454
3455 if not Is_Frozen (Root_Type (E)) then
3456 Set_Is_Frozen (E, False);
3457 return Result;
3458 end if;
3459
70482933
RK
3460 -- If the Class_Wide_Type is an Itype (when type is the anonymous
3461 -- parent of a derived type) and it is a library-level entity,
3462 -- generate an itype reference for it. Otherwise, its first
3463 -- explicit reference may be in an inner scope, which will be
3464 -- rejected by the back-end.
3465
3466 if Is_Itype (E)
3467 and then Is_Compilation_Unit (Scope (E))
3468 then
70482933 3469 declare
fbf5a39b 3470 Ref : constant Node_Id := Make_Itype_Reference (Loc);
70482933
RK
3471
3472 begin
3473 Set_Itype (Ref, E);
3474 if No (Result) then
3475 Result := New_List (Ref);
3476 else
3477 Append (Ref, Result);
3478 end if;
3479 end;
3480 end if;
3481
def46b54 3482 -- The equivalent type associated with a class-wide subtype needs
cbae498b 3483 -- to be frozen to ensure that its layout is done.
fbf5a39b
AC
3484
3485 if Ekind (E) = E_Class_Wide_Subtype
3486 and then Present (Equivalent_Type (E))
3487 then
3488 Freeze_And_Append (Equivalent_Type (E), Loc, Result);
3489 end if;
3490
3491 -- For a record (sub)type, freeze all the component types (RM
def46b54
RD
3492 -- 13.14(15). We test for E_Record_(sub)Type here, rather than using
3493 -- Is_Record_Type, because we don't want to attempt the freeze for
3494 -- the case of a private type with record extension (we will do that
3495 -- later when the full type is frozen).
70482933
RK
3496
3497 elsif Ekind (E) = E_Record_Type
fd366a46 3498 or else Ekind (E) = E_Record_Subtype
70482933
RK
3499 then
3500 Freeze_Record_Type (E);
3501
3502 -- For a concurrent type, freeze corresponding record type. This
e14c931f 3503 -- does not correspond to any specific rule in the RM, but the
70482933
RK
3504 -- record type is essentially part of the concurrent type.
3505 -- Freeze as well all local entities. This includes record types
3506 -- created for entry parameter blocks, and whatever local entities
3507 -- may appear in the private part.
3508
3509 elsif Is_Concurrent_Type (E) then
3510 if Present (Corresponding_Record_Type (E)) then
3511 Freeze_And_Append
3512 (Corresponding_Record_Type (E), Loc, Result);
3513 end if;
3514
3515 Comp := First_Entity (E);
70482933
RK
3516 while Present (Comp) loop
3517 if Is_Type (Comp) then
3518 Freeze_And_Append (Comp, Loc, Result);
3519
3520 elsif (Ekind (Comp)) /= E_Function then
c6823a20
EB
3521 if Is_Itype (Etype (Comp))
3522 and then Underlying_Type (Scope (Etype (Comp))) = E
3523 then
3524 Undelay_Type (Etype (Comp));
3525 end if;
3526
70482933
RK
3527 Freeze_And_Append (Etype (Comp), Loc, Result);
3528 end if;
3529
3530 Next_Entity (Comp);
3531 end loop;
3532
ee094616
RD
3533 -- Private types are required to point to the same freeze node as
3534 -- their corresponding full views. The freeze node itself has to
3535 -- point to the partial view of the entity (because from the partial
3536 -- view, we can retrieve the full view, but not the reverse).
3537 -- However, in order to freeze correctly, we need to freeze the full
3538 -- view. If we are freezing at the end of a scope (or within the
3539 -- scope of the private type), the partial and full views will have
3540 -- been swapped, the full view appears first in the entity chain and
3541 -- the swapping mechanism ensures that the pointers are properly set
3542 -- (on scope exit).
3543
3544 -- If we encounter the partial view before the full view (e.g. when
3545 -- freezing from another scope), we freeze the full view, and then
3546 -- set the pointers appropriately since we cannot rely on swapping to
3547 -- fix things up (subtypes in an outer scope might not get swapped).
70482933
RK
3548
3549 elsif Is_Incomplete_Or_Private_Type (E)
3550 and then not Is_Generic_Type (E)
3551 then
86cde7b1
RD
3552 -- The construction of the dispatch table associated with library
3553 -- level tagged types forces freezing of all the primitives of the
3554 -- type, which may cause premature freezing of the partial view.
3555 -- For example:
3556
3557 -- package Pkg is
3558 -- type T is tagged private;
3559 -- type DT is new T with private;
3560 -- procedure Prim (X : in out T; Y : in out DT'class);
3561 -- private
3562 -- type T is tagged null record;
3563 -- Obj : T;
3564 -- type DT is new T with null record;
3565 -- end;
3566
3567 -- In this case the type will be frozen later by the usual
3568 -- mechanism: an object declaration, an instantiation, or the
3569 -- end of a declarative part.
3570
3571 if Is_Library_Level_Tagged_Type (E)
3572 and then not Present (Full_View (E))
3573 then
3574 Set_Is_Frozen (E, False);
3575 return Result;
3576
70482933
RK
3577 -- Case of full view present
3578
86cde7b1 3579 elsif Present (Full_View (E)) then
70482933 3580
ee094616
RD
3581 -- If full view has already been frozen, then no further
3582 -- processing is required
70482933
RK
3583
3584 if Is_Frozen (Full_View (E)) then
3585
3586 Set_Has_Delayed_Freeze (E, False);
3587 Set_Freeze_Node (E, Empty);
3588 Check_Debug_Info_Needed (E);
3589
ee094616
RD
3590 -- Otherwise freeze full view and patch the pointers so that
3591 -- the freeze node will elaborate both views in the back-end.
70482933
RK
3592
3593 else
fbf5a39b
AC
3594 declare
3595 Full : constant Entity_Id := Full_View (E);
70482933 3596
fbf5a39b
AC
3597 begin
3598 if Is_Private_Type (Full)
3599 and then Present (Underlying_Full_View (Full))
3600 then
3601 Freeze_And_Append
3602 (Underlying_Full_View (Full), Loc, Result);
3603 end if;
70482933 3604
fbf5a39b 3605 Freeze_And_Append (Full, Loc, Result);
70482933 3606
fbf5a39b
AC
3607 if Has_Delayed_Freeze (E) then
3608 F_Node := Freeze_Node (Full);
70482933 3609
fbf5a39b
AC
3610 if Present (F_Node) then
3611 Set_Freeze_Node (E, F_Node);
3612 Set_Entity (F_Node, E);
3613
3614 else
def46b54
RD
3615 -- {Incomplete,Private}_Subtypes with Full_Views
3616 -- constrained by discriminants.
fbf5a39b
AC
3617
3618 Set_Has_Delayed_Freeze (E, False);
3619 Set_Freeze_Node (E, Empty);
3620 end if;
70482933 3621 end if;
fbf5a39b 3622 end;
70482933
RK
3623
3624 Check_Debug_Info_Needed (E);
3625 end if;
3626
ee094616
RD
3627 -- AI-117 requires that the convention of a partial view be the
3628 -- same as the convention of the full view. Note that this is a
3629 -- recognized breach of privacy, but it's essential for logical
3630 -- consistency of representation, and the lack of a rule in
3631 -- RM95 was an oversight.
70482933
RK
3632
3633 Set_Convention (E, Convention (Full_View (E)));
3634
3635 Set_Size_Known_At_Compile_Time (E,
3636 Size_Known_At_Compile_Time (Full_View (E)));
3637
3638 -- Size information is copied from the full view to the
def46b54 3639 -- incomplete or private view for consistency.
70482933 3640
ee094616
RD
3641 -- We skip this is the full view is not a type. This is very
3642 -- strange of course, and can only happen as a result of
3643 -- certain illegalities, such as a premature attempt to derive
3644 -- from an incomplete type.
70482933
RK
3645
3646 if Is_Type (Full_View (E)) then
3647 Set_Size_Info (E, Full_View (E));
3648 Set_RM_Size (E, RM_Size (Full_View (E)));
3649 end if;
3650
3651 return Result;
3652
3653 -- Case of no full view present. If entity is derived or subtype,
3654 -- it is safe to freeze, correctness depends on the frozen status
3655 -- of parent. Otherwise it is either premature usage, or a Taft
3656 -- amendment type, so diagnosis is at the point of use and the
3657 -- type might be frozen later.
3658
3659 elsif E /= Base_Type (E)
3660 or else Is_Derived_Type (E)
3661 then
3662 null;
3663
3664 else
3665 Set_Is_Frozen (E, False);
3666 return No_List;
3667 end if;
3668
3669 -- For access subprogram, freeze types of all formals, the return
3670 -- type was already frozen, since it is the Etype of the function.
8aec446b 3671 -- Formal types can be tagged Taft amendment types, but otherwise
205c14b0 3672 -- they cannot be incomplete.
70482933
RK
3673
3674 elsif Ekind (E) = E_Subprogram_Type then
3675 Formal := First_Formal (E);
8aec446b 3676
70482933 3677 while Present (Formal) loop
8aec446b
AC
3678 if Ekind (Etype (Formal)) = E_Incomplete_Type
3679 and then No (Full_View (Etype (Formal)))
3680 and then not Is_Value_Type (Etype (Formal))
3681 then
3682 if Is_Tagged_Type (Etype (Formal)) then
3683 null;
3684 else
3685 Error_Msg_NE
3686 ("invalid use of incomplete type&", E, Etype (Formal));
3687 end if;
3688 end if;
3689
70482933
RK
3690 Freeze_And_Append (Etype (Formal), Loc, Result);
3691 Next_Formal (Formal);
3692 end loop;
3693
70482933
RK
3694 Freeze_Subprogram (E);
3695
ee094616
RD
3696 -- For access to a protected subprogram, freeze the equivalent type
3697 -- (however this is not set if we are not generating code or if this
3698 -- is an anonymous type used just for resolution).
70482933 3699
fea9e956 3700 elsif Is_Access_Protected_Subprogram_Type (E) then
57747aec 3701 if Present (Equivalent_Type (E)) then
d8db0bca
JM
3702 Freeze_And_Append (Equivalent_Type (E), Loc, Result);
3703 end if;
70482933
RK
3704 end if;
3705
3706 -- Generic types are never seen by the back-end, and are also not
3707 -- processed by the expander (since the expander is turned off for
3708 -- generic processing), so we never need freeze nodes for them.
3709
3710 if Is_Generic_Type (E) then
3711 return Result;
3712 end if;
3713
3714 -- Some special processing for non-generic types to complete
3715 -- representation details not known till the freeze point.
3716
3717 if Is_Fixed_Point_Type (E) then
3718 Freeze_Fixed_Point_Type (E);
3719
ee094616
RD
3720 -- Some error checks required for ordinary fixed-point type. Defer
3721 -- these till the freeze-point since we need the small and range
3722 -- values. We only do these checks for base types
fbf5a39b
AC
3723
3724 if Is_Ordinary_Fixed_Point_Type (E)
3725 and then E = Base_Type (E)
3726 then
3727 if Small_Value (E) < Ureal_2_M_80 then
3728 Error_Msg_Name_1 := Name_Small;
3729 Error_Msg_N
7d8b9c99 3730 ("`&''%` too small, minimum allowed is 2.0'*'*(-80)", E);
fbf5a39b
AC
3731
3732 elsif Small_Value (E) > Ureal_2_80 then
3733 Error_Msg_Name_1 := Name_Small;
3734 Error_Msg_N
7d8b9c99 3735 ("`&''%` too large, maximum allowed is 2.0'*'*80", E);
fbf5a39b
AC
3736 end if;
3737
3738 if Expr_Value_R (Type_Low_Bound (E)) < Ureal_M_10_36 then
3739 Error_Msg_Name_1 := Name_First;
3740 Error_Msg_N
7d8b9c99 3741 ("`&''%` too small, minimum allowed is -10.0'*'*36", E);
fbf5a39b
AC
3742 end if;
3743
3744 if Expr_Value_R (Type_High_Bound (E)) > Ureal_10_36 then
3745 Error_Msg_Name_1 := Name_Last;
3746 Error_Msg_N
7d8b9c99 3747 ("`&''%` too large, maximum allowed is 10.0'*'*36", E);
fbf5a39b
AC
3748 end if;
3749 end if;
3750
70482933
RK
3751 elsif Is_Enumeration_Type (E) then
3752 Freeze_Enumeration_Type (E);
3753
3754 elsif Is_Integer_Type (E) then
3755 Adjust_Esize_For_Alignment (E);
3756
79afa047
AC
3757 if Is_Modular_Integer_Type (E)
3758 and then Warn_On_Suspicious_Modulus_Value
3759 then
67b3acf8
RD
3760 Check_Suspicious_Modulus (E);
3761 end if;
3762
edd63e9b
ES
3763 elsif Is_Access_Type (E) then
3764
3765 -- Check restriction for standard storage pool
3766
3767 if No (Associated_Storage_Pool (E)) then
3768 Check_Restriction (No_Standard_Storage_Pools, E);
3769 end if;
3770
3771 -- Deal with error message for pure access type. This is not an
3772 -- error in Ada 2005 if there is no pool (see AI-366).
3773
3774 if Is_Pure_Unit_Access_Type (E)
3775 and then (Ada_Version < Ada_05
c6a9797e 3776 or else not No_Pool_Assigned (E))
edd63e9b
ES
3777 then
3778 Error_Msg_N ("named access type not allowed in pure unit", E);
c6a9797e
RD
3779
3780 if Ada_Version >= Ada_05 then
3781 Error_Msg_N
3782 ("\would be legal if Storage_Size of 0 given?", E);
3783
3784 elsif No_Pool_Assigned (E) then
3785 Error_Msg_N
3786 ("\would be legal in Ada 2005?", E);
3787
3788 else
3789 Error_Msg_N
3790 ("\would be legal in Ada 2005 if "
3791 & "Storage_Size of 0 given?", E);
3792 end if;
edd63e9b 3793 end if;
70482933
RK
3794 end if;
3795
edd63e9b
ES
3796 -- Case of composite types
3797
70482933
RK
3798 if Is_Composite_Type (E) then
3799
edd63e9b
ES
3800 -- AI-117 requires that all new primitives of a tagged type must
3801 -- inherit the convention of the full view of the type. Inherited
3802 -- and overriding operations are defined to inherit the convention
3803 -- of their parent or overridden subprogram (also specified in
ee094616
RD
3804 -- AI-117), which will have occurred earlier (in Derive_Subprogram
3805 -- and New_Overloaded_Entity). Here we set the convention of
3806 -- primitives that are still convention Ada, which will ensure
def46b54
RD
3807 -- that any new primitives inherit the type's convention. Class-
3808 -- wide types can have a foreign convention inherited from their
3809 -- specific type, but are excluded from this since they don't have
3810 -- any associated primitives.
70482933
RK
3811
3812 if Is_Tagged_Type (E)
3813 and then not Is_Class_Wide_Type (E)
3814 and then Convention (E) /= Convention_Ada
3815 then
3816 declare
3817 Prim_List : constant Elist_Id := Primitive_Operations (E);
07fc65c4 3818 Prim : Elmt_Id;
70482933 3819 begin
07fc65c4 3820 Prim := First_Elmt (Prim_List);
70482933
RK
3821 while Present (Prim) loop
3822 if Convention (Node (Prim)) = Convention_Ada then
3823 Set_Convention (Node (Prim), Convention (E));
3824 end if;
3825
3826 Next_Elmt (Prim);
3827 end loop;
3828 end;
3829 end if;
3830 end if;
3831
ee094616
RD
3832 -- Now that all types from which E may depend are frozen, see if the
3833 -- size is known at compile time, if it must be unsigned, or if
7d8b9c99 3834 -- strict alignment is required
70482933
RK
3835
3836 Check_Compile_Time_Size (E);
3837 Check_Unsigned_Type (E);
3838
3839 if Base_Type (E) = E then
3840 Check_Strict_Alignment (E);
3841 end if;
3842
3843 -- Do not allow a size clause for a type which does not have a size
3844 -- that is known at compile time
3845
3846 if Has_Size_Clause (E)
3847 and then not Size_Known_At_Compile_Time (E)
3848 then
e14c931f 3849 -- Suppress this message if errors posted on E, even if we are
07fc65c4
GB
3850 -- in all errors mode, since this is often a junk message
3851
3852 if not Error_Posted (E) then
3853 Error_Msg_N
3854 ("size clause not allowed for variable length type",
3855 Size_Clause (E));
3856 end if;
70482933
RK
3857 end if;
3858
3859 -- Remaining process is to set/verify the representation information,
3860 -- in particular the size and alignment values. This processing is
3861 -- not required for generic types, since generic types do not play
3862 -- any part in code generation, and so the size and alignment values
c6823a20 3863 -- for such types are irrelevant.
70482933
RK
3864
3865 if Is_Generic_Type (E) then
3866 return Result;
3867
3868 -- Otherwise we call the layout procedure
3869
3870 else
3871 Layout_Type (E);
3872 end if;
3873
3874 -- End of freeze processing for type entities
3875 end if;
3876
3877 -- Here is where we logically freeze the current entity. If it has a
3878 -- freeze node, then this is the point at which the freeze node is
3879 -- linked into the result list.
3880
3881 if Has_Delayed_Freeze (E) then
3882
3883 -- If a freeze node is already allocated, use it, otherwise allocate
3884 -- a new one. The preallocation happens in the case of anonymous base
3885 -- types, where we preallocate so that we can set First_Subtype_Link.
3886 -- Note that we reset the Sloc to the current freeze location.
3887
3888 if Present (Freeze_Node (E)) then
3889 F_Node := Freeze_Node (E);
3890 Set_Sloc (F_Node, Loc);
3891
3892 else
3893 F_Node := New_Node (N_Freeze_Entity, Loc);
3894 Set_Freeze_Node (E, F_Node);
3895 Set_Access_Types_To_Process (F_Node, No_Elist);
3896 Set_TSS_Elist (F_Node, No_Elist);
3897 Set_Actions (F_Node, No_List);
3898 end if;
3899
3900 Set_Entity (F_Node, E);
3901
3902 if Result = No_List then
3903 Result := New_List (F_Node);
3904 else
3905 Append (F_Node, Result);
3906 end if;
35ae2ed8
AC
3907
3908 -- A final pass over record types with discriminants. If the type
3909 -- has an incomplete declaration, there may be constrained access
3910 -- subtypes declared elsewhere, which do not depend on the discrimi-
3911 -- nants of the type, and which are used as component types (i.e.
3912 -- the full view is a recursive type). The designated types of these
3913 -- subtypes can only be elaborated after the type itself, and they
3914 -- need an itype reference.
3915
3916 if Ekind (E) = E_Record_Type
3917 and then Has_Discriminants (E)
3918 then
3919 declare
3920 Comp : Entity_Id;
3921 IR : Node_Id;
3922 Typ : Entity_Id;
3923
3924 begin
3925 Comp := First_Component (E);
3926
3927 while Present (Comp) loop
3928 Typ := Etype (Comp);
3929
3930 if Ekind (Comp) = E_Component
3931 and then Is_Access_Type (Typ)
3932 and then Scope (Typ) /= E
3933 and then Base_Type (Designated_Type (Typ)) = E
3934 and then Is_Itype (Designated_Type (Typ))
3935 then
3936 IR := Make_Itype_Reference (Sloc (Comp));
3937 Set_Itype (IR, Designated_Type (Typ));
3938 Append (IR, Result);
3939 end if;
3940
3941 Next_Component (Comp);
3942 end loop;
3943 end;
3944 end if;
70482933
RK
3945 end if;
3946
3947 -- When a type is frozen, the first subtype of the type is frozen as
3948 -- well (RM 13.14(15)). This has to be done after freezing the type,
3949 -- since obviously the first subtype depends on its own base type.
3950
3951 if Is_Type (E) then
3952 Freeze_And_Append (First_Subtype (E), Loc, Result);
3953
3954 -- If we just froze a tagged non-class wide record, then freeze the
3955 -- corresponding class-wide type. This must be done after the tagged
3956 -- type itself is frozen, because the class-wide type refers to the
3957 -- tagged type which generates the class.
3958
3959 if Is_Tagged_Type (E)
3960 and then not Is_Class_Wide_Type (E)
3961 and then Present (Class_Wide_Type (E))
3962 then
3963 Freeze_And_Append (Class_Wide_Type (E), Loc, Result);
3964 end if;
3965 end if;
3966
3967 Check_Debug_Info_Needed (E);
3968
3969 -- Special handling for subprograms
3970
3971 if Is_Subprogram (E) then
3972
3973 -- If subprogram has address clause then reset Is_Public flag, since
3974 -- we do not want the backend to generate external references.
3975
3976 if Present (Address_Clause (E))
3977 and then not Is_Library_Level_Entity (E)
3978 then
3979 Set_Is_Public (E, False);
3980
3981 -- If no address clause and not intrinsic, then for imported
3982 -- subprogram in main unit, generate descriptor if we are in
3983 -- Propagate_Exceptions mode.
3984
3985 elsif Propagate_Exceptions
3986 and then Is_Imported (E)
3987 and then not Is_Intrinsic_Subprogram (E)
3988 and then Convention (E) /= Convention_Stubbed
3989 then
3990 if Result = No_List then
3991 Result := Empty_List;
3992 end if;
70482933 3993 end if;
70482933
RK
3994 end if;
3995
3996 return Result;
3997 end Freeze_Entity;
3998
3999 -----------------------------
4000 -- Freeze_Enumeration_Type --
4001 -----------------------------
4002
4003 procedure Freeze_Enumeration_Type (Typ : Entity_Id) is
4004 begin
d677afa9
ES
4005 -- By default, if no size clause is present, an enumeration type with
4006 -- Convention C is assumed to interface to a C enum, and has integer
4007 -- size. This applies to types. For subtypes, verify that its base
4008 -- type has no size clause either.
4009
70482933
RK
4010 if Has_Foreign_Convention (Typ)
4011 and then not Has_Size_Clause (Typ)
d677afa9 4012 and then not Has_Size_Clause (Base_Type (Typ))
70482933
RK
4013 and then Esize (Typ) < Standard_Integer_Size
4014 then
4015 Init_Esize (Typ, Standard_Integer_Size);
d677afa9 4016
70482933 4017 else
d677afa9
ES
4018 -- If the enumeration type interfaces to C, and it has a size clause
4019 -- that specifies less than int size, it warrants a warning. The
4020 -- user may intend the C type to be an enum or a char, so this is
4021 -- not by itself an error that the Ada compiler can detect, but it
4022 -- it is a worth a heads-up. For Boolean and Character types we
4023 -- assume that the programmer has the proper C type in mind.
4024
4025 if Convention (Typ) = Convention_C
4026 and then Has_Size_Clause (Typ)
4027 and then Esize (Typ) /= Esize (Standard_Integer)
4028 and then not Is_Boolean_Type (Typ)
4029 and then not Is_Character_Type (Typ)
4030 then
4031 Error_Msg_N
4032 ("C enum types have the size of a C int?", Size_Clause (Typ));
4033 end if;
4034
70482933
RK
4035 Adjust_Esize_For_Alignment (Typ);
4036 end if;
4037 end Freeze_Enumeration_Type;
4038
4039 -----------------------
4040 -- Freeze_Expression --
4041 -----------------------
4042
4043 procedure Freeze_Expression (N : Node_Id) is
c6a9797e
RD
4044 In_Spec_Exp : constant Boolean := In_Spec_Expression;
4045 Typ : Entity_Id;
4046 Nam : Entity_Id;
4047 Desig_Typ : Entity_Id;
4048 P : Node_Id;
4049 Parent_P : Node_Id;
70482933
RK
4050
4051 Freeze_Outside : Boolean := False;
4052 -- This flag is set true if the entity must be frozen outside the
4053 -- current subprogram. This happens in the case of expander generated
4054 -- subprograms (_Init_Proc, _Input, _Output, _Read, _Write) which do
4055 -- not freeze all entities like other bodies, but which nevertheless
4056 -- may reference entities that have to be frozen before the body and
4057 -- obviously cannot be frozen inside the body.
4058
4059 function In_Exp_Body (N : Node_Id) return Boolean;
4060 -- Given an N_Handled_Sequence_Of_Statements node N, determines whether
c6823a20 4061 -- it is the handled statement sequence of an expander-generated
7d8b9c99
RD
4062 -- subprogram (init proc, stream subprogram, or renaming as body).
4063 -- If so, this is not a freezing context.
70482933 4064
fbf5a39b
AC
4065 -----------------
4066 -- In_Exp_Body --
4067 -----------------
4068
70482933 4069 function In_Exp_Body (N : Node_Id) return Boolean is
7d8b9c99
RD
4070 P : Node_Id;
4071 Id : Entity_Id;
70482933
RK
4072
4073 begin
4074 if Nkind (N) = N_Subprogram_Body then
4075 P := N;
4076 else
4077 P := Parent (N);
4078 end if;
4079
4080 if Nkind (P) /= N_Subprogram_Body then
4081 return False;
4082
4083 else
7d8b9c99
RD
4084 Id := Defining_Unit_Name (Specification (P));
4085
4086 if Nkind (Id) = N_Defining_Identifier
4087 and then (Is_Init_Proc (Id) or else
4088 Is_TSS (Id, TSS_Stream_Input) or else
4089 Is_TSS (Id, TSS_Stream_Output) or else
4090 Is_TSS (Id, TSS_Stream_Read) or else
4091 Is_TSS (Id, TSS_Stream_Write) or else
4092 Nkind (Original_Node (P)) =
4093 N_Subprogram_Renaming_Declaration)
70482933
RK
4094 then
4095 return True;
4096 else
4097 return False;
4098 end if;
4099 end if;
70482933
RK
4100 end In_Exp_Body;
4101
4102 -- Start of processing for Freeze_Expression
4103
4104 begin
edd63e9b
ES
4105 -- Immediate return if freezing is inhibited. This flag is set by the
4106 -- analyzer to stop freezing on generated expressions that would cause
4107 -- freezing if they were in the source program, but which are not
4108 -- supposed to freeze, since they are created.
70482933
RK
4109
4110 if Must_Not_Freeze (N) then
4111 return;
4112 end if;
4113
4114 -- If expression is non-static, then it does not freeze in a default
4115 -- expression, see section "Handling of Default Expressions" in the
4116 -- spec of package Sem for further details. Note that we have to
4117 -- make sure that we actually have a real expression (if we have
4118 -- a subtype indication, we can't test Is_Static_Expression!)
4119
c6a9797e 4120 if In_Spec_Exp
70482933
RK
4121 and then Nkind (N) in N_Subexpr
4122 and then not Is_Static_Expression (N)
4123 then
4124 return;
4125 end if;
4126
4127 -- Freeze type of expression if not frozen already
4128
fbf5a39b
AC
4129 Typ := Empty;
4130
4131 if Nkind (N) in N_Has_Etype then
4132 if not Is_Frozen (Etype (N)) then
4133 Typ := Etype (N);
4134
4135 -- Base type may be an derived numeric type that is frozen at
4136 -- the point of declaration, but first_subtype is still unfrozen.
4137
4138 elsif not Is_Frozen (First_Subtype (Etype (N))) then
4139 Typ := First_Subtype (Etype (N));
4140 end if;
70482933
RK
4141 end if;
4142
4143 -- For entity name, freeze entity if not frozen already. A special
4144 -- exception occurs for an identifier that did not come from source.
4145 -- We don't let such identifiers freeze a non-internal entity, i.e.
4146 -- an entity that did come from source, since such an identifier was
4147 -- generated by the expander, and cannot have any semantic effect on
4148 -- the freezing semantics. For example, this stops the parameter of
4149 -- an initialization procedure from freezing the variable.
4150
4151 if Is_Entity_Name (N)
4152 and then not Is_Frozen (Entity (N))
4153 and then (Nkind (N) /= N_Identifier
4154 or else Comes_From_Source (N)
4155 or else not Comes_From_Source (Entity (N)))
4156 then
4157 Nam := Entity (N);
70482933
RK
4158 else
4159 Nam := Empty;
4160 end if;
4161
49e90211 4162 -- For an allocator freeze designated type if not frozen already
70482933 4163
ee094616
RD
4164 -- For an aggregate whose component type is an access type, freeze the
4165 -- designated type now, so that its freeze does not appear within the
4166 -- loop that might be created in the expansion of the aggregate. If the
4167 -- designated type is a private type without full view, the expression
4168 -- cannot contain an allocator, so the type is not frozen.
70482933 4169
7aedb36a
AC
4170 -- For a function, we freeze the entity when the subprogram declaration
4171 -- is frozen, but a function call may appear in an initialization proc.
f6cf5b85 4172 -- before the declaration is frozen. We need to generate the extra
7aedb36a 4173 -- formals, if any, to ensure that the expansion of the call includes
2f4f3f3f
AC
4174 -- the proper actuals. This only applies to Ada subprograms, not to
4175 -- imported ones.
7aedb36a 4176
70482933 4177 Desig_Typ := Empty;
70482933 4178
fbf5a39b 4179 case Nkind (N) is
70482933
RK
4180 when N_Allocator =>
4181 Desig_Typ := Designated_Type (Etype (N));
4182
4183 when N_Aggregate =>
4184 if Is_Array_Type (Etype (N))
4185 and then Is_Access_Type (Component_Type (Etype (N)))
4186 then
4187 Desig_Typ := Designated_Type (Component_Type (Etype (N)));
4188 end if;
4189
4190 when N_Selected_Component |
4191 N_Indexed_Component |
4192 N_Slice =>
4193
4194 if Is_Access_Type (Etype (Prefix (N))) then
4195 Desig_Typ := Designated_Type (Etype (Prefix (N)));
4196 end if;
4197
7aedb36a
AC
4198 when N_Identifier =>
4199 if Present (Nam)
4200 and then Ekind (Nam) = E_Function
4201 and then Nkind (Parent (N)) = N_Function_Call
2f4f3f3f 4202 and then Convention (Nam) = Convention_Ada
7aedb36a
AC
4203 then
4204 Create_Extra_Formals (Nam);
4205 end if;
4206
70482933
RK
4207 when others =>
4208 null;
70482933
RK
4209 end case;
4210
4211 if Desig_Typ /= Empty
4212 and then (Is_Frozen (Desig_Typ)
4213 or else (not Is_Fully_Defined (Desig_Typ)))
4214 then
4215 Desig_Typ := Empty;
4216 end if;
4217
4218 -- All done if nothing needs freezing
4219
4220 if No (Typ)
4221 and then No (Nam)
4222 and then No (Desig_Typ)
4223 then
4224 return;
4225 end if;
4226
f6cf5b85 4227 -- Loop for looking at the right place to insert the freeze nodes,
70482933
RK
4228 -- exiting from the loop when it is appropriate to insert the freeze
4229 -- node before the current node P.
4230
f6cf5b85
AC
4231 -- Also checks som special exceptions to the freezing rules. These cases
4232 -- result in a direct return, bypassing the freeze action.
70482933
RK
4233
4234 P := N;
4235 loop
4236 Parent_P := Parent (P);
4237
ee094616
RD
4238 -- If we don't have a parent, then we are not in a well-formed tree.
4239 -- This is an unusual case, but there are some legitimate situations
4240 -- in which this occurs, notably when the expressions in the range of
4241 -- a type declaration are resolved. We simply ignore the freeze
4242 -- request in this case. Is this right ???
70482933
RK
4243
4244 if No (Parent_P) then
4245 return;
4246 end if;
4247
4248 -- See if we have got to an appropriate point in the tree
4249
4250 case Nkind (Parent_P) is
4251
edd63e9b
ES
4252 -- A special test for the exception of (RM 13.14(8)) for the case
4253 -- of per-object expressions (RM 3.8(18)) occurring in component
4254 -- definition or a discrete subtype definition. Note that we test
4255 -- for a component declaration which includes both cases we are
4256 -- interested in, and furthermore the tree does not have explicit
4257 -- nodes for either of these two constructs.
70482933
RK
4258
4259 when N_Component_Declaration =>
4260
4261 -- The case we want to test for here is an identifier that is
4262 -- a per-object expression, this is either a discriminant that
4263 -- appears in a context other than the component declaration
4264 -- or it is a reference to the type of the enclosing construct.
4265
4266 -- For either of these cases, we skip the freezing
4267
c6a9797e 4268 if not In_Spec_Expression
70482933
RK
4269 and then Nkind (N) = N_Identifier
4270 and then (Present (Entity (N)))
4271 then
4272 -- We recognize the discriminant case by just looking for
4273 -- a reference to a discriminant. It can only be one for
4274 -- the enclosing construct. Skip freezing in this case.
4275
4276 if Ekind (Entity (N)) = E_Discriminant then
4277 return;
4278
4279 -- For the case of a reference to the enclosing record,
4280 -- (or task or protected type), we look for a type that
4281 -- matches the current scope.
4282
4283 elsif Entity (N) = Current_Scope then
4284 return;
4285 end if;
4286 end if;
4287
edd63e9b
ES
4288 -- If we have an enumeration literal that appears as the choice in
4289 -- the aggregate of an enumeration representation clause, then
4290 -- freezing does not occur (RM 13.14(10)).
70482933
RK
4291
4292 when N_Enumeration_Representation_Clause =>
4293
4294 -- The case we are looking for is an enumeration literal
4295
4296 if (Nkind (N) = N_Identifier or Nkind (N) = N_Character_Literal)
4297 and then Is_Enumeration_Type (Etype (N))
4298 then
4299 -- If enumeration literal appears directly as the choice,
e14c931f 4300 -- do not freeze (this is the normal non-overloaded case)
70482933
RK
4301
4302 if Nkind (Parent (N)) = N_Component_Association
4303 and then First (Choices (Parent (N))) = N
4304 then
4305 return;
4306
ee094616
RD
4307 -- If enumeration literal appears as the name of function
4308 -- which is the choice, then also do not freeze. This
4309 -- happens in the overloaded literal case, where the
70482933
RK
4310 -- enumeration literal is temporarily changed to a function
4311 -- call for overloading analysis purposes.
4312
4313 elsif Nkind (Parent (N)) = N_Function_Call
4314 and then
4315 Nkind (Parent (Parent (N))) = N_Component_Association
4316 and then
4317 First (Choices (Parent (Parent (N)))) = Parent (N)
4318 then
4319 return;
4320 end if;
4321 end if;
4322
4323 -- Normally if the parent is a handled sequence of statements,
4324 -- then the current node must be a statement, and that is an
4325 -- appropriate place to insert a freeze node.
4326
4327 when N_Handled_Sequence_Of_Statements =>
4328
edd63e9b
ES
4329 -- An exception occurs when the sequence of statements is for
4330 -- an expander generated body that did not do the usual freeze
4331 -- all operation. In this case we usually want to freeze
4332 -- outside this body, not inside it, and we skip past the
4333 -- subprogram body that we are inside.
70482933
RK
4334
4335 if In_Exp_Body (Parent_P) then
4336
4337 -- However, we *do* want to freeze at this point if we have
4338 -- an entity to freeze, and that entity is declared *inside*
4339 -- the body of the expander generated procedure. This case
4340 -- is recognized by the scope of the type, which is either
4341 -- the spec for some enclosing body, or (in the case of
4342 -- init_procs, for which there are no separate specs) the
4343 -- current scope.
4344
4345 declare
4346 Subp : constant Node_Id := Parent (Parent_P);
4347 Cspc : Entity_Id;
4348
4349 begin
4350 if Nkind (Subp) = N_Subprogram_Body then
4351 Cspc := Corresponding_Spec (Subp);
4352
4353 if (Present (Typ) and then Scope (Typ) = Cspc)
4354 or else
4355 (Present (Nam) and then Scope (Nam) = Cspc)
4356 then
4357 exit;
4358
4359 elsif Present (Typ)
4360 and then Scope (Typ) = Current_Scope
4361 and then Current_Scope = Defining_Entity (Subp)
4362 then
4363 exit;
4364 end if;
4365 end if;
4366 end;
4367
4368 -- If not that exception to the exception, then this is
4369 -- where we delay the freeze till outside the body.
4370
4371 Parent_P := Parent (Parent_P);
4372 Freeze_Outside := True;
4373
4374 -- Here if normal case where we are in handled statement
4375 -- sequence and want to do the insertion right there.
4376
4377 else
4378 exit;
4379 end if;
4380
ee094616
RD
4381 -- If parent is a body or a spec or a block, then the current node
4382 -- is a statement or declaration and we can insert the freeze node
4383 -- before it.
70482933
RK
4384
4385 when N_Package_Specification |
4386 N_Package_Body |
4387 N_Subprogram_Body |
4388 N_Task_Body |
4389 N_Protected_Body |
4390 N_Entry_Body |
4391 N_Block_Statement => exit;
4392
4393 -- The expander is allowed to define types in any statements list,
4394 -- so any of the following parent nodes also mark a freezing point
4395 -- if the actual node is in a list of statements or declarations.
4396
4397 when N_Exception_Handler |
4398 N_If_Statement |
4399 N_Elsif_Part |
4400 N_Case_Statement_Alternative |
4401 N_Compilation_Unit_Aux |
4402 N_Selective_Accept |
4403 N_Accept_Alternative |
4404 N_Delay_Alternative |
4405 N_Conditional_Entry_Call |
4406 N_Entry_Call_Alternative |
4407 N_Triggering_Alternative |
4408 N_Abortable_Part |
4409 N_Freeze_Entity =>
4410
4411 exit when Is_List_Member (P);
4412
4413 -- Note: The N_Loop_Statement is a special case. A type that
4414 -- appears in the source can never be frozen in a loop (this
edd63e9b
ES
4415 -- occurs only because of a loop expanded by the expander), so we
4416 -- keep on going. Otherwise we terminate the search. Same is true
ee094616
RD
4417 -- of any entity which comes from source. (if they have predefined
4418 -- type, that type does not appear to come from source, but the
4419 -- entity should not be frozen here).
70482933
RK
4420
4421 when N_Loop_Statement =>
4422 exit when not Comes_From_Source (Etype (N))
4423 and then (No (Nam) or else not Comes_From_Source (Nam));
4424
4425 -- For all other cases, keep looking at parents
4426
4427 when others =>
4428 null;
4429 end case;
4430
4431 -- We fall through the case if we did not yet find the proper
4432 -- place in the free for inserting the freeze node, so climb!
4433
4434 P := Parent_P;
4435 end loop;
4436
edd63e9b
ES
4437 -- If the expression appears in a record or an initialization procedure,
4438 -- the freeze nodes are collected and attached to the current scope, to
4439 -- be inserted and analyzed on exit from the scope, to insure that
4440 -- generated entities appear in the correct scope. If the expression is
4441 -- a default for a discriminant specification, the scope is still void.
4442 -- The expression can also appear in the discriminant part of a private
4443 -- or concurrent type.
70482933 4444
c6823a20 4445 -- If the expression appears in a constrained subcomponent of an
edd63e9b
ES
4446 -- enclosing record declaration, the freeze nodes must be attached to
4447 -- the outer record type so they can eventually be placed in the
c6823a20
EB
4448 -- enclosing declaration list.
4449
ee094616
RD
4450 -- The other case requiring this special handling is if we are in a
4451 -- default expression, since in that case we are about to freeze a
4452 -- static type, and the freeze scope needs to be the outer scope, not
4453 -- the scope of the subprogram with the default parameter.
70482933 4454
c6a9797e
RD
4455 -- For default expressions and other spec expressions in generic units,
4456 -- the Move_Freeze_Nodes mechanism (see sem_ch12.adb) takes care of
4457 -- placing them at the proper place, after the generic unit.
70482933 4458
c6a9797e 4459 if (In_Spec_Exp and not Inside_A_Generic)
70482933
RK
4460 or else Freeze_Outside
4461 or else (Is_Type (Current_Scope)
4462 and then (not Is_Concurrent_Type (Current_Scope)
4463 or else not Has_Completion (Current_Scope)))
4464 or else Ekind (Current_Scope) = E_Void
4465 then
4466 declare
4467 Loc : constant Source_Ptr := Sloc (Current_Scope);
4468 Freeze_Nodes : List_Id := No_List;
c6823a20 4469 Pos : Int := Scope_Stack.Last;
70482933
RK
4470
4471 begin
4472 if Present (Desig_Typ) then
4473 Freeze_And_Append (Desig_Typ, Loc, Freeze_Nodes);
4474 end if;
4475
4476 if Present (Typ) then
4477 Freeze_And_Append (Typ, Loc, Freeze_Nodes);
4478 end if;
4479
4480 if Present (Nam) then
4481 Freeze_And_Append (Nam, Loc, Freeze_Nodes);
4482 end if;
4483
c6823a20
EB
4484 -- The current scope may be that of a constrained component of
4485 -- an enclosing record declaration, which is above the current
4486 -- scope in the scope stack.
4487
4488 if Is_Record_Type (Scope (Current_Scope)) then
4489 Pos := Pos - 1;
4490 end if;
4491
70482933 4492 if Is_Non_Empty_List (Freeze_Nodes) then
c6823a20
EB
4493 if No (Scope_Stack.Table (Pos).Pending_Freeze_Actions) then
4494 Scope_Stack.Table (Pos).Pending_Freeze_Actions :=
70482933
RK
4495 Freeze_Nodes;
4496 else
4497 Append_List (Freeze_Nodes, Scope_Stack.Table
c6823a20 4498 (Pos).Pending_Freeze_Actions);
70482933
RK
4499 end if;
4500 end if;
4501 end;
4502
4503 return;
4504 end if;
4505
4506 -- Now we have the right place to do the freezing. First, a special
c6a9797e
RD
4507 -- adjustment, if we are in spec-expression analysis mode, these freeze
4508 -- actions must not be thrown away (normally all inserted actions are
4509 -- thrown away in this mode. However, the freeze actions are from static
4510 -- expressions and one of the important reasons we are doing this
ee094616 4511 -- special analysis is to get these freeze actions. Therefore we turn
c6a9797e 4512 -- off the In_Spec_Expression mode to propagate these freeze actions.
ee094616 4513 -- This also means they get properly analyzed and expanded.
70482933 4514
c6a9797e 4515 In_Spec_Expression := False;
70482933 4516
fbf5a39b 4517 -- Freeze the designated type of an allocator (RM 13.14(13))
70482933
RK
4518
4519 if Present (Desig_Typ) then
4520 Freeze_Before (P, Desig_Typ);
4521 end if;
4522
fbf5a39b 4523 -- Freeze type of expression (RM 13.14(10)). Note that we took care of
70482933
RK
4524 -- the enumeration representation clause exception in the loop above.
4525
4526 if Present (Typ) then
4527 Freeze_Before (P, Typ);
4528 end if;
4529
fbf5a39b 4530 -- Freeze name if one is present (RM 13.14(11))
70482933
RK
4531
4532 if Present (Nam) then
4533 Freeze_Before (P, Nam);
4534 end if;
4535
c6a9797e
RD
4536 -- Restore In_Spec_Expression flag
4537
4538 In_Spec_Expression := In_Spec_Exp;
70482933
RK
4539 end Freeze_Expression;
4540
4541 -----------------------------
4542 -- Freeze_Fixed_Point_Type --
4543 -----------------------------
4544
edd63e9b
ES
4545 -- Certain fixed-point types and subtypes, including implicit base types
4546 -- and declared first subtypes, have not yet set up a range. This is
4547 -- because the range cannot be set until the Small and Size values are
4548 -- known, and these are not known till the type is frozen.
70482933 4549
edd63e9b
ES
4550 -- To signal this case, Scalar_Range contains an unanalyzed syntactic range
4551 -- whose bounds are unanalyzed real literals. This routine will recognize
4552 -- this case, and transform this range node into a properly typed range
4553 -- with properly analyzed and resolved values.
70482933
RK
4554
4555 procedure Freeze_Fixed_Point_Type (Typ : Entity_Id) is
4556 Rng : constant Node_Id := Scalar_Range (Typ);
4557 Lo : constant Node_Id := Low_Bound (Rng);
4558 Hi : constant Node_Id := High_Bound (Rng);
4559 Btyp : constant Entity_Id := Base_Type (Typ);
4560 Brng : constant Node_Id := Scalar_Range (Btyp);
4561 BLo : constant Node_Id := Low_Bound (Brng);
4562 BHi : constant Node_Id := High_Bound (Brng);
4563 Small : constant Ureal := Small_Value (Typ);
4564 Loval : Ureal;
4565 Hival : Ureal;
4566 Atype : Entity_Id;
4567
4568 Actual_Size : Nat;
4569
4570 function Fsize (Lov, Hiv : Ureal) return Nat;
4571 -- Returns size of type with given bounds. Also leaves these
4572 -- bounds set as the current bounds of the Typ.
4573
0da2c8ac
AC
4574 -----------
4575 -- Fsize --
4576 -----------
4577
70482933
RK
4578 function Fsize (Lov, Hiv : Ureal) return Nat is
4579 begin
4580 Set_Realval (Lo, Lov);
4581 Set_Realval (Hi, Hiv);
4582 return Minimum_Size (Typ);
4583 end Fsize;
4584
0da2c8ac 4585 -- Start of processing for Freeze_Fixed_Point_Type
70482933
RK
4586
4587 begin
4588 -- If Esize of a subtype has not previously been set, set it now
4589
4590 if Unknown_Esize (Typ) then
4591 Atype := Ancestor_Subtype (Typ);
4592
4593 if Present (Atype) then
fbf5a39b 4594 Set_Esize (Typ, Esize (Atype));
70482933 4595 else
fbf5a39b 4596 Set_Esize (Typ, Esize (Base_Type (Typ)));
70482933
RK
4597 end if;
4598 end if;
4599
ee094616
RD
4600 -- Immediate return if the range is already analyzed. This means that
4601 -- the range is already set, and does not need to be computed by this
4602 -- routine.
70482933
RK
4603
4604 if Analyzed (Rng) then
4605 return;
4606 end if;
4607
4608 -- Immediate return if either of the bounds raises Constraint_Error
4609
4610 if Raises_Constraint_Error (Lo)
4611 or else Raises_Constraint_Error (Hi)
4612 then
4613 return;
4614 end if;
4615
4616 Loval := Realval (Lo);
4617 Hival := Realval (Hi);
4618
4619 -- Ordinary fixed-point case
4620
4621 if Is_Ordinary_Fixed_Point_Type (Typ) then
4622
4623 -- For the ordinary fixed-point case, we are allowed to fudge the
ee094616
RD
4624 -- end-points up or down by small. Generally we prefer to fudge up,
4625 -- i.e. widen the bounds for non-model numbers so that the end points
4626 -- are included. However there are cases in which this cannot be
4627 -- done, and indeed cases in which we may need to narrow the bounds.
4628 -- The following circuit makes the decision.
70482933 4629
ee094616
RD
4630 -- Note: our terminology here is that Incl_EP means that the bounds
4631 -- are widened by Small if necessary to include the end points, and
4632 -- Excl_EP means that the bounds are narrowed by Small to exclude the
4633 -- end-points if this reduces the size.
70482933
RK
4634
4635 -- Note that in the Incl case, all we care about is including the
4636 -- end-points. In the Excl case, we want to narrow the bounds as
4637 -- much as permitted by the RM, to give the smallest possible size.
4638
4639 Fudge : declare
4640 Loval_Incl_EP : Ureal;
4641 Hival_Incl_EP : Ureal;
4642
4643 Loval_Excl_EP : Ureal;
4644 Hival_Excl_EP : Ureal;
4645
4646 Size_Incl_EP : Nat;
4647 Size_Excl_EP : Nat;
4648
4649 Model_Num : Ureal;
4650 First_Subt : Entity_Id;
4651 Actual_Lo : Ureal;
4652 Actual_Hi : Ureal;
4653
4654 begin
4655 -- First step. Base types are required to be symmetrical. Right
4656 -- now, the base type range is a copy of the first subtype range.
4657 -- This will be corrected before we are done, but right away we
4658 -- need to deal with the case where both bounds are non-negative.
4659 -- In this case, we set the low bound to the negative of the high
4660 -- bound, to make sure that the size is computed to include the
4661 -- required sign. Note that we do not need to worry about the
4662 -- case of both bounds negative, because the sign will be dealt
4663 -- with anyway. Furthermore we can't just go making such a bound
4664 -- symmetrical, since in a twos-complement system, there is an
e14c931f 4665 -- extra negative value which could not be accommodated on the
70482933
RK
4666 -- positive side.
4667
4668 if Typ = Btyp
4669 and then not UR_Is_Negative (Loval)
4670 and then Hival > Loval
4671 then
4672 Loval := -Hival;
4673 Set_Realval (Lo, Loval);
4674 end if;
4675
4676 -- Compute the fudged bounds. If the number is a model number,
edd63e9b
ES
4677 -- then we do nothing to include it, but we are allowed to backoff
4678 -- to the next adjacent model number when we exclude it. If it is
4679 -- not a model number then we straddle the two values with the
4680 -- model numbers on either side.
70482933
RK
4681
4682 Model_Num := UR_Trunc (Loval / Small) * Small;
4683
4684 if Loval = Model_Num then
4685 Loval_Incl_EP := Model_Num;
4686 else
4687 Loval_Incl_EP := Model_Num - Small;
4688 end if;
4689
4690 -- The low value excluding the end point is Small greater, but
4691 -- we do not do this exclusion if the low value is positive,
4692 -- since it can't help the size and could actually hurt by
4693 -- crossing the high bound.
4694
4695 if UR_Is_Negative (Loval_Incl_EP) then
4696 Loval_Excl_EP := Loval_Incl_EP + Small;
def46b54
RD
4697
4698 -- If the value went from negative to zero, then we have the
4699 -- case where Loval_Incl_EP is the model number just below
4700 -- zero, so we want to stick to the negative value for the
4701 -- base type to maintain the condition that the size will
4702 -- include signed values.
4703
4704 if Typ = Btyp
4705 and then UR_Is_Zero (Loval_Excl_EP)
4706 then
4707 Loval_Excl_EP := Loval_Incl_EP;
4708 end if;
4709
70482933
RK
4710 else
4711 Loval_Excl_EP := Loval_Incl_EP;
4712 end if;
4713
4714 -- Similar processing for upper bound and high value
4715
4716 Model_Num := UR_Trunc (Hival / Small) * Small;
4717
4718 if Hival = Model_Num then
4719 Hival_Incl_EP := Model_Num;
4720 else
4721 Hival_Incl_EP := Model_Num + Small;
4722 end if;
4723
4724 if UR_Is_Positive (Hival_Incl_EP) then
4725 Hival_Excl_EP := Hival_Incl_EP - Small;
4726 else
4727 Hival_Excl_EP := Hival_Incl_EP;
4728 end if;
4729
ee094616
RD
4730 -- One further adjustment is needed. In the case of subtypes, we
4731 -- cannot go outside the range of the base type, or we get
70482933 4732 -- peculiarities, and the base type range is already set. This
ee094616
RD
4733 -- only applies to the Incl values, since clearly the Excl values
4734 -- are already as restricted as they are allowed to be.
70482933
RK
4735
4736 if Typ /= Btyp then
4737 Loval_Incl_EP := UR_Max (Loval_Incl_EP, Realval (BLo));
4738 Hival_Incl_EP := UR_Min (Hival_Incl_EP, Realval (BHi));
4739 end if;
4740
4741 -- Get size including and excluding end points
4742
4743 Size_Incl_EP := Fsize (Loval_Incl_EP, Hival_Incl_EP);
4744 Size_Excl_EP := Fsize (Loval_Excl_EP, Hival_Excl_EP);
4745
4746 -- No need to exclude end-points if it does not reduce size
4747
4748 if Fsize (Loval_Incl_EP, Hival_Excl_EP) = Size_Excl_EP then
4749 Loval_Excl_EP := Loval_Incl_EP;
4750 end if;
4751
4752 if Fsize (Loval_Excl_EP, Hival_Incl_EP) = Size_Excl_EP then
4753 Hival_Excl_EP := Hival_Incl_EP;
4754 end if;
4755
4756 -- Now we set the actual size to be used. We want to use the
4757 -- bounds fudged up to include the end-points but only if this
4758 -- can be done without violating a specifically given size
4759 -- size clause or causing an unacceptable increase in size.
4760
4761 -- Case of size clause given
4762
4763 if Has_Size_Clause (Typ) then
4764
4765 -- Use the inclusive size only if it is consistent with
4766 -- the explicitly specified size.
4767
4768 if Size_Incl_EP <= RM_Size (Typ) then
4769 Actual_Lo := Loval_Incl_EP;
4770 Actual_Hi := Hival_Incl_EP;
4771 Actual_Size := Size_Incl_EP;
4772
4773 -- If the inclusive size is too large, we try excluding
4774 -- the end-points (will be caught later if does not work).
4775
4776 else
4777 Actual_Lo := Loval_Excl_EP;
4778 Actual_Hi := Hival_Excl_EP;
4779 Actual_Size := Size_Excl_EP;
4780 end if;
4781
4782 -- Case of size clause not given
4783
4784 else
4785 -- If we have a base type whose corresponding first subtype
4786 -- has an explicit size that is large enough to include our
4787 -- end-points, then do so. There is no point in working hard
4788 -- to get a base type whose size is smaller than the specified
4789 -- size of the first subtype.
4790
4791 First_Subt := First_Subtype (Typ);
4792
4793 if Has_Size_Clause (First_Subt)
4794 and then Size_Incl_EP <= Esize (First_Subt)
4795 then
4796 Actual_Size := Size_Incl_EP;
4797 Actual_Lo := Loval_Incl_EP;
4798 Actual_Hi := Hival_Incl_EP;
4799
4800 -- If excluding the end-points makes the size smaller and
4801 -- results in a size of 8,16,32,64, then we take the smaller
4802 -- size. For the 64 case, this is compulsory. For the other
4803 -- cases, it seems reasonable. We like to include end points
4804 -- if we can, but not at the expense of moving to the next
4805 -- natural boundary of size.
4806
4807 elsif Size_Incl_EP /= Size_Excl_EP
4808 and then
4809 (Size_Excl_EP = 8 or else
4810 Size_Excl_EP = 16 or else
4811 Size_Excl_EP = 32 or else
4812 Size_Excl_EP = 64)
4813 then
4814 Actual_Size := Size_Excl_EP;
4815 Actual_Lo := Loval_Excl_EP;
4816 Actual_Hi := Hival_Excl_EP;
4817
4818 -- Otherwise we can definitely include the end points
4819
4820 else
4821 Actual_Size := Size_Incl_EP;
4822 Actual_Lo := Loval_Incl_EP;
4823 Actual_Hi := Hival_Incl_EP;
4824 end if;
4825
edd63e9b
ES
4826 -- One pathological case: normally we never fudge a low bound
4827 -- down, since it would seem to increase the size (if it has
4828 -- any effect), but for ranges containing single value, or no
4829 -- values, the high bound can be small too large. Consider:
70482933
RK
4830
4831 -- type t is delta 2.0**(-14)
4832 -- range 131072.0 .. 0;
4833
edd63e9b
ES
4834 -- That lower bound is *just* outside the range of 32 bits, and
4835 -- does need fudging down in this case. Note that the bounds
4836 -- will always have crossed here, since the high bound will be
4837 -- fudged down if necessary, as in the case of:
70482933
RK
4838
4839 -- type t is delta 2.0**(-14)
4840 -- range 131072.0 .. 131072.0;
4841
edd63e9b
ES
4842 -- So we detect the situation by looking for crossed bounds,
4843 -- and if the bounds are crossed, and the low bound is greater
4844 -- than zero, we will always back it off by small, since this
4845 -- is completely harmless.
70482933
RK
4846
4847 if Actual_Lo > Actual_Hi then
4848 if UR_Is_Positive (Actual_Lo) then
4849 Actual_Lo := Loval_Incl_EP - Small;
4850 Actual_Size := Fsize (Actual_Lo, Actual_Hi);
4851
4852 -- And of course, we need to do exactly the same parallel
4853 -- fudge for flat ranges in the negative region.
4854
4855 elsif UR_Is_Negative (Actual_Hi) then
4856 Actual_Hi := Hival_Incl_EP + Small;
4857 Actual_Size := Fsize (Actual_Lo, Actual_Hi);
4858 end if;
4859 end if;
4860 end if;
4861
4862 Set_Realval (Lo, Actual_Lo);
4863 Set_Realval (Hi, Actual_Hi);
4864 end Fudge;
4865
4866 -- For the decimal case, none of this fudging is required, since there
4867 -- are no end-point problems in the decimal case (the end-points are
4868 -- always included).
4869
4870 else
4871 Actual_Size := Fsize (Loval, Hival);
4872 end if;
4873
4874 -- At this stage, the actual size has been calculated and the proper
4875 -- required bounds are stored in the low and high bounds.
4876
4877 if Actual_Size > 64 then
4878 Error_Msg_Uint_1 := UI_From_Int (Actual_Size);
4879 Error_Msg_N
7d8b9c99
RD
4880 ("size required (^) for type& too large, maximum allowed is 64",
4881 Typ);
70482933
RK
4882 Actual_Size := 64;
4883 end if;
4884
4885 -- Check size against explicit given size
4886
4887 if Has_Size_Clause (Typ) then
4888 if Actual_Size > RM_Size (Typ) then
4889 Error_Msg_Uint_1 := RM_Size (Typ);
4890 Error_Msg_Uint_2 := UI_From_Int (Actual_Size);
4891 Error_Msg_NE
7d8b9c99 4892 ("size given (^) for type& too small, minimum allowed is ^",
70482933
RK
4893 Size_Clause (Typ), Typ);
4894
4895 else
4896 Actual_Size := UI_To_Int (Esize (Typ));
4897 end if;
4898
4899 -- Increase size to next natural boundary if no size clause given
4900
4901 else
4902 if Actual_Size <= 8 then
4903 Actual_Size := 8;
4904 elsif Actual_Size <= 16 then
4905 Actual_Size := 16;
4906 elsif Actual_Size <= 32 then
4907 Actual_Size := 32;
4908 else
4909 Actual_Size := 64;
4910 end if;
4911
4912 Init_Esize (Typ, Actual_Size);
4913 Adjust_Esize_For_Alignment (Typ);
4914 end if;
4915
edd63e9b
ES
4916 -- If we have a base type, then expand the bounds so that they extend to
4917 -- the full width of the allocated size in bits, to avoid junk range
4918 -- checks on intermediate computations.
70482933
RK
4919
4920 if Base_Type (Typ) = Typ then
4921 Set_Realval (Lo, -(Small * (Uint_2 ** (Actual_Size - 1))));
4922 Set_Realval (Hi, (Small * (Uint_2 ** (Actual_Size - 1) - 1)));
4923 end if;
4924
4925 -- Final step is to reanalyze the bounds using the proper type
4926 -- and set the Corresponding_Integer_Value fields of the literals.
4927
4928 Set_Etype (Lo, Empty);
4929 Set_Analyzed (Lo, False);
4930 Analyze (Lo);
4931
edd63e9b
ES
4932 -- Resolve with universal fixed if the base type, and the base type if
4933 -- it is a subtype. Note we can't resolve the base type with itself,
4934 -- that would be a reference before definition.
70482933
RK
4935
4936 if Typ = Btyp then
4937 Resolve (Lo, Universal_Fixed);
4938 else
4939 Resolve (Lo, Btyp);
4940 end if;
4941
4942 -- Set corresponding integer value for bound
4943
4944 Set_Corresponding_Integer_Value
4945 (Lo, UR_To_Uint (Realval (Lo) / Small));
4946
4947 -- Similar processing for high bound
4948
4949 Set_Etype (Hi, Empty);
4950 Set_Analyzed (Hi, False);
4951 Analyze (Hi);
4952
4953 if Typ = Btyp then
4954 Resolve (Hi, Universal_Fixed);
4955 else
4956 Resolve (Hi, Btyp);
4957 end if;
4958
4959 Set_Corresponding_Integer_Value
4960 (Hi, UR_To_Uint (Realval (Hi) / Small));
4961
4962 -- Set type of range to correspond to bounds
4963
4964 Set_Etype (Rng, Etype (Lo));
4965
fbf5a39b 4966 -- Set Esize to calculated size if not set already
70482933 4967
fbf5a39b
AC
4968 if Unknown_Esize (Typ) then
4969 Init_Esize (Typ, Actual_Size);
4970 end if;
70482933
RK
4971
4972 -- Set RM_Size if not already set. If already set, check value
4973
4974 declare
4975 Minsiz : constant Uint := UI_From_Int (Minimum_Size (Typ));
4976
4977 begin
4978 if RM_Size (Typ) /= Uint_0 then
4979 if RM_Size (Typ) < Minsiz then
4980 Error_Msg_Uint_1 := RM_Size (Typ);
4981 Error_Msg_Uint_2 := Minsiz;
4982 Error_Msg_NE
7d8b9c99 4983 ("size given (^) for type& too small, minimum allowed is ^",
70482933
RK
4984 Size_Clause (Typ), Typ);
4985 end if;
4986
4987 else
4988 Set_RM_Size (Typ, Minsiz);
4989 end if;
4990 end;
70482933
RK
4991 end Freeze_Fixed_Point_Type;
4992
4993 ------------------
4994 -- Freeze_Itype --
4995 ------------------
4996
4997 procedure Freeze_Itype (T : Entity_Id; N : Node_Id) is
4998 L : List_Id;
4999
5000 begin
5001 Set_Has_Delayed_Freeze (T);
5002 L := Freeze_Entity (T, Sloc (N));
5003
5004 if Is_Non_Empty_List (L) then
5005 Insert_Actions (N, L);
5006 end if;
5007 end Freeze_Itype;
5008
5009 --------------------------
5010 -- Freeze_Static_Object --
5011 --------------------------
5012
5013 procedure Freeze_Static_Object (E : Entity_Id) is
5014
5015 Cannot_Be_Static : exception;
5016 -- Exception raised if the type of a static object cannot be made
5017 -- static. This happens if the type depends on non-global objects.
5018
5019 procedure Ensure_Expression_Is_SA (N : Node_Id);
ee094616
RD
5020 -- Called to ensure that an expression used as part of a type definition
5021 -- is statically allocatable, which means that the expression type is
5022 -- statically allocatable, and the expression is either static, or a
5023 -- reference to a library level constant.
70482933
RK
5024
5025 procedure Ensure_Type_Is_SA (Typ : Entity_Id);
5026 -- Called to mark a type as static, checking that it is possible
5027 -- to set the type as static. If it is not possible, then the
5028 -- exception Cannot_Be_Static is raised.
5029
5030 -----------------------------
5031 -- Ensure_Expression_Is_SA --
5032 -----------------------------
5033
5034 procedure Ensure_Expression_Is_SA (N : Node_Id) is
5035 Ent : Entity_Id;
5036
5037 begin
5038 Ensure_Type_Is_SA (Etype (N));
5039
5040 if Is_Static_Expression (N) then
5041 return;
5042
5043 elsif Nkind (N) = N_Identifier then
5044 Ent := Entity (N);
5045
5046 if Present (Ent)
5047 and then Ekind (Ent) = E_Constant
5048 and then Is_Library_Level_Entity (Ent)
5049 then
5050 return;
5051 end if;
5052 end if;
5053
5054 raise Cannot_Be_Static;
5055 end Ensure_Expression_Is_SA;
5056
5057 -----------------------
5058 -- Ensure_Type_Is_SA --
5059 -----------------------
5060
5061 procedure Ensure_Type_Is_SA (Typ : Entity_Id) is
5062 N : Node_Id;
5063 C : Entity_Id;
5064
5065 begin
5066 -- If type is library level, we are all set
5067
5068 if Is_Library_Level_Entity (Typ) then
5069 return;
5070 end if;
5071
ee094616
RD
5072 -- We are also OK if the type already marked as statically allocated,
5073 -- which means we processed it before.
70482933
RK
5074
5075 if Is_Statically_Allocated (Typ) then
5076 return;
5077 end if;
5078
5079 -- Mark type as statically allocated
5080
5081 Set_Is_Statically_Allocated (Typ);
5082
5083 -- Check that it is safe to statically allocate this type
5084
5085 if Is_Scalar_Type (Typ) or else Is_Real_Type (Typ) then
5086 Ensure_Expression_Is_SA (Type_Low_Bound (Typ));
5087 Ensure_Expression_Is_SA (Type_High_Bound (Typ));
5088
5089 elsif Is_Array_Type (Typ) then
5090 N := First_Index (Typ);
5091 while Present (N) loop
5092 Ensure_Type_Is_SA (Etype (N));
5093 Next_Index (N);
5094 end loop;
5095
5096 Ensure_Type_Is_SA (Component_Type (Typ));
5097
5098 elsif Is_Access_Type (Typ) then
5099 if Ekind (Designated_Type (Typ)) = E_Subprogram_Type then
5100
5101 declare
5102 F : Entity_Id;
5103 T : constant Entity_Id := Etype (Designated_Type (Typ));
5104
5105 begin
5106 if T /= Standard_Void_Type then
5107 Ensure_Type_Is_SA (T);
5108 end if;
5109
5110 F := First_Formal (Designated_Type (Typ));
5111
5112 while Present (F) loop
5113 Ensure_Type_Is_SA (Etype (F));
5114 Next_Formal (F);
5115 end loop;
5116 end;
5117
5118 else
5119 Ensure_Type_Is_SA (Designated_Type (Typ));
5120 end if;
5121
5122 elsif Is_Record_Type (Typ) then
5123 C := First_Entity (Typ);
70482933
RK
5124 while Present (C) loop
5125 if Ekind (C) = E_Discriminant
5126 or else Ekind (C) = E_Component
5127 then
5128 Ensure_Type_Is_SA (Etype (C));
5129
5130 elsif Is_Type (C) then
5131 Ensure_Type_Is_SA (C);
5132 end if;
5133
5134 Next_Entity (C);
5135 end loop;
5136
5137 elsif Ekind (Typ) = E_Subprogram_Type then
5138 Ensure_Type_Is_SA (Etype (Typ));
5139
5140 C := First_Formal (Typ);
5141 while Present (C) loop
5142 Ensure_Type_Is_SA (Etype (C));
5143 Next_Formal (C);
5144 end loop;
5145
5146 else
5147 raise Cannot_Be_Static;
5148 end if;
5149 end Ensure_Type_Is_SA;
5150
5151 -- Start of processing for Freeze_Static_Object
5152
5153 begin
5154 Ensure_Type_Is_SA (Etype (E));
5155
5156 exception
5157 when Cannot_Be_Static =>
5158
09494c32
AC
5159 -- If the object that cannot be static is imported or exported, then
5160 -- issue an error message saying that this object cannot be imported
5161 -- or exported. If it has an address clause it is an overlay in the
5162 -- current partition and the static requirement is not relevant.
5163
5164 if Is_Imported (E) and then No (Address_Clause (E)) then
70482933
RK
5165 Error_Msg_N
5166 ("& cannot be imported (local type is not constant)", E);
5167
5168 -- Otherwise must be exported, something is wrong if compiler
5169 -- is marking something as statically allocated which cannot be).
5170
5171 else pragma Assert (Is_Exported (E));
5172 Error_Msg_N
5173 ("& cannot be exported (local type is not constant)", E);
5174 end if;
5175 end Freeze_Static_Object;
5176
5177 -----------------------
5178 -- Freeze_Subprogram --
5179 -----------------------
5180
5181 procedure Freeze_Subprogram (E : Entity_Id) is
5182 Retype : Entity_Id;
5183 F : Entity_Id;
5184
5185 begin
5186 -- Subprogram may not have an address clause unless it is imported
5187
5188 if Present (Address_Clause (E)) then
5189 if not Is_Imported (E) then
5190 Error_Msg_N
5191 ("address clause can only be given " &
5192 "for imported subprogram",
5193 Name (Address_Clause (E)));
5194 end if;
5195 end if;
5196
91b1417d
AC
5197 -- Reset the Pure indication on an imported subprogram unless an
5198 -- explicit Pure_Function pragma was present. We do this because
ee094616
RD
5199 -- otherwise it is an insidious error to call a non-pure function from
5200 -- pure unit and have calls mysteriously optimized away. What happens
5201 -- here is that the Import can bypass the normal check to ensure that
5202 -- pure units call only pure subprograms.
91b1417d
AC
5203
5204 if Is_Imported (E)
5205 and then Is_Pure (E)
5206 and then not Has_Pragma_Pure_Function (E)
5207 then
5208 Set_Is_Pure (E, False);
5209 end if;
5210
70482933
RK
5211 -- For non-foreign convention subprograms, this is where we create
5212 -- the extra formals (for accessibility level and constrained bit
5213 -- information). We delay this till the freeze point precisely so
5214 -- that we know the convention!
5215
5216 if not Has_Foreign_Convention (E) then
5217 Create_Extra_Formals (E);
5218 Set_Mechanisms (E);
5219
5220 -- If this is convention Ada and a Valued_Procedure, that's odd
5221
5222 if Ekind (E) = E_Procedure
5223 and then Is_Valued_Procedure (E)
5224 and then Convention (E) = Convention_Ada
fbf5a39b 5225 and then Warn_On_Export_Import
70482933
RK
5226 then
5227 Error_Msg_N
5228 ("?Valued_Procedure has no effect for convention Ada", E);
5229 Set_Is_Valued_Procedure (E, False);
5230 end if;
5231
5232 -- Case of foreign convention
5233
5234 else
5235 Set_Mechanisms (E);
5236
fbf5a39b 5237 -- For foreign conventions, warn about return of an
70482933
RK
5238 -- unconstrained array.
5239
5240 -- Note: we *do* allow a return by descriptor for the VMS case,
5241 -- though here there is probably more to be done ???
5242
5243 if Ekind (E) = E_Function then
5244 Retype := Underlying_Type (Etype (E));
5245
5246 -- If no return type, probably some other error, e.g. a
5247 -- missing full declaration, so ignore.
5248
5249 if No (Retype) then
5250 null;
5251
5252 -- If the return type is generic, we have emitted a warning
edd63e9b
ES
5253 -- earlier on, and there is nothing else to check here. Specific
5254 -- instantiations may lead to erroneous behavior.
70482933
RK
5255
5256 elsif Is_Generic_Type (Etype (E)) then
5257 null;
5258
e7d72fb9 5259 -- Display warning if returning unconstrained array
59366db6 5260
70482933
RK
5261 elsif Is_Array_Type (Retype)
5262 and then not Is_Constrained (Retype)
e7d72fb9
AC
5263
5264 -- Exclude cases where descriptor mechanism is set, since the
5265 -- VMS descriptor mechanisms allow such unconstrained returns.
5266
70482933 5267 and then Mechanism (E) not in Descriptor_Codes
e7d72fb9
AC
5268
5269 -- Check appropriate warning is enabled (should we check for
5270 -- Warnings (Off) on specific entities here, probably so???)
5271
fbf5a39b 5272 and then Warn_On_Export_Import
e7d72fb9
AC
5273
5274 -- Exclude the VM case, since return of unconstrained arrays
5275 -- is properly handled in both the JVM and .NET cases.
5276
f3b57ab0 5277 and then VM_Target = No_VM
70482933 5278 then
fbf5a39b
AC
5279 Error_Msg_N
5280 ("?foreign convention function& should not return " &
5281 "unconstrained array", E);
70482933
RK
5282 return;
5283 end if;
5284 end if;
5285
5286 -- If any of the formals for an exported foreign convention
edd63e9b
ES
5287 -- subprogram have defaults, then emit an appropriate warning since
5288 -- this is odd (default cannot be used from non-Ada code)
70482933
RK
5289
5290 if Is_Exported (E) then
5291 F := First_Formal (E);
5292 while Present (F) loop
fbf5a39b
AC
5293 if Warn_On_Export_Import
5294 and then Present (Default_Value (F))
5295 then
70482933
RK
5296 Error_Msg_N
5297 ("?parameter cannot be defaulted in non-Ada call",
5298 Default_Value (F));
5299 end if;
5300
5301 Next_Formal (F);
5302 end loop;
5303 end if;
5304 end if;
5305
e7d72fb9
AC
5306 -- For VMS, descriptor mechanisms for parameters are allowed only for
5307 -- imported/exported subprograms. Moreover, the NCA descriptor is not
5308 -- allowed for parameters of exported subprograms.
70482933
RK
5309
5310 if OpenVMS_On_Target then
7d8b9c99
RD
5311 if Is_Exported (E) then
5312 F := First_Formal (E);
5313 while Present (F) loop
5314 if Mechanism (F) = By_Descriptor_NCA then
5315 Error_Msg_N
5316 ("'N'C'A' descriptor for parameter not permitted", F);
5317 Error_Msg_N
5318 ("\can only be used for imported subprogram", F);
5319 end if;
5320
5321 Next_Formal (F);
5322 end loop;
5323
5324 elsif not Is_Imported (E) then
70482933
RK
5325 F := First_Formal (E);
5326 while Present (F) loop
5327 if Mechanism (F) in Descriptor_Codes then
5328 Error_Msg_N
5329 ("descriptor mechanism for parameter not permitted", F);
5330 Error_Msg_N
7d8b9c99 5331 ("\can only be used for imported/exported subprogram", F);
70482933
RK
5332 end if;
5333
5334 Next_Formal (F);
5335 end loop;
5336 end if;
5337 end if;
edd63e9b
ES
5338
5339 -- Pragma Inline_Always is disallowed for dispatching subprograms
5340 -- because the address of such subprograms is saved in the dispatch
5341 -- table to support dispatching calls, and dispatching calls cannot
5342 -- be inlined. This is consistent with the restriction against using
5343 -- 'Access or 'Address on an Inline_Always subprogram.
5344
def46b54
RD
5345 if Is_Dispatching_Operation (E)
5346 and then Has_Pragma_Inline_Always (E)
5347 then
edd63e9b
ES
5348 Error_Msg_N
5349 ("pragma Inline_Always not allowed for dispatching subprograms", E);
5350 end if;
c6a9797e
RD
5351
5352 -- Because of the implicit representation of inherited predefined
5353 -- operators in the front-end, the overriding status of the operation
5354 -- may be affected when a full view of a type is analyzed, and this is
5355 -- not captured by the analysis of the corresponding type declaration.
5356 -- Therefore the correctness of a not-overriding indicator must be
5357 -- rechecked when the subprogram is frozen.
5358
5359 if Nkind (E) = N_Defining_Operator_Symbol
5360 and then not Error_Posted (Parent (E))
5361 then
5362 Check_Overriding_Indicator (E, Empty, Is_Primitive (E));
5363 end if;
70482933
RK
5364 end Freeze_Subprogram;
5365
15ce9ca2
AC
5366 ----------------------
5367 -- Is_Fully_Defined --
5368 ----------------------
70482933 5369
70482933
RK
5370 function Is_Fully_Defined (T : Entity_Id) return Boolean is
5371 begin
5372 if Ekind (T) = E_Class_Wide_Type then
5373 return Is_Fully_Defined (Etype (T));
657a9dd9
AC
5374
5375 elsif Is_Array_Type (T) then
5376 return Is_Fully_Defined (Component_Type (T));
5377
5378 elsif Is_Record_Type (T)
5379 and not Is_Private_Type (T)
5380 then
ee094616
RD
5381 -- Verify that the record type has no components with private types
5382 -- without completion.
657a9dd9
AC
5383
5384 declare
5385 Comp : Entity_Id;
bde58e32 5386
657a9dd9
AC
5387 begin
5388 Comp := First_Component (T);
5389
5390 while Present (Comp) loop
5391 if not Is_Fully_Defined (Etype (Comp)) then
5392 return False;
5393 end if;
5394
5395 Next_Component (Comp);
5396 end loop;
5397 return True;
5398 end;
5399
86cde7b1
RD
5400 else
5401 return not Is_Private_Type (T)
5402 or else Present (Full_View (Base_Type (T)));
70482933
RK
5403 end if;
5404 end Is_Fully_Defined;
5405
70d904ca 5406 ---------------------------------
70482933
RK
5407 -- Process_Default_Expressions --
5408 ---------------------------------
5409
5410 procedure Process_Default_Expressions
5411 (E : Entity_Id;
5412 After : in out Node_Id)
5413 is
5414 Loc : constant Source_Ptr := Sloc (E);
5415 Dbody : Node_Id;
5416 Formal : Node_Id;
5417 Dcopy : Node_Id;
5418 Dnam : Entity_Id;
5419
5420 begin
5421 Set_Default_Expressions_Processed (E);
5422
ee094616
RD
5423 -- A subprogram instance and its associated anonymous subprogram share
5424 -- their signature. The default expression functions are defined in the
5425 -- wrapper packages for the anonymous subprogram, and should not be
5426 -- generated again for the instance.
70482933
RK
5427
5428 if Is_Generic_Instance (E)
5429 and then Present (Alias (E))
5430 and then Default_Expressions_Processed (Alias (E))
5431 then
5432 return;
5433 end if;
5434
5435 Formal := First_Formal (E);
70482933
RK
5436 while Present (Formal) loop
5437 if Present (Default_Value (Formal)) then
5438
5439 -- We work with a copy of the default expression because we
5440 -- do not want to disturb the original, since this would mess
5441 -- up the conformance checking.
5442
5443 Dcopy := New_Copy_Tree (Default_Value (Formal));
5444
5445 -- The analysis of the expression may generate insert actions,
5446 -- which of course must not be executed. We wrap those actions
5447 -- in a procedure that is not called, and later on eliminated.
5448 -- The following cases have no side-effects, and are analyzed
5449 -- directly.
5450
5451 if Nkind (Dcopy) = N_Identifier
5452 or else Nkind (Dcopy) = N_Expanded_Name
5453 or else Nkind (Dcopy) = N_Integer_Literal
5454 or else (Nkind (Dcopy) = N_Real_Literal
5455 and then not Vax_Float (Etype (Dcopy)))
5456 or else Nkind (Dcopy) = N_Character_Literal
5457 or else Nkind (Dcopy) = N_String_Literal
86cde7b1 5458 or else Known_Null (Dcopy)
70482933
RK
5459 or else (Nkind (Dcopy) = N_Attribute_Reference
5460 and then
5461 Attribute_Name (Dcopy) = Name_Null_Parameter)
70482933
RK
5462 then
5463
5464 -- If there is no default function, we must still do a full
ee094616
RD
5465 -- analyze call on the default value, to ensure that all error
5466 -- checks are performed, e.g. those associated with static
5467 -- evaluation. Note: this branch will always be taken if the
5468 -- analyzer is turned off (but we still need the error checks).
70482933
RK
5469
5470 -- Note: the setting of parent here is to meet the requirement
5471 -- that we can only analyze the expression while attached to
5472 -- the tree. Really the requirement is that the parent chain
5473 -- be set, we don't actually need to be in the tree.
5474
5475 Set_Parent (Dcopy, Declaration_Node (Formal));
5476 Analyze (Dcopy);
5477
5478 -- Default expressions are resolved with their own type if the
5479 -- context is generic, to avoid anomalies with private types.
5480
5481 if Ekind (Scope (E)) = E_Generic_Package then
fbf5a39b 5482 Resolve (Dcopy);
70482933
RK
5483 else
5484 Resolve (Dcopy, Etype (Formal));
5485 end if;
5486
5487 -- If that resolved expression will raise constraint error,
5488 -- then flag the default value as raising constraint error.
5489 -- This allows a proper error message on the calls.
5490
5491 if Raises_Constraint_Error (Dcopy) then
5492 Set_Raises_Constraint_Error (Default_Value (Formal));
5493 end if;
5494
5495 -- If the default is a parameterless call, we use the name of
5496 -- the called function directly, and there is no body to build.
5497
5498 elsif Nkind (Dcopy) = N_Function_Call
5499 and then No (Parameter_Associations (Dcopy))
5500 then
5501 null;
5502
5503 -- Else construct and analyze the body of a wrapper procedure
5504 -- that contains an object declaration to hold the expression.
5505 -- Given that this is done only to complete the analysis, it
5506 -- simpler to build a procedure than a function which might
5507 -- involve secondary stack expansion.
5508
5509 else
5510 Dnam :=
5511 Make_Defining_Identifier (Loc, New_Internal_Name ('D'));
5512
5513 Dbody :=
5514 Make_Subprogram_Body (Loc,
5515 Specification =>
5516 Make_Procedure_Specification (Loc,
5517 Defining_Unit_Name => Dnam),
5518
5519 Declarations => New_List (
5520 Make_Object_Declaration (Loc,
5521 Defining_Identifier =>
5522 Make_Defining_Identifier (Loc,
5523 New_Internal_Name ('T')),
5524 Object_Definition =>
5525 New_Occurrence_Of (Etype (Formal), Loc),
5526 Expression => New_Copy_Tree (Dcopy))),
5527
5528 Handled_Statement_Sequence =>
5529 Make_Handled_Sequence_Of_Statements (Loc,
5530 Statements => New_List));
5531
5532 Set_Scope (Dnam, Scope (E));
5533 Set_Assignment_OK (First (Declarations (Dbody)));
5534 Set_Is_Eliminated (Dnam);
5535 Insert_After (After, Dbody);
5536 Analyze (Dbody);
5537 After := Dbody;
5538 end if;
5539 end if;
5540
5541 Next_Formal (Formal);
5542 end loop;
70482933
RK
5543 end Process_Default_Expressions;
5544
5545 ----------------------------------------
5546 -- Set_Component_Alignment_If_Not_Set --
5547 ----------------------------------------
5548
5549 procedure Set_Component_Alignment_If_Not_Set (Typ : Entity_Id) is
5550 begin
5551 -- Ignore if not base type, subtypes don't need anything
5552
5553 if Typ /= Base_Type (Typ) then
5554 return;
5555 end if;
5556
5557 -- Do not override existing representation
5558
5559 if Is_Packed (Typ) then
5560 return;
5561
5562 elsif Has_Specified_Layout (Typ) then
5563 return;
5564
5565 elsif Component_Alignment (Typ) /= Calign_Default then
5566 return;
5567
5568 else
5569 Set_Component_Alignment
5570 (Typ, Scope_Stack.Table
5571 (Scope_Stack.Last).Component_Alignment_Default);
5572 end if;
5573 end Set_Component_Alignment_If_Not_Set;
5574
c6823a20
EB
5575 ------------------
5576 -- Undelay_Type --
5577 ------------------
5578
5579 procedure Undelay_Type (T : Entity_Id) is
5580 begin
5581 Set_Has_Delayed_Freeze (T, False);
5582 Set_Freeze_Node (T, Empty);
5583
5584 -- Since we don't want T to have a Freeze_Node, we don't want its
5585 -- Full_View or Corresponding_Record_Type to have one either.
5586
5587 -- ??? Fundamentally, this whole handling is a kludge. What we really
ee094616
RD
5588 -- want is to be sure that for an Itype that's part of record R and is a
5589 -- subtype of type T, that it's frozen after the later of the freeze
c6823a20
EB
5590 -- points of R and T. We have no way of doing that directly, so what we
5591 -- do is force most such Itypes to be frozen as part of freezing R via
5592 -- this procedure and only delay the ones that need to be delayed
ee094616
RD
5593 -- (mostly the designated types of access types that are defined as part
5594 -- of the record).
c6823a20
EB
5595
5596 if Is_Private_Type (T)
5597 and then Present (Full_View (T))
5598 and then Is_Itype (Full_View (T))
5599 and then Is_Record_Type (Scope (Full_View (T)))
5600 then
5601 Undelay_Type (Full_View (T));
5602 end if;
5603
5604 if Is_Concurrent_Type (T)
5605 and then Present (Corresponding_Record_Type (T))
5606 and then Is_Itype (Corresponding_Record_Type (T))
5607 and then Is_Record_Type (Scope (Corresponding_Record_Type (T)))
5608 then
5609 Undelay_Type (Corresponding_Record_Type (T));
5610 end if;
5611 end Undelay_Type;
5612
fbf5a39b
AC
5613 ------------------
5614 -- Warn_Overlay --
5615 ------------------
5616
5617 procedure Warn_Overlay
5618 (Expr : Node_Id;
5619 Typ : Entity_Id;
5620 Nam : Entity_Id)
5621 is
5622 Ent : constant Entity_Id := Entity (Nam);
49e90211 5623 -- The object to which the address clause applies
fbf5a39b
AC
5624
5625 Init : Node_Id;
5626 Old : Entity_Id := Empty;
5627 Decl : Node_Id;
5628
5629 begin
5630 -- No warning if address clause overlay warnings are off
5631
5632 if not Address_Clause_Overlay_Warnings then
5633 return;
5634 end if;
5635
5636 -- No warning if there is an explicit initialization
5637
5638 Init := Original_Node (Expression (Declaration_Node (Ent)));
5639
5640 if Present (Init) and then Comes_From_Source (Init) then
5641 return;
5642 end if;
5643
edd63e9b 5644 -- We only give the warning for non-imported entities of a type for
0ac73189
AC
5645 -- which a non-null base init proc is defined, or for objects of access
5646 -- types with implicit null initialization, or when Initialize_Scalars
5647 -- applies and the type is scalar or a string type (the latter being
5648 -- tested for because predefined String types are initialized by inline
5649 -- code rather than by an init_proc).
fbf5a39b
AC
5650
5651 if Present (Expr)
fbf5a39b 5652 and then not Is_Imported (Ent)
0ac73189
AC
5653 and then (Has_Non_Null_Base_Init_Proc (Typ)
5654 or else Is_Access_Type (Typ)
5655 or else (Init_Or_Norm_Scalars
5656 and then (Is_Scalar_Type (Typ)
5657 or else Is_String_Type (Typ))))
fbf5a39b
AC
5658 then
5659 if Nkind (Expr) = N_Attribute_Reference
5660 and then Is_Entity_Name (Prefix (Expr))
5661 then
5662 Old := Entity (Prefix (Expr));
5663
5664 elsif Is_Entity_Name (Expr)
5665 and then Ekind (Entity (Expr)) = E_Constant
5666 then
5667 Decl := Declaration_Node (Entity (Expr));
5668
5669 if Nkind (Decl) = N_Object_Declaration
5670 and then Present (Expression (Decl))
5671 and then Nkind (Expression (Decl)) = N_Attribute_Reference
5672 and then Is_Entity_Name (Prefix (Expression (Decl)))
5673 then
5674 Old := Entity (Prefix (Expression (Decl)));
5675
5676 elsif Nkind (Expr) = N_Function_Call then
5677 return;
5678 end if;
5679
ee094616
RD
5680 -- A function call (most likely to To_Address) is probably not an
5681 -- overlay, so skip warning. Ditto if the function call was inlined
5682 -- and transformed into an entity.
fbf5a39b
AC
5683
5684 elsif Nkind (Original_Node (Expr)) = N_Function_Call then
5685 return;
5686 end if;
5687
5688 Decl := Next (Parent (Expr));
5689
5690 -- If a pragma Import follows, we assume that it is for the current
5691 -- target of the address clause, and skip the warning.
5692
5693 if Present (Decl)
5694 and then Nkind (Decl) = N_Pragma
1b24ada5 5695 and then Pragma_Name (Decl) = Name_Import
fbf5a39b
AC
5696 then
5697 return;
5698 end if;
5699
5700 if Present (Old) then
5701 Error_Msg_Node_2 := Old;
5702 Error_Msg_N
5703 ("default initialization of & may modify &?",
5704 Nam);
5705 else
5706 Error_Msg_N
5707 ("default initialization of & may modify overlaid storage?",
5708 Nam);
5709 end if;
5710
5711 -- Add friendly warning if initialization comes from a packed array
5712 -- component.
5713
5714 if Is_Record_Type (Typ) then
5715 declare
5716 Comp : Entity_Id;
5717
5718 begin
5719 Comp := First_Component (Typ);
5720
5721 while Present (Comp) loop
5722 if Nkind (Parent (Comp)) = N_Component_Declaration
5723 and then Present (Expression (Parent (Comp)))
5724 then
5725 exit;
5726 elsif Is_Array_Type (Etype (Comp))
5727 and then Present (Packed_Array_Type (Etype (Comp)))
5728 then
5729 Error_Msg_NE
3f1ede06
RD
5730 ("\packed array component& " &
5731 "will be initialized to zero?",
5732 Nam, Comp);
fbf5a39b
AC
5733 exit;
5734 else
5735 Next_Component (Comp);
5736 end if;
5737 end loop;
5738 end;
5739 end if;
5740
5741 Error_Msg_N
3f1ede06 5742 ("\use pragma Import for & to " &
86cde7b1 5743 "suppress initialization (RM B.1(24))?",
3f1ede06 5744 Nam);
fbf5a39b
AC
5745 end if;
5746 end Warn_Overlay;
5747
70482933 5748end Freeze;
This page took 2.635373 seconds and 5 git commands to generate.