OSDN Git Service

bd1748b1de27e03054333aaca9022a4b682addc4
[pf3gnuchains/gcc-fork.git] / gcc / ada / exp_util.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             E X P _ U T I L                              --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2009, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 3,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT; see file COPYING3.  If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with Atree;    use Atree;
27 with Checks;   use Checks;
28 with Debug;    use Debug;
29 with Einfo;    use Einfo;
30 with Elists;   use Elists;
31 with Errout;   use Errout;
32 with Exp_Aggr; use Exp_Aggr;
33 with Exp_Ch6;  use Exp_Ch6;
34 with Exp_Ch7;  use Exp_Ch7;
35 with Inline;   use Inline;
36 with Itypes;   use Itypes;
37 with Lib;      use Lib;
38 with Nlists;   use Nlists;
39 with Nmake;    use Nmake;
40 with Opt;      use Opt;
41 with Restrict; use Restrict;
42 with Rident;   use Rident;
43 with Sem;      use Sem;
44 with Sem_Aux;  use Sem_Aux;
45 with Sem_Ch8;  use Sem_Ch8;
46 with Sem_SCIL; use Sem_SCIL;
47 with Sem_Eval; use Sem_Eval;
48 with Sem_Res;  use Sem_Res;
49 with Sem_Type; use Sem_Type;
50 with Sem_Util; use Sem_Util;
51 with Snames;   use Snames;
52 with Stand;    use Stand;
53 with Stringt;  use Stringt;
54 with Targparm; use Targparm;
55 with Tbuild;   use Tbuild;
56 with Ttypes;   use Ttypes;
57 with Uintp;    use Uintp;
58 with Urealp;   use Urealp;
59 with Validsw;  use Validsw;
60
61 package body Exp_Util is
62
63    -----------------------
64    -- Local Subprograms --
65    -----------------------
66
67    function Build_Task_Array_Image
68      (Loc    : Source_Ptr;
69       Id_Ref : Node_Id;
70       A_Type : Entity_Id;
71       Dyn    : Boolean := False) return Node_Id;
72    --  Build function to generate the image string for a task that is an
73    --  array component, concatenating the images of each index. To avoid
74    --  storage leaks, the string is built with successive slice assignments.
75    --  The flag Dyn indicates whether this is called for the initialization
76    --  procedure of an array of tasks, or for the name of a dynamically
77    --  created task that is assigned to an indexed component.
78
79    function Build_Task_Image_Function
80      (Loc   : Source_Ptr;
81       Decls : List_Id;
82       Stats : List_Id;
83       Res   : Entity_Id) return Node_Id;
84    --  Common processing for Task_Array_Image and Task_Record_Image.
85    --  Build function body that computes image.
86
87    procedure Build_Task_Image_Prefix
88       (Loc    : Source_Ptr;
89        Len    : out Entity_Id;
90        Res    : out Entity_Id;
91        Pos    : out Entity_Id;
92        Prefix : Entity_Id;
93        Sum    : Node_Id;
94        Decls  : List_Id;
95        Stats  : List_Id);
96    --  Common processing for Task_Array_Image and Task_Record_Image.
97    --  Create local variables and assign prefix of name to result string.
98
99    function Build_Task_Record_Image
100      (Loc    : Source_Ptr;
101       Id_Ref : Node_Id;
102       Dyn    : Boolean := False) return Node_Id;
103    --  Build function to generate the image string for a task that is a
104    --  record component. Concatenate name of variable with that of selector.
105    --  The flag Dyn indicates whether this is called for the initialization
106    --  procedure of record with task components, or for a dynamically
107    --  created task that is assigned to a selected component.
108
109    function Make_CW_Equivalent_Type
110      (T : Entity_Id;
111       E : Node_Id) return Entity_Id;
112    --  T is a class-wide type entity, E is the initial expression node that
113    --  constrains T in case such as: " X: T := E" or "new T'(E)"
114    --  This function returns the entity of the Equivalent type and inserts
115    --  on the fly the necessary declaration such as:
116    --
117    --    type anon is record
118    --       _parent : Root_Type (T); constrained with E discriminants (if any)
119    --       Extension : String (1 .. expr to match size of E);
120    --    end record;
121    --
122    --  This record is compatible with any object of the class of T thanks
123    --  to the first field and has the same size as E thanks to the second.
124
125    function Make_Literal_Range
126      (Loc         : Source_Ptr;
127       Literal_Typ : Entity_Id) return Node_Id;
128    --  Produce a Range node whose bounds are:
129    --    Low_Bound (Literal_Type) ..
130    --        Low_Bound (Literal_Type) + (Length (Literal_Typ) - 1)
131    --  this is used for expanding declarations like X : String := "sdfgdfg";
132    --
133    --  If the index type of the target array is not integer, we generate:
134    --     Low_Bound (Literal_Type) ..
135    --        Literal_Type'Val
136    --          (Literal_Type'Pos (Low_Bound (Literal_Type))
137    --             + (Length (Literal_Typ) -1))
138
139    function Make_Non_Empty_Check
140      (Loc : Source_Ptr;
141       N   : Node_Id) return Node_Id;
142    --  Produce a boolean expression checking that the unidimensional array
143    --  node N is not empty.
144
145    function New_Class_Wide_Subtype
146      (CW_Typ : Entity_Id;
147       N      : Node_Id) return Entity_Id;
148    --  Create an implicit subtype of CW_Typ attached to node N
149
150    ----------------------
151    -- Adjust_Condition --
152    ----------------------
153
154    procedure Adjust_Condition (N : Node_Id) is
155    begin
156       if No (N) then
157          return;
158       end if;
159
160       declare
161          Loc : constant Source_Ptr := Sloc (N);
162          T   : constant Entity_Id  := Etype (N);
163          Ti  : Entity_Id;
164
165       begin
166          --  For now, we simply ignore a call where the argument has no
167          --  type (probably case of unanalyzed condition), or has a type
168          --  that is not Boolean. This is because this is a pretty marginal
169          --  piece of functionality, and violations of these rules are
170          --  likely to be truly marginal (how much code uses Fortran Logical
171          --  as the barrier to a protected entry?) and we do not want to
172          --  blow up existing programs. We can change this to an assertion
173          --  after 3.12a is released ???
174
175          if No (T) or else not Is_Boolean_Type (T) then
176             return;
177          end if;
178
179          --  Apply validity checking if needed
180
181          if Validity_Checks_On and Validity_Check_Tests then
182             Ensure_Valid (N);
183          end if;
184
185          --  Immediate return if standard boolean, the most common case,
186          --  where nothing needs to be done.
187
188          if Base_Type (T) = Standard_Boolean then
189             return;
190          end if;
191
192          --  Case of zero/non-zero semantics or non-standard enumeration
193          --  representation. In each case, we rewrite the node as:
194
195          --      ityp!(N) /= False'Enum_Rep
196
197          --  where ityp is an integer type with large enough size to hold
198          --  any value of type T.
199
200          if Nonzero_Is_True (T) or else Has_Non_Standard_Rep (T) then
201             if Esize (T) <= Esize (Standard_Integer) then
202                Ti := Standard_Integer;
203             else
204                Ti := Standard_Long_Long_Integer;
205             end if;
206
207             Rewrite (N,
208               Make_Op_Ne (Loc,
209                 Left_Opnd  => Unchecked_Convert_To (Ti, N),
210                 Right_Opnd =>
211                   Make_Attribute_Reference (Loc,
212                     Attribute_Name => Name_Enum_Rep,
213                     Prefix         =>
214                       New_Occurrence_Of (First_Literal (T), Loc))));
215             Analyze_And_Resolve (N, Standard_Boolean);
216
217          else
218             Rewrite (N, Convert_To (Standard_Boolean, N));
219             Analyze_And_Resolve (N, Standard_Boolean);
220          end if;
221       end;
222    end Adjust_Condition;
223
224    ------------------------
225    -- Adjust_Result_Type --
226    ------------------------
227
228    procedure Adjust_Result_Type (N : Node_Id; T : Entity_Id) is
229    begin
230       --  Ignore call if current type is not Standard.Boolean
231
232       if Etype (N) /= Standard_Boolean then
233          return;
234       end if;
235
236       --  If result is already of correct type, nothing to do. Note that
237       --  this will get the most common case where everything has a type
238       --  of Standard.Boolean.
239
240       if Base_Type (T) = Standard_Boolean then
241          return;
242
243       else
244          declare
245             KP : constant Node_Kind := Nkind (Parent (N));
246
247          begin
248             --  If result is to be used as a Condition in the syntax, no need
249             --  to convert it back, since if it was changed to Standard.Boolean
250             --  using Adjust_Condition, that is just fine for this usage.
251
252             if KP in N_Raise_xxx_Error or else KP in N_Has_Condition then
253                return;
254
255             --  If result is an operand of another logical operation, no need
256             --  to reset its type, since Standard.Boolean is just fine, and
257             --  such operations always do Adjust_Condition on their operands.
258
259             elsif     KP in N_Op_Boolean
260               or else KP in N_Short_Circuit
261               or else KP = N_Op_Not
262             then
263                return;
264
265             --  Otherwise we perform a conversion from the current type,
266             --  which must be Standard.Boolean, to the desired type.
267
268             else
269                Set_Analyzed (N);
270                Rewrite (N, Convert_To (T, N));
271                Analyze_And_Resolve (N, T);
272             end if;
273          end;
274       end if;
275    end Adjust_Result_Type;
276
277    --------------------------
278    -- Append_Freeze_Action --
279    --------------------------
280
281    procedure Append_Freeze_Action (T : Entity_Id; N : Node_Id) is
282       Fnode : Node_Id;
283
284    begin
285       Ensure_Freeze_Node (T);
286       Fnode := Freeze_Node (T);
287
288       if No (Actions (Fnode)) then
289          Set_Actions (Fnode, New_List);
290       end if;
291
292       Append (N, Actions (Fnode));
293    end Append_Freeze_Action;
294
295    ---------------------------
296    -- Append_Freeze_Actions --
297    ---------------------------
298
299    procedure Append_Freeze_Actions (T : Entity_Id; L : List_Id) is
300       Fnode : constant Node_Id := Freeze_Node (T);
301
302    begin
303       if No (L) then
304          return;
305
306       else
307          if No (Actions (Fnode)) then
308             Set_Actions (Fnode, L);
309
310          else
311             Append_List (L, Actions (Fnode));
312          end if;
313
314       end if;
315    end Append_Freeze_Actions;
316
317    ------------------------
318    -- Build_Runtime_Call --
319    ------------------------
320
321    function Build_Runtime_Call (Loc : Source_Ptr; RE : RE_Id) return Node_Id is
322    begin
323       --  If entity is not available, we can skip making the call (this avoids
324       --  junk duplicated error messages in a number of cases).
325
326       if not RTE_Available (RE) then
327          return Make_Null_Statement (Loc);
328       else
329          return
330            Make_Procedure_Call_Statement (Loc,
331              Name => New_Reference_To (RTE (RE), Loc));
332       end if;
333    end Build_Runtime_Call;
334
335    ----------------------------
336    -- Build_Task_Array_Image --
337    ----------------------------
338
339    --  This function generates the body for a function that constructs the
340    --  image string for a task that is an array component. The function is
341    --  local to the init proc for the array type, and is called for each one
342    --  of the components. The constructed image has the form of an indexed
343    --  component, whose prefix is the outer variable of the array type.
344    --  The n-dimensional array type has known indices Index, Index2...
345    --  Id_Ref is an indexed component form created by the enclosing init proc.
346    --  Its successive indices are Val1, Val2, ... which are the loop variables
347    --  in the loops that call the individual task init proc on each component.
348
349    --  The generated function has the following structure:
350
351    --  function F return String is
352    --     Pref : string renames Task_Name;
353    --     T1   : String := Index1'Image (Val1);
354    --     ...
355    --     Tn   : String := indexn'image (Valn);
356    --     Len  : Integer := T1'Length + ... + Tn'Length + n + 1;
357    --     --  Len includes commas and the end parentheses.
358    --     Res  : String (1..Len);
359    --     Pos  : Integer := Pref'Length;
360    --
361    --  begin
362    --     Res (1 .. Pos) := Pref;
363    --     Pos := Pos + 1;
364    --     Res (Pos)    := '(';
365    --     Pos := Pos + 1;
366    --     Res (Pos .. Pos + T1'Length - 1) := T1;
367    --     Pos := Pos + T1'Length;
368    --     Res (Pos) := '.';
369    --     Pos := Pos + 1;
370    --     ...
371    --     Res (Pos .. Pos + Tn'Length - 1) := Tn;
372    --     Res (Len) := ')';
373    --
374    --     return Res;
375    --  end F;
376    --
377    --  Needless to say, multidimensional arrays of tasks are rare enough
378    --  that the bulkiness of this code is not really a concern.
379
380    function Build_Task_Array_Image
381      (Loc    : Source_Ptr;
382       Id_Ref : Node_Id;
383       A_Type : Entity_Id;
384       Dyn    : Boolean := False) return Node_Id
385    is
386       Dims : constant Nat := Number_Dimensions (A_Type);
387       --  Number of dimensions for array of tasks
388
389       Temps : array (1 .. Dims) of Entity_Id;
390       --  Array of temporaries to hold string for each index
391
392       Indx : Node_Id;
393       --  Index expression
394
395       Len : Entity_Id;
396       --  Total length of generated name
397
398       Pos : Entity_Id;
399       --  Running index for substring assignments
400
401       Pref : Entity_Id;
402       --  Name of enclosing variable, prefix of resulting name
403
404       Res : Entity_Id;
405       --  String to hold result
406
407       Val : Node_Id;
408       --  Value of successive indices
409
410       Sum : Node_Id;
411       --  Expression to compute total size of string
412
413       T : Entity_Id;
414       --  Entity for name at one index position
415
416       Decls : constant List_Id := New_List;
417       Stats : constant List_Id := New_List;
418
419    begin
420       Pref := Make_Defining_Identifier (Loc, New_Internal_Name ('P'));
421
422       --  For a dynamic task, the name comes from the target variable.
423       --  For a static one it is a formal of the enclosing init proc.
424
425       if Dyn then
426          Get_Name_String (Chars (Entity (Prefix (Id_Ref))));
427          Append_To (Decls,
428            Make_Object_Declaration (Loc,
429              Defining_Identifier => Pref,
430              Object_Definition => New_Occurrence_Of (Standard_String, Loc),
431              Expression =>
432                Make_String_Literal (Loc,
433                  Strval => String_From_Name_Buffer)));
434
435       else
436          Append_To (Decls,
437            Make_Object_Renaming_Declaration (Loc,
438              Defining_Identifier => Pref,
439              Subtype_Mark        => New_Occurrence_Of (Standard_String, Loc),
440              Name                => Make_Identifier (Loc, Name_uTask_Name)));
441       end if;
442
443       Indx := First_Index (A_Type);
444       Val  := First (Expressions (Id_Ref));
445
446       for J in 1 .. Dims loop
447          T := Make_Defining_Identifier (Loc, New_Internal_Name ('T'));
448          Temps (J) := T;
449
450          Append_To (Decls,
451             Make_Object_Declaration (Loc,
452                Defining_Identifier => T,
453                Object_Definition => New_Occurrence_Of (Standard_String, Loc),
454                Expression =>
455                  Make_Attribute_Reference (Loc,
456                    Attribute_Name => Name_Image,
457                    Prefix =>
458                      New_Occurrence_Of (Etype (Indx), Loc),
459                    Expressions => New_List (
460                      New_Copy_Tree (Val)))));
461
462          Next_Index (Indx);
463          Next (Val);
464       end loop;
465
466       Sum := Make_Integer_Literal (Loc, Dims + 1);
467
468       Sum :=
469         Make_Op_Add (Loc,
470           Left_Opnd => Sum,
471           Right_Opnd =>
472            Make_Attribute_Reference (Loc,
473              Attribute_Name => Name_Length,
474              Prefix =>
475                New_Occurrence_Of (Pref, Loc),
476              Expressions => New_List (Make_Integer_Literal (Loc, 1))));
477
478       for J in 1 .. Dims loop
479          Sum :=
480             Make_Op_Add (Loc,
481              Left_Opnd => Sum,
482              Right_Opnd =>
483               Make_Attribute_Reference (Loc,
484                 Attribute_Name => Name_Length,
485                 Prefix =>
486                   New_Occurrence_Of (Temps (J), Loc),
487                 Expressions => New_List (Make_Integer_Literal (Loc, 1))));
488       end loop;
489
490       Build_Task_Image_Prefix (Loc, Len, Res, Pos, Pref, Sum, Decls, Stats);
491
492       Set_Character_Literal_Name (Char_Code (Character'Pos ('(')));
493
494       Append_To (Stats,
495          Make_Assignment_Statement (Loc,
496            Name => Make_Indexed_Component (Loc,
497               Prefix => New_Occurrence_Of (Res, Loc),
498               Expressions => New_List (New_Occurrence_Of (Pos, Loc))),
499            Expression =>
500              Make_Character_Literal (Loc,
501                Chars => Name_Find,
502                Char_Literal_Value =>
503                  UI_From_Int (Character'Pos ('(')))));
504
505       Append_To (Stats,
506          Make_Assignment_Statement (Loc,
507             Name => New_Occurrence_Of (Pos, Loc),
508             Expression =>
509               Make_Op_Add (Loc,
510                 Left_Opnd => New_Occurrence_Of (Pos, Loc),
511                 Right_Opnd => Make_Integer_Literal (Loc, 1))));
512
513       for J in 1 .. Dims loop
514
515          Append_To (Stats,
516             Make_Assignment_Statement (Loc,
517               Name => Make_Slice (Loc,
518                  Prefix => New_Occurrence_Of (Res, Loc),
519                  Discrete_Range  =>
520                    Make_Range (Loc,
521                       Low_Bound => New_Occurrence_Of  (Pos, Loc),
522                       High_Bound => Make_Op_Subtract (Loc,
523                         Left_Opnd =>
524                           Make_Op_Add (Loc,
525                             Left_Opnd => New_Occurrence_Of (Pos, Loc),
526                             Right_Opnd =>
527                               Make_Attribute_Reference (Loc,
528                                 Attribute_Name => Name_Length,
529                                 Prefix =>
530                                   New_Occurrence_Of (Temps (J), Loc),
531                                 Expressions =>
532                                   New_List (Make_Integer_Literal (Loc, 1)))),
533                          Right_Opnd => Make_Integer_Literal (Loc, 1)))),
534
535               Expression => New_Occurrence_Of (Temps (J), Loc)));
536
537          if J < Dims then
538             Append_To (Stats,
539                Make_Assignment_Statement (Loc,
540                   Name => New_Occurrence_Of (Pos, Loc),
541                   Expression =>
542                     Make_Op_Add (Loc,
543                       Left_Opnd => New_Occurrence_Of (Pos, Loc),
544                       Right_Opnd =>
545                         Make_Attribute_Reference (Loc,
546                           Attribute_Name => Name_Length,
547                             Prefix => New_Occurrence_Of (Temps (J), Loc),
548                             Expressions =>
549                               New_List (Make_Integer_Literal (Loc, 1))))));
550
551             Set_Character_Literal_Name (Char_Code (Character'Pos (',')));
552
553             Append_To (Stats,
554                Make_Assignment_Statement (Loc,
555                  Name => Make_Indexed_Component (Loc,
556                     Prefix => New_Occurrence_Of (Res, Loc),
557                     Expressions => New_List (New_Occurrence_Of (Pos, Loc))),
558                  Expression =>
559                    Make_Character_Literal (Loc,
560                      Chars => Name_Find,
561                      Char_Literal_Value =>
562                        UI_From_Int (Character'Pos (',')))));
563
564             Append_To (Stats,
565               Make_Assignment_Statement (Loc,
566                 Name => New_Occurrence_Of (Pos, Loc),
567                   Expression =>
568                     Make_Op_Add (Loc,
569                       Left_Opnd => New_Occurrence_Of (Pos, Loc),
570                       Right_Opnd => Make_Integer_Literal (Loc, 1))));
571          end if;
572       end loop;
573
574       Set_Character_Literal_Name (Char_Code (Character'Pos (')')));
575
576       Append_To (Stats,
577          Make_Assignment_Statement (Loc,
578            Name => Make_Indexed_Component (Loc,
579               Prefix => New_Occurrence_Of (Res, Loc),
580               Expressions => New_List (New_Occurrence_Of (Len, Loc))),
581            Expression =>
582              Make_Character_Literal (Loc,
583                Chars => Name_Find,
584                Char_Literal_Value =>
585                  UI_From_Int (Character'Pos (')')))));
586       return Build_Task_Image_Function (Loc, Decls, Stats, Res);
587    end Build_Task_Array_Image;
588
589    ----------------------------
590    -- Build_Task_Image_Decls --
591    ----------------------------
592
593    function Build_Task_Image_Decls
594      (Loc          : Source_Ptr;
595       Id_Ref       : Node_Id;
596       A_Type       : Entity_Id;
597       In_Init_Proc : Boolean := False) return List_Id
598    is
599       Decls  : constant List_Id   := New_List;
600       T_Id   : Entity_Id := Empty;
601       Decl   : Node_Id;
602       Expr   : Node_Id   := Empty;
603       Fun    : Node_Id   := Empty;
604       Is_Dyn : constant Boolean :=
605                  Nkind (Parent (Id_Ref)) = N_Assignment_Statement
606                    and then
607                  Nkind (Expression (Parent (Id_Ref))) = N_Allocator;
608
609    begin
610       --  If Discard_Names or No_Implicit_Heap_Allocations are in effect,
611       --  generate a dummy declaration only.
612
613       if Restriction_Active (No_Implicit_Heap_Allocations)
614         or else Global_Discard_Names
615       then
616          T_Id := Make_Defining_Identifier (Loc, New_Internal_Name ('J'));
617          Name_Len := 0;
618
619          return
620            New_List (
621              Make_Object_Declaration (Loc,
622                Defining_Identifier => T_Id,
623                Object_Definition => New_Occurrence_Of (Standard_String, Loc),
624                Expression =>
625                  Make_String_Literal (Loc,
626                    Strval => String_From_Name_Buffer)));
627
628       else
629          if Nkind (Id_Ref) = N_Identifier
630            or else Nkind (Id_Ref) = N_Defining_Identifier
631          then
632             --  For a simple variable, the image of the task is built from
633             --  the name of the variable. To avoid possible conflict with
634             --  the anonymous type created for a single protected object,
635             --  add a numeric suffix.
636
637             T_Id :=
638               Make_Defining_Identifier (Loc,
639                 New_External_Name (Chars (Id_Ref), 'T', 1));
640
641             Get_Name_String (Chars (Id_Ref));
642
643             Expr :=
644               Make_String_Literal (Loc,
645                 Strval => String_From_Name_Buffer);
646
647          elsif Nkind (Id_Ref) = N_Selected_Component then
648             T_Id :=
649               Make_Defining_Identifier (Loc,
650                 New_External_Name (Chars (Selector_Name (Id_Ref)), 'T'));
651             Fun := Build_Task_Record_Image (Loc, Id_Ref, Is_Dyn);
652
653          elsif Nkind (Id_Ref) = N_Indexed_Component then
654             T_Id :=
655               Make_Defining_Identifier (Loc,
656                 New_External_Name (Chars (A_Type), 'N'));
657
658             Fun := Build_Task_Array_Image (Loc, Id_Ref, A_Type, Is_Dyn);
659          end if;
660       end if;
661
662       if Present (Fun) then
663          Append (Fun, Decls);
664          Expr := Make_Function_Call (Loc,
665            Name => New_Occurrence_Of (Defining_Entity (Fun), Loc));
666
667          if not In_Init_Proc and then VM_Target = No_VM then
668             Set_Uses_Sec_Stack (Defining_Entity (Fun));
669          end if;
670       end if;
671
672       Decl := Make_Object_Declaration (Loc,
673         Defining_Identifier => T_Id,
674         Object_Definition   => New_Occurrence_Of (Standard_String, Loc),
675         Constant_Present    => True,
676         Expression          => Expr);
677
678       Append (Decl, Decls);
679       return Decls;
680    end Build_Task_Image_Decls;
681
682    -------------------------------
683    -- Build_Task_Image_Function --
684    -------------------------------
685
686    function Build_Task_Image_Function
687      (Loc   : Source_Ptr;
688       Decls : List_Id;
689       Stats : List_Id;
690       Res   : Entity_Id) return Node_Id
691    is
692       Spec : Node_Id;
693
694    begin
695       Append_To (Stats,
696         Make_Simple_Return_Statement (Loc,
697           Expression => New_Occurrence_Of (Res, Loc)));
698
699       Spec := Make_Function_Specification (Loc,
700         Defining_Unit_Name =>
701           Make_Defining_Identifier (Loc, New_Internal_Name ('F')),
702         Result_Definition => New_Occurrence_Of (Standard_String, Loc));
703
704       --  Calls to 'Image use the secondary stack, which must be cleaned
705       --  up after the task name is built.
706
707       return Make_Subprogram_Body (Loc,
708          Specification => Spec,
709          Declarations => Decls,
710          Handled_Statement_Sequence =>
711            Make_Handled_Sequence_Of_Statements (Loc, Statements => Stats));
712    end Build_Task_Image_Function;
713
714    -----------------------------
715    -- Build_Task_Image_Prefix --
716    -----------------------------
717
718    procedure Build_Task_Image_Prefix
719       (Loc    : Source_Ptr;
720        Len    : out Entity_Id;
721        Res    : out Entity_Id;
722        Pos    : out Entity_Id;
723        Prefix : Entity_Id;
724        Sum    : Node_Id;
725        Decls  : List_Id;
726        Stats  : List_Id)
727    is
728    begin
729       Len := Make_Defining_Identifier (Loc, New_Internal_Name ('L'));
730
731       Append_To (Decls,
732         Make_Object_Declaration (Loc,
733           Defining_Identifier => Len,
734           Object_Definition => New_Occurrence_Of (Standard_Integer, Loc),
735           Expression        => Sum));
736
737       Res := Make_Defining_Identifier (Loc, New_Internal_Name ('R'));
738
739       Append_To (Decls,
740          Make_Object_Declaration (Loc,
741             Defining_Identifier => Res,
742             Object_Definition =>
743                Make_Subtype_Indication (Loc,
744                   Subtype_Mark => New_Occurrence_Of (Standard_String, Loc),
745                Constraint =>
746                  Make_Index_Or_Discriminant_Constraint (Loc,
747                    Constraints =>
748                      New_List (
749                        Make_Range (Loc,
750                          Low_Bound => Make_Integer_Literal (Loc, 1),
751                          High_Bound => New_Occurrence_Of (Len, Loc)))))));
752
753       Pos := Make_Defining_Identifier (Loc, New_Internal_Name ('P'));
754
755       Append_To (Decls,
756          Make_Object_Declaration (Loc,
757             Defining_Identifier => Pos,
758             Object_Definition => New_Occurrence_Of (Standard_Integer, Loc)));
759
760       --  Pos := Prefix'Length;
761
762       Append_To (Stats,
763          Make_Assignment_Statement (Loc,
764             Name => New_Occurrence_Of (Pos, Loc),
765             Expression =>
766               Make_Attribute_Reference (Loc,
767                 Attribute_Name => Name_Length,
768                 Prefix => New_Occurrence_Of (Prefix, Loc),
769                 Expressions =>
770                     New_List (Make_Integer_Literal (Loc, 1)))));
771
772       --  Res (1 .. Pos) := Prefix;
773
774       Append_To (Stats,
775          Make_Assignment_Statement (Loc,
776            Name => Make_Slice (Loc,
777               Prefix => New_Occurrence_Of (Res, Loc),
778               Discrete_Range  =>
779                 Make_Range (Loc,
780                    Low_Bound => Make_Integer_Literal (Loc, 1),
781                    High_Bound => New_Occurrence_Of (Pos, Loc))),
782
783            Expression => New_Occurrence_Of (Prefix, Loc)));
784
785       Append_To (Stats,
786          Make_Assignment_Statement (Loc,
787             Name => New_Occurrence_Of (Pos, Loc),
788             Expression =>
789               Make_Op_Add (Loc,
790                 Left_Opnd => New_Occurrence_Of (Pos, Loc),
791                 Right_Opnd => Make_Integer_Literal (Loc, 1))));
792    end Build_Task_Image_Prefix;
793
794    -----------------------------
795    -- Build_Task_Record_Image --
796    -----------------------------
797
798    function Build_Task_Record_Image
799      (Loc    : Source_Ptr;
800       Id_Ref : Node_Id;
801       Dyn    : Boolean := False) return Node_Id
802    is
803       Len : Entity_Id;
804       --  Total length of generated name
805
806       Pos : Entity_Id;
807       --  Index into result
808
809       Res : Entity_Id;
810       --  String to hold result
811
812       Pref : Entity_Id;
813       --  Name of enclosing variable, prefix of resulting name
814
815       Sum : Node_Id;
816       --  Expression to compute total size of string
817
818       Sel : Entity_Id;
819       --  Entity for selector name
820
821       Decls : constant List_Id := New_List;
822       Stats : constant List_Id := New_List;
823
824    begin
825       Pref := Make_Defining_Identifier (Loc, New_Internal_Name ('P'));
826
827       --  For a dynamic task, the name comes from the target variable.
828       --  For a static one it is a formal of the enclosing init proc.
829
830       if Dyn then
831          Get_Name_String (Chars (Entity (Prefix (Id_Ref))));
832          Append_To (Decls,
833            Make_Object_Declaration (Loc,
834              Defining_Identifier => Pref,
835              Object_Definition => New_Occurrence_Of (Standard_String, Loc),
836              Expression =>
837                Make_String_Literal (Loc,
838                  Strval => String_From_Name_Buffer)));
839
840       else
841          Append_To (Decls,
842            Make_Object_Renaming_Declaration (Loc,
843              Defining_Identifier => Pref,
844              Subtype_Mark        => New_Occurrence_Of (Standard_String, Loc),
845              Name                => Make_Identifier (Loc, Name_uTask_Name)));
846       end if;
847
848       Sel := Make_Defining_Identifier (Loc, New_Internal_Name ('S'));
849
850       Get_Name_String (Chars (Selector_Name (Id_Ref)));
851
852       Append_To (Decls,
853          Make_Object_Declaration (Loc,
854            Defining_Identifier => Sel,
855            Object_Definition => New_Occurrence_Of (Standard_String, Loc),
856            Expression =>
857              Make_String_Literal (Loc,
858                Strval => String_From_Name_Buffer)));
859
860       Sum := Make_Integer_Literal (Loc, Nat (Name_Len + 1));
861
862       Sum :=
863         Make_Op_Add (Loc,
864           Left_Opnd => Sum,
865           Right_Opnd =>
866            Make_Attribute_Reference (Loc,
867              Attribute_Name => Name_Length,
868              Prefix =>
869                New_Occurrence_Of (Pref, Loc),
870              Expressions => New_List (Make_Integer_Literal (Loc, 1))));
871
872       Build_Task_Image_Prefix (Loc, Len, Res, Pos, Pref, Sum, Decls, Stats);
873
874       Set_Character_Literal_Name (Char_Code (Character'Pos ('.')));
875
876       --  Res (Pos) := '.';
877
878       Append_To (Stats,
879          Make_Assignment_Statement (Loc,
880            Name => Make_Indexed_Component (Loc,
881               Prefix => New_Occurrence_Of (Res, Loc),
882               Expressions => New_List (New_Occurrence_Of (Pos, Loc))),
883            Expression =>
884              Make_Character_Literal (Loc,
885                Chars => Name_Find,
886                Char_Literal_Value =>
887                  UI_From_Int (Character'Pos ('.')))));
888
889       Append_To (Stats,
890         Make_Assignment_Statement (Loc,
891           Name => New_Occurrence_Of (Pos, Loc),
892           Expression =>
893             Make_Op_Add (Loc,
894               Left_Opnd => New_Occurrence_Of (Pos, Loc),
895               Right_Opnd => Make_Integer_Literal (Loc, 1))));
896
897       --  Res (Pos .. Len) := Selector;
898
899       Append_To (Stats,
900         Make_Assignment_Statement (Loc,
901           Name => Make_Slice (Loc,
902              Prefix => New_Occurrence_Of (Res, Loc),
903              Discrete_Range  =>
904                Make_Range (Loc,
905                  Low_Bound  => New_Occurrence_Of (Pos, Loc),
906                  High_Bound => New_Occurrence_Of (Len, Loc))),
907           Expression => New_Occurrence_Of (Sel, Loc)));
908
909       return Build_Task_Image_Function (Loc, Decls, Stats, Res);
910    end Build_Task_Record_Image;
911
912    ----------------------------------
913    -- Component_May_Be_Bit_Aligned --
914    ----------------------------------
915
916    function Component_May_Be_Bit_Aligned (Comp : Entity_Id) return Boolean is
917       UT : constant Entity_Id := Underlying_Type (Etype (Comp));
918
919    begin
920       --  If no component clause, then everything is fine, since the back end
921       --  never bit-misaligns by default, even if there is a pragma Packed for
922       --  the record.
923
924       if No (Component_Clause (Comp)) then
925          return False;
926       end if;
927
928       --  It is only array and record types that cause trouble
929
930       if not Is_Record_Type (UT)
931         and then not Is_Array_Type (UT)
932       then
933          return False;
934
935       --  If we know that we have a small (64 bits or less) record or small
936       --  bit-packed array, then everything is fine, since the back end can
937       --  handle these cases correctly.
938
939       elsif Esize (Comp) <= 64
940         and then (Is_Record_Type (UT)
941                    or else Is_Bit_Packed_Array (UT))
942       then
943          return False;
944
945       --  Otherwise if the component is not byte aligned, we know we have the
946       --  nasty unaligned case.
947
948       elsif Normalized_First_Bit (Comp) /= Uint_0
949         or else Esize (Comp) mod System_Storage_Unit /= Uint_0
950       then
951          return True;
952
953       --  If we are large and byte aligned, then OK at this level
954
955       else
956          return False;
957       end if;
958    end Component_May_Be_Bit_Aligned;
959
960    -----------------------------------
961    -- Corresponding_Runtime_Package --
962    -----------------------------------
963
964    function Corresponding_Runtime_Package (Typ : Entity_Id) return RTU_Id is
965       Pkg_Id : RTU_Id := RTU_Null;
966
967    begin
968       pragma Assert (Is_Concurrent_Type (Typ));
969
970       if Ekind (Typ) in Protected_Kind then
971          if Has_Entries (Typ)
972            or else Has_Interrupt_Handler (Typ)
973            or else (Has_Attach_Handler (Typ)
974                       and then not Restricted_Profile)
975
976             --  A protected type without entries that covers an interface and
977             --  overrides the abstract routines with protected procedures is
978             --  considered equivalent to a protected type with entries in the
979             --  context of dispatching select statements. It is sufficient to
980             --  check for the presence of an interface list in the declaration
981             --  node to recognize this case.
982
983            or else Present (Interface_List (Parent (Typ)))
984          then
985             if Abort_Allowed
986               or else Restriction_Active (No_Entry_Queue) = False
987               or else Number_Entries (Typ) > 1
988               or else (Has_Attach_Handler (Typ)
989                          and then not Restricted_Profile)
990             then
991                Pkg_Id := System_Tasking_Protected_Objects_Entries;
992             else
993                Pkg_Id := System_Tasking_Protected_Objects_Single_Entry;
994             end if;
995
996          else
997             Pkg_Id := System_Tasking_Protected_Objects;
998          end if;
999       end if;
1000
1001       return Pkg_Id;
1002    end Corresponding_Runtime_Package;
1003
1004    -------------------------------
1005    -- Convert_To_Actual_Subtype --
1006    -------------------------------
1007
1008    procedure Convert_To_Actual_Subtype (Exp : Entity_Id) is
1009       Act_ST : Entity_Id;
1010
1011    begin
1012       Act_ST := Get_Actual_Subtype (Exp);
1013
1014       if Act_ST = Etype (Exp) then
1015          return;
1016
1017       else
1018          Rewrite (Exp,
1019            Convert_To (Act_ST, Relocate_Node (Exp)));
1020          Analyze_And_Resolve (Exp, Act_ST);
1021       end if;
1022    end Convert_To_Actual_Subtype;
1023
1024    -----------------------------------
1025    -- Current_Sem_Unit_Declarations --
1026    -----------------------------------
1027
1028    function Current_Sem_Unit_Declarations return List_Id is
1029       U     : Node_Id := Unit (Cunit (Current_Sem_Unit));
1030       Decls : List_Id;
1031
1032    begin
1033       --  If the current unit is a package body, locate the visible
1034       --  declarations of the package spec.
1035
1036       if Nkind (U) = N_Package_Body then
1037          U := Unit (Library_Unit (Cunit (Current_Sem_Unit)));
1038       end if;
1039
1040       if Nkind (U) = N_Package_Declaration then
1041          U := Specification (U);
1042          Decls := Visible_Declarations (U);
1043
1044          if No (Decls) then
1045             Decls := New_List;
1046             Set_Visible_Declarations (U, Decls);
1047          end if;
1048
1049       else
1050          Decls := Declarations (U);
1051
1052          if No (Decls) then
1053             Decls := New_List;
1054             Set_Declarations (U, Decls);
1055          end if;
1056       end if;
1057
1058       return Decls;
1059    end Current_Sem_Unit_Declarations;
1060
1061    -----------------------
1062    -- Duplicate_Subexpr --
1063    -----------------------
1064
1065    function Duplicate_Subexpr
1066      (Exp      : Node_Id;
1067       Name_Req : Boolean := False) return Node_Id
1068    is
1069    begin
1070       Remove_Side_Effects (Exp, Name_Req);
1071       return New_Copy_Tree (Exp);
1072    end Duplicate_Subexpr;
1073
1074    ---------------------------------
1075    -- Duplicate_Subexpr_No_Checks --
1076    ---------------------------------
1077
1078    function Duplicate_Subexpr_No_Checks
1079      (Exp      : Node_Id;
1080       Name_Req : Boolean := False) return Node_Id
1081    is
1082       New_Exp : Node_Id;
1083
1084    begin
1085       Remove_Side_Effects (Exp, Name_Req);
1086       New_Exp := New_Copy_Tree (Exp);
1087       Remove_Checks (New_Exp);
1088       return New_Exp;
1089    end Duplicate_Subexpr_No_Checks;
1090
1091    -----------------------------------
1092    -- Duplicate_Subexpr_Move_Checks --
1093    -----------------------------------
1094
1095    function Duplicate_Subexpr_Move_Checks
1096      (Exp      : Node_Id;
1097       Name_Req : Boolean := False) return Node_Id
1098    is
1099       New_Exp : Node_Id;
1100
1101    begin
1102       Remove_Side_Effects (Exp, Name_Req);
1103       New_Exp := New_Copy_Tree (Exp);
1104       Remove_Checks (Exp);
1105       return New_Exp;
1106    end Duplicate_Subexpr_Move_Checks;
1107
1108    --------------------
1109    -- Ensure_Defined --
1110    --------------------
1111
1112    procedure Ensure_Defined (Typ : Entity_Id; N : Node_Id) is
1113       IR : Node_Id;
1114
1115    begin
1116       --  An itype reference must only be created if this is a local
1117       --  itype, so that gigi can elaborate it on the proper objstack.
1118
1119       if Is_Itype (Typ)
1120         and then Scope (Typ) = Current_Scope
1121       then
1122          IR := Make_Itype_Reference (Sloc (N));
1123          Set_Itype (IR, Typ);
1124          Insert_Action (N, IR);
1125       end if;
1126    end Ensure_Defined;
1127
1128    --------------------
1129    -- Entry_Names_OK --
1130    --------------------
1131
1132    function Entry_Names_OK return Boolean is
1133    begin
1134       return
1135         not Restricted_Profile
1136           and then not Global_Discard_Names
1137           and then not Restriction_Active (No_Implicit_Heap_Allocations)
1138           and then not Restriction_Active (No_Local_Allocators);
1139    end Entry_Names_OK;
1140
1141    ---------------------
1142    -- Evolve_And_Then --
1143    ---------------------
1144
1145    procedure Evolve_And_Then (Cond : in out Node_Id; Cond1 : Node_Id) is
1146    begin
1147       if No (Cond) then
1148          Cond := Cond1;
1149       else
1150          Cond :=
1151            Make_And_Then (Sloc (Cond1),
1152              Left_Opnd  => Cond,
1153              Right_Opnd => Cond1);
1154       end if;
1155    end Evolve_And_Then;
1156
1157    --------------------
1158    -- Evolve_Or_Else --
1159    --------------------
1160
1161    procedure Evolve_Or_Else (Cond : in out Node_Id; Cond1 : Node_Id) is
1162    begin
1163       if No (Cond) then
1164          Cond := Cond1;
1165       else
1166          Cond :=
1167            Make_Or_Else (Sloc (Cond1),
1168              Left_Opnd  => Cond,
1169              Right_Opnd => Cond1);
1170       end if;
1171    end Evolve_Or_Else;
1172
1173    ------------------------------
1174    -- Expand_Subtype_From_Expr --
1175    ------------------------------
1176
1177    --  This function is applicable for both static and dynamic allocation of
1178    --  objects which are constrained by an initial expression. Basically it
1179    --  transforms an unconstrained subtype indication into a constrained one.
1180    --  The expression may also be transformed in certain cases in order to
1181    --  avoid multiple evaluation. In the static allocation case, the general
1182    --  scheme is:
1183
1184    --     Val : T := Expr;
1185
1186    --        is transformed into
1187
1188    --     Val : Constrained_Subtype_of_T := Maybe_Modified_Expr;
1189    --
1190    --  Here are the main cases :
1191    --
1192    --  <if Expr is a Slice>
1193    --    Val : T ([Index_Subtype (Expr)]) := Expr;
1194    --
1195    --  <elsif Expr is a String Literal>
1196    --    Val : T (T'First .. T'First + Length (string literal) - 1) := Expr;
1197    --
1198    --  <elsif Expr is Constrained>
1199    --    subtype T is Type_Of_Expr
1200    --    Val : T := Expr;
1201    --
1202    --  <elsif Expr is an entity_name>
1203    --    Val : T (constraints taken from Expr) := Expr;
1204    --
1205    --  <else>
1206    --    type Axxx is access all T;
1207    --    Rval : Axxx := Expr'ref;
1208    --    Val  : T (constraints taken from Rval) := Rval.all;
1209
1210    --    ??? note: when the Expression is allocated in the secondary stack
1211    --              we could use it directly instead of copying it by declaring
1212    --              Val : T (...) renames Rval.all
1213
1214    procedure Expand_Subtype_From_Expr
1215      (N             : Node_Id;
1216       Unc_Type      : Entity_Id;
1217       Subtype_Indic : Node_Id;
1218       Exp           : Node_Id)
1219    is
1220       Loc     : constant Source_Ptr := Sloc (N);
1221       Exp_Typ : constant Entity_Id  := Etype (Exp);
1222       T       : Entity_Id;
1223
1224    begin
1225       --  In general we cannot build the subtype if expansion is disabled,
1226       --  because internal entities may not have been defined. However, to
1227       --  avoid some cascaded errors, we try to continue when the expression
1228       --  is an array (or string), because it is safe to compute the bounds.
1229       --  It is in fact required to do so even in a generic context, because
1230       --  there may be constants that depend on bounds of string literal.
1231
1232       if not Expander_Active
1233         and then (No (Etype (Exp))
1234                    or else Base_Type (Etype (Exp)) /= Standard_String)
1235       then
1236          return;
1237       end if;
1238
1239       if Nkind (Exp) = N_Slice then
1240          declare
1241             Slice_Type : constant Entity_Id := Etype (First_Index (Exp_Typ));
1242
1243          begin
1244             Rewrite (Subtype_Indic,
1245               Make_Subtype_Indication (Loc,
1246                 Subtype_Mark => New_Reference_To (Unc_Type, Loc),
1247                 Constraint =>
1248                   Make_Index_Or_Discriminant_Constraint (Loc,
1249                     Constraints => New_List
1250                       (New_Reference_To (Slice_Type, Loc)))));
1251
1252             --  This subtype indication may be used later for constraint checks
1253             --  we better make sure that if a variable was used as a bound of
1254             --  of the original slice, its value is frozen.
1255
1256             Force_Evaluation (Low_Bound (Scalar_Range (Slice_Type)));
1257             Force_Evaluation (High_Bound (Scalar_Range (Slice_Type)));
1258          end;
1259
1260       elsif Ekind (Exp_Typ) = E_String_Literal_Subtype then
1261          Rewrite (Subtype_Indic,
1262            Make_Subtype_Indication (Loc,
1263              Subtype_Mark => New_Reference_To (Unc_Type, Loc),
1264              Constraint =>
1265                Make_Index_Or_Discriminant_Constraint (Loc,
1266                  Constraints => New_List (
1267                    Make_Literal_Range (Loc,
1268                      Literal_Typ => Exp_Typ)))));
1269
1270       elsif Is_Constrained (Exp_Typ)
1271         and then not Is_Class_Wide_Type (Unc_Type)
1272       then
1273          if Is_Itype (Exp_Typ) then
1274
1275             --  Within an initialization procedure, a selected component
1276             --  denotes a component of the enclosing record, and it appears
1277             --  as an actual in a call to its own initialization procedure.
1278             --  If this component depends on the outer discriminant, we must
1279             --  generate the proper actual subtype for it.
1280
1281             if Nkind (Exp) = N_Selected_Component
1282               and then Within_Init_Proc
1283             then
1284                declare
1285                   Decl : constant Node_Id :=
1286                            Build_Actual_Subtype_Of_Component (Exp_Typ, Exp);
1287                begin
1288                   if Present (Decl) then
1289                      Insert_Action (N, Decl);
1290                      T := Defining_Identifier (Decl);
1291                   else
1292                      T := Exp_Typ;
1293                   end if;
1294                end;
1295
1296             --  No need to generate a new one (new what???)
1297
1298             else
1299                T := Exp_Typ;
1300             end if;
1301
1302          else
1303             T :=
1304               Make_Defining_Identifier (Loc,
1305                 Chars => New_Internal_Name ('T'));
1306
1307             Insert_Action (N,
1308               Make_Subtype_Declaration (Loc,
1309                 Defining_Identifier => T,
1310                 Subtype_Indication  => New_Reference_To (Exp_Typ, Loc)));
1311
1312             --  This type is marked as an itype even though it has an
1313             --  explicit declaration because otherwise it can be marked
1314             --  with Is_Generic_Actual_Type and generate spurious errors.
1315             --  (see sem_ch8.Analyze_Package_Renaming and sem_type.covers)
1316
1317             Set_Is_Itype (T);
1318             Set_Associated_Node_For_Itype (T, Exp);
1319          end if;
1320
1321          Rewrite (Subtype_Indic, New_Reference_To (T, Loc));
1322
1323       --  Nothing needs to be done for private types with unknown discriminants
1324       --  if the underlying type is not an unconstrained composite type or it
1325       --  is an unchecked union.
1326
1327       elsif Is_Private_Type (Unc_Type)
1328         and then Has_Unknown_Discriminants (Unc_Type)
1329         and then (not Is_Composite_Type (Underlying_Type (Unc_Type))
1330                    or else Is_Constrained (Underlying_Type (Unc_Type))
1331                    or else Is_Unchecked_Union (Underlying_Type (Unc_Type)))
1332       then
1333          null;
1334
1335       --  Case of derived type with unknown discriminants where the parent type
1336       --  also has unknown discriminants.
1337
1338       elsif Is_Record_Type (Unc_Type)
1339         and then not Is_Class_Wide_Type (Unc_Type)
1340         and then Has_Unknown_Discriminants (Unc_Type)
1341         and then Has_Unknown_Discriminants (Underlying_Type (Unc_Type))
1342       then
1343          --  Nothing to be done if no underlying record view available
1344
1345          if No (Underlying_Record_View (Unc_Type)) then
1346             null;
1347
1348          --  Otherwise use the Underlying_Record_View to create the proper
1349          --  constrained subtype for an object of a derived type with unknown
1350          --  discriminants.
1351
1352          else
1353             Remove_Side_Effects (Exp);
1354             Rewrite (Subtype_Indic,
1355               Make_Subtype_From_Expr (Exp, Underlying_Record_View (Unc_Type)));
1356          end if;
1357
1358       --  Renamings of class-wide interface types require no equivalent
1359       --  constrained type declarations because we only need to reference
1360       --  the tag component associated with the interface.
1361
1362       elsif Present (N)
1363         and then Nkind (N) = N_Object_Renaming_Declaration
1364         and then Is_Interface (Unc_Type)
1365       then
1366          pragma Assert (Is_Class_Wide_Type (Unc_Type));
1367          null;
1368
1369       --  In Ada95, nothing to be done if the type of the expression is
1370       --  limited, because in this case the expression cannot be copied,
1371       --  and its use can only be by reference.
1372
1373       --  In Ada2005, the context can be an object declaration whose expression
1374       --  is a function that returns in place. If the nominal subtype has
1375       --  unknown discriminants, the call still provides constraints on the
1376       --  object, and we have to create an actual subtype from it.
1377
1378       --  If the type is class-wide, the expression is dynamically tagged and
1379       --  we do not create an actual subtype either. Ditto for an interface.
1380
1381       elsif Is_Limited_Type (Exp_Typ)
1382         and then
1383          (Is_Class_Wide_Type (Exp_Typ)
1384            or else Is_Interface (Exp_Typ)
1385            or else not Has_Unknown_Discriminants (Exp_Typ)
1386            or else not Is_Composite_Type (Unc_Type))
1387       then
1388          null;
1389
1390       --  For limited objects initialized with build in place function calls,
1391       --  nothing to be done; otherwise we prematurely introduce an N_Reference
1392       --  node in the expression initializing the object, which breaks the
1393       --  circuitry that detects and adds the additional arguments to the
1394       --  called function.
1395
1396       elsif Is_Build_In_Place_Function_Call (Exp) then
1397          null;
1398
1399       else
1400          Remove_Side_Effects (Exp);
1401          Rewrite (Subtype_Indic,
1402            Make_Subtype_From_Expr (Exp, Unc_Type));
1403       end if;
1404    end Expand_Subtype_From_Expr;
1405
1406    --------------------
1407    -- Find_Init_Call --
1408    --------------------
1409
1410    function Find_Init_Call
1411      (Var        : Entity_Id;
1412       Rep_Clause : Node_Id) return Node_Id
1413    is
1414       Typ : constant Entity_Id := Etype (Var);
1415
1416       Init_Proc : Entity_Id;
1417       --  Initialization procedure for Typ
1418
1419       function Find_Init_Call_In_List (From : Node_Id) return Node_Id;
1420       --  Look for init call for Var starting at From and scanning the
1421       --  enclosing list until Rep_Clause or the end of the list is reached.
1422
1423       ----------------------------
1424       -- Find_Init_Call_In_List --
1425       ----------------------------
1426
1427       function Find_Init_Call_In_List (From : Node_Id) return Node_Id is
1428          Init_Call : Node_Id;
1429       begin
1430          Init_Call := From;
1431
1432          while Present (Init_Call) and then Init_Call /= Rep_Clause loop
1433             if Nkind (Init_Call) = N_Procedure_Call_Statement
1434                  and then Is_Entity_Name (Name (Init_Call))
1435                  and then Entity (Name (Init_Call)) = Init_Proc
1436             then
1437                return Init_Call;
1438             end if;
1439             Next (Init_Call);
1440          end loop;
1441
1442          return Empty;
1443       end Find_Init_Call_In_List;
1444
1445       Init_Call : Node_Id;
1446
1447    --  Start of processing for Find_Init_Call
1448
1449    begin
1450       if not Has_Non_Null_Base_Init_Proc (Typ) then
1451          --  No init proc for the type, so obviously no call to be found
1452
1453          return Empty;
1454       end if;
1455
1456       Init_Proc := Base_Init_Proc (Typ);
1457
1458       --  First scan the list containing the declaration of Var
1459
1460       Init_Call := Find_Init_Call_In_List (From => Next (Parent (Var)));
1461
1462       --  If not found, also look on Var's freeze actions list, if any, since
1463       --  the init call may have been moved there (case of an address clause
1464       --  applying to Var).
1465
1466       if No (Init_Call) and then Present (Freeze_Node (Var)) then
1467          Init_Call := Find_Init_Call_In_List
1468                         (First (Actions (Freeze_Node (Var))));
1469       end if;
1470
1471       return Init_Call;
1472    end Find_Init_Call;
1473
1474    ------------------------
1475    -- Find_Interface_ADT --
1476    ------------------------
1477
1478    function Find_Interface_ADT
1479      (T     : Entity_Id;
1480       Iface : Entity_Id) return Elmt_Id
1481    is
1482       ADT : Elmt_Id;
1483       Typ : Entity_Id := T;
1484
1485    begin
1486       pragma Assert (Is_Interface (Iface));
1487
1488       --  Handle private types
1489
1490       if Has_Private_Declaration (Typ)
1491         and then Present (Full_View (Typ))
1492       then
1493          Typ := Full_View (Typ);
1494       end if;
1495
1496       --  Handle access types
1497
1498       if Is_Access_Type (Typ) then
1499          Typ := Directly_Designated_Type (Typ);
1500       end if;
1501
1502       --  Handle task and protected types implementing interfaces
1503
1504       if Is_Concurrent_Type (Typ) then
1505          Typ := Corresponding_Record_Type (Typ);
1506       end if;
1507
1508       pragma Assert
1509         (not Is_Class_Wide_Type (Typ)
1510           and then Ekind (Typ) /= E_Incomplete_Type);
1511
1512       if Is_Ancestor (Iface, Typ) then
1513          return First_Elmt (Access_Disp_Table (Typ));
1514
1515       else
1516          ADT :=
1517            Next_Elmt (Next_Elmt (First_Elmt (Access_Disp_Table (Typ))));
1518          while Present (ADT)
1519            and then Present (Related_Type (Node (ADT)))
1520            and then Related_Type (Node (ADT)) /= Iface
1521            and then not Is_Ancestor (Iface, Related_Type (Node (ADT)))
1522          loop
1523             Next_Elmt (ADT);
1524          end loop;
1525
1526          pragma Assert (Present (Related_Type (Node (ADT))));
1527          return ADT;
1528       end if;
1529    end Find_Interface_ADT;
1530
1531    ------------------------
1532    -- Find_Interface_Tag --
1533    ------------------------
1534
1535    function Find_Interface_Tag
1536      (T     : Entity_Id;
1537       Iface : Entity_Id) return Entity_Id
1538    is
1539       AI_Tag : Entity_Id;
1540       Found  : Boolean   := False;
1541       Typ    : Entity_Id := T;
1542
1543       procedure Find_Tag (Typ : Entity_Id);
1544       --  Internal subprogram used to recursively climb to the ancestors
1545
1546       --------------
1547       -- Find_Tag --
1548       --------------
1549
1550       procedure Find_Tag (Typ : Entity_Id) is
1551          AI_Elmt : Elmt_Id;
1552          AI      : Node_Id;
1553
1554       begin
1555          --  This routine does not handle the case in which the interface is an
1556          --  ancestor of Typ. That case is handled by the enclosing subprogram.
1557
1558          pragma Assert (Typ /= Iface);
1559
1560          --  Climb to the root type handling private types
1561
1562          if Present (Full_View (Etype (Typ))) then
1563             if Full_View (Etype (Typ)) /= Typ then
1564                Find_Tag (Full_View (Etype (Typ)));
1565             end if;
1566
1567          elsif Etype (Typ) /= Typ then
1568             Find_Tag (Etype (Typ));
1569          end if;
1570
1571          --  Traverse the list of interfaces implemented by the type
1572
1573          if not Found
1574            and then Present (Interfaces (Typ))
1575            and then not (Is_Empty_Elmt_List (Interfaces (Typ)))
1576          then
1577             --  Skip the tag associated with the primary table
1578
1579             pragma Assert (Etype (First_Tag_Component (Typ)) = RTE (RE_Tag));
1580             AI_Tag := Next_Tag_Component (First_Tag_Component (Typ));
1581             pragma Assert (Present (AI_Tag));
1582
1583             AI_Elmt := First_Elmt (Interfaces (Typ));
1584             while Present (AI_Elmt) loop
1585                AI := Node (AI_Elmt);
1586
1587                if AI = Iface or else Is_Ancestor (Iface, AI) then
1588                   Found := True;
1589                   return;
1590                end if;
1591
1592                AI_Tag := Next_Tag_Component (AI_Tag);
1593                Next_Elmt (AI_Elmt);
1594             end loop;
1595          end if;
1596       end Find_Tag;
1597
1598    --  Start of processing for Find_Interface_Tag
1599
1600    begin
1601       pragma Assert (Is_Interface (Iface));
1602
1603       --  Handle access types
1604
1605       if Is_Access_Type (Typ) then
1606          Typ := Directly_Designated_Type (Typ);
1607       end if;
1608
1609       --  Handle class-wide types
1610
1611       if Is_Class_Wide_Type (Typ) then
1612          Typ := Root_Type (Typ);
1613       end if;
1614
1615       --  Handle private types
1616
1617       if Has_Private_Declaration (Typ)
1618         and then Present (Full_View (Typ))
1619       then
1620          Typ := Full_View (Typ);
1621       end if;
1622
1623       --  Handle entities from the limited view
1624
1625       if Ekind (Typ) = E_Incomplete_Type then
1626          pragma Assert (Present (Non_Limited_View (Typ)));
1627          Typ := Non_Limited_View (Typ);
1628       end if;
1629
1630       --  Handle task and protected types implementing interfaces
1631
1632       if Is_Concurrent_Type (Typ) then
1633          Typ := Corresponding_Record_Type (Typ);
1634       end if;
1635
1636       --  If the interface is an ancestor of the type, then it shared the
1637       --  primary dispatch table.
1638
1639       if Is_Ancestor (Iface, Typ) then
1640          pragma Assert (Etype (First_Tag_Component (Typ)) = RTE (RE_Tag));
1641          return First_Tag_Component (Typ);
1642
1643       --  Otherwise we need to search for its associated tag component
1644
1645       else
1646          Find_Tag (Typ);
1647          pragma Assert (Found);
1648          return AI_Tag;
1649       end if;
1650    end Find_Interface_Tag;
1651
1652    ------------------
1653    -- Find_Prim_Op --
1654    ------------------
1655
1656    function Find_Prim_Op (T : Entity_Id; Name : Name_Id) return Entity_Id is
1657       Prim : Elmt_Id;
1658       Typ  : Entity_Id := T;
1659       Op   : Entity_Id;
1660
1661    begin
1662       if Is_Class_Wide_Type (Typ) then
1663          Typ := Root_Type (Typ);
1664       end if;
1665
1666       Typ := Underlying_Type (Typ);
1667
1668       --  Loop through primitive operations
1669
1670       Prim := First_Elmt (Primitive_Operations (Typ));
1671       while Present (Prim) loop
1672          Op := Node (Prim);
1673
1674          --  We can retrieve primitive operations by name if it is an internal
1675          --  name. For equality we must check that both of its operands have
1676          --  the same type, to avoid confusion with user-defined equalities
1677          --  than may have a non-symmetric signature.
1678
1679          exit when Chars (Op) = Name
1680            and then
1681              (Name /= Name_Op_Eq
1682                 or else Etype (First_Entity (Op)) = Etype (Last_Entity (Op)));
1683
1684          Next_Elmt (Prim);
1685
1686          --  Raise Program_Error if no primitive found
1687
1688          if No (Prim) then
1689             raise Program_Error;
1690          end if;
1691       end loop;
1692
1693       return Node (Prim);
1694    end Find_Prim_Op;
1695
1696    ------------------
1697    -- Find_Prim_Op --
1698    ------------------
1699
1700    function Find_Prim_Op
1701      (T    : Entity_Id;
1702       Name : TSS_Name_Type) return Entity_Id
1703    is
1704       Prim : Elmt_Id;
1705       Typ  : Entity_Id := T;
1706
1707    begin
1708       if Is_Class_Wide_Type (Typ) then
1709          Typ := Root_Type (Typ);
1710       end if;
1711
1712       Typ := Underlying_Type (Typ);
1713
1714       Prim := First_Elmt (Primitive_Operations (Typ));
1715       while not Is_TSS (Node (Prim), Name) loop
1716          Next_Elmt (Prim);
1717
1718          --  Raise program error if no primitive found
1719
1720          if No (Prim) then
1721             raise Program_Error;
1722          end if;
1723       end loop;
1724
1725       return Node (Prim);
1726    end Find_Prim_Op;
1727
1728    ----------------------------
1729    -- Find_Protection_Object --
1730    ----------------------------
1731
1732    function Find_Protection_Object (Scop : Entity_Id) return Entity_Id is
1733       S : Entity_Id;
1734
1735    begin
1736       S := Scop;
1737       while Present (S) loop
1738          if (Ekind (S) = E_Entry
1739                or else Ekind (S) = E_Entry_Family
1740                or else Ekind (S) = E_Function
1741                or else Ekind (S) = E_Procedure)
1742            and then Present (Protection_Object (S))
1743          then
1744             return Protection_Object (S);
1745          end if;
1746
1747          S := Scope (S);
1748       end loop;
1749
1750       --  If we do not find a Protection object in the scope chain, then
1751       --  something has gone wrong, most likely the object was never created.
1752
1753       raise Program_Error;
1754    end Find_Protection_Object;
1755
1756    ----------------------
1757    -- Force_Evaluation --
1758    ----------------------
1759
1760    procedure Force_Evaluation (Exp : Node_Id; Name_Req : Boolean := False) is
1761    begin
1762       Remove_Side_Effects (Exp, Name_Req, Variable_Ref => True);
1763    end Force_Evaluation;
1764
1765    ------------------------
1766    -- Generate_Poll_Call --
1767    ------------------------
1768
1769    procedure Generate_Poll_Call (N : Node_Id) is
1770    begin
1771       --  No poll call if polling not active
1772
1773       if not Polling_Required then
1774          return;
1775
1776       --  Otherwise generate require poll call
1777
1778       else
1779          Insert_Before_And_Analyze (N,
1780            Make_Procedure_Call_Statement (Sloc (N),
1781              Name => New_Occurrence_Of (RTE (RE_Poll), Sloc (N))));
1782       end if;
1783    end Generate_Poll_Call;
1784
1785    ---------------------------------
1786    -- Get_Current_Value_Condition --
1787    ---------------------------------
1788
1789    --  Note: the implementation of this procedure is very closely tied to the
1790    --  implementation of Set_Current_Value_Condition. In the Get procedure, we
1791    --  interpret Current_Value fields set by the Set procedure, so the two
1792    --  procedures need to be closely coordinated.
1793
1794    procedure Get_Current_Value_Condition
1795      (Var : Node_Id;
1796       Op  : out Node_Kind;
1797       Val : out Node_Id)
1798    is
1799       Loc : constant Source_Ptr := Sloc (Var);
1800       Ent : constant Entity_Id  := Entity (Var);
1801
1802       procedure Process_Current_Value_Condition
1803         (N : Node_Id;
1804          S : Boolean);
1805       --  N is an expression which holds either True (S = True) or False (S =
1806       --  False) in the condition. This procedure digs out the expression and
1807       --  if it refers to Ent, sets Op and Val appropriately.
1808
1809       -------------------------------------
1810       -- Process_Current_Value_Condition --
1811       -------------------------------------
1812
1813       procedure Process_Current_Value_Condition
1814         (N : Node_Id;
1815          S : Boolean)
1816       is
1817          Cond : Node_Id;
1818          Sens : Boolean;
1819
1820       begin
1821          Cond := N;
1822          Sens := S;
1823
1824          --  Deal with NOT operators, inverting sense
1825
1826          while Nkind (Cond) = N_Op_Not loop
1827             Cond := Right_Opnd (Cond);
1828             Sens := not Sens;
1829          end loop;
1830
1831          --  Deal with AND THEN and AND cases
1832
1833          if Nkind (Cond) = N_And_Then
1834            or else Nkind (Cond) = N_Op_And
1835          then
1836             --  Don't ever try to invert a condition that is of the form
1837             --  of an AND or AND THEN (since we are not doing sufficiently
1838             --  general processing to allow this).
1839
1840             if Sens = False then
1841                Op  := N_Empty;
1842                Val := Empty;
1843                return;
1844             end if;
1845
1846             --  Recursively process AND and AND THEN branches
1847
1848             Process_Current_Value_Condition (Left_Opnd (Cond), True);
1849
1850             if Op /= N_Empty then
1851                return;
1852             end if;
1853
1854             Process_Current_Value_Condition (Right_Opnd (Cond), True);
1855             return;
1856
1857          --  Case of relational operator
1858
1859          elsif Nkind (Cond) in N_Op_Compare then
1860             Op := Nkind (Cond);
1861
1862             --  Invert sense of test if inverted test
1863
1864             if Sens = False then
1865                case Op is
1866                   when N_Op_Eq => Op := N_Op_Ne;
1867                   when N_Op_Ne => Op := N_Op_Eq;
1868                   when N_Op_Lt => Op := N_Op_Ge;
1869                   when N_Op_Gt => Op := N_Op_Le;
1870                   when N_Op_Le => Op := N_Op_Gt;
1871                   when N_Op_Ge => Op := N_Op_Lt;
1872                   when others  => raise Program_Error;
1873                end case;
1874             end if;
1875
1876             --  Case of entity op value
1877
1878             if Is_Entity_Name (Left_Opnd (Cond))
1879               and then Ent = Entity (Left_Opnd (Cond))
1880               and then Compile_Time_Known_Value (Right_Opnd (Cond))
1881             then
1882                Val := Right_Opnd (Cond);
1883
1884             --  Case of value op entity
1885
1886             elsif Is_Entity_Name (Right_Opnd (Cond))
1887               and then Ent = Entity (Right_Opnd (Cond))
1888               and then Compile_Time_Known_Value (Left_Opnd (Cond))
1889             then
1890                Val := Left_Opnd (Cond);
1891
1892                --  We are effectively swapping operands
1893
1894                case Op is
1895                   when N_Op_Eq => null;
1896                   when N_Op_Ne => null;
1897                   when N_Op_Lt => Op := N_Op_Gt;
1898                   when N_Op_Gt => Op := N_Op_Lt;
1899                   when N_Op_Le => Op := N_Op_Ge;
1900                   when N_Op_Ge => Op := N_Op_Le;
1901                   when others  => raise Program_Error;
1902                end case;
1903
1904             else
1905                Op := N_Empty;
1906             end if;
1907
1908             return;
1909
1910             --  Case of Boolean variable reference, return as though the
1911             --  reference had said var = True.
1912
1913          else
1914             if Is_Entity_Name (Cond)
1915               and then Ent = Entity (Cond)
1916             then
1917                Val := New_Occurrence_Of (Standard_True, Sloc (Cond));
1918
1919                if Sens = False then
1920                   Op := N_Op_Ne;
1921                else
1922                   Op := N_Op_Eq;
1923                end if;
1924             end if;
1925          end if;
1926       end Process_Current_Value_Condition;
1927
1928    --  Start of processing for Get_Current_Value_Condition
1929
1930    begin
1931       Op  := N_Empty;
1932       Val := Empty;
1933
1934       --  Immediate return, nothing doing, if this is not an object
1935
1936       if Ekind (Ent) not in Object_Kind then
1937          return;
1938       end if;
1939
1940       --  Otherwise examine current value
1941
1942       declare
1943          CV   : constant Node_Id := Current_Value (Ent);
1944          Sens : Boolean;
1945          Stm  : Node_Id;
1946
1947       begin
1948          --  If statement. Condition is known true in THEN section, known False
1949          --  in any ELSIF or ELSE part, and unknown outside the IF statement.
1950
1951          if Nkind (CV) = N_If_Statement then
1952
1953             --  Before start of IF statement
1954
1955             if Loc < Sloc (CV) then
1956                return;
1957
1958                --  After end of IF statement
1959
1960             elsif Loc >= Sloc (CV) + Text_Ptr (UI_To_Int (End_Span (CV))) then
1961                return;
1962             end if;
1963
1964             --  At this stage we know that we are within the IF statement, but
1965             --  unfortunately, the tree does not record the SLOC of the ELSE so
1966             --  we cannot use a simple SLOC comparison to distinguish between
1967             --  the then/else statements, so we have to climb the tree.
1968
1969             declare
1970                N : Node_Id;
1971
1972             begin
1973                N := Parent (Var);
1974                while Parent (N) /= CV loop
1975                   N := Parent (N);
1976
1977                   --  If we fall off the top of the tree, then that's odd, but
1978                   --  perhaps it could occur in some error situation, and the
1979                   --  safest response is simply to assume that the outcome of
1980                   --  the condition is unknown. No point in bombing during an
1981                   --  attempt to optimize things.
1982
1983                   if No (N) then
1984                      return;
1985                   end if;
1986                end loop;
1987
1988                --  Now we have N pointing to a node whose parent is the IF
1989                --  statement in question, so now we can tell if we are within
1990                --  the THEN statements.
1991
1992                if Is_List_Member (N)
1993                  and then List_Containing (N) = Then_Statements (CV)
1994                then
1995                   Sens := True;
1996
1997                --  If the variable reference does not come from source, we
1998                --  cannot reliably tell whether it appears in the else part.
1999                --  In particular, if it appears in generated code for a node
2000                --  that requires finalization, it may be attached to a list
2001                --  that has not been yet inserted into the code. For now,
2002                --  treat it as unknown.
2003
2004                elsif not Comes_From_Source (N) then
2005                   return;
2006
2007                --  Otherwise we must be in ELSIF or ELSE part
2008
2009                else
2010                   Sens := False;
2011                end if;
2012             end;
2013
2014             --  ELSIF part. Condition is known true within the referenced
2015             --  ELSIF, known False in any subsequent ELSIF or ELSE part, and
2016             --  unknown before the ELSE part or after the IF statement.
2017
2018          elsif Nkind (CV) = N_Elsif_Part then
2019             Stm := Parent (CV);
2020
2021             --  Before start of ELSIF part
2022
2023             if Loc < Sloc (CV) then
2024                return;
2025
2026                --  After end of IF statement
2027
2028             elsif Loc >= Sloc (Stm) +
2029               Text_Ptr (UI_To_Int (End_Span (Stm)))
2030             then
2031                return;
2032             end if;
2033
2034             --  Again we lack the SLOC of the ELSE, so we need to climb the
2035             --  tree to see if we are within the ELSIF part in question.
2036
2037             declare
2038                N : Node_Id;
2039
2040             begin
2041                N := Parent (Var);
2042                while Parent (N) /= Stm loop
2043                   N := Parent (N);
2044
2045                   --  If we fall off the top of the tree, then that's odd, but
2046                   --  perhaps it could occur in some error situation, and the
2047                   --  safest response is simply to assume that the outcome of
2048                   --  the condition is unknown. No point in bombing during an
2049                   --  attempt to optimize things.
2050
2051                   if No (N) then
2052                      return;
2053                   end if;
2054                end loop;
2055
2056                --  Now we have N pointing to a node whose parent is the IF
2057                --  statement in question, so see if is the ELSIF part we want.
2058                --  the THEN statements.
2059
2060                if N = CV then
2061                   Sens := True;
2062
2063                   --  Otherwise we must be in subsequent ELSIF or ELSE part
2064
2065                else
2066                   Sens := False;
2067                end if;
2068             end;
2069
2070          --  Iteration scheme of while loop. The condition is known to be
2071          --  true within the body of the loop.
2072
2073          elsif Nkind (CV) = N_Iteration_Scheme then
2074             declare
2075                Loop_Stmt : constant Node_Id := Parent (CV);
2076
2077             begin
2078                --  Before start of body of loop
2079
2080                if Loc < Sloc (Loop_Stmt) then
2081                   return;
2082
2083                --  After end of LOOP statement
2084
2085                elsif Loc >= Sloc (End_Label (Loop_Stmt)) then
2086                   return;
2087
2088                --  We are within the body of the loop
2089
2090                else
2091                   Sens := True;
2092                end if;
2093             end;
2094
2095          --  All other cases of Current_Value settings
2096
2097          else
2098             return;
2099          end if;
2100
2101          --  If we fall through here, then we have a reportable condition, Sens
2102          --  is True if the condition is true and False if it needs inverting.
2103
2104          Process_Current_Value_Condition (Condition (CV), Sens);
2105       end;
2106    end Get_Current_Value_Condition;
2107
2108    ---------------------------------
2109    -- Has_Controlled_Coextensions --
2110    ---------------------------------
2111
2112    function Has_Controlled_Coextensions (Typ : Entity_Id) return Boolean is
2113       D_Typ : Entity_Id;
2114       Discr : Entity_Id;
2115
2116    begin
2117       --  Only consider record types
2118
2119       if Ekind (Typ) /= E_Record_Type
2120         and then Ekind (Typ) /= E_Record_Subtype
2121       then
2122          return False;
2123       end if;
2124
2125       if Has_Discriminants (Typ) then
2126          Discr := First_Discriminant (Typ);
2127          while Present (Discr) loop
2128             D_Typ := Etype (Discr);
2129
2130             if Ekind (D_Typ) = E_Anonymous_Access_Type
2131               and then
2132                 (Is_Controlled (Directly_Designated_Type (D_Typ))
2133                    or else
2134                  Is_Concurrent_Type (Directly_Designated_Type (D_Typ)))
2135             then
2136                return True;
2137             end if;
2138
2139             Next_Discriminant (Discr);
2140          end loop;
2141       end if;
2142
2143       return False;
2144    end Has_Controlled_Coextensions;
2145
2146    --------------------
2147    -- Homonym_Number --
2148    --------------------
2149
2150    function Homonym_Number (Subp : Entity_Id) return Nat is
2151       Count : Nat;
2152       Hom   : Entity_Id;
2153
2154    begin
2155       Count := 1;
2156       Hom := Homonym (Subp);
2157       while Present (Hom) loop
2158          if Scope (Hom) = Scope (Subp) then
2159             Count := Count + 1;
2160          end if;
2161
2162          Hom := Homonym (Hom);
2163       end loop;
2164
2165       return Count;
2166    end Homonym_Number;
2167
2168    ------------------------------
2169    -- In_Unconditional_Context --
2170    ------------------------------
2171
2172    function In_Unconditional_Context (Node : Node_Id) return Boolean is
2173       P : Node_Id;
2174
2175    begin
2176       P := Node;
2177       while Present (P) loop
2178          case Nkind (P) is
2179             when N_Subprogram_Body =>
2180                return True;
2181
2182             when N_If_Statement =>
2183                return False;
2184
2185             when N_Loop_Statement =>
2186                return False;
2187
2188             when N_Case_Statement =>
2189                return False;
2190
2191             when others =>
2192                P := Parent (P);
2193          end case;
2194       end loop;
2195
2196       return False;
2197    end In_Unconditional_Context;
2198
2199    -------------------
2200    -- Insert_Action --
2201    -------------------
2202
2203    procedure Insert_Action (Assoc_Node : Node_Id; Ins_Action : Node_Id) is
2204    begin
2205       if Present (Ins_Action) then
2206          Insert_Actions (Assoc_Node, New_List (Ins_Action));
2207       end if;
2208    end Insert_Action;
2209
2210    --  Version with check(s) suppressed
2211
2212    procedure Insert_Action
2213      (Assoc_Node : Node_Id; Ins_Action : Node_Id; Suppress : Check_Id)
2214    is
2215    begin
2216       Insert_Actions (Assoc_Node, New_List (Ins_Action), Suppress);
2217    end Insert_Action;
2218
2219    --------------------
2220    -- Insert_Actions --
2221    --------------------
2222
2223    procedure Insert_Actions (Assoc_Node : Node_Id; Ins_Actions : List_Id) is
2224       N : Node_Id;
2225       P : Node_Id;
2226
2227       Wrapped_Node : Node_Id := Empty;
2228
2229    begin
2230       if No (Ins_Actions) or else Is_Empty_List (Ins_Actions) then
2231          return;
2232       end if;
2233
2234       --  Ignore insert of actions from inside default expression (or other
2235       --  similar "spec expression") in the special spec-expression analyze
2236       --  mode. Any insertions at this point have no relevance, since we are
2237       --  only doing the analyze to freeze the types of any static expressions.
2238       --  See section "Handling of Default Expressions" in the spec of package
2239       --  Sem for further details.
2240
2241       if In_Spec_Expression then
2242          return;
2243       end if;
2244
2245       --  If the action derives from stuff inside a record, then the actions
2246       --  are attached to the current scope, to be inserted and analyzed on
2247       --  exit from the scope. The reason for this is that we may also
2248       --  be generating freeze actions at the same time, and they must
2249       --  eventually be elaborated in the correct order.
2250
2251       if Is_Record_Type (Current_Scope)
2252         and then not Is_Frozen (Current_Scope)
2253       then
2254          if No (Scope_Stack.Table
2255            (Scope_Stack.Last).Pending_Freeze_Actions)
2256          then
2257             Scope_Stack.Table (Scope_Stack.Last).Pending_Freeze_Actions :=
2258               Ins_Actions;
2259          else
2260             Append_List
2261               (Ins_Actions,
2262                Scope_Stack.Table (Scope_Stack.Last).Pending_Freeze_Actions);
2263          end if;
2264
2265          return;
2266       end if;
2267
2268       --  We now intend to climb up the tree to find the right point to
2269       --  insert the actions. We start at Assoc_Node, unless this node is
2270       --  a subexpression in which case we start with its parent. We do this
2271       --  for two reasons. First it speeds things up. Second, if Assoc_Node
2272       --  is itself one of the special nodes like N_And_Then, then we assume
2273       --  that an initial request to insert actions for such a node does not
2274       --  expect the actions to get deposited in the node for later handling
2275       --  when the node is expanded, since clearly the node is being dealt
2276       --  with by the caller. Note that in the subexpression case, N is
2277       --  always the child we came from.
2278
2279       --  N_Raise_xxx_Error is an annoying special case, it is a statement
2280       --  if it has type Standard_Void_Type, and a subexpression otherwise.
2281       --  otherwise. Procedure attribute references are also statements.
2282
2283       if Nkind (Assoc_Node) in N_Subexpr
2284         and then (Nkind (Assoc_Node) in N_Raise_xxx_Error
2285                    or else Etype (Assoc_Node) /= Standard_Void_Type)
2286         and then (Nkind (Assoc_Node) /= N_Attribute_Reference
2287                    or else
2288                      not Is_Procedure_Attribute_Name
2289                            (Attribute_Name (Assoc_Node)))
2290       then
2291          P := Assoc_Node;             -- ??? does not agree with above!
2292          N := Parent (Assoc_Node);
2293
2294       --  Non-subexpression case. Note that N is initially Empty in this
2295       --  case (N is only guaranteed Non-Empty in the subexpr case).
2296
2297       else
2298          P := Assoc_Node;
2299          N := Empty;
2300       end if;
2301
2302       --  Capture root of the transient scope
2303
2304       if Scope_Is_Transient then
2305          Wrapped_Node := Node_To_Be_Wrapped;
2306       end if;
2307
2308       loop
2309          pragma Assert (Present (P));
2310
2311          case Nkind (P) is
2312
2313             --  Case of right operand of AND THEN or OR ELSE. Put the actions
2314             --  in the Actions field of the right operand. They will be moved
2315             --  out further when the AND THEN or OR ELSE operator is expanded.
2316             --  Nothing special needs to be done for the left operand since
2317             --  in that case the actions are executed unconditionally.
2318
2319             when N_Short_Circuit =>
2320                if N = Right_Opnd (P) then
2321
2322                   --  We are now going to either append the actions to the
2323                   --  actions field of the short-circuit operation. We will
2324                   --  also analyze the actions now.
2325
2326                   --  This analysis is really too early, the proper thing would
2327                   --  be to just park them there now, and only analyze them if
2328                   --  we find we really need them, and to it at the proper
2329                   --  final insertion point. However attempting to this proved
2330                   --  tricky, so for now we just kill current values before and
2331                   --  after the analyze call to make sure we avoid peculiar
2332                   --  optimizations from this out of order insertion.
2333
2334                   Kill_Current_Values;
2335
2336                   if Present (Actions (P)) then
2337                      Insert_List_After_And_Analyze
2338                        (Last (Actions (P)), Ins_Actions);
2339                   else
2340                      Set_Actions (P, Ins_Actions);
2341                      Analyze_List (Actions (P));
2342                   end if;
2343
2344                   Kill_Current_Values;
2345
2346                   return;
2347                end if;
2348
2349             --  Then or Else operand of conditional expression. Add actions to
2350             --  Then_Actions or Else_Actions field as appropriate. The actions
2351             --  will be moved further out when the conditional is expanded.
2352
2353             when N_Conditional_Expression =>
2354                declare
2355                   ThenX : constant Node_Id := Next (First (Expressions (P)));
2356                   ElseX : constant Node_Id := Next (ThenX);
2357
2358                begin
2359                   --  Actions belong to the then expression, temporarily
2360                   --  place them as Then_Actions of the conditional expr.
2361                   --  They will be moved to the proper place later when
2362                   --  the conditional expression is expanded.
2363
2364                   if N = ThenX then
2365                      if Present (Then_Actions (P)) then
2366                         Insert_List_After_And_Analyze
2367                           (Last (Then_Actions (P)), Ins_Actions);
2368                      else
2369                         Set_Then_Actions (P, Ins_Actions);
2370                         Analyze_List (Then_Actions (P));
2371                      end if;
2372
2373                      return;
2374
2375                   --  Actions belong to the else expression, temporarily
2376                   --  place them as Else_Actions of the conditional expr.
2377                   --  They will be moved to the proper place later when
2378                   --  the conditional expression is expanded.
2379
2380                   elsif N = ElseX then
2381                      if Present (Else_Actions (P)) then
2382                         Insert_List_After_And_Analyze
2383                           (Last (Else_Actions (P)), Ins_Actions);
2384                      else
2385                         Set_Else_Actions (P, Ins_Actions);
2386                         Analyze_List (Else_Actions (P));
2387                      end if;
2388
2389                      return;
2390
2391                   --  Actions belong to the condition. In this case they are
2392                   --  unconditionally executed, and so we can continue the
2393                   --  search for the proper insert point.
2394
2395                   else
2396                      null;
2397                   end if;
2398                end;
2399
2400             --  Case of appearing in the condition of a while expression or
2401             --  elsif. We insert the actions into the Condition_Actions field.
2402             --  They will be moved further out when the while loop or elsif
2403             --  is analyzed.
2404
2405             when N_Iteration_Scheme |
2406                  N_Elsif_Part
2407             =>
2408                if N = Condition (P) then
2409                   if Present (Condition_Actions (P)) then
2410                      Insert_List_After_And_Analyze
2411                        (Last (Condition_Actions (P)), Ins_Actions);
2412                   else
2413                      Set_Condition_Actions (P, Ins_Actions);
2414
2415                      --  Set the parent of the insert actions explicitly.
2416                      --  This is not a syntactic field, but we need the
2417                      --  parent field set, in particular so that freeze
2418                      --  can understand that it is dealing with condition
2419                      --  actions, and properly insert the freezing actions.
2420
2421                      Set_Parent (Ins_Actions, P);
2422                      Analyze_List (Condition_Actions (P));
2423                   end if;
2424
2425                   return;
2426                end if;
2427
2428             --  Statements, declarations, pragmas, representation clauses
2429
2430             when
2431                --  Statements
2432
2433                N_Procedure_Call_Statement               |
2434                N_Statement_Other_Than_Procedure_Call    |
2435
2436                --  Pragmas
2437
2438                N_Pragma                                 |
2439
2440                --  Representation_Clause
2441
2442                N_At_Clause                              |
2443                N_Attribute_Definition_Clause            |
2444                N_Enumeration_Representation_Clause      |
2445                N_Record_Representation_Clause           |
2446
2447                --  Declarations
2448
2449                N_Abstract_Subprogram_Declaration        |
2450                N_Entry_Body                             |
2451                N_Exception_Declaration                  |
2452                N_Exception_Renaming_Declaration         |
2453                N_Formal_Abstract_Subprogram_Declaration |
2454                N_Formal_Concrete_Subprogram_Declaration |
2455                N_Formal_Object_Declaration              |
2456                N_Formal_Type_Declaration                |
2457                N_Full_Type_Declaration                  |
2458                N_Function_Instantiation                 |
2459                N_Generic_Function_Renaming_Declaration  |
2460                N_Generic_Package_Declaration            |
2461                N_Generic_Package_Renaming_Declaration   |
2462                N_Generic_Procedure_Renaming_Declaration |
2463                N_Generic_Subprogram_Declaration         |
2464                N_Implicit_Label_Declaration             |
2465                N_Incomplete_Type_Declaration            |
2466                N_Number_Declaration                     |
2467                N_Object_Declaration                     |
2468                N_Object_Renaming_Declaration            |
2469                N_Package_Body                           |
2470                N_Package_Body_Stub                      |
2471                N_Package_Declaration                    |
2472                N_Package_Instantiation                  |
2473                N_Package_Renaming_Declaration           |
2474                N_Private_Extension_Declaration          |
2475                N_Private_Type_Declaration               |
2476                N_Procedure_Instantiation                |
2477                N_Protected_Body                         |
2478                N_Protected_Body_Stub                    |
2479                N_Protected_Type_Declaration             |
2480                N_Single_Task_Declaration                |
2481                N_Subprogram_Body                        |
2482                N_Subprogram_Body_Stub                   |
2483                N_Subprogram_Declaration                 |
2484                N_Subprogram_Renaming_Declaration        |
2485                N_Subtype_Declaration                    |
2486                N_Task_Body                              |
2487                N_Task_Body_Stub                         |
2488                N_Task_Type_Declaration                  |
2489
2490                --  Freeze entity behaves like a declaration or statement
2491
2492                N_Freeze_Entity
2493             =>
2494                --  Do not insert here if the item is not a list member (this
2495                --  happens for example with a triggering statement, and the
2496                --  proper approach is to insert before the entire select).
2497
2498                if not Is_List_Member (P) then
2499                   null;
2500
2501                --  Do not insert if parent of P is an N_Component_Association
2502                --  node (i.e. we are in the context of an N_Aggregate or
2503                --  N_Extension_Aggregate node. In this case we want to insert
2504                --  before the entire aggregate.
2505
2506                elsif Nkind (Parent (P)) = N_Component_Association then
2507                   null;
2508
2509                --  Do not insert if the parent of P is either an N_Variant
2510                --  node or an N_Record_Definition node, meaning in either
2511                --  case that P is a member of a component list, and that
2512                --  therefore the actions should be inserted outside the
2513                --  complete record declaration.
2514
2515                elsif Nkind (Parent (P)) = N_Variant
2516                  or else Nkind (Parent (P)) = N_Record_Definition
2517                then
2518                   null;
2519
2520                --  Do not insert freeze nodes within the loop generated for
2521                --  an aggregate, because they may be elaborated too late for
2522                --  subsequent use in the back end: within a package spec the
2523                --  loop is part of the elaboration procedure and is only
2524                --  elaborated during the second pass.
2525                --  If the loop comes from source, or the entity is local to
2526                --  the loop itself it must remain within.
2527
2528                elsif Nkind (Parent (P)) = N_Loop_Statement
2529                  and then not Comes_From_Source (Parent (P))
2530                  and then Nkind (First (Ins_Actions)) = N_Freeze_Entity
2531                  and then
2532                    Scope (Entity (First (Ins_Actions))) /= Current_Scope
2533                then
2534                   null;
2535
2536                --  Otherwise we can go ahead and do the insertion
2537
2538                elsif P = Wrapped_Node then
2539                   Store_Before_Actions_In_Scope (Ins_Actions);
2540                   return;
2541
2542                else
2543                   Insert_List_Before_And_Analyze (P, Ins_Actions);
2544                   return;
2545                end if;
2546
2547             --  A special case, N_Raise_xxx_Error can act either as a
2548             --  statement or a subexpression. We tell the difference
2549             --  by looking at the Etype. It is set to Standard_Void_Type
2550             --  in the statement case.
2551
2552             when
2553                N_Raise_xxx_Error =>
2554                   if Etype (P) = Standard_Void_Type then
2555                      if  P = Wrapped_Node then
2556                         Store_Before_Actions_In_Scope (Ins_Actions);
2557                      else
2558                         Insert_List_Before_And_Analyze (P, Ins_Actions);
2559                      end if;
2560
2561                      return;
2562
2563                   --  In the subexpression case, keep climbing
2564
2565                   else
2566                      null;
2567                   end if;
2568
2569             --  If a component association appears within a loop created for
2570             --  an array aggregate, attach the actions to the association so
2571             --  they can be subsequently inserted within the loop. For other
2572             --  component associations insert outside of the aggregate. For
2573             --  an association that will generate a loop, its Loop_Actions
2574             --  attribute is already initialized (see exp_aggr.adb).
2575
2576             --  The list of loop_actions can in turn generate additional ones,
2577             --  that are inserted before the associated node. If the associated
2578             --  node is outside the aggregate, the new actions are collected
2579             --  at the end of the loop actions, to respect the order in which
2580             --  they are to be elaborated.
2581
2582             when
2583                N_Component_Association =>
2584                   if Nkind (Parent (P)) = N_Aggregate
2585                     and then Present (Loop_Actions (P))
2586                   then
2587                      if Is_Empty_List (Loop_Actions (P)) then
2588                         Set_Loop_Actions (P, Ins_Actions);
2589                         Analyze_List (Ins_Actions);
2590
2591                      else
2592                         declare
2593                            Decl : Node_Id;
2594
2595                         begin
2596                            --  Check whether these actions were generated
2597                            --  by a declaration that is part of the loop_
2598                            --  actions for the component_association.
2599
2600                            Decl := Assoc_Node;
2601                            while Present (Decl) loop
2602                               exit when Parent (Decl) = P
2603                                 and then Is_List_Member (Decl)
2604                                 and then
2605                                   List_Containing (Decl) = Loop_Actions (P);
2606                               Decl := Parent (Decl);
2607                            end loop;
2608
2609                            if Present (Decl) then
2610                               Insert_List_Before_And_Analyze
2611                                 (Decl, Ins_Actions);
2612                            else
2613                               Insert_List_After_And_Analyze
2614                                 (Last (Loop_Actions (P)), Ins_Actions);
2615                            end if;
2616                         end;
2617                      end if;
2618
2619                      return;
2620
2621                   else
2622                      null;
2623                   end if;
2624
2625             --  Another special case, an attribute denoting a procedure call
2626
2627             when
2628                N_Attribute_Reference =>
2629                   if Is_Procedure_Attribute_Name (Attribute_Name (P)) then
2630                      if P = Wrapped_Node then
2631                         Store_Before_Actions_In_Scope (Ins_Actions);
2632                      else
2633                         Insert_List_Before_And_Analyze (P, Ins_Actions);
2634                      end if;
2635
2636                      return;
2637
2638                   --  In the subexpression case, keep climbing
2639
2640                   else
2641                      null;
2642                   end if;
2643
2644             --  For all other node types, keep climbing tree
2645
2646             when
2647                N_Abortable_Part                         |
2648                N_Accept_Alternative                     |
2649                N_Access_Definition                      |
2650                N_Access_Function_Definition             |
2651                N_Access_Procedure_Definition            |
2652                N_Access_To_Object_Definition            |
2653                N_Aggregate                              |
2654                N_Allocator                              |
2655                N_Case_Statement_Alternative             |
2656                N_Character_Literal                      |
2657                N_Compilation_Unit                       |
2658                N_Compilation_Unit_Aux                   |
2659                N_Component_Clause                       |
2660                N_Component_Declaration                  |
2661                N_Component_Definition                   |
2662                N_Component_List                         |
2663                N_Constrained_Array_Definition           |
2664                N_Decimal_Fixed_Point_Definition         |
2665                N_Defining_Character_Literal             |
2666                N_Defining_Identifier                    |
2667                N_Defining_Operator_Symbol               |
2668                N_Defining_Program_Unit_Name             |
2669                N_Delay_Alternative                      |
2670                N_Delta_Constraint                       |
2671                N_Derived_Type_Definition                |
2672                N_Designator                             |
2673                N_Digits_Constraint                      |
2674                N_Discriminant_Association               |
2675                N_Discriminant_Specification             |
2676                N_Empty                                  |
2677                N_Entry_Body_Formal_Part                 |
2678                N_Entry_Call_Alternative                 |
2679                N_Entry_Declaration                      |
2680                N_Entry_Index_Specification              |
2681                N_Enumeration_Type_Definition            |
2682                N_Error                                  |
2683                N_Exception_Handler                      |
2684                N_Expanded_Name                          |
2685                N_Explicit_Dereference                   |
2686                N_Extension_Aggregate                    |
2687                N_Floating_Point_Definition              |
2688                N_Formal_Decimal_Fixed_Point_Definition  |
2689                N_Formal_Derived_Type_Definition         |
2690                N_Formal_Discrete_Type_Definition        |
2691                N_Formal_Floating_Point_Definition       |
2692                N_Formal_Modular_Type_Definition         |
2693                N_Formal_Ordinary_Fixed_Point_Definition |
2694                N_Formal_Package_Declaration             |
2695                N_Formal_Private_Type_Definition         |
2696                N_Formal_Signed_Integer_Type_Definition  |
2697                N_Function_Call                          |
2698                N_Function_Specification                 |
2699                N_Generic_Association                    |
2700                N_Handled_Sequence_Of_Statements         |
2701                N_Identifier                             |
2702                N_In                                     |
2703                N_Index_Or_Discriminant_Constraint       |
2704                N_Indexed_Component                      |
2705                N_Integer_Literal                        |
2706                N_Itype_Reference                        |
2707                N_Label                                  |
2708                N_Loop_Parameter_Specification           |
2709                N_Mod_Clause                             |
2710                N_Modular_Type_Definition                |
2711                N_Not_In                                 |
2712                N_Null                                   |
2713                N_Op_Abs                                 |
2714                N_Op_Add                                 |
2715                N_Op_And                                 |
2716                N_Op_Concat                              |
2717                N_Op_Divide                              |
2718                N_Op_Eq                                  |
2719                N_Op_Expon                               |
2720                N_Op_Ge                                  |
2721                N_Op_Gt                                  |
2722                N_Op_Le                                  |
2723                N_Op_Lt                                  |
2724                N_Op_Minus                               |
2725                N_Op_Mod                                 |
2726                N_Op_Multiply                            |
2727                N_Op_Ne                                  |
2728                N_Op_Not                                 |
2729                N_Op_Or                                  |
2730                N_Op_Plus                                |
2731                N_Op_Rem                                 |
2732                N_Op_Rotate_Left                         |
2733                N_Op_Rotate_Right                        |
2734                N_Op_Shift_Left                          |
2735                N_Op_Shift_Right                         |
2736                N_Op_Shift_Right_Arithmetic              |
2737                N_Op_Subtract                            |
2738                N_Op_Xor                                 |
2739                N_Operator_Symbol                        |
2740                N_Ordinary_Fixed_Point_Definition        |
2741                N_Others_Choice                          |
2742                N_Package_Specification                  |
2743                N_Parameter_Association                  |
2744                N_Parameter_Specification                |
2745                N_Pop_Constraint_Error_Label             |
2746                N_Pop_Program_Error_Label                |
2747                N_Pop_Storage_Error_Label                |
2748                N_Pragma_Argument_Association            |
2749                N_Procedure_Specification                |
2750                N_Protected_Definition                   |
2751                N_Push_Constraint_Error_Label            |
2752                N_Push_Program_Error_Label               |
2753                N_Push_Storage_Error_Label               |
2754                N_Qualified_Expression                   |
2755                N_Range                                  |
2756                N_Range_Constraint                       |
2757                N_Real_Literal                           |
2758                N_Real_Range_Specification               |
2759                N_Record_Definition                      |
2760                N_Reference                              |
2761                N_SCIL_Dispatch_Table_Object_Init        |
2762                N_SCIL_Dispatch_Table_Tag_Init           |
2763                N_SCIL_Dispatching_Call                  |
2764                N_SCIL_Membership_Test                   |
2765                N_SCIL_Tag_Init                          |
2766                N_Selected_Component                     |
2767                N_Signed_Integer_Type_Definition         |
2768                N_Single_Protected_Declaration           |
2769                N_Slice                                  |
2770                N_String_Literal                         |
2771                N_Subprogram_Info                        |
2772                N_Subtype_Indication                     |
2773                N_Subunit                                |
2774                N_Task_Definition                        |
2775                N_Terminate_Alternative                  |
2776                N_Triggering_Alternative                 |
2777                N_Type_Conversion                        |
2778                N_Unchecked_Expression                   |
2779                N_Unchecked_Type_Conversion              |
2780                N_Unconstrained_Array_Definition         |
2781                N_Unused_At_End                          |
2782                N_Unused_At_Start                        |
2783                N_Use_Package_Clause                     |
2784                N_Use_Type_Clause                        |
2785                N_Variant                                |
2786                N_Variant_Part                           |
2787                N_Validate_Unchecked_Conversion          |
2788                N_With_Clause
2789             =>
2790                null;
2791
2792          end case;
2793
2794          --  Make sure that inserted actions stay in the transient scope
2795
2796          if P = Wrapped_Node then
2797             Store_Before_Actions_In_Scope (Ins_Actions);
2798             return;
2799          end if;
2800
2801          --  If we fall through above tests, keep climbing tree
2802
2803          N := P;
2804
2805          if Nkind (Parent (N)) = N_Subunit then
2806
2807             --  This is the proper body corresponding to a stub. Insertion
2808             --  must be done at the point of the stub, which is in the decla-
2809             --  rative part of the parent unit.
2810
2811             P := Corresponding_Stub (Parent (N));
2812
2813          else
2814             P := Parent (N);
2815          end if;
2816       end loop;
2817    end Insert_Actions;
2818
2819    --  Version with check(s) suppressed
2820
2821    procedure Insert_Actions
2822      (Assoc_Node  : Node_Id;
2823       Ins_Actions : List_Id;
2824       Suppress    : Check_Id)
2825    is
2826    begin
2827       if Suppress = All_Checks then
2828          declare
2829             Svg : constant Suppress_Array := Scope_Suppress;
2830          begin
2831             Scope_Suppress := (others => True);
2832             Insert_Actions (Assoc_Node, Ins_Actions);
2833             Scope_Suppress := Svg;
2834          end;
2835
2836       else
2837          declare
2838             Svg : constant Boolean := Scope_Suppress (Suppress);
2839          begin
2840             Scope_Suppress (Suppress) := True;
2841             Insert_Actions (Assoc_Node, Ins_Actions);
2842             Scope_Suppress (Suppress) := Svg;
2843          end;
2844       end if;
2845    end Insert_Actions;
2846
2847    --------------------------
2848    -- Insert_Actions_After --
2849    --------------------------
2850
2851    procedure Insert_Actions_After
2852      (Assoc_Node  : Node_Id;
2853       Ins_Actions : List_Id)
2854    is
2855    begin
2856       if Scope_Is_Transient
2857         and then Assoc_Node = Node_To_Be_Wrapped
2858       then
2859          Store_After_Actions_In_Scope (Ins_Actions);
2860       else
2861          Insert_List_After_And_Analyze (Assoc_Node, Ins_Actions);
2862       end if;
2863    end Insert_Actions_After;
2864
2865    ---------------------------------
2866    -- Insert_Library_Level_Action --
2867    ---------------------------------
2868
2869    procedure Insert_Library_Level_Action (N : Node_Id) is
2870       Aux : constant Node_Id := Aux_Decls_Node (Cunit (Main_Unit));
2871
2872    begin
2873       Push_Scope (Cunit_Entity (Main_Unit));
2874       --  ??? should this be Current_Sem_Unit instead of Main_Unit?
2875
2876       if No (Actions (Aux)) then
2877          Set_Actions (Aux, New_List (N));
2878       else
2879          Append (N, Actions (Aux));
2880       end if;
2881
2882       Analyze (N);
2883       Pop_Scope;
2884    end Insert_Library_Level_Action;
2885
2886    ----------------------------------
2887    -- Insert_Library_Level_Actions --
2888    ----------------------------------
2889
2890    procedure Insert_Library_Level_Actions (L : List_Id) is
2891       Aux : constant Node_Id := Aux_Decls_Node (Cunit (Main_Unit));
2892
2893    begin
2894       if Is_Non_Empty_List (L) then
2895          Push_Scope (Cunit_Entity (Main_Unit));
2896          --  ??? should this be Current_Sem_Unit instead of Main_Unit?
2897
2898          if No (Actions (Aux)) then
2899             Set_Actions (Aux, L);
2900             Analyze_List (L);
2901          else
2902             Insert_List_After_And_Analyze (Last (Actions (Aux)), L);
2903          end if;
2904
2905          Pop_Scope;
2906       end if;
2907    end Insert_Library_Level_Actions;
2908
2909    ----------------------
2910    -- Inside_Init_Proc --
2911    ----------------------
2912
2913    function Inside_Init_Proc return Boolean is
2914       S : Entity_Id;
2915
2916    begin
2917       S := Current_Scope;
2918       while Present (S)
2919         and then S /= Standard_Standard
2920       loop
2921          if Is_Init_Proc (S) then
2922             return True;
2923          else
2924             S := Scope (S);
2925          end if;
2926       end loop;
2927
2928       return False;
2929    end Inside_Init_Proc;
2930
2931    ----------------------------
2932    -- Is_All_Null_Statements --
2933    ----------------------------
2934
2935    function Is_All_Null_Statements (L : List_Id) return Boolean is
2936       Stm : Node_Id;
2937
2938    begin
2939       Stm := First (L);
2940       while Present (Stm) loop
2941          if Nkind (Stm) /= N_Null_Statement then
2942             return False;
2943          end if;
2944
2945          Next (Stm);
2946       end loop;
2947
2948       return True;
2949    end Is_All_Null_Statements;
2950
2951    ---------------------------------
2952    -- Is_Fully_Repped_Tagged_Type --
2953    ---------------------------------
2954
2955    function Is_Fully_Repped_Tagged_Type (T : Entity_Id) return Boolean is
2956       U    : constant Entity_Id := Underlying_Type (T);
2957       Comp : Entity_Id;
2958
2959    begin
2960       if No (U) or else not Is_Tagged_Type (U) then
2961          return False;
2962       elsif Has_Discriminants (U) then
2963          return False;
2964       elsif not Has_Specified_Layout (U) then
2965          return False;
2966       end if;
2967
2968       --  Here we have a tagged type, see if it has any unlayed out fields
2969       --  other than a possible tag and parent fields. If so, we return False.
2970
2971       Comp := First_Component (U);
2972       while Present (Comp) loop
2973          if not Is_Tag (Comp)
2974            and then Chars (Comp) /= Name_uParent
2975            and then No (Component_Clause (Comp))
2976          then
2977             return False;
2978          else
2979             Next_Component (Comp);
2980          end if;
2981       end loop;
2982
2983       --  All components are layed out
2984
2985       return True;
2986    end Is_Fully_Repped_Tagged_Type;
2987
2988    ----------------------------------
2989    -- Is_Library_Level_Tagged_Type --
2990    ----------------------------------
2991
2992    function Is_Library_Level_Tagged_Type (Typ : Entity_Id) return Boolean is
2993    begin
2994       return Is_Tagged_Type (Typ)
2995         and then Is_Library_Level_Entity (Typ);
2996    end Is_Library_Level_Tagged_Type;
2997
2998    ----------------------------------
2999    -- Is_Possibly_Unaligned_Object --
3000    ----------------------------------
3001
3002    function Is_Possibly_Unaligned_Object (N : Node_Id) return Boolean is
3003       T  : constant Entity_Id := Etype (N);
3004
3005    begin
3006       --  If renamed object, apply test to underlying object
3007
3008       if Is_Entity_Name (N)
3009         and then Is_Object (Entity (N))
3010         and then Present (Renamed_Object (Entity (N)))
3011       then
3012          return Is_Possibly_Unaligned_Object (Renamed_Object (Entity (N)));
3013       end if;
3014
3015       --  Tagged and controlled types and aliased types are always aligned,
3016       --  as are concurrent types.
3017
3018       if Is_Aliased (T)
3019         or else Has_Controlled_Component (T)
3020         or else Is_Concurrent_Type (T)
3021         or else Is_Tagged_Type (T)
3022         or else Is_Controlled (T)
3023       then
3024          return False;
3025       end if;
3026
3027       --  If this is an element of a packed array, may be unaligned
3028
3029       if Is_Ref_To_Bit_Packed_Array (N) then
3030          return True;
3031       end if;
3032
3033       --  Case of component reference
3034
3035       if Nkind (N) = N_Selected_Component then
3036          declare
3037             P : constant Node_Id   := Prefix (N);
3038             C : constant Entity_Id := Entity (Selector_Name (N));
3039             M : Nat;
3040             S : Nat;
3041
3042          begin
3043             --  If component reference is for an array with non-static bounds,
3044             --  then it is always aligned: we can only process unaligned
3045             --  arrays with static bounds (more accurately bounds known at
3046             --  compile time).
3047
3048             if Is_Array_Type (T)
3049               and then not Compile_Time_Known_Bounds (T)
3050             then
3051                return False;
3052             end if;
3053
3054             --  If component is aliased, it is definitely properly aligned
3055
3056             if Is_Aliased (C) then
3057                return False;
3058             end if;
3059
3060             --  If component is for a type implemented as a scalar, and the
3061             --  record is packed, and the component is other than the first
3062             --  component of the record, then the component may be unaligned.
3063
3064             if Is_Packed (Etype (P))
3065               and then Represented_As_Scalar (Etype (C))
3066               and then First_Entity (Scope (C)) /= C
3067             then
3068                return True;
3069             end if;
3070
3071             --  Compute maximum possible alignment for T
3072
3073             --  If alignment is known, then that settles things
3074
3075             if Known_Alignment (T) then
3076                M := UI_To_Int (Alignment (T));
3077
3078             --  If alignment is not known, tentatively set max alignment
3079
3080             else
3081                M := Ttypes.Maximum_Alignment;
3082
3083                --  We can reduce this if the Esize is known since the default
3084                --  alignment will never be more than the smallest power of 2
3085                --  that does not exceed this Esize value.
3086
3087                if Known_Esize (T) then
3088                   S := UI_To_Int (Esize (T));
3089
3090                   while (M / 2) >= S loop
3091                      M := M / 2;
3092                   end loop;
3093                end if;
3094             end if;
3095
3096             --  If the component reference is for a record that has a specified
3097             --  alignment, and we either know it is too small, or cannot tell,
3098             --  then the component may be unaligned
3099
3100             if Known_Alignment (Etype (P))
3101               and then Alignment (Etype (P)) < Ttypes.Maximum_Alignment
3102               and then M > Alignment (Etype (P))
3103             then
3104                return True;
3105             end if;
3106
3107             --  Case of component clause present which may specify an
3108             --  unaligned position.
3109
3110             if Present (Component_Clause (C)) then
3111
3112                --  Otherwise we can do a test to make sure that the actual
3113                --  start position in the record, and the length, are both
3114                --  consistent with the required alignment. If not, we know
3115                --  that we are unaligned.
3116
3117                declare
3118                   Align_In_Bits : constant Nat := M * System_Storage_Unit;
3119                begin
3120                   if Component_Bit_Offset (C) mod Align_In_Bits /= 0
3121                     or else Esize (C) mod Align_In_Bits /= 0
3122                   then
3123                      return True;
3124                   end if;
3125                end;
3126             end if;
3127
3128             --  Otherwise, for a component reference, test prefix
3129
3130             return Is_Possibly_Unaligned_Object (P);
3131          end;
3132
3133       --  If not a component reference, must be aligned
3134
3135       else
3136          return False;
3137       end if;
3138    end Is_Possibly_Unaligned_Object;
3139
3140    ---------------------------------
3141    -- Is_Possibly_Unaligned_Slice --
3142    ---------------------------------
3143
3144    function Is_Possibly_Unaligned_Slice (N : Node_Id) return Boolean is
3145    begin
3146       --  Go to renamed object
3147
3148       if Is_Entity_Name (N)
3149         and then Is_Object (Entity (N))
3150         and then Present (Renamed_Object (Entity (N)))
3151       then
3152          return Is_Possibly_Unaligned_Slice (Renamed_Object (Entity (N)));
3153       end if;
3154
3155       --  The reference must be a slice
3156
3157       if Nkind (N) /= N_Slice then
3158          return False;
3159       end if;
3160
3161       --  Always assume the worst for a nested record component with a
3162       --  component clause, which gigi/gcc does not appear to handle well.
3163       --  It is not clear why this special test is needed at all ???
3164
3165       if Nkind (Prefix (N)) = N_Selected_Component
3166         and then Nkind (Prefix (Prefix (N))) = N_Selected_Component
3167         and then
3168           Present (Component_Clause (Entity (Selector_Name (Prefix (N)))))
3169       then
3170          return True;
3171       end if;
3172
3173       --  We only need to worry if the target has strict alignment
3174
3175       if not Target_Strict_Alignment then
3176          return False;
3177       end if;
3178
3179       --  If it is a slice, then look at the array type being sliced
3180
3181       declare
3182          Sarr : constant Node_Id := Prefix (N);
3183          --  Prefix of the slice, i.e. the array being sliced
3184
3185          Styp : constant Entity_Id := Etype (Prefix (N));
3186          --  Type of the array being sliced
3187
3188          Pref : Node_Id;
3189          Ptyp : Entity_Id;
3190
3191       begin
3192          --  The problems arise if the array object that is being sliced
3193          --  is a component of a record or array, and we cannot guarantee
3194          --  the alignment of the array within its containing object.
3195
3196          --  To investigate this, we look at successive prefixes to see
3197          --  if we have a worrisome indexed or selected component.
3198
3199          Pref := Sarr;
3200          loop
3201             --  Case of array is part of an indexed component reference
3202
3203             if Nkind (Pref) = N_Indexed_Component then
3204                Ptyp := Etype (Prefix (Pref));
3205
3206                --  The only problematic case is when the array is packed,
3207                --  in which case we really know nothing about the alignment
3208                --  of individual components.
3209
3210                if Is_Bit_Packed_Array (Ptyp) then
3211                   return True;
3212                end if;
3213
3214             --  Case of array is part of a selected component reference
3215
3216             elsif Nkind (Pref) = N_Selected_Component then
3217                Ptyp := Etype (Prefix (Pref));
3218
3219                --  We are definitely in trouble if the record in question
3220                --  has an alignment, and either we know this alignment is
3221                --  inconsistent with the alignment of the slice, or we
3222                --  don't know what the alignment of the slice should be.
3223
3224                if Known_Alignment (Ptyp)
3225                  and then (Unknown_Alignment (Styp)
3226                              or else Alignment (Styp) > Alignment (Ptyp))
3227                then
3228                   return True;
3229                end if;
3230
3231                --  We are in potential trouble if the record type is packed.
3232                --  We could special case when we know that the array is the
3233                --  first component, but that's not such a simple case ???
3234
3235                if Is_Packed (Ptyp) then
3236                   return True;
3237                end if;
3238
3239                --  We are in trouble if there is a component clause, and
3240                --  either we do not know the alignment of the slice, or
3241                --  the alignment of the slice is inconsistent with the
3242                --  bit position specified by the component clause.
3243
3244                declare
3245                   Field : constant Entity_Id := Entity (Selector_Name (Pref));
3246                begin
3247                   if Present (Component_Clause (Field))
3248                     and then
3249                       (Unknown_Alignment (Styp)
3250                         or else
3251                          (Component_Bit_Offset (Field) mod
3252                            (System_Storage_Unit * Alignment (Styp))) /= 0)
3253                   then
3254                      return True;
3255                   end if;
3256                end;
3257
3258             --  For cases other than selected or indexed components we
3259             --  know we are OK, since no issues arise over alignment.
3260
3261             else
3262                return False;
3263             end if;
3264
3265             --  We processed an indexed component or selected component
3266             --  reference that looked safe, so keep checking prefixes.
3267
3268             Pref := Prefix (Pref);
3269          end loop;
3270       end;
3271    end Is_Possibly_Unaligned_Slice;
3272
3273    --------------------------------
3274    -- Is_Ref_To_Bit_Packed_Array --
3275    --------------------------------
3276
3277    function Is_Ref_To_Bit_Packed_Array (N : Node_Id) return Boolean is
3278       Result : Boolean;
3279       Expr   : Node_Id;
3280
3281    begin
3282       if Is_Entity_Name (N)
3283         and then Is_Object (Entity (N))
3284         and then Present (Renamed_Object (Entity (N)))
3285       then
3286          return Is_Ref_To_Bit_Packed_Array (Renamed_Object (Entity (N)));
3287       end if;
3288
3289       if Nkind (N) = N_Indexed_Component
3290            or else
3291          Nkind (N) = N_Selected_Component
3292       then
3293          if Is_Bit_Packed_Array (Etype (Prefix (N))) then
3294             Result := True;
3295          else
3296             Result := Is_Ref_To_Bit_Packed_Array (Prefix (N));
3297          end if;
3298
3299          if Result and then Nkind (N) = N_Indexed_Component then
3300             Expr := First (Expressions (N));
3301             while Present (Expr) loop
3302                Force_Evaluation (Expr);
3303                Next (Expr);
3304             end loop;
3305          end if;
3306
3307          return Result;
3308
3309       else
3310          return False;
3311       end if;
3312    end Is_Ref_To_Bit_Packed_Array;
3313
3314    --------------------------------
3315    -- Is_Ref_To_Bit_Packed_Slice --
3316    --------------------------------
3317
3318    function Is_Ref_To_Bit_Packed_Slice (N : Node_Id) return Boolean is
3319    begin
3320       if Nkind (N) = N_Type_Conversion then
3321          return Is_Ref_To_Bit_Packed_Slice (Expression (N));
3322
3323       elsif Is_Entity_Name (N)
3324         and then Is_Object (Entity (N))
3325         and then Present (Renamed_Object (Entity (N)))
3326       then
3327          return Is_Ref_To_Bit_Packed_Slice (Renamed_Object (Entity (N)));
3328
3329       elsif Nkind (N) = N_Slice
3330         and then Is_Bit_Packed_Array (Etype (Prefix (N)))
3331       then
3332          return True;
3333
3334       elsif Nkind (N) = N_Indexed_Component
3335            or else
3336          Nkind (N) = N_Selected_Component
3337       then
3338          return Is_Ref_To_Bit_Packed_Slice (Prefix (N));
3339
3340       else
3341          return False;
3342       end if;
3343    end Is_Ref_To_Bit_Packed_Slice;
3344
3345    -----------------------
3346    -- Is_Renamed_Object --
3347    -----------------------
3348
3349    function Is_Renamed_Object (N : Node_Id) return Boolean is
3350       Pnod : constant Node_Id   := Parent (N);
3351       Kind : constant Node_Kind := Nkind (Pnod);
3352    begin
3353       if Kind = N_Object_Renaming_Declaration then
3354          return True;
3355       elsif Nkind_In (Kind, N_Indexed_Component, N_Selected_Component) then
3356          return Is_Renamed_Object (Pnod);
3357       else
3358          return False;
3359       end if;
3360    end Is_Renamed_Object;
3361
3362    ----------------------------
3363    -- Is_Untagged_Derivation --
3364    ----------------------------
3365
3366    function Is_Untagged_Derivation (T : Entity_Id) return Boolean is
3367    begin
3368       return (not Is_Tagged_Type (T) and then Is_Derived_Type (T))
3369                or else
3370              (Is_Private_Type (T) and then Present (Full_View (T))
3371                and then not Is_Tagged_Type (Full_View (T))
3372                and then Is_Derived_Type (Full_View (T))
3373                and then Etype (Full_View (T)) /= T);
3374    end Is_Untagged_Derivation;
3375
3376    ---------------------------
3377    -- Is_Volatile_Reference --
3378    ---------------------------
3379
3380    function Is_Volatile_Reference (N : Node_Id) return Boolean is
3381    begin
3382       if Nkind (N) in N_Has_Etype
3383         and then Present (Etype (N))
3384         and then Treat_As_Volatile (Etype (N))
3385       then
3386          return True;
3387
3388       elsif Is_Entity_Name (N) then
3389          return Treat_As_Volatile (Entity (N));
3390
3391       elsif Nkind (N) = N_Slice then
3392          return Is_Volatile_Reference (Prefix (N));
3393
3394       elsif Nkind_In (N, N_Indexed_Component, N_Selected_Component) then
3395          if (Is_Entity_Name (Prefix (N))
3396                and then Has_Volatile_Components (Entity (Prefix (N))))
3397            or else (Present (Etype (Prefix (N)))
3398                       and then Has_Volatile_Components (Etype (Prefix (N))))
3399          then
3400             return True;
3401          else
3402             return Is_Volatile_Reference (Prefix (N));
3403          end if;
3404
3405       else
3406          return False;
3407       end if;
3408    end Is_Volatile_Reference;
3409
3410    --------------------
3411    -- Kill_Dead_Code --
3412    --------------------
3413
3414    procedure Kill_Dead_Code (N : Node_Id; Warn : Boolean := False) is
3415    begin
3416       if Present (N) then
3417          Remove_Warning_Messages (N);
3418
3419          if Warn then
3420             Error_Msg_F
3421               ("?this code can never be executed and has been deleted!", N);
3422          end if;
3423
3424          --  Recurse into block statements and bodies to process declarations
3425          --  and statements
3426
3427          if Nkind (N) = N_Block_Statement
3428            or else Nkind (N) = N_Subprogram_Body
3429            or else Nkind (N) = N_Package_Body
3430          then
3431             Kill_Dead_Code (Declarations (N), False);
3432             Kill_Dead_Code (Statements (Handled_Statement_Sequence (N)));
3433
3434             if Nkind (N) = N_Subprogram_Body then
3435                Set_Is_Eliminated (Defining_Entity (N));
3436             end if;
3437
3438          elsif Nkind (N) = N_Package_Declaration then
3439             Kill_Dead_Code (Visible_Declarations (Specification (N)));
3440             Kill_Dead_Code (Private_Declarations (Specification (N)));
3441
3442             --  ??? After this point, Delete_Tree has been called on all
3443             --  declarations in Specification (N), so references to
3444             --  entities therein look suspicious.
3445
3446             declare
3447                E : Entity_Id := First_Entity (Defining_Entity (N));
3448             begin
3449                while Present (E) loop
3450                   if Ekind (E) = E_Operator then
3451                      Set_Is_Eliminated (E);
3452                   end if;
3453
3454                   Next_Entity (E);
3455                end loop;
3456             end;
3457
3458          --  Recurse into composite statement to kill individual statements,
3459          --  in particular instantiations.
3460
3461          elsif Nkind (N) = N_If_Statement then
3462             Kill_Dead_Code (Then_Statements (N));
3463             Kill_Dead_Code (Elsif_Parts (N));
3464             Kill_Dead_Code (Else_Statements (N));
3465
3466          elsif Nkind (N) = N_Loop_Statement then
3467             Kill_Dead_Code (Statements (N));
3468
3469          elsif Nkind (N) = N_Case_Statement then
3470             declare
3471                Alt : Node_Id;
3472             begin
3473                Alt := First (Alternatives (N));
3474                while Present (Alt) loop
3475                   Kill_Dead_Code (Statements (Alt));
3476                   Next (Alt);
3477                end loop;
3478             end;
3479
3480          elsif Nkind (N) = N_Case_Statement_Alternative then
3481             Kill_Dead_Code (Statements (N));
3482
3483          --  Deal with dead instances caused by deleting instantiations
3484
3485          elsif Nkind (N) in N_Generic_Instantiation then
3486             Remove_Dead_Instance (N);
3487          end if;
3488       end if;
3489    end Kill_Dead_Code;
3490
3491    --  Case where argument is a list of nodes to be killed
3492
3493    procedure Kill_Dead_Code (L : List_Id; Warn : Boolean := False) is
3494       N : Node_Id;
3495       W : Boolean;
3496    begin
3497       W := Warn;
3498       if Is_Non_Empty_List (L) then
3499          N := First (L);
3500          while Present (N) loop
3501             Kill_Dead_Code (N, W);
3502             W := False;
3503             Next (N);
3504          end loop;
3505       end if;
3506    end Kill_Dead_Code;
3507
3508    ------------------------
3509    -- Known_Non_Negative --
3510    ------------------------
3511
3512    function Known_Non_Negative (Opnd : Node_Id) return Boolean is
3513    begin
3514       if Is_OK_Static_Expression (Opnd)
3515         and then Expr_Value (Opnd) >= 0
3516       then
3517          return True;
3518
3519       else
3520          declare
3521             Lo : constant Node_Id := Type_Low_Bound (Etype (Opnd));
3522
3523          begin
3524             return
3525               Is_OK_Static_Expression (Lo) and then Expr_Value (Lo) >= 0;
3526          end;
3527       end if;
3528    end Known_Non_Negative;
3529
3530    --------------------
3531    -- Known_Non_Null --
3532    --------------------
3533
3534    function Known_Non_Null (N : Node_Id) return Boolean is
3535    begin
3536       --  Checks for case where N is an entity reference
3537
3538       if Is_Entity_Name (N) and then Present (Entity (N)) then
3539          declare
3540             E   : constant Entity_Id := Entity (N);
3541             Op  : Node_Kind;
3542             Val : Node_Id;
3543
3544          begin
3545             --  First check if we are in decisive conditional
3546
3547             Get_Current_Value_Condition (N, Op, Val);
3548
3549             if Known_Null (Val) then
3550                if Op = N_Op_Eq then
3551                   return False;
3552                elsif Op = N_Op_Ne then
3553                   return True;
3554                end if;
3555             end if;
3556
3557             --  If OK to do replacement, test Is_Known_Non_Null flag
3558
3559             if OK_To_Do_Constant_Replacement (E) then
3560                return Is_Known_Non_Null (E);
3561
3562             --  Otherwise if not safe to do replacement, then say so
3563
3564             else
3565                return False;
3566             end if;
3567          end;
3568
3569       --  True if access attribute
3570
3571       elsif Nkind (N) = N_Attribute_Reference
3572         and then (Attribute_Name (N) = Name_Access
3573                     or else
3574                   Attribute_Name (N) = Name_Unchecked_Access
3575                     or else
3576                   Attribute_Name (N) = Name_Unrestricted_Access)
3577       then
3578          return True;
3579
3580       --  True if allocator
3581
3582       elsif Nkind (N) = N_Allocator then
3583          return True;
3584
3585       --  For a conversion, true if expression is known non-null
3586
3587       elsif Nkind (N) = N_Type_Conversion then
3588          return Known_Non_Null (Expression (N));
3589
3590       --  Above are all cases where the value could be determined to be
3591       --  non-null. In all other cases, we don't know, so return False.
3592
3593       else
3594          return False;
3595       end if;
3596    end Known_Non_Null;
3597
3598    ----------------
3599    -- Known_Null --
3600    ----------------
3601
3602    function Known_Null (N : Node_Id) return Boolean is
3603    begin
3604       --  Checks for case where N is an entity reference
3605
3606       if Is_Entity_Name (N) and then Present (Entity (N)) then
3607          declare
3608             E   : constant Entity_Id := Entity (N);
3609             Op  : Node_Kind;
3610             Val : Node_Id;
3611
3612          begin
3613             --  Constant null value is for sure null
3614
3615             if Ekind (E) = E_Constant
3616               and then Known_Null (Constant_Value (E))
3617             then
3618                return True;
3619             end if;
3620
3621             --  First check if we are in decisive conditional
3622
3623             Get_Current_Value_Condition (N, Op, Val);
3624
3625             if Known_Null (Val) then
3626                if Op = N_Op_Eq then
3627                   return True;
3628                elsif Op = N_Op_Ne then
3629                   return False;
3630                end if;
3631             end if;
3632
3633             --  If OK to do replacement, test Is_Known_Null flag
3634
3635             if OK_To_Do_Constant_Replacement (E) then
3636                return Is_Known_Null (E);
3637
3638             --  Otherwise if not safe to do replacement, then say so
3639
3640             else
3641                return False;
3642             end if;
3643          end;
3644
3645       --  True if explicit reference to null
3646
3647       elsif Nkind (N) = N_Null then
3648          return True;
3649
3650       --  For a conversion, true if expression is known null
3651
3652       elsif Nkind (N) = N_Type_Conversion then
3653          return Known_Null (Expression (N));
3654
3655       --  Above are all cases where the value could be determined to be null.
3656       --  In all other cases, we don't know, so return False.
3657
3658       else
3659          return False;
3660       end if;
3661    end Known_Null;
3662
3663    -----------------------------
3664    -- Make_CW_Equivalent_Type --
3665    -----------------------------
3666
3667    --  Create a record type used as an equivalent of any member of the class
3668    --  which takes its size from exp.
3669
3670    --  Generate the following code:
3671
3672    --   type Equiv_T is record
3673    --     _parent :  T (List of discriminant constraints taken from Exp);
3674    --     Ext__50 : Storage_Array (1 .. (Exp'size - Typ'object_size)/8);
3675    --   end Equiv_T;
3676    --
3677    --   ??? Note that this type does not guarantee same alignment as all
3678    --   derived types
3679
3680    function Make_CW_Equivalent_Type
3681      (T : Entity_Id;
3682       E : Node_Id) return Entity_Id
3683    is
3684       Loc         : constant Source_Ptr := Sloc (E);
3685       Root_Typ    : constant Entity_Id  := Root_Type (T);
3686       List_Def    : constant List_Id    := Empty_List;
3687       Comp_List   : constant List_Id    := New_List;
3688       Equiv_Type  : Entity_Id;
3689       Range_Type  : Entity_Id;
3690       Str_Type    : Entity_Id;
3691       Constr_Root : Entity_Id;
3692       Sizexpr     : Node_Id;
3693
3694    begin
3695       if not Has_Discriminants (Root_Typ) then
3696          Constr_Root := Root_Typ;
3697       else
3698          Constr_Root :=
3699            Make_Defining_Identifier (Loc, New_Internal_Name ('R'));
3700
3701          --  subtype cstr__n is T (List of discr constraints taken from Exp)
3702
3703          Append_To (List_Def,
3704            Make_Subtype_Declaration (Loc,
3705              Defining_Identifier => Constr_Root,
3706                Subtype_Indication =>
3707                  Make_Subtype_From_Expr (E, Root_Typ)));
3708       end if;
3709
3710       --  Generate the range subtype declaration
3711
3712       Range_Type := Make_Defining_Identifier (Loc, New_Internal_Name ('G'));
3713
3714       if not Is_Interface (Root_Typ) then
3715
3716          --  subtype rg__xx is
3717          --    Storage_Offset range 1 .. (Expr'size - typ'size) / Storage_Unit
3718
3719          Sizexpr :=
3720            Make_Op_Subtract (Loc,
3721              Left_Opnd =>
3722                Make_Attribute_Reference (Loc,
3723                  Prefix =>
3724                    OK_Convert_To (T, Duplicate_Subexpr_No_Checks (E)),
3725                  Attribute_Name => Name_Size),
3726              Right_Opnd =>
3727                Make_Attribute_Reference (Loc,
3728                  Prefix => New_Reference_To (Constr_Root, Loc),
3729                  Attribute_Name => Name_Object_Size));
3730       else
3731          --  subtype rg__xx is
3732          --    Storage_Offset range 1 .. Expr'size / Storage_Unit
3733
3734          Sizexpr :=
3735            Make_Attribute_Reference (Loc,
3736              Prefix =>
3737                OK_Convert_To (T, Duplicate_Subexpr_No_Checks (E)),
3738              Attribute_Name => Name_Size);
3739       end if;
3740
3741       Set_Paren_Count (Sizexpr, 1);
3742
3743       Append_To (List_Def,
3744         Make_Subtype_Declaration (Loc,
3745           Defining_Identifier => Range_Type,
3746           Subtype_Indication =>
3747             Make_Subtype_Indication (Loc,
3748               Subtype_Mark => New_Reference_To (RTE (RE_Storage_Offset), Loc),
3749               Constraint => Make_Range_Constraint (Loc,
3750                 Range_Expression =>
3751                   Make_Range (Loc,
3752                     Low_Bound => Make_Integer_Literal (Loc, 1),
3753                     High_Bound =>
3754                       Make_Op_Divide (Loc,
3755                         Left_Opnd => Sizexpr,
3756                         Right_Opnd => Make_Integer_Literal (Loc,
3757                             Intval => System_Storage_Unit)))))));
3758
3759       --  subtype str__nn is Storage_Array (rg__x);
3760
3761       Str_Type := Make_Defining_Identifier (Loc, New_Internal_Name ('S'));
3762       Append_To (List_Def,
3763         Make_Subtype_Declaration (Loc,
3764           Defining_Identifier => Str_Type,
3765           Subtype_Indication =>
3766             Make_Subtype_Indication (Loc,
3767               Subtype_Mark => New_Reference_To (RTE (RE_Storage_Array), Loc),
3768               Constraint =>
3769                 Make_Index_Or_Discriminant_Constraint (Loc,
3770                   Constraints =>
3771                     New_List (New_Reference_To (Range_Type, Loc))))));
3772
3773       --  type Equiv_T is record
3774       --    [ _parent : Tnn; ]
3775       --    E : Str_Type;
3776       --  end Equiv_T;
3777
3778       Equiv_Type := Make_Defining_Identifier (Loc, New_Internal_Name ('T'));
3779       Set_Ekind (Equiv_Type, E_Record_Type);
3780       Set_Parent_Subtype (Equiv_Type, Constr_Root);
3781
3782       if not Is_Interface (Root_Typ) then
3783          Append_To (Comp_List,
3784            Make_Component_Declaration (Loc,
3785              Defining_Identifier =>
3786                Make_Defining_Identifier (Loc, Name_uParent),
3787              Component_Definition =>
3788                Make_Component_Definition (Loc,
3789                  Aliased_Present    => False,
3790                  Subtype_Indication => New_Reference_To (Constr_Root, Loc))));
3791       end if;
3792
3793       Append_To (Comp_List,
3794         Make_Component_Declaration (Loc,
3795           Defining_Identifier =>
3796             Make_Defining_Identifier (Loc,
3797               Chars => New_Internal_Name ('C')),
3798           Component_Definition =>
3799             Make_Component_Definition (Loc,
3800               Aliased_Present    => False,
3801               Subtype_Indication => New_Reference_To (Str_Type, Loc))));
3802
3803       Append_To (List_Def,
3804         Make_Full_Type_Declaration (Loc,
3805           Defining_Identifier => Equiv_Type,
3806           Type_Definition =>
3807             Make_Record_Definition (Loc,
3808               Component_List =>
3809                 Make_Component_List (Loc,
3810                   Component_Items => Comp_List,
3811                   Variant_Part    => Empty))));
3812
3813       --  Suppress all checks during the analysis of the expanded code
3814       --  to avoid the generation of spurious warnings under ZFP run-time.
3815
3816       Insert_Actions (E, List_Def, Suppress => All_Checks);
3817       return Equiv_Type;
3818    end Make_CW_Equivalent_Type;
3819
3820    ------------------------
3821    -- Make_Literal_Range --
3822    ------------------------
3823
3824    function Make_Literal_Range
3825      (Loc         : Source_Ptr;
3826       Literal_Typ : Entity_Id) return Node_Id
3827    is
3828       Lo          : constant Node_Id :=
3829                       New_Copy_Tree (String_Literal_Low_Bound (Literal_Typ));
3830       Index       : constant Entity_Id := Etype (Lo);
3831
3832       Hi          : Node_Id;
3833       Length_Expr : constant Node_Id :=
3834                       Make_Op_Subtract (Loc,
3835                         Left_Opnd =>
3836                           Make_Integer_Literal (Loc,
3837                             Intval => String_Literal_Length (Literal_Typ)),
3838                         Right_Opnd =>
3839                           Make_Integer_Literal (Loc, 1));
3840
3841    begin
3842       Set_Analyzed (Lo, False);
3843
3844          if Is_Integer_Type (Index) then
3845             Hi :=
3846               Make_Op_Add (Loc,
3847                 Left_Opnd  => New_Copy_Tree (Lo),
3848                 Right_Opnd => Length_Expr);
3849          else
3850             Hi :=
3851               Make_Attribute_Reference (Loc,
3852                 Attribute_Name => Name_Val,
3853                 Prefix => New_Occurrence_Of (Index, Loc),
3854                 Expressions => New_List (
3855                  Make_Op_Add (Loc,
3856                    Left_Opnd =>
3857                      Make_Attribute_Reference (Loc,
3858                        Attribute_Name => Name_Pos,
3859                        Prefix => New_Occurrence_Of (Index, Loc),
3860                        Expressions => New_List (New_Copy_Tree (Lo))),
3861                   Right_Opnd => Length_Expr)));
3862          end if;
3863
3864          return
3865            Make_Range (Loc,
3866              Low_Bound  => Lo,
3867              High_Bound => Hi);
3868    end Make_Literal_Range;
3869
3870    --------------------------
3871    -- Make_Non_Empty_Check --
3872    --------------------------
3873
3874    function Make_Non_Empty_Check
3875      (Loc : Source_Ptr;
3876       N   : Node_Id) return Node_Id
3877    is
3878    begin
3879       return
3880         Make_Op_Ne (Loc,
3881           Left_Opnd =>
3882             Make_Attribute_Reference (Loc,
3883               Attribute_Name => Name_Length,
3884               Prefix => Duplicate_Subexpr_No_Checks (N, Name_Req => True)),
3885           Right_Opnd =>
3886             Make_Integer_Literal (Loc, 0));
3887    end Make_Non_Empty_Check;
3888
3889    ----------------------------
3890    -- Make_Subtype_From_Expr --
3891    ----------------------------
3892
3893    --  1. If Expr is an unconstrained array expression, creates
3894    --    Unc_Type(Expr'first(1)..Expr'last(1),..., Expr'first(n)..Expr'last(n))
3895
3896    --  2. If Expr is a unconstrained discriminated type expression, creates
3897    --    Unc_Type(Expr.Discr1, ... , Expr.Discr_n)
3898
3899    --  3. If Expr is class-wide, creates an implicit class wide subtype
3900
3901    function Make_Subtype_From_Expr
3902      (E       : Node_Id;
3903       Unc_Typ : Entity_Id) return Node_Id
3904    is
3905       Loc         : constant Source_Ptr := Sloc (E);
3906       List_Constr : constant List_Id    := New_List;
3907       D           : Entity_Id;
3908
3909       Full_Subtyp  : Entity_Id;
3910       Priv_Subtyp  : Entity_Id;
3911       Utyp         : Entity_Id;
3912       Full_Exp     : Node_Id;
3913
3914    begin
3915       if Is_Private_Type (Unc_Typ)
3916         and then Has_Unknown_Discriminants (Unc_Typ)
3917       then
3918          --  Prepare the subtype completion, Go to base type to
3919          --  find underlying type, because the type may be a generic
3920          --  actual or an explicit subtype.
3921
3922          Utyp        := Underlying_Type (Base_Type (Unc_Typ));
3923          Full_Subtyp := Make_Defining_Identifier (Loc,
3924                           New_Internal_Name ('C'));
3925          Full_Exp    :=
3926            Unchecked_Convert_To
3927              (Utyp, Duplicate_Subexpr_No_Checks (E));
3928          Set_Parent (Full_Exp, Parent (E));
3929
3930          Priv_Subtyp :=
3931            Make_Defining_Identifier (Loc, New_Internal_Name ('P'));
3932
3933          Insert_Action (E,
3934            Make_Subtype_Declaration (Loc,
3935              Defining_Identifier => Full_Subtyp,
3936              Subtype_Indication  => Make_Subtype_From_Expr (Full_Exp, Utyp)));
3937
3938          --  Define the dummy private subtype
3939
3940          Set_Ekind          (Priv_Subtyp, Subtype_Kind (Ekind (Unc_Typ)));
3941          Set_Etype          (Priv_Subtyp, Base_Type (Unc_Typ));
3942          Set_Scope          (Priv_Subtyp, Full_Subtyp);
3943          Set_Is_Constrained (Priv_Subtyp);
3944          Set_Is_Tagged_Type (Priv_Subtyp, Is_Tagged_Type (Unc_Typ));
3945          Set_Is_Itype       (Priv_Subtyp);
3946          Set_Associated_Node_For_Itype (Priv_Subtyp, E);
3947
3948          if Is_Tagged_Type  (Priv_Subtyp) then
3949             Set_Class_Wide_Type
3950               (Base_Type (Priv_Subtyp), Class_Wide_Type (Unc_Typ));
3951             Set_Primitive_Operations (Priv_Subtyp,
3952               Primitive_Operations (Unc_Typ));
3953          end if;
3954
3955          Set_Full_View (Priv_Subtyp, Full_Subtyp);
3956
3957          return New_Reference_To (Priv_Subtyp, Loc);
3958
3959       elsif Is_Array_Type (Unc_Typ) then
3960          for J in 1 .. Number_Dimensions (Unc_Typ) loop
3961             Append_To (List_Constr,
3962               Make_Range (Loc,
3963                 Low_Bound =>
3964                   Make_Attribute_Reference (Loc,
3965                     Prefix => Duplicate_Subexpr_No_Checks (E),
3966                     Attribute_Name => Name_First,
3967                     Expressions => New_List (
3968                       Make_Integer_Literal (Loc, J))),
3969
3970                 High_Bound =>
3971                   Make_Attribute_Reference (Loc,
3972                     Prefix         => Duplicate_Subexpr_No_Checks (E),
3973                     Attribute_Name => Name_Last,
3974                     Expressions    => New_List (
3975                       Make_Integer_Literal (Loc, J)))));
3976          end loop;
3977
3978       elsif Is_Class_Wide_Type (Unc_Typ) then
3979          declare
3980             CW_Subtype : Entity_Id;
3981             EQ_Typ     : Entity_Id := Empty;
3982
3983          begin
3984             --  A class-wide equivalent type is not needed when VM_Target
3985             --  because the VM back-ends handle the class-wide object
3986             --  initialization itself (and doesn't need or want the
3987             --  additional intermediate type to handle the assignment).
3988
3989             if Expander_Active and then Tagged_Type_Expansion then
3990                EQ_Typ := Make_CW_Equivalent_Type (Unc_Typ, E);
3991             end if;
3992
3993             CW_Subtype := New_Class_Wide_Subtype (Unc_Typ, E);
3994             Set_Equivalent_Type (CW_Subtype, EQ_Typ);
3995
3996             if Present (EQ_Typ) then
3997                Set_Is_Class_Wide_Equivalent_Type (EQ_Typ);
3998             end if;
3999
4000             Set_Cloned_Subtype (CW_Subtype, Base_Type (Unc_Typ));
4001
4002             return New_Occurrence_Of (CW_Subtype, Loc);
4003          end;
4004
4005       --  Indefinite record type with discriminants
4006
4007       else
4008          D := First_Discriminant (Unc_Typ);
4009          while Present (D) loop
4010             Append_To (List_Constr,
4011               Make_Selected_Component (Loc,
4012                 Prefix        => Duplicate_Subexpr_No_Checks (E),
4013                 Selector_Name => New_Reference_To (D, Loc)));
4014
4015             Next_Discriminant (D);
4016          end loop;
4017       end if;
4018
4019       return
4020         Make_Subtype_Indication (Loc,
4021           Subtype_Mark => New_Reference_To (Unc_Typ, Loc),
4022           Constraint   =>
4023             Make_Index_Or_Discriminant_Constraint (Loc,
4024               Constraints => List_Constr));
4025    end Make_Subtype_From_Expr;
4026
4027    -----------------------------
4028    -- May_Generate_Large_Temp --
4029    -----------------------------
4030
4031    --  At the current time, the only types that we return False for (i.e.
4032    --  where we decide we know they cannot generate large temps) are ones
4033    --  where we know the size is 256 bits or less at compile time, and we
4034    --  are still not doing a thorough job on arrays and records ???
4035
4036    function May_Generate_Large_Temp (Typ : Entity_Id) return Boolean is
4037    begin
4038       if not Size_Known_At_Compile_Time (Typ) then
4039          return False;
4040
4041       elsif Esize (Typ) /= 0 and then Esize (Typ) <= 256 then
4042          return False;
4043
4044       elsif Is_Array_Type (Typ)
4045         and then Present (Packed_Array_Type (Typ))
4046       then
4047          return May_Generate_Large_Temp (Packed_Array_Type (Typ));
4048
4049       --  We could do more here to find other small types ???
4050
4051       else
4052          return True;
4053       end if;
4054    end May_Generate_Large_Temp;
4055
4056    ----------------------------
4057    -- New_Class_Wide_Subtype --
4058    ----------------------------
4059
4060    function New_Class_Wide_Subtype
4061      (CW_Typ : Entity_Id;
4062       N      : Node_Id) return Entity_Id
4063    is
4064       Res       : constant Entity_Id := Create_Itype (E_Void, N);
4065       Res_Name  : constant Name_Id   := Chars (Res);
4066       Res_Scope : constant Entity_Id := Scope (Res);
4067
4068    begin
4069       Copy_Node (CW_Typ, Res);
4070       Set_Comes_From_Source (Res, False);
4071       Set_Sloc (Res, Sloc (N));
4072       Set_Is_Itype (Res);
4073       Set_Associated_Node_For_Itype (Res, N);
4074       Set_Is_Public (Res, False);   --  By default, may be changed below.
4075       Set_Public_Status (Res);
4076       Set_Chars (Res, Res_Name);
4077       Set_Scope (Res, Res_Scope);
4078       Set_Ekind (Res, E_Class_Wide_Subtype);
4079       Set_Next_Entity (Res, Empty);
4080       Set_Etype (Res, Base_Type (CW_Typ));
4081       Set_Is_Frozen (Res, False);
4082       Set_Freeze_Node (Res, Empty);
4083       return (Res);
4084    end New_Class_Wide_Subtype;
4085
4086    --------------------------------
4087    -- Non_Limited_Designated_Type --
4088    ---------------------------------
4089
4090    function Non_Limited_Designated_Type (T : Entity_Id) return Entity_Id is
4091       Desig : constant Entity_Id := Designated_Type (T);
4092    begin
4093       if Ekind (Desig) = E_Incomplete_Type
4094         and then Present (Non_Limited_View (Desig))
4095       then
4096          return Non_Limited_View (Desig);
4097       else
4098          return Desig;
4099       end if;
4100    end Non_Limited_Designated_Type;
4101
4102    -----------------------------------
4103    -- OK_To_Do_Constant_Replacement --
4104    -----------------------------------
4105
4106    function OK_To_Do_Constant_Replacement (E : Entity_Id) return Boolean is
4107       ES : constant Entity_Id := Scope (E);
4108       CS : Entity_Id;
4109
4110    begin
4111       --  Do not replace statically allocated objects, because they may be
4112       --  modified outside the current scope.
4113
4114       if Is_Statically_Allocated (E) then
4115          return False;
4116
4117       --  Do not replace aliased or volatile objects, since we don't know what
4118       --  else might change the value.
4119
4120       elsif Is_Aliased (E) or else Treat_As_Volatile (E) then
4121          return False;
4122
4123       --  Debug flag -gnatdM disconnects this optimization
4124
4125       elsif Debug_Flag_MM then
4126          return False;
4127
4128       --  Otherwise check scopes
4129
4130       else
4131          CS := Current_Scope;
4132
4133          loop
4134             --  If we are in right scope, replacement is safe
4135
4136             if CS = ES then
4137                return True;
4138
4139             --  Packages do not affect the determination of safety
4140
4141             elsif Ekind (CS) = E_Package then
4142                exit when CS = Standard_Standard;
4143                CS := Scope (CS);
4144
4145             --  Blocks do not affect the determination of safety
4146
4147             elsif Ekind (CS) = E_Block then
4148                CS := Scope (CS);
4149
4150             --  Loops do not affect the determination of safety. Note that we
4151             --  kill all current values on entry to a loop, so we are just
4152             --  talking about processing within a loop here.
4153
4154             elsif Ekind (CS) = E_Loop then
4155                CS := Scope (CS);
4156
4157             --  Otherwise, the reference is dubious, and we cannot be sure that
4158             --  it is safe to do the replacement.
4159
4160             else
4161                exit;
4162             end if;
4163          end loop;
4164
4165          return False;
4166       end if;
4167    end OK_To_Do_Constant_Replacement;
4168
4169    ------------------------------------
4170    -- Possible_Bit_Aligned_Component --
4171    ------------------------------------
4172
4173    function Possible_Bit_Aligned_Component (N : Node_Id) return Boolean is
4174    begin
4175       case Nkind (N) is
4176
4177          --  Case of indexed component
4178
4179          when N_Indexed_Component =>
4180             declare
4181                P    : constant Node_Id   := Prefix (N);
4182                Ptyp : constant Entity_Id := Etype (P);
4183
4184             begin
4185                --  If we know the component size and it is less than 64, then
4186                --  we are definitely OK. The back end always does assignment of
4187                --  misaligned small objects correctly.
4188
4189                if Known_Static_Component_Size (Ptyp)
4190                  and then Component_Size (Ptyp) <= 64
4191                then
4192                   return False;
4193
4194                --  Otherwise, we need to test the prefix, to see if we are
4195                --  indexing from a possibly unaligned component.
4196
4197                else
4198                   return Possible_Bit_Aligned_Component (P);
4199                end if;
4200             end;
4201
4202          --  Case of selected component
4203
4204          when N_Selected_Component =>
4205             declare
4206                P    : constant Node_Id   := Prefix (N);
4207                Comp : constant Entity_Id := Entity (Selector_Name (N));
4208
4209             begin
4210                --  If there is no component clause, then we are in the clear
4211                --  since the back end will never misalign a large component
4212                --  unless it is forced to do so. In the clear means we need
4213                --  only the recursive test on the prefix.
4214
4215                if Component_May_Be_Bit_Aligned (Comp) then
4216                   return True;
4217                else
4218                   return Possible_Bit_Aligned_Component (P);
4219                end if;
4220             end;
4221
4222          --  For a slice, test the prefix, if that is possibly misaligned,
4223          --  then for sure the slice is!
4224
4225          when N_Slice =>
4226             return Possible_Bit_Aligned_Component (Prefix (N));
4227
4228          --  If we have none of the above, it means that we have fallen off the
4229          --  top testing prefixes recursively, and we now have a stand alone
4230          --  object, where we don't have a problem.
4231
4232          when others =>
4233             return False;
4234
4235       end case;
4236    end Possible_Bit_Aligned_Component;
4237
4238    -------------------------
4239    -- Remove_Side_Effects --
4240    -------------------------
4241
4242    procedure Remove_Side_Effects
4243      (Exp          : Node_Id;
4244       Name_Req     : Boolean := False;
4245       Variable_Ref : Boolean := False)
4246    is
4247       Loc          : constant Source_Ptr     := Sloc (Exp);
4248       Exp_Type     : constant Entity_Id      := Etype (Exp);
4249       Svg_Suppress : constant Suppress_Array := Scope_Suppress;
4250       Def_Id       : Entity_Id;
4251       Ref_Type     : Entity_Id;
4252       Res          : Node_Id;
4253       Ptr_Typ_Decl : Node_Id;
4254       New_Exp      : Node_Id;
4255       E            : Node_Id;
4256
4257       function Side_Effect_Free (N : Node_Id) return Boolean;
4258       --  Determines if the tree N represents an expression that is known not
4259       --  to have side effects, and for which no processing is required.
4260
4261       function Side_Effect_Free (L : List_Id) return Boolean;
4262       --  Determines if all elements of the list L are side effect free
4263
4264       function Safe_Prefixed_Reference (N : Node_Id) return Boolean;
4265       --  The argument N is a construct where the Prefix is dereferenced if it
4266       --  is an access type and the result is a variable. The call returns True
4267       --  if the construct is side effect free (not considering side effects in
4268       --  other than the prefix which are to be tested by the caller).
4269
4270       function Within_In_Parameter (N : Node_Id) return Boolean;
4271       --  Determines if N is a subcomponent of a composite in-parameter. If so,
4272       --  N is not side-effect free when the actual is global and modifiable
4273       --  indirectly from within a subprogram, because it may be passed by
4274       --  reference. The front-end must be conservative here and assume that
4275       --  this may happen with any array or record type. On the other hand, we
4276       --  cannot create temporaries for all expressions for which this
4277       --  condition is true, for various reasons that might require clearing up
4278       --  ??? For example, discriminant references that appear out of place, or
4279       --  spurious type errors with class-wide expressions. As a result, we
4280       --  limit the transformation to loop bounds, which is so far the only
4281       --  case that requires it.
4282
4283       -----------------------------
4284       -- Safe_Prefixed_Reference --
4285       -----------------------------
4286
4287       function Safe_Prefixed_Reference (N : Node_Id) return Boolean is
4288       begin
4289          --  If prefix is not side effect free, definitely not safe
4290
4291          if not Side_Effect_Free (Prefix (N)) then
4292             return False;
4293
4294          --  If the prefix is of an access type that is not access-to-constant,
4295          --  then this construct is a variable reference, which means it is to
4296          --  be considered to have side effects if Variable_Ref is set True
4297          --  Exception is an access to an entity that is a constant or an
4298          --  in-parameter which does not come from source, and is the result
4299          --  of a previous removal of side-effects.
4300
4301          elsif Is_Access_Type (Etype (Prefix (N)))
4302            and then not Is_Access_Constant (Etype (Prefix (N)))
4303            and then Variable_Ref
4304          then
4305             if not Is_Entity_Name (Prefix (N)) then
4306                return False;
4307             else
4308                return Ekind (Entity (Prefix (N))) = E_Constant
4309                  or else Ekind (Entity (Prefix (N))) = E_In_Parameter;
4310             end if;
4311
4312          --  The following test is the simplest way of solving a complex
4313          --  problem uncovered by BB08-010: Side effect on loop bound that
4314          --  is a subcomponent of a global variable:
4315          --    If a loop bound is a subcomponent of a global variable, a
4316          --    modification of that variable within the loop may incorrectly
4317          --    affect the execution of the loop.
4318
4319          elsif not
4320            (Nkind (Parent (Parent (N))) /= N_Loop_Parameter_Specification
4321               or else not Within_In_Parameter (Prefix (N)))
4322          then
4323             return False;
4324
4325          --  All other cases are side effect free
4326
4327          else
4328             return True;
4329          end if;
4330       end Safe_Prefixed_Reference;
4331
4332       ----------------------
4333       -- Side_Effect_Free --
4334       ----------------------
4335
4336       function Side_Effect_Free (N : Node_Id) return Boolean is
4337       begin
4338          --  Note on checks that could raise Constraint_Error. Strictly, if
4339          --  we take advantage of 11.6, these checks do not count as side
4340          --  effects. However, we would just as soon consider that they are
4341          --  side effects, since the backend CSE does not work very well on
4342          --  expressions which can raise Constraint_Error. On the other
4343          --  hand, if we do not consider them to be side effect free, then
4344          --  we get some awkward expansions in -gnato mode, resulting in
4345          --  code insertions at a point where we do not have a clear model
4346          --  for performing the insertions.
4347
4348          --  Special handling for entity names
4349
4350          if Is_Entity_Name (N) then
4351
4352             --  If the entity is a constant, it is definitely side effect
4353             --  free. Note that the test of Is_Variable (N) below might
4354             --  be expected to catch this case, but it does not, because
4355             --  this test goes to the original tree, and we may have
4356             --  already rewritten a variable node with a constant as
4357             --  a result of an earlier Force_Evaluation call.
4358
4359             if Ekind (Entity (N)) = E_Constant
4360               or else Ekind (Entity (N)) = E_In_Parameter
4361             then
4362                return True;
4363
4364             --  Functions are not side effect free
4365
4366             elsif Ekind (Entity (N)) = E_Function then
4367                return False;
4368
4369             --  Variables are considered to be a side effect if Variable_Ref
4370             --  is set or if we have a volatile reference and Name_Req is off.
4371             --  If Name_Req is True then we can't help returning a name which
4372             --  effectively allows multiple references in any case.
4373
4374             elsif Is_Variable (N) then
4375                return not Variable_Ref
4376                  and then (not Is_Volatile_Reference (N) or else Name_Req);
4377
4378             --  Any other entity (e.g. a subtype name) is definitely side
4379             --  effect free.
4380
4381             else
4382                return True;
4383             end if;
4384
4385          --  A value known at compile time is always side effect free
4386
4387          elsif Compile_Time_Known_Value (N) then
4388             return True;
4389
4390          --  A variable renaming is not side-effect free, because the
4391          --  renaming will function like a macro in the front-end in
4392          --  some cases, and an assignment can modify the component
4393          --  designated by N, so we need to create a temporary for it.
4394
4395          elsif Is_Entity_Name (Original_Node (N))
4396            and then Is_Renaming_Of_Object (Entity (Original_Node (N)))
4397            and then Ekind (Entity (Original_Node (N))) /= E_Constant
4398          then
4399             return False;
4400          end if;
4401
4402          --  For other than entity names and compile time known values,
4403          --  check the node kind for special processing.
4404
4405          case Nkind (N) is
4406
4407             --  An attribute reference is side effect free if its expressions
4408             --  are side effect free and its prefix is side effect free or
4409             --  is an entity reference.
4410
4411             --  Is this right? what about x'first where x is a variable???
4412
4413             when N_Attribute_Reference =>
4414                return Side_Effect_Free (Expressions (N))
4415                  and then Attribute_Name (N) /= Name_Input
4416                  and then (Is_Entity_Name (Prefix (N))
4417                             or else Side_Effect_Free (Prefix (N)));
4418
4419             --  A binary operator is side effect free if and both operands
4420             --  are side effect free. For this purpose binary operators
4421             --  include membership tests and short circuit forms
4422
4423             when N_Binary_Op | N_Membership_Test | N_Short_Circuit =>
4424                return Side_Effect_Free (Left_Opnd  (N))
4425                         and then
4426                       Side_Effect_Free (Right_Opnd (N));
4427
4428             --  An explicit dereference is side effect free only if it is
4429             --  a side effect free prefixed reference.
4430
4431             when N_Explicit_Dereference =>
4432                return Safe_Prefixed_Reference (N);
4433
4434             --  A call to _rep_to_pos is side effect free, since we generate
4435             --  this pure function call ourselves. Moreover it is critically
4436             --  important to make this exception, since otherwise we can
4437             --  have discriminants in array components which don't look
4438             --  side effect free in the case of an array whose index type
4439             --  is an enumeration type with an enumeration rep clause.
4440
4441             --  All other function calls are not side effect free
4442
4443             when N_Function_Call =>
4444                return Nkind (Name (N)) = N_Identifier
4445                  and then Is_TSS (Name (N), TSS_Rep_To_Pos)
4446                  and then
4447                    Side_Effect_Free (First (Parameter_Associations (N)));
4448
4449             --  An indexed component is side effect free if it is a side
4450             --  effect free prefixed reference and all the indexing
4451             --  expressions are side effect free.
4452
4453             when N_Indexed_Component =>
4454                return Side_Effect_Free (Expressions (N))
4455                  and then Safe_Prefixed_Reference (N);
4456
4457             --  A type qualification is side effect free if the expression
4458             --  is side effect free.
4459
4460             when N_Qualified_Expression =>
4461                return Side_Effect_Free (Expression (N));
4462
4463             --  A selected component is side effect free only if it is a
4464             --  side effect free prefixed reference. If it designates a
4465             --  component with a rep. clause it must be treated has having
4466             --  a potential side effect, because it may be modified through
4467             --  a renaming, and a subsequent use of the renaming as a macro
4468             --  will yield the wrong value. This complex interaction between
4469             --  renaming and removing side effects is a reminder that the
4470             --  latter has become a headache to maintain, and that it should
4471             --  be removed in favor of the gcc mechanism to capture values ???
4472
4473             when N_Selected_Component =>
4474                if Nkind (Parent (N)) = N_Explicit_Dereference
4475                  and then Has_Non_Standard_Rep (Designated_Type (Etype (N)))
4476                then
4477                   return False;
4478                else
4479                   return Safe_Prefixed_Reference (N);
4480                end if;
4481
4482             --  A range is side effect free if the bounds are side effect free
4483
4484             when N_Range =>
4485                return Side_Effect_Free (Low_Bound (N))
4486                  and then Side_Effect_Free (High_Bound (N));
4487
4488             --  A slice is side effect free if it is a side effect free
4489             --  prefixed reference and the bounds are side effect free.
4490
4491             when N_Slice =>
4492                return Side_Effect_Free (Discrete_Range (N))
4493                  and then Safe_Prefixed_Reference (N);
4494
4495             --  A type conversion is side effect free if the expression to be
4496             --  converted is side effect free.
4497
4498             when N_Type_Conversion =>
4499                return Side_Effect_Free (Expression (N));
4500
4501             --  A unary operator is side effect free if the operand
4502             --  is side effect free.
4503
4504             when N_Unary_Op =>
4505                return Side_Effect_Free (Right_Opnd (N));
4506
4507             --  An unchecked type conversion is side effect free only if it
4508             --  is safe and its argument is side effect free.
4509
4510             when N_Unchecked_Type_Conversion =>
4511                return Safe_Unchecked_Type_Conversion (N)
4512                  and then Side_Effect_Free (Expression (N));
4513
4514             --  An unchecked expression is side effect free if its expression
4515             --  is side effect free.
4516
4517             when N_Unchecked_Expression =>
4518                return Side_Effect_Free (Expression (N));
4519
4520             --  A literal is side effect free
4521
4522             when N_Character_Literal    |
4523                  N_Integer_Literal      |
4524                  N_Real_Literal         |
4525                  N_String_Literal       =>
4526                return True;
4527
4528             --  We consider that anything else has side effects. This is a bit
4529             --  crude, but we are pretty close for most common cases, and we
4530             --  are certainly correct (i.e. we never return True when the
4531             --  answer should be False).
4532
4533             when others =>
4534                return False;
4535          end case;
4536       end Side_Effect_Free;
4537
4538       --  A list is side effect free if all elements of the list are
4539       --  side effect free.
4540
4541       function Side_Effect_Free (L : List_Id) return Boolean is
4542          N : Node_Id;
4543
4544       begin
4545          if L = No_List or else L = Error_List then
4546             return True;
4547
4548          else
4549             N := First (L);
4550             while Present (N) loop
4551                if not Side_Effect_Free (N) then
4552                   return False;
4553                else
4554                   Next (N);
4555                end if;
4556             end loop;
4557
4558             return True;
4559          end if;
4560       end Side_Effect_Free;
4561
4562       -------------------------
4563       -- Within_In_Parameter --
4564       -------------------------
4565
4566       function Within_In_Parameter (N : Node_Id) return Boolean is
4567       begin
4568          if not Comes_From_Source (N) then
4569             return False;
4570
4571          elsif Is_Entity_Name (N) then
4572             return Ekind (Entity (N)) = E_In_Parameter;
4573
4574          elsif Nkind (N) = N_Indexed_Component
4575            or else Nkind (N) = N_Selected_Component
4576          then
4577             return Within_In_Parameter (Prefix (N));
4578          else
4579
4580             return False;
4581          end if;
4582       end Within_In_Parameter;
4583
4584    --  Start of processing for Remove_Side_Effects
4585
4586    begin
4587       --  If we are side effect free already or expansion is disabled,
4588       --  there is nothing to do.
4589
4590       if Side_Effect_Free (Exp) or else not Expander_Active then
4591          return;
4592       end if;
4593
4594       --  All this must not have any checks
4595
4596       Scope_Suppress := (others => True);
4597
4598       --  If it is a scalar type and we need to capture the value, just make
4599       --  a copy. Likewise for a function call, an attribute reference or an
4600       --  operator. And if we have a volatile reference and Name_Req is not
4601       --  set (see comments above for Side_Effect_Free).
4602
4603       if Is_Elementary_Type (Exp_Type)
4604         and then (Variable_Ref
4605                    or else Nkind (Exp) = N_Function_Call
4606                    or else Nkind (Exp) = N_Attribute_Reference
4607                    or else Nkind (Exp) in N_Op
4608                    or else (not Name_Req and then Is_Volatile_Reference (Exp)))
4609       then
4610          Def_Id := Make_Temporary (Loc, 'R', Exp);
4611          Set_Etype (Def_Id, Exp_Type);
4612          Res := New_Reference_To (Def_Id, Loc);
4613
4614          E :=
4615            Make_Object_Declaration (Loc,
4616              Defining_Identifier => Def_Id,
4617              Object_Definition   => New_Reference_To (Exp_Type, Loc),
4618              Constant_Present    => True,
4619              Expression          => Relocate_Node (Exp));
4620
4621          --  Check if the previous node relocation requires readjustment of
4622          --  some SCIL Dispatching node.
4623
4624          if Generate_SCIL
4625            and then Nkind (Exp) = N_Function_Call
4626          then
4627             Adjust_SCIL_Node (Exp, Expression (E));
4628          end if;
4629
4630          Set_Assignment_OK (E);
4631          Insert_Action (Exp, E);
4632
4633       --  If the expression has the form v.all then we can just capture
4634       --  the pointer, and then do an explicit dereference on the result.
4635
4636       elsif Nkind (Exp) = N_Explicit_Dereference then
4637          Def_Id := Make_Temporary (Loc, 'R', Exp);
4638          Res :=
4639            Make_Explicit_Dereference (Loc, New_Reference_To (Def_Id, Loc));
4640
4641          Insert_Action (Exp,
4642            Make_Object_Declaration (Loc,
4643              Defining_Identifier => Def_Id,
4644              Object_Definition   =>
4645                New_Reference_To (Etype (Prefix (Exp)), Loc),
4646              Constant_Present    => True,
4647              Expression          => Relocate_Node (Prefix (Exp))));
4648
4649       --  Similar processing for an unchecked conversion of an expression
4650       --  of the form v.all, where we want the same kind of treatment.
4651
4652       elsif Nkind (Exp) = N_Unchecked_Type_Conversion
4653         and then Nkind (Expression (Exp)) = N_Explicit_Dereference
4654       then
4655          Remove_Side_Effects (Expression (Exp), Name_Req, Variable_Ref);
4656          Scope_Suppress := Svg_Suppress;
4657          return;
4658
4659       --  If this is a type conversion, leave the type conversion and remove
4660       --  the side effects in the expression. This is important in several
4661       --  circumstances: for change of representations, and also when this is
4662       --  a view conversion to a smaller object, where gigi can end up creating
4663       --  its own temporary of the wrong size.
4664
4665       elsif Nkind (Exp) = N_Type_Conversion then
4666          Remove_Side_Effects (Expression (Exp), Name_Req, Variable_Ref);
4667          Scope_Suppress := Svg_Suppress;
4668          return;
4669
4670       --  If this is an unchecked conversion that Gigi can't handle, make
4671       --  a copy or a use a renaming to capture the value.
4672
4673       elsif Nkind (Exp) = N_Unchecked_Type_Conversion
4674         and then not Safe_Unchecked_Type_Conversion (Exp)
4675       then
4676          if CW_Or_Has_Controlled_Part (Exp_Type) then
4677
4678             --  Use a renaming to capture the expression, rather than create
4679             --  a controlled temporary.
4680
4681             Def_Id := Make_Temporary (Loc, 'R', Exp);
4682             Res := New_Reference_To (Def_Id, Loc);
4683
4684             Insert_Action (Exp,
4685               Make_Object_Renaming_Declaration (Loc,
4686                 Defining_Identifier => Def_Id,
4687                 Subtype_Mark        => New_Reference_To (Exp_Type, Loc),
4688                 Name                => Relocate_Node (Exp)));
4689
4690          else
4691             Def_Id := Make_Temporary (Loc, 'R', Exp);
4692             Set_Etype (Def_Id, Exp_Type);
4693             Res := New_Reference_To (Def_Id, Loc);
4694
4695             E :=
4696               Make_Object_Declaration (Loc,
4697                 Defining_Identifier => Def_Id,
4698                 Object_Definition   => New_Reference_To (Exp_Type, Loc),
4699                 Constant_Present    => not Is_Variable (Exp),
4700                 Expression          => Relocate_Node (Exp));
4701
4702             Set_Assignment_OK (E);
4703             Insert_Action (Exp, E);
4704          end if;
4705
4706       --  For expressions that denote objects, we can use a renaming scheme.
4707       --  We skip using this if we have a volatile reference and we do not
4708       --  have Name_Req set true (see comments above for Side_Effect_Free).
4709
4710       elsif Is_Object_Reference (Exp)
4711         and then Nkind (Exp) /= N_Function_Call
4712         and then (Name_Req or else not Is_Volatile_Reference (Exp))
4713       then
4714          Def_Id := Make_Temporary (Loc, 'R', Exp);
4715
4716          if Nkind (Exp) = N_Selected_Component
4717            and then Nkind (Prefix (Exp)) = N_Function_Call
4718            and then Is_Array_Type (Exp_Type)
4719          then
4720             --  Avoid generating a variable-sized temporary, by generating
4721             --  the renaming declaration just for the function call. The
4722             --  transformation could be refined to apply only when the array
4723             --  component is constrained by a discriminant???
4724
4725             Res :=
4726               Make_Selected_Component (Loc,
4727                 Prefix => New_Occurrence_Of (Def_Id, Loc),
4728                 Selector_Name => Selector_Name (Exp));
4729
4730             Insert_Action (Exp,
4731               Make_Object_Renaming_Declaration (Loc,
4732                 Defining_Identifier => Def_Id,
4733                 Subtype_Mark        =>
4734                   New_Reference_To (Base_Type (Etype (Prefix (Exp))), Loc),
4735                 Name                => Relocate_Node (Prefix (Exp))));
4736
4737          else
4738             Res := New_Reference_To (Def_Id, Loc);
4739
4740             Insert_Action (Exp,
4741               Make_Object_Renaming_Declaration (Loc,
4742                 Defining_Identifier => Def_Id,
4743                 Subtype_Mark        => New_Reference_To (Exp_Type, Loc),
4744                 Name                => Relocate_Node (Exp)));
4745          end if;
4746
4747          --  If this is a packed reference, or a selected component with a
4748          --  non-standard representation, a reference to the temporary will
4749          --  be replaced by a copy of the original expression (see
4750          --  Exp_Ch2.Expand_Renaming). Otherwise the temporary must be
4751          --  elaborated by gigi, and is of course not to be replaced in-line
4752          --  by the expression it renames, which would defeat the purpose of
4753          --  removing the side-effect.
4754
4755          if (Nkind (Exp) = N_Selected_Component
4756               or else Nkind (Exp) = N_Indexed_Component)
4757            and then Has_Non_Standard_Rep (Etype (Prefix (Exp)))
4758          then
4759             null;
4760          else
4761             Set_Is_Renaming_Of_Object (Def_Id, False);
4762          end if;
4763
4764       --  Otherwise we generate a reference to the value
4765
4766       else
4767          --  Special processing for function calls that return a limited type.
4768          --  We need to build a declaration that will enable build-in-place
4769          --  expansion of the call. This is not done if the context is already
4770          --  an object declaration, to prevent infinite recursion.
4771
4772          --  This is relevant only in Ada 2005 mode. In Ada 95 programs we have
4773          --  to accommodate functions returning limited objects by reference.
4774
4775          if Nkind (Exp) = N_Function_Call
4776            and then Is_Inherently_Limited_Type (Etype (Exp))
4777            and then Nkind (Parent (Exp)) /= N_Object_Declaration
4778            and then Ada_Version >= Ada_05
4779          then
4780             declare
4781                Obj  : constant Entity_Id := Make_Temporary (Loc, 'F', Exp);
4782                Decl : Node_Id;
4783
4784             begin
4785                Decl :=
4786                  Make_Object_Declaration (Loc,
4787                    Defining_Identifier => Obj,
4788                    Object_Definition   => New_Occurrence_Of (Exp_Type, Loc),
4789                    Expression          => Relocate_Node (Exp));
4790
4791                --  Check if the previous node relocation requires readjustment
4792                --  of some SCIL Dispatching node.
4793
4794                if Generate_SCIL
4795                  and then Nkind (Exp) = N_Function_Call
4796                then
4797                   Adjust_SCIL_Node (Exp, Expression (Decl));
4798                end if;
4799
4800                Insert_Action (Exp, Decl);
4801                Set_Etype (Obj, Exp_Type);
4802                Rewrite (Exp, New_Occurrence_Of (Obj, Loc));
4803                return;
4804             end;
4805          end if;
4806
4807          Ref_Type := Make_Defining_Identifier (Loc, New_Internal_Name ('A'));
4808
4809          Ptr_Typ_Decl :=
4810            Make_Full_Type_Declaration (Loc,
4811              Defining_Identifier => Ref_Type,
4812              Type_Definition =>
4813                Make_Access_To_Object_Definition (Loc,
4814                  All_Present => True,
4815                  Subtype_Indication =>
4816                    New_Reference_To (Exp_Type, Loc)));
4817
4818          E := Exp;
4819          Insert_Action (Exp, Ptr_Typ_Decl);
4820
4821          Def_Id := Make_Temporary (Loc, 'R', Exp);
4822          Set_Etype (Def_Id, Exp_Type);
4823
4824          Res :=
4825            Make_Explicit_Dereference (Loc,
4826              Prefix => New_Reference_To (Def_Id, Loc));
4827
4828          if Nkind (E) = N_Explicit_Dereference then
4829             New_Exp := Relocate_Node (Prefix (E));
4830          else
4831             E := Relocate_Node (E);
4832             New_Exp := Make_Reference (Loc, E);
4833          end if;
4834
4835          if Is_Delayed_Aggregate (E) then
4836
4837             --  The expansion of nested aggregates is delayed until the
4838             --  enclosing aggregate is expanded. As aggregates are often
4839             --  qualified, the predicate applies to qualified expressions
4840             --  as well, indicating that the enclosing aggregate has not
4841             --  been expanded yet. At this point the aggregate is part of
4842             --  a stand-alone declaration, and must be fully expanded.
4843
4844             if Nkind (E) = N_Qualified_Expression then
4845                Set_Expansion_Delayed (Expression (E), False);
4846                Set_Analyzed (Expression (E), False);
4847             else
4848                Set_Expansion_Delayed (E, False);
4849             end if;
4850
4851             Set_Analyzed (E, False);
4852          end if;
4853
4854          Insert_Action (Exp,
4855            Make_Object_Declaration (Loc,
4856              Defining_Identifier => Def_Id,
4857              Object_Definition   => New_Reference_To (Ref_Type, Loc),
4858              Expression          => New_Exp));
4859
4860          --  Check if the previous node relocation requires readjustment
4861          --  of some SCIL Dispatching node.
4862
4863          if Generate_SCIL
4864            and then Nkind (Exp) = N_Function_Call
4865          then
4866             Adjust_SCIL_Node (Exp, Prefix (New_Exp));
4867          end if;
4868       end if;
4869
4870       --  Preserve the Assignment_OK flag in all copies, since at least
4871       --  one copy may be used in a context where this flag must be set
4872       --  (otherwise why would the flag be set in the first place).
4873
4874       Set_Assignment_OK (Res, Assignment_OK (Exp));
4875
4876       --  Finally rewrite the original expression and we are done
4877
4878       Rewrite (Exp, Res);
4879       Analyze_And_Resolve (Exp, Exp_Type);
4880       Scope_Suppress := Svg_Suppress;
4881    end Remove_Side_Effects;
4882
4883    ---------------------------
4884    -- Represented_As_Scalar --
4885    ---------------------------
4886
4887    function Represented_As_Scalar (T : Entity_Id) return Boolean is
4888       UT : constant Entity_Id := Underlying_Type (T);
4889    begin
4890       return Is_Scalar_Type (UT)
4891         or else (Is_Bit_Packed_Array (UT)
4892                    and then Is_Scalar_Type (Packed_Array_Type (UT)));
4893    end Represented_As_Scalar;
4894
4895    ------------------------------------
4896    -- Safe_Unchecked_Type_Conversion --
4897    ------------------------------------
4898
4899    --  Note: this function knows quite a bit about the exact requirements
4900    --  of Gigi with respect to unchecked type conversions, and its code
4901    --  must be coordinated with any changes in Gigi in this area.
4902
4903    --  The above requirements should be documented in Sinfo ???
4904
4905    function Safe_Unchecked_Type_Conversion (Exp : Node_Id) return Boolean is
4906       Otyp   : Entity_Id;
4907       Ityp   : Entity_Id;
4908       Oalign : Uint;
4909       Ialign : Uint;
4910       Pexp   : constant Node_Id := Parent (Exp);
4911
4912    begin
4913       --  If the expression is the RHS of an assignment or object declaration
4914       --   we are always OK because there will always be a target.
4915
4916       --  Object renaming declarations, (generated for view conversions of
4917       --  actuals in inlined calls), like object declarations, provide an
4918       --  explicit type, and are safe as well.
4919
4920       if (Nkind (Pexp) = N_Assignment_Statement
4921            and then Expression (Pexp) = Exp)
4922         or else Nkind (Pexp) = N_Object_Declaration
4923         or else Nkind (Pexp) = N_Object_Renaming_Declaration
4924       then
4925          return True;
4926
4927       --  If the expression is the prefix of an N_Selected_Component
4928       --  we should also be OK because GCC knows to look inside the
4929       --  conversion except if the type is discriminated. We assume
4930       --  that we are OK anyway if the type is not set yet or if it is
4931       --  controlled since we can't afford to introduce a temporary in
4932       --  this case.
4933
4934       elsif Nkind (Pexp) = N_Selected_Component
4935          and then Prefix (Pexp) = Exp
4936       then
4937          if No (Etype (Pexp)) then
4938             return True;
4939          else
4940             return
4941               not Has_Discriminants (Etype (Pexp))
4942                 or else Is_Constrained (Etype (Pexp));
4943          end if;
4944       end if;
4945
4946       --  Set the output type, this comes from Etype if it is set, otherwise
4947       --  we take it from the subtype mark, which we assume was already
4948       --  fully analyzed.
4949
4950       if Present (Etype (Exp)) then
4951          Otyp := Etype (Exp);
4952       else
4953          Otyp := Entity (Subtype_Mark (Exp));
4954       end if;
4955
4956       --  The input type always comes from the expression, and we assume
4957       --  this is indeed always analyzed, so we can simply get the Etype.
4958
4959       Ityp := Etype (Expression (Exp));
4960
4961       --  Initialize alignments to unknown so far
4962
4963       Oalign := No_Uint;
4964       Ialign := No_Uint;
4965
4966       --  Replace a concurrent type by its corresponding record type
4967       --  and each type by its underlying type and do the tests on those.
4968       --  The original type may be a private type whose completion is a
4969       --  concurrent type, so find the underlying type first.
4970
4971       if Present (Underlying_Type (Otyp)) then
4972          Otyp := Underlying_Type (Otyp);
4973       end if;
4974
4975       if Present (Underlying_Type (Ityp)) then
4976          Ityp := Underlying_Type (Ityp);
4977       end if;
4978
4979       if Is_Concurrent_Type (Otyp) then
4980          Otyp := Corresponding_Record_Type (Otyp);
4981       end if;
4982
4983       if Is_Concurrent_Type (Ityp) then
4984          Ityp := Corresponding_Record_Type (Ityp);
4985       end if;
4986
4987       --  If the base types are the same, we know there is no problem since
4988       --  this conversion will be a noop.
4989
4990       if Implementation_Base_Type (Otyp) = Implementation_Base_Type (Ityp) then
4991          return True;
4992
4993       --  Same if this is an upwards conversion of an untagged type, and there
4994       --  are no constraints involved (could be more general???)
4995
4996       elsif Etype (Ityp) = Otyp
4997         and then not Is_Tagged_Type (Ityp)
4998         and then not Has_Discriminants (Ityp)
4999         and then No (First_Rep_Item (Base_Type (Ityp)))
5000       then
5001          return True;
5002
5003       --  If the expression has an access type (object or subprogram) we
5004       --  assume that the conversion is safe, because the size of the target
5005       --  is safe, even if it is a record (which might be treated as having
5006       --  unknown size at this point).
5007
5008       elsif Is_Access_Type (Ityp) then
5009          return True;
5010
5011       --  If the size of output type is known at compile time, there is
5012       --  never a problem.  Note that unconstrained records are considered
5013       --  to be of known size, but we can't consider them that way here,
5014       --  because we are talking about the actual size of the object.
5015
5016       --  We also make sure that in addition to the size being known, we do
5017       --  not have a case which might generate an embarrassingly large temp
5018       --  in stack checking mode.
5019
5020       elsif Size_Known_At_Compile_Time (Otyp)
5021         and then
5022           (not Stack_Checking_Enabled
5023              or else not May_Generate_Large_Temp (Otyp))
5024         and then not (Is_Record_Type (Otyp) and then not Is_Constrained (Otyp))
5025       then
5026          return True;
5027
5028       --  If either type is tagged, then we know the alignment is OK so
5029       --  Gigi will be able to use pointer punning.
5030
5031       elsif Is_Tagged_Type (Otyp) or else Is_Tagged_Type (Ityp) then
5032          return True;
5033
5034       --  If either type is a limited record type, we cannot do a copy, so
5035       --  say safe since there's nothing else we can do.
5036
5037       elsif Is_Limited_Record (Otyp) or else Is_Limited_Record (Ityp) then
5038          return True;
5039
5040       --  Conversions to and from packed array types are always ignored and
5041       --  hence are safe.
5042
5043       elsif Is_Packed_Array_Type (Otyp)
5044         or else Is_Packed_Array_Type (Ityp)
5045       then
5046          return True;
5047       end if;
5048
5049       --  The only other cases known to be safe is if the input type's
5050       --  alignment is known to be at least the maximum alignment for the
5051       --  target or if both alignments are known and the output type's
5052       --  alignment is no stricter than the input's.  We can use the alignment
5053       --  of the component type of an array if a type is an unpacked
5054       --  array type.
5055
5056       if Present (Alignment_Clause (Otyp)) then
5057          Oalign := Expr_Value (Expression (Alignment_Clause (Otyp)));
5058
5059       elsif Is_Array_Type (Otyp)
5060         and then Present (Alignment_Clause (Component_Type (Otyp)))
5061       then
5062          Oalign := Expr_Value (Expression (Alignment_Clause
5063                                            (Component_Type (Otyp))));
5064       end if;
5065
5066       if Present (Alignment_Clause (Ityp)) then
5067          Ialign := Expr_Value (Expression (Alignment_Clause (Ityp)));
5068
5069       elsif Is_Array_Type (Ityp)
5070         and then Present (Alignment_Clause (Component_Type (Ityp)))
5071       then
5072          Ialign := Expr_Value (Expression (Alignment_Clause
5073                                            (Component_Type (Ityp))));
5074       end if;
5075
5076       if Ialign /= No_Uint and then Ialign > Maximum_Alignment then
5077          return True;
5078
5079       elsif Ialign /= No_Uint and then Oalign /= No_Uint
5080         and then Ialign <= Oalign
5081       then
5082          return True;
5083
5084       --   Otherwise, Gigi cannot handle this and we must make a temporary
5085
5086       else
5087          return False;
5088       end if;
5089    end Safe_Unchecked_Type_Conversion;
5090
5091    ---------------------------------
5092    -- Set_Current_Value_Condition --
5093    ---------------------------------
5094
5095    --  Note: the implementation of this procedure is very closely tied to the
5096    --  implementation of Get_Current_Value_Condition. Here we set required
5097    --  Current_Value fields, and in Get_Current_Value_Condition, we interpret
5098    --  them, so they must have a consistent view.
5099
5100    procedure Set_Current_Value_Condition (Cnode : Node_Id) is
5101
5102       procedure Set_Entity_Current_Value (N : Node_Id);
5103       --  If N is an entity reference, where the entity is of an appropriate
5104       --  kind, then set the current value of this entity to Cnode, unless
5105       --  there is already a definite value set there.
5106
5107       procedure Set_Expression_Current_Value (N : Node_Id);
5108       --  If N is of an appropriate form, sets an appropriate entry in current
5109       --  value fields of relevant entities. Multiple entities can be affected
5110       --  in the case of an AND or AND THEN.
5111
5112       ------------------------------
5113       -- Set_Entity_Current_Value --
5114       ------------------------------
5115
5116       procedure Set_Entity_Current_Value (N : Node_Id) is
5117       begin
5118          if Is_Entity_Name (N) then
5119             declare
5120                Ent : constant Entity_Id := Entity (N);
5121
5122             begin
5123                --  Don't capture if not safe to do so
5124
5125                if not Safe_To_Capture_Value (N, Ent, Cond => True) then
5126                   return;
5127                end if;
5128
5129                --  Here we have a case where the Current_Value field may
5130                --  need to be set. We set it if it is not already set to a
5131                --  compile time expression value.
5132
5133                --  Note that this represents a decision that one condition
5134                --  blots out another previous one. That's certainly right
5135                --  if they occur at the same level. If the second one is
5136                --  nested, then the decision is neither right nor wrong (it
5137                --  would be equally OK to leave the outer one in place, or
5138                --  take the new inner one. Really we should record both, but
5139                --  our data structures are not that elaborate.
5140
5141                if Nkind (Current_Value (Ent)) not in N_Subexpr then
5142                   Set_Current_Value (Ent, Cnode);
5143                end if;
5144             end;
5145          end if;
5146       end Set_Entity_Current_Value;
5147
5148       ----------------------------------
5149       -- Set_Expression_Current_Value --
5150       ----------------------------------
5151
5152       procedure Set_Expression_Current_Value (N : Node_Id) is
5153          Cond : Node_Id;
5154
5155       begin
5156          Cond := N;
5157
5158          --  Loop to deal with (ignore for now) any NOT operators present. The
5159          --  presence of NOT operators will be handled properly when we call
5160          --  Get_Current_Value_Condition.
5161
5162          while Nkind (Cond) = N_Op_Not loop
5163             Cond := Right_Opnd (Cond);
5164          end loop;
5165
5166          --  For an AND or AND THEN, recursively process operands
5167
5168          if Nkind (Cond) = N_Op_And or else Nkind (Cond) = N_And_Then then
5169             Set_Expression_Current_Value (Left_Opnd (Cond));
5170             Set_Expression_Current_Value (Right_Opnd (Cond));
5171             return;
5172          end if;
5173
5174          --  Check possible relational operator
5175
5176          if Nkind (Cond) in N_Op_Compare then
5177             if Compile_Time_Known_Value (Right_Opnd (Cond)) then
5178                Set_Entity_Current_Value (Left_Opnd (Cond));
5179             elsif Compile_Time_Known_Value (Left_Opnd (Cond)) then
5180                Set_Entity_Current_Value (Right_Opnd (Cond));
5181             end if;
5182
5183             --  Check possible boolean variable reference
5184
5185          else
5186             Set_Entity_Current_Value (Cond);
5187          end if;
5188       end Set_Expression_Current_Value;
5189
5190    --  Start of processing for Set_Current_Value_Condition
5191
5192    begin
5193       Set_Expression_Current_Value (Condition (Cnode));
5194    end Set_Current_Value_Condition;
5195
5196    --------------------------
5197    -- Set_Elaboration_Flag --
5198    --------------------------
5199
5200    procedure Set_Elaboration_Flag (N : Node_Id; Spec_Id : Entity_Id) is
5201       Loc : constant Source_Ptr := Sloc (N);
5202       Ent : constant Entity_Id  := Elaboration_Entity (Spec_Id);
5203       Asn : Node_Id;
5204
5205    begin
5206       if Present (Ent) then
5207
5208          --  Nothing to do if at the compilation unit level, because in this
5209          --  case the flag is set by the binder generated elaboration routine.
5210
5211          if Nkind (Parent (N)) = N_Compilation_Unit then
5212             null;
5213
5214          --  Here we do need to generate an assignment statement
5215
5216          else
5217             Check_Restriction (No_Elaboration_Code, N);
5218             Asn :=
5219               Make_Assignment_Statement (Loc,
5220                 Name       => New_Occurrence_Of (Ent, Loc),
5221                 Expression => New_Occurrence_Of (Standard_True, Loc));
5222
5223             if Nkind (Parent (N)) = N_Subunit then
5224                Insert_After (Corresponding_Stub (Parent (N)), Asn);
5225             else
5226                Insert_After (N, Asn);
5227             end if;
5228
5229             Analyze (Asn);
5230
5231             --  Kill current value indication. This is necessary because the
5232             --  tests of this flag are inserted out of sequence and must not
5233             --  pick up bogus indications of the wrong constant value.
5234
5235             Set_Current_Value (Ent, Empty);
5236          end if;
5237       end if;
5238    end Set_Elaboration_Flag;
5239
5240    ----------------------------
5241    -- Set_Renamed_Subprogram --
5242    ----------------------------
5243
5244    procedure Set_Renamed_Subprogram (N : Node_Id; E : Entity_Id) is
5245    begin
5246       --  If input node is an identifier, we can just reset it
5247
5248       if Nkind (N) = N_Identifier then
5249          Set_Chars  (N, Chars (E));
5250          Set_Entity (N, E);
5251
5252          --  Otherwise we have to do a rewrite, preserving Comes_From_Source
5253
5254       else
5255          declare
5256             CS : constant Boolean := Comes_From_Source (N);
5257          begin
5258             Rewrite (N, Make_Identifier (Sloc (N), Chars => Chars (E)));
5259             Set_Entity (N, E);
5260             Set_Comes_From_Source (N, CS);
5261             Set_Analyzed (N, True);
5262          end;
5263       end if;
5264    end Set_Renamed_Subprogram;
5265
5266    ----------------------------------
5267    -- Silly_Boolean_Array_Not_Test --
5268    ----------------------------------
5269
5270    --  This procedure implements an odd and silly test. We explicitly check
5271    --  for the case where the 'First of the component type is equal to the
5272    --  'Last of this component type, and if this is the case, we make sure
5273    --  that constraint error is raised. The reason is that the NOT is bound
5274    --  to cause CE in this case, and we will not otherwise catch it.
5275
5276    --  No such check is required for AND and OR, since for both these cases
5277    --  False op False = False, and True op True = True. For the XOR case,
5278    --  see Silly_Boolean_Array_Xor_Test.
5279
5280    --  Believe it or not, this was reported as a bug. Note that nearly
5281    --  always, the test will evaluate statically to False, so the code will
5282    --  be statically removed, and no extra overhead caused.
5283
5284    procedure Silly_Boolean_Array_Not_Test (N : Node_Id; T : Entity_Id) is
5285       Loc : constant Source_Ptr := Sloc (N);
5286       CT  : constant Entity_Id  := Component_Type (T);
5287
5288    begin
5289       --  The check we install is
5290
5291       --    constraint_error when
5292       --      component_type'first = component_type'last
5293       --        and then array_type'Length /= 0)
5294
5295       --  We need the last guard because we don't want to raise CE for empty
5296       --  arrays since no out of range values result. (Empty arrays with a
5297       --  component type of True .. True -- very useful -- even the ACATS
5298       --  does not test that marginal case!)
5299
5300       Insert_Action (N,
5301         Make_Raise_Constraint_Error (Loc,
5302           Condition =>
5303             Make_And_Then (Loc,
5304               Left_Opnd =>
5305                 Make_Op_Eq (Loc,
5306                   Left_Opnd =>
5307                     Make_Attribute_Reference (Loc,
5308                       Prefix         => New_Occurrence_Of (CT, Loc),
5309                       Attribute_Name => Name_First),
5310
5311                   Right_Opnd =>
5312                     Make_Attribute_Reference (Loc,
5313                       Prefix         => New_Occurrence_Of (CT, Loc),
5314                       Attribute_Name => Name_Last)),
5315
5316               Right_Opnd => Make_Non_Empty_Check (Loc, Right_Opnd (N))),
5317           Reason => CE_Range_Check_Failed));
5318    end Silly_Boolean_Array_Not_Test;
5319
5320    ----------------------------------
5321    -- Silly_Boolean_Array_Xor_Test --
5322    ----------------------------------
5323
5324    --  This procedure implements an odd and silly test. We explicitly check
5325    --  for the XOR case where the component type is True .. True, since this
5326    --  will raise constraint error. A special check is required since CE
5327    --  will not be generated otherwise (cf Expand_Packed_Not).
5328
5329    --  No such check is required for AND and OR, since for both these cases
5330    --  False op False = False, and True op True = True, and no check is
5331    --  required for the case of False .. False, since False xor False = False.
5332    --  See also Silly_Boolean_Array_Not_Test
5333
5334    procedure Silly_Boolean_Array_Xor_Test (N : Node_Id; T : Entity_Id) is
5335       Loc : constant Source_Ptr := Sloc (N);
5336       CT  : constant Entity_Id  := Component_Type (T);
5337
5338    begin
5339       --  The check we install is
5340
5341       --    constraint_error when
5342       --      Boolean (component_type'First)
5343       --        and then Boolean (component_type'Last)
5344       --        and then array_type'Length /= 0)
5345
5346       --  We need the last guard because we don't want to raise CE for empty
5347       --  arrays since no out of range values result (Empty arrays with a
5348       --  component type of True .. True -- very useful -- even the ACATS
5349       --  does not test that marginal case!).
5350
5351       Insert_Action (N,
5352         Make_Raise_Constraint_Error (Loc,
5353           Condition =>
5354             Make_And_Then (Loc,
5355               Left_Opnd =>
5356                 Make_And_Then (Loc,
5357                   Left_Opnd =>
5358                     Convert_To (Standard_Boolean,
5359                       Make_Attribute_Reference (Loc,
5360                         Prefix         => New_Occurrence_Of (CT, Loc),
5361                         Attribute_Name => Name_First)),
5362
5363                   Right_Opnd =>
5364                     Convert_To (Standard_Boolean,
5365                       Make_Attribute_Reference (Loc,
5366                         Prefix         => New_Occurrence_Of (CT, Loc),
5367                         Attribute_Name => Name_Last))),
5368
5369               Right_Opnd => Make_Non_Empty_Check (Loc, Right_Opnd (N))),
5370           Reason => CE_Range_Check_Failed));
5371    end Silly_Boolean_Array_Xor_Test;
5372
5373    --------------------------
5374    -- Target_Has_Fixed_Ops --
5375    --------------------------
5376
5377    Integer_Sized_Small : Ureal;
5378    --  Set to 2.0 ** -(Integer'Size - 1) the first time that this
5379    --  function is called (we don't want to compute it more than once!)
5380
5381    Long_Integer_Sized_Small : Ureal;
5382    --  Set to 2.0 ** -(Long_Integer'Size - 1) the first time that this
5383    --  function is called (we don't want to compute it more than once)
5384
5385    First_Time_For_THFO : Boolean := True;
5386    --  Set to False after first call (if Fractional_Fixed_Ops_On_Target)
5387
5388    function Target_Has_Fixed_Ops
5389      (Left_Typ   : Entity_Id;
5390       Right_Typ  : Entity_Id;
5391       Result_Typ : Entity_Id) return Boolean
5392    is
5393       function Is_Fractional_Type (Typ : Entity_Id) return Boolean;
5394       --  Return True if the given type is a fixed-point type with a small
5395       --  value equal to 2 ** (-(T'Object_Size - 1)) and whose values have
5396       --  an absolute value less than 1.0. This is currently limited
5397       --  to fixed-point types that map to Integer or Long_Integer.
5398
5399       ------------------------
5400       -- Is_Fractional_Type --
5401       ------------------------
5402
5403       function Is_Fractional_Type (Typ : Entity_Id) return Boolean is
5404       begin
5405          if Esize (Typ) = Standard_Integer_Size then
5406             return Small_Value (Typ) = Integer_Sized_Small;
5407
5408          elsif Esize (Typ) = Standard_Long_Integer_Size then
5409             return Small_Value (Typ) = Long_Integer_Sized_Small;
5410
5411          else
5412             return False;
5413          end if;
5414       end Is_Fractional_Type;
5415
5416    --  Start of processing for Target_Has_Fixed_Ops
5417
5418    begin
5419       --  Return False if Fractional_Fixed_Ops_On_Target is false
5420
5421       if not Fractional_Fixed_Ops_On_Target then
5422          return False;
5423       end if;
5424
5425       --  Here the target has Fractional_Fixed_Ops, if first time, compute
5426       --  standard constants used by Is_Fractional_Type.
5427
5428       if First_Time_For_THFO then
5429          First_Time_For_THFO := False;
5430
5431          Integer_Sized_Small :=
5432            UR_From_Components
5433              (Num   => Uint_1,
5434               Den   => UI_From_Int (Standard_Integer_Size - 1),
5435               Rbase => 2);
5436
5437          Long_Integer_Sized_Small :=
5438            UR_From_Components
5439              (Num   => Uint_1,
5440               Den   => UI_From_Int (Standard_Long_Integer_Size - 1),
5441               Rbase => 2);
5442       end if;
5443
5444       --  Return True if target supports fixed-by-fixed multiply/divide
5445       --  for fractional fixed-point types (see Is_Fractional_Type) and
5446       --  the operand and result types are equivalent fractional types.
5447
5448       return Is_Fractional_Type (Base_Type (Left_Typ))
5449         and then Is_Fractional_Type (Base_Type (Right_Typ))
5450         and then Is_Fractional_Type (Base_Type (Result_Typ))
5451         and then Esize (Left_Typ) = Esize (Right_Typ)
5452         and then Esize (Left_Typ) = Esize (Result_Typ);
5453    end Target_Has_Fixed_Ops;
5454
5455    ------------------------------------------
5456    -- Type_May_Have_Bit_Aligned_Components --
5457    ------------------------------------------
5458
5459    function Type_May_Have_Bit_Aligned_Components
5460      (Typ : Entity_Id) return Boolean
5461    is
5462    begin
5463       --  Array type, check component type
5464
5465       if Is_Array_Type (Typ) then
5466          return
5467            Type_May_Have_Bit_Aligned_Components (Component_Type (Typ));
5468
5469       --  Record type, check components
5470
5471       elsif Is_Record_Type (Typ) then
5472          declare
5473             E : Entity_Id;
5474
5475          begin
5476             E := First_Component_Or_Discriminant (Typ);
5477             while Present (E) loop
5478                if Component_May_Be_Bit_Aligned (E)
5479                  or else Type_May_Have_Bit_Aligned_Components (Etype (E))
5480                then
5481                   return True;
5482                end if;
5483
5484                Next_Component_Or_Discriminant (E);
5485             end loop;
5486
5487             return False;
5488          end;
5489
5490       --  Type other than array or record is always OK
5491
5492       else
5493          return False;
5494       end if;
5495    end Type_May_Have_Bit_Aligned_Components;
5496
5497    ----------------------------
5498    -- Wrap_Cleanup_Procedure --
5499    ----------------------------
5500
5501    procedure Wrap_Cleanup_Procedure (N : Node_Id) is
5502       Loc   : constant Source_Ptr := Sloc (N);
5503       Stseq : constant Node_Id    := Handled_Statement_Sequence (N);
5504       Stmts : constant List_Id    := Statements (Stseq);
5505
5506    begin
5507       if Abort_Allowed then
5508          Prepend_To (Stmts, Build_Runtime_Call (Loc, RE_Abort_Defer));
5509          Append_To  (Stmts, Build_Runtime_Call (Loc, RE_Abort_Undefer));
5510       end if;
5511    end Wrap_Cleanup_Procedure;
5512
5513 end Exp_Util;