1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2015, Free Software Foundation, Inc. --
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. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 with Snames
; use Snames
;
33 with Types
; use Types
;
34 with Uintp
; use Uintp
;
35 with Urealp
; use Urealp
;
39 -- This package defines the annotations to the abstract syntax tree that
40 -- are needed to support semantic processing of an Ada compilation.
42 -- Note that after editing this spec and the corresponding body it is
43 -- required to run ceinfo to check the consistentcy of spec and body.
44 -- See ceinfo.adb for more information about the checks made.
46 -- These annotations are for the most part attributes of declared entities,
47 -- and they correspond to conventional symbol table information. Other
48 -- attributes include sets of meanings for overloaded names, possible
49 -- types for overloaded expressions, flags to indicate deferred constants,
50 -- incomplete types, etc. These attributes are stored in available fields in
51 -- tree nodes (i.e. fields not used by the parser, as defined by the Sinfo
52 -- package specification), and accessed by means of a set of subprograms
53 -- which define an abstract interface.
55 -- There are two kinds of semantic information
57 -- First, the tree nodes with the following Nkind values:
59 -- N_Defining_Identifier
60 -- N_Defining_Character_Literal
61 -- N_Defining_Operator_Symbol
63 -- are called Entities, and constitute the information that would often
64 -- be stored separately in a symbol table. These nodes are all extended
65 -- to provide extra space, and contain fields which depend on the entity
66 -- kind, as defined by the contents of the Ekind field. The use of the
67 -- Ekind field, and the associated fields in the entity, are defined
68 -- in this package, as are the access functions to these fields.
70 -- Second, in some cases semantic information is stored directly in other
71 -- kinds of nodes, e.g. the Etype field, used to indicate the type of an
72 -- expression. The access functions to these fields are defined in the
73 -- Sinfo package, but their full documentation is to be found in
74 -- the Einfo package specification.
76 -- Declaration processing places information in the nodes of their defining
77 -- identifiers. Name resolution places in all other occurrences of an
78 -- identifier a pointer to the corresponding defining occurrence.
80 --------------------------------
81 -- The XEINFO Utility Program --
82 --------------------------------
84 -- XEINFO is a utility program which automatically produces a C header file,
85 -- einfo.h from the spec and body of package Einfo. It reads the input files
86 -- einfo.ads and einfo.adb and produces the output file einfo.h. XEINFO is run
87 -- automatically by the build scripts when you do a full bootstrap.
89 -- In order for this utility program to operate correctly, the form of the
90 -- einfo.ads and einfo.adb files must meet certain requirements and be laid
91 -- out in a specific manner.
93 -- The general form of einfo.ads is as follows:
95 -- type declaration for type Entity_Kind
96 -- subtype declarations declaring subranges of Entity_Kind
97 -- subtype declarations declaring synonyms for some standard types
98 -- function specs for attributes
100 -- pragma Inline declarations
102 -- This order must be observed. There are no restrictions on the procedures,
103 -- since the C header file only includes functions (The back end is not
104 -- allowed to modify the generated tree). However, functions are required to
105 -- have headers that fit on a single line.
107 -- XEINFO reads and processes the function specs and the pragma Inlines. For
108 -- functions that are declared as inlined, XEINFO reads the corresponding body
109 -- from einfo.adb, and processes it into C code. This results in some strict
110 -- restrictions on which functions can be inlined:
112 -- The function spec must be on a single line
114 -- There can only be a single statement, contained on a single line,
115 -- not counting any pragma Assert statements.
117 -- This single statement must either be a function call with simple,
118 -- single token arguments, or it must be a membership test of the form
119 -- a in b, where a and b are single tokens.
121 -- For functions that are not inlined, there is no restriction on the body,
122 -- and XEINFO generates a direct reference in the C header file which allows
123 -- the C code in the backend to directly call the corresponding Ada body.
125 ----------------------------------
126 -- Handling of Type'Size Values --
127 ----------------------------------
129 -- The Ada 95 RM contains some rather peculiar (to us) rules on the value
130 -- of type'Size (see RM 13.3(55)). We have found that attempting to use
131 -- these RM Size values generally, and in particular for determining the
132 -- default size of objects, creates chaos, and major incompatibilities in
135 -- We proceed as follows, for discrete and fixed-point subtypes, we have
136 -- two separate sizes for each subtype:
138 -- The Object_Size, which is used for determining the default size of
139 -- objects and components. This size value can be referred to using the
140 -- Object_Size attribute. The phrase "is used" here means that it is
141 -- the basis of the determination of the size. The backend is free to
142 -- pad this up if necessary for efficiency, e.g. an 8-bit stand-alone
143 -- character might be stored in 32 bits on a machine with no efficient
144 -- byte access instructions such as the Alpha.
146 -- The default rules for the value of Object_Size for fixed-point and
147 -- discrete types are as follows:
149 -- The Object_Size for base subtypes reflect the natural hardware
150 -- size in bits (see Ttypes and Cstand for integer types). For
151 -- enumeration and fixed-point base subtypes have 8, 16, 32, or 64
152 -- bits for this size, depending on the range of values to be stored.
154 -- The Object_Size of a subtype is the same as the Object_Size of
155 -- the subtype from which it is obtained.
157 -- The Object_Size of a derived base type is copied from the parent
158 -- base type, and the Object_Size of a derived first subtype is copied
159 -- from the parent first subtype.
161 -- The Value_Size which is the number of bits required to store a value
162 -- of the type. This size can be referred to using the Value_Size
163 -- attribute. This value is used to determine how tightly to pack
164 -- records or arrays with components of this type, and also affects
165 -- the semantics of unchecked conversion (unchecked conversions where
166 -- the Value_Size values differ generate a warning, and are potentially
167 -- target dependent).
169 -- The default rule for the value of Value_Size are as follows:
171 -- The Value_Size for a base subtype is the minimum number of bits
172 -- required to store all values of the type (including the sign bit
173 -- only if negative values are possible).
175 -- If a subtype statically matches the first subtype, then it has
176 -- by default the same Value_Size as the first subtype. This is a
177 -- consequence of RM 13.1(14) ("if two subtypes statically match,
178 -- then their subtype-specific aspects are the same".)
180 -- All other subtypes have a Value_Size corresponding to the minimum
181 -- number of bits required to store all values of the subtype. For
182 -- dynamic bounds, it is assumed that the value can range down or up
183 -- to the corresponding bound of the ancestor
185 -- The RM defined attribute Size corresponds to the Value_Size attribute
187 -- The Size attribute may be defined for a first-named subtype. This sets
188 -- the Value_Size of the first-named subtype to the given value, and the
189 -- Object_Size of this first-named subtype to the given value padded up
190 -- to an appropriate boundary. It is a consequence of the default rules
191 -- above that this Object_Size will apply to all further subtypes. On the
192 -- other hand, Value_Size is affected only for the first subtype, any
193 -- dynamic subtypes obtained from it directly, and any statically matching
194 -- subtypes. The Value_Size of any other static subtypes is not affected.
196 -- Value_Size and Object_Size may be explicitly set for any subtype using
197 -- an attribute definition clause. Note that the use of these attributes
198 -- can cause the RM 13.1(14) rule to be violated. If two access types
199 -- reference aliased objects whose subtypes have differing Object_Size
200 -- values as a result of explicit attribute definition clauses, then it
201 -- is erroneous to convert from one access subtype to the other.
203 -- At the implementation level, Esize stores the Object_Size and the
204 -- RM_Size field stores the Value_Size (and hence the value of the
205 -- Size attribute, which, as noted above, is equivalent to Value_Size).
207 -- To get a feel for the difference, consider the following examples (note
208 -- that in each case the base is short_short_integer with a size of 8):
210 -- Object_Size Value_Size
212 -- type x1 is range 0..5; 8 3
214 -- type x2 is range 0..5;
215 -- for x2'size use 12; 16 12
217 -- subtype x3 is x2 range 0 .. 3; 16 2
219 -- subtype x4 is x2'base range 0 .. 10; 8 4
221 -- subtype x5 is x2 range 0 .. dynamic; 16 (7)
223 -- subtype x6 is x2'base range 0 .. dynamic; 8 (7)
225 -- Note: the entries marked (7) are not actually specified by the Ada 95 RM,
226 -- but it seems in the spirit of the RM rules to allocate the minimum number
227 -- of bits known to be large enough to hold the given range of values.
229 -- So far, so good, but GNAT has to obey the RM rules, so the question is
230 -- under what conditions must the RM Size be used. The following is a list
231 -- of the occasions on which the RM Size must be used:
233 -- Component size for packed arrays or records
234 -- Value of the attribute Size for a type
235 -- Warning about sizes not matching for unchecked conversion
237 -- The RM_Size field keeps track of the RM Size as needed in these
240 -- For elementary types other than discrete and fixed-point types, the
241 -- Object_Size and Value_Size are the same (and equivalent to the RM
242 -- attribute Size). Only Size may be specified for such types.
244 -- For composite types, Object_Size and Value_Size are computed from their
245 -- respective value for the type of each element as well as the layout.
247 -- All size attributes are stored as Uint values. Negative values are used to
248 -- reference GCC expressions for the case of non-static sizes, as explained
251 --------------------------------------
252 -- Delayed Freezing and Elaboration --
253 --------------------------------------
255 -- The flag Has_Delayed_Freeze indicates that an entity carries an explicit
256 -- freeze node, which appears later in the expanded tree.
258 -- a) The flag is used by the front-end to trigger expansion actions which
259 -- include the generation of that freeze node. Typically this happens at the
260 -- end of the current compilation unit, or before the first subprogram body is
261 -- encountered in the current unit. See files freeze and exp_ch13 for details
262 -- on the actions triggered by a freeze node, which include the construction
263 -- of initialization procedures and dispatch tables.
265 -- b) The presence of a freeze node on an entity is used by the backend to
266 -- defer elaboration of the entity until its freeze node is seen. In the
267 -- absence of an explicit freeze node, an entity is frozen (and elaborated)
268 -- at the point of declaration.
270 -- For object declarations, the flag is set when an address clause for the
271 -- object is encountered. Legality checks on the address expression only take
272 -- place at the freeze point of the object.
274 -- Most types have an explicit freeze node, because they cannot be elaborated
275 -- until all representation and operational items that apply to them have been
276 -- analyzed. Private types and incomplete types have the flag set as well, as
277 -- do task and protected types.
279 -- Implicit base types created for type derivations, as well as classwide
280 -- types created for all tagged types, have the flag set.
282 -- If a subprogram has an access parameter whose designated type is incomplete
283 -- the subprogram has the flag set.
285 -----------------------
286 -- Entity Attributes --
287 -----------------------
289 -- This section contains a complete list of the attributes that are defined
290 -- on entities. Some attributes apply to all entities, others only to certain
291 -- kinds of entities. In the latter case the attribute should only be set or
292 -- accessed if the Ekind field indicates an appropriate entity.
294 -- There are two kinds of attributes that apply to entities, stored and
295 -- synthesized. Stored attributes correspond to a field or flag in the entity
296 -- itself. Such attributes are identified in the table below by giving the
297 -- field or flag in the attribute that is used to hold the attribute value.
298 -- Synthesized attributes are not stored directly, but are rather computed as
299 -- needed from other attributes, or from information in the tree. These are
300 -- marked "synthesized" in the table below. The stored attributes have both
301 -- access functions and set procedures to set the corresponding values, while
302 -- synthesized attributes have only access functions.
304 -- Note: in the case of Node, Uint, or Elist fields, there are cases where the
305 -- same physical field is used for different purposes in different entities,
306 -- so these access functions should only be referenced for the class of
307 -- entities in which they are defined as being present. Flags are not
308 -- overlapped in this way, but nevertheless as a matter of style and
309 -- abstraction (which may or may not be checked by assertions in the
310 -- body), this restriction should be observed for flag fields as well.
312 -- Note: certain of the attributes on types apply only to base types, and
313 -- are so noted by the notation [base type only]. These are cases where the
314 -- attribute of any subtype is the same as the attribute of the base type.
315 -- The attribute can be referenced on a subtype (and automatically retrieves
316 -- the value from the base type). However, it is an error to try to set the
317 -- attribute on other than the base type, and if assertions are enabled,
318 -- an attempt to set the attribute on a subtype will raise an assert error.
320 -- Other attributes are noted as applying to the [implementation base type
321 -- only]. These are representation attributes which must always apply to a
322 -- full non-private type, and where the attributes are always on the full
323 -- type. The attribute can be referenced on a subtype (and automatically
324 -- retries the value from the implementation base type). However, it is an
325 -- error to try to set the attribute on other than the implementation base
326 -- type, and if assertions are enabled, an attempt to set the attribute on a
327 -- subtype will raise an assert error.
329 -- Abstract_States (Elist25)
330 -- Defined for E_Package entities. Contains a list of all the abstract
331 -- states declared by the related package.
333 -- Accept_Address (Elist21)
334 -- Defined in entries. If an accept has a statement sequence, then an
335 -- address variable is created, which is used to hold the address of the
336 -- parameters, as passed by the runtime. Accept_Address holds an element
337 -- list which represents a stack of entities for these address variables.
338 -- The current entry is the top of the stack, which is the last element
339 -- on the list. A stack is required to handle the case of nested select
340 -- statements referencing the same entry.
342 -- Access_Disp_Table (Elist16) [implementation base type only]
343 -- Defined in E_Record_Type and E_Record_Subtype entities. Set in tagged
344 -- types to point to their dispatch tables. The first two entities are
345 -- associated with the primary dispatch table: 1) primary dispatch table
346 -- with user-defined primitives 2) primary dispatch table with predefined
347 -- primitives. For each interface type covered by the tagged type we also
348 -- have: 3) secondary dispatch table with thunks of primitives covering
349 -- user-defined interface primitives, 4) secondary dispatch table with
350 -- thunks of predefined primitives, 5) secondary dispatch table with user
351 -- defined primitives, and 6) secondary dispatch table with predefined
352 -- primitives. The last entity of this list is an access type declaration
353 -- used to expand dispatching calls through the primary dispatch table.
354 -- For an untagged record, contains No_Elist.
356 -- Activation_Record_Component (Node31)
357 -- Defined in E_Variable, E_Constant, E_Loop_Parameter, E_In_Parameter,
358 -- E_Out_Parameter, E_In_Out_Parameter nodes. Used only if we are in
359 -- Opt.Unnest_Subprogram_Mode, in which case for the case of an uplevel
360 -- referenced entity, this field contains the entity for the component
361 -- in the generated ARECnT activation record (Exp_Unst for details).
363 -- Actual_Subtype (Node17)
364 -- Defined in variables, constants, and formal parameters. This is the
365 -- subtype imposed by the value of the object, as opposed to its nominal
366 -- subtype, which is imposed by the declaration. The actual subtype
367 -- differs from the nominal one when the latter is indefinite (as in the
368 -- case of an unconstrained formal parameter, or a variable declared
369 -- with an unconstrained type and an initial value). The nominal subtype
370 -- is the Etype entry for the entity. The Actual_Subtype field is set
371 -- only if the actual subtype differs from the nominal subtype. If the
372 -- actual and nominal subtypes are the same, then the Actual_Subtype
373 -- field is Empty, and Etype indicates both types.
375 -- For objects, the Actual_Subtype is set only if this is a discriminated
376 -- type. For arrays, the bounds of the expression are obtained and the
377 -- Etype of the object is directly the constrained subtype. This is
378 -- rather irregular, and the semantic checks that depend on the nominal
379 -- subtype being unconstrained use flag Is_Constr_Subt_For_U_Nominal(qv).
381 -- Address_Clause (synthesized)
382 -- Applies to entries, objects and subprograms. Set if an address clause
383 -- is present which references the object or subprogram and points to
384 -- the N_Attribute_Definition_Clause node. Empty if no Address clause.
385 -- The expression in the address clause is always a constant that is
386 -- defined before the entity to which the address clause applies.
387 -- Note: The backend references this field in E_Task_Type entities???
389 -- Address_Taken (Flag104)
390 -- Defined in all entities. Set if the Address or Unrestricted_Access
391 -- attribute is applied directly to the entity, i.e. the entity is the
392 -- entity of the prefix of the attribute reference. Also set if the
393 -- entity is the second argument of an Asm_Input or Asm_Output attribute,
394 -- as the construct may entail taking its address. Used by the backend to
395 -- make sure that the address can be meaningfully taken, and also in the
396 -- case of subprograms to control output of certain warnings.
398 -- Aft_Value (synthesized)
399 -- Applies to fixed and decimal types. Computes a universal integer that
400 -- holds value of the Aft attribute for the type.
403 -- Defined in overloadable entities (literals, subprograms, entries) and
404 -- subprograms that cover a primitive operation of an abstract interface
405 -- (that is, subprograms with the Interface_Alias attribute). In case of
406 -- overloaded entities it points to the parent subprogram of a derived
407 -- subprogram. In case of abstract interface subprograms it points to the
408 -- subprogram that covers the abstract interface primitive. Also used for
409 -- a subprogram renaming, where it points to the renamed subprogram. For
410 -- an inherited operation (of a type extension) that is overridden in a
411 -- private part, the Alias is the overriding operation. In this fashion a
412 -- call from outside the package ends up executing the new body even if
413 -- non-dispatching, and a call from inside calls the overriding operation
414 -- because it hides the implicit one. Alias is always empty for entries.
416 -- Alignment (Uint14)
417 -- Defined in entities for types and also in constants, variables
418 -- (including exceptions where it refers to the static data allocated for
419 -- an exception), loop parameters, and formal parameters. This indicates
420 -- the desired alignment for a type, or the actual alignment for an
421 -- object. A value of zero (Uint_0) indicates that the alignment has not
422 -- been set yet. The alignment can be set by an explicit alignment
423 -- clause, or set by the front-end in package Layout, or set by the
424 -- back-end as part of the back-end back-annotation process. The
425 -- alignment field is also defined in E_Exception entities, but there it
426 -- is used only by the back-end for back annotation.
428 -- Alignment_Clause (synthesized)
429 -- Applies to all entities for types and objects. If an alignment
430 -- attribute definition clause is present for the entity, then this
431 -- function returns the N_Attribute_Definition clause that specifies the
432 -- alignment. If no alignment clause applies to the type, then the call
433 -- to this function returns Empty. Note that the call can return a
434 -- non-Empty value even if Has_Alignment_Clause is not set (happens with
435 -- subtype and derived type declarations). Note also that a record
436 -- definition clause with an (obsolescent) mod clause is converted
437 -- into an attribute definition clause for this purpose.
439 -- Associated_Formal_Package (Node12)
440 -- Defined in packages that are the actuals of formal_packages. Points
441 -- to the entity in the declaration for the formal package.
443 -- Associated_Node_For_Itype (Node8)
444 -- Defined in all type and subtype entities. Set non-Empty only for
445 -- Itypes. Set to point to the associated node for the Itype, i.e.
446 -- the node whose elaboration generated the Itype. This is used for
447 -- copying trees, to determine whether or not to copy an Itype, and
448 -- also for accessibility checks on anonymous access types. This
449 -- node is typically an object declaration, component declaration,
450 -- type or subtype declaration. For an access discriminant in a type
451 -- declaration, the associated_node_for_itype is the discriminant
452 -- specification. For an access parameter it is the enclosing subprogram
455 -- Itypes have no explicit declaration, and therefore are not attached to
456 -- the tree: their Parent field is always empty. The Associated_Node_For_
457 -- Itype is the only way to determine the construct that leads to the
458 -- creation of a given itype entity.
460 -- Associated_Storage_Pool (Node22) [root type only]
461 -- Defined in simple and general access type entities. References the
462 -- storage pool to be used for the corresponding collection. A value of
463 -- Empty means that the default pool is to be used. This is defined
464 -- only in the root type, since derived types must have the same pool
465 -- as the parent type.
467 -- Barrier_Function (Node12)
468 -- Defined in protected entries and entry families. This is the
469 -- subprogram declaration for the body of the function that returns
470 -- the value of the entry barrier.
472 -- Base_Type (synthesized)
473 -- Applies to all type and subtype entities. Returns the base type of a
474 -- type or subtype. The base type of a type is the type itself. The base
475 -- type of a subtype is the type that it constrains (which is always
476 -- a type entity, not some other subtype). Note that in the case of a
477 -- subtype of a private type, it is possible for the base type attribute
478 -- to return a private type, even if the subtype to which it applies is
479 -- non-private. See also Implementation_Base_Type. Note: it is allowed to
480 -- apply Base_Type to other than a type, in which case it simply returns
481 -- the entity unchanged.
483 -- Block_Node (Node11)
484 -- Defined in block entities. Points to the identifier in the
485 -- Block_Statement itself. Used when retrieving the block construct
486 -- for finalization purposes, The block entity has an implicit label
487 -- declaration in the enclosing declarative part, and has otherwise
488 -- no direct connection in the tree with the block statement. The
489 -- link is to the identifier (which is an occurrence of the entity)
490 -- and not to the block_statement itself, because the statement may
491 -- be rewritten, e.g. in the process of removing dead code.
493 -- Body_Entity (Node19)
494 -- Defined in package and generic package entities, points to the
495 -- corresponding package body entity if one is present.
497 -- Body_Needed_For_SAL (Flag40)
498 -- Defined in package and subprogram entities that are compilation
499 -- units. Indicates that the source for the body must be included
500 -- when the unit is part of a standalone library.
502 -- Body_References (Elist16)
503 -- Defined in abstract state entities. Contains an element list of
504 -- references (identifiers) that appear in a package body whose spec
505 -- defines the related state. If the body refines the said state, all
506 -- references on this list are illegal due to the visible refinement.
508 -- BIP_Initialization_Call (Node29)
509 -- Defined in constants and variables whose corresponding declaration
510 -- is wrapped in a transient block and the inital value is provided by
511 -- a build-in-place function call. Contains the relocated build-in-place
512 -- call after the expansion has decoupled the call from the object. This
513 -- attribute is used by the finalization machinery to insert cleanup code
514 -- for all additional transient variables found in the transient block.
516 -- C_Pass_By_Copy (Flag125) [implementation base type only]
517 -- Defined in record types. Set if a pragma Convention for the record
518 -- type specifies convention C_Pass_By_Copy. This convention name is
519 -- treated as identical in all respects to convention C, except that
520 -- if it is specified for a record type, then the C_Pass_By_Copy flag
521 -- is set, and if a foreign convention subprogram has a formal of the
522 -- corresponding type, then the parameter passing mechanism will be
523 -- set to By_Copy (unless specifically overridden by an Import or
526 -- Can_Never_Be_Null (Flag38)
527 -- This flag is defined in all entities. It is set in an object which can
528 -- never have a null value. Set for constant access values initialized to
529 -- a non-null value. This is also set for all access parameters in Ada 83
530 -- and Ada 95 modes, and for access parameters that explicitly exclude
531 -- exclude null in Ada 2005 mode.
533 -- This is used to avoid unnecessary resetting of the Is_Known_Non_Null
534 -- flag for such entities. In Ada 2005 mode, this is also used when
535 -- determining subtype conformance of subprogram profiles to ensure
536 -- that two formals have the same null-exclusion status.
538 -- This is also set on some access types, e.g. the Etype of the anonymous
539 -- access type of a controlling formal.
541 -- Can_Use_Internal_Rep (Flag229) [base type only]
542 -- Defined in Access_Subprogram_Kind nodes. This flag is set by the
543 -- front end and used by the backend. False means that the backend
544 -- must represent the type in the same way as Convention-C types (and
545 -- other foreign-convention types). On many targets, this means that
546 -- the backend will use dynamically generated trampolines for nested
547 -- subprograms. True means that the backend can represent the type in
548 -- some internal way. On the aforementioned targets, this means that the
549 -- backend will not use dynamically generated trampolines. This flag
550 -- must be False if Has_Foreign_Convention is True; otherwise, the front
551 -- end is free to set the policy.
553 -- Setting this False in all cases corresponds to the traditional back
554 -- end strategy, where all access-to-subprogram types are represented the
555 -- same way, independent of the Convention. For further details, see also
556 -- Always_Compatible_Rep in Targparm.
558 -- Efficiency note: On targets that use dynamically generated
559 -- trampolines, False generally favors efficiency of top-level
560 -- subprograms, whereas True generally favors efficiency of nested
561 -- ones. On other targets, this flag has little or no effect on
562 -- efficiency. The front end should take this into account. In
563 -- particular, pragma Favor_Top_Level gives a hint that the flag
566 -- Note: We considered using Convention-C for this purpose, but we need
567 -- this separate flag, because Convention-C implies that in the case of
568 -- P'[Unrestricted_]Access, P also have convention C. Sometimes we want
569 -- to have Can_Use_Internal_Rep False for an access type, but allow P to
570 -- have convention Ada.
573 -- Defined in all entities. This field contains an entry into the names
574 -- table that has the character string of the identifier, character
575 -- literal or operator symbol. See Namet for further details. Note that
576 -- throughout the processing of the front end, this name is the simple
577 -- unqualified name. However, just before the backend is called, a call
578 -- is made to Qualify_All_Entity_Names. This causes entity names to be
579 -- qualified using the encoding described in exp_dbug.ads, and from that
580 -- point (including post backend steps, e.g. cross-reference generation),
581 -- the entities will contain the encoded qualified names.
583 -- Checks_May_Be_Suppressed (Flag31)
584 -- Defined in all entities. Set if a pragma Suppress or Unsuppress
585 -- mentions the entity specifically in the second argument. If this
586 -- flag is set the Global_Entity_Suppress and Local_Entity_Suppress
587 -- tables must be consulted to determine if there actually is an active
588 -- Suppress or Unsuppress pragma that applies to the entity.
590 -- Class_Wide_Type (Node9)
591 -- Defined in all type entities. For a tagged type or subtype, returns
592 -- the corresponding implicitly declared class-wide type. For a
593 -- class-wide type, returns itself. Set to Empty for untagged types.
595 -- Cloned_Subtype (Node16)
596 -- Defined in E_Record_Subtype and E_Class_Wide_Subtype entities.
597 -- Each such entity can either have a Discriminant_Constraint, in
598 -- which case it represents a distinct type from the base type (and
599 -- will have a list of components and discrimants in the list headed by
600 -- First_Entity) or else no such constraint, in which case it will be a
601 -- copy of the base type.
603 -- o Each element of the list in First_Entity is copied from the base
604 -- type; in that case, this field is Empty.
606 -- o The list in First_Entity is shared with the base type; in that
607 -- case, this field points to that entity.
609 -- A record or classwide subtype may also be a copy of some other
610 -- subtype and share the entities in the First_Entity with that subtype.
611 -- In that case, this field points to that subtype.
613 -- For E_Class_Wide_Subtype, the presence of Equivalent_Type overrides
614 -- this field. Note that this field ONLY appears in subtype entries, not
615 -- in type entries, it is not defined, and it is an error to reference
616 -- Cloned_Subtype in an E_Record_Type or E_Class_Wide_Type entity.
619 -- This flag appears on all nodes, including entities, and indicates
620 -- that the node was created by the scanner or parser from the original
621 -- source. Thus for entities, it indicates that the entity is defined
622 -- in the original source program.
624 -- Component_Alignment (special field) [base type only]
625 -- Defined in array and record entities. Contains a value of type
626 -- Component_Alignment_Kind indicating the alignment of components.
627 -- Set to Calign_Default normally, but can be overridden by use of
628 -- the Component_Alignment pragma. Note: this field is currently
629 -- stored in a non-standard way, see body for details.
631 -- Component_Bit_Offset (Uint11)
632 -- Defined in record components (E_Component, E_Discriminant) if a
633 -- component clause applies to the component. First bit position of
634 -- given component, computed from the first bit and position values
635 -- given in the component clause. A value of No_Uint means that the
636 -- value is not yet known. The value can be set by the appearance of
637 -- an explicit component clause in a record representation clause,
638 -- or it can be set by the front-end in package Layout, or it can be
639 -- set by the backend. By the time backend processing is completed,
640 -- this field is always set. A negative value is used to represent
641 -- a value which is not known at compile time, and must be computed
642 -- at run-time (this happens if fields of a record have variable
643 -- lengths). See package Layout for details of these values.
645 -- Note: Component_Bit_Offset is redundant with respect to the fields
646 -- Normalized_First_Bit and Normalized_Position, and could in principle
647 -- be eliminated, but it is convenient in several situations, including
648 -- use in the backend, to have this redundant field.
650 -- Component_Clause (Node13)
651 -- Defined in record components and discriminants. If a record
652 -- representation clause is present for the corresponding record type a
653 -- that specifies a position for the component, then the Component_Clause
654 -- field of the E_Component entity points to the N_Component_Clause node.
655 -- Set to Empty if no record representation clause was present, or if
656 -- there was no specification for this component.
658 -- Component_Size (Uint22) [implementation base type only]
659 -- Defined in array types. It contains the component size value for
660 -- the array. A value of No_Uint means that the value is not yet set.
661 -- The value can be set by the use of a component size clause, or
662 -- by the front end in package Layout, or by the backend. A negative
663 -- value is used to represent a value which is not known at compile
664 -- time, and must be computed at run-time (this happens if the type
665 -- of the component has a variable length size). See package Layout
666 -- for details of these values.
668 -- Component_Type (Node20) [implementation base type only]
669 -- Defined in array types and string types. References component type.
671 -- Contains_Ignored_Ghost_Code (Flag279)
672 -- Defined in blocks, packages and their bodies, subprograms and their
673 -- bodies. Set if the entity contains any ignored Ghost code in the form
674 -- of declaration, procedure call, assignment statement or pragma.
676 -- Corresponding_Concurrent_Type (Node18)
677 -- Defined in record types that are constructed by the expander to
678 -- represent task and protected types (Is_Concurrent_Record_Type flag
679 -- set). Points to the entity for the corresponding task type or the
682 -- Corresponding_Discriminant (Node19)
683 -- Defined in discriminants of a derived type, when the discriminant is
684 -- used to constrain a discriminant of the parent type. Points to the
685 -- corresponding discriminant in the parent type. Otherwise it is Empty.
687 -- Corresponding_Equality (Node30)
688 -- Defined in function entities for implicit inequality operators.
689 -- Denotes the explicit or derived equality operation that creates
690 -- the implicit inequality. Note that this field is not present in
691 -- other function entities, only in implicit inequality routines,
692 -- where Comes_From_Source is always False.
694 -- Corresponding_Protected_Entry (Node18)
695 -- Defined in subprogram bodies. Set for subprogram bodies that implement
696 -- a protected type entry to point to the entity for the entry.
698 -- Corresponding_Record_Type (Node18)
699 -- Defined in protected and task types and subtypes. References the
700 -- entity for the corresponding record type constructed by the expander
701 -- (see Exp_Ch9). This type is used to represent values of the task type.
703 -- Corresponding_Remote_Type (Node22)
704 -- Defined in record types that describe the fat pointer structure for
705 -- Remote_Access_To_Subprogram types. References the original access
706 -- to subprogram type.
708 -- CR_Discriminant (Node23)
709 -- Defined in discriminants of concurrent types. Denotes the homologous
710 -- discriminant of the corresponding record type. The CR_Discriminant is
711 -- created at the same time as the discriminal, and used to replace
712 -- occurrences of the discriminant within the type declaration.
714 -- Current_Use_Clause (Node27)
715 -- Defined in packages and in types. For packages, denotes the use
716 -- package clause currently in scope that makes the package use_visible.
717 -- For types, it denotes the use_type clause that makes the operators of
718 -- the type visible. Used for more precise warning messages on redundant
721 -- Current_Value (Node9)
722 -- Defined in all object entities. Set in E_Variable, E_Constant, formal
723 -- parameters and E_Loop_Parameter entities if we have trackable current
724 -- values. Set non-Empty if the (constant) current value of the variable
725 -- is known, This value is valid only for references from the same
726 -- sequential scope as the entity. The sequential scope of an entity
727 -- includes the immediate scope and any contained scopes that are package
728 -- specs, package bodies, blocks (at any nesting level) or statement
729 -- sequences in IF or loop statements.
731 -- Another related use of this field is to record information about the
732 -- value obtained from an IF or WHILE statement condition. If the IF or
733 -- ELSIF or WHILE condition has the form "NOT {,NOT] OBJ RELOP VAL ",
734 -- or OBJ [AND [THEN]] expr, where OBJ refers to an entity with a
735 -- Current_Value field, RELOP is one of the six relational operators, and
736 -- VAL is a compile-time known value then the Current_Value field of OBJ
737 -- points to the N_If_Statement, N_Elsif_Part, or N_Iteration_Scheme node
738 -- of the relevant construct, and the Condition field of this can be
739 -- consulted to give information about the value of OBJ. For more details
740 -- on this usage, see the procedure Exp_Util.Get_Current_Value_Condition.
742 -- Debug_Info_Off (Flag166)
743 -- Defined in all entities. Set if a pragma Suppress_Debug_Info applies
744 -- to the entity, or if internal processing in the compiler determines
745 -- that suppression of debug information is desirable. Note that this
746 -- flag is only for use by the front end as part of the processing for
747 -- determining if Needs_Debug_Info should be set. The backend should
748 -- always test Needs_Debug_Info, it should never test Debug_Info_Off.
750 -- Debug_Renaming_Link (Node25)
751 -- Used to link the variable associated with a debug renaming declaration
752 -- to the renamed entity. See Exp_Dbug.Debug_Renaming_Declaration for
753 -- details of the use of this field.
755 -- Declaration_Node (synthesized)
756 -- Applies to all entities. Returns the tree node for the construct that
757 -- declared the entity. Normally this is just the Parent of the entity.
758 -- One exception arises with child units, where the parent of the entity
759 -- is a selected component/defining program unit name. Another exception
760 -- is that if the entity is an incomplete type that has been completed or
761 -- a private type, then we obtain the declaration node denoted by the
762 -- full type, i.e. the full type declaration node. Also note that for
763 -- subprograms, this returns the {function,procedure}_specification, not
764 -- the subprogram_declaration.
766 -- Default_Aspect_Component_Value (Node19) [base type only]
767 -- Defined in array types. Holds the static value specified in a
768 -- Default_Component_Value aspect specification for the array type.
770 -- Default_Aspect_Value (Node19) [base type only]
771 -- Defined in scalar types. Holds the static value specified in a
772 -- Default_Value aspect specification for the type.
774 -- Default_Expr_Function (Node21)
775 -- Defined in parameters. It holds the entity of the parameterless
776 -- function that is built to evaluate the default expression if it is
777 -- more complex than a simple identifier or literal. For the latter
778 -- simple cases or if there is no default value, this field is Empty.
780 -- Default_Expressions_Processed (Flag108)
781 -- A flag in subprograms (functions, operators, procedures) and in
782 -- entries and entry families used to indicate that default expressions
783 -- have been processed and to avoid multiple calls to process the
784 -- default expressions (see Freeze.Process_Default_Expressions), which
785 -- would not only waste time, but also generate false error messages.
787 -- Default_Init_Cond_Procedure (synthesized)
788 -- Defined in all types. Set for private [sub]types subject to pragma
789 -- Default_Initial_Condition, their corresponding full views and derived
790 -- types with at least one parent subject to the pragma. Contains the
791 -- entity of the procedure which takes a single argument of the given
792 -- type and verifies the assumption of the pragma.
794 -- Note: the reason this is marked as a synthesized attribute is that the
795 -- way this is stored is as an element of the Subprograms_For_Type field.
797 -- Default_Value (Node20)
798 -- Defined in formal parameters. Points to the node representing the
799 -- expression for the default value for the parameter. Empty if the
800 -- parameter has no default value (which is always the case for OUT
801 -- and IN OUT parameters in the absence of errors).
803 -- Delay_Cleanups (Flag114)
804 -- Defined in entities that have finalization lists (subprograms
805 -- blocks, and tasks). Set if there are pending generic body
806 -- instantiations for the corresponding entity. If this flag is
807 -- set, then generation of cleanup actions for the corresponding
808 -- entity must be delayed, since the insertion of the generic body
809 -- may affect cleanup generation (see Inline for further details).
811 -- Delay_Subprogram_Descriptors (Flag50)
812 -- Defined in entities for which exception subprogram descriptors
813 -- are generated (subprograms, package declarations and package
814 -- bodies). Defined if there are pending generic body instantiations
815 -- for the corresponding entity. If this flag is set, then generation
816 -- of the subprogram descriptor for the corresponding enities must
817 -- be delayed, since the insertion of the generic body may add entries
818 -- to the list of handlers.
820 -- Note: for subprograms, Delay_Subprogram_Descriptors is set if and
821 -- only if Delay_Cleanups is set. But Delay_Cleanups can be set for a
822 -- a block (in which case Delay_Subprogram_Descriptors is set for the
823 -- containing subprogram). In addition Delay_Subprogram_Descriptors is
824 -- set for a library level package declaration or body which contains
825 -- delayed instantiations (in this case the descriptor refers to the
826 -- enclosing elaboration procedure).
828 -- Delta_Value (Ureal18)
829 -- Defined in fixed and decimal types. Points to a universal real
830 -- that holds value of delta for the type, as given in the declaration
831 -- or as inherited by a subtype or derived type.
833 -- Dependent_Instances (Elist8)
834 -- Defined in packages that are instances. Holds list of instances
835 -- of inner generics. Used to place freeze nodes for those instances
836 -- after that of the current one, i.e. after the corresponding generic
839 -- Depends_On_Private (Flag14)
840 -- Defined in all type entities. Set if the type is private or if it
841 -- depends on a private type.
843 -- Derived_Type_Link (Node31)
844 -- Defined in all type and subtype entries. Set in a base type if
845 -- a derived type declaration is encountered which derives from
846 -- this base type or one of its subtypes, and there are already
847 -- primitive operations declared. In this case, it references the
848 -- entity for the type declared by the derived type declaration.
852 -- subtype RS is R ...
854 -- type G is new RS ...
856 -- In this case, if primitive operations have been declared for R, at
857 -- the point of declaration of G, then the Derived_Type_Link of R is set
858 -- to point to the entity for G. This is used to generate warnings for
859 -- rep clauses that appear later on for R, which might result in an
860 -- unexpected implicit conversion operation.
862 -- Note: if there is more than one such derived type, the link will point
863 -- to the last one (this is only used in generating warning messages).
865 -- Designated_Type (synthesized)
866 -- Applies to access types. Returns the designated type. Differs from
867 -- Directly_Designated_Type in that if the access type refers to an
868 -- incomplete type, and the full type is available, then this full type
869 -- is returned instead of the incomplete type.
871 -- Digits_Value (Uint17)
872 -- Defined in floating point types and subtypes and decimal types and
873 -- subtypes. Contains the Digits value specified in the declaration.
875 -- Direct_Primitive_Operations (Elist10)
876 -- Defined in tagged types and subtypes (including synchronized types),
877 -- in tagged private types and in tagged incomplete types. Element list
878 -- of entities for primitive operations of the tagged type. Not defined
879 -- in untagged types. In order to follow the C++ ABI, entities of
880 -- primitives that come from source must be stored in this list in the
881 -- order of their occurrence in the sources. For incomplete types the
882 -- list is always empty.
884 -- Directly_Designated_Type (Node20)
885 -- Defined in access types. This field points to the type that is
886 -- directly designated by the access type. In the case of an access
887 -- type to an incomplete type, this field references the incomplete
888 -- type. Directly_Designated_Type is typically used in implementing the
889 -- static semantics of the language; in implementing dynamic semantics,
890 -- we typically want the full view of the designated type. The function
891 -- Designated_Type obtains this full type in the case of access to an
894 -- Discard_Names (Flag88)
895 -- Defined in types and exception entities. Set if pragma Discard_Names
896 -- applies to the entity. It is also set for declarative regions and
897 -- package specs for which a Discard_Names pragma with zero arguments
898 -- has been encountered. The purpose of setting this flag is to be able
899 -- to set the Discard_Names attribute on enumeration types declared
900 -- after the pragma within the same declarative region. This flag is
901 -- set to False if a Keep_Names pragma appears for an enumeration type.
903 -- Discriminal (Node17)
904 -- Defined in discriminants (Discriminant formal: GNAT's first
905 -- coinage). The entity used as a formal parameter that corresponds
906 -- to a discriminant. See section "Handling of Discriminants" for
907 -- full details of the use of discriminals.
909 -- Discriminal_Link (Node10)
910 -- Defined in E_In_Parameter or E_Constant entities. For discriminals,
911 -- points back to corresponding discriminant. For other entities, must
914 -- Discriminant_Checking_Func (Node20)
915 -- Defined in components. Points to the defining identifier of the
916 -- function built by the expander returns a Boolean indicating whether
917 -- the given record component exists for the current discriminant
920 -- Discriminant_Constraint (Elist21)
921 -- Defined in entities whose Has_Discriminants flag is set (concurrent
922 -- types, subtypes, record types and subtypes, private types and
923 -- subtypes, limited private types and subtypes and incomplete types).
924 -- It is an error to reference the Discriminant_Constraint field if
925 -- Has_Discriminants is False.
927 -- If the Is_Constrained flag is set, Discriminant_Constraint points
928 -- to an element list containing the discriminant constraints in the
929 -- same order in which the discriminants are declared.
931 -- If the Is_Constrained flag is not set but the discriminants of the
932 -- unconstrained type have default initial values then this field
933 -- points to an element list giving these default initial values in
934 -- the same order in which the discriminants are declared. Note that
935 -- in this case the entity cannot be a tagged record type, because
936 -- discriminants in this case cannot have defaults.
938 -- If the entity is a tagged record implicit type, then this field is
939 -- inherited from the first subtype (so that the itype is subtype
940 -- conformant with its first subtype, which is needed when the first
941 -- subtype overrides primitive operations inherited by the implicit
944 -- In all other cases Discriminant_Constraint contains the empty
945 -- Elist (ie it is initialized with a call to New_Elmt_List).
947 -- Discriminant_Default_Value (Node20)
948 -- Defined in discriminants. Points to the node representing the
949 -- expression for the default value of the discriminant. Set to
950 -- Empty if the discriminant has no default value.
952 -- Discriminant_Number (Uint15)
953 -- Defined in discriminants. Gives the ranking of a discriminant in
954 -- the list of discriminants of the type, i.e. a sequential integer
955 -- index starting at 1 and ranging up to number of discriminants.
957 -- Dispatch_Table_Wrappers (Elist26) [implementation base type only]
958 -- Defined in E_Record_Type and E_Record_Subtype entities. Set in library
959 -- level tagged type entities if we are generating statically allocated
960 -- dispatch tables. Points to the list of dispatch table wrappers
961 -- associated with the tagged type. For an untagged record, contains
964 -- DTC_Entity (Node16)
965 -- Defined in function and procedure entities. Set to Empty unless
966 -- the subprogram is dispatching in which case it references the
967 -- Dispatch Table pointer Component. For regular Ada tagged this, this
968 -- is the _Tag component. For CPP_Class types and their descendants,
969 -- this points to the component entity in the record that holds the
970 -- Vtable pointer for the Vtable containing the entry referencing the
973 -- DT_Entry_Count (Uint15)
974 -- Defined in E_Component entities. Only used for component marked
975 -- Is_Tag. Store the number of entries in the Vtable (or Dispatch Table)
977 -- DT_Offset_To_Top_Func (Node25)
978 -- Defined in E_Component entities. Only used for component marked
979 -- Is_Tag. If present it stores the Offset_To_Top function used to
980 -- provide this value in tagged types whose ancestor has discriminants.
982 -- DT_Position (Uint15)
983 -- Defined in function and procedure entities which are dispatching
984 -- (should not be referenced without first checking that flag
985 -- Is_Dispatching_Operation is True). Contains the offset into
986 -- the Vtable for the entry that references the subprogram.
989 -- Defined in all entities. Contains a value of the enumeration type
990 -- Entity_Kind declared in a subsequent section in this spec.
992 -- Elaborate_Body_Desirable (Flag210)
993 -- Defined in package entities. Set if the elaboration circuitry detects
994 -- a case where there is a package body that modifies one or more visible
995 -- entities in the package spec and there is no explicit Elaborate_Body
996 -- pragma for the package. This information is passed on to the binder,
997 -- which attempts, but does not promise, to elaborate the body as close
998 -- to the spec as possible.
1000 -- Elaboration_Entity (Node13)
1001 -- Defined in generic and non-generic package and subprogram entities.
1002 -- This is a counter associated with the unit that is initially set to
1003 -- zero, is incremented when an elaboration request for the unit is
1004 -- made, and is decremented when a finalization request for the unit
1005 -- is made. This is used for three purposes. First, it is used to
1006 -- implement access before elaboration checks (the counter must be
1007 -- non-zero to call a subprogram at elaboration time). Second, it is
1008 -- used to guard against repeated execution of the elaboration code.
1009 -- Third, it is used to ensure that the finalization code is executed
1010 -- only after all clients have requested it.
1012 -- Note that we always allocate this counter, and set this field, but
1013 -- we do not always actually use it. It is only used if it is needed
1014 -- for access before elaboration use (see Elaboration_Entity_Required
1015 -- flag) or if either the spec or the body has elaboration code. If
1016 -- neither of these two conditions holds, then the entity is still
1017 -- allocated (since we don't know early enough whether or not there
1018 -- is elaboration code), but is simply not used for any purpose.
1020 -- Elaboration_Entity_Required (Flag174)
1021 -- Defined in generic and non-generic package and subprogram entities.
1022 -- Set only if Elaboration_Entity is non-Empty to indicate that the
1023 -- counter is required to be non-zero even if there is no other
1024 -- elaboration code. This occurs when the Elaboration_Entity counter
1025 -- is used for access before elaboration checks. If the counter is
1026 -- only used to prevent multiple execution of the elaboration code,
1027 -- then if there is no other elaboration code, obviously there is no
1028 -- need to set the flag.
1030 -- Encapsulating_State (Node10)
1031 -- Defined in abstract states and variables. Contains the entity of an
1032 -- ancestor state whose refinement utilizes this item as a constituent.
1034 -- Enclosing_Scope (Node18)
1035 -- Defined in labels. Denotes the innermost enclosing construct that
1036 -- contains the label. Identical to the scope of the label, except for
1037 -- labels declared in the body of an accept statement, in which case the
1038 -- entry_name is the Enclosing_Scope. Used to validate goto's within
1039 -- accept statements.
1041 -- Entry_Accepted (Flag152)
1042 -- Defined in E_Entry and E_Entry_Family entities. Set if there is
1043 -- at least one accept for this entry in the task body. Used to
1044 -- generate warnings for missing accepts.
1046 -- Entry_Bodies_Array (Node19)
1047 -- Defined in protected types for which Has_Entries is true.
1048 -- This is the defining identifier for the array of entry body
1049 -- action procedures and barrier functions used by the runtime to
1050 -- execute the user code associated with each entry.
1052 -- Entry_Cancel_Parameter (Node23)
1053 -- Defined in blocks. This only applies to a block statement for
1054 -- which the Is_Asynchronous_Call_Block flag is set. It
1055 -- contains the defining identifier of an object that must be
1056 -- passed to the Cancel_Task_Entry_Call or Cancel_Protected_Entry_Call
1057 -- call in the cleanup handler added to the block by
1058 -- Exp_Ch7.Expand_Cleanup_Actions. This parameter is a Boolean
1059 -- object for task entry calls and a Communications_Block object
1060 -- in the case of protected entry calls. In both cases the objects
1061 -- are declared in outer scopes to this block.
1063 -- Entry_Component (Node11)
1064 -- Defined in formal parameters (in, in out and out parameters). Used
1065 -- only for formals of entries. References the corresponding component
1066 -- of the entry parameter record for the entry.
1068 -- Entry_Formal (Node16)
1069 -- Defined in components of the record built to correspond to entry
1070 -- parameters. This field points from the component to the formal. It
1071 -- is the back pointer corresponding to Entry_Component.
1073 -- Entry_Index_Constant (Node18)
1074 -- Defined in an entry index parameter. This is an identifier that
1075 -- eventually becomes the name of a constant representing the index
1076 -- of the entry family member whose entry body is being executed. Used
1077 -- to expand references to the entry index specification identifier.
1079 -- Entry_Index_Type (synthesized)
1080 -- Applies to an entry family. Denotes Etype of the subtype indication
1081 -- in the entry declaration. Used to resolve the index expression in an
1082 -- accept statement for a member of the family, and in the prefix of
1083 -- 'COUNT when it applies to a family member.
1085 -- Contract (Node34)
1086 -- Defined in entry, entry family, package, package body, subprogram and
1087 -- subprogram body entities as well as their respective generic forms. A
1088 -- contract is also applicable to a variable. Points to the contract of
1089 -- the entity, holding various assertion items and data classifiers.
1091 -- Entry_Parameters_Type (Node15)
1092 -- Defined in entries. Points to the access-to-record type that is
1093 -- constructed by the expander to hold a reference to the parameter
1094 -- values. This reference is manipulated (as an address) by the
1095 -- tasking runtime. The designated record represents a packaging
1096 -- up of the entry parameters (see Exp_Ch9.Expand_N_Entry_Declaration
1097 -- for further details). Entry_Parameters_Type is Empty if the entry
1098 -- has no parameters.
1100 -- Enumeration_Pos (Uint11)
1101 -- Defined in enumeration literals. Contains the position number
1102 -- corresponding to the value of the enumeration literal.
1104 -- Enumeration_Rep (Uint12)
1105 -- Defined in enumeration literals. Contains the representation that
1106 -- corresponds to the value of the enumeration literal. Note that
1107 -- this is normally the same as Enumeration_Pos except in the presence
1108 -- of representation clauses, where Pos will still represent the
1109 -- position of the literal within the type and Rep will have be the
1110 -- value given in the representation clause.
1112 -- Enumeration_Rep_Expr (Node22)
1113 -- Defined in enumeration literals. Points to the expression in an
1114 -- associated enumeration rep clause that provides the representation
1115 -- value for this literal. Empty if no enumeration rep clause for this
1116 -- literal (or if rep clause does not have an entry for this literal,
1117 -- an error situation). This is also used to catch duplicate entries
1118 -- for the same literal.
1120 -- Enum_Pos_To_Rep (Node23)
1121 -- Defined in enumeration types (but not enumeration subtypes). Set to
1122 -- Empty unless the enumeration type has a non-standard representation
1123 -- (i.e. at least one literal has a representation value different from
1124 -- its pos value). In this case, Enum_Pos_To_Rep is the entity for an
1125 -- array constructed when the type is frozen that maps Pos values to
1126 -- corresponding Rep values. The index type of this array is Natural,
1127 -- and the component type is a suitable integer type that holds the
1128 -- full range of representation values.
1130 -- Equivalent_Type (Node18)
1131 -- Defined in class wide types and subtypes, access to protected
1132 -- subprogram types, and in exception types. For a classwide type, it
1133 -- is always Empty. For a class wide subtype, it points to an entity
1134 -- created by the expander which gives the backend an understandable
1135 -- equivalent of the class subtype with a known size (given by an
1136 -- initial value). See Exp_Util.Expand_Class_Wide_Subtype for further
1137 -- details. For E_Exception_Type, this points to the record containing
1138 -- the data necessary to represent exceptions (for further details, see
1139 -- System.Standard_Library. For access_to_protected subprograms, it
1140 -- denotes a record that holds pointers to the operation and to the
1141 -- protected object. For remote Access_To_Subprogram types, it denotes
1142 -- the record that is the fat pointer representation of an RAST.
1145 -- Defined in all types and subtypes, and also for components, constants,
1146 -- and variables, including exceptions where it refers to the static data
1147 -- allocated for an exception. Contains the Object_Size of the type or of
1148 -- the object. A value of zero indicates that the value is not yet known.
1150 -- For the case of components where a component clause is present, the
1151 -- value is the value from the component clause, which must be non-
1152 -- negative (but may be zero, which is acceptable for the case of
1153 -- a type with only one possible value). It is also possible for Esize
1154 -- of a component to be set without a component clause defined, which
1155 -- means that the component size is specified, but not the position.
1156 -- See also RM_Size and the section on "Handling of Type'Size Values".
1157 -- During backend processing, the value is back annotated for all zero
1158 -- values, so that after the call to the backend, the value is set.
1161 -- Defined in all entities. Represents the type of the entity, which
1162 -- is itself another entity. For a type entity, points to the parent
1163 -- type for a derived type, or if the type is not derived, points to
1164 -- itself. For a subtype entity, Etype points to the base type. For
1165 -- a class wide type, points to the corresponding specific type. For a
1166 -- subprogram or subprogram type, Etype has the return type of a function
1167 -- or is set to Standard_Void_Type to represent a procedure. The Etype
1168 -- field of a package is also set to Standard_Void_Type.
1170 -- Note one obscure case: for pragma Default_Storage_Pool (null), the
1171 -- Etype of the N_Null node is Empty.
1173 -- Extra_Accessibility (Node13)
1174 -- Defined in formal parameters in the non-generic case. Normally Empty,
1175 -- but if expansion is active, and a parameter is one for which a
1176 -- dynamic accessibility check is required, then an extra formal of type
1177 -- Natural is created (see description of field Extra_Formal), and the
1178 -- Extra_Accessibility field of the formal parameter points to the entity
1179 -- for this extra formal. Also defined in variables when compiling
1180 -- receiving stubs. In this case, a non Empty value means that this
1181 -- variable's accessibility depth has been transmitted by the caller and
1182 -- must be retrieved through the entity designed by this field instead of
1185 -- Extra_Accessibility_Of_Result (Node19)
1186 -- Defined in (non-generic) Function, Operator, and Subprogram_Type
1187 -- entities. Normally Empty, but if expansion is active, and a function
1188 -- is one for which "the accessibility level of the result ... determined
1189 -- by the point of call" (AI05-0234) is needed, then an extra formal of
1190 -- subtype Natural is created (see description of field Extra_Formal),
1191 -- and the Extra_Accessibility_Of_Result field of the function points to
1192 -- the entity for this extra formal.
1194 -- Extra_Constrained (Node23)
1195 -- Defined in formal parameters in the non-generic case. Normally Empty,
1196 -- but if expansion is active and a parameter is one for which a dynamic
1197 -- indication of its constrained status is required, then an extra formal
1198 -- of type Boolean is created (see description of field Extra_Formal),
1199 -- and the Extra_Constrained field of the formal parameter points to the
1200 -- entity for this extra formal. Also defined in variables when compiling
1201 -- receiving stubs. In this case, a non empty value means that this
1202 -- variable's constrained status has been transmitted by the caller and
1203 -- must be retrieved through the entity designed by this field instead of
1206 -- Extra_Formal (Node15)
1207 -- Defined in formal parameters in the non-generic case. Certain
1208 -- parameters require extra implicit information to be passed (e.g. the
1209 -- flag indicating if an unconstrained variant record argument is
1210 -- constrained, and the accessibility level for access parameters). See
1211 -- description of Extra_Constrained, Extra_Accessibility fields for
1212 -- further details. Extra formal parameters are constructed to represent
1213 -- these values, and chained to the end of the list of formals using the
1214 -- Extra_Formal field (i.e. the Extra_Formal field of the last "real"
1215 -- formal points to the first extra formal, and the Extra_Formal field of
1216 -- each extra formal points to the next one, with Empty indicating the
1217 -- end of the list of extra formals). Another case of Extra_Formal arises
1218 -- in connection with unnesting of subprograms, where the ARECnF formal
1219 -- that represents an activation record pointer is an extra formal.
1221 -- Extra_Formals (Node28)
1222 -- Applies to subprograms and subprogram types, and also to entries
1223 -- and entry families. Returns first extra formal of the subprogram
1224 -- or entry. Returns Empty if there are no extra formals.
1226 -- Finalization_Master (Node23) [root type only]
1227 -- Defined in access-to-controlled or access-to-class-wide types. The
1228 -- field contains the entity of the finalization master which handles
1229 -- dynamically allocated controlled objects referenced by the access
1230 -- type. Empty for access-to-subprogram types. Empty for access types
1231 -- whose designated type does not need finalization actions.
1233 -- Finalize_Storage_Only (Flag158) [base type only]
1234 -- Defined in all types. Set on direct controlled types to which a
1235 -- valid Finalize_Storage_Only pragma applies. This flag is also set on
1236 -- composite types when they have at least one controlled component and
1237 -- all their controlled components are Finalize_Storage_Only. It is also
1238 -- inherited by type derivation except for direct controlled types where
1239 -- the Finalize_Storage_Only pragma is required at each level of
1242 -- Finalizer (Node28)
1243 -- Applies to package declarations and bodies. Contains the entity of the
1244 -- library-level program which finalizes all package-level controlled
1247 -- First_Component (synthesized)
1248 -- Applies to record types. Returns the first component by following the
1249 -- chain of declared entities for the record until a component is found
1250 -- (one with an Ekind of E_Component). The discriminants are skipped. If
1251 -- the record is null, then Empty is returned.
1253 -- First_Component_Or_Discriminant (synthesized)
1254 -- Similar to First_Component, but discriminants are not skipped, so will
1255 -- find the first discriminant if discriminants are present.
1257 -- First_Entity (Node17)
1258 -- Defined in all entities which act as scopes to which a list of
1259 -- associated entities is attached (blocks, class subtypes and types,
1260 -- entries, functions, loops, packages, procedures, protected objects,
1261 -- record types and subtypes, private types, task types and subtypes).
1262 -- Points to a list of associated entities using the Next_Entity field
1263 -- as a chain pointer with Empty marking the end of the list.
1265 -- First_Exit_Statement (Node8)
1266 -- Defined in E_Loop entity. The exit statements for a loop are chained
1267 -- (in reverse order of appearance) using this field to point to the
1268 -- first entry in the chain (last exit statement in the loop). The
1269 -- entries are chained through the Next_Exit_Statement field of the
1270 -- N_Exit_Statement node with Empty marking the end of the list.
1272 -- First_Formal (synthesized)
1273 -- Applies to subprograms and subprogram types, and also to entries
1274 -- and entry families. Returns first formal of the subprogram or entry.
1275 -- The formals are the first entities declared in a subprogram or in
1276 -- a subprogram type (the designated type of an Access_To_Subprogram
1277 -- definition) or in an entry.
1279 -- First_Formal_With_Extras (synthesized)
1280 -- Applies to subprograms and subprogram types, and also in entries
1281 -- and entry families. Returns first formal of the subprogram or entry.
1282 -- Returns Empty if there are no formals. The list returned includes
1283 -- all the extra formals (see description of Extra_Formals field).
1285 -- First_Index (Node17)
1286 -- Defined in array types and subtypes. By introducing implicit subtypes
1287 -- for the index constraints, we have the same structure for constrained
1288 -- and unconstrained arrays, subtype marks and discrete ranges are
1289 -- both represented by a subtype. This function returns the tree node
1290 -- corresponding to an occurrence of the first index (NOT the entity for
1291 -- the type). Subsequent indices are obtained using Next_Index. Note that
1292 -- this field is defined for the case of string literal subtypes, but is
1295 -- First_Literal (Node17)
1296 -- Defined in all enumeration types, including character and boolean
1297 -- types. This field points to the first enumeration literal entity
1298 -- for the type (i.e. it is set to First (Literals (N)) where N is
1299 -- the enumeration type definition node. A special case occurs with
1300 -- standard character and wide character types, where this field is
1301 -- Empty, since there are no enumeration literal lists in these cases.
1302 -- Note that this field is set in enumeration subtypes, but it still
1303 -- points to the first literal of the base type in this case.
1305 -- First_Private_Entity (Node16)
1306 -- Defined in all entities containing private parts (packages, protected
1307 -- types and subtypes, task types and subtypes). The entities on the
1308 -- entity chain are in order of declaration, so the entries for private
1309 -- entities are at the end of the chain. This field points to the first
1310 -- entity for the private part. It is Empty if there are no entities
1311 -- declared in the private part or if there is no private part.
1313 -- First_Rep_Item (Node6)
1314 -- Defined in all entities. If non-empty, points to a linked list of
1315 -- representation pragmas nodes and representation clause nodes that
1316 -- apply to the entity, linked using Next_Rep_Item, with Empty marking
1317 -- the end of the list. In the case of derived types and subtypes, the
1318 -- new entity inherits the chain at the point of declaration. This means
1319 -- that it is possible to have multiple instances of the same kind of rep
1320 -- item on the chain, in which case it is the first one that applies to
1323 -- Note: pragmas that can apply to more than one overloadable entity,
1324 -- (Convention, Interface, Inline, Inline_Always, Import, Export,
1325 -- External) are never present on this chain when they apply to
1326 -- overloadable entities, since it is impossible for a given pragma
1327 -- to be on more than one chain at a time.
1329 -- For most representation items, the representation information is
1330 -- reflected in other fields and flags in the entity. For example if a
1331 -- record representation clause is present, the component entities
1332 -- reflect the specified information. However, there are some items that
1333 -- are only reflected in the chain. These include:
1335 -- Machine_Attribute pragma
1336 -- Link_Alias pragma
1337 -- Linker_Constructor pragma
1338 -- Linker_Destructor pragma
1339 -- Weak_External pragma
1340 -- Thread_Local_Storage pragma
1342 -- If any of these items are present, then the flag Has_Gigi_Rep_Item is
1343 -- set, indicating that the backend should search the chain.
1345 -- Other representation items are included in the chain so that error
1346 -- messages can easily locate the relevant nodes for posting errors.
1347 -- Note in particular that size clauses are defined only for this
1348 -- purpose, and should only be accessed if Has_Size_Clause is set.
1350 -- Float_Rep (Uint10)
1351 -- Defined in floating-point entities. Contains a value of type
1352 -- Float_Rep_Kind. Together with the Digits_Value uniquely defines
1353 -- the floating-point representation to be used.
1355 -- Freeze_Node (Node7)
1356 -- Defined in all entities. If there is an associated freeze node for the
1357 -- entity, this field references this freeze node. If no freeze node is
1358 -- associated with the entity, then this field is Empty. See package
1359 -- Freeze for further details.
1361 -- From_Limited_With (Flag159)
1362 -- Defined in abtract states, package and type entities. Set to True when
1363 -- the related entity is generated by the expansion of a limited with
1364 -- clause. Such an entity is said to be a "shadow" - it acts as the
1365 -- abstract view of a state or variable or as the incomplete view of a
1366 -- type by inheriting relevant attributes from the said entity.
1368 -- Full_View (Node11)
1369 -- Defined in all type and subtype entities and in deferred constants.
1370 -- References the entity for the corresponding full type or constant
1371 -- declaration. For all types other than private and incomplete types,
1372 -- this field always contains Empty. If an incomplete type E1 is
1373 -- completed by a private type E2 whose full type declaration entity is
1374 -- E3 then the full view of E1 is E2, and the full view of E2 is E3. See
1375 -- also Underlying_Type.
1377 -- Generic_Homonym (Node11)
1378 -- Defined in generic packages. The generic homonym is the entity of
1379 -- a renaming declaration inserted in every generic unit. It is used
1380 -- to resolve the name of a local entity that is given by a qualified
1381 -- name, when the generic entity itself is hidden by a local name.
1383 -- Generic_Renamings (Elist23)
1384 -- Defined in package and subprogram instances. Holds mapping that
1385 -- associates generic parameters with the corresponding instances, in
1386 -- those cases where the instance is an entity.
1388 -- Handler_Records (List10)
1389 -- Defined in subprogram and package entities. Points to a list of
1390 -- identifiers referencing the handler record entities for the
1391 -- corresponding unit.
1393 -- Has_Aliased_Components (Flag135) [implementation base type only]
1394 -- Defined in array type entities. Indicates that the component type
1395 -- of the array is aliased.
1397 -- Has_Alignment_Clause (Flag46)
1398 -- Defined in all type entities and objects. Indicates if an alignment
1399 -- clause has been given for the entity. If set, then Alignment_Clause
1400 -- returns the N_Attribute_Definition node for the alignment attribute
1401 -- definition clause. Note that it is possible for this flag to be False
1402 -- even when Alignment_Clause returns non_Empty (this happens in the case
1403 -- of derived type declarations).
1405 -- Has_All_Calls_Remote (Flag79)
1406 -- Defined in all library unit entities. Set if the library unit has an
1407 -- All_Calls_Remote pragma. Note that such entities must also be RCI
1408 -- entities, so the flag Is_Remote_Call_Interface will always be set if
1409 -- this flag is set.
1411 -- Has_Anonymous_Master (Flag253)
1412 -- Defined in units (top-level functions and procedures, library-level
1413 -- packages). Set if the associated unit contains a heterogeneous
1414 -- finalization master. The master's name is of the form <unit>AM and it
1415 -- services anonymous access-to-controlled types with an undetermined
1418 -- Has_Atomic_Components (Flag86) [implementation base type only]
1419 -- Defined in all types and objects. Set only for an array type or
1420 -- an array object if a valid pragma Atomic_Components applies to the
1421 -- type or object. Note that in the case of an object, this flag is
1422 -- only set on the object if there was an explicit pragma for the
1423 -- object. In other words, the proper test for whether an object has
1424 -- atomic components is to see if either the object or its base type
1425 -- has this flag set. Note that in the case of a type, the pragma will
1426 -- be chained to the rep item chain of the first subtype in the usual
1429 -- Has_Attach_Handler (synthesized)
1430 -- Applies to record types that are constructed by the expander to
1431 -- represent protected types. Returns True if there is at least one
1432 -- Attach_Handler pragma in the corresponding specification.
1434 -- Has_Biased_Representation (Flag139)
1435 -- Defined in discrete types (where it applies to the type'size value),
1436 -- and to objects (both stand-alone and components), where it applies to
1437 -- the size of the object from a size or record component clause. In
1438 -- all cases it indicates that the size in question is smaller than
1439 -- would normally be required, but that the size requirement can be
1440 -- satisfied by using a biased representation, in which stored values
1441 -- have the low bound (Expr_Value (Type_Low_Bound (T)) subtracted to
1442 -- reduce the required size. For example, a type with a range of 1..2
1443 -- takes one bit, using 0 to represent 1 and 1 to represent 2.
1445 -- Note that in the object and component cases, the flag is only set if
1446 -- the type is unbiased, but the object specifies a smaller size than the
1447 -- size of the type, forcing biased representation for the object, but
1448 -- the subtype is still an unbiased type.
1450 -- Has_Completion (Flag26)
1451 -- Defined in all entities that require a completion (functions,
1452 -- procedures, private types, limited private types, incomplete types,
1453 -- constants and packages that require a body). The flag is set if the
1454 -- completion has been encountered and analyzed.
1456 -- Has_Completion_In_Body (Flag71)
1457 -- Defined in all entities for types and subtypes. Set only in "Taft
1458 -- amendment types" (incomplete types whose full declaration appears in
1459 -- the package body).
1461 -- Has_Complex_Representation (Flag140) [implementation base type only]
1462 -- Defined in all type entities. Set only for a record base type to
1463 -- which a valid pragma Complex_Representation applies.
1465 -- Has_Component_Size_Clause (Flag68) [implementation base type only]
1466 -- Defined in all type entities. Set if a component size clause is
1467 -- Defined for the given type. Note that this flag can be False even
1468 -- if Component_Size is non-zero (happens in the case of derived types).
1470 -- Has_Constrained_Partial_View (Flag187)
1471 -- Defined in private type and their completions, when the private
1472 -- type has no discriminants and the full view has discriminants with
1473 -- defaults. In Ada 2005 heap-allocated objects of such types are not
1474 -- constrained, and can change their discriminants with full assignment.
1476 -- Ada 2012 has an additional rule (3.3. (23/10.3)) concerning objects
1477 -- declared in a generic package body. Objects whose type is an untagged
1478 -- generic formal private type are considered to have a constrained
1479 -- partial view. The predicate Object_Type_Has_Constrained_Partial_View
1480 -- in sem_aux is used to test for this case.
1482 -- Has_Contiguous_Rep (Flag181)
1483 -- Defined in enumeration types. Set if the type as a representation
1484 -- clause whose entries are successive integers.
1486 -- Has_Controlling_Result (Flag98)
1487 -- Defined in E_Function entities. Set if the function is a primitive
1488 -- function of a tagged type which can dispatch on result.
1490 -- Has_Controlled_Component (Flag43) [base type only]
1491 -- Defined in all type and subtype entities. Set only for composite type
1492 -- entities which contain a component that either is a controlled type,
1493 -- or itself contains controlled component (i.e. either Is_Controlled or
1494 -- Has_Controlled_Component is set for at least one component).
1496 -- Has_Convention_Pragma (Flag119)
1497 -- Defined in all entities. Set for an entity for which a valid pragma
1498 -- Convention, Import, or Export has been given. Used to prevent more
1499 -- than one such pragma appearing for a given entity (RM B.1(45)).
1501 -- Has_Default_Aspect (Flag39) [base type only]
1502 -- Defined in entities for types and subtypes, set for scalar types with
1503 -- a Default_Value aspect and array types with a Default_Component_Value
1504 -- apsect. If this flag is set, then a corresponding aspect specification
1505 -- node will be present on the rep item chain for the entity.
1507 -- Has_Default_Init_Cond (Flag3)
1508 -- Defined in type and subtype entities. Set if pragma Default_Initial_
1509 -- Condition applies to the type or subtype. This flag must be mutually
1510 -- exclusive with Has_Inherited_Default_Init_Cond.
1512 -- Has_Delayed_Aspects (Flag200)
1513 -- Defined in all entities. Set if the Rep_Item chain for the entity has
1514 -- one or more N_Aspect_Definition nodes chained which are not to be
1515 -- evaluated till the freeze point. The aspect definition expression
1516 -- clause has been preanalyzed to get visibility at the point of use,
1517 -- but no other action has been taken.
1519 -- Has_Delayed_Freeze (Flag18)
1520 -- Defined in all entities. Set to indicate that an explicit freeze
1521 -- node must be generated for the entity at its freezing point. See
1522 -- separate section ("Delayed Freezing and Elaboration") for details.
1524 -- Has_Delayed_Rep_Aspects (Flag261)
1525 -- Defined in all type and subtypes. This flag is set if there is at
1526 -- least one aspect for a representation characteristic that has to be
1527 -- delayed and is one of the characteristics that may be inherited by
1528 -- types derived from this type if not overridden. If this flag is set,
1529 -- then types derived from this type have May_Inherit_Delayed_Rep_Aspects
1530 -- set, signalling that Freeze.Inhert_Delayed_Rep_Aspects must be called
1531 -- at the freeze point of the derived type.
1533 -- Has_Discriminants (Flag5)
1534 -- Defined in all types and subtypes. For types that are allowed to have
1535 -- discriminants (record types and subtypes, task types and subtypes,
1536 -- protected types and subtypes, private types, limited private types,
1537 -- and incomplete types), indicates if the corresponding type or subtype
1538 -- has a known discriminant part. Always false for all other types.
1540 -- Has_Dispatch_Table (Flag220)
1541 -- Defined in E_Record_Types that are tagged. Set to indicate that the
1542 -- corresponding dispatch table is already built. This flag is used to
1543 -- avoid duplicate construction of library level dispatch tables (because
1544 -- the declaration of library level objects cause premature construction
1545 -- of the table); otherwise the code that builds the table is added at
1546 -- the end of the list of declarations of the package.
1548 -- Has_Dynamic_Predicate_Aspect (Flag258)
1549 -- Defined in all types and subtypes. Set if a Dynamic_Predicate aspect
1550 -- was explicitly applied to the type. Generally we treat predicates as
1551 -- static if possible, regardless of whether they are specified using
1552 -- Predicate, Static_Predicate, or Dynamic_Predicate. And if a predicate
1553 -- can be treated as static (i.e. its expression is predicate-static),
1554 -- then the flag Has_Static_Predicate will be set True. But there are
1555 -- cases where legality is affected by the presence of an explicit
1556 -- Dynamic_Predicate aspect. For example, even if a predicate looks
1557 -- static, you can't use it in a case statement if there is an explicit
1558 -- Dynamic_Predicate aspect specified. So test Has_Static_Predicate if
1559 -- you just want to know if the predicate can be evaluated statically,
1560 -- but test Has_Dynamic_Predicate_Aspect to enforce legality rules about
1561 -- the use of dynamic predicates.
1563 -- Has_Entries (synthesized)
1564 -- Applies to concurrent types. True if any entries are declared
1565 -- within the task or protected definition for the type.
1567 -- Has_Enumeration_Rep_Clause (Flag66)
1568 -- Defined in enumeration types. Set if an enumeration representation
1569 -- clause has been given for this enumeration type. Used to prevent more
1570 -- than one enumeration representation clause for a given type. Note
1571 -- that this does not imply a representation with holes, since the rep
1572 -- clause may merely confirm the default 0..N representation.
1574 -- Has_Exit (Flag47)
1575 -- Defined in loop entities. Set if the loop contains an exit statement.
1577 -- Has_Expanded_Contract (Flag240)
1578 -- Defined in functions, procedures, entries, and entry families. Set
1579 -- when a subprogram has a N_Contract node that has been expanded. The
1580 -- flag prevents double expansion of a contract when a construct is
1581 -- rewritten into something else and subsequently reanalyzed/expanded.
1583 -- Has_Foreign_Convention (synthesized)
1584 -- Applies to all entities. Determines if the Convention for the
1585 -- entity is a foreign convention (i.e. is other than Convention_Ada,
1586 -- Convention_Intrinsic, Convention_Entry or Convention_Protected).
1588 -- Has_Forward_Instantiation (Flag175)
1589 -- Defined in package entities. Set for packages that instantiate local
1590 -- generic entities before the corresponding generic body has been seen.
1591 -- If a package has a forward instantiation, we cannot inline subprograms
1592 -- appearing in the same package because the placement requirements of
1593 -- the instance will conflict with the linear elaboration of front-end
1596 -- Has_Fully_Qualified_Name (Flag173)
1597 -- Defined in all entities. Set if the name in the Chars field has been
1598 -- replaced by the fully qualified name, as used for debug output. See
1599 -- Exp_Dbug for a full description of the use of this flag and also the
1600 -- related flag Has_Qualified_Name.
1602 -- Has_Gigi_Rep_Item (Flag82)
1603 -- Defined in all entities. Set if the rep item chain (referenced by
1604 -- First_Rep_Item and linked through the Next_Rep_Item chain) contains a
1605 -- representation item that needs to be specially processed by the back
1606 -- end, i.e. one of the following items:
1608 -- Machine_Attribute pragma
1609 -- Linker_Alias pragma
1610 -- Linker_Constructor pragma
1611 -- Linker_Destructor pragma
1612 -- Weak_External pragma
1613 -- Thread_Local_Storage pragma
1615 -- If this flag is set, then the backend should scan the rep item chain
1616 -- to process any of these items that appear. At least one such item will
1619 -- Has_Homonym (Flag56)
1620 -- Defined in all entities. Set if an entity has a homonym in the same
1621 -- scope. Used by the backend to generate unique names for all entities.
1623 -- Has_Implicit_Dereference (Flag251)
1624 -- Defined in types and discriminants. Set if the type has an aspect
1625 -- Implicit_Dereference. Set also on the discriminant named in the aspect
1626 -- clause, to simplify type resolution.
1628 -- Has_Independent_Components (Flag34) [implementation base type only]
1629 -- Defined in all types and objects. Set only for a record type or an
1630 -- array type or array object if a valid pragma Independent_Components
1631 -- applies to the type or object. Note that in the case of an object,
1632 -- this flag is only set on the object if there was an explicit pragma
1633 -- for the object. In other words, the proper test for whether an object
1634 -- has independent components is to see if either the object or its base
1635 -- type has this flag set. Note that in the case of a type, the pragma
1636 -- will be chained to the rep item chain of the first subtype in the
1639 -- Has_Inheritable_Invariants (Flag248)
1640 -- Defined in all type entities. Set in private types from which one
1641 -- or more Invariant'Class aspects will be inherited if a another type is
1642 -- derived from the type (i.e. those types which have an Invariant'Class
1643 -- aspect, or which inherit one or more Invariant'Class aspects). Also
1644 -- set in the corresponding full types. Note that it might be the full
1645 -- type which has inheritable invariants, and in this case the flag will
1646 -- also be set in the private type.
1648 -- Has_Inherited_Default_Init_Cond (Flag133)
1649 -- Defined in type and subtype entities. Set if a derived type inherits
1650 -- pragma Default_Initial_Condition from its parent type. This flag must
1651 -- be mutually exclusive with Had_Default_Init_Cond.
1653 -- Has_Initial_Value (Flag219)
1654 -- Defined in entities for variables and out parameters. Set if there
1655 -- is an explicit initial value expression in the declaration of the
1656 -- variable. Note that this is set only if this initial value is
1657 -- explicit, it is not set for the case of implicit initialization
1658 -- of access types or controlled types. Always set to False for out
1659 -- parameters. Also defined in entities for in and in-out parameters,
1660 -- but always false in these cases.
1662 -- Has_Interrupt_Handler (synthesized)
1663 -- Applies to all protected type entities. Set if the protected type
1664 -- definition contains at least one procedure to which a pragma
1665 -- Interrupt_Handler applies.
1667 -- Has_Invariants (Flag232)
1668 -- Defined in all type entities and in subprogram entities. Set in
1669 -- private types if an Invariant or Invariant'Class aspect applies to the
1670 -- type, or if the type inherits one or more Invariant'Class aspects.
1671 -- Also set in the corresponding full type. Note: if this flag is set
1672 -- True, then usually the Invariant_Procedure attribute is set once the
1673 -- type is frozen, however this may not be true in some error situations.
1674 -- Note that it might be the full type which has inheritable invariants,
1675 -- and then the flag will also be set in the private type.
1677 -- Has_Loop_Entry_Attributes (Flag260)
1678 -- Defined in E_Loop entities. Set when the loop is subject to at least
1679 -- one attribute 'Loop_Entry. The flag also implies that the loop has
1680 -- already been transformed. See Expand_Loop_Entry_Attribute for details.
1682 -- Has_Machine_Radix_Clause (Flag83)
1683 -- Defined in decimal types and subtypes, set if a Machine_Radix
1684 -- representation clause is present. This flag is used to detect
1685 -- the error of multiple machine radix clauses for a single type.
1687 -- Has_Master_Entity (Flag21)
1688 -- Defined in entities that can appear in the scope stack (see spec
1689 -- of Sem). It is set if a task master entity (_master) has been
1690 -- declared and initialized in the corresponding scope.
1692 -- Has_Missing_Return (Flag142)
1693 -- Defined in functions and generic functions. Set if there is one or
1694 -- more missing return statements in the function. This is used to
1695 -- control wrapping of the body in Exp_Ch6 to ensure that the program
1696 -- error exception is correctly raised in this case at runtime.
1698 -- Has_Nested_Block_With_Handler (Flag101)
1699 -- Defined in scope entities. Set if there is a nested block within the
1700 -- scope that has an exception handler and the two scopes are in the
1701 -- same procedure. This is used by the backend for controlling certain
1702 -- optimizations to ensure that they are consistent with exceptions.
1703 -- See documentation in backend for further details.
1705 -- Has_Nested_Subprogram (Flag282)
1706 -- Defined in subprogram entities. Set for a subprogram which contains at
1707 -- least one nested subprogram.
1709 -- Has_Non_Null_Refinement (synth)
1710 -- Defined in E_Abstract_State entities. True if the state has at least
1711 -- one variable or state constituent in aspect/pragma Refined_State.
1713 -- Has_Non_Standard_Rep (Flag75) [implementation base type only]
1714 -- Defined in all type entities. Set when some representation clause
1715 -- or pragma causes the representation of the item to be significantly
1716 -- modified. In this category are changes of small or radix for a
1717 -- fixed-point type, change of component size for an array, and record
1718 -- or enumeration representation clauses, as well as packed pragmas.
1719 -- All other representation clauses (e.g. Size and Alignment clauses)
1720 -- are not considered to be significant since they do not affect
1721 -- stored bit patterns.
1723 -- Has_Null_Abstract_State (synth)
1724 -- Defined in package entities. True if the package is subject to a null
1725 -- Abstract_State aspect/pragma.
1727 -- Has_Null_Refinement (synth)
1728 -- Defined in E_Abstract_State entities. True if the state has a null
1729 -- refinement in aspect/pragma Refined_State.
1731 -- Has_Object_Size_Clause (Flag172)
1732 -- Defined in entities for types and subtypes. Set if an Object_Size
1733 -- clause has been processed for the type Used to prevent multiple
1734 -- Object_Size clauses for a given entity.
1736 -- Has_Out_Or_In_Out_Parameter (Flag110)
1737 -- Present in function and generic function entities. Set if the function
1738 -- has at least one OUT or IN OUT parameter (allowed only in Ada 2012).
1740 -- Has_Per_Object_Constraint (Flag154)
1741 -- Defined in E_Component entities. Set if the subtype of the component
1742 -- has a per object constraint. Per object constraints result from the
1743 -- following situations :
1745 -- 1. N_Attribute_Reference - when the prefix is the enclosing type and
1746 -- the attribute is Access.
1747 -- 2. N_Discriminant_Association - when the expression uses the
1748 -- discriminant of the enclosing type.
1749 -- 3. N_Index_Or_Discriminant_Constraint - when at least one of the
1750 -- individual constraints is a per object constraint.
1751 -- 4. N_Range - when the lower or upper bound uses the discriminant of
1752 -- the enclosing type.
1753 -- 5. N_Range_Constraint - when the range expression uses the
1754 -- discriminant of the enclosing type.
1756 -- Has_Pragma_Controlled (Flag27) [implementation base type only]
1757 -- Defined in access type entities. It is set if a pragma Controlled
1758 -- applies to the access type.
1760 -- Has_Pragma_Elaborate_Body (Flag150)
1761 -- Defined in all entities. Set in compilation unit entities if a
1762 -- pragma Elaborate_Body applies to the compilation unit.
1764 -- Has_Pragma_Inline (Flag157)
1765 -- Defined in all entities. Set for functions and procedures for which a
1766 -- pragma Inline or Inline_Always applies to the subprogram. Note that
1767 -- this flag can be set even if Is_Inlined is not set. This happens for
1768 -- pragma Inline (if Inline_Active is False). In other words, the flag
1769 -- Has_Pragma_Inline represents the formal semantic status, and is used
1770 -- for checking semantic correctness. The flag Is_Inlined indicates
1771 -- whether inlining is actually active for the entity.
1773 -- Has_Pragma_Inline_Always (Flag230)
1774 -- Defined in all entities. Set for functions and procedures for which a
1775 -- pragma Inline_Always applies. Note that if this flag is set, the flag
1776 -- Has_Pragma_Inline is also set.
1778 -- Has_Pragma_No_Inline (Flag201)
1779 -- Defined in all entities. Set for functions and procedures for which a
1780 -- pragma No_Inline applies. Note that if this flag is set, the flag
1781 -- Has_Pragma_Inline_Always cannot be set.
1783 -- Has_Pragma_Ordered (Flag198) [implementation base type only]
1784 -- Defined in entities for enumeration types. If set indicates that a
1785 -- valid pragma Ordered was given for the type. This flag is inherited
1786 -- by derived enumeration types. We don't need to distinguish the derived
1787 -- case since we allow multiple occurrences of this pragma anyway.
1789 -- Has_Pragma_Pack (Flag121) [implementation base type only]
1790 -- Defined in array and record type entities. If set, indicates that a
1791 -- valid pragma Pack was given for the type. Note that this flag is not
1792 -- inherited by derived type. See also the Is_Packed flag.
1794 -- Has_Pragma_Pure (Flag203)
1795 -- Defined in all entities. If set, indicates that a valid pragma Pure
1796 -- was given for the entity. In some cases, we need to test whether
1797 -- Is_Pure was explicitly set using this pragma.
1799 -- Has_Pragma_Preelab_Init (Flag221)
1800 -- Defined in type and subtype entities. If set indicates that a valid
1801 -- pragma Preelaborable_Initialization applies to the type.
1803 -- Has_Pragma_Pure_Function (Flag179)
1804 -- Defined in all entities. If set, indicates that a valid pragma
1805 -- Pure_Function was given for the entity. In some cases, we need to
1806 -- know that Is_Pure was explicitly set using this pragma. We also set
1807 -- this flag for some internal entities that we know should be treated
1808 -- as pure for optimization purposes.
1810 -- Has_Pragma_Thread_Local_Storage (Flag169)
1811 -- Defined in all entities. If set, indicates that a valid pragma
1812 -- Thread_Local_Storage was given for the entity.
1814 -- Has_Pragma_Unmodified (Flag233)
1815 -- Defined in all entities. Can only be set for variables (E_Variable,
1816 -- E_Out_Parameter, E_In_Out_Parameter). Set if a valid pragma Unmodified
1817 -- applies to the variable, indicating that no warning should be given
1818 -- if the entity is never modified. Note that clients should generally
1819 -- not test this flag directly, but instead use function Has_Unmodified.
1821 -- Has_Pragma_Unreferenced (Flag180)
1822 -- Defined in all entities. Set if a valid pragma Unreferenced applies
1823 -- to the entity, indicating that no warning should be given if the
1824 -- entity has no references, but a warning should be given if it is
1825 -- in fact referenced. For private types, this flag is set in both the
1826 -- private entity and full entity if the pragma applies to either. Note
1827 -- that clients should generally not test this flag directly, but instead
1828 -- use function Has_Unreferenced.
1830 -- Has_Pragma_Unreferenced_Objects (Flag212)
1831 -- Defined in type and subtype entities. Set if a valid pragma
1832 -- Unreferenced_Objects applies to the type, indicating that no warning
1833 -- should be given for objects of such a type for being unreferenced
1834 -- (but unlike the case with pragma Unreferenced, it is ok to reference
1835 -- such an object and no warning is generated.
1837 -- Has_Predicates (Flag250)
1838 -- Defined in type and subtype entities. Set if a pragma Predicate or
1839 -- Predicate aspect applies to the type or subtype, or if it inherits a
1840 -- Predicate aspect from its parent or progenitor types.
1842 -- Has_Primitive_Operations (Flag120) [base type only]
1843 -- Defined in all type entities. Set if at least one primitive operation
1844 -- is defined for the type.
1846 -- Has_Private_Ancestor (Flag151)
1847 -- Applies to type extensions. True if some ancestor is derived from a
1848 -- private type, making some components invisible and aggregates illegal.
1849 -- This flag is set at the point of derivation. The legality of the
1850 -- aggregate must be rechecked because it also depends on the visibility
1851 -- at the point the aggregate is resolved. See sem_aggr.adb. This is part
1854 -- Has_Private_Declaration (Flag155)
1855 -- Defined in all entities. Set if it is the defining entity of a private
1856 -- type declaration or its corresponding full declaration. This flag is
1857 -- thus preserved when the full and the partial views are exchanged, to
1858 -- indicate if a full type declaration is a completion. Used for semantic
1859 -- checks in E.4(18) and elsewhere.
1861 -- Has_Protected (Flag271) [base type only]
1862 -- Defined in all type entities. Set on protected types themselves, and
1863 -- also (recursively) on any composite type which has a component for
1864 -- which Has_Protected is set. The meaning is that an allocator for
1865 -- or declaration of such an object must create the required protected
1866 -- objects. Note: the flag is not set on access types, even if they
1867 -- designate an object that Has_Protected.
1869 -- Has_Qualified_Name (Flag161)
1870 -- Defined in all entities. Set if the name in the Chars field has
1871 -- been replaced by its qualified name, as used for debug output. See
1872 -- Exp_Dbug for a full description of qualification requirements. For
1873 -- some entities, the name is the fully qualified name, but there are
1874 -- exceptions. In particular, for local variables in procedures, we
1875 -- do not include the procedure itself or higher scopes. See also the
1876 -- flag Has_Fully_Qualified_Name, which is set if the name does indeed
1877 -- include the fully qualified name.
1879 -- Has_RACW (Flag214)
1880 -- Defined in package spec entities. Set if the spec contains the
1881 -- declaration of a remote access-to-classwide type.
1883 -- Has_Record_Rep_Clause (Flag65) [implementation base type only]
1884 -- Defined in record types. Set if a record representation clause has
1885 -- been given for this record type. Used to prevent more than one such
1886 -- clause for a given record type. Note that this is initially cleared
1887 -- for a derived type, even though the representation is inherited. See
1888 -- also the flag Has_Specified_Layout.
1890 -- Has_Recursive_Call (Flag143)
1891 -- Defined in procedures. Set if a direct parameterless recursive call
1892 -- is detected while analyzing the body. Used to activate some error
1893 -- checks for infinite recursion.
1895 -- Has_Shift_Operator (Flag267) [base type only]
1896 -- Defined in integer types. Set in the base type of an integer type for
1897 -- which at least one of the shift operators is defined.
1899 -- Has_Size_Clause (Flag29)
1900 -- Defined in entities for types and objects. Set if a size clause is
1901 -- defined for the entity. Used to prevent multiple Size clauses for a
1902 -- given entity. Note that it is always initially cleared for a derived
1903 -- type, even though the Size for such a type is inherited from a Size
1904 -- clause given for the parent type.
1906 -- Has_Small_Clause (Flag67)
1907 -- Defined in ordinary fixed point types (but not subtypes). Indicates
1908 -- that a small clause has been given for the entity. Used to prevent
1909 -- multiple Small clauses for a given entity. Note that it is always
1910 -- initially cleared for a derived type, even though the Small for such
1911 -- a type is inherited from a Small clause given for the parent type.
1913 -- Has_Specified_Layout (Flag100) [implementation base type only]
1914 -- Defined in all type entities. Set for a record type or subtype if
1915 -- the record layout has been specified by a record representation
1916 -- clause. Note that this differs from the flag Has_Record_Rep_Clause
1917 -- in that it is inherited by a derived type. Has_Record_Rep_Clause is
1918 -- used to indicate that the type is mentioned explicitly in a record
1919 -- representation clause, and thus is not inherited by a derived type.
1920 -- This flag is always False for non-record types.
1922 -- Has_Specified_Stream_Input (Flag190)
1923 -- Has_Specified_Stream_Output (Flag191)
1924 -- Has_Specified_Stream_Read (Flag192)
1925 -- Has_Specified_Stream_Write (Flag193)
1926 -- Defined in all type and subtype entities. Set for a given view if the
1927 -- corresponding stream-oriented attribute has been defined by an
1928 -- attribute definition clause. When such a clause occurs, a TSS is set
1929 -- on the underlying full view; the flags are used to track visibility of
1930 -- the attribute definition clause for partial or incomplete views.
1932 -- Has_Static_Discriminants (Flag211)
1933 -- Defined in record subtypes constrained by discriminant values. Set if
1934 -- all the discriminant values have static values, meaning that in the
1935 -- case of a variant record, the component list can be trimmed down to
1936 -- include only the components corresponding to these discriminants.
1938 -- Has_Static_Predicate (Flag269)
1939 -- Defined in all types and subtypes. Set if the type (which must be a
1940 -- scalar type) has a predicate whose expression is predicate-static.
1941 -- This can result from the use of any Predicate, Static_Predicate, or
1942 -- Dynamic_Predicate aspect. We can distinguish these cases by testing
1943 -- Has_Static_Predicate_Aspect and Has_Dynamic_Predicate_Aspect. See
1944 -- description of the latter flag for further information on dynamic
1945 -- predicates which are also static.
1947 -- Has_Static_Predicate_Aspect (Flag259)
1948 -- Defined in all types and subtypes. Set if a Static_Predicate aspect
1949 -- applies to the type. Note that we can tell if a static predicate is
1950 -- present by looking at Has_Static_Predicate, but this could have come
1951 -- from a Predicate aspect or pragma or even from a Dynamic_Predicate
1952 -- aspect. When we need to know the difference (e.g. to know what set of
1953 -- check policies apply, use this flag and Has_Dynamic_Predicate_Aspect
1954 -- to determine which case we have).
1956 -- Has_Storage_Size_Clause (Flag23) [implementation base type only]
1957 -- Defined in task types and access types. It is set if a Storage_Size
1958 -- clause is present for the type. Used to prevent multiple clauses for
1959 -- one type. Note that this flag is initially cleared for a derived type
1960 -- even though the Storage_Size for such a type is inherited from a
1961 -- Storage_Size clause given for the parent type. Note that in the case
1962 -- of access types, this flag is defined only in the root type, since a
1963 -- storage size clause cannot be given to a derived type.
1965 -- Has_Stream_Size_Clause (Flag184)
1966 -- Defined in all entities. It is set for types which have a Stream_Size
1967 -- clause attribute. Used to prevent multiple Stream_Size clauses for a
1968 -- given entity, and also whether it is necessary to check for a stream
1971 -- Has_Task (Flag30) [base type only]
1972 -- Defined in all type entities. Set on task types themselves, and also
1973 -- (recursively) on any composite type which has a component for which
1974 -- Has_Task is set. The meaning is that an allocator or declaration of
1975 -- such an object must create the required tasks. Note: the flag is not
1976 -- set on access types, even if they designate an object that Has_Task.
1978 -- Has_Thunks (Flag228)
1979 -- Applies to E_Constant entities marked Is_Tag. True for secondary tag
1980 -- referencing a dispatch table whose contents are pointers to thunks.
1982 -- Has_Unchecked_Union (Flag123) [base type only]
1983 -- Defined in all type entities. Set on unchecked unions themselves
1984 -- and (recursively) on any composite type which has a component for
1985 -- which Has_Unchecked_Union is set. The meaning is that a comparison
1986 -- operation or 'Valid_Scalars reference for the type is not permitted.
1987 -- Note that the flag is not set on access types, even if they designate
1988 -- an object that has the flag Has_Unchecked_Union set.
1990 -- Has_Unknown_Discriminants (Flag72)
1991 -- Defined in all entities. Set for types with unknown discriminants.
1992 -- Types can have unknown discriminants either from their declaration or
1993 -- through type derivation. The use of this flag exactly meets the spec
1994 -- in RM 3.7(26). Note that all class-wide types are considered to have
1995 -- unknown discriminants. Note that both flags Has_Discriminants and
1996 -- Has_Unknown_Discriminants may be true for a type. Class-wide types and
1997 -- their subtypes have unknown discriminants and can have declared ones
1998 -- as well. Private types declared with unknown discriminants may have a
1999 -- full view that has explicit discriminants, and both flag will be set
2000 -- on the partial view, to insure that discriminants are properly
2001 -- inherited in certain contexts.
2003 -- Has_Uplevel_Reference (Flag215)
2004 -- Defined in all entities. Indicates that the entity is locally defined
2005 -- within a subprogram P, and there is a reference to the entity within
2006 -- a subprogram nested within P (at any depth). Set only for the VM case
2007 -- (where it is set for variables, constants and loop parameters), and in
2008 -- the case where we are unnesting nested subprograms (in which case it
2009 -- is also set for types and subtypes which are not static types, and
2010 -- that are referenced uplevel, as well as for subprograms that contain
2011 -- uplevel references or call other subprograms (Exp_Unst has details).
2013 -- Has_Visible_Refinement (Flag263)
2014 -- Defined in E_Abstract_State entities. Set when a state has at least
2015 -- one refinement constituent and analysis is in the region between
2016 -- pragma Refined_State and the end of the package body declarations.
2018 -- Has_Volatile_Components (Flag87) [implementation base type only]
2019 -- Defined in all types and objects. Set only for an array type or array
2020 -- object if a valid pragma Volatile_Components or a valid pragma
2021 -- Atomic_Components applies to the type or object. Note that in the case
2022 -- of an object, this flag is only set on the object if there was an
2023 -- explicit pragma for the object. In other words, the proper test for
2024 -- whether an object has volatile components is to see if either the
2025 -- object or its base type has this flag set. Note that in the case of a
2026 -- type the pragma will be chained to the rep item chain of the first
2027 -- subtype in the usual manner.
2029 -- Has_Xref_Entry (Flag182)
2030 -- Defined in all entities. Set if an entity has an entry in the Xref
2031 -- information generated in ali files. This is true for all source
2032 -- entities in the extended main source file. It is also true of entities
2033 -- in other packages that are referenced directly or indirectly from the
2034 -- main source file (indirect reference occurs when the main source file
2035 -- references an entity with a type reference. See package Lib.Xref for
2036 -- further details).
2038 -- Hiding_Loop_Variable (Node8)
2039 -- Defined in variables. Set only if a variable of a discrete type is
2040 -- hidden by a loop variable in the same local scope, in which case
2041 -- the Hiding_Loop_Variable field of the hidden variable points to
2042 -- the E_Loop_Parameter entity doing the hiding. Used in processing
2043 -- warning messages if the hidden variable turns out to be unused
2044 -- or is referenced without being set.
2047 -- Defined in all entities. Link for list of entities that have the
2048 -- same source name and that are declared in the same or enclosing
2049 -- scopes. Homonyms in the same scope are overloaded. Used for name
2050 -- resolution and for the generation of debugging information.
2052 -- Implementation_Base_Type (synthesized)
2053 -- Applies to all entities. For types, similar to Base_Type, but never
2054 -- returns a private type when applied to a non-private type. Instead in
2055 -- this case, it always returns the Underlying_Type of the base type, so
2056 -- that we still have a concrete type. For entities other than types,
2057 -- returns the entity unchanged.
2059 -- Import_Pragma (Node35)
2060 -- Defined in subprogram entities. Set if a valid pragma Import or pragma
2061 -- Import_Function or pragma Import_Procedure applies to the subprogram,
2062 -- in which case this field points to the pragma (we can't use the normal
2063 -- Rep_Item chain mechanism, because a single pragma Import can apply
2064 -- to multiple subprogram entities).
2066 -- In_Package_Body (Flag48)
2067 -- Defined in package entities. Set on the entity that denotes the
2068 -- package (the defining occurrence of the package declaration) while
2069 -- analyzing and expanding the package body. Reset on completion of
2070 -- analysis/expansion.
2072 -- In_Private_Part (Flag45)
2073 -- Defined in all entities. Can be set only in package entities and
2074 -- objects. For package entities, this flag is set to indicate that the
2075 -- private part of the package is being analyzed. The flag is reset at
2076 -- the end of the package declaration. For objects it indicates that the
2077 -- declaration of the object occurs in the private part of a package.
2079 -- Initialization_Statements (Node28)
2080 -- Defined in constants and variables. For a composite object initialized
2081 -- initialized with an aggregate that has been converted to a sequence
2082 -- of assignments, points to a block statement containing the
2085 -- Inner_Instances (Elist23)
2086 -- Defined in generic units. Contains element list of units that are
2087 -- instantiated within the given generic. Used to diagnose circular
2090 -- Interface_Alias (Node25)
2091 -- Defined in subprograms that cover a primitive operation of an abstract
2092 -- interface type. Can be set only if the Is_Hidden flag is also set,
2093 -- since such entities are always hidden. Points to its associated
2094 -- interface subprogram. It is used to register the subprogram in
2095 -- secondary dispatch table of the interface (Ada 2005: AI-251).
2097 -- Interface_Name (Node21)
2098 -- Defined in constants, variables, exceptions, functions, procedures,
2099 -- packages, components (JGNAT only), discriminants (JGNAT only), and
2100 -- access to subprograms (JGNAT only). Set to Empty unless an export,
2101 -- import, or interface name pragma has explicitly specified an external
2102 -- name, in which case it references an N_String_Literal node for the
2103 -- specified external name. Note that if this field is Empty, and
2104 -- Is_Imported or Is_Exported is set, then the default interface name
2105 -- is the name of the entity, cased in a manner that is appropriate to
2106 -- the system in use. Note that Interface_Name is ignored if an address
2107 -- clause is present (since it is meaningless in this case).
2109 -- An additional special case usage of this field is in JGNAT for
2110 -- E_Component and E_Discriminant. JGNAT allows these entities to be
2111 -- imported by specifying pragma Import within a component's containing
2112 -- record definition. This supports interfacing to object fields defined
2113 -- within Java classes, and such pragmas are generated by the jvm2ada
2114 -- binding generator tool whenever it processes classes with public
2115 -- object fields. A pragma Import for a component can define the
2116 -- External_Name of the imported Java field (which is generally needed,
2117 -- because Java names are case sensitive).
2119 -- Interfaces (Elist25)
2120 -- Defined in record types and subtypes. List of abstract interfaces
2121 -- implemented by a tagged type that are not already implemented by the
2122 -- ancestors (Ada 2005: AI-251).
2124 -- Invariant_Procedure (synthesized)
2125 -- Defined in types and subtypes. Set for private types if one or more
2126 -- Invariant, or Invariant'Class, or inherited Invariant'Class aspects
2127 -- apply to the type. Points to the entity for a procedure which checks
2128 -- the invariant. This invariant procedure takes a single argument of the
2129 -- given type, and returns if the invariant holds, or raises exception
2130 -- Assertion_Error with an appropriate message if it does not hold. This
2131 -- attribute is defined but always empty for private subtypes. This
2132 -- attribute is also set for the corresponding full type.
2134 -- Note: the reason this is marked as a synthesized attribute is that the
2135 -- way this is stored is as an element of the Subprograms_For_Type field.
2138 -- Defined in packages and types. Set when analyzing a use clause for
2139 -- the corresponding entity. Reset at end of corresponding declarative
2140 -- part. The flag on a type is also used to determine the visibility of
2141 -- the primitive operators of the type.
2143 -- Is_Abstract_Subprogram (Flag19)
2144 -- Defined in all subprograms and entries. Set for abstract subprograms.
2145 -- Always False for enumeration literals and entries. See also
2146 -- Requires_Overriding.
2148 -- Is_Abstract_Type (Flag146)
2149 -- Defined in all types. Set for abstract types.
2151 -- Is_Access_Constant (Flag69)
2152 -- Defined in access types and subtypes. Indicates that the keyword
2153 -- constant was present in the access type definition.
2155 -- Is_Access_Protected_Subprogram_Type (synthesized)
2156 -- Applies to all types, true for named and anonymous access to
2157 -- protected subprograms.
2159 -- Is_Access_Type (synthesized)
2160 -- Applies to all entities, true for access types and subtypes
2162 -- Is_Ada_2005_Only (Flag185)
2163 -- Defined in all entities, true if a valid pragma Ada_05 or Ada_2005
2164 -- applies to the entity which specifically names the entity, indicating
2165 -- that the entity is Ada 2005 only. Note that this flag is not set if
2166 -- the entity is part of a unit compiled with the normal no-argument form
2167 -- of pragma Ada_05 or Ada_2005.
2169 -- Is_Ada_2012_Only (Flag199)
2170 -- Defined in all entities, true if a valid pragma Ada_12 or Ada_2012
2171 -- applies to the entity which specifically names the entity, indicating
2172 -- that the entity is Ada 2012 only. Note that this flag is not set if
2173 -- the entity is part of a unit compiled with the normal no-argument form
2174 -- of pragma Ada_12 or Ada_2012.
2176 -- Is_Aliased (Flag15)
2177 -- Defined in all entities. Set for objects and types whose declarations
2178 -- carry the keyword aliased, and on record components that have the
2179 -- keyword. For Ada 2012, also applies to formal parameters.
2181 -- Is_Atomic (Flag85)
2182 -- Defined in all type entities, and also in constants, components and
2183 -- variables. Set if a pragma Atomic or Shared applies to the entity.
2184 -- In the case of private and incomplete types, this flag is set in
2185 -- both the partial view and the full view.
2187 -- Is_Array_Type (synthesized)
2188 -- Applies to all entities, true for array types and subtypes
2190 -- Is_Asynchronous (Flag81)
2191 -- Defined in all type entities and in procedure entities. Set
2192 -- if a pragma Asynchronous applies to the entity.
2194 -- Is_Base_Type (synthesized)
2195 -- Applies to type and subtype entities. True if entity is a base type
2197 -- Is_Bit_Packed_Array (Flag122) [implementation base type only]
2198 -- Defined in all entities. This flag is set for a packed array type that
2199 -- is bit packed (i.e. the component size is known by the front end and
2200 -- is in the range 1-7, 9-15, 17-31, or 33-63). Is_Packed is always set
2201 -- if Is_Bit_Packed_Array is set, but it is possible for Is_Packed to be
2202 -- set without Is_Bit_Packed_Array for the case of an array having one or
2203 -- more index types that are enumeration types with non-standard
2204 -- enumeration representations.
2206 -- Is_Boolean_Type (synthesized)
2207 -- Applies to all entities, true for boolean types and subtypes,
2208 -- i.e. Standard.Boolean and all types ultimately derived from it.
2210 -- Is_Called (Flag102)
2211 -- Defined in subprograms. Returns true if the subprogram is called
2212 -- in the unit being compiled or in a unit in the context. Used for
2215 -- Is_Character_Type (Flag63)
2216 -- Defined in all entities. Set for character types and subtypes,
2217 -- i.e. enumeration types that have at least one character literal.
2219 -- Is_Checked_Ghost_Entity (Flag277)
2220 -- Applies to all entities. Set for abstract states, [generic] packages,
2221 -- [generic] subprograms, components, discriminants, formal parameters,
2222 -- objects, package bodies, subprogram bodies, and [sub]types subject to
2223 -- pragma Ghost or inherit "ghostness" from an enclosing construct, and
2224 -- subject to Assertion_Policy Ghost => Check.
2226 -- Is_Child_Unit (Flag73)
2227 -- Defined in all entities. Set only for defining entities of program
2228 -- units that are child units (but False for subunits).
2230 -- Is_Class_Wide_Type (synthesized)
2231 -- Applies to all entities, true for class wide types and subtypes
2233 -- Is_Class_Wide_Equivalent_Type (Flag35)
2234 -- Defined in record types and subtypes. Set to True, if the type acts
2235 -- as a class-wide equivalent type, i.e. the Equivalent_Type field of
2236 -- some class-wide subtype entity references this record type.
2238 -- Is_Compilation_Unit (Flag149)
2239 -- Defined in all entities. Set if the entity is a package or subprogram
2240 -- entity for a compilation unit other than a subunit (since we treat
2241 -- subunits as part of the same compilation operation as the ultimate
2242 -- parent, we do not consider them to be separate units for this flag).
2244 -- Is_Completely_Hidden (Flag103)
2245 -- Defined in all entities. This flag can be set only for E_Discriminant
2246 -- entities. This flag can be set only for girder discriminants of
2247 -- untagged types. When set, the entity is a girder discriminant of a
2248 -- derived untagged type which is not directly visible in the derived
2249 -- type because the derived type or one of its ancestors have renamed the
2250 -- discriminants in the root type. Note: there are girder discriminants
2251 -- which are not Completely_Hidden (e.g. discriminants of a root type).
2253 -- Is_Composite_Type (synthesized)
2254 -- Applies to all entities, true for all composite types and
2255 -- subtypes. Either Is_Composite_Type or Is_Elementary_Type (but
2256 -- not both) is true of any type.
2258 -- Is_Concurrent_Record_Type (Flag20)
2259 -- Defined in record types and subtypes. Set if the type was created
2260 -- by the expander to represent a task or protected type. For every
2261 -- concurrent type, such as record type is constructed, and task and
2262 -- protected objects are instances of this record type at runtime
2263 -- (The backend will replace declarations of the concurrent type using
2264 -- the declarations of the corresponding record type). See Exp_Ch9 for
2267 -- Is_Concurrent_Type (synthesized)
2268 -- Applies to all entities, true for task types and subtypes and for
2269 -- protected types and subtypes.
2271 -- Is_Constant_Object (synthesized)
2272 -- Applies to all entities, true for E_Constant, E_Loop_Parameter, and
2273 -- E_In_Parameter entities.
2275 -- Is_Constrained (Flag12)
2276 -- Defined in types or subtypes which may have index, discriminant
2277 -- or range constraint (i.e. array types and subtypes, record types
2278 -- and subtypes, string types and subtypes, and all numeric types).
2279 -- Set if the type or subtype is constrained.
2281 -- Is_Constr_Subt_For_U_Nominal (Flag80)
2282 -- Defined in all types and subtypes. Set only for the constructed
2283 -- subtype of an object whose nominal subtype is unconstrained. Note
2284 -- that the constructed subtype itself will be constrained.
2286 -- Is_Constr_Subt_For_UN_Aliased (Flag141)
2287 -- Defined in all types and subtypes. This flag can be set only if
2288 -- Is_Constr_Subt_For_U_Nominal is also set. It indicates that in
2289 -- addition the object concerned is aliased. This flag is used by
2290 -- the backend to determine whether a template must be constructed.
2292 -- Is_Constructor (Flag76)
2293 -- Defined in function and procedure entities. Set if a pragma
2294 -- CPP_Constructor applies to the subprogram.
2296 -- Is_Controlled (Flag42) [base type only]
2297 -- Defined in all type entities. Indicates that the type is controlled,
2298 -- i.e. is either a descendant of Ada.Finalization.Controlled or of
2299 -- Ada.Finalization.Limited_Controlled.
2301 -- Is_Controlling_Formal (Flag97)
2302 -- Defined in all Formal_Kind entities. Marks the controlling parameters
2303 -- of dispatching operations.
2305 -- Is_CPP_Class (Flag74)
2306 -- Defined in all type entities, set only for tagged types to which a
2307 -- valid pragma Import (CPP, ...) or pragma CPP_Class has been applied.
2309 -- Is_Decimal_Fixed_Point_Type (synthesized)
2310 -- Applies to all type entities, true for decimal fixed point
2311 -- types and subtypes.
2313 -- Is_Default_Init_Cond_Procedure (Flag132)
2314 -- Defined in functions and procedures. Set for a generated procedure
2315 -- which verifies the assumption of pragma Default_Initial_Condition.
2317 -- Is_Descendent_Of_Address (Flag223)
2318 -- Defined in all entities. True if the entity is type System.Address,
2319 -- or (recursively) a subtype or derived type of System.Address.
2321 -- Is_Discrete_Type (synthesized)
2322 -- Applies to all entities, true for all discrete types and subtypes
2324 -- Is_Discrete_Or_Fixed_Point_Type (synthesized)
2325 -- Applies to all entities, true for all discrete types and subtypes
2326 -- and all fixed-point types and subtypes.
2328 -- Is_Discrim_SO_Function (Flag176)
2329 -- Defined in all entities. Set only in E_Function entities that Layout
2330 -- creates to compute discriminant-dependent dynamic size/offset values.
2332 -- Is_Discriminant_Check_Function (Flag264)
2333 -- Defined in all entities. Set only in E_Function entities for functions
2334 -- created to do discriminant checks.
2336 -- Is_Discriminal (synthesized)
2337 -- Applies to all entities, true for renamings of discriminants. Such
2338 -- entities appear as constants or IN parameters.
2340 -- Is_Dispatch_Table_Entity (Flag234)
2341 -- Applies to all entities. Set to indicate to the backend that this
2342 -- entity is associated with a dispatch table.
2344 -- Is_Dispatching_Operation (Flag6)
2345 -- Defined in all entities. Set for procedures, functions, generic
2346 -- procedures, and generic functions if the corresponding operation
2349 -- Is_Dynamic_Scope (synthesized)
2350 -- Applies to all Entities. Returns True if the entity is a dynamic
2351 -- scope (i.e. a block, subprogram, task_type, entry
2352 -- or extended return statement).
2354 -- Is_Elementary_Type (synthesized)
2355 -- Applies to all entities, true for all elementary types and
2356 -- subtypes. Either Is_Composite_Type or Is_Elementary_Type (but
2357 -- not both) is true of any type.
2359 -- Is_Eliminated (Flag124)
2360 -- Defined in type entities, subprogram entities, and object entities.
2361 -- Indicates that the corresponding entity has been eliminated by use
2362 -- of pragma Eliminate. Also used to mark subprogram entities whose
2363 -- declaration and body are within unreachable code that is removed.
2365 -- Is_Enumeration_Type (synthesized)
2366 -- Defined in all entities, true for enumeration types and subtypes
2368 -- Is_Entry (synthesized)
2369 -- Applies to all entities, True only for entry and entry family
2370 -- entities and False for all other entity kinds.
2372 -- Is_Entry_Formal (Flag52)
2373 -- Defined in all entities. Set only for entry formals (which can only
2374 -- be in, in-out or out parameters). This flag is used to speed up the
2375 -- test for the need to replace references in Exp_Ch2.
2377 -- Is_Exported (Flag99)
2378 -- Defined in all entities. Set if the entity is exported. For now we
2379 -- only allow the export of constants, exceptions, functions, procedures
2380 -- and variables, but that may well change later on. Exceptions can only
2381 -- be exported in the Java VM implementation of GNAT.
2383 -- Is_External_State (synthesized)
2384 -- Applies to all entities, true for abstract states that are subject to
2387 -- Is_Finalizer (synthesized)
2388 -- Applies to all entities, true for procedures containing finalization
2389 -- code to process local or library level objects.
2391 -- Is_First_Subtype (Flag70)
2392 -- Defined in all entities. True for first subtypes (RM 3.2.1(6)),
2393 -- i.e. the entity in the type declaration that introduced the type.
2394 -- This may be the base type itself (e.g. for record declarations and
2395 -- enumeration type declarations), or it may be the first subtype of
2396 -- an anonymous base type (e.g. for integer type declarations or
2397 -- constrained array declarations).
2399 -- Is_Fixed_Point_Type (synthesized)
2400 -- Applies to all entities, true for decimal and ordinary fixed
2401 -- point types and subtypes
2403 -- Is_Floating_Point_Type (synthesized)
2404 -- Applies to all entities, true for float types and subtypes
2406 -- Is_Formal (synthesized)
2407 -- Applies to all entities, true for IN, IN OUT and OUT parameters
2409 -- Is_Formal_Object (synthesized)
2410 -- Applies to all entities, true for generic IN and IN OUT parameters
2412 -- Is_Formal_Subprogram (Flag111)
2413 -- Defined in all entities. Set for generic formal subprograms.
2415 -- Is_For_Access_Subtype (Flag118)
2416 -- Defined in E_Private_Subtype and E_Record_Subtype entities. Means the
2417 -- sole purpose of the type is to be designated by an Access_Subtype and
2418 -- hence should not be expanded into components because the type may not
2419 -- have been found or frozen yet.
2421 -- Is_Frozen (Flag4)
2422 -- Defined in all type and subtype entities. Set if type or subtype has
2425 -- Is_Generic_Actual_Subprogram (Flag274)
2426 -- Defined on functions and procedures. Set on the entity of the renaming
2427 -- declaration created within an instance for an actual subprogram.
2428 -- Used to generate constraint checks on calls to these subprograms, even
2429 -- within an instance of a predefined run-time unit, in which checks
2430 -- are otherwise suppressed.
2432 -- The flag is also set on the entity of the expression function created
2433 -- within an instance, for a function that has external axiomatization,
2434 -- for use in GNATprove mode.
2436 -- Is_Generic_Actual_Type (Flag94)
2437 -- Defined in all type and subtype entities. Set in the subtype
2438 -- declaration that renames the generic formal as a subtype of the
2439 -- actual. Guarantees that the subtype is not static within the instance.
2440 -- Also used during analysis of an instance, to simplify resolution of
2441 -- accidental overloading that occurs when different formal types get the
2444 -- Is_Generic_Instance (Flag130)
2445 -- Defined in all entities. Set to indicate that the entity is an
2446 -- instance of a generic unit, or a formal package (which is an instance
2447 -- of the template).
2449 -- Is_Generic_Subprogram (synthesized)
2450 -- Applies to all entities. Yields True for a generic subprogram
2451 -- (generic function, generic subprogram), False for all other entities.
2453 -- Is_Generic_Type (Flag13)
2454 -- Defined in all entities. Set for types which are generic formal types.
2455 -- Such types have an Ekind that corresponds to their classification, so
2456 -- the Ekind cannot be used to identify generic formal types.
2458 -- Is_Generic_Unit (synthesized)
2459 -- Applies to all entities. Yields True for a generic unit (generic
2460 -- package, generic function, generic procedure), and False for all
2463 -- Is_Hidden (Flag57)
2464 -- Defined in all entities. Set for all entities declared in the
2465 -- private part or body of a package. Also marks generic formals of a
2466 -- formal package declared without a box. For library level entities,
2467 -- this flag is set if the entity is not publicly visible. This flag
2468 -- is reset when compiling the body of the package where the entity
2469 -- is declared, when compiling the private part or body of a public
2470 -- child unit, and when compiling a private child unit (see Install_
2471 -- Private_Declaration in sem_ch7).
2473 -- Is_Hidden_Non_Overridden_Subpgm (Flag2)
2474 -- Defined in all entities. Set for implicitly declared subprograms
2475 -- that require overriding or are null procedures, and are hidden by
2476 -- a non-fully conformant homograph with the same characteristics
2477 -- (Ada RM 8.3 12.3/2).
2479 -- Is_Hidden_Open_Scope (Flag171)
2480 -- Defined in all entities. Set for a scope that contains the
2481 -- instantiation of a child unit, and whose entities are not visible
2482 -- during analysis of the instance.
2484 -- Is_Ignored_Ghost_Entity (Flag278)
2485 -- Applies to all entities. Set for abstract states, [generic] packages,
2486 -- [generic] subprograms, components, discriminants, formal parameters,
2487 -- objects, package bodies, subprogram bodies, and [sub]types subject to
2488 -- pragma Ghost or inherit "ghostness" from an enclosing construct, and
2489 -- subject to Assertion_Policy Ghost => Ignore.
2491 -- Is_Immediately_Visible (Flag7)
2492 -- Defined in all entities. Set if entity is immediately visible, i.e.
2493 -- is defined in some currently open scope (RM 8.3(4)).
2495 -- Is_Implementation_Defined (Flag254)
2496 -- Defined in all entities. Set if a pragma Implementation_Defined is
2497 -- applied to the pragma. Used to mark all implementation defined
2498 -- identifiers in standard library packages, and to implement the
2499 -- restriction No_Implementation_Identifiers.
2501 -- Is_Imported (Flag24)
2502 -- Defined in all entities. Set if the entity is imported. For now we
2503 -- only allow the import of exceptions, functions, procedures, packages.
2504 -- and variables. Exceptions, packages and types can only be imported in
2505 -- the Java VM implementation.
2507 -- Is_Incomplete_Or_Private_Type (synthesized)
2508 -- Applies to all entities, true for private and incomplete types
2510 -- Is_Incomplete_Type (synthesized)
2511 -- Applies to all entities, true for incomplete types and subtypes
2513 -- Is_Independent (Flag268)
2514 -- Defined in all type entities, and also in constants, components and
2515 -- variables. Set if a valid pragma or aspect Independent applies to the
2516 -- entity, or if a valid pragma or aspect Independent_Components applies
2517 -- to the enclosing record type for a component. Also set if a pragma
2518 -- Shared or pragma Atomic applies to the entity. In the case of private
2519 -- and incomplete types, this flag is set in both the partial view and
2522 -- Is_Inlined (Flag11)
2523 -- Defined in all entities. Set for functions and procedures which are
2524 -- to be inlined. For subprograms created during expansion, this flag
2525 -- may be set directly by the expander to request inlining. Also set
2526 -- for packages that contain inlined subprograms, whose bodies must be
2527 -- be compiled. Is_Inlined is also set on generic subprograms and is
2528 -- inherited by their instances. It is also set on the body entities
2529 -- of inlined subprograms. See also Has_Pragma_Inline.
2531 -- Is_Inlined_Always (Flag1)
2532 -- Defined in subprograms. Set for functions and procedures which are
2533 -- always inlined in GNATprove mode. GNATprove uses this flag to know
2534 -- when a body does not need to be analyzed. The value of this flag is
2535 -- only meaningful if Body_To_Inline is not Empty for the subprogram.
2537 -- Is_Instantiated (Flag126)
2538 -- Defined in generic packages and generic subprograms. Set if the unit
2539 -- is instantiated from somewhere in the extended main source unit. This
2540 -- flag is used to control warnings about the unit being uninstantiated.
2541 -- Also set in a package that is used as an actual for a generic package
2542 -- formal in an instantiation. Also set on a parent instance, in the
2543 -- instantiation of a child, which is implicitly declared in the parent.
2545 -- Is_Integer_Type (synthesized)
2546 -- Applies to all entities, true for integer types and subtypes
2548 -- Is_Interface (Flag186)
2549 -- Defined in record types and subtypes. Set to indicate that the current
2550 -- entity corresponds with an abstract interface. Because abstract
2551 -- interfaces are conceptually a special kind of abstract tagged types
2552 -- we represent them by means of tagged record types and subtypes
2553 -- marked with this attribute. This allows us to reuse most of the
2554 -- compiler support for abstract tagged types to implement interfaces
2555 -- (Ada 2005: AI-251).
2557 -- Is_Internal (Flag17)
2558 -- Defined in all entities. Set to indicate an entity created during
2559 -- semantic processing (e.g. an implicit type, or a temporary). The
2560 -- current uses of this flag are:
2562 -- 1) Internal entities (such as temporaries generated for the result
2563 -- of an inlined function call or dummy variables generated for the
2564 -- debugger). Set to indicate that they need not be initialized, even
2565 -- when scalars are initialized or normalized;
2567 -- 2) Predefined primitives of tagged types. Set to mark that they
2568 -- have specific properties: first they are primitives even if they
2569 -- are not defined in the type scope (the freezing point is not
2570 -- necessarily in the same scope), and second the predefined equality
2571 -- can be overridden by a user-defined equality, no body will be
2572 -- generated in this case.
2574 -- 3) Object declarations generated by the expander that are implicitly
2575 -- imported or exported so that they can be marked in Sprint output.
2577 -- 4) Internal entities in the list of primitives of tagged types that
2578 -- are used to handle secondary dispatch tables. These entities have
2579 -- also the attribute Interface_Alias.
2581 -- Is_Interrupt_Handler (Flag89)
2582 -- Defined in procedures. Set if a pragma Interrupt_Handler applies
2583 -- to the procedure. The procedure must be parameterless, and on all
2584 -- targets except AAMP it must be a protected procedure.
2586 -- Is_Intrinsic_Subprogram (Flag64)
2587 -- Defined in functions and procedures. It is set if a valid pragma
2588 -- Interface or Import is present for this subprogram specifying pragma
2589 -- Intrinsic. Valid means that the name and profile of the subprogram
2590 -- match the requirements of one of the recognized intrinsic subprograms
2591 -- (see package Sem_Intr for details). Note: the value of Convention for
2592 -- such an entity will be set to Convention_Intrinsic, but it is the
2593 -- setting of Is_Intrinsic_Subprogram, NOT simply having convention set
2594 -- to intrinsic, which causes intrinsic code to be generated.
2596 -- Is_Invariant_Procedure (Flag257)
2597 -- Defined in functions an procedures. Set for a generated invariant
2598 -- procedure to identify it easily in the
2600 -- Is_Itype (Flag91)
2601 -- Defined in all entities. Set to indicate that a type is an Itype,
2602 -- which means that the declaration for the type does not appear
2603 -- explicitly in the tree. Instead the backend will elaborate the type
2604 -- when it is first used. Has_Delayed_Freeze can be set for Itypes, and
2605 -- the meaning is that the first use (the one which causes the type to be
2606 -- defined) will be the freeze node. Note that an important restriction
2607 -- on Itypes is that the first use of such a type (the one that causes it
2608 -- to be defined) must be in the same scope as the type.
2610 -- Is_Known_Non_Null (Flag37)
2611 -- Defined in all entities. Relevant (and can be set) only for
2612 -- objects of an access type. It is set if the object is currently
2613 -- known to have a non-null value (meaning that no access checks
2614 -- are needed). The indication can for example come from assignment
2615 -- of an access parameter or an allocator whose value is known non-null.
2617 -- Note: this flag is set according to the sequential flow of the
2618 -- program, watching the current value of the variable. However, this
2619 -- processing can miss cases of changing the value of an aliased or
2620 -- constant object, so even if this flag is set, it should not be
2621 -- believed if the variable is aliased or volatile. It would be a
2622 -- little neater to avoid the flag being set in the first place in
2623 -- such cases, but that's trickier, and there is only one place that
2624 -- tests the value anyway.
2626 -- The flag is dynamically set and reset as semantic analysis and
2627 -- expansion proceeds. Its value is meaningless once the tree is
2628 -- fully constructed, since it simply indicates the last state.
2629 -- Thus this flag has no meaning to the backend.
2631 -- Is_Known_Null (Flag204)
2632 -- Defined in all entities. Relevant (and can be set ) only for
2633 -- objects of an access type. It is set if the object is currently known
2634 -- to have a null value (meaning that a dereference will surely raise
2635 -- constraint error exception). The indication can come from an
2636 -- assignment or object declaration.
2638 -- The comments above about sequential flow and aliased and volatile for
2639 -- the Is_Known_Non_Null flag apply equally to the Is_Known_Null flag.
2641 -- Is_Known_Valid (Flag170)
2642 -- Defined in all entities. Relevant for types (and subtype) and
2643 -- for objects (and enumeration literals) of a discrete type.
2645 -- The purpose of this flag is to implement the requirement stated
2646 -- in (RM 13.9.1(9-11)) which require that the use of possibly invalid
2647 -- values may not cause programs to become erroneous. See the function
2648 -- Checks.Expr_Known_Valid for further details. Note that the setting
2649 -- is conservative, in the sense that if the flag is set, it must be
2650 -- right. If the flag is not set, nothing is known about the validity.
2652 -- For enumeration literals, the flag is always set, since clearly
2653 -- an enumeration literal represents a valid value. Range checks
2654 -- where necessary will ensure that this valid value is appropriate.
2656 -- For objects, the flag indicates the state of knowledge about the
2657 -- current value of the object. This may be modified during expansion,
2658 -- and thus the final value is not relevant to the backend.
2660 -- For types and subtypes, the flag is set if all possible bit patterns
2661 -- of length Object_Size (i.e. Esize of the type) represent valid values
2662 -- of the type. In general for such tytpes, all values are valid, the
2663 -- only exception being the case where an object of the type has an
2664 -- explicit size that is greater than Object_Size.
2666 -- For non-discrete objects, the setting of the Is_Known_Valid flag is
2667 -- not defined, and is not relevant, since the considerations of the
2668 -- requirement in (RM 13.9.1(9-11)) do not apply.
2670 -- The flag is dynamically set and reset as semantic analysis and
2671 -- expansion proceeds. Its value is meaningless once the tree is
2672 -- fully constructed, since it simply indicates the last state.
2673 -- Thus this flag has no meaning to the backend.
2675 -- Is_Limited_Composite (Flag106)
2676 -- Defined in all entities. Set for composite types that have a limited
2677 -- component. Used to enforce the rule that operations on the composite
2678 -- type that depend on the full view of the component do not become
2679 -- visible until the immediate scope of the composite type itself
2682 -- Is_Limited_Interface (Flag197)
2683 -- Defined in record types and subtypes. True for interface types, if
2684 -- interface is declared limited, task, protected, or synchronized, or
2685 -- is derived from a limited interface.
2687 -- Is_Limited_Record (Flag25)
2688 -- Defined in all entities. Set to true for record (sub)types if the
2689 -- record is declared to be limited. Note that this flag is not set
2690 -- simply because some components of the record are limited.
2692 -- Is_Local_Anonymous_Access (Flag194)
2693 -- Defined in access types. Set for an anonymous access type to indicate
2694 -- that the type is created for a record component with an access
2695 -- definition, an array component, or (pre-Ada 2012) a standalone object.
2696 -- Such anonymous types have an accessibility level equal to that of the
2697 -- declaration in which they appear, unlike the anonymous access types
2698 -- that are created for access parameters, access discriminants, and
2699 -- (as of Ada 2012) stand-alone objects.
2701 -- Is_Machine_Code_Subprogram (Flag137)
2702 -- Defined in subprogram entities. Set to indicate that the subprogram
2703 -- is a machine code subprogram (i.e. its body includes at least one
2704 -- code statement). Also indicates that all necessary semantic checks
2705 -- as required by RM 13.8(3) have been performed.
2707 -- Is_Modular_Integer_Type (synthesized)
2708 -- Applies to all entities. True if entity is a modular integer type
2710 -- Is_Non_Static_Subtype (Flag109)
2711 -- Defined in all type and subtype entities. It is set in some (but not
2712 -- all) cases in which a subtype is known to be non-static. Before this
2713 -- flag was added, the computation of whether a subtype was static was
2714 -- entirely synthesized, by looking at the bounds, and the immediate
2715 -- subtype parent. However, this method does not work for some Itypes
2716 -- that have no parent set (and the only way to find the immediate
2717 -- subtype parent is to go through the tree). For now, this flag is set
2718 -- conservatively, i.e. if it is set then for sure the subtype is non-
2719 -- static, but if it is not set, then the type may or may not be static.
2720 -- Thus the test for a static subtype is that this flag is clear AND that
2721 -- the bounds are static AND that the parent subtype (if available to be
2722 -- tested) is static. Eventually we should make sure this flag is always
2723 -- set right, at which point, these comments can be removed, and the
2724 -- tests for static subtypes greatly simplified.
2726 -- Is_Null_Init_Proc (Flag178)
2727 -- Defined in procedure entities. Set for generated init proc procedures
2728 -- (used to initialize composite types), if the code for the procedure
2729 -- is null (i.e. is a return and nothing else). Such null initialization
2730 -- procedures are generated in case some client is compiled using the
2731 -- Initialize_Scalars pragma, generating a call to this null procedure,
2732 -- but there is no need to call such procedures within a compilation
2733 -- unit, and this flag is used to suppress such calls.
2735 -- Is_Null_State (synthesized)
2736 -- Applies to all entities, true for an abstract state declared with
2739 -- Is_Numeric_Type (synthesized)
2740 -- Applies to all entities, true for all numeric types and subtypes
2741 -- (integer, fixed, float).
2743 -- Is_Object (synthesized)
2744 -- Applies to all entities, true for entities representing objects,
2745 -- including generic formal parameters.
2747 -- Is_Obsolescent (Flag153)
2748 -- Defined in all entities. Set for any entity for which a valid pragma
2749 -- Obsolescent applies.
2751 -- Is_Only_Out_Parameter (Flag226)
2752 -- Defined in formal parameter entities. Set if this parameter is the
2753 -- only OUT parameter for this formal part. If there is more than one
2754 -- out parameter, or if there is some other IN OUT parameter then this
2755 -- flag is not set in any of them. Used in generation of warnings.
2757 -- Is_Ordinary_Fixed_Point_Type (synthesized)
2758 -- Applies to all entities, true for ordinary fixed point types and
2761 -- Is_Package_Or_Generic_Package (synthesized)
2762 -- Applies to all entities. True for packages and generic packages.
2763 -- False for all other entities.
2765 -- Is_Package_Body_Entity (Flag160)
2766 -- Defined in all entities. Set for entities defined at the top level
2767 -- of a package body. Used to control externally generated names.
2769 -- Is_Packed (Flag51) [implementation base type only]
2770 -- Defined in all type entities. This flag is set only for record and
2771 -- array types which have a packed representation. There are three
2772 -- cases which cause packing:
2774 -- 1. Explicit use of pragma Pack for an array of package components
2775 -- 2. Explicit use of pragma Pack to pack a record
2776 -- 4. Setting Component_Size of an array to a bit-packable value
2777 -- 3. Indexing an array with a non-standard enumeration type.
2779 -- For records, Is_Packed is always set if Has_Pragma_Pack is set,
2780 -- and can also be set on its own in a derived type which inherited
2781 -- its packed status.
2783 -- For arrays, Is_Packed is set if an array is bit packed (i.e. the
2784 -- component size is known at compile time and is 1-7, 9-15 or 17-31),
2785 -- or if the array has one or more index types that are enumeration
2786 -- types with non-standard representations (in GNAT, we store such
2787 -- arrays compactly, using the Pos of the enumeration type value).
2789 -- As for the case of records, Is_Packed can be set on its own for a
2790 -- derived type, with the same dual before/after freeze meaning.
2791 -- Is_Packed can also be set as the result of an explicit component
2792 -- size clause that specifies an appropriate component size.
2794 -- In the bit packed array case, Is_Bit_Packed_Array will be set in
2795 -- the bit packed case once the array type is frozen.
2797 -- Before an array type is frozen, Is_Packed will always be set if
2798 -- Has_Pragma_Pack is set. Before the freeze point, it is not possible
2799 -- to know the component size, since the component type is not frozen
2800 -- until the array type is frozen. Thus Is_Packed for an array type
2801 -- before it is frozen means that packed is required. Then if it turns
2802 -- out that the component size is not suitable for bit packing, the
2803 -- Is_Packed flag gets turned off.
2805 -- Is_Packed_Array (synth)
2806 -- Applies to all entities, true if entity is for a packed array.
2808 -- Is_Packed_Array_Impl_Type (Flag138)
2809 -- Defined in all entities. This flag is set on the entity for the type
2810 -- used to implement a packed array (either a modular type, or a subtype
2811 -- of Packed_Bytes{1,2,4} as appropriate). The flag is set if and only
2812 -- if the type appears in the Packed_Array_Impl_Type field of some other
2813 -- entity. It is used by the backend to activate the special processing
2814 -- for such types (unchecked conversions that would not otherwise be
2815 -- allowed are allowed for such types). If Is_Packed_Array_Impl_Type is
2816 -- set in an entity, then the Original_Array_Type field of this entity
2817 -- points to the array type for which this is the Packed_Array_Impl_Type.
2819 -- Is_Potentially_Use_Visible (Flag9)
2820 -- Defined in all entities. Set if entity is potentially use visible,
2821 -- i.e. it is defined in a package that appears in a currently active
2822 -- use clause (RM 8.4(8)). Note that potentially use visible entities
2823 -- are not necessarily use visible (RM 8.4(9-11)).
2825 -- Is_Predicate_Function (Flag255)
2826 -- Present in functions and procedures. Set for generated predicate
2829 -- Is_Predicate_Function_M (Flag256)
2830 -- Present in functions and procedures. Set for special version of
2831 -- predicate function generated for use in membership tests, where
2832 -- raise expressions are transformed to return False.
2834 -- Is_Preelaborated (Flag59)
2835 -- Defined in all entities, set in E_Package and E_Generic_Package
2836 -- entities to which a pragma Preelaborate is applied, and also in
2837 -- all entities within such packages. Note that the fact that this
2838 -- flag is set does not necesarily mean that no elaboration code is
2839 -- generated for the package.
2841 -- Is_Primitive (Flag218)
2842 -- Defined in overloadable entities and in generic subprograms. Set to
2843 -- indicate that this is a primitive operation of some type, which may
2844 -- be a tagged type or an untagged type. Used to verify overriding
2845 -- indicators in bodies.
2847 -- Is_Primitive_Wrapper (Flag195)
2848 -- Defined in functions and procedures created by the expander to serve
2849 -- as an indirection mechanism to overriding primitives of concurrent
2850 -- types, entries and protected procedures.
2852 -- Is_Prival (synthesized)
2853 -- Applies to all entities, true for renamings of private protected
2854 -- components. Such entities appear as constants or variables.
2856 -- Is_Private_Composite (Flag107)
2857 -- Defined in composite types that have a private component. Used to
2858 -- enforce the rule that operations on the composite type that depend
2859 -- on the full view of the component, do not become visible until the
2860 -- immediate scope of the composite type itself (7.3.1 (5)). Both this
2861 -- flag and Is_Limited_Composite are needed.
2863 -- Is_Private_Descendant (Flag53)
2864 -- Defined in entities that can represent library units (packages,
2865 -- functions, procedures). Set if the library unit is itself a private
2866 -- child unit, or if it is the descendent of a private child unit.
2868 -- Is_Private_Primitive (Flag245)
2869 -- Defined in subprograms. Set if the operation is a primitive of a
2870 -- tagged type (procedure or function dispatching on result) whose
2871 -- full view has not been seen. Used in particular for primitive
2872 -- subprograms of a synchronized type declared between the two views
2873 -- of the type, so that the wrapper built for such a subprogram can
2874 -- be given the proper signature.
2876 -- Is_Private_Type (synthesized)
2877 -- Applies to all entities, true for private types and subtypes,
2878 -- as well as for record with private types as subtypes
2880 -- Is_Processed_Transient (Flag252)
2881 -- Defined in variables, loop parameters, and constants, including the
2882 -- loop parameters of generalized iterators. Set when a transient object
2883 -- needs to be finalized and has already been processed by the transient
2884 -- scope machinery. This flag signals the general finalization mechanism
2885 -- to ignore the transient object.
2887 -- Is_Protected_Component (synthesized)
2888 -- Applicable to all entities, true if the entity denotes a private
2889 -- component of a protected type.
2891 -- Is_Protected_Interface (synthesized)
2892 -- Defined in types that are interfaces. True if interface is declared
2893 -- protected, or is derived from protected interfaces.
2895 -- Is_Protected_Type (synthesized)
2896 -- Applies to all entities, true for protected types and subtypes
2898 -- Is_Public (Flag10)
2899 -- Defined in all entities. Set to indicate that an entity defined in
2900 -- one compilation unit can be referenced from other compilation units.
2901 -- If this reference causes a reference in the generated code, for
2902 -- example in the case of a variable name, then the backend will generate
2903 -- an appropriate external name for use by the linker.
2905 -- Is_Protected_Record_Type (synthesized)
2906 -- Applies to all entities, true if Is_Concurrent_Record_Type is true and
2907 -- Corresponding_Concurrent_Type is a protected type.
2910 -- Defined in all entities. Set in all entities of a unit to which a
2911 -- pragma Pure is applied except for non-intrinsic imported subprograms,
2912 -- and also set for the entity of the unit itself. In addition, this
2913 -- flag may be set for any other functions or procedures that are known
2914 -- to be side effect free, so in the case of subprograms, the Is_Pure
2915 -- flag may be used by the optimizer to imply that it can assume freedom
2916 -- from side effects (other than those resulting from assignment to out
2917 -- parameters, or to objects designated by access parameters).
2919 -- Is_Pure_Unit_Access_Type (Flag189)
2920 -- Defined in access type and subtype entities. Set if the type or
2921 -- subtype appears in a pure unit. Used to give an error message at
2922 -- freeze time if the access type has a storage pool.
2924 -- Is_RACW_Stub_Type (Flag244)
2925 -- Defined in all types, true for the stub types generated for remote
2926 -- access-to-class-wide types.
2928 -- Is_Raised (Flag224)
2929 -- Defined in exception entities. Set if the entity is referenced by a
2930 -- a raise statement.
2932 -- Is_Real_Type (synthesized)
2933 -- Applies to all entities, true for real types and subtypes
2935 -- Is_Record_Type (synthesized)
2936 -- Applies to all entities, true for record types and subtypes,
2937 -- includes class-wide types and subtypes (which are also records)
2939 -- Is_Remote_Call_Interface (Flag62)
2940 -- Defined in all entities. Set in E_Package and E_Generic_Package
2941 -- entities to which a pragma Remote_Call_Interface is applied, and
2942 -- also on entities declared in the visible part of such a package.
2944 -- Is_Remote_Types (Flag61)
2945 -- Defined in all entities. Set in E_Package and E_Generic_Package
2946 -- entities to which a pragma Remote_Types is applied, and also on
2947 -- entities declared in the visible part of the spec of such a package.
2948 -- Also set for types which are generic formal types to which the
2949 -- pragma Remote_Access_Type applies.
2951 -- Is_Renaming_Of_Object (Flag112)
2952 -- Defined in all entities, set only for a variable or constant for
2953 -- which the Renamed_Object field is non-empty and for which the
2954 -- renaming is handled by the front end, by macro substitution of
2955 -- a copy of the (evaluated) name tree whereever the variable is used.
2957 -- Is_Return_Object (Flag209)
2958 -- Defined in all object entities. True if the object is the return
2959 -- object of an extended_return_statement; False otherwise.
2961 -- Is_Safe_To_Reevaluate (Flag249)
2962 -- Defined in all entities. Set in variables that are initialized by
2963 -- means of an assignment statement. When initialized their contents
2964 -- never change and hence they can be seen by the backend as constants.
2965 -- See also Is_True_Constant.
2967 -- Is_Scalar_Type (synthesized)
2968 -- Applies to all entities, true for scalar types and subtypes
2970 -- Is_Shared_Passive (Flag60)
2971 -- Defined in all entities. Set in E_Package and E_Generic_Package
2972 -- entities to which a pragma Shared_Passive is applied, and also in
2973 -- all entities within such packages.
2975 -- Is_Standard_Character_Type (synthesized)
2976 -- Applies to all entities, true for types and subtypes whose root type
2977 -- is one of the standard character types (Character, Wide_Character, or
2978 -- Wide_Wide_Character).
2980 -- Is_Standard_String_Type (synthesized)
2981 -- Applies to all entities, true for types and subtypes whose root
2982 -- type is one of the standard string types (String, Wide_String, or
2983 -- Wide_Wide_String).
2985 -- Is_Static_Type (Flag281)
2986 -- Defined in all type and subtype entities. If set, indicates that the
2987 -- type is known to be a static type (defined as a discrete type with
2988 -- static bounds, a record all of whose component types are static types,
2989 -- or an array, all of whose bounds are of a static type, and also have
2990 -- a component type that is a static type). See Set_Uplevel_Type for more
2991 -- information on how this flag is used. Note that if Is_Static_Type is
2992 -- True, then it is never the case that the Has_Uplevel_Reference flag is
2993 -- set for the same type.
2995 -- Is_Statically_Allocated (Flag28)
2996 -- Defined in all entities. This can only be set for exception,
2997 -- variable, constant, and type/subtype entities. If the flag is set,
2998 -- then the variable or constant must be allocated statically rather
2999 -- than on the local stack frame. For exceptions, the meaning is that
3000 -- the exception data should be allocated statically (and indeed this
3001 -- flag is always set for exceptions, since exceptions do not have
3002 -- local scope). For a type, the meaning is that the type must be
3003 -- elaborated at the global level rather than locally. No type marked
3004 -- with this flag may depend on a local variable, or on any other type
3005 -- which does not also have this flag set to True. For a variable or
3006 -- or constant, if the flag is set, then the type of the object must
3007 -- either be declared at the library level, or it must also have the
3008 -- flag set (since to allocate the object statically, its type must
3009 -- also be elaborated globally).
3011 -- Is_String_Type (synthesized)
3012 -- Applies to all type entities. Determines if the given type is a
3013 -- string type, i.e. it is directly a string type or string subtype,
3014 -- or a string slice type, or an array type with one dimension and a
3015 -- component type that is a character type.
3017 -- Is_Subprogram (synthesized)
3018 -- Applies to all entities, true for function, procedure and operator
3021 -- Is_Subprogram_Or_Generic_Subprogram
3022 -- Applies to all entities, true for function procedure and operator
3023 -- entities, and also for the corresponding generic entities.
3025 -- Is_Synchronized_Interface (synthesized)
3026 -- Defined in types that are interfaces. True if interface is declared
3027 -- synchronized, task, or protected, or is derived from a synchronized
3031 -- Defined in E_Component and E_Constant entities. For regular tagged
3032 -- type this flag is set on the tag component (whose name is Name_uTag).
3033 -- For CPP_Class tagged types, this flag marks the pointer to the main
3034 -- vtable (i.e. the one to be extended by derivation).
3036 -- Is_Tagged_Type (Flag55)
3037 -- Defined in all entities. Set for an entity that is a tagged type.
3039 -- Is_Task_Interface (synthesized)
3040 -- Defined in types that are interfaces. True if interface is declared as
3041 -- a task interface, or if it is derived from task interfaces.
3043 -- Is_Task_Record_Type (synthesized)
3044 -- Applies to all entities. True if Is_Concurrent_Record_Type
3045 -- Corresponding_Concurrent_Type is a task type.
3047 -- Is_Task_Type (synthesized)
3048 -- Applies to all entities. True for task types and subtypes
3050 -- Is_Thunk (Flag225)
3051 -- Defined in all entities. True for subprograms that are thunks: that is
3052 -- small subprograms built by the expander for tagged types that cover
3053 -- interface types. As part of the runtime call to an interface, thunks
3054 -- displace the pointer to the object (pointer named "this" in the C++
3055 -- terminology) from a secondary dispatch table to the primary dispatch
3056 -- table associated with a given tagged type; if the thunk is a function
3057 -- that returns an object which covers an interface type then the thunk
3058 -- displaces the pointer to the object from the primary dispatch table to
3059 -- the secondary dispatch table associated with the interface type. Set
3060 -- by Expand_Interface_Thunk and used by Expand_Call to handle extra
3061 -- actuals associated with accessibility level.
3063 -- Is_Trivial_Subprogram (Flag235)
3064 -- Defined in all entities. Set in subprograms where either the body
3065 -- consists of a single null statement, or the first or only statement
3066 -- of the body raises an exception. This is used for suppressing certain
3067 -- warnings, see Sem_Ch6.Analyze_Subprogram_Body discussion for details.
3069 -- Is_True_Constant (Flag163)
3070 -- Defined in all entities for constants and variables. Set in constants
3071 -- and variables which have an initial value specified but which are
3072 -- never assigned, partially or in the whole. For variables, it means
3073 -- that the variable was initialized but never modified, and hence can be
3074 -- treated as a constant by the code generator. For a constant, it means
3075 -- that the constant was not modified by generated code (e.g. to set a
3076 -- discriminant in an init proc). Assignments by user or generated code
3077 -- will reset this flag. See also Is_Safe_To_Reevaluate.
3079 -- Is_Type (synthesized)
3080 -- Applies to all entities, true for a type entity
3082 -- Is_Unchecked_Union (Flag117) [implementation base type only]
3083 -- Defined in all entities. Set only in record types to which the
3084 -- pragma Unchecked_Union has been validly applied.
3086 -- Is_Underlying_Record_View (Flag246) [base type only]
3087 -- Defined in all entities. Set only in record types that represent the
3088 -- underlying record view. This view is built for derivations of types
3089 -- with unknown discriminants; it is a record with the same structure
3090 -- as its corresponding record type, but whose parent is the full view
3091 -- of the parent in the original type extension.
3093 -- Is_Unsigned_Type (Flag144)
3094 -- Defined in all types, but can be set only for discrete and fixed-point
3095 -- type and subtype entities. This flag is only valid if the entity is
3096 -- frozen. If set it indicates that the representation is known to be
3097 -- unsigned (i.e. that no negative values appear in the range). This is
3098 -- normally just a reflection of the lower bound of the subtype or base
3099 -- type, but there is one case in which the setting is non-obvious,
3100 -- namely the case of an unsigned subtype of a signed type from which
3101 -- a further subtype is obtained using variable bounds. This further
3102 -- subtype is still unsigned, but this cannot be determined by looking
3103 -- at its bounds or the bounds of the corresponding base type.
3105 -- Is_Valued_Procedure (Flag127)
3106 -- Defined in procedure entities. Set if an Import_Valued_Procedure
3107 -- or Export_Valued_Procedure pragma applies to the procedure entity.
3109 -- Is_Visible_Formal (Flag206)
3110 -- Defined in all entities. Set for instances of the formals of a
3111 -- formal package. Indicates that the entity must be made visible in the
3112 -- body of the instance, to reproduce the visibility of the generic.
3113 -- This simplifies visibility settings in instance bodies.
3115 -- Is_Visible_Lib_Unit (Flag116)
3116 -- Defined in all (root or child) library unit entities. Once compiled,
3117 -- library units remain chained to the entities in the parent scope, and
3118 -- a separate flag must be used to indicate whether the names are visible
3119 -- by selected notation, or not.
3121 -- Is_Volatile (Flag16)
3122 -- Defined in all type entities, and also in constants, components and
3123 -- variables. Set if a pragma Volatile applies to the entity. Also set
3124 -- if pragma Shared or pragma Atomic applies to entity. In the case of
3125 -- private or incomplete types, this flag is set in both the private
3126 -- and full view. The flag is not set reliably on private subtypes,
3127 -- and is always retrieved from the base type (but this is not a base-
3128 -- type-only attribute because it applies to other entities). Note that
3129 -- the backend should use Treat_As_Volatile, rather than Is_Volatile
3130 -- to indicate code generation requirements for volatile variables.
3131 -- Similarly, any front end test which is concerned with suppressing
3132 -- optimizations on volatile objects should test Treat_As_Volatile
3133 -- rather than testing this flag.
3135 -- Is_Wrapper_Package (synthesized)
3136 -- Defined in package entities. Indicates that the package has been
3137 -- created as a wrapper for a subprogram instantiation.
3139 -- Itype_Printed (Flag202)
3140 -- Defined in all type and subtype entities. Set in Itypes if the Itype
3141 -- has been printed by Sprint. This is used to avoid printing an Itype
3144 -- Kill_Elaboration_Checks (Flag32)
3145 -- Defined in all entities. Set by the expander to kill elaboration
3146 -- checks which are known not to be needed. Equivalent in effect to
3147 -- the use of pragma Suppress (Elaboration_Checks) for that entity
3148 -- except that the effect is permanent and cannot be undone by a
3149 -- subsequent pragma Unsuppress.
3151 -- Kill_Range_Checks (Flag33)
3152 -- Defined in all entities. Equivalent in effect to the use of pragma
3153 -- Suppress (Range_Checks) for that entity except that the result is
3154 -- permanent and cannot be undone by a subsequent pragma Unsuppress.
3155 -- This is currently only used in one odd situation in Sem_Ch3 for
3156 -- record types, and it would be good to get rid of it???
3158 -- Known_To_Have_Preelab_Init (Flag207)
3159 -- Defined in all type and subtype entities. If set, then the type is
3160 -- known to have preelaborable initialization. In the case of a partial
3161 -- view of a private type, it is only possible for this to be set if a
3162 -- pragma Preelaborable_Initialization is given for the type. For other
3163 -- types, it is never set if the type does not have preelaborable
3164 -- initialization, it may or may not be set if the type does have
3165 -- preelaborable initialization.
3167 -- Last_Aggregate_Assignment (Node30)
3168 -- Applies to controlled constants and variables initialized by an
3169 -- aggregate. Points to the last statement associated with the expansion
3170 -- of the aggregate. The attribute is used by the finalization machinery
3171 -- when marking an object as successfully initialized.
3173 -- Last_Assignment (Node26)
3174 -- Defined in entities for variables, and OUT or IN OUT formals. Set for
3175 -- a local variable or formal to point to the left side of an assignment
3176 -- statement assigning a value to the variable. Cleared if the value of
3177 -- the entity is referenced. Used to warn about dubious assignment
3178 -- statements whose value is not used.
3180 -- Last_Entity (Node20)
3181 -- Defined in all entities which act as scopes to which a list of
3182 -- associated entities is attached (blocks, class subtypes and types,
3183 -- entries, functions, loops, packages, procedures, protected objects,
3184 -- record types and subtypes, private types, task types and subtypes).
3185 -- Points to the last entry in the list of associated entities chained
3186 -- through the Next_Entity field. Empty if no entities are chained.
3188 -- Last_Formal (synthesized)
3189 -- Applies to subprograms and subprogram types, and also in entries
3190 -- and entry families. Returns last formal of the subprogram or entry.
3191 -- The formals are the first entities declared in a subprogram or in
3192 -- a subprogram type (the designated type of an Access_To_Subprogram
3193 -- definition) or in an entry.
3195 -- Limited_View (Node23)
3196 -- Defined in non-generic package entities that are not instances. Bona
3197 -- fide package with the limited-view list through the first_entity and
3198 -- first_private attributes. The elements of this list are the shadow
3199 -- entities created for the types and local packages that are declared
3200 -- in a package appearing in a limited_with clause (Ada 2005: AI-50217).
3202 -- Linker_Section_Pragma (Node33)
3203 -- Present in constant, variable, type and subprogram entities. Points
3204 -- to a linker section pragma that applies to the entity, or is Empty if
3205 -- no such pragma applies. Note that for constants and variables, this
3206 -- field may be set as a result of a linker section pragma applied to the
3207 -- type of the object.
3209 -- Lit_Indexes (Node18)
3210 -- Defined in enumeration types and subtypes. Non-empty only for the
3211 -- case of an enumeration root type, where it contains the entity for
3212 -- the generated indexes entity. See unit Exp_Imgv for full details of
3213 -- the nature and use of this entity for implementing the Image and
3214 -- Value attributes for the enumeration type in question.
3216 -- Lit_Strings (Node16)
3217 -- Defined in enumeration types and subtypes. Non-empty only for the
3218 -- case of an enumeration root type, where it contains the entity for
3219 -- the literals string entity. See unit Exp_Imgv for full details of
3220 -- the nature and use of this entity for implementing the Image and
3221 -- Value attributes for the enumeration type in question.
3223 -- Low_Bound_Tested (Flag205)
3224 -- Defined in all entities. Currently this can only be set for formal
3225 -- parameter entries of a standard unconstrained one-dimensional array
3226 -- or string type. Indicates that an explicit test of the low bound of
3227 -- the formal appeared in the code, e.g. in a pragma Assert. If this
3228 -- flag is set, warnings about assuming the index low bound to be one
3231 -- Machine_Radix_10 (Flag84)
3232 -- Defined in decimal types and subtypes, set if the Machine_Radix is 10,
3233 -- as the result of the specification of a machine radix representation
3234 -- clause. Note that it is possible for this flag to be set without
3235 -- having Has_Machine_Radix_Clause True. This happens when a type is
3236 -- derived from a type with a clause present.
3238 -- Master_Id (Node17)
3239 -- Defined in access types and subtypes. Empty unless Has_Task is set for
3240 -- the designated type, in which case it points to the entity for the
3241 -- Master_Id for the access type master. Also set for access-to-limited-
3242 -- class-wide types whose root may be extended with task components, and
3243 -- for access-to-limited-interfaces because they can be used to reference
3244 -- tasks implementing such interface.
3246 -- Materialize_Entity (Flag168)
3247 -- Defined in all entities. Set only for renamed obects which should be
3248 -- materialized for debugging purposes. This means that a memory location
3249 -- containing the renamed address should be allocated. This is needed so
3250 -- that the debugger can find the entity.
3252 -- May_Inherit_Delayed_Rep_Aspects (Flag262)
3253 -- Defined in all entities for types and subtypes. Set if the type is
3254 -- derived from a type which has delayed rep aspects (marked by the flag
3255 -- Has_Delayed_Rep_Aspects being set). In this case, at the freeze point
3256 -- for the derived type we know that the parent type is frozen, and if
3257 -- a given attribute has not been set for the derived type, we copy the
3258 -- value from the parent type. See Freeze.Inherit_Delayed_Rep_Aspects.
3260 -- Mechanism (Uint8) (returned as Mechanism_Type)
3261 -- Defined in functions and non-generic formal parameters. Indicates
3262 -- the mechanism to be used for the function return or for the formal
3263 -- parameter. See full description in the spec of Sem_Mech. This field
3264 -- is also set (to the default value of zero = Default_Mechanism) in a
3265 -- subprogram body entity but not used in this context.
3267 -- Modulus (Uint17) [base type only]
3268 -- Defined in modular types. Contains the modulus. For the binary case,
3269 -- this will be a power of 2, but if Non_Binary_Modulus is set, then it
3270 -- will not be a power of 2.
3272 -- Must_Be_On_Byte_Boundary (Flag183)
3273 -- Defined in entities for types and subtypes. Set if objects of the type
3274 -- must always be allocated on a byte boundary (more accurately a storage
3275 -- unit boundary). The front end checks that component clauses respect
3276 -- this rule, and the backend ensures that record packing does not
3277 -- violate this rule. Currently the flag is set only for packed arrays
3278 -- longer than 64 bits where the component size is not a power of 2.
3280 -- Must_Have_Preelab_Init (Flag208)
3281 -- Defined in entities for types and subtypes. Set in the full type of a
3282 -- private type or subtype if a pragma Has_Preelaborable_Initialization
3283 -- is present for the private type. Used to check that the full type has
3284 -- preelaborable initialization at freeze time (this has to be deferred
3285 -- to the freeze point because of the rule about overriding Initialize).
3287 -- Needs_Debug_Info (Flag147)
3288 -- Defined in all entities. Set if the entity requires normal debugging
3289 -- information to be generated. This is true of all entities that have
3290 -- Comes_From_Source set, and also transitively for entities associated
3291 -- with such components (e.g. their types). It is true for all entities
3292 -- in Debug_Generated_Code mode (-gnatD switch). This is the flag that
3293 -- the backend should check to determine whether or not to generate
3294 -- debugging information for an entity. Note that callers should always
3295 -- use Sem_Util.Set_Debug_Info_Needed, rather than Set_Needs_Debug_Info,
3296 -- so that the flag is set properly on subsidiary entities.
3298 -- Needs_No_Actuals (Flag22)
3299 -- Defined in callable entities (subprograms, entries, access to
3300 -- subprograms) which can be called without actuals because all of
3301 -- their formals (if any) have default values. This flag simplifies the
3302 -- resolution of the syntactic ambiguity involving a call to these
3303 -- entities when the return type is an array type, and a call can be
3304 -- interpreted as an indexing of the result of the call. It is also
3305 -- used to resolve various cases of entry calls.
3307 -- Never_Set_In_Source (Flag115)
3308 -- Defined in all entities, but can be set only for variables and
3309 -- parameters. This flag is set if the object is never assigned a value
3310 -- in user source code, either by assignment or by being used as an out
3311 -- or in out parameter. Note that this flag is not reset from using an
3312 -- initial value, so if you want to test for this case as well, test the
3313 -- Has_Initial_Value flag also.
3315 -- This flag is only for the purposes of issuing warnings, it must not
3316 -- be used by the code generator to indicate that the variable is in
3317 -- fact a constant, since some assignments in generated code do not
3318 -- count (for example, the call to an init proc to assign some but
3319 -- not all of the fields in a partially initialized record). The code
3320 -- generator should instead use the flag Is_True_Constant.
3322 -- For the purposes of this warning, the default assignment of access
3323 -- variables to null is not considered the assignment of a value (so
3324 -- the warning can be given for code that relies on this initial null
3325 -- value when no other value is ever set).
3327 -- In variables and out parameters, if this flag is set after full
3328 -- processing of the corresponding declarative unit, it indicates that
3329 -- the variable or parameter was never set, and a warning message can
3332 -- Note: this flag is initially set, and then cleared on encountering
3333 -- any construct that might conceivably legitimately set the value.
3334 -- Thus during the analysis of a declarative region and its associated
3335 -- statement sequence, the meaning of the flag is "not set yet", and
3336 -- once this analysis is complete the flag means "never assigned".
3338 -- Note: for variables appearing in package declarations, this flag is
3339 -- never set. That is because there is no way to tell if some client
3340 -- modifies the variable (or, in the case of variables in the private
3341 -- part, if some child unit modifies the variables).
3343 -- Note: in the case of renamed objects, the flag must be set in the
3344 -- ultimate renamed object. Clients noting a possible modification
3345 -- should use the Note_Possible_Modification procedure in Sem_Util
3346 -- rather than Set_Never_Set_In_Source precisely to deal properly with
3347 -- the renaming possibility.
3349 -- Next_Component (synthesized)
3350 -- Applies to record components. Returns the next component by following
3351 -- the chain of declared entities until one is found which corresponds to
3352 -- a component (Ekind is E_Component). Any internal types generated from
3353 -- the subtype indications of the record components are skipped. Returns
3354 -- Empty if no more components.
3356 -- Next_Component_Or_Discriminant (synthesized)
3357 -- Similar to Next_Component, but includes components and discriminants
3358 -- so the input can have either E_Component or E_Discriminant, and the
3359 -- same is true for the result. Returns Empty if no more components or
3360 -- discriminants in the record.
3362 -- Next_Discriminant (synthesized)
3363 -- Applies to discriminants returned by First/Next_Discriminant. Returns
3364 -- the next language-defined (ie: perhaps non-girder) discriminant by
3365 -- following the chain of declared entities as long as the kind of the
3366 -- entity corresponds to a discriminant. Note that the discriminants
3367 -- might be the only components of the record. Returns Empty if there
3368 -- are no more discriminants.
3370 -- Next_Entity (Node2)
3371 -- Defined in all entities. The entities of a scope are chained, with
3372 -- the head of the list being in the First_Entity field of the scope
3373 -- entity. All entities use the Next_Entity field as a forward pointer
3374 -- for this list, with Empty indicating the end of the list. Since this
3375 -- field is in the base part of the entity, the access routines for this
3376 -- field are in Sinfo.
3378 -- Next_Formal (synthesized)
3379 -- Applies to the entity for a formal parameter. Returns the next formal
3380 -- parameter of the subprogram or subprogram type. Returns Empty if there
3381 -- are no more formals.
3383 -- Next_Formal_With_Extras (synthesized)
3384 -- Applies to the entity for a formal parameter. Returns the next
3385 -- formal parameter of the subprogram or subprogram type. Returns
3386 -- Empty if there are no more formals. The list returned includes
3387 -- all the extra formals (see description of Extra_Formal field)
3389 -- Next_Index (synthesized)
3390 -- Applies to array types and subtypes and to string types and
3391 -- subtypes. Yields the next index. The first index is obtained by
3392 -- using the First_Index attribute, and then subsequent indexes are
3393 -- obtained by applying Next_Index to the previous index. Empty is
3394 -- returned to indicate that there are no more indexes. Note that
3395 -- unlike most attributes in this package, Next_Index applies to
3396 -- nodes for the indexes, not to entities.
3398 -- Next_Inlined_Subprogram (Node12)
3399 -- Defined in subprograms. Used to chain inlined subprograms used in
3400 -- the current compilation, in the order in which they must be compiled
3401 -- by the backend to insure that all inlinings are performed.
3403 -- Next_Literal (synthesized)
3404 -- Applies to enumeration literals, returns the next literal, or
3405 -- Empty if applied to the last literal. This is actually a synonym
3406 -- for Next, but its use is preferred in this context.
3408 -- No_Dynamic_Predicate_On_Actual (Flag276)
3409 -- Defined in discrete types. Set for generic formal types that are used
3410 -- in loops and quantified expressions. The corresponing actual cannot
3411 -- have dynamic predicates.
3413 -- No_Pool_Assigned (Flag131) [root type only]
3414 -- Defined in access types. Set if a storage size clause applies to the
3415 -- variable with a static expression value of zero. This flag is used to
3416 -- generate errors if any attempt is made to allocate or free an instance
3417 -- of such an access type. This is set only in the root type, since
3418 -- derived types must have the same pool.
3420 -- No_Predicate_On_Actual (Flag275)
3421 -- Defined in discrete types. Set for generic formal types that are used
3422 -- in the spec of a generic package, in constructs that forbid discrete
3423 -- types with predicates.
3425 -- No_Return (Flag113)
3426 -- Defined in all entities. Always false except in the case of procedures
3427 -- and generic procedures for which a pragma No_Return is given.
3429 -- No_Strict_Aliasing (Flag136) [base type only]
3430 -- Defined in access types. Set to direct the backend to avoid any
3431 -- optimizations based on an assumption about the aliasing status of
3432 -- objects designated by the access type. For the case of the gcc
3433 -- backend, the effect is as though all references to objects of
3434 -- the type were compiled with -fno-strict-aliasing. This flag is
3435 -- set if an unchecked conversion with the access type as a target
3436 -- type occurs in the same source unit as the declaration of the
3437 -- access type, or if an explicit pragma No_Strict_Aliasing applies.
3439 -- No_Tagged_Streams_Pragma (Node32)
3440 -- Present in all subtype and type entities. Set for tagged types and
3441 -- subtypes (i.e. entities with Is_Tagged_Type set True) if a valid
3442 -- pragma/aspect applies to the type.
3444 -- Non_Binary_Modulus (Flag58) [base type only]
3445 -- Defined in all subtype and type entities. Set for modular integer
3446 -- types if the modulus value is other than a power of 2.
3448 -- Non_Limited_View (Node17)
3449 -- Defined in abstract states and incomplete types that act as shadow
3450 -- entities created when analysing a limited with clause (Ada 2005:
3451 -- AI-50217). Points to the defining entity of the original declaration.
3453 -- Nonzero_Is_True (Flag162) [base type only]
3454 -- Defined in enumeration types. Set if any non-zero value is to be
3455 -- interpreted as true. Currently this is set for derived Boolean
3456 -- types which have a convention of C, C++ or Fortran.
3458 -- Normalized_First_Bit (Uint8)
3459 -- Defined in components and discriminants. Indicates the normalized
3460 -- value of First_Bit for the component, i.e. the offset within the
3461 -- lowest addressed storage unit containing part or all of the field.
3462 -- Set to No_Uint if no first bit position is assigned yet.
3464 -- Normalized_Position (Uint14)
3465 -- Defined in components and discriminants. Indicates the normalized
3466 -- value of Position for the component, i.e. the offset in storage
3467 -- units from the start of the record to the lowest addressed storage
3468 -- unit containing part or all of the field.
3470 -- Normalized_Position_Max (Uint10)
3471 -- Defined in components and discriminants. For almost all cases, this
3472 -- is the same as Normalized_Position. The one exception is for the case
3473 -- of a discriminated record containing one or more arrays whose length
3474 -- depends on discriminants. In this case, the Normalized_Position_Max
3475 -- field represents the maximum possible value of Normalized_Position
3476 -- assuming min/max values for discriminant subscripts in all fields.
3477 -- This is used by Layout in front end layout mode to properly computed
3478 -- the maximum size such records (needed for allocation purposes when
3479 -- there are default discriminants, and also for the 'Size value).
3481 -- Number_Dimensions (synthesized)
3482 -- Applies to array types and subtypes. Returns the number of dimensions
3483 -- of the array type or subtype as a value of type Pos.
3485 -- Number_Entries (synthesized)
3486 -- Applies to concurrent types. Returns the number of entries that are
3487 -- declared within the task or protected definition for the type.
3489 -- Number_Formals (synthesized)
3490 -- Applies to subprograms and subprogram types. Yields the number of
3491 -- formals as a value of type Pos.
3493 -- OK_To_Rename (Flag247)
3494 -- Defined only in entities for variables. If this flag is set, it
3495 -- means that if the entity is used as the initial value of an object
3496 -- declaration, the object declaration can be safely converted into a
3497 -- renaming to avoid an extra copy. This is set for variables which are
3498 -- generated by the expander to hold the result of evaluating some
3499 -- expression. Most notably, the local variables used to store the result
3500 -- of concatenations are so marked (see Exp_Ch4.Expand_Concatenate). It
3501 -- is only worth setting this flag for composites, since for primitive
3502 -- types, it is cheaper to do the copy.
3504 -- OK_To_Reorder_Components (Flag239) [base type only]
3505 -- Defined in record types. Set if the backend is permitted to reorder
3506 -- the components. If not set, the record must be layed out in the order
3507 -- in which the components are declared textually. Currently this flag
3508 -- can only be set by debug switches.
3510 -- Optimize_Alignment_Space (Flag241)
3511 -- Defined in type, subtype, variable, and constant entities. This
3512 -- flag records that the type or object is to be layed out in a manner
3513 -- consistent with Optimize_Alignment (Space) mode. The compiler and
3514 -- binder ensure a consistent view of any given type or object. If pragma
3515 -- Optimize_Alignment (Off) mode applies to the type/object, then neither
3516 -- of the flags Optimize_Alignment_Space/Optimize_Alignment_Time is set.
3518 -- Optimize_Alignment_Time (Flag242)
3519 -- Defined in type, subtype, variable, and constant entities. This
3520 -- flag records that the type or object is to be layed out in a manner
3521 -- consistent with Optimize_Alignment (Time) mode. The compiler and
3522 -- binder ensure a consistent view of any given type or object. If pragma
3523 -- Optimize_Alignment (Off) mode applies to the type/object, then neither
3524 -- of the flags Optimize_Alignment_Space/Optimize_Alignment_Time is set.
3526 -- Original_Access_Type (Node28)
3527 -- Defined in E_Access_Subprogram_Type entities. Set only if the access
3528 -- type was generated by the expander as part of processing an access
3529 -- to protected subprogram type. Points to the access to protected
3532 -- Original_Array_Type (Node21)
3533 -- Defined in modular types and array types and subtypes. Set only if
3534 -- the Is_Packed_Array_Impl_Type flag is set, indicating that the type
3535 -- is the implementation type for a packed array, and in this case it
3536 -- points to the original array type for which this is the packed
3537 -- array implementation type.
3539 -- Original_Record_Component (Node22)
3540 -- Defined in components, including discriminants. The usage depends
3541 -- on whether the record is a base type and whether it is tagged.
3543 -- In base tagged types:
3544 -- When the component is inherited in a record extension, it points
3545 -- to the original component (the entity of the ancestor component
3546 -- which is not itself inherited) otherwise it points to itself. The
3547 -- backend uses this attribute to implement the automatic dereference
3548 -- in the extension and to apply the transformation:
3550 -- Rec_Ext.Comp -> Rec_Ext.Parent. ... .Parent.Comp
3552 -- In base untagged types:
3553 -- Always points to itself except for non-girder discriminants, where
3554 -- it points to the girder discriminant it renames.
3556 -- In subtypes (tagged and untagged):
3557 -- Points to the component in the base type.
3559 -- Overlays_Constant (Flag243)
3560 -- Defined in all entities. Set only for a variable for which there is
3561 -- an address clause which causes the variable to overlay a constant.
3563 -- Overridden_Operation (Node26)
3564 -- Defined in subprograms. For overriding operations, points to the
3565 -- user-defined parent subprogram that is being overridden. Note: this
3566 -- attribute uses the same field as Static_Initialization. The latter
3567 -- is only defined for internal initialization procedures, for which
3568 -- Overridden_Operation is irrelevant. Thus this attribute must not be
3569 -- set for init_procs.
3571 -- Package_Instantiation (Node26)
3572 -- Defined in packages and generic packages. When defined, this field
3573 -- references an N_Generic_Instantiation node associated with an
3574 -- instantiated package. In the case where the referenced node has
3575 -- been rewritten to an N_Package_Specification, the instantiation
3576 -- node is available from the Original_Node field of the package spec
3577 -- node. This is currently not guaranteed to be set in all cases, but
3578 -- when set, the field is used in Get_Package_Instantiation_Node as
3579 -- one of the means of obtaining the instantiation node. Eventually
3580 -- it should be set in all cases, including package entities associated
3581 -- with formal packages. ???
3583 -- Packed_Array_Impl_Type (Node23)
3584 -- Defined in array types and subtypes, including the string literal
3585 -- subtype case, if the corresponding type is packed (either bit packed
3586 -- or packed to eliminate holes in non-contiguous enumeration type index
3587 -- types). References the type used to represent the packed array, which
3588 -- is either a modular type for short static arrays, or an array of
3589 -- System.Unsigned. Note that in some situations (internal types, and
3590 -- references to fields of variant records), it is not always possible
3591 -- to construct this type in advance of its use. If this field is empty,
3592 -- then the necessary type is declared on the fly for each reference to
3595 -- Parameter_Mode (synthesized)
3596 -- Applies to formal parameter entities. This is a synonym for Ekind,
3597 -- used when obtaining the formal kind of a formal parameter (the result
3598 -- is one of E_[In/Out/In_Out]_Parameter)
3600 -- Parent_Subtype (Node19) [base type only]
3601 -- Defined in E_Record_Type. Set only for derived tagged types, in which
3602 -- case it points to the subtype of the parent type. This is the type
3603 -- that is used as the Etype of the _parent field.
3605 -- Part_Of_Constituents (Elist9)
3606 -- Present in abstract state entities. Contains all constituents that are
3607 -- subject to indicator Part_Of (both aspect and option variants).
3609 -- Partial_View_Has_Unknown_Discr (Flag280)
3610 -- Present in all types. Set to Indicate that the partial view of a type
3611 -- has unknown discriminants. A default initialization of an object of
3612 -- the type does not require an invariant check (AI12-0133).
3614 -- Pending_Access_Types (Elist15)
3615 -- Defined in all types. Set for incomplete, private, Taft-amendment
3616 -- types, and their corresponding full views. This list contains all
3617 -- access types, both named and anonymous, declared between the partial
3618 -- and the full view. The list is used by the finalization machinery to
3619 -- ensure that the finalization masters of all pending access types are
3620 -- fully initialized when the full view is frozen.
3622 -- Postconditions_Proc (Node14)
3623 -- Defined in functions, procedures, entries, and entry families. Refers
3624 -- to the entity of the _Postconditions procedure used to check contract
3625 -- assertions on exit from a subprogram.
3627 -- PPC_Wrapper (Node25)
3628 -- Defined in entries and entry families. Set only if pre- or post-
3629 -- conditions are present. The precondition_wrapper body is the original
3630 -- entry call, decorated with the given precondition for the entry.
3632 -- Predicate_Function (synthesized)
3633 -- Defined in all types. Set for types for which (Has_Predicates is True)
3634 -- and for which a predicate procedure has been built that tests that the
3635 -- specified predicates are True. Contains the entity for the function
3636 -- which takes a single argument of the given type, and returns True if
3637 -- the predicate holds and False if it does not.
3639 -- Note: the reason this is marked as a synthesized attribute is that the
3640 -- way this is stored is as an element of the Subprograms_For_Type field.
3642 -- Predicate_Function_M (synthesized)
3643 -- Defined in all types. Present only if Predicate_Function is present,
3644 -- and only if the predicate function has Raise_Expression nodes. It
3645 -- is the special version created for membership tests, where if one of
3646 -- these raise expressions is executed, the result is to return False.
3648 -- Primitive_Operations (synthesized)
3649 -- Defined in concurrent types, tagged record types and subtypes, tagged
3650 -- private types and tagged incomplete types. For concurrent types whose
3651 -- Corresponding_Record_Type (CRT) is available, returns the list of
3652 -- Direct_Primitive_Operations of its CRT; otherwise returns No_Elist.
3653 -- For all the other types returns the Direct_Primitive_Operations.
3656 -- Defined in private components of protected types. Refers to the entity
3657 -- of the component renaming declaration generated inside protected
3658 -- subprograms, entries or barrier functions.
3660 -- Prival_Link (Node20)
3661 -- Defined in constants and variables which rename private components of
3662 -- protected types. Set to the original private component.
3664 -- Private_Dependents (Elist18)
3665 -- Defined in private (sub)types. Records the subtypes of the private
3666 -- type, derivations from it, and records and arrays with components
3667 -- dependent on the type.
3669 -- The subtypes are traversed when installing and deinstalling (the full
3670 -- view of) a private type in order to ensure correct view of the
3673 -- Used in similar fashion for incomplete types: holds list of subtypes
3674 -- of these incomplete types that have discriminant constraints. The
3675 -- full views of these subtypes are constructed when the full view of
3676 -- the incomplete type is processed.
3678 -- In addition, if the incomplete type is the designated type in an
3679 -- access definition for an access parameter, the operation may be
3680 -- a dispatching primitive operation, which is only known when the full
3681 -- declaration of the type is seen. Subprograms that have such an
3682 -- access parameter are also placed in the list of private_dependents.
3684 -- Private_View (Node22)
3685 -- For each private type, three entities are allocated, the private view,
3686 -- the full view, and the shadow entity. The shadow entity contains a
3687 -- copy of the private view and is used for restoring the proper private
3688 -- view after a region in which the full view is visible (and is copied
3689 -- into the entity normally used for the private view during this period
3690 -- of visibility). The Private_View field is self-referential when the
3691 -- private view lives in its normal entity, but in the copy that is made
3692 -- in the shadow entity, it points to the proper location in which to
3693 -- restore the private view saved in the shadow.
3695 -- Protected_Formal (Node22)
3696 -- Defined in formal parameters (in, in out and out parameters). Used
3697 -- only for formals of protected operations. References corresponding
3698 -- formal parameter in the unprotected version of the operation that
3699 -- is created during expansion.
3701 -- Protected_Body_Subprogram (Node11)
3702 -- Defined in protected operations. References the entity for the
3703 -- subprogram which implements the body of the operation.
3705 -- Protection_Object (Node23)
3706 -- Applies to protected entries, entry families and subprograms. Denotes
3707 -- the entity which is used to rename the _object component of protected
3710 -- Reachable (Flag49)
3711 -- Defined in labels. The flag is set over the range of statements in
3712 -- which a goto to that label is legal.
3714 -- Referenced (Flag156)
3715 -- Defined in all entities. Set if the entity is referenced, except for
3716 -- the case of an appearance of a simple variable that is not a renaming
3717 -- as the left side of an assignment in which case Referenced_As_LHS is
3718 -- set instead, or a similar appearance as an out parameter actual, in
3719 -- which case Referenced_As_Out_Parameter is set.
3721 -- Referenced_As_LHS (Flag36):
3722 -- Defined in all entities. This flag is set instead of Referenced if a
3723 -- simple variable that is not a renaming appears as the left side of an
3724 -- assignment. The reason we distinguish this kind of reference is that
3725 -- we have a separate warning for variables that are only assigned and
3728 -- Referenced_As_Out_Parameter (Flag227):
3729 -- Defined in all entities. This flag is set instead of Referenced if a
3730 -- simple variable that is not a renaming appears as an actual for an out
3731 -- formal. The reason we distinguish this kind of reference is that
3732 -- we have a separate warning for variables that are only assigned and
3733 -- never read, and out parameters are a special case.
3735 -- Refinement_Constituents (Elist8)
3736 -- Present in abstract state entities. Contains all the constituents that
3737 -- refine the state, in other words, all the hidden states that appear in
3738 -- the constituent_list of aspect/pragma Refined_State.
3740 -- Register_Exception_Call (Node20)
3741 -- Defined in exception entities. When an exception is declared,
3742 -- a call is expanded to Register_Exception. This field points to
3743 -- the expanded N_Procedure_Call_Statement node for this call. It
3744 -- is used for Import/Export_Exception processing to modify the
3745 -- register call to make appropriate entries in the special tables
3746 -- used for handling these pragmas at runtime.
3748 -- Related_Array_Object (Node25)
3749 -- Defined in array types and subtypes. Used only for the base type
3750 -- and subtype created for an anonymous array object. Set to point
3751 -- to the entity of the corresponding array object. Currently used
3752 -- only for type-related error messages.
3754 -- Related_Expression (Node24)
3755 -- Defined in variables and types. When Set for internally generated
3756 -- entities, it may be used to denote the source expression whose
3757 -- elaboration created the variable declaration. If set, it is used
3758 -- for generating clearer messages from CodePeer. It is used on source
3759 -- entities that are variables in iterator specifications, to provide
3760 -- a link to the container that is the domain of iteration. This allows
3761 -- for better cross-reference information when the loop modifies elements
3762 -- of the container, and suppresses spurious warnings.
3764 -- Shouldn't it also be used for the same purpose in errout? It seems
3765 -- odd to have two mechanisms here???
3767 -- Related_Instance (Node15)
3768 -- Defined in the wrapper packages created for subprogram instances.
3769 -- The internal subprogram that implements the instance is inside the
3770 -- wrapper package, but for debugging purposes its external symbol
3771 -- must correspond to the name and scope of the related instance.
3773 -- Related_Type (Node27)
3774 -- Defined in components, constants and variables. Set when there is an
3775 -- associated dispatch table to point to entities containing primary or
3776 -- secondary tags. Not set in the _tag component of record types.
3778 -- Relative_Deadline_Variable (Node28) [implementation base type only]
3779 -- Defined in task type entities. This flag is set if a valid and
3780 -- effective pragma Relative_Deadline applies to the base type. Points
3781 -- to the entity for a variable that is created to hold the value given
3782 -- in a Relative_Deadline pragma for a task type.
3784 -- Renamed_Entity (Node18)
3785 -- Defined in exceptions, packages, subprograms, and generic units. Set
3786 -- for entities that are defined by a renaming declaration. Denotes the
3787 -- renamed entity, or transitively the ultimate renamed entity if
3788 -- there is a chain of renaming declarations. Empty if no renaming.
3790 -- Renamed_In_Spec (Flag231)
3791 -- Defined in package entities. If a package renaming occurs within
3792 -- a package spec, then this flag is set on the renamed package. The
3793 -- purpose is to prevent a warning about unused entities in the renamed
3794 -- package. Such a warning would be inappropriate since clients of the
3795 -- package can see the entities in the package via the renaming.
3797 -- Renamed_Object (Node18)
3798 -- Defined in all objects (constants, variables, components, formal
3799 -- parameters, generic formal parameters, and loop parameters).
3800 -- ??? Defined in discriminants?
3801 -- Set non-Empty if the object was declared by a renaming declaration,
3802 -- in which case it references the tree node for the name of the renamed
3803 -- object. This is only possible for the variable and constant cases.
3804 -- For formal parameters, this field is used in the course of inline
3805 -- expansion, to map the formals of a subprogram into the corresponding
3806 -- actuals. For formals of a task entry, it denotes the local renaming
3807 -- that replaces the actual within the accept statement. The field is
3808 -- Empty otherwise (it is always empty for loop parameters).
3810 -- Renaming_Map (Uint9)
3811 -- Defined in generic subprograms, generic packages, and their
3812 -- instances. Also defined in the instances of the corresponding
3813 -- bodies. Denotes the renaming map (generic entities => instance
3814 -- entities) used to construct the instance by givin an index into
3815 -- the tables used to represent these maps. See Sem_Ch12 for further
3816 -- details. The maps for package instances are also used when the
3817 -- instance is the actual corresponding to a formal package.
3819 -- Requires_Overriding (Flag213)
3820 -- Defined in all subprograms and entries. Set for subprograms that
3821 -- require overriding as defined by RM-2005-3.9.3(6/2). Note that this
3822 -- is True only for implicitly declare subprograms; it is not set on the
3823 -- parent type's subprogram. See also Is_Abstract_Subprogram.
3825 -- Return_Present (Flag54)
3826 -- Defined in function and generic function entities. Set if the
3827 -- function contains a return statement (used for error checking).
3828 -- This flag can also be set in procedure and generic procedure
3829 -- entities (for convenience in setting it), but is only tested
3830 -- for the function case.
3832 -- Return_Applies_To (Node8)
3833 -- Defined in E_Return_Statement. Points to the entity representing
3834 -- the construct to which the return statement applies, as defined in
3835 -- RM-6.5(4/2). Note that a (simple) return statement within an
3836 -- extended_return_statement applies to the extended_return_statement,
3837 -- even though it causes the whole function to return.
3839 -- Returns_By_Ref (Flag90)
3840 -- Defined in function entities. Set if the function returns the result
3841 -- by reference, either because its return type is a by-reference-type
3842 -- or because the function explicitly uses the secondary stack.
3844 -- Returns_Limited_View (Flag134)
3845 -- Defined in function entities. Set if the return type of the function
3846 -- at the point of definition is a limited view. Used to handle the late
3847 -- freezing of the function when it is called in the current semantic
3848 -- unit while it is still unfrozen.
3850 -- Reverse_Bit_Order (Flag164) [base type only]
3851 -- Defined in all record type entities. Set if entity has a Bit_Order
3852 -- aspect (set by an aspect clause or attribute definition clause) that
3853 -- has reversed the order of bits from the default value. When this flag
3854 -- is set, a component clause must specify a set of bits entirely within
3855 -- a single storage unit (Ada 95) or within a single machine scalar (see
3856 -- Ada 2005 AI-133), or must occupy an integral number of storage units.
3858 -- Reverse_Storage_Order (Flag93) [base type only]
3859 -- Defined in all record and array type entities. Set if entity has a
3860 -- Scalar_Storage_Order aspect (set by an aspect clause or attribute
3861 -- definition clause) that has reversed the order of storage elements
3862 -- from the default value. When this flag is set for a record type,
3863 -- the Bit_Order aspect must be set to the same value (either explicitly
3864 -- or as the target default value).
3867 -- Defined in all type and subtype entities. Contains the value of
3868 -- type'Size as defined in the RM. See also the Esize field and
3869 -- and the description on "Handling of Type'Size Values". A value
3870 -- of zero in this field for a non-discrete type means that
3871 -- the front end has not yet determined the size value. For the
3872 -- case of a discrete type, this field is always set by the front
3873 -- end and zero is a legitimate value for a type with one value.
3875 -- Root_Type (synthesized)
3876 -- Applies to all type entities. For class-wide types, return the root
3877 -- type of the class covered by the CW type, otherwise returns the
3878 -- ultimate derivation ancestor of the given type. This function
3879 -- preserves the view, i.e. the Root_Type of a partial view is the
3880 -- partial view of the ultimate ancestor, the Root_Type of a full view
3881 -- is the full view of the ultimate ancestor. Note that this function
3882 -- does not correspond exactly to the use of root type in the RM, since
3883 -- in the RM root type applies to a class of types, not to a type.
3885 -- Scalar_Range (Node20)
3886 -- Defined in all scalar types (including modular types, where the
3887 -- bounds are 0 .. modulus - 1). References a node in the tree that
3888 -- contains the bounds for the range. Note that this information
3889 -- could be obtained by rummaging around the tree, but it is more
3890 -- convenient to have it immediately at hand in the entity. The
3891 -- contents of Scalar_Range can either be an N_Subtype_Indication
3892 -- node (with a constraint), or a Range node, but not a simple
3893 -- subtype reference (a subtype is converted into a range).
3895 -- Scale_Value (Uint16)
3896 -- Defined in decimal fixed-point types and subtypes. Contains the scale
3897 -- for the type (i.e. the value of type'Scale = the number of decimal
3898 -- digits after the decimal point).
3901 -- Defined in all entities. Points to the entity for the scope (block,
3902 -- loop, subprogram, package etc.) in which the entity is declared.
3903 -- Since this field is in the base part of the entity node, the access
3904 -- routines for this field are in Sinfo. Note that for a child unit,
3905 -- the Scope will be the parent package, and for a root library unit,
3906 -- the Scope will be Standard.
3908 -- Scope_Depth (synthesized)
3909 -- Applies to program units, blocks, concurrent types and entries, and
3910 -- also to record types, i.e. to any entity that can appear on the scope
3911 -- stack. Yields the scope depth value, which for those entities other
3912 -- than records is simply the scope depth value, for record entities, it
3913 -- is the Scope_Depth of the record scope.
3915 -- Scope_Depth_Value (Uint22)
3916 -- Defined in program units, blocks, concurrent types, and entries.
3917 -- Indicates the number of scopes that statically enclose the declaration
3918 -- of the unit or type. Library units have a depth of zero. Note that
3919 -- record types can act as scopes but do NOT have this field set (see
3920 -- Scope_Depth above)
3922 -- Scope_Depth_Set (synthesized)
3923 -- Applies to a special predicate function that returns a Boolean value
3924 -- indicating whether or not the Scope_Depth field has been set. It is
3925 -- needed, since returns an invalid value in this case.
3927 -- Sec_Stack_Needed_For_Return (Flag167)
3928 -- Defined in scope entities (blocks, functions, procedures, tasks,
3929 -- entries). Set to True when secondary stack is used to hold the
3930 -- returned value of a function and thus should not be released on
3933 -- Shadow_Entities (List14)
3934 -- Defined in package and generic package entities. Points to a list
3935 -- of entities that correspond to private types. For each private type
3936 -- a shadow entity is created that holds a copy of the private view.
3937 -- In regions of the program where the full views of these private
3938 -- entities are visible, the full view is copied into the entity that
3939 -- is normally used to hold the private view, but the shadow entity
3940 -- copy is unchanged. The shadow entities are then used to restore the
3941 -- original private views at the end of the region. This list is a
3942 -- standard format list (i.e. First (Shadow_Entities) is the first
3943 -- entry and subsequent entries are obtained using Next.
3945 -- Shared_Var_Procs_Instance (Node22)
3946 -- Defined in variables. Set non-Empty only if Is_Shared_Passive is
3947 -- set, in which case this is the entity for the associated instance of
3948 -- System.Shared_Storage.Shared_Var_Procs. See Exp_Smem for full details.
3950 -- Size_Check_Code (Node19)
3951 -- Defined in constants and variables. Normally Empty. Set if code is
3952 -- generated to check the size of the object. This field is used to
3953 -- suppress this code if a subsequent address clause is encountered.
3955 -- Size_Clause (synthesized)
3956 -- Applies to all entities. If a size clause is present in the rep
3957 -- item chain for an entity then the attribute definition clause node
3958 -- for the size clause is returned. Otherwise Size_Clause returns Empty
3959 -- if no item is present. Usually this is only meaningful if the flag
3960 -- Has_Size_Clause is set. This is because when the representation item
3961 -- chain is copied for a derived type, it can inherit a size clause that
3962 -- is not applicable to the entity.
3964 -- Size_Depends_On_Discriminant (Flag177)
3965 -- Defined in all entities for types and subtypes. Indicates that the
3966 -- size of the type depends on the value of one or more discriminants.
3967 -- Currently, this flag is only set for arrays which have one or more
3968 -- bounds depending on a discriminant value.
3970 -- Size_Known_At_Compile_Time (Flag92)
3971 -- Defined in all entities for types and subtypes. Indicates that the
3972 -- size of objects of the type is known at compile time. This flag is
3973 -- used to optimize some generated code sequences, and also to enable
3974 -- some error checks (e.g. disallowing component clauses on variable
3975 -- length objects). It is set conservatively (i.e. if it is True, the
3976 -- size is certainly known at compile time, if it is False, then the
3977 -- size may or may not be known at compile time, but the code will
3978 -- assume that it is not known).
3980 -- Small_Value (Ureal21)
3981 -- Defined in fixed point types. Points to the universal real for the
3982 -- Small of the type, either as given in a representation clause, or
3983 -- as computed (as a power of two) by the compiler.
3985 -- SPARK_Aux_Pragma (Node33)
3986 -- Present in package spec and body entities. For a package spec entity
3987 -- it relates to the SPARK mode setting for the private part. This field
3988 -- points to the N_Pragma node that applies to the private part. This is
3989 -- either set with a local SPARK_Mode pragma in the private part or it is
3990 -- inherited from the SPARK mode that applies to the rest of the spec.
3991 -- For a package body, it similarly applies to the SPARK mode setting for
3992 -- the elaboration sequence after the BEGIN. In the case where the pragma
3993 -- is inherited, the SPARK_Aux_Pragma_Inherited flag is set in the
3994 -- package spec or body entity.
3996 -- SPARK_Aux_Pragma_Inherited (Flag266)
3997 -- Present in the entities of subprogram specs and bodies as well as
3998 -- in package specs and bodies. Set if the SPARK_Aux_Pragma field
3999 -- points to a pragma that is inherited, rather than a local one.
4001 -- SPARK_Pragma (Node32)
4002 -- Present in the entities of subprogram specs and bodies as well as in
4003 -- package specs and bodies. Points to the N_Pragma node that applies to
4004 -- the spec or body. This is either set by a local SPARK_Mode pragma or
4005 -- is inherited from the context (from an outer scope for the spec case
4006 -- or from the spec for the body case). In the case where it is inherited
4007 -- the flag SPARK_Pragma_Inherited is set. Empty if no SPARK_Mode pragma
4010 -- SPARK_Pragma_Inherited (Flag265)
4011 -- Present in the entities of subprogram specs and bodies as well as in
4012 -- package specs and bodies. Set if the SPARK_Pragma field points to a
4013 -- pragma that is inherited, rather than a local one.
4015 -- Spec_Entity (Node19)
4016 -- Defined in package body entities. Points to corresponding package
4017 -- spec entity. Also defined in subprogram body parameters in the
4018 -- case where there is a separate spec, where this field references
4019 -- the corresponding parameter entities in the spec.
4021 -- SSO_Set_High_By_Default (Flag273) [base type only]
4022 -- Defined for record and array types. Set in the base type if a pragma
4023 -- Default_Scalar_Storage_Order (High_Order_First) was active at the time
4024 -- the record or array was declared and therefore applies to it.
4026 -- SSO_Set_Low_By_Default (Flag272) [base type only]
4027 -- Defined for record and array types. Set in the base type if a pragma
4028 -- Default_Scalar_Storage_Order (High_Order_First) was active at the time
4029 -- the record or array was declared and therefore applies to it.
4031 -- Static_Discrete_Predicate (List25)
4032 -- Defined in discrete types/subtypes with static predicates (with the
4033 -- two flags Has_Predicates and Has_Static_Predicate set). Set if the
4034 -- type/subtype has a static predicate. Points to a list of expression
4035 -- and N_Range nodes that represent the predicate in canonical form. The
4036 -- canonical form has entries sorted in ascending order, with duplicates
4037 -- eliminated, and adjacent ranges coalesced, so that there is always a
4038 -- gap in the values between successive entries. The entries in this list
4039 -- are fully analyzed and typed with the base type of the subtype. Note
4040 -- that all entries are static and have values within the subtype range.
4042 -- Static_Real_Or_String_Predicate (Node25)
4043 -- Defined in real types/subtypes with static predicates (with the two
4044 -- flags Has_Predicates and Has_Static_Predicate set). Set if the type
4045 -- or subtype has a static predicate. Points to the return expression
4046 -- of the predicate function. This is the original expression given as
4047 -- the predicate except that occurrences of the type are replaced by
4048 -- occurrences of the formal parameter of the predicate function (note
4049 -- that the spec of this function including this formal parameter name)
4050 -- is available from the Subprograms_For_Type field (it can be accessed
4051 -- as Predicate_Function (typ). Also, in the case where a predicate is
4052 -- inherited, the expression is of the form:
4054 -- expression AND THEN xxxPredicate (typ2 (ent))
4056 -- where typ2 is the type from which the predicate is inherited, ent is
4057 -- the entity for the current predicate function, and xxxPredicate is the
4058 -- inherited predicate (from typ2). Finally for a predicate that inherits
4059 -- from another predicate but does not add a predicate of its own, the
4060 -- expression may consist of the above xxxPredicate call on its own.
4062 -- Status_Flag_Or_Transient_Decl (Node15)
4063 -- Defined in variables and constants. Applies to objects that require
4064 -- special treatment by the finalization machinery, such as extended
4065 -- return results, IF and CASE expression results, and objects inside
4066 -- N_Expression_With_Actions nodes. The attribute contains the entity
4067 -- of a flag which specifies particular behavior over a region of code
4068 -- or the declaration of a "hook" object.
4069 -- In which case is it a flag, or a hook object???
4071 -- Static_Elaboration_Desired (Flag77)
4072 -- Defined in library-level packages. Set by the pragma of the same
4073 -- name, to indicate that static initialization must be attempted for
4074 -- all types declared in the package, and that a warning must be emitted
4075 -- for those types to which static initialization is not available.
4077 -- Static_Initialization (Node30)
4078 -- Defined in initialization procedures for types whose objects can be
4079 -- initialized statically. The value of this attribute is a positional
4080 -- aggregate whose components are compile-time static values. Used
4081 -- when available in object declarations to eliminate the call to the
4082 -- initialization procedure, and to minimize elaboration code. Note:
4083 -- This attribute uses the same field as Overridden_Operation, which is
4084 -- irrelevant in init_procs.
4086 -- Storage_Size_Variable (Node26) [implementation base type only]
4087 -- Defined in access types and task type entities. This flag is set
4088 -- if a valid and effective pragma Storage_Size applies to the base
4089 -- type. Points to the entity for a variable that is created to
4090 -- hold the value given in a Storage_Size pragma for an access
4091 -- collection or a task type. Note that in the access type case,
4092 -- this field is defined only in the root type (since derived types
4093 -- share the same storage pool).
4095 -- Stored_Constraint (Elist23)
4096 -- Defined in entities that can have discriminants (concurrent types
4097 -- subtypes, record types and subtypes, private types and subtypes,
4098 -- limited private types and subtypes and incomplete types). Points
4099 -- to an element list containing the expressions for each of the
4100 -- stored discriminants for the record (sub)type.
4102 -- Stores_Attribute_Old_Prefix (Flag270)
4103 -- Defined in constants. Set when the constant has been generated to save
4104 -- the value of attribute 'Old's prefix.
4106 -- Strict_Alignment (Flag145) [implementation base type only]
4107 -- Defined in all type entities. Indicates that some containing part
4108 -- is either aliased or tagged. This prohibits packing the object
4109 -- tighter than its natural size and alignment.
4111 -- String_Literal_Length (Uint16)
4112 -- Defined in string literal subtypes (which are created to correspond
4113 -- to string literals in the program). Contains the length of the string
4116 -- String_Literal_Low_Bound (Node18)
4117 -- Defined in string literal subtypes (which are created to correspond
4118 -- to string literals in the program). Contains an expression whose
4119 -- value represents the low bound of the literal. This is a copy of
4120 -- the low bound of the applicable index constraint if there is one,
4121 -- or a copy of the low bound of the index base type if not.
4123 -- Subprograms_For_Type (Node29)
4124 -- Defined in all type and subprogram entities. This is used to hold
4125 -- a list of subprogram entities for subprograms associated with the
4126 -- type, linked through the Subprograms_For_Type field of the subprogram
4127 -- entity. Basically this is a way of multiplexing the single field to
4128 -- hold more than one entity (since we ran out of space in some type
4129 -- entities). This is currently used for Invariant_Procedure and also
4130 -- for Predicate_Function, and clients will always use the latter two
4131 -- names to access entries in this list.
4133 -- Subps_Index (Uint24)
4134 -- Used during Exp_Inst.Unnest_Subprogram to hold the index in the Subps
4135 -- table for a subprogram. See processing in this procedure for details.
4136 -- Note that this overlaps Uplevel_References, it is only set after the
4137 -- latter field has been acquired.
4139 -- Suppress_Elaboration_Warnings (Flag148)
4140 -- Defined in all entities, can be set only for subprogram entities and
4141 -- for variables. If this flag is set then Sem_Elab will not generate
4142 -- elaboration warnings for the subprogram or variable. Suppression of
4143 -- such warnings is automatic for subprograms for which elaboration
4144 -- checks are suppressed (without the need to set this flag), but the
4145 -- flag is also set for various internal entities (such as init procs)
4146 -- which are known not to generate any possible access before
4147 -- elaboration, and it is set on variables when a warning is given to
4148 -- avoid multiple elaboration warnings for the same variable.
4150 -- Suppress_Initialization (Flag105)
4151 -- Defined in all variable, type and subtype entities. If set for a base
4152 -- type, then the generation of initialization procedures is suppressed
4153 -- for the type. Any other implicit initialiation (e.g. from the use of
4154 -- pragma Initialize_Scalars) is also suppressed if this flag is set for
4155 -- either the subtype in question, or for the base type. For variables,
4156 -- this flag suppresses all implicit initialization for the object, even
4157 -- if the type would normally require initialization. Set by use of
4158 -- pragma Suppress_Initialization and also for internal entities where
4159 -- we know that no initialization is required. For example, enumeration
4160 -- image table entities set it.
4162 -- Suppress_Style_Checks (Flag165)
4163 -- Defined in all entities. Suppresses any style checks specifically
4164 -- associated with the given entity if set.
4166 -- Suppress_Value_Tracking_On_Call (Flag217)
4167 -- Defined in all entities. Set in a scope entity if value tracking is to
4168 -- be suppressed on any call within the scope. Used when an access to a
4169 -- local subprogram is computed, to deal with the possibility that this
4170 -- value may be passed around, and if used, may clobber a local variable.
4172 -- Task_Body_Procedure (Node25)
4173 -- Defined in task types and subtypes. Points to the entity for the task
4174 -- task body procedure (as further described in Exp_Ch9, task bodies are
4175 -- expanded into procedures). A convenient function to retrieve this
4176 -- field is Sem_Util.Get_Task_Body_Procedure.
4178 -- The last sentence is odd??? Why not have Task_Body_Procedure go to the
4179 -- Underlying_Type of the Root_Type???
4181 -- Thunk_Entity (Node31)
4182 -- Defined in functions and procedures which have been classified as
4183 -- Is_Thunk. Set to the target entity called by the thunk.
4185 -- Treat_As_Volatile (Flag41)
4186 -- Defined in all type entities, and also in constants, components and
4187 -- variables. Set if this entity is to be treated as volatile for code
4188 -- generation purposes. Always set if Is_Volatile is set, but can also
4189 -- be set as a result of situations (such as address overlays) where
4190 -- the front end wishes to force volatile handling to inhibit aliasing
4191 -- optimization which might be legally ok, but is undesirable. Note
4192 -- that the backend always tests this flag rather than Is_Volatile.
4193 -- The front end tests Is_Volatile if it is concerned with legality
4194 -- checks associated with declared volatile variables, but if the test
4195 -- is for the purposes of suppressing optimizations, then the front
4196 -- end should test Treat_As_Volatile rather than Is_Volatile.
4198 -- Note: before testing Treat_As_Volatile, consider whether it would
4199 -- be more appropriate to use Exp_Util.Is_Volatile_Reference instead,
4200 -- which catches more cases of volatile references.
4202 -- Type_High_Bound (synthesized)
4203 -- Applies to scalar types. Returns the tree node (Node_Id) that contains
4204 -- the high bound of a scalar type. The returned value is literal for a
4205 -- base type, but may be an expression in the case of scalar type with
4206 -- dynamic bounds. Note that in the case of a fixed point type, the high
4207 -- bound is in units of small, and is an integer.
4209 -- Type_Low_Bound (synthesized)
4210 -- Applies to scalar types. Returns the tree node (Node_Id) that contains
4211 -- the low bound of a scalar type. The returned value is literal for a
4212 -- base type, but may be an expression in the case of scalar type with
4213 -- dynamic bounds. Note that in the case of a fixed point type, the low
4214 -- bound is in units of small, and is an integer.
4216 -- Underlying_Full_View (Node19)
4217 -- Defined in private subtypes that are the completion of other private
4218 -- types, or in private types that are derived from private subtypes. If
4219 -- the full view of a private type T is derived from another private type
4220 -- with discriminants Td, the full view of T is also private, and there
4221 -- is no way to attach to it a further full view that would convey the
4222 -- structure of T to the backend. The Underlying_Full_View is an
4223 -- attribute of the full view that is a subtype of Td with the same
4224 -- constraint as the declaration for T. The declaration for this subtype
4225 -- is built at the point of the declaration of T, either as completion,
4226 -- or as a subtype declaration where the base type is private and has a
4227 -- private completion. If Td is already constrained, then its full view
4228 -- can serve directly as the full view of T.
4230 -- Underlying_Record_View (Node28)
4231 -- Defined in record types. Set for record types that are extensions of
4232 -- types with unknown discriminants, and also set for internally built
4233 -- underlying record views to reference its original record type. Record
4234 -- types that are extensions of types with unknown discriminants do not
4235 -- have a completion, but they cannot be used without having some
4236 -- discriminated view at hand. This view is a record type with the same
4237 -- structure, whose parent type is the full view of the parent in the
4238 -- original type extension.
4240 -- Underlying_Type (synthesized)
4241 -- Applies to all entities. This is the identity function except in the
4242 -- case where it is applied to an incomplete or private type, in which
4243 -- case it is the underlying type of the type declared by the completion,
4244 -- or Empty if the completion has not yet been encountered and analyzed.
4246 -- Note: the reason this attribute applies to all entities, and not just
4247 -- types, is to legitimize code where Underlying_Type is applied to an
4248 -- entity which may or may not be a type, with the intent that if it is a
4249 -- type, its underlying type is taken.
4251 -- Note also that the value of this attribute is interesting only after
4252 -- the full view of the parent type has been processed. If the parent
4253 -- type is declared in an enclosing package, the attribute will be non-
4254 -- trivial only after the full view of the type has been analyzed.
4256 -- Universal_Aliasing (Flag216) [implementation base type only]
4257 -- Defined in all type entities. Set to direct the back-end to avoid
4258 -- any optimizations based on type-based alias analysis for this type.
4259 -- Indicates that objects of this type can alias objects of any other
4260 -- types, which guarantees that any objects can be referenced through
4261 -- access types designating this type safely, whatever the actual type
4262 -- of these objects. In other words, the effect is as though access
4263 -- types designating this type were subject to No_Strict_Aliasing.
4265 -- Unset_Reference (Node16)
4266 -- Defined in variables and out parameters. This is normally Empty. It
4267 -- is set to point to an identifier that represents a reference to the
4268 -- entity before any value has been set. Only the first such reference
4269 -- is identified. This field is used to generate a warning message if
4270 -- necessary (see Sem_Warn.Check_Unset_Reference).
4272 -- Uplevel_Reference_Noted (Flag283)
4273 -- Defined in all entities, used in Exp_Unst processing to note that an
4274 -- uplevel reference to the entity has been noted (to avoid processing a
4275 -- given entity more than once).
4277 -- Uplevel_References (Elist24)
4278 -- Defined in subprogram entities. Set only if Has_Uplevel_Reference is
4279 -- set and if we are Unnest_Subprogram_Mode, otherwise undefined. Points
4280 -- to a list of explicit uplevel references to entities declared in
4281 -- the subprogram which need rewriting. Each entry uses two elements of
4282 -- the list, the first is the node that is the actual reference, the
4283 -- second is the entity of the enclosing subprogram for the reference.
4285 -- Used_As_Generic_Actual (Flag222)
4286 -- Defined in all entities, set if the entity is used as an argument to
4287 -- a generic instantiation. Used to tune certain warning messages.
4289 -- Uses_Lock_Free (Flag188)
4290 -- Defined in protected type entities. Set to True when the Lock Free
4291 -- implementation is used for the protected type. This implemenatation is
4292 -- based on atomic transactions and doesn't require anymore the use of
4293 -- Protection object (see System.Tasking.Protected_Objects).
4295 -- Uses_Sec_Stack (Flag95)
4296 -- Defined in scope entities (block, entry, function, loop, procedure,
4297 -- task). Set to True when secondary stack is used in this scope and must
4298 -- be released on exit unless Sec_Stack_Needed_For_Return is set.
4300 -- Warnings_Off (Flag96)
4301 -- Defined in all entities. Set if a pragma Warnings (Off, entity-name)
4302 -- is used to suppress warnings for a given entity. It is also used by
4303 -- the compiler in some situations to kill spurious warnings. Note that
4304 -- clients should generally not test this flag directly, but instead
4305 -- use function Has_Warnings_Off.
4307 -- Warnings_Off_Used (Flag236)
4308 -- Defined in all entities. Can only be set if Warnings_Off is set. If
4309 -- set indicates that a warning was suppressed by the Warnings_Off flag,
4310 -- and Unmodified/Unreferenced would not have suppressed the warning.
4312 -- Warnings_Off_Used_Unmodified (Flag237)
4313 -- Defined in all entities. Can only be set if Warnings_Off is set and
4314 -- Has_Pragma_Unmodified is not set. If set indicates that a warning was
4315 -- suppressed by the Warnings_Off status but that pragma Unmodified
4316 -- would also have suppressed the warning.
4318 -- Warnings_Off_Used_Unreferenced (Flag238)
4319 -- Defined in all entities. Can only be set if Warnings_Off is set and
4320 -- Has_Pragma_Unreferenced is not set. If set indicates that a warning
4321 -- was suppressed by the Warnings_Off status but that pragma Unreferenced
4322 -- would also have suppressed the warning.
4324 -- Was_Hidden (Flag196)
4325 -- Defined in all entities. Used to save the value of the Is_Hidden
4326 -- attribute when the limited-view is installed (Ada 2005: AI-217).
4328 -- Wrapped_Entity (Node27)
4329 -- Defined in functions and procedures which have been classified as
4330 -- Is_Primitive_Wrapper. Set to the entity being wrapper.
4332 ---------------------------
4333 -- Renaming and Aliasing --
4334 ---------------------------
4336 -- Several entity attributes relate to renaming constructs, and to the use of
4337 -- different names to refer to the same entity. The following is a summary of
4338 -- these constructs and their prefered uses.
4340 -- There are three related attributes:
4346 -- They all overlap because they are supposed to apply to different entity
4347 -- kinds. They are semantically related, and have the following intended uses:
4349 -- a) Renamed_Entity appplies to entities in renaming declarations that rename
4350 -- an entity, so the value of the attribute IS an entity. This applies to
4351 -- generic renamings, package renamings, exception renamings, and subprograms
4352 -- renamings that rename a subprogram (rather than an attribute, an entry, a
4353 -- protected operation, etc).
4355 -- b) Alias applies to overloadable entities, and the value is an overloadable
4356 -- entity. so this is a subset of the previous one. We use the term Alias to
4357 -- cover both renamings and inherited operations, because both cases are
4358 -- handled in the same way when expanding a call. namely the Alias of a given
4359 -- subprogram is the subprogram that will actually be called.
4361 -- Both a) and b) are set transitively, so that in fact it is not necessary to
4362 -- traverse chains of renamings when looking for the original entity: it's
4363 -- there in one step (this is done when analyzing renaming declarations other
4364 -- than object renamings in sem_ch8).
4366 -- c) Renamed_Object applies to constants and variables. Given that the name
4367 -- in an object renaming declaration is not necessarily an entity name, the
4368 -- value of the attribute is the tree for that name, eg AR (1).Comp. The case
4369 -- when that name is in fact an entity is not handled specially. This is why
4370 -- in a few cases we need to use a loop to trace a chain of object renamings
4371 -- where all of them happen to be entities. So:
4374 -- Y : integer renames X; -- renamed object is the identifier X
4375 -- Z : integer renames Y; -- renamed object is the identifier Y
4377 -- The front-end does not store explicitly the fact that Z renames X.
4379 --------------------------------------
4380 -- Delayed Freezing and Elaboration --
4381 --------------------------------------
4383 -- The flag Has_Delayed_Freeze indicates that an entity carries an explicit
4384 -- freeze node, which appears later in the expanded tree.
4386 -- a) The flag is used by the front-end to trigger expansion actions
4387 -- which include the generation of that freeze node. Typically this happens at
4388 -- the end of the current compilation unit, or before the first subprogram
4389 -- body is encountered in the current unit. See files freeze and exp_ch13 for
4390 -- details on the actions triggered by a freeze node, which include the
4391 -- construction of initialization procedures and dispatch tables.
4393 -- b) The flag is used by the backend to defer elaboration of the entity until
4394 -- its freeze node is seen. In the absence of an explicit freeze node, an
4395 -- entity is frozen (and elaborated) at the point of declaration.
4397 -- For object declarations, the flag is set when an address clause for the
4398 -- object is encountered. Legality checks on the address expression only
4399 -- take place at the freeze point of the object.
4401 -- Most types have an explicit freeze node, because they cannot be elaborated
4402 -- until all representation and operational items that apply to them have been
4403 -- analyzed. Private types and incomplete types have the flag set as well, as
4404 -- do task and protected types.
4406 -- Implicit base types created for type derivations, as well as classwide
4407 -- types created for all tagged types, have the flag set.
4409 -- If a subprogram has an access parameter whose designated type is incomplete
4410 -- the subprogram has the flag set.
4416 -- The following entity kinds are introduced by the corresponding type
4420 -- E_General_Access_Type,
4421 -- E_Access_Subprogram_Type,
4422 -- E_Anonymous_Access_Subprogram_Type,
4423 -- E_Access_Protected_Subprogram_Type,
4424 -- E_Anonymous_Access_Protected_Subprogram_Type
4425 -- E_Anonymous_Access_Type.
4427 -- E_Access_Subtype is for an access subtype created by a subtype
4430 -- In addition, we define the kind E_Allocator_Type to label allocators.
4431 -- This is because special resolution rules apply to this construct.
4432 -- Eventually the constructs are labeled with the access type imposed by
4433 -- the context. The backend should never see types with this Ekind.
4435 -- Similarly, the type E_Access_Attribute_Type is used as the initial kind
4436 -- associated with an access attribute. After resolution a specific access
4437 -- type will be established as determined by the context.
4439 -- Finally, the type Any_Access is used to label -null- during type
4440 -- resolution. Any_Access is also replaced by the context type after
4443 --------------------------------
4444 -- Classification of Entities --
4445 --------------------------------
4447 -- The classification of program entities which follows is a refinement of
4448 -- the list given in RM 3.1(1). E.g., separate entities denote subtypes of
4449 -- different type classes. Ada 95 entities include class wide types,
4450 -- protected types, subprogram types, generalized access types, generic
4451 -- formal derived types and generic formal packages.
4453 -- The order chosen for these kinds allows us to classify related entities
4454 -- so that they are contiguous. As a result, they do not appear in the
4455 -- exact same order as their order of first appearance in the LRM (For
4456 -- example, private types are listed before packages). The contiguity
4457 -- allows us to define useful subtypes (see below) such as type entities,
4458 -- overloaded entities, etc.
4460 -- Each entity (explicitly or implicitly declared) has a kind, which is
4461 -- a value of the following type:
4463 type Entity_Kind
is (
4466 -- The initial Ekind value for a newly created entity. Also used as the
4467 -- Ekind for Standard_Void_Type, a type entity in Standard used as a
4468 -- dummy type for the return type of a procedure (the reason we create
4469 -- this type is to share the circuits for performing overload resolution
4477 -- Components of a record declaration, private declarations of
4478 -- protected objects.
4481 -- Constants created by an object declaration with a constant keyword
4484 -- A discriminant, created by the use of a discriminant in a type
4488 -- A loop parameter created by a for loop
4491 -- Variables created by an object declaration with no constant keyword
4493 ------------------------
4494 -- Parameter Entities --
4495 ------------------------
4497 -- Parameters are also objects
4500 -- An out parameter of a subprogram or entry
4503 -- An in-out parameter of a subprogram or entry
4506 -- An in parameter of a subprogram or entry
4508 --------------------------------
4509 -- Generic Parameter Entities --
4510 --------------------------------
4512 -- Generic parameters are also objects
4514 E_Generic_In_Out_Parameter
,
4515 -- A generic in out parameter, created by the use of a generic in out
4516 -- parameter in a generic declaration.
4518 E_Generic_In_Parameter
,
4519 -- A generic in parameter, created by the use of a generic in
4520 -- parameter in a generic declaration.
4527 -- Named numbers created by a number declaration with an integer value
4530 -- Named numbers created by a number declaration with a real value
4532 -----------------------
4533 -- Enumeration Types --
4534 -----------------------
4537 -- Enumeration types, created by an enumeration type declaration
4539 E_Enumeration_Subtype
,
4540 -- Enumeration subtypes, created by an explicit or implicit subtype
4541 -- declaration applied to an enumeration type or subtype.
4547 E_Signed_Integer_Type
,
4548 -- Signed integer type, used for the anonymous base type of the
4549 -- integer subtype created by an integer type declaration.
4551 E_Signed_Integer_Subtype
,
4552 -- Signed integer subtype, created by either an integer subtype or
4553 -- integer type declaration (in the latter case an integer type is
4554 -- created for the base type, and this is the first named subtype).
4556 E_Modular_Integer_Type
,
4557 -- Modular integer type, used for the anonymous base type of the
4558 -- integer subtype created by a modular integer type declaration.
4560 E_Modular_Integer_Subtype
,
4561 -- Modular integer subtype, created by either an modular subtype
4562 -- or modular type declaration (in the latter case a modular type
4563 -- is created for the base type, and this is the first named subtype).
4565 E_Ordinary_Fixed_Point_Type
,
4566 -- Ordinary fixed type, used for the anonymous base type of the fixed
4567 -- subtype created by an ordinary fixed point type declaration.
4569 E_Ordinary_Fixed_Point_Subtype
,
4570 -- Ordinary fixed point subtype, created by either an ordinary fixed
4571 -- point subtype or ordinary fixed point type declaration (in the
4572 -- latter case a fixed point type is created for the base type, and
4573 -- this is the first named subtype).
4575 E_Decimal_Fixed_Point_Type
,
4576 -- Decimal fixed type, used for the anonymous base type of the decimal
4577 -- fixed subtype created by an ordinary fixed point type declaration.
4579 E_Decimal_Fixed_Point_Subtype
,
4580 -- Decimal fixed point subtype, created by either a decimal fixed point
4581 -- subtype or decimal fixed point type declaration (in the latter case
4582 -- a fixed point type is created for the base type, and this is the
4583 -- first named subtype).
4585 E_Floating_Point_Type
,
4586 -- Floating point type, used for the anonymous base type of the
4587 -- floating point subtype created by a floating point type declaration.
4589 E_Floating_Point_Subtype
,
4591 -- Floating point subtype, created by either a floating point subtype
4592 -- or floating point type declaration (in the latter case a floating
4593 -- point type is created for the base type, and this is the first
4601 -- An access type created by an access type declaration with no all
4602 -- keyword present. Note that the predefined type Any_Access, which
4603 -- has E_Access_Type Ekind, is used to label NULL in the upwards pass
4604 -- of type analysis, to be replaced by the true access type in the
4605 -- downwards resolution pass.
4608 -- An access subtype created by a subtype declaration for any access
4609 -- type (whether or not it is a general access type).
4611 E_Access_Attribute_Type
,
4612 -- An access type created for an access attribute (such as 'Access,
4613 -- 'Unrestricted_Access and Unchecked_Access)
4616 -- A special internal type used to label allocators and references to
4617 -- objects using 'Reference. This is needed because special resolution
4618 -- rules apply to these constructs. On the resolution pass, this type
4619 -- is almost always replaced by the actual access type, but if the
4620 -- context does not provide one, the backend will see Allocator_Type
4621 -- itself (which will already have been frozen).
4623 E_General_Access_Type
,
4624 -- An access type created by an access type declaration with the all
4627 E_Access_Subprogram_Type
,
4628 -- An access to subprogram type, created by an access to subprogram
4631 E_Anonymous_Access_Subprogram_Type
,
4632 -- An anonymous access to subprogram type, created by an access to
4633 -- subprogram declaration, or generated for a current instance of
4634 -- a type name appearing within a component definition that has an
4635 -- anonymous access to subprogram type.
4637 E_Access_Protected_Subprogram_Type
,
4638 -- An access to a protected subprogram, created by the corresponding
4639 -- declaration. Values of such a type denote both a protected object
4640 -- and a protected operation within, and have different compile-time
4641 -- and run-time properties than other access to subprograms.
4643 E_Anonymous_Access_Protected_Subprogram_Type
,
4644 -- An anonymous access to protected subprogram type, created by an
4645 -- access to subprogram declaration.
4647 E_Anonymous_Access_Type
,
4648 -- An anonymous access type created by an access parameter or access
4651 ---------------------
4652 -- Composite Types --
4653 ---------------------
4656 -- An array type created by an array type declaration. Includes all
4657 -- cases of arrays, except for string types.
4660 -- An array subtype, created by an explicit array subtype declaration,
4661 -- or the use of an anonymous array subtype.
4665 -- These are obsolete and not used any more, they are retained to ease
4666 -- transition in getting rid of these obsolete entries.
4668 E_String_Literal_Subtype
,
4669 -- A special string subtype, used only to describe the type of a string
4670 -- literal (will always be one dimensional, with literal bounds).
4673 -- A class wide type, created by any tagged type declaration (i.e. if
4674 -- a tagged type is declared, the corresponding class type is always
4675 -- created, using this Ekind value).
4677 E_Class_Wide_Subtype
,
4678 -- A subtype of a class wide type, created by a subtype declaration
4679 -- used to declare a subtype of a class type.
4682 -- A record type, created by a record type declaration
4685 -- A record subtype, created by a record subtype declaration
4687 E_Record_Type_With_Private
,
4688 -- Used for types defined by a private extension declaration,
4689 -- and for tagged private types. Includes the fields for both
4690 -- private types and for record types (with the sole exception of
4691 -- Corresponding_Concurrent_Type which is obviously not needed). This
4692 -- entity is considered to be both a record type and a private type.
4694 E_Record_Subtype_With_Private
,
4695 -- A subtype of a type defined by a private extension declaration
4698 -- A private type, created by a private type declaration that has
4699 -- neither the keyword limited nor the keyword tagged.
4702 -- A subtype of a private type, created by a subtype declaration used
4703 -- to declare a subtype of a private type.
4705 E_Limited_Private_Type
,
4706 -- A limited private type, created by a private type declaration that
4707 -- has the keyword limited, but not the keyword tagged.
4709 E_Limited_Private_Subtype
,
4710 -- A subtype of a limited private type, created by a subtype declaration
4711 -- used to declare a subtype of a limited private type.
4714 -- An incomplete type, created by an incomplete type declaration
4716 E_Incomplete_Subtype
,
4717 -- An incomplete subtype, created by a subtype declaration where the
4718 -- subtype mark denotes an incomplete type.
4721 -- A task type, created by a task type declaration. An entity with this
4722 -- Ekind is also created to describe the anonymous type of a task that
4723 -- is created by a single task declaration.
4726 -- A subtype of a task type, created by a subtype declaration used to
4727 -- declare a subtype of a task type.
4730 -- A protected type, created by a protected type declaration. An entity
4731 -- with this Ekind is also created to describe the anonymous type of
4732 -- a protected object created by a single protected declaration.
4734 E_Protected_Subtype
,
4735 -- A subtype of a protected type, created by a subtype declaration used
4736 -- to declare a subtype of a protected type.
4743 -- The type of an exception created by an exception declaration
4746 -- This is the designated type of an Access_To_Subprogram. Has type and
4747 -- signature like a subprogram entity, so can appear in calls, which
4748 -- are resolved like regular calls, except that such an entity is not
4751 ---------------------------
4752 -- Overloadable Entities --
4753 ---------------------------
4755 E_Enumeration_Literal
,
4756 -- An enumeration literal, created by the use of the literal in an
4757 -- enumeration type definition.
4760 -- A function, created by a function declaration or a function body
4761 -- that acts as its own declaration.
4764 -- A predefined operator, appearing in Standard, or an implicitly
4765 -- defined concatenation operator created whenever an array is declared.
4766 -- We do not make normal derived operators explicit in the tree, but the
4767 -- concatenation operators are made explicit.
4770 -- A procedure, created by a procedure declaration or a procedure
4771 -- body that acts as its own declaration.
4774 -- An entry, created by an entry declaration in a task or protected
4778 -- A state abstraction. Used to designate entities introduced by aspect
4779 -- or pragma Abstract_State. The entity carries the various properties
4782 --------------------
4783 -- Other Entities --
4784 --------------------
4787 -- An entry family, created by an entry family declaration in a
4788 -- task or protected type definition.
4791 -- A block identifier, created by an explicit or implicit label on
4792 -- a block or declare statement.
4794 E_Entry_Index_Parameter
,
4795 -- An entry index parameter created by an entry index specification
4796 -- for the body of a protected entry family.
4799 -- An exception created by an exception declaration. The exception
4800 -- itself uses E_Exception for the Ekind, the implicit type that is
4801 -- created to represent its type uses the Ekind E_Exception_Type.
4804 -- A generic function. This is the entity for a generic function
4805 -- created by a generic subprogram declaration.
4807 E_Generic_Procedure
,
4808 -- A generic function. This is the entity for a generic procedure
4809 -- created by a generic subprogram declaration.
4812 -- A generic package, this is the entity for a generic package created
4813 -- by a generic package declaration.
4816 -- The defining entity for a label. Note that this is created by the
4817 -- implicit label declaration, not the occurrence of the label itself,
4818 -- which is simply a direct name referring to the label.
4821 -- A loop identifier, created by an explicit or implicit label on a
4825 -- A dummy entity created for each return statement. Used to hold
4826 -- information about the return statement (what it applies to) and in
4827 -- rules checking. For example, a simple_return_statement that applies
4828 -- to an extended_return_statement cannot have an expression; this
4829 -- requires putting the E_Return_Statement entity for the
4830 -- extended_return_statement on the scope stack.
4833 -- A package, created by a package declaration
4836 -- A package body. This entity serves only limited functions, since
4837 -- most semantic analysis uses the package entity (E_Package). However
4838 -- there are some attributes that are significant for the body entity.
4839 -- For example, collection of exception handlers.
4842 -- A protected object, created by an object declaration that declares
4843 -- an object of a protected type.
4846 -- A protected body. This entity serves almost no function, since all
4847 -- semantic analysis uses the protected entity (E_Protected_Type)
4850 -- A task body. This entity serves almost no function, since all
4851 -- semantic analysis uses the protected entity (E_Task_Type).
4854 -- A subprogram body. Used when a subprogram has a separate declaration
4855 -- to represent the entity for the body. This entity serves almost no
4856 -- function, since all semantic analysis uses the subprogram entity
4857 -- for the declaration (E_Function or E_Procedure).
4860 for Entity_Kind
'Size use 8;
4861 -- The data structures in Atree assume this
4863 --------------------------
4864 -- Subtype Declarations --
4865 --------------------------
4867 -- The above entities are arranged so that they can be conveniently grouped
4868 -- into subtype ranges. Note that for each of the xxx_Kind ranges defined
4869 -- below, there is a corresponding Is_xxx (or for types, Is_xxx_Type)
4870 -- predicate which is to be used in preference to direct range tests using
4871 -- the subtype name. However, the subtype names are available for direct
4872 -- use, e.g. as choices in case statements.
4874 subtype Access_Kind
is Entity_Kind
range
4877 -- E_Access_Attribute_Type
4879 -- E_General_Access_Type
4880 -- E_Access_Subprogram_Type
4881 -- E_Anonymous_Access_Subprogram_Type
4882 -- E_Access_Protected_Subprogram_Type
4883 -- E_Anonymous_Access_Protected_Subprogram_Type
4884 E_Anonymous_Access_Type
;
4886 subtype Access_Subprogram_Kind
is Entity_Kind
range
4887 E_Access_Subprogram_Type
..
4888 -- E_Anonymous_Access_Subprogram_Type
4889 -- E_Access_Protected_Subprogram_Type
4890 E_Anonymous_Access_Protected_Subprogram_Type
;
4892 subtype Access_Protected_Kind
is Entity_Kind
range
4893 E_Access_Protected_Subprogram_Type
..
4894 E_Anonymous_Access_Protected_Subprogram_Type
;
4896 subtype Aggregate_Kind
is Entity_Kind
range
4899 -- E_String_Literal_Subtype
4900 -- E_Class_Wide_Type
4901 -- E_Class_Wide_Subtype
4905 subtype Array_Kind
is Entity_Kind
range
4908 E_String_Literal_Subtype
;
4910 subtype Assignable_Kind
is Entity_Kind
range
4915 subtype Class_Wide_Kind
is Entity_Kind
range
4916 E_Class_Wide_Type
..
4917 E_Class_Wide_Subtype
;
4919 subtype Composite_Kind
is Entity_Kind
range
4922 -- E_String_Literal_Subtype
4923 -- E_Class_Wide_Type
4924 -- E_Class_Wide_Subtype
4927 -- E_Record_Type_With_Private
4928 -- E_Record_Subtype_With_Private
4930 -- E_Private_Subtype
4931 -- E_Limited_Private_Type
4932 -- E_Limited_Private_Subtype
4933 -- E_Incomplete_Type
4934 -- E_Incomplete_Subtype
4937 -- E_Protected_Type,
4938 E_Protected_Subtype
;
4940 subtype Concurrent_Kind
is Entity_Kind
range
4943 -- E_Protected_Type,
4944 E_Protected_Subtype
;
4946 subtype Concurrent_Body_Kind
is Entity_Kind
range
4950 subtype Decimal_Fixed_Point_Kind
is Entity_Kind
range
4951 E_Decimal_Fixed_Point_Type
..
4952 E_Decimal_Fixed_Point_Subtype
;
4954 subtype Digits_Kind
is Entity_Kind
range
4955 E_Decimal_Fixed_Point_Type
..
4956 -- E_Decimal_Fixed_Point_Subtype
4957 -- E_Floating_Point_Type
4958 E_Floating_Point_Subtype
;
4960 subtype Discrete_Kind
is Entity_Kind
range
4961 E_Enumeration_Type
..
4962 -- E_Enumeration_Subtype
4963 -- E_Signed_Integer_Type
4964 -- E_Signed_Integer_Subtype
4965 -- E_Modular_Integer_Type
4966 E_Modular_Integer_Subtype
;
4968 subtype Discrete_Or_Fixed_Point_Kind
is Entity_Kind
range
4969 E_Enumeration_Type
..
4970 -- E_Enumeration_Subtype
4971 -- E_Signed_Integer_Type
4972 -- E_Signed_Integer_Subtype
4973 -- E_Modular_Integer_Type
4974 -- E_Modular_Integer_Subtype
4975 -- E_Ordinary_Fixed_Point_Type
4976 -- E_Ordinary_Fixed_Point_Subtype
4977 -- E_Decimal_Fixed_Point_Type
4978 E_Decimal_Fixed_Point_Subtype
;
4980 subtype Elementary_Kind
is Entity_Kind
range
4981 E_Enumeration_Type
..
4982 -- E_Enumeration_Subtype
4983 -- E_Signed_Integer_Type
4984 -- E_Signed_Integer_Subtype
4985 -- E_Modular_Integer_Type
4986 -- E_Modular_Integer_Subtype
4987 -- E_Ordinary_Fixed_Point_Type
4988 -- E_Ordinary_Fixed_Point_Subtype
4989 -- E_Decimal_Fixed_Point_Type
4990 -- E_Decimal_Fixed_Point_Subtype
4991 -- E_Floating_Point_Type
4992 -- E_Floating_Point_Subtype
4995 -- E_Access_Attribute_Type
4997 -- E_General_Access_Type
4998 -- E_Access_Subprogram_Type
4999 -- E_Access_Protected_Subprogram_Type
5000 -- E_Anonymous_Access_Subprogram_Type
5001 -- E_Anonymous_Access_Protected_Subprogram_Type
5002 E_Anonymous_Access_Type
;
5004 subtype Enumeration_Kind
is Entity_Kind
range
5005 E_Enumeration_Type
..
5006 E_Enumeration_Subtype
;
5008 subtype Entry_Kind
is Entity_Kind
range
5012 subtype Fixed_Point_Kind
is Entity_Kind
range
5013 E_Ordinary_Fixed_Point_Type
..
5014 -- E_Ordinary_Fixed_Point_Subtype
5015 -- E_Decimal_Fixed_Point_Type
5016 E_Decimal_Fixed_Point_Subtype
;
5018 subtype Float_Kind
is Entity_Kind
range
5019 E_Floating_Point_Type
..
5020 E_Floating_Point_Subtype
;
5022 subtype Formal_Kind
is Entity_Kind
range
5024 -- E_In_Out_Parameter
5027 subtype Formal_Object_Kind
is Entity_Kind
range
5028 E_Generic_In_Out_Parameter
..
5029 E_Generic_In_Parameter
;
5031 subtype Generic_Subprogram_Kind
is Entity_Kind
range
5032 E_Generic_Function
..
5033 E_Generic_Procedure
;
5035 subtype Generic_Unit_Kind
is Entity_Kind
range
5036 E_Generic_Function
..
5037 -- E_Generic_Procedure
5040 subtype Incomplete_Kind
is Entity_Kind
range
5041 E_Incomplete_Type
..
5042 E_Incomplete_Subtype
;
5044 subtype Incomplete_Or_Private_Kind
is Entity_Kind
range
5045 E_Record_Type_With_Private
..
5046 -- E_Record_Subtype_With_Private
5048 -- E_Private_Subtype
5049 -- E_Limited_Private_Type
5050 -- E_Limited_Private_Subtype
5051 -- E_Incomplete_Type
5052 E_Incomplete_Subtype
;
5054 subtype Integer_Kind
is Entity_Kind
range
5055 E_Signed_Integer_Type
..
5056 -- E_Signed_Integer_Subtype
5057 -- E_Modular_Integer_Type
5058 E_Modular_Integer_Subtype
;
5060 subtype Modular_Integer_Kind
is Entity_Kind
range
5061 E_Modular_Integer_Type
..
5062 E_Modular_Integer_Subtype
;
5064 subtype Named_Kind
is Entity_Kind
range
5068 subtype Numeric_Kind
is Entity_Kind
range
5069 E_Signed_Integer_Type
..
5070 -- E_Signed_Integer_Subtype
5071 -- E_Modular_Integer_Type
5072 -- E_Modular_Integer_Subtype
5073 -- E_Ordinary_Fixed_Point_Type
5074 -- E_Ordinary_Fixed_Point_Subtype
5075 -- E_Decimal_Fixed_Point_Type
5076 -- E_Decimal_Fixed_Point_Subtype
5077 -- E_Floating_Point_Type
5078 E_Floating_Point_Subtype
;
5080 subtype Object_Kind
is Entity_Kind
range
5087 -- E_In_Out_Parameter
5089 -- E_Generic_In_Out_Parameter
5090 E_Generic_In_Parameter
;
5092 subtype Ordinary_Fixed_Point_Kind
is Entity_Kind
range
5093 E_Ordinary_Fixed_Point_Type
..
5094 E_Ordinary_Fixed_Point_Subtype
;
5096 subtype Overloadable_Kind
is Entity_Kind
range
5097 E_Enumeration_Literal
..
5104 subtype Private_Kind
is Entity_Kind
range
5105 E_Record_Type_With_Private
..
5106 -- E_Record_Subtype_With_Private
5108 -- E_Private_Subtype
5109 -- E_Limited_Private_Type
5110 E_Limited_Private_Subtype
;
5112 subtype Protected_Kind
is Entity_Kind
range
5114 E_Protected_Subtype
;
5116 subtype Real_Kind
is Entity_Kind
range
5117 E_Ordinary_Fixed_Point_Type
..
5118 -- E_Ordinary_Fixed_Point_Subtype
5119 -- E_Decimal_Fixed_Point_Type
5120 -- E_Decimal_Fixed_Point_Subtype
5121 -- E_Floating_Point_Type
5122 E_Floating_Point_Subtype
;
5124 subtype Record_Kind
is Entity_Kind
range
5125 E_Class_Wide_Type
..
5126 -- E_Class_Wide_Subtype
5129 -- E_Record_Type_With_Private
5130 E_Record_Subtype_With_Private
;
5132 subtype Scalar_Kind
is Entity_Kind
range
5133 E_Enumeration_Type
..
5134 -- E_Enumeration_Subtype
5135 -- E_Signed_Integer_Type
5136 -- E_Signed_Integer_Subtype
5137 -- E_Modular_Integer_Type
5138 -- E_Modular_Integer_Subtype
5139 -- E_Ordinary_Fixed_Point_Type
5140 -- E_Ordinary_Fixed_Point_Subtype
5141 -- E_Decimal_Fixed_Point_Type
5142 -- E_Decimal_Fixed_Point_Subtype
5143 -- E_Floating_Point_Type
5144 E_Floating_Point_Subtype
;
5146 subtype Subprogram_Kind
is Entity_Kind
range
5151 subtype Signed_Integer_Kind
is Entity_Kind
range
5152 E_Signed_Integer_Type
..
5153 E_Signed_Integer_Subtype
;
5155 subtype Task_Kind
is Entity_Kind
range
5159 subtype Type_Kind
is Entity_Kind
range
5160 E_Enumeration_Type
..
5161 -- E_Enumeration_Subtype
5162 -- E_Signed_Integer_Type
5163 -- E_Signed_Integer_Subtype
5164 -- E_Modular_Integer_Type
5165 -- E_Modular_Integer_Subtype
5166 -- E_Ordinary_Fixed_Point_Type
5167 -- E_Ordinary_Fixed_Point_Subtype
5168 -- E_Decimal_Fixed_Point_Type
5169 -- E_Decimal_Fixed_Point_Subtype
5170 -- E_Floating_Point_Type
5171 -- E_Floating_Point_Subtype
5174 -- E_Access_Attribute_Type
5175 -- E_Allocator_Type,
5176 -- E_General_Access_Type
5177 -- E_Access_Subprogram_Type,
5178 -- E_Access_Protected_Subprogram_Type
5179 -- E_Anonymous_Access_Subprogram_Type
5180 -- E_Anonymous_Access_Protected_Subprogram_Type
5181 -- E_Anonymous_Access_Type
5184 -- E_String_Literal_Subtype
5185 -- E_Class_Wide_Subtype
5186 -- E_Class_Wide_Type
5189 -- E_Record_Type_With_Private
5190 -- E_Record_Subtype_With_Private
5192 -- E_Private_Subtype
5193 -- E_Limited_Private_Type
5194 -- E_Limited_Private_Subtype
5195 -- E_Incomplete_Type
5196 -- E_Incomplete_Subtype
5200 -- E_Protected_Subtype
5204 --------------------------------------------------------
5205 -- Description of Defined Attributes for Entity_Kinds --
5206 --------------------------------------------------------
5208 -- For each enumeration value defined in Entity_Kind we list all the
5209 -- attributes defined in Einfo which can legally be applied to an entity
5210 -- of that kind. The implementation of the attribute functions (and for
5211 -- non-synthesized attributes, of the corresponding set procedures) are
5212 -- in the Einfo body.
5214 -- The following attributes are defined in all entities
5219 -- Next_Entity (Node2)
5223 -- First_Rep_Item (Node6)
5224 -- Freeze_Node (Node7)
5226 -- Address_Taken (Flag104)
5227 -- Can_Never_Be_Null (Flag38)
5228 -- Checks_May_Be_Suppressed (Flag31)
5229 -- Debug_Info_Off (Flag166)
5230 -- Has_Convention_Pragma (Flag119)
5231 -- Has_Delayed_Aspects (Flag200)
5232 -- Has_Delayed_Freeze (Flag18)
5233 -- Has_Fully_Qualified_Name (Flag173)
5234 -- Has_Gigi_Rep_Item (Flag82)
5235 -- Has_Homonym (Flag56)
5236 -- Has_Pragma_Elaborate_Body (Flag150)
5237 -- Has_Pragma_Inline (Flag157)
5238 -- Has_Pragma_Inline_Always (Flag230)
5239 -- Has_Pragma_No_Inline (Flag201)
5240 -- Has_Pragma_Pure (Flag203)
5241 -- Has_Pragma_Pure_Function (Flag179)
5242 -- Has_Pragma_Thread_Local_Storage (Flag169)
5243 -- Has_Pragma_Unmodified (Flag233)
5244 -- Has_Pragma_Unreferenced (Flag180)
5245 -- Has_Private_Declaration (Flag155)
5246 -- Has_Qualified_Name (Flag161)
5247 -- Has_Stream_Size_Clause (Flag184)
5248 -- Has_Unknown_Discriminants (Flag72)
5249 -- Has_Xref_Entry (Flag182)
5250 -- In_Private_Part (Flag45)
5251 -- Is_Ada_2005_Only (Flag185)
5252 -- Is_Ada_2012_Only (Flag199)
5253 -- Is_Bit_Packed_Array (Flag122) (base type only)
5254 -- Is_Aliased (Flag15)
5255 -- Is_Character_Type (Flag63)
5256 -- Is_Checked_Ghost_Entity (Flag277)
5257 -- Is_Child_Unit (Flag73)
5258 -- Is_Compilation_Unit (Flag149)
5259 -- Is_Completely_Hidden (Flag103)
5260 -- Is_Descendent_Of_Address (Flag223)
5261 -- Is_Discrim_SO_Function (Flag176)
5262 -- Is_Discriminant_Check_Function (Flag264)
5263 -- Is_Dispatch_Table_Entity (Flag234)
5264 -- Is_Dispatching_Operation (Flag6)
5265 -- Is_Entry_Formal (Flag52)
5266 -- Is_Exported (Flag99)
5267 -- Is_First_Subtype (Flag70)
5268 -- Is_Formal_Subprogram (Flag111)
5269 -- Is_Generic_Instance (Flag130)
5270 -- Is_Generic_Type (Flag13)
5271 -- Is_Hidden (Flag57)
5272 -- Is_Hidden_Open_Scope (Flag171)
5273 -- Is_Ignored_Ghost_Entity (Flag278)
5274 -- Is_Immediately_Visible (Flag7)
5275 -- Is_Implementation_Defined (Flag254)
5276 -- Is_Imported (Flag24)
5277 -- Is_Inlined (Flag11)
5278 -- Is_Internal (Flag17)
5279 -- Is_Itype (Flag91)
5280 -- Is_Known_Non_Null (Flag37)
5281 -- Is_Known_Null (Flag204)
5282 -- Is_Known_Valid (Flag170)
5283 -- Is_Limited_Composite (Flag106)
5284 -- Is_Limited_Record (Flag25)
5285 -- Is_Obsolescent (Flag153)
5286 -- Is_Package_Body_Entity (Flag160)
5287 -- Is_Packed_Array_Impl_Type (Flag138)
5288 -- Is_Potentially_Use_Visible (Flag9)
5289 -- Is_Preelaborated (Flag59)
5290 -- Is_Primitive_Wrapper (Flag195)
5291 -- Is_Public (Flag10)
5293 -- Is_Remote_Call_Interface (Flag62)
5294 -- Is_Remote_Types (Flag61)
5295 -- Is_Renaming_Of_Object (Flag112)
5296 -- Is_Shared_Passive (Flag60)
5297 -- Is_Statically_Allocated (Flag28)
5298 -- Is_Tagged_Type (Flag55)
5299 -- Is_Thunk (Flag225)
5300 -- Is_Trivial_Subprogram (Flag235)
5301 -- Is_Unchecked_Union (Flag117)
5302 -- Is_Visible_Formal (Flag206)
5303 -- Kill_Elaboration_Checks (Flag32)
5304 -- Kill_Range_Checks (Flag33)
5305 -- Low_Bound_Tested (Flag205)
5306 -- Materialize_Entity (Flag168)
5307 -- Needs_Debug_Info (Flag147)
5308 -- Never_Set_In_Source (Flag115)
5309 -- No_Return (Flag113)
5310 -- Overlays_Constant (Flag243)
5311 -- Referenced (Flag156)
5312 -- Referenced_As_LHS (Flag36)
5313 -- Referenced_As_Out_Parameter (Flag227)
5314 -- Suppress_Elaboration_Warnings (Flag148)
5315 -- Suppress_Style_Checks (Flag165)
5316 -- Suppress_Value_Tracking_On_Call (Flag217)
5317 -- Uplevel_Reference_Noted (Flag283)
5318 -- Used_As_Generic_Actual (Flag222)
5319 -- Warnings_Off (Flag96)
5320 -- Warnings_Off_Used (Flag236)
5321 -- Warnings_Off_Used_Unmodified (Flag237)
5322 -- Warnings_Off_Used_Unreferenced (Flag238)
5323 -- Was_Hidden (Flag196)
5325 -- Declaration_Node (synth)
5326 -- Has_Foreign_Convention (synth)
5327 -- Is_Dynamic_Scope (synth)
5328 -- Is_Standard_Character_Type (synth)
5329 -- Is_Standard_String_Type (synth)
5330 -- Underlying_Type (synth)
5331 -- all classification attributes (synth)
5333 -- The following list of access functions applies to all entities for
5334 -- types and subtypes. References to this list appear subsequently as
5335 -- as "(plus type attributes)" for each appropriate Entity_Kind.
5337 -- Associated_Node_For_Itype (Node8)
5338 -- Class_Wide_Type (Node9)
5339 -- Full_View (Node11)
5342 -- Alignment (Uint14)
5343 -- Pending_Access_Types (Elist15)
5344 -- Related_Expression (Node24)
5345 -- Current_Use_Clause (Node27)
5346 -- Subprograms_For_Type (Node29)
5347 -- Derived_Type_Link (Node31)
5348 -- No_Tagged_Streams_Pragma (Node32)
5349 -- Linker_Section_Pragma (Node33)
5351 -- Depends_On_Private (Flag14)
5352 -- Discard_Names (Flag88)
5353 -- Finalize_Storage_Only (Flag158) (base type only)
5354 -- From_Limited_With (Flag159)
5355 -- Has_Aliased_Components (Flag135) (base type only)
5356 -- Has_Alignment_Clause (Flag46)
5357 -- Has_Atomic_Components (Flag86) (base type only)
5358 -- Has_Completion_In_Body (Flag71)
5359 -- Has_Complex_Representation (Flag140) (base type only)
5360 -- Has_Constrained_Partial_View (Flag187)
5361 -- Has_Controlled_Component (Flag43) (base type only)
5362 -- Has_Default_Aspect (Flag39) (base type only)
5363 -- Has_Default_Init_Cond (Flag3)
5364 -- Has_Delayed_Rep_Aspects (Flag261)
5365 -- Has_Discriminants (Flag5)
5366 -- Has_Dynamic_Predicate_Aspect (Flag258)
5367 -- Has_Independent_Components (Flag34) (base type only)
5368 -- Has_Inheritable_Invariants (Flag248)
5369 -- Has_Inherited_Default_Init_Cond (Flag133)
5370 -- Has_Invariants (Flag232)
5371 -- Has_Non_Standard_Rep (Flag75) (base type only)
5372 -- Has_Object_Size_Clause (Flag172)
5373 -- Has_Pragma_Preelab_Init (Flag221)
5374 -- Has_Pragma_Unreferenced_Objects (Flag212)
5375 -- Has_Predicates (Flag250)
5376 -- Has_Primitive_Operations (Flag120) (base type only)
5377 -- Has_Protected (Flag271) (base type only)
5378 -- Has_Size_Clause (Flag29)
5379 -- Has_Specified_Layout (Flag100) (base type only)
5380 -- Has_Specified_Stream_Input (Flag190)
5381 -- Has_Specified_Stream_Output (Flag191)
5382 -- Has_Specified_Stream_Read (Flag192)
5383 -- Has_Specified_Stream_Write (Flag193)
5384 -- Has_Static_Predicate (Flag269)
5385 -- Has_Static_Predicate_Aspect (Flag259)
5386 -- Has_Task (Flag30) (base type only)
5387 -- Has_Unchecked_Union (Flag123) (base type only)
5388 -- Has_Uplevel_Reference (Flag215)
5389 -- Has_Volatile_Components (Flag87) (base type only)
5391 -- Is_Abstract_Type (Flag146)
5392 -- Is_Asynchronous (Flag81)
5393 -- Is_Atomic (Flag85)
5394 -- Is_Constr_Subt_For_U_Nominal (Flag80)
5395 -- Is_Constr_Subt_For_UN_Aliased (Flag141)
5396 -- Is_Controlled (Flag42) (base type only)
5397 -- Is_Eliminated (Flag124)
5398 -- Is_Frozen (Flag4)
5399 -- Is_Generic_Actual_Type (Flag94)
5400 -- Is_Independent (Flag268)
5401 -- Is_RACW_Stub_Type (Flag244)
5402 -- Is_Non_Static_Subtype (Flag109)
5403 -- Is_Packed (Flag51) (base type only)
5404 -- Is_Private_Composite (Flag107)
5405 -- Is_Static_Type (Flag281)
5406 -- Is_Unsigned_Type (Flag144)
5407 -- Is_Volatile (Flag16)
5408 -- Itype_Printed (Flag202) (itypes only)
5409 -- Known_To_Have_Preelab_Init (Flag207)
5410 -- May_Inherit_Delayed_Rep_Aspects (Flag262)
5411 -- Must_Be_On_Byte_Boundary (Flag183)
5412 -- Must_Have_Preelab_Init (Flag208)
5413 -- Optimize_Alignment_Space (Flag241)
5414 -- Optimize_Alignment_Time (Flag242)
5415 -- Partial_View_Has_Unknown_Discr (Flag280)
5416 -- Size_Depends_On_Discriminant (Flag177)
5417 -- Size_Known_At_Compile_Time (Flag92)
5418 -- Strict_Alignment (Flag145) (base type only)
5419 -- Suppress_Initialization (Flag105)
5420 -- Treat_As_Volatile (Flag41)
5421 -- Universal_Aliasing (Flag216) (impl base type only)
5423 -- Alignment_Clause (synth)
5424 -- Base_Type (synth)
5425 -- Default_Init_Cond_Procedure (synth)
5426 -- Implementation_Base_Type (synth)
5427 -- Invariant_Procedure (synth)
5428 -- Is_Access_Protected_Subprogram_Type (synth)
5429 -- Predicate_Function (synth)
5430 -- Predicate_Function_M (synth)
5431 -- Root_Type (synth)
5432 -- Size_Clause (synth)
5434 ------------------------------------------
5435 -- Applicable attributes by entity kind --
5436 ------------------------------------------
5439 -- Refinement_Constituents (Elist8)
5440 -- Part_Of_Constituents (Elist9)
5441 -- Encapsulating_State (Node10)
5442 -- Body_References (Elist16)
5443 -- Non_Limited_View (Node17)
5444 -- From_Limited_With (Flag159)
5445 -- Has_Visible_Refinement (Flag263)
5446 -- Has_Non_Null_Refinement (synth)
5447 -- Has_Null_Refinement (synth)
5448 -- Is_External_State (synth)
5449 -- Is_Null_State (synth)
5451 -- E_Access_Protected_Subprogram_Type
5452 -- Equivalent_Type (Node18)
5453 -- Directly_Designated_Type (Node20)
5454 -- Needs_No_Actuals (Flag22)
5455 -- Can_Use_Internal_Rep (Flag229)
5456 -- (plus type attributes)
5458 -- E_Access_Subprogram_Type
5459 -- Equivalent_Type (Node18) (remote types only)
5460 -- Directly_Designated_Type (Node20)
5461 -- Interface_Name (Node21) (JGNAT usage only)
5462 -- Needs_No_Actuals (Flag22)
5463 -- Original_Access_Type (Node28)
5464 -- Can_Use_Internal_Rep (Flag229)
5465 -- (plus type attributes)
5469 -- Master_Id (Node17)
5470 -- Directly_Designated_Type (Node20)
5471 -- Associated_Storage_Pool (Node22) (base type only)
5472 -- Finalization_Master (Node23) (base type only)
5473 -- Storage_Size_Variable (Node26) (base type only)
5474 -- Has_Pragma_Controlled (Flag27) (base type only)
5475 -- Has_Storage_Size_Clause (Flag23) (base type only)
5476 -- Is_Access_Constant (Flag69)
5477 -- Is_Local_Anonymous_Access (Flag194)
5478 -- Is_Pure_Unit_Access_Type (Flag189)
5479 -- No_Pool_Assigned (Flag131) (base type only)
5480 -- No_Strict_Aliasing (Flag136) (base type only)
5481 -- (plus type attributes)
5483 -- E_Access_Attribute_Type
5484 -- Directly_Designated_Type (Node20)
5485 -- (plus type attributes)
5488 -- Directly_Designated_Type (Node20)
5489 -- (plus type attributes)
5491 -- E_Anonymous_Access_Subprogram_Type
5492 -- E_Anonymous_Access_Protected_Subprogram_Type
5493 -- Directly_Designated_Type (Node20)
5494 -- Storage_Size_Variable (Node26) ??? is this needed ???
5495 -- Can_Use_Internal_Rep (Flag229)
5496 -- (plus type attributes)
5498 -- E_Anonymous_Access_Type
5499 -- Directly_Designated_Type (Node20)
5500 -- Finalization_Master (Node23)
5501 -- Storage_Size_Variable (Node26) ??? is this needed ???
5502 -- (plus type attributes)
5506 -- First_Index (Node17)
5507 -- Default_Aspect_Component_Value (Node19) (base type only)
5508 -- Component_Type (Node20) (base type only)
5509 -- Original_Array_Type (Node21)
5510 -- Component_Size (Uint22) (base type only)
5511 -- Packed_Array_Impl_Type (Node23)
5512 -- Related_Array_Object (Node25)
5513 -- Component_Alignment (special) (base type only)
5514 -- Has_Component_Size_Clause (Flag68) (base type only)
5515 -- Has_Pragma_Pack (Flag121) (impl base type only)
5516 -- Is_Constrained (Flag12)
5517 -- Reverse_Storage_Order (Flag93) (base type only)
5518 -- SSO_Set_High_By_Default (Flag273) (base type only)
5519 -- SSO_Set_Low_By_Default (Flag272) (base type only)
5520 -- Next_Index (synth)
5521 -- Number_Dimensions (synth)
5522 -- (plus type attributes)
5525 -- Block_Node (Node11)
5526 -- First_Entity (Node17)
5527 -- Last_Entity (Node20)
5528 -- Scope_Depth_Value (Uint22)
5529 -- Entry_Cancel_Parameter (Node23)
5530 -- Contains_Ignored_Ghost_Code (Flag279)
5531 -- Delay_Cleanups (Flag114)
5532 -- Discard_Names (Flag88)
5533 -- Has_Master_Entity (Flag21)
5534 -- Has_Nested_Block_With_Handler (Flag101)
5535 -- Sec_Stack_Needed_For_Return (Flag167)
5536 -- Uses_Sec_Stack (Flag95)
5537 -- Scope_Depth (synth)
5539 -- E_Class_Wide_Type
5540 -- E_Class_Wide_Subtype
5541 -- Direct_Primitive_Operations (Elist10)
5542 -- Cloned_Subtype (Node16) (subtype case only)
5543 -- First_Entity (Node17)
5544 -- Equivalent_Type (Node18) (always Empty for type)
5545 -- Last_Entity (Node20)
5546 -- SSO_Set_High_By_Default (Flag273) (base type only)
5547 -- SSO_Set_Low_By_Default (Flag272) (base type only)
5548 -- First_Component (synth)
5549 -- First_Component_Or_Discriminant (synth)
5550 -- (plus type attributes)
5553 -- Normalized_First_Bit (Uint8)
5554 -- Current_Value (Node9) (always Empty)
5555 -- Normalized_Position_Max (Uint10)
5556 -- Component_Bit_Offset (Uint11)
5558 -- Component_Clause (Node13)
5559 -- Normalized_Position (Uint14)
5560 -- DT_Entry_Count (Uint15)
5561 -- Entry_Formal (Node16)
5563 -- Renamed_Object (Node18) (always Empty)
5564 -- Discriminant_Checking_Func (Node20)
5565 -- Interface_Name (Node21) (JGNAT usage only)
5566 -- Original_Record_Component (Node22)
5567 -- DT_Offset_To_Top_Func (Node25)
5568 -- Related_Type (Node27)
5569 -- Has_Biased_Representation (Flag139)
5570 -- Has_Per_Object_Constraint (Flag154)
5571 -- Is_Atomic (Flag85)
5572 -- Is_Independent (Flag268)
5574 -- Is_Volatile (Flag16)
5575 -- Treat_As_Volatile (Flag41)
5576 -- Is_Return_Object (Flag209)
5577 -- Next_Component (synth)
5578 -- Next_Component_Or_Discriminant (synth)
5582 -- Current_Value (Node9) (always Empty)
5583 -- Discriminal_Link (Node10)
5584 -- Full_View (Node11)
5586 -- Extra_Accessibility (Node13) (constants only)
5587 -- Alignment (Uint14)
5588 -- Status_Flag_Or_Transient_Decl (Node15) (constants only)
5589 -- Actual_Subtype (Node17)
5590 -- Renamed_Object (Node18)
5591 -- Size_Check_Code (Node19) (constants only)
5592 -- Prival_Link (Node20) (privals only)
5593 -- Interface_Name (Node21) (constants only)
5594 -- Related_Type (Node27) (constants only)
5595 -- Initialization_Statements (Node28)
5596 -- BIP_Initialization_Call (Node29)
5597 -- Last_Aggregate_Assignment (Node30)
5598 -- Activation_Record_Component (Node31)
5599 -- Linker_Section_Pragma (Node33)
5600 -- Has_Alignment_Clause (Flag46)
5601 -- Has_Atomic_Components (Flag86)
5602 -- Has_Biased_Representation (Flag139)
5603 -- Has_Completion (Flag26) (constants only)
5604 -- Has_Independent_Components (Flag34)
5605 -- Has_Size_Clause (Flag29)
5606 -- Has_Thunks (Flag228) (constants only)
5607 -- Has_Uplevel_Reference (Flag215)
5608 -- Has_Volatile_Components (Flag87)
5609 -- Is_Atomic (Flag85)
5610 -- Is_Eliminated (Flag124)
5611 -- Is_Independent (Flag268)
5612 -- Is_Processed_Transient (Flag252) (constants only)
5613 -- Is_Return_Object (Flag209)
5614 -- Is_True_Constant (Flag163)
5615 -- Is_Volatile (Flag16)
5616 -- Stores_Attribute_Old_Prefix (Flag270) (constants only)
5617 -- Optimize_Alignment_Space (Flag241) (constants only)
5618 -- Optimize_Alignment_Time (Flag242) (constants only)
5619 -- Treat_As_Volatile (Flag41)
5620 -- Address_Clause (synth)
5621 -- Alignment_Clause (synth)
5622 -- Size_Clause (synth)
5624 -- E_Decimal_Fixed_Point_Type
5625 -- E_Decimal_Fixed_Subtype
5626 -- Scale_Value (Uint16)
5627 -- Digits_Value (Uint17)
5628 -- Scalar_Range (Node20)
5629 -- Delta_Value (Ureal18)
5630 -- Small_Value (Ureal21)
5631 -- Static_Real_Or_String_Predicate (Node25)
5632 -- Has_Machine_Radix_Clause (Flag83)
5633 -- Machine_Radix_10 (Flag84)
5634 -- Aft_Value (synth)
5635 -- Type_Low_Bound (synth)
5636 -- Type_High_Bound (synth)
5637 -- (plus type attributes)
5640 -- Normalized_First_Bit (Uint8)
5641 -- Current_Value (Node9) (always Empty)
5642 -- Normalized_Position_Max (Uint10)
5643 -- Component_Bit_Offset (Uint11)
5645 -- Component_Clause (Node13)
5646 -- Normalized_Position (Uint14)
5647 -- Discriminant_Number (Uint15)
5648 -- Discriminal (Node17)
5649 -- Renamed_Object (Node18) (always Empty)
5650 -- Corresponding_Discriminant (Node19)
5651 -- Discriminant_Default_Value (Node20)
5652 -- Interface_Name (Node21) (JGNAT usage only)
5653 -- Original_Record_Component (Node22)
5654 -- CR_Discriminant (Node23)
5655 -- Is_Return_Object (Flag209)
5656 -- Next_Component_Or_Discriminant (synth)
5657 -- Next_Discriminant (synth)
5658 -- Next_Stored_Discriminant (synth)
5662 -- Protected_Body_Subprogram (Node11)
5663 -- Barrier_Function (Node12)
5664 -- Postconditions_Proc (Node14)
5665 -- Entry_Parameters_Type (Node15)
5666 -- First_Entity (Node17)
5667 -- Alias (Node18) (for entry only. Empty)
5668 -- Last_Entity (Node20)
5669 -- Accept_Address (Elist21)
5670 -- Scope_Depth_Value (Uint22)
5671 -- Protection_Object (Node23) (protected kind)
5672 -- PPC_Wrapper (Node25)
5673 -- Extra_Formals (Node28)
5674 -- Contract (Node34)
5675 -- Needs_No_Actuals (Flag22)
5676 -- Uses_Sec_Stack (Flag95)
5677 -- Default_Expressions_Processed (Flag108)
5678 -- Entry_Accepted (Flag152)
5679 -- Sec_Stack_Needed_For_Return (Flag167)
5680 -- Has_Expanded_Contract (Flag240)
5681 -- Address_Clause (synth)
5682 -- Entry_Index_Type (synth)
5683 -- First_Formal (synth)
5684 -- First_Formal_With_Extras (synth)
5685 -- Last_Formal (synth)
5686 -- Number_Formals (synth)
5687 -- Scope_Depth (synth)
5689 -- E_Entry_Index_Parameter
5690 -- Entry_Index_Constant (Node18)
5692 -- E_Enumeration_Literal
5693 -- Enumeration_Pos (Uint11)
5694 -- Enumeration_Rep (Uint12)
5696 -- Enumeration_Rep_Expr (Node22)
5697 -- Next_Literal (synth)
5699 -- E_Enumeration_Type
5700 -- E_Enumeration_Subtype
5701 -- Lit_Strings (Node16) (root type only)
5702 -- First_Literal (Node17)
5703 -- Lit_Indexes (Node18) (root type only)
5704 -- Default_Aspect_Value (Node19) (base type only)
5705 -- Scalar_Range (Node20)
5706 -- Enum_Pos_To_Rep (Node23) (type only)
5707 -- Static_Discrete_Predicate (List25)
5708 -- Has_Biased_Representation (Flag139)
5709 -- Has_Contiguous_Rep (Flag181)
5710 -- Has_Enumeration_Rep_Clause (Flag66)
5711 -- Has_Pragma_Ordered (Flag198) (base type only)
5712 -- Nonzero_Is_True (Flag162) (base type only)
5713 -- No_Predicate_On_Actual (Flag275)
5714 -- No_Dynamic_Predicate_On_Actual (Flag276)
5715 -- Type_Low_Bound (synth)
5716 -- Type_High_Bound (synth)
5717 -- (plus type attributes)
5721 -- Alignment (Uint14)
5722 -- Renamed_Entity (Node18)
5723 -- Register_Exception_Call (Node20)
5724 -- Interface_Name (Node21)
5725 -- Discard_Names (Flag88)
5726 -- Is_Raised (Flag224)
5729 -- Equivalent_Type (Node18)
5730 -- (plus type attributes)
5732 -- E_Floating_Point_Type
5733 -- E_Floating_Point_Subtype
5734 -- Digits_Value (Uint17)
5735 -- Float_Rep (Uint10) (Float_Rep_Kind)
5736 -- Default_Aspect_Value (Node19) (base type only)
5737 -- Scalar_Range (Node20)
5738 -- Static_Real_Or_String_Predicate (Node25)
5739 -- Machine_Emax_Value (synth)
5740 -- Machine_Emin_Value (synth)
5741 -- Machine_Mantissa_Value (synth)
5742 -- Machine_Radix_Value (synth)
5743 -- Model_Emin_Value (synth)
5744 -- Model_Epsilon_Value (synth)
5745 -- Model_Mantissa_Value (synth)
5746 -- Model_Small_Value (synth)
5747 -- Safe_Emax_Value (synth)
5748 -- Safe_First_Value (synth)
5749 -- Safe_Last_Value (synth)
5750 -- Type_Low_Bound (synth)
5751 -- Type_High_Bound (synth)
5752 -- (plus type attributes)
5755 -- E_Generic_Function
5756 -- Mechanism (Uint8) (Mechanism_Type)
5757 -- Renaming_Map (Uint9)
5758 -- Handler_Records (List10) (non-generic case only)
5759 -- Protected_Body_Subprogram (Node11)
5760 -- Next_Inlined_Subprogram (Node12)
5761 -- Elaboration_Entity (Node13) (not implicit /=)
5762 -- Postconditions_Proc (Node14) (non-generic case only)
5763 -- DT_Position (Uint15)
5764 -- DTC_Entity (Node16)
5765 -- First_Entity (Node17)
5766 -- Alias (Node18) (non-generic case only)
5767 -- Renamed_Entity (Node18) (generic case only)
5768 -- Extra_Accessibility_Of_Result (Node19) (non-generic case only)
5769 -- Last_Entity (Node20)
5770 -- Interface_Name (Node21)
5771 -- Scope_Depth_Value (Uint22)
5772 -- Generic_Renamings (Elist23) (for an instance)
5773 -- Inner_Instances (Elist23) (generic case only)
5774 -- Protection_Object (Node23) (for concurrent kind)
5775 -- Uplevel_References (Elist24) (non-generic case only)
5776 -- Subps_Index (Uint24) (non-generic case only)
5777 -- Interface_Alias (Node25)
5778 -- Overridden_Operation (Node26)
5779 -- Wrapped_Entity (Node27) (non-generic case only)
5780 -- Extra_Formals (Node28)
5781 -- Subprograms_For_Type (Node29)
5782 -- Corresponding_Equality (Node30) (implicit /= only)
5783 -- Thunk_Entity (Node31) (thunk case only)
5784 -- SPARK_Pragma (Node32)
5785 -- Linker_Section_Pragma (Node33)
5786 -- Contract (Node34)
5787 -- Body_Needed_For_SAL (Flag40)
5788 -- Contains_Ignored_Ghost_Code (Flag279)
5789 -- Default_Expressions_Processed (Flag108)
5790 -- Delay_Cleanups (Flag114)
5791 -- Delay_Subprogram_Descriptors (Flag50)
5792 -- Discard_Names (Flag88)
5793 -- Elaboration_Entity_Required (Flag174)
5794 -- Has_Anonymous_Master (Flag253)
5795 -- Has_Completion (Flag26)
5796 -- Has_Controlling_Result (Flag98)
5797 -- Has_Expanded_Contract (Flag240) (non-generic case only)
5798 -- Has_Invariants (Flag232)
5799 -- Has_Master_Entity (Flag21)
5800 -- Has_Missing_Return (Flag142)
5801 -- Has_Nested_Block_With_Handler (Flag101)
5802 -- Has_Nested_Subprogram (Flag282)
5803 -- Has_Out_Or_In_Out_Parameter (Flag110)
5804 -- Has_Recursive_Call (Flag143)
5805 -- Is_Abstract_Subprogram (Flag19) (non-generic case only)
5806 -- Is_Called (Flag102) (non-generic case only)
5807 -- Is_Constructor (Flag76)
5808 -- Is_Discrim_SO_Function (Flag176)
5809 -- Is_Discriminant_Check_Function (Flag264)
5810 -- Is_Eliminated (Flag124)
5811 -- Is_Generic_Actual_Subprogram (Flag274) (non-generic case only)
5812 -- Is_Hidden_Non_Overridden_Subpgm (Flag2) (non-generic case only)
5813 -- Is_Inlined_Always (Flag1) (non-generic case only)
5814 -- Is_Instantiated (Flag126) (generic case only)
5815 -- Is_Intrinsic_Subprogram (Flag64)
5816 -- Is_Invariant_Procedure (Flag257) (non-generic case only)
5817 -- Is_Machine_Code_Subprogram (Flag137) (non-generic case only)
5818 -- Is_Predicate_Function (Flag255) (non-generic case only)
5819 -- Is_Predicate_Function_M (Flag256) (non-generic case only)
5820 -- Is_Primitive (Flag218)
5821 -- Is_Primitive_Wrapper (Flag195) (non-generic case only)
5822 -- Is_Private_Descendant (Flag53)
5823 -- Is_Private_Primitive (Flag245) (non-generic case only)
5825 -- Is_Visible_Lib_Unit (Flag116)
5826 -- Needs_No_Actuals (Flag22)
5827 -- Requires_Overriding (Flag213) (non-generic case only)
5828 -- Return_Present (Flag54)
5829 -- Returns_By_Ref (Flag90)
5830 -- Returns_Limited_View (Flag134) (non-generic case only)
5831 -- Sec_Stack_Needed_For_Return (Flag167)
5832 -- SPARK_Pragma_Inherited (Flag265)
5833 -- Uses_Sec_Stack (Flag95)
5834 -- Address_Clause (synth)
5835 -- First_Formal (synth)
5836 -- First_Formal_With_Extras (synth)
5837 -- Last_Formal (synth)
5838 -- Number_Formals (synth)
5839 -- Scope_Depth (synth)
5841 -- E_General_Access_Type
5842 -- Master_Id (Node17)
5843 -- Directly_Designated_Type (Node20)
5844 -- Associated_Storage_Pool (Node22) (root type only)
5845 -- Finalization_Master (Node23) (root type only)
5846 -- Storage_Size_Variable (Node26) (base type only)
5847 -- (plus type attributes)
5849 -- E_Generic_In_Parameter
5850 -- E_Generic_In_Out_Parameter
5851 -- Current_Value (Node9) (always Empty)
5852 -- Entry_Component (Node11)
5853 -- Actual_Subtype (Node17)
5854 -- Renamed_Object (Node18) (always Empty)
5855 -- Default_Value (Node20)
5856 -- Protected_Formal (Node22)
5857 -- Is_Controlling_Formal (Flag97)
5858 -- Is_Return_Object (Flag209)
5859 -- Parameter_Mode (synth)
5861 -- E_Incomplete_Type
5862 -- E_Incomplete_Subtype
5863 -- Direct_Primitive_Operations (Elist10)
5864 -- Non_Limited_View (Node17)
5865 -- Private_Dependents (Elist18)
5866 -- Discriminant_Constraint (Elist21)
5867 -- Stored_Constraint (Elist23)
5868 -- (plus type attributes)
5871 -- E_In_Out_Parameter
5873 -- Mechanism (Uint8) (Mechanism_Type)
5874 -- Current_Value (Node9)
5875 -- Discriminal_Link (Node10) (discriminals only)
5876 -- Entry_Component (Node11)
5878 -- Extra_Accessibility (Node13)
5879 -- Alignment (Uint14)
5880 -- Extra_Formal (Node15)
5881 -- Unset_Reference (Node16)
5882 -- Actual_Subtype (Node17)
5883 -- Renamed_Object (Node18)
5884 -- Spec_Entity (Node19)
5885 -- Default_Value (Node20)
5886 -- Default_Expr_Function (Node21)
5887 -- Protected_Formal (Node22)
5888 -- Extra_Constrained (Node23)
5889 -- Last_Assignment (Node26) (OUT, IN-OUT only)
5890 -- Activation_Record_Component (Node31)
5891 -- Has_Initial_Value (Flag219)
5892 -- Is_Controlling_Formal (Flag97)
5893 -- Is_Only_Out_Parameter (Flag226)
5894 -- Low_Bound_Tested (Flag205)
5895 -- Is_Return_Object (Flag209)
5896 -- Parameter_Mode (synth)
5899 -- Enclosing_Scope (Node18)
5900 -- Reachable (Flag49)
5902 -- E_Limited_Private_Type
5903 -- E_Limited_Private_Subtype
5904 -- First_Entity (Node17)
5905 -- Private_Dependents (Elist18)
5906 -- Underlying_Full_View (Node19)
5907 -- Last_Entity (Node20)
5908 -- Discriminant_Constraint (Elist21)
5909 -- Private_View (Node22)
5910 -- Stored_Constraint (Elist23)
5911 -- Has_Completion (Flag26)
5912 -- (plus type attributes)
5915 -- First_Exit_Statement (Node8)
5916 -- Has_Exit (Flag47)
5917 -- Has_Loop_Entry_Attributes (Flag260)
5918 -- Has_Master_Entity (Flag21)
5919 -- Has_Nested_Block_With_Handler (Flag101)
5920 -- Uses_Sec_Stack (Flag95)
5922 -- E_Modular_Integer_Type
5923 -- E_Modular_Integer_Subtype
5924 -- Modulus (Uint17) (base type only)
5925 -- Default_Aspect_Value (Node19) (base type only)
5926 -- Original_Array_Type (Node21)
5927 -- Scalar_Range (Node20)
5928 -- Static_Discrete_Predicate (List25)
5929 -- Non_Binary_Modulus (Flag58) (base type only)
5930 -- Has_Biased_Representation (Flag139)
5931 -- Has_Shift_Operator (Flag267) (base type only)
5932 -- No_Predicate_On_Actual (Flag275)
5933 -- No_Dynamic_Predicate_On_Actual (Flag276)
5934 -- Type_Low_Bound (synth)
5935 -- Type_High_Bound (synth)
5936 -- (plus type attributes)
5943 -- First_Entity (Node17)
5945 -- Extra_Accessibility_Of_Result (Node19)
5946 -- Last_Entity (Node20)
5947 -- Has_Nested_Subprogram (Flag282)
5948 -- Uplevel_References (Elist24)
5949 -- Subps_Index (Uint24)
5950 -- Overridden_Operation (Node26)
5951 -- Subprograms_For_Type (Node29)
5952 -- Linker_Section_Pragma (Node33)
5953 -- Contract (Node34)
5954 -- Has_Invariants (Flag232)
5955 -- Is_Machine_Code_Subprogram (Flag137)
5957 -- Is_Intrinsic_Subprogram (Flag64)
5958 -- Is_Primitive (Flag218)
5959 -- Default_Expressions_Processed (Flag108)
5960 -- Aren't there more flags and fields? seems like this list should be
5961 -- more similar to the E_Function list, which is much longer ???
5963 -- E_Ordinary_Fixed_Point_Type
5964 -- E_Ordinary_Fixed_Point_Subtype
5965 -- Delta_Value (Ureal18)
5966 -- Default_Aspect_Value (Node19) (base type only)
5967 -- Scalar_Range (Node20)
5968 -- Static_Real_Or_String_Predicate (Node25)
5969 -- Small_Value (Ureal21)
5970 -- Has_Small_Clause (Flag67)
5971 -- Aft_Value (synth)
5972 -- Type_Low_Bound (synth)
5973 -- Type_High_Bound (synth)
5974 -- (plus type attributes)
5977 -- E_Generic_Package
5978 -- Dependent_Instances (Elist8) (for an instance)
5979 -- Renaming_Map (Uint9)
5980 -- Handler_Records (List10) (non-generic case only)
5981 -- Generic_Homonym (Node11) (generic case only)
5982 -- Associated_Formal_Package (Node12)
5983 -- Elaboration_Entity (Node13)
5984 -- Shadow_Entities (List14)
5985 -- Related_Instance (Node15) (non-generic case only)
5986 -- First_Private_Entity (Node16)
5987 -- First_Entity (Node17)
5988 -- Renamed_Entity (Node18)
5989 -- Body_Entity (Node19)
5990 -- Last_Entity (Node20)
5991 -- Interface_Name (Node21)
5992 -- Scope_Depth_Value (Uint22)
5993 -- Generic_Renamings (Elist23) (for an instance)
5994 -- Inner_Instances (Elist23) (generic case only)
5995 -- Limited_View (Node23) (non-generic/instance)
5996 -- Abstract_States (Elist25)
5997 -- Package_Instantiation (Node26)
5998 -- Current_Use_Clause (Node27)
5999 -- Finalizer (Node28) (non-generic case only)
6000 -- SPARK_Aux_Pragma (Node33)
6001 -- SPARK_Pragma (Node32)
6002 -- Contract (Node34)
6003 -- Delay_Subprogram_Descriptors (Flag50)
6004 -- Body_Needed_For_SAL (Flag40)
6005 -- Contains_Ignored_Ghost_Code (Flag279)
6006 -- Discard_Names (Flag88)
6007 -- Elaboration_Entity_Required (Flag174)
6008 -- Elaborate_Body_Desirable (Flag210) (non-generic case only)
6009 -- From_Limited_With (Flag159)
6010 -- Has_All_Calls_Remote (Flag79)
6011 -- Has_Anonymous_Master (Flag253)
6012 -- Has_Completion (Flag26)
6013 -- Has_Forward_Instantiation (Flag175)
6014 -- Has_Master_Entity (Flag21)
6015 -- Has_RACW (Flag214) (non-generic case only)
6016 -- In_Package_Body (Flag48)
6018 -- Is_Instantiated (Flag126)
6019 -- Is_Private_Descendant (Flag53)
6020 -- Is_Visible_Lib_Unit (Flag116)
6021 -- Renamed_In_Spec (Flag231) (non-generic case only)
6022 -- SPARK_Aux_Pragma_Inherited (Flag266)
6023 -- SPARK_Pragma_Inherited (Flag265)
6024 -- Static_Elaboration_Desired (Flag77) (non-generic case only)
6025 -- Has_Null_Abstract_State (synth)
6026 -- Is_Wrapper_Package (synth) (non-generic case only)
6027 -- Scope_Depth (synth)
6030 -- Handler_Records (List10) (non-generic case only)
6031 -- Related_Instance (Node15) (non-generic case only)
6032 -- First_Entity (Node17)
6033 -- Spec_Entity (Node19)
6034 -- Last_Entity (Node20)
6035 -- Scope_Depth_Value (Uint22)
6036 -- Finalizer (Node28) (non-generic case only)
6037 -- SPARK_Aux_Pragma (Node33)
6038 -- SPARK_Pragma (Node32)
6039 -- Contract (Node34)
6040 -- Contains_Ignored_Ghost_Code (Flag279)
6041 -- Delay_Subprogram_Descriptors (Flag50)
6042 -- Has_Anonymous_Master (Flag253)
6043 -- SPARK_Aux_Pragma_Inherited (Flag266)
6044 -- SPARK_Pragma_Inherited (Flag265)
6045 -- Scope_Depth (synth)
6048 -- E_Private_Subtype
6049 -- Direct_Primitive_Operations (Elist10)
6050 -- First_Entity (Node17)
6051 -- Private_Dependents (Elist18)
6052 -- Underlying_Full_View (Node19)
6053 -- Last_Entity (Node20)
6054 -- Discriminant_Constraint (Elist21)
6055 -- Private_View (Node22)
6056 -- Stored_Constraint (Elist23)
6057 -- Has_Completion (Flag26)
6058 -- Is_Controlled (Flag42) (base type only)
6059 -- Is_For_Access_Subtype (Flag118) (subtype only)
6060 -- (plus type attributes)
6063 -- E_Generic_Procedure
6064 -- Renaming_Map (Uint9)
6065 -- Handler_Records (List10) (non-generic case only)
6066 -- Protected_Body_Subprogram (Node11)
6067 -- Next_Inlined_Subprogram (Node12)
6068 -- Elaboration_Entity (Node13)
6069 -- Postconditions_Proc (Node14) (non-generic case only)
6070 -- DT_Position (Uint15)
6071 -- DTC_Entity (Node16)
6072 -- First_Entity (Node17)
6073 -- Alias (Node18) (non-generic case only)
6074 -- Renamed_Entity (Node18) (generic case only)
6075 -- Last_Entity (Node20)
6076 -- Interface_Name (Node21)
6077 -- Scope_Depth_Value (Uint22)
6078 -- Generic_Renamings (Elist23) (for an instance)
6079 -- Inner_Instances (Elist23) (generic case only)
6080 -- Protection_Object (Node23) (for concurrent kind)
6081 -- Uplevel_References (Elist24) (non-generic case only)
6082 -- Subps_Index (Uint24) (non-generic case only)
6083 -- Interface_Alias (Node25)
6084 -- Overridden_Operation (Node26) (never for init proc)
6085 -- Wrapped_Entity (Node27) (non-generic case only)
6086 -- Extra_Formals (Node28)
6087 -- Static_Initialization (Node30) (init_proc only)
6088 -- Thunk_Entity (Node31) (thunk case only)
6089 -- SPARK_Pragma (Node32)
6090 -- Linker_Section_Pragma (Node33)
6091 -- Contract (Node34)
6092 -- Body_Needed_For_SAL (Flag40)
6093 -- Contains_Ignored_Ghost_Code (Flag279)
6094 -- Delay_Cleanups (Flag114)
6095 -- Discard_Names (Flag88)
6096 -- Elaboration_Entity_Required (Flag174)
6097 -- Default_Expressions_Processed (Flag108)
6098 -- Delay_Cleanups (Flag114)
6099 -- Delay_Subprogram_Descriptors (Flag50)
6100 -- Discard_Names (Flag88)
6101 -- Has_Anonymous_Master (Flag253)
6102 -- Has_Completion (Flag26)
6103 -- Has_Expanded_Contract (Flag240) (non-generic case only)
6104 -- Has_Invariants (Flag232)
6105 -- Has_Master_Entity (Flag21)
6106 -- Has_Nested_Block_With_Handler (Flag101)
6107 -- Has_Nested_Subprogram (Flag282)
6108 -- Is_Abstract_Subprogram (Flag19) (non-generic case only)
6109 -- Is_Asynchronous (Flag81)
6110 -- Is_Called (Flag102) (non-generic case only)
6111 -- Is_Constructor (Flag76)
6112 -- Is_Default_Init_Cond_Procedure (Flag132) (non-generic case only)
6113 -- Is_Eliminated (Flag124)
6114 -- Is_Generic_Actual_Subprogram (Flag274) (non-generic case only)
6115 -- Is_Hidden_Non_Overridden_Subpgm (Flag2) (non-generic case only)
6116 -- Is_Inlined_Always (Flag1) (non-generic case only)
6117 -- Is_Instantiated (Flag126) (generic case only)
6118 -- Is_Interrupt_Handler (Flag89)
6119 -- Is_Intrinsic_Subprogram (Flag64)
6120 -- Is_Invariant_Procedure (Flag257) (non-generic case only)
6121 -- Is_Machine_Code_Subprogram (Flag137) (non-generic case only)
6122 -- Is_Null_Init_Proc (Flag178)
6123 -- Is_Predicate_Function (Flag255) (non-generic case only)
6124 -- Is_Predicate_Function_M (Flag256) (non-generic case only)
6125 -- Is_Primitive (Flag218)
6126 -- Is_Primitive_Wrapper (Flag195) (non-generic case only)
6127 -- Is_Private_Descendant (Flag53)
6128 -- Is_Private_Primitive (Flag245) (non-generic case only)
6130 -- Is_Valued_Procedure (Flag127)
6131 -- Is_Visible_Lib_Unit (Flag116)
6132 -- Needs_No_Actuals (Flag22)
6133 -- No_Return (Flag113)
6134 -- Requires_Overriding (Flag213) (non-generic case only)
6135 -- Sec_Stack_Needed_For_Return (Flag167)
6136 -- SPARK_Pragma_Inherited (Flag265)
6137 -- Address_Clause (synth)
6138 -- First_Formal (synth)
6139 -- First_Formal_With_Extras (synth)
6140 -- Is_Finalizer (synth)
6141 -- Last_Formal (synth)
6142 -- Number_Formals (synth)
6145 -- (any others??? First/Last Entity, Scope_Depth???)
6147 -- E_Protected_Object
6150 -- E_Protected_Subtype
6151 -- Direct_Primitive_Operations (Elist10)
6152 -- First_Private_Entity (Node16)
6153 -- First_Entity (Node17)
6154 -- Corresponding_Record_Type (Node18)
6155 -- Entry_Bodies_Array (Node19)
6156 -- Last_Entity (Node20)
6157 -- Discriminant_Constraint (Elist21)
6158 -- Scope_Depth_Value (Uint22)
6159 -- Scope_Depth (synth)
6160 -- Stored_Constraint (Elist23)
6161 -- Has_Interrupt_Handler (synth)
6162 -- Sec_Stack_Needed_For_Return (Flag167) ???
6163 -- Uses_Lock_Free (Flag188)
6164 -- Uses_Sec_Stack (Flag95) ???
6165 -- Has_Entries (synth)
6166 -- Number_Entries (synth)
6170 -- Direct_Primitive_Operations (Elist10)
6171 -- Access_Disp_Table (Elist16) (base type only)
6172 -- Cloned_Subtype (Node16) (subtype case only)
6173 -- First_Entity (Node17)
6174 -- Corresponding_Concurrent_Type (Node18)
6175 -- Parent_Subtype (Node19) (base type only)
6176 -- Last_Entity (Node20)
6177 -- Discriminant_Constraint (Elist21)
6178 -- Corresponding_Remote_Type (Node22)
6179 -- Stored_Constraint (Elist23)
6180 -- Interfaces (Elist25)
6181 -- Dispatch_Table_Wrappers (Elist26) (base type only)
6182 -- Underlying_Record_View (Node28) (base type only)
6183 -- Component_Alignment (special) (base type only)
6184 -- C_Pass_By_Copy (Flag125) (base type only)
6185 -- Has_Dispatch_Table (Flag220) (base tagged type only)
6186 -- Has_Pragma_Pack (Flag121) (impl base type only)
6187 -- Has_Private_Ancestor (Flag151)
6188 -- Has_Record_Rep_Clause (Flag65) (base type only)
6189 -- Has_Static_Discriminants (Flag211) (subtype only)
6190 -- Is_Class_Wide_Equivalent_Type (Flag35)
6191 -- Is_Concurrent_Record_Type (Flag20)
6192 -- Is_Constrained (Flag12)
6193 -- Is_Controlled (Flag42) (base type only)
6194 -- Is_Interface (Flag186)
6195 -- Is_Limited_Interface (Flag197)
6196 -- OK_To_Reorder_Components (Flag239) (base type only)
6197 -- Reverse_Bit_Order (Flag164) (base type only)
6198 -- Reverse_Storage_Order (Flag93) (base type only)
6199 -- SSO_Set_High_By_Default (Flag273) (base type only)
6200 -- SSO_Set_Low_By_Default (Flag272) (base type only)
6201 -- First_Component (synth)
6202 -- First_Component_Or_Discriminant (synth)
6203 -- (plus type attributes)
6205 -- E_Record_Type_With_Private
6206 -- E_Record_Subtype_With_Private
6207 -- Direct_Primitive_Operations (Elist10)
6208 -- First_Entity (Node17)
6209 -- Private_Dependents (Elist18)
6210 -- Underlying_Full_View (Node19)
6211 -- Last_Entity (Node20)
6212 -- Discriminant_Constraint (Elist21)
6213 -- Private_View (Node22)
6214 -- Stored_Constraint (Elist23)
6215 -- Interfaces (Elist25)
6216 -- Has_Completion (Flag26)
6217 -- Has_Private_Ancestor (Flag151)
6218 -- Has_Record_Rep_Clause (Flag65) (base type only)
6219 -- Is_Concurrent_Record_Type (Flag20)
6220 -- Is_Constrained (Flag12)
6221 -- Is_Controlled (Flag42) (base type only)
6222 -- Is_Interface (Flag186)
6223 -- Is_Limited_Interface (Flag197)
6224 -- OK_To_Reorder_Components (Flag239) (base type only)
6225 -- Reverse_Bit_Order (Flag164) (base type only)
6226 -- Reverse_Storage_Order (Flag93) (base type only)
6227 -- SSO_Set_High_By_Default (Flag273) (base type only)
6228 -- SSO_Set_Low_By_Default (Flag272) (base type only)
6229 -- First_Component (synth)
6230 -- First_Component_Or_Discriminant (synth)
6231 -- (plus type attributes)
6233 -- E_Return_Statement
6234 -- Return_Applies_To (Node8)
6236 -- E_Signed_Integer_Type
6237 -- E_Signed_Integer_Subtype
6238 -- Default_Aspect_Value (Node19) (base type only)
6239 -- Scalar_Range (Node20)
6240 -- Static_Discrete_Predicate (List25)
6241 -- Has_Biased_Representation (Flag139)
6242 -- Has_Shift_Operator (Flag267) (base type only)
6243 -- No_Predicate_On_Actual (Flag275)
6244 -- No_Dynamic_Predicate_On_Actual (Flag276)
6245 -- Type_Low_Bound (synth)
6246 -- Type_High_Bound (synth)
6247 -- (plus type attributes)
6249 -- E_String_Literal_Subtype
6250 -- String_Literal_Length (Uint16)
6251 -- First_Index (Node17) (always Empty)
6252 -- String_Literal_Low_Bound (Node18)
6253 -- Packed_Array_Impl_Type (Node23)
6254 -- (plus type attributes)
6256 -- E_Subprogram_Body
6257 -- Mechanism (Uint8)
6258 -- First_Entity (Node17)
6259 -- Corresponding_Protected_Entry (Node18)
6260 -- Last_Entity (Node20)
6261 -- Scope_Depth_Value (Uint22)
6262 -- Extra_Formals (Node28)
6263 -- SPARK_Pragma (Node32)
6264 -- Contract (Node34)
6265 -- Contains_Ignored_Ghost_Code (Flag279)
6266 -- SPARK_Pragma_Inherited (Flag265)
6267 -- Scope_Depth (synth)
6269 -- E_Subprogram_Type
6270 -- Extra_Accessibility_Of_Result (Node19)
6271 -- Directly_Designated_Type (Node20)
6272 -- Extra_Formals (Node28)
6273 -- First_Formal (synth)
6274 -- First_Formal_With_Extras (synth)
6275 -- Last_Formal (synth)
6276 -- Number_Formals (synth)
6277 -- (plus type attributes)
6280 -- (any others??? First/Last Entity, Scope_Depth???)
6284 -- Direct_Primitive_Operations (Elist10)
6285 -- First_Private_Entity (Node16)
6286 -- First_Entity (Node17)
6287 -- Corresponding_Record_Type (Node18)
6288 -- Last_Entity (Node20)
6289 -- Discriminant_Constraint (Elist21)
6290 -- Scope_Depth_Value (Uint22)
6291 -- Scope_Depth (synth)
6292 -- Stored_Constraint (Elist23)
6293 -- Task_Body_Procedure (Node25)
6294 -- Storage_Size_Variable (Node26) (base type only)
6295 -- Relative_Deadline_Variable (Node28) (base type only)
6296 -- Delay_Cleanups (Flag114)
6297 -- Has_Master_Entity (Flag21)
6298 -- Has_Storage_Size_Clause (Flag23) (base type only)
6299 -- Uses_Sec_Stack (Flag95) ???
6300 -- Sec_Stack_Needed_For_Return (Flag167) ???
6301 -- Has_Entries (synth)
6302 -- Number_Entries (synth)
6303 -- (plus type attributes)
6306 -- Hiding_Loop_Variable (Node8)
6307 -- Current_Value (Node9)
6308 -- Encapsulating_State (Node10)
6310 -- Extra_Accessibility (Node13)
6311 -- Alignment (Uint14)
6312 -- Status_Flag_Or_Transient_Decl (Node15) (transient object only)
6313 -- Unset_Reference (Node16)
6314 -- Actual_Subtype (Node17)
6315 -- Renamed_Object (Node18)
6316 -- Size_Check_Code (Node19)
6317 -- Prival_Link (Node20)
6318 -- Interface_Name (Node21)
6319 -- Shared_Var_Procs_Instance (Node22)
6320 -- Extra_Constrained (Node23)
6321 -- Related_Expression (Node24)
6322 -- Debug_Renaming_Link (Node25)
6323 -- Last_Assignment (Node26)
6324 -- Related_Type (Node27)
6325 -- Initialization_Statements (Node28)
6326 -- BIP_Initialization_Call (Node29)
6327 -- Last_Aggregate_Assignment (Node30)
6328 -- Activation_Record_Component (Node31)
6329 -- Linker_Section_Pragma (Node33)
6330 -- Contract (Node34)
6331 -- Has_Alignment_Clause (Flag46)
6332 -- Has_Atomic_Components (Flag86)
6333 -- Has_Biased_Representation (Flag139)
6334 -- Has_Independent_Components (Flag34)
6335 -- Has_Initial_Value (Flag219)
6336 -- Has_Size_Clause (Flag29)
6337 -- Has_Uplevel_Reference (Flag215)
6338 -- Has_Volatile_Components (Flag87)
6339 -- Is_Atomic (Flag85)
6340 -- Is_Eliminated (Flag124)
6341 -- Is_Independent (Flag268)
6342 -- Is_Processed_Transient (Flag252)
6343 -- Is_Safe_To_Reevaluate (Flag249)
6344 -- Is_Shared_Passive (Flag60)
6345 -- Is_True_Constant (Flag163)
6346 -- Is_Volatile (Flag16)
6347 -- Is_Return_Object (Flag209)
6348 -- OK_To_Rename (Flag247)
6349 -- Optimize_Alignment_Space (Flag241)
6350 -- Optimize_Alignment_Time (Flag242)
6351 -- Suppress_Initialization (Flag105)
6352 -- Treat_As_Volatile (Flag41)
6353 -- Address_Clause (synth)
6354 -- Alignment_Clause (synth)
6355 -- Size_Clause (synth)
6358 -- Since E_Void is the initial Ekind value of an entity when it is first
6359 -- created, one might expect that no attributes would be defined on such
6360 -- an entity until its Ekind field is set. However, in practice, there
6361 -- are many instances in which fields of an E_Void entity are set in the
6362 -- code prior to setting the Ekind field. This is not well documented or
6363 -- well controlled, and needs cleaning up later. Meanwhile, the access
6364 -- procedures in the body of Einfo permit many, but not all, attributes
6365 -- to be applied to an E_Void entity, precisely so that this kind of
6366 -- pre-setting of attributes works. This is really a hole in the dynamic
6367 -- type checking, since there is no assurance that the eventual Ekind
6368 -- value will be appropriate for the attributes set, and the consequence
6369 -- is that the dynamic type checking in the Einfo body is unnecessarily
6370 -- weak. To be looked at systematically some time ???
6372 ---------------------------------
6373 -- Component_Alignment Control --
6374 ---------------------------------
6376 -- There are four types of alignment possible for array and record
6377 -- types, and a field in the type entities contains a value of the
6378 -- following type indicating which alignment choice applies. For full
6379 -- details of the meaning of these alignment types, see description
6380 -- of the Component_Alignment pragma
6382 type Component_Alignment_Kind
is (
6383 Calign_Default
, -- default alignment
6384 Calign_Component_Size
, -- natural alignment for component size
6385 Calign_Component_Size_4
, -- natural for size <= 4, 4 for size >= 4
6386 Calign_Storage_Unit
); -- all components byte aligned
6388 -----------------------------------
6389 -- Floating Point Representation --
6390 -----------------------------------
6392 type Float_Rep_Kind
is (
6393 IEEE_Binary
, -- IEEE 754p conforming binary format
6394 AAMP
); -- AAMP format
6400 -- In addition to attributes that are stored as plain data, other
6401 -- attributes are procedural, and require some small amount of
6402 -- computation. Of course, from the point of view of a user of this
6403 -- package, the distinction is not visible (even the field information
6404 -- provided below should be disregarded, as it is subject to change
6405 -- without notice). A number of attributes appear as lists: lists of
6406 -- formals, lists of actuals, of discriminants, etc. For these, pairs
6407 -- of functions are defined, which take the form:
6409 -- function First_Thing (E : Enclosing_Construct) return Thing;
6410 -- function Next_Thing (T : Thing) return Thing;
6412 -- The end of iteration is always signaled by a value of Empty, so that
6413 -- loops over these chains invariably have the form:
6417 -- This := First_Thing (E);
6419 -- while Present (This) loop
6420 -- Do_Something_With (This);
6422 -- This := Next_Thing (This);
6425 -----------------------------------
6426 -- Handling of Check Suppression --
6427 -----------------------------------
6429 -- There are three ways that checks can be suppressed:
6431 -- 1. At the command line level
6432 -- 2. At the scope level.
6433 -- 3. At the entity level.
6435 -- See spec of Sem in sem.ads for details of the data structures used
6436 -- to keep track of these various methods for suppressing checks.
6438 -------------------------------
6439 -- Handling of Discriminants --
6440 -------------------------------
6442 -- During semantic processing, discriminants are separate entities which
6443 -- reflect the semantic properties and allowed usage of discriminants in
6446 -- In the case of discriminants used as bounds, the references are handled
6447 -- directly, since special processing is needed in any case. However, there
6448 -- are two circumstances in which discriminants are referenced in a quite
6449 -- general manner, like any other variables:
6451 -- In initialization expressions for records. Note that the expressions
6452 -- used in Priority, Storage_Size, Task_Info and Relative_Deadline
6453 -- pragmas are effectively in this category, since these pragmas are
6454 -- converted to initialized record fields in the Corresponding_Record_
6457 -- In task and protected bodies, where the discriminant values may be
6458 -- referenced freely within these bodies. Discriminants can also appear
6459 -- in bounds of entry families and in defaults of operations.
6461 -- In both these cases, the discriminants must be treated essentially as
6462 -- objects. The following approach is used to simplify and minimize the
6463 -- special processing that is required.
6465 -- When a record type with discriminants is analyzed, semantic processing
6466 -- creates the entities for the discriminants. It also creates additional
6467 -- sets of entities called discriminals, one for each of the discriminants,
6468 -- and the Discriminal field of the discriminant entity points to this
6469 -- additional entity, which is initially created as an uninitialized
6472 -- During expansion of expressions, any discriminant reference is replaced
6473 -- by a reference to the corresponding discriminal. When the initialization
6474 -- procedure for the record is created (there will always be one, since
6475 -- discriminants are present, see Exp_Ch3 for further details), the
6476 -- discriminals are used as the entities for the formal parameters of
6477 -- this initialization procedure. The references to these discriminants
6478 -- have already been replaced by references to these discriminals, which
6479 -- are now the formal parameters corresponding to the required objects.
6481 -- In the case of a task or protected body, the semantics similarly creates
6482 -- a set of discriminals for the discriminants of the task or protected
6483 -- type. When the procedure is created for the task body, the parameter
6484 -- passed in is a reference to the task value type, which contains the
6485 -- required discriminant values. The expander creates a set of declarations
6488 -- discr_nameD : constant discr_type renames _task.discr_name;
6490 -- where discr_nameD is the discriminal entity referenced by the task
6491 -- discriminant, and _task is the task value passed in as the parameter.
6492 -- Again, any references to discriminants in the task body have been
6493 -- replaced by the discriminal reference, which is now an object that
6494 -- contains the required value.
6496 -- This approach for tasks means that two sets of discriminals are needed
6497 -- for a task type, one for the initialization procedure, and one for the
6498 -- task body. This works out nicely, since the semantics allocates one set
6499 -- for the task itself, and one set for the corresponding record.
6501 -- The one bit of trickiness arises in making sure that the right set of
6502 -- discriminals is used at the right time. First the task definition is
6503 -- processed. Any references to discriminants here are replaced by the
6504 -- corresponding *task* discriminals (the record type doesn't even exist
6505 -- yet, since it is constructed as part of the expansion of the task
6506 -- declaration, which happens after the semantic processing of the task
6507 -- definition). The discriminants to be used for the corresponding record
6508 -- are created at the same time as the other discriminals, and held in the
6509 -- CR_Discriminant field of the discriminant. A use of the discriminant in
6510 -- a bound for an entry family is replaced with the CR_Discriminant because
6511 -- it controls the bound of the entry queue array which is a component of
6512 -- the corresponding record.
6514 -- Just before the record initialization routine is constructed, the
6515 -- expander exchanges the task and record discriminals. This has two
6516 -- effects. First the generation of the record initialization routine
6517 -- uses the discriminals that are now on the record, which is the set
6518 -- that used to be on the task, which is what we want.
6520 -- Second, a new set of (so far unused) discriminals is now on the task
6521 -- discriminants, and it is this set that will be used for expanding the
6522 -- task body, and also for the discriminal declarations at the start of
6525 ---------------------------------------------------
6526 -- Handling of private data in protected objects --
6527 ---------------------------------------------------
6529 -- Private components in protected types pose problems similar to those
6530 -- of discriminants. Private data is visible and can be directly referenced
6531 -- from protected bodies. However, when protected entries and subprograms
6532 -- are expanded into corresponding bodies and barrier functions, private
6533 -- components lose their original context and visibility.
6535 -- To remedy this side effect of expansion, private components are expanded
6536 -- into renamings called "privals", by analogy with "discriminals".
6538 -- private_comp : comp_type renames _object.private_comp;
6540 -- Prival declarations are inserted during the analysis of subprogram and
6541 -- entry bodies to ensure proper visibility for any subsequent expansion.
6542 -- _Object is the formal parameter of the generated corresponding body or
6543 -- a local renaming which denotes the protected object obtained from entry
6544 -- parameter _O. Privals receive minimal decoration upon creation and are
6545 -- categorized as either E_Variable for the general case or E_Constant when
6546 -- they appear in functions.
6548 -- Along with the local declarations, each private component carries a
6549 -- placeholder which references the prival entity in the current body. This
6550 -- form of indirection is used to resolve name clashes of privals and other
6551 -- locally visible entities such as parameters, local objects, entry family
6552 -- indexes or identifiers used in the barrier condition.
6554 -- When analyzing the statements of a protected subprogram or entry, any
6555 -- reference to a private component must resolve to the locally declared
6556 -- prival through normal visibility. In case of name conflicts (the cases
6557 -- above), the prival is marked as hidden and acts as a weakly declared
6558 -- entity. As a result, the reference points to the correct entity. When a
6559 -- private component is denoted by an expanded name (prot_type.comp for
6560 -- example), the expansion mechanism uses the placeholder of the component
6561 -- to correct the Entity and Etype of the reference.
6567 -- The following type synonyms are used to tidy up the function and
6568 -- procedure declarations that follow, and also to make it possible to meet
6569 -- the requirement for the XEINFO utility that all function specs must fit
6570 -- on a single source line.
6572 subtype B
is Boolean;
6573 subtype C
is Component_Alignment_Kind
;
6574 subtype E
is Entity_Id
;
6575 subtype F
is Float_Rep_Kind
;
6576 subtype M
is Mechanism_Type
;
6577 subtype N
is Node_Id
;
6580 subtype L
is Elist_Id
;
6581 subtype S
is List_Id
;
6583 --------------------------------
6584 -- Attribute Access Functions --
6585 --------------------------------
6587 -- All attributes are manipulated through a procedural interface. This
6588 -- section contains the functions used to obtain attribute values which
6589 -- correspond to values in fields or flags in the entity itself.
6591 function Abstract_States
(Id
: E
) return L
;
6592 function Accept_Address
(Id
: E
) return L
;
6593 function Access_Disp_Table
(Id
: E
) return L
;
6594 function Activation_Record_Component
(Id
: E
) return E
;
6595 function Actual_Subtype
(Id
: E
) return E
;
6596 function Address_Taken
(Id
: E
) return B
;
6597 function Alias
(Id
: E
) return E
;
6598 function Alignment
(Id
: E
) return U
;
6599 function Associated_Formal_Package
(Id
: E
) return E
;
6600 function Associated_Node_For_Itype
(Id
: E
) return N
;
6601 function Associated_Storage_Pool
(Id
: E
) return E
;
6602 function Barrier_Function
(Id
: E
) return N
;
6603 function Block_Node
(Id
: E
) return N
;
6604 function Body_Entity
(Id
: E
) return E
;
6605 function Body_Needed_For_SAL
(Id
: E
) return B
;
6606 function Body_References
(Id
: E
) return L
;
6607 function BIP_Initialization_Call
(Id
: E
) return N
;
6608 function CR_Discriminant
(Id
: E
) return E
;
6609 function C_Pass_By_Copy
(Id
: E
) return B
;
6610 function Can_Never_Be_Null
(Id
: E
) return B
;
6611 function Can_Use_Internal_Rep
(Id
: E
) return B
;
6612 function Checks_May_Be_Suppressed
(Id
: E
) return B
;
6613 function Class_Wide_Type
(Id
: E
) return E
;
6614 function Cloned_Subtype
(Id
: E
) return E
;
6615 function Component_Alignment
(Id
: E
) return C
;
6616 function Component_Bit_Offset
(Id
: E
) return U
;
6617 function Component_Clause
(Id
: E
) return N
;
6618 function Component_Size
(Id
: E
) return U
;
6619 function Component_Type
(Id
: E
) return E
;
6620 function Contains_Ignored_Ghost_Code
(Id
: E
) return B
;
6621 function Contract
(Id
: E
) return N
;
6622 function Corresponding_Concurrent_Type
(Id
: E
) return E
;
6623 function Corresponding_Discriminant
(Id
: E
) return E
;
6624 function Corresponding_Equality
(Id
: E
) return E
;
6625 function Corresponding_Protected_Entry
(Id
: E
) return E
;
6626 function Corresponding_Record_Type
(Id
: E
) return E
;
6627 function Corresponding_Remote_Type
(Id
: E
) return E
;
6628 function Current_Use_Clause
(Id
: E
) return E
;
6629 function Current_Value
(Id
: E
) return N
;
6630 function DTC_Entity
(Id
: E
) return E
;
6631 function DT_Entry_Count
(Id
: E
) return U
;
6632 function DT_Offset_To_Top_Func
(Id
: E
) return E
;
6633 function DT_Position
(Id
: E
) return U
;
6634 function Debug_Info_Off
(Id
: E
) return B
;
6635 function Debug_Renaming_Link
(Id
: E
) return E
;
6636 function Default_Aspect_Component_Value
(Id
: E
) return N
;
6637 function Default_Aspect_Value
(Id
: E
) return N
;
6638 function Default_Expr_Function
(Id
: E
) return E
;
6639 function Default_Expressions_Processed
(Id
: E
) return B
;
6640 function Default_Value
(Id
: E
) return N
;
6641 function Delay_Cleanups
(Id
: E
) return B
;
6642 function Delay_Subprogram_Descriptors
(Id
: E
) return B
;
6643 function Delta_Value
(Id
: E
) return R
;
6644 function Dependent_Instances
(Id
: E
) return L
;
6645 function Depends_On_Private
(Id
: E
) return B
;
6646 function Derived_Type_Link
(Id
: E
) return E
;
6647 function Digits_Value
(Id
: E
) return U
;
6648 function Direct_Primitive_Operations
(Id
: E
) return L
;
6649 function Directly_Designated_Type
(Id
: E
) return E
;
6650 function Discard_Names
(Id
: E
) return B
;
6651 function Discriminal
(Id
: E
) return E
;
6652 function Discriminal_Link
(Id
: E
) return E
;
6653 function Discriminant_Checking_Func
(Id
: E
) return E
;
6654 function Discriminant_Constraint
(Id
: E
) return L
;
6655 function Discriminant_Default_Value
(Id
: E
) return N
;
6656 function Discriminant_Number
(Id
: E
) return U
;
6657 function Dispatch_Table_Wrappers
(Id
: E
) return L
;
6658 function Elaborate_Body_Desirable
(Id
: E
) return B
;
6659 function Elaboration_Entity
(Id
: E
) return E
;
6660 function Elaboration_Entity_Required
(Id
: E
) return B
;
6661 function Encapsulating_State
(Id
: E
) return E
;
6662 function Enclosing_Scope
(Id
: E
) return E
;
6663 function Entry_Accepted
(Id
: E
) return B
;
6664 function Entry_Bodies_Array
(Id
: E
) return E
;
6665 function Entry_Cancel_Parameter
(Id
: E
) return E
;
6666 function Entry_Component
(Id
: E
) return E
;
6667 function Entry_Formal
(Id
: E
) return E
;
6668 function Entry_Index_Constant
(Id
: E
) return E
;
6669 function Entry_Index_Type
(Id
: E
) return E
;
6670 function Entry_Parameters_Type
(Id
: E
) return E
;
6671 function Enum_Pos_To_Rep
(Id
: E
) return E
;
6672 function Enumeration_Pos
(Id
: E
) return U
;
6673 function Enumeration_Rep
(Id
: E
) return U
;
6674 function Enumeration_Rep_Expr
(Id
: E
) return N
;
6675 function Equivalent_Type
(Id
: E
) return E
;
6676 function Esize
(Id
: E
) return U
;
6677 function Extra_Accessibility
(Id
: E
) return E
;
6678 function Extra_Accessibility_Of_Result
(Id
: E
) return E
;
6679 function Extra_Constrained
(Id
: E
) return E
;
6680 function Extra_Formal
(Id
: E
) return E
;
6681 function Extra_Formals
(Id
: E
) return E
;
6682 function Finalization_Master
(Id
: E
) return E
;
6683 function Finalize_Storage_Only
(Id
: E
) return B
;
6684 function Finalizer
(Id
: E
) return E
;
6685 function First_Entity
(Id
: E
) return E
;
6686 function First_Exit_Statement
(Id
: E
) return N
;
6687 function First_Index
(Id
: E
) return N
;
6688 function First_Literal
(Id
: E
) return E
;
6689 function First_Private_Entity
(Id
: E
) return E
;
6690 function First_Rep_Item
(Id
: E
) return N
;
6691 function Float_Rep
(Id
: E
) return F
;
6692 function Freeze_Node
(Id
: E
) return N
;
6693 function From_Limited_With
(Id
: E
) return B
;
6694 function Full_View
(Id
: E
) return E
;
6695 function Generic_Homonym
(Id
: E
) return E
;
6696 function Generic_Renamings
(Id
: E
) return L
;
6697 function Handler_Records
(Id
: E
) return S
;
6698 function Has_Aliased_Components
(Id
: E
) return B
;
6699 function Has_Alignment_Clause
(Id
: E
) return B
;
6700 function Has_All_Calls_Remote
(Id
: E
) return B
;
6701 function Has_Anonymous_Master
(Id
: E
) return B
;
6702 function Has_Atomic_Components
(Id
: E
) return B
;
6703 function Has_Biased_Representation
(Id
: E
) return B
;
6704 function Has_Completion
(Id
: E
) return B
;
6705 function Has_Completion_In_Body
(Id
: E
) return B
;
6706 function Has_Complex_Representation
(Id
: E
) return B
;
6707 function Has_Component_Size_Clause
(Id
: E
) return B
;
6708 function Has_Constrained_Partial_View
(Id
: E
) return B
;
6709 function Has_Contiguous_Rep
(Id
: E
) return B
;
6710 function Has_Controlled_Component
(Id
: E
) return B
;
6711 function Has_Controlling_Result
(Id
: E
) return B
;
6712 function Has_Convention_Pragma
(Id
: E
) return B
;
6713 function Has_Default_Aspect
(Id
: E
) return B
;
6714 function Has_Default_Init_Cond
(Id
: E
) return B
;
6715 function Has_Delayed_Aspects
(Id
: E
) return B
;
6716 function Has_Delayed_Freeze
(Id
: E
) return B
;
6717 function Has_Delayed_Rep_Aspects
(Id
: E
) return B
;
6718 function Has_Discriminants
(Id
: E
) return B
;
6719 function Has_Dispatch_Table
(Id
: E
) return B
;
6720 function Has_Dynamic_Predicate_Aspect
(Id
: E
) return B
;
6721 function Has_Enumeration_Rep_Clause
(Id
: E
) return B
;
6722 function Has_Exit
(Id
: E
) return B
;
6723 function Has_Expanded_Contract
(Id
: E
) return B
;
6724 function Has_Forward_Instantiation
(Id
: E
) return B
;
6725 function Has_Fully_Qualified_Name
(Id
: E
) return B
;
6726 function Has_Gigi_Rep_Item
(Id
: E
) return B
;
6727 function Has_Homonym
(Id
: E
) return B
;
6728 function Has_Implicit_Dereference
(Id
: E
) return B
;
6729 function Has_Independent_Components
(Id
: E
) return B
;
6730 function Has_Inheritable_Invariants
(Id
: E
) return B
;
6731 function Has_Inherited_Default_Init_Cond
(Id
: E
) return B
;
6732 function Has_Initial_Value
(Id
: E
) return B
;
6733 function Has_Interrupt_Handler
(Id
: E
) return B
;
6734 function Has_Invariants
(Id
: E
) return B
;
6735 function Has_Loop_Entry_Attributes
(Id
: E
) return B
;
6736 function Has_Machine_Radix_Clause
(Id
: E
) return B
;
6737 function Has_Master_Entity
(Id
: E
) return B
;
6738 function Has_Missing_Return
(Id
: E
) return B
;
6739 function Has_Nested_Block_With_Handler
(Id
: E
) return B
;
6740 function Has_Nested_Subprogram
(Id
: E
) return B
;
6741 function Has_Non_Standard_Rep
(Id
: E
) return B
;
6742 function Has_Object_Size_Clause
(Id
: E
) return B
;
6743 function Has_Out_Or_In_Out_Parameter
(Id
: E
) return B
;
6744 function Has_Per_Object_Constraint
(Id
: E
) return B
;
6745 function Has_Pragma_Controlled
(Id
: E
) return B
;
6746 function Has_Pragma_Elaborate_Body
(Id
: E
) return B
;
6747 function Has_Pragma_Inline
(Id
: E
) return B
;
6748 function Has_Pragma_Inline_Always
(Id
: E
) return B
;
6749 function Has_Pragma_No_Inline
(Id
: E
) return B
;
6750 function Has_Pragma_Ordered
(Id
: E
) return B
;
6751 function Has_Pragma_Pack
(Id
: E
) return B
;
6752 function Has_Pragma_Preelab_Init
(Id
: E
) return B
;
6753 function Has_Pragma_Pure
(Id
: E
) return B
;
6754 function Has_Pragma_Pure_Function
(Id
: E
) return B
;
6755 function Has_Pragma_Thread_Local_Storage
(Id
: E
) return B
;
6756 function Has_Pragma_Unmodified
(Id
: E
) return B
;
6757 function Has_Pragma_Unreferenced
(Id
: E
) return B
;
6758 function Has_Pragma_Unreferenced_Objects
(Id
: E
) return B
;
6759 function Has_Predicates
(Id
: E
) return B
;
6760 function Has_Primitive_Operations
(Id
: E
) return B
;
6761 function Has_Private_Ancestor
(Id
: E
) return B
;
6762 function Has_Private_Declaration
(Id
: E
) return B
;
6763 function Has_Protected
(Id
: E
) return B
;
6764 function Has_Qualified_Name
(Id
: E
) return B
;
6765 function Has_RACW
(Id
: E
) return B
;
6766 function Has_Record_Rep_Clause
(Id
: E
) return B
;
6767 function Has_Recursive_Call
(Id
: E
) return B
;
6768 function Has_Shift_Operator
(Id
: E
) return B
;
6769 function Has_Size_Clause
(Id
: E
) return B
;
6770 function Has_Small_Clause
(Id
: E
) return B
;
6771 function Has_Specified_Layout
(Id
: E
) return B
;
6772 function Has_Specified_Stream_Input
(Id
: E
) return B
;
6773 function Has_Specified_Stream_Output
(Id
: E
) return B
;
6774 function Has_Specified_Stream_Read
(Id
: E
) return B
;
6775 function Has_Specified_Stream_Write
(Id
: E
) return B
;
6776 function Has_Static_Discriminants
(Id
: E
) return B
;
6777 function Has_Static_Predicate
(Id
: E
) return B
;
6778 function Has_Static_Predicate_Aspect
(Id
: E
) return B
;
6779 function Has_Storage_Size_Clause
(Id
: E
) return B
;
6780 function Has_Stream_Size_Clause
(Id
: E
) return B
;
6781 function Has_Task
(Id
: E
) return B
;
6782 function Has_Thunks
(Id
: E
) return B
;
6783 function Has_Unchecked_Union
(Id
: E
) return B
;
6784 function Has_Unknown_Discriminants
(Id
: E
) return B
;
6785 function Has_Uplevel_Reference
(Id
: E
) return B
;
6786 function Has_Visible_Refinement
(Id
: E
) return B
;
6787 function Has_Volatile_Components
(Id
: E
) return B
;
6788 function Has_Xref_Entry
(Id
: E
) return B
;
6789 function Hiding_Loop_Variable
(Id
: E
) return E
;
6790 function Homonym
(Id
: E
) return E
;
6791 function Import_Pragma
(Id
: E
) return E
;
6792 function In_Package_Body
(Id
: E
) return B
;
6793 function In_Private_Part
(Id
: E
) return B
;
6794 function In_Use
(Id
: E
) return B
;
6795 function Initialization_Statements
(Id
: E
) return N
;
6796 function Inner_Instances
(Id
: E
) return L
;
6797 function Interface_Alias
(Id
: E
) return E
;
6798 function Interface_Name
(Id
: E
) return N
;
6799 function Interfaces
(Id
: E
) return L
;
6800 function Is_Abstract_Subprogram
(Id
: E
) return B
;
6801 function Is_Abstract_Type
(Id
: E
) return B
;
6802 function Is_Access_Constant
(Id
: E
) return B
;
6803 function Is_Ada_2005_Only
(Id
: E
) return B
;
6804 function Is_Ada_2012_Only
(Id
: E
) return B
;
6805 function Is_Aliased
(Id
: E
) return B
;
6806 function Is_Asynchronous
(Id
: E
) return B
;
6807 function Is_Atomic
(Id
: E
) return B
;
6808 function Is_Bit_Packed_Array
(Id
: E
) return B
;
6809 function Is_CPP_Class
(Id
: E
) return B
;
6810 function Is_Called
(Id
: E
) return B
;
6811 function Is_Character_Type
(Id
: E
) return B
;
6812 function Is_Checked_Ghost_Entity
(Id
: E
) return B
;
6813 function Is_Child_Unit
(Id
: E
) return B
;
6814 function Is_Class_Wide_Equivalent_Type
(Id
: E
) return B
;
6815 function Is_Compilation_Unit
(Id
: E
) return B
;
6816 function Is_Completely_Hidden
(Id
: E
) return B
;
6817 function Is_Constr_Subt_For_UN_Aliased
(Id
: E
) return B
;
6818 function Is_Constr_Subt_For_U_Nominal
(Id
: E
) return B
;
6819 function Is_Constrained
(Id
: E
) return B
;
6820 function Is_Constructor
(Id
: E
) return B
;
6821 function Is_Controlled
(Id
: E
) return B
;
6822 function Is_Controlling_Formal
(Id
: E
) return B
;
6823 function Is_Default_Init_Cond_Procedure
(Id
: E
) return B
;
6824 function Is_Descendent_Of_Address
(Id
: E
) return B
;
6825 function Is_Discrim_SO_Function
(Id
: E
) return B
;
6826 function Is_Discriminant_Check_Function
(Id
: E
) return B
;
6827 function Is_Dispatch_Table_Entity
(Id
: E
) return B
;
6828 function Is_Dispatching_Operation
(Id
: E
) return B
;
6829 function Is_Eliminated
(Id
: E
) return B
;
6830 function Is_Entry_Formal
(Id
: E
) return B
;
6831 function Is_Exported
(Id
: E
) return B
;
6832 function Is_First_Subtype
(Id
: E
) return B
;
6833 function Is_For_Access_Subtype
(Id
: E
) return B
;
6834 function Is_Frozen
(Id
: E
) return B
;
6835 function Is_Generic_Instance
(Id
: E
) return B
;
6836 function Is_Hidden
(Id
: E
) return B
;
6837 function Is_Hidden_Non_Overridden_Subpgm
(Id
: E
) return B
;
6838 function Is_Hidden_Open_Scope
(Id
: E
) return B
;
6839 function Is_Ignored_Ghost_Entity
(Id
: E
) return B
;
6840 function Is_Immediately_Visible
(Id
: E
) return B
;
6841 function Is_Implementation_Defined
(Id
: E
) return B
;
6842 function Is_Imported
(Id
: E
) return B
;
6843 function Is_Independent
(Id
: E
) return B
;
6844 function Is_Inlined
(Id
: E
) return B
;
6845 function Is_Inlined_Always
(Id
: E
) return B
;
6846 function Is_Instantiated
(Id
: E
) return B
;
6847 function Is_Interface
(Id
: E
) return B
;
6848 function Is_Internal
(Id
: E
) return B
;
6849 function Is_Interrupt_Handler
(Id
: E
) return B
;
6850 function Is_Intrinsic_Subprogram
(Id
: E
) return B
;
6851 function Is_Invariant_Procedure
(Id
: E
) return B
;
6852 function Is_Itype
(Id
: E
) return B
;
6853 function Is_Known_Non_Null
(Id
: E
) return B
;
6854 function Is_Known_Null
(Id
: E
) return B
;
6855 function Is_Known_Valid
(Id
: E
) return B
;
6856 function Is_Limited_Composite
(Id
: E
) return B
;
6857 function Is_Limited_Interface
(Id
: E
) return B
;
6858 function Is_Local_Anonymous_Access
(Id
: E
) return B
;
6859 function Is_Machine_Code_Subprogram
(Id
: E
) return B
;
6860 function Is_Non_Static_Subtype
(Id
: E
) return B
;
6861 function Is_Null_Init_Proc
(Id
: E
) return B
;
6862 function Is_Obsolescent
(Id
: E
) return B
;
6863 function Is_Only_Out_Parameter
(Id
: E
) return B
;
6864 function Is_Package_Body_Entity
(Id
: E
) return B
;
6865 function Is_Packed
(Id
: E
) return B
;
6866 function Is_Packed_Array_Impl_Type
(Id
: E
) return B
;
6867 function Is_Potentially_Use_Visible
(Id
: E
) return B
;
6868 function Is_Predicate_Function
(Id
: E
) return B
;
6869 function Is_Predicate_Function_M
(Id
: E
) return B
;
6870 function Is_Preelaborated
(Id
: E
) return B
;
6871 function Is_Primitive
(Id
: E
) return B
;
6872 function Is_Primitive_Wrapper
(Id
: E
) return B
;
6873 function Is_Private_Composite
(Id
: E
) return B
;
6874 function Is_Private_Descendant
(Id
: E
) return B
;
6875 function Is_Private_Primitive
(Id
: E
) return B
;
6876 function Is_Processed_Transient
(Id
: E
) return B
;
6877 function Is_Public
(Id
: E
) return B
;
6878 function Is_Pure
(Id
: E
) return B
;
6879 function Is_Pure_Unit_Access_Type
(Id
: E
) return B
;
6880 function Is_RACW_Stub_Type
(Id
: E
) return B
;
6881 function Is_Raised
(Id
: E
) return B
;
6882 function Is_Remote_Call_Interface
(Id
: E
) return B
;
6883 function Is_Remote_Types
(Id
: E
) return B
;
6884 function Is_Renaming_Of_Object
(Id
: E
) return B
;
6885 function Is_Return_Object
(Id
: E
) return B
;
6886 function Is_Safe_To_Reevaluate
(Id
: E
) return B
;
6887 function Is_Shared_Passive
(Id
: E
) return B
;
6888 function Is_Static_Type
(Id
: E
) return B
;
6889 function Is_Statically_Allocated
(Id
: E
) return B
;
6890 function Is_Tag
(Id
: E
) return B
;
6891 function Is_Tagged_Type
(Id
: E
) return B
;
6892 function Is_Thunk
(Id
: E
) return B
;
6893 function Is_Trivial_Subprogram
(Id
: E
) return B
;
6894 function Is_True_Constant
(Id
: E
) return B
;
6895 function Is_Unchecked_Union
(Id
: E
) return B
;
6896 function Is_Underlying_Record_View
(Id
: E
) return B
;
6897 function Is_Unsigned_Type
(Id
: E
) return B
;
6898 function Is_Valued_Procedure
(Id
: E
) return B
;
6899 function Is_Visible_Formal
(Id
: E
) return B
;
6900 function Is_Visible_Lib_Unit
(Id
: E
) return B
;
6901 function Is_Volatile
(Id
: E
) return B
;
6902 function Itype_Printed
(Id
: E
) return B
;
6903 function Kill_Elaboration_Checks
(Id
: E
) return B
;
6904 function Kill_Range_Checks
(Id
: E
) return B
;
6905 function Known_To_Have_Preelab_Init
(Id
: E
) return B
;
6906 function Last_Aggregate_Assignment
(Id
: E
) return N
;
6907 function Last_Assignment
(Id
: E
) return N
;
6908 function Last_Entity
(Id
: E
) return E
;
6909 function Limited_View
(Id
: E
) return E
;
6910 function Linker_Section_Pragma
(Id
: E
) return N
;
6911 function Lit_Indexes
(Id
: E
) return E
;
6912 function Lit_Strings
(Id
: E
) return E
;
6913 function Low_Bound_Tested
(Id
: E
) return B
;
6914 function Machine_Radix_10
(Id
: E
) return B
;
6915 function Master_Id
(Id
: E
) return E
;
6916 function Materialize_Entity
(Id
: E
) return B
;
6917 function May_Inherit_Delayed_Rep_Aspects
(Id
: E
) return B
;
6918 function Mechanism
(Id
: E
) return M
;
6919 function Modulus
(Id
: E
) return U
;
6920 function Must_Be_On_Byte_Boundary
(Id
: E
) return B
;
6921 function Must_Have_Preelab_Init
(Id
: E
) return B
;
6922 function Needs_Debug_Info
(Id
: E
) return B
;
6923 function Needs_No_Actuals
(Id
: E
) return B
;
6924 function Never_Set_In_Source
(Id
: E
) return B
;
6925 function Next_Inlined_Subprogram
(Id
: E
) return E
;
6926 function No_Dynamic_Predicate_On_Actual
(Id
: E
) return B
;
6927 function No_Pool_Assigned
(Id
: E
) return B
;
6928 function No_Predicate_On_Actual
(Id
: E
) return B
;
6929 function No_Return
(Id
: E
) return B
;
6930 function No_Strict_Aliasing
(Id
: E
) return B
;
6931 function No_Tagged_Streams_Pragma
(Id
: E
) return N
;
6932 function Non_Binary_Modulus
(Id
: E
) return B
;
6933 function Non_Limited_View
(Id
: E
) return E
;
6934 function Nonzero_Is_True
(Id
: E
) return B
;
6935 function Normalized_First_Bit
(Id
: E
) return U
;
6936 function Normalized_Position
(Id
: E
) return U
;
6937 function Normalized_Position_Max
(Id
: E
) return U
;
6938 function OK_To_Rename
(Id
: E
) return B
;
6939 function OK_To_Reorder_Components
(Id
: E
) return B
;
6940 function Optimize_Alignment_Space
(Id
: E
) return B
;
6941 function Optimize_Alignment_Time
(Id
: E
) return B
;
6942 function Original_Access_Type
(Id
: E
) return E
;
6943 function Original_Array_Type
(Id
: E
) return E
;
6944 function Original_Record_Component
(Id
: E
) return E
;
6945 function Overlays_Constant
(Id
: E
) return B
;
6946 function Overridden_Operation
(Id
: E
) return E
;
6947 function PPC_Wrapper
(Id
: E
) return E
;
6948 function Package_Instantiation
(Id
: E
) return N
;
6949 function Packed_Array_Impl_Type
(Id
: E
) return E
;
6950 function Parent_Subtype
(Id
: E
) return E
;
6951 function Part_Of_Constituents
(Id
: E
) return L
;
6952 function Partial_View_Has_Unknown_Discr
(Id
: E
) return B
;
6953 function Pending_Access_Types
(Id
: E
) return L
;
6954 function Postconditions_Proc
(Id
: E
) return E
;
6955 function Prival
(Id
: E
) return E
;
6956 function Prival_Link
(Id
: E
) return E
;
6957 function Private_Dependents
(Id
: E
) return L
;
6958 function Private_View
(Id
: E
) return N
;
6959 function Protected_Body_Subprogram
(Id
: E
) return E
;
6960 function Protected_Formal
(Id
: E
) return E
;
6961 function Protection_Object
(Id
: E
) return E
;
6962 function RM_Size
(Id
: E
) return U
;
6963 function Reachable
(Id
: E
) return B
;
6964 function Referenced
(Id
: E
) return B
;
6965 function Referenced_As_LHS
(Id
: E
) return B
;
6966 function Referenced_As_Out_Parameter
(Id
: E
) return B
;
6967 function Refinement_Constituents
(Id
: E
) return L
;
6968 function Register_Exception_Call
(Id
: E
) return N
;
6969 function Related_Array_Object
(Id
: E
) return E
;
6970 function Related_Expression
(Id
: E
) return N
;
6971 function Related_Instance
(Id
: E
) return E
;
6972 function Related_Type
(Id
: E
) return E
;
6973 function Relative_Deadline_Variable
(Id
: E
) return E
;
6974 function Renamed_Entity
(Id
: E
) return N
;
6975 function Renamed_In_Spec
(Id
: E
) return B
;
6976 function Renamed_Object
(Id
: E
) return N
;
6977 function Renaming_Map
(Id
: E
) return U
;
6978 function Requires_Overriding
(Id
: E
) return B
;
6979 function Return_Applies_To
(Id
: E
) return N
;
6980 function Return_Present
(Id
: E
) return B
;
6981 function Returns_By_Ref
(Id
: E
) return B
;
6982 function Returns_Limited_View
(Id
: E
) return B
;
6983 function Reverse_Bit_Order
(Id
: E
) return B
;
6984 function Reverse_Storage_Order
(Id
: E
) return B
;
6985 function Scalar_Range
(Id
: E
) return N
;
6986 function Scale_Value
(Id
: E
) return U
;
6987 function Scope_Depth_Value
(Id
: E
) return U
;
6988 function Sec_Stack_Needed_For_Return
(Id
: E
) return B
;
6989 function Shadow_Entities
(Id
: E
) return S
;
6990 function Shared_Var_Procs_Instance
(Id
: E
) return E
;
6991 function Size_Check_Code
(Id
: E
) return N
;
6992 function Size_Depends_On_Discriminant
(Id
: E
) return B
;
6993 function Size_Known_At_Compile_Time
(Id
: E
) return B
;
6994 function Small_Value
(Id
: E
) return R
;
6995 function SPARK_Aux_Pragma
(Id
: E
) return N
;
6996 function SPARK_Aux_Pragma_Inherited
(Id
: E
) return B
;
6997 function SPARK_Pragma
(Id
: E
) return N
;
6998 function SPARK_Pragma_Inherited
(Id
: E
) return B
;
6999 function Spec_Entity
(Id
: E
) return E
;
7000 function SSO_Set_High_By_Default
(Id
: E
) return B
;
7001 function SSO_Set_Low_By_Default
(Id
: E
) return B
;
7002 function Static_Elaboration_Desired
(Id
: E
) return B
;
7003 function Static_Initialization
(Id
: E
) return N
;
7004 function Static_Discrete_Predicate
(Id
: E
) return S
;
7005 function Static_Real_Or_String_Predicate
(Id
: E
) return N
;
7006 function Status_Flag_Or_Transient_Decl
(Id
: E
) return E
;
7007 function Storage_Size_Variable
(Id
: E
) return E
;
7008 function Stored_Constraint
(Id
: E
) return L
;
7009 function Stores_Attribute_Old_Prefix
(Id
: E
) return B
;
7010 function Strict_Alignment
(Id
: E
) return B
;
7011 function String_Literal_Length
(Id
: E
) return U
;
7012 function String_Literal_Low_Bound
(Id
: E
) return N
;
7013 function Subprograms_For_Type
(Id
: E
) return E
;
7014 function Subps_Index
(Id
: E
) return U
;
7015 function Suppress_Elaboration_Warnings
(Id
: E
) return B
;
7016 function Suppress_Initialization
(Id
: E
) return B
;
7017 function Suppress_Style_Checks
(Id
: E
) return B
;
7018 function Suppress_Value_Tracking_On_Call
(Id
: E
) return B
;
7019 function Task_Body_Procedure
(Id
: E
) return N
;
7020 function Thunk_Entity
(Id
: E
) return E
;
7021 function Treat_As_Volatile
(Id
: E
) return B
;
7022 function Underlying_Full_View
(Id
: E
) return E
;
7023 function Underlying_Record_View
(Id
: E
) return E
;
7024 function Universal_Aliasing
(Id
: E
) return B
;
7025 function Unset_Reference
(Id
: E
) return N
;
7026 function Uplevel_Reference_Noted
(Id
: E
) return B
;
7027 function Uplevel_References
(Id
: E
) return L
;
7028 function Used_As_Generic_Actual
(Id
: E
) return B
;
7029 function Uses_Lock_Free
(Id
: E
) return B
;
7030 function Uses_Sec_Stack
(Id
: E
) return B
;
7031 function Warnings_Off
(Id
: E
) return B
;
7032 function Warnings_Off_Used
(Id
: E
) return B
;
7033 function Warnings_Off_Used_Unmodified
(Id
: E
) return B
;
7034 function Warnings_Off_Used_Unreferenced
(Id
: E
) return B
;
7035 function Was_Hidden
(Id
: E
) return B
;
7036 function Wrapped_Entity
(Id
: E
) return E
;
7038 -------------------------------
7039 -- Classification Attributes --
7040 -------------------------------
7042 -- These functions provide a convenient functional notation for testing
7043 -- whether an Ekind value belongs to a specified kind, for example the
7044 -- function Is_Elementary_Type tests if its argument is in Elementary_Kind.
7045 -- In some cases, the test is of an entity attribute (e.g. in the case of
7046 -- Is_Generic_Type where the Ekind does not provide the needed information)
7048 function Is_Access_Type
(Id
: E
) return B
;
7049 function Is_Access_Protected_Subprogram_Type
(Id
: E
) return B
;
7050 function Is_Access_Subprogram_Type
(Id
: E
) return B
;
7051 function Is_Aggregate_Type
(Id
: E
) return B
;
7052 function Is_Array_Type
(Id
: E
) return B
;
7053 function Is_Assignable
(Id
: E
) return B
;
7054 function Is_Class_Wide_Type
(Id
: E
) return B
;
7055 function Is_Composite_Type
(Id
: E
) return B
;
7056 function Is_Concurrent_Body
(Id
: E
) return B
;
7057 function Is_Concurrent_Record_Type
(Id
: E
) return B
;
7058 function Is_Concurrent_Type
(Id
: E
) return B
;
7059 function Is_Decimal_Fixed_Point_Type
(Id
: E
) return B
;
7060 function Is_Digits_Type
(Id
: E
) return B
;
7061 function Is_Discrete_Or_Fixed_Point_Type
(Id
: E
) return B
;
7062 function Is_Discrete_Type
(Id
: E
) return B
;
7063 function Is_Elementary_Type
(Id
: E
) return B
;
7064 function Is_Entry
(Id
: E
) return B
;
7065 function Is_Enumeration_Type
(Id
: E
) return B
;
7066 function Is_Fixed_Point_Type
(Id
: E
) return B
;
7067 function Is_Floating_Point_Type
(Id
: E
) return B
;
7068 function Is_Formal
(Id
: E
) return B
;
7069 function Is_Formal_Object
(Id
: E
) return B
;
7070 function Is_Formal_Subprogram
(Id
: E
) return B
;
7071 function Is_Generic_Actual_Subprogram
(Id
: E
) return B
;
7072 function Is_Generic_Actual_Type
(Id
: E
) return B
;
7073 function Is_Generic_Unit
(Id
: E
) return B
;
7074 function Is_Generic_Type
(Id
: E
) return B
;
7075 function Is_Generic_Subprogram
(Id
: E
) return B
;
7076 function Is_Incomplete_Or_Private_Type
(Id
: E
) return B
;
7077 function Is_Incomplete_Type
(Id
: E
) return B
;
7078 function Is_Integer_Type
(Id
: E
) return B
;
7079 function Is_Limited_Record
(Id
: E
) return B
;
7080 function Is_Modular_Integer_Type
(Id
: E
) return B
;
7081 function Is_Named_Number
(Id
: E
) return B
;
7082 function Is_Numeric_Type
(Id
: E
) return B
;
7083 function Is_Object
(Id
: E
) return B
;
7084 function Is_Ordinary_Fixed_Point_Type
(Id
: E
) return B
;
7085 function Is_Overloadable
(Id
: E
) return B
;
7086 function Is_Private_Type
(Id
: E
) return B
;
7087 function Is_Protected_Type
(Id
: E
) return B
;
7088 function Is_Real_Type
(Id
: E
) return B
;
7089 function Is_Record_Type
(Id
: E
) return B
;
7090 function Is_Scalar_Type
(Id
: E
) return B
;
7091 function Is_Signed_Integer_Type
(Id
: E
) return B
;
7092 function Is_Subprogram
(Id
: E
) return B
;
7093 function Is_Subprogram_Or_Generic_Subprogram
(Id
: E
) return B
;
7094 function Is_Task_Type
(Id
: E
) return B
;
7095 function Is_Type
(Id
: E
) return B
;
7097 -------------------------------------
7098 -- Synthesized Attribute Functions --
7099 -------------------------------------
7101 -- The functions in this section synthesize attributes from the tree,
7102 -- so they do not correspond to defined fields in the entity itself.
7104 function Address_Clause
(Id
: E
) return N
;
7105 function Aft_Value
(Id
: E
) return U
;
7106 function Alignment_Clause
(Id
: E
) return N
;
7107 function Base_Type
(Id
: E
) return E
;
7108 function Declaration_Node
(Id
: E
) return N
;
7109 function Designated_Type
(Id
: E
) return E
;
7110 function First_Component
(Id
: E
) return E
;
7111 function First_Component_Or_Discriminant
(Id
: E
) return E
;
7112 function First_Formal
(Id
: E
) return E
;
7113 function First_Formal_With_Extras
(Id
: E
) return E
;
7114 function Has_Attach_Handler
(Id
: E
) return B
;
7115 function Has_Entries
(Id
: E
) return B
;
7116 function Has_Foreign_Convention
(Id
: E
) return B
;
7117 function Has_Non_Null_Refinement
(Id
: E
) return B
;
7118 function Has_Null_Abstract_State
(Id
: E
) return B
;
7119 function Has_Null_Refinement
(Id
: E
) return B
;
7120 function Implementation_Base_Type
(Id
: E
) return E
;
7121 function Is_Base_Type
(Id
: E
) return B
;
7122 function Is_Boolean_Type
(Id
: E
) return B
;
7123 function Is_Constant_Object
(Id
: E
) return B
;
7124 function Is_Discriminal
(Id
: E
) return B
;
7125 function Is_Dynamic_Scope
(Id
: E
) return B
;
7126 function Is_External_State
(Id
: E
) return B
;
7127 function Is_Finalizer
(Id
: E
) return B
;
7128 function Is_Null_State
(Id
: E
) return B
;
7129 function Is_Package_Or_Generic_Package
(Id
: E
) return B
;
7130 function Is_Packed_Array
(Id
: E
) return B
;
7131 function Is_Prival
(Id
: E
) return B
;
7132 function Is_Protected_Component
(Id
: E
) return B
;
7133 function Is_Protected_Interface
(Id
: E
) return B
;
7134 function Is_Protected_Record_Type
(Id
: E
) return B
;
7135 function Is_Standard_Character_Type
(Id
: E
) return B
;
7136 function Is_Standard_String_Type
(Id
: E
) return B
;
7137 function Is_String_Type
(Id
: E
) return B
;
7138 function Is_Synchronized_Interface
(Id
: E
) return B
;
7139 function Is_Task_Interface
(Id
: E
) return B
;
7140 function Is_Task_Record_Type
(Id
: E
) return B
;
7141 function Is_Wrapper_Package
(Id
: E
) return B
;
7142 function Last_Formal
(Id
: E
) return E
;
7143 function Machine_Emax_Value
(Id
: E
) return U
;
7144 function Machine_Emin_Value
(Id
: E
) return U
;
7145 function Machine_Mantissa_Value
(Id
: E
) return U
;
7146 function Machine_Radix_Value
(Id
: E
) return U
;
7147 function Model_Emin_Value
(Id
: E
) return U
;
7148 function Model_Epsilon_Value
(Id
: E
) return R
;
7149 function Model_Mantissa_Value
(Id
: E
) return U
;
7150 function Model_Small_Value
(Id
: E
) return R
;
7151 function Next_Component
(Id
: E
) return E
;
7152 function Next_Component_Or_Discriminant
(Id
: E
) return E
;
7153 function Next_Discriminant
(Id
: E
) return E
;
7154 function Next_Formal
(Id
: E
) return E
;
7155 function Next_Formal_With_Extras
(Id
: E
) return E
;
7156 function Next_Literal
(Id
: E
) return E
;
7157 function Next_Stored_Discriminant
(Id
: E
) return E
;
7158 function Number_Dimensions
(Id
: E
) return Pos
;
7159 function Number_Entries
(Id
: E
) return Nat
;
7160 function Number_Formals
(Id
: E
) return Pos
;
7161 function Parameter_Mode
(Id
: E
) return Formal_Kind
;
7162 function Primitive_Operations
(Id
: E
) return L
;
7163 function Root_Type
(Id
: E
) return E
;
7164 function Safe_Emax_Value
(Id
: E
) return U
;
7165 function Safe_First_Value
(Id
: E
) return R
;
7166 function Safe_Last_Value
(Id
: E
) return R
;
7167 function Scope_Depth_Set
(Id
: E
) return B
;
7168 function Size_Clause
(Id
: E
) return N
;
7169 function Stream_Size_Clause
(Id
: E
) return N
;
7170 function Type_High_Bound
(Id
: E
) return N
;
7171 function Type_Low_Bound
(Id
: E
) return N
;
7172 function Underlying_Type
(Id
: E
) return E
;
7174 ----------------------------------------------
7175 -- Type Representation Attribute Predicates --
7176 ----------------------------------------------
7178 -- These predicates test the setting of the indicated attribute. If the
7179 -- value has been set, then Known is True, and Unknown is False. If no
7180 -- value is set, then Known is False and Unknown is True. The Known_Static
7181 -- predicate is true only if the value is set (Known) and is set to a
7182 -- compile time known value. Note that in the case of Alignment and
7183 -- Normalized_First_Bit, dynamic values are not possible, so we do not
7184 -- need a separate Known_Static calls in these cases. The not set (unknown)
7185 -- values are as follows:
7187 -- Alignment Uint_0 or No_Uint
7188 -- Component_Size Uint_0 or No_Uint
7189 -- Component_Bit_Offset No_Uint
7190 -- Digits_Value Uint_0 or No_Uint
7191 -- Esize Uint_0 or No_Uint
7192 -- Normalized_First_Bit No_Uint
7193 -- Normalized_Position No_Uint
7194 -- Normalized_Position_Max No_Uint
7195 -- RM_Size Uint_0 or No_Uint
7197 -- It would be cleaner to use No_Uint in all these cases, but historically
7198 -- we chose to use Uint_0 at first, and the change over will take time ???
7199 -- This is particularly true for the RM_Size field, where a value of zero
7200 -- is legitimate. We deal with this by a considering that the value is
7201 -- always known static for discrete types (and no other types can have
7202 -- an RM_Size value of zero).
7204 -- In two cases, Known_Static_Esize and Known_Static_RM_Size, there is one
7205 -- more consideration, which is that we always return False for generic
7206 -- types. Within a template, the size can look known, because of the fake
7207 -- size values we put in template types, but they are not really known and
7208 -- anyone testing if they are known within the template should get False as
7209 -- a result to prevent incorrect assumptions.
7211 function Known_Alignment
(E
: Entity_Id
) return B
;
7212 function Known_Component_Bit_Offset
(E
: Entity_Id
) return B
;
7213 function Known_Component_Size
(E
: Entity_Id
) return B
;
7214 function Known_Esize
(E
: Entity_Id
) return B
;
7215 function Known_Normalized_First_Bit
(E
: Entity_Id
) return B
;
7216 function Known_Normalized_Position
(E
: Entity_Id
) return B
;
7217 function Known_Normalized_Position_Max
(E
: Entity_Id
) return B
;
7218 function Known_RM_Size
(E
: Entity_Id
) return B
;
7220 function Known_Static_Component_Bit_Offset
(E
: Entity_Id
) return B
;
7221 function Known_Static_Component_Size
(E
: Entity_Id
) return B
;
7222 function Known_Static_Esize
(E
: Entity_Id
) return B
;
7223 function Known_Static_Normalized_First_Bit
(E
: Entity_Id
) return B
;
7224 function Known_Static_Normalized_Position
(E
: Entity_Id
) return B
;
7225 function Known_Static_Normalized_Position_Max
(E
: Entity_Id
) return B
;
7226 function Known_Static_RM_Size
(E
: Entity_Id
) return B
;
7228 function Unknown_Alignment
(E
: Entity_Id
) return B
;
7229 function Unknown_Component_Bit_Offset
(E
: Entity_Id
) return B
;
7230 function Unknown_Component_Size
(E
: Entity_Id
) return B
;
7231 function Unknown_Esize
(E
: Entity_Id
) return B
;
7232 function Unknown_Normalized_First_Bit
(E
: Entity_Id
) return B
;
7233 function Unknown_Normalized_Position
(E
: Entity_Id
) return B
;
7234 function Unknown_Normalized_Position_Max
(E
: Entity_Id
) return B
;
7235 function Unknown_RM_Size
(E
: Entity_Id
) return B
;
7237 ------------------------------
7238 -- Attribute Set Procedures --
7239 ------------------------------
7241 procedure Set_Abstract_States
(Id
: E
; V
: L
);
7242 procedure Set_Accept_Address
(Id
: E
; V
: L
);
7243 procedure Set_Access_Disp_Table
(Id
: E
; V
: L
);
7244 procedure Set_Activation_Record_Component
(Id
: E
; V
: E
);
7245 procedure Set_Actual_Subtype
(Id
: E
; V
: E
);
7246 procedure Set_Address_Taken
(Id
: E
; V
: B
:= True);
7247 procedure Set_Alias
(Id
: E
; V
: E
);
7248 procedure Set_Alignment
(Id
: E
; V
: U
);
7249 procedure Set_Associated_Formal_Package
(Id
: E
; V
: E
);
7250 procedure Set_Associated_Node_For_Itype
(Id
: E
; V
: N
);
7251 procedure Set_Associated_Storage_Pool
(Id
: E
; V
: E
);
7252 procedure Set_Barrier_Function
(Id
: E
; V
: N
);
7253 procedure Set_Block_Node
(Id
: E
; V
: N
);
7254 procedure Set_Body_Entity
(Id
: E
; V
: E
);
7255 procedure Set_Body_Needed_For_SAL
(Id
: E
; V
: B
:= True);
7256 procedure Set_Body_References
(Id
: E
; V
: L
);
7257 procedure Set_BIP_Initialization_Call
(Id
: E
; V
: N
);
7258 procedure Set_CR_Discriminant
(Id
: E
; V
: E
);
7259 procedure Set_C_Pass_By_Copy
(Id
: E
; V
: B
:= True);
7260 procedure Set_Can_Never_Be_Null
(Id
: E
; V
: B
:= True);
7261 procedure Set_Can_Use_Internal_Rep
(Id
: E
; V
: B
:= True);
7262 procedure Set_Checks_May_Be_Suppressed
(Id
: E
; V
: B
:= True);
7263 procedure Set_Class_Wide_Type
(Id
: E
; V
: E
);
7264 procedure Set_Cloned_Subtype
(Id
: E
; V
: E
);
7265 procedure Set_Component_Alignment
(Id
: E
; V
: C
);
7266 procedure Set_Component_Bit_Offset
(Id
: E
; V
: U
);
7267 procedure Set_Component_Clause
(Id
: E
; V
: N
);
7268 procedure Set_Component_Size
(Id
: E
; V
: U
);
7269 procedure Set_Component_Type
(Id
: E
; V
: E
);
7270 procedure Set_Contains_Ignored_Ghost_Code
(Id
: E
; V
: B
:= True);
7271 procedure Set_Contract
(Id
: E
; V
: N
);
7272 procedure Set_Corresponding_Concurrent_Type
(Id
: E
; V
: E
);
7273 procedure Set_Corresponding_Discriminant
(Id
: E
; V
: E
);
7274 procedure Set_Corresponding_Equality
(Id
: E
; V
: E
);
7275 procedure Set_Corresponding_Protected_Entry
(Id
: E
; V
: E
);
7276 procedure Set_Corresponding_Record_Type
(Id
: E
; V
: E
);
7277 procedure Set_Corresponding_Remote_Type
(Id
: E
; V
: E
);
7278 procedure Set_Current_Use_Clause
(Id
: E
; V
: E
);
7279 procedure Set_Current_Value
(Id
: E
; V
: N
);
7280 procedure Set_DTC_Entity
(Id
: E
; V
: E
);
7281 procedure Set_DT_Entry_Count
(Id
: E
; V
: U
);
7282 procedure Set_DT_Offset_To_Top_Func
(Id
: E
; V
: E
);
7283 procedure Set_DT_Position
(Id
: E
; V
: U
);
7284 procedure Set_Debug_Info_Off
(Id
: E
; V
: B
:= True);
7285 procedure Set_Debug_Renaming_Link
(Id
: E
; V
: E
);
7286 procedure Set_Default_Aspect_Component_Value
(Id
: E
; V
: N
);
7287 procedure Set_Default_Aspect_Value
(Id
: E
; V
: N
);
7288 procedure Set_Default_Expr_Function
(Id
: E
; V
: E
);
7289 procedure Set_Default_Expressions_Processed
(Id
: E
; V
: B
:= True);
7290 procedure Set_Default_Value
(Id
: E
; V
: N
);
7291 procedure Set_Delay_Cleanups
(Id
: E
; V
: B
:= True);
7292 procedure Set_Delay_Subprogram_Descriptors
(Id
: E
; V
: B
:= True);
7293 procedure Set_Delta_Value
(Id
: E
; V
: R
);
7294 procedure Set_Dependent_Instances
(Id
: E
; V
: L
);
7295 procedure Set_Depends_On_Private
(Id
: E
; V
: B
:= True);
7296 procedure Set_Derived_Type_Link
(Id
: E
; V
: E
);
7297 procedure Set_Digits_Value
(Id
: E
; V
: U
);
7298 procedure Set_Direct_Primitive_Operations
(Id
: E
; V
: L
);
7299 procedure Set_Directly_Designated_Type
(Id
: E
; V
: E
);
7300 procedure Set_Discard_Names
(Id
: E
; V
: B
:= True);
7301 procedure Set_Discriminal
(Id
: E
; V
: E
);
7302 procedure Set_Discriminal_Link
(Id
: E
; V
: E
);
7303 procedure Set_Discriminant_Checking_Func
(Id
: E
; V
: E
);
7304 procedure Set_Discriminant_Constraint
(Id
: E
; V
: L
);
7305 procedure Set_Discriminant_Default_Value
(Id
: E
; V
: N
);
7306 procedure Set_Discriminant_Number
(Id
: E
; V
: U
);
7307 procedure Set_Dispatch_Table_Wrappers
(Id
: E
; V
: L
);
7308 procedure Set_Elaborate_Body_Desirable
(Id
: E
; V
: B
:= True);
7309 procedure Set_Elaboration_Entity
(Id
: E
; V
: E
);
7310 procedure Set_Elaboration_Entity_Required
(Id
: E
; V
: B
:= True);
7311 procedure Set_Encapsulating_State
(Id
: E
; V
: E
);
7312 procedure Set_Enclosing_Scope
(Id
: E
; V
: E
);
7313 procedure Set_Entry_Accepted
(Id
: E
; V
: B
:= True);
7314 procedure Set_Entry_Bodies_Array
(Id
: E
; V
: E
);
7315 procedure Set_Entry_Cancel_Parameter
(Id
: E
; V
: E
);
7316 procedure Set_Entry_Component
(Id
: E
; V
: E
);
7317 procedure Set_Entry_Formal
(Id
: E
; V
: E
);
7318 procedure Set_Entry_Index_Constant
(Id
: E
; V
: E
);
7319 procedure Set_Entry_Parameters_Type
(Id
: E
; V
: E
);
7320 procedure Set_Enum_Pos_To_Rep
(Id
: E
; V
: E
);
7321 procedure Set_Enumeration_Pos
(Id
: E
; V
: U
);
7322 procedure Set_Enumeration_Rep
(Id
: E
; V
: U
);
7323 procedure Set_Enumeration_Rep_Expr
(Id
: E
; V
: N
);
7324 procedure Set_Equivalent_Type
(Id
: E
; V
: E
);
7325 procedure Set_Esize
(Id
: E
; V
: U
);
7326 procedure Set_Extra_Accessibility
(Id
: E
; V
: E
);
7327 procedure Set_Extra_Accessibility_Of_Result
(Id
: E
; V
: E
);
7328 procedure Set_Extra_Constrained
(Id
: E
; V
: E
);
7329 procedure Set_Extra_Formal
(Id
: E
; V
: E
);
7330 procedure Set_Extra_Formals
(Id
: E
; V
: E
);
7331 procedure Set_Finalization_Master
(Id
: E
; V
: E
);
7332 procedure Set_Finalize_Storage_Only
(Id
: E
; V
: B
:= True);
7333 procedure Set_Finalizer
(Id
: E
; V
: E
);
7334 procedure Set_First_Entity
(Id
: E
; V
: E
);
7335 procedure Set_First_Exit_Statement
(Id
: E
; V
: N
);
7336 procedure Set_First_Index
(Id
: E
; V
: N
);
7337 procedure Set_First_Literal
(Id
: E
; V
: E
);
7338 procedure Set_First_Private_Entity
(Id
: E
; V
: E
);
7339 procedure Set_First_Rep_Item
(Id
: E
; V
: N
);
7340 procedure Set_Float_Rep
(Id
: E
; V
: F
);
7341 procedure Set_Freeze_Node
(Id
: E
; V
: N
);
7342 procedure Set_From_Limited_With
(Id
: E
; V
: B
:= True);
7343 procedure Set_Full_View
(Id
: E
; V
: E
);
7344 procedure Set_Generic_Homonym
(Id
: E
; V
: E
);
7345 procedure Set_Generic_Renamings
(Id
: E
; V
: L
);
7346 procedure Set_Handler_Records
(Id
: E
; V
: S
);
7347 procedure Set_Has_Aliased_Components
(Id
: E
; V
: B
:= True);
7348 procedure Set_Has_Alignment_Clause
(Id
: E
; V
: B
:= True);
7349 procedure Set_Has_All_Calls_Remote
(Id
: E
; V
: B
:= True);
7350 procedure Set_Has_Anonymous_Master
(Id
: E
; V
: B
:= True);
7351 procedure Set_Has_Atomic_Components
(Id
: E
; V
: B
:= True);
7352 procedure Set_Has_Biased_Representation
(Id
: E
; V
: B
:= True);
7353 procedure Set_Has_Completion
(Id
: E
; V
: B
:= True);
7354 procedure Set_Has_Completion_In_Body
(Id
: E
; V
: B
:= True);
7355 procedure Set_Has_Complex_Representation
(Id
: E
; V
: B
:= True);
7356 procedure Set_Has_Component_Size_Clause
(Id
: E
; V
: B
:= True);
7357 procedure Set_Has_Constrained_Partial_View
(Id
: E
; V
: B
:= True);
7358 procedure Set_Has_Contiguous_Rep
(Id
: E
; V
: B
:= True);
7359 procedure Set_Has_Controlled_Component
(Id
: E
; V
: B
:= True);
7360 procedure Set_Has_Controlling_Result
(Id
: E
; V
: B
:= True);
7361 procedure Set_Has_Convention_Pragma
(Id
: E
; V
: B
:= True);
7362 procedure Set_Has_Default_Aspect
(Id
: E
; V
: B
:= True);
7363 procedure Set_Has_Default_Init_Cond
(Id
: E
; V
: B
:= True);
7364 procedure Set_Has_Delayed_Aspects
(Id
: E
; V
: B
:= True);
7365 procedure Set_Has_Delayed_Freeze
(Id
: E
; V
: B
:= True);
7366 procedure Set_Has_Delayed_Rep_Aspects
(Id
: E
; V
: B
:= True);
7367 procedure Set_Has_Discriminants
(Id
: E
; V
: B
:= True);
7368 procedure Set_Has_Dispatch_Table
(Id
: E
; V
: B
:= True);
7369 procedure Set_Has_Dynamic_Predicate_Aspect
(Id
: E
; V
: B
:= True);
7370 procedure Set_Has_Enumeration_Rep_Clause
(Id
: E
; V
: B
:= True);
7371 procedure Set_Has_Exit
(Id
: E
; V
: B
:= True);
7372 procedure Set_Has_Expanded_Contract
(Id
: E
; V
: B
:= True);
7373 procedure Set_Has_Forward_Instantiation
(Id
: E
; V
: B
:= True);
7374 procedure Set_Has_Fully_Qualified_Name
(Id
: E
; V
: B
:= True);
7375 procedure Set_Has_Gigi_Rep_Item
(Id
: E
; V
: B
:= True);
7376 procedure Set_Has_Homonym
(Id
: E
; V
: B
:= True);
7377 procedure Set_Has_Implicit_Dereference
(Id
: E
; V
: B
:= True);
7378 procedure Set_Has_Independent_Components
(Id
: E
; V
: B
:= True);
7379 procedure Set_Has_Inheritable_Invariants
(Id
: E
; V
: B
:= True);
7380 procedure Set_Has_Inherited_Default_Init_Cond
(Id
: E
; V
: B
:= True);
7381 procedure Set_Has_Initial_Value
(Id
: E
; V
: B
:= True);
7382 procedure Set_Has_Invariants
(Id
: E
; V
: B
:= True);
7383 procedure Set_Has_Loop_Entry_Attributes
(Id
: E
; V
: B
:= True);
7384 procedure Set_Has_Machine_Radix_Clause
(Id
: E
; V
: B
:= True);
7385 procedure Set_Has_Master_Entity
(Id
: E
; V
: B
:= True);
7386 procedure Set_Has_Missing_Return
(Id
: E
; V
: B
:= True);
7387 procedure Set_Has_Nested_Block_With_Handler
(Id
: E
; V
: B
:= True);
7388 procedure Set_Has_Nested_Subprogram
(Id
: E
; V
: B
:= True);
7389 procedure Set_Has_Non_Standard_Rep
(Id
: E
; V
: B
:= True);
7390 procedure Set_Has_Object_Size_Clause
(Id
: E
; V
: B
:= True);
7391 procedure Set_Has_Out_Or_In_Out_Parameter
(Id
: E
; V
: B
:= True);
7392 procedure Set_Has_Per_Object_Constraint
(Id
: E
; V
: B
:= True);
7393 procedure Set_Has_Pragma_Controlled
(Id
: E
; V
: B
:= True);
7394 procedure Set_Has_Pragma_Elaborate_Body
(Id
: E
; V
: B
:= True);
7395 procedure Set_Has_Pragma_Inline
(Id
: E
; V
: B
:= True);
7396 procedure Set_Has_Pragma_Inline_Always
(Id
: E
; V
: B
:= True);
7397 procedure Set_Has_Pragma_No_Inline
(Id
: E
; V
: B
:= True);
7398 procedure Set_Has_Pragma_Ordered
(Id
: E
; V
: B
:= True);
7399 procedure Set_Has_Pragma_Pack
(Id
: E
; V
: B
:= True);
7400 procedure Set_Has_Pragma_Preelab_Init
(Id
: E
; V
: B
:= True);
7401 procedure Set_Has_Pragma_Pure
(Id
: E
; V
: B
:= True);
7402 procedure Set_Has_Pragma_Pure_Function
(Id
: E
; V
: B
:= True);
7403 procedure Set_Has_Pragma_Thread_Local_Storage
(Id
: E
; V
: B
:= True);
7404 procedure Set_Has_Pragma_Unmodified
(Id
: E
; V
: B
:= True);
7405 procedure Set_Has_Pragma_Unreferenced
(Id
: E
; V
: B
:= True);
7406 procedure Set_Has_Pragma_Unreferenced_Objects
(Id
: E
; V
: B
:= True);
7407 procedure Set_Has_Predicates
(Id
: E
; V
: B
:= True);
7408 procedure Set_Has_Primitive_Operations
(Id
: E
; V
: B
:= True);
7409 procedure Set_Has_Private_Ancestor
(Id
: E
; V
: B
:= True);
7410 procedure Set_Has_Private_Declaration
(Id
: E
; V
: B
:= True);
7411 procedure Set_Has_Protected
(Id
: E
; V
: B
:= True);
7412 procedure Set_Has_Qualified_Name
(Id
: E
; V
: B
:= True);
7413 procedure Set_Has_RACW
(Id
: E
; V
: B
:= True);
7414 procedure Set_Has_Record_Rep_Clause
(Id
: E
; V
: B
:= True);
7415 procedure Set_Has_Recursive_Call
(Id
: E
; V
: B
:= True);
7416 procedure Set_Has_Shift_Operator
(Id
: E
; V
: B
:= True);
7417 procedure Set_Has_Size_Clause
(Id
: E
; V
: B
:= True);
7418 procedure Set_Has_Small_Clause
(Id
: E
; V
: B
:= True);
7419 procedure Set_Has_Specified_Layout
(Id
: E
; V
: B
:= True);
7420 procedure Set_Has_Specified_Stream_Input
(Id
: E
; V
: B
:= True);
7421 procedure Set_Has_Specified_Stream_Output
(Id
: E
; V
: B
:= True);
7422 procedure Set_Has_Specified_Stream_Read
(Id
: E
; V
: B
:= True);
7423 procedure Set_Has_Specified_Stream_Write
(Id
: E
; V
: B
:= True);
7424 procedure Set_Has_Static_Discriminants
(Id
: E
; V
: B
:= True);
7425 procedure Set_Has_Static_Predicate
(Id
: E
; V
: B
:= True);
7426 procedure Set_Has_Static_Predicate_Aspect
(Id
: E
; V
: B
:= True);
7427 procedure Set_Has_Storage_Size_Clause
(Id
: E
; V
: B
:= True);
7428 procedure Set_Has_Stream_Size_Clause
(Id
: E
; V
: B
:= True);
7429 procedure Set_Has_Task
(Id
: E
; V
: B
:= True);
7430 procedure Set_Has_Thunks
(Id
: E
; V
: B
:= True);
7431 procedure Set_Has_Unchecked_Union
(Id
: E
; V
: B
:= True);
7432 procedure Set_Has_Unknown_Discriminants
(Id
: E
; V
: B
:= True);
7433 procedure Set_Has_Uplevel_Reference
(Id
: E
; V
: B
:= True);
7434 procedure Set_Has_Visible_Refinement
(Id
: E
; V
: B
:= True);
7435 procedure Set_Has_Volatile_Components
(Id
: E
; V
: B
:= True);
7436 procedure Set_Has_Xref_Entry
(Id
: E
; V
: B
:= True);
7437 procedure Set_Hiding_Loop_Variable
(Id
: E
; V
: E
);
7438 procedure Set_Homonym
(Id
: E
; V
: E
);
7439 procedure Set_Import_Pragma
(Id
: E
; V
: E
);
7440 procedure Set_In_Package_Body
(Id
: E
; V
: B
:= True);
7441 procedure Set_In_Private_Part
(Id
: E
; V
: B
:= True);
7442 procedure Set_In_Use
(Id
: E
; V
: B
:= True);
7443 procedure Set_Initialization_Statements
(Id
: E
; V
: N
);
7444 procedure Set_Inner_Instances
(Id
: E
; V
: L
);
7445 procedure Set_Interface_Alias
(Id
: E
; V
: E
);
7446 procedure Set_Interface_Name
(Id
: E
; V
: N
);
7447 procedure Set_Interfaces
(Id
: E
; V
: L
);
7448 procedure Set_Is_Abstract_Subprogram
(Id
: E
; V
: B
:= True);
7449 procedure Set_Is_Abstract_Type
(Id
: E
; V
: B
:= True);
7450 procedure Set_Is_Access_Constant
(Id
: E
; V
: B
:= True);
7451 procedure Set_Is_Ada_2005_Only
(Id
: E
; V
: B
:= True);
7452 procedure Set_Is_Ada_2012_Only
(Id
: E
; V
: B
:= True);
7453 procedure Set_Is_Aliased
(Id
: E
; V
: B
:= True);
7454 procedure Set_Is_Asynchronous
(Id
: E
; V
: B
:= True);
7455 procedure Set_Is_Atomic
(Id
: E
; V
: B
:= True);
7456 procedure Set_Is_Bit_Packed_Array
(Id
: E
; V
: B
:= True);
7457 procedure Set_Is_CPP_Class
(Id
: E
; V
: B
:= True);
7458 procedure Set_Is_Called
(Id
: E
; V
: B
:= True);
7459 procedure Set_Is_Character_Type
(Id
: E
; V
: B
:= True);
7460 procedure Set_Is_Checked_Ghost_Entity
(Id
: E
; V
: B
:= True);
7461 procedure Set_Is_Child_Unit
(Id
: E
; V
: B
:= True);
7462 procedure Set_Is_Class_Wide_Equivalent_Type
(Id
: E
; V
: B
:= True);
7463 procedure Set_Is_Compilation_Unit
(Id
: E
; V
: B
:= True);
7464 procedure Set_Is_Completely_Hidden
(Id
: E
; V
: B
:= True);
7465 procedure Set_Is_Concurrent_Record_Type
(Id
: E
; V
: B
:= True);
7466 procedure Set_Is_Constr_Subt_For_UN_Aliased
(Id
: E
; V
: B
:= True);
7467 procedure Set_Is_Constr_Subt_For_U_Nominal
(Id
: E
; V
: B
:= True);
7468 procedure Set_Is_Constrained
(Id
: E
; V
: B
:= True);
7469 procedure Set_Is_Constructor
(Id
: E
; V
: B
:= True);
7470 procedure Set_Is_Controlled
(Id
: E
; V
: B
:= True);
7471 procedure Set_Is_Controlling_Formal
(Id
: E
; V
: B
:= True);
7472 procedure Set_Is_Default_Init_Cond_Procedure
(Id
: E
; V
: B
:= True);
7473 procedure Set_Is_Descendent_Of_Address
(Id
: E
; V
: B
:= True);
7474 procedure Set_Is_Discrim_SO_Function
(Id
: E
; V
: B
:= True);
7475 procedure Set_Is_Discriminant_Check_Function
(Id
: E
; V
: B
:= True);
7476 procedure Set_Is_Dispatch_Table_Entity
(Id
: E
; V
: B
:= True);
7477 procedure Set_Is_Dispatching_Operation
(Id
: E
; V
: B
:= True);
7478 procedure Set_Is_Eliminated
(Id
: E
; V
: B
:= True);
7479 procedure Set_Is_Entry_Formal
(Id
: E
; V
: B
:= True);
7480 procedure Set_Is_Exported
(Id
: E
; V
: B
:= True);
7481 procedure Set_Is_First_Subtype
(Id
: E
; V
: B
:= True);
7482 procedure Set_Is_For_Access_Subtype
(Id
: E
; V
: B
:= True);
7483 procedure Set_Is_Formal_Subprogram
(Id
: E
; V
: B
:= True);
7484 procedure Set_Is_Frozen
(Id
: E
; V
: B
:= True);
7485 procedure Set_Is_Generic_Actual_Subprogram
(Id
: E
; V
: B
:= True);
7486 procedure Set_Is_Generic_Actual_Type
(Id
: E
; V
: B
:= True);
7487 procedure Set_Is_Generic_Instance
(Id
: E
; V
: B
:= True);
7488 procedure Set_Is_Generic_Type
(Id
: E
; V
: B
:= True);
7489 procedure Set_Is_Hidden
(Id
: E
; V
: B
:= True);
7490 procedure Set_Is_Hidden_Non_Overridden_Subpgm
(Id
: E
; V
: B
:= True);
7491 procedure Set_Is_Hidden_Open_Scope
(Id
: E
; V
: B
:= True);
7492 procedure Set_Is_Ignored_Ghost_Entity
(Id
: E
; V
: B
:= True);
7493 procedure Set_Is_Immediately_Visible
(Id
: E
; V
: B
:= True);
7494 procedure Set_Is_Implementation_Defined
(Id
: E
; V
: B
:= True);
7495 procedure Set_Is_Imported
(Id
: E
; V
: B
:= True);
7496 procedure Set_Is_Independent
(Id
: E
; V
: B
:= True);
7497 procedure Set_Is_Inlined
(Id
: E
; V
: B
:= True);
7498 procedure Set_Is_Inlined_Always
(Id
: E
; V
: B
:= True);
7499 procedure Set_Is_Instantiated
(Id
: E
; V
: B
:= True);
7500 procedure Set_Is_Interface
(Id
: E
; V
: B
:= True);
7501 procedure Set_Is_Internal
(Id
: E
; V
: B
:= True);
7502 procedure Set_Is_Interrupt_Handler
(Id
: E
; V
: B
:= True);
7503 procedure Set_Is_Intrinsic_Subprogram
(Id
: E
; V
: B
:= True);
7504 procedure Set_Is_Invariant_Procedure
(Id
: E
; V
: B
:= True);
7505 procedure Set_Is_Itype
(Id
: E
; V
: B
:= True);
7506 procedure Set_Is_Known_Non_Null
(Id
: E
; V
: B
:= True);
7507 procedure Set_Is_Known_Null
(Id
: E
; V
: B
:= True);
7508 procedure Set_Is_Known_Valid
(Id
: E
; V
: B
:= True);
7509 procedure Set_Is_Limited_Composite
(Id
: E
; V
: B
:= True);
7510 procedure Set_Is_Limited_Interface
(Id
: E
; V
: B
:= True);
7511 procedure Set_Is_Limited_Record
(Id
: E
; V
: B
:= True);
7512 procedure Set_Is_Local_Anonymous_Access
(Id
: E
; V
: B
:= True);
7513 procedure Set_Is_Machine_Code_Subprogram
(Id
: E
; V
: B
:= True);
7514 procedure Set_Is_Non_Static_Subtype
(Id
: E
; V
: B
:= True);
7515 procedure Set_Is_Null_Init_Proc
(Id
: E
; V
: B
:= True);
7516 procedure Set_Is_Obsolescent
(Id
: E
; V
: B
:= True);
7517 procedure Set_Is_Only_Out_Parameter
(Id
: E
; V
: B
:= True);
7518 procedure Set_Is_Package_Body_Entity
(Id
: E
; V
: B
:= True);
7519 procedure Set_Is_Packed
(Id
: E
; V
: B
:= True);
7520 procedure Set_Is_Packed_Array_Impl_Type
(Id
: E
; V
: B
:= True);
7521 procedure Set_Is_Potentially_Use_Visible
(Id
: E
; V
: B
:= True);
7522 procedure Set_Is_Predicate_Function
(Id
: E
; V
: B
:= True);
7523 procedure Set_Is_Predicate_Function_M
(Id
: E
; V
: B
:= True);
7524 procedure Set_Is_Preelaborated
(Id
: E
; V
: B
:= True);
7525 procedure Set_Is_Primitive
(Id
: E
; V
: B
:= True);
7526 procedure Set_Is_Primitive_Wrapper
(Id
: E
; V
: B
:= True);
7527 procedure Set_Is_Private_Composite
(Id
: E
; V
: B
:= True);
7528 procedure Set_Is_Private_Descendant
(Id
: E
; V
: B
:= True);
7529 procedure Set_Is_Private_Primitive
(Id
: E
; V
: B
:= True);
7530 procedure Set_Is_Processed_Transient
(Id
: E
; V
: B
:= True);
7531 procedure Set_Is_Public
(Id
: E
; V
: B
:= True);
7532 procedure Set_Is_Pure
(Id
: E
; V
: B
:= True);
7533 procedure Set_Is_Pure_Unit_Access_Type
(Id
: E
; V
: B
:= True);
7534 procedure Set_Is_RACW_Stub_Type
(Id
: E
; V
: B
:= True);
7535 procedure Set_Is_Raised
(Id
: E
; V
: B
:= True);
7536 procedure Set_Is_Remote_Call_Interface
(Id
: E
; V
: B
:= True);
7537 procedure Set_Is_Remote_Types
(Id
: E
; V
: B
:= True);
7538 procedure Set_Is_Renaming_Of_Object
(Id
: E
; V
: B
:= True);
7539 procedure Set_Is_Return_Object
(Id
: E
; V
: B
:= True);
7540 procedure Set_Is_Safe_To_Reevaluate
(Id
: E
; V
: B
:= True);
7541 procedure Set_Is_Shared_Passive
(Id
: E
; V
: B
:= True);
7542 procedure Set_Is_Static_Type
(Id
: E
; V
: B
:= True);
7543 procedure Set_Is_Statically_Allocated
(Id
: E
; V
: B
:= True);
7544 procedure Set_Is_Tag
(Id
: E
; V
: B
:= True);
7545 procedure Set_Is_Tagged_Type
(Id
: E
; V
: B
:= True);
7546 procedure Set_Is_Thunk
(Id
: E
; V
: B
:= True);
7547 procedure Set_Is_Trivial_Subprogram
(Id
: E
; V
: B
:= True);
7548 procedure Set_Is_True_Constant
(Id
: E
; V
: B
:= True);
7549 procedure Set_Is_Unchecked_Union
(Id
: E
; V
: B
:= True);
7550 procedure Set_Is_Underlying_Record_View
(Id
: E
; V
: B
:= True);
7551 procedure Set_Is_Unsigned_Type
(Id
: E
; V
: B
:= True);
7552 procedure Set_Is_Valued_Procedure
(Id
: E
; V
: B
:= True);
7553 procedure Set_Is_Visible_Formal
(Id
: E
; V
: B
:= True);
7554 procedure Set_Is_Visible_Lib_Unit
(Id
: E
; V
: B
:= True);
7555 procedure Set_Is_Volatile
(Id
: E
; V
: B
:= True);
7556 procedure Set_Itype_Printed
(Id
: E
; V
: B
:= True);
7557 procedure Set_Kill_Elaboration_Checks
(Id
: E
; V
: B
:= True);
7558 procedure Set_Kill_Range_Checks
(Id
: E
; V
: B
:= True);
7559 procedure Set_Known_To_Have_Preelab_Init
(Id
: E
; V
: B
:= True);
7560 procedure Set_Last_Aggregate_Assignment
(Id
: E
; V
: N
);
7561 procedure Set_Last_Assignment
(Id
: E
; V
: N
);
7562 procedure Set_Last_Entity
(Id
: E
; V
: E
);
7563 procedure Set_Limited_View
(Id
: E
; V
: E
);
7564 procedure Set_Linker_Section_Pragma
(Id
: E
; V
: N
);
7565 procedure Set_Lit_Indexes
(Id
: E
; V
: E
);
7566 procedure Set_Lit_Strings
(Id
: E
; V
: E
);
7567 procedure Set_Low_Bound_Tested
(Id
: E
; V
: B
:= True);
7568 procedure Set_Machine_Radix_10
(Id
: E
; V
: B
:= True);
7569 procedure Set_Master_Id
(Id
: E
; V
: E
);
7570 procedure Set_Materialize_Entity
(Id
: E
; V
: B
:= True);
7571 procedure Set_May_Inherit_Delayed_Rep_Aspects
(Id
: E
; V
: B
:= True);
7572 procedure Set_Mechanism
(Id
: E
; V
: M
);
7573 procedure Set_Modulus
(Id
: E
; V
: U
);
7574 procedure Set_Must_Be_On_Byte_Boundary
(Id
: E
; V
: B
:= True);
7575 procedure Set_Must_Have_Preelab_Init
(Id
: E
; V
: B
:= True);
7576 procedure Set_Needs_Debug_Info
(Id
: E
; V
: B
:= True);
7577 procedure Set_Needs_No_Actuals
(Id
: E
; V
: B
:= True);
7578 procedure Set_Never_Set_In_Source
(Id
: E
; V
: B
:= True);
7579 procedure Set_Next_Inlined_Subprogram
(Id
: E
; V
: E
);
7580 procedure Set_No_Dynamic_Predicate_On_Actual
(Id
: E
; V
: B
:= True);
7581 procedure Set_No_Pool_Assigned
(Id
: E
; V
: B
:= True);
7582 procedure Set_No_Predicate_On_Actual
(Id
: E
; V
: B
:= True);
7583 procedure Set_No_Return
(Id
: E
; V
: B
:= True);
7584 procedure Set_No_Strict_Aliasing
(Id
: E
; V
: B
:= True);
7585 procedure Set_No_Tagged_Streams_Pragma
(Id
: E
; V
: N
);
7586 procedure Set_Non_Binary_Modulus
(Id
: E
; V
: B
:= True);
7587 procedure Set_Non_Limited_View
(Id
: E
; V
: E
);
7588 procedure Set_Nonzero_Is_True
(Id
: E
; V
: B
:= True);
7589 procedure Set_Normalized_First_Bit
(Id
: E
; V
: U
);
7590 procedure Set_Normalized_Position
(Id
: E
; V
: U
);
7591 procedure Set_Normalized_Position_Max
(Id
: E
; V
: U
);
7592 procedure Set_OK_To_Rename
(Id
: E
; V
: B
:= True);
7593 procedure Set_OK_To_Reorder_Components
(Id
: E
; V
: B
:= True);
7594 procedure Set_Optimize_Alignment_Space
(Id
: E
; V
: B
:= True);
7595 procedure Set_Optimize_Alignment_Time
(Id
: E
; V
: B
:= True);
7596 procedure Set_Original_Access_Type
(Id
: E
; V
: E
);
7597 procedure Set_Original_Array_Type
(Id
: E
; V
: E
);
7598 procedure Set_Original_Record_Component
(Id
: E
; V
: E
);
7599 procedure Set_Overlays_Constant
(Id
: E
; V
: B
:= True);
7600 procedure Set_Overridden_Operation
(Id
: E
; V
: E
);
7601 procedure Set_PPC_Wrapper
(Id
: E
; V
: E
);
7602 procedure Set_Package_Instantiation
(Id
: E
; V
: N
);
7603 procedure Set_Packed_Array_Impl_Type
(Id
: E
; V
: E
);
7604 procedure Set_Parent_Subtype
(Id
: E
; V
: E
);
7605 procedure Set_Part_Of_Constituents
(Id
: E
; V
: L
);
7606 procedure Set_Partial_View_Has_Unknown_Discr
(Id
: E
; V
: B
:= True);
7607 procedure Set_Pending_Access_Types
(Id
: E
; V
: L
);
7608 procedure Set_Postconditions_Proc
(Id
: E
; V
: E
);
7609 procedure Set_Prival
(Id
: E
; V
: E
);
7610 procedure Set_Prival_Link
(Id
: E
; V
: E
);
7611 procedure Set_Private_Dependents
(Id
: E
; V
: L
);
7612 procedure Set_Private_View
(Id
: E
; V
: N
);
7613 procedure Set_Protected_Body_Subprogram
(Id
: E
; V
: E
);
7614 procedure Set_Protected_Formal
(Id
: E
; V
: E
);
7615 procedure Set_Protection_Object
(Id
: E
; V
: E
);
7616 procedure Set_RM_Size
(Id
: E
; V
: U
);
7617 procedure Set_Reachable
(Id
: E
; V
: B
:= True);
7618 procedure Set_Referenced
(Id
: E
; V
: B
:= True);
7619 procedure Set_Referenced_As_LHS
(Id
: E
; V
: B
:= True);
7620 procedure Set_Referenced_As_Out_Parameter
(Id
: E
; V
: B
:= True);
7621 procedure Set_Refinement_Constituents
(Id
: E
; V
: L
);
7622 procedure Set_Register_Exception_Call
(Id
: E
; V
: N
);
7623 procedure Set_Related_Array_Object
(Id
: E
; V
: E
);
7624 procedure Set_Related_Expression
(Id
: E
; V
: N
);
7625 procedure Set_Related_Instance
(Id
: E
; V
: E
);
7626 procedure Set_Related_Type
(Id
: E
; V
: E
);
7627 procedure Set_Relative_Deadline_Variable
(Id
: E
; V
: E
);
7628 procedure Set_Renamed_Entity
(Id
: E
; V
: N
);
7629 procedure Set_Renamed_In_Spec
(Id
: E
; V
: B
:= True);
7630 procedure Set_Renamed_Object
(Id
: E
; V
: N
);
7631 procedure Set_Renaming_Map
(Id
: E
; V
: U
);
7632 procedure Set_Requires_Overriding
(Id
: E
; V
: B
:= True);
7633 procedure Set_Return_Applies_To
(Id
: E
; V
: N
);
7634 procedure Set_Return_Present
(Id
: E
; V
: B
:= True);
7635 procedure Set_Returns_By_Ref
(Id
: E
; V
: B
:= True);
7636 procedure Set_Returns_Limited_View
(Id
: E
; V
: B
:= True);
7637 procedure Set_Reverse_Bit_Order
(Id
: E
; V
: B
:= True);
7638 procedure Set_Reverse_Storage_Order
(Id
: E
; V
: B
:= True);
7639 procedure Set_Scalar_Range
(Id
: E
; V
: N
);
7640 procedure Set_Scale_Value
(Id
: E
; V
: U
);
7641 procedure Set_Scope_Depth_Value
(Id
: E
; V
: U
);
7642 procedure Set_Sec_Stack_Needed_For_Return
(Id
: E
; V
: B
:= True);
7643 procedure Set_Shadow_Entities
(Id
: E
; V
: S
);
7644 procedure Set_Shared_Var_Procs_Instance
(Id
: E
; V
: E
);
7645 procedure Set_Size_Check_Code
(Id
: E
; V
: N
);
7646 procedure Set_Size_Depends_On_Discriminant
(Id
: E
; V
: B
:= True);
7647 procedure Set_Size_Known_At_Compile_Time
(Id
: E
; V
: B
:= True);
7648 procedure Set_Small_Value
(Id
: E
; V
: R
);
7649 procedure Set_SPARK_Aux_Pragma
(Id
: E
; V
: N
);
7650 procedure Set_SPARK_Aux_Pragma_Inherited
(Id
: E
; V
: B
:= True);
7651 procedure Set_SPARK_Pragma
(Id
: E
; V
: N
);
7652 procedure Set_SPARK_Pragma_Inherited
(Id
: E
; V
: B
:= True);
7653 procedure Set_Spec_Entity
(Id
: E
; V
: E
);
7654 procedure Set_SSO_Set_High_By_Default
(Id
: E
; V
: B
:= True);
7655 procedure Set_SSO_Set_Low_By_Default
(Id
: E
; V
: B
:= True);
7656 procedure Set_Static_Elaboration_Desired
(Id
: E
; V
: B
);
7657 procedure Set_Static_Initialization
(Id
: E
; V
: N
);
7658 procedure Set_Static_Discrete_Predicate
(Id
: E
; V
: S
);
7659 procedure Set_Static_Real_Or_String_Predicate
(Id
: E
; V
: N
);
7660 procedure Set_Status_Flag_Or_Transient_Decl
(Id
: E
; V
: E
);
7661 procedure Set_Storage_Size_Variable
(Id
: E
; V
: E
);
7662 procedure Set_Stored_Constraint
(Id
: E
; V
: L
);
7663 procedure Set_Stores_Attribute_Old_Prefix
(Id
: E
; V
: B
:= True);
7664 procedure Set_Strict_Alignment
(Id
: E
; V
: B
:= True);
7665 procedure Set_String_Literal_Length
(Id
: E
; V
: U
);
7666 procedure Set_String_Literal_Low_Bound
(Id
: E
; V
: N
);
7667 procedure Set_Subprograms_For_Type
(Id
: E
; V
: E
);
7668 procedure Set_Subps_Index
(Id
: E
; V
: U
);
7669 procedure Set_Suppress_Elaboration_Warnings
(Id
: E
; V
: B
:= True);
7670 procedure Set_Suppress_Initialization
(Id
: E
; V
: B
:= True);
7671 procedure Set_Suppress_Style_Checks
(Id
: E
; V
: B
:= True);
7672 procedure Set_Suppress_Value_Tracking_On_Call
(Id
: E
; V
: B
:= True);
7673 procedure Set_Task_Body_Procedure
(Id
: E
; V
: N
);
7674 procedure Set_Thunk_Entity
(Id
: E
; V
: E
);
7675 procedure Set_Treat_As_Volatile
(Id
: E
; V
: B
:= True);
7676 procedure Set_Underlying_Full_View
(Id
: E
; V
: E
);
7677 procedure Set_Underlying_Record_View
(Id
: E
; V
: E
);
7678 procedure Set_Universal_Aliasing
(Id
: E
; V
: B
:= True);
7679 procedure Set_Unset_Reference
(Id
: E
; V
: N
);
7680 procedure Set_Uplevel_Reference_Noted
(Id
: E
; V
: B
:= True);
7681 procedure Set_Uplevel_References
(Id
: E
; V
: L
);
7682 procedure Set_Used_As_Generic_Actual
(Id
: E
; V
: B
:= True);
7683 procedure Set_Uses_Lock_Free
(Id
: E
; V
: B
:= True);
7684 procedure Set_Uses_Sec_Stack
(Id
: E
; V
: B
:= True);
7685 procedure Set_Warnings_Off
(Id
: E
; V
: B
:= True);
7686 procedure Set_Warnings_Off_Used
(Id
: E
; V
: B
:= True);
7687 procedure Set_Warnings_Off_Used_Unmodified
(Id
: E
; V
: B
:= True);
7688 procedure Set_Warnings_Off_Used_Unreferenced
(Id
: E
; V
: B
:= True);
7689 procedure Set_Was_Hidden
(Id
: E
; V
: B
:= True);
7690 procedure Set_Wrapped_Entity
(Id
: E
; V
: E
);
7692 ---------------------------------------------------
7693 -- Access to Subprograms in Subprograms_For_Type --
7694 ---------------------------------------------------
7696 function Default_Init_Cond_Procedure
(Id
: E
) return E
;
7697 function Invariant_Procedure
(Id
: E
) return E
;
7698 function Predicate_Function
(Id
: E
) return E
;
7699 function Predicate_Function_M
(Id
: E
) return E
;
7701 procedure Set_Default_Init_Cond_Procedure
(Id
: E
; V
: E
);
7702 procedure Set_Invariant_Procedure
(Id
: E
; V
: E
);
7703 procedure Set_Predicate_Function
(Id
: E
; V
: E
);
7704 procedure Set_Predicate_Function_M
(Id
: E
; V
: E
);
7706 -----------------------------------
7707 -- Field Initialization Routines --
7708 -----------------------------------
7710 -- These routines are overloadings of some of the above Set procedures
7711 -- where the argument is normally a Uint. The overloadings take an Int
7712 -- parameter instead, and appropriately convert it. There are also
7713 -- versions that implicitly initialize to the appropriate "not set"
7714 -- value. The not set (unknown) values are as follows:
7717 -- Component_Size Uint_0
7718 -- Component_Bit_Offset No_Uint
7719 -- Digits_Value Uint_0
7721 -- Normalized_First_Bit No_Uint
7722 -- Normalized_Position No_Uint
7723 -- Normalized_Position_Max No_Uint
7726 -- It would be cleaner to use No_Uint in all these cases, but historically
7727 -- we chose to use Uint_0 at first, and the change over will take time ???
7728 -- This is particularly true for the RM_Size field, where a value of zero
7729 -- is legitimate and causes some special tests around the code.
7731 -- Contrary to the corresponding Set procedures above, these routines
7732 -- do NOT check the entity kind of their argument, instead they set the
7733 -- underlying Uint fields directly (this allows them to be used for
7734 -- entities whose Ekind has not been set yet).
7736 procedure Init_Alignment
(Id
: E
; V
: Int
);
7737 procedure Init_Component_Size
(Id
: E
; V
: Int
);
7738 procedure Init_Component_Bit_Offset
(Id
: E
; V
: Int
);
7739 procedure Init_Digits_Value
(Id
: E
; V
: Int
);
7740 procedure Init_Esize
(Id
: E
; V
: Int
);
7741 procedure Init_Normalized_First_Bit
(Id
: E
; V
: Int
);
7742 procedure Init_Normalized_Position
(Id
: E
; V
: Int
);
7743 procedure Init_Normalized_Position_Max
(Id
: E
; V
: Int
);
7744 procedure Init_RM_Size
(Id
: E
; V
: Int
);
7746 procedure Init_Alignment
(Id
: E
);
7747 procedure Init_Component_Size
(Id
: E
);
7748 procedure Init_Component_Bit_Offset
(Id
: E
);
7749 procedure Init_Digits_Value
(Id
: E
);
7750 procedure Init_Esize
(Id
: E
);
7751 procedure Init_Normalized_First_Bit
(Id
: E
);
7752 procedure Init_Normalized_Position
(Id
: E
);
7753 procedure Init_Normalized_Position_Max
(Id
: E
);
7754 procedure Init_RM_Size
(Id
: E
);
7756 procedure Init_Size_Align
(Id
: E
);
7757 -- This procedure initializes both size fields and the alignment
7758 -- field to all be Unknown.
7760 procedure Init_Object_Size_Align
(Id
: E
);
7761 -- Same as Init_Size_Align except RM_Size field (which is only for types)
7764 procedure Init_Size
(Id
: E
; V
: Int
);
7765 -- Initialize both the Esize and RM_Size fields of E to V
7767 procedure Init_Component_Location
(Id
: E
);
7768 -- Initializes all fields describing the location of a component
7769 -- (Normalized_Position, Component_Bit_Offset, Normalized_First_Bit,
7770 -- Normalized_Position_Max, Esize) to all be Unknown.
7776 -- The call to Next_xxx (obj) is equivalent to obj := Next_xxx (obj)
7777 -- We define the set of Proc_Next_xxx routines simply for the purposes
7778 -- of inlining them without necessarily inlining the function.
7780 procedure Proc_Next_Component
(N
: in out Node_Id
);
7781 procedure Proc_Next_Component_Or_Discriminant
(N
: in out Node_Id
);
7782 procedure Proc_Next_Discriminant
(N
: in out Node_Id
);
7783 procedure Proc_Next_Formal
(N
: in out Node_Id
);
7784 procedure Proc_Next_Formal_With_Extras
(N
: in out Node_Id
);
7785 procedure Proc_Next_Index
(N
: in out Node_Id
);
7786 procedure Proc_Next_Inlined_Subprogram
(N
: in out Node_Id
);
7787 procedure Proc_Next_Literal
(N
: in out Node_Id
);
7788 procedure Proc_Next_Stored_Discriminant
(N
: in out Node_Id
);
7790 pragma Inline
(Proc_Next_Component
);
7791 pragma Inline
(Proc_Next_Component_Or_Discriminant
);
7792 pragma Inline
(Proc_Next_Discriminant
);
7793 pragma Inline
(Proc_Next_Formal
);
7794 pragma Inline
(Proc_Next_Formal_With_Extras
);
7795 pragma Inline
(Proc_Next_Index
);
7796 pragma Inline
(Proc_Next_Inlined_Subprogram
);
7797 pragma Inline
(Proc_Next_Literal
);
7798 pragma Inline
(Proc_Next_Stored_Discriminant
);
7800 procedure Next_Component
(N
: in out Node_Id
)
7801 renames Proc_Next_Component
;
7803 procedure Next_Component_Or_Discriminant
(N
: in out Node_Id
)
7804 renames Proc_Next_Component_Or_Discriminant
;
7806 procedure Next_Discriminant
(N
: in out Node_Id
)
7807 renames Proc_Next_Discriminant
;
7809 procedure Next_Formal
(N
: in out Node_Id
)
7810 renames Proc_Next_Formal
;
7812 procedure Next_Formal_With_Extras
(N
: in out Node_Id
)
7813 renames Proc_Next_Formal_With_Extras
;
7815 procedure Next_Index
(N
: in out Node_Id
)
7816 renames Proc_Next_Index
;
7818 procedure Next_Inlined_Subprogram
(N
: in out Node_Id
)
7819 renames Proc_Next_Inlined_Subprogram
;
7821 procedure Next_Literal
(N
: in out Node_Id
)
7822 renames Proc_Next_Literal
;
7824 procedure Next_Stored_Discriminant
(N
: in out Node_Id
)
7825 renames Proc_Next_Stored_Discriminant
;
7827 ---------------------------
7828 -- Testing Warning Flags --
7829 ---------------------------
7831 -- These routines are to be used rather than testing flags Warnings_Off,
7832 -- Has_Pragma_Unmodified, Has_Pragma_Unreferenced. They deal with setting
7833 -- the flags Warnings_Off_Used[_Unmodified|Unreferenced] for later access.
7835 function Has_Warnings_Off
(E
: Entity_Id
) return Boolean;
7836 -- If Warnings_Off is set on E, then returns True and also sets the flag
7837 -- Warnings_Off_Used on E. If Warnings_Off is not set on E, returns False
7838 -- and has no side effect.
7840 function Has_Unmodified
(E
: Entity_Id
) return Boolean;
7841 -- If flag Has_Pragma_Unmodified is set on E, returns True with no side
7842 -- effects. Otherwise if Warnings_Off is set on E, returns True and also
7843 -- sets the flag Warnings_Off_Used_Unmodified on E. If neither of the flags
7844 -- Warnings_Off nor Has_Pragma_Unmodified is set, returns False with no
7847 function Has_Unreferenced
(E
: Entity_Id
) return Boolean;
7848 -- If flag Has_Pragma_Unreferenced is set on E, returns True with no side
7849 -- effects. Otherwise if Warnings_Off is set on E, returns True and also
7850 -- sets the flag Warnings_Off_Used_Unreferenced on E. If neither of the
7851 -- flags Warnings_Off nor Has_Pragma_Unreferenced is set, returns False
7852 -- with no side effects.
7854 ----------------------------------------------
7855 -- Subprograms for Accessing Rep Item Chain --
7856 ----------------------------------------------
7858 -- The First_Rep_Item field of every entity points to a linked list (linked
7859 -- through Next_Rep_Item) of representation pragmas, attribute definition
7860 -- clauses, representation clauses, and aspect specifications that apply to
7861 -- the item. Note that in the case of types, it is assumed that any such
7862 -- rep items for a base type also apply to all subtypes. This is achieved
7863 -- by having the chain for subtypes link onto the chain for the base type,
7864 -- so that new entries for the subtype are added at the start of the chain.
7866 -- Note: aspect specification nodes are linked only when evaluation of the
7867 -- expression is deferred to the freeze point. For further details see
7868 -- Sem_Ch13.Analyze_Aspect_Specifications.
7870 function Get_Attribute_Definition_Clause
7872 Id
: Attribute_Id
) return Node_Id
;
7873 -- Searches the Rep_Item chain for a given entity E, for an instance of an
7874 -- attribute definition clause with the given attribute Id. If found, the
7875 -- value returned is the N_Attribute_Definition_Clause node, otherwise
7876 -- Empty is returned.
7878 function Get_Pragma
(E
: Entity_Id
; Id
: Pragma_Id
) return Node_Id
;
7879 -- Searches the Rep_Item chain of entity E, for an instance of a pragma
7880 -- with the given pragma Id. If found, the value returned is the N_Pragma
7881 -- node, otherwise Empty is returned. The following contract pragmas that
7882 -- appear in N_Contract nodes are also handled by this routine:
7891 -- Initial_Condition
7902 function Get_Record_Representation_Clause
(E
: Entity_Id
) return Node_Id
;
7903 -- Searches the Rep_Item chain for a given entity E, for a record
7904 -- representation clause, and if found, returns it. Returns Empty
7905 -- if no such clause is found.
7907 function Present_In_Rep_Item
(E
: Entity_Id
; N
: Node_Id
) return Boolean;
7908 -- Return True if N is present in the Rep_Item chain for a given entity E
7910 procedure Record_Rep_Item
(E
: Entity_Id
; N
: Node_Id
);
7911 -- N is the node for a representation pragma, representation clause, an
7912 -- attribute definition clause, or an aspect specification that applies to
7913 -- entity E. This procedure links the node N onto the Rep_Item chain for
7914 -- entity E. Note that it is an error to call this procedure with E being
7915 -- overloadable, and N being a pragma that applies to multiple overloadable
7916 -- entities (Convention, Interface, Inline, Inline_Always, Import, Export,
7917 -- External). This is not allowed even in the case where the entity is not
7918 -- overloaded, since we can't rely on it being present in the overloaded
7919 -- case, it is not useful to have it present in the non-overloaded case.
7921 -------------------------------
7922 -- Miscellaneous Subprograms --
7923 -------------------------------
7925 procedure Append_Entity
(Id
: Entity_Id
; V
: Entity_Id
);
7926 -- Add an entity to the list of entities declared in the scope V
7928 function Get_Full_View
(T
: Entity_Id
) return Entity_Id
;
7929 -- If T is an incomplete type and the full declaration has been seen, or
7930 -- is the name of a class_wide type whose root is incomplete, return the
7931 -- corresponding full declaration, else return T itself.
7933 function Is_Entity_Name
(N
: Node_Id
) return Boolean;
7934 -- Test if the node N is the name of an entity (i.e. is an identifier,
7935 -- expanded name, or an attribute reference that returns an entity).
7937 function Next_Index
(Id
: Node_Id
) return Node_Id
;
7938 -- Given an index from a previous call to First_Index or Next_Index,
7939 -- returns a node representing the occurrence of the next index subtype,
7940 -- or Empty if there are no more index subtypes.
7942 function Scope_Depth
(Id
: Entity_Id
) return Uint
;
7943 -- Returns the scope depth value of the Id, unless the Id is a record
7944 -- type, in which case it returns the scope depth of the record scope.
7946 function Subtype_Kind
(K
: Entity_Kind
) return Entity_Kind
;
7947 -- Given an entity_kind K this function returns the entity_kind
7948 -- corresponding to subtype kind of the type represented by K. For
7949 -- example if K is E_Signed_Integer_Type then E_Signed_Integer_Subtype
7950 -- is returned. If K is already a subtype kind it itself is returned. An
7951 -- internal error is generated if no such correspondence exists for K.
7953 ----------------------------------
7954 -- Debugging Output Subprograms --
7955 ----------------------------------
7957 procedure Write_Entity_Flags
(Id
: Entity_Id
; Prefix
: String);
7958 -- Writes a series of entries giving a line for each flag that is
7959 -- set to True. Each line is prefixed by the given string
7961 procedure Write_Entity_Info
(Id
: Entity_Id
; Prefix
: String);
7962 -- A debugging procedure to write out information about an entity
7964 procedure Write_Field6_Name
(Id
: Entity_Id
);
7965 procedure Write_Field7_Name
(Id
: Entity_Id
);
7966 procedure Write_Field8_Name
(Id
: Entity_Id
);
7967 procedure Write_Field9_Name
(Id
: Entity_Id
);
7968 procedure Write_Field10_Name
(Id
: Entity_Id
);
7969 procedure Write_Field11_Name
(Id
: Entity_Id
);
7970 procedure Write_Field12_Name
(Id
: Entity_Id
);
7971 procedure Write_Field13_Name
(Id
: Entity_Id
);
7972 procedure Write_Field14_Name
(Id
: Entity_Id
);
7973 procedure Write_Field15_Name
(Id
: Entity_Id
);
7974 procedure Write_Field16_Name
(Id
: Entity_Id
);
7975 procedure Write_Field17_Name
(Id
: Entity_Id
);
7976 procedure Write_Field18_Name
(Id
: Entity_Id
);
7977 procedure Write_Field19_Name
(Id
: Entity_Id
);
7978 procedure Write_Field20_Name
(Id
: Entity_Id
);
7979 procedure Write_Field21_Name
(Id
: Entity_Id
);
7980 procedure Write_Field22_Name
(Id
: Entity_Id
);
7981 procedure Write_Field23_Name
(Id
: Entity_Id
);
7982 procedure Write_Field24_Name
(Id
: Entity_Id
);
7983 procedure Write_Field25_Name
(Id
: Entity_Id
);
7984 procedure Write_Field26_Name
(Id
: Entity_Id
);
7985 procedure Write_Field27_Name
(Id
: Entity_Id
);
7986 procedure Write_Field28_Name
(Id
: Entity_Id
);
7987 procedure Write_Field29_Name
(Id
: Entity_Id
);
7988 procedure Write_Field30_Name
(Id
: Entity_Id
);
7989 procedure Write_Field31_Name
(Id
: Entity_Id
);
7990 procedure Write_Field32_Name
(Id
: Entity_Id
);
7991 procedure Write_Field33_Name
(Id
: Entity_Id
);
7992 procedure Write_Field34_Name
(Id
: Entity_Id
);
7993 procedure Write_Field35_Name
(Id
: Entity_Id
);
7994 -- These routines are used in Treepr to output a nice symbolic name for
7995 -- the given field, depending on the Ekind. No blanks or end of lines are
7996 -- output, just the characters of the field name.
7998 --------------------
7999 -- Inline Pragmas --
8000 --------------------
8002 -- Note that these inline pragmas are referenced by the XEINFO utility
8003 -- program in preparing the corresponding C header, and only those
8004 -- subprograms meeting the requirements documented in the section on
8005 -- XEINFO may be referenced in this section.
8007 pragma Inline
(Abstract_States
);
8008 pragma Inline
(Accept_Address
);
8009 pragma Inline
(Access_Disp_Table
);
8010 pragma Inline
(Activation_Record_Component
);
8011 pragma Inline
(Actual_Subtype
);
8012 pragma Inline
(Address_Taken
);
8013 pragma Inline
(Alias
);
8014 pragma Inline
(Alignment
);
8015 pragma Inline
(Associated_Formal_Package
);
8016 pragma Inline
(Associated_Node_For_Itype
);
8017 pragma Inline
(Associated_Storage_Pool
);
8018 pragma Inline
(Barrier_Function
);
8019 pragma Inline
(Block_Node
);
8020 pragma Inline
(Body_Entity
);
8021 pragma Inline
(Body_Needed_For_SAL
);
8022 pragma Inline
(Body_References
);
8023 pragma Inline
(BIP_Initialization_Call
);
8024 pragma Inline
(CR_Discriminant
);
8025 pragma Inline
(C_Pass_By_Copy
);
8026 pragma Inline
(Can_Never_Be_Null
);
8027 pragma Inline
(Can_Use_Internal_Rep
);
8028 pragma Inline
(Checks_May_Be_Suppressed
);
8029 pragma Inline
(Class_Wide_Type
);
8030 pragma Inline
(Cloned_Subtype
);
8031 pragma Inline
(Component_Bit_Offset
);
8032 pragma Inline
(Component_Clause
);
8033 pragma Inline
(Component_Size
);
8034 pragma Inline
(Component_Type
);
8035 pragma Inline
(Contains_Ignored_Ghost_Code
);
8036 pragma Inline
(Contract
);
8037 pragma Inline
(Corresponding_Concurrent_Type
);
8038 pragma Inline
(Corresponding_Discriminant
);
8039 pragma Inline
(Corresponding_Equality
);
8040 pragma Inline
(Corresponding_Protected_Entry
);
8041 pragma Inline
(Corresponding_Record_Type
);
8042 pragma Inline
(Corresponding_Remote_Type
);
8043 pragma Inline
(Current_Use_Clause
);
8044 pragma Inline
(Current_Value
);
8045 pragma Inline
(DTC_Entity
);
8046 pragma Inline
(DT_Entry_Count
);
8047 pragma Inline
(DT_Offset_To_Top_Func
);
8048 pragma Inline
(DT_Position
);
8049 pragma Inline
(Debug_Info_Off
);
8050 pragma Inline
(Debug_Renaming_Link
);
8051 pragma Inline
(Default_Aspect_Component_Value
);
8052 pragma Inline
(Default_Aspect_Value
);
8053 pragma Inline
(Default_Expr_Function
);
8054 pragma Inline
(Default_Expressions_Processed
);
8055 pragma Inline
(Default_Value
);
8056 pragma Inline
(Delay_Cleanups
);
8057 pragma Inline
(Delay_Subprogram_Descriptors
);
8058 pragma Inline
(Delta_Value
);
8059 pragma Inline
(Dependent_Instances
);
8060 pragma Inline
(Depends_On_Private
);
8061 pragma Inline
(Derived_Type_Link
);
8062 pragma Inline
(Digits_Value
);
8063 pragma Inline
(Direct_Primitive_Operations
);
8064 pragma Inline
(Directly_Designated_Type
);
8065 pragma Inline
(Discard_Names
);
8066 pragma Inline
(Discriminal
);
8067 pragma Inline
(Discriminal_Link
);
8068 pragma Inline
(Discriminant_Checking_Func
);
8069 pragma Inline
(Discriminant_Constraint
);
8070 pragma Inline
(Discriminant_Default_Value
);
8071 pragma Inline
(Discriminant_Number
);
8072 pragma Inline
(Dispatch_Table_Wrappers
);
8073 pragma Inline
(Elaborate_Body_Desirable
);
8074 pragma Inline
(Elaboration_Entity
);
8075 pragma Inline
(Elaboration_Entity_Required
);
8076 pragma Inline
(Encapsulating_State
);
8077 pragma Inline
(Enclosing_Scope
);
8078 pragma Inline
(Entry_Accepted
);
8079 pragma Inline
(Entry_Bodies_Array
);
8080 pragma Inline
(Entry_Cancel_Parameter
);
8081 pragma Inline
(Entry_Component
);
8082 pragma Inline
(Entry_Formal
);
8083 pragma Inline
(Entry_Index_Constant
);
8084 pragma Inline
(Entry_Index_Type
);
8085 pragma Inline
(Entry_Parameters_Type
);
8086 pragma Inline
(Enum_Pos_To_Rep
);
8087 pragma Inline
(Enumeration_Pos
);
8088 pragma Inline
(Enumeration_Rep
);
8089 pragma Inline
(Enumeration_Rep_Expr
);
8090 pragma Inline
(Equivalent_Type
);
8091 pragma Inline
(Esize
);
8092 pragma Inline
(Extra_Accessibility
);
8093 pragma Inline
(Extra_Accessibility_Of_Result
);
8094 pragma Inline
(Extra_Constrained
);
8095 pragma Inline
(Extra_Formal
);
8096 pragma Inline
(Extra_Formals
);
8097 pragma Inline
(Finalization_Master
);
8098 pragma Inline
(Finalizer
);
8099 pragma Inline
(First_Entity
);
8100 pragma Inline
(First_Exit_Statement
);
8101 pragma Inline
(First_Index
);
8102 pragma Inline
(First_Literal
);
8103 pragma Inline
(First_Private_Entity
);
8104 pragma Inline
(First_Rep_Item
);
8105 pragma Inline
(Freeze_Node
);
8106 pragma Inline
(From_Limited_With
);
8107 pragma Inline
(Full_View
);
8108 pragma Inline
(Generic_Homonym
);
8109 pragma Inline
(Generic_Renamings
);
8110 pragma Inline
(Handler_Records
);
8111 pragma Inline
(Has_Aliased_Components
);
8112 pragma Inline
(Has_Alignment_Clause
);
8113 pragma Inline
(Has_All_Calls_Remote
);
8114 pragma Inline
(Has_Anonymous_Master
);
8115 pragma Inline
(Has_Atomic_Components
);
8116 pragma Inline
(Has_Biased_Representation
);
8117 pragma Inline
(Has_Completion
);
8118 pragma Inline
(Has_Completion_In_Body
);
8119 pragma Inline
(Has_Complex_Representation
);
8120 pragma Inline
(Has_Component_Size_Clause
);
8121 pragma Inline
(Has_Constrained_Partial_View
);
8122 pragma Inline
(Has_Contiguous_Rep
);
8123 pragma Inline
(Has_Controlled_Component
);
8124 pragma Inline
(Has_Controlling_Result
);
8125 pragma Inline
(Has_Convention_Pragma
);
8126 pragma Inline
(Has_Default_Aspect
);
8127 pragma Inline
(Has_Default_Init_Cond
);
8128 pragma Inline
(Has_Delayed_Aspects
);
8129 pragma Inline
(Has_Delayed_Freeze
);
8130 pragma Inline
(Has_Delayed_Rep_Aspects
);
8131 pragma Inline
(Has_Discriminants
);
8132 pragma Inline
(Has_Dispatch_Table
);
8133 pragma Inline
(Has_Dynamic_Predicate_Aspect
);
8134 pragma Inline
(Has_Enumeration_Rep_Clause
);
8135 pragma Inline
(Has_Exit
);
8136 pragma Inline
(Has_Expanded_Contract
);
8137 pragma Inline
(Has_Forward_Instantiation
);
8138 pragma Inline
(Has_Fully_Qualified_Name
);
8139 pragma Inline
(Has_Gigi_Rep_Item
);
8140 pragma Inline
(Has_Homonym
);
8141 pragma Inline
(Has_Implicit_Dereference
);
8142 pragma Inline
(Has_Independent_Components
);
8143 pragma Inline
(Has_Inheritable_Invariants
);
8144 pragma Inline
(Has_Inherited_Default_Init_Cond
);
8145 pragma Inline
(Has_Initial_Value
);
8146 pragma Inline
(Has_Invariants
);
8147 pragma Inline
(Has_Loop_Entry_Attributes
);
8148 pragma Inline
(Has_Machine_Radix_Clause
);
8149 pragma Inline
(Has_Master_Entity
);
8150 pragma Inline
(Has_Missing_Return
);
8151 pragma Inline
(Has_Nested_Block_With_Handler
);
8152 pragma Inline
(Has_Nested_Subprogram
);
8153 pragma Inline
(Has_Non_Standard_Rep
);
8154 pragma Inline
(Has_Object_Size_Clause
);
8155 pragma Inline
(Has_Out_Or_In_Out_Parameter
);
8156 pragma Inline
(Has_Per_Object_Constraint
);
8157 pragma Inline
(Has_Pragma_Controlled
);
8158 pragma Inline
(Has_Pragma_Elaborate_Body
);
8159 pragma Inline
(Has_Pragma_Inline
);
8160 pragma Inline
(Has_Pragma_Inline_Always
);
8161 pragma Inline
(Has_Pragma_No_Inline
);
8162 pragma Inline
(Has_Pragma_Ordered
);
8163 pragma Inline
(Has_Pragma_Pack
);
8164 pragma Inline
(Has_Pragma_Preelab_Init
);
8165 pragma Inline
(Has_Pragma_Pure
);
8166 pragma Inline
(Has_Pragma_Pure_Function
);
8167 pragma Inline
(Has_Pragma_Thread_Local_Storage
);
8168 pragma Inline
(Has_Pragma_Unmodified
);
8169 pragma Inline
(Has_Pragma_Unreferenced
);
8170 pragma Inline
(Has_Pragma_Unreferenced_Objects
);
8171 pragma Inline
(Has_Predicates
);
8172 pragma Inline
(Has_Primitive_Operations
);
8173 pragma Inline
(Has_Private_Ancestor
);
8174 pragma Inline
(Has_Private_Declaration
);
8175 pragma Inline
(Has_Protected
);
8176 pragma Inline
(Has_Qualified_Name
);
8177 pragma Inline
(Has_RACW
);
8178 pragma Inline
(Has_Record_Rep_Clause
);
8179 pragma Inline
(Has_Recursive_Call
);
8180 pragma Inline
(Has_Shift_Operator
);
8181 pragma Inline
(Has_Size_Clause
);
8182 pragma Inline
(Has_Small_Clause
);
8183 pragma Inline
(Has_Specified_Layout
);
8184 pragma Inline
(Has_Specified_Stream_Input
);
8185 pragma Inline
(Has_Specified_Stream_Output
);
8186 pragma Inline
(Has_Specified_Stream_Read
);
8187 pragma Inline
(Has_Specified_Stream_Write
);
8188 pragma Inline
(Has_Static_Discriminants
);
8189 pragma Inline
(Has_Static_Predicate
);
8190 pragma Inline
(Has_Static_Predicate_Aspect
);
8191 pragma Inline
(Has_Storage_Size_Clause
);
8192 pragma Inline
(Has_Stream_Size_Clause
);
8193 pragma Inline
(Has_Task
);
8194 pragma Inline
(Has_Thunks
);
8195 pragma Inline
(Has_Unchecked_Union
);
8196 pragma Inline
(Has_Unknown_Discriminants
);
8197 pragma Inline
(Has_Uplevel_Reference
);
8198 pragma Inline
(Has_Visible_Refinement
);
8199 pragma Inline
(Has_Volatile_Components
);
8200 pragma Inline
(Has_Xref_Entry
);
8201 pragma Inline
(Hiding_Loop_Variable
);
8202 pragma Inline
(Homonym
);
8203 pragma Inline
(Import_Pragma
);
8204 pragma Inline
(In_Package_Body
);
8205 pragma Inline
(In_Private_Part
);
8206 pragma Inline
(In_Use
);
8207 pragma Inline
(Inner_Instances
);
8208 pragma Inline
(Interface_Alias
);
8209 pragma Inline
(Interface_Name
);
8210 pragma Inline
(Interfaces
);
8211 pragma Inline
(Is_Abstract_Subprogram
);
8212 pragma Inline
(Is_Abstract_Type
);
8213 pragma Inline
(Is_Access_Constant
);
8214 pragma Inline
(Is_Access_Protected_Subprogram_Type
);
8215 pragma Inline
(Is_Access_Subprogram_Type
);
8216 pragma Inline
(Is_Access_Type
);
8217 pragma Inline
(Is_Ada_2005_Only
);
8218 pragma Inline
(Is_Ada_2012_Only
);
8219 pragma Inline
(Is_Aggregate_Type
);
8220 pragma Inline
(Is_Aliased
);
8221 pragma Inline
(Is_Array_Type
);
8222 pragma Inline
(Is_Assignable
);
8223 pragma Inline
(Is_Asynchronous
);
8224 pragma Inline
(Is_Atomic
);
8225 pragma Inline
(Is_Bit_Packed_Array
);
8226 pragma Inline
(Is_CPP_Class
);
8227 pragma Inline
(Is_Called
);
8228 pragma Inline
(Is_Character_Type
);
8229 pragma Inline
(Is_Checked_Ghost_Entity
);
8230 pragma Inline
(Is_Child_Unit
);
8231 pragma Inline
(Is_Class_Wide_Equivalent_Type
);
8232 pragma Inline
(Is_Class_Wide_Type
);
8233 pragma Inline
(Is_Compilation_Unit
);
8234 pragma Inline
(Is_Completely_Hidden
);
8235 pragma Inline
(Is_Composite_Type
);
8236 pragma Inline
(Is_Concurrent_Body
);
8237 pragma Inline
(Is_Concurrent_Record_Type
);
8238 pragma Inline
(Is_Concurrent_Type
);
8239 pragma Inline
(Is_Constr_Subt_For_UN_Aliased
);
8240 pragma Inline
(Is_Constr_Subt_For_U_Nominal
);
8241 pragma Inline
(Is_Constrained
);
8242 pragma Inline
(Is_Constructor
);
8243 pragma Inline
(Is_Controlled
);
8244 pragma Inline
(Is_Controlling_Formal
);
8245 pragma Inline
(Is_Decimal_Fixed_Point_Type
);
8246 pragma Inline
(Is_Default_Init_Cond_Procedure
);
8247 pragma Inline
(Is_Descendent_Of_Address
);
8248 pragma Inline
(Is_Digits_Type
);
8249 pragma Inline
(Is_Discrete_Or_Fixed_Point_Type
);
8250 pragma Inline
(Is_Discrete_Type
);
8251 pragma Inline
(Is_Discrim_SO_Function
);
8252 pragma Inline
(Is_Discriminant_Check_Function
);
8253 pragma Inline
(Is_Dispatch_Table_Entity
);
8254 pragma Inline
(Is_Dispatching_Operation
);
8255 pragma Inline
(Is_Elementary_Type
);
8256 pragma Inline
(Is_Eliminated
);
8257 pragma Inline
(Is_Entry
);
8258 pragma Inline
(Is_Entry_Formal
);
8259 pragma Inline
(Is_Enumeration_Type
);
8260 pragma Inline
(Is_Exported
);
8261 pragma Inline
(Is_First_Subtype
);
8262 pragma Inline
(Is_Fixed_Point_Type
);
8263 pragma Inline
(Is_Floating_Point_Type
);
8264 pragma Inline
(Is_For_Access_Subtype
);
8265 pragma Inline
(Is_Formal
);
8266 pragma Inline
(Is_Formal_Object
);
8267 pragma Inline
(Is_Formal_Subprogram
);
8268 pragma Inline
(Is_Frozen
);
8269 pragma Inline
(Is_Generic_Actual_Subprogram
);
8270 pragma Inline
(Is_Generic_Actual_Type
);
8271 pragma Inline
(Is_Generic_Instance
);
8272 pragma Inline
(Is_Generic_Subprogram
);
8273 pragma Inline
(Is_Generic_Type
);
8274 pragma Inline
(Is_Generic_Unit
);
8275 pragma Inline
(Is_Hidden
);
8276 pragma Inline
(Is_Hidden_Non_Overridden_Subpgm
);
8277 pragma Inline
(Is_Hidden_Open_Scope
);
8278 pragma Inline
(Is_Ignored_Ghost_Entity
);
8279 pragma Inline
(Is_Immediately_Visible
);
8280 pragma Inline
(Is_Implementation_Defined
);
8281 pragma Inline
(Is_Imported
);
8282 pragma Inline
(Is_Incomplete_Or_Private_Type
);
8283 pragma Inline
(Is_Incomplete_Type
);
8284 pragma Inline
(Is_Independent
);
8285 pragma Inline
(Is_Inlined
);
8286 pragma Inline
(Is_Inlined_Always
);
8287 pragma Inline
(Is_Instantiated
);
8288 pragma Inline
(Is_Integer_Type
);
8289 pragma Inline
(Is_Interface
);
8290 pragma Inline
(Is_Internal
);
8291 pragma Inline
(Is_Interrupt_Handler
);
8292 pragma Inline
(Is_Intrinsic_Subprogram
);
8293 pragma Inline
(Is_Invariant_Procedure
);
8294 pragma Inline
(Is_Itype
);
8295 pragma Inline
(Is_Known_Non_Null
);
8296 pragma Inline
(Is_Known_Null
);
8297 pragma Inline
(Is_Known_Valid
);
8298 pragma Inline
(Is_Limited_Composite
);
8299 pragma Inline
(Is_Limited_Interface
);
8300 pragma Inline
(Is_Limited_Record
);
8301 pragma Inline
(Is_Local_Anonymous_Access
);
8302 pragma Inline
(Is_Machine_Code_Subprogram
);
8303 pragma Inline
(Is_Modular_Integer_Type
);
8304 pragma Inline
(Is_Named_Number
);
8305 pragma Inline
(Is_Non_Static_Subtype
);
8306 pragma Inline
(Is_Null_Init_Proc
);
8307 pragma Inline
(Is_Numeric_Type
);
8308 pragma Inline
(Is_Object
);
8309 pragma Inline
(Is_Obsolescent
);
8310 pragma Inline
(Is_Only_Out_Parameter
);
8311 pragma Inline
(Is_Ordinary_Fixed_Point_Type
);
8312 pragma Inline
(Is_Overloadable
);
8313 pragma Inline
(Is_Package_Body_Entity
);
8314 pragma Inline
(Is_Packed
);
8315 pragma Inline
(Is_Packed_Array_Impl_Type
);
8316 pragma Inline
(Is_Potentially_Use_Visible
);
8317 pragma Inline
(Is_Predicate_Function
);
8318 pragma Inline
(Is_Predicate_Function_M
);
8319 pragma Inline
(Is_Preelaborated
);
8320 pragma Inline
(Is_Primitive
);
8321 pragma Inline
(Is_Primitive_Wrapper
);
8322 pragma Inline
(Is_Private_Composite
);
8323 pragma Inline
(Is_Private_Descendant
);
8324 pragma Inline
(Is_Private_Primitive
);
8325 pragma Inline
(Is_Private_Type
);
8326 pragma Inline
(Is_Processed_Transient
);
8327 pragma Inline
(Is_Protected_Type
);
8328 pragma Inline
(Is_Public
);
8329 pragma Inline
(Is_Pure
);
8330 pragma Inline
(Is_Pure_Unit_Access_Type
);
8331 pragma Inline
(Is_RACW_Stub_Type
);
8332 pragma Inline
(Is_Raised
);
8333 pragma Inline
(Is_Real_Type
);
8334 pragma Inline
(Is_Record_Type
);
8335 pragma Inline
(Is_Remote_Call_Interface
);
8336 pragma Inline
(Is_Remote_Types
);
8337 pragma Inline
(Is_Renaming_Of_Object
);
8338 pragma Inline
(Is_Return_Object
);
8339 pragma Inline
(Is_Safe_To_Reevaluate
);
8340 pragma Inline
(Is_Scalar_Type
);
8341 pragma Inline
(Is_Shared_Passive
);
8342 pragma Inline
(Is_Signed_Integer_Type
);
8343 pragma Inline
(Is_Static_Type
);
8344 pragma Inline
(Is_Statically_Allocated
);
8345 pragma Inline
(Is_Subprogram
);
8346 pragma Inline
(Is_Tag
);
8347 pragma Inline
(Is_Tagged_Type
);
8348 pragma Inline
(Is_Task_Type
);
8349 pragma Inline
(Is_Thunk
);
8350 pragma Inline
(Is_Trivial_Subprogram
);
8351 pragma Inline
(Is_True_Constant
);
8352 pragma Inline
(Is_Type
);
8353 pragma Inline
(Is_Unchecked_Union
);
8354 pragma Inline
(Is_Underlying_Record_View
);
8355 pragma Inline
(Is_Unsigned_Type
);
8356 pragma Inline
(Is_Valued_Procedure
);
8357 pragma Inline
(Is_Visible_Formal
);
8358 pragma Inline
(Is_Visible_Lib_Unit
);
8359 pragma Inline
(Itype_Printed
);
8360 pragma Inline
(Kill_Elaboration_Checks
);
8361 pragma Inline
(Kill_Range_Checks
);
8362 pragma Inline
(Known_To_Have_Preelab_Init
);
8363 pragma Inline
(Last_Aggregate_Assignment
);
8364 pragma Inline
(Last_Assignment
);
8365 pragma Inline
(Last_Entity
);
8366 pragma Inline
(Limited_View
);
8367 pragma Inline
(Linker_Section_Pragma
);
8368 pragma Inline
(Lit_Indexes
);
8369 pragma Inline
(Lit_Strings
);
8370 pragma Inline
(Low_Bound_Tested
);
8371 pragma Inline
(Machine_Radix_10
);
8372 pragma Inline
(Master_Id
);
8373 pragma Inline
(Materialize_Entity
);
8374 pragma Inline
(May_Inherit_Delayed_Rep_Aspects
);
8375 pragma Inline
(Mechanism
);
8376 pragma Inline
(Modulus
);
8377 pragma Inline
(Must_Be_On_Byte_Boundary
);
8378 pragma Inline
(Must_Have_Preelab_Init
);
8379 pragma Inline
(Needs_Debug_Info
);
8380 pragma Inline
(Needs_No_Actuals
);
8381 pragma Inline
(Never_Set_In_Source
);
8382 pragma Inline
(Next_Index
);
8383 pragma Inline
(Next_Inlined_Subprogram
);
8384 pragma Inline
(Next_Literal
);
8385 pragma Inline
(No_Dynamic_Predicate_On_Actual
);
8386 pragma Inline
(No_Pool_Assigned
);
8387 pragma Inline
(No_Predicate_On_Actual
);
8388 pragma Inline
(No_Return
);
8389 pragma Inline
(No_Strict_Aliasing
);
8390 pragma Inline
(No_Tagged_Streams_Pragma
);
8391 pragma Inline
(Non_Binary_Modulus
);
8392 pragma Inline
(Non_Limited_View
);
8393 pragma Inline
(Nonzero_Is_True
);
8394 pragma Inline
(Normalized_First_Bit
);
8395 pragma Inline
(Normalized_Position
);
8396 pragma Inline
(Normalized_Position_Max
);
8397 pragma Inline
(OK_To_Rename
);
8398 pragma Inline
(OK_To_Reorder_Components
);
8399 pragma Inline
(Optimize_Alignment_Space
);
8400 pragma Inline
(Optimize_Alignment_Time
);
8401 pragma Inline
(Original_Access_Type
);
8402 pragma Inline
(Original_Array_Type
);
8403 pragma Inline
(Original_Record_Component
);
8404 pragma Inline
(Overlays_Constant
);
8405 pragma Inline
(Overridden_Operation
);
8406 pragma Inline
(PPC_Wrapper
);
8407 pragma Inline
(Package_Instantiation
);
8408 pragma Inline
(Packed_Array_Impl_Type
);
8409 pragma Inline
(Parameter_Mode
);
8410 pragma Inline
(Parent_Subtype
);
8411 pragma Inline
(Part_Of_Constituents
);
8412 pragma Inline
(Partial_View_Has_Unknown_Discr
);
8413 pragma Inline
(Pending_Access_Types
);
8414 pragma Inline
(Postconditions_Proc
);
8415 pragma Inline
(Prival
);
8416 pragma Inline
(Prival_Link
);
8417 pragma Inline
(Private_Dependents
);
8418 pragma Inline
(Private_View
);
8419 pragma Inline
(Protected_Body_Subprogram
);
8420 pragma Inline
(Protected_Formal
);
8421 pragma Inline
(Protection_Object
);
8422 pragma Inline
(RM_Size
);
8423 pragma Inline
(Reachable
);
8424 pragma Inline
(Referenced
);
8425 pragma Inline
(Referenced_As_LHS
);
8426 pragma Inline
(Referenced_As_Out_Parameter
);
8427 pragma Inline
(Refinement_Constituents
);
8428 pragma Inline
(Register_Exception_Call
);
8429 pragma Inline
(Related_Array_Object
);
8430 pragma Inline
(Related_Expression
);
8431 pragma Inline
(Related_Instance
);
8432 pragma Inline
(Related_Type
);
8433 pragma Inline
(Relative_Deadline_Variable
);
8434 pragma Inline
(Renamed_Entity
);
8435 pragma Inline
(Renamed_In_Spec
);
8436 pragma Inline
(Renamed_Object
);
8437 pragma Inline
(Renaming_Map
);
8438 pragma Inline
(Requires_Overriding
);
8439 pragma Inline
(Return_Applies_To
);
8440 pragma Inline
(Return_Present
);
8441 pragma Inline
(Returns_By_Ref
);
8442 pragma Inline
(Returns_Limited_View
);
8443 pragma Inline
(Reverse_Bit_Order
);
8444 pragma Inline
(Reverse_Storage_Order
);
8445 pragma Inline
(Scalar_Range
);
8446 pragma Inline
(Scale_Value
);
8447 pragma Inline
(Scope_Depth_Value
);
8448 pragma Inline
(Sec_Stack_Needed_For_Return
);
8449 pragma Inline
(Shadow_Entities
);
8450 pragma Inline
(Shared_Var_Procs_Instance
);
8451 pragma Inline
(Size_Check_Code
);
8452 pragma Inline
(Size_Depends_On_Discriminant
);
8453 pragma Inline
(Size_Known_At_Compile_Time
);
8454 pragma Inline
(Small_Value
);
8455 pragma Inline
(SPARK_Aux_Pragma
);
8456 pragma Inline
(SPARK_Aux_Pragma_Inherited
);
8457 pragma Inline
(SPARK_Pragma
);
8458 pragma Inline
(SPARK_Pragma_Inherited
);
8459 pragma Inline
(Spec_Entity
);
8460 pragma Inline
(SSO_Set_High_By_Default
);
8461 pragma Inline
(SSO_Set_Low_By_Default
);
8462 pragma Inline
(Static_Elaboration_Desired
);
8463 pragma Inline
(Static_Initialization
);
8464 pragma Inline
(Static_Discrete_Predicate
);
8465 pragma Inline
(Static_Real_Or_String_Predicate
);
8466 pragma Inline
(Status_Flag_Or_Transient_Decl
);
8467 pragma Inline
(Storage_Size_Variable
);
8468 pragma Inline
(Stored_Constraint
);
8469 pragma Inline
(Stores_Attribute_Old_Prefix
);
8470 pragma Inline
(Strict_Alignment
);
8471 pragma Inline
(String_Literal_Length
);
8472 pragma Inline
(String_Literal_Low_Bound
);
8473 pragma Inline
(Subprograms_For_Type
);
8474 pragma Inline
(Subps_Index
);
8475 pragma Inline
(Suppress_Elaboration_Warnings
);
8476 pragma Inline
(Suppress_Initialization
);
8477 pragma Inline
(Suppress_Style_Checks
);
8478 pragma Inline
(Suppress_Value_Tracking_On_Call
);
8479 pragma Inline
(Task_Body_Procedure
);
8480 pragma Inline
(Thunk_Entity
);
8481 pragma Inline
(Treat_As_Volatile
);
8482 pragma Inline
(Underlying_Full_View
);
8483 pragma Inline
(Underlying_Record_View
);
8484 pragma Inline
(Universal_Aliasing
);
8485 pragma Inline
(Unset_Reference
);
8486 pragma Inline
(Uplevel_Reference_Noted
);
8487 pragma Inline
(Uplevel_References
);
8488 pragma Inline
(Used_As_Generic_Actual
);
8489 pragma Inline
(Uses_Lock_Free
);
8490 pragma Inline
(Uses_Sec_Stack
);
8491 pragma Inline
(Warnings_Off
);
8492 pragma Inline
(Warnings_Off_Used
);
8493 pragma Inline
(Warnings_Off_Used_Unmodified
);
8494 pragma Inline
(Warnings_Off_Used_Unreferenced
);
8495 pragma Inline
(Was_Hidden
);
8496 pragma Inline
(Wrapped_Entity
);
8498 pragma Inline
(Init_Alignment
);
8499 pragma Inline
(Init_Component_Bit_Offset
);
8500 pragma Inline
(Init_Component_Size
);
8501 pragma Inline
(Init_Digits_Value
);
8502 pragma Inline
(Init_Esize
);
8503 pragma Inline
(Init_RM_Size
);
8505 pragma Inline
(Set_Abstract_States
);
8506 pragma Inline
(Set_Accept_Address
);
8507 pragma Inline
(Set_Access_Disp_Table
);
8508 pragma Inline
(Set_Activation_Record_Component
);
8509 pragma Inline
(Set_Actual_Subtype
);
8510 pragma Inline
(Set_Address_Taken
);
8511 pragma Inline
(Set_Alias
);
8512 pragma Inline
(Set_Alignment
);
8513 pragma Inline
(Set_Associated_Formal_Package
);
8514 pragma Inline
(Set_Associated_Node_For_Itype
);
8515 pragma Inline
(Set_Associated_Storage_Pool
);
8516 pragma Inline
(Set_Barrier_Function
);
8517 pragma Inline
(Set_Block_Node
);
8518 pragma Inline
(Set_Body_Entity
);
8519 pragma Inline
(Set_Body_Needed_For_SAL
);
8520 pragma Inline
(Set_Body_References
);
8521 pragma Inline
(Set_BIP_Initialization_Call
);
8522 pragma Inline
(Set_CR_Discriminant
);
8523 pragma Inline
(Set_C_Pass_By_Copy
);
8524 pragma Inline
(Set_Can_Never_Be_Null
);
8525 pragma Inline
(Set_Can_Use_Internal_Rep
);
8526 pragma Inline
(Set_Checks_May_Be_Suppressed
);
8527 pragma Inline
(Set_Class_Wide_Type
);
8528 pragma Inline
(Set_Cloned_Subtype
);
8529 pragma Inline
(Set_Component_Bit_Offset
);
8530 pragma Inline
(Set_Component_Clause
);
8531 pragma Inline
(Set_Component_Size
);
8532 pragma Inline
(Set_Component_Type
);
8533 pragma Inline
(Set_Contains_Ignored_Ghost_Code
);
8534 pragma Inline
(Set_Contract
);
8535 pragma Inline
(Set_Corresponding_Concurrent_Type
);
8536 pragma Inline
(Set_Corresponding_Discriminant
);
8537 pragma Inline
(Set_Corresponding_Equality
);
8538 pragma Inline
(Set_Corresponding_Protected_Entry
);
8539 pragma Inline
(Set_Corresponding_Record_Type
);
8540 pragma Inline
(Set_Corresponding_Remote_Type
);
8541 pragma Inline
(Set_Current_Use_Clause
);
8542 pragma Inline
(Set_Current_Value
);
8543 pragma Inline
(Set_DTC_Entity
);
8544 pragma Inline
(Set_DT_Entry_Count
);
8545 pragma Inline
(Set_DT_Offset_To_Top_Func
);
8546 pragma Inline
(Set_DT_Position
);
8547 pragma Inline
(Set_Debug_Info_Off
);
8548 pragma Inline
(Set_Debug_Renaming_Link
);
8549 pragma Inline
(Set_Default_Aspect_Component_Value
);
8550 pragma Inline
(Set_Default_Aspect_Value
);
8551 pragma Inline
(Set_Default_Expr_Function
);
8552 pragma Inline
(Set_Default_Expressions_Processed
);
8553 pragma Inline
(Set_Default_Value
);
8554 pragma Inline
(Set_Delay_Cleanups
);
8555 pragma Inline
(Set_Delay_Subprogram_Descriptors
);
8556 pragma Inline
(Set_Delta_Value
);
8557 pragma Inline
(Set_Dependent_Instances
);
8558 pragma Inline
(Set_Depends_On_Private
);
8559 pragma Inline
(Set_Derived_Type_Link
);
8560 pragma Inline
(Set_Digits_Value
);
8561 pragma Inline
(Set_Direct_Primitive_Operations
);
8562 pragma Inline
(Set_Directly_Designated_Type
);
8563 pragma Inline
(Set_Discard_Names
);
8564 pragma Inline
(Set_Discriminal
);
8565 pragma Inline
(Set_Discriminal_Link
);
8566 pragma Inline
(Set_Discriminant_Checking_Func
);
8567 pragma Inline
(Set_Discriminant_Constraint
);
8568 pragma Inline
(Set_Discriminant_Default_Value
);
8569 pragma Inline
(Set_Discriminant_Number
);
8570 pragma Inline
(Set_Dispatch_Table_Wrappers
);
8571 pragma Inline
(Set_Elaborate_Body_Desirable
);
8572 pragma Inline
(Set_Elaboration_Entity
);
8573 pragma Inline
(Set_Elaboration_Entity_Required
);
8574 pragma Inline
(Set_Encapsulating_State
);
8575 pragma Inline
(Set_Enclosing_Scope
);
8576 pragma Inline
(Set_Entry_Accepted
);
8577 pragma Inline
(Set_Entry_Bodies_Array
);
8578 pragma Inline
(Set_Entry_Cancel_Parameter
);
8579 pragma Inline
(Set_Entry_Component
);
8580 pragma Inline
(Set_Entry_Formal
);
8581 pragma Inline
(Set_Entry_Parameters_Type
);
8582 pragma Inline
(Set_Enum_Pos_To_Rep
);
8583 pragma Inline
(Set_Enumeration_Pos
);
8584 pragma Inline
(Set_Enumeration_Rep
);
8585 pragma Inline
(Set_Enumeration_Rep_Expr
);
8586 pragma Inline
(Set_Equivalent_Type
);
8587 pragma Inline
(Set_Esize
);
8588 pragma Inline
(Set_Extra_Accessibility
);
8589 pragma Inline
(Set_Extra_Accessibility_Of_Result
);
8590 pragma Inline
(Set_Extra_Constrained
);
8591 pragma Inline
(Set_Extra_Formal
);
8592 pragma Inline
(Set_Extra_Formals
);
8593 pragma Inline
(Set_Finalization_Master
);
8594 pragma Inline
(Set_Finalizer
);
8595 pragma Inline
(Set_First_Entity
);
8596 pragma Inline
(Set_First_Exit_Statement
);
8597 pragma Inline
(Set_First_Index
);
8598 pragma Inline
(Set_First_Literal
);
8599 pragma Inline
(Set_First_Private_Entity
);
8600 pragma Inline
(Set_First_Rep_Item
);
8601 pragma Inline
(Set_Freeze_Node
);
8602 pragma Inline
(Set_From_Limited_With
);
8603 pragma Inline
(Set_Full_View
);
8604 pragma Inline
(Set_Generic_Homonym
);
8605 pragma Inline
(Set_Generic_Renamings
);
8606 pragma Inline
(Set_Handler_Records
);
8607 pragma Inline
(Set_Has_Aliased_Components
);
8608 pragma Inline
(Set_Has_Alignment_Clause
);
8609 pragma Inline
(Set_Has_All_Calls_Remote
);
8610 pragma Inline
(Set_Has_Anonymous_Master
);
8611 pragma Inline
(Set_Has_Atomic_Components
);
8612 pragma Inline
(Set_Has_Biased_Representation
);
8613 pragma Inline
(Set_Has_Completion
);
8614 pragma Inline
(Set_Has_Completion_In_Body
);
8615 pragma Inline
(Set_Has_Complex_Representation
);
8616 pragma Inline
(Set_Has_Component_Size_Clause
);
8617 pragma Inline
(Set_Has_Constrained_Partial_View
);
8618 pragma Inline
(Set_Has_Contiguous_Rep
);
8619 pragma Inline
(Set_Has_Controlled_Component
);
8620 pragma Inline
(Set_Has_Controlling_Result
);
8621 pragma Inline
(Set_Has_Convention_Pragma
);
8622 pragma Inline
(Set_Has_Default_Aspect
);
8623 pragma Inline
(Set_Has_Default_Init_Cond
);
8624 pragma Inline
(Set_Has_Delayed_Aspects
);
8625 pragma Inline
(Set_Has_Delayed_Freeze
);
8626 pragma Inline
(Set_Has_Delayed_Rep_Aspects
);
8627 pragma Inline
(Set_Has_Discriminants
);
8628 pragma Inline
(Set_Has_Dispatch_Table
);
8629 pragma Inline
(Set_Has_Dynamic_Predicate_Aspect
);
8630 pragma Inline
(Set_Has_Enumeration_Rep_Clause
);
8631 pragma Inline
(Set_Has_Exit
);
8632 pragma Inline
(Set_Has_Expanded_Contract
);
8633 pragma Inline
(Set_Has_Forward_Instantiation
);
8634 pragma Inline
(Set_Has_Fully_Qualified_Name
);
8635 pragma Inline
(Set_Has_Gigi_Rep_Item
);
8636 pragma Inline
(Set_Has_Homonym
);
8637 pragma Inline
(Set_Has_Implicit_Dereference
);
8638 pragma Inline
(Set_Has_Independent_Components
);
8639 pragma Inline
(Set_Has_Inheritable_Invariants
);
8640 pragma Inline
(Set_Has_Inherited_Default_Init_Cond
);
8641 pragma Inline
(Set_Has_Initial_Value
);
8642 pragma Inline
(Set_Has_Invariants
);
8643 pragma Inline
(Set_Has_Loop_Entry_Attributes
);
8644 pragma Inline
(Set_Has_Machine_Radix_Clause
);
8645 pragma Inline
(Set_Has_Master_Entity
);
8646 pragma Inline
(Set_Has_Missing_Return
);
8647 pragma Inline
(Set_Has_Nested_Block_With_Handler
);
8648 pragma Inline
(Set_Has_Nested_Subprogram
);
8649 pragma Inline
(Set_Has_Non_Standard_Rep
);
8650 pragma Inline
(Set_Has_Object_Size_Clause
);
8651 pragma Inline
(Set_Has_Out_Or_In_Out_Parameter
);
8652 pragma Inline
(Set_Has_Per_Object_Constraint
);
8653 pragma Inline
(Set_Has_Pragma_Controlled
);
8654 pragma Inline
(Set_Has_Pragma_Elaborate_Body
);
8655 pragma Inline
(Set_Has_Pragma_Inline
);
8656 pragma Inline
(Set_Has_Pragma_Inline_Always
);
8657 pragma Inline
(Set_Has_Pragma_No_Inline
);
8658 pragma Inline
(Set_Has_Pragma_Ordered
);
8659 pragma Inline
(Set_Has_Pragma_Pack
);
8660 pragma Inline
(Set_Has_Pragma_Preelab_Init
);
8661 pragma Inline
(Set_Has_Pragma_Pure
);
8662 pragma Inline
(Set_Has_Pragma_Pure_Function
);
8663 pragma Inline
(Set_Has_Pragma_Thread_Local_Storage
);
8664 pragma Inline
(Set_Has_Pragma_Unmodified
);
8665 pragma Inline
(Set_Has_Pragma_Unreferenced
);
8666 pragma Inline
(Set_Has_Pragma_Unreferenced_Objects
);
8667 pragma Inline
(Set_Has_Predicates
);
8668 pragma Inline
(Set_Has_Primitive_Operations
);
8669 pragma Inline
(Set_Has_Private_Ancestor
);
8670 pragma Inline
(Set_Has_Private_Declaration
);
8671 pragma Inline
(Set_Has_Protected
);
8672 pragma Inline
(Set_Has_Qualified_Name
);
8673 pragma Inline
(Set_Has_RACW
);
8674 pragma Inline
(Set_Has_Record_Rep_Clause
);
8675 pragma Inline
(Set_Has_Recursive_Call
);
8676 pragma Inline
(Set_Has_Shift_Operator
);
8677 pragma Inline
(Set_Has_Size_Clause
);
8678 pragma Inline
(Set_Has_Small_Clause
);
8679 pragma Inline
(Set_Has_Specified_Layout
);
8680 pragma Inline
(Set_Has_Specified_Stream_Input
);
8681 pragma Inline
(Set_Has_Specified_Stream_Output
);
8682 pragma Inline
(Set_Has_Specified_Stream_Read
);
8683 pragma Inline
(Set_Has_Specified_Stream_Write
);
8684 pragma Inline
(Set_Has_Static_Discriminants
);
8685 pragma Inline
(Set_Has_Static_Predicate
);
8686 pragma Inline
(Set_Has_Static_Predicate_Aspect
);
8687 pragma Inline
(Set_Has_Storage_Size_Clause
);
8688 pragma Inline
(Set_Has_Stream_Size_Clause
);
8689 pragma Inline
(Set_Has_Task
);
8690 pragma Inline
(Set_Has_Thunks
);
8691 pragma Inline
(Set_Has_Unchecked_Union
);
8692 pragma Inline
(Set_Has_Unknown_Discriminants
);
8693 pragma Inline
(Set_Has_Uplevel_Reference
);
8694 pragma Inline
(Set_Has_Visible_Refinement
);
8695 pragma Inline
(Set_Has_Volatile_Components
);
8696 pragma Inline
(Set_Has_Xref_Entry
);
8697 pragma Inline
(Set_Hiding_Loop_Variable
);
8698 pragma Inline
(Set_Homonym
);
8699 pragma Inline
(Set_Import_Pragma
);
8700 pragma Inline
(Set_In_Package_Body
);
8701 pragma Inline
(Set_In_Private_Part
);
8702 pragma Inline
(Set_In_Use
);
8703 pragma Inline
(Set_Inner_Instances
);
8704 pragma Inline
(Set_Interface_Alias
);
8705 pragma Inline
(Set_Interface_Name
);
8706 pragma Inline
(Set_Interfaces
);
8707 pragma Inline
(Set_Is_Abstract_Subprogram
);
8708 pragma Inline
(Set_Is_Abstract_Type
);
8709 pragma Inline
(Set_Is_Access_Constant
);
8710 pragma Inline
(Set_Is_Ada_2005_Only
);
8711 pragma Inline
(Set_Is_Ada_2012_Only
);
8712 pragma Inline
(Set_Is_Aliased
);
8713 pragma Inline
(Set_Is_Asynchronous
);
8714 pragma Inline
(Set_Is_Atomic
);
8715 pragma Inline
(Set_Is_Bit_Packed_Array
);
8716 pragma Inline
(Set_Is_CPP_Class
);
8717 pragma Inline
(Set_Is_Called
);
8718 pragma Inline
(Set_Is_Character_Type
);
8719 pragma Inline
(Set_Is_Checked_Ghost_Entity
);
8720 pragma Inline
(Set_Is_Child_Unit
);
8721 pragma Inline
(Set_Is_Class_Wide_Equivalent_Type
);
8722 pragma Inline
(Set_Is_Compilation_Unit
);
8723 pragma Inline
(Set_Is_Completely_Hidden
);
8724 pragma Inline
(Set_Is_Concurrent_Record_Type
);
8725 pragma Inline
(Set_Is_Constr_Subt_For_UN_Aliased
);
8726 pragma Inline
(Set_Is_Constr_Subt_For_U_Nominal
);
8727 pragma Inline
(Set_Is_Constrained
);
8728 pragma Inline
(Set_Is_Constructor
);
8729 pragma Inline
(Set_Is_Controlled
);
8730 pragma Inline
(Set_Is_Controlling_Formal
);
8731 pragma Inline
(Set_Is_Default_Init_Cond_Procedure
);
8732 pragma Inline
(Set_Is_Descendent_Of_Address
);
8733 pragma Inline
(Set_Is_Discrim_SO_Function
);
8734 pragma Inline
(Set_Is_Discriminant_Check_Function
);
8735 pragma Inline
(Set_Is_Dispatch_Table_Entity
);
8736 pragma Inline
(Set_Is_Dispatching_Operation
);
8737 pragma Inline
(Set_Is_Eliminated
);
8738 pragma Inline
(Set_Is_Entry_Formal
);
8739 pragma Inline
(Set_Is_Exported
);
8740 pragma Inline
(Set_Is_First_Subtype
);
8741 pragma Inline
(Set_Is_For_Access_Subtype
);
8742 pragma Inline
(Set_Is_Formal_Subprogram
);
8743 pragma Inline
(Set_Is_Frozen
);
8744 pragma Inline
(Set_Is_Generic_Actual_Subprogram
);
8745 pragma Inline
(Set_Is_Generic_Actual_Type
);
8746 pragma Inline
(Set_Is_Generic_Instance
);
8747 pragma Inline
(Set_Is_Generic_Type
);
8748 pragma Inline
(Set_Is_Hidden
);
8749 pragma Inline
(Set_Is_Hidden_Non_Overridden_Subpgm
);
8750 pragma Inline
(Set_Is_Hidden_Open_Scope
);
8751 pragma Inline
(Set_Is_Ignored_Ghost_Entity
);
8752 pragma Inline
(Set_Is_Immediately_Visible
);
8753 pragma Inline
(Set_Is_Implementation_Defined
);
8754 pragma Inline
(Set_Is_Imported
);
8755 pragma Inline
(Set_Is_Independent
);
8756 pragma Inline
(Set_Is_Inlined
);
8757 pragma Inline
(Set_Is_Inlined_Always
);
8758 pragma Inline
(Set_Is_Instantiated
);
8759 pragma Inline
(Set_Is_Interface
);
8760 pragma Inline
(Set_Is_Internal
);
8761 pragma Inline
(Set_Is_Interrupt_Handler
);
8762 pragma Inline
(Set_Is_Intrinsic_Subprogram
);
8763 pragma Inline
(Set_Is_Invariant_Procedure
);
8764 pragma Inline
(Set_Is_Itype
);
8765 pragma Inline
(Set_Is_Known_Non_Null
);
8766 pragma Inline
(Set_Is_Known_Null
);
8767 pragma Inline
(Set_Is_Known_Valid
);
8768 pragma Inline
(Set_Is_Limited_Composite
);
8769 pragma Inline
(Set_Is_Limited_Interface
);
8770 pragma Inline
(Set_Is_Limited_Record
);
8771 pragma Inline
(Set_Is_Local_Anonymous_Access
);
8772 pragma Inline
(Set_Is_Machine_Code_Subprogram
);
8773 pragma Inline
(Set_Is_Non_Static_Subtype
);
8774 pragma Inline
(Set_Is_Null_Init_Proc
);
8775 pragma Inline
(Set_Is_Obsolescent
);
8776 pragma Inline
(Set_Is_Only_Out_Parameter
);
8777 pragma Inline
(Set_Is_Package_Body_Entity
);
8778 pragma Inline
(Set_Is_Packed
);
8779 pragma Inline
(Set_Is_Packed_Array_Impl_Type
);
8780 pragma Inline
(Set_Is_Potentially_Use_Visible
);
8781 pragma Inline
(Set_Is_Predicate_Function
);
8782 pragma Inline
(Set_Is_Predicate_Function_M
);
8783 pragma Inline
(Set_Is_Preelaborated
);
8784 pragma Inline
(Set_Is_Primitive
);
8785 pragma Inline
(Set_Is_Primitive_Wrapper
);
8786 pragma Inline
(Set_Is_Private_Composite
);
8787 pragma Inline
(Set_Is_Private_Descendant
);
8788 pragma Inline
(Set_Is_Private_Primitive
);
8789 pragma Inline
(Set_Is_Processed_Transient
);
8790 pragma Inline
(Set_Is_Public
);
8791 pragma Inline
(Set_Is_Pure
);
8792 pragma Inline
(Set_Is_Pure_Unit_Access_Type
);
8793 pragma Inline
(Set_Is_RACW_Stub_Type
);
8794 pragma Inline
(Set_Is_Raised
);
8795 pragma Inline
(Set_Is_Remote_Call_Interface
);
8796 pragma Inline
(Set_Is_Remote_Types
);
8797 pragma Inline
(Set_Is_Renaming_Of_Object
);
8798 pragma Inline
(Set_Is_Return_Object
);
8799 pragma Inline
(Set_Is_Safe_To_Reevaluate
);
8800 pragma Inline
(Set_Is_Shared_Passive
);
8801 pragma Inline
(Set_Is_Static_Type
);
8802 pragma Inline
(Set_Is_Statically_Allocated
);
8803 pragma Inline
(Set_Is_Tag
);
8804 pragma Inline
(Set_Is_Tagged_Type
);
8805 pragma Inline
(Set_Is_Thunk
);
8806 pragma Inline
(Set_Is_Trivial_Subprogram
);
8807 pragma Inline
(Set_Is_True_Constant
);
8808 pragma Inline
(Set_Is_Unchecked_Union
);
8809 pragma Inline
(Set_Is_Underlying_Record_View
);
8810 pragma Inline
(Set_Is_Unsigned_Type
);
8811 pragma Inline
(Set_Is_Valued_Procedure
);
8812 pragma Inline
(Set_Is_Visible_Formal
);
8813 pragma Inline
(Set_Is_Visible_Lib_Unit
);
8814 pragma Inline
(Set_Is_Volatile
);
8815 pragma Inline
(Set_Itype_Printed
);
8816 pragma Inline
(Set_Kill_Elaboration_Checks
);
8817 pragma Inline
(Set_Kill_Range_Checks
);
8818 pragma Inline
(Set_Known_To_Have_Preelab_Init
);
8819 pragma Inline
(Set_Last_Aggregate_Assignment
);
8820 pragma Inline
(Set_Last_Assignment
);
8821 pragma Inline
(Set_Last_Entity
);
8822 pragma Inline
(Set_Limited_View
);
8823 pragma Inline
(Set_Linker_Section_Pragma
);
8824 pragma Inline
(Set_Lit_Indexes
);
8825 pragma Inline
(Set_Lit_Strings
);
8826 pragma Inline
(Set_Low_Bound_Tested
);
8827 pragma Inline
(Set_Machine_Radix_10
);
8828 pragma Inline
(Set_Master_Id
);
8829 pragma Inline
(Set_Materialize_Entity
);
8830 pragma Inline
(Set_May_Inherit_Delayed_Rep_Aspects
);
8831 pragma Inline
(Set_Mechanism
);
8832 pragma Inline
(Set_Modulus
);
8833 pragma Inline
(Set_Must_Be_On_Byte_Boundary
);
8834 pragma Inline
(Set_Must_Have_Preelab_Init
);
8835 pragma Inline
(Set_Needs_Debug_Info
);
8836 pragma Inline
(Set_Needs_No_Actuals
);
8837 pragma Inline
(Set_Never_Set_In_Source
);
8838 pragma Inline
(Set_Next_Inlined_Subprogram
);
8839 pragma Inline
(Set_No_Dynamic_Predicate_On_Actual
);
8840 pragma Inline
(Set_No_Pool_Assigned
);
8841 pragma Inline
(Set_No_Predicate_On_Actual
);
8842 pragma Inline
(Set_No_Return
);
8843 pragma Inline
(Set_No_Strict_Aliasing
);
8844 pragma Inline
(Set_No_Tagged_Streams_Pragma
);
8845 pragma Inline
(Set_Non_Binary_Modulus
);
8846 pragma Inline
(Set_Non_Limited_View
);
8847 pragma Inline
(Set_Nonzero_Is_True
);
8848 pragma Inline
(Set_Normalized_First_Bit
);
8849 pragma Inline
(Set_Normalized_Position
);
8850 pragma Inline
(Set_Normalized_Position_Max
);
8851 pragma Inline
(Set_OK_To_Rename
);
8852 pragma Inline
(Set_OK_To_Reorder_Components
);
8853 pragma Inline
(Set_Optimize_Alignment_Space
);
8854 pragma Inline
(Set_Optimize_Alignment_Time
);
8855 pragma Inline
(Set_Original_Access_Type
);
8856 pragma Inline
(Set_Original_Array_Type
);
8857 pragma Inline
(Set_Original_Record_Component
);
8858 pragma Inline
(Set_Overlays_Constant
);
8859 pragma Inline
(Set_Overridden_Operation
);
8860 pragma Inline
(Set_PPC_Wrapper
);
8861 pragma Inline
(Set_Package_Instantiation
);
8862 pragma Inline
(Set_Packed_Array_Impl_Type
);
8863 pragma Inline
(Set_Parent_Subtype
);
8864 pragma Inline
(Set_Part_Of_Constituents
);
8865 pragma Inline
(Set_Partial_View_Has_Unknown_Discr
);
8866 pragma Inline
(Set_Pending_Access_Types
);
8867 pragma Inline
(Set_Postconditions_Proc
);
8868 pragma Inline
(Set_Prival
);
8869 pragma Inline
(Set_Prival_Link
);
8870 pragma Inline
(Set_Private_Dependents
);
8871 pragma Inline
(Set_Private_View
);
8872 pragma Inline
(Set_Protected_Body_Subprogram
);
8873 pragma Inline
(Set_Protected_Formal
);
8874 pragma Inline
(Set_Protection_Object
);
8875 pragma Inline
(Set_RM_Size
);
8876 pragma Inline
(Set_Reachable
);
8877 pragma Inline
(Set_Referenced
);
8878 pragma Inline
(Set_Referenced_As_LHS
);
8879 pragma Inline
(Set_Referenced_As_Out_Parameter
);
8880 pragma Inline
(Set_Refinement_Constituents
);
8881 pragma Inline
(Set_Register_Exception_Call
);
8882 pragma Inline
(Set_Related_Array_Object
);
8883 pragma Inline
(Set_Related_Expression
);
8884 pragma Inline
(Set_Related_Instance
);
8885 pragma Inline
(Set_Related_Type
);
8886 pragma Inline
(Set_Relative_Deadline_Variable
);
8887 pragma Inline
(Set_Renamed_Entity
);
8888 pragma Inline
(Set_Renamed_In_Spec
);
8889 pragma Inline
(Set_Renamed_Object
);
8890 pragma Inline
(Set_Renaming_Map
);
8891 pragma Inline
(Set_Requires_Overriding
);
8892 pragma Inline
(Set_Return_Applies_To
);
8893 pragma Inline
(Set_Return_Present
);
8894 pragma Inline
(Set_Returns_By_Ref
);
8895 pragma Inline
(Set_Returns_Limited_View
);
8896 pragma Inline
(Set_Reverse_Bit_Order
);
8897 pragma Inline
(Set_Reverse_Storage_Order
);
8898 pragma Inline
(Set_Scalar_Range
);
8899 pragma Inline
(Set_Scale_Value
);
8900 pragma Inline
(Set_Scope_Depth_Value
);
8901 pragma Inline
(Set_Sec_Stack_Needed_For_Return
);
8902 pragma Inline
(Set_Shadow_Entities
);
8903 pragma Inline
(Set_Shared_Var_Procs_Instance
);
8904 pragma Inline
(Set_Size_Check_Code
);
8905 pragma Inline
(Set_Size_Depends_On_Discriminant
);
8906 pragma Inline
(Set_Size_Known_At_Compile_Time
);
8907 pragma Inline
(Set_Small_Value
);
8908 pragma Inline
(Set_SPARK_Aux_Pragma
);
8909 pragma Inline
(Set_SPARK_Aux_Pragma_Inherited
);
8910 pragma Inline
(Set_SPARK_Pragma
);
8911 pragma Inline
(Set_SPARK_Pragma_Inherited
);
8912 pragma Inline
(Set_Spec_Entity
);
8913 pragma Inline
(Set_SSO_Set_High_By_Default
);
8914 pragma Inline
(Set_SSO_Set_Low_By_Default
);
8915 pragma Inline
(Set_Static_Elaboration_Desired
);
8916 pragma Inline
(Set_Static_Initialization
);
8917 pragma Inline
(Set_Static_Discrete_Predicate
);
8918 pragma Inline
(Set_Static_Real_Or_String_Predicate
);
8919 pragma Inline
(Set_Status_Flag_Or_Transient_Decl
);
8920 pragma Inline
(Set_Storage_Size_Variable
);
8921 pragma Inline
(Set_Stored_Constraint
);
8922 pragma Inline
(Set_Stores_Attribute_Old_Prefix
);
8923 pragma Inline
(Set_Strict_Alignment
);
8924 pragma Inline
(Set_String_Literal_Length
);
8925 pragma Inline
(Set_String_Literal_Low_Bound
);
8926 pragma Inline
(Set_Subprograms_For_Type
);
8927 pragma Inline
(Set_Subps_Index
);
8928 pragma Inline
(Set_Suppress_Elaboration_Warnings
);
8929 pragma Inline
(Set_Suppress_Initialization
);
8930 pragma Inline
(Set_Suppress_Style_Checks
);
8931 pragma Inline
(Set_Suppress_Value_Tracking_On_Call
);
8932 pragma Inline
(Set_Task_Body_Procedure
);
8933 pragma Inline
(Set_Thunk_Entity
);
8934 pragma Inline
(Set_Treat_As_Volatile
);
8935 pragma Inline
(Set_Underlying_Full_View
);
8936 pragma Inline
(Set_Underlying_Record_View
);
8937 pragma Inline
(Set_Universal_Aliasing
);
8938 pragma Inline
(Set_Uplevel_Reference_Noted
);
8939 pragma Inline
(Set_Uplevel_References
);
8940 pragma Inline
(Set_Unset_Reference
);
8941 pragma Inline
(Set_Used_As_Generic_Actual
);
8942 pragma Inline
(Set_Uses_Lock_Free
);
8943 pragma Inline
(Set_Uses_Sec_Stack
);
8944 pragma Inline
(Set_Warnings_Off
);
8945 pragma Inline
(Set_Warnings_Off_Used
);
8946 pragma Inline
(Set_Warnings_Off_Used_Unmodified
);
8947 pragma Inline
(Set_Warnings_Off_Used_Unreferenced
);
8948 pragma Inline
(Set_Was_Hidden
);
8949 pragma Inline
(Set_Wrapped_Entity
);
8951 -- END XEINFO INLINES
8953 -- The following Inline pragmas are *not* read by xeinfo when building the
8954 -- C version of this interface automatically (so the C version will end up
8955 -- making out of line calls). The pragma scan in xeinfo will be terminated
8956 -- on encountering the END XEINFO INLINES line. We inline things here which
8957 -- are small, but not of the canonical attribute access/set format that can
8958 -- be handled by xeinfo.
8960 pragma Inline
(Base_Type
);
8961 pragma Inline
(Is_Base_Type
);
8962 pragma Inline
(Is_Package_Or_Generic_Package
);
8963 pragma Inline
(Is_Packed_Array
);
8964 pragma Inline
(Is_Subprogram_Or_Generic_Subprogram
);
8965 pragma Inline
(Is_Volatile
);
8966 pragma Inline
(Is_Wrapper_Package
);
8967 pragma Inline
(Known_RM_Size
);
8968 pragma Inline
(Known_Static_Component_Bit_Offset
);
8969 pragma Inline
(Known_Static_RM_Size
);
8970 pragma Inline
(Scope_Depth
);
8971 pragma Inline
(Scope_Depth_Set
);
8972 pragma Inline
(Unknown_RM_Size
);