Daily bump.
[official-gcc.git] / gcc / ada / sem_util.ads
blobd8037292ebed242cbd7e82b5dae076304c7ba8d2
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S E M _ U T I L --
6 -- --
7 -- S p e c --
8 -- --
9 -- $Revision: 1.3 $
10 -- --
11 -- Copyright (C) 1992-2001, Free Software Foundation, Inc. --
12 -- --
13 -- GNAT is free software; you can redistribute it and/or modify it under --
14 -- terms of the GNU General Public License as published by the Free Soft- --
15 -- ware Foundation; either version 2, or (at your option) any later ver- --
16 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
17 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
18 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
19 -- for more details. You should have received a copy of the GNU General --
20 -- Public License distributed with GNAT; see file COPYING. If not, write --
21 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
22 -- MA 02111-1307, USA. --
23 -- --
24 -- GNAT was originally developed by the GNAT team at New York University. --
25 -- Extensive contributions were provided by Ada Core Technologies Inc. --
26 -- --
27 ------------------------------------------------------------------------------
29 -- Package containing utility procedures used throughout the semantics
31 with Einfo; use Einfo;
32 with Types; use Types;
33 with Uintp; use Uintp;
34 with Urealp; use Urealp;
36 package Sem_Util is
38 procedure Add_Access_Type_To_Process (E : Entity_Id; A : Entity_Id);
39 -- Add A to the list of access types to process when expanding the
40 -- freeze node of E.
42 function Alignment_In_Bits (E : Entity_Id) return Uint;
43 -- If the alignment of the type or object E is currently known to the
44 -- compiler, then this function returns the alignment value in bits.
45 -- Otherwise Uint_0 is returned, indicating that the alignment of the
46 -- entity is not yet known to the compiler.
48 procedure Apply_Compile_Time_Constraint_Error
49 (N : Node_Id;
50 Msg : String;
51 Ent : Entity_Id := Empty;
52 Typ : Entity_Id := Empty;
53 Loc : Source_Ptr := No_Location;
54 Rep : Boolean := True);
55 -- N is a subexpression which will raise constraint error when evaluated
56 -- at runtime. Msg is a message that explains the reason for raising the
57 -- exception. The last character is ? if the message is always a
58 -- warning, even in Ada 95, and is not a ? if the message represents an
59 -- illegality (because of violation of static expression rules) in Ada 95
60 -- (but not in Ada 83). Typically this routine posts all messages at
61 -- the Sloc of node N. However, if Loc /= No_Location, Loc is the Sloc
62 -- used to output the message. After posting the appropriate message,
63 -- and if the flag Rep is set, this routine replaces the expression
64 -- with an N_Raise_Constraint_Error node. This node is then marked as
65 -- being static if the original node is static, but sets the flag
66 -- Raises_Constraint_Error, preventing further evaluation.
67 -- The error message may contain a } or & insertion character.
68 -- This normally references Etype (N), unless the Ent argument is given
69 -- explicitly, in which case it is used instead. The type of the raise
70 -- node that is built is normally Etype (N), but if the Typ parameter
71 -- is present, this is used instead.
73 function Build_Actual_Subtype
74 (T : Entity_Id;
75 N : Node_Or_Entity_Id)
76 return Node_Id;
77 -- Build an anonymous subtype for an entity or expression, using the
78 -- bounds of the entity or the discriminants of the enclosing record.
79 -- T is the type for which the actual subtype is required, and N is either
80 -- a defining identifier, or any subexpression.
82 function Build_Actual_Subtype_Of_Component
83 (T : Entity_Id;
84 N : Node_Id)
85 return Node_Id;
86 -- Determine whether a selected component has a type that depends on
87 -- discriminants, and build actual subtype for it if so.
89 function Build_Discriminal_Subtype_Of_Component
90 (T : Entity_Id)
91 return Node_Id;
92 -- Determine whether a record component has a type that depends on
93 -- discriminants, and build actual subtype for it if so.
95 procedure Build_Elaboration_Entity (N : Node_Id; Spec_Id : Entity_Id);
96 -- Given a compilation unit node N, allocate an elaboration boolean for
97 -- the compilation unit, and install it in the Elaboration_Entity field
98 -- of Spec_Id, the entity for the compilation unit.
100 procedure Check_Fully_Declared (T : Entity_Id; N : Node_Id);
101 -- Verify that the full declaration of type T has been seen. If not,
102 -- place error message on node N. Used in object declarations, type
103 -- conversions, qualified expressions.
105 procedure Check_Potentially_Blocking_Operation (N : Node_Id);
106 -- N is one of the statement forms that is a potentially blocking
107 -- operation. If it appears within a protected action, emit warning
108 -- and raise Program_Error.
110 procedure Check_VMS (Construct : Node_Id);
111 -- Check that this the target is OpenVMS, and if so, return with
112 -- no effect, otherwise post an error noting this can only be used
113 -- with OpenVMS ports. The argument is the construct in question
114 -- and is used to post the error message.
116 function Collect_Primitive_Operations (T : Entity_Id) return Elist_Id;
117 -- Called upon type derivation and extension. We scan the declarative
118 -- part in which the type appears, and collect subprograms that have
119 -- one subsidiary subtype of the type. These subprograms can only
120 -- appear after the type itself.
122 function Compile_Time_Constraint_Error
123 (N : Node_Id;
124 Msg : String;
125 Ent : Entity_Id := Empty;
126 Loc : Source_Ptr := No_Location)
127 return Node_Id;
128 -- Subsidiary to Apply_Compile_Time_Constraint_Error and Checks routines.
129 -- Does not modify any nodes, but generates a warning (or error) message.
130 -- For convenience, the function always returns its first argument.
132 procedure Conditional_Delay (New_Ent, Old_Ent : Entity_Id);
133 -- Sets the Has_Delayed_Freeze flag of New if the Delayed_Freeze flag
134 -- of Old is set and Old has no yet been Frozen (i.e. Is_Frozen is false);
136 function Current_Entity (N : Node_Id) return Entity_Id;
137 -- Find the currently visible definition for a given identifier, that is to
138 -- say the first entry in the visibility chain for the Chars of N.
140 function Current_Entity_In_Scope (N : Node_Id) return Entity_Id;
141 -- Find whether there is a previous definition for identifier N in the
142 -- current scope. Because declarations for a scope are not necessarily
143 -- contiguous (e.g. for packages) the first entry on the visibility chain
144 -- for N is not necessarily in the current scope.
146 function Current_Scope return Entity_Id;
147 -- Get entity representing current scope
149 function Current_Subprogram return Entity_Id;
150 -- Returns current enclosing subprogram. If Current_Scope is a subprogram,
151 -- then that is what is returned, otherwise the Enclosing_Subprogram of
152 -- the Current_Scope is returned. The returned value is Empty if this
153 -- is called from a library package which is not within any subprogram.
155 function Defining_Entity (N : Node_Id) return Entity_Id;
156 -- Given a declaration N, returns the associated defining entity. If
157 -- the declaration has a specification, the entity is obtained from
158 -- the specification. If the declaration has a defining unit name,
159 -- then the defining entity is obtained from the defining unit name
160 -- ignoring any child unit prefixes.
162 function Denotes_Discriminant (N : Node_Id) return Boolean;
163 -- Returns True if node N is an N_Identifier node for a discriminant.
164 -- Returns False for any other kind of node, or for an N_Identifier
165 -- node that does not denote a discriminant.
167 function Depends_On_Discriminant (N : Node_Id) return Boolean;
168 -- Returns True if N denotes a discriminant or if N is a range, a subtype
169 -- indication or a scalar subtype where one of the bounds is a
170 -- discriminant.
172 function Designate_Same_Unit
173 (Name1 : Node_Id;
174 Name2 : Node_Id)
175 return Boolean;
176 -- Return true if Name1 and Name2 designate the same unit name;
177 -- each of these names is supposed to be a selected component name,
178 -- an expanded name, a defining program unit name or an identifier
180 function Enclosing_Generic_Body
181 (E : Entity_Id)
182 return Node_Id;
183 -- Returns the Node_Id associated with the innermost enclosing
184 -- generic body, if any. If none, then returns Empty.
186 function Enclosing_Lib_Unit_Entity return Entity_Id;
187 -- Returns the entity of enclosing N_Compilation_Unit Node which is the
188 -- root of the current scope (which must not be Standard_Standard, and
189 -- the caller is responsible for ensuring this condition).
191 function Enclosing_Lib_Unit_Node (N : Node_Id) return Node_Id;
192 -- Returns the enclosing N_Compilation_Unit Node that is the root
193 -- of a subtree containing N.
195 function Enclosing_Subprogram (E : Entity_Id) return Entity_Id;
196 -- Utility function to return the Ada entity of the subprogram enclosing
197 -- the entity E, if any. Returns Empty if no enclosing subprogram.
199 procedure Ensure_Freeze_Node (E : Entity_Id);
200 -- Make sure a freeze node is allocated for entity E. If necessary,
201 -- build and initialize a new freeze node and set Has_Delayed_Freeze
202 -- true for entity E.
204 procedure Enter_Name (Def_Id : Node_Id);
205 -- Insert new name in symbol table of current scope with check for
206 -- duplications (error message is issued if a conflict is found)
207 -- Note: Enter_Name is not used for overloadable entities, instead
208 -- these are entered using Sem_Ch6.Enter_Overloadable_Entity.
210 function Find_Corresponding_Discriminant
211 (Id : Node_Id;
212 Typ : Entity_Id)
213 return Entity_Id;
214 -- Because discriminants may have different names in a generic unit
215 -- and in an instance, they are resolved positionally when possible.
216 -- A reference to a discriminant carries the discriminant that it
217 -- denotes when analyzed. Subsequent uses of this id on a different
218 -- type denote the discriminant at the same position in this new type.
220 function First_Actual (Node : Node_Id) return Node_Id;
221 -- Node is an N_Function_Call or N_Procedure_Call_Statement node. The
222 -- result returned is the first actual parameter in declaration order
223 -- (not the order of parameters as they appeared in the source, which
224 -- can be quite different as a result of the use of named parameters).
225 -- Empty is returned for a call with no parameters. The procedure for
226 -- iterating through the actuals in declaration order is to use this
227 -- function to find the first actual, and then use Next_Actual to obtain
228 -- the next actual in declaration order. Note that the value returned
229 -- is always the expression (not the N_Parameter_Association nodes
230 -- even if named association is used).
232 function Full_Qualified_Name (E : Entity_Id) return String_Id;
233 -- Generates the string literal corresponding to the E's full qualified
234 -- name in upper case. An ASCII.NUL is appended as the last character
236 procedure Gather_Components
237 (Typ : Entity_Id;
238 Comp_List : Node_Id;
239 Governed_By : List_Id;
240 Into : Elist_Id;
241 Report_Errors : out Boolean);
242 -- The purpose of this procedure is to gather the valid components
243 -- in a record type according to the values of its discriminants, in order
244 -- to validate the components of a record aggregate.
246 -- Typ is the type of the aggregate when its constrained discriminants
247 -- need to be collected, otherwise it is Empty.
249 -- Comp_List is an N_Component_List node.
251 -- Governed_By is a list of N_Component_Association nodes,
252 -- where each choice list contains the name of a discriminant and
253 -- the expression field gives its value. The values of the
254 -- discriminants governing the (possibly nested) variant parts in
255 -- Comp_List are found in this Component_Association List.
257 -- Into is the list where the valid components are appended.
258 -- Note that Into need not be an Empty list. If it's not, components
259 -- are attached to its tail.
261 -- Report_Errors is set to True if the values of the discriminants
262 -- are non-static.
264 -- This procedure is also used when building a record subtype. If the
265 -- discriminant constraint of the subtype is static, the components of the
266 -- subtype are only those of the variants selected by the values of the
267 -- discriminants. Otherwise all components of the parent must be included
268 -- in the subtype for semantic analysis.
270 function Get_Actual_Subtype (N : Node_Id) return Entity_Id;
271 -- Given a node for an expression, obtain the actual subtype of the
272 -- expression. In the case of a parameter where the formal is an
273 -- unconstrained array or discriminated type, this will be the
274 -- previously constructed subtype of the actual. Note that this is
275 -- not quite the "Actual Subtype" of the RM, since it is always
276 -- a constrained type, i.e. it is the subtype of the value of the
277 -- actual. The actual subtype is also returned in other cases where
278 -- it has already been constructed for an object. Otherwise the
279 -- expression type is returned unchanged, except for the case of an
280 -- unconstrained array type, where an actual subtype is created, using
281 -- Insert_Actions if necessary to insert any associated actions.
283 function Get_Actual_Subtype_If_Available (N : Node_Id) return Entity_Id;
284 -- This is like Get_Actual_Subtype, except that it never constructs an
285 -- actual subtype. If an actual subtype is already available, i.e. the
286 -- Actual_Subtype field of the corresponding entity is set, then it is
287 -- returned. Otherwise the Etype of the node is returned.
289 function Get_Default_External_Name (E : Node_Or_Entity_Id) return Node_Id;
290 -- This is used to construct the string literal node representing a
291 -- default external name, i.e. one that is constructed from the name
292 -- of an entity, or (in the case of extended DEC import/export pragmas,
293 -- an identifier provided as the external name. Letters in the name are
294 -- according to the setting of Opt.External_Name_Default_Casing.
296 procedure Get_Index_Bounds (N : Node_Id; L, H : out Node_Id);
297 -- This procedure assigns to L and H respectively the values of the
298 -- low and high bounds of node N, which must be a range, subtype
299 -- indication, or the name of a scalar subtype. The result in L, H
300 -- may be set to Error if there was an earlier error in the range.
302 function Get_Enum_Lit_From_Pos
303 (T : Entity_Id;
304 Pos : Uint;
305 Loc : Source_Ptr)
306 return Entity_Id;
307 -- This function obtains the E_Enumeration_Literal entity for the
308 -- specified value from the enumneration type or subtype T. The
309 -- second argument is the Pos value, which is assumed to be in range.
310 -- The third argument supplies a source location for constructed
311 -- nodes returned by this function.
313 function Get_Name_Entity_Id (Id : Name_Id) return Entity_Id;
314 -- An entity value is associated with each name in the name table. The
315 -- Get_Name_Entity_Id function fetches the Entity_Id of this entity,
316 -- which is the innermost visible entity with the given name. See the
317 -- body of Sem_Ch8 for further details on handling of entity visibility.
319 function Get_Referenced_Object (N : Node_Id) return Node_Id;
320 -- Given a node, return the renamed object if the node represents
321 -- a renamed object, otherwise return the node unchanged. The node
322 -- may represent an arbitrary expression.
324 function Get_Subprogram_Body (E : Entity_Id) return Node_Id;
325 -- Given the entity for a subprogram (E_Function or E_Procedure),
326 -- return the corresponding N_Subprogram_Body node. If the corresponding
327 -- body of the declaration is missing (as for an imported subprogram)
328 -- return Empty.
330 function Get_Task_Body_Procedure (E : Entity_Id) return Node_Id;
331 pragma Inline (Get_Task_Body_Procedure);
332 -- Given an entity for a task type or subtype, retrieves the
333 -- Task_Body_Procedure field from the corresponding task type
334 -- declaration.
336 function Has_Infinities (E : Entity_Id) return Boolean;
337 -- Determines if the range of the floating-point type E includes
338 -- infinities. Returns False if E is not a floating-point type.
340 function Has_Private_Component (Type_Id : Entity_Id) return Boolean;
341 -- Check if a type has a (sub)component of a private type that has not
342 -- yet received a full declaration.
344 function Has_Tagged_Component (Typ : Entity_Id) return Boolean;
345 -- Typ must be a composite type (array or record). This function is used
346 -- to check if '=' has to be expanded into a bunch component comparaisons.
348 function In_Instance return Boolean;
349 -- Returns True if the current scope is within a generic instance.
351 function In_Instance_Body return Boolean;
352 -- Returns True if current scope is within the body of an instance, where
353 -- several semantic checks (e.g. accessibility checks) are relaxed.
355 function In_Instance_Not_Visible return Boolean;
356 -- Returns True if current scope is with the private part or the body of
357 -- an instance. Other semantic checks are suppressed in this context.
359 function In_Instance_Visible_Part return Boolean;
360 -- Returns True if current scope is within the visible part of a package
361 -- instance, where several additional semantic checks apply.
363 function In_Subprogram_Or_Concurrent_Unit return Boolean;
364 -- Determines if the current scope is within a subprogram compilation
365 -- unit (inside a subprogram declaration, subprogram body, or generic
366 -- subprogram declaration) or within a task or protected body. The test
367 -- is for appearing anywhere within such a construct (that is it does not
368 -- need to be directly within).
370 function In_Visible_Part (Scope_Id : Entity_Id) return Boolean;
371 -- Determine whether a declaration occurs within the visible part of a
372 -- package specification. The package must be on the scope stack, and the
373 -- corresponding private part must not.
375 function Is_AAMP_Float (E : Entity_Id) return Boolean;
376 -- Defined for all type entities. Returns True only for the base type
377 -- of float types with AAMP format. The particular format is determined
378 -- by the Digits_Value value which is 6 for the 32-bit floating point type,
379 -- or 9 for the 48-bit type. This is not an attribute function (like
380 -- VAX_Float) in order to not use up an extra flag and to prevent
381 -- the dependency of Einfo on Targparm which would be required for a
382 -- synthesized attribute.
384 function Is_Dependent_Component_Of_Mutable_Object
385 (Object : Node_Id)
386 return Boolean;
387 -- Returns True if Object is the name of a subcomponent that
388 -- depends on discriminants of a variable whose nominal subtype
389 -- is unconstrained and not indefinite, and the variable is
390 -- not aliased. Otherwise returns False. The nodes passed
391 -- to this function are assumed to denote objects.
393 function Is_Actual_Parameter (N : Node_Id) return Boolean;
394 -- Determines if N is an actual parameter in a subprogram call.
396 function Is_Aliased_View (Obj : Node_Id) return Boolean;
397 -- Determine if Obj is an aliased view, i.e. the name of an
398 -- object to which 'Access or 'Unchecked_Access can apply.
400 function Is_Atomic_Object (N : Node_Id) return Boolean;
401 -- Determines if the given node denotes an atomic object in the sense
402 -- of the legality checks described in RM C.6(12).
404 function Is_False (U : Uint) return Boolean;
405 -- The argument is a Uint value which is the Boolean'Pos value of a
406 -- Boolean operand (i.e. is either 0 for False, or 1 for True). This
407 -- function simply tests if it is False (i.e. zero)
409 function Is_Fixed_Model_Number (U : Ureal; T : Entity_Id) return Boolean;
410 -- Returns True iff the number U is a model number of the fixed-
411 -- point type T, i.e. if it is an exact multiple of Small.
413 function Is_Fully_Initialized_Type (Typ : Entity_Id) return Boolean;
414 -- Typ is a type entity. This function returns true if this type is
415 -- fully initialized, meaning that an object of the type is fully
416 -- initialized. Note that initialization resulting from the use of
417 -- pragma Normalized_Scalars does not count.
419 function Is_Inherited_Operation (E : Entity_Id) return Boolean;
420 -- E is a subprogram. Return True is E is an implicit operation inherited
421 -- by a derived type declarations.
423 function Is_Library_Level_Entity (E : Entity_Id) return Boolean;
424 -- A library-level declaration is one that is accessible from Standard,
425 -- i.e. a library unit or an entity declared in a library package.
427 function Is_Local_Variable_Reference (Expr : Node_Id) return Boolean;
428 -- Determines whether Expr is a refeference to a variable or IN OUT
429 -- mode parameter of the current enclosing subprogram.
431 function Is_Object_Reference (N : Node_Id) return Boolean;
432 -- Determines if the tree referenced by N represents an object. Both
433 -- variable and constant objects return True (compare Is_Variable).
435 function Is_OK_Variable_For_Out_Formal (AV : Node_Id) return Boolean;
436 -- Used to test if AV is an acceptable formal for an OUT or IN OUT
437 -- formal. Note that the Is_Variable function is not quite the right
438 -- test because this is a case in which conversions whose expression
439 -- is a variable (in the Is_Variable sense) with a non-tagged type
440 -- target are considered view conversions and hence variables.
442 function Is_RCI_Pkg_Spec_Or_Body (Cunit : Node_Id) return Boolean;
443 -- Return True if a compilation unit is the specification or the
444 -- body of a remote call interface package.
446 function Is_Remote_Access_To_Class_Wide_Type (E : Entity_Id) return Boolean;
447 -- Return True if E is a remote access-to-class-wide-limited_private type
449 function Is_Remote_Access_To_Subprogram_Type (E : Entity_Id) return Boolean;
450 -- Return True if E is a remote access to subprogram type.
452 function Is_Remote_Call (N : Node_Id) return Boolean;
453 -- Return True if N denotes a potentially remote call
455 function Is_Selector_Name (N : Node_Id) return Boolean;
456 -- Given an N_Identifier node N, determines if it is a Selector_Name.
457 -- As described in Sinfo, Selector_Names are special because they
458 -- represent use of the N_Identifier node for a true identifier, when
459 -- normally such nodes represent a direct name.
461 function Is_Statement (N : Node_Id) return Boolean;
462 -- Check if the node N is a statement node. Note that this includes
463 -- the case of procedure call statements (unlike the direct use of
464 -- the N_Statement_Other_Than_Procedure_Call subtype from Sinfo)
466 function Is_Transfer (N : Node_Id) return Boolean;
467 -- Returns True if the node N is a statement which is known to cause
468 -- an unconditional transfer of control at runtime, i.e. the following
469 -- statement definitely will not be executed.
471 function Is_True (U : Uint) return Boolean;
472 -- The argument is a Uint value which is the Boolean'Pos value of a
473 -- Boolean operand (i.e. is either 0 for False, or 1 for True). This
474 -- function simply tests if it is True (i.e. non-zero)
476 function Is_Variable (N : Node_Id) return Boolean;
477 -- Determines if the tree referenced by N represents a variable, i.e.
478 -- can appear on the left side of an assignment. There is one situation,
479 -- namely formal parameters, in which non-tagged type conversions are
480 -- also considered variables, but Is_Variable returns False for such
481 -- cases, since it has no knowledge of the context. Note that this is
482 -- the point at which Assignment_OK is checked, and True is returned
483 -- for any tree thus marked.
485 function Is_Volatile_Object (N : Node_Id) return Boolean;
486 -- Determines if the given node denotes an volatile object in the sense
487 -- of the legality checks described in RM C.6(12).
489 procedure Kill_Size_Check_Code (E : Entity_Id);
490 -- Called when an address clause or pragma Import is applied to an
491 -- entity. If the entity is a variable or a constant, and size check
492 -- code is present, this size check code is killed, since the object
493 -- will not be allocated by the program.
495 function New_External_Entity
496 (Kind : Entity_Kind;
497 Scope_Id : Entity_Id;
498 Sloc_Value : Source_Ptr;
499 Related_Id : Entity_Id;
500 Suffix : Character;
501 Suffix_Index : Nat := 0;
502 Prefix : Character := ' ')
503 return Entity_Id;
504 -- This function creates an N_Defining_Identifier node for an internal
505 -- created entity, such as an implicit type or subtype, or a record
506 -- initialization procedure. The entity name is constructed with a call
507 -- to New_External_Name (Related_Id, Suffix, Suffix_Index, Prefix), so
508 -- that the generated name may be referenced as a public entry, and the
509 -- Is_Public flag is set if needed (using Set_Public_Status). If the
510 -- entity is for a type or subtype, the size/align fields are initialized
511 -- to unknown (Uint_0).
513 function New_Internal_Entity
514 (Kind : Entity_Kind;
515 Scope_Id : Entity_Id;
516 Sloc_Value : Source_Ptr;
517 Id_Char : Character)
518 return Entity_Id;
519 -- This function is similar to New_External_Entity, except that the
520 -- name is constructed by New_Internal_Name (Id_Char). This is used
521 -- when the resulting entity does not have to be referenced as a
522 -- public entity (and in this case Is_Public is not set).
524 procedure Next_Actual (Actual_Id : in out Node_Id);
525 pragma Inline (Next_Actual);
526 -- Next_Actual (N) is equivalent to N := Next_Actual (N)
528 function Next_Actual (Actual_Id : Node_Id) return Node_Id;
529 -- Find next actual parameter in declaration order. As described for
530 -- First_Actual, this is the next actual in the declaration order, not
531 -- the call order, so this does not correspond to simply taking the
532 -- next entry of the Parameter_Associations list. The argument is an
533 -- actual previously returned by a call to First_Actual or Next_Actual.
534 -- Note tha the result produced is always an expression, not a parameter
535 -- assciation node, even if named notation was used.
537 procedure Normalize_Actuals
538 (N : Node_Id;
539 S : Entity_Id;
540 Report : Boolean;
541 Success : out Boolean);
542 -- Reorders lists of actuals according to names of formals, value returned
543 -- in Success indicates success of reordering. For more details, see body.
544 -- Errors are reported only if Report is set to True.
546 procedure Note_Possible_Modification (N : Node_Id);
547 -- This routine is called if the sub-expression N maybe the target of
548 -- an assignment (e.g. it is the left side of an assignment, used as
549 -- an out parameters, or used as prefixes of access attributes). It
550 -- sets May_Be_Modified in the associated entity if there is one,
551 -- taking into account the rule that in the case of renamed objects,
552 -- it is the flag in the renamed object that must be set.
554 function Object_Access_Level (Obj : Node_Id) return Uint;
555 -- Return the accessibility level of the view of the object Obj.
556 -- For convenience, qualified expressions applied to object names
557 -- are also allowed as actuals for this function.
559 function Private_Component (Type_Id : Entity_Id) return Entity_Id;
560 -- Returns some private component (if any) of the given Type_Id.
561 -- Used to enforce the rules on visibility of operations on composite
562 -- types, that depend on the full view of the component type. For a
563 -- record type there may be several such components, we just return
564 -- the first one.
566 procedure Process_End_Label (N : Node_Id; Typ : Character);
567 -- N is a node whose End_Label is to be processed, generating all
568 -- appropriate cross-reference entries, and performing style checks
569 -- for any identifier references in the end label. Typ is either
570 -- 'e' or 't indicating the type of the cross-reference entity
571 -- (e for spec, t for body, see Lib.Xref spec for details).
573 function Real_Convert (S : String) return Node_Id;
574 -- S is a possibly signed syntactically valid real literal. The result
575 -- returned is an N_Real_Literal node representing the literal value.
577 function Requires_Transient_Scope (Id : Entity_Id) return Boolean;
578 -- E is a type entity. The result is True when temporaries of this
579 -- type need to be wrapped in a transient scope to be reclaimed
580 -- properly when a secondary stack is in use. Examples of types
581 -- requiring such wrapping are controlled types and variable-sized
582 -- types including unconstrained arrays
584 procedure Reset_Analyzed_Flags (N : Node_Id);
585 -- Reset the Analyzed flags in all nodes of the tree whose root is N
587 function Same_Name (N1, N2 : Node_Id) return Boolean;
588 -- Determine if two (possibly expanded) names are the same name
590 function Same_Type (T1, T2 : Entity_Id) return Boolean;
591 -- Determines if T1 and T2 represent exactly the same type. Two types
592 -- are the same if they are identical, or if one is an unconstrained
593 -- subtype of the other, or they are both common subtypes of the same
594 -- type with identical constraints. The result returned is conservative.
595 -- It is True if the types are known to be the same, but a result of
596 -- False is indecisive (e.g. the compiler may not be able to tell that
597 -- two constraints are identical).
599 function Scope_Within_Or_Same (Scope1, Scope2 : Entity_Id) return Boolean;
600 -- Determines if the entity Scope1 is the same as Scope2, or if it is
601 -- inside it, where both entities represent scopes. Note that scopes
602 -- are only partially ordered, so Scope_Within_Or_Same (A,B) and
603 -- Scope_Within_Or_Same (B,A) can both be False for a given pair A,B.
605 function Scope_Within (Scope1, Scope2 : Entity_Id) return Boolean;
606 -- Like Scope_Within_Or_Same, except that this function returns
607 -- False in the case where Scope1 and Scope2 are the same scope.
609 procedure Set_Current_Entity (E : Entity_Id);
610 -- Establish the entity E as the currently visible definition of its
611 -- associated name (i.e. the Node_Id associated with its name)
613 procedure Set_Entity_With_Style_Check (N : Node_Id; Val : Entity_Id);
614 -- This procedure has the same calling sequence as Set_Entity, but
615 -- if Style_Check is set, then it calls a style checking routine which
616 -- can check identifier spelling style.
618 procedure Set_Name_Entity_Id (Id : Name_Id; Val : Entity_Id);
619 -- Sets the Entity_Id value associated with the given name, which is the
620 -- Id of the innermost visible entity with the given name. See the body
621 -- of package Sem_Ch8 for further details on the handling of visibility.
623 procedure Set_Next_Actual (Ass1_Id : Node_Id; Ass2_Id : Node_Id);
624 -- The arguments may be parameter associations, whose descendants
625 -- are the optional formal name and the actual parameter. Positional
626 -- parameters are already members of a list, and do not need to be
627 -- chained separately. See also First_Actual and Next_Actual.
629 procedure Set_Public_Status (Id : Entity_Id);
630 -- If an entity (visible or otherwise) is defined in a library
631 -- package, or a package that is itself public, then this subprogram
632 -- labels the entity public as well.
634 procedure Set_Scope_Is_Transient (V : Boolean := True);
635 -- Set the flag Is_Transient of the current scope
637 procedure Set_Size_Info (T1, T2 : Entity_Id);
638 -- Copies the Esize field and Has_Biased_Representation flag from
639 -- (sub)type entity T2 to (sub)type entity T1. Also copies the
640 -- Is_Unsigned_Type flag in the fixed-point and discrete cases,
641 -- and also copies the alignment value from T2 to T1. It does NOT
642 -- copy the RM_Size field, which must be separately set if this
643 -- is required to be copied also.
645 function Scope_Is_Transient return Boolean;
646 -- True if the current scope is transient.
648 function Static_Integer (N : Node_Id) return Uint;
649 -- This function analyzes the given expression node and then resolves it
650 -- as any integer type. If the result is static, then the value of the
651 -- universal expression is returned, otherwise an error message is output
652 -- and a value of No_Uint is returned.
654 function Statically_Different (E1, E2 : Node_Id) return Boolean;
655 -- Return True if it can be statically determined that the Expressions
656 -- E1 and E2 refer to different objects
658 function Subprogram_Access_Level (Subp : Entity_Id) return Uint;
659 -- Return the accessibility level of the view denoted by Subp.
661 procedure Trace_Scope (N : Node_Id; E : Entity_Id; Msg : String);
662 -- Print debugging information on entry to each unit being analyzed.
664 procedure Transfer_Entities (From : Entity_Id; To : Entity_Id);
665 -- Move a list of entities from one scope to another, and recompute
666 -- Is_Public based upon the new scope.
668 function Type_Access_Level (Typ : Entity_Id) return Uint;
669 -- Return the accessibility level of Typ.
671 function Unit_Declaration_Node (Unit_Id : Entity_Id) return Node_Id;
672 -- Unit_Id is the simple name of a program unit, this function returns
673 -- the corresponding xxx_Declaration node for the entity. Also applies
674 -- to the body entities for subprograms in tasks, in which case it
675 -- returns the subprogram or task body node for it. The unit may be
676 -- a child unit with any number of ancestors.
678 function Within_Init_Proc return Boolean;
679 -- Determines if Current_Scope is within an Init_Proc
681 procedure Wrong_Type (Expr : Node_Id; Expected_Type : Entity_Id);
682 -- Output error message for incorrectly typed expression. Expr is the
683 -- node for the incorrectly typed construct (Etype (Expr) is the type
684 -- found), and Expected_Type is the entity for the expected type. Note
685 -- that Expr does not have to be a subexpression, anything with an
686 -- Etype field may be used.
688 private
689 pragma Inline (Current_Entity);
690 pragma Inline (Get_Name_Entity_Id);
691 pragma Inline (Is_False);
692 pragma Inline (Is_Statement);
693 pragma Inline (Is_True);
694 pragma Inline (Set_Current_Entity);
695 pragma Inline (Set_Name_Entity_Id);
696 pragma Inline (Set_Size_Info);
698 end Sem_Util;