OSDN Git Service

2009-06-19 Eric Botcazou <ebotcazou@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / checks.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                               C H E C K S                                --
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 Debug;    use Debug;
28 with Einfo;    use Einfo;
29 with Errout;   use Errout;
30 with Exp_Ch2;  use Exp_Ch2;
31 with Exp_Ch11; use Exp_Ch11;
32 with Exp_Pakd; use Exp_Pakd;
33 with Exp_Util; use Exp_Util;
34 with Elists;   use Elists;
35 with Eval_Fat; use Eval_Fat;
36 with Freeze;   use Freeze;
37 with Lib;      use Lib;
38 with Nlists;   use Nlists;
39 with Nmake;    use Nmake;
40 with Opt;      use Opt;
41 with Output;   use Output;
42 with Restrict; use Restrict;
43 with Rident;   use Rident;
44 with Rtsfind;  use Rtsfind;
45 with Sem;      use Sem;
46 with Sem_Aux;  use Sem_Aux;
47 with Sem_Eval; use Sem_Eval;
48 with Sem_Ch3;  use Sem_Ch3;
49 with Sem_Ch8;  use Sem_Ch8;
50 with Sem_Res;  use Sem_Res;
51 with Sem_Util; use Sem_Util;
52 with Sem_Warn; use Sem_Warn;
53 with Sinfo;    use Sinfo;
54 with Sinput;   use Sinput;
55 with Snames;   use Snames;
56 with Sprint;   use Sprint;
57 with Stand;    use Stand;
58 with Targparm; use Targparm;
59 with Tbuild;   use Tbuild;
60 with Ttypes;   use Ttypes;
61 with Urealp;   use Urealp;
62 with Validsw;  use Validsw;
63
64 package body Checks is
65
66    --  General note: many of these routines are concerned with generating
67    --  checking code to make sure that constraint error is raised at runtime.
68    --  Clearly this code is only needed if the expander is active, since
69    --  otherwise we will not be generating code or going into the runtime
70    --  execution anyway.
71
72    --  We therefore disconnect most of these checks if the expander is
73    --  inactive. This has the additional benefit that we do not need to
74    --  worry about the tree being messed up by previous errors (since errors
75    --  turn off expansion anyway).
76
77    --  There are a few exceptions to the above rule. For instance routines
78    --  such as Apply_Scalar_Range_Check that do not insert any code can be
79    --  safely called even when the Expander is inactive (but Errors_Detected
80    --  is 0). The benefit of executing this code when expansion is off, is
81    --  the ability to emit constraint error warning for static expressions
82    --  even when we are not generating code.
83
84    -------------------------------------
85    -- Suppression of Redundant Checks --
86    -------------------------------------
87
88    --  This unit implements a limited circuit for removal of redundant
89    --  checks. The processing is based on a tracing of simple sequential
90    --  flow. For any sequence of statements, we save expressions that are
91    --  marked to be checked, and then if the same expression appears later
92    --  with the same check, then under certain circumstances, the second
93    --  check can be suppressed.
94
95    --  Basically, we can suppress the check if we know for certain that
96    --  the previous expression has been elaborated (together with its
97    --  check), and we know that the exception frame is the same, and that
98    --  nothing has happened to change the result of the exception.
99
100    --  Let us examine each of these three conditions in turn to describe
101    --  how we ensure that this condition is met.
102
103    --  First, we need to know for certain that the previous expression has
104    --  been executed. This is done principly by the mechanism of calling
105    --  Conditional_Statements_Begin at the start of any statement sequence
106    --  and Conditional_Statements_End at the end. The End call causes all
107    --  checks remembered since the Begin call to be discarded. This does
108    --  miss a few cases, notably the case of a nested BEGIN-END block with
109    --  no exception handlers. But the important thing is to be conservative.
110    --  The other protection is that all checks are discarded if a label
111    --  is encountered, since then the assumption of sequential execution
112    --  is violated, and we don't know enough about the flow.
113
114    --  Second, we need to know that the exception frame is the same. We
115    --  do this by killing all remembered checks when we enter a new frame.
116    --  Again, that's over-conservative, but generally the cases we can help
117    --  with are pretty local anyway (like the body of a loop for example).
118
119    --  Third, we must be sure to forget any checks which are no longer valid.
120    --  This is done by two mechanisms, first the Kill_Checks_Variable call is
121    --  used to note any changes to local variables. We only attempt to deal
122    --  with checks involving local variables, so we do not need to worry
123    --  about global variables. Second, a call to any non-global procedure
124    --  causes us to abandon all stored checks, since such a all may affect
125    --  the values of any local variables.
126
127    --  The following define the data structures used to deal with remembering
128    --  checks so that redundant checks can be eliminated as described above.
129
130    --  Right now, the only expressions that we deal with are of the form of
131    --  simple local objects (either declared locally, or IN parameters) or
132    --  such objects plus/minus a compile time known constant. We can do
133    --  more later on if it seems worthwhile, but this catches many simple
134    --  cases in practice.
135
136    --  The following record type reflects a single saved check. An entry
137    --  is made in the stack of saved checks if and only if the expression
138    --  has been elaborated with the indicated checks.
139
140    type Saved_Check is record
141       Killed : Boolean;
142       --  Set True if entry is killed by Kill_Checks
143
144       Entity : Entity_Id;
145       --  The entity involved in the expression that is checked
146
147       Offset : Uint;
148       --  A compile time value indicating the result of adding or
149       --  subtracting a compile time value. This value is to be
150       --  added to the value of the Entity. A value of zero is
151       --  used for the case of a simple entity reference.
152
153       Check_Type : Character;
154       --  This is set to 'R' for a range check (in which case Target_Type
155       --  is set to the target type for the range check) or to 'O' for an
156       --  overflow check (in which case Target_Type is set to Empty).
157
158       Target_Type : Entity_Id;
159       --  Used only if Do_Range_Check is set. Records the target type for
160       --  the check. We need this, because a check is a duplicate only if
161       --  it has a the same target type (or more accurately one with a
162       --  range that is smaller or equal to the stored target type of a
163       --  saved check).
164    end record;
165
166    --  The following table keeps track of saved checks. Rather than use an
167    --  extensible table. We just use a table of fixed size, and we discard
168    --  any saved checks that do not fit. That's very unlikely to happen and
169    --  this is only an optimization in any case.
170
171    Saved_Checks : array (Int range 1 .. 200) of Saved_Check;
172    --  Array of saved checks
173
174    Num_Saved_Checks : Nat := 0;
175    --  Number of saved checks
176
177    --  The following stack keeps track of statement ranges. It is treated
178    --  as a stack. When Conditional_Statements_Begin is called, an entry
179    --  is pushed onto this stack containing the value of Num_Saved_Checks
180    --  at the time of the call. Then when Conditional_Statements_End is
181    --  called, this value is popped off and used to reset Num_Saved_Checks.
182
183    --  Note: again, this is a fixed length stack with a size that should
184    --  always be fine. If the value of the stack pointer goes above the
185    --  limit, then we just forget all saved checks.
186
187    Saved_Checks_Stack : array (Int range 1 .. 100) of Nat;
188    Saved_Checks_TOS : Nat := 0;
189
190    -----------------------
191    -- Local Subprograms --
192    -----------------------
193
194    procedure Apply_Float_Conversion_Check
195      (Ck_Node    : Node_Id;
196       Target_Typ : Entity_Id);
197    --  The checks on a conversion from a floating-point type to an integer
198    --  type are delicate. They have to be performed before conversion, they
199    --  have to raise an exception when the operand is a NaN, and rounding must
200    --  be taken into account to determine the safe bounds of the operand.
201
202    procedure Apply_Selected_Length_Checks
203      (Ck_Node    : Node_Id;
204       Target_Typ : Entity_Id;
205       Source_Typ : Entity_Id;
206       Do_Static  : Boolean);
207    --  This is the subprogram that does all the work for Apply_Length_Check
208    --  and Apply_Static_Length_Check. Expr, Target_Typ and Source_Typ are as
209    --  described for the above routines. The Do_Static flag indicates that
210    --  only a static check is to be done.
211
212    procedure Apply_Selected_Range_Checks
213      (Ck_Node    : Node_Id;
214       Target_Typ : Entity_Id;
215       Source_Typ : Entity_Id;
216       Do_Static  : Boolean);
217    --  This is the subprogram that does all the work for Apply_Range_Check.
218    --  Expr, Target_Typ and Source_Typ are as described for the above
219    --  routine. The Do_Static flag indicates that only a static check is
220    --  to be done.
221
222    type Check_Type is new Check_Id range Access_Check .. Division_Check;
223    function Check_Needed (Nod : Node_Id; Check : Check_Type) return Boolean;
224    --  This function is used to see if an access or division by zero check is
225    --  needed. The check is to be applied to a single variable appearing in the
226    --  source, and N is the node for the reference. If N is not of this form,
227    --  True is returned with no further processing. If N is of the right form,
228    --  then further processing determines if the given Check is needed.
229    --
230    --  The particular circuit is to see if we have the case of a check that is
231    --  not needed because it appears in the right operand of a short circuited
232    --  conditional where the left operand guards the check. For example:
233    --
234    --    if Var = 0 or else Q / Var > 12 then
235    --       ...
236    --    end if;
237    --
238    --  In this example, the division check is not required. At the same time
239    --  we can issue warnings for suspicious use of non-short-circuited forms,
240    --  such as:
241    --
242    --    if Var = 0 or Q / Var > 12 then
243    --       ...
244    --    end if;
245
246    procedure Find_Check
247      (Expr        : Node_Id;
248       Check_Type  : Character;
249       Target_Type : Entity_Id;
250       Entry_OK    : out Boolean;
251       Check_Num   : out Nat;
252       Ent         : out Entity_Id;
253       Ofs         : out Uint);
254    --  This routine is used by Enable_Range_Check and Enable_Overflow_Check
255    --  to see if a check is of the form for optimization, and if so, to see
256    --  if it has already been performed. Expr is the expression to check,
257    --  and Check_Type is 'R' for a range check, 'O' for an overflow check.
258    --  Target_Type is the target type for a range check, and Empty for an
259    --  overflow check. If the entry is not of the form for optimization,
260    --  then Entry_OK is set to False, and the remaining out parameters
261    --  are undefined. If the entry is OK, then Ent/Ofs are set to the
262    --  entity and offset from the expression. Check_Num is the number of
263    --  a matching saved entry in Saved_Checks, or zero if no such entry
264    --  is located.
265
266    function Get_Discriminal (E : Entity_Id; Bound : Node_Id) return Node_Id;
267    --  If a discriminal is used in constraining a prival, Return reference
268    --  to the discriminal of the protected body (which renames the parameter
269    --  of the enclosing protected operation). This clumsy transformation is
270    --  needed because privals are created too late and their actual subtypes
271    --  are not available when analysing the bodies of the protected operations.
272    --  This function is called whenever the bound is an entity and the scope
273    --  indicates a protected operation. If the bound is an in-parameter of
274    --  a protected operation that is not a prival, the function returns the
275    --  bound itself.
276    --  To be cleaned up???
277
278    function Guard_Access
279      (Cond    : Node_Id;
280       Loc     : Source_Ptr;
281       Ck_Node : Node_Id) return Node_Id;
282    --  In the access type case, guard the test with a test to ensure
283    --  that the access value is non-null, since the checks do not
284    --  not apply to null access values.
285
286    procedure Install_Static_Check (R_Cno : Node_Id; Loc : Source_Ptr);
287    --  Called by Apply_{Length,Range}_Checks to rewrite the tree with the
288    --  Constraint_Error node.
289
290    function Range_Or_Validity_Checks_Suppressed
291      (Expr : Node_Id) return Boolean;
292    --  Returns True if either range or validity checks or both are suppressed
293    --  for the type of the given expression, or, if the expression is the name
294    --  of an entity, if these checks are suppressed for the entity.
295
296    function Selected_Length_Checks
297      (Ck_Node    : Node_Id;
298       Target_Typ : Entity_Id;
299       Source_Typ : Entity_Id;
300       Warn_Node  : Node_Id) return Check_Result;
301    --  Like Apply_Selected_Length_Checks, except it doesn't modify
302    --  anything, just returns a list of nodes as described in the spec of
303    --  this package for the Range_Check function.
304
305    function Selected_Range_Checks
306      (Ck_Node    : Node_Id;
307       Target_Typ : Entity_Id;
308       Source_Typ : Entity_Id;
309       Warn_Node  : Node_Id) return Check_Result;
310    --  Like Apply_Selected_Range_Checks, except it doesn't modify anything,
311    --  just returns a list of nodes as described in the spec of this package
312    --  for the Range_Check function.
313
314    ------------------------------
315    -- Access_Checks_Suppressed --
316    ------------------------------
317
318    function Access_Checks_Suppressed (E : Entity_Id) return Boolean is
319    begin
320       if Present (E) and then Checks_May_Be_Suppressed (E) then
321          return Is_Check_Suppressed (E, Access_Check);
322       else
323          return Scope_Suppress (Access_Check);
324       end if;
325    end Access_Checks_Suppressed;
326
327    -------------------------------------
328    -- Accessibility_Checks_Suppressed --
329    -------------------------------------
330
331    function Accessibility_Checks_Suppressed (E : Entity_Id) return Boolean is
332    begin
333       if Present (E) and then Checks_May_Be_Suppressed (E) then
334          return Is_Check_Suppressed (E, Accessibility_Check);
335       else
336          return Scope_Suppress (Accessibility_Check);
337       end if;
338    end Accessibility_Checks_Suppressed;
339
340    -----------------------------
341    -- Activate_Division_Check --
342    -----------------------------
343
344    procedure Activate_Division_Check (N : Node_Id) is
345    begin
346       Set_Do_Division_Check (N, True);
347       Possible_Local_Raise (N, Standard_Constraint_Error);
348    end Activate_Division_Check;
349
350    -----------------------------
351    -- Activate_Overflow_Check --
352    -----------------------------
353
354    procedure Activate_Overflow_Check (N : Node_Id) is
355    begin
356       Set_Do_Overflow_Check (N, True);
357       Possible_Local_Raise (N, Standard_Constraint_Error);
358    end Activate_Overflow_Check;
359
360    --------------------------
361    -- Activate_Range_Check --
362    --------------------------
363
364    procedure Activate_Range_Check (N : Node_Id) is
365    begin
366       Set_Do_Range_Check (N, True);
367       Possible_Local_Raise (N, Standard_Constraint_Error);
368    end Activate_Range_Check;
369
370    ---------------------------------
371    -- Alignment_Checks_Suppressed --
372    ---------------------------------
373
374    function Alignment_Checks_Suppressed (E : Entity_Id) return Boolean is
375    begin
376       if Present (E) and then Checks_May_Be_Suppressed (E) then
377          return Is_Check_Suppressed (E, Alignment_Check);
378       else
379          return Scope_Suppress (Alignment_Check);
380       end if;
381    end Alignment_Checks_Suppressed;
382
383    -------------------------
384    -- Append_Range_Checks --
385    -------------------------
386
387    procedure Append_Range_Checks
388      (Checks       : Check_Result;
389       Stmts        : List_Id;
390       Suppress_Typ : Entity_Id;
391       Static_Sloc  : Source_Ptr;
392       Flag_Node    : Node_Id)
393    is
394       Internal_Flag_Node   : constant Node_Id    := Flag_Node;
395       Internal_Static_Sloc : constant Source_Ptr := Static_Sloc;
396
397       Checks_On : constant Boolean :=
398                     (not Index_Checks_Suppressed (Suppress_Typ))
399                        or else
400                     (not Range_Checks_Suppressed (Suppress_Typ));
401
402    begin
403       --  For now we just return if Checks_On is false, however this should
404       --  be enhanced to check for an always True value in the condition
405       --  and to generate a compilation warning???
406
407       if not Checks_On then
408          return;
409       end if;
410
411       for J in 1 .. 2 loop
412          exit when No (Checks (J));
413
414          if Nkind (Checks (J)) = N_Raise_Constraint_Error
415            and then Present (Condition (Checks (J)))
416          then
417             if not Has_Dynamic_Range_Check (Internal_Flag_Node) then
418                Append_To (Stmts, Checks (J));
419                Set_Has_Dynamic_Range_Check (Internal_Flag_Node);
420             end if;
421
422          else
423             Append_To
424               (Stmts,
425                 Make_Raise_Constraint_Error (Internal_Static_Sloc,
426                   Reason => CE_Range_Check_Failed));
427          end if;
428       end loop;
429    end Append_Range_Checks;
430
431    ------------------------
432    -- Apply_Access_Check --
433    ------------------------
434
435    procedure Apply_Access_Check (N : Node_Id) is
436       P : constant Node_Id := Prefix (N);
437
438    begin
439       --  We do not need checks if we are not generating code (i.e. the
440       --  expander is not active). This is not just an optimization, there
441       --  are cases (e.g. with pragma Debug) where generating the checks
442       --  can cause real trouble).
443
444       if not Expander_Active then
445          return;
446       end if;
447
448       --  No check if short circuiting makes check unnecessary
449
450       if not Check_Needed (P, Access_Check) then
451          return;
452       end if;
453
454       --  No check if accessing the Offset_To_Top component of a dispatch
455       --  table. They are safe by construction.
456
457       if Present (Etype (P))
458         and then RTU_Loaded (Ada_Tags)
459         and then RTE_Available (RE_Offset_To_Top_Ptr)
460         and then Etype (P) = RTE (RE_Offset_To_Top_Ptr)
461       then
462          return;
463       end if;
464
465       --  Otherwise go ahead and install the check
466
467       Install_Null_Excluding_Check (P);
468    end Apply_Access_Check;
469
470    -------------------------------
471    -- Apply_Accessibility_Check --
472    -------------------------------
473
474    procedure Apply_Accessibility_Check
475      (N           : Node_Id;
476       Typ         : Entity_Id;
477       Insert_Node : Node_Id)
478    is
479       Loc         : constant Source_Ptr := Sloc (N);
480       Param_Ent   : constant Entity_Id  := Param_Entity (N);
481       Param_Level : Node_Id;
482       Type_Level  : Node_Id;
483
484    begin
485       if Inside_A_Generic then
486          return;
487
488       --  Only apply the run-time check if the access parameter
489       --  has an associated extra access level parameter and
490       --  when the level of the type is less deep than the level
491       --  of the access parameter.
492
493       elsif Present (Param_Ent)
494          and then Present (Extra_Accessibility (Param_Ent))
495          and then UI_Gt (Object_Access_Level (N),
496                          Type_Access_Level (Typ))
497          and then not Accessibility_Checks_Suppressed (Param_Ent)
498          and then not Accessibility_Checks_Suppressed (Typ)
499       then
500          Param_Level :=
501            New_Occurrence_Of (Extra_Accessibility (Param_Ent), Loc);
502
503          Type_Level :=
504            Make_Integer_Literal (Loc, Type_Access_Level (Typ));
505
506          --  Raise Program_Error if the accessibility level of the access
507          --  parameter is deeper than the level of the target access type.
508
509          Insert_Action (Insert_Node,
510            Make_Raise_Program_Error (Loc,
511              Condition =>
512                Make_Op_Gt (Loc,
513                  Left_Opnd  => Param_Level,
514                  Right_Opnd => Type_Level),
515              Reason => PE_Accessibility_Check_Failed));
516
517          Analyze_And_Resolve (N);
518       end if;
519    end Apply_Accessibility_Check;
520
521    --------------------------------
522    -- Apply_Address_Clause_Check --
523    --------------------------------
524
525    procedure Apply_Address_Clause_Check (E : Entity_Id; N : Node_Id) is
526       AC   : constant Node_Id    := Address_Clause (E);
527       Loc  : constant Source_Ptr := Sloc (AC);
528       Typ  : constant Entity_Id  := Etype (E);
529       Aexp : constant Node_Id    := Expression (AC);
530
531       Expr : Node_Id;
532       --  Address expression (not necessarily the same as Aexp, for example
533       --  when Aexp is a reference to a constant, in which case Expr gets
534       --  reset to reference the value expression of the constant.
535
536       Size_Warning_Output : Boolean := False;
537       --  If we output a size warning we set this True, to stop generating
538       --  what is likely to be an unuseful redundant alignment warning.
539
540       procedure Compile_Time_Bad_Alignment;
541       --  Post error warnings when alignment is known to be incompatible. Note
542       --  that we do not go as far as inserting a raise of Program_Error since
543       --  this is an erroneous case, and it may happen that we are lucky and an
544       --  underaligned address turns out to be OK after all. Also this warning
545       --  is suppressed if we already complained about the size.
546
547       --------------------------------
548       -- Compile_Time_Bad_Alignment --
549       --------------------------------
550
551       procedure Compile_Time_Bad_Alignment is
552       begin
553          if not Size_Warning_Output
554            and then Address_Clause_Overlay_Warnings
555          then
556             Error_Msg_FE
557               ("?specified address for& may be inconsistent with alignment ",
558                Aexp, E);
559             Error_Msg_FE
560               ("\?program execution may be erroneous (RM 13.3(27))",
561                Aexp, E);
562             Set_Address_Warning_Posted (AC);
563          end if;
564       end Compile_Time_Bad_Alignment;
565
566    --  Start of processing for Apply_Address_Clause_Check
567
568    begin
569       --  First obtain expression from address clause
570
571       Expr := Expression (AC);
572
573       --  The following loop digs for the real expression to use in the check
574
575       loop
576          --  For constant, get constant expression
577
578          if Is_Entity_Name (Expr)
579            and then Ekind (Entity (Expr)) = E_Constant
580          then
581             Expr := Constant_Value (Entity (Expr));
582
583          --  For unchecked conversion, get result to convert
584
585          elsif Nkind (Expr) = N_Unchecked_Type_Conversion then
586             Expr := Expression (Expr);
587
588          --  For (common case) of To_Address call, get argument
589
590          elsif Nkind (Expr) = N_Function_Call
591            and then Is_Entity_Name (Name (Expr))
592            and then Is_RTE (Entity (Name (Expr)), RE_To_Address)
593          then
594             Expr := First (Parameter_Associations (Expr));
595
596             if Nkind (Expr) = N_Parameter_Association then
597                Expr := Explicit_Actual_Parameter (Expr);
598             end if;
599
600          --  We finally have the real expression
601
602          else
603             exit;
604          end if;
605       end loop;
606
607       --  Output a warning if we have the situation of
608
609       --      for X'Address use Y'Address
610
611       --  and X and Y both have known object sizes, and Y is smaller than X
612
613       if Nkind (Expr) = N_Attribute_Reference
614         and then Attribute_Name (Expr) = Name_Address
615         and then Is_Entity_Name (Prefix (Expr))
616       then
617          declare
618             Exp_Ent  : constant Entity_Id := Entity (Prefix (Expr));
619             Obj_Size : Uint := No_Uint;
620             Exp_Size : Uint := No_Uint;
621
622          begin
623             if Known_Esize (E) then
624                Obj_Size := Esize (E);
625             elsif Known_Esize (Etype (E)) then
626                Obj_Size := Esize (Etype (E));
627             end if;
628
629             if Known_Esize (Exp_Ent) then
630                Exp_Size := Esize (Exp_Ent);
631             elsif Known_Esize (Etype (Exp_Ent)) then
632                Exp_Size := Esize (Etype (Exp_Ent));
633             end if;
634
635             if Obj_Size /= No_Uint
636               and then Exp_Size /= No_Uint
637               and then Obj_Size > Exp_Size
638               and then not Has_Warnings_Off (E)
639             then
640                if Address_Clause_Overlay_Warnings then
641                   Error_Msg_FE
642                     ("?& overlays smaller object", Aexp, E);
643                   Error_Msg_FE
644                     ("\?program execution may be erroneous", Aexp, E);
645                   Size_Warning_Output := True;
646                   Set_Address_Warning_Posted (AC);
647                end if;
648             end if;
649          end;
650       end if;
651
652       --  See if alignment check needed. Note that we never need a check if the
653       --  maximum alignment is one, since the check will always succeed.
654
655       --  Note: we do not check for checks suppressed here, since that check
656       --  was done in Sem_Ch13 when the address clause was processed. We are
657       --  only called if checks were not suppressed. The reason for this is
658       --  that we have to delay the call to Apply_Alignment_Check till freeze
659       --  time (so that all types etc are elaborated), but we have to check
660       --  the status of check suppressing at the point of the address clause.
661
662       if No (AC)
663         or else not Check_Address_Alignment (AC)
664         or else Maximum_Alignment = 1
665       then
666          return;
667       end if;
668
669       --  See if we know that Expr is a bad alignment at compile time
670
671       if Compile_Time_Known_Value (Expr)
672         and then (Known_Alignment (E) or else Known_Alignment (Typ))
673       then
674          declare
675             AL : Uint := Alignment (Typ);
676
677          begin
678             --  The object alignment might be more restrictive than the
679             --  type alignment.
680
681             if Known_Alignment (E) then
682                AL := Alignment (E);
683             end if;
684
685             if Expr_Value (Expr) mod AL /= 0 then
686                Compile_Time_Bad_Alignment;
687             else
688                return;
689             end if;
690          end;
691
692       --  If the expression has the form X'Address, then we can find out if
693       --  the object X has an alignment that is compatible with the object E.
694
695       elsif Nkind (Expr) = N_Attribute_Reference
696         and then Attribute_Name (Expr) = Name_Address
697       then
698          declare
699             AR : constant Alignment_Result :=
700                    Has_Compatible_Alignment (E, Prefix (Expr));
701          begin
702             if AR = Known_Compatible then
703                return;
704             elsif AR = Known_Incompatible then
705                Compile_Time_Bad_Alignment;
706             end if;
707          end;
708       end if;
709
710       --  Here we do not know if the value is acceptable. Stricly we don't have
711       --  to do anything, since if the alignment is bad, we have an erroneous
712       --  program. However we are allowed to check for erroneous conditions and
713       --  we decide to do this by default if the check is not suppressed.
714
715       --  However, don't do the check if elaboration code is unwanted
716
717       if Restriction_Active (No_Elaboration_Code) then
718          return;
719
720       --  Generate a check to raise PE if alignment may be inappropriate
721
722       else
723          --  If the original expression is a non-static constant, use the
724          --  name of the constant itself rather than duplicating its
725          --  defining expression, which was extracted above.
726
727          --  Note: Expr is empty if the address-clause is applied to in-mode
728          --  actuals (allowed by 13.1(22)).
729
730          if not Present (Expr)
731            or else
732              (Is_Entity_Name (Expression (AC))
733                and then Ekind (Entity (Expression (AC))) = E_Constant
734                and then Nkind (Parent (Entity (Expression (AC))))
735                                  = N_Object_Declaration)
736          then
737             Expr := New_Copy_Tree (Expression (AC));
738          else
739             Remove_Side_Effects (Expr);
740          end if;
741
742          Insert_After_And_Analyze (N,
743            Make_Raise_Program_Error (Loc,
744              Condition =>
745                Make_Op_Ne (Loc,
746                  Left_Opnd =>
747                    Make_Op_Mod (Loc,
748                      Left_Opnd =>
749                        Unchecked_Convert_To
750                          (RTE (RE_Integer_Address), Expr),
751                      Right_Opnd =>
752                        Make_Attribute_Reference (Loc,
753                          Prefix => New_Occurrence_Of (E, Loc),
754                          Attribute_Name => Name_Alignment)),
755                  Right_Opnd => Make_Integer_Literal (Loc, Uint_0)),
756              Reason => PE_Misaligned_Address_Value),
757            Suppress => All_Checks);
758          return;
759       end if;
760
761    exception
762       --  If we have some missing run time component in configurable run time
763       --  mode then just skip the check (it is not required in any case).
764
765       when RE_Not_Available =>
766          return;
767    end Apply_Address_Clause_Check;
768
769    -------------------------------------
770    -- Apply_Arithmetic_Overflow_Check --
771    -------------------------------------
772
773    --  This routine is called only if the type is an integer type, and a
774    --  software arithmetic overflow check may be needed for op (add, subtract,
775    --  or multiply). This check is performed only if Software_Overflow_Checking
776    --  is enabled and Do_Overflow_Check is set. In this case we expand the
777    --  operation into a more complex sequence of tests that ensures that
778    --  overflow is properly caught.
779
780    procedure Apply_Arithmetic_Overflow_Check (N : Node_Id) is
781       Loc   : constant Source_Ptr := Sloc (N);
782       Typ   : Entity_Id           := Etype (N);
783       Rtyp  : Entity_Id           := Root_Type (Typ);
784
785    begin
786       --  An interesting special case. If the arithmetic operation appears as
787       --  the operand of a type conversion:
788
789       --    type1 (x op y)
790
791       --  and all the following conditions apply:
792
793       --    arithmetic operation is for a signed integer type
794       --    target type type1 is a static integer subtype
795       --    range of x and y are both included in the range of type1
796       --    range of x op y is included in the range of type1
797       --    size of type1 is at least twice the result size of op
798
799       --  then we don't do an overflow check in any case, instead we transform
800       --  the operation so that we end up with:
801
802       --    type1 (type1 (x) op type1 (y))
803
804       --  This avoids intermediate overflow before the conversion. It is
805       --  explicitly permitted by RM 3.5.4(24):
806
807       --    For the execution of a predefined operation of a signed integer
808       --    type, the implementation need not raise Constraint_Error if the
809       --    result is outside the base range of the type, so long as the
810       --    correct result is produced.
811
812       --  It's hard to imagine that any programmer counts on the exception
813       --  being raised in this case, and in any case it's wrong coding to
814       --  have this expectation, given the RM permission. Furthermore, other
815       --  Ada compilers do allow such out of range results.
816
817       --  Note that we do this transformation even if overflow checking is
818       --  off, since this is precisely about giving the "right" result and
819       --  avoiding the need for an overflow check.
820
821       if Is_Signed_Integer_Type (Typ)
822         and then Nkind (Parent (N)) = N_Type_Conversion
823       then
824          declare
825             Target_Type : constant Entity_Id :=
826                             Base_Type (Entity (Subtype_Mark (Parent (N))));
827
828             Llo, Lhi : Uint;
829             Rlo, Rhi : Uint;
830             LOK, ROK : Boolean;
831
832             Vlo : Uint;
833             Vhi : Uint;
834             VOK : Boolean;
835
836             Tlo : Uint;
837             Thi : Uint;
838
839          begin
840             if Is_Integer_Type (Target_Type)
841               and then RM_Size (Root_Type (Target_Type)) >= 2 * RM_Size (Rtyp)
842             then
843                Tlo := Expr_Value (Type_Low_Bound  (Target_Type));
844                Thi := Expr_Value (Type_High_Bound (Target_Type));
845
846                Determine_Range
847                  (Left_Opnd  (N), LOK, Llo, Lhi, Assume_Valid => True);
848                Determine_Range
849                  (Right_Opnd (N), ROK, Rlo, Rhi, Assume_Valid => True);
850
851                if (LOK and ROK)
852                  and then Tlo <= Llo and then Lhi <= Thi
853                  and then Tlo <= Rlo and then Rhi <= Thi
854                then
855                   Determine_Range (N, VOK, Vlo, Vhi, Assume_Valid => True);
856
857                   if VOK and then Tlo <= Vlo and then Vhi <= Thi then
858                      Rewrite (Left_Opnd (N),
859                        Make_Type_Conversion (Loc,
860                          Subtype_Mark => New_Occurrence_Of (Target_Type, Loc),
861                          Expression   => Relocate_Node (Left_Opnd (N))));
862
863                      Rewrite (Right_Opnd (N),
864                        Make_Type_Conversion (Loc,
865                         Subtype_Mark => New_Occurrence_Of (Target_Type, Loc),
866                         Expression   => Relocate_Node (Right_Opnd (N))));
867
868                      Set_Etype (N, Target_Type);
869                      Typ := Target_Type;
870                      Rtyp := Root_Type (Typ);
871                      Analyze_And_Resolve (Left_Opnd  (N), Target_Type);
872                      Analyze_And_Resolve (Right_Opnd (N), Target_Type);
873
874                      --  Given that the target type is twice the size of the
875                      --  source type, overflow is now impossible, so we can
876                      --  safely kill the overflow check and return.
877
878                      Set_Do_Overflow_Check (N, False);
879                      return;
880                   end if;
881                end if;
882             end if;
883          end;
884       end if;
885
886       --  Now see if an overflow check is required
887
888       declare
889          Siz   : constant Int := UI_To_Int (Esize (Rtyp));
890          Dsiz  : constant Int := Siz * 2;
891          Opnod : Node_Id;
892          Ctyp  : Entity_Id;
893          Opnd  : Node_Id;
894          Cent  : RE_Id;
895
896       begin
897          --  Skip check if back end does overflow checks, or the overflow flag
898          --  is not set anyway, or we are not doing code expansion.
899
900          --  Special case CLI target, where arithmetic overflow checks can be
901          --  performed for integer and long_integer
902
903          if Backend_Overflow_Checks_On_Target
904            or else not Do_Overflow_Check (N)
905            or else not Expander_Active
906            or else
907              (VM_Target = CLI_Target and then Siz >= Standard_Integer_Size)
908          then
909             return;
910          end if;
911
912          --  Otherwise, generate the full general code for front end overflow
913          --  detection, which works by doing arithmetic in a larger type:
914
915          --    x op y
916
917          --  is expanded into
918
919          --    Typ (Checktyp (x) op Checktyp (y));
920
921          --  where Typ is the type of the original expression, and Checktyp is
922          --  an integer type of sufficient length to hold the largest possible
923          --  result.
924
925          --  If the size of check type exceeds the size of Long_Long_Integer,
926          --  we use a different approach, expanding to:
927
928          --    typ (xxx_With_Ovflo_Check (Integer_64 (x), Integer (y)))
929
930          --  where xxx is Add, Multiply or Subtract as appropriate
931
932          --  Find check type if one exists
933
934          if Dsiz <= Standard_Integer_Size then
935             Ctyp := Standard_Integer;
936
937          elsif Dsiz <= Standard_Long_Long_Integer_Size then
938             Ctyp := Standard_Long_Long_Integer;
939
940             --  No check type exists, use runtime call
941
942          else
943             if Nkind (N) = N_Op_Add then
944                Cent := RE_Add_With_Ovflo_Check;
945
946             elsif Nkind (N) = N_Op_Multiply then
947                Cent := RE_Multiply_With_Ovflo_Check;
948
949             else
950                pragma Assert (Nkind (N) = N_Op_Subtract);
951                Cent := RE_Subtract_With_Ovflo_Check;
952             end if;
953
954             Rewrite (N,
955               OK_Convert_To (Typ,
956                 Make_Function_Call (Loc,
957                   Name => New_Reference_To (RTE (Cent), Loc),
958                   Parameter_Associations => New_List (
959                     OK_Convert_To (RTE (RE_Integer_64), Left_Opnd  (N)),
960                     OK_Convert_To (RTE (RE_Integer_64), Right_Opnd (N))))));
961
962             Analyze_And_Resolve (N, Typ);
963             return;
964          end if;
965
966          --  If we fall through, we have the case where we do the arithmetic
967          --  in the next higher type and get the check by conversion. In these
968          --  cases Ctyp is set to the type to be used as the check type.
969
970          Opnod := Relocate_Node (N);
971
972          Opnd := OK_Convert_To (Ctyp, Left_Opnd (Opnod));
973
974          Analyze (Opnd);
975          Set_Etype (Opnd, Ctyp);
976          Set_Analyzed (Opnd, True);
977          Set_Left_Opnd (Opnod, Opnd);
978
979          Opnd := OK_Convert_To (Ctyp, Right_Opnd (Opnod));
980
981          Analyze (Opnd);
982          Set_Etype (Opnd, Ctyp);
983          Set_Analyzed (Opnd, True);
984          Set_Right_Opnd (Opnod, Opnd);
985
986          --  The type of the operation changes to the base type of the check
987          --  type, and we reset the overflow check indication, since clearly no
988          --  overflow is possible now that we are using a double length type.
989          --  We also set the Analyzed flag to avoid a recursive attempt to
990          --  expand the node.
991
992          Set_Etype             (Opnod, Base_Type (Ctyp));
993          Set_Do_Overflow_Check (Opnod, False);
994          Set_Analyzed          (Opnod, True);
995
996          --  Now build the outer conversion
997
998          Opnd := OK_Convert_To (Typ, Opnod);
999          Analyze (Opnd);
1000          Set_Etype (Opnd, Typ);
1001
1002          --  In the discrete type case, we directly generate the range check
1003          --  for the outer operand. This range check will implement the
1004          --  required overflow check.
1005
1006          if Is_Discrete_Type (Typ) then
1007             Rewrite (N, Opnd);
1008             Generate_Range_Check
1009               (Expression (N), Typ, CE_Overflow_Check_Failed);
1010
1011          --  For other types, we enable overflow checking on the conversion,
1012          --  after setting the node as analyzed to prevent recursive attempts
1013          --  to expand the conversion node.
1014
1015          else
1016             Set_Analyzed (Opnd, True);
1017             Enable_Overflow_Check (Opnd);
1018             Rewrite (N, Opnd);
1019          end if;
1020
1021       exception
1022          when RE_Not_Available =>
1023             return;
1024       end;
1025    end Apply_Arithmetic_Overflow_Check;
1026
1027    ----------------------------
1028    -- Apply_Constraint_Check --
1029    ----------------------------
1030
1031    procedure Apply_Constraint_Check
1032      (N          : Node_Id;
1033       Typ        : Entity_Id;
1034       No_Sliding : Boolean := False)
1035    is
1036       Desig_Typ : Entity_Id;
1037
1038    begin
1039       if Inside_A_Generic then
1040          return;
1041
1042       elsif Is_Scalar_Type (Typ) then
1043          Apply_Scalar_Range_Check (N, Typ);
1044
1045       elsif Is_Array_Type (Typ) then
1046
1047          --  A useful optimization: an aggregate with only an others clause
1048          --  always has the right bounds.
1049
1050          if Nkind (N) = N_Aggregate
1051            and then No (Expressions (N))
1052            and then Nkind
1053             (First (Choices (First (Component_Associations (N)))))
1054               = N_Others_Choice
1055          then
1056             return;
1057          end if;
1058
1059          if Is_Constrained (Typ) then
1060             Apply_Length_Check (N, Typ);
1061
1062             if No_Sliding then
1063                Apply_Range_Check (N, Typ);
1064             end if;
1065          else
1066             Apply_Range_Check (N, Typ);
1067          end if;
1068
1069       elsif (Is_Record_Type (Typ)
1070                or else Is_Private_Type (Typ))
1071         and then Has_Discriminants (Base_Type (Typ))
1072         and then Is_Constrained (Typ)
1073       then
1074          Apply_Discriminant_Check (N, Typ);
1075
1076       elsif Is_Access_Type (Typ) then
1077
1078          Desig_Typ := Designated_Type (Typ);
1079
1080          --  No checks necessary if expression statically null
1081
1082          if Known_Null (N) then
1083             if Can_Never_Be_Null (Typ) then
1084                Install_Null_Excluding_Check (N);
1085             end if;
1086
1087          --  No sliding possible on access to arrays
1088
1089          elsif Is_Array_Type (Desig_Typ) then
1090             if Is_Constrained (Desig_Typ) then
1091                Apply_Length_Check (N, Typ);
1092             end if;
1093
1094             Apply_Range_Check (N, Typ);
1095
1096          elsif Has_Discriminants (Base_Type (Desig_Typ))
1097             and then Is_Constrained (Desig_Typ)
1098          then
1099             Apply_Discriminant_Check (N, Typ);
1100          end if;
1101
1102          --  Apply the 2005 Null_Excluding check. Note that we do not apply
1103          --  this check if the constraint node is illegal, as shown by having
1104          --  an error posted. This additional guard prevents cascaded errors
1105          --  and compiler aborts on illegal programs involving Ada 2005 checks.
1106
1107          if Can_Never_Be_Null (Typ)
1108            and then not Can_Never_Be_Null (Etype (N))
1109            and then not Error_Posted (N)
1110          then
1111             Install_Null_Excluding_Check (N);
1112          end if;
1113       end if;
1114    end Apply_Constraint_Check;
1115
1116    ------------------------------
1117    -- Apply_Discriminant_Check --
1118    ------------------------------
1119
1120    procedure Apply_Discriminant_Check
1121      (N   : Node_Id;
1122       Typ : Entity_Id;
1123       Lhs : Node_Id := Empty)
1124    is
1125       Loc       : constant Source_Ptr := Sloc (N);
1126       Do_Access : constant Boolean    := Is_Access_Type (Typ);
1127       S_Typ     : Entity_Id  := Etype (N);
1128       Cond      : Node_Id;
1129       T_Typ     : Entity_Id;
1130
1131       function Is_Aliased_Unconstrained_Component return Boolean;
1132       --  It is possible for an aliased component to have a nominal
1133       --  unconstrained subtype (through instantiation). If this is a
1134       --  discriminated component assigned in the expansion of an aggregate
1135       --  in an initialization, the check must be suppressed. This unusual
1136       --  situation requires a predicate of its own.
1137
1138       ----------------------------------------
1139       -- Is_Aliased_Unconstrained_Component --
1140       ----------------------------------------
1141
1142       function Is_Aliased_Unconstrained_Component return Boolean is
1143          Comp : Entity_Id;
1144          Pref : Node_Id;
1145
1146       begin
1147          if Nkind (Lhs) /= N_Selected_Component then
1148             return False;
1149          else
1150             Comp := Entity (Selector_Name (Lhs));
1151             Pref := Prefix (Lhs);
1152          end if;
1153
1154          if Ekind (Comp) /= E_Component
1155            or else not Is_Aliased (Comp)
1156          then
1157             return False;
1158          end if;
1159
1160          return not Comes_From_Source (Pref)
1161            and then In_Instance
1162            and then not Is_Constrained (Etype (Comp));
1163       end Is_Aliased_Unconstrained_Component;
1164
1165    --  Start of processing for Apply_Discriminant_Check
1166
1167    begin
1168       if Do_Access then
1169          T_Typ := Designated_Type (Typ);
1170       else
1171          T_Typ := Typ;
1172       end if;
1173
1174       --  Nothing to do if discriminant checks are suppressed or else no code
1175       --  is to be generated
1176
1177       if not Expander_Active
1178         or else Discriminant_Checks_Suppressed (T_Typ)
1179       then
1180          return;
1181       end if;
1182
1183       --  No discriminant checks necessary for an access when expression is
1184       --  statically Null. This is not only an optimization, it is fundamental
1185       --  because otherwise discriminant checks may be generated in init procs
1186       --  for types containing an access to a not-yet-frozen record, causing a
1187       --  deadly forward reference.
1188
1189       --  Also, if the expression is of an access type whose designated type is
1190       --  incomplete, then the access value must be null and we suppress the
1191       --  check.
1192
1193       if Known_Null (N) then
1194          return;
1195
1196       elsif Is_Access_Type (S_Typ) then
1197          S_Typ := Designated_Type (S_Typ);
1198
1199          if Ekind (S_Typ) = E_Incomplete_Type then
1200             return;
1201          end if;
1202       end if;
1203
1204       --  If an assignment target is present, then we need to generate the
1205       --  actual subtype if the target is a parameter or aliased object with
1206       --  an unconstrained nominal subtype.
1207
1208       --  Ada 2005 (AI-363): For Ada 2005, we limit the building of the actual
1209       --  subtype to the parameter and dereference cases, since other aliased
1210       --  objects are unconstrained (unless the nominal subtype is explicitly
1211       --  constrained). (But we also need to test for renamings???)
1212
1213       if Present (Lhs)
1214         and then (Present (Param_Entity (Lhs))
1215                    or else (Ada_Version < Ada_05
1216                              and then not Is_Constrained (T_Typ)
1217                              and then Is_Aliased_View (Lhs)
1218                              and then not Is_Aliased_Unconstrained_Component)
1219                    or else (Ada_Version >= Ada_05
1220                              and then not Is_Constrained (T_Typ)
1221                              and then Nkind (Lhs) = N_Explicit_Dereference
1222                              and then Nkind (Original_Node (Lhs)) /=
1223                                         N_Function_Call))
1224       then
1225          T_Typ := Get_Actual_Subtype (Lhs);
1226       end if;
1227
1228       --  Nothing to do if the type is unconstrained (this is the case where
1229       --  the actual subtype in the RM sense of N is unconstrained and no check
1230       --  is required).
1231
1232       if not Is_Constrained (T_Typ) then
1233          return;
1234
1235       --  Ada 2005: nothing to do if the type is one for which there is a
1236       --  partial view that is constrained.
1237
1238       elsif Ada_Version >= Ada_05
1239         and then Has_Constrained_Partial_View (Base_Type (T_Typ))
1240       then
1241          return;
1242       end if;
1243
1244       --  Nothing to do if the type is an Unchecked_Union
1245
1246       if Is_Unchecked_Union (Base_Type (T_Typ)) then
1247          return;
1248       end if;
1249
1250       --  Suppress checks if the subtypes are the same. the check must be
1251       --  preserved in an assignment to a formal, because the constraint is
1252       --  given by the actual.
1253
1254       if Nkind (Original_Node (N)) /= N_Allocator
1255         and then (No (Lhs)
1256           or else not Is_Entity_Name (Lhs)
1257           or else No (Param_Entity (Lhs)))
1258       then
1259          if (Etype (N) = Typ
1260               or else (Do_Access and then Designated_Type (Typ) = S_Typ))
1261            and then not Is_Aliased_View (Lhs)
1262          then
1263             return;
1264          end if;
1265
1266       --  We can also eliminate checks on allocators with a subtype mark that
1267       --  coincides with the context type. The context type may be a subtype
1268       --  without a constraint (common case, a generic actual).
1269
1270       elsif Nkind (Original_Node (N)) = N_Allocator
1271         and then Is_Entity_Name (Expression (Original_Node (N)))
1272       then
1273          declare
1274             Alloc_Typ : constant Entity_Id :=
1275                           Entity (Expression (Original_Node (N)));
1276
1277          begin
1278             if Alloc_Typ = T_Typ
1279               or else (Nkind (Parent (T_Typ)) = N_Subtype_Declaration
1280                         and then Is_Entity_Name (
1281                           Subtype_Indication (Parent (T_Typ)))
1282                         and then Alloc_Typ = Base_Type (T_Typ))
1283
1284             then
1285                return;
1286             end if;
1287          end;
1288       end if;
1289
1290       --  See if we have a case where the types are both constrained, and all
1291       --  the constraints are constants. In this case, we can do the check
1292       --  successfully at compile time.
1293
1294       --  We skip this check for the case where the node is a rewritten`
1295       --  allocator, because it already carries the context subtype, and
1296       --  extracting the discriminants from the aggregate is messy.
1297
1298       if Is_Constrained (S_Typ)
1299         and then Nkind (Original_Node (N)) /= N_Allocator
1300       then
1301          declare
1302             DconT : Elmt_Id;
1303             Discr : Entity_Id;
1304             DconS : Elmt_Id;
1305             ItemS : Node_Id;
1306             ItemT : Node_Id;
1307
1308          begin
1309             --  S_Typ may not have discriminants in the case where it is a
1310             --  private type completed by a default discriminated type. In that
1311             --  case, we need to get the constraints from the underlying_type.
1312             --  If the underlying type is unconstrained (i.e. has no default
1313             --  discriminants) no check is needed.
1314
1315             if Has_Discriminants (S_Typ) then
1316                Discr := First_Discriminant (S_Typ);
1317                DconS := First_Elmt (Discriminant_Constraint (S_Typ));
1318
1319             else
1320                Discr := First_Discriminant (Underlying_Type (S_Typ));
1321                DconS :=
1322                  First_Elmt
1323                    (Discriminant_Constraint (Underlying_Type (S_Typ)));
1324
1325                if No (DconS) then
1326                   return;
1327                end if;
1328
1329                --  A further optimization: if T_Typ is derived from S_Typ
1330                --  without imposing a constraint, no check is needed.
1331
1332                if Nkind (Original_Node (Parent (T_Typ))) =
1333                  N_Full_Type_Declaration
1334                then
1335                   declare
1336                      Type_Def : constant Node_Id :=
1337                                  Type_Definition
1338                                    (Original_Node (Parent (T_Typ)));
1339                   begin
1340                      if Nkind (Type_Def) = N_Derived_Type_Definition
1341                        and then Is_Entity_Name (Subtype_Indication (Type_Def))
1342                        and then Entity (Subtype_Indication (Type_Def)) = S_Typ
1343                      then
1344                         return;
1345                      end if;
1346                   end;
1347                end if;
1348             end if;
1349
1350             DconT  := First_Elmt (Discriminant_Constraint (T_Typ));
1351
1352             while Present (Discr) loop
1353                ItemS := Node (DconS);
1354                ItemT := Node (DconT);
1355
1356                --  For a discriminated component type constrained by the
1357                --  current instance of an enclosing type, there is no
1358                --  applicable discriminant check.
1359
1360                if Nkind (ItemT) = N_Attribute_Reference
1361                  and then Is_Access_Type (Etype (ItemT))
1362                  and then Is_Entity_Name (Prefix (ItemT))
1363                  and then Is_Type (Entity (Prefix (ItemT)))
1364                then
1365                   return;
1366                end if;
1367
1368                --  If the expressions for the discriminants are identical
1369                --  and it is side-effect free (for now just an entity),
1370                --  this may be a shared constraint, e.g. from a subtype
1371                --  without a constraint introduced as a generic actual.
1372                --  Examine other discriminants if any.
1373
1374                if ItemS = ItemT
1375                  and then Is_Entity_Name (ItemS)
1376                then
1377                   null;
1378
1379                elsif not Is_OK_Static_Expression (ItemS)
1380                  or else not Is_OK_Static_Expression (ItemT)
1381                then
1382                   exit;
1383
1384                elsif Expr_Value (ItemS) /= Expr_Value (ItemT) then
1385                   if Do_Access then   --  needs run-time check.
1386                      exit;
1387                   else
1388                      Apply_Compile_Time_Constraint_Error
1389                        (N, "incorrect value for discriminant&?",
1390                         CE_Discriminant_Check_Failed, Ent => Discr);
1391                      return;
1392                   end if;
1393                end if;
1394
1395                Next_Elmt (DconS);
1396                Next_Elmt (DconT);
1397                Next_Discriminant (Discr);
1398             end loop;
1399
1400             if No (Discr) then
1401                return;
1402             end if;
1403          end;
1404       end if;
1405
1406       --  Here we need a discriminant check. First build the expression
1407       --  for the comparisons of the discriminants:
1408
1409       --    (n.disc1 /= typ.disc1) or else
1410       --    (n.disc2 /= typ.disc2) or else
1411       --     ...
1412       --    (n.discn /= typ.discn)
1413
1414       Cond := Build_Discriminant_Checks (N, T_Typ);
1415
1416       --  If Lhs is set and is a parameter, then the condition is
1417       --  guarded by: lhs'constrained and then (condition built above)
1418
1419       if Present (Param_Entity (Lhs)) then
1420          Cond :=
1421            Make_And_Then (Loc,
1422              Left_Opnd =>
1423                Make_Attribute_Reference (Loc,
1424                  Prefix => New_Occurrence_Of (Param_Entity (Lhs), Loc),
1425                  Attribute_Name => Name_Constrained),
1426              Right_Opnd => Cond);
1427       end if;
1428
1429       if Do_Access then
1430          Cond := Guard_Access (Cond, Loc, N);
1431       end if;
1432
1433       Insert_Action (N,
1434         Make_Raise_Constraint_Error (Loc,
1435           Condition => Cond,
1436           Reason    => CE_Discriminant_Check_Failed));
1437    end Apply_Discriminant_Check;
1438
1439    ------------------------
1440    -- Apply_Divide_Check --
1441    ------------------------
1442
1443    procedure Apply_Divide_Check (N : Node_Id) is
1444       Loc   : constant Source_Ptr := Sloc (N);
1445       Typ   : constant Entity_Id  := Etype (N);
1446       Left  : constant Node_Id    := Left_Opnd (N);
1447       Right : constant Node_Id    := Right_Opnd (N);
1448
1449       LLB : Uint;
1450       Llo : Uint;
1451       Lhi : Uint;
1452       LOK : Boolean;
1453       Rlo : Uint;
1454       Rhi : Uint;
1455       ROK   : Boolean;
1456
1457       pragma Warnings (Off, Lhi);
1458       --  Don't actually use this value
1459
1460    begin
1461       if Expander_Active
1462         and then not Backend_Divide_Checks_On_Target
1463         and then Check_Needed (Right, Division_Check)
1464       then
1465          Determine_Range (Right, ROK, Rlo, Rhi, Assume_Valid => True);
1466
1467          --  See if division by zero possible, and if so generate test. This
1468          --  part of the test is not controlled by the -gnato switch.
1469
1470          if Do_Division_Check (N) then
1471             if (not ROK) or else (Rlo <= 0 and then 0 <= Rhi) then
1472                Insert_Action (N,
1473                  Make_Raise_Constraint_Error (Loc,
1474                    Condition =>
1475                      Make_Op_Eq (Loc,
1476                        Left_Opnd  => Duplicate_Subexpr_Move_Checks (Right),
1477                        Right_Opnd => Make_Integer_Literal (Loc, 0)),
1478                    Reason => CE_Divide_By_Zero));
1479             end if;
1480          end if;
1481
1482          --  Test for extremely annoying case of xxx'First divided by -1
1483
1484          if Do_Overflow_Check (N) then
1485             if Nkind (N) = N_Op_Divide
1486               and then Is_Signed_Integer_Type (Typ)
1487             then
1488                Determine_Range (Left, LOK, Llo, Lhi, Assume_Valid => True);
1489                LLB := Expr_Value (Type_Low_Bound (Base_Type (Typ)));
1490
1491                if ((not ROK) or else (Rlo <= (-1) and then (-1) <= Rhi))
1492                  and then
1493                  ((not LOK) or else (Llo = LLB))
1494                then
1495                   Insert_Action (N,
1496                     Make_Raise_Constraint_Error (Loc,
1497                       Condition =>
1498                         Make_And_Then (Loc,
1499
1500                            Make_Op_Eq (Loc,
1501                              Left_Opnd  =>
1502                                Duplicate_Subexpr_Move_Checks (Left),
1503                              Right_Opnd => Make_Integer_Literal (Loc, LLB)),
1504
1505                            Make_Op_Eq (Loc,
1506                              Left_Opnd =>
1507                                Duplicate_Subexpr (Right),
1508                              Right_Opnd =>
1509                                Make_Integer_Literal (Loc, -1))),
1510                       Reason => CE_Overflow_Check_Failed));
1511                end if;
1512             end if;
1513          end if;
1514       end if;
1515    end Apply_Divide_Check;
1516
1517    ----------------------------------
1518    -- Apply_Float_Conversion_Check --
1519    ----------------------------------
1520
1521    --  Let F and I be the source and target types of the conversion. The RM
1522    --  specifies that a floating-point value X is rounded to the nearest
1523    --  integer, with halfway cases being rounded away from zero. The rounded
1524    --  value of X is checked against I'Range.
1525
1526    --  The catch in the above paragraph is that there is no good way to know
1527    --  whether the round-to-integer operation resulted in overflow. A remedy is
1528    --  to perform a range check in the floating-point domain instead, however:
1529
1530    --      (1)  The bounds may not be known at compile time
1531    --      (2)  The check must take into account rounding or truncation.
1532    --      (3)  The range of type I may not be exactly representable in F.
1533    --      (4)  For the rounding case, The end-points I'First - 0.5 and
1534    --           I'Last + 0.5 may or may not be in range, depending on the
1535    --           sign of  I'First and I'Last.
1536    --      (5)  X may be a NaN, which will fail any comparison
1537
1538    --  The following steps correctly convert X with rounding:
1539
1540    --      (1) If either I'First or I'Last is not known at compile time, use
1541    --          I'Base instead of I in the next three steps and perform a
1542    --          regular range check against I'Range after conversion.
1543    --      (2) If I'First - 0.5 is representable in F then let Lo be that
1544    --          value and define Lo_OK as (I'First > 0). Otherwise, let Lo be
1545    --          F'Machine (I'First) and let Lo_OK be (Lo >= I'First).
1546    --          In other words, take one of the closest floating-point numbers
1547    --          (which is an integer value) to I'First, and see if it is in
1548    --          range or not.
1549    --      (3) If I'Last + 0.5 is representable in F then let Hi be that value
1550    --          and define Hi_OK as (I'Last < 0). Otherwise, let Hi be
1551    --          F'Machine (I'Last) and let Hi_OK be (Hi <= I'Last).
1552    --      (4) Raise CE when (Lo_OK and X < Lo) or (not Lo_OK and X <= Lo)
1553    --                     or (Hi_OK and X > Hi) or (not Hi_OK and X >= Hi)
1554
1555    --  For the truncating case, replace steps (2) and (3) as follows:
1556    --      (2) If I'First > 0, then let Lo be F'Pred (I'First) and let Lo_OK
1557    --          be False. Otherwise, let Lo be F'Succ (I'First - 1) and let
1558    --          Lo_OK be True.
1559    --      (3) If I'Last < 0, then let Hi be F'Succ (I'Last) and let Hi_OK
1560    --          be False. Otherwise let Hi be F'Pred (I'Last + 1) and let
1561    --          Hi_OK be False
1562
1563    procedure Apply_Float_Conversion_Check
1564      (Ck_Node    : Node_Id;
1565       Target_Typ : Entity_Id)
1566    is
1567       LB          : constant Node_Id    := Type_Low_Bound (Target_Typ);
1568       HB          : constant Node_Id    := Type_High_Bound (Target_Typ);
1569       Loc         : constant Source_Ptr := Sloc (Ck_Node);
1570       Expr_Type   : constant Entity_Id  := Base_Type (Etype (Ck_Node));
1571       Target_Base : constant Entity_Id  :=
1572                       Implementation_Base_Type (Target_Typ);
1573
1574       Par : constant Node_Id := Parent (Ck_Node);
1575       pragma Assert (Nkind (Par) = N_Type_Conversion);
1576       --  Parent of check node, must be a type conversion
1577
1578       Truncate  : constant Boolean := Float_Truncate (Par);
1579       Max_Bound : constant Uint :=
1580                     UI_Expon
1581                       (Machine_Radix (Expr_Type),
1582                        Machine_Mantissa (Expr_Type) - 1) - 1;
1583
1584       --  Largest bound, so bound plus or minus half is a machine number of F
1585
1586       Ifirst, Ilast : Uint;
1587       --  Bounds of integer type
1588
1589       Lo, Hi : Ureal;
1590       --  Bounds to check in floating-point domain
1591
1592       Lo_OK, Hi_OK : Boolean;
1593       --  True iff Lo resp. Hi belongs to I'Range
1594
1595       Lo_Chk, Hi_Chk : Node_Id;
1596       --  Expressions that are False iff check fails
1597
1598       Reason : RT_Exception_Code;
1599
1600    begin
1601       if not Compile_Time_Known_Value (LB)
1602           or not Compile_Time_Known_Value (HB)
1603       then
1604          declare
1605             --  First check that the value falls in the range of the base type,
1606             --  to prevent overflow during conversion and then perform a
1607             --  regular range check against the (dynamic) bounds.
1608
1609             pragma Assert (Target_Base /= Target_Typ);
1610
1611             Temp : constant Entity_Id :=
1612                     Make_Defining_Identifier (Loc,
1613                       Chars => New_Internal_Name ('T'));
1614
1615          begin
1616             Apply_Float_Conversion_Check (Ck_Node, Target_Base);
1617             Set_Etype (Temp, Target_Base);
1618
1619             Insert_Action (Parent (Par),
1620               Make_Object_Declaration (Loc,
1621                 Defining_Identifier => Temp,
1622                 Object_Definition => New_Occurrence_Of (Target_Typ, Loc),
1623                 Expression => New_Copy_Tree (Par)),
1624                 Suppress => All_Checks);
1625
1626             Insert_Action (Par,
1627               Make_Raise_Constraint_Error (Loc,
1628                 Condition =>
1629                   Make_Not_In (Loc,
1630                     Left_Opnd  => New_Occurrence_Of (Temp, Loc),
1631                     Right_Opnd => New_Occurrence_Of (Target_Typ, Loc)),
1632                 Reason => CE_Range_Check_Failed));
1633             Rewrite (Par, New_Occurrence_Of (Temp, Loc));
1634
1635             return;
1636          end;
1637       end if;
1638
1639       --  Get the (static) bounds of the target type
1640
1641       Ifirst := Expr_Value (LB);
1642       Ilast  := Expr_Value (HB);
1643
1644       --  A simple optimization: if the expression is a universal literal,
1645       --  we can do the comparison with the bounds and the conversion to
1646       --  an integer type statically. The range checks are unchanged.
1647
1648       if Nkind (Ck_Node) = N_Real_Literal
1649         and then Etype (Ck_Node) = Universal_Real
1650         and then Is_Integer_Type (Target_Typ)
1651         and then Nkind (Parent (Ck_Node)) = N_Type_Conversion
1652       then
1653          declare
1654             Int_Val : constant Uint := UR_To_Uint (Realval (Ck_Node));
1655
1656          begin
1657             if Int_Val <= Ilast and then Int_Val >= Ifirst then
1658
1659                --  Conversion is safe
1660
1661                Rewrite (Parent (Ck_Node),
1662                  Make_Integer_Literal (Loc, UI_To_Int (Int_Val)));
1663                Analyze_And_Resolve (Parent (Ck_Node), Target_Typ);
1664                return;
1665             end if;
1666          end;
1667       end if;
1668
1669       --  Check against lower bound
1670
1671       if Truncate and then Ifirst > 0 then
1672          Lo := Pred (Expr_Type, UR_From_Uint (Ifirst));
1673          Lo_OK := False;
1674
1675       elsif Truncate then
1676          Lo := Succ (Expr_Type, UR_From_Uint (Ifirst - 1));
1677          Lo_OK := True;
1678
1679       elsif abs (Ifirst) < Max_Bound then
1680          Lo := UR_From_Uint (Ifirst) - Ureal_Half;
1681          Lo_OK := (Ifirst > 0);
1682
1683       else
1684          Lo := Machine (Expr_Type, UR_From_Uint (Ifirst), Round_Even, Ck_Node);
1685          Lo_OK := (Lo >= UR_From_Uint (Ifirst));
1686       end if;
1687
1688       if Lo_OK then
1689
1690          --  Lo_Chk := (X >= Lo)
1691
1692          Lo_Chk := Make_Op_Ge (Loc,
1693                      Left_Opnd => Duplicate_Subexpr_No_Checks (Ck_Node),
1694                      Right_Opnd => Make_Real_Literal (Loc, Lo));
1695
1696       else
1697          --  Lo_Chk := (X > Lo)
1698
1699          Lo_Chk := Make_Op_Gt (Loc,
1700                      Left_Opnd => Duplicate_Subexpr_No_Checks (Ck_Node),
1701                      Right_Opnd => Make_Real_Literal (Loc, Lo));
1702       end if;
1703
1704       --  Check against higher bound
1705
1706       if Truncate and then Ilast < 0 then
1707          Hi := Succ (Expr_Type, UR_From_Uint (Ilast));
1708          Lo_OK := False;
1709
1710       elsif Truncate then
1711          Hi := Pred (Expr_Type, UR_From_Uint (Ilast + 1));
1712          Hi_OK := True;
1713
1714       elsif abs (Ilast) < Max_Bound then
1715          Hi := UR_From_Uint (Ilast) + Ureal_Half;
1716          Hi_OK := (Ilast < 0);
1717       else
1718          Hi := Machine (Expr_Type, UR_From_Uint (Ilast), Round_Even, Ck_Node);
1719          Hi_OK := (Hi <= UR_From_Uint (Ilast));
1720       end if;
1721
1722       if Hi_OK then
1723
1724          --  Hi_Chk := (X <= Hi)
1725
1726          Hi_Chk := Make_Op_Le (Loc,
1727                      Left_Opnd => Duplicate_Subexpr_No_Checks (Ck_Node),
1728                      Right_Opnd => Make_Real_Literal (Loc, Hi));
1729
1730       else
1731          --  Hi_Chk := (X < Hi)
1732
1733          Hi_Chk := Make_Op_Lt (Loc,
1734                      Left_Opnd => Duplicate_Subexpr_No_Checks (Ck_Node),
1735                      Right_Opnd => Make_Real_Literal (Loc, Hi));
1736       end if;
1737
1738       --  If the bounds of the target type are the same as those of the base
1739       --  type, the check is an overflow check as a range check is not
1740       --  performed in these cases.
1741
1742       if Expr_Value (Type_Low_Bound (Target_Base)) = Ifirst
1743         and then Expr_Value (Type_High_Bound (Target_Base)) = Ilast
1744       then
1745          Reason := CE_Overflow_Check_Failed;
1746       else
1747          Reason := CE_Range_Check_Failed;
1748       end if;
1749
1750       --  Raise CE if either conditions does not hold
1751
1752       Insert_Action (Ck_Node,
1753         Make_Raise_Constraint_Error (Loc,
1754           Condition => Make_Op_Not (Loc, Make_And_Then (Loc, Lo_Chk, Hi_Chk)),
1755           Reason    => Reason));
1756    end Apply_Float_Conversion_Check;
1757
1758    ------------------------
1759    -- Apply_Length_Check --
1760    ------------------------
1761
1762    procedure Apply_Length_Check
1763      (Ck_Node    : Node_Id;
1764       Target_Typ : Entity_Id;
1765       Source_Typ : Entity_Id := Empty)
1766    is
1767    begin
1768       Apply_Selected_Length_Checks
1769         (Ck_Node, Target_Typ, Source_Typ, Do_Static => False);
1770    end Apply_Length_Check;
1771
1772    -----------------------
1773    -- Apply_Range_Check --
1774    -----------------------
1775
1776    procedure Apply_Range_Check
1777      (Ck_Node    : Node_Id;
1778       Target_Typ : Entity_Id;
1779       Source_Typ : Entity_Id := Empty)
1780    is
1781    begin
1782       Apply_Selected_Range_Checks
1783         (Ck_Node, Target_Typ, Source_Typ, Do_Static => False);
1784    end Apply_Range_Check;
1785
1786    ------------------------------
1787    -- Apply_Scalar_Range_Check --
1788    ------------------------------
1789
1790    --  Note that Apply_Scalar_Range_Check never turns the Do_Range_Check flag
1791    --  off if it is already set on.
1792
1793    procedure Apply_Scalar_Range_Check
1794      (Expr       : Node_Id;
1795       Target_Typ : Entity_Id;
1796       Source_Typ : Entity_Id := Empty;
1797       Fixed_Int  : Boolean   := False)
1798    is
1799       Parnt   : constant Node_Id := Parent (Expr);
1800       S_Typ   : Entity_Id;
1801       Arr     : Node_Id   := Empty;  -- initialize to prevent warning
1802       Arr_Typ : Entity_Id := Empty;  -- initialize to prevent warning
1803       OK      : Boolean;
1804
1805       Is_Subscr_Ref : Boolean;
1806       --  Set true if Expr is a subscript
1807
1808       Is_Unconstrained_Subscr_Ref : Boolean;
1809       --  Set true if Expr is a subscript of an unconstrained array. In this
1810       --  case we do not attempt to do an analysis of the value against the
1811       --  range of the subscript, since we don't know the actual subtype.
1812
1813       Int_Real : Boolean;
1814       --  Set to True if Expr should be regarded as a real value even though
1815       --  the type of Expr might be discrete.
1816
1817       procedure Bad_Value;
1818       --  Procedure called if value is determined to be out of range
1819
1820       ---------------
1821       -- Bad_Value --
1822       ---------------
1823
1824       procedure Bad_Value is
1825       begin
1826          Apply_Compile_Time_Constraint_Error
1827            (Expr, "value not in range of}?", CE_Range_Check_Failed,
1828             Ent => Target_Typ,
1829             Typ => Target_Typ);
1830       end Bad_Value;
1831
1832    --  Start of processing for Apply_Scalar_Range_Check
1833
1834    begin
1835       --  Return if check obviously not needed
1836
1837       if
1838          --  Not needed inside generic
1839
1840          Inside_A_Generic
1841
1842          --  Not needed if previous error
1843
1844          or else Target_Typ = Any_Type
1845          or else Nkind (Expr) = N_Error
1846
1847          --  Not needed for non-scalar type
1848
1849          or else not Is_Scalar_Type (Target_Typ)
1850
1851          --  Not needed if we know node raises CE already
1852
1853          or else Raises_Constraint_Error (Expr)
1854       then
1855          return;
1856       end if;
1857
1858       --  Now, see if checks are suppressed
1859
1860       Is_Subscr_Ref :=
1861         Is_List_Member (Expr) and then Nkind (Parnt) = N_Indexed_Component;
1862
1863       if Is_Subscr_Ref then
1864          Arr := Prefix (Parnt);
1865          Arr_Typ := Get_Actual_Subtype_If_Available (Arr);
1866       end if;
1867
1868       if not Do_Range_Check (Expr) then
1869
1870          --  Subscript reference. Check for Index_Checks suppressed
1871
1872          if Is_Subscr_Ref then
1873
1874             --  Check array type and its base type
1875
1876             if Index_Checks_Suppressed (Arr_Typ)
1877               or else Index_Checks_Suppressed (Base_Type (Arr_Typ))
1878             then
1879                return;
1880
1881             --  Check array itself if it is an entity name
1882
1883             elsif Is_Entity_Name (Arr)
1884               and then Index_Checks_Suppressed (Entity (Arr))
1885             then
1886                return;
1887
1888             --  Check expression itself if it is an entity name
1889
1890             elsif Is_Entity_Name (Expr)
1891               and then Index_Checks_Suppressed (Entity (Expr))
1892             then
1893                return;
1894             end if;
1895
1896          --  All other cases, check for Range_Checks suppressed
1897
1898          else
1899             --  Check target type and its base type
1900
1901             if Range_Checks_Suppressed (Target_Typ)
1902               or else Range_Checks_Suppressed (Base_Type (Target_Typ))
1903             then
1904                return;
1905
1906             --  Check expression itself if it is an entity name
1907
1908             elsif Is_Entity_Name (Expr)
1909               and then Range_Checks_Suppressed (Entity (Expr))
1910             then
1911                return;
1912
1913             --  If Expr is part of an assignment statement, then check left
1914             --  side of assignment if it is an entity name.
1915
1916             elsif Nkind (Parnt) = N_Assignment_Statement
1917               and then Is_Entity_Name (Name (Parnt))
1918               and then Range_Checks_Suppressed (Entity (Name (Parnt)))
1919             then
1920                return;
1921             end if;
1922          end if;
1923       end if;
1924
1925       --  Do not set range checks if they are killed
1926
1927       if Nkind (Expr) = N_Unchecked_Type_Conversion
1928         and then Kill_Range_Check (Expr)
1929       then
1930          return;
1931       end if;
1932
1933       --  Do not set range checks for any values from System.Scalar_Values
1934       --  since the whole idea of such values is to avoid checking them!
1935
1936       if Is_Entity_Name (Expr)
1937         and then Is_RTU (Scope (Entity (Expr)), System_Scalar_Values)
1938       then
1939          return;
1940       end if;
1941
1942       --  Now see if we need a check
1943
1944       if No (Source_Typ) then
1945          S_Typ := Etype (Expr);
1946       else
1947          S_Typ := Source_Typ;
1948       end if;
1949
1950       if not Is_Scalar_Type (S_Typ) or else S_Typ = Any_Type then
1951          return;
1952       end if;
1953
1954       Is_Unconstrained_Subscr_Ref :=
1955         Is_Subscr_Ref and then not Is_Constrained (Arr_Typ);
1956
1957       --  Always do a range check if the source type includes infinities and
1958       --  the target type does not include infinities. We do not do this if
1959       --  range checks are killed.
1960
1961       if Is_Floating_Point_Type (S_Typ)
1962         and then Has_Infinities (S_Typ)
1963         and then not Has_Infinities (Target_Typ)
1964       then
1965          Enable_Range_Check (Expr);
1966       end if;
1967
1968       --  Return if we know expression is definitely in the range of the target
1969       --  type as determined by Determine_Range. Right now we only do this for
1970       --  discrete types, and not fixed-point or floating-point types.
1971
1972       --  The additional less-precise tests below catch these cases
1973
1974       --  Note: skip this if we are given a source_typ, since the point of
1975       --  supplying a Source_Typ is to stop us looking at the expression.
1976       --  We could sharpen this test to be out parameters only ???
1977
1978       if Is_Discrete_Type (Target_Typ)
1979         and then Is_Discrete_Type (Etype (Expr))
1980         and then not Is_Unconstrained_Subscr_Ref
1981         and then No (Source_Typ)
1982       then
1983          declare
1984             Tlo : constant Node_Id := Type_Low_Bound  (Target_Typ);
1985             Thi : constant Node_Id := Type_High_Bound (Target_Typ);
1986             Lo  : Uint;
1987             Hi  : Uint;
1988
1989          begin
1990             if Compile_Time_Known_Value (Tlo)
1991               and then Compile_Time_Known_Value (Thi)
1992             then
1993                declare
1994                   Lov : constant Uint := Expr_Value (Tlo);
1995                   Hiv : constant Uint := Expr_Value (Thi);
1996
1997                begin
1998                   --  If range is null, we for sure have a constraint error
1999                   --  (we don't even need to look at the value involved,
2000                   --  since all possible values will raise CE).
2001
2002                   if Lov > Hiv then
2003                      Bad_Value;
2004                      return;
2005                   end if;
2006
2007                   --  Otherwise determine range of value
2008
2009                   Determine_Range (Expr, OK, Lo, Hi, Assume_Valid => True);
2010
2011                   if OK then
2012
2013                      --  If definitely in range, all OK
2014
2015                      if Lo >= Lov and then Hi <= Hiv then
2016                         return;
2017
2018                      --  If definitely not in range, warn
2019
2020                      elsif Lov > Hi or else Hiv < Lo then
2021                         Bad_Value;
2022                         return;
2023
2024                      --  Otherwise we don't know
2025
2026                      else
2027                         null;
2028                      end if;
2029                   end if;
2030                end;
2031             end if;
2032          end;
2033       end if;
2034
2035       Int_Real :=
2036         Is_Floating_Point_Type (S_Typ)
2037           or else (Is_Fixed_Point_Type (S_Typ) and then not Fixed_Int);
2038
2039       --  Check if we can determine at compile time whether Expr is in the
2040       --  range of the target type. Note that if S_Typ is within the bounds
2041       --  of Target_Typ then this must be the case. This check is meaningful
2042       --  only if this is not a conversion between integer and real types.
2043
2044       if not Is_Unconstrained_Subscr_Ref
2045         and then
2046            Is_Discrete_Type (S_Typ) = Is_Discrete_Type (Target_Typ)
2047         and then
2048           (In_Subrange_Of (S_Typ, Target_Typ, Fixed_Int)
2049              or else
2050                Is_In_Range (Expr, Target_Typ,
2051                             Assume_Valid => True,
2052                             Fixed_Int => Fixed_Int,
2053                             Int_Real  => Int_Real))
2054       then
2055          return;
2056
2057       elsif Is_Out_Of_Range (Expr, Target_Typ,
2058                              Assume_Valid => True,
2059                              Fixed_Int    => Fixed_Int,
2060                              Int_Real     => Int_Real)
2061       then
2062          Bad_Value;
2063          return;
2064
2065       --  In the floating-point case, we only do range checks if the type is
2066       --  constrained. We definitely do NOT want range checks for unconstrained
2067       --  types, since we want to have infinities
2068
2069       elsif Is_Floating_Point_Type (S_Typ) then
2070          if Is_Constrained (S_Typ) then
2071             Enable_Range_Check (Expr);
2072          end if;
2073
2074       --  For all other cases we enable a range check unconditionally
2075
2076       else
2077          Enable_Range_Check (Expr);
2078          return;
2079       end if;
2080    end Apply_Scalar_Range_Check;
2081
2082    ----------------------------------
2083    -- Apply_Selected_Length_Checks --
2084    ----------------------------------
2085
2086    procedure Apply_Selected_Length_Checks
2087      (Ck_Node    : Node_Id;
2088       Target_Typ : Entity_Id;
2089       Source_Typ : Entity_Id;
2090       Do_Static  : Boolean)
2091    is
2092       Cond     : Node_Id;
2093       R_Result : Check_Result;
2094       R_Cno    : Node_Id;
2095
2096       Loc         : constant Source_Ptr := Sloc (Ck_Node);
2097       Checks_On   : constant Boolean :=
2098                       (not Index_Checks_Suppressed (Target_Typ))
2099                         or else
2100                       (not Length_Checks_Suppressed (Target_Typ));
2101
2102    begin
2103       if not Expander_Active then
2104          return;
2105       end if;
2106
2107       R_Result :=
2108         Selected_Length_Checks (Ck_Node, Target_Typ, Source_Typ, Empty);
2109
2110       for J in 1 .. 2 loop
2111          R_Cno := R_Result (J);
2112          exit when No (R_Cno);
2113
2114          --  A length check may mention an Itype which is attached to a
2115          --  subsequent node. At the top level in a package this can cause
2116          --  an order-of-elaboration problem, so we make sure that the itype
2117          --  is referenced now.
2118
2119          if Ekind (Current_Scope) = E_Package
2120            and then Is_Compilation_Unit (Current_Scope)
2121          then
2122             Ensure_Defined (Target_Typ, Ck_Node);
2123
2124             if Present (Source_Typ) then
2125                Ensure_Defined (Source_Typ, Ck_Node);
2126
2127             elsif Is_Itype (Etype (Ck_Node)) then
2128                Ensure_Defined (Etype (Ck_Node), Ck_Node);
2129             end if;
2130          end if;
2131
2132          --  If the item is a conditional raise of constraint error, then have
2133          --  a look at what check is being performed and ???
2134
2135          if Nkind (R_Cno) = N_Raise_Constraint_Error
2136            and then Present (Condition (R_Cno))
2137          then
2138             Cond := Condition (R_Cno);
2139
2140             --  Case where node does not now have a dynamic check
2141
2142             if not Has_Dynamic_Length_Check (Ck_Node) then
2143
2144                --  If checks are on, just insert the check
2145
2146                if Checks_On then
2147                   Insert_Action (Ck_Node, R_Cno);
2148
2149                   if not Do_Static then
2150                      Set_Has_Dynamic_Length_Check (Ck_Node);
2151                   end if;
2152
2153                --  If checks are off, then analyze the length check after
2154                --  temporarily attaching it to the tree in case the relevant
2155                --  condition can be evaluted at compile time. We still want a
2156                --  compile time warning in this case.
2157
2158                else
2159                   Set_Parent (R_Cno, Ck_Node);
2160                   Analyze (R_Cno);
2161                end if;
2162             end if;
2163
2164             --  Output a warning if the condition is known to be True
2165
2166             if Is_Entity_Name (Cond)
2167               and then Entity (Cond) = Standard_True
2168             then
2169                Apply_Compile_Time_Constraint_Error
2170                  (Ck_Node, "wrong length for array of}?",
2171                   CE_Length_Check_Failed,
2172                   Ent => Target_Typ,
2173                   Typ => Target_Typ);
2174
2175             --  If we were only doing a static check, or if checks are not
2176             --  on, then we want to delete the check, since it is not needed.
2177             --  We do this by replacing the if statement by a null statement
2178
2179             elsif Do_Static or else not Checks_On then
2180                Remove_Warning_Messages (R_Cno);
2181                Rewrite (R_Cno, Make_Null_Statement (Loc));
2182             end if;
2183
2184          else
2185             Install_Static_Check (R_Cno, Loc);
2186          end if;
2187       end loop;
2188    end Apply_Selected_Length_Checks;
2189
2190    ---------------------------------
2191    -- Apply_Selected_Range_Checks --
2192    ---------------------------------
2193
2194    procedure Apply_Selected_Range_Checks
2195      (Ck_Node    : Node_Id;
2196       Target_Typ : Entity_Id;
2197       Source_Typ : Entity_Id;
2198       Do_Static  : Boolean)
2199    is
2200       Cond     : Node_Id;
2201       R_Result : Check_Result;
2202       R_Cno    : Node_Id;
2203
2204       Loc       : constant Source_Ptr := Sloc (Ck_Node);
2205       Checks_On : constant Boolean :=
2206                     (not Index_Checks_Suppressed (Target_Typ))
2207                       or else
2208                     (not Range_Checks_Suppressed (Target_Typ));
2209
2210    begin
2211       if not Expander_Active or else not Checks_On then
2212          return;
2213       end if;
2214
2215       R_Result :=
2216         Selected_Range_Checks (Ck_Node, Target_Typ, Source_Typ, Empty);
2217
2218       for J in 1 .. 2 loop
2219
2220          R_Cno := R_Result (J);
2221          exit when No (R_Cno);
2222
2223          --  If the item is a conditional raise of constraint error, then have
2224          --  a look at what check is being performed and ???
2225
2226          if Nkind (R_Cno) = N_Raise_Constraint_Error
2227            and then Present (Condition (R_Cno))
2228          then
2229             Cond := Condition (R_Cno);
2230
2231             if not Has_Dynamic_Range_Check (Ck_Node) then
2232                Insert_Action (Ck_Node, R_Cno);
2233
2234                if not Do_Static then
2235                   Set_Has_Dynamic_Range_Check (Ck_Node);
2236                end if;
2237             end if;
2238
2239             --  Output a warning if the condition is known to be True
2240
2241             if Is_Entity_Name (Cond)
2242               and then Entity (Cond) = Standard_True
2243             then
2244                --  Since an N_Range is technically not an expression, we have
2245                --  to set one of the bounds to C_E and then just flag the
2246                --  N_Range. The warning message will point to the lower bound
2247                --  and complain about a range, which seems OK.
2248
2249                if Nkind (Ck_Node) = N_Range then
2250                   Apply_Compile_Time_Constraint_Error
2251                     (Low_Bound (Ck_Node), "static range out of bounds of}?",
2252                      CE_Range_Check_Failed,
2253                      Ent => Target_Typ,
2254                      Typ => Target_Typ);
2255
2256                   Set_Raises_Constraint_Error (Ck_Node);
2257
2258                else
2259                   Apply_Compile_Time_Constraint_Error
2260                     (Ck_Node, "static value out of range of}?",
2261                      CE_Range_Check_Failed,
2262                      Ent => Target_Typ,
2263                      Typ => Target_Typ);
2264                end if;
2265
2266             --  If we were only doing a static check, or if checks are not
2267             --  on, then we want to delete the check, since it is not needed.
2268             --  We do this by replacing the if statement by a null statement
2269
2270             elsif Do_Static or else not Checks_On then
2271                Remove_Warning_Messages (R_Cno);
2272                Rewrite (R_Cno, Make_Null_Statement (Loc));
2273             end if;
2274
2275          else
2276             Install_Static_Check (R_Cno, Loc);
2277          end if;
2278       end loop;
2279    end Apply_Selected_Range_Checks;
2280
2281    -------------------------------
2282    -- Apply_Static_Length_Check --
2283    -------------------------------
2284
2285    procedure Apply_Static_Length_Check
2286      (Expr       : Node_Id;
2287       Target_Typ : Entity_Id;
2288       Source_Typ : Entity_Id := Empty)
2289    is
2290    begin
2291       Apply_Selected_Length_Checks
2292         (Expr, Target_Typ, Source_Typ, Do_Static => True);
2293    end Apply_Static_Length_Check;
2294
2295    -------------------------------------
2296    -- Apply_Subscript_Validity_Checks --
2297    -------------------------------------
2298
2299    procedure Apply_Subscript_Validity_Checks (Expr : Node_Id) is
2300       Sub : Node_Id;
2301
2302    begin
2303       pragma Assert (Nkind (Expr) = N_Indexed_Component);
2304
2305       --  Loop through subscripts
2306
2307       Sub := First (Expressions (Expr));
2308       while Present (Sub) loop
2309
2310          --  Check one subscript. Note that we do not worry about enumeration
2311          --  type with holes, since we will convert the value to a Pos value
2312          --  for the subscript, and that convert will do the necessary validity
2313          --  check.
2314
2315          Ensure_Valid (Sub, Holes_OK => True);
2316
2317          --  Move to next subscript
2318
2319          Sub := Next (Sub);
2320       end loop;
2321    end Apply_Subscript_Validity_Checks;
2322
2323    ----------------------------------
2324    -- Apply_Type_Conversion_Checks --
2325    ----------------------------------
2326
2327    procedure Apply_Type_Conversion_Checks (N : Node_Id) is
2328       Target_Type : constant Entity_Id := Etype (N);
2329       Target_Base : constant Entity_Id := Base_Type (Target_Type);
2330       Expr        : constant Node_Id   := Expression (N);
2331       Expr_Type   : constant Entity_Id := Etype (Expr);
2332
2333    begin
2334       if Inside_A_Generic then
2335          return;
2336
2337       --  Skip these checks if serious errors detected, there are some nasty
2338       --  situations of incomplete trees that blow things up.
2339
2340       elsif Serious_Errors_Detected > 0 then
2341          return;
2342
2343       --  Scalar type conversions of the form Target_Type (Expr) require a
2344       --  range check if we cannot be sure that Expr is in the base type of
2345       --  Target_Typ and also that Expr is in the range of Target_Typ. These
2346       --  are not quite the same condition from an implementation point of
2347       --  view, but clearly the second includes the first.
2348
2349       elsif Is_Scalar_Type (Target_Type) then
2350          declare
2351             Conv_OK  : constant Boolean := Conversion_OK (N);
2352             --  If the Conversion_OK flag on the type conversion is set and no
2353             --  floating point type is involved in the type conversion then
2354             --  fixed point values must be read as integral values.
2355
2356             Float_To_Int : constant Boolean :=
2357                              Is_Floating_Point_Type (Expr_Type)
2358                                and then Is_Integer_Type (Target_Type);
2359
2360          begin
2361             if not Overflow_Checks_Suppressed (Target_Base)
2362               and then not
2363                 In_Subrange_Of (Expr_Type, Target_Base, Fixed_Int => Conv_OK)
2364               and then not Float_To_Int
2365             then
2366                Activate_Overflow_Check (N);
2367             end if;
2368
2369             if not Range_Checks_Suppressed (Target_Type)
2370               and then not Range_Checks_Suppressed (Expr_Type)
2371             then
2372                if Float_To_Int then
2373                   Apply_Float_Conversion_Check (Expr, Target_Type);
2374                else
2375                   Apply_Scalar_Range_Check
2376                     (Expr, Target_Type, Fixed_Int => Conv_OK);
2377                end if;
2378             end if;
2379          end;
2380
2381       elsif Comes_From_Source (N)
2382         and then not Discriminant_Checks_Suppressed (Target_Type)
2383         and then Is_Record_Type (Target_Type)
2384         and then Is_Derived_Type (Target_Type)
2385         and then not Is_Tagged_Type (Target_Type)
2386         and then not Is_Constrained (Target_Type)
2387         and then Present (Stored_Constraint (Target_Type))
2388       then
2389          --  An unconstrained derived type may have inherited discriminant
2390          --  Build an actual discriminant constraint list using the stored
2391          --  constraint, to verify that the expression of the parent type
2392          --  satisfies the constraints imposed by the (unconstrained!)
2393          --  derived type. This applies to value conversions, not to view
2394          --  conversions of tagged types.
2395
2396          declare
2397             Loc         : constant Source_Ptr := Sloc (N);
2398             Cond        : Node_Id;
2399             Constraint  : Elmt_Id;
2400             Discr_Value : Node_Id;
2401             Discr       : Entity_Id;
2402
2403             New_Constraints : constant Elist_Id := New_Elmt_List;
2404             Old_Constraints : constant Elist_Id :=
2405                                 Discriminant_Constraint (Expr_Type);
2406
2407          begin
2408             Constraint := First_Elmt (Stored_Constraint (Target_Type));
2409             while Present (Constraint) loop
2410                Discr_Value := Node (Constraint);
2411
2412                if Is_Entity_Name (Discr_Value)
2413                  and then Ekind (Entity (Discr_Value)) = E_Discriminant
2414                then
2415                   Discr := Corresponding_Discriminant (Entity (Discr_Value));
2416
2417                   if Present (Discr)
2418                     and then Scope (Discr) = Base_Type (Expr_Type)
2419                   then
2420                      --  Parent is constrained by new discriminant. Obtain
2421                      --  Value of original discriminant in expression. If the
2422                      --  new discriminant has been used to constrain more than
2423                      --  one of the stored discriminants, this will provide the
2424                      --  required consistency check.
2425
2426                      Append_Elmt (
2427                         Make_Selected_Component (Loc,
2428                           Prefix =>
2429                             Duplicate_Subexpr_No_Checks
2430                               (Expr, Name_Req => True),
2431                           Selector_Name =>
2432                             Make_Identifier (Loc, Chars (Discr))),
2433                                 New_Constraints);
2434
2435                   else
2436                      --  Discriminant of more remote ancestor ???
2437
2438                      return;
2439                   end if;
2440
2441                --  Derived type definition has an explicit value for this
2442                --  stored discriminant.
2443
2444                else
2445                   Append_Elmt
2446                     (Duplicate_Subexpr_No_Checks (Discr_Value),
2447                      New_Constraints);
2448                end if;
2449
2450                Next_Elmt (Constraint);
2451             end loop;
2452
2453             --  Use the unconstrained expression type to retrieve the
2454             --  discriminants of the parent, and apply momentarily the
2455             --  discriminant constraint synthesized above.
2456
2457             Set_Discriminant_Constraint (Expr_Type, New_Constraints);
2458             Cond := Build_Discriminant_Checks (Expr, Expr_Type);
2459             Set_Discriminant_Constraint (Expr_Type, Old_Constraints);
2460
2461             Insert_Action (N,
2462               Make_Raise_Constraint_Error (Loc,
2463                 Condition => Cond,
2464                 Reason    => CE_Discriminant_Check_Failed));
2465          end;
2466
2467       --  For arrays, conversions are applied during expansion, to take into
2468       --  accounts changes of representation. The checks become range checks on
2469       --  the base type or length checks on the subtype, depending on whether
2470       --  the target type is unconstrained or constrained.
2471
2472       else
2473          null;
2474       end if;
2475    end Apply_Type_Conversion_Checks;
2476
2477    ----------------------------------------------
2478    -- Apply_Universal_Integer_Attribute_Checks --
2479    ----------------------------------------------
2480
2481    procedure Apply_Universal_Integer_Attribute_Checks (N : Node_Id) is
2482       Loc : constant Source_Ptr := Sloc (N);
2483       Typ : constant Entity_Id  := Etype (N);
2484
2485    begin
2486       if Inside_A_Generic then
2487          return;
2488
2489       --  Nothing to do if checks are suppressed
2490
2491       elsif Range_Checks_Suppressed (Typ)
2492         and then Overflow_Checks_Suppressed (Typ)
2493       then
2494          return;
2495
2496       --  Nothing to do if the attribute does not come from source. The
2497       --  internal attributes we generate of this type do not need checks,
2498       --  and furthermore the attempt to check them causes some circular
2499       --  elaboration orders when dealing with packed types.
2500
2501       elsif not Comes_From_Source (N) then
2502          return;
2503
2504       --  If the prefix is a selected component that depends on a discriminant
2505       --  the check may improperly expose a discriminant instead of using
2506       --  the bounds of the object itself. Set the type of the attribute to
2507       --  the base type of the context, so that a check will be imposed when
2508       --  needed (e.g. if the node appears as an index).
2509
2510       elsif Nkind (Prefix (N)) = N_Selected_Component
2511         and then Ekind (Typ) = E_Signed_Integer_Subtype
2512         and then Depends_On_Discriminant (Scalar_Range (Typ))
2513       then
2514          Set_Etype (N, Base_Type (Typ));
2515
2516       --  Otherwise, replace the attribute node with a type conversion node
2517       --  whose expression is the attribute, retyped to universal integer, and
2518       --  whose subtype mark is the target type. The call to analyze this
2519       --  conversion will set range and overflow checks as required for proper
2520       --  detection of an out of range value.
2521
2522       else
2523          Set_Etype    (N, Universal_Integer);
2524          Set_Analyzed (N, True);
2525
2526          Rewrite (N,
2527            Make_Type_Conversion (Loc,
2528              Subtype_Mark => New_Occurrence_Of (Typ, Loc),
2529              Expression   => Relocate_Node (N)));
2530
2531          Analyze_And_Resolve (N, Typ);
2532          return;
2533       end if;
2534    end Apply_Universal_Integer_Attribute_Checks;
2535
2536    -------------------------------
2537    -- Build_Discriminant_Checks --
2538    -------------------------------
2539
2540    function Build_Discriminant_Checks
2541      (N     : Node_Id;
2542       T_Typ : Entity_Id) return Node_Id
2543    is
2544       Loc      : constant Source_Ptr := Sloc (N);
2545       Cond     : Node_Id;
2546       Disc     : Elmt_Id;
2547       Disc_Ent : Entity_Id;
2548       Dref     : Node_Id;
2549       Dval     : Node_Id;
2550
2551       function Aggregate_Discriminant_Val (Disc : Entity_Id) return Node_Id;
2552
2553       ----------------------------------
2554       -- Aggregate_Discriminant_Value --
2555       ----------------------------------
2556
2557       function Aggregate_Discriminant_Val (Disc : Entity_Id) return Node_Id is
2558          Assoc : Node_Id;
2559
2560       begin
2561          --  The aggregate has been normalized with named associations. We use
2562          --  the Chars field to locate the discriminant to take into account
2563          --  discriminants in derived types, which carry the same name as those
2564          --  in the parent.
2565
2566          Assoc := First (Component_Associations (N));
2567          while Present (Assoc) loop
2568             if Chars (First (Choices (Assoc))) = Chars (Disc) then
2569                return Expression (Assoc);
2570             else
2571                Next (Assoc);
2572             end if;
2573          end loop;
2574
2575          --  Discriminant must have been found in the loop above
2576
2577          raise Program_Error;
2578       end Aggregate_Discriminant_Val;
2579
2580    --  Start of processing for Build_Discriminant_Checks
2581
2582    begin
2583       --  Loop through discriminants evolving the condition
2584
2585       Cond := Empty;
2586       Disc := First_Elmt (Discriminant_Constraint (T_Typ));
2587
2588       --  For a fully private type, use the discriminants of the parent type
2589
2590       if Is_Private_Type (T_Typ)
2591         and then No (Full_View (T_Typ))
2592       then
2593          Disc_Ent := First_Discriminant (Etype (Base_Type (T_Typ)));
2594       else
2595          Disc_Ent := First_Discriminant (T_Typ);
2596       end if;
2597
2598       while Present (Disc) loop
2599          Dval := Node (Disc);
2600
2601          if Nkind (Dval) = N_Identifier
2602            and then Ekind (Entity (Dval)) = E_Discriminant
2603          then
2604             Dval := New_Occurrence_Of (Discriminal (Entity (Dval)), Loc);
2605          else
2606             Dval := Duplicate_Subexpr_No_Checks (Dval);
2607          end if;
2608
2609          --  If we have an Unchecked_Union node, we can infer the discriminants
2610          --  of the node.
2611
2612          if Is_Unchecked_Union (Base_Type (T_Typ)) then
2613             Dref := New_Copy (
2614               Get_Discriminant_Value (
2615                 First_Discriminant (T_Typ),
2616                 T_Typ,
2617                 Stored_Constraint (T_Typ)));
2618
2619          elsif Nkind (N) = N_Aggregate then
2620             Dref :=
2621                Duplicate_Subexpr_No_Checks
2622                  (Aggregate_Discriminant_Val (Disc_Ent));
2623
2624          else
2625             Dref :=
2626               Make_Selected_Component (Loc,
2627                 Prefix =>
2628                   Duplicate_Subexpr_No_Checks (N, Name_Req => True),
2629                 Selector_Name =>
2630                   Make_Identifier (Loc, Chars (Disc_Ent)));
2631
2632             Set_Is_In_Discriminant_Check (Dref);
2633          end if;
2634
2635          Evolve_Or_Else (Cond,
2636            Make_Op_Ne (Loc,
2637              Left_Opnd => Dref,
2638              Right_Opnd => Dval));
2639
2640          Next_Elmt (Disc);
2641          Next_Discriminant (Disc_Ent);
2642       end loop;
2643
2644       return Cond;
2645    end Build_Discriminant_Checks;
2646
2647    ------------------
2648    -- Check_Needed --
2649    ------------------
2650
2651    function Check_Needed (Nod : Node_Id; Check : Check_Type) return Boolean is
2652       N : Node_Id;
2653       P : Node_Id;
2654       K : Node_Kind;
2655       L : Node_Id;
2656       R : Node_Id;
2657
2658    begin
2659       --  Always check if not simple entity
2660
2661       if Nkind (Nod) not in N_Has_Entity
2662         or else not Comes_From_Source (Nod)
2663       then
2664          return True;
2665       end if;
2666
2667       --  Look up tree for short circuit
2668
2669       N := Nod;
2670       loop
2671          P := Parent (N);
2672          K := Nkind (P);
2673
2674          --  Done if out of subexpression (note that we allow generated stuff
2675          --  such as itype declarations in this context, to keep the loop going
2676          --  since we may well have generated such stuff in complex situations.
2677          --  Also done if no parent (probably an error condition, but no point
2678          --  in behaving nasty if we find it!)
2679
2680          if No (P)
2681            or else (K not in N_Subexpr and then Comes_From_Source (P))
2682          then
2683             return True;
2684
2685          --  Or/Or Else case, where test is part of the right operand, or is
2686          --  part of one of the actions associated with the right operand, and
2687          --  the left operand is an equality test.
2688
2689          elsif K = N_Op_Or then
2690             exit when N = Right_Opnd (P)
2691               and then Nkind (Left_Opnd (P)) = N_Op_Eq;
2692
2693          elsif K = N_Or_Else then
2694             exit when (N = Right_Opnd (P)
2695                         or else
2696                           (Is_List_Member (N)
2697                              and then List_Containing (N) = Actions (P)))
2698               and then Nkind (Left_Opnd (P)) = N_Op_Eq;
2699
2700          --  Similar test for the And/And then case, where the left operand
2701          --  is an inequality test.
2702
2703          elsif K = N_Op_And then
2704             exit when N = Right_Opnd (P)
2705               and then Nkind (Left_Opnd (P)) = N_Op_Ne;
2706
2707          elsif K = N_And_Then then
2708             exit when (N = Right_Opnd (P)
2709                         or else
2710                           (Is_List_Member (N)
2711                              and then List_Containing (N) = Actions (P)))
2712               and then Nkind (Left_Opnd (P)) = N_Op_Ne;
2713          end if;
2714
2715          N := P;
2716       end loop;
2717
2718       --  If we fall through the loop, then we have a conditional with an
2719       --  appropriate test as its left operand. So test further.
2720
2721       L := Left_Opnd (P);
2722       R := Right_Opnd (L);
2723       L := Left_Opnd (L);
2724
2725       --  Left operand of test must match original variable
2726
2727       if Nkind (L) not in N_Has_Entity
2728         or else Entity (L) /= Entity (Nod)
2729       then
2730          return True;
2731       end if;
2732
2733       --  Right operand of test must be key value (zero or null)
2734
2735       case Check is
2736          when Access_Check =>
2737             if not Known_Null (R) then
2738                return True;
2739             end if;
2740
2741          when Division_Check =>
2742             if not Compile_Time_Known_Value (R)
2743               or else Expr_Value (R) /= Uint_0
2744             then
2745                return True;
2746             end if;
2747
2748          when others =>
2749             raise Program_Error;
2750       end case;
2751
2752       --  Here we have the optimizable case, warn if not short-circuited
2753
2754       if K = N_Op_And or else K = N_Op_Or then
2755          case Check is
2756             when Access_Check =>
2757                Error_Msg_N
2758                  ("Constraint_Error may be raised (access check)?",
2759                   Parent (Nod));
2760             when Division_Check =>
2761                Error_Msg_N
2762                  ("Constraint_Error may be raised (zero divide)?",
2763                   Parent (Nod));
2764
2765             when others =>
2766                raise Program_Error;
2767          end case;
2768
2769          if K = N_Op_And then
2770             Error_Msg_N ("use `AND THEN` instead of AND?", P);
2771          else
2772             Error_Msg_N ("use `OR ELSE` instead of OR?", P);
2773          end if;
2774
2775          --  If not short-circuited, we need the ckeck
2776
2777          return True;
2778
2779       --  If short-circuited, we can omit the check
2780
2781       else
2782          return False;
2783       end if;
2784    end Check_Needed;
2785
2786    -----------------------------------
2787    -- Check_Valid_Lvalue_Subscripts --
2788    -----------------------------------
2789
2790    procedure Check_Valid_Lvalue_Subscripts (Expr : Node_Id) is
2791    begin
2792       --  Skip this if range checks are suppressed
2793
2794       if Range_Checks_Suppressed (Etype (Expr)) then
2795          return;
2796
2797       --  Only do this check for expressions that come from source. We assume
2798       --  that expander generated assignments explicitly include any necessary
2799       --  checks. Note that this is not just an optimization, it avoids
2800       --  infinite recursions!
2801
2802       elsif not Comes_From_Source (Expr) then
2803          return;
2804
2805       --  For a selected component, check the prefix
2806
2807       elsif Nkind (Expr) = N_Selected_Component then
2808          Check_Valid_Lvalue_Subscripts (Prefix (Expr));
2809          return;
2810
2811       --  Case of indexed component
2812
2813       elsif Nkind (Expr) = N_Indexed_Component then
2814          Apply_Subscript_Validity_Checks (Expr);
2815
2816          --  Prefix may itself be or contain an indexed component, and these
2817          --  subscripts need checking as well.
2818
2819          Check_Valid_Lvalue_Subscripts (Prefix (Expr));
2820       end if;
2821    end Check_Valid_Lvalue_Subscripts;
2822
2823    ----------------------------------
2824    -- Null_Exclusion_Static_Checks --
2825    ----------------------------------
2826
2827    procedure Null_Exclusion_Static_Checks (N : Node_Id) is
2828       Error_Node : Node_Id;
2829       Expr       : Node_Id;
2830       Has_Null   : constant Boolean := Has_Null_Exclusion (N);
2831       K          : constant Node_Kind := Nkind (N);
2832       Typ        : Entity_Id;
2833
2834    begin
2835       pragma Assert
2836         (K = N_Component_Declaration
2837            or else K = N_Discriminant_Specification
2838            or else K = N_Function_Specification
2839            or else K = N_Object_Declaration
2840            or else K = N_Parameter_Specification);
2841
2842       if K = N_Function_Specification then
2843          Typ := Etype (Defining_Entity (N));
2844       else
2845          Typ := Etype (Defining_Identifier (N));
2846       end if;
2847
2848       case K is
2849          when N_Component_Declaration =>
2850             if Present (Access_Definition (Component_Definition (N))) then
2851                Error_Node := Component_Definition (N);
2852             else
2853                Error_Node := Subtype_Indication (Component_Definition (N));
2854             end if;
2855
2856          when N_Discriminant_Specification =>
2857             Error_Node    := Discriminant_Type (N);
2858
2859          when N_Function_Specification =>
2860             Error_Node    := Result_Definition (N);
2861
2862          when N_Object_Declaration =>
2863             Error_Node    := Object_Definition (N);
2864
2865          when N_Parameter_Specification =>
2866             Error_Node    := Parameter_Type (N);
2867
2868          when others =>
2869             raise Program_Error;
2870       end case;
2871
2872       if Has_Null then
2873
2874          --  Enforce legality rule 3.10 (13): A null exclusion can only be
2875          --  applied to an access [sub]type.
2876
2877          if not Is_Access_Type (Typ) then
2878             Error_Msg_N
2879               ("`NOT NULL` allowed only for an access type", Error_Node);
2880
2881          --  Enforce legality rule RM 3.10(14/1): A null exclusion can only
2882          --  be applied to a [sub]type that does not exclude null already.
2883
2884          elsif Can_Never_Be_Null (Typ)
2885            and then Comes_From_Source (Typ)
2886          then
2887             Error_Msg_NE
2888               ("`NOT NULL` not allowed (& already excludes null)",
2889                Error_Node, Typ);
2890          end if;
2891       end if;
2892
2893       --  Check that null-excluding objects are always initialized, except for
2894       --  deferred constants, for which the expression will appear in the full
2895       --  declaration.
2896
2897       if K = N_Object_Declaration
2898         and then No (Expression (N))
2899         and then not Constant_Present (N)
2900         and then not No_Initialization (N)
2901       then
2902          --  Add an expression that assigns null. This node is needed by
2903          --  Apply_Compile_Time_Constraint_Error, which will replace this with
2904          --  a Constraint_Error node.
2905
2906          Set_Expression (N, Make_Null (Sloc (N)));
2907          Set_Etype (Expression (N), Etype (Defining_Identifier (N)));
2908
2909          Apply_Compile_Time_Constraint_Error
2910            (N      => Expression (N),
2911             Msg    => "(Ada 2005) null-excluding objects must be initialized?",
2912             Reason => CE_Null_Not_Allowed);
2913       end if;
2914
2915       --  Check that a null-excluding component, formal or object is not being
2916       --  assigned a null value. Otherwise generate a warning message and
2917       --  replace Expression (N) by an N_Constraint_Error node.
2918
2919       if K /= N_Function_Specification then
2920          Expr := Expression (N);
2921
2922          if Present (Expr) and then Known_Null (Expr) then
2923             case K is
2924                when N_Component_Declaration      |
2925                     N_Discriminant_Specification =>
2926                   Apply_Compile_Time_Constraint_Error
2927                     (N      => Expr,
2928                      Msg    => "(Ada 2005) null not allowed " &
2929                                "in null-excluding components?",
2930                      Reason => CE_Null_Not_Allowed);
2931
2932                when N_Object_Declaration =>
2933                   Apply_Compile_Time_Constraint_Error
2934                     (N      => Expr,
2935                      Msg    => "(Ada 2005) null not allowed " &
2936                                "in null-excluding objects?",
2937                      Reason => CE_Null_Not_Allowed);
2938
2939                when N_Parameter_Specification =>
2940                   Apply_Compile_Time_Constraint_Error
2941                     (N      => Expr,
2942                      Msg    => "(Ada 2005) null not allowed " &
2943                                "in null-excluding formals?",
2944                      Reason => CE_Null_Not_Allowed);
2945
2946                when others =>
2947                   null;
2948             end case;
2949          end if;
2950       end if;
2951    end Null_Exclusion_Static_Checks;
2952
2953    ----------------------------------
2954    -- Conditional_Statements_Begin --
2955    ----------------------------------
2956
2957    procedure Conditional_Statements_Begin is
2958    begin
2959       Saved_Checks_TOS := Saved_Checks_TOS + 1;
2960
2961       --  If stack overflows, kill all checks, that way we know to simply reset
2962       --  the number of saved checks to zero on return. This should never occur
2963       --  in practice.
2964
2965       if Saved_Checks_TOS > Saved_Checks_Stack'Last then
2966          Kill_All_Checks;
2967
2968       --  In the normal case, we just make a new stack entry saving the current
2969       --  number of saved checks for a later restore.
2970
2971       else
2972          Saved_Checks_Stack (Saved_Checks_TOS) := Num_Saved_Checks;
2973
2974          if Debug_Flag_CC then
2975             w ("Conditional_Statements_Begin: Num_Saved_Checks = ",
2976                Num_Saved_Checks);
2977          end if;
2978       end if;
2979    end Conditional_Statements_Begin;
2980
2981    --------------------------------
2982    -- Conditional_Statements_End --
2983    --------------------------------
2984
2985    procedure Conditional_Statements_End is
2986    begin
2987       pragma Assert (Saved_Checks_TOS > 0);
2988
2989       --  If the saved checks stack overflowed, then we killed all checks, so
2990       --  setting the number of saved checks back to zero is correct. This
2991       --  should never occur in practice.
2992
2993       if Saved_Checks_TOS > Saved_Checks_Stack'Last then
2994          Num_Saved_Checks := 0;
2995
2996       --  In the normal case, restore the number of saved checks from the top
2997       --  stack entry.
2998
2999       else
3000          Num_Saved_Checks := Saved_Checks_Stack (Saved_Checks_TOS);
3001          if Debug_Flag_CC then
3002             w ("Conditional_Statements_End: Num_Saved_Checks = ",
3003                Num_Saved_Checks);
3004          end if;
3005       end if;
3006
3007       Saved_Checks_TOS := Saved_Checks_TOS - 1;
3008    end Conditional_Statements_End;
3009
3010    ---------------------
3011    -- Determine_Range --
3012    ---------------------
3013
3014    Cache_Size : constant := 2 ** 10;
3015    type Cache_Index is range 0 .. Cache_Size - 1;
3016    --  Determine size of below cache (power of 2 is more efficient!)
3017
3018    Determine_Range_Cache_N  : array (Cache_Index) of Node_Id;
3019    Determine_Range_Cache_V  : array (Cache_Index) of Boolean;
3020    Determine_Range_Cache_Lo : array (Cache_Index) of Uint;
3021    Determine_Range_Cache_Hi : array (Cache_Index) of Uint;
3022    --  The above arrays are used to implement a small direct cache for
3023    --  Determine_Range calls. Because of the way Determine_Range recursively
3024    --  traces subexpressions, and because overflow checking calls the routine
3025    --  on the way up the tree, a quadratic behavior can otherwise be
3026    --  encountered in large expressions. The cache entry for node N is stored
3027    --  in the (N mod Cache_Size) entry, and can be validated by checking the
3028    --  actual node value stored there. The Range_Cache_V array records the
3029    --  setting of Assume_Valid for the cache entry.
3030
3031    procedure Determine_Range
3032      (N            : Node_Id;
3033       OK           : out Boolean;
3034       Lo           : out Uint;
3035       Hi           : out Uint;
3036       Assume_Valid : Boolean := False)
3037    is
3038       Typ : Entity_Id := Etype (N);
3039       --  Type to use, may get reset to base type for possibly invalid entity
3040
3041       Lo_Left : Uint;
3042       Hi_Left : Uint;
3043       --  Lo and Hi bounds of left operand
3044
3045       Lo_Right : Uint;
3046       Hi_Right : Uint;
3047       --  Lo and Hi bounds of right (or only) operand
3048
3049       Bound : Node_Id;
3050       --  Temp variable used to hold a bound node
3051
3052       Hbound : Uint;
3053       --  High bound of base type of expression
3054
3055       Lor : Uint;
3056       Hir : Uint;
3057       --  Refined values for low and high bounds, after tightening
3058
3059       OK1 : Boolean;
3060       --  Used in lower level calls to indicate if call succeeded
3061
3062       Cindex : Cache_Index;
3063       --  Used to search cache
3064
3065       function OK_Operands return Boolean;
3066       --  Used for binary operators. Determines the ranges of the left and
3067       --  right operands, and if they are both OK, returns True, and puts
3068       --  the results in Lo_Right, Hi_Right, Lo_Left, Hi_Left.
3069
3070       -----------------
3071       -- OK_Operands --
3072       -----------------
3073
3074       function OK_Operands return Boolean is
3075       begin
3076          Determine_Range
3077            (Left_Opnd  (N), OK1, Lo_Left,  Hi_Left, Assume_Valid);
3078
3079          if not OK1 then
3080             return False;
3081          end if;
3082
3083          Determine_Range
3084            (Right_Opnd (N), OK1, Lo_Right, Hi_Right, Assume_Valid);
3085          return OK1;
3086       end OK_Operands;
3087
3088    --  Start of processing for Determine_Range
3089
3090    begin
3091       --  Prevent junk warnings by initializing range variables
3092
3093       Lo  := No_Uint;
3094       Hi  := No_Uint;
3095       Lor := No_Uint;
3096       Hir := No_Uint;
3097
3098       --  If type is not defined, we can't determine its range
3099
3100       if No (Typ)
3101
3102         --  We don't deal with anything except discrete types
3103
3104         or else not Is_Discrete_Type (Typ)
3105
3106         --  Ignore type for which an error has been posted, since range in
3107         --  this case may well be a bogosity deriving from the error. Also
3108         --  ignore if error posted on the reference node.
3109
3110         or else Error_Posted (N) or else Error_Posted (Typ)
3111       then
3112          OK := False;
3113          return;
3114       end if;
3115
3116       --  For all other cases, we can determine the range
3117
3118       OK := True;
3119
3120       --  If value is compile time known, then the possible range is the one
3121       --  value that we know this expression definitely has!
3122
3123       if Compile_Time_Known_Value (N) then
3124          Lo := Expr_Value (N);
3125          Hi := Lo;
3126          return;
3127       end if;
3128
3129       --  Return if already in the cache
3130
3131       Cindex := Cache_Index (N mod Cache_Size);
3132
3133       if Determine_Range_Cache_N (Cindex) = N
3134            and then
3135          Determine_Range_Cache_V (Cindex) = Assume_Valid
3136       then
3137          Lo := Determine_Range_Cache_Lo (Cindex);
3138          Hi := Determine_Range_Cache_Hi (Cindex);
3139          return;
3140       end if;
3141
3142       --  Otherwise, start by finding the bounds of the type of the expression,
3143       --  the value cannot be outside this range (if it is, then we have an
3144       --  overflow situation, which is a separate check, we are talking here
3145       --  only about the expression value).
3146
3147       --  First a check, never try to find the bounds of a generic type, since
3148       --  these bounds are always junk values, and it is only valid to look at
3149       --  the bounds in an instance.
3150
3151       if Is_Generic_Type (Typ) then
3152          OK := False;
3153          return;
3154       end if;
3155
3156       --  First step, change to use base type unless we know the value is valid
3157
3158       if (Is_Entity_Name (N) and then Is_Known_Valid (Entity (N)))
3159         or else Assume_No_Invalid_Values
3160         or else Assume_Valid
3161       then
3162          null;
3163       else
3164          Typ := Underlying_Type (Base_Type (Typ));
3165       end if;
3166
3167       --  We use the actual bound unless it is dynamic, in which case use the
3168       --  corresponding base type bound if possible. If we can't get a bound
3169       --  then we figure we can't determine the range (a peculiar case, that
3170       --  perhaps cannot happen, but there is no point in bombing in this
3171       --  optimization circuit.
3172
3173       --  First the low bound
3174
3175       Bound := Type_Low_Bound (Typ);
3176
3177       if Compile_Time_Known_Value (Bound) then
3178          Lo := Expr_Value (Bound);
3179
3180       elsif Compile_Time_Known_Value (Type_Low_Bound (Base_Type (Typ))) then
3181          Lo := Expr_Value (Type_Low_Bound (Base_Type (Typ)));
3182
3183       else
3184          OK := False;
3185          return;
3186       end if;
3187
3188       --  Now the high bound
3189
3190       Bound := Type_High_Bound (Typ);
3191
3192       --  We need the high bound of the base type later on, and this should
3193       --  always be compile time known. Again, it is not clear that this
3194       --  can ever be false, but no point in bombing.
3195
3196       if Compile_Time_Known_Value (Type_High_Bound (Base_Type (Typ))) then
3197          Hbound := Expr_Value (Type_High_Bound (Base_Type (Typ)));
3198          Hi := Hbound;
3199
3200       else
3201          OK := False;
3202          return;
3203       end if;
3204
3205       --  If we have a static subtype, then that may have a tighter bound so
3206       --  use the upper bound of the subtype instead in this case.
3207
3208       if Compile_Time_Known_Value (Bound) then
3209          Hi := Expr_Value (Bound);
3210       end if;
3211
3212       --  We may be able to refine this value in certain situations. If any
3213       --  refinement is possible, then Lor and Hir are set to possibly tighter
3214       --  bounds, and OK1 is set to True.
3215
3216       case Nkind (N) is
3217
3218          --  For unary plus, result is limited by range of operand
3219
3220          when N_Op_Plus =>
3221             Determine_Range
3222               (Right_Opnd (N), OK1, Lor, Hir, Assume_Valid);
3223
3224          --  For unary minus, determine range of operand, and negate it
3225
3226          when N_Op_Minus =>
3227             Determine_Range
3228               (Right_Opnd (N), OK1, Lo_Right, Hi_Right, Assume_Valid);
3229
3230             if OK1 then
3231                Lor := -Hi_Right;
3232                Hir := -Lo_Right;
3233             end if;
3234
3235          --  For binary addition, get range of each operand and do the
3236          --  addition to get the result range.
3237
3238          when N_Op_Add =>
3239             if OK_Operands then
3240                Lor := Lo_Left + Lo_Right;
3241                Hir := Hi_Left + Hi_Right;
3242             end if;
3243
3244          --  Division is tricky. The only case we consider is where the right
3245          --  operand is a positive constant, and in this case we simply divide
3246          --  the bounds of the left operand
3247
3248          when N_Op_Divide =>
3249             if OK_Operands then
3250                if Lo_Right = Hi_Right
3251                  and then Lo_Right > 0
3252                then
3253                   Lor := Lo_Left / Lo_Right;
3254                   Hir := Hi_Left / Lo_Right;
3255
3256                else
3257                   OK1 := False;
3258                end if;
3259             end if;
3260
3261          --  For binary subtraction, get range of each operand and do the worst
3262          --  case subtraction to get the result range.
3263
3264          when N_Op_Subtract =>
3265             if OK_Operands then
3266                Lor := Lo_Left - Hi_Right;
3267                Hir := Hi_Left - Lo_Right;
3268             end if;
3269
3270          --  For MOD, if right operand is a positive constant, then result must
3271          --  be in the allowable range of mod results.
3272
3273          when N_Op_Mod =>
3274             if OK_Operands then
3275                if Lo_Right = Hi_Right
3276                  and then Lo_Right /= 0
3277                then
3278                   if Lo_Right > 0 then
3279                      Lor := Uint_0;
3280                      Hir := Lo_Right - 1;
3281
3282                   else -- Lo_Right < 0
3283                      Lor := Lo_Right + 1;
3284                      Hir := Uint_0;
3285                   end if;
3286
3287                else
3288                   OK1 := False;
3289                end if;
3290             end if;
3291
3292          --  For REM, if right operand is a positive constant, then result must
3293          --  be in the allowable range of mod results.
3294
3295          when N_Op_Rem =>
3296             if OK_Operands then
3297                if Lo_Right = Hi_Right
3298                  and then Lo_Right /= 0
3299                then
3300                   declare
3301                      Dval : constant Uint := (abs Lo_Right) - 1;
3302
3303                   begin
3304                      --  The sign of the result depends on the sign of the
3305                      --  dividend (but not on the sign of the divisor, hence
3306                      --  the abs operation above).
3307
3308                      if Lo_Left < 0 then
3309                         Lor := -Dval;
3310                      else
3311                         Lor := Uint_0;
3312                      end if;
3313
3314                      if Hi_Left < 0 then
3315                         Hir := Uint_0;
3316                      else
3317                         Hir := Dval;
3318                      end if;
3319                   end;
3320
3321                else
3322                   OK1 := False;
3323                end if;
3324             end if;
3325
3326          --  Attribute reference cases
3327
3328          when N_Attribute_Reference =>
3329             case Attribute_Name (N) is
3330
3331                --  For Pos/Val attributes, we can refine the range using the
3332                --  possible range of values of the attribute expression.
3333
3334                when Name_Pos | Name_Val =>
3335                   Determine_Range
3336                     (First (Expressions (N)), OK1, Lor, Hir, Assume_Valid);
3337
3338                --  For Length attribute, use the bounds of the corresponding
3339                --  index type to refine the range.
3340
3341                when Name_Length =>
3342                   declare
3343                      Atyp : Entity_Id := Etype (Prefix (N));
3344                      Inum : Nat;
3345                      Indx : Node_Id;
3346
3347                      LL, LU : Uint;
3348                      UL, UU : Uint;
3349
3350                   begin
3351                      if Is_Access_Type (Atyp) then
3352                         Atyp := Designated_Type (Atyp);
3353                      end if;
3354
3355                      --  For string literal, we know exact value
3356
3357                      if Ekind (Atyp) = E_String_Literal_Subtype then
3358                         OK := True;
3359                         Lo := String_Literal_Length (Atyp);
3360                         Hi := String_Literal_Length (Atyp);
3361                         return;
3362                      end if;
3363
3364                      --  Otherwise check for expression given
3365
3366                      if No (Expressions (N)) then
3367                         Inum := 1;
3368                      else
3369                         Inum :=
3370                           UI_To_Int (Expr_Value (First (Expressions (N))));
3371                      end if;
3372
3373                      Indx := First_Index (Atyp);
3374                      for J in 2 .. Inum loop
3375                         Indx := Next_Index (Indx);
3376                      end loop;
3377
3378                      Determine_Range
3379                        (Type_Low_Bound (Etype (Indx)), OK1, LL, LU,
3380                         Assume_Valid);
3381
3382                      if OK1 then
3383                         Determine_Range
3384                           (Type_High_Bound (Etype (Indx)), OK1, UL, UU,
3385                            Assume_Valid);
3386
3387                         if OK1 then
3388
3389                            --  The maximum value for Length is the biggest
3390                            --  possible gap between the values of the bounds.
3391                            --  But of course, this value cannot be negative.
3392
3393                            Hir := UI_Max (Uint_0, UU - LL + 1);
3394
3395                            --  For constrained arrays, the minimum value for
3396                            --  Length is taken from the actual value of the
3397                            --  bounds, since the index will be exactly of
3398                            --  this subtype.
3399
3400                            if Is_Constrained (Atyp) then
3401                               Lor := UI_Max (Uint_0, UL - LU + 1);
3402
3403                            --  For an unconstrained array, the minimum value
3404                            --  for length is always zero.
3405
3406                            else
3407                               Lor := Uint_0;
3408                            end if;
3409                         end if;
3410                      end if;
3411                   end;
3412
3413                --  No special handling for other attributes
3414                --  Probably more opportunities exist here ???
3415
3416                when others =>
3417                   OK1 := False;
3418
3419             end case;
3420
3421          --  For type conversion from one discrete type to another, we can
3422          --  refine the range using the converted value.
3423
3424          when N_Type_Conversion =>
3425             Determine_Range (Expression (N), OK1, Lor, Hir, Assume_Valid);
3426
3427          --  Nothing special to do for all other expression kinds
3428
3429          when others =>
3430             OK1 := False;
3431             Lor := No_Uint;
3432             Hir := No_Uint;
3433       end case;
3434
3435       --  At this stage, if OK1 is true, then we know that the actual
3436       --  result of the computed expression is in the range Lor .. Hir.
3437       --  We can use this to restrict the possible range of results.
3438
3439       if OK1 then
3440
3441          --  If the refined value of the low bound is greater than the
3442          --  type high bound, then reset it to the more restrictive
3443          --  value. However, we do NOT do this for the case of a modular
3444          --  type where the possible upper bound on the value is above the
3445          --  base type high bound, because that means the result could wrap.
3446
3447          if Lor > Lo
3448            and then not (Is_Modular_Integer_Type (Typ)
3449                            and then Hir > Hbound)
3450          then
3451             Lo := Lor;
3452          end if;
3453
3454          --  Similarly, if the refined value of the high bound is less
3455          --  than the value so far, then reset it to the more restrictive
3456          --  value. Again, we do not do this if the refined low bound is
3457          --  negative for a modular type, since this would wrap.
3458
3459          if Hir < Hi
3460            and then not (Is_Modular_Integer_Type (Typ)
3461                           and then Lor < Uint_0)
3462          then
3463             Hi := Hir;
3464          end if;
3465       end if;
3466
3467       --  Set cache entry for future call and we are all done
3468
3469       Determine_Range_Cache_N  (Cindex) := N;
3470       Determine_Range_Cache_V  (Cindex) := Assume_Valid;
3471       Determine_Range_Cache_Lo (Cindex) := Lo;
3472       Determine_Range_Cache_Hi (Cindex) := Hi;
3473       return;
3474
3475    --  If any exception occurs, it means that we have some bug in the compiler
3476    --  possibly triggered by a previous error, or by some unforseen peculiar
3477    --  occurrence. However, this is only an optimization attempt, so there is
3478    --  really no point in crashing the compiler. Instead we just decide, too
3479    --  bad, we can't figure out a range in this case after all.
3480
3481    exception
3482       when others =>
3483
3484          --  Debug flag K disables this behavior (useful for debugging)
3485
3486          if Debug_Flag_K then
3487             raise;
3488          else
3489             OK := False;
3490             Lo := No_Uint;
3491             Hi := No_Uint;
3492             return;
3493          end if;
3494    end Determine_Range;
3495
3496    ------------------------------------
3497    -- Discriminant_Checks_Suppressed --
3498    ------------------------------------
3499
3500    function Discriminant_Checks_Suppressed (E : Entity_Id) return Boolean is
3501    begin
3502       if Present (E) then
3503          if Is_Unchecked_Union (E) then
3504             return True;
3505          elsif Checks_May_Be_Suppressed (E) then
3506             return Is_Check_Suppressed (E, Discriminant_Check);
3507          end if;
3508       end if;
3509
3510       return Scope_Suppress (Discriminant_Check);
3511    end Discriminant_Checks_Suppressed;
3512
3513    --------------------------------
3514    -- Division_Checks_Suppressed --
3515    --------------------------------
3516
3517    function Division_Checks_Suppressed (E : Entity_Id) return Boolean is
3518    begin
3519       if Present (E) and then Checks_May_Be_Suppressed (E) then
3520          return Is_Check_Suppressed (E, Division_Check);
3521       else
3522          return Scope_Suppress (Division_Check);
3523       end if;
3524    end Division_Checks_Suppressed;
3525
3526    -----------------------------------
3527    -- Elaboration_Checks_Suppressed --
3528    -----------------------------------
3529
3530    function Elaboration_Checks_Suppressed (E : Entity_Id) return Boolean is
3531    begin
3532       --  The complication in this routine is that if we are in the dynamic
3533       --  model of elaboration, we also check All_Checks, since All_Checks
3534       --  does not set Elaboration_Check explicitly.
3535
3536       if Present (E) then
3537          if Kill_Elaboration_Checks (E) then
3538             return True;
3539
3540          elsif Checks_May_Be_Suppressed (E) then
3541             if Is_Check_Suppressed (E, Elaboration_Check) then
3542                return True;
3543             elsif Dynamic_Elaboration_Checks then
3544                return Is_Check_Suppressed (E, All_Checks);
3545             else
3546                return False;
3547             end if;
3548          end if;
3549       end if;
3550
3551       if Scope_Suppress (Elaboration_Check) then
3552          return True;
3553       elsif Dynamic_Elaboration_Checks then
3554          return Scope_Suppress (All_Checks);
3555       else
3556          return False;
3557       end if;
3558    end Elaboration_Checks_Suppressed;
3559
3560    ---------------------------
3561    -- Enable_Overflow_Check --
3562    ---------------------------
3563
3564    procedure Enable_Overflow_Check (N : Node_Id) is
3565       Typ : constant Entity_Id  := Base_Type (Etype (N));
3566       Chk : Nat;
3567       OK  : Boolean;
3568       Ent : Entity_Id;
3569       Ofs : Uint;
3570       Lo  : Uint;
3571       Hi  : Uint;
3572
3573    begin
3574       if Debug_Flag_CC then
3575          w ("Enable_Overflow_Check for node ", Int (N));
3576          Write_Str ("  Source location = ");
3577          wl (Sloc (N));
3578          pg (Union_Id (N));
3579       end if;
3580
3581       --  No check if overflow checks suppressed for type of node
3582
3583       if Present (Etype (N))
3584         and then Overflow_Checks_Suppressed (Etype (N))
3585       then
3586          return;
3587
3588       --  Nothing to do for unsigned integer types, which do not overflow
3589
3590       elsif Is_Modular_Integer_Type (Typ) then
3591          return;
3592
3593       --  Nothing to do if the range of the result is known OK. We skip this
3594       --  for conversions, since the caller already did the check, and in any
3595       --  case the condition for deleting the check for a type conversion is
3596       --  different.
3597
3598       elsif Nkind (N) /= N_Type_Conversion then
3599          Determine_Range (N, OK, Lo, Hi, Assume_Valid => True);
3600
3601          --  Note in the test below that we assume that the range is not OK
3602          --  if a bound of the range is equal to that of the type. That's not
3603          --  quite accurate but we do this for the following reasons:
3604
3605          --   a) The way that Determine_Range works, it will typically report
3606          --      the bounds of the value as being equal to the bounds of the
3607          --      type, because it either can't tell anything more precise, or
3608          --      does not think it is worth the effort to be more precise.
3609
3610          --   b) It is very unusual to have a situation in which this would
3611          --      generate an unnecessary overflow check (an example would be
3612          --      a subtype with a range 0 .. Integer'Last - 1 to which the
3613          --      literal value one is added).
3614
3615          --   c) The alternative is a lot of special casing in this routine
3616          --      which would partially duplicate Determine_Range processing.
3617
3618          if OK
3619            and then Lo > Expr_Value (Type_Low_Bound  (Typ))
3620            and then Hi < Expr_Value (Type_High_Bound (Typ))
3621          then
3622             if Debug_Flag_CC then
3623                w ("No overflow check required");
3624             end if;
3625
3626             return;
3627          end if;
3628       end if;
3629
3630       --  If not in optimizing mode, set flag and we are done. We are also done
3631       --  (and just set the flag) if the type is not a discrete type, since it
3632       --  is not worth the effort to eliminate checks for other than discrete
3633       --  types. In addition, we take this same path if we have stored the
3634       --  maximum number of checks possible already (a very unlikely situation,
3635       --  but we do not want to blow up!)
3636
3637       if Optimization_Level = 0
3638         or else not Is_Discrete_Type (Etype (N))
3639         or else Num_Saved_Checks = Saved_Checks'Last
3640       then
3641          Activate_Overflow_Check (N);
3642
3643          if Debug_Flag_CC then
3644             w ("Optimization off");
3645          end if;
3646
3647          return;
3648       end if;
3649
3650       --  Otherwise evaluate and check the expression
3651
3652       Find_Check
3653         (Expr        => N,
3654          Check_Type  => 'O',
3655          Target_Type => Empty,
3656          Entry_OK    => OK,
3657          Check_Num   => Chk,
3658          Ent         => Ent,
3659          Ofs         => Ofs);
3660
3661       if Debug_Flag_CC then
3662          w ("Called Find_Check");
3663          w ("  OK = ", OK);
3664
3665          if OK then
3666             w ("  Check_Num = ", Chk);
3667             w ("  Ent       = ", Int (Ent));
3668             Write_Str ("  Ofs       = ");
3669             pid (Ofs);
3670          end if;
3671       end if;
3672
3673       --  If check is not of form to optimize, then set flag and we are done
3674
3675       if not OK then
3676          Activate_Overflow_Check (N);
3677          return;
3678       end if;
3679
3680       --  If check is already performed, then return without setting flag
3681
3682       if Chk /= 0 then
3683          if Debug_Flag_CC then
3684             w ("Check suppressed!");
3685          end if;
3686
3687          return;
3688       end if;
3689
3690       --  Here we will make a new entry for the new check
3691
3692       Activate_Overflow_Check (N);
3693       Num_Saved_Checks := Num_Saved_Checks + 1;
3694       Saved_Checks (Num_Saved_Checks) :=
3695         (Killed      => False,
3696          Entity      => Ent,
3697          Offset      => Ofs,
3698          Check_Type  => 'O',
3699          Target_Type => Empty);
3700
3701       if Debug_Flag_CC then
3702          w ("Make new entry, check number = ", Num_Saved_Checks);
3703          w ("  Entity = ", Int (Ent));
3704          Write_Str ("  Offset = ");
3705          pid (Ofs);
3706          w ("  Check_Type = O");
3707          w ("  Target_Type = Empty");
3708       end if;
3709
3710    --  If we get an exception, then something went wrong, probably because of
3711    --  an error in the structure of the tree due to an incorrect program. Or it
3712    --  may be a bug in the optimization circuit. In either case the safest
3713    --  thing is simply to set the check flag unconditionally.
3714
3715    exception
3716       when others =>
3717          Activate_Overflow_Check (N);
3718
3719          if Debug_Flag_CC then
3720             w ("  exception occurred, overflow flag set");
3721          end if;
3722
3723          return;
3724    end Enable_Overflow_Check;
3725
3726    ------------------------
3727    -- Enable_Range_Check --
3728    ------------------------
3729
3730    procedure Enable_Range_Check (N : Node_Id) is
3731       Chk  : Nat;
3732       OK   : Boolean;
3733       Ent  : Entity_Id;
3734       Ofs  : Uint;
3735       Ttyp : Entity_Id;
3736       P    : Node_Id;
3737
3738    begin
3739       --  Return if unchecked type conversion with range check killed. In this
3740       --  case we never set the flag (that's what Kill_Range_Check is about!)
3741
3742       if Nkind (N) = N_Unchecked_Type_Conversion
3743         and then Kill_Range_Check (N)
3744       then
3745          return;
3746       end if;
3747
3748       --  Check for various cases where we should suppress the range check
3749
3750       --  No check if range checks suppressed for type of node
3751
3752       if Present (Etype (N))
3753         and then Range_Checks_Suppressed (Etype (N))
3754       then
3755          return;
3756
3757       --  No check if node is an entity name, and range checks are suppressed
3758       --  for this entity, or for the type of this entity.
3759
3760       elsif Is_Entity_Name (N)
3761         and then (Range_Checks_Suppressed (Entity (N))
3762                     or else Range_Checks_Suppressed (Etype (Entity (N))))
3763       then
3764          return;
3765
3766       --  No checks if index of array, and index checks are suppressed for
3767       --  the array object or the type of the array.
3768
3769       elsif Nkind (Parent (N)) = N_Indexed_Component then
3770          declare
3771             Pref : constant Node_Id := Prefix (Parent (N));
3772          begin
3773             if Is_Entity_Name (Pref)
3774               and then Index_Checks_Suppressed (Entity (Pref))
3775             then
3776                return;
3777             elsif Index_Checks_Suppressed (Etype (Pref)) then
3778                return;
3779             end if;
3780          end;
3781       end if;
3782
3783       --  Debug trace output
3784
3785       if Debug_Flag_CC then
3786          w ("Enable_Range_Check for node ", Int (N));
3787          Write_Str ("  Source location = ");
3788          wl (Sloc (N));
3789          pg (Union_Id (N));
3790       end if;
3791
3792       --  If not in optimizing mode, set flag and we are done. We are also done
3793       --  (and just set the flag) if the type is not a discrete type, since it
3794       --  is not worth the effort to eliminate checks for other than discrete
3795       --  types. In addition, we take this same path if we have stored the
3796       --  maximum number of checks possible already (a very unlikely situation,
3797       --  but we do not want to blow up!)
3798
3799       if Optimization_Level = 0
3800         or else No (Etype (N))
3801         or else not Is_Discrete_Type (Etype (N))
3802         or else Num_Saved_Checks = Saved_Checks'Last
3803       then
3804          Activate_Range_Check (N);
3805
3806          if Debug_Flag_CC then
3807             w ("Optimization off");
3808          end if;
3809
3810          return;
3811       end if;
3812
3813       --  Otherwise find out the target type
3814
3815       P := Parent (N);
3816
3817       --  For assignment, use left side subtype
3818
3819       if Nkind (P) = N_Assignment_Statement
3820         and then Expression (P) = N
3821       then
3822          Ttyp := Etype (Name (P));
3823
3824       --  For indexed component, use subscript subtype
3825
3826       elsif Nkind (P) = N_Indexed_Component then
3827          declare
3828             Atyp : Entity_Id;
3829             Indx : Node_Id;
3830             Subs : Node_Id;
3831
3832          begin
3833             Atyp := Etype (Prefix (P));
3834
3835             if Is_Access_Type (Atyp) then
3836                Atyp := Designated_Type (Atyp);
3837
3838                --  If the prefix is an access to an unconstrained array,
3839                --  perform check unconditionally: it depends on the bounds of
3840                --  an object and we cannot currently recognize whether the test
3841                --  may be redundant.
3842
3843                if not Is_Constrained (Atyp) then
3844                   Activate_Range_Check (N);
3845                   return;
3846                end if;
3847
3848             --  Ditto if the prefix is an explicit dereference whose designated
3849             --  type is unconstrained.
3850
3851             elsif Nkind (Prefix (P)) = N_Explicit_Dereference
3852               and then not Is_Constrained (Atyp)
3853             then
3854                Activate_Range_Check (N);
3855                return;
3856             end if;
3857
3858             Indx := First_Index (Atyp);
3859             Subs := First (Expressions (P));
3860             loop
3861                if Subs = N then
3862                   Ttyp := Etype (Indx);
3863                   exit;
3864                end if;
3865
3866                Next_Index (Indx);
3867                Next (Subs);
3868             end loop;
3869          end;
3870
3871       --  For now, ignore all other cases, they are not so interesting
3872
3873       else
3874          if Debug_Flag_CC then
3875             w ("  target type not found, flag set");
3876          end if;
3877
3878          Activate_Range_Check (N);
3879          return;
3880       end if;
3881
3882       --  Evaluate and check the expression
3883
3884       Find_Check
3885         (Expr        => N,
3886          Check_Type  => 'R',
3887          Target_Type => Ttyp,
3888          Entry_OK    => OK,
3889          Check_Num   => Chk,
3890          Ent         => Ent,
3891          Ofs         => Ofs);
3892
3893       if Debug_Flag_CC then
3894          w ("Called Find_Check");
3895          w ("Target_Typ = ", Int (Ttyp));
3896          w ("  OK = ", OK);
3897
3898          if OK then
3899             w ("  Check_Num = ", Chk);
3900             w ("  Ent       = ", Int (Ent));
3901             Write_Str ("  Ofs       = ");
3902             pid (Ofs);
3903          end if;
3904       end if;
3905
3906       --  If check is not of form to optimize, then set flag and we are done
3907
3908       if not OK then
3909          if Debug_Flag_CC then
3910             w ("  expression not of optimizable type, flag set");
3911          end if;
3912
3913          Activate_Range_Check (N);
3914          return;
3915       end if;
3916
3917       --  If check is already performed, then return without setting flag
3918
3919       if Chk /= 0 then
3920          if Debug_Flag_CC then
3921             w ("Check suppressed!");
3922          end if;
3923
3924          return;
3925       end if;
3926
3927       --  Here we will make a new entry for the new check
3928
3929       Activate_Range_Check (N);
3930       Num_Saved_Checks := Num_Saved_Checks + 1;
3931       Saved_Checks (Num_Saved_Checks) :=
3932         (Killed      => False,
3933          Entity      => Ent,
3934          Offset      => Ofs,
3935          Check_Type  => 'R',
3936          Target_Type => Ttyp);
3937
3938       if Debug_Flag_CC then
3939          w ("Make new entry, check number = ", Num_Saved_Checks);
3940          w ("  Entity = ", Int (Ent));
3941          Write_Str ("  Offset = ");
3942          pid (Ofs);
3943          w ("  Check_Type = R");
3944          w ("  Target_Type = ", Int (Ttyp));
3945          pg (Union_Id (Ttyp));
3946       end if;
3947
3948    --  If we get an exception, then something went wrong, probably because of
3949    --  an error in the structure of the tree due to an incorrect program. Or
3950    --  it may be a bug in the optimization circuit. In either case the safest
3951    --  thing is simply to set the check flag unconditionally.
3952
3953    exception
3954       when others =>
3955          Activate_Range_Check (N);
3956
3957          if Debug_Flag_CC then
3958             w ("  exception occurred, range flag set");
3959          end if;
3960
3961          return;
3962    end Enable_Range_Check;
3963
3964    ------------------
3965    -- Ensure_Valid --
3966    ------------------
3967
3968    procedure Ensure_Valid (Expr : Node_Id; Holes_OK : Boolean := False) is
3969       Typ : constant Entity_Id  := Etype (Expr);
3970
3971    begin
3972       --  Ignore call if we are not doing any validity checking
3973
3974       if not Validity_Checks_On then
3975          return;
3976
3977       --  Ignore call if range or validity checks suppressed on entity or type
3978
3979       elsif Range_Or_Validity_Checks_Suppressed (Expr) then
3980          return;
3981
3982       --  No check required if expression is from the expander, we assume the
3983       --  expander will generate whatever checks are needed. Note that this is
3984       --  not just an optimization, it avoids infinite recursions!
3985
3986       --  Unchecked conversions must be checked, unless they are initialized
3987       --  scalar values, as in a component assignment in an init proc.
3988
3989       --  In addition, we force a check if Force_Validity_Checks is set
3990
3991       elsif not Comes_From_Source (Expr)
3992         and then not Force_Validity_Checks
3993         and then (Nkind (Expr) /= N_Unchecked_Type_Conversion
3994                     or else Kill_Range_Check (Expr))
3995       then
3996          return;
3997
3998       --  No check required if expression is known to have valid value
3999
4000       elsif Expr_Known_Valid (Expr) then
4001          return;
4002
4003       --  Ignore case of enumeration with holes where the flag is set not to
4004       --  worry about holes, since no special validity check is needed
4005
4006       elsif Is_Enumeration_Type (Typ)
4007         and then Has_Non_Standard_Rep (Typ)
4008         and then Holes_OK
4009       then
4010          return;
4011
4012       --  No check required on the left-hand side of an assignment
4013
4014       elsif Nkind (Parent (Expr)) = N_Assignment_Statement
4015         and then Expr = Name (Parent (Expr))
4016       then
4017          return;
4018
4019       --  No check on a univeral real constant. The context will eventually
4020       --  convert it to a machine number for some target type, or report an
4021       --  illegality.
4022
4023       elsif Nkind (Expr) = N_Real_Literal
4024         and then Etype (Expr) = Universal_Real
4025       then
4026          return;
4027
4028       --  If the expression denotes a component of a packed boolean arrray,
4029       --  no possible check applies. We ignore the old ACATS chestnuts that
4030       --  involve Boolean range True..True.
4031
4032       --  Note: validity checks are generated for expressions that yield a
4033       --  scalar type, when it is possible to create a value that is outside of
4034       --  the type. If this is a one-bit boolean no such value exists. This is
4035       --  an optimization, and it also prevents compiler blowing up during the
4036       --  elaboration of improperly expanded packed array references.
4037
4038       elsif Nkind (Expr) = N_Indexed_Component
4039         and then Is_Bit_Packed_Array (Etype (Prefix (Expr)))
4040         and then Root_Type (Etype (Expr)) = Standard_Boolean
4041       then
4042          return;
4043
4044       --  An annoying special case. If this is an out parameter of a scalar
4045       --  type, then the value is not going to be accessed, therefore it is
4046       --  inappropriate to do any validity check at the call site.
4047
4048       else
4049          --  Only need to worry about scalar types
4050
4051          if Is_Scalar_Type (Typ) then
4052             declare
4053                P : Node_Id;
4054                N : Node_Id;
4055                E : Entity_Id;
4056                F : Entity_Id;
4057                A : Node_Id;
4058                L : List_Id;
4059
4060             begin
4061                --  Find actual argument (which may be a parameter association)
4062                --  and the parent of the actual argument (the call statement)
4063
4064                N := Expr;
4065                P := Parent (Expr);
4066
4067                if Nkind (P) = N_Parameter_Association then
4068                   N := P;
4069                   P := Parent (N);
4070                end if;
4071
4072                --  Only need to worry if we are argument of a procedure call
4073                --  since functions don't have out parameters. If this is an
4074                --  indirect or dispatching call, get signature from the
4075                --  subprogram type.
4076
4077                if Nkind (P) = N_Procedure_Call_Statement then
4078                   L := Parameter_Associations (P);
4079
4080                   if Is_Entity_Name (Name (P)) then
4081                      E := Entity (Name (P));
4082                   else
4083                      pragma Assert (Nkind (Name (P)) = N_Explicit_Dereference);
4084                      E := Etype (Name (P));
4085                   end if;
4086
4087                   --  Only need to worry if there are indeed actuals, and if
4088                   --  this could be a procedure call, otherwise we cannot get a
4089                   --  match (either we are not an argument, or the mode of the
4090                   --  formal is not OUT). This test also filters out the
4091                   --  generic case.
4092
4093                   if Is_Non_Empty_List (L)
4094                     and then Is_Subprogram (E)
4095                   then
4096                      --  This is the loop through parameters, looking for an
4097                      --  OUT parameter for which we are the argument.
4098
4099                      F := First_Formal (E);
4100                      A := First (L);
4101                      while Present (F) loop
4102                         if Ekind (F) = E_Out_Parameter and then A = N then
4103                            return;
4104                         end if;
4105
4106                         Next_Formal (F);
4107                         Next (A);
4108                      end loop;
4109                   end if;
4110                end if;
4111             end;
4112          end if;
4113       end if;
4114
4115       --  If we fall through, a validity check is required
4116
4117       Insert_Valid_Check (Expr);
4118
4119       if Is_Entity_Name (Expr)
4120         and then Safe_To_Capture_Value (Expr, Entity (Expr))
4121       then
4122          Set_Is_Known_Valid (Entity (Expr));
4123       end if;
4124    end Ensure_Valid;
4125
4126    ----------------------
4127    -- Expr_Known_Valid --
4128    ----------------------
4129
4130    function Expr_Known_Valid (Expr : Node_Id) return Boolean is
4131       Typ : constant Entity_Id := Etype (Expr);
4132
4133    begin
4134       --  Non-scalar types are always considered valid, since they never give
4135       --  rise to the issues of erroneous or bounded error behavior that are
4136       --  the concern. In formal reference manual terms the notion of validity
4137       --  only applies to scalar types. Note that even when packed arrays are
4138       --  represented using modular types, they are still arrays semantically,
4139       --  so they are also always valid (in particular, the unused bits can be
4140       --  random rubbish without affecting the validity of the array value).
4141
4142       if not Is_Scalar_Type (Typ) or else Is_Packed_Array_Type (Typ) then
4143          return True;
4144
4145       --  If no validity checking, then everything is considered valid
4146
4147       elsif not Validity_Checks_On then
4148          return True;
4149
4150       --  Floating-point types are considered valid unless floating-point
4151       --  validity checks have been specifically turned on.
4152
4153       elsif Is_Floating_Point_Type (Typ)
4154         and then not Validity_Check_Floating_Point
4155       then
4156          return True;
4157
4158       --  If the expression is the value of an object that is known to be
4159       --  valid, then clearly the expression value itself is valid.
4160
4161       elsif Is_Entity_Name (Expr)
4162         and then Is_Known_Valid (Entity (Expr))
4163       then
4164          return True;
4165
4166       --  References to discriminants are always considered valid. The value
4167       --  of a discriminant gets checked when the object is built. Within the
4168       --  record, we consider it valid, and it is important to do so, since
4169       --  otherwise we can try to generate bogus validity checks which
4170       --  reference discriminants out of scope. Discriminants of concurrent
4171       --  types are excluded for the same reason.
4172
4173       elsif Is_Entity_Name (Expr)
4174         and then Denotes_Discriminant (Expr, Check_Concurrent => True)
4175       then
4176          return True;
4177
4178       --  If the type is one for which all values are known valid, then we are
4179       --  sure that the value is valid except in the slightly odd case where
4180       --  the expression is a reference to a variable whose size has been
4181       --  explicitly set to a value greater than the object size.
4182
4183       elsif Is_Known_Valid (Typ) then
4184          if Is_Entity_Name (Expr)
4185            and then Ekind (Entity (Expr)) = E_Variable
4186            and then Esize (Entity (Expr)) > Esize (Typ)
4187          then
4188             return False;
4189          else
4190             return True;
4191          end if;
4192
4193       --  Integer and character literals always have valid values, where
4194       --  appropriate these will be range checked in any case.
4195
4196       elsif Nkind (Expr) = N_Integer_Literal
4197               or else
4198             Nkind (Expr) = N_Character_Literal
4199       then
4200          return True;
4201
4202       --  If we have a type conversion or a qualification of a known valid
4203       --  value, then the result will always be valid.
4204
4205       elsif Nkind (Expr) = N_Type_Conversion
4206               or else
4207             Nkind (Expr) = N_Qualified_Expression
4208       then
4209          return Expr_Known_Valid (Expression (Expr));
4210
4211       --  The result of any operator is always considered valid, since we
4212       --  assume the necessary checks are done by the operator. For operators
4213       --  on floating-point operations, we must also check when the operation
4214       --  is the right-hand side of an assignment, or is an actual in a call.
4215
4216       elsif Nkind (Expr) in N_Op then
4217          if Is_Floating_Point_Type (Typ)
4218             and then Validity_Check_Floating_Point
4219             and then
4220               (Nkind (Parent (Expr)) = N_Assignment_Statement
4221                 or else Nkind (Parent (Expr)) = N_Function_Call
4222                 or else Nkind (Parent (Expr)) = N_Parameter_Association)
4223          then
4224             return False;
4225          else
4226             return True;
4227          end if;
4228
4229       --  The result of a membership test is always valid, since it is true or
4230       --  false, there are no other possibilities.
4231
4232       elsif Nkind (Expr) in N_Membership_Test then
4233          return True;
4234
4235       --  For all other cases, we do not know the expression is valid
4236
4237       else
4238          return False;
4239       end if;
4240    end Expr_Known_Valid;
4241
4242    ----------------
4243    -- Find_Check --
4244    ----------------
4245
4246    procedure Find_Check
4247      (Expr        : Node_Id;
4248       Check_Type  : Character;
4249       Target_Type : Entity_Id;
4250       Entry_OK    : out Boolean;
4251       Check_Num   : out Nat;
4252       Ent         : out Entity_Id;
4253       Ofs         : out Uint)
4254    is
4255       function Within_Range_Of
4256         (Target_Type : Entity_Id;
4257          Check_Type  : Entity_Id) return Boolean;
4258       --  Given a requirement for checking a range against Target_Type, and
4259       --  and a range Check_Type against which a check has already been made,
4260       --  determines if the check against check type is sufficient to ensure
4261       --  that no check against Target_Type is required.
4262
4263       ---------------------
4264       -- Within_Range_Of --
4265       ---------------------
4266
4267       function Within_Range_Of
4268         (Target_Type : Entity_Id;
4269          Check_Type  : Entity_Id) return Boolean
4270       is
4271       begin
4272          if Target_Type = Check_Type then
4273             return True;
4274
4275          else
4276             declare
4277                Tlo : constant Node_Id := Type_Low_Bound  (Target_Type);
4278                Thi : constant Node_Id := Type_High_Bound (Target_Type);
4279                Clo : constant Node_Id := Type_Low_Bound  (Check_Type);
4280                Chi : constant Node_Id := Type_High_Bound (Check_Type);
4281
4282             begin
4283                if (Tlo = Clo
4284                      or else (Compile_Time_Known_Value (Tlo)
4285                                 and then
4286                               Compile_Time_Known_Value (Clo)
4287                                 and then
4288                               Expr_Value (Clo) >= Expr_Value (Tlo)))
4289                  and then
4290                   (Thi = Chi
4291                      or else (Compile_Time_Known_Value (Thi)
4292                                 and then
4293                               Compile_Time_Known_Value (Chi)
4294                                 and then
4295                               Expr_Value (Chi) <= Expr_Value (Clo)))
4296                then
4297                   return True;
4298                else
4299                   return False;
4300                end if;
4301             end;
4302          end if;
4303       end Within_Range_Of;
4304
4305    --  Start of processing for Find_Check
4306
4307    begin
4308       --  Establish default, to avoid warnings from GCC
4309
4310       Check_Num := 0;
4311
4312       --  Case of expression is simple entity reference
4313
4314       if Is_Entity_Name (Expr) then
4315          Ent := Entity (Expr);
4316          Ofs := Uint_0;
4317
4318       --  Case of expression is entity + known constant
4319
4320       elsif Nkind (Expr) = N_Op_Add
4321         and then Compile_Time_Known_Value (Right_Opnd (Expr))
4322         and then Is_Entity_Name (Left_Opnd (Expr))
4323       then
4324          Ent := Entity (Left_Opnd (Expr));
4325          Ofs := Expr_Value (Right_Opnd (Expr));
4326
4327       --  Case of expression is entity - known constant
4328
4329       elsif Nkind (Expr) = N_Op_Subtract
4330         and then Compile_Time_Known_Value (Right_Opnd (Expr))
4331         and then Is_Entity_Name (Left_Opnd (Expr))
4332       then
4333          Ent := Entity (Left_Opnd (Expr));
4334          Ofs := UI_Negate (Expr_Value (Right_Opnd (Expr)));
4335
4336       --  Any other expression is not of the right form
4337
4338       else
4339          Ent := Empty;
4340          Ofs := Uint_0;
4341          Entry_OK := False;
4342          return;
4343       end if;
4344
4345       --  Come here with expression of appropriate form, check if entity is an
4346       --  appropriate one for our purposes.
4347
4348       if (Ekind (Ent) = E_Variable
4349             or else Is_Constant_Object (Ent))
4350         and then not Is_Library_Level_Entity (Ent)
4351       then
4352          Entry_OK := True;
4353       else
4354          Entry_OK := False;
4355          return;
4356       end if;
4357
4358       --  See if there is matching check already
4359
4360       for J in reverse 1 .. Num_Saved_Checks loop
4361          declare
4362             SC : Saved_Check renames Saved_Checks (J);
4363
4364          begin
4365             if SC.Killed = False
4366               and then SC.Entity = Ent
4367               and then SC.Offset = Ofs
4368               and then SC.Check_Type = Check_Type
4369               and then Within_Range_Of (Target_Type, SC.Target_Type)
4370             then
4371                Check_Num := J;
4372                return;
4373             end if;
4374          end;
4375       end loop;
4376
4377       --  If we fall through entry was not found
4378
4379       Check_Num := 0;
4380       return;
4381    end Find_Check;
4382
4383    ---------------------------------
4384    -- Generate_Discriminant_Check --
4385    ---------------------------------
4386
4387    --  Note: the code for this procedure is derived from the
4388    --  Emit_Discriminant_Check Routine in trans.c.
4389
4390    procedure Generate_Discriminant_Check (N : Node_Id) is
4391       Loc  : constant Source_Ptr := Sloc (N);
4392       Pref : constant Node_Id    := Prefix (N);
4393       Sel  : constant Node_Id    := Selector_Name (N);
4394
4395       Orig_Comp : constant Entity_Id :=
4396                     Original_Record_Component (Entity (Sel));
4397       --  The original component to be checked
4398
4399       Discr_Fct : constant Entity_Id :=
4400                     Discriminant_Checking_Func (Orig_Comp);
4401       --  The discriminant checking function
4402
4403       Discr : Entity_Id;
4404       --  One discriminant to be checked in the type
4405
4406       Real_Discr : Entity_Id;
4407       --  Actual discriminant in the call
4408
4409       Pref_Type : Entity_Id;
4410       --  Type of relevant prefix (ignoring private/access stuff)
4411
4412       Args : List_Id;
4413       --  List of arguments for function call
4414
4415       Formal : Entity_Id;
4416       --  Keep track of the formal corresponding to the actual we build for
4417       --  each discriminant, in order to be able to perform the necessary type
4418       --  conversions.
4419
4420       Scomp : Node_Id;
4421       --  Selected component reference for checking function argument
4422
4423    begin
4424       Pref_Type := Etype (Pref);
4425
4426       --  Force evaluation of the prefix, so that it does not get evaluated
4427       --  twice (once for the check, once for the actual reference). Such a
4428       --  double evaluation is always a potential source of inefficiency,
4429       --  and is functionally incorrect in the volatile case, or when the
4430       --  prefix may have side-effects. An entity or a component of an
4431       --  entity requires no evaluation.
4432
4433       if Is_Entity_Name (Pref) then
4434          if Treat_As_Volatile (Entity (Pref)) then
4435             Force_Evaluation (Pref, Name_Req => True);
4436          end if;
4437
4438       elsif Treat_As_Volatile (Etype (Pref)) then
4439             Force_Evaluation (Pref, Name_Req => True);
4440
4441       elsif Nkind (Pref) = N_Selected_Component
4442         and then Is_Entity_Name (Prefix (Pref))
4443       then
4444          null;
4445
4446       else
4447          Force_Evaluation (Pref, Name_Req => True);
4448       end if;
4449
4450       --  For a tagged type, use the scope of the original component to
4451       --  obtain the type, because ???
4452
4453       if Is_Tagged_Type (Scope (Orig_Comp)) then
4454          Pref_Type := Scope (Orig_Comp);
4455
4456       --  For an untagged derived type, use the discriminants of the parent
4457       --  which have been renamed in the derivation, possibly by a one-to-many
4458       --  discriminant constraint. For non-tagged type, initially get the Etype
4459       --  of the prefix
4460
4461       else
4462          if Is_Derived_Type (Pref_Type)
4463            and then Number_Discriminants (Pref_Type) /=
4464                     Number_Discriminants (Etype (Base_Type (Pref_Type)))
4465          then
4466             Pref_Type := Etype (Base_Type (Pref_Type));
4467          end if;
4468       end if;
4469
4470       --  We definitely should have a checking function, This routine should
4471       --  not be called if no discriminant checking function is present.
4472
4473       pragma Assert (Present (Discr_Fct));
4474
4475       --  Create the list of the actual parameters for the call. This list
4476       --  is the list of the discriminant fields of the record expression to
4477       --  be discriminant checked.
4478
4479       Args   := New_List;
4480       Formal := First_Formal (Discr_Fct);
4481       Discr  := First_Discriminant (Pref_Type);
4482       while Present (Discr) loop
4483
4484          --  If we have a corresponding discriminant field, and a parent
4485          --  subtype is present, then we want to use the corresponding
4486          --  discriminant since this is the one with the useful value.
4487
4488          if Present (Corresponding_Discriminant (Discr))
4489            and then Ekind (Pref_Type) = E_Record_Type
4490            and then Present (Parent_Subtype (Pref_Type))
4491          then
4492             Real_Discr := Corresponding_Discriminant (Discr);
4493          else
4494             Real_Discr := Discr;
4495          end if;
4496
4497          --  Construct the reference to the discriminant
4498
4499          Scomp :=
4500            Make_Selected_Component (Loc,
4501              Prefix =>
4502                Unchecked_Convert_To (Pref_Type,
4503                  Duplicate_Subexpr (Pref)),
4504              Selector_Name => New_Occurrence_Of (Real_Discr, Loc));
4505
4506          --  Manually analyze and resolve this selected component. We really
4507          --  want it just as it appears above, and do not want the expander
4508          --  playing discriminal games etc with this reference. Then we append
4509          --  the argument to the list we are gathering.
4510
4511          Set_Etype (Scomp, Etype (Real_Discr));
4512          Set_Analyzed (Scomp, True);
4513          Append_To (Args, Convert_To (Etype (Formal), Scomp));
4514
4515          Next_Formal_With_Extras (Formal);
4516          Next_Discriminant (Discr);
4517       end loop;
4518
4519       --  Now build and insert the call
4520
4521       Insert_Action (N,
4522         Make_Raise_Constraint_Error (Loc,
4523           Condition =>
4524             Make_Function_Call (Loc,
4525               Name => New_Occurrence_Of (Discr_Fct, Loc),
4526               Parameter_Associations => Args),
4527           Reason => CE_Discriminant_Check_Failed));
4528    end Generate_Discriminant_Check;
4529
4530    ---------------------------
4531    -- Generate_Index_Checks --
4532    ---------------------------
4533
4534    procedure Generate_Index_Checks (N : Node_Id) is
4535       Loc : constant Source_Ptr := Sloc (N);
4536       A   : constant Node_Id    := Prefix (N);
4537       Sub : Node_Id;
4538       Ind : Nat;
4539       Num : List_Id;
4540
4541    begin
4542       --  Ignore call if index checks suppressed for array object or type
4543
4544       if (Is_Entity_Name (A) and then Index_Checks_Suppressed (Entity (A)))
4545         or else Index_Checks_Suppressed (Etype (A))
4546       then
4547          return;
4548       end if;
4549
4550       --  Generate the checks
4551
4552       Sub := First (Expressions (N));
4553       Ind := 1;
4554       while Present (Sub) loop
4555          if Do_Range_Check (Sub) then
4556             Set_Do_Range_Check (Sub, False);
4557
4558             --  Force evaluation except for the case of a simple name of a
4559             --  non-volatile entity.
4560
4561             if not Is_Entity_Name (Sub)
4562               or else Treat_As_Volatile (Entity (Sub))
4563             then
4564                Force_Evaluation (Sub);
4565             end if;
4566
4567             --  Generate a raise of constraint error with the appropriate
4568             --  reason and a condition of the form:
4569
4570             --    Base_Type(Sub) not in array'range (subscript)
4571
4572             --  Note that the reason we generate the conversion to the base
4573             --  type here is that we definitely want the range check to take
4574             --  place, even if it looks like the subtype is OK. Optimization
4575             --  considerations that allow us to omit the check have already
4576             --  been taken into account in the setting of the Do_Range_Check
4577             --  flag earlier on.
4578
4579             if Ind = 1 then
4580                Num := No_List;
4581             else
4582                Num :=  New_List (Make_Integer_Literal (Loc, Ind));
4583             end if;
4584
4585             Insert_Action (N,
4586               Make_Raise_Constraint_Error (Loc,
4587                 Condition =>
4588                   Make_Not_In (Loc,
4589                     Left_Opnd  =>
4590                       Convert_To (Base_Type (Etype (Sub)),
4591                         Duplicate_Subexpr_Move_Checks (Sub)),
4592                     Right_Opnd =>
4593                       Make_Attribute_Reference (Loc,
4594                         Prefix         =>
4595                           Duplicate_Subexpr_Move_Checks (A, Name_Req => True),
4596                         Attribute_Name => Name_Range,
4597                         Expressions    => Num)),
4598                 Reason => CE_Index_Check_Failed));
4599          end if;
4600
4601          Ind := Ind + 1;
4602          Next (Sub);
4603       end loop;
4604    end Generate_Index_Checks;
4605
4606    --------------------------
4607    -- Generate_Range_Check --
4608    --------------------------
4609
4610    procedure Generate_Range_Check
4611      (N           : Node_Id;
4612       Target_Type : Entity_Id;
4613       Reason      : RT_Exception_Code)
4614    is
4615       Loc              : constant Source_Ptr := Sloc (N);
4616       Source_Type      : constant Entity_Id  := Etype (N);
4617       Source_Base_Type : constant Entity_Id  := Base_Type (Source_Type);
4618       Target_Base_Type : constant Entity_Id  := Base_Type (Target_Type);
4619
4620    begin
4621       --  First special case, if the source type is already within the range
4622       --  of the target type, then no check is needed (probably we should have
4623       --  stopped Do_Range_Check from being set in the first place, but better
4624       --  late than later in preventing junk code!
4625
4626       --  We do NOT apply this if the source node is a literal, since in this
4627       --  case the literal has already been labeled as having the subtype of
4628       --  the target.
4629
4630       if In_Subrange_Of (Source_Type, Target_Type)
4631         and then not
4632           (Nkind (N) = N_Integer_Literal
4633              or else
4634            Nkind (N) = N_Real_Literal
4635              or else
4636            Nkind (N) = N_Character_Literal
4637              or else
4638            (Is_Entity_Name (N)
4639               and then Ekind (Entity (N)) = E_Enumeration_Literal))
4640       then
4641          return;
4642       end if;
4643
4644       --  We need a check, so force evaluation of the node, so that it does
4645       --  not get evaluated twice (once for the check, once for the actual
4646       --  reference). Such a double evaluation is always a potential source
4647       --  of inefficiency, and is functionally incorrect in the volatile case.
4648
4649       if not Is_Entity_Name (N)
4650         or else Treat_As_Volatile (Entity (N))
4651       then
4652          Force_Evaluation (N);
4653       end if;
4654
4655       --  The easiest case is when Source_Base_Type and Target_Base_Type are
4656       --  the same since in this case we can simply do a direct check of the
4657       --  value of N against the bounds of Target_Type.
4658
4659       --    [constraint_error when N not in Target_Type]
4660
4661       --  Note: this is by far the most common case, for example all cases of
4662       --  checks on the RHS of assignments are in this category, but not all
4663       --  cases are like this. Notably conversions can involve two types.
4664
4665       if Source_Base_Type = Target_Base_Type then
4666          Insert_Action (N,
4667            Make_Raise_Constraint_Error (Loc,
4668              Condition =>
4669                Make_Not_In (Loc,
4670                  Left_Opnd  => Duplicate_Subexpr (N),
4671                  Right_Opnd => New_Occurrence_Of (Target_Type, Loc)),
4672              Reason => Reason));
4673
4674       --  Next test for the case where the target type is within the bounds
4675       --  of the base type of the source type, since in this case we can
4676       --  simply convert these bounds to the base type of T to do the test.
4677
4678       --    [constraint_error when N not in
4679       --       Source_Base_Type (Target_Type'First)
4680       --         ..
4681       --       Source_Base_Type(Target_Type'Last))]
4682
4683       --  The conversions will always work and need no check
4684
4685       elsif In_Subrange_Of (Target_Type, Source_Base_Type) then
4686          Insert_Action (N,
4687            Make_Raise_Constraint_Error (Loc,
4688              Condition =>
4689                Make_Not_In (Loc,
4690                  Left_Opnd  => Duplicate_Subexpr (N),
4691
4692                  Right_Opnd =>
4693                    Make_Range (Loc,
4694                      Low_Bound =>
4695                        Convert_To (Source_Base_Type,
4696                          Make_Attribute_Reference (Loc,
4697                            Prefix =>
4698                              New_Occurrence_Of (Target_Type, Loc),
4699                            Attribute_Name => Name_First)),
4700
4701                      High_Bound =>
4702                        Convert_To (Source_Base_Type,
4703                          Make_Attribute_Reference (Loc,
4704                            Prefix =>
4705                              New_Occurrence_Of (Target_Type, Loc),
4706                            Attribute_Name => Name_Last)))),
4707              Reason => Reason));
4708
4709       --  Note that at this stage we now that the Target_Base_Type is not in
4710       --  the range of the Source_Base_Type (since even the Target_Type itself
4711       --  is not in this range). It could still be the case that Source_Type is
4712       --  in range of the target base type since we have not checked that case.
4713
4714       --  If that is the case, we can freely convert the source to the target,
4715       --  and then test the target result against the bounds.
4716
4717       elsif In_Subrange_Of (Source_Type, Target_Base_Type) then
4718
4719          --  We make a temporary to hold the value of the converted value
4720          --  (converted to the base type), and then we will do the test against
4721          --  this temporary.
4722
4723          --     Tnn : constant Target_Base_Type := Target_Base_Type (N);
4724          --     [constraint_error when Tnn not in Target_Type]
4725
4726          --  Then the conversion itself is replaced by an occurrence of Tnn
4727
4728          declare
4729             Tnn : constant Entity_Id :=
4730                     Make_Defining_Identifier (Loc,
4731                       Chars => New_Internal_Name ('T'));
4732
4733          begin
4734             Insert_Actions (N, New_List (
4735               Make_Object_Declaration (Loc,
4736                 Defining_Identifier => Tnn,
4737                 Object_Definition   =>
4738                   New_Occurrence_Of (Target_Base_Type, Loc),
4739                 Constant_Present    => True,
4740                 Expression          =>
4741                   Make_Type_Conversion (Loc,
4742                     Subtype_Mark => New_Occurrence_Of (Target_Base_Type, Loc),
4743                     Expression   => Duplicate_Subexpr (N))),
4744
4745               Make_Raise_Constraint_Error (Loc,
4746                 Condition =>
4747                   Make_Not_In (Loc,
4748                     Left_Opnd  => New_Occurrence_Of (Tnn, Loc),
4749                     Right_Opnd => New_Occurrence_Of (Target_Type, Loc)),
4750
4751                 Reason => Reason)));
4752
4753             Rewrite (N, New_Occurrence_Of (Tnn, Loc));
4754
4755             --  Set the type of N, because the declaration for Tnn might not
4756             --  be analyzed yet, as is the case if N appears within a record
4757             --  declaration, as a discriminant constraint or expression.
4758
4759             Set_Etype (N, Target_Base_Type);
4760          end;
4761
4762       --  At this stage, we know that we have two scalar types, which are
4763       --  directly convertible, and where neither scalar type has a base
4764       --  range that is in the range of the other scalar type.
4765
4766       --  The only way this can happen is with a signed and unsigned type.
4767       --  So test for these two cases:
4768
4769       else
4770          --  Case of the source is unsigned and the target is signed
4771
4772          if Is_Unsigned_Type (Source_Base_Type)
4773            and then not Is_Unsigned_Type (Target_Base_Type)
4774          then
4775             --  If the source is unsigned and the target is signed, then we
4776             --  know that the source is not shorter than the target (otherwise
4777             --  the source base type would be in the target base type range).
4778
4779             --  In other words, the unsigned type is either the same size as
4780             --  the target, or it is larger. It cannot be smaller.
4781
4782             pragma Assert
4783               (Esize (Source_Base_Type) >= Esize (Target_Base_Type));
4784
4785             --  We only need to check the low bound if the low bound of the
4786             --  target type is non-negative. If the low bound of the target
4787             --  type is negative, then we know that we will fit fine.
4788
4789             --  If the high bound of the target type is negative, then we
4790             --  know we have a constraint error, since we can't possibly
4791             --  have a negative source.
4792
4793             --  With these two checks out of the way, we can do the check
4794             --  using the source type safely
4795
4796             --  This is definitely the most annoying case!
4797
4798             --    [constraint_error
4799             --       when (Target_Type'First >= 0
4800             --               and then
4801             --                 N < Source_Base_Type (Target_Type'First))
4802             --         or else Target_Type'Last < 0
4803             --         or else N > Source_Base_Type (Target_Type'Last)];
4804
4805             --  We turn off all checks since we know that the conversions
4806             --  will work fine, given the guards for negative values.
4807
4808             Insert_Action (N,
4809               Make_Raise_Constraint_Error (Loc,
4810                 Condition =>
4811                   Make_Or_Else (Loc,
4812                     Make_Or_Else (Loc,
4813                       Left_Opnd =>
4814                         Make_And_Then (Loc,
4815                           Left_Opnd => Make_Op_Ge (Loc,
4816                             Left_Opnd =>
4817                               Make_Attribute_Reference (Loc,
4818                                 Prefix =>
4819                                   New_Occurrence_Of (Target_Type, Loc),
4820                                 Attribute_Name => Name_First),
4821                             Right_Opnd => Make_Integer_Literal (Loc, Uint_0)),
4822
4823                           Right_Opnd =>
4824                             Make_Op_Lt (Loc,
4825                               Left_Opnd => Duplicate_Subexpr (N),
4826                               Right_Opnd =>
4827                                 Convert_To (Source_Base_Type,
4828                                   Make_Attribute_Reference (Loc,
4829                                     Prefix =>
4830                                       New_Occurrence_Of (Target_Type, Loc),
4831                                     Attribute_Name => Name_First)))),
4832
4833                       Right_Opnd =>
4834                         Make_Op_Lt (Loc,
4835                           Left_Opnd =>
4836                             Make_Attribute_Reference (Loc,
4837                               Prefix => New_Occurrence_Of (Target_Type, Loc),
4838                               Attribute_Name => Name_Last),
4839                             Right_Opnd => Make_Integer_Literal (Loc, Uint_0))),
4840
4841                     Right_Opnd =>
4842                       Make_Op_Gt (Loc,
4843                         Left_Opnd => Duplicate_Subexpr (N),
4844                         Right_Opnd =>
4845                           Convert_To (Source_Base_Type,
4846                             Make_Attribute_Reference (Loc,
4847                               Prefix => New_Occurrence_Of (Target_Type, Loc),
4848                               Attribute_Name => Name_Last)))),
4849
4850                 Reason => Reason),
4851               Suppress  => All_Checks);
4852
4853          --  Only remaining possibility is that the source is signed and
4854          --  the target is unsigned.
4855
4856          else
4857             pragma Assert (not Is_Unsigned_Type (Source_Base_Type)
4858                              and then Is_Unsigned_Type (Target_Base_Type));
4859
4860             --  If the source is signed and the target is unsigned, then we
4861             --  know that the target is not shorter than the source (otherwise
4862             --  the target base type would be in the source base type range).
4863
4864             --  In other words, the unsigned type is either the same size as
4865             --  the target, or it is larger. It cannot be smaller.
4866
4867             --  Clearly we have an error if the source value is negative since
4868             --  no unsigned type can have negative values. If the source type
4869             --  is non-negative, then the check can be done using the target
4870             --  type.
4871
4872             --    Tnn : constant Target_Base_Type (N) := Target_Type;
4873
4874             --    [constraint_error
4875             --       when N < 0 or else Tnn not in Target_Type];
4876
4877             --  We turn off all checks for the conversion of N to the target
4878             --  base type, since we generate the explicit check to ensure that
4879             --  the value is non-negative
4880
4881             declare
4882                Tnn : constant Entity_Id :=
4883                        Make_Defining_Identifier (Loc,
4884                          Chars => New_Internal_Name ('T'));
4885
4886             begin
4887                Insert_Actions (N, New_List (
4888                  Make_Object_Declaration (Loc,
4889                    Defining_Identifier => Tnn,
4890                    Object_Definition   =>
4891                      New_Occurrence_Of (Target_Base_Type, Loc),
4892                    Constant_Present    => True,
4893                    Expression          =>
4894                      Make_Type_Conversion (Loc,
4895                        Subtype_Mark =>
4896                          New_Occurrence_Of (Target_Base_Type, Loc),
4897                        Expression   => Duplicate_Subexpr (N))),
4898
4899                  Make_Raise_Constraint_Error (Loc,
4900                    Condition =>
4901                      Make_Or_Else (Loc,
4902                        Left_Opnd =>
4903                          Make_Op_Lt (Loc,
4904                            Left_Opnd  => Duplicate_Subexpr (N),
4905                            Right_Opnd => Make_Integer_Literal (Loc, Uint_0)),
4906
4907                        Right_Opnd =>
4908                          Make_Not_In (Loc,
4909                            Left_Opnd  => New_Occurrence_Of (Tnn, Loc),
4910                            Right_Opnd =>
4911                              New_Occurrence_Of (Target_Type, Loc))),
4912
4913                    Reason => Reason)),
4914                  Suppress => All_Checks);
4915
4916                --  Set the Etype explicitly, because Insert_Actions may have
4917                --  placed the declaration in the freeze list for an enclosing
4918                --  construct, and thus it is not analyzed yet.
4919
4920                Set_Etype (Tnn, Target_Base_Type);
4921                Rewrite (N, New_Occurrence_Of (Tnn, Loc));
4922             end;
4923          end if;
4924       end if;
4925    end Generate_Range_Check;
4926
4927    ------------------
4928    -- Get_Check_Id --
4929    ------------------
4930
4931    function Get_Check_Id (N : Name_Id) return Check_Id is
4932    begin
4933       --  For standard check name, we can do a direct computation
4934
4935       if N in First_Check_Name .. Last_Check_Name then
4936          return Check_Id (N - (First_Check_Name - 1));
4937
4938       --  For non-standard names added by pragma Check_Name, search table
4939
4940       else
4941          for J in All_Checks + 1 .. Check_Names.Last loop
4942             if Check_Names.Table (J) = N then
4943                return J;
4944             end if;
4945          end loop;
4946       end if;
4947
4948       --  No matching name found
4949
4950       return No_Check_Id;
4951    end Get_Check_Id;
4952
4953    ---------------------
4954    -- Get_Discriminal --
4955    ---------------------
4956
4957    function Get_Discriminal (E : Entity_Id; Bound : Node_Id) return Node_Id is
4958       Loc : constant Source_Ptr := Sloc (E);
4959       D   : Entity_Id;
4960       Sc  : Entity_Id;
4961
4962    begin
4963       --  The bound can be a bona fide parameter of a protected operation,
4964       --  rather than a prival encoded as an in-parameter.
4965
4966       if No (Discriminal_Link (Entity (Bound))) then
4967          return Bound;
4968       end if;
4969
4970       --  Climb the scope stack looking for an enclosing protected type. If
4971       --  we run out of scopes, return the bound itself.
4972
4973       Sc := Scope (E);
4974       while Present (Sc) loop
4975          if Sc = Standard_Standard then
4976             return Bound;
4977
4978          elsif Ekind (Sc) = E_Protected_Type then
4979             exit;
4980          end if;
4981
4982          Sc := Scope (Sc);
4983       end loop;
4984
4985       D := First_Discriminant (Sc);
4986       while Present (D) loop
4987          if Chars (D) = Chars (Bound) then
4988             return New_Occurrence_Of (Discriminal (D), Loc);
4989          end if;
4990
4991          Next_Discriminant (D);
4992       end loop;
4993
4994       return Bound;
4995    end Get_Discriminal;
4996
4997    ----------------------
4998    -- Get_Range_Checks --
4999    ----------------------
5000
5001    function Get_Range_Checks
5002      (Ck_Node    : Node_Id;
5003       Target_Typ : Entity_Id;
5004       Source_Typ : Entity_Id := Empty;
5005       Warn_Node  : Node_Id   := Empty) return Check_Result
5006    is
5007    begin
5008       return Selected_Range_Checks
5009         (Ck_Node, Target_Typ, Source_Typ, Warn_Node);
5010    end Get_Range_Checks;
5011
5012    ------------------
5013    -- Guard_Access --
5014    ------------------
5015
5016    function Guard_Access
5017      (Cond    : Node_Id;
5018       Loc     : Source_Ptr;
5019       Ck_Node : Node_Id) return Node_Id
5020    is
5021    begin
5022       if Nkind (Cond) = N_Or_Else then
5023          Set_Paren_Count (Cond, 1);
5024       end if;
5025
5026       if Nkind (Ck_Node) = N_Allocator then
5027          return Cond;
5028       else
5029          return
5030            Make_And_Then (Loc,
5031              Left_Opnd =>
5032                Make_Op_Ne (Loc,
5033                  Left_Opnd  => Duplicate_Subexpr_No_Checks (Ck_Node),
5034                  Right_Opnd => Make_Null (Loc)),
5035              Right_Opnd => Cond);
5036       end if;
5037    end Guard_Access;
5038
5039    -----------------------------
5040    -- Index_Checks_Suppressed --
5041    -----------------------------
5042
5043    function Index_Checks_Suppressed (E : Entity_Id) return Boolean is
5044    begin
5045       if Present (E) and then Checks_May_Be_Suppressed (E) then
5046          return Is_Check_Suppressed (E, Index_Check);
5047       else
5048          return Scope_Suppress (Index_Check);
5049       end if;
5050    end Index_Checks_Suppressed;
5051
5052    ----------------
5053    -- Initialize --
5054    ----------------
5055
5056    procedure Initialize is
5057    begin
5058       for J in Determine_Range_Cache_N'Range loop
5059          Determine_Range_Cache_N (J) := Empty;
5060       end loop;
5061
5062       Check_Names.Init;
5063
5064       for J in Int range 1 .. All_Checks loop
5065          Check_Names.Append (Name_Id (Int (First_Check_Name) + J - 1));
5066       end loop;
5067    end Initialize;
5068
5069    -------------------------
5070    -- Insert_Range_Checks --
5071    -------------------------
5072
5073    procedure Insert_Range_Checks
5074      (Checks       : Check_Result;
5075       Node         : Node_Id;
5076       Suppress_Typ : Entity_Id;
5077       Static_Sloc  : Source_Ptr := No_Location;
5078       Flag_Node    : Node_Id    := Empty;
5079       Do_Before    : Boolean    := False)
5080    is
5081       Internal_Flag_Node   : Node_Id    := Flag_Node;
5082       Internal_Static_Sloc : Source_Ptr := Static_Sloc;
5083
5084       Check_Node : Node_Id;
5085       Checks_On  : constant Boolean :=
5086                      (not Index_Checks_Suppressed (Suppress_Typ))
5087                        or else
5088                      (not Range_Checks_Suppressed (Suppress_Typ));
5089
5090    begin
5091       --  For now we just return if Checks_On is false, however this should be
5092       --  enhanced to check for an always True value in the condition and to
5093       --  generate a compilation warning???
5094
5095       if not Expander_Active or else not Checks_On then
5096          return;
5097       end if;
5098
5099       if Static_Sloc = No_Location then
5100          Internal_Static_Sloc := Sloc (Node);
5101       end if;
5102
5103       if No (Flag_Node) then
5104          Internal_Flag_Node := Node;
5105       end if;
5106
5107       for J in 1 .. 2 loop
5108          exit when No (Checks (J));
5109
5110          if Nkind (Checks (J)) = N_Raise_Constraint_Error
5111            and then Present (Condition (Checks (J)))
5112          then
5113             if not Has_Dynamic_Range_Check (Internal_Flag_Node) then
5114                Check_Node := Checks (J);
5115                Mark_Rewrite_Insertion (Check_Node);
5116
5117                if Do_Before then
5118                   Insert_Before_And_Analyze (Node, Check_Node);
5119                else
5120                   Insert_After_And_Analyze (Node, Check_Node);
5121                end if;
5122
5123                Set_Has_Dynamic_Range_Check (Internal_Flag_Node);
5124             end if;
5125
5126          else
5127             Check_Node :=
5128               Make_Raise_Constraint_Error (Internal_Static_Sloc,
5129                 Reason => CE_Range_Check_Failed);
5130             Mark_Rewrite_Insertion (Check_Node);
5131
5132             if Do_Before then
5133                Insert_Before_And_Analyze (Node, Check_Node);
5134             else
5135                Insert_After_And_Analyze (Node, Check_Node);
5136             end if;
5137          end if;
5138       end loop;
5139    end Insert_Range_Checks;
5140
5141    ------------------------
5142    -- Insert_Valid_Check --
5143    ------------------------
5144
5145    procedure Insert_Valid_Check (Expr : Node_Id) is
5146       Loc : constant Source_Ptr := Sloc (Expr);
5147       Exp : Node_Id;
5148
5149    begin
5150       --  Do not insert if checks off, or if not checking validity or
5151       --  if expression is known to be valid
5152
5153       if not Validity_Checks_On
5154         or else Range_Or_Validity_Checks_Suppressed (Expr)
5155         or else Expr_Known_Valid (Expr)
5156       then
5157          return;
5158       end if;
5159
5160       --  If we have a checked conversion, then validity check applies to
5161       --  the expression inside the conversion, not the result, since if
5162       --  the expression inside is valid, then so is the conversion result.
5163
5164       Exp := Expr;
5165       while Nkind (Exp) = N_Type_Conversion loop
5166          Exp := Expression (Exp);
5167       end loop;
5168
5169       --  We are about to insert the validity check for Exp. We save and
5170       --  reset the Do_Range_Check flag over this validity check, and then
5171       --  put it back for the final original reference (Exp may be rewritten).
5172
5173       declare
5174          DRC : constant Boolean := Do_Range_Check (Exp);
5175
5176       begin
5177          Set_Do_Range_Check (Exp, False);
5178
5179          --  Force evaluation to avoid multiple reads for atomic/volatile
5180
5181          if Is_Entity_Name (Exp)
5182            and then Is_Volatile (Entity (Exp))
5183          then
5184             Force_Evaluation (Exp, Name_Req => True);
5185          end if;
5186
5187          --  Insert the validity check. Note that we do this with validity
5188          --  checks turned off, to avoid recursion, we do not want validity
5189          --  checks on the validity checking code itself!
5190
5191          Insert_Action
5192            (Expr,
5193             Make_Raise_Constraint_Error (Loc,
5194               Condition =>
5195                 Make_Op_Not (Loc,
5196                   Right_Opnd =>
5197                     Make_Attribute_Reference (Loc,
5198                       Prefix =>
5199                         Duplicate_Subexpr_No_Checks (Exp, Name_Req => True),
5200                       Attribute_Name => Name_Valid)),
5201               Reason => CE_Invalid_Data),
5202             Suppress => Validity_Check);
5203
5204          --  If the expression is a a reference to an element of a bit-packed
5205          --  array, then it is rewritten as a renaming declaration. If the
5206          --  expression is an actual in a call, it has not been expanded,
5207          --  waiting for the proper point at which to do it. The same happens
5208          --  with renamings, so that we have to force the expansion now. This
5209          --  non-local complication is due to code in exp_ch2,adb, exp_ch4.adb
5210          --  and exp_ch6.adb.
5211
5212          if Is_Entity_Name (Exp)
5213            and then Nkind (Parent (Entity (Exp))) =
5214                       N_Object_Renaming_Declaration
5215          then
5216             declare
5217                Old_Exp : constant Node_Id := Name (Parent (Entity (Exp)));
5218             begin
5219                if Nkind (Old_Exp) = N_Indexed_Component
5220                  and then Is_Bit_Packed_Array (Etype (Prefix (Old_Exp)))
5221                then
5222                   Expand_Packed_Element_Reference (Old_Exp);
5223                end if;
5224             end;
5225          end if;
5226
5227          --  Put back the Do_Range_Check flag on the resulting (possibly
5228          --  rewritten) expression.
5229
5230          --  Note: it might be thought that a validity check is not required
5231          --  when a range check is present, but that's not the case, because
5232          --  the back end is allowed to assume for the range check that the
5233          --  operand is within its declared range (an assumption that validity
5234          --  checking is all about NOT assuming!)
5235
5236          --  Note: no need to worry about Possible_Local_Raise here, it will
5237          --  already have been called if original node has Do_Range_Check set.
5238
5239          Set_Do_Range_Check (Exp, DRC);
5240       end;
5241    end Insert_Valid_Check;
5242
5243    ----------------------------------
5244    -- Install_Null_Excluding_Check --
5245    ----------------------------------
5246
5247    procedure Install_Null_Excluding_Check (N : Node_Id) is
5248       Loc : constant Source_Ptr := Sloc (N);
5249       Typ : constant Entity_Id  := Etype (N);
5250
5251       function In_Declarative_Region_Of_Subprogram_Body return Boolean;
5252       --  Determine whether node N, a reference to an *in* parameter, is
5253       --  inside the declarative region of the current subprogram body.
5254
5255       procedure Mark_Non_Null;
5256       --  After installation of check, if the node in question is an entity
5257       --  name, then mark this entity as non-null if possible.
5258
5259       ----------------------------------------------
5260       -- In_Declarative_Region_Of_Subprogram_Body --
5261       ----------------------------------------------
5262
5263       function In_Declarative_Region_Of_Subprogram_Body return Boolean is
5264          E     : constant Entity_Id := Entity (N);
5265          S     : constant Entity_Id := Current_Scope;
5266          S_Par : Node_Id;
5267
5268       begin
5269          pragma Assert (Ekind (E) = E_In_Parameter);
5270
5271          --  Two initial context checks. We must be inside a subprogram body
5272          --  with declarations and reference must not appear in nested scopes.
5273
5274          if (Ekind (S) /= E_Function
5275              and then Ekind (S) /= E_Procedure)
5276            or else Scope (E) /= S
5277          then
5278             return False;
5279          end if;
5280
5281          S_Par := Parent (Parent (S));
5282
5283          if Nkind (S_Par) /= N_Subprogram_Body
5284            or else No (Declarations (S_Par))
5285          then
5286             return False;
5287          end if;
5288
5289          declare
5290             N_Decl : Node_Id;
5291             P      : Node_Id;
5292
5293          begin
5294             --  Retrieve the declaration node of N (if any). Note that N
5295             --  may be a part of a complex initialization expression.
5296
5297             P := Parent (N);
5298             N_Decl := Empty;
5299             while Present (P) loop
5300
5301                --  While traversing the parent chain, we find that N
5302                --  belongs to a statement, thus it may never appear in
5303                --  a declarative region.
5304
5305                if Nkind (P) in N_Statement_Other_Than_Procedure_Call
5306                  or else Nkind (P) = N_Procedure_Call_Statement
5307                then
5308                   return False;
5309                end if;
5310
5311                if Nkind (P) in N_Declaration
5312                  and then Nkind (P) not in N_Subprogram_Specification
5313                then
5314                   N_Decl := P;
5315                   exit;
5316                end if;
5317
5318                P := Parent (P);
5319             end loop;
5320
5321             if No (N_Decl) then
5322                return False;
5323             end if;
5324
5325             return List_Containing (N_Decl) = Declarations (S_Par);
5326          end;
5327       end In_Declarative_Region_Of_Subprogram_Body;
5328
5329       -------------------
5330       -- Mark_Non_Null --
5331       -------------------
5332
5333       procedure Mark_Non_Null is
5334       begin
5335          --  Only case of interest is if node N is an entity name
5336
5337          if Is_Entity_Name (N) then
5338
5339             --  For sure, we want to clear an indication that this is known to
5340             --  be null, since if we get past this check, it definitely is not!
5341
5342             Set_Is_Known_Null (Entity (N), False);
5343
5344             --  We can mark the entity as known to be non-null if either it is
5345             --  safe to capture the value, or in the case of an IN parameter,
5346             --  which is a constant, if the check we just installed is in the
5347             --  declarative region of the subprogram body. In this latter case,
5348             --  a check is decisive for the rest of the body, since we know we
5349             --  must complete all declarations before executing the body.
5350
5351             if Safe_To_Capture_Value (N, Entity (N))
5352               or else
5353                 (Ekind (Entity (N)) = E_In_Parameter
5354                    and then In_Declarative_Region_Of_Subprogram_Body)
5355             then
5356                Set_Is_Known_Non_Null (Entity (N));
5357             end if;
5358          end if;
5359       end Mark_Non_Null;
5360
5361    --  Start of processing for Install_Null_Excluding_Check
5362
5363    begin
5364       pragma Assert (Is_Access_Type (Typ));
5365
5366       --  No check inside a generic (why not???)
5367
5368       if Inside_A_Generic then
5369          return;
5370       end if;
5371
5372       --  No check needed if known to be non-null
5373
5374       if Known_Non_Null (N) then
5375          return;
5376       end if;
5377
5378       --  If known to be null, here is where we generate a compile time check
5379
5380       if Known_Null (N) then
5381
5382          --  Avoid generating warning message inside init procs
5383
5384          if not Inside_Init_Proc then
5385             Apply_Compile_Time_Constraint_Error
5386               (N,
5387                "null value not allowed here?",
5388                CE_Access_Check_Failed);
5389          else
5390             Insert_Action (N,
5391               Make_Raise_Constraint_Error (Loc,
5392                 Reason => CE_Access_Check_Failed));
5393          end if;
5394
5395          Mark_Non_Null;
5396          return;
5397       end if;
5398
5399       --  If entity is never assigned, for sure a warning is appropriate
5400
5401       if Is_Entity_Name (N) then
5402          Check_Unset_Reference (N);
5403       end if;
5404
5405       --  No check needed if checks are suppressed on the range. Note that we
5406       --  don't set Is_Known_Non_Null in this case (we could legitimately do
5407       --  so, since the program is erroneous, but we don't like to casually
5408       --  propagate such conclusions from erroneosity).
5409
5410       if Access_Checks_Suppressed (Typ) then
5411          return;
5412       end if;
5413
5414       --  No check needed for access to concurrent record types generated by
5415       --  the expander. This is not just an optimization (though it does indeed
5416       --  remove junk checks). It also avoids generation of junk warnings.
5417
5418       if Nkind (N) in N_Has_Chars
5419         and then Chars (N) = Name_uObject
5420         and then Is_Concurrent_Record_Type
5421                    (Directly_Designated_Type (Etype (N)))
5422       then
5423          return;
5424       end if;
5425
5426       --  Otherwise install access check
5427
5428       Insert_Action (N,
5429         Make_Raise_Constraint_Error (Loc,
5430           Condition =>
5431             Make_Op_Eq (Loc,
5432               Left_Opnd  => Duplicate_Subexpr_Move_Checks (N),
5433               Right_Opnd => Make_Null (Loc)),
5434           Reason => CE_Access_Check_Failed));
5435
5436       Mark_Non_Null;
5437    end Install_Null_Excluding_Check;
5438
5439    --------------------------
5440    -- Install_Static_Check --
5441    --------------------------
5442
5443    procedure Install_Static_Check (R_Cno : Node_Id; Loc : Source_Ptr) is
5444       Stat : constant Boolean   := Is_Static_Expression (R_Cno);
5445       Typ  : constant Entity_Id := Etype (R_Cno);
5446
5447    begin
5448       Rewrite (R_Cno,
5449         Make_Raise_Constraint_Error (Loc,
5450           Reason => CE_Range_Check_Failed));
5451       Set_Analyzed (R_Cno);
5452       Set_Etype (R_Cno, Typ);
5453       Set_Raises_Constraint_Error (R_Cno);
5454       Set_Is_Static_Expression (R_Cno, Stat);
5455    end Install_Static_Check;
5456
5457    ---------------------
5458    -- Kill_All_Checks --
5459    ---------------------
5460
5461    procedure Kill_All_Checks is
5462    begin
5463       if Debug_Flag_CC then
5464          w ("Kill_All_Checks");
5465       end if;
5466
5467       --  We reset the number of saved checks to zero, and also modify all
5468       --  stack entries for statement ranges to indicate that the number of
5469       --  checks at each level is now zero.
5470
5471       Num_Saved_Checks := 0;
5472
5473       --  Note: the Int'Min here avoids any possibility of J being out of
5474       --  range when called from e.g. Conditional_Statements_Begin.
5475
5476       for J in 1 .. Int'Min (Saved_Checks_TOS, Saved_Checks_Stack'Last) loop
5477          Saved_Checks_Stack (J) := 0;
5478       end loop;
5479    end Kill_All_Checks;
5480
5481    -----------------
5482    -- Kill_Checks --
5483    -----------------
5484
5485    procedure Kill_Checks (V : Entity_Id) is
5486    begin
5487       if Debug_Flag_CC then
5488          w ("Kill_Checks for entity", Int (V));
5489       end if;
5490
5491       for J in 1 .. Num_Saved_Checks loop
5492          if Saved_Checks (J).Entity = V then
5493             if Debug_Flag_CC then
5494                w ("   Checks killed for saved check ", J);
5495             end if;
5496
5497             Saved_Checks (J).Killed := True;
5498          end if;
5499       end loop;
5500    end Kill_Checks;
5501
5502    ------------------------------
5503    -- Length_Checks_Suppressed --
5504    ------------------------------
5505
5506    function Length_Checks_Suppressed (E : Entity_Id) return Boolean is
5507    begin
5508       if Present (E) and then Checks_May_Be_Suppressed (E) then
5509          return Is_Check_Suppressed (E, Length_Check);
5510       else
5511          return Scope_Suppress (Length_Check);
5512       end if;
5513    end Length_Checks_Suppressed;
5514
5515    --------------------------------
5516    -- Overflow_Checks_Suppressed --
5517    --------------------------------
5518
5519    function Overflow_Checks_Suppressed (E : Entity_Id) return Boolean is
5520    begin
5521       if Present (E) and then Checks_May_Be_Suppressed (E) then
5522          return Is_Check_Suppressed (E, Overflow_Check);
5523       else
5524          return Scope_Suppress (Overflow_Check);
5525       end if;
5526    end Overflow_Checks_Suppressed;
5527
5528    -----------------------------
5529    -- Range_Checks_Suppressed --
5530    -----------------------------
5531
5532    function Range_Checks_Suppressed (E : Entity_Id) return Boolean is
5533    begin
5534       if Present (E) then
5535
5536          --  Note: for now we always suppress range checks on Vax float types,
5537          --  since Gigi does not know how to generate these checks.
5538
5539          if Vax_Float (E) then
5540             return True;
5541          elsif Kill_Range_Checks (E) then
5542             return True;
5543          elsif Checks_May_Be_Suppressed (E) then
5544             return Is_Check_Suppressed (E, Range_Check);
5545          end if;
5546       end if;
5547
5548       return Scope_Suppress (Range_Check);
5549    end Range_Checks_Suppressed;
5550
5551    -----------------------------------------
5552    -- Range_Or_Validity_Checks_Suppressed --
5553    -----------------------------------------
5554
5555    --  Note: the coding would be simpler here if we simply made appropriate
5556    --  calls to Range/Validity_Checks_Suppressed, but that would result in
5557    --  duplicated checks which we prefer to avoid.
5558
5559    function Range_Or_Validity_Checks_Suppressed
5560      (Expr : Node_Id) return Boolean
5561    is
5562    begin
5563       --  Immediate return if scope checks suppressed for either check
5564
5565       if Scope_Suppress (Range_Check) or Scope_Suppress (Validity_Check) then
5566          return True;
5567       end if;
5568
5569       --  If no expression, that's odd, decide that checks are suppressed,
5570       --  since we don't want anyone trying to do checks in this case, which
5571       --  is most likely the result of some other error.
5572
5573       if No (Expr) then
5574          return True;
5575       end if;
5576
5577       --  Expression is present, so perform suppress checks on type
5578
5579       declare
5580          Typ : constant Entity_Id := Etype (Expr);
5581       begin
5582          if Vax_Float (Typ) then
5583             return True;
5584          elsif Checks_May_Be_Suppressed (Typ)
5585            and then (Is_Check_Suppressed (Typ, Range_Check)
5586                        or else
5587                      Is_Check_Suppressed (Typ, Validity_Check))
5588          then
5589             return True;
5590          end if;
5591       end;
5592
5593       --  If expression is an entity name, perform checks on this entity
5594
5595       if Is_Entity_Name (Expr) then
5596          declare
5597             Ent : constant Entity_Id := Entity (Expr);
5598          begin
5599             if Checks_May_Be_Suppressed (Ent) then
5600                return Is_Check_Suppressed (Ent, Range_Check)
5601                  or else Is_Check_Suppressed (Ent, Validity_Check);
5602             end if;
5603          end;
5604       end if;
5605
5606       --  If we fall through, no checks suppressed
5607
5608       return False;
5609    end Range_Or_Validity_Checks_Suppressed;
5610
5611    -------------------
5612    -- Remove_Checks --
5613    -------------------
5614
5615    procedure Remove_Checks (Expr : Node_Id) is
5616       function Process (N : Node_Id) return Traverse_Result;
5617       --  Process a single node during the traversal
5618
5619       procedure Traverse is new Traverse_Proc (Process);
5620       --  The traversal procedure itself
5621
5622       -------------
5623       -- Process --
5624       -------------
5625
5626       function Process (N : Node_Id) return Traverse_Result is
5627       begin
5628          if Nkind (N) not in N_Subexpr then
5629             return Skip;
5630          end if;
5631
5632          Set_Do_Range_Check (N, False);
5633
5634          case Nkind (N) is
5635             when N_And_Then =>
5636                Traverse (Left_Opnd (N));
5637                return Skip;
5638
5639             when N_Attribute_Reference =>
5640                Set_Do_Overflow_Check (N, False);
5641
5642             when N_Function_Call =>
5643                Set_Do_Tag_Check (N, False);
5644
5645             when N_Op =>
5646                Set_Do_Overflow_Check (N, False);
5647
5648                case Nkind (N) is
5649                   when N_Op_Divide =>
5650                      Set_Do_Division_Check (N, False);
5651
5652                   when N_Op_And =>
5653                      Set_Do_Length_Check (N, False);
5654
5655                   when N_Op_Mod =>
5656                      Set_Do_Division_Check (N, False);
5657
5658                   when N_Op_Or =>
5659                      Set_Do_Length_Check (N, False);
5660
5661                   when N_Op_Rem =>
5662                      Set_Do_Division_Check (N, False);
5663
5664                   when N_Op_Xor =>
5665                      Set_Do_Length_Check (N, False);
5666
5667                   when others =>
5668                      null;
5669                end case;
5670
5671             when N_Or_Else =>
5672                Traverse (Left_Opnd (N));
5673                return Skip;
5674
5675             when N_Selected_Component =>
5676                Set_Do_Discriminant_Check (N, False);
5677
5678             when N_Type_Conversion =>
5679                Set_Do_Length_Check   (N, False);
5680                Set_Do_Tag_Check      (N, False);
5681                Set_Do_Overflow_Check (N, False);
5682
5683             when others =>
5684                null;
5685          end case;
5686
5687          return OK;
5688       end Process;
5689
5690    --  Start of processing for Remove_Checks
5691
5692    begin
5693       Traverse (Expr);
5694    end Remove_Checks;
5695
5696    ----------------------------
5697    -- Selected_Length_Checks --
5698    ----------------------------
5699
5700    function Selected_Length_Checks
5701      (Ck_Node    : Node_Id;
5702       Target_Typ : Entity_Id;
5703       Source_Typ : Entity_Id;
5704       Warn_Node  : Node_Id) return Check_Result
5705    is
5706       Loc         : constant Source_Ptr := Sloc (Ck_Node);
5707       S_Typ       : Entity_Id;
5708       T_Typ       : Entity_Id;
5709       Expr_Actual : Node_Id;
5710       Exptyp      : Entity_Id;
5711       Cond        : Node_Id := Empty;
5712       Do_Access   : Boolean := False;
5713       Wnode       : Node_Id := Warn_Node;
5714       Ret_Result  : Check_Result := (Empty, Empty);
5715       Num_Checks  : Natural := 0;
5716
5717       procedure Add_Check (N : Node_Id);
5718       --  Adds the action given to Ret_Result if N is non-Empty
5719
5720       function Get_E_Length (E : Entity_Id; Indx : Nat) return Node_Id;
5721       function Get_N_Length (N : Node_Id; Indx : Nat) return Node_Id;
5722       --  Comments required ???
5723
5724       function Same_Bounds (L : Node_Id; R : Node_Id) return Boolean;
5725       --  True for equal literals and for nodes that denote the same constant
5726       --  entity, even if its value is not a static constant. This includes the
5727       --  case of a discriminal reference within an init proc. Removes some
5728       --  obviously superfluous checks.
5729
5730       function Length_E_Cond
5731         (Exptyp : Entity_Id;
5732          Typ    : Entity_Id;
5733          Indx   : Nat) return Node_Id;
5734       --  Returns expression to compute:
5735       --    Typ'Length /= Exptyp'Length
5736
5737       function Length_N_Cond
5738         (Expr : Node_Id;
5739          Typ  : Entity_Id;
5740          Indx : Nat) return Node_Id;
5741       --  Returns expression to compute:
5742       --    Typ'Length /= Expr'Length
5743
5744       ---------------
5745       -- Add_Check --
5746       ---------------
5747
5748       procedure Add_Check (N : Node_Id) is
5749       begin
5750          if Present (N) then
5751
5752             --  For now, ignore attempt to place more than 2 checks ???
5753
5754             if Num_Checks = 2 then
5755                return;
5756             end if;
5757
5758             pragma Assert (Num_Checks <= 1);
5759             Num_Checks := Num_Checks + 1;
5760             Ret_Result (Num_Checks) := N;
5761          end if;
5762       end Add_Check;
5763
5764       ------------------
5765       -- Get_E_Length --
5766       ------------------
5767
5768       function Get_E_Length (E : Entity_Id; Indx : Nat) return Node_Id is
5769          SE : constant Entity_Id := Scope (E);
5770          N  : Node_Id;
5771          E1 : Entity_Id := E;
5772
5773       begin
5774          if Ekind (Scope (E)) = E_Record_Type
5775            and then Has_Discriminants (Scope (E))
5776          then
5777             N := Build_Discriminal_Subtype_Of_Component (E);
5778
5779             if Present (N) then
5780                Insert_Action (Ck_Node, N);
5781                E1 := Defining_Identifier (N);
5782             end if;
5783          end if;
5784
5785          if Ekind (E1) = E_String_Literal_Subtype then
5786             return
5787               Make_Integer_Literal (Loc,
5788                 Intval => String_Literal_Length (E1));
5789
5790          elsif SE /= Standard_Standard
5791            and then Ekind (Scope (SE)) = E_Protected_Type
5792            and then Has_Discriminants (Scope (SE))
5793            and then Has_Completion (Scope (SE))
5794            and then not Inside_Init_Proc
5795          then
5796             --  If the type whose length is needed is a private component
5797             --  constrained by a discriminant, we must expand the 'Length
5798             --  attribute into an explicit computation, using the discriminal
5799             --  of the current protected operation. This is because the actual
5800             --  type of the prival is constructed after the protected opera-
5801             --  tion has been fully expanded.
5802
5803             declare
5804                Indx_Type : Node_Id;
5805                Lo        : Node_Id;
5806                Hi        : Node_Id;
5807                Do_Expand : Boolean := False;
5808
5809             begin
5810                Indx_Type := First_Index (E);
5811
5812                for J in 1 .. Indx - 1 loop
5813                   Next_Index (Indx_Type);
5814                end loop;
5815
5816                Get_Index_Bounds (Indx_Type, Lo, Hi);
5817
5818                if Nkind (Lo) = N_Identifier
5819                  and then Ekind (Entity (Lo)) = E_In_Parameter
5820                then
5821                   Lo := Get_Discriminal (E, Lo);
5822                   Do_Expand := True;
5823                end if;
5824
5825                if Nkind (Hi) = N_Identifier
5826                  and then Ekind (Entity (Hi)) = E_In_Parameter
5827                then
5828                   Hi := Get_Discriminal (E, Hi);
5829                   Do_Expand := True;
5830                end if;
5831
5832                if Do_Expand then
5833                   if not Is_Entity_Name (Lo) then
5834                      Lo := Duplicate_Subexpr_No_Checks (Lo);
5835                   end if;
5836
5837                   if not Is_Entity_Name (Hi) then
5838                      Lo := Duplicate_Subexpr_No_Checks (Hi);
5839                   end if;
5840
5841                   N :=
5842                     Make_Op_Add (Loc,
5843                       Left_Opnd =>
5844                         Make_Op_Subtract (Loc,
5845                           Left_Opnd  => Hi,
5846                           Right_Opnd => Lo),
5847
5848                       Right_Opnd => Make_Integer_Literal (Loc, 1));
5849                   return N;
5850
5851                else
5852                   N :=
5853                     Make_Attribute_Reference (Loc,
5854                       Attribute_Name => Name_Length,
5855                       Prefix =>
5856                         New_Occurrence_Of (E1, Loc));
5857
5858                   if Indx > 1 then
5859                      Set_Expressions (N, New_List (
5860                        Make_Integer_Literal (Loc, Indx)));
5861                   end if;
5862
5863                   return N;
5864                end if;
5865             end;
5866
5867          else
5868             N :=
5869               Make_Attribute_Reference (Loc,
5870                 Attribute_Name => Name_Length,
5871                 Prefix =>
5872                   New_Occurrence_Of (E1, Loc));
5873
5874             if Indx > 1 then
5875                Set_Expressions (N, New_List (
5876                  Make_Integer_Literal (Loc, Indx)));
5877             end if;
5878
5879             return N;
5880          end if;
5881       end Get_E_Length;
5882
5883       ------------------
5884       -- Get_N_Length --
5885       ------------------
5886
5887       function Get_N_Length (N : Node_Id; Indx : Nat) return Node_Id is
5888       begin
5889          return
5890            Make_Attribute_Reference (Loc,
5891              Attribute_Name => Name_Length,
5892              Prefix =>
5893                Duplicate_Subexpr_No_Checks (N, Name_Req => True),
5894              Expressions => New_List (
5895                Make_Integer_Literal (Loc, Indx)));
5896       end Get_N_Length;
5897
5898       -------------------
5899       -- Length_E_Cond --
5900       -------------------
5901
5902       function Length_E_Cond
5903         (Exptyp : Entity_Id;
5904          Typ    : Entity_Id;
5905          Indx   : Nat) return Node_Id
5906       is
5907       begin
5908          return
5909            Make_Op_Ne (Loc,
5910              Left_Opnd  => Get_E_Length (Typ, Indx),
5911              Right_Opnd => Get_E_Length (Exptyp, Indx));
5912       end Length_E_Cond;
5913
5914       -------------------
5915       -- Length_N_Cond --
5916       -------------------
5917
5918       function Length_N_Cond
5919         (Expr : Node_Id;
5920          Typ  : Entity_Id;
5921          Indx : Nat) return Node_Id
5922       is
5923       begin
5924          return
5925            Make_Op_Ne (Loc,
5926              Left_Opnd  => Get_E_Length (Typ, Indx),
5927              Right_Opnd => Get_N_Length (Expr, Indx));
5928       end Length_N_Cond;
5929
5930       -----------------
5931       -- Same_Bounds --
5932       -----------------
5933
5934       function Same_Bounds (L : Node_Id; R : Node_Id) return Boolean is
5935       begin
5936          return
5937            (Nkind (L) = N_Integer_Literal
5938              and then Nkind (R) = N_Integer_Literal
5939              and then Intval (L) = Intval (R))
5940
5941           or else
5942             (Is_Entity_Name (L)
5943               and then Ekind (Entity (L)) = E_Constant
5944               and then ((Is_Entity_Name (R)
5945                          and then Entity (L) = Entity (R))
5946                         or else
5947                        (Nkind (R) = N_Type_Conversion
5948                          and then Is_Entity_Name (Expression (R))
5949                          and then Entity (L) = Entity (Expression (R)))))
5950
5951           or else
5952             (Is_Entity_Name (R)
5953               and then Ekind (Entity (R)) = E_Constant
5954               and then Nkind (L) = N_Type_Conversion
5955               and then Is_Entity_Name (Expression (L))
5956               and then Entity (R) = Entity (Expression (L)))
5957
5958          or else
5959             (Is_Entity_Name (L)
5960               and then Is_Entity_Name (R)
5961               and then Entity (L) = Entity (R)
5962               and then Ekind (Entity (L)) = E_In_Parameter
5963               and then Inside_Init_Proc);
5964       end Same_Bounds;
5965
5966    --  Start of processing for Selected_Length_Checks
5967
5968    begin
5969       if not Expander_Active then
5970          return Ret_Result;
5971       end if;
5972
5973       if Target_Typ = Any_Type
5974         or else Target_Typ = Any_Composite
5975         or else Raises_Constraint_Error (Ck_Node)
5976       then
5977          return Ret_Result;
5978       end if;
5979
5980       if No (Wnode) then
5981          Wnode := Ck_Node;
5982       end if;
5983
5984       T_Typ := Target_Typ;
5985
5986       if No (Source_Typ) then
5987          S_Typ := Etype (Ck_Node);
5988       else
5989          S_Typ := Source_Typ;
5990       end if;
5991
5992       if S_Typ = Any_Type or else S_Typ = Any_Composite then
5993          return Ret_Result;
5994       end if;
5995
5996       if Is_Access_Type (T_Typ) and then Is_Access_Type (S_Typ) then
5997          S_Typ := Designated_Type (S_Typ);
5998          T_Typ := Designated_Type (T_Typ);
5999          Do_Access := True;
6000
6001          --  A simple optimization for the null case
6002
6003          if Known_Null (Ck_Node) then
6004             return Ret_Result;
6005          end if;
6006       end if;
6007
6008       if Is_Array_Type (T_Typ) and then Is_Array_Type (S_Typ) then
6009          if Is_Constrained (T_Typ) then
6010
6011             --  The checking code to be generated will freeze the
6012             --  corresponding array type. However, we must freeze the
6013             --  type now, so that the freeze node does not appear within
6014             --  the generated condional expression, but ahead of it.
6015
6016             Freeze_Before (Ck_Node, T_Typ);
6017
6018             Expr_Actual := Get_Referenced_Object (Ck_Node);
6019             Exptyp      := Get_Actual_Subtype (Ck_Node);
6020
6021             if Is_Access_Type (Exptyp) then
6022                Exptyp := Designated_Type (Exptyp);
6023             end if;
6024
6025             --  String_Literal case. This needs to be handled specially be-
6026             --  cause no index types are available for string literals. The
6027             --  condition is simply:
6028
6029             --    T_Typ'Length = string-literal-length
6030
6031             if Nkind (Expr_Actual) = N_String_Literal
6032               and then Ekind (Etype (Expr_Actual)) = E_String_Literal_Subtype
6033             then
6034                Cond :=
6035                  Make_Op_Ne (Loc,
6036                    Left_Opnd  => Get_E_Length (T_Typ, 1),
6037                    Right_Opnd =>
6038                      Make_Integer_Literal (Loc,
6039                        Intval =>
6040                          String_Literal_Length (Etype (Expr_Actual))));
6041
6042             --  General array case. Here we have a usable actual subtype for
6043             --  the expression, and the condition is built from the two types
6044             --  (Do_Length):
6045
6046             --     T_Typ'Length     /= Exptyp'Length     or else
6047             --     T_Typ'Length (2) /= Exptyp'Length (2) or else
6048             --     T_Typ'Length (3) /= Exptyp'Length (3) or else
6049             --     ...
6050
6051             elsif Is_Constrained (Exptyp) then
6052                declare
6053                   Ndims : constant Nat := Number_Dimensions (T_Typ);
6054
6055                   L_Index  : Node_Id;
6056                   R_Index  : Node_Id;
6057                   L_Low    : Node_Id;
6058                   L_High   : Node_Id;
6059                   R_Low    : Node_Id;
6060                   R_High   : Node_Id;
6061                   L_Length : Uint;
6062                   R_Length : Uint;
6063                   Ref_Node : Node_Id;
6064
6065                begin
6066                   --  At the library level, we need to ensure that the type of
6067                   --  the object is elaborated before the check itself is
6068                   --  emitted. This is only done if the object is in the
6069                   --  current compilation unit, otherwise the type is frozen
6070                   --  and elaborated in its unit.
6071
6072                   if Is_Itype (Exptyp)
6073                     and then
6074                       Ekind (Cunit_Entity (Current_Sem_Unit)) = E_Package
6075                     and then
6076                       not In_Package_Body (Cunit_Entity (Current_Sem_Unit))
6077                     and then In_Open_Scopes (Scope (Exptyp))
6078                   then
6079                      Ref_Node := Make_Itype_Reference (Sloc (Ck_Node));
6080                      Set_Itype (Ref_Node, Exptyp);
6081                      Insert_Action (Ck_Node, Ref_Node);
6082                   end if;
6083
6084                   L_Index := First_Index (T_Typ);
6085                   R_Index := First_Index (Exptyp);
6086
6087                   for Indx in 1 .. Ndims loop
6088                      if not (Nkind (L_Index) = N_Raise_Constraint_Error
6089                                or else
6090                              Nkind (R_Index) = N_Raise_Constraint_Error)
6091                      then
6092                         Get_Index_Bounds (L_Index, L_Low, L_High);
6093                         Get_Index_Bounds (R_Index, R_Low, R_High);
6094
6095                         --  Deal with compile time length check. Note that we
6096                         --  skip this in the access case, because the access
6097                         --  value may be null, so we cannot know statically.
6098
6099                         if not Do_Access
6100                           and then Compile_Time_Known_Value (L_Low)
6101                           and then Compile_Time_Known_Value (L_High)
6102                           and then Compile_Time_Known_Value (R_Low)
6103                           and then Compile_Time_Known_Value (R_High)
6104                         then
6105                            if Expr_Value (L_High) >= Expr_Value (L_Low) then
6106                               L_Length := Expr_Value (L_High) -
6107                                           Expr_Value (L_Low) + 1;
6108                            else
6109                               L_Length := UI_From_Int (0);
6110                            end if;
6111
6112                            if Expr_Value (R_High) >= Expr_Value (R_Low) then
6113                               R_Length := Expr_Value (R_High) -
6114                                           Expr_Value (R_Low) + 1;
6115                            else
6116                               R_Length := UI_From_Int (0);
6117                            end if;
6118
6119                            if L_Length > R_Length then
6120                               Add_Check
6121                                 (Compile_Time_Constraint_Error
6122                                   (Wnode, "too few elements for}?", T_Typ));
6123
6124                            elsif  L_Length < R_Length then
6125                               Add_Check
6126                                 (Compile_Time_Constraint_Error
6127                                   (Wnode, "too many elements for}?", T_Typ));
6128                            end if;
6129
6130                         --  The comparison for an individual index subtype
6131                         --  is omitted if the corresponding index subtypes
6132                         --  statically match, since the result is known to
6133                         --  be true. Note that this test is worth while even
6134                         --  though we do static evaluation, because non-static
6135                         --  subtypes can statically match.
6136
6137                         elsif not
6138                           Subtypes_Statically_Match
6139                             (Etype (L_Index), Etype (R_Index))
6140
6141                           and then not
6142                             (Same_Bounds (L_Low, R_Low)
6143                               and then Same_Bounds (L_High, R_High))
6144                         then
6145                            Evolve_Or_Else
6146                              (Cond, Length_E_Cond (Exptyp, T_Typ, Indx));
6147                         end if;
6148
6149                         Next (L_Index);
6150                         Next (R_Index);
6151                      end if;
6152                   end loop;
6153                end;
6154
6155             --  Handle cases where we do not get a usable actual subtype that
6156             --  is constrained. This happens for example in the function call
6157             --  and explicit dereference cases. In these cases, we have to get
6158             --  the length or range from the expression itself, making sure we
6159             --  do not evaluate it more than once.
6160
6161             --  Here Ck_Node is the original expression, or more properly the
6162             --  result of applying Duplicate_Expr to the original tree, forcing
6163             --  the result to be a name.
6164
6165             else
6166                declare
6167                   Ndims : constant Nat := Number_Dimensions (T_Typ);
6168
6169                begin
6170                   --  Build the condition for the explicit dereference case
6171
6172                   for Indx in 1 .. Ndims loop
6173                      Evolve_Or_Else
6174                        (Cond, Length_N_Cond (Ck_Node, T_Typ, Indx));
6175                   end loop;
6176                end;
6177             end if;
6178          end if;
6179       end if;
6180
6181       --  Construct the test and insert into the tree
6182
6183       if Present (Cond) then
6184          if Do_Access then
6185             Cond := Guard_Access (Cond, Loc, Ck_Node);
6186          end if;
6187
6188          Add_Check
6189            (Make_Raise_Constraint_Error (Loc,
6190               Condition => Cond,
6191               Reason => CE_Length_Check_Failed));
6192       end if;
6193
6194       return Ret_Result;
6195    end Selected_Length_Checks;
6196
6197    ---------------------------
6198    -- Selected_Range_Checks --
6199    ---------------------------
6200
6201    function Selected_Range_Checks
6202      (Ck_Node    : Node_Id;
6203       Target_Typ : Entity_Id;
6204       Source_Typ : Entity_Id;
6205       Warn_Node  : Node_Id) return Check_Result
6206    is
6207       Loc         : constant Source_Ptr := Sloc (Ck_Node);
6208       S_Typ       : Entity_Id;
6209       T_Typ       : Entity_Id;
6210       Expr_Actual : Node_Id;
6211       Exptyp      : Entity_Id;
6212       Cond        : Node_Id := Empty;
6213       Do_Access   : Boolean := False;
6214       Wnode       : Node_Id  := Warn_Node;
6215       Ret_Result  : Check_Result := (Empty, Empty);
6216       Num_Checks  : Integer := 0;
6217
6218       procedure Add_Check (N : Node_Id);
6219       --  Adds the action given to Ret_Result if N is non-Empty
6220
6221       function Discrete_Range_Cond
6222         (Expr : Node_Id;
6223          Typ  : Entity_Id) return Node_Id;
6224       --  Returns expression to compute:
6225       --    Low_Bound (Expr) < Typ'First
6226       --      or else
6227       --    High_Bound (Expr) > Typ'Last
6228
6229       function Discrete_Expr_Cond
6230         (Expr : Node_Id;
6231          Typ  : Entity_Id) return Node_Id;
6232       --  Returns expression to compute:
6233       --    Expr < Typ'First
6234       --      or else
6235       --    Expr > Typ'Last
6236
6237       function Get_E_First_Or_Last
6238         (E    : Entity_Id;
6239          Indx : Nat;
6240          Nam  : Name_Id) return Node_Id;
6241       --  Returns expression to compute:
6242       --    E'First or E'Last
6243
6244       function Get_N_First (N : Node_Id; Indx : Nat) return Node_Id;
6245       function Get_N_Last  (N : Node_Id; Indx : Nat) return Node_Id;
6246       --  Returns expression to compute:
6247       --    N'First or N'Last using Duplicate_Subexpr_No_Checks
6248
6249       function Range_E_Cond
6250         (Exptyp : Entity_Id;
6251          Typ    : Entity_Id;
6252          Indx   : Nat)
6253          return   Node_Id;
6254       --  Returns expression to compute:
6255       --    Exptyp'First < Typ'First or else Exptyp'Last > Typ'Last
6256
6257       function Range_Equal_E_Cond
6258         (Exptyp : Entity_Id;
6259          Typ    : Entity_Id;
6260          Indx   : Nat) return Node_Id;
6261       --  Returns expression to compute:
6262       --    Exptyp'First /= Typ'First or else Exptyp'Last /= Typ'Last
6263
6264       function Range_N_Cond
6265         (Expr : Node_Id;
6266          Typ  : Entity_Id;
6267          Indx : Nat) return Node_Id;
6268       --  Return expression to compute:
6269       --    Expr'First < Typ'First or else Expr'Last > Typ'Last
6270
6271       ---------------
6272       -- Add_Check --
6273       ---------------
6274
6275       procedure Add_Check (N : Node_Id) is
6276       begin
6277          if Present (N) then
6278
6279             --  For now, ignore attempt to place more than 2 checks ???
6280
6281             if Num_Checks = 2 then
6282                return;
6283             end if;
6284
6285             pragma Assert (Num_Checks <= 1);
6286             Num_Checks := Num_Checks + 1;
6287             Ret_Result (Num_Checks) := N;
6288          end if;
6289       end Add_Check;
6290
6291       -------------------------
6292       -- Discrete_Expr_Cond --
6293       -------------------------
6294
6295       function Discrete_Expr_Cond
6296         (Expr : Node_Id;
6297          Typ  : Entity_Id) return Node_Id
6298       is
6299       begin
6300          return
6301            Make_Or_Else (Loc,
6302              Left_Opnd =>
6303                Make_Op_Lt (Loc,
6304                  Left_Opnd =>
6305                    Convert_To (Base_Type (Typ),
6306                      Duplicate_Subexpr_No_Checks (Expr)),
6307                  Right_Opnd =>
6308                    Convert_To (Base_Type (Typ),
6309                                Get_E_First_Or_Last (Typ, 0, Name_First))),
6310
6311              Right_Opnd =>
6312                Make_Op_Gt (Loc,
6313                  Left_Opnd =>
6314                    Convert_To (Base_Type (Typ),
6315                      Duplicate_Subexpr_No_Checks (Expr)),
6316                  Right_Opnd =>
6317                    Convert_To
6318                      (Base_Type (Typ),
6319                       Get_E_First_Or_Last (Typ, 0, Name_Last))));
6320       end Discrete_Expr_Cond;
6321
6322       -------------------------
6323       -- Discrete_Range_Cond --
6324       -------------------------
6325
6326       function Discrete_Range_Cond
6327         (Expr : Node_Id;
6328          Typ  : Entity_Id) return Node_Id
6329       is
6330          LB : Node_Id := Low_Bound (Expr);
6331          HB : Node_Id := High_Bound (Expr);
6332
6333          Left_Opnd  : Node_Id;
6334          Right_Opnd : Node_Id;
6335
6336       begin
6337          if Nkind (LB) = N_Identifier
6338            and then Ekind (Entity (LB)) = E_Discriminant
6339          then
6340             LB := New_Occurrence_Of (Discriminal (Entity (LB)), Loc);
6341          end if;
6342
6343          if Nkind (HB) = N_Identifier
6344            and then Ekind (Entity (HB)) = E_Discriminant
6345          then
6346             HB := New_Occurrence_Of (Discriminal (Entity (HB)), Loc);
6347          end if;
6348
6349          Left_Opnd :=
6350            Make_Op_Lt (Loc,
6351              Left_Opnd  =>
6352                Convert_To
6353                  (Base_Type (Typ), Duplicate_Subexpr_No_Checks (LB)),
6354
6355              Right_Opnd =>
6356                Convert_To
6357                  (Base_Type (Typ), Get_E_First_Or_Last (Typ, 0, Name_First)));
6358
6359          if Base_Type (Typ) = Typ then
6360             return Left_Opnd;
6361
6362          elsif Compile_Time_Known_Value (High_Bound (Scalar_Range (Typ)))
6363             and then
6364                Compile_Time_Known_Value (High_Bound (Scalar_Range
6365                                                      (Base_Type (Typ))))
6366          then
6367             if Is_Floating_Point_Type (Typ) then
6368                if Expr_Value_R (High_Bound (Scalar_Range (Typ))) =
6369                   Expr_Value_R (High_Bound (Scalar_Range (Base_Type (Typ))))
6370                then
6371                   return Left_Opnd;
6372                end if;
6373
6374             else
6375                if Expr_Value (High_Bound (Scalar_Range (Typ))) =
6376                   Expr_Value (High_Bound (Scalar_Range (Base_Type (Typ))))
6377                then
6378                   return Left_Opnd;
6379                end if;
6380             end if;
6381          end if;
6382
6383          Right_Opnd :=
6384            Make_Op_Gt (Loc,
6385              Left_Opnd  =>
6386                Convert_To
6387                  (Base_Type (Typ), Duplicate_Subexpr_No_Checks (HB)),
6388
6389              Right_Opnd =>
6390                Convert_To
6391                  (Base_Type (Typ),
6392                   Get_E_First_Or_Last (Typ, 0, Name_Last)));
6393
6394          return Make_Or_Else (Loc, Left_Opnd, Right_Opnd);
6395       end Discrete_Range_Cond;
6396
6397       -------------------------
6398       -- Get_E_First_Or_Last --
6399       -------------------------
6400
6401       function Get_E_First_Or_Last
6402         (E    : Entity_Id;
6403          Indx : Nat;
6404          Nam  : Name_Id) return Node_Id
6405       is
6406          N     : Node_Id;
6407          LB    : Node_Id;
6408          HB    : Node_Id;
6409          Bound : Node_Id;
6410
6411       begin
6412          if Is_Array_Type (E) then
6413             N := First_Index (E);
6414
6415             for J in 2 .. Indx loop
6416                Next_Index (N);
6417             end loop;
6418
6419          else
6420             N := Scalar_Range (E);
6421          end if;
6422
6423          if Nkind (N) = N_Subtype_Indication then
6424             LB := Low_Bound (Range_Expression (Constraint (N)));
6425             HB := High_Bound (Range_Expression (Constraint (N)));
6426
6427          elsif Is_Entity_Name (N) then
6428             LB := Type_Low_Bound  (Etype (N));
6429             HB := Type_High_Bound (Etype (N));
6430
6431          else
6432             LB := Low_Bound  (N);
6433             HB := High_Bound (N);
6434          end if;
6435
6436          if Nam = Name_First then
6437             Bound := LB;
6438          else
6439             Bound := HB;
6440          end if;
6441
6442          if Nkind (Bound) = N_Identifier
6443            and then Ekind (Entity (Bound)) = E_Discriminant
6444          then
6445             --  If this is a task discriminant, and we are the body, we must
6446             --  retrieve the corresponding body discriminal. This is another
6447             --  consequence of the early creation of discriminals, and the
6448             --  need to generate constraint checks before their declarations
6449             --  are made visible.
6450
6451             if Is_Concurrent_Record_Type (Scope (Entity (Bound)))  then
6452                declare
6453                   Tsk : constant Entity_Id :=
6454                           Corresponding_Concurrent_Type
6455                            (Scope (Entity (Bound)));
6456                   Disc : Entity_Id;
6457
6458                begin
6459                   if In_Open_Scopes (Tsk)
6460                     and then Has_Completion (Tsk)
6461                   then
6462                      --  Find discriminant of original task, and use its
6463                      --  current discriminal, which is the renaming within
6464                      --  the task body.
6465
6466                      Disc :=  First_Discriminant (Tsk);
6467                      while Present (Disc) loop
6468                         if Chars (Disc) = Chars (Entity (Bound)) then
6469                            Set_Scope (Discriminal (Disc), Tsk);
6470                            return New_Occurrence_Of (Discriminal (Disc), Loc);
6471                         end if;
6472
6473                         Next_Discriminant (Disc);
6474                      end loop;
6475
6476                      --  That loop should always succeed in finding a matching
6477                      --  entry and returning. Fatal error if not.
6478
6479                      raise Program_Error;
6480
6481                   else
6482                      return
6483                        New_Occurrence_Of (Discriminal (Entity (Bound)), Loc);
6484                   end if;
6485                end;
6486             else
6487                return New_Occurrence_Of (Discriminal (Entity (Bound)), Loc);
6488             end if;
6489
6490          elsif Nkind (Bound) = N_Identifier
6491            and then Ekind (Entity (Bound)) = E_In_Parameter
6492            and then not Inside_Init_Proc
6493          then
6494             return Get_Discriminal (E, Bound);
6495
6496          elsif Nkind (Bound) = N_Integer_Literal then
6497             return Make_Integer_Literal (Loc, Intval (Bound));
6498
6499          --  Case of a bound rewritten to an N_Raise_Constraint_Error node
6500          --  because it is an out-of-range value. Duplicate_Subexpr cannot be
6501          --  called on this node because an N_Raise_Constraint_Error is not
6502          --  side effect free, and we may not assume that we are in the proper
6503          --  context to remove side effects on it at the point of reference.
6504
6505          elsif Nkind (Bound) = N_Raise_Constraint_Error then
6506             return New_Copy_Tree (Bound);
6507
6508          else
6509             return Duplicate_Subexpr_No_Checks (Bound);
6510          end if;
6511       end Get_E_First_Or_Last;
6512
6513       -----------------
6514       -- Get_N_First --
6515       -----------------
6516
6517       function Get_N_First (N : Node_Id; Indx : Nat) return Node_Id is
6518       begin
6519          return
6520            Make_Attribute_Reference (Loc,
6521              Attribute_Name => Name_First,
6522              Prefix =>
6523                Duplicate_Subexpr_No_Checks (N, Name_Req => True),
6524              Expressions => New_List (
6525                Make_Integer_Literal (Loc, Indx)));
6526       end Get_N_First;
6527
6528       ----------------
6529       -- Get_N_Last --
6530       ----------------
6531
6532       function Get_N_Last (N : Node_Id; Indx : Nat) return Node_Id is
6533       begin
6534          return
6535            Make_Attribute_Reference (Loc,
6536              Attribute_Name => Name_Last,
6537              Prefix =>
6538                Duplicate_Subexpr_No_Checks (N, Name_Req => True),
6539              Expressions => New_List (
6540               Make_Integer_Literal (Loc, Indx)));
6541       end Get_N_Last;
6542
6543       ------------------
6544       -- Range_E_Cond --
6545       ------------------
6546
6547       function Range_E_Cond
6548         (Exptyp : Entity_Id;
6549          Typ    : Entity_Id;
6550          Indx   : Nat) return Node_Id
6551       is
6552       begin
6553          return
6554            Make_Or_Else (Loc,
6555              Left_Opnd =>
6556                Make_Op_Lt (Loc,
6557                  Left_Opnd => Get_E_First_Or_Last (Exptyp, Indx, Name_First),
6558                  Right_Opnd  => Get_E_First_Or_Last (Typ, Indx, Name_First)),
6559
6560              Right_Opnd =>
6561                Make_Op_Gt (Loc,
6562                  Left_Opnd => Get_E_First_Or_Last (Exptyp, Indx, Name_Last),
6563                  Right_Opnd  => Get_E_First_Or_Last (Typ, Indx, Name_Last)));
6564       end Range_E_Cond;
6565
6566       ------------------------
6567       -- Range_Equal_E_Cond --
6568       ------------------------
6569
6570       function Range_Equal_E_Cond
6571         (Exptyp : Entity_Id;
6572          Typ    : Entity_Id;
6573          Indx   : Nat) return Node_Id
6574       is
6575       begin
6576          return
6577            Make_Or_Else (Loc,
6578              Left_Opnd =>
6579                Make_Op_Ne (Loc,
6580                  Left_Opnd => Get_E_First_Or_Last (Exptyp, Indx, Name_First),
6581                  Right_Opnd  => Get_E_First_Or_Last (Typ, Indx, Name_First)),
6582              Right_Opnd =>
6583                Make_Op_Ne (Loc,
6584                  Left_Opnd => Get_E_First_Or_Last (Exptyp, Indx, Name_Last),
6585                  Right_Opnd  => Get_E_First_Or_Last (Typ, Indx, Name_Last)));
6586       end Range_Equal_E_Cond;
6587
6588       ------------------
6589       -- Range_N_Cond --
6590       ------------------
6591
6592       function Range_N_Cond
6593         (Expr : Node_Id;
6594          Typ  : Entity_Id;
6595          Indx : Nat) return Node_Id
6596       is
6597       begin
6598          return
6599            Make_Or_Else (Loc,
6600              Left_Opnd =>
6601                Make_Op_Lt (Loc,
6602                  Left_Opnd => Get_N_First (Expr, Indx),
6603                  Right_Opnd  => Get_E_First_Or_Last (Typ, Indx, Name_First)),
6604
6605              Right_Opnd =>
6606                Make_Op_Gt (Loc,
6607                  Left_Opnd => Get_N_Last (Expr, Indx),
6608                  Right_Opnd  => Get_E_First_Or_Last (Typ, Indx, Name_Last)));
6609       end Range_N_Cond;
6610
6611    --  Start of processing for Selected_Range_Checks
6612
6613    begin
6614       if not Expander_Active then
6615          return Ret_Result;
6616       end if;
6617
6618       if Target_Typ = Any_Type
6619         or else Target_Typ = Any_Composite
6620         or else Raises_Constraint_Error (Ck_Node)
6621       then
6622          return Ret_Result;
6623       end if;
6624
6625       if No (Wnode) then
6626          Wnode := Ck_Node;
6627       end if;
6628
6629       T_Typ := Target_Typ;
6630
6631       if No (Source_Typ) then
6632          S_Typ := Etype (Ck_Node);
6633       else
6634          S_Typ := Source_Typ;
6635       end if;
6636
6637       if S_Typ = Any_Type or else S_Typ = Any_Composite then
6638          return Ret_Result;
6639       end if;
6640
6641       --  The order of evaluating T_Typ before S_Typ seems to be critical
6642       --  because S_Typ can be derived from Etype (Ck_Node), if it's not passed
6643       --  in, and since Node can be an N_Range node, it might be invalid.
6644       --  Should there be an assert check somewhere for taking the Etype of
6645       --  an N_Range node ???
6646
6647       if Is_Access_Type (T_Typ) and then Is_Access_Type (S_Typ) then
6648          S_Typ := Designated_Type (S_Typ);
6649          T_Typ := Designated_Type (T_Typ);
6650          Do_Access := True;
6651
6652          --  A simple optimization for the null case
6653
6654          if Known_Null (Ck_Node) then
6655             return Ret_Result;
6656          end if;
6657       end if;
6658
6659       --  For an N_Range Node, check for a null range and then if not
6660       --  null generate a range check action.
6661
6662       if Nkind (Ck_Node) = N_Range then
6663
6664          --  There's no point in checking a range against itself
6665
6666          if Ck_Node = Scalar_Range (T_Typ) then
6667             return Ret_Result;
6668          end if;
6669
6670          declare
6671             T_LB       : constant Node_Id := Type_Low_Bound  (T_Typ);
6672             T_HB       : constant Node_Id := Type_High_Bound (T_Typ);
6673             LB         : constant Node_Id := Low_Bound (Ck_Node);
6674             HB         : constant Node_Id := High_Bound (Ck_Node);
6675             Null_Range : Boolean;
6676
6677             Out_Of_Range_L : Boolean;
6678             Out_Of_Range_H : Boolean;
6679
6680          begin
6681             --  Check for case where everything is static and we can
6682             --  do the check at compile time. This is skipped if we
6683             --  have an access type, since the access value may be null.
6684
6685             --  ??? This code can be improved since you only need to know
6686             --  that the two respective bounds (LB & T_LB or HB & T_HB)
6687             --  are known at compile time to emit pertinent messages.
6688
6689             if Compile_Time_Known_Value (LB)
6690               and then Compile_Time_Known_Value (HB)
6691               and then Compile_Time_Known_Value (T_LB)
6692               and then Compile_Time_Known_Value (T_HB)
6693               and then not Do_Access
6694             then
6695                --  Floating-point case
6696
6697                if Is_Floating_Point_Type (S_Typ) then
6698                   Null_Range := Expr_Value_R (HB) < Expr_Value_R (LB);
6699                   Out_Of_Range_L :=
6700                     (Expr_Value_R (LB) < Expr_Value_R (T_LB))
6701                        or else
6702                     (Expr_Value_R (LB) > Expr_Value_R (T_HB));
6703
6704                   Out_Of_Range_H :=
6705                     (Expr_Value_R (HB) > Expr_Value_R (T_HB))
6706                        or else
6707                     (Expr_Value_R (HB) < Expr_Value_R (T_LB));
6708
6709                --  Fixed or discrete type case
6710
6711                else
6712                   Null_Range := Expr_Value (HB) < Expr_Value (LB);
6713                   Out_Of_Range_L :=
6714                     (Expr_Value (LB) < Expr_Value (T_LB))
6715                     or else
6716                     (Expr_Value (LB) > Expr_Value (T_HB));
6717
6718                   Out_Of_Range_H :=
6719                     (Expr_Value (HB) > Expr_Value (T_HB))
6720                     or else
6721                     (Expr_Value (HB) < Expr_Value (T_LB));
6722                end if;
6723
6724                if not Null_Range then
6725                   if Out_Of_Range_L then
6726                      if No (Warn_Node) then
6727                         Add_Check
6728                           (Compile_Time_Constraint_Error
6729                              (Low_Bound (Ck_Node),
6730                               "static value out of range of}?", T_Typ));
6731
6732                      else
6733                         Add_Check
6734                           (Compile_Time_Constraint_Error
6735                             (Wnode,
6736                              "static range out of bounds of}?", T_Typ));
6737                      end if;
6738                   end if;
6739
6740                   if Out_Of_Range_H then
6741                      if No (Warn_Node) then
6742                         Add_Check
6743                           (Compile_Time_Constraint_Error
6744                              (High_Bound (Ck_Node),
6745                               "static value out of range of}?", T_Typ));
6746
6747                      else
6748                         Add_Check
6749                           (Compile_Time_Constraint_Error
6750                              (Wnode,
6751                               "static range out of bounds of}?", T_Typ));
6752                      end if;
6753                   end if;
6754
6755                end if;
6756
6757             else
6758                declare
6759                   LB : Node_Id := Low_Bound (Ck_Node);
6760                   HB : Node_Id := High_Bound (Ck_Node);
6761
6762                begin
6763                   --  If either bound is a discriminant and we are within the
6764                   --  record declaration, it is a use of the discriminant in a
6765                   --  constraint of a component, and nothing can be checked
6766                   --  here. The check will be emitted within the init proc.
6767                   --  Before then, the discriminal has no real meaning.
6768                   --  Similarly, if the entity is a discriminal, there is no
6769                   --  check to perform yet.
6770
6771                   --  The same holds within a discriminated synchronized type,
6772                   --  where the discriminant may constrain a component or an
6773                   --  entry family.
6774
6775                   if Nkind (LB) = N_Identifier
6776                     and then Denotes_Discriminant (LB, True)
6777                   then
6778                      if Current_Scope = Scope (Entity (LB))
6779                        or else Is_Concurrent_Type (Current_Scope)
6780                        or else Ekind (Entity (LB)) /= E_Discriminant
6781                      then
6782                         return Ret_Result;
6783                      else
6784                         LB :=
6785                           New_Occurrence_Of (Discriminal (Entity (LB)), Loc);
6786                      end if;
6787                   end if;
6788
6789                   if Nkind (HB) = N_Identifier
6790                     and then Denotes_Discriminant (HB, True)
6791                   then
6792                      if Current_Scope = Scope (Entity (HB))
6793                        or else Is_Concurrent_Type (Current_Scope)
6794                        or else Ekind (Entity (HB)) /= E_Discriminant
6795                      then
6796                         return Ret_Result;
6797                      else
6798                         HB :=
6799                           New_Occurrence_Of (Discriminal (Entity (HB)), Loc);
6800                      end if;
6801                   end if;
6802
6803                   Cond := Discrete_Range_Cond (Ck_Node, T_Typ);
6804                   Set_Paren_Count (Cond, 1);
6805
6806                   Cond :=
6807                     Make_And_Then (Loc,
6808                       Left_Opnd =>
6809                         Make_Op_Ge (Loc,
6810                           Left_Opnd  => Duplicate_Subexpr_No_Checks (HB),
6811                           Right_Opnd => Duplicate_Subexpr_No_Checks (LB)),
6812                       Right_Opnd => Cond);
6813                end;
6814             end if;
6815          end;
6816
6817       elsif Is_Scalar_Type (S_Typ) then
6818
6819          --  This somewhat duplicates what Apply_Scalar_Range_Check does,
6820          --  except the above simply sets a flag in the node and lets
6821          --  gigi generate the check base on the Etype of the expression.
6822          --  Sometimes, however we want to do a dynamic check against an
6823          --  arbitrary target type, so we do that here.
6824
6825          if Ekind (Base_Type (S_Typ)) /= Ekind (Base_Type (T_Typ)) then
6826             Cond := Discrete_Expr_Cond (Ck_Node, T_Typ);
6827
6828          --  For literals, we can tell if the constraint error will be
6829          --  raised at compile time, so we never need a dynamic check, but
6830          --  if the exception will be raised, then post the usual warning,
6831          --  and replace the literal with a raise constraint error
6832          --  expression. As usual, skip this for access types
6833
6834          elsif Compile_Time_Known_Value (Ck_Node)
6835            and then not Do_Access
6836          then
6837             declare
6838                LB : constant Node_Id := Type_Low_Bound (T_Typ);
6839                UB : constant Node_Id := Type_High_Bound (T_Typ);
6840
6841                Out_Of_Range  : Boolean;
6842                Static_Bounds : constant Boolean :=
6843                                  Compile_Time_Known_Value (LB)
6844                                    and Compile_Time_Known_Value (UB);
6845
6846             begin
6847                --  Following range tests should use Sem_Eval routine ???
6848
6849                if Static_Bounds then
6850                   if Is_Floating_Point_Type (S_Typ) then
6851                      Out_Of_Range :=
6852                        (Expr_Value_R (Ck_Node) < Expr_Value_R (LB))
6853                          or else
6854                        (Expr_Value_R (Ck_Node) > Expr_Value_R (UB));
6855
6856                   else -- fixed or discrete type
6857                      Out_Of_Range :=
6858                        Expr_Value (Ck_Node) < Expr_Value (LB)
6859                          or else
6860                        Expr_Value (Ck_Node) > Expr_Value (UB);
6861                   end if;
6862
6863                   --  Bounds of the type are static and the literal is
6864                   --  out of range so make a warning message.
6865
6866                   if Out_Of_Range then
6867                      if No (Warn_Node) then
6868                         Add_Check
6869                           (Compile_Time_Constraint_Error
6870                              (Ck_Node,
6871                               "static value out of range of}?", T_Typ));
6872
6873                      else
6874                         Add_Check
6875                           (Compile_Time_Constraint_Error
6876                              (Wnode,
6877                               "static value out of range of}?", T_Typ));
6878                      end if;
6879                   end if;
6880
6881                else
6882                   Cond := Discrete_Expr_Cond (Ck_Node, T_Typ);
6883                end if;
6884             end;
6885
6886          --  Here for the case of a non-static expression, we need a runtime
6887          --  check unless the source type range is guaranteed to be in the
6888          --  range of the target type.
6889
6890          else
6891             if not In_Subrange_Of (S_Typ, T_Typ) then
6892                Cond := Discrete_Expr_Cond (Ck_Node, T_Typ);
6893             end if;
6894          end if;
6895       end if;
6896
6897       if Is_Array_Type (T_Typ) and then Is_Array_Type (S_Typ) then
6898          if Is_Constrained (T_Typ) then
6899
6900             Expr_Actual := Get_Referenced_Object (Ck_Node);
6901             Exptyp      := Get_Actual_Subtype (Expr_Actual);
6902
6903             if Is_Access_Type (Exptyp) then
6904                Exptyp := Designated_Type (Exptyp);
6905             end if;
6906
6907             --  String_Literal case. This needs to be handled specially be-
6908             --  cause no index types are available for string literals. The
6909             --  condition is simply:
6910
6911             --    T_Typ'Length = string-literal-length
6912
6913             if Nkind (Expr_Actual) = N_String_Literal then
6914                null;
6915
6916             --  General array case. Here we have a usable actual subtype for
6917             --  the expression, and the condition is built from the two types
6918
6919             --     T_Typ'First     < Exptyp'First     or else
6920             --     T_Typ'Last      > Exptyp'Last      or else
6921             --     T_Typ'First(1)  < Exptyp'First(1)  or else
6922             --     T_Typ'Last(1)   > Exptyp'Last(1)   or else
6923             --     ...
6924
6925             elsif Is_Constrained (Exptyp) then
6926                declare
6927                   Ndims : constant Nat := Number_Dimensions (T_Typ);
6928
6929                   L_Index : Node_Id;
6930                   R_Index : Node_Id;
6931
6932                begin
6933                   L_Index := First_Index (T_Typ);
6934                   R_Index := First_Index (Exptyp);
6935
6936                   for Indx in 1 .. Ndims loop
6937                      if not (Nkind (L_Index) = N_Raise_Constraint_Error
6938                                or else
6939                              Nkind (R_Index) = N_Raise_Constraint_Error)
6940                      then
6941                         --  Deal with compile time length check. Note that we
6942                         --  skip this in the access case, because the access
6943                         --  value may be null, so we cannot know statically.
6944
6945                         if not
6946                           Subtypes_Statically_Match
6947                             (Etype (L_Index), Etype (R_Index))
6948                         then
6949                            --  If the target type is constrained then we
6950                            --  have to check for exact equality of bounds
6951                            --  (required for qualified expressions).
6952
6953                            if Is_Constrained (T_Typ) then
6954                               Evolve_Or_Else
6955                                 (Cond,
6956                                  Range_Equal_E_Cond (Exptyp, T_Typ, Indx));
6957                            else
6958                               Evolve_Or_Else
6959                                 (Cond, Range_E_Cond (Exptyp, T_Typ, Indx));
6960                            end if;
6961                         end if;
6962
6963                         Next (L_Index);
6964                         Next (R_Index);
6965
6966                      end if;
6967                   end loop;
6968                end;
6969
6970             --  Handle cases where we do not get a usable actual subtype that
6971             --  is constrained. This happens for example in the function call
6972             --  and explicit dereference cases. In these cases, we have to get
6973             --  the length or range from the expression itself, making sure we
6974             --  do not evaluate it more than once.
6975
6976             --  Here Ck_Node is the original expression, or more properly the
6977             --  result of applying Duplicate_Expr to the original tree,
6978             --  forcing the result to be a name.
6979
6980             else
6981                declare
6982                   Ndims : constant Nat := Number_Dimensions (T_Typ);
6983
6984                begin
6985                   --  Build the condition for the explicit dereference case
6986
6987                   for Indx in 1 .. Ndims loop
6988                      Evolve_Or_Else
6989                        (Cond, Range_N_Cond (Ck_Node, T_Typ, Indx));
6990                   end loop;
6991                end;
6992
6993             end if;
6994
6995          else
6996             --  For a conversion to an unconstrained array type, generate an
6997             --  Action to check that the bounds of the source value are within
6998             --  the constraints imposed by the target type (RM 4.6(38)). No
6999             --  check is needed for a conversion to an access to unconstrained
7000             --  array type, as 4.6(24.15/2) requires the designated subtypes
7001             --  of the two access types to statically match.
7002
7003             if Nkind (Parent (Ck_Node)) = N_Type_Conversion
7004               and then not Do_Access
7005             then
7006                declare
7007                   Opnd_Index : Node_Id;
7008                   Targ_Index : Node_Id;
7009                   Opnd_Range : Node_Id;
7010
7011                begin
7012                   Opnd_Index := First_Index (Get_Actual_Subtype (Ck_Node));
7013                   Targ_Index := First_Index (T_Typ);
7014                   while Present (Opnd_Index) loop
7015
7016                      --  If the index is a range, use its bounds. If it is an
7017                      --  entity (as will be the case if it is a named subtype
7018                      --  or an itype created for a slice) retrieve its range.
7019
7020                      if Is_Entity_Name (Opnd_Index)
7021                        and then Is_Type (Entity (Opnd_Index))
7022                      then
7023                         Opnd_Range := Scalar_Range (Entity (Opnd_Index));
7024                      else
7025                         Opnd_Range := Opnd_Index;
7026                      end if;
7027
7028                      if Nkind (Opnd_Range) = N_Range then
7029                         if  Is_In_Range
7030                              (Low_Bound (Opnd_Range), Etype (Targ_Index),
7031                               Assume_Valid => True)
7032                           and then
7033                             Is_In_Range
7034                              (High_Bound (Opnd_Range), Etype (Targ_Index),
7035                               Assume_Valid => True)
7036                         then
7037                            null;
7038
7039                         --  If null range, no check needed
7040
7041                         elsif
7042                           Compile_Time_Known_Value (High_Bound (Opnd_Range))
7043                             and then
7044                           Compile_Time_Known_Value (Low_Bound (Opnd_Range))
7045                             and then
7046                               Expr_Value (High_Bound (Opnd_Range)) <
7047                                   Expr_Value (Low_Bound (Opnd_Range))
7048                         then
7049                            null;
7050
7051                         elsif Is_Out_Of_Range
7052                                 (Low_Bound (Opnd_Range), Etype (Targ_Index),
7053                                  Assume_Valid => True)
7054                           or else
7055                               Is_Out_Of_Range
7056                                 (High_Bound (Opnd_Range), Etype (Targ_Index),
7057                                  Assume_Valid => True)
7058                         then
7059                            Add_Check
7060                              (Compile_Time_Constraint_Error
7061                                (Wnode, "value out of range of}?", T_Typ));
7062
7063                         else
7064                            Evolve_Or_Else
7065                              (Cond,
7066                               Discrete_Range_Cond
7067                                 (Opnd_Range, Etype (Targ_Index)));
7068                         end if;
7069                      end if;
7070
7071                      Next_Index (Opnd_Index);
7072                      Next_Index (Targ_Index);
7073                   end loop;
7074                end;
7075             end if;
7076          end if;
7077       end if;
7078
7079       --  Construct the test and insert into the tree
7080
7081       if Present (Cond) then
7082          if Do_Access then
7083             Cond := Guard_Access (Cond, Loc, Ck_Node);
7084          end if;
7085
7086          Add_Check
7087            (Make_Raise_Constraint_Error (Loc,
7088               Condition => Cond,
7089               Reason    => CE_Range_Check_Failed));
7090       end if;
7091
7092       return Ret_Result;
7093    end Selected_Range_Checks;
7094
7095    -------------------------------
7096    -- Storage_Checks_Suppressed --
7097    -------------------------------
7098
7099    function Storage_Checks_Suppressed (E : Entity_Id) return Boolean is
7100    begin
7101       if Present (E) and then Checks_May_Be_Suppressed (E) then
7102          return Is_Check_Suppressed (E, Storage_Check);
7103       else
7104          return Scope_Suppress (Storage_Check);
7105       end if;
7106    end Storage_Checks_Suppressed;
7107
7108    ---------------------------
7109    -- Tag_Checks_Suppressed --
7110    ---------------------------
7111
7112    function Tag_Checks_Suppressed (E : Entity_Id) return Boolean is
7113    begin
7114       if Present (E) then
7115          if Kill_Tag_Checks (E) then
7116             return True;
7117          elsif Checks_May_Be_Suppressed (E) then
7118             return Is_Check_Suppressed (E, Tag_Check);
7119          end if;
7120       end if;
7121
7122       return Scope_Suppress (Tag_Check);
7123    end Tag_Checks_Suppressed;
7124
7125    --------------------------
7126    -- Validity_Check_Range --
7127    --------------------------
7128
7129    procedure Validity_Check_Range (N : Node_Id) is
7130    begin
7131       if Validity_Checks_On and Validity_Check_Operands then
7132          if Nkind (N) = N_Range then
7133             Ensure_Valid (Low_Bound (N));
7134             Ensure_Valid (High_Bound (N));
7135          end if;
7136       end if;
7137    end Validity_Check_Range;
7138
7139    --------------------------------
7140    -- Validity_Checks_Suppressed --
7141    --------------------------------
7142
7143    function Validity_Checks_Suppressed (E : Entity_Id) return Boolean is
7144    begin
7145       if Present (E) and then Checks_May_Be_Suppressed (E) then
7146          return Is_Check_Suppressed (E, Validity_Check);
7147       else
7148          return Scope_Suppress (Validity_Check);
7149       end if;
7150    end Validity_Checks_Suppressed;
7151
7152 end Checks;