xtensa: Add missing speed cost for TYPE_FARITH in TARGET_INSN_COST
[official-gcc.git] / gcc / ada / exp_util.ads
blob96d896a0b98afd38feb2f1ebe72e3b9667e4eeab
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- E X P _ U T I L --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2024, 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 utility procedures used throughout the expander
28 with Einfo.Utils; use Einfo.Utils;
29 with Exp_Tss; use Exp_Tss;
30 with Namet; use Namet;
31 with Rtsfind; use Rtsfind;
32 with Sinfo; use Sinfo;
33 with Sinfo.Nodes; use Sinfo.Nodes;
34 with Snames; use Snames;
35 with Types; use Types;
36 with Uintp; use Uintp;
38 package Exp_Util is
40 -----------------------------------------------
41 -- Handling of Actions Associated with Nodes --
42 -----------------------------------------------
44 -- The evaluation of certain expression nodes involves the elaboration
45 -- of associated types and other declarations, and the execution of
46 -- statement sequences. Expansion routines generating such actions must
47 -- find an appropriate place in the tree to hang the actions so that
48 -- they will be evaluated at the appropriate point.
50 -- Some cases are simple:
52 -- For an expression occurring in a simple statement that is in a list
53 -- of statements, the actions are simply inserted into the list before
54 -- the associated statement.
56 -- For an expression occurring in a declaration the actions are similarly
57 -- inserted into the list just before the associated declaration. (But
58 -- note that although declarations usually appear in lists, they don't
59 -- always; in particular, a library unit declaration does not appear in
60 -- a list, and Insert_Action will crash in that case.)
62 -- The following special cases arise:
64 -- For actions associated with the right operand of a short circuit
65 -- form, the actions are first stored in the short circuit form node
66 -- in the Actions field. The expansion of these forms subsequently
67 -- expands the short circuit forms into if statements which can then
68 -- be moved as described above.
70 -- For actions appearing in the Condition expression of a while loop,
71 -- or an elsif clause, the actions are similarly temporarily stored in
72 -- in the node (N_Elsif_Part or N_Iteration_Scheme) associated with
73 -- the expression using the Condition_Actions field. Subsequently, the
74 -- expansion of these nodes rewrites the control structures involved to
75 -- reposition the actions in normal statement sequence.
77 -- For actions appearing in the then or else expression of a conditional
78 -- expression, these actions are similarly placed in the node, using the
79 -- Then_Actions or Else_Actions field as appropriate. Once again the
80 -- expansion of the N_If_Expression node rewrites the node so that the
81 -- actions can be positioned normally.
83 -- For actions coming from expansion of the expression in an expression
84 -- with actions node, the action is appended to the list of actions.
86 -- Basically what we do is to climb up to the tree looking for the
87 -- proper insertion point, as described by one of the above cases,
88 -- and then insert the appropriate action or actions.
90 -- Note if more than one insert call is made specifying the same
91 -- Assoc_Node, then the actions are elaborated in the order of the
92 -- calls, and this guarantee is preserved for the special cases above.
94 procedure Insert_Action
95 (Assoc_Node : Node_Id;
96 Ins_Action : Node_Id;
97 Spec_Expr_OK : Boolean := False);
98 -- Insert the action Ins_Action at the appropriate point as described
99 -- above. The action is analyzed using the default checks after it is
100 -- inserted. Assoc_Node is the node with which the action is associated.
101 -- When flag Spec_Expr_OK is set, insertions triggered in the context of
102 -- spec expressions are honored, even though they contradict "Handling
103 -- of Default and Per-Object Expressions".
105 procedure Insert_Action
106 (Assoc_Node : Node_Id;
107 Ins_Action : Node_Id;
108 Suppress : Check_Id;
109 Spec_Expr_OK : Boolean := False);
110 -- Insert the action Ins_Action at the appropriate point as described
111 -- above. The action is analyzed using the default checks as modified
112 -- by the given Suppress argument after it is inserted. Assoc_Node is
113 -- the node with which the action is associated. When flag Spec_Expr_OK
114 -- is set, insertions triggered in the context of spec expressions are
115 -- honored, even though they contradict "Handling of Default and Per-
116 -- Object Expressions".
118 procedure Insert_Actions
119 (Assoc_Node : Node_Id;
120 Ins_Actions : List_Id;
121 Spec_Expr_OK : Boolean := False);
122 -- Insert the list of action Ins_Actions at the appropriate point as
123 -- described above. The actions are analyzed using the default checks
124 -- after they are inserted. Assoc_Node is the node with which the actions
125 -- are associated. Ins_Actions may be No_List, in which case the call has
126 -- no effect. When flag Spec_Expr_OK is set, insertions triggered in the
127 -- context of spec expressions are honored, even though they contradict
128 -- "Handling of Default and Per-Object Expressions".
130 procedure Insert_Actions
131 (Assoc_Node : Node_Id;
132 Ins_Actions : List_Id;
133 Suppress : Check_Id;
134 Spec_Expr_OK : Boolean := False);
135 -- Insert the list of action Ins_Actions at the appropriate point as
136 -- described above. The actions are analyzed using the default checks
137 -- as modified by the given Suppress argument after they are inserted.
138 -- Assoc_Node is the node with which the actions are associated. List
139 -- Ins_Actions may be No_List, in which case the call has no effect.
140 -- When flag Spec_Expr_OK is set, insertions triggered in the context of
141 -- spec expressions are honored, even though they contradict "Handling
142 -- of Default and Per-Object Expressions".
144 procedure Insert_Action_After
145 (Assoc_Node : Node_Id;
146 Ins_Action : Node_Id);
147 -- Assoc_Node must be a node in a list. Same as Insert_Action but the
148 -- action will be inserted after N in a manner that is compatible with
149 -- the transient scope mechanism.
151 -- Note: If several successive calls to Insert_Action_After are made for
152 -- the same node, they will each in turn be inserted just after the node.
153 -- This means they will end up being executed in reverse order. Use the
154 -- call to Insert_Actions_After to insert a list of actions to be executed
155 -- in the sequence in which they are given in the list.
157 procedure Insert_Actions_After
158 (Assoc_Node : Node_Id;
159 Ins_Actions : List_Id);
160 -- Assoc_Node must be a node in a list. Same as Insert_Actions but
161 -- actions will be inserted after N in a manner that is compatible with
162 -- the transient scope mechanism. This procedure must be used instead
163 -- of Insert_List_After if Assoc_Node may be in a transient scope.
165 -- Implementation limitation: Assoc_Node must be a statement. We can
166 -- generalize to expressions if there is a need but this is tricky to
167 -- implement because of short-circuits (among other things).
169 procedure Insert_Library_Level_Action (N : Node_Id);
170 -- This procedure inserts and analyzes the node N as an action at the
171 -- library level for the current unit (i.e. it is attached to the
172 -- Actions field of the N_Compilation_Aux node for the main unit).
174 procedure Insert_Library_Level_Actions (L : List_Id);
175 -- Similar, but inserts a list of actions
177 -----------------------
178 -- Other Subprograms --
179 -----------------------
181 procedure Activate_Atomic_Synchronization (N : Node_Id);
182 -- N is a node for which atomic synchronization may be required (it is
183 -- either an identifier, expanded name, or selected/indexed component or
184 -- an explicit dereference). The caller has checked the basic conditions
185 -- (atomic variable appearing and Atomic_Sync not disabled). This function
186 -- checks if atomic synchronization is required and if so sets the flag
187 -- and if appropriate generates a warning (in -gnatw.n mode).
189 procedure Adjust_Condition (N : Node_Id);
190 -- The node N is an expression whose root-type is Boolean, and which
191 -- represents a boolean value used as a condition (i.e. a True/False
192 -- value). This routine handles the case of C and Fortran convention
193 -- boolean types, which have zero/non-zero semantics rather than the normal
194 -- 0/1 semantics, and also the case of an enumeration rep clause that
195 -- specifies a non-standard representation. On return, node N always has
196 -- the type Standard.Boolean, with a value that is a standard Boolean
197 -- values of 0/1 for False/True. This procedure is used in two situations.
198 -- First, the processing for a condition field always calls
199 -- Adjust_Condition, so that the boolean value presented to the backend is
200 -- a standard value. Second, for the code for boolean operations such as
201 -- AND, Adjust_Condition is called on both operands, and then the operation
202 -- is done in the domain of Standard_Boolean, then Adjust_Result_Type is
203 -- called on the result to possibly reset the original type. This procedure
204 -- also takes care of validity checking if Validity_Checks = Tests.
206 procedure Adjust_Result_Type (N : Node_Id; T : Entity_Id);
207 -- The processing of boolean operations like AND uses the procedure
208 -- Adjust_Condition so that it can operate on Standard.Boolean, which is
209 -- the only boolean type on which the backend needs to be able to implement
210 -- such operators. This means that the result is also of type
211 -- Standard.Boolean. In general the type must be reset back to the original
212 -- type to get proper semantics, and that is the purpose of this procedure.
213 -- N is the node (of type Standard.Boolean), and T is the desired type. As
214 -- an optimization, this procedure leaves the type as Standard.Boolean in
215 -- contexts where this is permissible (in particular for Condition fields,
216 -- and for operands of other logical operations higher up the tree). The
217 -- call to this procedure is completely ignored if the argument N is not of
218 -- type Boolean.
220 procedure Append_Freeze_Action (T : Entity_Id; N : Node_Id);
221 -- Add a new freeze action for the given type. The freeze action is
222 -- attached to the freeze node for the type. Actions will be elaborated in
223 -- the order in which they are added. Note that the added node is not
224 -- analyzed. The analyze call is found in Exp_Ch13.Expand_N_Freeze_Entity.
226 procedure Append_Freeze_Actions (T : Entity_Id; L : List_Id);
227 -- Adds the given list of freeze actions (declarations or statements) for
228 -- the given type. The freeze actions are attached to the freeze node for
229 -- the type. Actions will be elaborated in the order in which they are
230 -- added, and the actions within the list will be elaborated in list order.
231 -- Note that the added nodes are not analyzed. The analyze call is found in
232 -- Exp_Ch13.Expand_N_Freeze_Entity.
234 function Attribute_Constrained_Static_Value (Pref : Node_Id) return Boolean;
235 -- Return the static value of a statically known attribute reference
236 -- Pref'Constrained.
238 procedure Build_Allocate_Deallocate_Proc
239 (N : Node_Id;
240 Mark : Node_Id := Empty);
241 -- Create a custom Allocate/Deallocate to be associated with an allocation
242 -- or deallocation for:
244 -- 1) controlled objects
245 -- 2) class-wide objects
246 -- 3) any kind of objects on a subpool
248 -- Moreover, for objects that need finalization, generate the attachment
249 -- actions to resp. detachment actions from the appropriate collection.
251 -- N must be an allocator or the declaration of a temporary initialized by
252 -- an allocator or an assignment of an allocator to a temporary, otherwise
253 -- N must be a free statement of a temporary.
255 -- Mark must be set to a mark past the initialization of the allocator if
256 -- it is initialized (the allocator itself is OK) or left empty otherwise.
257 -- It is used to determine the place where objects that need finalization
258 -- can be attached to the appropriate collection.
260 function Build_Abort_Undefer_Block
261 (Loc : Source_Ptr;
262 Stmts : List_Id;
263 Context : Node_Id) return Node_Id;
264 -- Wrap statements Stmts in a block where the AT END handler contains a
265 -- call to Abort_Undefer_Direct. Context is the node which prompted the
266 -- inlining of the abort undefer routine. Note that this routine does
267 -- not install a call to Abort_Defer.
269 procedure Build_Class_Wide_Expression
270 (Pragma_Or_Expr : Node_Id;
271 Subp : Entity_Id;
272 Par_Subp : Entity_Id;
273 Adjust_Sloc : Boolean);
274 -- Build the expression for an inherited class-wide condition. Pragma_Or_
275 -- _Expr is either the pragma constructed from the corresponding aspect of
276 -- the parent subprogram or the class-wide pre/postcondition built from the
277 -- parent, Subp is the overriding operation, and Par_Subp is the overridden
278 -- operation that has the condition. Adjust_Sloc is True when the sloc of
279 -- nodes traversed should be adjusted for the inherited pragma.
281 function Build_DIC_Call
282 (Loc : Source_Ptr;
283 Obj_Name : Node_Id;
284 Typ : Entity_Id) return Node_Id;
285 -- Build a call to the DIC procedure for Typ with Obj_Name as the actual
286 -- parameter.
288 procedure Build_DIC_Procedure_Body
289 (Typ : Entity_Id;
290 Partial_DIC : Boolean := False);
291 -- Create the body of the procedure which verifies the assertion expression
292 -- of pragma Default_Initial_Condition at run time. Partial_DIC indicates
293 -- that a partial DIC-checking procedure body should be built, for checking
294 -- a DIC associated with the type's partial view, and which will be called
295 -- by the main DIC procedure.
297 procedure Build_DIC_Procedure_Declaration
298 (Typ : Entity_Id;
299 Partial_DIC : Boolean := False);
300 -- Create the declaration of the procedure which verifies the assertion
301 -- expression of pragma Default_Initial_Condition at run time. Partial_DIC
302 -- indicates that a partial DIC-checking procedure should be declared,
303 -- for checking a DIC associated with the type's partial view, and which
304 -- will be called by the main DIC procedure.
306 procedure Build_Invariant_Procedure_Body
307 (Typ : Entity_Id;
308 Partial_Invariant : Boolean := False);
309 -- Create the body of the procedure which verifies the invariants of type
310 -- Typ at runtime. Flag Partial_Invariant should be set when Typ denotes a
311 -- private type, otherwise it is assumed that Typ denotes the full view of
312 -- a private type.
314 procedure Build_Invariant_Procedure_Declaration
315 (Typ : Entity_Id;
316 Partial_Invariant : Boolean := False);
317 -- Create the declaration of the procedure which verifies the invariants of
318 -- type Typ at runtime. Flag Partial_Invariant should be set when building
319 -- the invariant procedure for a private type.
321 procedure Build_Procedure_Form (N : Node_Id);
322 -- Create a procedure declaration which emulates the behavior of a function
323 -- that returns an array type, for C-compatible generation.
325 function Build_Runtime_Call (Loc : Source_Ptr; RE : RE_Id) return Node_Id;
326 -- Build an N_Procedure_Call_Statement calling the given runtime entity.
327 -- The call has no parameters. The first argument provides the location
328 -- information for the tree and for error messages. The call node is not
329 -- analyzed on return, the caller is responsible for analyzing it.
331 function Build_SS_Mark_Call
332 (Loc : Source_Ptr;
333 Mark : Entity_Id) return Node_Id;
334 -- Build a call to routine System.Secondary_Stack.Mark. Mark denotes the
335 -- entity of the secondary stack mark.
337 function Build_SS_Release_Call
338 (Loc : Source_Ptr;
339 Mark : Entity_Id) return Node_Id;
340 -- Build a call to routine System.Secondary_Stack.Release. Mark denotes the
341 -- entity of the secondary stack mark.
343 function Build_Task_Image_Decls
344 (Loc : Source_Ptr;
345 Id_Ref : Node_Id;
346 A_Type : Entity_Id;
347 In_Init_Proc : Boolean := False) return List_Id;
348 -- Build declaration for a variable that holds an identifying string to be
349 -- used as a task name. Id_Ref is an identifier if the task is a variable,
350 -- and a selected or indexed component if the task is component of an
351 -- object. If it is an indexed component, A_Type is the corresponding array
352 -- type. Its index types are used to build the string as an image of the
353 -- index values. For composite types, the result includes two declarations:
354 -- one for a generated function that computes the image without using
355 -- concatenation, and one for the variable that holds the result.
357 -- If In_Init_Proc is true, the call is part of the initialization of
358 -- a component of a composite type, and the enclosing initialization
359 -- procedure must be flagged as using the secondary stack. If In_Init_Proc
360 -- is false, the call is for a stand-alone object, and the generated
361 -- function itself must do its own cleanups.
363 function Build_Temporary_On_Secondary_Stack
364 (Loc : Source_Ptr;
365 Typ : Entity_Id;
366 Code : List_Id) return Entity_Id;
367 -- Build a temporary of type Typ on the secondary stack, appending the
368 -- necessary actions to Code, and return a constant holding the access
369 -- value designating this temporary, under the assumption that Typ does
370 -- not need finalization.
372 -- This should be used when Typ can potentially be large, to avoid putting
373 -- too much pressure on the primary stack, for example with storage models.
375 procedure Check_Float_Op_Overflow (N : Node_Id);
376 -- Called where we could have a floating-point binary operator where we
377 -- must check for infinities if we are operating in Check_Float_Overflow
378 -- mode. Note that we don't need to worry about unary operator cases,
379 -- since for floating-point, abs, unary "-", and unary "+" can never
380 -- case overflow.
382 function Component_May_Be_Bit_Aligned
383 (Comp : Entity_Id;
384 For_Slice : Boolean := False) return Boolean;
385 -- This function is in charge of detecting record components that may cause
386 -- trouble for the back end if an attempt is made to access the component,
387 -- either as a whole if For_Slice is False, or through an array slice if
388 -- For_Slice is True. The back end can handle such accesses only if the
389 -- components involved are small (64/128 bits or less) records or scalars
390 -- (including bit-packed arrays represented with a modular type), or else
391 -- if they are aligned on byte boundaries (i.e. starting on a byte boundary
392 -- and occupying an integral number of bytes).
394 -- However problems arise for records larger than 64/128 bits or for arrays
395 -- (other than bit-packed arrays represented with a modular type) if the
396 -- component either does not start on a byte boundary or does not occupy an
397 -- integral number of bytes (i.e. there are some bits possibly shared with
398 -- other components at the start or the end of the component). The back end
399 -- cannot handle loading from or storing to such components as a whole.
401 -- This function is used to detect the troublesome situation. It is meant
402 -- to be conservative in the sense that it produces True unless it knows
403 -- for sure that the component is safe (as outlined in the first paragraph
404 -- above). The processing for record and array assignment indirectly checks
405 -- for trouble using this function and, if so, the assignment is expanded
406 -- component-wise, which the back end is required to handle correctly.
408 procedure Convert_To_Actual_Subtype (Exp : Node_Id);
409 -- The Etype of an expression is the nominal type of the expression,
410 -- not the actual subtype. Often these are the same, but not always.
411 -- For example, a reference to a formal of unconstrained type has the
412 -- unconstrained type as its Etype, but the actual subtype is obtained by
413 -- applying the actual bounds. This routine is given an expression, Exp,
414 -- and (if necessary), replaces it using Rewrite, with a conversion to
415 -- the actual subtype, building the actual subtype if necessary. If the
416 -- expression is already of the requested type, then it is unchanged.
418 function Corresponding_Runtime_Package (Typ : Entity_Id) return RTU_Id;
419 -- Return the id of the runtime package that will provide support for
420 -- concurrent type Typ. Currently only protected types are supported,
421 -- and the returned value is one of the following:
422 -- System_Tasking_Protected_Objects
423 -- System_Tasking_Protected_Objects_Entries
424 -- System_Tasking_Protected_Objects_Single_Entry
426 function Current_Sem_Unit_Declarations return List_Id;
427 -- Return the place where it is fine to insert declarations for the
428 -- current semantic unit. If the unit is a package body, return the
429 -- visible declarations of the corresponding spec. For RCI stubs, this
430 -- is necessary because the point at which they are generated may not
431 -- be the earliest point at which they are used.
433 function Duplicate_Subexpr
434 (Exp : Node_Id;
435 Name_Req : Boolean := False;
436 Renaming_Req : Boolean := False) return Node_Id;
437 -- Given the node for a subexpression, this function makes a logical copy
438 -- of the subexpression, and returns it. This is intended for use when the
439 -- expansion of an expression needs to repeat part of it. For example,
440 -- replacing a**2 by a*a requires two references to a which may be a
441 -- complex subexpression. Duplicate_Subexpr guarantees not to duplicate
442 -- side effects. If necessary, it generates actions to save the expression
443 -- value in a temporary, inserting these actions into the tree using
444 -- Insert_Actions with Exp as the insertion location. The original
445 -- expression and the returned result then become references to this saved
446 -- value. Exp must be analyzed on entry. On return, Exp is analyzed, but
447 -- the caller is responsible for analyzing the returned copy after it is
448 -- attached to the tree.
450 -- The Name_Req flag is set to ensure that the result is suitable for use
451 -- in a context requiring a name (for example, the prefix of an attribute
452 -- reference).
454 -- The Renaming_Req flag is set to produce an object renaming declaration
455 -- rather than an object declaration. This is valid only if the expression
456 -- Exp designates a renamable object. This is used for example in the case
457 -- of an unchecked deallocation, to make sure the object gets set to null.
459 -- Note that if there are any run time checks in Exp, these same checks
460 -- will be duplicated in the returned duplicated expression. The two
461 -- following functions allow this behavior to be modified.
463 function Duplicate_Subexpr_No_Checks
464 (Exp : Node_Id;
465 Name_Req : Boolean := False;
466 Renaming_Req : Boolean := False;
467 Related_Id : Entity_Id := Empty;
468 Is_Low_Bound : Boolean := False;
469 Is_High_Bound : Boolean := False) return Node_Id;
470 -- Identical in effect to Duplicate_Subexpr, except that Remove_Checks is
471 -- called on the result, so that the duplicated expression does not include
472 -- checks. This is appropriate for use when Exp, the original expression is
473 -- unconditionally elaborated before the duplicated expression, so that
474 -- there is no need to repeat any checks.
476 -- Related_Id denotes the entity of the context where Expr appears. Flags
477 -- Is_Low_Bound and Is_High_Bound specify whether the expression to check
478 -- is the low or the high bound of a range. These three optional arguments
479 -- signal Remove_Side_Effects to create an external symbol of the form
480 -- Chars (Related_Id)_FIRST/_LAST. For suggested use of these parameters
481 -- see the warning in the body of Sem_Ch3.Process_Range_Expr_In_Decl.
483 function Duplicate_Subexpr_Move_Checks
484 (Exp : Node_Id;
485 Name_Req : Boolean := False;
486 Renaming_Req : Boolean := False) return Node_Id;
487 -- Identical in effect to Duplicate_Subexpr, except that Remove_Checks is
488 -- called on Exp after the duplication is complete, so that the original
489 -- expression does not include checks. In this case the result returned
490 -- (the duplicated expression) will retain the original checks. This is
491 -- appropriate for use when the duplicated expression is sure to be
492 -- elaborated before the original expression Exp, so that there is no need
493 -- to repeat the checks.
495 function Enclosing_Init_Proc return Entity_Id;
496 -- Obtain the entity of the type initialization procedure which encloses
497 -- the current scope. Return Empty if no such procedure exists.
499 procedure Ensure_Defined (Typ : Entity_Id; N : Node_Id);
500 -- This procedure ensures that type referenced by Typ is defined. For the
501 -- case of a type other than an Itype, nothing needs to be done, since
502 -- all such types have declaration nodes. For Itypes, an N_Itype_Reference
503 -- node is generated and inserted as an action on node N. This is typically
504 -- used to ensure that an Itype is properly defined outside a conditional
505 -- construct when it is referenced in more than one branch.
507 procedure Evaluate_Name (Nam : Node_Id);
508 -- Remove all side effects from a name which appears as part of an object
509 -- renaming declaration. Similarly to Force_Evaluation, it removes the
510 -- side effects and captures the values of the variables, except for the
511 -- variable being renamed. Hence this differs from Force_Evaluation and
512 -- Remove_Side_Effects (but it calls Force_Evaluation on subexpressions
513 -- whose value needs to be fixed).
515 procedure Evolve_And_Then (Cond : in out Node_Id; Cond1 : Node_Id);
516 -- Rewrites Cond with the expression: Cond and then Cond1. If Cond is
517 -- Empty, then simply returns Cond1 (this allows the use of Empty to
518 -- initialize a series of checks evolved by this routine, with a final
519 -- result of Empty indicating that no checks were required). The Sloc field
520 -- of the constructed N_And_Then node is copied from Cond1.
522 procedure Evolve_Or_Else (Cond : in out Node_Id; Cond1 : Node_Id);
523 -- Rewrites Cond with the expression: Cond or else Cond1. If Cond is Empty,
524 -- then simply returns Cond1 (this allows the use of Empty to initialize a
525 -- series of checks evolved by this routine, with a final result of Empty
526 -- indicating that no checks were required). The Sloc field of the
527 -- constructed N_Or_Else node is copied from Cond1.
529 procedure Expand_Sliding_Conversion (N : Node_Id; Arr_Typ : Entity_Id);
530 -- When sliding is needed for an array object N in the context of an
531 -- unconstrained array type Arr_Typ with fixed lower bound (FLB), create
532 -- a subtype with appropriate index constraint (FLB .. N'Length + FLB - 1)
533 -- and apply a conversion from N to that subtype.
535 procedure Expand_Static_Predicates_In_Choices (N : Node_Id);
536 -- N is either a case alternative or a variant. The Discrete_Choices field
537 -- of N points to a list of choices. If any of these choices is the name
538 -- of a (statically) predicated subtype, then it is rewritten as the series
539 -- of choices that correspond to the values allowed for the subtype.
541 procedure Expand_Subtype_From_Expr
542 (N : Node_Id;
543 Unc_Type : Entity_Id;
544 Subtype_Indic : Node_Id;
545 Exp : Node_Id;
546 Related_Id : Entity_Id := Empty);
547 -- Build a constrained subtype from the initial value in object
548 -- declarations and/or allocations when the type is indefinite (including
549 -- class-wide). Set Related_Id to request an external name for the subtype
550 -- rather than an internal temporary.
552 function Expression_Contains_Primitives_Calls_Of
553 (Expr : Node_Id;
554 Typ : Entity_Id) return Boolean;
555 -- Return True if the expression Expr contains a nondispatching call to a
556 -- function which is a primitive of the tagged type Typ.
558 function Finalize_Address (Typ : Entity_Id) return Entity_Id;
559 -- Locate TSS primitive Finalize_Address in type Typ. Return Empty if the
560 -- subprogram is not available.
562 function Find_Interface_ADT
563 (T : Entity_Id;
564 Iface : Entity_Id) return Elmt_Id;
565 -- Ada 2005 (AI-251): Given a type T implementing the interface Iface,
566 -- return the element of Access_Disp_Table containing the tag of the
567 -- interface.
569 function Find_Interface_Tag
570 (T : Entity_Id;
571 Iface : Entity_Id) return Entity_Id;
572 -- Ada 2005 (AI-251): Given a type T and an interface Iface, return the
573 -- record component containing the tag of Iface if T implements Iface or
574 -- Empty if it does not.
576 -- WARNING: There is a matching C declaration of this subprogram in fe.h
578 function Find_Last_Init (Decl : Node_Id) return Node_Id;
579 -- Find the last initialization call related to object declaration Decl
581 function Find_Prim_Op (T : Entity_Id; Name : Name_Id) return Entity_Id
582 with Pre => Name not in Name_Adjust | Name_Finalize | Name_Initialize;
583 -- Find the first primitive operation of type T with the specified Name,
584 -- disregarding any visibility considerations. If T is a class-wide type,
585 -- then examine the primitive operations of its corresponding root type.
586 -- This function should not be called for the three controlled primitive
587 -- operations, and, instead, Find_Controlled_Prim_Op must be called for
588 -- those. Raise Program_Error if no primitive operation with the given
589 -- Name is found.
591 function Find_Prim_Op
592 (T : Entity_Id;
593 Name : TSS_Name_Type) return Entity_Id;
594 -- Same as Find_Prim_Op above, except we're searching for an op that has
595 -- the form indicated by Name (i.e. is a type support subprogram with the
596 -- indicated suffix).
598 function Find_Controlled_Prim_Op
599 (T : Entity_Id; Name : Name_Id) return Entity_Id
600 with Pre => Name in Name_Adjust | Name_Finalize | Name_Initialize;
601 -- Same as Find_Prim_Op but for the three controlled primitive operations,
602 -- and returns Empty if not found.
604 function Find_Optional_Prim_Op
605 (T : Entity_Id; Name : Name_Id) return Entity_Id;
606 function Find_Optional_Prim_Op
607 (T : Entity_Id;
608 Name : TSS_Name_Type) return Entity_Id;
609 -- Same as Find_Prim_Op, except returns Empty if not found
611 function Find_Protection_Object (Scop : Entity_Id) return Entity_Id;
612 -- Traverse the scope stack starting from Scop and look for an entry, entry
613 -- family, or a subprogram that has a Protection_Object and return it. Must
614 -- always return a value since the context in which this routine is invoked
615 -- should always have a protection object.
617 function Find_Protection_Type (Conc_Typ : Entity_Id) return Entity_Id;
618 -- Given a protected type or its corresponding record, find the type of
619 -- field _object.
621 function Find_Storage_Op
622 (Typ : Entity_Id;
623 Nam : Name_Id) return Entity_Id;
624 -- Given type Typ that's either a descendant of Root_Storage_Pool or else
625 -- specifies aspect Storage_Model_Type, returns the Entity_Id of the
626 -- subprogram associated with Nam, which must either be a primitive op of
627 -- the type in the case of a storage pool, or the operation corresponding
628 -- to Nam as specified in the aspect Storage_Model_Type. In the case of
629 -- aspect Storage_Model_Type, returns Empty when no operation is found,
630 -- indicating that the operation is defaulted in the aspect (can occur in
631 -- the case where the storage-model address type is System.Address).
633 function Find_Hook_Context (N : Node_Id) return Node_Id;
634 -- Determine a suitable node on which to attach actions related to N that
635 -- need to be elaborated unconditionally. In general this is the topmost
636 -- expression of which N is a subexpression, which in turn may or may not
637 -- be evaluated, for example if N is the right operand of a short circuit
638 -- operator.
640 function Following_Address_Clause (D : Node_Id) return Node_Id;
641 -- D is the node for an object declaration. This function searches the
642 -- current declarative part to look for an address clause for the object
643 -- being declared, and returns the clause if one is found, returns
644 -- Empty otherwise.
646 type Force_Evaluation_Mode is (Relaxed, Strict);
648 procedure Force_Evaluation
649 (Exp : Node_Id;
650 Name_Req : Boolean := False;
651 Related_Id : Entity_Id := Empty;
652 Is_Low_Bound : Boolean := False;
653 Is_High_Bound : Boolean := False;
654 Discr_Number : Int := 0;
655 Mode : Force_Evaluation_Mode := Relaxed);
656 -- Force the evaluation of the expression right away. Similar behavior
657 -- to Remove_Side_Effects when Variable_Ref is set to TRUE. That is to
658 -- say, it removes the side effects and captures the values of the
659 -- variables. Remove_Side_Effects guarantees that multiple evaluations
660 -- of the same expression won't generate multiple side effects, whereas
661 -- Force_Evaluation further guarantees that all evaluations will yield
662 -- the same result. If Mode is Relaxed then calls to this subprogram have
663 -- no effect if Exp is side-effect-free; if Mode is Strict and Exp is not
664 -- a static expression then no side-effect check is performed on Exp and
665 -- temporaries are unconditionally generated.
667 -- Related_Id denotes the entity of the context where Expr appears. Flags
668 -- Is_Low_Bound and Is_High_Bound specify whether the expression to check
669 -- is the low or the high bound of a range. These three optional arguments
670 -- signal Remove_Side_Effects to create an external symbol of the form
671 -- Chars (Related_Id)_FIRST/_LAST. If Related_Id is set, then exactly one
672 -- of the Is_xxx_Bound flags must be set. For use of these parameters see
673 -- the warning in the body of Sem_Ch3.Process_Range_Expr_In_Decl.
675 -- Discr_Number is positive when the expression is a discriminant value
676 -- in an object or component declaration. In that case Discr_Number is
677 -- the position of the corresponding discriminant in the corresponding
678 -- type declaration, and the name for the evaluated expression is built
679 -- out of the Related_Id and the Discr_Number.
681 function Fully_Qualified_Name_String
682 (E : Entity_Id;
683 Append_NUL : Boolean := True) return String_Id;
684 -- Generates the string literal corresponding to the fully qualified name
685 -- of entity E, in all upper case, with an ASCII.NUL appended at the end
686 -- of the name if Append_NUL is True.
688 procedure Get_Current_Value_Condition
689 (Var : Node_Id;
690 Op : out Node_Kind;
691 Val : out Node_Id) with Post => Val /= Var;
692 -- This routine processes the Current_Value field of the variable Var. If
693 -- the Current_Value field is null or if it represents a known value, then
694 -- on return Cond is set to N_Empty, and Val is set to Empty.
696 -- The other case is when Current_Value points to an N_If_Statement or an
697 -- N_Elsif_Part or a N_Iteration_Scheme node (see description in Einfo for
698 -- exact details). In this case, Get_Current_Condition digs out the
699 -- condition, and then checks if the condition is known false, known true,
700 -- or not known at all. In the first two cases, Get_Current_Condition will
701 -- return with Op set to the appropriate conditional operator (inverted if
702 -- the condition is known false), and Val set to the constant value. If the
703 -- condition is not known, then Op and Val are set for the empty case
704 -- (N_Empty and Empty).
706 -- The check for whether the condition is true/false unknown depends
707 -- on the case:
709 -- For an IF, the condition is known true in the THEN part, known false
710 -- in any ELSIF or ELSE part, and not known outside the IF statement in
711 -- question.
713 -- For an ELSIF, the condition is known true in the ELSIF part, known
714 -- FALSE in any subsequent ELSIF, or ELSE part, and not known before the
715 -- ELSIF, or after the end of the IF statement.
717 -- The caller can use this result to determine the value (for the case of
718 -- N_Op_Eq), or to determine the result of some other test in other cases
719 -- (e.g. no access check required if N_Op_Ne Null).
721 function Get_Index_Subtype (N : Node_Id) return Entity_Id;
722 -- Used for First, Last, and Length, when the prefix is an array type.
723 -- Obtains the corresponding index subtype.
725 function Get_Mapped_Entity (E : Entity_Id) return Entity_Id;
726 -- Return the mapped entity of E; used to check inherited class-wide
727 -- pre/postconditions.
729 function Get_Stream_Size (E : Entity_Id) return Uint;
730 -- Return the stream size value of the subtype E
732 function Has_Access_Constraint (E : Entity_Id) return Boolean;
733 -- Given object or type E, determine if a discriminant is of an access type
735 function Has_Tag_Of_Type (Exp : Node_Id) return Boolean;
736 -- Return True if expression Exp of a tagged type is known to statically
737 -- have the tag of this tagged type as specified by RM 3.9(19-25).
739 function Homonym_Number (Subp : Entity_Id) return Pos;
740 -- Here subp is the entity for a subprogram. This routine returns the
741 -- homonym number used to disambiguate overloaded subprograms in the same
742 -- scope (the number is used as part of constructed names to make sure that
743 -- they are unique). The number is the ordinal position on the Homonym
744 -- chain, counting only entries in the current scope. If an entity is not
745 -- overloaded, the returned number will be one.
747 function In_Library_Level_Package_Body (Id : Entity_Id) return Boolean;
748 -- Given an arbitrary entity, determine whether it appears at the library
749 -- level of a package body.
751 function In_Unconditional_Context (Node : Node_Id) return Boolean;
752 -- Node is the node for a statement or a component of a statement. This
753 -- function determines if the statement appears in a context that is
754 -- unconditionally executed, i.e. it is not within a loop or a conditional
755 -- or a case statement etc.
757 function Init_Proc_Level_Formal (Proc : Entity_Id) return Entity_Id;
758 -- Return the extra formal of an initialization procedure corresponding to
759 -- the level of the object being initialized, or Empty if none is present.
761 function Inside_Init_Proc return Boolean;
762 -- Return True if current scope is within an init proc
764 function Integer_Type_For (S : Uint; Uns : Boolean) return Entity_Id;
765 -- Return a suitable standard integer type containing at least S bits and
766 -- of the signedness given by Uns. See also Small_Integer_Type_For.
768 function Is_Captured_Function_Call (N : Node_Id) return Boolean;
769 -- Return True if N is a captured function call, i.e. the result of calling
770 -- Remove_Side_Effects on an N_Function_Call node:
772 -- type Ann is access all Typ;
773 -- Rnn : constant Ann := Func (...)'reference;
774 -- Rnn.all
776 function Is_Finalizable_Transient
777 (Decl : Node_Id;
778 N : Node_Id) return Boolean;
779 -- Determine whether declaration Decl denotes a controlled transient object
780 -- that must be finalized. N is the node serviced by the transient context.
782 function Is_Fully_Repped_Tagged_Type (T : Entity_Id) return Boolean;
783 -- Tests given type T, and returns True if T is a non-discriminated tagged
784 -- type which has a record representation clause that specifies the layout
785 -- of all the components, including recursively components in all parent
786 -- types. We exclude discriminated types for convenience, it is extremely
787 -- unlikely that the special processing associated with the use of this
788 -- routine is useful for the case of a discriminated type, and testing for
789 -- component overlap would be a pain.
791 -- WARNING: There is a matching C declaration of this subprogram in fe.h
793 function Is_Library_Level_Tagged_Type (Typ : Entity_Id) return Boolean;
794 -- Return True if Typ is a library level tagged type. Currently we use
795 -- this information to build statically allocated dispatch tables.
797 function Is_Non_BIP_Func_Call (Expr : Node_Id) return Boolean;
798 -- Determine whether node Expr denotes a non build-in-place function call
800 function Is_Possibly_Unaligned_Object (N : Node_Id) return Boolean;
801 -- Node N is an object reference. This function returns True if it is
802 -- possible that the object may not be aligned according to the normal
803 -- default alignment requirement for its type (e.g. if it appears in a
804 -- packed record, or as part of a component that has a component clause.)
806 function Is_Possibly_Unaligned_Slice (N : Node_Id) return Boolean;
807 -- Determine whether the node P is a slice of an array where the slice
808 -- result may cause alignment problems because it has an alignment that
809 -- is not compatible with the type. Return True if so.
811 function Is_Ref_To_Bit_Packed_Array (N : Node_Id) return Boolean;
812 -- Determine whether the node P is a reference to a bit packed array, i.e.
813 -- whether the designated object is a component of a bit packed array, or a
814 -- subcomponent of such a component. If so, then all subscripts in P are
815 -- evaluated with a call to Force_Evaluation, and True is returned.
816 -- Otherwise False is returned, and P is not affected.
818 function Is_Ref_To_Bit_Packed_Slice (N : Node_Id) return Boolean;
819 -- Determine whether the node P is a reference to a bit packed slice, i.e.
820 -- whether the designated object is bit packed slice or a component of a
821 -- bit packed slice. Return True if so.
823 function Is_Related_To_Func_Return (Id : Entity_Id) return Boolean;
824 -- Determine whether object Id is related to an expanded return statement.
825 -- The case concerned is "return Id.all;".
827 -- This is effectively used to determine which temporaries generated for
828 -- return statements must be finalized because they are regular temporaries
829 -- and which ones must not be since they are allocated on the return stack.
831 -- WARNING: There is a matching C declaration of this subprogram in fe.h
833 function Is_Renamed_Object (N : Node_Id) return Boolean;
834 -- Returns True if the node N is a renamed object. An expression is
835 -- considered to be a renamed object if either it is the Name of an object
836 -- renaming declaration, or is the prefix of a name which is a renamed
837 -- object. For example, in:
839 -- x : r renames a (1 .. 2) (1);
841 -- We consider that a (1 .. 2) is a renamed object since it is the prefix
842 -- of the name in the renaming declaration.
844 function Is_Secondary_Stack_BIP_Func_Call (Expr : Node_Id) return Boolean;
845 -- Determine whether Expr denotes a build-in-place function which returns
846 -- its result on the secondary stack.
848 function Is_Secondary_Stack_Thunk (Id : Entity_Id) return Boolean;
849 -- Determine whether Id denotes a secondary stack thunk
851 -- WARNING: There is a matching C declaration of this subprogram in fe.h
853 function Is_Statically_Disabled
854 (N : Node_Id;
855 Value : Boolean;
856 Include_Valid : Boolean)
857 return Boolean
858 with Pre => Nkind (N) in N_Subexpr and then Is_Boolean_Type (Etype (N));
859 -- Returns whether N is a "statically disabled" condition which evaluates
860 -- to Value, as described in section 7.3.2 of SPARK User's Guide.
862 -- If Include_Valid is True, a reference to 'Valid or 'Valid_Scalar is
863 -- considered as disabled for Value=True, which is useful in GNATprove, as
864 -- proof considers that these attributes always return the value True. In
865 -- general, Include_Valid is set to True in the proof phase of GNATprove,
866 -- as 'Valid is assumed to always evaluate to True, but not in the flow
867 -- analysis phase of GNATprove, which does not make this assumption.
869 function Is_Untagged_Derivation (T : Entity_Id) return Boolean;
870 -- Returns true if type T is not tagged and is a derived type,
871 -- or is a private type whose completion is such a type.
873 function Is_Untagged_Private_Derivation
874 (Priv_Typ : Entity_Id;
875 Full_Typ : Entity_Id) return Boolean;
876 -- Determine whether private type Priv_Typ and its full view Full_Typ
877 -- represent an untagged derivation from a private parent.
879 function Is_Volatile_Reference (N : Node_Id) return Boolean;
880 -- Checks if the node N represents a volatile reference, which can be
881 -- either a direct reference to a variable treated as volatile, or an
882 -- indexed/selected component where the prefix is treated as volatile,
883 -- or has Volatile_Components set. A slice of a volatile variable is
884 -- also volatile.
886 procedure Kill_Dead_Code (N : Node_Id; Warn : Boolean := False);
887 -- N represents a node for a section of code that is known to be dead. Any
888 -- exception handler references and warning messages relating to this code
889 -- are removed. If Warn is True, a warning will be output at the start of N
890 -- indicating the deletion of the code. Note that the tree for the deleted
891 -- code is left intact so that e.g. cross-reference data is still valid.
893 procedure Kill_Dead_Code (L : List_Id; Warn : Boolean := False);
894 -- Like the above procedure, but applies to every element in the given
895 -- list. If Warn is True, a warning will be output at the start of N
896 -- indicating the deletion of the code.
898 function Make_CW_Equivalent_Type
899 (T : Entity_Id;
900 E : Node_Id;
901 List_Def : out List_Id) return Entity_Id;
902 -- T is a class-wide type entity, and E is the initial expression node that
903 -- constrains T in cases such as: " X: T := E" or "new T'(E)". When there
904 -- is no E present then it is assumed that T is an unconstrained mutably
905 -- tagged class-wide type.
907 -- This function returns the entity of the Equivalent type and inserts
908 -- on the fly the necessary declaration into List_Def such as:
910 -- type anon is record
911 -- _parent : Root_Type (T); constrained with E discriminants (if any)
912 -- Extension : String (1 .. expr to match size of E);
913 -- end record;
915 -- This record is compatible with any object of the class of T thanks to
916 -- the first field and has the same size as E thanks to the second.
918 function Make_Invariant_Call (Expr : Node_Id) return Node_Id;
919 -- Generate a call to the Invariant_Procedure associated with the type of
920 -- expression Expr. Expr is passed as an actual parameter in the call.
922 function Make_Predicate_Call
923 (Typ : Entity_Id;
924 Expr : Node_Id;
925 Static_Mem : Boolean := False;
926 Dynamic_Mem : Node_Id := Empty) return Node_Id;
927 -- Typ is a type with Predicate_Function set. This routine builds a call to
928 -- this function passing Expr as the argument, and returns it unanalyzed.
929 -- If the callee takes a second parameter (as determined by
930 -- Sem_Util.Predicate_Function_Needs_Membership_Parameter), then the
931 -- actual parameter is determined by the two Mem parameters.
932 -- If Dynamic_Mem is nonempty, then Dynamic_Mem is the actual parameter.
933 -- Otherwise, the value of the Static_Mem parameter is passed in as
934 -- a Boolean literal. It is an error if Dynamic_Mem is nonempty but
935 -- the callee does not take a second parameter.
937 function Make_Predicate_Check
938 (Typ : Entity_Id;
939 Expr : Node_Id) return Node_Id;
940 -- Typ is a type with Predicate_Function set. This routine builds a Check
941 -- pragma whose first argument is Predicate, and the second argument is
942 -- a call to the predicate function of Typ with Expr as the argument. If
943 -- Predicate_Check is suppressed then a null statement is returned instead.
945 function Make_Subtype_From_Expr
946 (E : Node_Id;
947 Unc_Typ : Entity_Id;
948 Related_Id : Entity_Id := Empty) return Node_Id;
949 -- Returns a subtype indication corresponding to the actual type of an
950 -- expression E. Unc_Typ is an unconstrained array or record, or a class-
951 -- wide type. Set Related_Id to request an external name for the subtype
952 -- rather than an internal temporary.
954 function Make_Tag_Assignment_From_Type
955 (Loc : Source_Ptr;
956 Target : Node_Id;
957 Typ : Entity_Id) return Node_Id
958 with
959 Pre => (not Is_Concurrent_Type (Typ));
960 -- Return an assignment of the tag of tagged type Typ to prefix Target,
961 -- which must be a record object of a descendant of Typ. Typ cannot be a
962 -- concurrent type; for concurrent types, the corresponding record types
963 -- should be passed to this function instead.
965 function Make_Variant_Comparison
966 (Loc : Source_Ptr;
967 Typ : Entity_Id;
968 Mode : Name_Id;
969 Curr_Val : Node_Id;
970 Old_Val : Node_Id) return Node_Id;
971 -- Subsidiary to the expansion of pragmas Loop_Variant and
972 -- Subprogram_Variant. Generate a comparison between Curr_Val and Old_Val
973 -- depending on the variant mode (Increases / Decreases) using less or
974 -- greater operator for Typ.
976 procedure Map_Formals
977 (Parent_Subp : Entity_Id;
978 Derived_Subp : Entity_Id;
979 Force_Update : Boolean := False);
980 -- Establish the mapping from the formals of Parent_Subp to the formals
981 -- of Derived_Subp; if Force_Update is True then mapping of Parent_Subp to
982 -- Derived_Subp is also updated; used to update mapping of late-overriding
983 -- primitives of a tagged type.
985 procedure Map_Types (Parent_Type : Entity_Id; Derived_Type : Entity_Id);
986 -- Establish the following mapping between the attributes of tagged parent
987 -- type Parent_Type and tagged derived type Derived_Type.
989 -- * Map each discriminant of Parent_Type to either the corresponding
990 -- discriminant of Derived_Type or come constraint.
992 -- * Map each primitive operation of Parent_Type to the corresponding
993 -- primitive of Derived_Type.
995 -- The mapping Parent_Type -> Derived_Type is also added to the table in
996 -- order to prevent subsequent attempts of the same mapping.
998 function Matching_Standard_Type (Typ : Entity_Id) return Entity_Id;
999 -- Given a scalar subtype Typ, returns a matching type in standard that
1000 -- has the same object size value. For example, a 16 bit signed type will
1001 -- typically return Standard_Short_Integer. For fixed-point types, this
1002 -- will return integer types of the corresponding size.
1004 function May_Generate_Large_Temp (Typ : Entity_Id) return Boolean;
1005 -- Determines if the given type, Typ, may require a large temporary of the
1006 -- kind that causes back-end trouble if stack checking is enabled. The
1007 -- result is True only the size of the type is known at compile time and
1008 -- large, where large is defined heuristically by the body of this routine.
1009 -- The purpose of this routine is to help avoid generating troublesome
1010 -- temporaries that interfere with stack checking mechanism. Note that the
1011 -- caller has to check whether stack checking is actually enabled in order
1012 -- to guide the expansion (typically of a function call).
1014 function Name_Of_Controlled_Prim_Op
1015 (Typ : Entity_Id;
1016 Nam : Name_Id) return Name_Id
1017 with Pre => Nam in Name_Adjust | Name_Finalize | Name_Initialize;
1018 -- Return the name of the Adjust, Finalize, or Initialize primitive of
1019 -- controlled type Typ, if it exists, and No_Name if it does not.
1021 function Needs_Conditional_Null_Excluding_Check
1022 (Typ : Entity_Id) return Boolean;
1023 -- Check if a type meets certain properties that require it to have a
1024 -- conditional null-excluding check within its Init_Proc.
1026 function Needs_Constant_Address
1027 (Decl : Node_Id;
1028 Typ : Entity_Id) return Boolean;
1029 -- Check whether the expression in an address clause is restricted to
1030 -- consist of constants, when the object has a nontrivial initialization
1031 -- or is controlled.
1033 function OK_To_Do_Constant_Replacement (E : Entity_Id) return Boolean;
1034 -- This function is used when testing whether or not to replace a reference
1035 -- to entity E by a known constant value. Such replacement must be done
1036 -- only in a scope known to be safe for such replacements. In particular,
1037 -- if we are within a subprogram and the entity E is declared outside the
1038 -- subprogram then we cannot do the replacement, since we do not attempt to
1039 -- trace subprogram call flow. It is also unsafe to replace statically
1040 -- allocated values (since they can be modified outside the scope), and we
1041 -- also inhibit replacement of Volatile or aliased objects since their
1042 -- address might be captured in a way we do not detect. A value of True is
1043 -- returned only if the replacement is safe.
1045 function Possible_Bit_Aligned_Component
1046 (N : Node_Id;
1047 For_Slice : Boolean := False) return Boolean;
1048 -- This function is used during processing the assignment of a record or an
1049 -- array, or the construction of an aggregate. The argument N is either the
1050 -- left or the right hand side of an assignment and the function determines
1051 -- whether there is a record component reference where the component may be
1052 -- bit aligned in a manner that causes trouble for the back end (see also
1053 -- Component_May_Be_Bit_Aligned for further details).
1055 function Power_Of_Two (N : Node_Id) return Nat;
1056 -- Determines if N is a known at compile time value which is of the form
1057 -- 2**K, where K is in the range 1 .. M, where the Esize of N is 2**(M+1).
1058 -- If so, returns the value K, otherwise returns zero. The caller checks
1059 -- that N is of an integer type.
1061 function Predicate_Check_In_Scope (N : Node_Id) return Boolean;
1062 -- Return True if predicate checks should be generated in the current
1063 -- scope on the given node. Will return False for example when the current
1064 -- scope is a predefined primitive operation.
1066 procedure Process_Statements_For_Controlled_Objects (N : Node_Id);
1067 -- N is a node which contains a non-handled statement list. Inspect the
1068 -- statements looking for declarations of controlled objects. If at least
1069 -- one such object is found, wrap the statement list in a block.
1071 function Remove_Init_Call
1072 (Var : Entity_Id;
1073 Rep_Clause : Node_Id) return Node_Id;
1074 -- Look for init_proc call or aggregate initialization statements for
1075 -- variable Var, either among declarations between that of Var and a
1076 -- subsequent Rep_Clause applying to Var, or in the list of freeze actions
1077 -- associated with Var, and if found, remove and return that call node.
1079 procedure Remove_Side_Effects
1080 (Exp : Node_Id;
1081 Name_Req : Boolean := False;
1082 Renaming_Req : Boolean := False;
1083 Variable_Ref : Boolean := False;
1084 Related_Id : Entity_Id := Empty;
1085 Is_Low_Bound : Boolean := False;
1086 Is_High_Bound : Boolean := False;
1087 Discr_Number : Int := 0;
1088 Check_Side_Effects : Boolean := True);
1089 -- Given the node for a subexpression, this function replaces the node if
1090 -- necessary by an equivalent subexpression that is guaranteed to be side
1091 -- effect free. This is done by extracting any actions that could cause
1092 -- side effects, and inserting them using Insert_Actions into the tree
1093 -- to which Exp is attached. Exp must be analyzed and resolved before the
1094 -- call and is analyzed and resolved on return. Name_Req may only be set to
1095 -- True if Exp has the form of a name, and the effect is to guarantee that
1096 -- any replacement maintains the form of name. If Renaming_Req is set to
1097 -- True, the routine produces an object renaming declaration capturing the
1098 -- expression. If Variable_Ref is set to True, a variable is considered as
1099 -- side effect (used in implementing Force_Evaluation). Note: after call to
1100 -- Remove_Side_Effects, it is safe to call New_Copy_Tree to obtain a copy
1101 -- of the resulting expression. If Check_Side_Effects is set to True then
1102 -- no action is performed if Exp is known to be side-effect-free.
1104 -- Related_Id denotes the entity of the context where Expr appears. Flags
1105 -- Is_Low_Bound and Is_High_Bound specify whether the expression to check
1106 -- is the low or the high bound of a range. These three optional arguments
1107 -- signal Remove_Side_Effects to create an external symbol of the form
1108 -- Chars (Related_Id)_FIRST/_LAST. If Related_Id is set, then exactly one
1109 -- of the Is_xxx_Bound flags must be set. For use of these parameters see
1110 -- the warning in the body of Sem_Ch3.Process_Range_Expr_In_Decl.
1112 -- If Discr_Number is positive, the expression denotes a discrimant value
1113 -- in a constraint, the suffix DISCR is used to create the external name.
1115 -- The side effects are captured using one of the following methods:
1117 -- 1) a constant initialized with the value of the subexpression
1118 -- 2) a renaming of the subexpression
1119 -- 3) a reference to the subexpression
1121 -- For elementary types, methods 1) and 2) are used; for composite types,
1122 -- methods 2) and 3) are used. The renaming (method 2) is used only when
1123 -- the subexpression denotes a name, so that it can be elaborated by gigi
1124 -- without evaluating the subexpression.
1126 -- Historical note: the reference (method 3) used to be the common fallback
1127 -- method but it gives rise to aliasing issues if the subexpression denotes
1128 -- a name that is not aliased, since it is equivalent to taking the address
1129 -- in this case. The renaming (method 2) used to be applied to any objects
1130 -- in the RM sense, that is to say to the cases where a renaming is legal
1131 -- in Ada. But for some of these cases, most notably functions calls, the
1132 -- renaming cannot be elaborated without evaluating the subexpression, so
1133 -- gigi would resort to method 1) or 3) under the hood for them.
1135 procedure Replace_References
1136 (Expr : Node_Id;
1137 Par_Typ : Entity_Id;
1138 Deriv_Typ : Entity_Id;
1139 Par_Obj : Entity_Id := Empty;
1140 Deriv_Obj : Entity_Id := Empty);
1141 -- Expr denotes an arbitrary expression. Par_Typ is a tagged parent type
1142 -- in a type hierarchy. Deriv_Typ is a tagged type derived from Par_Typ
1143 -- with optional ancestors in between. Par_Obj is a formal parameter
1144 -- which emulates the current instance of Par_Typ. Deriv_Obj is a formal
1145 -- parameter which emulates the current instance of Deriv_Typ. Perform the
1146 -- following substitutions in Expr:
1148 -- * Replace a reference to Par_Obj with a reference to Deriv_Obj
1150 -- * Replace a reference to a discriminant of Par_Typ with a suitable
1151 -- value from the point of view of Deriv_Typ.
1153 -- * Replace a call to an overridden primitive of Par_Typ with a call to
1154 -- an overriding primitive of Deriv_Typ.
1156 -- * Replace a call to an inherited primitive of Par_Type with a call to
1157 -- the internally-generated inherited primitive of Deriv_Typ.
1159 procedure Replace_Type_References
1160 (Expr : Node_Id;
1161 Typ : Entity_Id;
1162 Obj_Id : Entity_Id);
1163 -- Substitute all references of the current instance of type Typ with
1164 -- references to formal parameter Obj_Id within expression Expr.
1166 function Represented_As_Scalar (T : Entity_Id) return Boolean;
1167 -- Returns True iff the implementation of this type in code generation
1168 -- terms is scalar. This is true for scalars in the Ada sense, and for
1169 -- packed arrays which are represented by a scalar (modular) type.
1171 function Requires_Cleanup_Actions
1172 (N : Node_Id;
1173 Lib_Level : Boolean) return Boolean;
1174 -- Given a node N, determine whether its declarative and/or statement list
1175 -- contains one of the following:
1177 -- 1) controlled objects
1178 -- 2) library-level tagged types
1180 -- These cases require special actions on scope exit. Lib_Level is True if
1181 -- the construct is at library level, and False otherwise.
1183 function Safe_Unchecked_Type_Conversion (Exp : Node_Id) return Boolean;
1184 -- Given the node for an N_Unchecked_Type_Conversion, return True if this
1185 -- is an unchecked conversion that Gigi can handle directly. Otherwise
1186 -- return False if it is one for which the front end must provide a
1187 -- temporary. Note that the node need not be analyzed, and thus the Etype
1188 -- field may not be set, but in that case it must be the case that the
1189 -- Subtype_Mark field of the node is set/analyzed.
1191 procedure Set_Current_Value_Condition (Cnode : Node_Id);
1192 -- Cnode is N_If_Statement, N_Elsif_Part, or N_Iteration_Scheme (the latter
1193 -- when a WHILE condition is present). This call checks whether Condition
1194 -- (Cnode) has embedded expressions of a form that should result in setting
1195 -- the Current_Value field of one or more entities, and if so sets these
1196 -- fields to point to Cnode.
1198 procedure Set_Elaboration_Flag (N : Node_Id; Spec_Id : Entity_Id);
1199 -- N is the node for a subprogram or generic body, and Spec_Id is the
1200 -- entity for the corresponding spec. If an elaboration entity is defined,
1201 -- then this procedure generates an assignment statement to set it True,
1202 -- immediately after the body is elaborated. However, no assignment is
1203 -- generated in the case of library level procedures, since the setting of
1204 -- the flag in this case is generated in the binder. We do that so that we
1205 -- can detect cases where this is the only elaboration action that is
1206 -- required.
1208 procedure Set_Renamed_Subprogram (N : Node_Id; E : Entity_Id);
1209 -- N is an node which is an entity name that represents the name of a
1210 -- renamed subprogram. The node is rewritten to be an identifier that
1211 -- refers directly to the renamed subprogram, given by entity E.
1213 function Side_Effect_Free
1214 (N : Node_Id;
1215 Name_Req : Boolean := False;
1216 Variable_Ref : Boolean := False) return Boolean;
1217 -- Determines if the tree N represents an expression that is known not
1218 -- to have side effects. If this function returns True, then for example
1219 -- a call to Remove_Side_Effects has no effect.
1221 -- Name_Req controls the handling of volatile variable references. If
1222 -- Name_Req is False (the normal case), then volatile references are
1223 -- considered to be side effects. If Name_Req is True, then volatility
1224 -- of variables is ignored.
1226 -- If Variable_Ref is True, then all variable references are considered to
1227 -- be side effects (regardless of volatility or the setting of Name_Req).
1229 function Side_Effect_Free
1230 (L : List_Id;
1231 Name_Req : Boolean := False;
1232 Variable_Ref : Boolean := False) return Boolean;
1233 -- Determines if all elements of the list L are side-effect-free. Name_Req
1234 -- and Variable_Ref are as described above.
1236 procedure Silly_Boolean_Array_Not_Test (N : Node_Id; T : Entity_Id);
1237 -- N is the node for a boolean array NOT operation, and T is the type of
1238 -- the array. This routine deals with the silly case where the subtype of
1239 -- the boolean array is False..False or True..True, where it is required
1240 -- that a Constraint_Error exception be raised (RM 4.5.6(6)).
1242 procedure Silly_Boolean_Array_Xor_Test
1243 (N : Node_Id;
1244 R : Node_Id;
1245 T : Entity_Id);
1246 -- N is the node for a boolean array XOR operation, T is the type of the
1247 -- array, and R is a copy of the right operand of N, required to prevent
1248 -- scope anomalies when unnesting is in effect. This routine deals with
1249 -- the admitedly silly case where the subtype of the boolean array is
1250 -- True..True, where a raise of a Constraint_Error exception is required
1251 -- (RM 4.5.6(6)) and ACATS-tested.
1253 function Small_Integer_Type_For (S : Uint; Uns : Boolean) return Entity_Id;
1254 -- Return the smallest standard integer type containing at least S bits and
1255 -- of the signedness given by Uns. See also Integer_Type_For.
1257 function Thunk_Target (Thunk : Entity_Id) return Entity_Id;
1258 -- Return the entity ultimately called by the thunk, that is to say return
1259 -- the Thunk_Entity of the last member on the thunk chain.
1261 -- WARNING: There is a matching C declaration of this subprogram in fe.h
1263 function Type_May_Have_Bit_Aligned_Components
1264 (Typ : Entity_Id) return Boolean;
1265 -- Determines if Typ is a composite type that has within it (looking down
1266 -- recursively at subcomponents) a record which contains a component that
1267 -- may be bit aligned in a manner that causes trouble for the back end
1268 -- (see also Component_May_Be_Bit_Aligned for further details). The result
1269 -- is conservative, in that a result of False is decisive. A result of True
1270 -- means that such a component may or may not be present.
1272 procedure Update_Primitives_Mapping
1273 (Inher_Id : Entity_Id;
1274 Subp_Id : Entity_Id);
1275 -- Map primitive operations of the parent type to the corresponding
1276 -- operations of the descendant. Note that the descendant type may not be
1277 -- frozen yet, so we cannot use the dispatch table directly. This is called
1278 -- when elaborating a contract for a subprogram, and when freezing a type
1279 -- extension to verify legality rules on inherited conditions.
1281 function Within_Case_Or_If_Expression (N : Node_Id) return Boolean;
1282 -- Determine whether arbitrary node N is immediately within a dependent
1283 -- expression of a case or an if expression. The criterion is whether
1284 -- temporaries created by the actions attached to N need to outlive an
1285 -- enclosing case or if expression.
1287 private
1288 pragma Inline (Duplicate_Subexpr);
1289 pragma Inline (Find_Controlled_Prim_Op);
1290 pragma Inline (Find_Prim_Op);
1291 pragma Inline (Force_Evaluation);
1292 pragma Inline (Get_Mapped_Entity);
1293 pragma Inline (Is_Library_Level_Tagged_Type);
1294 pragma Inline (Is_Secondary_Stack_Thunk);
1295 pragma Inline (Thunk_Target);
1296 end Exp_Util;