[aarch64] Use op_mode instead of vmode in aarch64_vectorize_vec_perm_const.
[official-gcc.git] / gcc / ada / checks.ads
blob48678cd01df83bd9b1f212034d624a7f04324a68
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- C H E C K S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2022, 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 ------------------------------------------------------------------------------
26 -- Package containing routines used to deal with run-time checks. These
27 -- routines are used both by the semantics and by the expander. In some
28 -- cases, checks are enabled simply by setting a flag for the back end,
29 -- and in other cases the code for the check is expanded.
31 -- The approach used for range and length checks, in regards to suppressed
32 -- checks, is to attempt to detect at compilation time that a constraint
33 -- error will occur. If this is detected a warning or error is issued and the
34 -- offending expression or statement replaced with a constraint error node.
35 -- This always occurs whether checks are suppressed or not. Dynamic range
36 -- checks are, of course, not inserted if checks are suppressed.
38 with Errout; use Errout;
39 with Namet; use Namet;
40 with Table;
41 with Types; use Types;
42 with Uintp; use Uintp;
43 with Urealp; use Urealp;
45 package Checks is
47 type Bit_Vector is array (Pos range <>) of Boolean;
48 type Dimension_Set (Dimensions : Nat) is
49 record
50 Elements : Bit_Vector (1 .. Dimensions);
51 end record;
52 Empty_Dimension_Set : constant Dimension_Set
53 := (Dimensions => 0, Elements => (others => <>));
55 procedure Initialize;
56 -- Called for each new main source program, to initialize internal
57 -- variables used in the package body of the Checks unit.
59 function Access_Checks_Suppressed (E : Entity_Id) return Boolean;
60 function Accessibility_Checks_Suppressed (E : Entity_Id) return Boolean;
61 function Alignment_Checks_Suppressed (E : Entity_Id) return Boolean;
62 function Allocation_Checks_Suppressed (E : Entity_Id) return Boolean;
63 function Atomic_Synchronization_Disabled (E : Entity_Id) return Boolean;
64 function Discriminant_Checks_Suppressed (E : Entity_Id) return Boolean;
65 function Division_Checks_Suppressed (E : Entity_Id) return Boolean;
66 function Duplicated_Tag_Checks_Suppressed (E : Entity_Id) return Boolean;
67 function Elaboration_Checks_Suppressed (E : Entity_Id) return Boolean;
68 function Index_Checks_Suppressed (E : Entity_Id) return Boolean;
69 function Length_Checks_Suppressed (E : Entity_Id) return Boolean;
70 function Overflow_Checks_Suppressed (E : Entity_Id) return Boolean;
71 function Predicate_Checks_Suppressed (E : Entity_Id) return Boolean;
72 function Range_Checks_Suppressed (E : Entity_Id) return Boolean;
73 function Storage_Checks_Suppressed (E : Entity_Id) return Boolean;
74 function Tag_Checks_Suppressed (E : Entity_Id) return Boolean;
75 -- These functions check to see if the named check is suppressed, either
76 -- by an active scope suppress setting, or because the check has been
77 -- specifically suppressed for the given entity. If no entity is relevant
78 -- for the current check, then Empty is used as an argument. Note: the
79 -- reason we insist on specifying Empty is to force the caller to think
80 -- about whether there is any relevant entity that should be checked.
82 function Is_Check_Suppressed (E : Entity_Id; C : Check_Id) return Boolean;
83 -- This function is called if Checks_May_Be_Suppressed (E) is True to
84 -- determine whether check C is suppressed either on the entity E or
85 -- as the result of a scope suppress pragma. If Checks_May_Be_Suppressed
86 -- is False, then the status of the check can be determined simply by
87 -- examining Scope_Suppress, so this routine is not called in that case.
89 function Overflow_Check_Mode return Overflow_Mode_Type;
90 -- Returns current overflow checking mode, taking into account whether
91 -- we are inside an assertion expression and the assertion policy.
93 -----------------------------------------
94 -- Control of Alignment Check Warnings --
95 -----------------------------------------
97 -- When we have address clauses, there is an issue of whether the address
98 -- specified is appropriate to the alignment. In the general case where the
99 -- address is dynamic, we generate a check and a possible warning (this
100 -- warning occurs for example if we have a restricted runtime with the
101 -- restriction No_Exception_Propagation). We also issue this warning in
102 -- the case where the address is static, but we don't know the alignment
103 -- at the time we process the address clause. In such a case, we issue the
104 -- warning, but we may be able to find out later (after the back end has
105 -- annotated the actual alignment chosen) that the warning was not needed.
107 -- To deal with deleting these potentially annoying warnings, we save the
108 -- warning information in a table, and then delete the warnings in the
109 -- post compilation validation stage if we can tell that the check would
110 -- never fail (in general the back end will also optimize away the check
111 -- in such cases).
113 -- Table used to record information
115 type Alignment_Warnings_Record is record
116 E : Entity_Id;
117 -- Entity whose alignment possibly warrants a warning
119 A : Uint;
120 -- Compile time known value of address clause for which the alignment
121 -- is to be checked once we know the alignment.
123 P : Node_Id;
124 -- Prefix of address clause when it is of the form X'Address
126 W : Error_Msg_Id;
127 -- Id of warning message we might delete
128 end record;
130 package Alignment_Warnings is new Table.Table (
131 Table_Component_Type => Alignment_Warnings_Record,
132 Table_Index_Type => Int,
133 Table_Low_Bound => 0,
134 Table_Initial => 10,
135 Table_Increment => 200,
136 Table_Name => "Alignment_Warnings");
138 procedure Validate_Alignment_Check_Warnings;
139 -- This routine is called after back annotation of type data to delete any
140 -- alignment warnings that turn out to be false alarms, based on knowing
141 -- the actual alignment, and a compile-time known alignment value.
143 -------------------------------------------
144 -- Procedures to Activate Checking Flags --
145 -------------------------------------------
147 procedure Activate_Division_Check (N : Node_Id);
148 pragma Inline (Activate_Division_Check);
149 -- Sets Do_Division_Check flag in node N, and handles possible local raise.
150 -- Always call this routine rather than calling Set_Do_Division_Check to
151 -- set an explicit value of True, to ensure handling the local raise case.
153 procedure Activate_Overflow_Check (N : Node_Id);
154 pragma Inline (Activate_Overflow_Check);
155 -- Sets Do_Overflow_Check flag in node N, and handles possible local raise.
156 -- Always call this routine rather than calling Set_Do_Overflow_Check to
157 -- set an explicit value of True, to ensure handling the local raise case.
158 -- Note that for discrete types, this call has no effect for MOD, REM, and
159 -- unary "+" for which overflow is never possible in any case.
161 -- Note: for the discrete-type case, it is legitimate to call this routine
162 -- on an unanalyzed node where the Etype field is not set. However, for the
163 -- floating-point case, Etype must be set (to a floating-point type).
165 -- For floating-point, we set the flag if we have automatic overflow checks
166 -- on the target, or if Check_Float_Overflow mode is set. For the floating-
167 -- point case, we ignore all the unary operators ("+", "-", and abs) since
168 -- none of these can result in overflow. If there are no overflow checks on
169 -- the target, and Check_Float_Overflow mode is not set, then the call has
170 -- no effect, since in such cases we want to generate NaN's and infinities.
172 procedure Activate_Range_Check (N : Node_Id);
173 pragma Inline (Activate_Range_Check);
174 -- Sets Do_Range_Check flag in node N, and handles possible local raise.
175 -- Always call this routine rather than calling Set_Do_Range_Check to
176 -- set an explicit value of True, to ensure handling the local raise case.
178 --------------------------------
179 -- Procedures to Apply Checks --
180 --------------------------------
182 -- General note on following checks. These checks are always active if
183 -- Expander_Active and not Inside_A_Generic. They are inactive and have
184 -- no effect Inside_A_Generic. In the case where not Expander_Active
185 -- and not Inside_A_Generic, most of them are inactive, but some of them
186 -- operate anyway since they may generate useful compile time warnings.
188 procedure Apply_Access_Check (N : Node_Id);
189 -- Determines whether an expression node requires a run-time access
190 -- check and if so inserts the appropriate run-time check.
192 procedure Apply_Accessibility_Check
193 (N : Node_Id;
194 Typ : Entity_Id;
195 Insert_Node : Node_Id);
196 -- Given a name N denoting an access parameter, emits a run-time
197 -- accessibility check (if necessary), checking that the level of
198 -- the object denoted by the access parameter is not deeper than the
199 -- level of the type Typ. Program_Error is raised if the check fails.
200 -- Insert_Node indicates the node where the check should be inserted.
202 procedure Apply_Address_Clause_Check (E : Entity_Id; N : Node_Id);
203 -- E is the entity for an object which has an address clause. If checks
204 -- are enabled, then this procedure generates a check that the specified
205 -- address has an alignment consistent with the alignment of the object,
206 -- raising PE if this is not the case. The resulting check (if one is
207 -- generated) is prepended to the Actions list of N_Freeze_Entity node N.
208 -- Note that the check references E'Alignment, so it cannot be emitted
209 -- before N (its freeze node), otherwise this would cause an illegal
210 -- access before elaboration error in gigi. For the case of a clear overlay
211 -- situation, we also check that the size of the overlaying object is not
212 -- larger than the overlaid object.
214 procedure Apply_Arithmetic_Overflow_Check (N : Node_Id);
215 -- Handle overflow checking for an arithmetic operator. Also handles the
216 -- cases of ELIMINATED and MINIMIZED overflow checking mode. If the mode
217 -- is one of the latter two, then this routine can also be called with
218 -- an if or case expression node to make sure that we properly handle
219 -- overflow checking for dependent expressions. This routine handles
220 -- front end vs back end overflow checks (in the front end case it expands
221 -- the necessary check). Note that divide is handled separately using
222 -- Apply_Divide_Checks. Node N may or may not have Do_Overflow_Check.
223 -- In STRICT mode, there is nothing to do if this flag is off, but in
224 -- MINIMIZED/ELIMINATED mode we still have to deal with possible use
225 -- of doing operations in Long_Long_Integer or Bignum mode.
227 procedure Apply_Constraint_Check
228 (N : Node_Id;
229 Typ : Entity_Id;
230 No_Sliding : Boolean := False);
231 -- Top-level procedure, calls all the others depending on the class of
232 -- Typ. Checks that expression N satisfies the constraint of type Typ.
233 -- No_Sliding is only relevant for constrained array types, if set to
234 -- True, it checks that indexes are in range.
236 procedure Apply_Discriminant_Check
237 (N : Node_Id;
238 Typ : Entity_Id;
239 Lhs : Node_Id := Empty);
240 -- Given an expression N of a discriminated type, or of an access type
241 -- whose designated type is a discriminanted type, generates a check to
242 -- ensure that the expression can be converted to the subtype given as
243 -- the second parameter. Lhs is empty except in the case of assignments,
244 -- where the target object may be needed to determine the subtype to
245 -- check against (such as the cases of unconstrained formal parameters
246 -- and unconstrained aliased objects). For the case of unconstrained
247 -- formals, the check is performed only if the corresponding actual is
248 -- constrained, i.e., whether Lhs'Constrained is True.
250 procedure Apply_Divide_Checks (N : Node_Id);
251 -- The node kind is N_Op_Divide, N_Op_Mod, or N_Op_Rem if either of the
252 -- flags Do_Division_Check or Do_Overflow_Check is set, then this routine
253 -- ensures that the appropriate checks are made. Note that overflow can
254 -- occur in the signed case for the case of the largest negative number
255 -- divided by minus one. This procedure only applies to Integer types.
257 procedure Apply_Parameter_Aliasing_Checks
258 (Call : Node_Id;
259 Subp : Entity_Id);
260 -- Given a subprogram call Call, add a check to verify that none of the
261 -- actuals overlap. Subp denotes the subprogram being called.
263 procedure Apply_Parameter_Validity_Checks (Subp : Entity_Id);
264 -- Given a subprogram Subp, add both a pre and post condition pragmas that
265 -- verify the proper initialization of scalars in parameters and function
266 -- results.
268 procedure Apply_Predicate_Check
269 (N : Node_Id;
270 Typ : Entity_Id;
271 Fun : Entity_Id := Empty);
272 -- N is an expression to which a predicate check may need to be applied for
273 -- Typ, if Typ has a predicate function. When N is an actual in a call, Fun
274 -- is the function being called, which is used to generate a better warning
275 -- if the call leads to an infinite recursion.
277 procedure Apply_Type_Conversion_Checks (N : Node_Id);
278 -- N is an N_Type_Conversion node. A type conversion actually involves
279 -- two sorts of checks. The first check is the checks that ensures that
280 -- the operand in the type conversion fits onto the base type of the
281 -- subtype it is being converted to (see RM 4.6 (28)-(50)). The second
282 -- check is there to ensure that once the operand has been converted to
283 -- a value of the target type, this converted value meets the
284 -- constraints imposed by the target subtype (see RM 4.6 (51)).
286 procedure Apply_Universal_Integer_Attribute_Checks (N : Node_Id);
287 -- The argument N is an attribute reference node intended for processing
288 -- by gigi. The attribute is one that returns a universal integer, but
289 -- the attribute reference node is currently typed with the expected
290 -- result type. This routine deals with range and overflow checks needed
291 -- to make sure that the universal result is in range.
293 function Build_Discriminant_Checks
294 (N : Node_Id;
295 T_Typ : Entity_Id)
296 return Node_Id;
297 -- Subsidiary routine for Apply_Discriminant_Check. Builds the expression
298 -- that compares discriminants of the expression with discriminants of the
299 -- type. Also used directly for membership tests (see Exp_Ch4.Expand_N_In).
301 function Convert_From_Bignum (N : Node_Id) return Node_Id;
302 -- Returns result of converting node N from Bignum. The returned value is
303 -- not analyzed, the caller takes responsibility for this. Node N must be
304 -- a subexpression node of type Bignum. The result is Long_Long_Integer.
306 function Convert_To_Bignum (N : Node_Id) return Node_Id;
307 -- Returns result of converting node N to Bignum. The returned value is not
308 -- analyzed, the caller takes responsibility for this. Node N must be a
309 -- subexpression node of a signed integer type or Bignum type (if it is
310 -- already a Bignum, the returned value is Relocate_Node (N)).
312 procedure Determine_Range
313 (N : Node_Id;
314 OK : out Boolean;
315 Lo : out Uint;
316 Hi : out Uint;
317 Assume_Valid : Boolean := False);
318 -- N is a node for a subexpression. If N is of a discrete type with no
319 -- error indications, and no other peculiarities (e.g. missing Etype),
320 -- then OK is True on return, and Lo and Hi are set to a conservative
321 -- estimate of the possible range of values of N. Thus if OK is True on
322 -- return, the value of the subexpression N is known to lie in the range
323 -- Lo .. Hi (inclusive). For enumeration and character literals the values
324 -- returned are the Pos value in the relevant enumeration type. If the
325 -- expression is not of a discrete type, or some kind of error condition
326 -- is detected, then OK is False on exit, and Lo/Hi are set to No_Uint.
327 -- Thus the significance of OK being False on return is that no useful
328 -- information is available on the range of the expression. Assume_Valid
329 -- determines whether the processing is allowed to assume that values are
330 -- in range of their subtypes. If it is set to True, then this assumption
331 -- is valid, if False, then processing is done using base types to allow
332 -- invalid values.
334 procedure Determine_Range_R
335 (N : Node_Id;
336 OK : out Boolean;
337 Lo : out Ureal;
338 Hi : out Ureal;
339 Assume_Valid : Boolean := False);
340 -- Similar to Determine_Range, but for a node N of floating-point type. OK
341 -- is True on return only for IEEE floating-point types and only if we do
342 -- not have to worry about extended precision (i.e. on the x86, we must be
343 -- using -msse2 -mfpmath=sse). At the current time, this is used only in
344 -- GNATprove, though we could consider using it more generally in future.
345 -- For that to happen, the possibility of arguments of infinite or NaN
346 -- value should be taken into account, which is not the case currently.
348 procedure Determine_Range_To_Discrete
349 (N : Node_Id;
350 OK : out Boolean;
351 Lo : out Uint;
352 Hi : out Uint;
353 Fixed_Int : Boolean := False;
354 Assume_Valid : Boolean := False);
355 -- Similar to Determine_Range, but attempts to return a discrete range even
356 -- if N is not of a discrete type by doing a conversion. The Fixed_Int flag
357 -- if set causes any fixed-point values to be treated as though they were
358 -- discrete values (i.e. the underlying integer value is used), in which
359 -- case no conversion is needed. At the current time, this is used only for
360 -- discrete types, for fixed-point types if Fixed_Int is set, and also for
361 -- floating-point types in GNATprove, see Determine_Range_R above.
363 procedure Install_Null_Excluding_Check (N : Node_Id);
364 -- Determines whether an access node requires a run-time access check and
365 -- if so inserts the appropriate run-time check.
367 procedure Install_Primitive_Elaboration_Check (Subp_Body : Node_Id);
368 -- Insert a check to ensure that subprogram body Subp_Body has been
369 -- properly elaborated. The check is installed only when Subp_Body is the
370 -- body of a nonabstract library-level primitive of a tagged type. Further
371 -- restrictions may apply, see the body for details.
373 function Make_Bignum_Block (Loc : Source_Ptr) return Node_Id;
374 -- This function is used by top level overflow checking routines to do a
375 -- mark/release operation on the secondary stack around bignum operations.
376 -- The block created looks like:
378 -- declare
379 -- M : Mark_Id := SS_Mark;
380 -- begin
381 -- SS_Release (M);
382 -- end;
384 -- The idea is that the caller will insert any needed extra declarations
385 -- after the declaration of M, and any needed statements (in particular
386 -- the bignum operations) before the call to SS_Release, and then do an
387 -- Insert_Action of the whole block (it is returned unanalyzed). The Loc
388 -- parameter is used to supply Sloc values for the constructed tree.
390 procedure Minimize_Eliminate_Overflows
391 (N : Node_Id;
392 Lo : out Uint;
393 Hi : out Uint;
394 Top_Level : Boolean);
395 -- This is the main routine for handling MINIMIZED and ELIMINATED overflow
396 -- processing. On entry N is a node whose result is a signed integer
397 -- subtype. The Do_Overflow_Check flag may or may not be set on N. If the
398 -- node is an arithmetic operation, then a range analysis is carried out,
399 -- and there are three possibilities:
401 -- The node is left unchanged (apart from expansion of an exponentiation
402 -- operation). This happens if the routine can determine that the result
403 -- is definitely in range. The Do_Overflow_Check flag is turned off in
404 -- this case.
406 -- The node is transformed into an arithmetic operation with a result
407 -- type of Long_Long_Integer.
409 -- The node is transformed into a function call that calls an appropriate
410 -- function in the System.Bignums package to compute a Bignum result.
412 -- In the first two cases, Lo and Hi are set to the bounds of the possible
413 -- range of results, computed as accurately as possible. In the third case
414 -- Lo and Hi are set to No_Uint (there are some cases where we could get an
415 -- advantage from keeping result ranges for Bignum values, but it could use
416 -- a lot of space and is very unlikely to be valuable).
418 -- If the node is not an arithmetic operation, then it is unchanged but
419 -- Lo and Hi are still set (to the bounds of the result subtype if nothing
420 -- better can be determined).
422 -- Note: this function is recursive, if called with an arithmetic operator,
423 -- recursive calls are made to process the operands using this procedure.
424 -- So we end up doing things top down. Nothing happens to an arithmetic
425 -- expression until this procedure is called on the top level node and
426 -- then the recursive calls process all the children. We have to do it
427 -- this way. If we try to do it bottom up in natural expansion order, then
428 -- there are two problems. First, where do we stash the bounds, and more
429 -- importantly, semantic processing will be messed up. Consider A+B+C where
430 -- A,B,C are all of type integer, if we processed A+B before doing semantic
431 -- analysis of the addition of this result to C, that addition could end up
432 -- with a Long_Long_Integer left operand and an Integer right operand, and
433 -- we would get a semantic error.
435 -- The routine is called in three situations if we are operating in either
436 -- MINIMIZED or ELIMINATED modes.
438 -- Overflow processing applied to the top node of an expression tree when
439 -- that node is an arithmetic operator. In this case the result is
440 -- converted to the appropriate result type (there is special processing
441 -- when the parent is a conversion, see body for details).
443 -- Overflow processing applied to the operands of a comparison operation.
444 -- In this case, the comparison is done on the result Long_Long_Integer
445 -- or Bignum values, without raising any exceptions.
447 -- Overflow processing applied to the left operand of a membership test.
448 -- In this case no exception is raised if a Long_Long_Integer or Bignum
449 -- result is outside the range of the type of that left operand (it is
450 -- just that the result of IN is false in that case).
452 -- Note that if Bignum values appear, the caller must take care of doing
453 -- the appropriate mark/release operations on the secondary stack.
455 -- Top_Level is used to avoid inefficient unnecessary transitions into the
456 -- Bignum domain. If Top_Level is True, it means that the caller will have
457 -- to convert any Bignum value back to Long_Long_Integer, possibly checking
458 -- that the value is in range. This is the normal case for a top level
459 -- operator in a subexpression. There is no point in going into Bignum mode
460 -- to avoid an overflow just so we can check for overflow the next moment.
461 -- For calls from comparisons and membership tests, and for all recursive
462 -- calls, we do want to transition into the Bignum domain if necessary.
463 -- Note that this setting is only relevant in ELIMINATED mode.
465 -------------------------------------------------------
466 -- Control and Optimization of Range/Overflow Checks --
467 -------------------------------------------------------
469 -- Range checks are controlled by the Do_Range_Check flag. The front end
470 -- is responsible for setting this flag in relevant nodes. Originally the
471 -- back end generated all the corresponding range checks, but later on we
472 -- decided to generate all the range checks in the front end and this is
473 -- the current situation.
475 -- Overflow checks are similarly controlled by the Do_Overflow_Check flag.
476 -- The difference here is that if back end overflow checks are inactive
477 -- (Backend_Overflow_Checks_On_Target set False), then the actual overflow
478 -- checks are generated by the front end, but if back end overflow checks
479 -- are active (Backend_Overflow_Checks_On_Target set True), then the back
480 -- end does generate the checks.
482 -- The following two routines are used to set these flags, they allow
483 -- for the possibility of eliminating checks. Checks can be eliminated
484 -- if an identical check has already been performed.
486 procedure Enable_Overflow_Check (N : Node_Id);
487 -- First this routine determines if an overflow check is needed by doing
488 -- an appropriate range check. If a check is not needed, then the call
489 -- has no effect. If a check is needed then this routine sets the flag
490 -- Do_Overflow_Check in node N to True, unless it can be determined that
491 -- the check is not needed. The only condition under which this is the
492 -- case is if there was an identical check earlier on.
494 procedure Enable_Range_Check (N : Node_Id);
495 -- Set Do_Range_Check flag in node N True, unless it can be determined
496 -- that the check is not needed. The only condition under which this is
497 -- the case is if there was an identical check earlier on. This routine
498 -- is not responsible for doing range analysis to determine whether or
499 -- not such a check is needed -- the caller is expected to do this. The
500 -- one other case in which the request to set the flag is ignored is
501 -- when Kill_Range_Check is set in an N_Unchecked_Conversion node.
503 -- The following routines are used to keep track of processing sequences
504 -- of statements (e.g. the THEN statements of an IF statement). A check
505 -- that appears within such a sequence can eliminate an identical check
506 -- within this sequence of statements. However, after the end of the
507 -- sequence of statements, such a check is no longer of interest, since
508 -- it may not have been executed.
510 procedure Conditional_Statements_Begin;
511 -- This call marks the start of processing of a sequence of statements.
512 -- Every call to this procedure must be followed by a matching call to
513 -- Conditional_Statements_End.
515 procedure Conditional_Statements_End;
516 -- This call removes from consideration all saved checks since the
517 -- corresponding call to Conditional_Statements_Begin. These two
518 -- procedures operate in a stack like manner.
520 -- The mechanism for optimizing checks works by remembering checks
521 -- that have already been made, but certain conditions, for example
522 -- an assignment to a variable involved in a check, may mean that the
523 -- remembered check is no longer valid, in the sense that if the same
524 -- expression appears again, another check is required because the
525 -- value may have changed.
527 -- The following routines are used to note conditions which may render
528 -- some or all of the stored and remembered checks to be invalidated.
530 procedure Kill_Checks (V : Entity_Id);
531 -- This procedure records an assignment or other condition that causes
532 -- the value of the variable to be changed, invalidating any stored
533 -- checks that reference the value. Note that all such checks must
534 -- be discarded, even if they are not in the current statement range.
536 procedure Kill_All_Checks;
537 -- This procedure kills all remembered checks
539 -----------------------------
540 -- Length and Range Checks --
541 -----------------------------
543 -- In the following procedures, there are three arguments which have
544 -- a common meaning as follows:
546 -- Expr The expression to be checked. If a check is required,
547 -- the appropriate flag will be placed on this node. Whether
548 -- this node is further examined depends on the setting of
549 -- the parameter Source_Typ, as described below.
551 -- Target_Typ The target type on which the check is to be based. For
552 -- example, if we have a scalar range check, then the check
553 -- is that we are in range of this type.
555 -- Source_Typ Normally Empty, but can be set to a type, in which case
556 -- this type is used for the check, see below.
558 -- The checks operate in one of two modes:
560 -- If Source_Typ is Empty, then the node Expr is examined, at the very
561 -- least to get the source subtype. In addition for some of the checks,
562 -- the actual form of the node may be examined. For example, a node of
563 -- type Integer whose actual form is an Integer conversion from a type
564 -- with range 0 .. 3 can be determined to have a value in range 0 .. 3.
566 -- If Source_Typ is given, then nothing can be assumed about the Expr,
567 -- and indeed its contents are not examined. In this case the check is
568 -- based on the assumption that Expr can be an arbitrary value of the
569 -- given Source_Typ.
571 -- Currently, the only case in which a Source_Typ is explicitly supplied
572 -- is for the case of Out and In_Out parameters, where, for the conversion
573 -- on return (the Out direction), the types must be reversed. This is
574 -- handled by the caller.
576 procedure Apply_Length_Check
577 (Expr : Node_Id;
578 Target_Typ : Entity_Id;
579 Source_Typ : Entity_Id := Empty);
580 -- This procedure builds a sequence of declarations to do a length check
581 -- that checks if the lengths of the two arrays Target_Typ and source type
582 -- are the same. The resulting actions are inserted at Node using a call
583 -- to Insert_Actions.
585 -- For access types, the Directly_Designated_Type is retrieved and
586 -- processing continues as enumerated above, with a guard against null
587 -- values.
589 -- Note: calls to Apply_Length_Check currently never supply an explicit
590 -- Source_Typ parameter, but Apply_Length_Check takes this parameter and
591 -- processes it as described above for consistency with the other routines
592 -- in this section.
594 procedure Apply_Length_Check_On_Assignment
595 (Expr : Node_Id;
596 Target_Typ : Entity_Id;
597 Target : Node_Id;
598 Source_Typ : Entity_Id := Empty);
599 -- Similar to Apply_Length_Check, but takes the target of an assignment for
600 -- which the check is to be done. Used to filter out specific cases where
601 -- the check is superfluous.
603 procedure Apply_Static_Length_Check
604 (Expr : Node_Id;
605 Target_Typ : Entity_Id;
606 Source_Typ : Entity_Id := Empty);
607 -- Tries to determine statically whether the two array types source type
608 -- and Target_Typ have the same length. If it can be determined at compile
609 -- time that they do not, then an N_Raise_Constraint_Error node replaces
610 -- Expr, and a warning message is issued.
612 procedure Apply_Range_Check
613 (Expr : Node_Id;
614 Target_Typ : Entity_Id;
615 Source_Typ : Entity_Id := Empty;
616 Insert_Node : Node_Id := Empty);
617 -- For a Node of kind N_Range, constructs a range check action that tests
618 -- first that the range is not null and then that the range is contained in
619 -- the Target_Typ range.
621 -- For scalar types, constructs a range check action that first tests that
622 -- the expression is contained in the Target_Typ range. The difference
623 -- between this and Apply_Scalar_Range_Check is that the latter generates
624 -- the actual checking code against the Etype of the expression.
626 -- For constrained array types, construct series of range check actions
627 -- to check that each Expr range is properly contained in the range of
628 -- Target_Typ.
630 -- For a type conversion to an unconstrained array type, constructs a range
631 -- check action to check that the bounds of the source type are within the
632 -- constraints imposed by the Target_Typ.
634 -- For access types, the Directly_Designated_Type is retrieved and
635 -- processing continues as enumerated above, with a guard against null
636 -- values.
638 -- The source type is used by type conversions to unconstrained array
639 -- types to retrieve the corresponding bounds.
641 -- Insert_Node indicates the node where the check should be inserted.
642 -- If it is empty, then the check is inserted directly at Expr instead.
644 procedure Apply_Scalar_Range_Check
645 (Expr : Node_Id;
646 Target_Typ : Entity_Id;
647 Source_Typ : Entity_Id := Empty;
648 Fixed_Int : Boolean := False);
649 -- For scalar types, determines whether an expression node should be
650 -- flagged as needing a run-time range check. If the node requires such a
651 -- check, the Do_Range_Check flag is turned on. The Fixed_Int flag if set
652 -- causes any fixed-point values to be treated as though they were discrete
653 -- values (i.e. the underlying integer value is used).
655 type Check_Result is private;
656 -- Type used to return result of Get_Range_Checks call, for later use in
657 -- call to Insert_Range_Checks procedure.
659 function Get_Range_Checks
660 (Expr : Node_Id;
661 Target_Typ : Entity_Id;
662 Source_Typ : Entity_Id := Empty;
663 Warn_Node : Node_Id := Empty) return Check_Result;
664 -- Like Apply_Range_Check, except it does not modify anything. Instead
665 -- it returns an encapsulated result of the check operations for later
666 -- use in a call to Insert_Range_Checks. If Warn_Node is non-empty, its
667 -- Sloc is used, in the static case, for the generated warning or error.
668 -- Additionally, it is used rather than Expr (or Low/High_Bound of Expr)
669 -- in constructing the check.
671 procedure Append_Range_Checks
672 (Checks : Check_Result;
673 Stmts : List_Id;
674 Suppress_Typ : Entity_Id;
675 Static_Sloc : Source_Ptr);
676 -- Called to append range checks as returned by a call to Get_Range_Checks.
677 -- Stmts is a list to which either the dynamic check is appended or the
678 -- raise Constraint_Error statement is appended (for static checks).
679 -- Suppress_Typ is the type to check to determine if checks are suppressed.
680 -- Static_Sloc is the Sloc at which the raise CE node points.
682 procedure Insert_Range_Checks
683 (Checks : Check_Result;
684 Node : Node_Id;
685 Suppress_Typ : Entity_Id;
686 Static_Sloc : Source_Ptr;
687 Do_Before : Boolean := False);
688 -- Called to insert range checks as returned by a call to Get_Range_Checks.
689 -- Node is the node after which either the dynamic check is inserted or
690 -- the raise Constraint_Error statement is inserted (for static checks).
691 -- Suppress_Typ is the type to check to determine if checks are suppressed.
692 -- Static_Sloc is the Sloc at which the raise CE node points. Normally the
693 -- checks are inserted after Node; if Do_Before is True, they are before.
695 -----------------------
696 -- Expander Routines --
697 -----------------------
699 -- In most cases, the processing for range checks done by semantic analysis
700 -- only results in setting the Do_Range_Check flag, rather than actually
701 -- generating checks. The following routines must be called later on in the
702 -- expansion process upon seeing the Do_Range_Check flag; they generate the
703 -- actual checks and reset the flag. The remaining cases where range checks
704 -- are still directly generated during semantic analysis occur as part of
705 -- the processing of constraints in (sub)type and object declarations.
707 procedure Generate_Range_Check
708 (N : Node_Id;
709 Target_Type : Entity_Id;
710 Reason : RT_Exception_Code);
711 -- This procedure is called to actually generate and insert a range check.
712 -- A check is generated to ensure that the value of N lies within the range
713 -- of the target type. Note that the base type of N may be different from
714 -- the base type of the target type. This happens in the conversion case.
715 -- The Reason parameter is the exception code to be used for the exception
716 -- if raised.
718 -- Note: if the expander is not active, or if we are in GNATprove mode,
719 -- then we do not generate explicit range checks. Instead we just turn the
720 -- Do_Range_Check flag on, since in these cases that's what we want to see
721 -- in the tree (GNATprove in particular depends on this flag being set). If
722 -- we generate the actual range checks, then we make sure the flag is off
723 -- afterward, since the code we generate takes complete care of the checks.
725 -- Historical note: We used to just pass on the Do_Range_Check flag to the
726 -- back end to generate the check, but now in code-generation mode we never
727 -- have this flag set, since the front end takes care of the check. The
728 -- normal processing flow now is that the analyzer typically turns on the
729 -- Do_Range_Check flag, and if it is set, this routine is called, which
730 -- turns the flag off in code-generation mode.
732 procedure Generate_Index_Checks
733 (N : Node_Id;
734 Checks_Generated : out Dimension_Set);
735 -- This procedure is called to generate index checks on the subscripts for
736 -- the indexed component node N. Each subscript expression is examined, and
737 -- if the Do_Range_Check flag is set, an appropriate index check is
738 -- generated and the flag is reset.
739 -- The out-mode parameter Checks_Generated indicates the dimensions for
740 -- which checks were generated. Checks_Generated.Dimensions must match
741 -- the number of dimensions of the array type.
743 -- Similarly, we set the flag Do_Discriminant_Check in the semantic
744 -- analysis to indicate that a discriminant check is required for selected
745 -- component of a discriminated type. The following routine is called from
746 -- the expander to actually generate the call.
748 procedure Generate_Discriminant_Check (N : Node_Id);
749 -- N is a selected component for which a discriminant check is required to
750 -- make sure that the discriminants have appropriate values for the
751 -- selection. This is done by calling the appropriate discriminant checking
752 -- routine for the selector.
754 -----------------------
755 -- Validity Checking --
756 -----------------------
758 -- In (RM 13.9.1(9-11)) we have the following rules on invalid values
760 -- If the representation of a scalar object does not represent value of
761 -- the object's subtype (perhaps because the object was not initialized),
762 -- the object is said to have an invalid representation. It is a bounded
763 -- error to evaluate the value of such an object. If the error is
764 -- detected, either Constraint_Error or Program_Error is raised.
765 -- Otherwise, execution continues using the invalid representation. The
766 -- rules of the language outside this subclause assume that all objects
767 -- have valid representations. The semantics of operations on invalid
768 -- representations are as follows:
770 -- 10 If the representation of the object represents a value of the
771 -- object's type, the value of the type is used.
773 -- 11 If the representation of the object does not represent a value
774 -- of the object's type, the semantics of operations on such
775 -- representations is implementation-defined, but does not by
776 -- itself lead to erroneous or unpredictable execution, or to
777 -- other objects becoming abnormal.
779 -- We quote the rules in full here since they are quite delicate. Most
780 -- of the time, we can just compute away with wrong values, and get a
781 -- possibly wrong result, which is well within the range of allowed
782 -- implementation defined behavior. The two tricky cases are subscripted
783 -- array assignments, where we don't want to do wild stores, and case
784 -- statements where we don't want to do wild jumps.
786 -- In GNAT, we control validity checking with a switch -gnatV that can take
787 -- three parameters, n/d/f for None/Default/Full. These modes have the
788 -- following meanings:
790 -- None (no validity checking)
792 -- In this mode, there is no specific checking for invalid values
793 -- and the code generator assumes that all stored values are always
794 -- within the bounds of the object subtype. The consequences are as
795 -- follows:
797 -- For case statements, an out of range invalid value will cause
798 -- Constraint_Error to be raised, or an arbitrary one of the case
799 -- alternatives will be executed. Wild jumps cannot result even
800 -- in this mode, since we always do a range check
802 -- For subscripted array assignments, wild stores will result in
803 -- the expected manner when addresses are calculated using values
804 -- of subscripts that are out of range.
806 -- It could perhaps be argued that this mode is still conformant with
807 -- the letter of the RM, since implementation defined is a rather
808 -- broad category, but certainly it is not in the spirit of the
809 -- RM requirement, since wild stores certainly seem to be a case of
810 -- erroneous behavior.
812 -- Default (default standard RM-compatible validity checking)
814 -- In this mode, which is the default, minimal validity checking is
815 -- performed to ensure no erroneous behavior as follows:
817 -- For case statements, an out of range invalid value will cause
818 -- Constraint_Error to be raised.
820 -- For subscripted array assignments, invalid out of range
821 -- subscript values will cause Constraint_Error to be raised.
823 -- Full (Full validity checking)
825 -- In this mode, the protections guaranteed by the standard mode are
826 -- in place, and the following additional checks are made:
828 -- For every assignment, the right side is checked for validity
830 -- For every call, IN and IN OUT parameters are checked for validity
832 -- For every subscripted array reference, both for stores and loads,
833 -- all subscripts are checked for validity.
835 -- These checks are not required by the RM, but will in practice
836 -- improve the detection of uninitialized variables, particularly
837 -- if used in conjunction with pragma Normalize_Scalars.
839 -- In the above description, we talk about performing validity checks,
840 -- but we don't actually generate a check in a case where the compiler
841 -- can be sure that the value is valid. Note that this assurance must
842 -- be achieved without assuming that any uninitialized value lies within
843 -- the range of its type. The following are cases in which values are
844 -- known to be valid. The flag Is_Known_Valid is used to keep track of
845 -- some of these cases.
847 -- If all possible stored values are valid, then any uninitialized
848 -- value must be valid.
850 -- Literals, including enumeration literals, are clearly always valid
852 -- Constants are always assumed valid, with a validity check being
853 -- performed on the initializing value where necessary to ensure that
854 -- this is the case.
856 -- For variables, the status is set to known valid if there is an
857 -- initializing expression. Again a check is made on the initializing
858 -- value if necessary to ensure that this assumption is valid. The
859 -- status can change as a result of local assignments to a variable.
860 -- If a known valid value is unconditionally assigned, then we mark
861 -- the left side as known valid. If a value is assigned that is not
862 -- known to be valid, then we mark the left side as invalid. This
863 -- kind of processing does NOT apply to non-local variables since we
864 -- are not following the flow graph (more properly the flow of actual
865 -- processing only corresponds to the flow graph for local assignments).
866 -- For non-local variables, we preserve the current setting, i.e. a
867 -- validity check is performed when assigning to a known valid global.
869 -- Note: no validity checking is required if range checks are suppressed
870 -- regardless of the setting of the validity checking mode.
872 -- The following procedures are used in handling validity checking
874 procedure Apply_Subscript_Validity_Checks
875 (Expr : Node_Id;
876 No_Check_Needed : Dimension_Set := Empty_Dimension_Set);
877 -- Expr is the node for an indexed component. If validity checking and
878 -- range checking are enabled, each subscript for this indexed component
879 -- whose dimension does not belong to the No_Check_Needed set is checked
880 -- for validity. No_Check_Needed.Dimensions must match the number of
881 -- dimensions of the array type or be zero.
883 procedure Check_Valid_Lvalue_Subscripts (Expr : Node_Id);
884 -- Expr is a lvalue, i.e. an expression representing the target of an
885 -- assignment. This procedure checks for this expression involving an
886 -- assignment to an array value. We have to be sure that all the subscripts
887 -- in such a case are valid, since according to the rules in (RM
888 -- 13.9.1(9-11)) such assignments are not permitted to result in erroneous
889 -- behavior in the case of invalid subscript values.
891 procedure Ensure_Valid
892 (Expr : Node_Id;
893 Holes_OK : Boolean := False;
894 Related_Id : Entity_Id := Empty;
895 Is_Low_Bound : Boolean := False;
896 Is_High_Bound : Boolean := False);
897 -- Ensure that Expr represents a valid value of its type. If this type
898 -- is not a scalar type, then the call has no effect, since validity
899 -- is only an issue for scalar types. The effect of this call is to
900 -- check if the value is known valid, if so, nothing needs to be done.
901 -- If this is not known, then either Expr is set to be range checked,
902 -- or specific checking code is inserted so that an exception is raised
903 -- if the value is not valid.
905 -- The optional argument Holes_OK indicates whether it is necessary to
906 -- worry about enumeration types with non-standard representations leading
907 -- to "holes" in the range of possible representations. If Holes_OK is
908 -- True, then such values are assumed valid (this is used when the caller
909 -- will make a separate check for this case anyway). If Holes_OK is False,
910 -- then this case is checked, and code is inserted to ensure that Expr is
911 -- valid, raising Constraint_Error if the value is not valid.
913 -- Related_Id denotes the entity of the context where Expr appears. Flags
914 -- Is_Low_Bound and Is_High_Bound specify whether the expression to check
915 -- is the low or the high bound of a range. These three optional arguments
916 -- signal Remove_Side_Effects to create an external symbol of the form
917 -- Chars (Related_Id)_FIRST/_LAST. For suggested use of these parameters
918 -- see the warning in the body of Sem_Ch3.Process_Range_Expr_In_Decl.
920 function Expr_Known_Valid (Expr : Node_Id) return Boolean;
921 -- This function tests it the value of Expr is known to be valid in the
922 -- sense of RM 13.9.1(9-11). In the case of GNAT, it is only discrete types
923 -- which are a concern, since for non-discrete types we simply continue
924 -- computation with invalid values, which does not lead to erroneous
925 -- behavior. Thus Expr_Known_Valid always returns True if the type of Expr
926 -- is non-discrete. For discrete types the value returned is True only if
927 -- it can be determined that the value is Valid. Otherwise False is
928 -- returned.
930 procedure Insert_Valid_Check
931 (Expr : Node_Id;
932 Related_Id : Entity_Id := Empty;
933 Is_Low_Bound : Boolean := False;
934 Is_High_Bound : Boolean := False);
935 -- Inserts code that will check for the value of Expr being valid, in the
936 -- sense of the 'Valid attribute returning True. Constraint_Error will be
937 -- raised if the value is not valid.
939 -- Related_Id denotes the entity of the context where Expr appears. Flags
940 -- Is_Low_Bound and Is_High_Bound specify whether the expression to check
941 -- is the low or the high bound of a range. These three optional arguments
942 -- signal Remove_Side_Effects to create an external symbol of the form
943 -- Chars (Related_Id)_FIRST/_LAST. For suggested use of these parameters
944 -- see the warning in the body of Sem_Ch3.Process_Range_Expr_In_Decl.
946 procedure Null_Exclusion_Static_Checks
947 (N : Node_Id;
948 Comp : Node_Id := Empty;
949 Array_Comp : Boolean := False);
950 -- Ada 2005 (AI-231): Test for and warn on null-excluding objects or
951 -- components that will raise an exception due to initialization by null.
953 -- When a value for Comp is supplied (as in the case of an uninitialized
954 -- null-excluding component within a composite object), a reported warning
955 -- will indicate the offending component instead of the object itself.
956 -- Array_Comp being True indicates an array object with null-excluding
957 -- components, and any reported warning will indicate that.
959 procedure Remove_Checks (Expr : Node_Id);
960 -- Remove all checks from Expr except those that are only executed
961 -- conditionally (on the right side of And Then/Or Else. This call
962 -- removes only embedded checks (Do_Range_Check, Do_Overflow_Check).
964 procedure Validity_Check_Range
965 (N : Node_Id;
966 Related_Id : Entity_Id := Empty);
967 -- If N is an N_Range node, then Ensure_Valid is called on its bounds, if
968 -- validity checking of operands is enabled. Related_Id denotes the entity
969 -- of the context where N appears.
971 -----------------------------
972 -- Handling of Check Names --
973 -----------------------------
975 -- The following table contains Name_Id's for recognized checks. The first
976 -- entries (corresponding to the values of the subtype Predefined_Check_Id)
977 -- contain the Name_Id values for the checks that are predefined, including
978 -- All_Checks (see Types). Remaining entries are those that are introduced
979 -- by pragma Check_Names.
981 package Check_Names is new Table.Table (
982 Table_Component_Type => Name_Id,
983 Table_Index_Type => Check_Id,
984 Table_Low_Bound => 1,
985 Table_Initial => 30,
986 Table_Increment => 200,
987 Table_Name => "Name_Check_Names");
989 function Get_Check_Id (N : Name_Id) return Check_Id;
990 -- Function to search above table for matching name. If found returns the
991 -- corresponding Check_Id value in the range 1 .. Check_Name.Last. If not
992 -- found returns No_Check_Id.
994 private
996 type Check_Result is array (Positive range 1 .. 2) of Node_Id;
997 -- There are two cases for the result returned by Range_Check:
999 -- For the static case the result is one or two nodes that should cause
1000 -- a Constraint_Error. Typically these will include Expr itself or the
1001 -- direct descendants of Expr, such as Low/High_Bound (Expr)). It is the
1002 -- responsibility of the caller to rewrite and substitute the nodes with
1003 -- N_Raise_Constraint_Error nodes.
1005 -- For the non-static case a single N_Raise_Constraint_Error node with a
1006 -- non-empty Condition field is returned.
1008 -- Unused entries in Check_Result, if any, are simply set to Empty For
1009 -- external clients, the required processing on this result is achieved
1010 -- using the Insert_Range_Checks routine.
1012 pragma Inline (Apply_Length_Check);
1013 pragma Inline (Apply_Range_Check);
1014 pragma Inline (Apply_Static_Length_Check);
1015 end Checks;