Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / ada / exp_util.ads
blobf75038cbdc5a670b589c5e59c7453f37223af18b
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-2005 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 2, 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 COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
21 -- --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 -- --
25 ------------------------------------------------------------------------------
27 -- Package containing utility procedures used throughout the expander
29 with Exp_Tss; use Exp_Tss;
30 with Rtsfind; use Rtsfind;
31 with Sinfo; use Sinfo;
32 with Types; use Types;
34 package Exp_Util is
36 -----------------------------------------------
37 -- Handling of Actions Associated with Nodes --
38 -----------------------------------------------
40 -- The evaluation of certain expression nodes involves the elaboration
41 -- of associated types and other declarations, and the execution of
42 -- statement sequences. Expansion routines generating such actions must
43 -- find an appropriate place in the tree to hang the actions so that
44 -- they will be evaluated at the appropriate point.
46 -- Some cases are simple:
48 -- For an expression occurring in a simple statement that is in a list
49 -- of statements, the actions are simply inserted into the list before
50 -- the associated statement.
52 -- For an expression occurring in a declaration (declarations always
53 -- appear in lists), the actions are similarly inserted into the list
54 -- just before the associated declaration.
56 -- The following special cases arise:
58 -- For actions associated with the right operand of a short circuit
59 -- form, the actions are first stored in the short circuit form node
60 -- in the Actions field. The expansion of these forms subsequently
61 -- expands the short circuit forms into if statements which can then
62 -- be moved as described above.
64 -- For actions appearing in the Condition expression of a while loop,
65 -- or an elsif clause, the actions are similarly temporarily stored in
66 -- in the node (N_Elsif_Part or N_Iteration_Scheme) associated with
67 -- the expression using the Condition_Actions field. Subsequently, the
68 -- expansion of these nodes rewrites the control structures involved to
69 -- reposition the actions in normal statement sequence.
71 -- For actions appearing in the then or else expression of a conditional
72 -- expression, these actions are similarly placed in the node, using the
73 -- Then_Actions or Else_Actions field as appropriate. Once again the
74 -- expansion of the N_Conditional_Expression node rewrites the node so
75 -- that the actions can be normally positioned.
77 -- Basically what we do is to climb up to the tree looking for the
78 -- proper insertion point, as described by one of the above cases,
79 -- and then insert the appropriate action or actions.
81 -- Note if more than one insert call is made specifying the same
82 -- Assoc_Node, then the actions are elaborated in the order of the
83 -- calls, and this guarantee is preserved for the special cases above.
85 procedure Insert_Action
86 (Assoc_Node : Node_Id;
87 Ins_Action : Node_Id);
88 -- Insert the action Ins_Action at the appropriate point as described
89 -- above. The action is analyzed using the default checks after it is
90 -- inserted. Assoc_Node is the node with which the action is associated.
92 procedure Insert_Action
93 (Assoc_Node : Node_Id;
94 Ins_Action : Node_Id;
95 Suppress : Check_Id);
96 -- Insert the action Ins_Action at the appropriate point as described
97 -- above. The action is analyzed using the default checks as modified
98 -- by the given Suppress argument after it is inserted. Assoc_Node is
99 -- the node with which the action is associated.
101 procedure Insert_Actions
102 (Assoc_Node : Node_Id;
103 Ins_Actions : List_Id);
104 -- Insert the list of action Ins_Actions at the appropriate point as
105 -- described above. The actions are analyzed using the default checks
106 -- after they are inserted. Assoc_Node is the node with which the actions
107 -- are associated. Ins_Actions may be No_List, in which case the call has
108 -- no effect.
110 procedure Insert_Actions
111 (Assoc_Node : Node_Id;
112 Ins_Actions : List_Id;
113 Suppress : Check_Id);
114 -- Insert the list of action Ins_Actions at the appropriate point as
115 -- described above. The actions are analyzed using the default checks
116 -- as modified by the given Suppress argument after they are inserted.
117 -- Assoc_Node is the node with which the actions are associated.
118 -- Ins_Actions may be No_List, in which case the call has no effect.
120 procedure Insert_Actions_After
121 (Assoc_Node : Node_Id;
122 Ins_Actions : List_Id);
123 -- Assoc_Node must be a node in a list. Same as Insert_Actions but
124 -- actions will be inserted after N in a manner that is compatible with
125 -- the transient scope mechanism. This procedure must be used instead
126 -- of Insert_List_After if Assoc_Node may be in a transient scope.
128 -- Implementation limitation: Assoc_Node must be a statement. We can
129 -- generalize to expressions if there is a need but this is tricky to
130 -- implement because of short-circuits (among other things).???
132 procedure Insert_Library_Level_Action (N : Node_Id);
133 -- This procedure inserts and analyzes the node N as an action at the
134 -- library level for the current unit (i.e. it is attached to the
135 -- Actions field of the N_Compilation_Aux node for the main unit).
137 procedure Insert_Library_Level_Actions (L : List_Id);
138 -- Similar, but inserts a list of actions.
140 -----------------------
141 -- Other Subprograms --
142 -----------------------
144 procedure Adjust_Condition (N : Node_Id);
145 -- The node N is an expression whose root-type is Boolean, and which
146 -- represents a boolean value used as a condition (i.e. a True/False
147 -- value). This routine handles the case of C and Fortran convention
148 -- boolean types, which have zero/non-zero semantics rather than the
149 -- normal 0/1 semantics, and also the case of an enumeration rep
150 -- clause that specifies a non-standard representation. On return,
151 -- node N always has the type Standard.Boolean, with a value that
152 -- is a standard Boolean values of 0/1 for False/True. This procedure
153 -- is used in two situations. First, the processing for a condition
154 -- field always calls Adjust_Condition, so that the boolean value
155 -- presented to the backend is a standard value. Second, for the
156 -- code for boolean operations such as AND, Adjust_Condition is
157 -- called on both operands, and then the operation is done in the
158 -- domain of Standard_Boolean, then Adjust_Result_Type is called
159 -- on the result to possibly reset the original type. This procedure
160 -- also takes care of validity checking if Validity_Checks = Tests.
162 procedure Adjust_Result_Type (N : Node_Id; T : Entity_Id);
163 -- The processing of boolean operations like AND uses the procedure
164 -- Adjust_Condition so that it can operate on Standard.Boolean, which
165 -- is the only boolean type on which the backend needs to be able to
166 -- implement such operators. This means that the result is also of
167 -- type Standard.Boolean. In general the type must be reset back to
168 -- the original type to get proper semantics, and that is the purpose
169 -- of this procedure. N is the node (of type Standard.Boolean), and
170 -- T is the desired type. As an optimization, this procedure leaves
171 -- the type as Standard.Boolean in contexts where this is permissible
172 -- (in particular for Condition fields, and for operands of other
173 -- logical operations higher up the tree). The call to this procedure
174 -- is completely ignored if the argument N is not of type Boolean.
176 procedure Append_Freeze_Action (T : Entity_Id; N : Node_Id);
177 -- Add a new freeze action for the given type. The freeze action is
178 -- attached to the freeze node for the type. Actions will be elaborated
179 -- in the order in which they are added. Note that the added node is not
180 -- analyzed. The analyze call is found in Sem_Ch13.Expand_N_Freeze_Entity.
182 procedure Append_Freeze_Actions (T : Entity_Id; L : List_Id);
183 -- Adds the given list of freeze actions (declarations or statements)
184 -- for the given type. The freeze actions are attached to the freeze
185 -- node for the type. Actions will be elaborated in the order in which
186 -- they are added, and the actions within the list will be elaborated in
187 -- list order. Note that the added nodes are not analyzed. The analyze
188 -- call is found in Sem_Ch13.Expand_N_Freeze_Entity.
190 function Build_Runtime_Call (Loc : Source_Ptr; RE : RE_Id) return Node_Id;
191 -- Build an N_Procedure_Call_Statement calling the given runtime entity.
192 -- The call has no parameters. The first argument provides the location
193 -- information for the tree and for error messages. The call node is not
194 -- analyzed on return, the caller is responsible for analyzing it.
196 function Build_Task_Image_Decls
197 (Loc : Source_Ptr;
198 Id_Ref : Node_Id;
199 A_Type : Entity_Id)
200 return List_Id;
201 -- Build declaration for a variable that holds an identifying string
202 -- to be used as a task name. Id_Ref is an identifier if the task is
203 -- a variable, and a selected or indexed component if the task is a
204 -- component of an object. If it is an indexed component, A_Type is
205 -- the corresponding array type. Its index types are used to build the
206 -- string as an image of the index values. For composite types, the
207 -- result includes two declarations: one for a generated function that
208 -- computes the image without using concatenation, and one for the
209 -- variable that holds the result.
211 function Component_May_Be_Bit_Aligned (Comp : Entity_Id) return Boolean;
212 -- This function is in charge of detecting record components that may
213 -- cause trouble in the back end if an attempt is made to assign the
214 -- component. The back end can handle such assignments with no problem
215 -- if the components involved are small (64-bits or less) records or
216 -- scalar items (including bit-packed arrays represented with modular
217 -- types) or are both aligned on a byte boundary (starting on a byte
218 -- boundary, and occupying an integral number of bytes).
220 -- However, problems arise for records larger than 64 bits, or for
221 -- arrays (other than bit-packed arrays represented with a modular
222 -- type) if the component starts on a non-byte boundary, or does
223 -- not occupy an integral number of bytes (i.e. there are some bits
224 -- possibly shared with fields at the start or beginning of the
225 -- component). The back end cannot handle loading and storing such
226 -- components in a single operation.
228 -- This function is used to detect the troublesome situation. it is
229 -- conservative in the sense that it produces True unless it knows
230 -- for sure that the component is safe (as outlined in the first
231 -- paragraph above). The code generation for record and array
232 -- assignment checks for trouble using this function, and if so
233 -- the assignment is generated component-wise, which the back end
234 -- is required to handle correctly.
236 -- Note that in GNAT 3, the back end will reject such components
237 -- anyway, so the hard work in checking for this case is wasted
238 -- in GNAT 3, but it's harmless, so it is easier to do it in
239 -- all cases, rather than conditionalize it in GNAT 5 or beyond.
241 procedure Convert_To_Actual_Subtype (Exp : Node_Id);
242 -- The Etype of an expression is the nominal type of the expression,
243 -- not the actual subtype. Often these are the same, but not always.
244 -- For example, a reference to a formal of unconstrained type has the
245 -- unconstrained type as its Etype, but the actual subtype is obtained
246 -- by applying the actual bounds. This routine is given an expression,
247 -- Exp, and (if necessary), replaces it using Rewrite, with a conversion
248 -- to the actual subtype, building the actual subtype if necessary. If
249 -- the expression is already of the requested type, then it is unchanged.
251 function Current_Sem_Unit_Declarations return List_Id;
252 -- Return the a place where it is fine to insert declarations for the
253 -- current semantic unit. If the unit is a package body, return the
254 -- visible declarations of the corresponding spec. For RCI stubs, this
255 -- is necessary because the point at which they are generated may not
256 -- be the earliest point at which they are used.
258 function Duplicate_Subexpr
259 (Exp : Node_Id;
260 Name_Req : Boolean := False) return Node_Id;
261 -- Given the node for a subexpression, this function makes a logical
262 -- copy of the subexpression, and returns it. This is intended for use
263 -- when the expansion of an expression needs to repeat part of it. For
264 -- example, replacing a**2 by a*a requires two references to a which
265 -- may be a complex subexpression. Duplicate_Subexpr guarantees not
266 -- to duplicate side effects. If necessary, it generates actions to
267 -- save the expression value in a temporary, inserting these actions
268 -- into the tree using Insert_Actions with Exp as the insertion location.
269 -- The original expression and the returned result then become references
270 -- to this saved value. Exp must be analyzed on entry. On return, Exp
271 -- is analyzed, but the caller is responsible for analyzing the returned
272 -- copy after it is attached to the tree. The Name_Req flag is set to
273 -- ensure that the result is suitable for use in a context requiring a
274 -- name (e.g. the prefix of an attribute reference).
276 -- Note that if there are any run time checks in Exp, these same checks
277 -- will be duplicated in the returned duplicated expression. The two
278 -- following functions allow this behavior to be modified.
280 function Duplicate_Subexpr_No_Checks
281 (Exp : Node_Id;
282 Name_Req : Boolean := False) return Node_Id;
283 -- Identical in effect to Duplicate_Subexpr, except that Remove_Checks
284 -- is called on the result, so that the duplicated expression does not
285 -- include checks. This is appropriate for use when Exp, the original
286 -- expression is unconditionally elaborated before the duplicated
287 -- expression, so that there is no need to repeat any checks.
289 function Duplicate_Subexpr_Move_Checks
290 (Exp : Node_Id;
291 Name_Req : Boolean := False) return Node_Id;
292 -- Identical in effect to Duplicate_Subexpr, except that Remove_Checks
293 -- is called on Exp after the duplication is complete, so that the
294 -- original expression does not include checks. In this case the result
295 -- returned (the duplicated expression) will retain the original checks.
296 -- This is appropriate for use when the duplicated expression is sure
297 -- to be elaborated before the original expression Exp, so that there
298 -- is no need to repeat the checks.
300 procedure Ensure_Defined (Typ : Entity_Id; N : Node_Id);
301 -- This procedure ensures that type referenced by Typ is defined. For the
302 -- case of a type other than an Itype, nothing needs to be done, since
303 -- all such types have declaration nodes. For Itypes, an N_Itype_Reference
304 -- node is generated and inserted at the given node N. This is typically
305 -- used to ensure that an Itype is properly defined outside a conditional
306 -- construct when it is referenced in more than one branch.
308 procedure Evolve_And_Then (Cond : in out Node_Id; Cond1 : Node_Id);
309 -- Rewrites Cond with the expression: Cond and then Cond1. If Cond is
310 -- Empty, then simply returns Cond1 (this allows the use of Empty to
311 -- initialize a series of checks evolved by this routine, with a final
312 -- result of Empty indicating that no checks were required). The Sloc
313 -- field of the constructed N_And_Then node is copied from Cond1.
315 procedure Evolve_Or_Else (Cond : in out Node_Id; Cond1 : Node_Id);
316 -- Rewrites Cond with the expression: Cond or else Cond1. If Cond is
317 -- Empty, then simply returns Cond1 (this allows the use of Empty to
318 -- initialize a series of checks evolved by this routine, with a final
319 -- result of Empty indicating that no checks were required). The Sloc
320 -- field of the constructed N_Or_Else node is copied from Cond1.
322 procedure Expand_Subtype_From_Expr
323 (N : Node_Id;
324 Unc_Type : Entity_Id;
325 Subtype_Indic : Node_Id;
326 Exp : Node_Id);
327 -- Build a constrained subtype from the initial value in object
328 -- declarations and/or allocations when the type is indefinite (including
329 -- class-wide).
331 function Find_Prim_Op (T : Entity_Id; Name : Name_Id) return Entity_Id;
332 -- Find the first primitive operation of type T whose name is 'Name'.
333 -- This function allows the use of a primitive operation which is not
334 -- directly visible. If T is a class wide type, then the reference is
335 -- to an operation of the corresponding root type.
337 function Find_Prim_Op
338 (T : Entity_Id;
339 Name : TSS_Name_Type) return Entity_Id;
340 -- Find the first primitive operation of type T whose name has the form
341 -- indicated by the name parameter (i.e. is a type support subprogram
342 -- with the indicated suffix). This function allows use of a primitive
343 -- operation which is not directly visible. If T is a class wide type,
344 -- then the reference is to an operation of the corresponding root type.
346 procedure Force_Evaluation
347 (Exp : Node_Id;
348 Name_Req : Boolean := False);
349 -- Force the evaluation of the expression right away. Similar behavior
350 -- to Remove_Side_Effects when Variable_Ref is set to TRUE. That is to
351 -- say, it removes the side-effects and capture the values of the
352 -- variables. Remove_Side_Effects guarantees that multiple evaluations
353 -- of the same expression won't generate multiple side effects, whereas
354 -- Force_Evaluation further guarantees that all evaluations will yield
355 -- the same result.
357 procedure Generate_Poll_Call (N : Node_Id);
358 -- If polling is active, then a call to the Poll routine is built,
359 -- and then inserted before the given node N and analyzed.
361 procedure Get_Current_Value_Condition
362 (Var : Node_Id;
363 Op : out Node_Kind;
364 Val : out Node_Id);
365 -- This routine processes the Current_Value field of the variable Var.
366 -- If the Current_Value field is null or if it represents a known value,
367 -- then on return Cond is set to N_Empty, and Val is set to Empty.
369 -- The other case is when Current_Value points to an N_If_Statement
370 -- or an N_Elsif_Part (while statement). Such a setting only occurs
371 -- if the condition of an IF or ELSIF is of the form X op Y, where X
372 -- is the variable in question, Y is a compile-time known value, and
373 -- op is one of the six possible relational operators.
375 -- In this case, Get_Current_Condition digs out the condition, and
376 -- then checks if the condition is known false, known true, or not
377 -- known at all. In the first two cases, Get_Current_Condition will
378 -- return with Op set to the appropriate conditional operator (inverted
379 -- if the condition is known false), and Val set to the constant value.
380 -- If the condition is not known, then Cond and Val are set for the
381 -- empty case (N_Empty and Empty).
383 -- The check for whether the condition is true/false unknown depends
384 -- on the case:
386 -- For an IF, the condition is known true in the THEN part, known
387 -- false in any ELSIF or ELSE part, and not known outside the IF
388 -- statement in question.
390 -- For an ELSIF, the condition is known true in the ELSIF part,
391 -- known FALSE in any subsequent ELSIF, or ELSE part, and not
392 -- known before the ELSIF, or after the end of the IF statement.
394 -- The caller can use this result to determine the value (for the
395 -- case of N_Op_Eq), or to determine the result of some other test
396 -- in other cases (e.g. no access check required if N_Op_Ne Null).
398 function Homonym_Number (Subp : Entity_Id) return Nat;
399 -- Here subp is the entity for a subprogram. This routine returns the
400 -- homonym number used to disambiguate overloaded subprograms in the
401 -- same scope (the number is used as part of constructed names to make
402 -- sure that they are unique). The number is the ordinal position on
403 -- the Homonym chain, counting only entries in the curren scope. If
404 -- an entity is not overloaded, the returned number will be one.
406 function Inside_Init_Proc return Boolean;
407 -- Returns True if current scope is within an init proc
409 function In_Unconditional_Context (Node : Node_Id) return Boolean;
410 -- Node is the node for a statement or a component of a statement.
411 -- This function deteermines if the statement appears in a context
412 -- that is unconditionally executed, i.e. it is not within a loop
413 -- or a conditional or a case statement etc.
415 function Is_All_Null_Statements (L : List_Id) return Boolean;
416 -- Return True if all the items of the list are N_Null_Statement
417 -- nodes. False otherwise. True for an empty list. It is an error
418 -- to call this routine with No_List as the argument.
420 function Is_Ref_To_Bit_Packed_Array (P : Node_Id) return Boolean;
421 -- Determine whether the node P is a reference to a bit packed
422 -- array, i.e. whether the designated object is a component of
423 -- a bit packed array, or a subcomponent of such a component.
424 -- If so, then all subscripts in P are evaluated with a call
425 -- to Force_Evaluation, and True is returned. Otherwise False
426 -- is returned, and P is not affected.
428 function Is_Ref_To_Bit_Packed_Slice (P : Node_Id) return Boolean;
429 -- Determine whether the node P is a reference to a bit packed
430 -- slice, i.e. whether the designated object is bit packed slice
431 -- or a component of a bit packed slice. Return True if so.
433 function Is_Possibly_Unaligned_Slice (P : Node_Id) return Boolean;
434 -- Determine whether the node P is a slice of an array where the slice
435 -- result may cause alignment problems because it has an alignment that
436 -- is not compatible with the type. Return True if so.
438 function Is_Possibly_Unaligned_Object (P : Node_Id) return Boolean;
439 -- Node P is an object reference. This function returns True if it
440 -- is possible that the object may not be aligned according to the
441 -- normal default alignment requirement for its type (e.g. if it
442 -- appears in a packed record, or as part of a component that has
443 -- a component clause.
445 function Is_Renamed_Object (N : Node_Id) return Boolean;
446 -- Returns True if the node N is a renamed object. An expression
447 -- is considered to be a renamed object if either it is the Name
448 -- of an object renaming declaration, or is the prefix of a name
449 -- which is a renamed object. For example, in:
451 -- x : r renames a (1 .. 2) (1);
453 -- We consider that a (1 .. 2) is a renamed object since it is the
454 -- prefix of the name in the renaming declaration.
456 function Is_Untagged_Derivation (T : Entity_Id) return Boolean;
457 -- Returns true if type T is not tagged and is a derived type,
458 -- or is a private type whose completion is such a type.
460 procedure Kill_Dead_Code (N : Node_Id);
461 -- N represents a node for a section of code that is known to be
462 -- dead. The node is deleted, and any exception handler references
463 -- and warning messages relating to this code are removed.
465 procedure Kill_Dead_Code (L : List_Id);
466 -- Like the above procedure, but applies to every element in the given
467 -- list. Each of the entries is removed from the list before killing it.
469 function Known_Non_Negative (Opnd : Node_Id) return Boolean;
470 -- Given a node for a subexpression, determines if it represents a value
471 -- that cannot possibly be negative, and if so returns True. A value of
472 -- False means that it is not known if the value is positive or negative.
474 function Known_Non_Null (N : Node_Id) return Boolean;
475 -- Given a node N for a subexpression of an access type, determines if
476 -- this subexpression yields a value that is known at compile time to
477 -- be non-null and returns True if so. Returns False otherwise. It is
478 -- an error to call this function if N is not of an access type.
480 function Make_Subtype_From_Expr
481 (E : Node_Id;
482 Unc_Typ : Entity_Id) return Node_Id;
483 -- Returns a subtype indication corresponding to the actual type of an
484 -- expression E. Unc_Typ is an unconstrained array or record, or
485 -- a classwide type.
487 function May_Generate_Large_Temp (Typ : Entity_Id) return Boolean;
488 -- Determines if the given type, Typ, may require a large temporary
489 -- of the kind that causes back-end trouble if stack checking is enabled.
490 -- The result is True only the size of the type is known at compile time
491 -- and large, where large is defined heuristically by the body of this
492 -- routine. The purpose of this routine is to help avoid generating
493 -- troublesome temporaries that interfere with stack checking mechanism.
494 -- Note that the caller has to check whether stack checking is actually
495 -- enabled in order to guide the expansion (typically of a function call).
497 procedure Remove_Side_Effects
498 (Exp : Node_Id;
499 Name_Req : Boolean := False;
500 Variable_Ref : Boolean := False);
501 -- Given the node for a subexpression, this function replaces the node
502 -- if necessary by an equivalent subexpression that is guaranteed to be
503 -- side effect free. This is done by extracting any actions that could
504 -- cause side effects, and inserting them using Insert_Actions into the
505 -- tree to which Exp is attached. Exp must be analyzed and resolved
506 -- before the call and is analyzed and resolved on return. The Name_Req
507 -- may only be set to True if Exp has the form of a name, and the
508 -- effect is to guarantee that any replacement maintains the form of a
509 -- name. If Variable_Ref is set to TRUE, a variable is considered as a
510 -- side effect (used in implementing Force_Evaluation). Note: after a
511 -- call to Remove_Side_Effects, it is safe to call New_Copy_Tree to
512 -- obtain a copy of the resulting expression.
514 function Safe_Unchecked_Type_Conversion (Exp : Node_Id) return Boolean;
515 -- Given the node for an N_Unchecked_Type_Conversion, return True
516 -- if this is an unchecked conversion that Gigi can handle directly.
517 -- Otherwise return False if it is one for which the front end must
518 -- provide a temporary. Note that the node need not be analyzed, and
519 -- thus the Etype field may not be set, but in that case it must be
520 -- the case that the Subtype_Mark field of the node is set/analyzed.
522 procedure Set_Elaboration_Flag (N : Node_Id; Spec_Id : Entity_Id);
523 -- N is the node for a subprogram or generic body, and Spec_Id
524 -- is the entity for the corresponding spec. If an elaboration
525 -- entity is defined, then this procedure generates an assignment
526 -- statement to set it True, immediately after the body is elaborated.
527 -- However, no assignment is generated in the case of library level
528 -- procedures, since the setting of the flag in this case is generated
529 -- in the binder. We do that so that we can detect cases where this is
530 -- the only elaboration action that is required.
532 function Target_Has_Fixed_Ops
533 (Left_Typ : Entity_Id;
534 Right_Typ : Entity_Id;
535 Result_Typ : Entity_Id) return Boolean;
536 -- Returns True if and only if the target machine has direct support
537 -- for fixed-by-fixed multiplications and divisions for the given
538 -- operand and result types. This is called in package Exp_Fixd to
539 -- determine whether to expand such operations.
541 function Type_May_Have_Bit_Aligned_Components
542 (Typ : Entity_Id) return Boolean;
543 -- Determines if Typ is a composite type that has within it (looking
544 -- down recursively at any subcomponents), a record type which has a
545 -- component that may be bit aligned (see Possible_Bit_Aligned_Component).
546 -- The result is conservative, in that a result of False is decisive.
547 -- A result of True means that such a component may or may not be present.
549 procedure Wrap_Cleanup_Procedure (N : Node_Id);
550 -- Given an N_Subprogram_Body node, this procedure adds an Abort_Defer
551 -- call at the start of the statement sequence, and an Abort_Undefer call
552 -- at the end of the statement sequence. All cleanup routines (i.e. those
553 -- that are called from "at end" handlers) must defer abort on entry and
554 -- undefer abort on exit. Note that it is assumed that the code for the
555 -- procedure does not contain any return statements which would allow the
556 -- flow of control to escape doing the undefer call.
558 private
559 pragma Inline (Force_Evaluation);
560 pragma Inline (Duplicate_Subexpr);
562 end Exp_Util;