* lto.c (do_stream_out): Add PART parameter; open dump file.
[official-gcc.git] / gcc / ada / sinfo.ads
blobc6e04e7920a4c91ba4466085af104308cbf7e63f
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S I N F O --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2018, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
17 -- --
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. --
21 -- --
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/>. --
26 -- --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
29 -- --
30 ------------------------------------------------------------------------------
32 -- This package defines the structure of the abstract syntax tree. The Tree
33 -- package provides a basic tree structure. Sinfo describes how this structure
34 -- is used to represent the syntax of an Ada program.
36 -- The grammar in the RM is followed very closely in the tree design, and is
37 -- repeated as part of this source file.
39 -- The tree contains not only the full syntactic representation of the
40 -- program, but also the results of semantic analysis. In particular, the
41 -- nodes for defining identifiers, defining character literals, and defining
42 -- operator symbols, collectively referred to as entities, represent what
43 -- would normally be regarded as the symbol table information. In addition a
44 -- number of the tree nodes contain semantic information.
46 -- WARNING: Several files are automatically generated from this package.
47 -- See below for details.
49 with Namet; use Namet;
50 with Types; use Types;
51 with Uintp; use Uintp;
52 with Urealp; use Urealp;
54 package Sinfo is
56 ---------------------------------
57 -- Making Changes to This File --
58 ---------------------------------
60 -- If changes are made to this file, a number of related steps must be
61 -- carried out to ensure consistency. First, if a field access function is
62 -- added, it appears in these places:
64 -- In sinfo.ads:
65 -- The documentation associated with the field (if semantic)
66 -- The documentation associated with the node
67 -- The spec of the access function
68 -- The spec of the set procedure
69 -- The entries in Is_Syntactic_Field
70 -- The pragma Inline for the access function
71 -- The pragma Inline for the set procedure
72 -- In sinfo.adb:
73 -- The body of the access function
74 -- The body of the set procedure
76 -- The field chosen must be consistent in all places, and, for a node that
77 -- is a subexpression, must not overlap any of the standard expression
78 -- fields.
80 -- In addition, if any of the standard expression fields is changed, then
81 -- the utility program which creates the Treeprs spec (in file treeprs.ads)
82 -- must be updated appropriately, since it special cases expression fields.
84 -- If a new tree node is added, then the following changes are made:
86 -- Add it to the documentation in the appropriate place
87 -- Add its fields to this documentation section
88 -- Define it in the appropriate classification in Node_Kind
89 -- Add an entry in Is_Syntactic_Field
90 -- In the body (sinfo), add entries to the access functions for all
91 -- its fields (except standard expression fields) to include the new
92 -- node in the checks.
93 -- Add an appropriate section to the case statement in sprint.adb
94 -- Add an appropriate section to the case statement in sem.adb
95 -- Add an appropriate section to the case statement in exp_util.adb
96 -- (Insert_Actions procedure)
97 -- For a subexpression, add an appropriate section to the case
98 -- statement in sem_eval.adb
99 -- For a subexpression, add an appropriate section to the case
100 -- statement in sem_res.adb
102 -- All back ends must be made aware of the new node kind.
104 -- Finally, four utility programs must be run:
106 -- (Optional.) Run CSinfo to check that you have made the changes
107 -- consistently. It checks most of the rules given above. This utility
108 -- reads sinfo.ads and sinfo.adb and generates a report to standard
109 -- output. This step is optional because XSinfo runs CSinfo.
111 -- Run XSinfo to create sinfo.h, the corresponding C header. This
112 -- utility reads sinfo.ads and generates sinfo.h. Note that it does
113 -- not need to read sinfo.adb, since the contents of the body are
114 -- algorithmically determinable from the spec.
116 -- Run XTreeprs to create treeprs.ads, an updated version of the module
117 -- that is used to drive the tree print routine. This utility reads (but
118 -- does not modify) treeprs.adt, the template that provides the basic
119 -- structure of the file, and then fills in the data from the comments
120 -- in sinfo.ads.
122 -- Run XNmake to create nmake.ads and nmake.adb, the package body and
123 -- spec of the Nmake package which contains functions for constructing
124 -- nodes.
126 -- The above steps are done automatically by the build scripts when you do
127 -- a full bootstrap.
129 -- Note: sometime we could write a utility that actually generated the body
130 -- of sinfo from the spec instead of simply checking it, since, as noted
131 -- above, the contents of the body can be determined from the spec.
133 --------------------------------
134 -- Implicit Nodes in the Tree --
135 --------------------------------
137 -- Generally the structure of the tree very closely follows the grammar as
138 -- defined in the RM. However, certain nodes are omitted to save space and
139 -- simplify semantic processing. Two general classes of such omitted nodes
140 -- are as follows:
142 -- If the only possibilities for a non-terminal are one or more other
143 -- non-terminals (i.e. the rule is a "skinny" rule), then usually the
144 -- corresponding node is omitted from the tree, and the target construct
145 -- appears directly. For example, a real type definition is either
146 -- floating point definition or a fixed point definition. No explicit node
147 -- appears for real type definition. Instead either the floating point
148 -- definition or fixed point definition appears directly.
150 -- If a non-terminal corresponds to a list of some other non-terminal
151 -- (possibly with separating punctuation), then usually it is omitted from
152 -- the tree, and a list of components appears instead. For example,
153 -- sequence of statements does not appear explicitly in the tree. Instead
154 -- a list of statements appears directly.
156 -- Some additional cases of omitted nodes occur and are documented
157 -- individually. In particular, many nodes are omitted in the tree
158 -- generated for an expression.
160 -------------------------------------------
161 -- Handling of Defining Identifier Lists --
162 -------------------------------------------
164 -- In several declarative forms in the syntax, lists of defining
165 -- identifiers appear (object declarations, component declarations, number
166 -- declarations etc.)
168 -- The semantics of such statements are equivalent to a series of identical
169 -- declarations of single defining identifiers (except that conformance
170 -- checks require the same grouping of identifiers in the parameter case).
172 -- To simplify semantic processing, the parser breaks down such multiple
173 -- declaration cases into sequences of single declarations, duplicating
174 -- type and initialization information as required. The flags More_Ids and
175 -- Prev_Ids are used to record the original form of the source in the case
176 -- where the original source used a list of names, More_Ids being set on
177 -- all but the last name and Prev_Ids being set on all but the first name.
178 -- These flags are used to reconstruct the original source (e.g. in the
179 -- Sprint package), and also are included in the conformance checks, but
180 -- otherwise have no semantic significance.
182 -- Note: the reason that we use More_Ids and Prev_Ids rather than
183 -- First_Name and Last_Name flags is so that the flags are off in the
184 -- normal one identifier case, which minimizes tree print output.
186 -----------------------
187 -- Use of Node Lists --
188 -----------------------
190 -- With a few exceptions, if a construction of the form {non-terminal}
191 -- appears in the tree, lists are used in the corresponding tree node (see
192 -- package Nlists for handling of node lists). In this case a field of the
193 -- parent node points to a list of nodes for the non-terminal. The field
194 -- name for such fields has a plural name which always ends in "s". For
195 -- example, a case statement has a field Alternatives pointing to list of
196 -- case statement alternative nodes.
198 -- Only fields pointing to lists have names ending in "s", so generally the
199 -- structure is strongly typed, fields not ending in s point to single
200 -- nodes, and fields ending in s point to lists.
202 -- The following example shows how a traversal of a list is written. We
203 -- suppose here that Stmt points to a N_Case_Statement node which has a
204 -- list field called Alternatives:
206 -- Alt := First (Alternatives (Stmt));
207 -- while Present (Alt) loop
208 -- ..
209 -- -- processing for case statement alternative Alt
210 -- ..
211 -- Alt := Next (Alt);
212 -- end loop;
214 -- The Present function tests for Empty, which in this case signals the end
215 -- of the list. First returns Empty immediately if the list is empty.
216 -- Present is defined in Atree; First and Next are defined in Nlists.
218 -- The exceptions to this rule occur with {DEFINING_IDENTIFIERS} in all
219 -- contexts, which is handled as described in the previous section, and
220 -- with {,library_unit_NAME} in the N_With_Clause mode, which is handled
221 -- using the First_Name and Last_Name flags, as further detailed in the
222 -- description of the N_With_Clause node.
224 -------------
225 -- Pragmas --
226 -------------
228 -- Pragmas can appear in many different context, but are not included in
229 -- the grammar. Still they must appear in the tree, so they can be properly
230 -- processed.
232 -- Two approaches are used. In some cases, an extra field is defined in an
233 -- appropriate node that contains a list of pragmas appearing in the
234 -- expected context. For example pragmas can appear before an
235 -- Accept_Alternative in a Selective_Accept_Statement, and these pragmas
236 -- appear in the Pragmas_Before field of the N_Accept_Alternative node.
238 -- The other approach is to simply allow pragmas to appear in syntactic
239 -- lists where the grammar (of course) does not include the possibility.
240 -- For example, the Variants field of an N_Variant_Part node points to a
241 -- list that can contain both N_Pragma and N_Variant nodes.
243 -- To make processing easier in the latter case, the Nlists package
244 -- provides a set of routines (First_Non_Pragma, Last_Non_Pragma,
245 -- Next_Non_Pragma, Prev_Non_Pragma) that allow such lists to be handled
246 -- ignoring all pragmas.
248 -- In the case of the variants list, we can either write:
250 -- Variant := First (Variants (N));
251 -- while Present (Variant) loop
252 -- ...
253 -- Variant := Next (Variant);
254 -- end loop;
256 -- or
258 -- Variant := First_Non_Pragma (Variants (N));
259 -- while Present (Variant) loop
260 -- ...
261 -- Variant := Next_Non_Pragma (Variant);
262 -- end loop;
264 -- In the first form of the loop, Variant can either be an N_Pragma or an
265 -- N_Variant node. In the second form, Variant can only be N_Variant since
266 -- all pragmas are skipped.
268 ---------------------
269 -- Optional Fields --
270 ---------------------
272 -- Fields which correspond to a section of the syntax enclosed in square
273 -- brackets are generally omitted (and the corresponding field set to Empty
274 -- for a node, or No_List for a list). The documentation of such fields
275 -- notes these cases. One exception to this rule occurs in the case of
276 -- possibly empty statement sequences (such as the sequence of statements
277 -- in an entry call alternative). Such cases appear in the syntax rules as
278 -- [SEQUENCE_OF_STATEMENTS] and the fields corresponding to such optional
279 -- statement sequences always contain an empty list (not No_List) if no
280 -- statements are present.
282 -- Note: the utility program that constructs the body and spec of the Nmake
283 -- package relies on the format of the comments to determine if a field
284 -- should have a default value in the corresponding make routine. The rule
285 -- is that if the first line of the description of the field contains the
286 -- string "(set to xxx if", then a default value of xxx is provided for
287 -- this field in the corresponding Make_yyy routine.
289 -----------------------------------
290 -- Note on Body/Spec Terminology --
291 -----------------------------------
293 -- In informal discussions about Ada, it is customary to refer to package
294 -- and subprogram specs and bodies. However, this is not technically
295 -- correct, what is normally referred to as a spec or specification is in
296 -- fact a package declaration or subprogram declaration. We are careful in
297 -- GNAT to use the correct terminology and in particular, the full word
298 -- specification is never used as an incorrect substitute for declaration.
299 -- The structure and terminology used in the tree also reflects the grammar
300 -- and thus uses declaration and specification in the technically correct
301 -- manner.
303 -- However, there are contexts in which the informal terminology is useful.
304 -- We have the word "body" to refer to the Interp_Etype declared by the
305 -- declaration of a unit body, and in some contexts we need similar term to
306 -- refer to the entity declared by the package or subprogram declaration,
307 -- and simply using declaration can be confusing since the body also has a
308 -- declaration.
310 -- An example of such a context is the link between the package body and
311 -- its declaration. With_Declaration is confusing, since the package body
312 -- itself is a declaration.
314 -- To deal with this problem, we reserve the informal term Spec, i.e. the
315 -- popular abbreviation used in this context, to refer to the entity
316 -- declared by the package or subprogram declaration. So in the above
317 -- example case, the field in the body is called With_Spec.
319 -- Another important context for the use of the word Spec is in error
320 -- messages, where a hyper-correct use of declaration would be confusing to
321 -- a typical Ada programmer, and even for an expert programmer can cause
322 -- confusion since the body has a declaration as well.
324 -- So, to summarize:
326 -- Declaration always refers to the syntactic entity that is called
327 -- a declaration. In particular, subprogram declaration
328 -- and package declaration are used to describe the
329 -- syntactic entity that includes the semicolon.
331 -- Specification always refers to the syntactic entity that is called
332 -- a specification. In particular, the terms procedure
333 -- specification, function specification, package
334 -- specification, subprogram specification always refer
335 -- to the syntactic entity that has no semicolon.
337 -- Spec is an informal term, used to refer to the entity
338 -- that is declared by a task declaration, protected
339 -- declaration, generic declaration, subprogram
340 -- declaration or package declaration.
342 -- This convention is followed throughout the GNAT documentation
343 -- both internal and external, and in all error message text.
345 ------------------------
346 -- Internal Use Nodes --
347 ------------------------
349 -- These are Node_Kind settings used in the internal implementation which
350 -- are not logically part of the specification.
352 -- N_Unused_At_Start
353 -- Completely unused entry at the start of the enumeration type. This
354 -- is inserted so that no legitimate value is zero, which helps to get
355 -- better debugging behavior, since zero is a likely uninitialized value).
357 -- N_Unused_At_End
358 -- Completely unused entry at the end of the enumeration type. This is
359 -- handy so that arrays with Node_Kind as the index type have an extra
360 -- entry at the end (see for example the use of the Pchar_Pos_Array in
361 -- Treepr, where the extra entry provides the limit value when dealing with
362 -- the last used entry in the array).
364 -----------------------------------------
365 -- Note on the settings of Sloc fields --
366 -----------------------------------------
368 -- The Sloc field of nodes that come from the source is set by the parser.
369 -- For internal nodes, and nodes generated during expansion the Sloc is
370 -- usually set in the call to the constructor for the node. In general the
371 -- Sloc value chosen for an internal node is the Sloc of the source node
372 -- whose processing is responsible for the expansion. For example, the Sloc
373 -- of an inherited primitive operation is the Sloc of the corresponding
374 -- derived type declaration.
376 -- For the nodes of a generic instantiation, the Sloc value is encoded to
377 -- represent both the original Sloc in the generic unit, and the Sloc of
378 -- the instantiation itself. See Sinput.ads for details.
380 -- Subprogram instances create two callable entities: one is the visible
381 -- subprogram instance, and the other is an anonymous subprogram nested
382 -- within a wrapper package that contains the renamings for the actuals.
383 -- Both of these entities have the Sloc of the defining entity in the
384 -- instantiation node. This simplifies some ASIS queries.
386 -----------------------
387 -- Field Definitions --
388 -----------------------
390 -- In the following node definitions, all fields, both syntactic and
391 -- semantic, are documented. The one exception is in the case of entities
392 -- (defining identifiers, character literals, and operator symbols), where
393 -- the usage of the fields depends on the entity kind. Entity fields are
394 -- fully documented in the separate package Einfo.
396 -- In the node definitions, three common sets of fields are abbreviated to
397 -- save both space in the documentation, and also space in the string
398 -- (defined in Tree_Print_Strings) used to print trees. The following
399 -- abbreviations are used:
401 -- Note: the utility program that creates the Treeprs spec (in the file
402 -- xtreeprs.adb) knows about the special fields here, so it must be
403 -- modified if any change is made to these fields.
405 -- "plus fields for binary operator"
406 -- Chars (Name1) Name_Id for the operator
407 -- Left_Opnd (Node2) left operand expression
408 -- Right_Opnd (Node3) right operand expression
409 -- Entity (Node4-Sem) defining entity for operator
410 -- Associated_Node (Node4-Sem) for generic processing
411 -- Do_Overflow_Check (Flag17-Sem) set if overflow check needed
412 -- Has_Private_View (Flag11-Sem) set in generic units.
414 -- "plus fields for unary operator"
415 -- Chars (Name1) Name_Id for the operator
416 -- Right_Opnd (Node3) right operand expression
417 -- Entity (Node4-Sem) defining entity for operator
418 -- Associated_Node (Node4-Sem) for generic processing
419 -- Do_Overflow_Check (Flag17-Sem) set if overflow check needed
420 -- Has_Private_View (Flag11-Sem) set in generic units.
422 -- "plus fields for expression"
423 -- Paren_Count number of parentheses levels
424 -- Etype (Node5-Sem) type of the expression
425 -- Is_Overloaded (Flag5-Sem) >1 type interpretation exists
426 -- Is_Static_Expression (Flag6-Sem) set for static expression
427 -- Raises_Constraint_Error (Flag7-Sem) evaluation raises CE
428 -- Must_Not_Freeze (Flag8-Sem) set if must not freeze
429 -- Do_Range_Check (Flag9-Sem) set if a range check needed
430 -- Has_Dynamic_Length_Check (Flag10-Sem) set if length check inserted
431 -- Has_Dynamic_Range_Check (Flag12-Sem) set if range check inserted
432 -- Assignment_OK (Flag15-Sem) set if modification is OK
433 -- Is_Controlling_Actual (Flag16-Sem) set for controlling argument
435 -- Note: see under (EXPRESSION) for further details on the use of
436 -- the Paren_Count field to record the number of parentheses levels.
438 -- Node_Kind is the type used in the Nkind field to indicate the node kind.
439 -- The actual definition of this type is given later (the reason for this
440 -- is that we want the descriptions ordered by logical chapter in the RM,
441 -- but the type definition is reordered to facilitate the definition of
442 -- some subtype ranges. The individual descriptions of the nodes show how
443 -- the various fields are used in each node kind, as well as providing
444 -- logical names for the fields. Functions and procedures are provided for
445 -- accessing and setting these fields using these logical names.
447 -----------------------
448 -- Gigi Restrictions --
449 -----------------------
451 -- The tree passed to Gigi is more restricted than the general tree form.
452 -- For example, as a result of expansion, most of the tasking nodes can
453 -- never appear. For each node to which either a complete or partial
454 -- restriction applies, a note entitled "Gigi restriction" appears which
455 -- documents the restriction.
457 -- Note that most of these restrictions apply only to trees generated when
458 -- code is being generated, since they involved expander actions that
459 -- destroy the tree.
461 ---------------
462 -- ASIS Mode --
463 ---------------
465 -- When a file is compiled in ASIS mode (-gnatct), expansion is skipped,
466 -- and the analysis must generate a tree in a form that meets all ASIS
467 -- requirements.
469 -- ASIS must be able to recover the original tree that corresponds to the
470 -- source. It relies heavily on Original_Node for this purpose, which as
471 -- described in Atree, records the history when a node is rewritten. ASIS
472 -- uses Original_Node to recover the original node before the Rewrite.
474 -- At least in ASIS mode (not really important in non-ASIS mode), when
475 -- N1 is rewritten as N2:
477 -- The subtree rooted by the original node N1 should be fully decorated,
478 -- i.e. all semantic fields noted in sinfo.ads should be set properly
479 -- and any referenced entities should be complete (with exceptions for
480 -- representation information, noted below).
482 -- For all the direct descendants of N1 (original node) their Parent
483 -- links should point not to N1, but to N2 (rewriting node).
485 -- The Parent links of rewritten nodes (N1 in this example) are set in
486 -- some cases (to point to the rewritten parent), but in other cases
487 -- they are set to Empty. This needs sorting out ??? It would be much
488 -- cleaner if they could always be set in the original node ???
490 -- There are a few cases when ASIS has to use not the original, but the
491 -- rewritten tree structures. This happens when because of some important
492 -- technical reasons it is impossible or very hard to have the original
493 -- structure properly decorated by semantic information, and the rewritten
494 -- structure fully reproduces the original source. Below is the (incomplete
495 -- for the moment???) list of such exceptions:
497 -- Generic specifications and generic bodies
498 -- Function calls that use prefixed notation (Operand.Operation [(...)])
500 -- Representation Information
502 -- For the purposes of the data description annex, the representation
503 -- information for source declared entities must be complete in the
504 -- ASIS tree.
506 -- This requires that the front end call the back end (gigi/gcc) in
507 -- a special "back annotate only" mode to obtain information on layout
508 -- from the back end.
510 -- For the purposes of this special "back annotate only" mode, the
511 -- requirements that would normally need to be met to generate code
512 -- are relaxed as follows:
514 -- Anonymous types need not have full representation information (e.g.
515 -- sizes need not be set for types where the front end would normally
516 -- set the sizes), since anonymous types can be ignored in this mode.
518 -- In this mode, gigi will see at least fragments of a fully annotated
519 -- unexpanded tree. This means that it will encounter nodes it does
520 -- not normally handle (such as stubs, task bodies etc). It should
521 -- simply ignore these nodes, since they are not relevant to the task
522 -- of back annotating representation information.
524 -- Some other ASIS-specific issues are covered in specific comments in
525 -- sections for particular nodes or flags.
527 ----------------
528 -- Ghost Mode --
529 ----------------
531 -- The SPARK RM 6.9 defines two classes of constructs - Ghost entities and
532 -- Ghost statements. The intent of the feature is to treat Ghost constructs
533 -- as non-existent when Ghost assertion policy Ignore is in effect.
535 -- The corresponding nodes which map to Ghost constructs are:
537 -- Ghost entities
538 -- Declaration nodes
539 -- N_Package_Body
540 -- N_Subprogram_Body
542 -- Ghost statements
543 -- N_Assignment_Statement
544 -- N_Procedure_Call_Statement
545 -- N_Pragma
547 -- In addition, the compiler treats instantiations as Ghost entities
549 -- To achieve the removal of ignored Ghost constructs, the compiler relies
550 -- on global variables Ghost_Mode and Ignored_Ghost_Region, which comprise
551 -- a mechanism called "Ghost regions".
553 -- The values of Ghost_Mode are as follows:
555 -- 1. Check - All static semantics as defined in SPARK RM 6.9 are in
556 -- effect. The Ghost region has mode Check.
558 -- 2. Ignore - Same as Check, ignored Ghost code is not present in ALI
559 -- files, object files, and the final executable. The Ghost region
560 -- has mode Ignore.
562 -- 3. None - No Ghost region is in effect
564 -- The value of Ignored_Ghost_Region captures the node which initiates an
565 -- ignored Ghost region.
567 -- A Ghost region is a compiler operating mode, similar to Check_Syntax,
568 -- however a region is much more finely grained and depends on the policy
569 -- in effect. The region starts prior to the analysis of a Ghost construct
570 -- and ends immediately after its expansion. The region is established as
571 -- follows:
573 -- 1. Declarations - Prior to analysis, if the declaration is subject to
574 -- pragma Ghost.
576 -- 2. Renaming declarations - Same as 1) or when the renamed entity is
577 -- Ghost.
579 -- 3. Completing declarations - Same as 1) or when the declaration is
580 -- partially analyzed and the declaration completes a Ghost entity.
582 -- 4. N_Package_Body, N_Subprogram_Body - Same as 1) or when the body is
583 -- partially analyzed and completes a Ghost entity.
585 -- 5. N_Assignment_Statement - After the left hand side is analyzed and
586 -- references a Ghost entity.
588 -- 6. N_Procedure_Call_Statement - After the name is analyzed and denotes
589 -- a Ghost procedure.
591 -- 7. N_Pragma - During analysis, when the related entity is Ghost or the
592 -- pragma encloses a Ghost entity.
594 -- 8. Instantiations - Save as 1) or when the instantiation is partially
595 -- analyzed and the generic template is Ghost.
597 -- The following routines install a new Ghost region:
599 -- Install_Ghost_Region
600 -- Mark_And_Set_Ghost_xxx
601 -- Set_Ghost_Mode
603 -- The following routine ends a Ghost region:
605 -- Restore_Ghost_Region
607 -- A region may be reinstalled similarly to scopes for decoupled expansion
608 -- such as the generation of dispatch tables or the creation of a predicate
609 -- function.
611 -- If the mode of a Ghost region is Ignore, any newly created nodes as well
612 -- as source entities are marked as ignored Ghost. In additon, the marking
613 -- process signals all enclosing scopes that an ignored Ghost node resides
614 -- within. The compilation unit where the node resides is also added to an
615 -- auxiliary table for post processing.
617 -- After the analysis and expansion of all compilation units takes place
618 -- as well as the instantiation of all inlined [generic] bodies, the GNAT
619 -- driver initiates a separate pass which removes all ignored Ghost nodes
620 -- from all units stored in the auxiliary table.
622 --------------------
623 -- GNATprove Mode --
624 --------------------
626 -- When a file is compiled in GNATprove mode (-gnatd.F), a very light
627 -- expansion is performed and the analysis must generate a tree in a
628 -- form that meets additional requirements.
630 -- This light expansion does two transformations of the tree that cannot
631 -- be postponed till after semantic analysis:
633 -- 1. Replace object renamings by renamed object. This requires the
634 -- introduction of temporaries at the point of the renaming, which
635 -- must be properly analyzed.
637 -- 2. Fully qualify entity names. This is needed to generate suitable
638 -- local effects and call-graphs in ALI files, with the completely
639 -- qualified names (in particular the suffix to distinguish homonyms).
641 -- The tree after this light expansion should be fully analyzed
642 -- semantically, which sometimes requires the insertion of semantic
643 -- preanalysis, for example for subprogram contracts and pragma
644 -- check/assert. In particular, all expression must have their proper type,
645 -- and semantic links should be set between tree nodes (partial to full
646 -- view, etc.) Some kinds of nodes should be either absent, or can be
647 -- ignored by the formal verification backend:
649 -- N_Object_Renaming_Declaration: can be ignored safely
650 -- N_Expression_Function: absent (rewritten)
651 -- N_Expression_With_Actions: absent (not generated)
653 -- SPARK cross-references are generated from the regular cross-references
654 -- (used for browsing and code understanding) and additional references
655 -- collected during semantic analysis, in particular on all dereferences.
656 -- These SPARK cross-references are output in a separate section of ALI
657 -- files, as described in spark_xrefs.adb. They are the basis for the
658 -- computation of data dependences in GNATprove. This implies that all
659 -- cross-references should be generated in this mode, even those that would
660 -- not make sense from a user point-of-view, and that cross-references that
661 -- do not lead to data dependences for subprograms can be safely ignored.
663 -- GNATprove relies on the following front end behaviors:
665 -- 1. The first declarations in the list of visible declarations of
666 -- a package declaration for a generic instance, up to the first
667 -- declaration which comes from source, should correspond to
668 -- the "mappings nodes" between formal and actual generic parameters.
670 -- 2. In addition pragma Debug statements are removed from the tree
671 -- (rewritten to NULL stmt), since they should be ignored in formal
672 -- verification.
674 -- 3. An error is also issued for missing subunits, similar to the
675 -- warning issued when generating code, to avoid formal verification
676 -- of a partial unit.
678 -- 4. Unconstrained types are not replaced by constrained types whose
679 -- bounds are generated from an expression: Expand_Subtype_From_Expr
680 -- should be a no-op.
682 -- 5. Errors (instead of warnings) are issued on compile-time-known
683 -- constraint errors even though such cases do not correspond to
684 -- illegalities in the Ada RM (this is simply another case where
685 -- GNATprove implements a subset of the full language).
687 -- However, there are a few exceptions to this rule for cases where
688 -- we want to allow the GNATprove analysis to proceed (e.g. range
689 -- checks on empty ranges, which typically appear in deactivated
690 -- code in a particular configuration).
692 -- 6. Subtypes should match in the AST, even after a generic is
693 -- instantiated. In particular, GNATprove relies on the fact that,
694 -- on a selected component, the type of the selected component is
695 -- the type of the corresponding component in the prefix of the
696 -- selected component.
698 -- Note that, in some cases, we know that this rule is broken by the
699 -- frontend. In particular, if the selected component is a packed
700 -- array depending on a discriminant of a unconstrained formal object
701 -- parameter of a generic.
703 ----------------
704 -- SPARK Mode --
705 ----------------
707 -- The SPARK RM 1.6.5 defines a mode of operation called "SPARK mode" which
708 -- starts a scope where the SPARK language semantics are either On, Off, or
709 -- Auto, where Auto leaves the choice to the tools. A SPARK mode may be
710 -- specified by means of an aspect or a pragma.
712 -- The following entities may be subject to a SPARK mode. Entities marked
713 -- with * may possess two differente SPARK modes.
715 -- E_Entry
716 -- E_Entry_Family
717 -- E_Function
718 -- E_Generic_Function
719 -- E_Generic_Package *
720 -- E_Generic_Procedure
721 -- E_Operator
722 -- E_Package *
723 -- E_Package_Body *
724 -- E_Procedure
725 -- E_Protected_Body
726 -- E_Protected_Subtype
727 -- E_Protected_Type *
728 -- E_Subprogram_Body
729 -- E_Task_Body
730 -- E_Task_Subtype
731 -- E_Task_Type *
732 -- E_Variable
734 -- In order to manage SPARK scopes, the compiler relies on global variables
735 -- SPARK_Mode and SPARK_Mode_Pragma and a mechanism called "SPARK regions."
736 -- Routines Install_SPARK_Mode and Set_SPARK_Mode create a new SPARK region
737 -- and routine Restore_SPARK_Mode ends a SPARK region. A region may be
738 -- reinstalled similarly to scopes.
740 -----------------------
741 -- Check Flag Fields --
742 -----------------------
744 -- The following flag fields appear in expression nodes:
746 -- Do_Division_Check
747 -- Do_Overflow_Check
748 -- Do_Range_Check
750 -- These three flags are always set by the front end during semantic
751 -- analysis, on expression nodes that may trigger the corresponding
752 -- check. The front end then inserts or not the check during expansion. In
753 -- particular, these flags should also be correctly set in ASIS mode and
754 -- GNATprove mode. As a special case, the front end does not insert a
755 -- Do_Division_Check flag on float exponentiation expressions, for the case
756 -- where the value is 0.0 and the exponent is negative, although this case
757 -- does lead to a division check failure.
759 -- Note: the expander always takes care of the Do_Range check case,
760 -- so this flag will never be set in the expanded tree passed to the
761 -- back end code generator.
763 -- Note that this accounts for all nodes that trigger the corresponding
764 -- checks, except for range checks on subtype_indications, which may be
765 -- required to check that a range_constraint is compatible with the given
766 -- subtype (RM 3.2.2(11)).
768 -- The following flag fields appear in various nodes:
770 -- Do_Accessibility_Check
771 -- Do_Discriminant_Check
772 -- Do_Length_Check
773 -- Do_Storage_Check
774 -- Do_Tag_Check
776 -- These flags are used in some specific cases by the front end, either
777 -- during semantic analysis or during expansion, and cannot be expected
778 -- to be set on all nodes that trigger the corresponding check.
780 ------------------------
781 -- Common Flag Fields --
782 ------------------------
784 -- The following flag fields appear in all nodes:
786 -- Analyzed
787 -- This flag is used to indicate that a node (and all its children) have
788 -- been analyzed. It is used to avoid reanalysis of a node that has
789 -- already been analyzed, both for efficiency and functional correctness
790 -- reasons.
792 -- Comes_From_Source
793 -- This flag is set if the node comes directly from an explicit construct
794 -- in the source. It is normally on for any nodes built by the scanner or
795 -- parser from the source program, with the exception that in a few cases
796 -- the parser adds nodes to normalize the representation (in particular
797 -- a null statement is added to a package body if there is no begin/end
798 -- initialization section.
800 -- Most nodes inserted by the analyzer or expander are not considered
801 -- as coming from source, so the flag is off for such nodes. In a few
802 -- cases, the expander constructs nodes closely equivalent to nodes
803 -- from the source program (e.g. the allocator built for build-in-place
804 -- case), and the Comes_From_Source flag is deliberately set.
806 -- Error_Posted
807 -- This flag is used to avoid multiple error messages being posted on or
808 -- referring to the same node. This flag is set if an error message
809 -- refers to a node or is posted on its source location, and has the
810 -- effect of inhibiting further messages involving this same node.
812 -----------------------
813 -- Modify_Tree_For_C --
814 -----------------------
816 -- If the flag Opt.Modify_Tree_For_C is set True, then the tree is modified
817 -- in ways that help match the semantics better with C, easing the task of
818 -- interfacing to C code generators (other than GCC, where the work is done
819 -- in gigi, and there is no point in changing that), and also making life
820 -- easier for Cprint in generating C source code.
822 -- The current modifications implemented are as follows:
824 -- N_Op_Rotate_Left, N_Op_Rotate_Right, N_Shift_Right_Arithmetic nodes
825 -- are eliminated from the tree (since these operations do not exist in
826 -- C), and the operations are rewritten in terms of logical shifts and
827 -- other logical operations that do exist in C. See Exp_Ch4 expansion
828 -- routines for these operators for details of the transformations made.
830 -- The right operand of N_Op_Shift_Right and N_Op_Shift_Left is always
831 -- less than the word size (since other values are not well-defined in
832 -- C). This is done using an explicit test if necessary.
834 -- Min and Max attributes are expanded into equivalent if expressions,
835 -- dealing properly with side effect issues.
837 -- Mod for signed integer types is expanded into equivalent expressions
838 -- using Rem (which is % in C) and other C-available operators.
840 -- Functions returning bounded arrays are transformed into procedures
841 -- with an extra out parameter, and the calls updated accordingly.
843 -- Aggregates are only kept unexpanded for object declarations, otherwise
844 -- they are systematically expanded into loops (for arrays) and
845 -- individual assignments (for records).
847 -- Unconstrained array types are handled by means of fat pointers.
849 -- Postconditions are inlined by the frontend since their body may have
850 -- references to itypes defined in the enclosing subprogram.
852 ------------------------------------
853 -- Description of Semantic Fields --
854 ------------------------------------
856 -- The meaning of the syntactic fields is generally clear from their names
857 -- without any further description, since the names are chosen to
858 -- correspond very closely to the syntax in the reference manual. This
859 -- section describes the usage of the semantic fields, which are used to
860 -- contain additional information determined during semantic analysis.
862 -- Accept_Handler_Records (List5-Sem)
863 -- This field is present only in an N_Accept_Alternative node. It is used
864 -- to temporarily hold the exception handler records from an accept
865 -- statement in a selective accept. These exception handlers will
866 -- eventually be placed in the Handler_Records list of the procedure
867 -- built for this accept (see Expand_N_Selective_Accept procedure in
868 -- Exp_Ch9 for further details).
870 -- Access_Types_To_Process (Elist2-Sem)
871 -- Present in N_Freeze_Entity nodes for Incomplete or private types.
872 -- Contains the list of access types which may require specific treatment
873 -- when the nature of the type completion is completely known. An example
874 -- of such treatment is the generation of the associated_final_chain.
876 -- Actions (List1-Sem)
877 -- This field contains a sequence of actions that are associated with the
878 -- node holding the field. See the individual node types for details of
879 -- how this field is used, as well as the description of the specific use
880 -- for a particular node type.
882 -- Activation_Chain_Entity (Node3-Sem)
883 -- This is used in tree nodes representing task activators (blocks,
884 -- subprogram bodies, package declarations, and task bodies). It is
885 -- initially Empty, and then gets set to point to the entity for the
886 -- declared Activation_Chain variable when the first task is declared.
887 -- When tasks are declared in the corresponding declarative region this
888 -- entity is located by name (its name is always _Chain) and the declared
889 -- tasks are added to the chain. Note that N_Extended_Return_Statement
890 -- does not have this attribute, although it does have an activation
891 -- chain. This chain is used to store the tasks temporarily, and is not
892 -- used for activating them. On successful completion of the return
893 -- statement, the tasks are moved to the caller's chain, and the caller
894 -- activates them.
896 -- Acts_As_Spec (Flag4-Sem)
897 -- A flag set in the N_Subprogram_Body node for a subprogram body which
898 -- is acting as its own spec. In the case of a library-level subprogram
899 -- the flag is set as well on the parent compilation unit node.
901 -- Actual_Designated_Subtype (Node4-Sem)
902 -- Present in N_Free_Statement and N_Explicit_Dereference nodes. If gigi
903 -- needs to known the dynamic constrained subtype of the designated
904 -- object, this attribute is set to that type. This is done for
905 -- N_Free_Statements for access-to-classwide types and access to
906 -- unconstrained packed array types, and for N_Explicit_Dereference when
907 -- the designated type is an unconstrained packed array and the
908 -- dereference is the prefix of a 'Size attribute reference.
910 -- Address_Warning_Posted (Flag18-Sem)
911 -- Present in N_Attribute_Definition nodes. Set to indicate that we have
912 -- posted a warning for the address clause regarding size or alignment
913 -- issues. Used to inhibit multiple redundant messages.
915 -- Aggregate_Bounds (Node3-Sem)
916 -- Present in array N_Aggregate nodes. If the bounds of the aggregate are
917 -- known at compile time, this field points to an N_Range node with those
918 -- bounds. Otherwise Empty.
920 -- Alloc_For_BIP_Return (Flag1-Sem)
921 -- Present in N_Allocator nodes. True if the allocator is one of those
922 -- generated for a build-in-place return statement.
924 -- All_Others (Flag11-Sem)
925 -- Present in an N_Others_Choice node. This flag is set for an others
926 -- exception where all exceptions are to be caught, even those that are
927 -- not normally handled (in particular the tasking abort signal). This
928 -- is used for translation of the at end handler into a normal exception
929 -- handler.
931 -- Aspect_Rep_Item (Node2-Sem)
932 -- Present in N_Aspect_Specification nodes. Points to the corresponding
933 -- pragma/attribute definition node used to process the aspect.
935 -- Assignment_OK (Flag15-Sem)
936 -- This flag is set in a subexpression node for an object, indicating
937 -- that the associated object can be modified, even if this would not
938 -- normally be permissible (either by direct assignment, or by being
939 -- passed as an out or in-out parameter). This is used by the expander
940 -- for a number of purposes, including initialization of constants and
941 -- limited type objects (such as tasks), setting discriminant fields,
942 -- setting tag values, etc. N_Object_Declaration nodes also have this
943 -- flag defined. Here it is used to indicate that an initialization
944 -- expression is valid, even where it would normally not be allowed
945 -- (e.g. where the type involved is limited). It is also used to stop
946 -- a Force_Evaluation call for an unchecked conversion, but this usage
947 -- is unclear and not documented ???
949 -- Associated_Node (Node4-Sem)
950 -- Present in nodes that can denote an entity: identifiers, character
951 -- literals, operator symbols, expanded names, operator nodes, and
952 -- attribute reference nodes (all these nodes have an Entity field).
953 -- This field is also present in N_Aggregate, N_Selected_Component, and
954 -- N_Extension_Aggregate nodes. This field is used in generic processing
955 -- to create links between the generic template and the generic copy.
956 -- See Sem_Ch12.Get_Associated_Node for full details. Note that this
957 -- field overlaps Entity, which is fine, since, as explained in Sem_Ch12,
958 -- the normal function of Entity is not required at the point where the
959 -- Associated_Node is set. Note also, that in generic templates, this
960 -- means that the Entity field does not necessarily point to an Entity.
961 -- Since the back end is expected to ignore generic templates, this is
962 -- harmless.
964 -- Atomic_Sync_Required (Flag14-Sem)
965 -- This flag is set on a node for which atomic synchronization is
966 -- required for the corresponding reference or modification.
968 -- At_End_Proc (Node1)
969 -- This field is present in an N_Handled_Sequence_Of_Statements node.
970 -- It contains an identifier reference for the cleanup procedure to be
971 -- called. See description of this node for further details.
973 -- Backwards_OK (Flag6-Sem)
974 -- A flag present in the N_Assignment_Statement node. It is used only
975 -- if the type being assigned is an array type, and is set if analysis
976 -- determines that it is definitely safe to do the copy backwards, i.e.
977 -- starting at the highest addressed element. This is the case if either
978 -- the operands do not overlap, or they may overlap, but if they do,
979 -- then the left operand is at a higher address than the right operand.
981 -- Note: If neither of the flags Forwards_OK or Backwards_OK is set, it
982 -- means that the front end could not determine that either direction is
983 -- definitely safe, and a runtime check may be required if the backend
984 -- cannot figure it out. If both flags Forwards_OK and Backwards_OK are
985 -- set, it means that the front end can assure no overlap of operands.
987 -- Body_To_Inline (Node3-Sem)
988 -- Present in subprogram declarations. Denotes analyzed but unexpanded
989 -- body of subprogram, to be used when inlining calls. Present when the
990 -- subprogram has an Inline pragma and inlining is enabled. If the
991 -- declaration is completed by a renaming_as_body, and the renamed entity
992 -- is a subprogram, the Body_To_Inline is the name of that entity, which
993 -- is used directly in later calls to the original subprogram.
995 -- Body_Required (Flag13-Sem)
996 -- A flag that appears in the N_Compilation_Unit node indicating that
997 -- the corresponding unit requires a body. For the package case, this
998 -- indicates that a completion is required. In Ada 95, if the flag is not
999 -- set for the package case, then a body may not be present. In Ada 83,
1000 -- if the flag is not set for the package case, then body is optional.
1001 -- For a subprogram declaration, the flag is set except in the case where
1002 -- a pragma Import or Interface applies, in which case no body is
1003 -- permitted (in Ada 83 or Ada 95).
1005 -- By_Ref (Flag5-Sem)
1006 -- Present in N_Simple_Return_Statement and N_Extended_Return_Statement,
1007 -- this flag is set when the returned expression is already allocated on
1008 -- the secondary stack and thus the result is passed by reference rather
1009 -- than copied another time.
1011 -- Cleanup_Actions (List5-Sem)
1012 -- Present in block statements created for transient blocks, contains
1013 -- additional cleanup actions carried over from the transient scope.
1015 -- Check_Address_Alignment (Flag11-Sem)
1016 -- A flag present in N_Attribute_Definition clause for a 'Address
1017 -- attribute definition. This flag is set if a dynamic check should be
1018 -- generated at the freeze point for the entity to which this address
1019 -- clause applies. The reason that we need this flag is that we want to
1020 -- check for range checks being suppressed at the point where the
1021 -- attribute definition clause is given, rather than testing this at the
1022 -- freeze point.
1024 -- Comes_From_Extended_Return_Statement (Flag18-Sem)
1025 -- Present in N_Simple_Return_Statement nodes. True if this node was
1026 -- constructed as part of the N_Extended_Return_Statement expansion.
1028 -- Compile_Time_Known_Aggregate (Flag18-Sem)
1029 -- Present in N_Aggregate nodes. Set for aggregates which can be fully
1030 -- evaluated at compile time without raising constraint error. Such
1031 -- aggregates can be passed as is to the back end without any expansion.
1032 -- See Exp_Aggr for specific conditions under which this flag gets set.
1034 -- Componentwise_Assignment (Flag14-Sem)
1035 -- Present in N_Assignment_Statement nodes. Set for a record assignment
1036 -- where all that needs doing is to expand it into component-by-component
1037 -- assignments. This is used internally for the case of tagged types with
1038 -- rep clauses, where we need to avoid recursion (we don't want to try to
1039 -- generate a call to the primitive operation, because this is the case
1040 -- where we are compiling the primitive operation). Note that when we are
1041 -- expanding component assignments in this case, we never assign the _tag
1042 -- field, but we recursively assign components of the parent type.
1044 -- Condition_Actions (List3-Sem)
1045 -- This field appears in else-if nodes and in the iteration scheme node
1046 -- for while loops. This field is only used during semantic processing to
1047 -- temporarily hold actions inserted into the tree. In the tree passed
1048 -- to gigi, the condition actions field is always set to No_List. For
1049 -- details on how this field is used, see the routine Insert_Actions in
1050 -- package Exp_Util, and also the expansion routines for the relevant
1051 -- nodes.
1053 -- Context_Pending (Flag16-Sem)
1054 -- This field appears in Compilation_Unit nodes, to indicate that the
1055 -- context of the unit is being compiled. Used to detect circularities
1056 -- that are not otherwise detected by the loading mechanism. Such
1057 -- circularities can occur in the presence of limited and non-limited
1058 -- with_clauses that mention the same units.
1060 -- Controlling_Argument (Node1-Sem)
1061 -- This field is set in procedure and function call nodes if the call
1062 -- is a dispatching call (it is Empty for a non-dispatching call). It
1063 -- indicates the source of the call's controlling tag. For procedure
1064 -- calls, the Controlling_Argument is one of the actuals. For function
1065 -- that has a dispatching result, it is an entity in the context of the
1066 -- call that can provide a tag, or else it is the tag of the root type
1067 -- of the class. It can also specify a tag directly rather than being a
1068 -- tagged object. The latter is needed by the implementations of AI-239
1069 -- and AI-260.
1071 -- Conversion_OK (Flag14-Sem)
1072 -- A flag set on type conversion nodes to indicate that the conversion
1073 -- is to be considered as being valid, even though it is the case that
1074 -- the conversion is not valid Ada. This is used for attributes Enum_Rep,
1075 -- Fixed_Value and Integer_Value, for internal conversions done for
1076 -- fixed-point operations, and for certain conversions for calls to
1077 -- initialization procedures. If Conversion_OK is set, then Etype must be
1078 -- set (the analyzer assumes that Etype has been set). For the case of
1079 -- fixed-point operands, it also indicates that the conversion is to be
1080 -- direct conversion of the underlying integer result, with no regard to
1081 -- the small operand.
1083 -- Convert_To_Return_False (Flag13-Sem)
1084 -- Present in N_Raise_Expression nodes that appear in the body of the
1085 -- special predicateM function used to test a predicate in the context
1086 -- of a membership test, where raise expression results in returning a
1087 -- value of False rather than raising an exception.
1089 -- Corresponding_Aspect (Node3-Sem)
1090 -- Present in N_Pragma node. Used to point back to the source aspect from
1091 -- the corresponding pragma. This field is Empty for source pragmas.
1093 -- Corresponding_Body (Node5-Sem)
1094 -- This field is set in subprogram declarations, package declarations,
1095 -- entry declarations of protected types, and in generic units. It points
1096 -- to the defining entity for the corresponding body (NOT the node for
1097 -- the body itself).
1099 -- Corresponding_Formal_Spec (Node3-Sem)
1100 -- This field is set in subprogram renaming declarations, where it points
1101 -- to the defining entity for a formal subprogram in the case where the
1102 -- renaming corresponds to a generic formal subprogram association in an
1103 -- instantiation. The field is Empty if the renaming does not correspond
1104 -- to such a formal association.
1106 -- Corresponding_Generic_Association (Node5-Sem)
1107 -- This field is defined for object declarations and object renaming
1108 -- declarations. It is set for the declarations within an instance that
1109 -- map generic formals to their actuals. If set, the field points to
1110 -- a generic_association which is the original parent of the expression
1111 -- or name appearing in the declaration. This simplifies ASIS queries.
1113 -- Corresponding_Integer_Value (Uint4-Sem)
1114 -- This field is set in real literals of fixed-point types (it is not
1115 -- used for floating-point types). It contains the integer value used
1116 -- to represent the fixed-point value. It is also set on the universal
1117 -- real literals used to represent bounds of fixed-point base types
1118 -- and their first named subtypes.
1120 -- Corresponding_Spec (Node5-Sem)
1121 -- This field is set in subprogram, package, task, and protected body
1122 -- nodes, where it points to the defining entity in the corresponding
1123 -- spec. The attribute is also set in N_With_Clause nodes where it points
1124 -- to the defining entity for the with'ed spec, and in a subprogram
1125 -- renaming declaration when it is a Renaming_As_Body. The field is Empty
1126 -- if there is no corresponding spec, as in the case of a subprogram body
1127 -- that serves as its own spec.
1129 -- In Ada 2012, Corresponding_Spec is set on expression functions that
1130 -- complete a subprogram declaration.
1132 -- Corresponding_Spec_Of_Stub (Node2-Sem)
1133 -- This field is present in subprogram, package, task, and protected body
1134 -- stubs where it points to the corresponding spec of the stub. Due to
1135 -- clashes in the structure of nodes, we cannot use Corresponding_Spec.
1137 -- Corresponding_Stub (Node3-Sem)
1138 -- This field is present in an N_Subunit node. It holds the node in
1139 -- the parent unit that is the stub declaration for the subunit. It is
1140 -- set when analysis of the stub forces loading of the proper body. If
1141 -- expansion of the proper body creates new declarative nodes, they are
1142 -- inserted at the point of the corresponding_stub.
1144 -- Dcheck_Function (Node5-Sem)
1145 -- This field is present in an N_Variant node, It references the entity
1146 -- for the discriminant checking function for the variant.
1148 -- Default_Expression (Node5-Sem)
1149 -- This field is Empty if there is no default expression. If there is a
1150 -- simple default expression (one with no side effects), then this field
1151 -- simply contains a copy of the Expression field (both point to the tree
1152 -- for the default expression). Default_Expression is used for
1153 -- conformance checking.
1155 -- Default_Storage_Pool (Node3-Sem)
1156 -- This field is present in N_Compilation_Unit_Aux nodes. It is set to a
1157 -- copy of Opt.Default_Pool at the end of the compilation unit. See
1158 -- package Opt for details. This is used for inheriting the
1159 -- Default_Storage_Pool in child units.
1161 -- Discr_Check_Funcs_Built (Flag11-Sem)
1162 -- This flag is present in N_Full_Type_Declaration nodes. It is set when
1163 -- discriminant checking functions are constructed. The purpose is to
1164 -- avoid attempting to set these functions more than once.
1166 -- Do_Accessibility_Check (Flag13-Sem)
1167 -- This flag is set on N_Parameter_Specification nodes to indicate
1168 -- that an accessibility check is required for the parameter. It is
1169 -- not yet decided who takes care of this check (TBD ???).
1171 -- Do_Discriminant_Check (Flag3-Sem)
1172 -- This flag is set on N_Selected_Component nodes to indicate that a
1173 -- discriminant check is required using the discriminant check routine
1174 -- associated with the selector. The actual check is generated by the
1175 -- expander when processing selected components. In the case of
1176 -- Unchecked_Union, the flag is also set, but no discriminant check
1177 -- routine is associated with the selector, and the expander does not
1178 -- generate a check. This flag is also present in assignment statements
1179 -- (and set if the assignment requires a discriminant check), and in type
1180 -- conversion nodes (and set if the conversion requires a check).
1182 -- Do_Division_Check (Flag13-Sem)
1183 -- This flag is set on a division operator (/ mod rem) to indicate
1184 -- that a zero divide check is required. The actual check is dealt
1185 -- with by the backend (all the front end does is to set the flag).
1187 -- Do_Length_Check (Flag4-Sem)
1188 -- This flag is set in an N_Assignment_Statement, N_Op_And, N_Op_Or,
1189 -- N_Op_Xor, or N_Type_Conversion node to indicate that a length check
1190 -- is required. It is not determined who deals with this flag (???).
1192 -- Do_Overflow_Check (Flag17-Sem)
1193 -- This flag is set on an operator where an overflow check is required on
1194 -- the operation. The actual check is dealt with by the backend (all the
1195 -- front end does is to set the flag). The other cases where this flag is
1196 -- used is on a Type_Conversion node and for attribute reference nodes.
1197 -- For a type conversion, it means that the conversion is from one base
1198 -- type to another, and the value may not fit in the target base type.
1199 -- See also the description of Do_Range_Check for this case. The only
1200 -- attribute references which use this flag are Pred and Succ, where it
1201 -- means that the result should be checked for going outside the base
1202 -- range. Note that this flag is not set for modular types. This flag is
1203 -- also set on if and case expression nodes if we are operating in either
1204 -- MINIMIZED or ELIMINATED overflow checking mode (to make sure that we
1205 -- properly process overflow checking for dependent expressions).
1207 -- Do_Range_Check (Flag9-Sem)
1208 -- This flag is set on an expression which appears in a context where a
1209 -- range check is required. The target type is clear from the context.
1210 -- The contexts in which this flag can appear are the following:
1212 -- Right side of an assignment. In this case the target type is
1213 -- taken from the left side of the assignment, which is referenced
1214 -- by the Name of the N_Assignment_Statement node.
1216 -- Subscript expressions in an indexed component. In this case the
1217 -- target type is determined from the type of the array, which is
1218 -- referenced by the Prefix of the N_Indexed_Component node.
1220 -- Argument expression for a parameter, appearing either directly in
1221 -- the Parameter_Associations list of a call or as the Expression of an
1222 -- N_Parameter_Association node that appears in this list. In either
1223 -- case, the check is against the type of the formal. Note that the
1224 -- flag is relevant only in IN and IN OUT parameters, and will be
1225 -- ignored for OUT parameters, where no check is required in the call,
1226 -- and if a check is required on the return, it is generated explicitly
1227 -- with a type conversion.
1229 -- Initialization expression for the initial value in an object
1230 -- declaration. In this case the Do_Range_Check flag is set on
1231 -- the initialization expression, and the check is against the
1232 -- range of the type of the object being declared. This includes the
1233 -- cases of expressions providing default discriminant values, and
1234 -- expressions used to initialize record components.
1236 -- The expression of a type conversion. In this case the range check is
1237 -- against the target type of the conversion. See also the use of
1238 -- Do_Overflow_Check on a type conversion. The distinction is that the
1239 -- overflow check protects against a value that is outside the range of
1240 -- the target base type, whereas a range check checks that the
1241 -- resulting value (which is a value of the base type of the target
1242 -- type), satisfies the range constraint of the target type.
1244 -- Note: when a range check is required in contexts other than those
1245 -- listed above (e.g. in a return statement), an additional type
1246 -- conversion node is introduced to represent the required check.
1248 -- A special case arises for the arguments of the Pred/Succ attributes.
1249 -- Here the range check needed is against First + 1 .. Last (Pred) or
1250 -- First .. Last - 1 (Succ) of the corresponding base type. Essentially
1251 -- these checks are what would be performed within the implicit body of
1252 -- the functions that correspond to these attributes. In these cases,
1253 -- the Do_Range check flag is set on the argument to the attribute
1254 -- function, and the back end must special case the appropriate range
1255 -- to check against.
1257 -- Do_Storage_Check (Flag17-Sem)
1258 -- This flag is set in an N_Allocator node to indicate that a storage
1259 -- check is required for the allocation, or in an N_Subprogram_Body node
1260 -- to indicate that a stack check is required in the subprogram prologue.
1261 -- The N_Allocator case is handled by the routine that expands the call
1262 -- to the runtime routine. The N_Subprogram_Body case is handled by the
1263 -- backend, and all the semantics does is set the flag.
1265 -- Do_Tag_Check (Flag13-Sem)
1266 -- This flag is set on an N_Assignment_Statement, N_Function_Call,
1267 -- N_Procedure_Call_Statement, N_Type_Conversion,
1268 -- N_Simple_Return_Statement, or N_Extended_Return_Statement
1269 -- node to indicate that the tag check can be suppressed. It is not
1270 -- yet decided how this flag is used (TBD ???).
1272 -- Elaborate_Present (Flag4-Sem)
1273 -- This flag is set in the N_With_Clause node to indicate that pragma
1274 -- Elaborate pragma appears for the with'ed units.
1276 -- Elaborate_All_Desirable (Flag9-Sem)
1277 -- This flag is set in the N_With_Clause mode to indicate that the static
1278 -- elaboration processing has determined that an Elaborate_All pragma is
1279 -- desirable for correct elaboration for this unit.
1281 -- Elaborate_All_Present (Flag14-Sem)
1282 -- This flag is set in the N_With_Clause node to indicate that a
1283 -- pragma Elaborate_All pragma appears for the with'ed units.
1285 -- Elaborate_Desirable (Flag11-Sem)
1286 -- This flag is set in the N_With_Clause mode to indicate that the static
1287 -- elaboration processing has determined that an Elaborate pragma is
1288 -- desirable for correct elaboration for this unit.
1290 -- Else_Actions (List3-Sem)
1291 -- This field is present in if expression nodes. During code
1292 -- expansion we use the Insert_Actions procedure (in Exp_Util) to insert
1293 -- actions at an appropriate place in the tree to get elaborated at the
1294 -- right time. For if expressions, we have to be sure that the actions
1295 -- for the Else branch are only elaborated if the condition is False.
1296 -- The Else_Actions field is used as a temporary parking place for
1297 -- these actions. The final tree is always rewritten to eliminate the
1298 -- need for this field, so in the tree passed to Gigi, this field is
1299 -- always set to No_List.
1301 -- Enclosing_Variant (Node2-Sem)
1302 -- This field is present in the N_Variant node and identifies the Node_Id
1303 -- corresponding to the immediately enclosing variant when the variant is
1304 -- nested, and N_Empty otherwise. Set during semantic processing of the
1305 -- variant part of a record type.
1307 -- Entity (Node4-Sem)
1308 -- Appears in all direct names (identifiers, character literals, and
1309 -- operator symbols), as well as expanded names, and attributes that
1310 -- denote entities, such as 'Class. Points to entity for corresponding
1311 -- defining occurrence. Set after name resolution. For identifiers in a
1312 -- WITH list, the corresponding defining occurrence is in a separately
1313 -- compiled file, and Entity must be set by the library Load procedure.
1315 -- Note: During name resolution, the value in Entity may be temporarily
1316 -- incorrect (e.g. during overload resolution, Entity is initially set to
1317 -- the first possible correct interpretation, and then later modified if
1318 -- necessary to contain the correct value after resolution).
1320 -- Note: This field overlaps Associated_Node, which is used during
1321 -- generic processing (see Sem_Ch12 for details). Note also that in
1322 -- generic templates, this means that the Entity field does not always
1323 -- point to an Entity. Since the back end is expected to ignore generic
1324 -- templates, this is harmless.
1326 -- Note: This field also appears in N_Attribute_Definition_Clause nodes.
1327 -- It is used only for stream attributes definition clauses. In this
1328 -- case, it denotes a (possibly dummy) subprogram entity that is declared
1329 -- conceptually at the point of the clause. Thus the visibility of the
1330 -- attribute definition clause (in the sense of 8.3(23) as amended by
1331 -- AI-195) can be checked by testing the visibility of that subprogram.
1333 -- Note: Normally the Entity field of an identifier points to the entity
1334 -- for the corresponding defining identifier, and hence the Chars field
1335 -- of an identifier will match the Chars field of the entity. However,
1336 -- there is no requirement that these match, and there are obscure cases
1337 -- of generated code where they do not match.
1339 -- Note: Ada 2012 aspect specifications require additional links between
1340 -- identifiers and various attributes. These attributes can be of
1341 -- arbitrary types, and the entity field of identifiers that denote
1342 -- aspects must be used to store arbitrary expressions for later semantic
1343 -- checks. See section on aspect specifications for details.
1345 -- Entity_Or_Associated_Node (Node4-Sem)
1346 -- A synonym for both Entity and Associated_Node. Used by convention in
1347 -- the code when referencing this field in cases where it is not known
1348 -- whether the field contains an Entity or an Associated_Node.
1350 -- Etype (Node5-Sem)
1351 -- Appears in all expression nodes, all direct names, and all entities.
1352 -- Points to the entity for the related type. Set after type resolution.
1353 -- Normally this is the actual subtype of the expression. However, in
1354 -- certain contexts such as the right side of an assignment, subscripts,
1355 -- arguments to calls, returned value in a function, initial value etc.
1356 -- it is the desired target type. In the event that this is different
1357 -- from the actual type, the Do_Range_Check flag will be set if a range
1358 -- check is required. Note: if the Is_Overloaded flag is set, then Etype
1359 -- points to an essentially arbitrary choice from the possible set of
1360 -- types.
1362 -- Exception_Junk (Flag8-Sem)
1363 -- This flag is set in a various nodes appearing in a statement sequence
1364 -- to indicate that the corresponding node is an artifact of the
1365 -- generated code for exception handling, and should be ignored when
1366 -- analyzing the control flow of the relevant sequence of statements
1367 -- (e.g. to check that it does not end with a bad return statement).
1369 -- Exception_Label (Node5-Sem)
1370 -- Appears in N_Push_xxx_Label nodes. Points to the entity of the label
1371 -- to be used for transforming the corresponding exception into a goto,
1372 -- or contains Empty, if this exception is not to be transformed. Also
1373 -- appears in N_Exception_Handler nodes, where, if set, it indicates
1374 -- that there may be a local raise for the handler, so that expansion
1375 -- to allow a goto is required (and this field contains the label for
1376 -- this goto). See Exp_Ch11.Expand_Local_Exception_Handlers for details.
1378 -- Expansion_Delayed (Flag11-Sem)
1379 -- Set on aggregates and extension aggregates that need a top-down rather
1380 -- than bottom-up expansion. Typically aggregate expansion happens bottom
1381 -- up. For nested aggregates the expansion is delayed until the enclosing
1382 -- aggregate itself is expanded, e.g. in the context of a declaration. To
1383 -- delay it we set this flag. This is done to avoid creating a temporary
1384 -- for each level of a nested aggregate, and also to prevent the
1385 -- premature generation of constraint checks. This is also a requirement
1386 -- if we want to generate the proper attachment to the internal????
1387 -- finalization lists (for record with controlled components). Top down
1388 -- expansion of aggregates is also used for in-place array aggregate
1389 -- assignment or initialization. When the full context is known, the
1390 -- target of the assignment or initialization is used to generate the
1391 -- left-hand side of individual assignment to each sub-component.
1393 -- Expression_Copy (Node2-Sem)
1394 -- Present in N_Pragma_Argument_Association nodes. Contains a copy of the
1395 -- original expression. This field is best used to store pragma-dependent
1396 -- modifications performed on the original expression such as replacement
1397 -- of the current type instance or substitutions of primitives.
1399 -- First_Inlined_Subprogram (Node3-Sem)
1400 -- Present in the N_Compilation_Unit node for the main program. Points
1401 -- to a chain of entities for subprograms that are to be inlined. The
1402 -- Next_Inlined_Subprogram field of these entities is used as a link
1403 -- pointer with Empty marking the end of the list. This field is Empty
1404 -- if there are no inlined subprograms or inlining is not active.
1406 -- First_Named_Actual (Node4-Sem)
1407 -- Present in procedure call statement and function call nodes, and also
1408 -- in Intrinsic nodes. Set during semantic analysis to point to the first
1409 -- named parameter where parameters are ordered by declaration order (as
1410 -- opposed to the actual order in the call which may be different due to
1411 -- named associations). Note: this field points to the explicit actual
1412 -- parameter itself, not the N_Parameter_Association node (its parent).
1414 -- First_Real_Statement (Node2-Sem)
1415 -- Present in N_Handled_Sequence_Of_Statements node. Normally set to
1416 -- Empty. Used only when declarations are moved into the statement part
1417 -- of a construct as a result of wrapping an AT END handler that is
1418 -- required to cover the declarations. In this case, this field is used
1419 -- to remember the location in the statements list of the first real
1420 -- statement, i.e. the statement that used to be first in the statement
1421 -- list before the declarations were prepended.
1423 -- First_Subtype_Link (Node5-Sem)
1424 -- Present in N_Freeze_Entity node for an anonymous base type that is
1425 -- implicitly created by the declaration of a first subtype. It points
1426 -- to the entity for the first subtype.
1428 -- Float_Truncate (Flag11-Sem)
1429 -- A flag present in type conversion nodes. This is used for float to
1430 -- integer conversions where truncation is required rather than rounding.
1432 -- Forwards_OK (Flag5-Sem)
1433 -- A flag present in the N_Assignment_Statement node. It is used only
1434 -- if the type being assigned is an array type, and is set if analysis
1435 -- determines that it is definitely safe to do the copy forwards, i.e.
1436 -- starting at the lowest addressed element. This is the case if either
1437 -- the operands do not overlap, or they may overlap, but if they do,
1438 -- then the left operand is at a lower address than the right operand.
1440 -- Note: If neither of the flags Forwards_OK or Backwards_OK is set, it
1441 -- means that the front end could not determine that either direction is
1442 -- definitely safe, and a runtime check may be required if the backend
1443 -- cannot figure it out. If both flags Forwards_OK and Backwards_OK are
1444 -- set, it means that the front end can assure no overlap of operands.
1446 -- From_Aspect_Specification (Flag13-Sem)
1447 -- Processing of aspect specifications typically results in insertion in
1448 -- the tree of corresponding pragma or attribute definition clause nodes.
1449 -- These generated nodes have the From_Aspect_Specification flag set to
1450 -- indicate that they came from aspect specifications originally.
1452 -- From_At_End (Flag4-Sem)
1453 -- This flag is set on an N_Raise_Statement node if it corresponds to
1454 -- the reraise statement generated as the last statement of an AT END
1455 -- handler when SJLJ exception handling is active. It is used to stop
1456 -- a bogus violation of restriction (No_Exception_Propagation), bogus
1457 -- because if the restriction is set, the reraise is not generated.
1459 -- From_At_Mod (Flag4-Sem)
1460 -- This flag is set on the attribute definition clause node that is
1461 -- generated by a transformation of an at mod phrase in a record
1462 -- representation clause. This is used to give slightly different (Ada 83
1463 -- compatible) semantics to such a clause, namely it is used to specify a
1464 -- minimum acceptable alignment for the base type and all subtypes. In
1465 -- Ada 95 terms, the actual alignment of the base type and all subtypes
1466 -- must be a multiple of the given value, and the representation clause
1467 -- is considered to be type specific instead of subtype specific.
1469 -- From_Conditional_Expression (Flag1-Sem)
1470 -- This flag is set on if and case statements generated by the expansion
1471 -- of if and case expressions respectively. The flag is used to suppress
1472 -- any finalization of controlled objects found within these statements.
1474 -- From_Default (Flag6-Sem)
1475 -- This flag is set on the subprogram renaming declaration created in an
1476 -- instance for a formal subprogram, when the formal is declared with a
1477 -- box, and there is no explicit actual. If the flag is present, the
1478 -- declaration is treated as an implicit reference to the formal in the
1479 -- ali file.
1481 -- Generalized_Indexing (Node4-Sem)
1482 -- Present in N_Indexed_Component nodes. Set for Indexed_Component nodes
1483 -- that are Ada 2012 container indexing operations. The value of the
1484 -- attribute is a function call (possibly dereferenced) that corresponds
1485 -- to the proper expansion of the source indexing operation. Before
1486 -- expansion, the source node is rewritten as the resolved generalized
1487 -- indexing. In ASIS mode, the expansion does not take place, so that
1488 -- the source is preserved and properly annotated with types.
1490 -- Generic_Parent (Node5-Sem)
1491 -- Generic_Parent is defined on declaration nodes that are instances. The
1492 -- value of Generic_Parent is the generic entity from which the instance
1493 -- is obtained.
1495 -- Generic_Parent_Type (Node4-Sem)
1496 -- Generic_Parent_Type is defined on Subtype_Declaration nodes for the
1497 -- actuals of formal private and derived types. Within the instance, the
1498 -- operations on the actual are those inherited from the parent. For a
1499 -- formal private type, the parent type is the generic type itself. The
1500 -- Generic_Parent_Type is also used in an instance to determine whether a
1501 -- private operation overrides an inherited one.
1503 -- Handler_List_Entry (Node2-Sem)
1504 -- This field is present in N_Object_Declaration nodes. It is set only
1505 -- for the Handler_Record entry generated for an exception in zero cost
1506 -- exception handling mode. It references the corresponding item in the
1507 -- handler list, and is used to delete this entry if the corresponding
1508 -- handler is deleted during optimization. For further details on why
1509 -- this is required, see Exp_Ch11.Remove_Handler_Entries.
1511 -- Has_Dereference_Action (Flag13-Sem)
1512 -- This flag is present in N_Explicit_Dereference nodes. It is set to
1513 -- indicate that the expansion has aready produced a call to primitive
1514 -- Dereference of a System.Checked_Pools.Checked_Pool implementation.
1515 -- Such dereference actions are produced for debugging purposes.
1517 -- Has_Dynamic_Length_Check (Flag10-Sem)
1518 -- This flag is present in all expression nodes. It is set to indicate
1519 -- that one of the routines in unit Checks has generated a length check
1520 -- action which has been inserted at the flagged node. This is used to
1521 -- avoid the generation of duplicate checks.
1523 -- Has_Dynamic_Range_Check (Flag12-Sem)
1524 -- This flag is present in N_Subtype_Declaration nodes and on all
1525 -- expression nodes. It is set to indicate that one of the routines in
1526 -- unit Checks has generated a range check action which has been inserted
1527 -- at the flagged node. This is used to avoid the generation of duplicate
1528 -- checks. Why does this occur on N_Subtype_Declaration nodes, what does
1529 -- it mean in that context???
1531 -- Has_Local_Raise (Flag8-Sem)
1532 -- Present in exception handler nodes. Set if the handler can be entered
1533 -- via a local raise that gets transformed to a goto statement. This will
1534 -- always be set if Local_Raise_Statements is non-empty, but can also be
1535 -- set as a result of generation of N_Raise_xxx nodes, or flags set in
1536 -- nodes requiring generation of back end checks.
1538 -- Has_No_Elaboration_Code (Flag17-Sem)
1539 -- A flag that appears in the N_Compilation_Unit node to indicate whether
1540 -- or not elaboration code is present for this unit. It is initially set
1541 -- true for subprogram specs and bodies and for all generic units and
1542 -- false for non-generic package specs and bodies. Gigi may set the flag
1543 -- in the non-generic package case if it determines that no elaboration
1544 -- code is generated. Note that this flag is not related to the
1545 -- Is_Preelaborated status, there can be preelaborated packages that
1546 -- generate elaboration code, and non-preelaborated packages which do
1547 -- not generate elaboration code.
1549 -- Has_Pragma_Suppress_All (Flag14-Sem)
1550 -- This flag is set in an N_Compilation_Unit node if the Suppress_All
1551 -- pragma appears anywhere in the unit. This accommodates the rather
1552 -- strange placement rules of other compilers (DEC permits it at the
1553 -- end of a unit, and Rational allows it as a program unit pragma). We
1554 -- allow it anywhere at all, and consider it equivalent to a pragma
1555 -- Suppress (All_Checks) appearing at the start of the configuration
1556 -- pragmas for the unit.
1558 -- Has_Private_View (Flag11-Sem)
1559 -- A flag present in generic nodes that have an entity, to indicate that
1560 -- the node has a private type. Used to exchange private and full
1561 -- declarations if the visibility at instantiation is different from the
1562 -- visibility at generic definition.
1564 -- Has_Relative_Deadline_Pragma (Flag9-Sem)
1565 -- A flag present in N_Subprogram_Body and N_Task_Definition nodes to
1566 -- flag the presence of a pragma Relative_Deadline.
1568 -- Has_Self_Reference (Flag13-Sem)
1569 -- Present in N_Aggregate and N_Extension_Aggregate. Indicates that one
1570 -- of the expressions contains an access attribute reference to the
1571 -- enclosing type. Such a self-reference can only appear in default-
1572 -- initialized aggregate for a record type.
1574 -- Has_SP_Choice (Flag15-Sem)
1575 -- Present in all nodes containing a Discrete_Choices field (N_Variant,
1576 -- N_Case_Expression_Alternative, N_Case_Statement_Alternative). Set to
1577 -- True if the Discrete_Choices list has at least one occurrence of a
1578 -- statically predicated subtype.
1580 -- Has_Storage_Size_Pragma (Flag5-Sem)
1581 -- A flag present in an N_Task_Definition node to flag the presence of a
1582 -- Storage_Size pragma.
1584 -- Has_Target_Names (Flag8-Sem)
1585 -- Present in assignment statements. Indicates that the RHS contains
1586 -- target names (see AI12-0125-3) and must be expanded accordingly.
1588 -- Has_Wide_Character (Flag11-Sem)
1589 -- Present in string literals, set if any wide character (i.e. character
1590 -- code outside the Character range but within Wide_Character range)
1591 -- appears in the string. Used to implement pragma preference rules.
1593 -- Has_Wide_Wide_Character (Flag13-Sem)
1594 -- Present in string literals, set if any wide character (i.e. character
1595 -- code outside the Wide_Character range) appears in the string. Used to
1596 -- implement pragma preference rules.
1598 -- Header_Size_Added (Flag11-Sem)
1599 -- Present in N_Attribute_Reference nodes, set only for attribute
1600 -- Max_Size_In_Storage_Elements. The flag indicates that the size of the
1601 -- hidden list header used by the runtime finalization support has been
1602 -- added to the size of the prefix. The flag also prevents the infinite
1603 -- expansion of the same attribute in the said context.
1605 -- Hidden_By_Use_Clause (Elist5-Sem)
1606 -- An entity list present in use clauses that appear within
1607 -- instantiations. For the resolution of local entities, entities
1608 -- introduced by these use clauses have priority over global ones,
1609 -- and outer entities must be explicitly hidden/restored on exit.
1611 -- Implicit_With (Flag16-Sem)
1612 -- Present in N_With_Clause nodes. The flag indicates that the clause
1613 -- does not comes from source and introduces an implicit dependency on
1614 -- a particular unit. Such implicit with clauses are generated by:
1616 -- * ABE mechanism - The static elaboration model of both the default
1617 -- and the legacy ABE mechanism use with clauses to encode implicit
1618 -- Elaborate[_All] pragmas.
1620 -- * Analysis - A with clause for child unit A.B.C is equivalent to
1621 -- a series of clauses that with A, A.B, and A.B.C. Manipulation of
1622 -- contexts utilizes implicit with clauses to emulate the visibility
1623 -- of a particular unit.
1625 -- * RTSfind - The compiler generates code which references entities
1626 -- from the runtime.
1628 -- Import_Interface_Present (Flag16-Sem)
1629 -- This flag is set in an Interface or Import pragma if a matching
1630 -- pragma of the other kind is also present. This is used to avoid
1631 -- generating some unwanted error messages.
1633 -- Includes_Infinities (Flag11-Sem)
1634 -- This flag is present in N_Range nodes. It is set for the range of
1635 -- unconstrained float types defined in Standard, which include not only
1636 -- the given range of values, but also legitimately can include infinite
1637 -- values. This flag is false for any float type for which an explicit
1638 -- range is given by the programmer, even if that range is identical to
1639 -- the range for Float.
1641 -- Incomplete_View (Node2-Sem)
1642 -- Present in full type declarations that are completions of incomplete
1643 -- type declarations. Denotes the corresponding incomplete type
1644 -- declaration. Used to simplify the retrieval of primitive operations
1645 -- that may be declared between the partial and the full view of an
1646 -- untagged type.
1648 -- Inherited_Discriminant (Flag13-Sem)
1649 -- This flag is present in N_Component_Association nodes. It indicates
1650 -- that a given component association in an extension aggregate is the
1651 -- value obtained from a constraint on an ancestor. Used to prevent
1652 -- double expansion when the aggregate has expansion delayed.
1654 -- Instance_Spec (Node5-Sem)
1655 -- This field is present in generic instantiation nodes, and also in
1656 -- formal package declaration nodes (formal package declarations are
1657 -- treated in a manner very similar to package instantiations). It points
1658 -- to the node for the spec of the instance, inserted as part of the
1659 -- semantic processing for instantiations in Sem_Ch12.
1661 -- Is_Abort_Block (Flag4-Sem)
1662 -- Present in N_Block_Statement nodes. True if the block protects a list
1663 -- of statements with an Abort_Defer / Abort_Undefer_Direct pair.
1665 -- Is_Accessibility_Actual (Flag13-Sem)
1666 -- Present in N_Parameter_Association nodes. True if the parameter is
1667 -- an extra actual that carries the accessibility level of the actual
1668 -- for an access parameter, in a function that dispatches on result and
1669 -- is called in a dispatching context. Used to prevent a formal/actual
1670 -- mismatch when the call is rewritten as a dispatching call.
1672 -- Is_Analyzed_Pragma (Flag5-Sem)
1673 -- Present in N_Pragma nodes. Set for delayed pragmas that require a two
1674 -- step analysis. The initial step is peformed by routine Analyze_Pragma
1675 -- and verifies the overall legality of the pragma. The second step takes
1676 -- place in the various Analyze_xxx_In_Decl_Part routines which perform
1677 -- full analysis. The flag prevents the reanalysis of a delayed pragma.
1679 -- Is_Asynchronous_Call_Block (Flag7-Sem)
1680 -- A flag set in a Block_Statement node to indicate that it is the
1681 -- expansion of an asynchronous entry call. Such a block needs cleanup
1682 -- handler to assure that the call is cancelled.
1684 -- Is_Boolean_Aspect (Flag16-Sem)
1685 -- Present in N_Aspect_Specification node. Set if the aspect is for a
1686 -- boolean aspect (i.e. Aspect_Id is in Boolean_Aspect subtype).
1688 -- Is_Checked (Flag11-Sem)
1689 -- Present in N_Aspect_Specification and N_Pragma nodes. Set for an
1690 -- assertion aspect or pragma, or check pragma for an assertion, that
1691 -- is to be checked at run time. If either Is_Checked or Is_Ignored
1692 -- is set (they cannot both be set), then this means that the status of
1693 -- the pragma has been checked at the appropriate point and should not
1694 -- be further modified (in some cases these flags are copied when a
1695 -- pragma is rewritten).
1697 -- Is_Checked_Ghost_Pragma (Flag3-Sem)
1698 -- This flag is present in N_Pragma nodes. It is set when the pragma is
1699 -- related to a checked Ghost entity or encloses a checked Ghost entity.
1700 -- This flag has no relation to Is_Checked.
1702 -- Is_Component_Left_Opnd (Flag13-Sem)
1703 -- Is_Component_Right_Opnd (Flag14-Sem)
1704 -- Present in concatenation nodes, to indicate that the corresponding
1705 -- operand is of the component type of the result. Used in resolving
1706 -- concatenation nodes in instances.
1708 -- Is_Controlling_Actual (Flag16-Sem)
1709 -- This flag is set on an expression that is a controlling argument in
1710 -- a dispatching call. It is off in all other cases. See Sem_Disp for
1711 -- details of its use.
1713 -- Is_Declaration_Level_Node (Flag5-Sem)
1714 -- Present in call marker and instantiation nodes. Set when the constuct
1715 -- appears within the declarations of a block statement, an entry body,
1716 -- a subprogram body, or a task body. The flag aids the ABE Processing
1717 -- phase to catch certain forms of guaranteed ABEs.
1719 -- Is_Delayed_Aspect (Flag14-Sem)
1720 -- Present in N_Pragma and N_Attribute_Definition_Clause nodes which
1721 -- come from aspect specifications, where the evaluation of the aspect
1722 -- must be delayed to the freeze point. This flag is also set True in
1723 -- the corresponding N_Aspect_Specification node.
1725 -- Is_Disabled (Flag15-Sem)
1726 -- A flag set in an N_Aspect_Specification or N_Pragma node if there was
1727 -- a Check_Policy or Assertion_Policy (or in the case of a Debug_Pragma)
1728 -- a Debug_Policy pragma that resulted in totally disabling the flagged
1729 -- aspect or policy as a result of using the GNAT-defined policy DISABLE.
1730 -- If this flag is set, the aspect or policy is not analyzed for semantic
1731 -- correctness, so any expressions etc will not be marked as analyzed.
1733 -- Is_Dispatching_Call (Flag6-Sem)
1734 -- Present in call marker nodes. Set when the related call which prompted
1735 -- the creation of the marker is dispatching.
1737 -- Is_Dynamic_Coextension (Flag18-Sem)
1738 -- Present in allocator nodes, to indicate that this is an allocator
1739 -- for an access discriminant of a dynamically allocated object. The
1740 -- coextension must be deallocated and finalized at the same time as
1741 -- the enclosing object. The partner flag Is_Static_Coextension must
1742 -- be cleared before setting this flag to True.
1744 -- Is_Effective_Use_Clause (Flag1-Sem)
1745 -- Present in both N_Use_Type_Clause and N_Use_Package_Clause to indicate
1746 -- a use clause is "used" in the current source.
1748 -- Is_Elaboration_Checks_OK_Node (Flag1-Sem)
1749 -- Present in the following nodes:
1751 -- assignment statement
1752 -- attribute reference
1753 -- call marker
1754 -- entry call statement
1755 -- expanded name
1756 -- function call
1757 -- function instantiation
1758 -- identifier
1759 -- package instantiation
1760 -- procedure call statement
1761 -- procedure instantiation
1762 -- requeue statement
1764 -- Set when the node appears within a context which allows the generation
1765 -- of run-time ABE checks. This flag detemines whether the ABE Processing
1766 -- phase generates conditional ABE checks and guaranteed ABE failures.
1768 -- Is_Elaboration_Code (Flag9-Sem)
1769 -- Present in assignment statements. Set for an assignment which updates
1770 -- the elaboration flag of a package or subprogram when the corresponding
1771 -- body is successfully elaborated.
1773 -- Is_Elaboration_Warnings_OK_Node (Flag3-Sem)
1774 -- Present in the following nodes:
1776 -- attribute reference
1777 -- call marker
1778 -- entry call statement
1779 -- function call
1780 -- function instantiation
1781 -- package instantiation
1782 -- procedure call statement
1783 -- procedure instantiation
1784 -- requeue statement
1786 -- Set when the node appears within a context where elaboration warnings
1787 -- are enabled. This flag determines whether the ABE processing phase
1788 -- generates diagnostics on various elaboration issues.
1790 -- Is_Entry_Barrier_Function (Flag8-Sem)
1791 -- This flag is set on N_Subprogram_Declaration and N_Subprogram_Body
1792 -- nodes which emulate the barrier function of a protected entry body.
1793 -- The flag is used when checking for incorrect use of Current_Task.
1795 -- Is_Expanded_Build_In_Place_Call (Flag11-Sem)
1796 -- This flag is set in an N_Function_Call node to indicate that the extra
1797 -- actuals to support a build-in-place style of call have been added to
1798 -- the call.
1800 -- Is_Expanded_Contract (Flag1-Sem)
1801 -- Present in N_Contract nodes. Set if the contract has already undergone
1802 -- expansion activities.
1804 -- Is_Finalization_Wrapper (Flag9-Sem)
1805 -- This flag is present in N_Block_Statement nodes. It is set when the
1806 -- block acts as a wrapper of a handled construct which has controlled
1807 -- objects. The wrapper prevents interference between exception handlers
1808 -- and At_End handlers.
1810 -- Is_Generic_Contract_Pragma (Flag2-Sem)
1811 -- This flag is present in N_Pragma nodes. It is set when the pragma is
1812 -- a source construct, applies to a generic unit or its body, and denotes
1813 -- one of the following contract-related annotations:
1814 -- Abstract_State
1815 -- Contract_Cases
1816 -- Depends
1817 -- Extensions_Visible
1818 -- Global
1819 -- Initial_Condition
1820 -- Initializes
1821 -- Post
1822 -- Post_Class
1823 -- Postcondition
1824 -- Pre
1825 -- Pre_Class
1826 -- Precondition
1827 -- Refined_Depends
1828 -- Refined_Global
1829 -- Refined_Post
1830 -- Refined_State
1831 -- Test_Case
1833 -- Is_Ignored (Flag9-Sem)
1834 -- A flag set in an N_Aspect_Specification or N_Pragma node if there was
1835 -- a Check_Policy or Assertion_Policy (or in the case of a Debug_Pragma)
1836 -- a Debug_Policy pragma that specified a policy of IGNORE, DISABLE, or
1837 -- OFF, for the pragma/aspect. If there was a Policy pragma specifying
1838 -- a Policy of ON or CHECK, then this flag is reset. If no Policy pragma
1839 -- gives a policy for the aspect or pragma, then there are two cases. For
1840 -- an assertion aspect or pragma (one of the assertion kinds allowed in
1841 -- an Assertion_Policy pragma), then Is_Ignored is set if assertions are
1842 -- ignored because of the absence of a -gnata switch. For any other
1843 -- aspects or pragmas, the flag is off. If this flag is set, the
1844 -- aspect/pragma is fully analyzed and checked for other syntactic
1845 -- and semantic errors, but it does not have any semantic effect.
1847 -- Is_Ignored_Ghost_Pragma (Flag8-Sem)
1848 -- This flag is present in N_Pragma nodes. It is set when the pragma is
1849 -- related to an ignored Ghost entity or encloses ignored Ghost entity.
1850 -- This flag has no relation to Is_Ignored.
1852 -- Is_In_Discriminant_Check (Flag11-Sem)
1853 -- This flag is present in a selected component, and is used to indicate
1854 -- that the reference occurs within a discriminant check. The
1855 -- significance is that optimizations based on assuming that the
1856 -- discriminant check has a correct value cannot be performed in this
1857 -- case (or the discriminant check may be optimized away).
1859 -- Is_Inherited_Pragma (Flag4-Sem)
1860 -- This flag is set in an N_Pragma node that appears in a N_Contract node
1861 -- to indicate that the pragma has been inherited from a parent context.
1863 -- Is_Initialization_Block (Flag1-Sem)
1864 -- Defined in block nodes. Set when the block statement was created by
1865 -- the finalization machinery to wrap initialization statements. This
1866 -- flag aids the ABE Processing phase to suppress the diagnostics of
1867 -- finalization actions in initialization contexts.
1869 -- Is_Known_Guaranteed_ABE (Flag18-Sem)
1870 -- NOTE: this flag is shared between the legacy ABE mechanism and the
1871 -- default ABE mechanism.
1873 -- Present in the following nodes:
1875 -- call marker
1876 -- formal package declaration
1877 -- function call
1878 -- function instantiation
1879 -- package instantiation
1880 -- procedure call statement
1881 -- procedure instantiation
1883 -- Set when the elaboration or evaluation of the scenario results in
1884 -- a guaranteed ABE. The flag is used to suppress the instantiation of
1885 -- generic bodies because gigi cannot handle certain forms of premature
1886 -- instantiation, as well as to prevent the reexamination of the node by
1887 -- the ABE Processing phase.
1889 -- Is_Machine_Number (Flag11-Sem)
1890 -- This flag is set in an N_Real_Literal node to indicate that the value
1891 -- is a machine number. This avoids some unnecessary cases of converting
1892 -- real literals to machine numbers.
1894 -- Is_Null_Loop (Flag16-Sem)
1895 -- This flag is set in an N_Loop_Statement node if the corresponding loop
1896 -- can be determined to be null at compile time. This is used to remove
1897 -- the loop entirely at expansion time.
1899 -- Is_Overloaded (Flag5-Sem)
1900 -- A flag present in all expression nodes. Used temporarily during
1901 -- overloading determination. The setting of this flag is not relevant
1902 -- once overloading analysis is complete.
1904 -- Is_Power_Of_2_For_Shift (Flag13-Sem)
1905 -- A flag present only in N_Op_Expon nodes. It is set when the
1906 -- exponentiation is of the form 2 ** N, where the type of N is an
1907 -- unsigned integral subtype whose size does not exceed the size of
1908 -- Standard_Integer (i.e. a type that can be safely converted to
1909 -- Natural), and the exponentiation appears as the right operand of an
1910 -- integer multiplication or an integer division where the dividend is
1911 -- unsigned. It is also required that overflow checking is off for both
1912 -- the exponentiation and the multiply/divide node. If this set of
1913 -- conditions holds, and the flag is set, then the division or
1914 -- multiplication can be (and is) converted to a shift.
1916 -- Is_Prefixed_Call (Flag17-Sem)
1917 -- This flag is set in a selected component within a generic unit, if
1918 -- it resolves to a prefixed call to a primitive operation. The flag
1919 -- is used to prevent accidental overloadings in an instance, when a
1920 -- primitive operation and a private record component may be homographs.
1922 -- Is_Protected_Subprogram_Body (Flag7-Sem)
1923 -- A flag set in a Subprogram_Body block to indicate that it is the
1924 -- implementation of a protected subprogram. Such a body needs cleanup
1925 -- handler to make sure that the associated protected object is unlocked
1926 -- when the subprogram completes.
1928 -- Is_Qualified_Universal_Literal (Flag4-Sem)
1929 -- Present in N_Qualified_Expression nodes. Set when the qualification is
1930 -- converting a universal literal to a specific type. Such qualifiers aid
1931 -- the resolution of accidental overloading of binary or unary operators
1932 -- which may occur in instances.
1934 -- Is_Read (Flag1-Sem)
1935 -- Present in variable reference markers. Set when the original variable
1936 -- reference constitues a read of the variable.
1938 -- Is_Source_Call (Flag4-Sem)
1939 -- Present in call marker nodes. Set when the related call came from
1940 -- source.
1942 -- Is_SPARK_Mode_On_Node (Flag2-Sem)
1943 -- Present in nodes which represent an elaboration scenario. Those are
1944 -- assignment statement, attribute reference, call marker, entry call
1945 -- statement, expanded name, function call, identifier, instantiation,
1946 -- procedure call statement, and requeue statement nodes. Set when the
1947 -- node appears within a context subject to SPARK_Mode On. This flag
1948 -- determines when the SPARK model of elaboration be activated by the
1949 -- ABE Processing phase.
1951 -- Is_Static_Coextension (Flag14-Sem)
1952 -- Present in N_Allocator nodes. Set if the allocator is a coextension
1953 -- of an object allocated on the stack rather than the heap. The partner
1954 -- flag Is_Dynamic_Coextension must be cleared before setting this flag
1955 -- to True.
1957 -- Is_Static_Expression (Flag6-Sem)
1958 -- Indicates that an expression is a static expression according to the
1959 -- rules in (RM 4.9). Note that it is possible for this flag to be set
1960 -- when Raises_Constraint_Error is also set. In practice almost all cases
1961 -- where a static expression is required do not allow an expression which
1962 -- raises Constraint_Error, so almost always, callers should call the
1963 -- Is_Ok_Static_Expression routine instead of testing this flag. See
1964 -- spec of package Sem_Eval for full details on the use of this flag.
1966 -- Is_Subprogram_Descriptor (Flag16-Sem)
1967 -- Present in N_Object_Declaration, and set only for the object
1968 -- declaration generated for a subprogram descriptor in fast exception
1969 -- mode. See Exp_Ch11 for details of use.
1971 -- Is_Task_Allocation_Block (Flag6-Sem)
1972 -- A flag set in a Block_Statement node to indicate that it is the
1973 -- expansion of a task allocator, or the allocator of an object
1974 -- containing tasks. Such a block requires a cleanup handler to call
1975 -- Expunge_Unactivated_Tasks to complete any tasks that have been
1976 -- allocated but not activated when the allocator completes abnormally.
1978 -- Is_Task_Body_Procedure (Flag1-Sem)
1979 -- This flag is set on N_Subprogram_Declaration and N_Subprogram_Body
1980 -- nodes which emulate the body of a task unit.
1982 -- Is_Task_Master (Flag5-Sem)
1983 -- A flag set in a Subprogram_Body, Block_Statement, or Task_Body node to
1984 -- indicate that the construct is a task master (i.e. has declared tasks
1985 -- or declares an access to a task type).
1987 -- Is_Write (Flag2-Sem)
1988 -- Present in variable reference markers. Set when the original variable
1989 -- reference constitues a write of the variable.
1991 -- Itype (Node1-Sem)
1992 -- Used in N_Itype_Reference node to reference an itype for which it is
1993 -- important to ensure that it is defined. See description of this node
1994 -- for further details.
1996 -- Kill_Range_Check (Flag11-Sem)
1997 -- Used in an N_Unchecked_Type_Conversion node to indicate that the
1998 -- result should not be subjected to range checks. This is used for the
1999 -- implementation of Normalize_Scalars.
2001 -- Label_Construct (Node2-Sem)
2002 -- Used in an N_Implicit_Label_Declaration node. Refers to an N_Label,
2003 -- N_Block_Statement or N_Loop_Statement node to which the label
2004 -- declaration applies. This attribute is used both in the compiler and
2005 -- in the implementation of ASIS queries. The field is left empty for the
2006 -- special labels generated as part of expanding raise statements with a
2007 -- local exception handler.
2009 -- Library_Unit (Node4-Sem)
2010 -- In a stub node, Library_Unit points to the compilation unit node of
2011 -- the corresponding subunit.
2013 -- In a with clause node, Library_Unit points to the spec of the with'ed
2014 -- unit.
2016 -- In a compilation unit node, the usage depends on the unit type:
2018 -- For a library unit body, Library_Unit points to the compilation unit
2019 -- node of the corresponding spec, unless it's a subprogram body with
2020 -- Acts_As_Spec set, in which case it points to itself.
2022 -- For a spec, Library_Unit points to the compilation unit node of the
2023 -- corresponding body, if present. The body will be present if the spec
2024 -- is or contains generics that we needed to instantiate. Similarly, the
2025 -- body will be present if we needed it for inlining purposes. Thus, if
2026 -- we have a spec/body pair, both of which are present, they point to
2027 -- each other via Library_Unit.
2029 -- For a subunit, Library_Unit points to the compilation unit node of
2030 -- the parent body.
2031 -- ??? not (always) true, in (at least some, maybe all?) cases it points
2032 -- to the corresponding spec for the parent body.
2034 -- Note that this field is not used to hold the parent pointer for child
2035 -- unit (which might in any case need to use it for some other purpose as
2036 -- described above). Instead for a child unit, implicit with's are
2037 -- generated for all parents.
2039 -- Local_Raise_Statements (Elist1)
2040 -- This field is present in exception handler nodes. It is set to
2041 -- No_Elist in the normal case. If there is at least one raise statement
2042 -- which can potentially be handled as a local raise, then this field
2043 -- points to a list of raise nodes, which are calls to a routine to raise
2044 -- an exception. These are raise nodes which can be optimized into gotos
2045 -- if the handler turns out to meet the conditions which permit this
2046 -- transformation. Note that this does NOT include instances of the
2047 -- N_Raise_xxx_Error nodes since the transformation of these nodes is
2048 -- handled by the back end (using the N_Push/N_Pop mechanism).
2050 -- Loop_Actions (List2-Sem)
2051 -- A list present in Component_Association nodes in array aggregates.
2052 -- Used to collect actions that must be executed within the loop because
2053 -- they may need to be evaluated anew each time through.
2055 -- Limited_View_Installed (Flag18-Sem)
2056 -- Present in With_Clauses and in package specifications. If set on
2057 -- with_clause, it indicates that this clause has created the current
2058 -- limited view of the designated package. On a package specification, it
2059 -- indicates that the limited view has already been created because the
2060 -- package is mentioned in a limited_with_clause in the closure of the
2061 -- unit being compiled.
2063 -- Local_Raise_Not_OK (Flag7-Sem)
2064 -- Present in N_Exception_Handler nodes. Set if the handler contains
2065 -- a construct (reraise statement, or call to subprogram in package
2066 -- GNAT.Current_Exception) that makes the handler unsuitable as a target
2067 -- for a local raise (one that could otherwise be converted to a goto).
2069 -- Must_Be_Byte_Aligned (Flag14-Sem)
2070 -- This flag is present in N_Attribute_Reference nodes. It can be set
2071 -- only for the Address and Unrestricted_Access attributes. If set it
2072 -- means that the object for which the address/access is given must be on
2073 -- a byte (more accurately a storage unit) boundary. If necessary, a copy
2074 -- of the object is to be made before taking the address (this copy is in
2075 -- the current scope on the stack frame). This is used for certain cases
2076 -- of code generated by the expander that passes parameters by address.
2078 -- The reason the copy is not made by the front end is that the back end
2079 -- has more information about type layout and may be able to (but is not
2080 -- guaranteed to) prevent making unnecessary copies.
2082 -- Must_Not_Freeze (Flag8-Sem)
2083 -- A flag present in all expression nodes. Normally expressions cause
2084 -- freezing as described in the RM. If this flag is set, then this is
2085 -- inhibited. This is used by the analyzer and expander to label nodes
2086 -- that are created by semantic analysis or expansion and which must not
2087 -- cause freezing even though they normally would. This flag is also
2088 -- present in an N_Subtype_Indication node, since we also use these in
2089 -- calls to Freeze_Expression.
2091 -- Next_Entity (Node2-Sem)
2092 -- Present in defining identifiers, defining character literals, and
2093 -- defining operator symbols (i.e. in all entities). The entities of a
2094 -- scope are chained, and this field is used as the forward pointer for
2095 -- this list. See Einfo for further details.
2097 -- Next_Exit_Statement (Node3-Sem)
2098 -- Present in N_Exit_Statement nodes. The exit statements for a loop are
2099 -- chained (in reverse order of appearance) from the First_Exit_Statement
2100 -- field of the E_Loop entity for the loop. Next_Exit_Statement points to
2101 -- the next entry on this chain (Empty = end of list).
2103 -- Next_Implicit_With (Node3-Sem)
2104 -- Present in N_With_Clause. Part of a chain of with_clauses generated
2105 -- in rtsfind to indicate implicit dependencies on predefined units. Used
2106 -- to prevent multiple with_clauses for the same unit in a given context.
2107 -- A postorder traversal of the tree whose nodes are units and whose
2108 -- links are with_clauses defines the order in which CodePeer must
2109 -- examine a compiled unit and its full context. This ordering ensures
2110 -- that any subprogram call is examined after the subprogram declaration
2111 -- has been seen.
2113 -- Next_Named_Actual (Node4-Sem)
2114 -- Present in parameter association nodes. Set during semantic analysis
2115 -- to point to the next named parameter, where parameters are ordered by
2116 -- declaration order (as opposed to the actual order in the call, which
2117 -- may be different due to named associations). Not that this field
2118 -- points to the explicit actual parameter itself, not to the
2119 -- N_Parameter_Association node (its parent).
2121 -- Next_Pragma (Node1-Sem)
2122 -- Present in N_Pragma nodes. Used to create a linked list of pragma
2123 -- nodes. Currently used for two purposes:
2125 -- Create a list of linked Check_Policy pragmas. The head of this list
2126 -- is stored in Opt.Check_Policy_List (which has further details).
2128 -- Used by processing for Pre/Postcondition pragmas to store a list of
2129 -- pragmas associated with the spec of a subprogram (see Sem_Prag for
2130 -- details).
2132 -- Used by processing for pragma SPARK_Mode to store multiple pragmas
2133 -- the apply to the same construct. These are visible/private mode for
2134 -- a package spec and declarative/statement mode for package body.
2136 -- Next_Rep_Item (Node5-Sem)
2137 -- Present in pragma nodes, attribute definition nodes, enumeration rep
2138 -- clauses, record rep clauses, aspect specification nodes. Used to link
2139 -- representation items that apply to an entity. See full description of
2140 -- First_Rep_Item field in Einfo for further details.
2142 -- Next_Use_Clause (Node3-Sem)
2143 -- While use clauses are active during semantic processing, they are
2144 -- chained from the scope stack entry, using Next_Use_Clause as a link
2145 -- pointer, with Empty marking the end of the list. The head pointer is
2146 -- in the scope stack entry (First_Use_Clause). At the end of semantic
2147 -- processing (i.e. when Gigi sees the tree, the contents of this field
2148 -- is undefined and should not be read).
2150 -- No_Ctrl_Actions (Flag7-Sem)
2151 -- Present in N_Assignment_Statement to indicate that no Finalize nor
2152 -- Adjust should take place on this assignment even though the RHS is
2153 -- controlled. Also indicates that the primitive _assign should not be
2154 -- used for a tagged assignment. This is used in init procs and aggregate
2155 -- expansions where the generated assignments are initializations, not
2156 -- real assignments.
2158 -- No_Elaboration_Check (Flag4-Sem)
2159 -- NOTE: this flag is relevant only for the legacy ABE mechanism and
2160 -- should not be used outside of that context.
2162 -- Present in N_Function_Call and N_Procedure_Call_Statement. Indicates
2163 -- that no elaboration check is needed on the call, because it appears in
2164 -- the context of a local Suppress pragma. This is used on calls within
2165 -- task bodies, where the actual elaboration checks are applied after
2166 -- analysis, when the local scope stack is not present
2168 -- No_Entities_Ref_In_Spec (Flag8-Sem)
2169 -- Present in N_With_Clause nodes. Set if the with clause is on the
2170 -- package or subprogram spec where the main unit is the corresponding
2171 -- body, and no entities of the with'ed unit are referenced by the spec
2172 -- (an entity may still be referenced in the body, so this flag is used
2173 -- to generate the proper message (see Sem_Util.Check_Unused_Withs for
2174 -- full details).
2176 -- No_Initialization (Flag13-Sem)
2177 -- Present in N_Object_Declaration and N_Allocator to indicate that the
2178 -- object must not be initialized (by Initialize or call to an init
2179 -- proc). This is needed for controlled aggregates. When the Object
2180 -- declaration has an expression, this flag means that this expression
2181 -- should not be taken into account (needed for in place initialization
2182 -- with aggregates, and for object with an address clause, which are
2183 -- initialized with an assignment at freeze time).
2185 -- No_Minimize_Eliminate (Flag17-Sem)
2186 -- This flag is present in membership operator nodes (N_In/N_Not_In).
2187 -- It is used to indicate that processing for extended overflow checking
2188 -- modes is not required (this is used to prevent infinite recursion).
2190 -- No_Side_Effect_Removal (Flag17-Sem)
2191 -- Present in N_Function_Call nodes. Set when a function call does not
2192 -- require side effect removal. This attribute suppresses the generation
2193 -- of a temporary to capture the result of the function which eventually
2194 -- replaces the function call.
2196 -- No_Truncation (Flag17-Sem)
2197 -- Present in N_Unchecked_Type_Conversion node. This flag has an effect
2198 -- only if the RM_Size of the source is greater than the RM_Size of the
2199 -- target for scalar operands. Normally in such a case we truncate some
2200 -- higher order bits of the source, and then sign/zero extend the result
2201 -- to form the output value. But if this flag is set, then we do not do
2202 -- any truncation, so for example, if an 8 bit input is converted to 5
2203 -- bit result which is in fact stored in 8 bits, then the high order
2204 -- three bits of the target result will be copied from the source. This
2205 -- is used for properly setting out of range values for use by pragmas
2206 -- Initialize_Scalars and Normalize_Scalars.
2208 -- Null_Excluding_Subtype (Flag16)
2209 -- Present in N_Access_To_Object_Definition. Indicates that the subtype
2210 -- indication carries a null-exclusion indicator, which is distinct from
2211 -- the null-exclusion indicator that may precede the access keyword.
2213 -- Original_Discriminant (Node2-Sem)
2214 -- Present in identifiers. Used in references to discriminants that
2215 -- appear in generic units. Because the names of the discriminants may be
2216 -- different in an instance, we use this field to recover the position of
2217 -- the discriminant in the original type, and replace it with the
2218 -- discriminant at the same position in the instantiated type.
2220 -- Original_Entity (Node2-Sem)
2221 -- Present in numeric literals. Used to denote the named number that has
2222 -- been constant-folded into the given literal. If literal is from
2223 -- source, or the result of some other constant-folding operation, then
2224 -- Original_Entity is empty. This field is needed to handle properly
2225 -- named numbers in generic units, where the Associated_Node field
2226 -- interferes with the Entity field, making it impossible to preserve the
2227 -- original entity at the point of instantiation (ASIS problem).
2229 -- Others_Discrete_Choices (List1-Sem)
2230 -- When a case statement or variant is analyzed, the semantic checks
2231 -- determine the actual list of choices that correspond to an others
2232 -- choice. This list is materialized for later use by the expander and
2233 -- the Others_Discrete_Choices field of an N_Others_Choice node points to
2234 -- this materialized list of choices, which is in standard format for a
2235 -- list of discrete choices, except that of course it cannot contain an
2236 -- N_Others_Choice entry.
2238 -- Parent_Spec (Node4-Sem)
2239 -- For a library unit that is a child unit spec (package or subprogram
2240 -- declaration, generic declaration or instantiation, or library level
2241 -- rename) this field points to the compilation unit node for the parent
2242 -- package specification. This field is Empty for library bodies (the
2243 -- parent spec in this case can be found from the corresponding spec).
2245 -- Parent_With (Flag1-Sem)
2246 -- Present in N_With_Clause nodes. The flag indicates that the clause
2247 -- was generated for an ancestor unit to provide proper visibility. A
2248 -- with clause for child unit A.B.C produces two implicit parent with
2249 -- clauses for A and A.B.
2251 -- Premature_Use (Node5-Sem)
2252 -- Present in N_Incomplete_Type_Declaration node. Used for improved
2253 -- error diagnostics: if there is a premature usage of an incomplete
2254 -- type, a subsequently generated error message indicates the position
2255 -- of its full declaration.
2257 -- Present_Expr (Uint3-Sem)
2258 -- Present in an N_Variant node. This has a meaningful value only after
2259 -- Gigi has back annotated the tree with representation information. At
2260 -- this point, it contains a reference to a gcc expression that depends
2261 -- on the values of one or more discriminants. Give a set of discriminant
2262 -- values, this expression evaluates to False (zero) if variant is not
2263 -- present, and True (non-zero) if it is present. See unit Repinfo for
2264 -- further details on gigi back annotation. This field is used during
2265 -- ASIS processing (data decomposition annex) to determine if a field is
2266 -- present or not.
2268 -- Prev_Use_Clause (Node1-Sem)
2269 -- Present in both N_Use_Package_Clause and N_Use_Type_Clause. Used in
2270 -- detection of ineffective use clauses by allowing a chain of related
2271 -- clauses together to avoid traversing the current scope stack.
2273 -- Print_In_Hex (Flag13-Sem)
2274 -- Set on an N_Integer_Literal node to indicate that the value should be
2275 -- printed in hexadecimal in the sprint listing. Has no effect on
2276 -- legality or semantics of program, only on the displayed output. This
2277 -- is used to clarify output from the packed array cases.
2279 -- Procedure_To_Call (Node2-Sem)
2280 -- Present in N_Allocator, N_Free_Statement, N_Simple_Return_Statement,
2281 -- and N_Extended_Return_Statement nodes. References the entity for the
2282 -- declaration of the procedure to be called to accomplish the required
2283 -- operation (i.e. for the Allocate procedure in the case of N_Allocator
2284 -- and N_Simple_Return_Statement and N_Extended_Return_Statement (for
2285 -- allocating the return value), and for the Deallocate procedure in the
2286 -- case of N_Free_Statement.
2288 -- Raises_Constraint_Error (Flag7-Sem)
2289 -- Set on an expression whose evaluation will definitely fail constraint
2290 -- error check. In the case of static expressions, this flag must be set
2291 -- accurately (and if it is set, the expression is typically illegal
2292 -- unless it appears as a non-elaborated branch of a short-circuit form).
2293 -- For a non-static expression, this flag may be set whenever an
2294 -- expression (e.g. an aggregate) is known to raise constraint error. If
2295 -- set, the expression definitely will raise CE if elaborated at runtime.
2296 -- If not set, the expression may or may not raise CE. In other words, on
2297 -- static expressions, the flag is set accurately, on non-static
2298 -- expressions it is set conservatively.
2300 -- Redundant_Use (Flag13-Sem)
2301 -- Present in nodes that can appear as an operand in a use clause or use
2302 -- type clause (identifiers, expanded names, attribute references). Set
2303 -- to indicate that a use is redundant (and therefore need not be undone
2304 -- on scope exit).
2306 -- Renaming_Exception (Node2-Sem)
2307 -- Present in N_Exception_Declaration node. Used to point back to the
2308 -- exception renaming for an exception declared within a subprogram.
2309 -- What happens is that an exception declared in a subprogram is moved
2310 -- to the library level with a unique name, and the original exception
2311 -- becomes a renaming. This link from the library level exception to the
2312 -- renaming declaration allows registering of the proper exception name.
2314 -- Return_Statement_Entity (Node5-Sem)
2315 -- Present in N_Simple_Return_Statement and N_Extended_Return_Statement.
2316 -- Points to an E_Return_Statement representing the return statement.
2318 -- Return_Object_Declarations (List3)
2319 -- Present in N_Extended_Return_Statement. Points to a list initially
2320 -- containing a single N_Object_Declaration representing the return
2321 -- object. We use a list (instead of just a pointer to the object decl)
2322 -- because Analyze wants to insert extra actions on this list.
2324 -- Rounded_Result (Flag18-Sem)
2325 -- Present in N_Type_Conversion, N_Op_Divide, and N_Op_Multiply nodes.
2326 -- Used in the fixed-point cases to indicate that the result must be
2327 -- rounded as a result of the use of the 'Round attribute. Also used for
2328 -- integer N_Op_Divide nodes to indicate that the result should be
2329 -- rounded to the nearest integer (breaking ties away from zero), rather
2330 -- than truncated towards zero as usual. These rounded integer operations
2331 -- are the result of expansion of rounded fixed-point divide, conversion
2332 -- and multiplication operations.
2334 -- SCIL_Entity (Node4-Sem)
2335 -- Present in SCIL nodes. References the specific tagged type associated
2336 -- with the SCIL node (for an N_SCIL_Dispatching_Call node, this is
2337 -- the controlling type of the call; for an N_SCIL_Membership_Test node
2338 -- generated as part of testing membership in T'Class, this is T; for an
2339 -- N_SCIL_Dispatch_Table_Tag_Init node, this is the type being declared).
2341 -- SCIL_Controlling_Tag (Node5-Sem)
2342 -- Present in N_SCIL_Dispatching_Call nodes. References the controlling
2343 -- tag of a dispatching call. This is usually an N_Selected_Component
2344 -- node (for a _tag component), but may be an N_Object_Declaration or
2345 -- N_Parameter_Specification node in some cases (e.g., for a call to
2346 -- a classwide streaming operation or a call to an instance of
2347 -- Ada.Tags.Generic_Dispatching_Constructor).
2349 -- SCIL_Tag_Value (Node5-Sem)
2350 -- Present in N_SCIL_Membership_Test nodes. Used to reference the tag
2351 -- of the value that is being tested.
2353 -- SCIL_Target_Prim (Node2-Sem)
2354 -- Present in N_SCIL_Dispatching_Call nodes. References the primitive
2355 -- operation named (statically) in a dispatching call.
2357 -- Scope (Node3-Sem)
2358 -- Present in defining identifiers, defining character literals, and
2359 -- defining operator symbols (i.e. in all entities). The entities of a
2360 -- scope all use this field to reference the corresponding scope entity.
2361 -- See Einfo for further details.
2363 -- Shift_Count_OK (Flag4-Sem)
2364 -- A flag present in shift nodes to indicate that the shift count is
2365 -- known to be in range, i.e. is in the range from zero to word length
2366 -- minus one. If this flag is not set, then the shift count may be
2367 -- outside this range, i.e. larger than the word length, and the code
2368 -- must ensure that such shift counts give the appropriate result.
2370 -- Source_Type (Node1-Sem)
2371 -- Used in an N_Validate_Unchecked_Conversion node to point to the
2372 -- source type entity for the unchecked conversion instantiation
2373 -- which gigi must do size validation for.
2375 -- Split_PPC (Flag17)
2376 -- When a Pre or Post aspect specification is processed, it is broken
2377 -- into AND THEN sections. The leftmost section has Split_PPC set to
2378 -- False, indicating that it is the original specification (e.g. for
2379 -- posting errors). For other sections, Split_PPC is set to True.
2380 -- This flag is set in both the N_Aspect_Specification node itself,
2381 -- and in the pragma which is generated from this node.
2383 -- Storage_Pool (Node1-Sem)
2384 -- Present in N_Allocator, N_Free_Statement, N_Simple_Return_Statement,
2385 -- and N_Extended_Return_Statement nodes. References the entity for the
2386 -- storage pool to be used for the allocate or free call or for the
2387 -- allocation of the returned value from function. Empty indicates that
2388 -- the global default pool is to be used. Note that in the case
2389 -- of a return statement, this field is set only if the function returns
2390 -- value of a type whose size is not known at compile time on the
2391 -- secondary stack.
2393 -- Suppress_Assignment_Checks (Flag18-Sem)
2394 -- Used in generated N_Assignment_Statement nodes to suppress predicate
2395 -- and range checks in cases where the generated code knows that the
2396 -- value being assigned is in range and satisfies any predicate. Also
2397 -- can be set in N_Object_Declaration nodes, to similarly suppress any
2398 -- checks on the initializing value. In assignment statements it also
2399 -- suppresses access checks in the generated code for out- and in-out
2400 -- parameters in entry calls.
2402 -- Suppress_Loop_Warnings (Flag17-Sem)
2403 -- Used in N_Loop_Statement node to indicate that warnings within the
2404 -- body of the loop should be suppressed. This is set when the range
2405 -- of a FOR loop is known to be null, or is probably null (loop would
2406 -- only execute if invalid values are present).
2408 -- Target (Node1-Sem)
2409 -- Present in call and variable reference marker nodes. References the
2410 -- entity of the original entity, operator, or subprogram being invoked,
2411 -- or the original variable being read or written.
2413 -- Target_Type (Node2-Sem)
2414 -- Used in an N_Validate_Unchecked_Conversion node to point to the target
2415 -- type entity for the unchecked conversion instantiation which gigi must
2416 -- do size validation for.
2418 -- Then_Actions (List3-Sem)
2419 -- This field is present in if expression nodes. During code expansion
2420 -- we use the Insert_Actions procedure (in Exp_Util) to insert actions
2421 -- at an appropriate place in the tree to get elaborated at the right
2422 -- time. For if expressions, we have to be sure that the actions for
2423 -- for the Then branch are only elaborated if the condition is True.
2424 -- The Then_Actions field is used as a temporary parking place for
2425 -- these actions. The final tree is always rewritten to eliminate the
2426 -- need for this field, so in the tree passed to Gigi, this field is
2427 -- always set to No_List.
2429 -- Treat_Fixed_As_Integer (Flag14-Sem)
2430 -- This flag appears in operator nodes for divide, multiply, mod, and rem
2431 -- on fixed-point operands. It indicates that the operands are to be
2432 -- treated as integer values, ignoring small values. This flag is only
2433 -- set as a result of expansion of fixed-point operations. Typically a
2434 -- fixed-point multiplication in the source generates subsidiary
2435 -- multiplication and division operations that work with the underlying
2436 -- integer values and have this flag set. Note that this flag is not
2437 -- needed on other arithmetic operations (add, neg, subtract etc.) since
2438 -- in these cases it is always the case that fixed is treated as integer.
2439 -- The Etype field MUST be set if this flag is set. The analyzer knows to
2440 -- leave such nodes alone, and whoever makes them must set the correct
2441 -- Etype value.
2443 -- TSS_Elist (Elist3-Sem)
2444 -- Present in N_Freeze_Entity nodes. Holds an element list containing
2445 -- entries for each TSS (type support subprogram) associated with the
2446 -- frozen type. The elements of the list are the entities for the
2447 -- subprograms (see package Exp_TSS for further details). Set to No_Elist
2448 -- if there are no type support subprograms for the type or if the freeze
2449 -- node is not for a type.
2451 -- Uneval_Old_Accept (Flag7-Sem)
2452 -- Present in N_Pragma nodes. Set True if Opt.Uneval_Old is set to 'A'
2453 -- (accept) at the point where the pragma is encountered (including the
2454 -- case of a pragma generated from an aspect specification). It is this
2455 -- setting that is relevant, rather than the setting at the point where
2456 -- a contract is finally analyzed after the delay till the freeze point.
2458 -- Uneval_Old_Warn (Flag18-Sem)
2459 -- Present in N_Pragma nodes. Set True if Opt.Uneval_Old is set to 'W'
2460 -- (warn) at the point where the pragma is encountered (including the
2461 -- case of a pragma generated from an aspect specification). It is this
2462 -- setting that is relevant, rather than the setting at the point where
2463 -- a contract is finally analyzed after the delay till the freeze point.
2465 -- Unreferenced_In_Spec (Flag7-Sem)
2466 -- Present in N_With_Clause nodes. Set if the with clause is on the
2467 -- package or subprogram spec where the main unit is the corresponding
2468 -- body, and is not referenced by the spec (it may still be referenced by
2469 -- the body, so this flag is used to generate the proper message (see
2470 -- Sem_Util.Check_Unused_Withs for details)
2472 -- Uninitialized_Variable (Node3-Sem)
2473 -- Present in N_Formal_Private_Type_Definition and in N_Private_
2474 -- Extension_Declarations. Indicates that a variable in a generic unit
2475 -- whose type is a formal private or derived type is read without being
2476 -- initialized. Used to warn if the corresponding actual type is not
2477 -- a fully initialized type.
2479 -- Used_Operations (Elist2-Sem)
2480 -- Present in N_Use_Type_Clause nodes. Holds the list of operations that
2481 -- are made potentially use-visible by the clause. Simplifies processing
2482 -- on exit from the scope of the use_type_clause, in particular in the
2483 -- case of Use_All_Type, when those operations several scopes.
2485 -- Was_Attribute_Reference (Flag2-Sem)
2486 -- Present in N_Subprogram_Body. Set to True if the original source is an
2487 -- attribute reference which is an actual in a generic instantiation. The
2488 -- instantiation prologue renames these attributes, and expansion later
2489 -- converts them into subprogram bodies.
2491 -- Was_Expression_Function (Flag18-Sem)
2492 -- Present in N_Subprogram_Body. True if the original source had an
2493 -- N_Expression_Function, which was converted to the N_Subprogram_Body
2494 -- by Analyze_Expression_Function. This is needed by ASIS to correctly
2495 -- recreate the expression function (for the instance body) when the
2496 -- completion of a generic function declaration is an expression
2497 -- function.
2499 -- Was_Originally_Stub (Flag13-Sem)
2500 -- This flag is set in the node for a proper body that replaces stub.
2501 -- During the analysis procedure, stubs in some situations get rewritten
2502 -- by the corresponding bodies, and we set this flag to remember that
2503 -- this happened. Note that it is not good enough to rely on the use of
2504 -- Original_Node here because of the case of nested instantiations where
2505 -- the substituted node can be copied.
2507 -- Withed_Body (Node1-Sem)
2508 -- Present in N_With_Clause nodes. Set if the unit in whose context
2509 -- the with_clause appears instantiates a generic contained in the
2510 -- library unit of the with_clause and as a result loads its body.
2511 -- Used for a more precise unit traversal for CodePeer.
2513 --------------------------------------------------
2514 -- Note on Use of End_Label and End_Span Fields --
2515 --------------------------------------------------
2517 -- Several constructs have end lines:
2519 -- Loop Statement end loop [loop_IDENTIFIER];
2520 -- Package Specification end [[PARENT_UNIT_NAME .] IDENTIFIER]
2521 -- Task Definition end [task_IDENTIFIER]
2522 -- Protected Definition end [protected_IDENTIFIER]
2523 -- Protected Body end [protected_IDENTIFIER]
2525 -- Block Statement end [block_IDENTIFIER];
2526 -- Subprogram Body end [DESIGNATOR];
2527 -- Package Body end [[PARENT_UNIT_NAME .] IDENTIFIER];
2528 -- Task Body end [task_IDENTIFIER];
2529 -- Accept Statement end [entry_IDENTIFIER]];
2530 -- Entry Body end [entry_IDENTIFIER];
2532 -- If Statement end if;
2533 -- Case Statement end case;
2535 -- Record Definition end record;
2536 -- Enumeration Definition );
2538 -- The End_Label and End_Span fields are used to mark the locations of
2539 -- these lines, and also keep track of the label in the case where a label
2540 -- is present.
2542 -- For the first group above, the End_Label field of the corresponding node
2543 -- is used to point to the label identifier. In the case where there is no
2544 -- label in the source, the parser supplies a dummy identifier (with
2545 -- Comes_From_Source set to False), and the Sloc of this dummy identifier
2546 -- marks the location of the token following the END token.
2548 -- For the second group, the use of End_Label is similar, but the End_Label
2549 -- is found in the N_Handled_Sequence_Of_Statements node. This is done
2550 -- simply because in some cases there is no room in the parent node.
2552 -- For the third group, there is never any label, and instead of using
2553 -- End_Label, we use the End_Span field which gives the location of the
2554 -- token following END, relative to the starting Sloc of the construct,
2555 -- i.e. add Sloc (Node) + End_Span (Node) to get the Sloc of the IF or CASE
2556 -- following the End_Label.
2558 -- The record definition case is handled specially, we treat it as though
2559 -- it required an optional label which is never present, and so the parser
2560 -- always builds a dummy identifier with Comes From Source set False. The
2561 -- reason we do this, rather than using End_Span in this case, is that we
2562 -- want to generate a cross-ref entry for the end of a record, since it
2563 -- represents a scope for name declaration purposes.
2565 -- The enumeration definition case is handled in an exactly similar manner,
2566 -- building a dummy identifier to get a cross-reference.
2568 -- Note: the reason we store the difference as a Uint, instead of storing
2569 -- the Source_Ptr value directly, is that Source_Ptr values cannot be
2570 -- distinguished from other types of values, and we count on all general
2571 -- use fields being self describing. To make things easier for clients,
2572 -- note that we provide function End_Location, and procedure
2573 -- Set_End_Location to allow access to the logical value (which is the
2574 -- Source_Ptr value for the end token).
2576 ---------------------
2577 -- Syntactic Nodes --
2578 ---------------------
2580 ---------------------
2581 -- 2.3 Identifier --
2582 ---------------------
2584 -- IDENTIFIER ::= IDENTIFIER_LETTER {[UNDERLINE] LETTER_OR_DIGIT}
2585 -- LETTER_OR_DIGIT ::= IDENTIFIER_LETTER | DIGIT
2587 -- An IDENTIFIER shall not be a reserved word
2589 -- In the Ada grammar identifiers are the bottom level tokens which have
2590 -- very few semantics. Actual program identifiers are direct names. If
2591 -- we were being 100% honest with the grammar, then we would have a node
2592 -- called N_Direct_Name which would point to an identifier. However,
2593 -- that's too many extra nodes, so we just use the N_Identifier node
2594 -- directly as a direct name, and it contains the expression fields and
2595 -- Entity field that correspond to its use as a direct name. In those
2596 -- few cases where identifiers appear in contexts where they are not
2597 -- direct names (pragmas, pragma argument associations, attribute
2598 -- references and attribute definition clauses), the Chars field of the
2599 -- node contains the Name_Id for the identifier name.
2601 -- Note: in GNAT, a reserved word can be treated as an identifier in two
2602 -- cases. First, an incorrect use of a reserved word as an identifier is
2603 -- diagnosed and then treated as a normal identifier. Second, an
2604 -- attribute designator of the form of a reserved word (access, delta,
2605 -- digits, range) is treated as an identifier.
2607 -- Note: The set of letters that is permitted in an identifier depends
2608 -- on the character set in use. See package Csets for full details.
2610 -- N_Identifier
2611 -- Sloc points to identifier
2612 -- Chars (Name1) contains the Name_Id for the identifier
2613 -- Entity (Node4-Sem)
2614 -- Associated_Node (Node4-Sem)
2615 -- Original_Discriminant (Node2-Sem)
2616 -- Is_Elaboration_Checks_OK_Node (Flag1-Sem)
2617 -- Is_SPARK_Mode_On_Node (Flag2-Sem)
2618 -- Has_Private_View (Flag11-Sem) (set in generic units)
2619 -- Redundant_Use (Flag13-Sem)
2620 -- Atomic_Sync_Required (Flag14-Sem)
2621 -- plus fields for expression
2623 --------------------------
2624 -- 2.4 Numeric Literal --
2625 --------------------------
2627 -- NUMERIC_LITERAL ::= DECIMAL_LITERAL | BASED_LITERAL
2629 ----------------------------
2630 -- 2.4.1 Decimal Literal --
2631 ----------------------------
2633 -- DECIMAL_LITERAL ::= NUMERAL [.NUMERAL] [EXPONENT]
2635 -- NUMERAL ::= DIGIT {[UNDERLINE] DIGIT}
2637 -- EXPONENT ::= E [+] NUMERAL | E - NUMERAL
2639 -- Decimal literals appear in the tree as either integer literal nodes
2640 -- or real literal nodes, depending on whether a period is present.
2642 -- Note: literal nodes appear as a result of direct use of literals
2643 -- in the source program, and also as the result of evaluating
2644 -- expressions at compile time. In the latter case, it is possible
2645 -- to construct real literals that have no syntactic representation
2646 -- using the standard literal format. Such literals are listed by
2647 -- Sprint using the notation [numerator / denominator].
2649 -- Note: the value of an integer literal node created by the front end
2650 -- is never outside the range of values of the base type. However, it
2651 -- can be the case that the created value is outside the range of the
2652 -- particular subtype. This happens in the case of integer overflows
2653 -- with checks suppressed.
2655 -- N_Integer_Literal
2656 -- Sloc points to literal
2657 -- Original_Entity (Node2-Sem) If not Empty, holds Named_Number that
2658 -- has been constant-folded into its literal value.
2659 -- Intval (Uint3) contains integer value of literal
2660 -- Print_In_Hex (Flag13-Sem)
2661 -- plus fields for expression
2663 -- N_Real_Literal
2664 -- Sloc points to literal
2665 -- Original_Entity (Node2-Sem) If not Empty, holds Named_Number that
2666 -- has been constant-folded into its literal value.
2667 -- Realval (Ureal3) contains real value of literal
2668 -- Corresponding_Integer_Value (Uint4-Sem)
2669 -- Is_Machine_Number (Flag11-Sem)
2670 -- plus fields for expression
2672 --------------------------
2673 -- 2.4.2 Based Literal --
2674 --------------------------
2676 -- BASED_LITERAL ::=
2677 -- BASE # BASED_NUMERAL [.BASED_NUMERAL] # [EXPONENT]
2679 -- BASE ::= NUMERAL
2681 -- BASED_NUMERAL ::=
2682 -- EXTENDED_DIGIT {[UNDERLINE] EXTENDED_DIGIT}
2684 -- EXTENDED_DIGIT ::= DIGIT | A | B | C | D | E | F
2686 -- Based literals appear in the tree as either integer literal nodes
2687 -- or real literal nodes, depending on whether a period is present.
2689 ----------------------------
2690 -- 2.5 Character Literal --
2691 ----------------------------
2693 -- CHARACTER_LITERAL ::= ' GRAPHIC_CHARACTER '
2695 -- N_Character_Literal
2696 -- Sloc points to literal
2697 -- Chars (Name1) contains the Name_Id for the identifier
2698 -- Char_Literal_Value (Uint2) contains the literal value
2699 -- Entity (Node4-Sem)
2700 -- Associated_Node (Node4-Sem)
2701 -- Has_Private_View (Flag11-Sem) set in generic units.
2702 -- plus fields for expression
2704 -- Note: the Entity field will be missing (set to Empty) for character
2705 -- literals whose type is Standard.Wide_Character or Standard.Character
2706 -- or a type derived from one of these two. In this case the character
2707 -- literal stands for its own coding. The reason we take this irregular
2708 -- short cut is to avoid the need to build lots of junk defining
2709 -- character literal nodes.
2711 -------------------------
2712 -- 2.6 String Literal --
2713 -------------------------
2715 -- STRING LITERAL ::= "{STRING_ELEMENT}"
2717 -- A STRING_ELEMENT is either a pair of quotation marks ("), or a
2718 -- single GRAPHIC_CHARACTER other than a quotation mark.
2720 -- Is_Folded_In_Parser is True if the parser created this literal by
2721 -- folding a sequence of "&" operators. For example, if the source code
2722 -- says "aaa" & "bbb" & "ccc", and this produces "aaabbbccc", the flag
2723 -- is set. This flag is needed because the parser doesn't know about
2724 -- visibility, so the folded result might be wrong, and semantic
2725 -- analysis needs to check for that.
2727 -- N_String_Literal
2728 -- Sloc points to literal
2729 -- Strval (Str3) contains Id of string value
2730 -- Has_Wide_Character (Flag11-Sem)
2731 -- Has_Wide_Wide_Character (Flag13-Sem)
2732 -- Is_Folded_In_Parser (Flag4)
2733 -- plus fields for expression
2735 ------------------
2736 -- 2.7 Comment --
2737 ------------------
2739 -- A COMMENT starts with two adjacent hyphens and extends up to the
2740 -- end of the line. A COMMENT may appear on any line of a program.
2742 -- Comments are skipped by the scanner and do not appear in the tree.
2743 -- It is possible to reconstruct the position of comments with respect
2744 -- to the elements of the tree by using the source position (Sloc)
2745 -- pointers that appear in every tree node.
2747 -----------------
2748 -- 2.8 Pragma --
2749 -----------------
2751 -- PRAGMA ::= pragma IDENTIFIER
2752 -- [(PRAGMA_ARGUMENT_ASSOCIATION {, PRAGMA_ARGUMENT_ASSOCIATION})];
2754 -- Note that a pragma may appear in the tree anywhere a declaration
2755 -- or a statement may appear, as well as in some other situations
2756 -- which are explicitly documented.
2758 -- N_Pragma
2759 -- Sloc points to PRAGMA
2760 -- Next_Pragma (Node1-Sem)
2761 -- Pragma_Argument_Associations (List2) (set to No_List if none)
2762 -- Corresponding_Aspect (Node3-Sem) (set to Empty if not present)
2763 -- Pragma_Identifier (Node4)
2764 -- Next_Rep_Item (Node5-Sem)
2765 -- Is_Generic_Contract_Pragma (Flag2-Sem)
2766 -- Is_Checked_Ghost_Pragma (Flag3-Sem)
2767 -- Is_Inherited_Pragma (Flag4-Sem)
2768 -- Is_Analyzed_Pragma (Flag5-Sem)
2769 -- Class_Present (Flag6) set if from Aspect with 'Class
2770 -- Uneval_Old_Accept (Flag7-Sem)
2771 -- Is_Ignored_Ghost_Pragma (Flag8-Sem)
2772 -- Is_Ignored (Flag9-Sem)
2773 -- Is_Checked (Flag11-Sem)
2774 -- From_Aspect_Specification (Flag13-Sem)
2775 -- Is_Delayed_Aspect (Flag14-Sem)
2776 -- Is_Disabled (Flag15-Sem)
2777 -- Import_Interface_Present (Flag16-Sem)
2778 -- Split_PPC (Flag17) set if corresponding aspect had Split_PPC set
2779 -- Uneval_Old_Warn (Flag18-Sem)
2781 -- Note: we should have a section on what pragmas are passed on to
2782 -- the back end to be processed. This section should note that pragma
2783 -- Psect_Object is always converted to Common_Object, but there are
2784 -- undoubtedly many other similar notes required ???
2786 -- Note: utility functions Pragma_Name_Unmapped and Pragma_Name may be
2787 -- applied to pragma nodes to obtain the Chars or its mapped version.
2789 -- Note: if From_Aspect_Specification is set, then Sloc points to the
2790 -- aspect name, as does the Pragma_Identifier. In this case if the
2791 -- pragma has a local name argument (such as pragma Inline), it is
2792 -- resolved to point to the specific entity affected by the pragma.
2794 --------------------------------------
2795 -- 2.8 Pragma Argument Association --
2796 --------------------------------------
2798 -- PRAGMA_ARGUMENT_ASSOCIATION ::=
2799 -- [pragma_argument_IDENTIFIER =>] NAME
2800 -- | [pragma_argument_IDENTIFIER =>] EXPRESSION
2802 -- In Ada 2012, there are two more possibilities:
2804 -- PRAGMA_ARGUMENT_ASSOCIATION ::=
2805 -- [pragma_argument_ASPECT_MARK =>] NAME
2806 -- | [pragma_argument_ASPECT_MARK =>] EXPRESSION
2808 -- where the interesting allowed cases (which do not fit the syntax of
2809 -- the first alternative above) are
2811 -- ASPECT_MARK => Pre'Class |
2812 -- Post'Class |
2813 -- Type_Invariant'Class |
2814 -- Invariant'Class
2816 -- We allow this special usage in all Ada modes, but it would be a
2817 -- pain to allow these aspects to pervade the pragma syntax, and the
2818 -- representation of pragma nodes internally. So what we do is to
2819 -- replace these ASPECT_MARK forms with identifiers whose name is one
2820 -- of the special internal names _Pre, _Post, or _Type_Invariant.
2822 -- We do a similar replacement of these Aspect_Mark forms in the
2823 -- Expression of a pragma argument association for the cases of
2824 -- the first arguments of any Check pragmas and Check_Policy pragmas
2826 -- N_Pragma_Argument_Association
2827 -- Sloc points to first token in association
2828 -- Chars (Name1) (set to No_Name if no pragma argument identifier)
2829 -- Expression_Copy (Node2-Sem)
2830 -- Expression (Node3)
2832 ------------------------
2833 -- 2.9 Reserved Word --
2834 ------------------------
2836 -- Reserved words are parsed by the scanner, and returned as the
2837 -- corresponding token types (e.g. PACKAGE is returned as Tok_Package)
2839 ----------------------------
2840 -- 3.1 Basic Declaration --
2841 ----------------------------
2843 -- BASIC_DECLARATION ::=
2844 -- TYPE_DECLARATION | SUBTYPE_DECLARATION
2845 -- | OBJECT_DECLARATION | NUMBER_DECLARATION
2846 -- | SUBPROGRAM_DECLARATION | ABSTRACT_SUBPROGRAM_DECLARATION
2847 -- | PACKAGE_DECLARATION | RENAMING_DECLARATION
2848 -- | EXCEPTION_DECLARATION | GENERIC_DECLARATION
2849 -- | GENERIC_INSTANTIATION
2851 -- Basic declaration also includes IMPLICIT_LABEL_DECLARATION
2852 -- see further description in section on semantic nodes.
2854 -- Also, in the tree that is constructed, a pragma may appear
2855 -- anywhere that a declaration may appear.
2857 ------------------------------
2858 -- 3.1 Defining Identifier --
2859 ------------------------------
2861 -- DEFINING_IDENTIFIER ::= IDENTIFIER
2863 -- A defining identifier is an entity, which has additional fields
2864 -- depending on the setting of the Ekind field. These additional
2865 -- fields are defined (and access subprograms declared) in package
2866 -- Einfo.
2868 -- Note: N_Defining_Identifier is an extended node whose fields are
2869 -- deliberately layed out to match the layout of fields in an ordinary
2870 -- N_Identifier node allowing for easy alteration of an identifier
2871 -- node into a defining identifier node. For details, see procedure
2872 -- Sinfo.CN.Change_Identifier_To_Defining_Identifier.
2874 -- N_Defining_Identifier
2875 -- Sloc points to identifier
2876 -- Chars (Name1) contains the Name_Id for the identifier
2877 -- Next_Entity (Node2-Sem)
2878 -- Scope (Node3-Sem)
2879 -- Etype (Node5-Sem)
2881 -----------------------------
2882 -- 3.2.1 Type Declaration --
2883 -----------------------------
2885 -- TYPE_DECLARATION ::=
2886 -- FULL_TYPE_DECLARATION
2887 -- | INCOMPLETE_TYPE_DECLARATION
2888 -- | PRIVATE_TYPE_DECLARATION
2889 -- | PRIVATE_EXTENSION_DECLARATION
2891 ----------------------------------
2892 -- 3.2.1 Full Type Declaration --
2893 ----------------------------------
2895 -- FULL_TYPE_DECLARATION ::=
2896 -- type DEFINING_IDENTIFIER [KNOWN_DISCRIMINANT_PART]
2897 -- is TYPE_DEFINITION
2898 -- [ASPECT_SPECIFICATIONS];
2899 -- | TASK_TYPE_DECLARATION
2900 -- | PROTECTED_TYPE_DECLARATION
2902 -- The full type declaration node is used only for the first case. The
2903 -- second case (concurrent type declaration), is represented directly
2904 -- by a task type declaration or a protected type declaration.
2906 -- N_Full_Type_Declaration
2907 -- Sloc points to TYPE
2908 -- Defining_Identifier (Node1)
2909 -- Incomplete_View (Node2-Sem)
2910 -- Discriminant_Specifications (List4) (set to No_List if none)
2911 -- Type_Definition (Node3)
2912 -- Discr_Check_Funcs_Built (Flag11-Sem)
2914 ----------------------------
2915 -- 3.2.1 Type Definition --
2916 ----------------------------
2918 -- TYPE_DEFINITION ::=
2919 -- ENUMERATION_TYPE_DEFINITION | INTEGER_TYPE_DEFINITION
2920 -- | REAL_TYPE_DEFINITION | ARRAY_TYPE_DEFINITION
2921 -- | RECORD_TYPE_DEFINITION | ACCESS_TYPE_DEFINITION
2922 -- | DERIVED_TYPE_DEFINITION | INTERFACE_TYPE_DEFINITION
2924 --------------------------------
2925 -- 3.2.2 Subtype Declaration --
2926 --------------------------------
2928 -- SUBTYPE_DECLARATION ::=
2929 -- subtype DEFINING_IDENTIFIER is [NULL_EXCLUSION] SUBTYPE_INDICATION
2930 -- [ASPECT_SPECIFICATIONS];
2932 -- The subtype indication field is set to Empty for subtypes
2933 -- declared in package Standard (Positive, Natural).
2935 -- N_Subtype_Declaration
2936 -- Sloc points to SUBTYPE
2937 -- Defining_Identifier (Node1)
2938 -- Null_Exclusion_Present (Flag11)
2939 -- Subtype_Indication (Node5)
2940 -- Generic_Parent_Type (Node4-Sem) (set for an actual derived type).
2941 -- Exception_Junk (Flag8-Sem)
2942 -- Has_Dynamic_Range_Check (Flag12-Sem)
2944 -------------------------------
2945 -- 3.2.2 Subtype Indication --
2946 -------------------------------
2948 -- SUBTYPE_INDICATION ::= SUBTYPE_MARK [CONSTRAINT]
2950 -- Note: if no constraint is present, the subtype indication appears
2951 -- directly in the tree as a subtype mark. The N_Subtype_Indication
2952 -- node is used only if a constraint is present.
2954 -- Note: [For Ada 2005 (AI-231)]: Because Ada 2005 extends this rule
2955 -- with the null-exclusion part (see AI-231), we had to introduce a new
2956 -- attribute in all the parents of subtype_indication nodes to indicate
2957 -- if the null-exclusion is present.
2959 -- Note: the reason that this node has expression fields is that a
2960 -- subtype indication can appear as an operand of a membership test.
2962 -- N_Subtype_Indication
2963 -- Sloc points to first token of subtype mark
2964 -- Subtype_Mark (Node4)
2965 -- Constraint (Node3)
2966 -- Etype (Node5-Sem)
2967 -- Must_Not_Freeze (Flag8-Sem)
2969 -- Note: Depending on context, the Etype is either the entity of the
2970 -- Subtype_Mark field, or it is an itype constructed to reify the
2971 -- subtype indication. In particular, such itypes are created for a
2972 -- subtype indication that appears in an array type declaration. This
2973 -- simplifies constraint checking in indexed components.
2975 -- For subtype indications that appear in scalar type and subtype
2976 -- declarations, the Etype is the entity of the subtype mark.
2978 -------------------------
2979 -- 3.2.2 Subtype Mark --
2980 -------------------------
2982 -- SUBTYPE_MARK ::= subtype_NAME
2984 -----------------------
2985 -- 3.2.2 Constraint --
2986 -----------------------
2988 -- CONSTRAINT ::= SCALAR_CONSTRAINT | COMPOSITE_CONSTRAINT
2990 ------------------------------
2991 -- 3.2.2 Scalar Constraint --
2992 ------------------------------
2994 -- SCALAR_CONSTRAINT ::=
2995 -- RANGE_CONSTRAINT | DIGITS_CONSTRAINT | DELTA_CONSTRAINT
2997 ---------------------------------
2998 -- 3.2.2 Composite Constraint --
2999 ---------------------------------
3001 -- COMPOSITE_CONSTRAINT ::=
3002 -- INDEX_CONSTRAINT | DISCRIMINANT_CONSTRAINT
3004 -------------------------------
3005 -- 3.3.1 Object Declaration --
3006 -------------------------------
3008 -- OBJECT_DECLARATION ::=
3009 -- DEFINING_IDENTIFIER_LIST : [aliased] [constant]
3010 -- [NULL_EXCLUSION] SUBTYPE_INDICATION [:= EXPRESSION]
3011 -- [ASPECT_SPECIFICATIONS];
3012 -- | DEFINING_IDENTIFIER_LIST : [aliased] [constant]
3013 -- ACCESS_DEFINITION [:= EXPRESSION]
3014 -- [ASPECT_SPECIFICATIONS];
3015 -- | DEFINING_IDENTIFIER_LIST : [aliased] [constant]
3016 -- ARRAY_TYPE_DEFINITION [:= EXPRESSION]
3017 -- [ASPECT_SPECIFICATIONS];
3018 -- | SINGLE_TASK_DECLARATION
3019 -- | SINGLE_PROTECTED_DECLARATION
3021 -- Note: aliased is not permitted in Ada 83 mode
3023 -- The N_Object_Declaration node is only for the first three cases.
3024 -- Single task declaration is handled by P_Task (9.1)
3025 -- Single protected declaration is handled by P_protected (9.5)
3027 -- Although the syntax allows multiple identifiers in the list, the
3028 -- semantics is as though successive declarations were given with
3029 -- identical type definition and expression components. To simplify
3030 -- semantic processing, the parser represents a multiple declaration
3031 -- case as a sequence of single declarations, using the More_Ids and
3032 -- Prev_Ids flags to preserve the original source form as described
3033 -- in the section on "Handling of Defining Identifier Lists".
3035 -- The flag Has_Init_Expression is set if an initializing expression
3036 -- is present. Normally it is set if and only if Expression contains
3037 -- a non-empty value, but there is an exception to this. When the
3038 -- initializing expression is an aggregate which requires explicit
3039 -- assignments, the Expression field gets set to Empty, but this flag
3040 -- is still set, so we don't forget we had an initializing expression.
3042 -- Note: if a range check is required for the initialization
3043 -- expression then the Do_Range_Check flag is set in the Expression,
3044 -- with the check being done against the type given by the object
3045 -- definition, which is also the Etype of the defining identifier.
3047 -- Note: the contents of the Expression field must be ignored (i.e.
3048 -- treated as though it were Empty) if No_Initialization is set True.
3050 -- Note: the back end places some restrictions on the form of the
3051 -- Expression field. If the object being declared is Atomic, then
3052 -- the Expression may not have the form of an aggregate (since this
3053 -- might cause the back end to generate separate assignments). In this
3054 -- case the front end must generate an extra temporary and initialize
3055 -- this temporary as required (the temporary itself is not atomic).
3057 -- Note: there is no node kind for object definition. Instead, the
3058 -- corresponding field holds a subtype indication, an array type
3059 -- definition, or (Ada 2005, AI-406) an access definition.
3061 -- N_Object_Declaration
3062 -- Sloc points to first identifier
3063 -- Defining_Identifier (Node1)
3064 -- Aliased_Present (Flag4)
3065 -- Constant_Present (Flag17) set if CONSTANT appears
3066 -- Null_Exclusion_Present (Flag11)
3067 -- Object_Definition (Node4) subtype indic./array type def./access def.
3068 -- Expression (Node3) (set to Empty if not present)
3069 -- Handler_List_Entry (Node2-Sem)
3070 -- Corresponding_Generic_Association (Node5-Sem)
3071 -- More_Ids (Flag5) (set to False if no more identifiers in list)
3072 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
3073 -- No_Initialization (Flag13-Sem)
3074 -- Assignment_OK (Flag15-Sem)
3075 -- Exception_Junk (Flag8-Sem)
3076 -- Is_Subprogram_Descriptor (Flag16-Sem)
3077 -- Has_Init_Expression (Flag14)
3078 -- Suppress_Assignment_Checks (Flag18-Sem)
3080 -------------------------------------
3081 -- 3.3.1 Defining Identifier List --
3082 -------------------------------------
3084 -- DEFINING_IDENTIFIER_LIST ::=
3085 -- DEFINING_IDENTIFIER {, DEFINING_IDENTIFIER}
3087 -------------------------------
3088 -- 3.3.2 Number Declaration --
3089 -------------------------------
3091 -- NUMBER_DECLARATION ::=
3092 -- DEFINING_IDENTIFIER_LIST : constant := static_EXPRESSION;
3094 -- Although the syntax allows multiple identifiers in the list, the
3095 -- semantics is as though successive declarations were given with
3096 -- identical expressions. To simplify semantic processing, the parser
3097 -- represents a multiple declaration case as a sequence of single
3098 -- declarations, using the More_Ids and Prev_Ids flags to preserve
3099 -- the original source form as described in the section on "Handling
3100 -- of Defining Identifier Lists".
3102 -- N_Number_Declaration
3103 -- Sloc points to first identifier
3104 -- Defining_Identifier (Node1)
3105 -- Expression (Node3)
3106 -- More_Ids (Flag5) (set to False if no more identifiers in list)
3107 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
3109 ----------------------------------
3110 -- 3.4 Derived Type Definition --
3111 ----------------------------------
3113 -- DERIVED_TYPE_DEFINITION ::=
3114 -- [abstract] [limited] new [NULL_EXCLUSION] parent_SUBTYPE_INDICATION
3115 -- [[and INTERFACE_LIST] RECORD_EXTENSION_PART]
3117 -- Note: ABSTRACT, LIMITED, and record extension part are not permitted
3118 -- in Ada 83 mode.
3120 -- Note: a record extension part is required if ABSTRACT is present
3122 -- N_Derived_Type_Definition
3123 -- Sloc points to NEW
3124 -- Abstract_Present (Flag4)
3125 -- Null_Exclusion_Present (Flag11) (set to False if not present)
3126 -- Subtype_Indication (Node5)
3127 -- Record_Extension_Part (Node3) (set to Empty if not present)
3128 -- Limited_Present (Flag17)
3129 -- Task_Present (Flag5) set in task interfaces
3130 -- Protected_Present (Flag6) set in protected interfaces
3131 -- Synchronized_Present (Flag7) set in interfaces
3132 -- Interface_List (List2) (set to No_List if none)
3133 -- Interface_Present (Flag16) set in abstract interfaces
3135 -- Note: Task_Present, Protected_Present, Synchronized_Present,
3136 -- Interface_List, and Interface_Present are used for abstract
3137 -- interfaces (see comments for INTERFACE_TYPE_DEFINITION).
3139 ---------------------------
3140 -- 3.5 Range Constraint --
3141 ---------------------------
3143 -- RANGE_CONSTRAINT ::= range RANGE
3145 -- N_Range_Constraint
3146 -- Sloc points to RANGE
3147 -- Range_Expression (Node4)
3149 ----------------
3150 -- 3.5 Range --
3151 ----------------
3153 -- RANGE ::=
3154 -- RANGE_ATTRIBUTE_REFERENCE
3155 -- | SIMPLE_EXPRESSION .. SIMPLE_EXPRESSION
3157 -- Note: the case of a range given as a range attribute reference
3158 -- appears directly in the tree as an attribute reference.
3160 -- Note: the field name for a reference to a range is Range_Expression
3161 -- rather than Range, because range is a reserved keyword in Ada.
3163 -- Note: the reason that this node has expression fields is that a
3164 -- range can appear as an operand of a membership test. The Etype
3165 -- field is the type of the range (we do NOT construct an implicit
3166 -- subtype to represent the range exactly).
3168 -- N_Range
3169 -- Sloc points to ..
3170 -- Low_Bound (Node1)
3171 -- High_Bound (Node2)
3172 -- Includes_Infinities (Flag11)
3173 -- plus fields for expression
3175 -- Note: if the range appears in a context, such as a subtype
3176 -- declaration, where range checks are required on one or both of
3177 -- the expression fields, then type conversion nodes are inserted
3178 -- to represent the required checks.
3180 ----------------------------------------
3181 -- 3.5.1 Enumeration Type Definition --
3182 ----------------------------------------
3184 -- ENUMERATION_TYPE_DEFINITION ::=
3185 -- (ENUMERATION_LITERAL_SPECIFICATION
3186 -- {, ENUMERATION_LITERAL_SPECIFICATION})
3188 -- Note: the Literals field in the node described below is null for
3189 -- the case of the standard types CHARACTER and WIDE_CHARACTER, for
3190 -- which special processing handles these types as special cases.
3192 -- N_Enumeration_Type_Definition
3193 -- Sloc points to left parenthesis
3194 -- Literals (List1) (Empty for CHARACTER or WIDE_CHARACTER)
3195 -- End_Label (Node4) (set to Empty if internally generated record)
3197 ----------------------------------------------
3198 -- 3.5.1 Enumeration Literal Specification --
3199 ----------------------------------------------
3201 -- ENUMERATION_LITERAL_SPECIFICATION ::=
3202 -- DEFINING_IDENTIFIER | DEFINING_CHARACTER_LITERAL
3204 ---------------------------------------
3205 -- 3.5.1 Defining Character Literal --
3206 ---------------------------------------
3208 -- DEFINING_CHARACTER_LITERAL ::= CHARACTER_LITERAL
3210 -- A defining character literal is an entity, which has additional
3211 -- fields depending on the setting of the Ekind field. These
3212 -- additional fields are defined (and access subprograms declared)
3213 -- in package Einfo.
3215 -- Note: N_Defining_Character_Literal is an extended node whose fields
3216 -- are deliberate layed out to match the layout of fields in an ordinary
3217 -- N_Character_Literal node allowing for easy alteration of a character
3218 -- literal node into a defining character literal node. For details, see
3219 -- Sinfo.CN.Change_Character_Literal_To_Defining_Character_Literal.
3221 -- N_Defining_Character_Literal
3222 -- Sloc points to literal
3223 -- Chars (Name1) contains the Name_Id for the identifier
3224 -- Next_Entity (Node2-Sem)
3225 -- Scope (Node3-Sem)
3226 -- Etype (Node5-Sem)
3228 ------------------------------------
3229 -- 3.5.4 Integer Type Definition --
3230 ------------------------------------
3232 -- Note: there is an error in this rule in the latest version of the
3233 -- grammar, so we have retained the old rule pending clarification.
3235 -- INTEGER_TYPE_DEFINITION ::=
3236 -- SIGNED_INTEGER_TYPE_DEFINITION
3237 -- | MODULAR_TYPE_DEFINITION
3239 -------------------------------------------
3240 -- 3.5.4 Signed Integer Type Definition --
3241 -------------------------------------------
3243 -- SIGNED_INTEGER_TYPE_DEFINITION ::=
3244 -- range static_SIMPLE_EXPRESSION .. static_SIMPLE_EXPRESSION
3246 -- Note: the Low_Bound and High_Bound fields are set to Empty
3247 -- for integer types defined in package Standard.
3249 -- N_Signed_Integer_Type_Definition
3250 -- Sloc points to RANGE
3251 -- Low_Bound (Node1)
3252 -- High_Bound (Node2)
3254 ------------------------------------
3255 -- 3.5.4 Modular Type Definition --
3256 ------------------------------------
3258 -- MODULAR_TYPE_DEFINITION ::= mod static_EXPRESSION
3260 -- N_Modular_Type_Definition
3261 -- Sloc points to MOD
3262 -- Expression (Node3)
3264 ---------------------------------
3265 -- 3.5.6 Real Type Definition --
3266 ---------------------------------
3268 -- REAL_TYPE_DEFINITION ::=
3269 -- FLOATING_POINT_DEFINITION | FIXED_POINT_DEFINITION
3271 --------------------------------------
3272 -- 3.5.7 Floating Point Definition --
3273 --------------------------------------
3275 -- FLOATING_POINT_DEFINITION ::=
3276 -- digits static_SIMPLE_EXPRESSION [REAL_RANGE_SPECIFICATION]
3278 -- Note: The Digits_Expression and Real_Range_Specifications fields
3279 -- are set to Empty for floating-point types declared in Standard.
3281 -- N_Floating_Point_Definition
3282 -- Sloc points to DIGITS
3283 -- Digits_Expression (Node2)
3284 -- Real_Range_Specification (Node4) (set to Empty if not present)
3286 -------------------------------------
3287 -- 3.5.7 Real Range Specification --
3288 -------------------------------------
3290 -- REAL_RANGE_SPECIFICATION ::=
3291 -- range static_SIMPLE_EXPRESSION .. static_SIMPLE_EXPRESSION
3293 -- N_Real_Range_Specification
3294 -- Sloc points to RANGE
3295 -- Low_Bound (Node1)
3296 -- High_Bound (Node2)
3298 -----------------------------------
3299 -- 3.5.9 Fixed Point Definition --
3300 -----------------------------------
3302 -- FIXED_POINT_DEFINITION ::=
3303 -- ORDINARY_FIXED_POINT_DEFINITION | DECIMAL_FIXED_POINT_DEFINITION
3305 --------------------------------------------
3306 -- 3.5.9 Ordinary Fixed Point Definition --
3307 --------------------------------------------
3309 -- ORDINARY_FIXED_POINT_DEFINITION ::=
3310 -- delta static_EXPRESSION REAL_RANGE_SPECIFICATION
3312 -- Note: In Ada 83, the EXPRESSION must be a SIMPLE_EXPRESSION
3314 -- N_Ordinary_Fixed_Point_Definition
3315 -- Sloc points to DELTA
3316 -- Delta_Expression (Node3)
3317 -- Real_Range_Specification (Node4)
3319 -------------------------------------------
3320 -- 3.5.9 Decimal Fixed Point Definition --
3321 -------------------------------------------
3323 -- DECIMAL_FIXED_POINT_DEFINITION ::=
3324 -- delta static_EXPRESSION
3325 -- digits static_EXPRESSION [REAL_RANGE_SPECIFICATION]
3327 -- Note: decimal types are not permitted in Ada 83 mode
3329 -- N_Decimal_Fixed_Point_Definition
3330 -- Sloc points to DELTA
3331 -- Delta_Expression (Node3)
3332 -- Digits_Expression (Node2)
3333 -- Real_Range_Specification (Node4) (set to Empty if not present)
3335 ------------------------------
3336 -- 3.5.9 Digits Constraint --
3337 ------------------------------
3339 -- DIGITS_CONSTRAINT ::=
3340 -- digits static_EXPRESSION [RANGE_CONSTRAINT]
3342 -- Note: in Ada 83, the EXPRESSION must be a SIMPLE_EXPRESSION
3343 -- Note: in Ada 95, reduced accuracy subtypes are obsolescent
3345 -- N_Digits_Constraint
3346 -- Sloc points to DIGITS
3347 -- Digits_Expression (Node2)
3348 -- Range_Constraint (Node4) (set to Empty if not present)
3350 --------------------------------
3351 -- 3.6 Array Type Definition --
3352 --------------------------------
3354 -- ARRAY_TYPE_DEFINITION ::=
3355 -- UNCONSTRAINED_ARRAY_DEFINITION | CONSTRAINED_ARRAY_DEFINITION
3357 -----------------------------------------
3358 -- 3.6 Unconstrained Array Definition --
3359 -----------------------------------------
3361 -- UNCONSTRAINED_ARRAY_DEFINITION ::=
3362 -- array (INDEX_SUBTYPE_DEFINITION {, INDEX_SUBTYPE_DEFINITION}) of
3363 -- COMPONENT_DEFINITION
3365 -- Note: dimensionality of array is indicated by number of entries in
3366 -- the Subtype_Marks list, which has one entry for each dimension.
3368 -- N_Unconstrained_Array_Definition
3369 -- Sloc points to ARRAY
3370 -- Subtype_Marks (List2)
3371 -- Component_Definition (Node4)
3373 -----------------------------------
3374 -- 3.6 Index Subtype Definition --
3375 -----------------------------------
3377 -- INDEX_SUBTYPE_DEFINITION ::= SUBTYPE_MARK range <>
3379 -- There is no explicit node in the tree for an index subtype
3380 -- definition since the N_Unconstrained_Array_Definition node
3381 -- incorporates the type marks which appear in this context.
3383 ---------------------------------------
3384 -- 3.6 Constrained Array Definition --
3385 ---------------------------------------
3387 -- CONSTRAINED_ARRAY_DEFINITION ::=
3388 -- array (DISCRETE_SUBTYPE_DEFINITION
3389 -- {, DISCRETE_SUBTYPE_DEFINITION})
3390 -- of COMPONENT_DEFINITION
3392 -- Note: dimensionality of array is indicated by number of entries
3393 -- in the Discrete_Subtype_Definitions list, which has one entry
3394 -- for each dimension.
3396 -- N_Constrained_Array_Definition
3397 -- Sloc points to ARRAY
3398 -- Discrete_Subtype_Definitions (List2)
3399 -- Component_Definition (Node4)
3401 -- Note: although the language allows the full syntax for discrete
3402 -- subtype definitions (i.e. a discrete subtype indication or a range),
3403 -- in the generated tree, we always rewrite these as N_Range nodes.
3405 --------------------------------------
3406 -- 3.6 Discrete Subtype Definition --
3407 --------------------------------------
3409 -- DISCRETE_SUBTYPE_DEFINITION ::=
3410 -- discrete_SUBTYPE_INDICATION | RANGE
3412 -------------------------------
3413 -- 3.6 Component Definition --
3414 -------------------------------
3416 -- COMPONENT_DEFINITION ::=
3417 -- [aliased] [NULL_EXCLUSION] SUBTYPE_INDICATION | ACCESS_DEFINITION
3419 -- Note: although the syntax does not permit a component definition to
3420 -- be an anonymous array (and the parser will diagnose such an attempt
3421 -- with an appropriate message), it is possible for anonymous arrays
3422 -- to appear as component definitions. The semantics and back end handle
3423 -- this case properly, and the expander in fact generates such cases.
3424 -- Access_Definition is an optional field that gives support to
3425 -- Ada 2005 (AI-230). The parser generates nodes that have either the
3426 -- Subtype_Indication field or else the Access_Definition field.
3428 -- N_Component_Definition
3429 -- Sloc points to ALIASED, ACCESS, or to first token of subtype mark
3430 -- Aliased_Present (Flag4)
3431 -- Null_Exclusion_Present (Flag11)
3432 -- Subtype_Indication (Node5) (set to Empty if not present)
3433 -- Access_Definition (Node3) (set to Empty if not present)
3435 -----------------------------
3436 -- 3.6.1 Index Constraint --
3437 -----------------------------
3439 -- INDEX_CONSTRAINT ::= (DISCRETE_RANGE {, DISCRETE_RANGE})
3441 -- It is not in general possible to distinguish between discriminant
3442 -- constraints and index constraints at parse time, since a simple
3443 -- name could be either the subtype mark of a discrete range, or an
3444 -- expression in a discriminant association with no name. Either
3445 -- entry appears simply as the name, and the semantic parse must
3446 -- distinguish between the two cases. Thus we use a common tree
3447 -- node format for both of these constraint types.
3449 -- See Discriminant_Constraint for format of node
3451 ---------------------------
3452 -- 3.6.1 Discrete Range --
3453 ---------------------------
3455 -- DISCRETE_RANGE ::= discrete_SUBTYPE_INDICATION | RANGE
3457 ----------------------------
3458 -- 3.7 Discriminant Part --
3459 ----------------------------
3461 -- DISCRIMINANT_PART ::=
3462 -- UNKNOWN_DISCRIMINANT_PART | KNOWN_DISCRIMINANT_PART
3464 ------------------------------------
3465 -- 3.7 Unknown Discriminant Part --
3466 ------------------------------------
3468 -- UNKNOWN_DISCRIMINANT_PART ::= (<>)
3470 -- Note: unknown discriminant parts are not permitted in Ada 83 mode
3472 -- There is no explicit node in the tree for an unknown discriminant
3473 -- part. Instead the Unknown_Discriminants_Present flag is set in the
3474 -- parent node.
3476 ----------------------------------
3477 -- 3.7 Known Discriminant Part --
3478 ----------------------------------
3480 -- KNOWN_DISCRIMINANT_PART ::=
3481 -- (DISCRIMINANT_SPECIFICATION {; DISCRIMINANT_SPECIFICATION})
3483 -------------------------------------
3484 -- 3.7 Discriminant Specification --
3485 -------------------------------------
3487 -- DISCRIMINANT_SPECIFICATION ::=
3488 -- DEFINING_IDENTIFIER_LIST : [NULL_EXCLUSION] SUBTYPE_MARK
3489 -- [:= DEFAULT_EXPRESSION]
3490 -- | DEFINING_IDENTIFIER_LIST : ACCESS_DEFINITION
3491 -- [:= DEFAULT_EXPRESSION]
3493 -- Although the syntax allows multiple identifiers in the list, the
3494 -- semantics is as though successive specifications were given with
3495 -- identical type definition and expression components. To simplify
3496 -- semantic processing, the parser represents a multiple declaration
3497 -- case as a sequence of single specifications, using the More_Ids and
3498 -- Prev_Ids flags to preserve the original source form as described
3499 -- in the section on "Handling of Defining Identifier Lists".
3501 -- N_Discriminant_Specification
3502 -- Sloc points to first identifier
3503 -- Defining_Identifier (Node1)
3504 -- Null_Exclusion_Present (Flag11)
3505 -- Discriminant_Type (Node5) subtype mark or access parameter definition
3506 -- Expression (Node3) (set to Empty if no default expression)
3507 -- More_Ids (Flag5) (set to False if no more identifiers in list)
3508 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
3510 -----------------------------
3511 -- 3.7 Default Expression --
3512 -----------------------------
3514 -- DEFAULT_EXPRESSION ::= EXPRESSION
3516 ------------------------------------
3517 -- 3.7.1 Discriminant Constraint --
3518 ------------------------------------
3520 -- DISCRIMINANT_CONSTRAINT ::=
3521 -- (DISCRIMINANT_ASSOCIATION {, DISCRIMINANT_ASSOCIATION})
3523 -- It is not in general possible to distinguish between discriminant
3524 -- constraints and index constraints at parse time, since a simple
3525 -- name could be either the subtype mark of a discrete range, or an
3526 -- expression in a discriminant association with no name. Either
3527 -- entry appears simply as the name, and the semantic parse must
3528 -- distinguish between the two cases. Thus we use a common tree
3529 -- node format for both of these constraint types.
3531 -- N_Index_Or_Discriminant_Constraint
3532 -- Sloc points to left paren
3533 -- Constraints (List1) points to list of discrete ranges or
3534 -- discriminant associations
3536 -------------------------------------
3537 -- 3.7.1 Discriminant Association --
3538 -------------------------------------
3540 -- DISCRIMINANT_ASSOCIATION ::=
3541 -- [discriminant_SELECTOR_NAME
3542 -- {| discriminant_SELECTOR_NAME} =>] EXPRESSION
3544 -- Note: a discriminant association that has no selector name list
3545 -- appears directly as an expression in the tree.
3547 -- N_Discriminant_Association
3548 -- Sloc points to first token of discriminant association
3549 -- Selector_Names (List1) (always non-empty, since if no selector
3550 -- names are present, this node is not used, see comment above)
3551 -- Expression (Node3)
3553 ---------------------------------
3554 -- 3.8 Record Type Definition --
3555 ---------------------------------
3557 -- RECORD_TYPE_DEFINITION ::=
3558 -- [[abstract] tagged] [limited] RECORD_DEFINITION
3560 -- Note: ABSTRACT, TAGGED, LIMITED are not permitted in Ada 83 mode
3562 -- There is no explicit node in the tree for a record type definition.
3563 -- Instead the flags for Tagged_Present and Limited_Present appear in
3564 -- the N_Record_Definition node for a record definition appearing in
3565 -- the context of a record type definition.
3567 ----------------------------
3568 -- 3.8 Record Definition --
3569 ----------------------------
3571 -- RECORD_DEFINITION ::=
3572 -- record
3573 -- COMPONENT_LIST
3574 -- end record
3575 -- | null record
3577 -- Note: the Abstract_Present, Tagged_Present, and Limited_Present
3578 -- flags appear only for a record definition appearing in a record
3579 -- type definition.
3581 -- Note: the NULL RECORD case is not permitted in Ada 83
3583 -- N_Record_Definition
3584 -- Sloc points to RECORD or NULL
3585 -- End_Label (Node4) (set to Empty if internally generated record)
3586 -- Abstract_Present (Flag4)
3587 -- Tagged_Present (Flag15)
3588 -- Limited_Present (Flag17)
3589 -- Component_List (Node1) empty in null record case
3590 -- Null_Present (Flag13) set in null record case
3591 -- Task_Present (Flag5) set in task interfaces
3592 -- Protected_Present (Flag6) set in protected interfaces
3593 -- Synchronized_Present (Flag7) set in interfaces
3594 -- Interface_Present (Flag16) set in abstract interfaces
3595 -- Interface_List (List2) (set to No_List if none)
3597 -- Note: Task_Present, Protected_Present, Synchronized _Present,
3598 -- Interface_List and Interface_Present are used for abstract
3599 -- interfaces (see comments for INTERFACE_TYPE_DEFINITION).
3601 -------------------------
3602 -- 3.8 Component List --
3603 -------------------------
3605 -- COMPONENT_LIST ::=
3606 -- COMPONENT_ITEM {COMPONENT_ITEM}
3607 -- | {COMPONENT_ITEM} VARIANT_PART
3608 -- | null;
3610 -- N_Component_List
3611 -- Sloc points to first token of component list
3612 -- Component_Items (List3)
3613 -- Variant_Part (Node4) (set to Empty if no variant part)
3614 -- Null_Present (Flag13)
3616 -------------------------
3617 -- 3.8 Component Item --
3618 -------------------------
3620 -- COMPONENT_ITEM ::= COMPONENT_DECLARATION | REPRESENTATION_CLAUSE
3622 -- Note: A component item can also be a pragma, and in the tree
3623 -- that is obtained after semantic processing, a component item
3624 -- can be an N_Null node resulting from a non-recognized pragma.
3626 --------------------------------
3627 -- 3.8 Component Declaration --
3628 --------------------------------
3630 -- COMPONENT_DECLARATION ::=
3631 -- DEFINING_IDENTIFIER_LIST : COMPONENT_DEFINITION
3632 -- [:= DEFAULT_EXPRESSION]
3633 -- [ASPECT_SPECIFICATIONS];
3635 -- Note: although the syntax does not permit a component definition to
3636 -- be an anonymous array (and the parser will diagnose such an attempt
3637 -- with an appropriate message), it is possible for anonymous arrays
3638 -- to appear as component definitions. The semantics and back end handle
3639 -- this case properly, and the expander in fact generates such cases.
3641 -- Although the syntax allows multiple identifiers in the list, the
3642 -- semantics is as though successive declarations were given with the
3643 -- same component definition and expression components. To simplify
3644 -- semantic processing, the parser represents a multiple declaration
3645 -- case as a sequence of single declarations, using the More_Ids and
3646 -- Prev_Ids flags to preserve the original source form as described
3647 -- in the section on "Handling of Defining Identifier Lists".
3649 -- N_Component_Declaration
3650 -- Sloc points to first identifier
3651 -- Defining_Identifier (Node1)
3652 -- Component_Definition (Node4)
3653 -- Expression (Node3) (set to Empty if no default expression)
3654 -- More_Ids (Flag5) (set to False if no more identifiers in list)
3655 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
3657 -------------------------
3658 -- 3.8.1 Variant Part --
3659 -------------------------
3661 -- VARIANT_PART ::=
3662 -- case discriminant_DIRECT_NAME is
3663 -- VARIANT {VARIANT}
3664 -- end case;
3666 -- Note: the variants list can contain pragmas as well as variants.
3667 -- In a properly formed program there is at least one variant.
3669 -- N_Variant_Part
3670 -- Sloc points to CASE
3671 -- Name (Node2)
3672 -- Variants (List1)
3674 --------------------
3675 -- 3.8.1 Variant --
3676 --------------------
3678 -- VARIANT ::=
3679 -- when DISCRETE_CHOICE_LIST =>
3680 -- COMPONENT_LIST
3682 -- N_Variant
3683 -- Sloc points to WHEN
3684 -- Discrete_Choices (List4)
3685 -- Component_List (Node1)
3686 -- Enclosing_Variant (Node2-Sem)
3687 -- Present_Expr (Uint3-Sem)
3688 -- Dcheck_Function (Node5-Sem)
3689 -- Has_SP_Choice (Flag15-Sem)
3691 -- Note: in the list of Discrete_Choices, the tree passed to the back
3692 -- end does not have choice entries corresponding to names of statically
3693 -- predicated subtypes. Such entries are always expanded out to the list
3694 -- of equivalent values or ranges. The ASIS tree generated in -gnatct
3695 -- mode also has this expansion, but done with a proper Rewrite call on
3696 -- the N_Variant node so that ASIS can properly retrieve the original.
3698 ---------------------------------
3699 -- 3.8.1 Discrete Choice List --
3700 ---------------------------------
3702 -- DISCRETE_CHOICE_LIST ::= DISCRETE_CHOICE {| DISCRETE_CHOICE}
3704 ----------------------------
3705 -- 3.8.1 Discrete Choice --
3706 ----------------------------
3708 -- DISCRETE_CHOICE ::= EXPRESSION | DISCRETE_RANGE | others
3710 -- Note: in Ada 83 mode, the expression must be a simple expression
3712 -- The only choice that appears explicitly is the OTHERS choice, as
3713 -- defined here. Other cases of discrete choice (expression and
3714 -- discrete range) appear directly. This production is also used
3715 -- for the OTHERS possibility of an exception choice.
3717 -- Note: in accordance with the syntax, the parser does not check that
3718 -- OTHERS appears at the end on its own in a choice list context. This
3719 -- is a semantic check.
3721 -- N_Others_Choice
3722 -- Sloc points to OTHERS
3723 -- Others_Discrete_Choices (List1-Sem)
3724 -- All_Others (Flag11-Sem)
3726 ----------------------------------
3727 -- 3.9.1 Record Extension Part --
3728 ----------------------------------
3730 -- RECORD_EXTENSION_PART ::= with RECORD_DEFINITION
3732 -- Note: record extension parts are not permitted in Ada 83 mode
3734 --------------------------------------
3735 -- 3.9.4 Interface Type Definition --
3736 --------------------------------------
3738 -- INTERFACE_TYPE_DEFINITION ::=
3739 -- [limited | task | protected | synchronized]
3740 -- interface [interface_list]
3742 -- Note: Interfaces are implemented with N_Record_Definition and
3743 -- N_Derived_Type_Definition nodes because most of the support
3744 -- for the analysis of abstract types has been reused to
3745 -- analyze abstract interfaces.
3747 ----------------------------------
3748 -- 3.10 Access Type Definition --
3749 ----------------------------------
3751 -- ACCESS_TYPE_DEFINITION ::=
3752 -- ACCESS_TO_OBJECT_DEFINITION
3753 -- | ACCESS_TO_SUBPROGRAM_DEFINITION
3755 --------------------------
3756 -- 3.10 Null Exclusion --
3757 --------------------------
3759 -- NULL_EXCLUSION ::= not null
3761 ---------------------------------------
3762 -- 3.10 Access To Object Definition --
3763 ---------------------------------------
3765 -- ACCESS_TO_OBJECT_DEFINITION ::=
3766 -- [NULL_EXCLUSION] access [GENERAL_ACCESS_MODIFIER]
3767 -- SUBTYPE_INDICATION
3769 -- N_Access_To_Object_Definition
3770 -- Sloc points to ACCESS
3771 -- All_Present (Flag15)
3772 -- Null_Exclusion_Present (Flag11)
3773 -- Null_Excluding_Subtype (Flag16)
3774 -- Subtype_Indication (Node5)
3775 -- Constant_Present (Flag17)
3777 -----------------------------------
3778 -- 3.10 General Access Modifier --
3779 -----------------------------------
3781 -- GENERAL_ACCESS_MODIFIER ::= all | constant
3783 -- Note: general access modifiers are not permitted in Ada 83 mode
3785 -- There is no explicit node in the tree for general access modifier.
3786 -- Instead the All_Present or Constant_Present flags are set in the
3787 -- parent node.
3789 -------------------------------------------
3790 -- 3.10 Access To Subprogram Definition --
3791 -------------------------------------------
3793 -- ACCESS_TO_SUBPROGRAM_DEFINITION
3794 -- [NULL_EXCLUSION] access [protected] procedure PARAMETER_PROFILE
3795 -- | [NULL_EXCLUSION] access [protected] function
3796 -- PARAMETER_AND_RESULT_PROFILE
3798 -- Note: access to subprograms are not permitted in Ada 83 mode
3800 -- N_Access_Function_Definition
3801 -- Sloc points to ACCESS
3802 -- Null_Exclusion_Present (Flag11)
3803 -- Null_Exclusion_In_Return_Present (Flag14)
3804 -- Protected_Present (Flag6)
3805 -- Parameter_Specifications (List3) (set to No_List if no formal part)
3806 -- Result_Definition (Node4) result subtype (subtype mark or access def)
3808 -- N_Access_Procedure_Definition
3809 -- Sloc points to ACCESS
3810 -- Null_Exclusion_Present (Flag11)
3811 -- Protected_Present (Flag6)
3812 -- Parameter_Specifications (List3) (set to No_List if no formal part)
3814 -----------------------------
3815 -- 3.10 Access Definition --
3816 -----------------------------
3818 -- ACCESS_DEFINITION ::=
3819 -- [NULL_EXCLUSION] access [GENERAL_ACCESS_MODIFIER] SUBTYPE_MARK
3820 -- | ACCESS_TO_SUBPROGRAM_DEFINITION
3822 -- Note: access to subprograms are an Ada 2005 (AI-254) extension
3824 -- N_Access_Definition
3825 -- Sloc points to ACCESS
3826 -- Null_Exclusion_Present (Flag11)
3827 -- All_Present (Flag15)
3828 -- Constant_Present (Flag17)
3829 -- Subtype_Mark (Node4)
3830 -- Access_To_Subprogram_Definition (Node3) (set to Empty if not present)
3832 -----------------------------------------
3833 -- 3.10.1 Incomplete Type Declaration --
3834 -----------------------------------------
3836 -- INCOMPLETE_TYPE_DECLARATION ::=
3837 -- type DEFINING_IDENTIFIER [DISCRIMINANT_PART] [IS TAGGED];
3839 -- N_Incomplete_Type_Declaration
3840 -- Sloc points to TYPE
3841 -- Defining_Identifier (Node1)
3842 -- Discriminant_Specifications (List4) (set to No_List if no
3843 -- discriminant part, or if the discriminant part is an
3844 -- unknown discriminant part)
3845 -- Premature_Use (Node5-Sem) used for improved diagnostics.
3846 -- Unknown_Discriminants_Present (Flag13) set if (<>) discriminant
3847 -- Tagged_Present (Flag15)
3849 ----------------------------
3850 -- 3.11 Declarative Part --
3851 ----------------------------
3853 -- DECLARATIVE_PART ::= {DECLARATIVE_ITEM}
3855 -- Note: although the parser enforces the syntactic requirement that
3856 -- a declarative part can contain only declarations, the semantic
3857 -- processing may add statements to the list of actions in a
3858 -- declarative part, so the code generator should be prepared
3859 -- to accept a statement in this position.
3861 ----------------------------
3862 -- 3.11 Declarative Item --
3863 ----------------------------
3865 -- DECLARATIVE_ITEM ::= BASIC_DECLARATIVE_ITEM | BODY
3867 ----------------------------------
3868 -- 3.11 Basic Declarative Item --
3869 ----------------------------------
3871 -- BASIC_DECLARATIVE_ITEM ::=
3872 -- BASIC_DECLARATION | REPRESENTATION_CLAUSE | USE_CLAUSE
3874 ----------------
3875 -- 3.11 Body --
3876 ----------------
3878 -- BODY ::= PROPER_BODY | BODY_STUB
3880 -----------------------
3881 -- 3.11 Proper Body --
3882 -----------------------
3884 -- PROPER_BODY ::=
3885 -- SUBPROGRAM_BODY | PACKAGE_BODY | TASK_BODY | PROTECTED_BODY
3887 ---------------
3888 -- 4.1 Name --
3889 ---------------
3891 -- NAME ::=
3892 -- DIRECT_NAME | EXPLICIT_DEREFERENCE
3893 -- | INDEXED_COMPONENT | SLICE
3894 -- | SELECTED_COMPONENT | ATTRIBUTE_REFERENCE
3895 -- | TYPE_CONVERSION | FUNCTION_CALL
3896 -- | CHARACTER_LITERAL
3898 ----------------------
3899 -- 4.1 Direct Name --
3900 ----------------------
3902 -- DIRECT_NAME ::= IDENTIFIER | OPERATOR_SYMBOL
3904 -----------------
3905 -- 4.1 Prefix --
3906 -----------------
3908 -- PREFIX ::= NAME | IMPLICIT_DEREFERENCE
3910 -------------------------------
3911 -- 4.1 Explicit Dereference --
3912 -------------------------------
3914 -- EXPLICIT_DEREFERENCE ::= NAME . all
3916 -- N_Explicit_Dereference
3917 -- Sloc points to ALL
3918 -- Prefix (Node3)
3919 -- Actual_Designated_Subtype (Node4-Sem)
3920 -- Has_Dereference_Action (Flag13-Sem)
3921 -- Atomic_Sync_Required (Flag14-Sem)
3922 -- plus fields for expression
3924 -------------------------------
3925 -- 4.1 Implicit Dereference --
3926 -------------------------------
3928 -- IMPLICIT_DEREFERENCE ::= NAME
3930 ------------------------------
3931 -- 4.1.1 Indexed Component --
3932 ------------------------------
3934 -- INDEXED_COMPONENT ::= PREFIX (EXPRESSION {, EXPRESSION})
3936 -- Note: the parser may generate this node in some situations where it
3937 -- should be a function call. The semantic pass must correct this
3938 -- misidentification (which is inevitable at the parser level).
3940 -- N_Indexed_Component
3941 -- Sloc contains a copy of the Sloc value of the Prefix
3942 -- Prefix (Node3)
3943 -- Expressions (List1)
3944 -- Generalized_Indexing (Node4-Sem)
3945 -- Atomic_Sync_Required (Flag14-Sem)
3946 -- plus fields for expression
3948 -- Note: if any of the subscripts requires a range check, then the
3949 -- Do_Range_Check flag is set on the corresponding expression, with
3950 -- the index type being determined from the type of the Prefix, which
3951 -- references the array being indexed.
3953 -- Note: in a fully analyzed and expanded indexed component node, and
3954 -- hence in any such node that gigi sees, if the prefix is an access
3955 -- type, then an explicit dereference operation has been inserted.
3957 ------------------
3958 -- 4.1.2 Slice --
3959 ------------------
3961 -- SLICE ::= PREFIX (DISCRETE_RANGE)
3963 -- Note: an implicit subtype is created to describe the resulting
3964 -- type, so that the bounds of this type are the bounds of the slice.
3966 -- N_Slice
3967 -- Sloc points to first token of prefix
3968 -- Prefix (Node3)
3969 -- Discrete_Range (Node4)
3970 -- plus fields for expression
3972 -------------------------------
3973 -- 4.1.3 Selected Component --
3974 -------------------------------
3976 -- SELECTED_COMPONENT ::= PREFIX . SELECTOR_NAME
3978 -- Note: selected components that are semantically expanded names get
3979 -- changed during semantic processing into the separate N_Expanded_Name
3980 -- node. See description of this node in the section on semantic nodes.
3982 -- N_Selected_Component
3983 -- Sloc points to the period
3984 -- Prefix (Node3)
3985 -- Selector_Name (Node2)
3986 -- Associated_Node (Node4-Sem)
3987 -- Do_Discriminant_Check (Flag3-Sem)
3988 -- Is_In_Discriminant_Check (Flag11-Sem)
3989 -- Atomic_Sync_Required (Flag14-Sem)
3990 -- Is_Prefixed_Call (Flag17-Sem)
3991 -- plus fields for expression
3993 --------------------------
3994 -- 4.1.3 Selector Name --
3995 --------------------------
3997 -- SELECTOR_NAME ::= IDENTIFIER | CHARACTER_LITERAL | OPERATOR_SYMBOL
3999 --------------------------------
4000 -- 4.1.4 Attribute Reference --
4001 --------------------------------
4003 -- ATTRIBUTE_REFERENCE ::= PREFIX ' ATTRIBUTE_DESIGNATOR
4005 -- Note: the syntax is quite ambiguous at this point. Consider:
4007 -- A'Length (X) X is part of the attribute designator
4008 -- A'Pos (X) X is an explicit actual parameter of function A'Pos
4009 -- A'Class (X) X is the expression of a type conversion
4011 -- It would be possible for the parser to distinguish these cases
4012 -- by looking at the attribute identifier. However, that would mean
4013 -- more work in introducing new implementation defined attributes,
4014 -- and also it would mean that special processing for attributes
4015 -- would be scattered around, instead of being centralized in the
4016 -- semantic routine that handles an N_Attribute_Reference node.
4017 -- Consequently, the parser in all the above cases stores the
4018 -- expression (X in these examples) as a single element list in
4019 -- in the Expressions field of the N_Attribute_Reference node.
4021 -- Similarly, for attributes like Max which take two arguments,
4022 -- we store the two arguments as a two element list in the
4023 -- Expressions field. Of course it is clear at parse time that
4024 -- this case is really a function call with an attribute as the
4025 -- prefix, but it turns out to be convenient to handle the two
4026 -- argument case in a similar manner to the one argument case,
4027 -- and indeed in general the parser will accept any number of
4028 -- expressions in this position and store them as a list in the
4029 -- attribute reference node. This allows for future addition of
4030 -- attributes that take more than two arguments.
4032 -- Note: named associates are not permitted in function calls where
4033 -- the function is an attribute (see RM 6.4(3)) so it is legitimate
4034 -- to skip the normal subprogram argument processing.
4036 -- Note: for the attributes whose designators are technically keywords,
4037 -- i.e. digits, access, delta, range, the Attribute_Name field contains
4038 -- the corresponding name, even though no identifier is involved.
4040 -- Note: the generated code may contain stream attributes applied to
4041 -- limited types for which no stream routines exist officially. In such
4042 -- case, the result is to use the stream attribute for the underlying
4043 -- full type, or in the case of a protected type, the components
4044 -- (including any discriminants) are merely streamed in order.
4046 -- See Exp_Attr for a complete description of which attributes are
4047 -- passed onto Gigi, and which are handled entirely by the front end.
4049 -- Gigi restriction: For the Pos attribute, the prefix cannot be
4050 -- a non-standard enumeration type or a nonzero/zero semantics
4051 -- boolean type, so the value is simply the stored representation.
4053 -- Gigi requirement: For the Mechanism_Code attribute, if the prefix
4054 -- references a subprogram that is a renaming, then the front end must
4055 -- rewrite the attribute to refer directly to the renamed entity.
4057 -- Note: syntactically the prefix of an attribute reference must be a
4058 -- name, and this (somewhat artificial) requirement is enforced by the
4059 -- parser. However, for many attributes, such as 'Valid, it is quite
4060 -- reasonable to apply the attribute to any value, and hence to any
4061 -- expression. Internally in the tree, the prefix is an expression which
4062 -- does not have to be a name, and this is handled fine by the semantic
4063 -- analysis and expansion, and back ends. This arises for the case of
4064 -- attribute references built by the expander (e.g. 'Valid for the case
4065 -- of an implicit validity check).
4067 -- Note: In generated code, the Address and Unrestricted_Access
4068 -- attributes can be applied to any expression, and the meaning is
4069 -- to create an object containing the value (the object is in the
4070 -- current stack frame), and pass the address of this value. If the
4071 -- Must_Be_Byte_Aligned flag is set, then the object whose address
4072 -- is taken must be on a byte (storage unit) boundary, and if it is
4073 -- not (or may not be), then the generated code must create a copy
4074 -- that is byte aligned, and pass the address of this copy.
4076 -- N_Attribute_Reference
4077 -- Sloc points to apostrophe
4078 -- Prefix (Node3) (general expression, see note above)
4079 -- Attribute_Name (Name2) identifier name from attribute designator
4080 -- Expressions (List1) (set to No_List if no associated expressions)
4081 -- Entity (Node4-Sem) used if the attribute yields a type
4082 -- Associated_Node (Node4-Sem)
4083 -- Is_Elaboration_Checks_OK_Node (Flag1-Sem)
4084 -- Is_SPARK_Mode_On_Node (Flag2-Sem)
4085 -- Is_Elaboration_Warnings_OK_Node (Flag3-Sem)
4086 -- Header_Size_Added (Flag11-Sem)
4087 -- Redundant_Use (Flag13-Sem)
4088 -- Must_Be_Byte_Aligned (Flag14-Sem)
4089 -- plus fields for expression
4091 -- Note: in Modify_Tree_For_C mode, Max and Min attributes are expanded
4092 -- into equivalent if expressions, properly taking care of side effects.
4094 ---------------------------------
4095 -- 4.1.4 Attribute Designator --
4096 ---------------------------------
4098 -- ATTRIBUTE_DESIGNATOR ::=
4099 -- IDENTIFIER [(static_EXPRESSION)]
4100 -- | access | delta | digits
4102 -- There is no explicit node in the tree for an attribute designator.
4103 -- Instead the Attribute_Name and Expressions fields of the parent
4104 -- node (N_Attribute_Reference node) hold the information.
4106 -- Note: if ACCESS, DELTA, or DIGITS appears in an attribute
4107 -- designator, then they are treated as identifiers internally
4108 -- rather than the keywords of the same name.
4110 --------------------------------------
4111 -- 4.1.4 Range Attribute Reference --
4112 --------------------------------------
4114 -- RANGE_ATTRIBUTE_REFERENCE ::= PREFIX ' RANGE_ATTRIBUTE_DESIGNATOR
4116 -- A range attribute reference is represented in the tree using the
4117 -- normal N_Attribute_Reference node.
4119 ---------------------------------------
4120 -- 4.1.4 Range Attribute Designator --
4121 ---------------------------------------
4123 -- RANGE_ATTRIBUTE_DESIGNATOR ::= Range [(static_EXPRESSION)]
4125 -- A range attribute designator is represented in the tree using the
4126 -- normal N_Attribute_Reference node.
4128 --------------------
4129 -- 4.3 Aggregate --
4130 --------------------
4132 -- AGGREGATE ::=
4133 -- RECORD_AGGREGATE | EXTENSION_AGGREGATE | ARRAY_AGGREGATE
4135 -----------------------------
4136 -- 4.3.1 Record Aggregate --
4137 -----------------------------
4139 -- RECORD_AGGREGATE ::= (RECORD_COMPONENT_ASSOCIATION_LIST)
4141 -- N_Aggregate
4142 -- Sloc points to left parenthesis
4143 -- Expressions (List1) (set to No_List if none or null record case)
4144 -- Component_Associations (List2) (set to No_List if none)
4145 -- Null_Record_Present (Flag17)
4146 -- Aggregate_Bounds (Node3-Sem)
4147 -- Associated_Node (Node4-Sem)
4148 -- Compile_Time_Known_Aggregate (Flag18-Sem)
4149 -- Expansion_Delayed (Flag11-Sem)
4150 -- Has_Self_Reference (Flag13-Sem)
4151 -- plus fields for expression
4153 -- Note: this structure is used for both record and array aggregates
4154 -- since the two cases are not separable by the parser. The parser
4155 -- makes no attempt to enforce consistency here, so it is up to the
4156 -- semantic phase to make sure that the aggregate is consistent (i.e.
4157 -- that it is not a "half-and-half" case that mixes record and array
4158 -- syntax). In particular, for a record aggregate, the expressions
4159 -- field will be set if there are positional associations.
4161 -- Note: N_Aggregate is not used for all aggregates; in particular,
4162 -- there is a separate node kind for extension aggregates.
4164 -- Note: gigi/gcc can handle array aggregates correctly providing that
4165 -- they are entirely positional, and the array subtype involved has a
4166 -- known at compile time length and is not bit packed, or a convention
4167 -- Fortran array with more than one dimension. If these conditions
4168 -- are not met, then the front end must translate the aggregate into
4169 -- an appropriate set of assignments into a temporary.
4171 -- Note: for the record aggregate case, gigi/gcc can handle most cases
4172 -- of record aggregates, including those for packed, and rep-claused
4173 -- records, and also variant records, providing that there are no
4174 -- variable length fields whose size is not known at compile time,
4175 -- and providing that the aggregate is presented in fully named form.
4177 -- The other situation in which array aggregates and record aggregates
4178 -- cannot be passed to the back end is if assignment to one or more
4179 -- components itself needs expansion, e.g. in the case of an assignment
4180 -- of an object of a controlled type. In such cases, the front end
4181 -- must expand the aggregate to a series of assignments, and apply
4182 -- the required expansion to the individual assignment statements.
4184 ----------------------------------------------
4185 -- 4.3.1 Record Component Association List --
4186 ----------------------------------------------
4188 -- RECORD_COMPONENT_ASSOCIATION_LIST ::=
4189 -- RECORD_COMPONENT_ASSOCIATION {, RECORD_COMPONENT_ASSOCIATION}
4190 -- | null record
4192 -- There is no explicit node in the tree for a record component
4193 -- association list. Instead the Null_Record_Present flag is set in
4194 -- the parent node for the NULL RECORD case.
4196 ------------------------------------------------------
4197 -- 4.3.1 Record Component Association (also 4.3.3) --
4198 ------------------------------------------------------
4200 -- RECORD_COMPONENT_ASSOCIATION ::=
4201 -- [COMPONENT_CHOICE_LIST =>] EXPRESSION
4203 -- N_Component_Association
4204 -- Sloc points to first selector name
4205 -- Choices (List1)
4206 -- Loop_Actions (List2-Sem)
4207 -- Expression (Node3) (empty if Box_Present)
4208 -- Box_Present (Flag15)
4209 -- Inherited_Discriminant (Flag13)
4211 -- Note: this structure is used for both record component associations
4212 -- and array component associations, since the two cases aren't always
4213 -- separable by the parser. The choices list may represent either a
4214 -- list of selector names in the record aggregate case, or a list of
4215 -- discrete choices in the array aggregate case or an N_Others_Choice
4216 -- node (which appears as a singleton list). Box_Present gives support
4217 -- to Ada 2005 (AI-287).
4219 ----------------------------------
4220 -- 4.3.1 Component Choice List --
4221 ----------------------------------
4223 -- COMPONENT_CHOICE_LIST ::=
4224 -- component_SELECTOR_NAME {| component_SELECTOR_NAME}
4225 -- | others
4227 -- The entries of a component choice list appear in the Choices list of
4228 -- the associated N_Component_Association, as either selector names, or
4229 -- as an N_Others_Choice node.
4231 --------------------------------
4232 -- 4.3.2 Extension Aggregate --
4233 --------------------------------
4235 -- EXTENSION_AGGREGATE ::=
4236 -- (ANCESTOR_PART with RECORD_COMPONENT_ASSOCIATION_LIST)
4238 -- Note: extension aggregates are not permitted in Ada 83 mode
4240 -- N_Extension_Aggregate
4241 -- Sloc points to left parenthesis
4242 -- Ancestor_Part (Node3)
4243 -- Associated_Node (Node4-Sem)
4244 -- Expressions (List1) (set to No_List if none or null record case)
4245 -- Component_Associations (List2) (set to No_List if none)
4246 -- Null_Record_Present (Flag17)
4247 -- Expansion_Delayed (Flag11-Sem)
4248 -- Has_Self_Reference (Flag13-Sem)
4249 -- plus fields for expression
4251 --------------------------
4252 -- 4.3.2 Ancestor Part --
4253 --------------------------
4255 -- ANCESTOR_PART ::= EXPRESSION | SUBTYPE_MARK
4257 ----------------------------
4258 -- 4.3.3 Array Aggregate --
4259 ----------------------------
4261 -- ARRAY_AGGREGATE ::=
4262 -- POSITIONAL_ARRAY_AGGREGATE | NAMED_ARRAY_AGGREGATE
4264 ---------------------------------------
4265 -- 4.3.3 Positional Array Aggregate --
4266 ---------------------------------------
4268 -- POSITIONAL_ARRAY_AGGREGATE ::=
4269 -- (EXPRESSION, EXPRESSION {, EXPRESSION})
4270 -- | (EXPRESSION {, EXPRESSION}, others => EXPRESSION)
4272 -- See Record_Aggregate (4.3.1) for node structure
4274 ----------------------------------
4275 -- 4.3.3 Named Array Aggregate --
4276 ----------------------------------
4278 -- NAMED_ARRAY_AGGREGATE ::=
4279 -- (ARRAY_COMPONENT_ASSOCIATION {, ARRAY_COMPONENT_ASSOCIATION})
4281 -- See Record_Aggregate (4.3.1) for node structure
4283 ----------------------------------------
4284 -- 4.3.3 Array Component Association --
4285 ----------------------------------------
4287 -- ARRAY_COMPONENT_ASSOCIATION ::=
4288 -- DISCRETE_CHOICE_LIST => EXPRESSION
4289 -- | ITERATED_COMPONENT_ASSOCIATION
4291 -- See Record_Component_Association (4.3.1) for node structure
4292 -- The iterated_component_association is introduced into the
4293 -- Corrigendum of Ada_2012 by AI12-061.
4295 ------------------------------------------
4296 -- 4.3.3 Iterated component Association --
4297 ------------------------------------------
4299 -- ITERATED_COMPONENT_ASSOCIATION ::=
4300 -- for DEFINING_IDENTIFIER in DISCRETE_CHOICE_LIST => EXPRESSION
4302 -- N_Iterated_Component_Association
4303 -- Sloc points to FOR
4304 -- Defining_Identifier (Node1)
4305 -- Loop_Actions (List2-Sem)
4306 -- Expression (Node3)
4307 -- Discrete_Choices (List4)
4308 -- Box_Present (Flag15)
4310 -- Note that Box_Present is always False, but it is intentionally added
4311 -- for completeness.
4313 ----------------------------
4314 -- 4.3.4 Delta Aggregate --
4315 ----------------------------
4317 -- N_Delta_Aggregate
4318 -- Sloc points to left parenthesis
4319 -- Expression (Node3)
4320 -- Component_Associations (List2)
4322 --------------------------------------------------
4323 -- 4.4 Expression/Relation/Term/Factor/Primary --
4324 --------------------------------------------------
4326 -- EXPRESSION ::=
4327 -- RELATION {LOGICAL_OPERATOR RELATION}
4329 -- CHOICE_EXPRESSION ::=
4330 -- CHOICE_RELATION {LOGICAL_OPERATOR CHOICE_RELATION}
4332 -- CHOICE_RELATION ::=
4333 -- SIMPLE_EXPRESSION [RELATIONAL_OPERATOR SIMPLE_EXPRESSION]
4335 -- RELATION ::=
4336 -- SIMPLE_EXPRESSION [not] in MEMBERSHIP_CHOICE_LIST
4337 -- | RAISE_EXPRESSION
4339 -- MEMBERSHIP_CHOICE_LIST ::=
4340 -- MEMBERSHIP_CHOICE {'|' MEMBERSHIP CHOICE}
4342 -- MEMBERSHIP_CHOICE ::=
4343 -- CHOICE_EXPRESSION | RANGE | SUBTYPE_MARK
4345 -- LOGICAL_OPERATOR ::= and | and then | or | or else | xor
4347 -- SIMPLE_EXPRESSION ::=
4348 -- [UNARY_ADDING_OPERATOR] TERM {BINARY_ADDING_OPERATOR TERM}
4350 -- TERM ::= FACTOR {MULTIPLYING_OPERATOR FACTOR}
4352 -- FACTOR ::= PRIMARY [** PRIMARY] | abs PRIMARY | not PRIMARY
4354 -- No nodes are generated for any of these constructs. Instead, the
4355 -- node for the operator appears directly. When we refer to an
4356 -- expression in this description, we mean any of the possible
4357 -- constituent components of an expression (e.g. identifier is
4358 -- an example of an expression).
4360 -- Note: the above syntax is that Ada 2012 syntax which restricts
4361 -- choice relations to simple expressions to avoid ambiguities in
4362 -- some contexts with set membership notation. It has been decided
4363 -- that in retrospect, the Ada 95 change allowing general expressions
4364 -- in this context was a mistake, so we have reverted to the above
4365 -- syntax in Ada 95 and Ada 2005 modes (the restriction to simple
4366 -- expressions was there in Ada 83 from the start).
4368 ------------------
4369 -- 4.4 Primary --
4370 ------------------
4372 -- PRIMARY ::=
4373 -- NUMERIC_LITERAL | null
4374 -- | STRING_LITERAL | AGGREGATE
4375 -- | NAME | QUALIFIED_EXPRESSION
4376 -- | ALLOCATOR | (EXPRESSION)
4378 -- Usually there is no explicit node in the tree for primary. Instead
4379 -- the constituent (e.g. AGGREGATE) appears directly. There are two
4380 -- exceptions. First, there is an explicit node for a null primary.
4382 -- N_Null
4383 -- Sloc points to NULL
4384 -- plus fields for expression
4386 -- Second, the case of (EXPRESSION) is handled specially. Ada requires
4387 -- that the parser keep track of which subexpressions are enclosed
4388 -- in parentheses, and how many levels of parentheses are used. This
4389 -- information is required for optimization purposes, and also for
4390 -- some semantic checks (e.g. (((1))) in a procedure spec does not
4391 -- conform with ((((1)))) in the body).
4393 -- The parentheses are recorded by keeping a Paren_Count field in every
4394 -- subexpression node (it is actually present in all nodes, but only
4395 -- used in subexpression nodes). This count records the number of
4396 -- levels of parentheses. If the number of levels in the source exceeds
4397 -- the maximum accommodated by this count, then the count is simply left
4398 -- at the maximum value. This means that there are some pathological
4399 -- cases of failure to detect conformance failures (e.g. an expression
4400 -- with 500 levels of parens will conform with one with 501 levels),
4401 -- but we do not need to lose sleep over this.
4403 -- Historical note: in versions of GNAT prior to 1.75, there was a node
4404 -- type N_Parenthesized_Expression used to accurately record unlimited
4405 -- numbers of levels of parentheses. However, it turned out to be a
4406 -- real nuisance to have to take into account the possible presence of
4407 -- this node during semantic analysis, since basically parentheses have
4408 -- zero relevance to semantic analysis.
4410 -- Note: the level of parentheses always present in things like
4411 -- aggregates does not count, only the parentheses in the primary
4412 -- (EXPRESSION) affect the setting of the Paren_Count field.
4414 -- 2nd Note: the contents of the Expression field must be ignored (i.e.
4415 -- treated as though it were Empty) if No_Initialization is set True.
4417 --------------------------------------
4418 -- 4.5 Short-Circuit Control Forms --
4419 --------------------------------------
4421 -- EXPRESSION ::=
4422 -- RELATION {and then RELATION} | RELATION {or else RELATION}
4424 -- Gigi restriction: For both these control forms, the operand and
4425 -- result types are always Standard.Boolean. The expander inserts the
4426 -- required conversion operations where needed to ensure this is the
4427 -- case.
4429 -- N_And_Then
4430 -- Sloc points to AND of AND THEN
4431 -- Left_Opnd (Node2)
4432 -- Right_Opnd (Node3)
4433 -- Actions (List1-Sem)
4434 -- plus fields for expression
4436 -- N_Or_Else
4437 -- Sloc points to OR of OR ELSE
4438 -- Left_Opnd (Node2)
4439 -- Right_Opnd (Node3)
4440 -- Actions (List1-Sem)
4441 -- plus fields for expression
4443 -- Note: The Actions field is used to hold actions associated with
4444 -- the right hand operand. These have to be treated specially since
4445 -- they are not unconditionally executed. See Insert_Actions for a
4446 -- more detailed description of how these actions are handled.
4448 ---------------------------
4449 -- 4.5 Membership Tests --
4450 ---------------------------
4452 -- RELATION ::=
4453 -- SIMPLE_EXPRESSION [not] in MEMBERSHIP_CHOICE_LIST
4455 -- MEMBERSHIP_CHOICE_LIST ::=
4456 -- MEMBERSHIP_CHOICE {'|' MEMBERSHIP CHOICE}
4458 -- MEMBERSHIP_CHOICE ::=
4459 -- CHOICE_EXPRESSION | RANGE | SUBTYPE_MARK
4461 -- Note: although the grammar above allows only a range or a subtype
4462 -- mark, the parser in fact will accept any simple expression in place
4463 -- of a subtype mark. This means that the semantic analyzer must be able
4464 -- to deal with, and diagnose a simple expression other than a name for
4465 -- the right operand. This simplifies error recovery in the parser.
4467 -- The Alternatives field below is present only if there is more than
4468 -- one Membership_Choice present (which is legitimate only in Ada 2012
4469 -- mode) in which case Right_Opnd is Empty, and Alternatives contains
4470 -- the list of choices. In the tree passed to the back end, Alternatives
4471 -- is always No_List, and Right_Opnd is set (i.e. the expansion circuit
4472 -- expands out the complex set membership case using simple membership
4473 -- and equality operations).
4475 -- Should we rename Alternatives here to Membership_Choices ???
4477 -- N_In
4478 -- Sloc points to IN
4479 -- Left_Opnd (Node2)
4480 -- Right_Opnd (Node3)
4481 -- Alternatives (List4) (set to No_List if only one set alternative)
4482 -- No_Minimize_Eliminate (Flag17)
4483 -- plus fields for expression
4485 -- N_Not_In
4486 -- Sloc points to NOT of NOT IN
4487 -- Left_Opnd (Node2)
4488 -- Right_Opnd (Node3)
4489 -- Alternatives (List4) (set to No_List if only one set alternative)
4490 -- No_Minimize_Eliminate (Flag17)
4491 -- plus fields for expression
4493 --------------------
4494 -- 4.5 Operators --
4495 --------------------
4497 -- LOGICAL_OPERATOR ::= and | or | xor
4499 -- RELATIONAL_OPERATOR ::= = | /= | < | <= | > | >=
4501 -- BINARY_ADDING_OPERATOR ::= + | - | &
4503 -- UNARY_ADDING_OPERATOR ::= + | -
4505 -- MULTIPLYING_OPERATOR ::= * | / | mod | rem
4507 -- HIGHEST_PRECEDENCE_OPERATOR ::= ** | abs | not
4509 -- Sprint syntax if Treat_Fixed_As_Integer is set:
4511 -- x #* y
4512 -- x #/ y
4513 -- x #mod y
4514 -- x #rem y
4516 -- Gigi restriction: For * / mod rem with fixed-point operands, Gigi
4517 -- will only be given nodes with the Treat_Fixed_As_Integer flag set.
4518 -- All handling of smalls for multiplication and division is handled
4519 -- by the front end (mod and rem result only from expansion). Gigi
4520 -- thus never needs to worry about small values (for other operators
4521 -- operating on fixed-point, e.g. addition, the small value does not
4522 -- have any semantic effect anyway, these are always integer operations.
4524 -- Gigi restriction: For all operators taking Boolean operands, the
4525 -- type is always Standard.Boolean. The expander inserts the required
4526 -- conversion operations where needed to ensure this is the case.
4528 -- N_Op_And
4529 -- Sloc points to AND
4530 -- Do_Length_Check (Flag4-Sem)
4531 -- plus fields for binary operator
4532 -- plus fields for expression
4534 -- N_Op_Or
4535 -- Sloc points to OR
4536 -- Do_Length_Check (Flag4-Sem)
4537 -- plus fields for binary operator
4538 -- plus fields for expression
4540 -- N_Op_Xor
4541 -- Sloc points to XOR
4542 -- Do_Length_Check (Flag4-Sem)
4543 -- plus fields for binary operator
4544 -- plus fields for expression
4546 -- N_Op_Eq
4547 -- Sloc points to =
4548 -- plus fields for binary operator
4549 -- plus fields for expression
4551 -- N_Op_Ne
4552 -- Sloc points to /=
4553 -- plus fields for binary operator
4554 -- plus fields for expression
4556 -- N_Op_Lt
4557 -- Sloc points to <
4558 -- plus fields for binary operator
4559 -- plus fields for expression
4561 -- N_Op_Le
4562 -- Sloc points to <=
4563 -- plus fields for binary operator
4564 -- plus fields for expression
4566 -- N_Op_Gt
4567 -- Sloc points to >
4568 -- plus fields for binary operator
4569 -- plus fields for expression
4571 -- N_Op_Ge
4572 -- Sloc points to >=
4573 -- plus fields for binary operator
4574 -- plus fields for expression
4576 -- N_Op_Add
4577 -- Sloc points to + (binary)
4578 -- plus fields for binary operator
4579 -- plus fields for expression
4581 -- N_Op_Subtract
4582 -- Sloc points to - (binary)
4583 -- plus fields for binary operator
4584 -- plus fields for expression
4586 -- N_Op_Concat
4587 -- Sloc points to &
4588 -- Is_Component_Left_Opnd (Flag13-Sem)
4589 -- Is_Component_Right_Opnd (Flag14-Sem)
4590 -- plus fields for binary operator
4591 -- plus fields for expression
4593 -- N_Op_Multiply
4594 -- Sloc points to *
4595 -- Treat_Fixed_As_Integer (Flag14-Sem)
4596 -- Rounded_Result (Flag18-Sem)
4597 -- plus fields for binary operator
4598 -- plus fields for expression
4600 -- N_Op_Divide
4601 -- Sloc points to /
4602 -- Treat_Fixed_As_Integer (Flag14-Sem)
4603 -- Do_Division_Check (Flag13-Sem)
4604 -- Rounded_Result (Flag18-Sem)
4605 -- plus fields for binary operator
4606 -- plus fields for expression
4608 -- N_Op_Mod
4609 -- Sloc points to MOD
4610 -- Treat_Fixed_As_Integer (Flag14-Sem)
4611 -- Do_Division_Check (Flag13-Sem)
4612 -- plus fields for binary operator
4613 -- plus fields for expression
4615 -- N_Op_Rem
4616 -- Sloc points to REM
4617 -- Treat_Fixed_As_Integer (Flag14-Sem)
4618 -- Do_Division_Check (Flag13-Sem)
4619 -- plus fields for binary operator
4620 -- plus fields for expression
4622 -- N_Op_Expon
4623 -- Sloc points to **
4624 -- Is_Power_Of_2_For_Shift (Flag13-Sem)
4625 -- plus fields for binary operator
4626 -- plus fields for expression
4628 -- N_Op_Plus
4629 -- Sloc points to + (unary)
4630 -- plus fields for unary operator
4631 -- plus fields for expression
4633 -- N_Op_Minus
4634 -- Sloc points to - (unary)
4635 -- plus fields for unary operator
4636 -- plus fields for expression
4638 -- N_Op_Abs
4639 -- Sloc points to ABS
4640 -- plus fields for unary operator
4641 -- plus fields for expression
4643 -- N_Op_Not
4644 -- Sloc points to NOT
4645 -- plus fields for unary operator
4646 -- plus fields for expression
4648 -- See also shift operators in section B.2
4650 -- Note on fixed-point operations passed to Gigi: For adding operators,
4651 -- the semantics is to treat these simply as integer operations, with
4652 -- the small values being ignored (the bounds are already stored in
4653 -- units of small, so that constraint checking works as usual). For the
4654 -- case of multiply/divide/rem/mod operations, Gigi will only see fixed
4655 -- point operands if the Treat_Fixed_As_Integer flag is set and will
4656 -- thus treat these nodes in identical manner, ignoring small values.
4658 -- Note on equality/inequality tests for records. In the expanded tree,
4659 -- record comparisons are always expanded to be a series of component
4660 -- comparisons, so the back end will never see an equality or inequality
4661 -- operation with operands of a record type.
4663 -- Note on overflow handling: When the overflow checking mode is set to
4664 -- MINIMIZED or ELIMINATED, nodes for signed arithmetic operations may
4665 -- be modified to use a larger type for the operands and result. In
4666 -- the case where the computed range exceeds that of Long_Long_Integer,
4667 -- and we are running in ELIMINATED mode, the operator node will be
4668 -- changed to be a call to the appropriate routine in System.Bignums.
4670 -- Note: In Modify_Tree_For_C mode, we do not generate an N_Op_Mod node
4671 -- for signed integer types (since there is no equivalent operator in
4672 -- C). Instead we rewrite such an operation in terms of REM (which is
4673 -- % in C) and other C-available operators.
4675 ------------------------------------
4676 -- 4.5.7 Conditional Expressions --
4677 ------------------------------------
4679 -- CONDITIONAL_EXPRESSION ::= IF_EXPRESSION | CASE_EXPRESSION
4681 --------------------------
4682 -- 4.5.7 If Expression --
4683 ----------------------------
4685 -- IF_EXPRESSION ::=
4686 -- if CONDITION then DEPENDENT_EXPRESSION
4687 -- {elsif CONDITION then DEPENDENT_EXPRESSION}
4688 -- [else DEPENDENT_EXPRESSION]
4690 -- DEPENDENT_EXPRESSION ::= EXPRESSION
4692 -- Note: if we have (IF x1 THEN x2 ELSIF x3 THEN x4 ELSE x5) then it
4693 -- is represented as (IF x1 THEN x2 ELSE (IF x3 THEN x4 ELSE x5)) and
4694 -- the Is_Elsif flag is set on the inner if expression.
4696 -- N_If_Expression
4697 -- Sloc points to IF or ELSIF keyword
4698 -- Expressions (List1)
4699 -- Then_Actions (List2-Sem)
4700 -- Else_Actions (List3-Sem)
4701 -- Is_Elsif (Flag13) (set if comes from ELSIF)
4702 -- Do_Overflow_Check (Flag17-Sem)
4703 -- plus fields for expression
4705 -- Expressions here is a three-element list, whose first element is the
4706 -- condition, the second element is the dependent expression after THEN
4707 -- and the third element is the dependent expression after the ELSE
4708 -- (explicitly set to True if missing).
4710 -- Note: the Then_Actions and Else_Actions fields are always set to
4711 -- No_List in the tree passed to the back end. These are used only
4712 -- for temporary processing purposes in the expander. Even though they
4713 -- are semantic fields, their parent pointers are set because analysis
4714 -- of actions nodes in those lists may generate additional actions that
4715 -- need to know their insertion point (for example for the creation of
4716 -- transient scopes).
4718 -- Note: in the tree passed to the back end, if the result type is
4719 -- an unconstrained array, the if expression can only appears in the
4720 -- initializing expression of an object declaration (this avoids the
4721 -- back end having to create a variable length temporary on the fly).
4723 ----------------------------
4724 -- 4.5.7 Case Expression --
4725 ----------------------------
4727 -- CASE_EXPRESSION ::=
4728 -- case SELECTING_EXPRESSION is
4729 -- CASE_EXPRESSION_ALTERNATIVE
4730 -- {,CASE_EXPRESSION_ALTERNATIVE}
4732 -- Note that the Alternatives cannot include pragmas (this contrasts
4733 -- with the situation of case statements where pragmas are allowed).
4735 -- N_Case_Expression
4736 -- Sloc points to CASE
4737 -- Expression (Node3) (the selecting expression)
4738 -- Alternatives (List4) (the case expression alternatives)
4739 -- Do_Overflow_Check (Flag17-Sem)
4741 ----------------------------------------
4742 -- 4.5.7 Case Expression Alternative --
4743 ----------------------------------------
4745 -- CASE_EXPRESSION_ALTERNATIVE ::=
4746 -- when DISCRETE_CHOICE_LIST =>
4747 -- DEPENDENT_EXPRESSION
4749 -- N_Case_Expression_Alternative
4750 -- Sloc points to WHEN
4751 -- Actions (List1)
4752 -- Discrete_Choices (List4)
4753 -- Expression (Node3)
4754 -- Has_SP_Choice (Flag15-Sem)
4756 -- Note: The Actions field temporarily holds any actions associated with
4757 -- evaluation of the Expression. During expansion of the case expression
4758 -- these actions are wrapped into an N_Expressions_With_Actions node
4759 -- replacing the original expression.
4761 -- Note: this node never appears in the tree passed to the back end,
4762 -- since the expander converts case expressions into case statements.
4764 ---------------------------------
4765 -- 4.5.8 Quantified Expression --
4766 ---------------------------------
4768 -- QUANTIFIED_EXPRESSION ::=
4769 -- for QUANTIFIER LOOP_PARAMETER_SPECIFICATION => PREDICATE
4770 -- | for QUANTIFIER ITERATOR_SPECIFICATION => PREDICATE
4772 -- QUANTIFIER ::= all | some
4774 -- At most one of (Iterator_Specification, Loop_Parameter_Specification)
4775 -- is present at a time, in which case the other one is empty.
4777 -- N_Quantified_Expression
4778 -- Sloc points to FOR
4779 -- Iterator_Specification (Node2)
4780 -- Loop_Parameter_Specification (Node4)
4781 -- Condition (Node1)
4782 -- All_Present (Flag15)
4784 --------------------------
4785 -- 4.6 Type Conversion --
4786 --------------------------
4788 -- TYPE_CONVERSION ::=
4789 -- SUBTYPE_MARK (EXPRESSION) | SUBTYPE_MARK (NAME)
4791 -- In the (NAME) case, the name is stored as the expression
4793 -- Note: the parser never generates a type conversion node, since it
4794 -- looks like an indexed component which is generated by preference.
4795 -- The semantic pass must correct this misidentification.
4797 -- Gigi handles conversions that involve no change in the root type,
4798 -- and also all conversions from integer to floating-point types.
4799 -- Conversions from floating-point to integer are only handled in
4800 -- the case where Float_Truncate flag set. Other conversions from
4801 -- floating-point to integer (involving rounding) and all conversions
4802 -- involving fixed-point types are handled by the expander.
4804 -- Sprint syntax if Float_Truncate set: X^(Y)
4805 -- Sprint syntax if Conversion_OK set X?(Y)
4806 -- Sprint syntax if both flags set X?^(Y)
4808 -- Note: If either the operand or result type is fixed-point, Gigi will
4809 -- only see a type conversion node with Conversion_OK set. The front end
4810 -- takes care of all handling of small's for fixed-point conversions.
4812 -- N_Type_Conversion
4813 -- Sloc points to first token of subtype mark
4814 -- Subtype_Mark (Node4)
4815 -- Expression (Node3)
4816 -- Do_Discriminant_Check (Flag3-Sem)
4817 -- Do_Length_Check (Flag4-Sem)
4818 -- Float_Truncate (Flag11-Sem)
4819 -- Do_Tag_Check (Flag13-Sem)
4820 -- Conversion_OK (Flag14-Sem)
4821 -- Do_Overflow_Check (Flag17-Sem)
4822 -- Rounded_Result (Flag18-Sem)
4823 -- plus fields for expression
4825 -- Note: if a range check is required, then the Do_Range_Check flag
4826 -- is set in the Expression with the check being done against the
4827 -- target type range (after the base type conversion, if any).
4829 -------------------------------
4830 -- 4.7 Qualified Expression --
4831 -------------------------------
4833 -- QUALIFIED_EXPRESSION ::=
4834 -- SUBTYPE_MARK ' (EXPRESSION) | SUBTYPE_MARK ' AGGREGATE
4836 -- Note: the parentheses in the (EXPRESSION) case are deemed to enclose
4837 -- the expression, so the Expression field of this node always points
4838 -- to a parenthesized expression in this case (i.e. Paren_Count will
4839 -- always be non-zero for the referenced expression if it is not an
4840 -- aggregate).
4842 -- N_Qualified_Expression
4843 -- Sloc points to apostrophe
4844 -- Subtype_Mark (Node4)
4845 -- Expression (Node3) expression or aggregate
4846 -- Is_Qualified_Universal_Literal (Flag4-Sem)
4847 -- plus fields for expression
4849 --------------------
4850 -- 4.8 Allocator --
4851 --------------------
4853 -- ALLOCATOR ::=
4854 -- new [SUBPOOL_SPECIFICATION] SUBTYPE_INDICATION
4855 -- | new [SUBPOOL_SPECIFICATION] QUALIFIED_EXPRESSION
4857 -- SUBPOOL_SPECIFICATION ::= (subpool_handle_NAME)
4859 -- Sprint syntax (when storage pool present)
4860 -- new xxx (storage_pool = pool)
4861 -- or
4862 -- new (subpool) xxx (storage_pool = pool)
4864 -- N_Allocator
4865 -- Sloc points to NEW
4866 -- Expression (Node3) subtype indication or qualified expression
4867 -- Subpool_Handle_Name (Node4) (set to Empty if not present)
4868 -- Storage_Pool (Node1-Sem)
4869 -- Procedure_To_Call (Node2-Sem)
4870 -- Alloc_For_BIP_Return (Flag1-Sem)
4871 -- Null_Exclusion_Present (Flag11)
4872 -- No_Initialization (Flag13-Sem)
4873 -- Is_Static_Coextension (Flag14-Sem)
4874 -- Do_Storage_Check (Flag17-Sem)
4875 -- Is_Dynamic_Coextension (Flag18-Sem)
4876 -- plus fields for expression
4878 -- Note: like all nodes, the N_Allocator has the Comes_From_Source flag.
4879 -- This flag has a special function in conjunction with the restriction
4880 -- No_Implicit_Heap_Allocations, which will be triggered if this flag
4881 -- is not set. This means that if a source allocator is replaced with
4882 -- a constructed allocator, the Comes_From_Source flag should be copied
4883 -- to the newly created allocator.
4885 ---------------------------------
4886 -- 5.1 Sequence Of Statements --
4887 ---------------------------------
4889 -- SEQUENCE_OF_STATEMENTS ::= STATEMENT {STATEMENT}
4891 -- Note: Although the parser will not accept a declaration as a
4892 -- statement, the semantic analyzer may insert declarations (e.g.
4893 -- declarations of implicit types needed for execution of other
4894 -- statements) into a sequence of statements, so the code generator
4895 -- should be prepared to accept a declaration where a statement is
4896 -- expected. Note also that pragmas can appear as statements.
4898 --------------------
4899 -- 5.1 Statement --
4900 --------------------
4902 -- STATEMENT ::=
4903 -- {LABEL} SIMPLE_STATEMENT | {LABEL} COMPOUND_STATEMENT
4905 -- There is no explicit node in the tree for a statement. Instead, the
4906 -- individual statement appears directly. Labels are treated as a
4907 -- kind of statement, i.e. they are linked into a statement list at
4908 -- the point they appear, so the labeled statement appears following
4909 -- the label or labels in the statement list.
4911 ---------------------------
4912 -- 5.1 Simple Statement --
4913 ---------------------------
4915 -- SIMPLE_STATEMENT ::= NULL_STATEMENT
4916 -- | ASSIGNMENT_STATEMENT | EXIT_STATEMENT
4917 -- | GOTO_STATEMENT | PROCEDURE_CALL_STATEMENT
4918 -- | SIMPLE_RETURN_STATEMENT | ENTRY_CALL_STATEMENT
4919 -- | REQUEUE_STATEMENT | DELAY_STATEMENT
4920 -- | ABORT_STATEMENT | RAISE_STATEMENT
4921 -- | CODE_STATEMENT
4923 -----------------------------
4924 -- 5.1 Compound Statement --
4925 -----------------------------
4927 -- COMPOUND_STATEMENT ::=
4928 -- IF_STATEMENT | CASE_STATEMENT
4929 -- | LOOP_STATEMENT | BLOCK_STATEMENT
4930 -- | EXTENDED_RETURN_STATEMENT
4931 -- | ACCEPT_STATEMENT | SELECT_STATEMENT
4933 -------------------------
4934 -- 5.1 Null Statement --
4935 -------------------------
4937 -- NULL_STATEMENT ::= null;
4939 -- N_Null_Statement
4940 -- Sloc points to NULL
4942 ----------------
4943 -- 5.1 Label --
4944 ----------------
4946 -- LABEL ::= <<label_STATEMENT_IDENTIFIER>>
4948 -- Note that the occurrence of a label is not a defining identifier,
4949 -- but rather a referencing occurrence. The defining occurrence is
4950 -- in the implicit label declaration which occurs in the innermost
4951 -- enclosing block.
4953 -- N_Label
4954 -- Sloc points to <<
4955 -- Identifier (Node1) direct name of statement identifier
4956 -- Exception_Junk (Flag8-Sem)
4958 -- Note: Before Ada 2012, a label is always followed by a statement,
4959 -- and this is true in the tree even in Ada 2012 mode (the parser
4960 -- inserts a null statement marked with Comes_From_Source False).
4962 -------------------------------
4963 -- 5.1 Statement Identifier --
4964 -------------------------------
4966 -- STATEMENT_IDENTIFIER ::= DIRECT_NAME
4968 -- The IDENTIFIER of a STATEMENT_IDENTIFIER shall be an identifier
4969 -- (not an OPERATOR_SYMBOL)
4971 -------------------------------
4972 -- 5.2 Assignment Statement --
4973 -------------------------------
4975 -- ASSIGNMENT_STATEMENT ::=
4976 -- variable_NAME := EXPRESSION;
4978 -- N_Assignment_Statement
4979 -- Sloc points to :=
4980 -- Name (Node2)
4981 -- Expression (Node3)
4982 -- Is_Elaboration_Checks_OK_Node (Flag1-Sem)
4983 -- Is_SPARK_Mode_On_Node (Flag2-Sem)
4984 -- Do_Discriminant_Check (Flag3-Sem)
4985 -- Do_Length_Check (Flag4-Sem)
4986 -- Forwards_OK (Flag5-Sem)
4987 -- Backwards_OK (Flag6-Sem)
4988 -- No_Ctrl_Actions (Flag7-Sem)
4989 -- Has_Target_Names (Flag8-Sem)
4990 -- Is_Elaboration_Code (Flag9-Sem)
4991 -- Do_Tag_Check (Flag13-Sem)
4992 -- Componentwise_Assignment (Flag14-Sem)
4993 -- Suppress_Assignment_Checks (Flag18-Sem)
4995 -- Note: if a range check is required, then the Do_Range_Check flag
4996 -- is set in the Expression (right hand side), with the check being
4997 -- done against the type of the Name (left hand side).
4999 -- Note: the back end places some restrictions on the form of the
5000 -- Expression field. If the object being assigned to is Atomic, then
5001 -- the Expression may not have the form of an aggregate (since this
5002 -- might cause the back end to generate separate assignments). In this
5003 -- case the front end must generate an extra temporary and initialize
5004 -- this temporary as required (the temporary itself is not atomic).
5006 ------------------
5007 -- Target_Name --
5008 ------------------
5010 -- N_Target_Name
5011 -- Sloc points to @
5012 -- Etype (Node5-Sem)
5014 -- Note (Ada 2020): node is used during analysis as a placeholder for
5015 -- the value of the LHS of the enclosing assignment statement. Node is
5016 -- eventually rewritten together with enclosing assignment, and backends
5017 -- are not aware of it.
5019 -----------------------
5020 -- 5.3 If Statement --
5021 -----------------------
5023 -- IF_STATEMENT ::=
5024 -- if CONDITION then
5025 -- SEQUENCE_OF_STATEMENTS
5026 -- {elsif CONDITION then
5027 -- SEQUENCE_OF_STATEMENTS}
5028 -- [else
5029 -- SEQUENCE_OF_STATEMENTS]
5030 -- end if;
5032 -- Gigi restriction: This expander ensures that the type of the
5033 -- Condition fields is always Standard.Boolean, even if the type
5034 -- in the source is some non-standard boolean type.
5036 -- N_If_Statement
5037 -- Sloc points to IF
5038 -- Condition (Node1)
5039 -- Then_Statements (List2)
5040 -- Elsif_Parts (List3) (set to No_List if none present)
5041 -- Else_Statements (List4) (set to No_List if no else part present)
5042 -- End_Span (Uint5) (set to Uint_0 if expander generated)
5043 -- From_Conditional_Expression (Flag1-Sem)
5045 -- N_Elsif_Part
5046 -- Sloc points to ELSIF
5047 -- Condition (Node1)
5048 -- Then_Statements (List2)
5049 -- Condition_Actions (List3-Sem)
5051 --------------------
5052 -- 5.3 Condition --
5053 --------------------
5055 -- CONDITION ::= boolean_EXPRESSION
5057 -------------------------
5058 -- 5.4 Case Statement --
5059 -------------------------
5061 -- CASE_STATEMENT ::=
5062 -- case EXPRESSION is
5063 -- CASE_STATEMENT_ALTERNATIVE
5064 -- {CASE_STATEMENT_ALTERNATIVE}
5065 -- end case;
5067 -- Note: the Alternatives can contain pragmas. These only occur at
5068 -- the start of the list, since any pragmas occurring after the first
5069 -- alternative are absorbed into the corresponding statement sequence.
5071 -- N_Case_Statement
5072 -- Sloc points to CASE
5073 -- Expression (Node3)
5074 -- Alternatives (List4)
5075 -- End_Span (Uint5) (set to Uint_0 if expander generated)
5076 -- From_Conditional_Expression (Flag1-Sem)
5078 -- Note: Before Ada 2012, a pragma in a statement sequence is always
5079 -- followed by a statement, and this is true in the tree even in Ada
5080 -- 2012 mode (the parser inserts a null statement marked with the flag
5081 -- Comes_From_Source False).
5083 -------------------------------------
5084 -- 5.4 Case Statement Alternative --
5085 -------------------------------------
5087 -- CASE_STATEMENT_ALTERNATIVE ::=
5088 -- when DISCRETE_CHOICE_LIST =>
5089 -- SEQUENCE_OF_STATEMENTS
5091 -- N_Case_Statement_Alternative
5092 -- Sloc points to WHEN
5093 -- Discrete_Choices (List4)
5094 -- Statements (List3)
5095 -- Has_SP_Choice (Flag15-Sem)
5097 -- Note: in the list of Discrete_Choices, the tree passed to the back
5098 -- end does not have choice entries corresponding to names of statically
5099 -- predicated subtypes. Such entries are always expanded out to the list
5100 -- of equivalent values or ranges. The ASIS tree generated in -gnatct
5101 -- mode does not have this expansion, and has the original choices.
5103 -------------------------
5104 -- 5.5 Loop Statement --
5105 -------------------------
5107 -- LOOP_STATEMENT ::=
5108 -- [loop_STATEMENT_IDENTIFIER :]
5109 -- [ITERATION_SCHEME] loop
5110 -- SEQUENCE_OF_STATEMENTS
5111 -- end loop [loop_IDENTIFIER];
5113 -- Note: The occurrence of a loop label is not a defining identifier
5114 -- but rather a referencing occurrence. The defining occurrence is in
5115 -- the implicit label declaration which occurs in the innermost
5116 -- enclosing block.
5118 -- Note: there is always a loop statement identifier present in the
5119 -- tree, even if none was given in the source. In the case where no loop
5120 -- identifier is given in the source, the parser creates a name of the
5121 -- form _Loop_n, where n is a decimal integer (the two underlines ensure
5122 -- that the loop names created in this manner do not conflict with any
5123 -- user defined identifiers), and the flag Has_Created_Identifier is set
5124 -- to True. The only exception to the rule that all loop statement nodes
5125 -- have identifiers occurs for loops constructed by the expander, and
5126 -- the semantic analyzer will create and supply dummy loop identifiers
5127 -- in these cases.
5129 -- N_Loop_Statement
5130 -- Sloc points to LOOP
5131 -- Identifier (Node1) loop identifier (set to Empty if no identifier)
5132 -- Iteration_Scheme (Node2) (set to Empty if no iteration scheme)
5133 -- Statements (List3)
5134 -- End_Label (Node4)
5135 -- Has_Created_Identifier (Flag15)
5136 -- Is_Null_Loop (Flag16)
5137 -- Suppress_Loop_Warnings (Flag17)
5139 -- Note: the parser fills in the Identifier field if there is an
5140 -- explicit loop identifier. Otherwise the parser leaves this field
5141 -- set to Empty, and then the semantic processing for a loop statement
5142 -- creates an identifier, setting the Has_Created_Identifier flag to
5143 -- True. So after semantic analysis, the Identifier is always set,
5144 -- referencing an identifier whose entity has an Ekind of E_Loop.
5146 ---------------------------
5147 -- 5.5 Iteration Scheme --
5148 ---------------------------
5150 -- ITERATION_SCHEME ::=
5151 -- while CONDITION
5152 -- | for LOOP_PARAMETER_SPECIFICATION
5153 -- | for ITERATOR_SPECIFICATION
5155 -- At most one of (Iterator_Specification, Loop_Parameter_Specification)
5156 -- is present at a time, in which case the other one is empty. Both are
5157 -- empty in the case of a WHILE loop.
5159 -- Gigi restriction: The expander ensures that the type of the Condition
5160 -- field is always Standard.Boolean, even if the type in the source is
5161 -- some non-standard boolean type.
5163 -- N_Iteration_Scheme
5164 -- Sloc points to WHILE or FOR
5165 -- Condition (Node1) (set to Empty if FOR case)
5166 -- Condition_Actions (List3-Sem)
5167 -- Iterator_Specification (Node2) (set to Empty if WHILE case)
5168 -- Loop_Parameter_Specification (Node4) (set to Empty if WHILE case)
5170 ---------------------------------------
5171 -- 5.5 Loop Parameter Specification --
5172 ---------------------------------------
5174 -- LOOP_PARAMETER_SPECIFICATION ::=
5175 -- DEFINING_IDENTIFIER in [reverse] DISCRETE_SUBTYPE_DEFINITION
5177 -- N_Loop_Parameter_Specification
5178 -- Sloc points to first identifier
5179 -- Defining_Identifier (Node1)
5180 -- Reverse_Present (Flag15)
5181 -- Discrete_Subtype_Definition (Node4)
5183 -----------------------------------
5184 -- 5.5.1 Iterator Specification --
5185 -----------------------------------
5187 -- ITERATOR_SPECIFICATION ::=
5188 -- DEFINING_IDENTIFIER in [reverse] NAME
5189 -- | DEFINING_IDENTIFIER [: SUBTYPE_INDICATION] of [reverse] NAME
5191 -- N_Iterator_Specification
5192 -- Sloc points to defining identifier
5193 -- Defining_Identifier (Node1)
5194 -- Name (Node2)
5195 -- Reverse_Present (Flag15)
5196 -- Of_Present (Flag16)
5197 -- Subtype_Indication (Node5)
5199 -- Note: The Of_Present flag distinguishes the two forms
5201 --------------------------
5202 -- 5.6 Block Statement --
5203 --------------------------
5205 -- BLOCK_STATEMENT ::=
5206 -- [block_STATEMENT_IDENTIFIER:]
5207 -- [declare
5208 -- DECLARATIVE_PART]
5209 -- begin
5210 -- HANDLED_SEQUENCE_OF_STATEMENTS
5211 -- end [block_IDENTIFIER];
5213 -- Note that the occurrence of a block identifier is not a defining
5214 -- identifier, but rather a referencing occurrence. The defining
5215 -- occurrence is an E_Block entity declared by the implicit label
5216 -- declaration which occurs in the innermost enclosing block statement
5217 -- or body; the block identifier denotes that E_Block.
5219 -- For block statements that come from source code, there is always a
5220 -- block statement identifier present in the tree, denoting an E_Block.
5221 -- In the case where no block identifier is given in the source,
5222 -- the parser creates a name of the form B_n, where n is a decimal
5223 -- integer, and the flag Has_Created_Identifier is set to True. Blocks
5224 -- constructed by the expander usually have no identifier, and no
5225 -- corresponding entity.
5227 -- Note: the block statement created for an extended return statement
5228 -- has an entity, and this entity is an E_Return_Statement, rather than
5229 -- the usual E_Block.
5231 -- Note: Exception_Junk is set for the wrapping blocks created during
5232 -- local raise optimization (Exp_Ch11.Expand_Local_Exception_Handlers).
5234 -- Note: from a control flow viewpoint, a block statement defines an
5235 -- extended basic block, i.e. the entry of the block dominates every
5236 -- statement in the sequence. When generating new statements with
5237 -- exception handlers in the expander at the end of a sequence that
5238 -- comes from source code, it can be necessary to wrap them all in a
5239 -- block statement in order to expose the implicit control flow to
5240 -- gigi and thus prevent it from issuing bogus control flow warnings.
5242 -- N_Block_Statement
5243 -- Sloc points to DECLARE or BEGIN
5244 -- Identifier (Node1) block direct name (set to Empty if not present)
5245 -- Declarations (List2) (set to No_List if no DECLARE part)
5246 -- Handled_Statement_Sequence (Node4)
5247 -- Activation_Chain_Entity (Node3-Sem)
5248 -- Cleanup_Actions (List5-Sem)
5249 -- Has_Created_Identifier (Flag15)
5250 -- Is_Asynchronous_Call_Block (Flag7)
5251 -- Is_Task_Allocation_Block (Flag6)
5252 -- Exception_Junk (Flag8-Sem)
5253 -- Is_Abort_Block (Flag4-Sem)
5254 -- Is_Finalization_Wrapper (Flag9-Sem)
5255 -- Is_Initialization_Block (Flag1-Sem)
5256 -- Is_Task_Master (Flag5-Sem)
5258 -------------------------
5259 -- 5.7 Exit Statement --
5260 -------------------------
5262 -- EXIT_STATEMENT ::= exit [loop_NAME] [when CONDITION];
5264 -- Gigi restriction: The expander ensures that the type of the Condition
5265 -- field is always Standard.Boolean, even if the type in the source is
5266 -- some non-standard boolean type.
5268 -- N_Exit_Statement
5269 -- Sloc points to EXIT
5270 -- Name (Node2) (set to Empty if no loop name present)
5271 -- Condition (Node1) (set to Empty if no WHEN part present)
5272 -- Next_Exit_Statement (Node3-Sem): Next exit on chain
5274 -------------------------
5275 -- 5.9 Goto Statement --
5276 -------------------------
5278 -- GOTO_STATEMENT ::= goto label_NAME;
5280 -- N_Goto_Statement
5281 -- Sloc points to GOTO
5282 -- Name (Node2)
5283 -- Exception_Junk (Flag8-Sem)
5285 ---------------------------------
5286 -- 6.1 Subprogram Declaration --
5287 ---------------------------------
5289 -- SUBPROGRAM_DECLARATION ::=
5290 -- SUBPROGRAM_SPECIFICATION
5291 -- [ASPECT_SPECIFICATIONS];
5293 -- N_Subprogram_Declaration
5294 -- Sloc points to FUNCTION or PROCEDURE
5295 -- Specification (Node1)
5296 -- Body_To_Inline (Node3-Sem)
5297 -- Corresponding_Body (Node5-Sem)
5298 -- Parent_Spec (Node4-Sem)
5299 -- Is_Entry_Barrier_Function (Flag8-Sem)
5300 -- Is_Task_Body_Procedure (Flag1-Sem)
5302 ------------------------------------------
5303 -- 6.1 Abstract Subprogram Declaration --
5304 ------------------------------------------
5306 -- ABSTRACT_SUBPROGRAM_DECLARATION ::=
5307 -- SUBPROGRAM_SPECIFICATION is abstract
5308 -- [ASPECT_SPECIFICATIONS];
5310 -- N_Abstract_Subprogram_Declaration
5311 -- Sloc points to ABSTRACT
5312 -- Specification (Node1)
5314 -----------------------------------
5315 -- 6.1 Subprogram Specification --
5316 -----------------------------------
5318 -- SUBPROGRAM_SPECIFICATION ::=
5319 -- [[not] overriding]
5320 -- procedure DEFINING_PROGRAM_UNIT_NAME PARAMETER_PROFILE
5321 -- | [[not] overriding]
5322 -- function DEFINING_DESIGNATOR PARAMETER_AND_RESULT_PROFILE
5324 -- Note: there are no separate nodes for the profiles, instead the
5325 -- information appears directly in the following nodes.
5327 -- N_Function_Specification
5328 -- Sloc points to FUNCTION
5329 -- Defining_Unit_Name (Node1) (the designator)
5330 -- Parameter_Specifications (List3) (set to No_List if no formal part)
5331 -- Null_Exclusion_Present (Flag11)
5332 -- Result_Definition (Node4) for result subtype
5333 -- Generic_Parent (Node5-Sem)
5334 -- Must_Override (Flag14) set if overriding indicator present
5335 -- Must_Not_Override (Flag15) set if not_overriding indicator present
5337 -- N_Procedure_Specification
5338 -- Sloc points to PROCEDURE
5339 -- Defining_Unit_Name (Node1)
5340 -- Null_Statement (Node2-Sem) NULL statement for body, if Null_Present
5341 -- Parameter_Specifications (List3) (set to No_List if no formal part)
5342 -- Generic_Parent (Node5-Sem)
5343 -- Null_Present (Flag13) set for null procedure case (Ada 2005 feature)
5344 -- Must_Override (Flag14) set if overriding indicator present
5345 -- Must_Not_Override (Flag15) set if not_overriding indicator present
5347 -- Note: overriding indicator is an Ada 2005 feature
5349 ---------------------
5350 -- 6.1 Designator --
5351 ---------------------
5353 -- DESIGNATOR ::=
5354 -- [PARENT_UNIT_NAME .] IDENTIFIER | OPERATOR_SYMBOL
5356 -- Designators that are simply identifiers or operator symbols appear
5357 -- directly in the tree in this form. The following node is used only
5358 -- in the case where the designator has a parent unit name component.
5360 -- N_Designator
5361 -- Sloc points to period
5362 -- Name (Node2) holds the parent unit name
5363 -- Identifier (Node1)
5365 -- Note: Name is always non-Empty, since this node is only used for the
5366 -- case where a parent library unit package name is present.
5368 -- Note that the identifier can also be an operator symbol here
5370 ------------------------------
5371 -- 6.1 Defining Designator --
5372 ------------------------------
5374 -- DEFINING_DESIGNATOR ::=
5375 -- DEFINING_PROGRAM_UNIT_NAME | DEFINING_OPERATOR_SYMBOL
5377 -------------------------------------
5378 -- 6.1 Defining Program Unit Name --
5379 -------------------------------------
5381 -- DEFINING_PROGRAM_UNIT_NAME ::=
5382 -- [PARENT_UNIT_NAME .] DEFINING_IDENTIFIER
5384 -- The parent unit name is present only in the case of a child unit name
5385 -- (permissible only for Ada 95 for a library level unit, i.e. a unit
5386 -- at scope level one). If no such name is present, the defining program
5387 -- unit name is represented simply as the defining identifier. In the
5388 -- child unit case, the following node is used to represent the child
5389 -- unit name.
5391 -- N_Defining_Program_Unit_Name
5392 -- Sloc points to period
5393 -- Name (Node2) holds the parent unit name
5394 -- Defining_Identifier (Node1)
5396 -- Note: Name is always non-Empty, since this node is only used for the
5397 -- case where a parent unit name is present.
5399 --------------------------
5400 -- 6.1 Operator Symbol --
5401 --------------------------
5403 -- OPERATOR_SYMBOL ::= STRING_LITERAL
5405 -- Note: the fields of the N_Operator_Symbol node are laid out to match
5406 -- the corresponding fields of an N_Character_Literal node. This allows
5407 -- easy conversion of the operator symbol node into a character literal
5408 -- node in the case where a string constant of the form of an operator
5409 -- symbol is scanned out as such, but turns out semantically to be a
5410 -- string literal that is not an operator. For details see Sinfo.CN.
5411 -- Change_Operator_Symbol_To_String_Literal.
5413 -- N_Operator_Symbol
5414 -- Sloc points to literal
5415 -- Chars (Name1) contains the Name_Id for the operator symbol
5416 -- Strval (Str3) Id of string value. This is used if the operator
5417 -- symbol turns out to be a normal string after all.
5418 -- Entity (Node4-Sem)
5419 -- Associated_Node (Node4-Sem)
5420 -- Etype (Node5-Sem)
5421 -- Has_Private_View (Flag11-Sem) set in generic units
5423 -- Note: the Strval field may be set to No_String for generated
5424 -- operator symbols that are known not to be string literals
5425 -- semantically.
5427 -----------------------------------
5428 -- 6.1 Defining Operator Symbol --
5429 -----------------------------------
5431 -- DEFINING_OPERATOR_SYMBOL ::= OPERATOR_SYMBOL
5433 -- A defining operator symbol is an entity, which has additional
5434 -- fields depending on the setting of the Ekind field. These
5435 -- additional fields are defined (and access subprograms declared)
5436 -- in package Einfo.
5438 -- Note: N_Defining_Operator_Symbol is an extended node whose fields
5439 -- are deliberately layed out to match the layout of fields in an
5440 -- ordinary N_Operator_Symbol node allowing for easy alteration of
5441 -- an operator symbol node into a defining operator symbol node.
5442 -- See Sinfo.CN.Change_Operator_Symbol_To_Defining_Operator_Symbol
5443 -- for further details.
5445 -- N_Defining_Operator_Symbol
5446 -- Sloc points to literal
5447 -- Chars (Name1) contains the Name_Id for the operator symbol
5448 -- Next_Entity (Node2-Sem)
5449 -- Scope (Node3-Sem)
5450 -- Etype (Node5-Sem)
5452 ----------------------------
5453 -- 6.1 Parameter Profile --
5454 ----------------------------
5456 -- PARAMETER_PROFILE ::= [FORMAL_PART]
5458 ---------------------------------------
5459 -- 6.1 Parameter and Result Profile --
5460 ---------------------------------------
5462 -- PARAMETER_AND_RESULT_PROFILE ::=
5463 -- [FORMAL_PART] return [NULL_EXCLUSION] SUBTYPE_MARK
5464 -- | [FORMAL_PART] return ACCESS_DEFINITION
5466 -- There is no explicit node in the tree for a parameter and result
5467 -- profile. Instead the information appears directly in the parent.
5469 ----------------------
5470 -- 6.1 Formal Part --
5471 ----------------------
5473 -- FORMAL_PART ::=
5474 -- (PARAMETER_SPECIFICATION {; PARAMETER_SPECIFICATION})
5476 ----------------------------------
5477 -- 6.1 Parameter Specification --
5478 ----------------------------------
5480 -- PARAMETER_SPECIFICATION ::=
5481 -- DEFINING_IDENTIFIER_LIST : [ALIASED] MODE [NULL_EXCLUSION]
5482 -- SUBTYPE_MARK [:= DEFAULT_EXPRESSION]
5483 -- | DEFINING_IDENTIFIER_LIST : ACCESS_DEFINITION
5484 -- [:= DEFAULT_EXPRESSION]
5486 -- Although the syntax allows multiple identifiers in the list, the
5487 -- semantics is as though successive specifications were given with
5488 -- identical type definition and expression components. To simplify
5489 -- semantic processing, the parser represents a multiple declaration
5490 -- case as a sequence of single Specifications, using the More_Ids and
5491 -- Prev_Ids flags to preserve the original source form as described
5492 -- in the section on "Handling of Defining Identifier Lists".
5494 -- ALIASED can only be present in Ada 2012 mode
5496 -- N_Parameter_Specification
5497 -- Sloc points to first identifier
5498 -- Defining_Identifier (Node1)
5499 -- Aliased_Present (Flag4)
5500 -- In_Present (Flag15)
5501 -- Out_Present (Flag17)
5502 -- Null_Exclusion_Present (Flag11)
5503 -- Parameter_Type (Node2) subtype mark or access definition
5504 -- Expression (Node3) (set to Empty if no default expression present)
5505 -- Do_Accessibility_Check (Flag13-Sem)
5506 -- More_Ids (Flag5) (set to False if no more identifiers in list)
5507 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
5508 -- Default_Expression (Node5-Sem)
5510 ---------------
5511 -- 6.1 Mode --
5512 ---------------
5514 -- MODE ::= [in] | in out | out
5516 -- There is no explicit node in the tree for the Mode. Instead the
5517 -- In_Present and Out_Present flags are set in the parent node to
5518 -- record the presence of keywords specifying the mode.
5520 --------------------------
5521 -- 6.3 Subprogram Body --
5522 --------------------------
5524 -- SUBPROGRAM_BODY ::=
5525 -- SUBPROGRAM_SPECIFICATION [ASPECT_SPECIFICATIONS] is
5526 -- DECLARATIVE_PART
5527 -- begin
5528 -- HANDLED_SEQUENCE_OF_STATEMENTS
5529 -- end [DESIGNATOR];
5531 -- N_Subprogram_Body
5532 -- Sloc points to FUNCTION or PROCEDURE
5533 -- Specification (Node1)
5534 -- Declarations (List2)
5535 -- Handled_Statement_Sequence (Node4)
5536 -- Activation_Chain_Entity (Node3-Sem)
5537 -- Corresponding_Spec (Node5-Sem)
5538 -- Acts_As_Spec (Flag4-Sem)
5539 -- Bad_Is_Detected (Flag15) used only by parser
5540 -- Do_Storage_Check (Flag17-Sem)
5541 -- Has_Relative_Deadline_Pragma (Flag9-Sem)
5542 -- Is_Entry_Barrier_Function (Flag8-Sem)
5543 -- Is_Protected_Subprogram_Body (Flag7-Sem)
5544 -- Is_Task_Body_Procedure (Flag1-Sem)
5545 -- Is_Task_Master (Flag5-Sem)
5546 -- Was_Attribute_Reference (Flag2-Sem)
5547 -- Was_Expression_Function (Flag18-Sem)
5548 -- Was_Originally_Stub (Flag13-Sem)
5550 -----------------------------------
5551 -- 6.4 Procedure Call Statement --
5552 -----------------------------------
5554 -- PROCEDURE_CALL_STATEMENT ::=
5555 -- procedure_NAME; | procedure_PREFIX ACTUAL_PARAMETER_PART;
5557 -- Note: the reason that a procedure call has expression fields is that
5558 -- it semantically resembles an expression, e.g. overloading is allowed
5559 -- and a type is concocted for semantic processing purposes. Certain of
5560 -- these fields, such as Parens are not relevant, but it is easier to
5561 -- just supply all of them together.
5563 -- N_Procedure_Call_Statement
5564 -- Sloc points to first token of name or prefix
5565 -- Name (Node2) stores name or prefix
5566 -- Parameter_Associations (List3) (set to No_List if no
5567 -- actual parameter part)
5568 -- First_Named_Actual (Node4-Sem)
5569 -- Controlling_Argument (Node1-Sem) (set to Empty if not dispatching)
5570 -- Is_Elaboration_Checks_OK_Node (Flag1-Sem)
5571 -- Is_SPARK_Mode_On_Node (Flag2-Sem)
5572 -- Is_Elaboration_Warnings_OK_Node (Flag3-Sem)
5573 -- No_Elaboration_Check (Flag4-Sem)
5574 -- Do_Tag_Check (Flag13-Sem)
5575 -- Is_Known_Guaranteed_ABE (Flag18-Sem)
5576 -- plus fields for expression
5578 -- If any IN parameter requires a range check, then the corresponding
5579 -- argument expression has the Do_Range_Check flag set, and the range
5580 -- check is done against the formal type. Note that this argument
5581 -- expression may appear directly in the Parameter_Associations list,
5582 -- or may be a descendant of an N_Parameter_Association node that
5583 -- appears in this list.
5585 ------------------------
5586 -- 6.4 Function Call --
5587 ------------------------
5589 -- FUNCTION_CALL ::=
5590 -- function_NAME | function_PREFIX ACTUAL_PARAMETER_PART
5592 -- Note: the parser may generate an indexed component node or simply
5593 -- a name node instead of a function call node. The semantic pass must
5594 -- correct this misidentification.
5596 -- N_Function_Call
5597 -- Sloc points to first token of name or prefix
5598 -- Name (Node2) stores name or prefix
5599 -- Parameter_Associations (List3) (set to No_List if no
5600 -- actual parameter part)
5601 -- First_Named_Actual (Node4-Sem)
5602 -- Controlling_Argument (Node1-Sem) (set to Empty if not dispatching)
5603 -- Is_Elaboration_Checks_OK_Node (Flag1-Sem)
5604 -- Is_SPARK_Mode_On_Node (Flag2-Sem)
5605 -- Is_Elaboration_Warnings_OK_Node (Flag3-Sem)
5606 -- No_Elaboration_Check (Flag4-Sem)
5607 -- Is_Expanded_Build_In_Place_Call (Flag11-Sem)
5608 -- Do_Tag_Check (Flag13-Sem)
5609 -- No_Side_Effect_Removal (Flag17-Sem)
5610 -- Is_Known_Guaranteed_ABE (Flag18-Sem)
5611 -- plus fields for expression
5613 --------------------------------
5614 -- 6.4 Actual Parameter Part --
5615 --------------------------------
5617 -- ACTUAL_PARAMETER_PART ::=
5618 -- (PARAMETER_ASSOCIATION {,PARAMETER_ASSOCIATION})
5620 --------------------------------
5621 -- 6.4 Parameter Association --
5622 --------------------------------
5624 -- PARAMETER_ASSOCIATION ::=
5625 -- [formal_parameter_SELECTOR_NAME =>] EXPLICIT_ACTUAL_PARAMETER
5627 -- Note: the N_Parameter_Association node is built only if a formal
5628 -- parameter selector name is present, otherwise the parameter
5629 -- association appears in the tree simply as the node for the
5630 -- explicit actual parameter.
5632 -- N_Parameter_Association
5633 -- Sloc points to formal parameter
5634 -- Selector_Name (Node2) (always non-Empty)
5635 -- Explicit_Actual_Parameter (Node3)
5636 -- Next_Named_Actual (Node4-Sem)
5637 -- Is_Accessibility_Actual (Flag13-Sem)
5639 ---------------------------
5640 -- 6.4 Actual Parameter --
5641 ---------------------------
5643 -- EXPLICIT_ACTUAL_PARAMETER ::=
5644 -- EXPRESSION | variable_NAME | REDUCTION_EXPRESSION_PARAMETER
5646 ---------------------------
5647 -- 6.5 Return Statement --
5648 ---------------------------
5650 -- SIMPLE_RETURN_STATEMENT ::= return [EXPRESSION];
5652 -- EXTENDED_RETURN_STATEMENT ::=
5653 -- return DEFINING_IDENTIFIER : [aliased] RETURN_SUBTYPE_INDICATION
5654 -- [:= EXPRESSION] [do
5655 -- HANDLED_SEQUENCE_OF_STATEMENTS
5656 -- end return];
5658 -- RETURN_SUBTYPE_INDICATION ::= SUBTYPE_INDICATION | ACCESS_DEFINITION
5660 -- The term "return statement" is defined in 6.5 to mean either a
5661 -- SIMPLE_RETURN_STATEMENT or an EXTENDED_RETURN_STATEMENT. We avoid
5662 -- the use of this term, since it used to mean someting else in earlier
5663 -- versions of Ada.
5665 -- N_Simple_Return_Statement
5666 -- Sloc points to RETURN
5667 -- Return_Statement_Entity (Node5-Sem)
5668 -- Expression (Node3) (set to Empty if no expression present)
5669 -- Storage_Pool (Node1-Sem)
5670 -- Procedure_To_Call (Node2-Sem)
5671 -- Do_Tag_Check (Flag13-Sem)
5672 -- By_Ref (Flag5-Sem)
5673 -- Comes_From_Extended_Return_Statement (Flag18-Sem)
5675 -- Note: Return_Statement_Entity points to an E_Return_Statement
5677 -- If a range check is required, then Do_Range_Check is set on the
5678 -- Expression. The check is against the return subtype of the function.
5680 -- N_Extended_Return_Statement
5681 -- Sloc points to RETURN
5682 -- Return_Statement_Entity (Node5-Sem)
5683 -- Return_Object_Declarations (List3)
5684 -- Handled_Statement_Sequence (Node4) (set to Empty if not present)
5685 -- Storage_Pool (Node1-Sem)
5686 -- Procedure_To_Call (Node2-Sem)
5687 -- Do_Tag_Check (Flag13-Sem)
5688 -- By_Ref (Flag5-Sem)
5690 -- Note: Return_Statement_Entity points to an E_Return_Statement.
5692 -- Note that Return_Object_Declarations is a list containing the
5693 -- N_Object_Declaration -- see comment on this field above.
5695 -- The declared object will have Is_Return_Object = True.
5697 -- There is no such syntactic category as return_object_declaration
5698 -- in the RM. Return_Object_Declarations represents this portion of
5699 -- the syntax for EXTENDED_RETURN_STATEMENT:
5700 -- DEFINING_IDENTIFIER : [aliased] RETURN_SUBTYPE_INDICATION
5701 -- [:= EXPRESSION]
5703 -- There are two entities associated with an extended_return_statement:
5704 -- the Return_Statement_Entity represents the statement itself,
5705 -- and the Defining_Identifier of the Object_Declaration in
5706 -- Return_Object_Declarations represents the object being
5707 -- returned. N_Simple_Return_Statement has only the former.
5709 ------------------------------
5710 -- 6.8 Expression Function --
5711 ------------------------------
5713 -- EXPRESSION_FUNCTION ::=
5714 -- FUNCTION SPECIFICATION IS (EXPRESSION)
5715 -- [ASPECT_SPECIFICATIONS];
5717 -- N_Expression_Function
5718 -- Sloc points to FUNCTION
5719 -- Specification (Node1)
5720 -- Expression (Node3)
5721 -- Corresponding_Spec (Node5-Sem)
5723 ------------------------------
5724 -- 7.1 Package Declaration --
5725 ------------------------------
5727 -- PACKAGE_DECLARATION ::=
5728 -- PACKAGE_SPECIFICATION;
5730 -- Note: the activation chain entity for a package spec is used for
5731 -- all tasks declared in the package spec, or in the package body.
5733 -- N_Package_Declaration
5734 -- Sloc points to PACKAGE
5735 -- Specification (Node1)
5736 -- Corresponding_Body (Node5-Sem)
5737 -- Parent_Spec (Node4-Sem)
5738 -- Activation_Chain_Entity (Node3-Sem)
5740 --------------------------------
5741 -- 7.1 Package Specification --
5742 --------------------------------
5744 -- PACKAGE_SPECIFICATION ::=
5745 -- package DEFINING_PROGRAM_UNIT_NAME
5746 -- [ASPECT_SPECIFICATIONS]
5747 -- is
5748 -- {BASIC_DECLARATIVE_ITEM}
5749 -- [private
5750 -- {BASIC_DECLARATIVE_ITEM}]
5751 -- end [[PARENT_UNIT_NAME .] IDENTIFIER]
5753 -- N_Package_Specification
5754 -- Sloc points to PACKAGE
5755 -- Defining_Unit_Name (Node1)
5756 -- Visible_Declarations (List2)
5757 -- Private_Declarations (List3) (set to No_List if no private
5758 -- part present)
5759 -- End_Label (Node4)
5760 -- Generic_Parent (Node5-Sem)
5761 -- Limited_View_Installed (Flag18-Sem)
5763 -----------------------
5764 -- 7.1 Package Body --
5765 -----------------------
5767 -- PACKAGE_BODY ::=
5768 -- package body DEFINING_PROGRAM_UNIT_NAME
5769 -- [ASPECT_SPECIFICATIONS]
5770 -- is
5771 -- DECLARATIVE_PART
5772 -- [begin
5773 -- HANDLED_SEQUENCE_OF_STATEMENTS]
5774 -- end [[PARENT_UNIT_NAME .] IDENTIFIER];
5776 -- N_Package_Body
5777 -- Sloc points to PACKAGE
5778 -- Defining_Unit_Name (Node1)
5779 -- Declarations (List2)
5780 -- Handled_Statement_Sequence (Node4) (set to Empty if no HSS present)
5781 -- Corresponding_Spec (Node5-Sem)
5782 -- Was_Originally_Stub (Flag13-Sem)
5784 -- Note: if a source level package does not contain a handled sequence
5785 -- of statements, then the parser supplies a dummy one with a null
5786 -- sequence of statements. Comes_From_Source will be False in this
5787 -- constructed sequence. The reason we need this is for the End_Label
5788 -- field in the HSS.
5790 -----------------------------------
5791 -- 7.4 Private Type Declaration --
5792 -----------------------------------
5794 -- PRIVATE_TYPE_DECLARATION ::=
5795 -- type DEFINING_IDENTIFIER [DISCRIMINANT_PART]
5796 -- is [[abstract] tagged] [limited] private
5797 -- [ASPECT_SPECIFICATIONS];
5799 -- Note: TAGGED is not permitted in Ada 83 mode
5801 -- N_Private_Type_Declaration
5802 -- Sloc points to TYPE
5803 -- Defining_Identifier (Node1)
5804 -- Discriminant_Specifications (List4) (set to No_List if no
5805 -- discriminant part)
5806 -- Unknown_Discriminants_Present (Flag13) set if (<>) discriminant
5807 -- Abstract_Present (Flag4)
5808 -- Tagged_Present (Flag15)
5809 -- Limited_Present (Flag17)
5811 ----------------------------------------
5812 -- 7.4 Private Extension Declaration --
5813 ----------------------------------------
5815 -- PRIVATE_EXTENSION_DECLARATION ::=
5816 -- type DEFINING_IDENTIFIER [DISCRIMINANT_PART] is
5817 -- [abstract] [limited | synchronized]
5818 -- new ancestor_SUBTYPE_INDICATION [and INTERFACE_LIST]
5819 -- with private [ASPECT_SPECIFICATIONS];
5821 -- Note: LIMITED, and private extension declarations are not allowed
5822 -- in Ada 83 mode.
5824 -- N_Private_Extension_Declaration
5825 -- Sloc points to TYPE
5826 -- Defining_Identifier (Node1)
5827 -- Uninitialized_Variable (Node3-Sem)
5828 -- Discriminant_Specifications (List4) (set to No_List if no
5829 -- discriminant part)
5830 -- Unknown_Discriminants_Present (Flag13) set if (<>) discriminant
5831 -- Abstract_Present (Flag4)
5832 -- Limited_Present (Flag17)
5833 -- Synchronized_Present (Flag7)
5834 -- Subtype_Indication (Node5)
5835 -- Interface_List (List2) (set to No_List if none)
5837 ---------------------
5838 -- 8.4 Use Clause --
5839 ---------------------
5841 -- USE_CLAUSE ::= USE_PACKAGE_CLAUSE | USE_TYPE_CLAUSE
5843 -----------------------------
5844 -- 8.4 Use Package Clause --
5845 -----------------------------
5847 -- USE_PACKAGE_CLAUSE ::= use package_NAME {, package_NAME};
5849 -- N_Use_Package_Clause
5850 -- Sloc points to USE
5851 -- Prev_Use_Clause (Node1-Sem)
5852 -- Name (Node2)
5853 -- Next_Use_Clause (Node3-Sem)
5854 -- Associated_Node (Node4-Sem)
5855 -- Hidden_By_Use_Clause (Elist5-Sem)
5856 -- Is_Effective_Use_Clause (Flag1)
5857 -- More_Ids (Flag5) (set to False if no more identifiers in list)
5858 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
5860 --------------------------
5861 -- 8.4 Use Type Clause --
5862 --------------------------
5864 -- USE_TYPE_CLAUSE ::= use [ALL] type SUBTYPE_MARK {, SUBTYPE_MARK};
5866 -- Note: use type clause is not permitted in Ada 83 mode
5868 -- Note: the ALL keyword can appear only in Ada 2012 mode
5870 -- N_Use_Type_Clause
5871 -- Sloc points to USE
5872 -- Prev_Use_Clause (Node1-Sem)
5873 -- Used_Operations (Elist2-Sem)
5874 -- Next_Use_Clause (Node3-Sem)
5875 -- Subtype_Mark (Node4)
5876 -- Hidden_By_Use_Clause (Elist5-Sem)
5877 -- Is_Effective_Use_Clause (Flag1)
5878 -- More_Ids (Flag5) (set to False if no more identifiers in list)
5879 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
5880 -- All_Present (Flag15)
5882 -------------------------------
5883 -- 8.5 Renaming Declaration --
5884 -------------------------------
5886 -- RENAMING_DECLARATION ::=
5887 -- OBJECT_RENAMING_DECLARATION
5888 -- | EXCEPTION_RENAMING_DECLARATION
5889 -- | PACKAGE_RENAMING_DECLARATION
5890 -- | SUBPROGRAM_RENAMING_DECLARATION
5891 -- | GENERIC_RENAMING_DECLARATION
5893 --------------------------------------
5894 -- 8.5 Object Renaming Declaration --
5895 --------------------------------------
5897 -- OBJECT_RENAMING_DECLARATION ::=
5898 -- DEFINING_IDENTIFIER :
5899 -- [NULL_EXCLUSION] SUBTYPE_MARK renames object_NAME
5900 -- [ASPECT_SPECIFICATIONS];
5901 -- | DEFINING_IDENTIFIER :
5902 -- ACCESS_DEFINITION renames object_NAME
5903 -- [ASPECT_SPECIFICATIONS];
5905 -- Note: Access_Definition is an optional field that gives support to
5906 -- Ada 2005 (AI-230). The parser generates nodes that have either the
5907 -- Subtype_Indication field or else the Access_Definition field.
5909 -- N_Object_Renaming_Declaration
5910 -- Sloc points to first identifier
5911 -- Defining_Identifier (Node1)
5912 -- Null_Exclusion_Present (Flag11) (set to False if not present)
5913 -- Subtype_Mark (Node4) (set to Empty if not present)
5914 -- Access_Definition (Node3) (set to Empty if not present)
5915 -- Name (Node2)
5916 -- Corresponding_Generic_Association (Node5-Sem)
5918 -----------------------------------------
5919 -- 8.5 Exception Renaming Declaration --
5920 -----------------------------------------
5922 -- EXCEPTION_RENAMING_DECLARATION ::=
5923 -- DEFINING_IDENTIFIER : exception renames exception_NAME
5924 -- [ASPECT_SPECIFICATIONS];
5926 -- N_Exception_Renaming_Declaration
5927 -- Sloc points to first identifier
5928 -- Defining_Identifier (Node1)
5929 -- Name (Node2)
5931 ---------------------------------------
5932 -- 8.5 Package Renaming Declaration --
5933 ---------------------------------------
5935 -- PACKAGE_RENAMING_DECLARATION ::=
5936 -- package DEFINING_PROGRAM_UNIT_NAME renames package_NAME
5937 -- [ASPECT_SPECIFICATIONS];
5939 -- N_Package_Renaming_Declaration
5940 -- Sloc points to PACKAGE
5941 -- Defining_Unit_Name (Node1)
5942 -- Name (Node2)
5943 -- Parent_Spec (Node4-Sem)
5945 ------------------------------------------
5946 -- 8.5 Subprogram Renaming Declaration --
5947 ------------------------------------------
5949 -- SUBPROGRAM_RENAMING_DECLARATION ::=
5950 -- SUBPROGRAM_SPECIFICATION renames callable_entity_NAME
5951 -- [ASPECT_SPECIFICATIONS];
5953 -- N_Subprogram_Renaming_Declaration
5954 -- Sloc points to RENAMES
5955 -- Specification (Node1)
5956 -- Name (Node2)
5957 -- Parent_Spec (Node4-Sem)
5958 -- Corresponding_Spec (Node5-Sem)
5959 -- Corresponding_Formal_Spec (Node3-Sem)
5960 -- From_Default (Flag6-Sem)
5962 -----------------------------------------
5963 -- 8.5.5 Generic Renaming Declaration --
5964 -----------------------------------------
5966 -- GENERIC_RENAMING_DECLARATION ::=
5967 -- generic package DEFINING_PROGRAM_UNIT_NAME
5968 -- renames generic_package_NAME
5969 -- [ASPECT_SPECIFICATIONS];
5970 -- | generic procedure DEFINING_PROGRAM_UNIT_NAME
5971 -- renames generic_procedure_NAME
5972 -- [ASPECT_SPECIFICATIONS];
5973 -- | generic function DEFINING_PROGRAM_UNIT_NAME
5974 -- renames generic_function_NAME
5975 -- [ASPECT_SPECIFICATIONS];
5977 -- N_Generic_Package_Renaming_Declaration
5978 -- Sloc points to GENERIC
5979 -- Defining_Unit_Name (Node1)
5980 -- Name (Node2)
5981 -- Parent_Spec (Node4-Sem)
5983 -- N_Generic_Procedure_Renaming_Declaration
5984 -- Sloc points to GENERIC
5985 -- Defining_Unit_Name (Node1)
5986 -- Name (Node2)
5987 -- Parent_Spec (Node4-Sem)
5989 -- N_Generic_Function_Renaming_Declaration
5990 -- Sloc points to GENERIC
5991 -- Defining_Unit_Name (Node1)
5992 -- Name (Node2)
5993 -- Parent_Spec (Node4-Sem)
5995 --------------------------------
5996 -- 9.1 Task Type Declaration --
5997 --------------------------------
5999 -- TASK_TYPE_DECLARATION ::=
6000 -- task type DEFINING_IDENTIFIER [KNOWN_DISCRIMINANT_PART]
6001 -- [ASPECT_SPECIFICATIONS]
6002 -- [is [new INTERFACE_LIST with] TASK_DEFINITION];
6004 -- N_Task_Type_Declaration
6005 -- Sloc points to TASK
6006 -- Defining_Identifier (Node1)
6007 -- Discriminant_Specifications (List4) (set to No_List if no
6008 -- discriminant part)
6009 -- Interface_List (List2) (set to No_List if none)
6010 -- Task_Definition (Node3) (set to Empty if not present)
6011 -- Corresponding_Body (Node5-Sem)
6013 ----------------------------------
6014 -- 9.1 Single Task Declaration --
6015 ----------------------------------
6017 -- SINGLE_TASK_DECLARATION ::=
6018 -- task DEFINING_IDENTIFIER
6019 -- [ASPECT_SPECIFICATIONS]
6020 -- [is [new INTERFACE_LIST with] TASK_DEFINITION];
6022 -- N_Single_Task_Declaration
6023 -- Sloc points to TASK
6024 -- Defining_Identifier (Node1)
6025 -- Interface_List (List2) (set to No_List if none)
6026 -- Task_Definition (Node3) (set to Empty if not present)
6028 --------------------------
6029 -- 9.1 Task Definition --
6030 --------------------------
6032 -- TASK_DEFINITION ::=
6033 -- {TASK_ITEM}
6034 -- [private
6035 -- {TASK_ITEM}]
6036 -- end [task_IDENTIFIER]
6038 -- Note: as a result of semantic analysis, the list of task items can
6039 -- include implicit type declarations resulting from entry families.
6041 -- N_Task_Definition
6042 -- Sloc points to first token of task definition
6043 -- Visible_Declarations (List2)
6044 -- Private_Declarations (List3) (set to No_List if no private part)
6045 -- End_Label (Node4)
6046 -- Has_Storage_Size_Pragma (Flag5-Sem)
6047 -- Has_Relative_Deadline_Pragma (Flag9-Sem)
6049 --------------------
6050 -- 9.1 Task Item --
6051 --------------------
6053 -- TASK_ITEM ::= ENTRY_DECLARATION | REPRESENTATION_CLAUSE
6055 --------------------
6056 -- 9.1 Task Body --
6057 --------------------
6059 -- TASK_BODY ::=
6060 -- task body task_DEFINING_IDENTIFIER
6061 -- [ASPECT_SPECIFICATIONS]
6062 -- is
6063 -- DECLARATIVE_PART
6064 -- begin
6065 -- HANDLED_SEQUENCE_OF_STATEMENTS
6066 -- end [task_IDENTIFIER];
6068 -- Gigi restriction: This node never appears
6070 -- N_Task_Body
6071 -- Sloc points to TASK
6072 -- Defining_Identifier (Node1)
6073 -- Declarations (List2)
6074 -- Handled_Statement_Sequence (Node4)
6075 -- Is_Task_Master (Flag5-Sem)
6076 -- Activation_Chain_Entity (Node3-Sem)
6077 -- Corresponding_Spec (Node5-Sem)
6078 -- Was_Originally_Stub (Flag13-Sem)
6080 -------------------------------------
6081 -- 9.4 Protected Type Declaration --
6082 -------------------------------------
6084 -- PROTECTED_TYPE_DECLARATION ::=
6085 -- protected type DEFINING_IDENTIFIER [KNOWN_DISCRIMINANT_PART]
6086 -- [ASPECT_SPECIFICATIONS]
6087 -- is [new INTERFACE_LIST with] PROTECTED_DEFINITION;
6089 -- Note: protected type declarations are not permitted in Ada 83 mode
6091 -- N_Protected_Type_Declaration
6092 -- Sloc points to PROTECTED
6093 -- Defining_Identifier (Node1)
6094 -- Discriminant_Specifications (List4) (set to No_List if no
6095 -- discriminant part)
6096 -- Interface_List (List2) (set to No_List if none)
6097 -- Protected_Definition (Node3)
6098 -- Corresponding_Body (Node5-Sem)
6100 ---------------------------------------
6101 -- 9.4 Single Protected Declaration --
6102 ---------------------------------------
6104 -- SINGLE_PROTECTED_DECLARATION ::=
6105 -- protected DEFINING_IDENTIFIER
6106 -- [ASPECT_SPECIFICATIONS]
6107 -- is [new INTERFACE_LIST with] PROTECTED_DEFINITION;
6109 -- Note: single protected declarations are not allowed in Ada 83 mode
6111 -- N_Single_Protected_Declaration
6112 -- Sloc points to PROTECTED
6113 -- Defining_Identifier (Node1)
6114 -- Interface_List (List2) (set to No_List if none)
6115 -- Protected_Definition (Node3)
6117 -------------------------------
6118 -- 9.4 Protected Definition --
6119 -------------------------------
6121 -- PROTECTED_DEFINITION ::=
6122 -- {PROTECTED_OPERATION_DECLARATION}
6123 -- [private
6124 -- {PROTECTED_ELEMENT_DECLARATION}]
6125 -- end [protected_IDENTIFIER]
6127 -- N_Protected_Definition
6128 -- Sloc points to first token of protected definition
6129 -- Visible_Declarations (List2)
6130 -- Private_Declarations (List3) (set to No_List if no private part)
6131 -- End_Label (Node4)
6133 ------------------------------------------
6134 -- 9.4 Protected Operation Declaration --
6135 ------------------------------------------
6137 -- PROTECTED_OPERATION_DECLARATION ::=
6138 -- SUBPROGRAM_DECLARATION
6139 -- | ENTRY_DECLARATION
6140 -- | REPRESENTATION_CLAUSE
6142 ----------------------------------------
6143 -- 9.4 Protected Element Declaration --
6144 ----------------------------------------
6146 -- PROTECTED_ELEMENT_DECLARATION ::=
6147 -- PROTECTED_OPERATION_DECLARATION | COMPONENT_DECLARATION
6149 -------------------------
6150 -- 9.4 Protected Body --
6151 -------------------------
6153 -- PROTECTED_BODY ::=
6154 -- protected body DEFINING_IDENTIFIER
6155 -- [ASPECT_SPECIFICATIONS];
6156 -- is
6157 -- {PROTECTED_OPERATION_ITEM}
6158 -- end [protected_IDENTIFIER];
6160 -- Note: protected bodies are not allowed in Ada 83 mode
6162 -- Gigi restriction: This node never appears
6164 -- N_Protected_Body
6165 -- Sloc points to PROTECTED
6166 -- Defining_Identifier (Node1)
6167 -- Declarations (List2) protected operation items (and pragmas)
6168 -- End_Label (Node4)
6169 -- Corresponding_Spec (Node5-Sem)
6170 -- Was_Originally_Stub (Flag13-Sem)
6172 -----------------------------------
6173 -- 9.4 Protected Operation Item --
6174 -----------------------------------
6176 -- PROTECTED_OPERATION_ITEM ::=
6177 -- SUBPROGRAM_DECLARATION
6178 -- | SUBPROGRAM_BODY
6179 -- | ENTRY_BODY
6180 -- | REPRESENTATION_CLAUSE
6182 ------------------------------
6183 -- 9.5.2 Entry Declaration --
6184 ------------------------------
6186 -- ENTRY_DECLARATION ::=
6187 -- [[not] overriding]
6188 -- entry DEFINING_IDENTIFIER
6189 -- [(DISCRETE_SUBTYPE_DEFINITION)] PARAMETER_PROFILE
6190 -- [ASPECT_SPECIFICATIONS];
6192 -- N_Entry_Declaration
6193 -- Sloc points to ENTRY
6194 -- Defining_Identifier (Node1)
6195 -- Discrete_Subtype_Definition (Node4) (set to Empty if not present)
6196 -- Parameter_Specifications (List3) (set to No_List if no formal part)
6197 -- Corresponding_Body (Node5-Sem)
6198 -- Must_Override (Flag14) set if overriding indicator present
6199 -- Must_Not_Override (Flag15) set if not_overriding indicator present
6201 -- Note: overriding indicator is an Ada 2005 feature
6203 -----------------------------
6204 -- 9.5.2 Accept statement --
6205 -----------------------------
6207 -- ACCEPT_STATEMENT ::=
6208 -- accept entry_DIRECT_NAME
6209 -- [(ENTRY_INDEX)] PARAMETER_PROFILE [do
6210 -- HANDLED_SEQUENCE_OF_STATEMENTS
6211 -- end [entry_IDENTIFIER]];
6213 -- Gigi restriction: This node never appears
6215 -- Note: there are no explicit declarations allowed in an accept
6216 -- statement. However, the implicit declarations for any statement
6217 -- identifiers (labels and block/loop identifiers) are declarations
6218 -- that belong logically to the accept statement, and that is why
6219 -- there is a Declarations field in this node.
6221 -- N_Accept_Statement
6222 -- Sloc points to ACCEPT
6223 -- Entry_Direct_Name (Node1)
6224 -- Entry_Index (Node5) (set to Empty if not present)
6225 -- Parameter_Specifications (List3) (set to No_List if no formal part)
6226 -- Handled_Statement_Sequence (Node4)
6227 -- Declarations (List2) (set to No_List if no declarations)
6229 ------------------------
6230 -- 9.5.2 Entry Index --
6231 ------------------------
6233 -- ENTRY_INDEX ::= EXPRESSION
6235 -----------------------
6236 -- 9.5.2 Entry Body --
6237 -----------------------
6239 -- ENTRY_BODY ::=
6240 -- entry DEFINING_IDENTIFIER ENTRY_BODY_FORMAL_PART ENTRY_BARRIER is
6241 -- DECLARATIVE_PART
6242 -- begin
6243 -- HANDLED_SEQUENCE_OF_STATEMENTS
6244 -- end [entry_IDENTIFIER];
6246 -- ENTRY_BARRIER ::= when CONDITION
6248 -- Note: we store the CONDITION of the ENTRY_BARRIER in the node for
6249 -- the ENTRY_BODY_FORMAL_PART to avoid the N_Entry_Body node getting
6250 -- too full (it would otherwise have too many fields)
6252 -- Gigi restriction: This node never appears
6254 -- N_Entry_Body
6255 -- Sloc points to ENTRY
6256 -- Defining_Identifier (Node1)
6257 -- Entry_Body_Formal_Part (Node5)
6258 -- Declarations (List2)
6259 -- Handled_Statement_Sequence (Node4)
6260 -- Activation_Chain_Entity (Node3-Sem)
6262 -----------------------------------
6263 -- 9.5.2 Entry Body Formal Part --
6264 -----------------------------------
6266 -- ENTRY_BODY_FORMAL_PART ::=
6267 -- [(ENTRY_INDEX_SPECIFICATION)] PARAMETER_PROFILE
6269 -- Note that an entry body formal part node is present even if it is
6270 -- empty. This reflects the grammar, in which it is the components of
6271 -- the entry body formal part that are optional, not the entry body
6272 -- formal part itself. Also this means that the barrier condition
6273 -- always has somewhere to be stored.
6275 -- Gigi restriction: This node never appears
6277 -- N_Entry_Body_Formal_Part
6278 -- Sloc points to first token
6279 -- Entry_Index_Specification (Node4) (set to Empty if not present)
6280 -- Parameter_Specifications (List3) (set to No_List if no formal part)
6281 -- Condition (Node1) from entry barrier of entry body
6283 --------------------------
6284 -- 9.5.2 Entry Barrier --
6285 --------------------------
6287 -- ENTRY_BARRIER ::= when CONDITION
6289 --------------------------------------
6290 -- 9.5.2 Entry Index Specification --
6291 --------------------------------------
6293 -- ENTRY_INDEX_SPECIFICATION ::=
6294 -- for DEFINING_IDENTIFIER in DISCRETE_SUBTYPE_DEFINITION
6296 -- Gigi restriction: This node never appears
6298 -- N_Entry_Index_Specification
6299 -- Sloc points to FOR
6300 -- Defining_Identifier (Node1)
6301 -- Discrete_Subtype_Definition (Node4)
6303 ---------------------------------
6304 -- 9.5.3 Entry Call Statement --
6305 ---------------------------------
6307 -- ENTRY_CALL_STATEMENT ::= entry_NAME [ACTUAL_PARAMETER_PART];
6309 -- The parser may generate a procedure call for this construct. The
6310 -- semantic pass must correct this misidentification where needed.
6312 -- Gigi restriction: This node never appears
6314 -- N_Entry_Call_Statement
6315 -- Sloc points to first token of name
6316 -- Name (Node2)
6317 -- Parameter_Associations (List3) (set to No_List if no
6318 -- actual parameter part)
6319 -- First_Named_Actual (Node4-Sem)
6320 -- Is_Elaboration_Checks_OK_Node (Flag1-Sem)
6321 -- Is_SPARK_Mode_On_Node (Flag2-Sem)
6322 -- Is_Elaboration_Warnings_OK_Node (Flag3-Sem)
6324 ------------------------------
6325 -- 9.5.4 Requeue Statement --
6326 ------------------------------
6328 -- REQUEUE_STATEMENT ::= requeue entry_NAME [with abort];
6330 -- Note: requeue statements are not permitted in Ada 83 mode
6332 -- Gigi restriction: This node never appears
6334 -- N_Requeue_Statement
6335 -- Sloc points to REQUEUE
6336 -- Name (Node2)
6337 -- Abort_Present (Flag15)
6338 -- Is_Elaboration_Checks_OK_Node (Flag1-Sem)
6339 -- Is_SPARK_Mode_On_Node (Flag2-Sem)
6340 -- Is_Elaboration_Warnings_OK_Node (Flag3-Sem)
6342 --------------------------
6343 -- 9.6 Delay Statement --
6344 --------------------------
6346 -- DELAY_STATEMENT ::=
6347 -- DELAY_UNTIL_STATEMENT
6348 -- | DELAY_RELATIVE_STATEMENT
6350 --------------------------------
6351 -- 9.6 Delay Until Statement --
6352 --------------------------------
6354 -- DELAY_UNTIL_STATEMENT ::= delay until delay_EXPRESSION;
6356 -- Note: delay until statements are not permitted in Ada 83 mode
6358 -- Gigi restriction: This node never appears
6360 -- N_Delay_Until_Statement
6361 -- Sloc points to DELAY
6362 -- Expression (Node3)
6364 -----------------------------------
6365 -- 9.6 Delay Relative Statement --
6366 -----------------------------------
6368 -- DELAY_RELATIVE_STATEMENT ::= delay delay_EXPRESSION;
6370 -- Gigi restriction: This node never appears
6372 -- N_Delay_Relative_Statement
6373 -- Sloc points to DELAY
6374 -- Expression (Node3)
6376 ---------------------------
6377 -- 9.7 Select Statement --
6378 ---------------------------
6380 -- SELECT_STATEMENT ::=
6381 -- SELECTIVE_ACCEPT
6382 -- | TIMED_ENTRY_CALL
6383 -- | CONDITIONAL_ENTRY_CALL
6384 -- | ASYNCHRONOUS_SELECT
6386 -----------------------------
6387 -- 9.7.1 Selective Accept --
6388 -----------------------------
6390 -- SELECTIVE_ACCEPT ::=
6391 -- select
6392 -- [GUARD]
6393 -- SELECT_ALTERNATIVE
6394 -- {or
6395 -- [GUARD]
6396 -- SELECT_ALTERNATIVE}
6397 -- [else
6398 -- SEQUENCE_OF_STATEMENTS]
6399 -- end select;
6401 -- Gigi restriction: This node never appears
6403 -- Note: the guard expression, if present, appears in the node for
6404 -- the select alternative.
6406 -- N_Selective_Accept
6407 -- Sloc points to SELECT
6408 -- Select_Alternatives (List1)
6409 -- Else_Statements (List4) (set to No_List if no else part)
6411 ------------------
6412 -- 9.7.1 Guard --
6413 ------------------
6415 -- GUARD ::= when CONDITION =>
6417 -- As noted above, the CONDITION that is part of a GUARD is included
6418 -- in the node for the select alternative for convenience.
6420 -------------------------------
6421 -- 9.7.1 Select Alternative --
6422 -------------------------------
6424 -- SELECT_ALTERNATIVE ::=
6425 -- ACCEPT_ALTERNATIVE
6426 -- | DELAY_ALTERNATIVE
6427 -- | TERMINATE_ALTERNATIVE
6429 -------------------------------
6430 -- 9.7.1 Accept Alternative --
6431 -------------------------------
6433 -- ACCEPT_ALTERNATIVE ::=
6434 -- ACCEPT_STATEMENT [SEQUENCE_OF_STATEMENTS]
6436 -- Gigi restriction: This node never appears
6438 -- N_Accept_Alternative
6439 -- Sloc points to ACCEPT
6440 -- Accept_Statement (Node2)
6441 -- Condition (Node1) from the guard (set to Empty if no guard present)
6442 -- Statements (List3) (set to Empty_List if no statements)
6443 -- Pragmas_Before (List4) pragmas before alt (set to No_List if none)
6444 -- Accept_Handler_Records (List5-Sem)
6446 ------------------------------
6447 -- 9.7.1 Delay Alternative --
6448 ------------------------------
6450 -- DELAY_ALTERNATIVE ::=
6451 -- DELAY_STATEMENT [SEQUENCE_OF_STATEMENTS]
6453 -- Gigi restriction: This node never appears
6455 -- N_Delay_Alternative
6456 -- Sloc points to DELAY
6457 -- Delay_Statement (Node2)
6458 -- Condition (Node1) from the guard (set to Empty if no guard present)
6459 -- Statements (List3) (set to Empty_List if no statements)
6460 -- Pragmas_Before (List4) pragmas before alt (set to No_List if none)
6462 ----------------------------------
6463 -- 9.7.1 Terminate Alternative --
6464 ----------------------------------
6466 -- TERMINATE_ALTERNATIVE ::= terminate;
6468 -- Gigi restriction: This node never appears
6470 -- N_Terminate_Alternative
6471 -- Sloc points to TERMINATE
6472 -- Condition (Node1) from the guard (set to Empty if no guard present)
6473 -- Pragmas_Before (List4) pragmas before alt (set to No_List if none)
6474 -- Pragmas_After (List5) pragmas after alt (set to No_List if none)
6476 -----------------------------
6477 -- 9.7.2 Timed Entry Call --
6478 -----------------------------
6480 -- TIMED_ENTRY_CALL ::=
6481 -- select
6482 -- ENTRY_CALL_ALTERNATIVE
6483 -- or
6484 -- DELAY_ALTERNATIVE
6485 -- end select;
6487 -- Gigi restriction: This node never appears
6489 -- N_Timed_Entry_Call
6490 -- Sloc points to SELECT
6491 -- Entry_Call_Alternative (Node1)
6492 -- Delay_Alternative (Node4)
6494 -----------------------------------
6495 -- 9.7.2 Entry Call Alternative --
6496 -----------------------------------
6498 -- ENTRY_CALL_ALTERNATIVE ::=
6499 -- PROCEDURE_OR_ENTRY_CALL [SEQUENCE_OF_STATEMENTS]
6501 -- PROCEDURE_OR_ENTRY_CALL ::=
6502 -- PROCEDURE_CALL_STATEMENT | ENTRY_CALL_STATEMENT
6504 -- Gigi restriction: This node never appears
6506 -- N_Entry_Call_Alternative
6507 -- Sloc points to first token of entry call statement
6508 -- Entry_Call_Statement (Node1)
6509 -- Statements (List3) (set to Empty_List if no statements)
6510 -- Pragmas_Before (List4) pragmas before alt (set to No_List if none)
6512 -----------------------------------
6513 -- 9.7.3 Conditional Entry Call --
6514 -----------------------------------
6516 -- CONDITIONAL_ENTRY_CALL ::=
6517 -- select
6518 -- ENTRY_CALL_ALTERNATIVE
6519 -- else
6520 -- SEQUENCE_OF_STATEMENTS
6521 -- end select;
6523 -- Gigi restriction: This node never appears
6525 -- N_Conditional_Entry_Call
6526 -- Sloc points to SELECT
6527 -- Entry_Call_Alternative (Node1)
6528 -- Else_Statements (List4)
6530 --------------------------------
6531 -- 9.7.4 Asynchronous Select --
6532 --------------------------------
6534 -- ASYNCHRONOUS_SELECT ::=
6535 -- select
6536 -- TRIGGERING_ALTERNATIVE
6537 -- then abort
6538 -- ABORTABLE_PART
6539 -- end select;
6541 -- Note: asynchronous select is not permitted in Ada 83 mode
6543 -- Gigi restriction: This node never appears
6545 -- N_Asynchronous_Select
6546 -- Sloc points to SELECT
6547 -- Triggering_Alternative (Node1)
6548 -- Abortable_Part (Node2)
6550 -----------------------------------
6551 -- 9.7.4 Triggering Alternative --
6552 -----------------------------------
6554 -- TRIGGERING_ALTERNATIVE ::=
6555 -- TRIGGERING_STATEMENT [SEQUENCE_OF_STATEMENTS]
6557 -- Gigi restriction: This node never appears
6559 -- N_Triggering_Alternative
6560 -- Sloc points to first token of triggering statement
6561 -- Triggering_Statement (Node1)
6562 -- Statements (List3) (set to Empty_List if no statements)
6563 -- Pragmas_Before (List4) pragmas before alt (set to No_List if none)
6565 ---------------------------------
6566 -- 9.7.4 Triggering Statement --
6567 ---------------------------------
6569 -- TRIGGERING_STATEMENT ::= PROCEDURE_OR_ENTRY_CALL | DELAY_STATEMENT
6571 ---------------------------
6572 -- 9.7.4 Abortable Part --
6573 ---------------------------
6575 -- ABORTABLE_PART ::= SEQUENCE_OF_STATEMENTS
6577 -- Gigi restriction: This node never appears
6579 -- N_Abortable_Part
6580 -- Sloc points to ABORT
6581 -- Statements (List3)
6583 --------------------------
6584 -- 9.8 Abort Statement --
6585 --------------------------
6587 -- ABORT_STATEMENT ::= abort task_NAME {, task_NAME};
6589 -- Gigi restriction: This node never appears
6591 -- N_Abort_Statement
6592 -- Sloc points to ABORT
6593 -- Names (List2)
6595 -------------------------
6596 -- 10.1.1 Compilation --
6597 -------------------------
6599 -- COMPILATION ::= {COMPILATION_UNIT}
6601 -- There is no explicit node in the tree for a compilation, since in
6602 -- general the compiler is processing only a single compilation unit
6603 -- at a time. It is possible to parse multiple units in syntax check
6604 -- only mode, but the trees are discarded in that case.
6606 ------------------------------
6607 -- 10.1.1 Compilation Unit --
6608 ------------------------------
6610 -- COMPILATION_UNIT ::=
6611 -- CONTEXT_CLAUSE LIBRARY_ITEM
6612 -- | CONTEXT_CLAUSE SUBUNIT
6614 -- The N_Compilation_Unit node itself represents the above syntax.
6615 -- However, there are two additional items not reflected in the above
6616 -- syntax. First we have the global declarations that are added by the
6617 -- code generator. These are outer level declarations (so they cannot
6618 -- be represented as being inside the units). An example is the wrapper
6619 -- subprograms that are created to do ABE checking. As always a list of
6620 -- declarations can contain actions as well (i.e. statements), and such
6621 -- statements are executed as part of the elaboration of the unit. Note
6622 -- that all such declarations are elaborated before the library unit.
6624 -- Similarly, certain actions need to be elaborated at the completion
6625 -- of elaboration of the library unit (notably the statement that sets
6626 -- the Boolean flag indicating that elaboration is complete).
6628 -- The third item not reflected in the syntax is pragmas that appear
6629 -- after the compilation unit. As always pragmas are a problem since
6630 -- they are not part of the formal syntax, but can be stuck into the
6631 -- source following a set of ad hoc rules, and we have to find an ad
6632 -- hoc way of sticking them into the tree. For pragmas that appear
6633 -- before the library unit, we just consider them to be part of the
6634 -- context clause, and pragmas can appear in the Context_Items list
6635 -- of the compilation unit. However, pragmas can also appear after
6636 -- the library item.
6638 -- To deal with all these problems, we create an auxiliary node for
6639 -- a compilation unit, referenced from the N_Compilation_Unit node,
6640 -- that contains these items.
6642 -- N_Compilation_Unit
6643 -- Sloc points to first token of defining unit name
6644 -- Library_Unit (Node4-Sem) corresponding/parent spec/body
6645 -- Context_Items (List1) context items and pragmas preceding unit
6646 -- Private_Present (Flag15) set if library unit has private keyword
6647 -- Unit (Node2) library item or subunit
6648 -- Aux_Decls_Node (Node5) points to the N_Compilation_Unit_Aux node
6649 -- Has_No_Elaboration_Code (Flag17-Sem)
6650 -- Body_Required (Flag13-Sem) set for spec if body is required
6651 -- Acts_As_Spec (Flag4-Sem) flag for subprogram body with no spec
6652 -- Context_Pending (Flag16-Sem)
6653 -- First_Inlined_Subprogram (Node3-Sem)
6654 -- Has_Pragma_Suppress_All (Flag14-Sem)
6656 -- N_Compilation_Unit_Aux
6657 -- Sloc is a copy of the Sloc from the N_Compilation_Unit node
6658 -- Declarations (List2) (set to No_List if no global declarations)
6659 -- Actions (List1) (set to No_List if no actions)
6660 -- Pragmas_After (List5) pragmas after unit (set to No_List if none)
6661 -- Config_Pragmas (List4) config pragmas (set to Empty_List if none)
6662 -- Default_Storage_Pool (Node3-Sem)
6664 --------------------------
6665 -- 10.1.1 Library Item --
6666 --------------------------
6668 -- LIBRARY_ITEM ::=
6669 -- [private] LIBRARY_UNIT_DECLARATION
6670 -- | LIBRARY_UNIT_BODY
6671 -- | [private] LIBRARY_UNIT_RENAMING_DECLARATION
6673 -- Note: PRIVATE is not allowed in Ada 83 mode
6675 -- There is no explicit node in the tree for library item, instead
6676 -- the declaration or body, and the flag for private if present,
6677 -- appear in the N_Compilation_Unit node.
6679 --------------------------------------
6680 -- 10.1.1 Library Unit Declaration --
6681 --------------------------------------
6683 -- LIBRARY_UNIT_DECLARATION ::=
6684 -- SUBPROGRAM_DECLARATION | PACKAGE_DECLARATION
6685 -- | GENERIC_DECLARATION | GENERIC_INSTANTIATION
6687 -----------------------------------------------
6688 -- 10.1.1 Library Unit Renaming Declaration --
6689 -----------------------------------------------
6691 -- LIBRARY_UNIT_RENAMING_DECLARATION ::=
6692 -- PACKAGE_RENAMING_DECLARATION
6693 -- | GENERIC_RENAMING_DECLARATION
6694 -- | SUBPROGRAM_RENAMING_DECLARATION
6696 -------------------------------
6697 -- 10.1.1 Library unit body --
6698 -------------------------------
6700 -- LIBRARY_UNIT_BODY ::= SUBPROGRAM_BODY | PACKAGE_BODY
6702 ------------------------------
6703 -- 10.1.1 Parent Unit Name --
6704 ------------------------------
6706 -- PARENT_UNIT_NAME ::= NAME
6708 ----------------------------
6709 -- 10.1.2 Context clause --
6710 ----------------------------
6712 -- CONTEXT_CLAUSE ::= {CONTEXT_ITEM}
6714 -- The context clause can include pragmas, and any pragmas that appear
6715 -- before the context clause proper (i.e. all configuration pragmas,
6716 -- also appear at the front of this list).
6718 --------------------------
6719 -- 10.1.2 Context_Item --
6720 --------------------------
6722 -- CONTEXT_ITEM ::= WITH_CLAUSE | USE_CLAUSE | WITH_TYPE_CLAUSE
6724 -------------------------
6725 -- 10.1.2 With clause --
6726 -------------------------
6728 -- WITH_CLAUSE ::=
6729 -- with library_unit_NAME {,library_unit_NAME};
6731 -- A separate With clause is built for each name, so that we have
6732 -- a Corresponding_Spec field for each with'ed spec. The flags
6733 -- First_Name and Last_Name are used to reconstruct the exact
6734 -- source form. When a list of names appears in one with clause,
6735 -- the first name in the list has First_Name set, and the last
6736 -- has Last_Name set. If the with clause has only one name, then
6737 -- both of the flags First_Name and Last_Name are set in this name.
6739 -- Note: in the case of implicit with's that are installed by the
6740 -- Rtsfind routine, Implicit_With is set, and the Sloc is typically
6741 -- set to Standard_Location, but it is incorrect to test the Sloc
6742 -- to find out if a with clause is implicit, test the flag instead.
6744 -- N_With_Clause
6745 -- Sloc points to first token of library unit name
6746 -- Withed_Body (Node1-Sem)
6747 -- Name (Node2)
6748 -- Private_Present (Flag15) set if with_clause has private keyword
6749 -- Limited_Present (Flag17) set if LIMITED is present
6750 -- Next_Implicit_With (Node3-Sem)
6751 -- Library_Unit (Node4-Sem)
6752 -- Corresponding_Spec (Node5-Sem)
6753 -- First_Name (Flag5) (set to True if first name or only one name)
6754 -- Last_Name (Flag6) (set to True if last name or only one name)
6755 -- Context_Installed (Flag13-Sem)
6756 -- Elaborate_Present (Flag4-Sem)
6757 -- Elaborate_All_Present (Flag14-Sem)
6758 -- Elaborate_All_Desirable (Flag9-Sem)
6759 -- Elaborate_Desirable (Flag11-Sem)
6760 -- Implicit_With (Flag16-Sem)
6761 -- Limited_View_Installed (Flag18-Sem)
6762 -- Parent_With (Flag1-Sem)
6763 -- Unreferenced_In_Spec (Flag7-Sem)
6764 -- No_Entities_Ref_In_Spec (Flag8-Sem)
6766 -- Note: Limited_Present and Limited_View_Installed are used to support
6767 -- the implementation of Ada 2005 (AI-50217).
6769 -- Similarly, Private_Present is used to support the implementation of
6770 -- Ada 2005 (AI-50262).
6772 -- Note: if the WITH clause refers to a standard library unit, then a
6773 -- limited with clause is changed into a normal with clause, because we
6774 -- are not prepared to deal with limited with in the context of Rtsfind.
6775 -- So in this case, the Limited_Present flag will be False in the final
6776 -- tree. However, we do NOT do this transformation in ASIS mode, so for
6777 -- ASIS the flag will remain set in this situation.
6779 ----------------------
6780 -- With_Type clause --
6781 ----------------------
6783 -- This is a GNAT extension, used to implement mutually recursive
6784 -- types declared in different packages.
6786 -- Note: this is now obsolete. The functionality of this construct
6787 -- is now implemented by the Ada 2005 limited_with_clause.
6789 ---------------------
6790 -- 10.2 Body stub --
6791 ---------------------
6793 -- BODY_STUB ::=
6794 -- SUBPROGRAM_BODY_STUB
6795 -- | PACKAGE_BODY_STUB
6796 -- | TASK_BODY_STUB
6797 -- | PROTECTED_BODY_STUB
6799 ----------------------------------
6800 -- 10.1.3 Subprogram Body Stub --
6801 ----------------------------------
6803 -- SUBPROGRAM_BODY_STUB ::=
6804 -- SUBPROGRAM_SPECIFICATION is separate
6805 -- [ASPECT_SPECIFICATION];
6807 -- N_Subprogram_Body_Stub
6808 -- Sloc points to FUNCTION or PROCEDURE
6809 -- Specification (Node1)
6810 -- Corresponding_Spec_Of_Stub (Node2-Sem)
6811 -- Library_Unit (Node4-Sem) points to the subunit
6812 -- Corresponding_Body (Node5-Sem)
6814 -------------------------------
6815 -- 10.1.3 Package Body Stub --
6816 -------------------------------
6818 -- PACKAGE_BODY_STUB ::=
6819 -- package body DEFINING_IDENTIFIER is separate
6820 -- [ASPECT_SPECIFICATION];
6822 -- N_Package_Body_Stub
6823 -- Sloc points to PACKAGE
6824 -- Defining_Identifier (Node1)
6825 -- Corresponding_Spec_Of_Stub (Node2-Sem)
6826 -- Library_Unit (Node4-Sem) points to the subunit
6827 -- Corresponding_Body (Node5-Sem)
6829 ----------------------------
6830 -- 10.1.3 Task Body Stub --
6831 ----------------------------
6833 -- TASK_BODY_STUB ::=
6834 -- task body DEFINING_IDENTIFIER is separate
6835 -- [ASPECT_SPECIFICATION];
6837 -- N_Task_Body_Stub
6838 -- Sloc points to TASK
6839 -- Defining_Identifier (Node1)
6840 -- Corresponding_Spec_Of_Stub (Node2-Sem)
6841 -- Library_Unit (Node4-Sem) points to the subunit
6842 -- Corresponding_Body (Node5-Sem)
6844 ---------------------------------
6845 -- 10.1.3 Protected Body Stub --
6846 ---------------------------------
6848 -- PROTECTED_BODY_STUB ::=
6849 -- protected body DEFINING_IDENTIFIER is separate
6850 -- [ASPECT_SPECIFICATION];
6852 -- Note: protected body stubs are not allowed in Ada 83 mode
6854 -- N_Protected_Body_Stub
6855 -- Sloc points to PROTECTED
6856 -- Defining_Identifier (Node1)
6857 -- Corresponding_Spec_Of_Stub (Node2-Sem)
6858 -- Library_Unit (Node4-Sem) points to the subunit
6859 -- Corresponding_Body (Node5-Sem)
6861 ---------------------
6862 -- 10.1.3 Subunit --
6863 ---------------------
6865 -- SUBUNIT ::= separate (PARENT_UNIT_NAME) PROPER_BODY
6867 -- N_Subunit
6868 -- Sloc points to SEPARATE
6869 -- Name (Node2) is the name of the parent unit
6870 -- Proper_Body (Node1) is the subunit body
6871 -- Corresponding_Stub (Node3-Sem) is the stub declaration for the unit.
6873 ---------------------------------
6874 -- 11.1 Exception Declaration --
6875 ---------------------------------
6877 -- EXCEPTION_DECLARATION ::= DEFINING_IDENTIFIER_LIST : exception
6878 -- [ASPECT_SPECIFICATIONS];
6880 -- For consistency with object declarations etc., the parser converts
6881 -- the case of multiple identifiers being declared to a series of
6882 -- declarations in which the expression is copied, using the More_Ids
6883 -- and Prev_Ids flags to remember the source form as described in the
6884 -- section on "Handling of Defining Identifier Lists".
6886 -- N_Exception_Declaration
6887 -- Sloc points to EXCEPTION
6888 -- Defining_Identifier (Node1)
6889 -- Expression (Node3-Sem)
6890 -- Renaming_Exception (Node2-Sem)
6891 -- More_Ids (Flag5) (set to False if no more identifiers in list)
6892 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
6894 ------------------------------------------
6895 -- 11.2 Handled Sequence Of Statements --
6896 ------------------------------------------
6898 -- HANDLED_SEQUENCE_OF_STATEMENTS ::=
6899 -- SEQUENCE_OF_STATEMENTS
6900 -- [exception
6901 -- EXCEPTION_HANDLER
6902 -- {EXCEPTION_HANDLER}]
6903 -- [at end
6904 -- cleanup_procedure_call (param, param, param, ...);]
6906 -- The AT END phrase is a GNAT extension to provide for cleanups. It is
6907 -- used only internally currently, but is considered to be syntactic.
6908 -- At the moment, the only cleanup action allowed is a single call to
6909 -- a parameterless procedure, and the Identifier field of the node is
6910 -- the procedure to be called. The cleanup action occurs whenever the
6911 -- sequence of statements is left for any reason. The possible reasons
6912 -- are:
6913 -- 1. reaching the end of the sequence
6914 -- 2. exit, return, or goto
6915 -- 3. exception or abort
6916 -- For some back ends, such as gcc with ZCX, "at end" is implemented
6917 -- entirely in the back end. In this case, a handled sequence of
6918 -- statements with an "at end" cannot also have exception handlers.
6919 -- For other back ends, such as gcc with front-end SJLJ, the
6920 -- implementation is split between the front end and back end; the front
6921 -- end implements 3, and the back end implements 1 and 2. In this case,
6922 -- if there is an "at end", the front end inserts the appropriate
6923 -- exception handler, and this handler takes precedence over "at end"
6924 -- in case of exception.
6926 -- The inserted exception handler is of the form:
6928 -- when all others =>
6929 -- cleanup;
6930 -- raise;
6932 -- where cleanup is the procedure to be called. The reason we do this is
6933 -- so that the front end can handle the necessary entries in the
6934 -- exception tables, and other exception handler actions required as
6935 -- part of the normal handling for exception handlers.
6937 -- The AT END cleanup handler protects only the sequence of statements
6938 -- (not the associated declarations of the parent), just like exception
6939 -- handlers. The big difference is that the cleanup procedure is called
6940 -- on either a normal or an abnormal exit from the statement sequence.
6942 -- Note: the list of Exception_Handlers can contain pragmas as well
6943 -- as actual handlers. In practice these pragmas can only occur at
6944 -- the start of the list, since any pragmas occurring later on will
6945 -- be included in the statement list of the corresponding handler.
6947 -- Note: although in the Ada syntax, the sequence of statements in
6948 -- a handled sequence of statements can only contain statements, we
6949 -- allow free mixing of declarations and statements in the resulting
6950 -- expanded tree. This is for example used to deal with the case of
6951 -- a cleanup procedure that must handle declarations as well as the
6952 -- statements of a block.
6954 -- Note: the cleanup_procedure_call does not go through the common
6955 -- processing for calls, which in particular means that it will not be
6956 -- automatically inlined in all cases, even though the procedure to be
6957 -- called is marked inline. More specifically, if the procedure comes
6958 -- from another unit than the main source unit, for example a run-time
6959 -- unit, then it needs to be manually added to the list of bodies to be
6960 -- inlined by invoking Add_Inlined_Body on it.
6962 -- N_Handled_Sequence_Of_Statements
6963 -- Sloc points to first token of first statement
6964 -- Statements (List3)
6965 -- End_Label (Node4) (set to Empty if expander generated)
6966 -- Exception_Handlers (List5) (set to No_List if none present)
6967 -- At_End_Proc (Node1) (set to Empty if no clean up procedure)
6968 -- First_Real_Statement (Node2-Sem)
6970 -- Note: the parent always contains a Declarations field which contains
6971 -- declarations associated with the handled sequence of statements. This
6972 -- is true even in the case of an accept statement (see description of
6973 -- the N_Accept_Statement node).
6975 -- End_Label refers to the containing construct
6977 -----------------------------
6978 -- 11.2 Exception Handler --
6979 -----------------------------
6981 -- EXCEPTION_HANDLER ::=
6982 -- when [CHOICE_PARAMETER_SPECIFICATION :]
6983 -- EXCEPTION_CHOICE {| EXCEPTION_CHOICE} =>
6984 -- SEQUENCE_OF_STATEMENTS
6986 -- Note: choice parameter specification is not allowed in Ada 83 mode
6988 -- N_Exception_Handler
6989 -- Sloc points to WHEN
6990 -- Choice_Parameter (Node2) (set to Empty if not present)
6991 -- Exception_Choices (List4)
6992 -- Statements (List3)
6993 -- Exception_Label (Node5-Sem) (set to Empty of not present)
6994 -- Local_Raise_Statements (Elist1-Sem) (set to No_Elist if not present)
6995 -- Local_Raise_Not_OK (Flag7-Sem)
6996 -- Has_Local_Raise (Flag8-Sem)
6998 ------------------------------------------
6999 -- 11.2 Choice parameter specification --
7000 ------------------------------------------
7002 -- CHOICE_PARAMETER_SPECIFICATION ::= DEFINING_IDENTIFIER
7004 ----------------------------
7005 -- 11.2 Exception Choice --
7006 ----------------------------
7008 -- EXCEPTION_CHOICE ::= exception_NAME | others
7010 -- Except in the case of OTHERS, no explicit node appears in the tree
7011 -- for exception choice. Instead the exception name appears directly.
7012 -- An OTHERS choice is represented by a N_Others_Choice node (see
7013 -- section 3.8.1.
7015 -- Note: for the exception choice created for an at end handler, the
7016 -- exception choice is an N_Others_Choice node with All_Others set.
7018 ---------------------------
7019 -- 11.3 Raise Statement --
7020 ---------------------------
7022 -- RAISE_STATEMENT ::= raise [exception_NAME];
7024 -- In Ada 2005, we have
7026 -- RAISE_STATEMENT ::=
7027 -- raise; | raise exception_NAME [with string_EXPRESSION];
7029 -- N_Raise_Statement
7030 -- Sloc points to RAISE
7031 -- Name (Node2) (set to Empty if no exception name present)
7032 -- Expression (Node3) (set to Empty if no expression present)
7033 -- From_At_End (Flag4-Sem)
7035 ----------------------------
7036 -- 11.3 Raise Expression --
7037 ----------------------------
7039 -- RAISE_EXPRESSION ::= raise exception_NAME [with string_EXPRESSION]
7041 -- N_Raise_Expression
7042 -- Sloc points to RAISE
7043 -- Name (Node2) (always present)
7044 -- Expression (Node3) (set to Empty if no expression present)
7045 -- Convert_To_Return_False (Flag13-Sem)
7046 -- plus fields for expression
7048 -------------------------------
7049 -- 12.1 Generic Declaration --
7050 -------------------------------
7052 -- GENERIC_DECLARATION ::=
7053 -- GENERIC_SUBPROGRAM_DECLARATION | GENERIC_PACKAGE_DECLARATION
7055 ------------------------------------------
7056 -- 12.1 Generic Subprogram Declaration --
7057 ------------------------------------------
7059 -- GENERIC_SUBPROGRAM_DECLARATION ::=
7060 -- GENERIC_FORMAL_PART SUBPROGRAM_SPECIFICATION
7061 -- [ASPECT_SPECIFICATIONS];
7063 -- Note: Generic_Formal_Declarations can include pragmas
7065 -- N_Generic_Subprogram_Declaration
7066 -- Sloc points to GENERIC
7067 -- Specification (Node1) subprogram specification
7068 -- Corresponding_Body (Node5-Sem)
7069 -- Generic_Formal_Declarations (List2) from generic formal part
7070 -- Parent_Spec (Node4-Sem)
7072 ---------------------------------------
7073 -- 12.1 Generic Package Declaration --
7074 ---------------------------------------
7076 -- GENERIC_PACKAGE_DECLARATION ::=
7077 -- GENERIC_FORMAL_PART PACKAGE_SPECIFICATION
7078 -- [ASPECT_SPECIFICATIONS];
7080 -- Note: when we do generics right, the Activation_Chain_Entity entry
7081 -- for this node can be removed (since the expander won't see generic
7082 -- units any more)???.
7084 -- Note: Generic_Formal_Declarations can include pragmas
7086 -- N_Generic_Package_Declaration
7087 -- Sloc points to GENERIC
7088 -- Specification (Node1) package specification
7089 -- Corresponding_Body (Node5-Sem)
7090 -- Generic_Formal_Declarations (List2) from generic formal part
7091 -- Parent_Spec (Node4-Sem)
7092 -- Activation_Chain_Entity (Node3-Sem)
7094 -------------------------------
7095 -- 12.1 Generic Formal Part --
7096 -------------------------------
7098 -- GENERIC_FORMAL_PART ::=
7099 -- generic {GENERIC_FORMAL_PARAMETER_DECLARATION | USE_CLAUSE}
7101 ------------------------------------------------
7102 -- 12.1 Generic Formal Parameter Declaration --
7103 ------------------------------------------------
7105 -- GENERIC_FORMAL_PARAMETER_DECLARATION ::=
7106 -- FORMAL_OBJECT_DECLARATION
7107 -- | FORMAL_TYPE_DECLARATION
7108 -- | FORMAL_SUBPROGRAM_DECLARATION
7109 -- | FORMAL_PACKAGE_DECLARATION
7111 ---------------------------------
7112 -- 12.3 Generic Instantiation --
7113 ---------------------------------
7115 -- GENERIC_INSTANTIATION ::=
7116 -- package DEFINING_PROGRAM_UNIT_NAME is
7117 -- new generic_package_NAME [GENERIC_ACTUAL_PART]
7118 -- [ASPECT_SPECIFICATIONS];
7119 -- | [[not] overriding]
7120 -- procedure DEFINING_PROGRAM_UNIT_NAME is
7121 -- new generic_procedure_NAME [GENERIC_ACTUAL_PART]
7122 -- [ASPECT_SPECIFICATIONS];
7123 -- | [[not] overriding]
7124 -- function DEFINING_DESIGNATOR is
7125 -- new generic_function_NAME [GENERIC_ACTUAL_PART]
7126 -- [ASPECT_SPECIFICATIONS];
7128 -- N_Package_Instantiation
7129 -- Sloc points to PACKAGE
7130 -- Defining_Unit_Name (Node1)
7131 -- Name (Node2)
7132 -- Generic_Associations (List3) (set to No_List if no
7133 -- generic actual part)
7134 -- Parent_Spec (Node4-Sem)
7135 -- Instance_Spec (Node5-Sem)
7136 -- Is_Elaboration_Checks_OK_Node (Flag1-Sem)
7137 -- Is_SPARK_Mode_On_Node (Flag2-Sem)
7138 -- Is_Elaboration_Warnings_OK_Node (Flag3-Sem)
7139 -- Is_Declaration_Level_Node (Flag5-Sem)
7140 -- Is_Known_Guaranteed_ABE (Flag18-Sem)
7142 -- N_Procedure_Instantiation
7143 -- Sloc points to PROCEDURE
7144 -- Defining_Unit_Name (Node1)
7145 -- Name (Node2)
7146 -- Parent_Spec (Node4-Sem)
7147 -- Generic_Associations (List3) (set to No_List if no
7148 -- generic actual part)
7149 -- Instance_Spec (Node5-Sem)
7150 -- Is_Elaboration_Checks_OK_Node (Flag1-Sem)
7151 -- Is_SPARK_Mode_On_Node (Flag2-Sem)
7152 -- Is_Elaboration_Warnings_OK_Node (Flag3-Sem)
7153 -- Is_Declaration_Level_Node (Flag5-Sem)
7154 -- Must_Override (Flag14) set if overriding indicator present
7155 -- Must_Not_Override (Flag15) set if not_overriding indicator present
7156 -- Is_Known_Guaranteed_ABE (Flag18-Sem)
7158 -- N_Function_Instantiation
7159 -- Sloc points to FUNCTION
7160 -- Defining_Unit_Name (Node1)
7161 -- Name (Node2)
7162 -- Generic_Associations (List3) (set to No_List if no
7163 -- generic actual part)
7164 -- Parent_Spec (Node4-Sem)
7165 -- Instance_Spec (Node5-Sem)
7166 -- Is_Elaboration_Checks_OK_Node (Flag1-Sem)
7167 -- Is_SPARK_Mode_On_Node (Flag2-Sem)
7168 -- Is_Elaboration_Warnings_OK_Node (Flag3-Sem)
7169 -- Is_Declaration_Level_Node (Flag5-Sem)
7170 -- Must_Override (Flag14) set if overriding indicator present
7171 -- Must_Not_Override (Flag15) set if not_overriding indicator present
7172 -- Is_Known_Guaranteed_ABE (Flag18-Sem)
7174 -- Note: overriding indicator is an Ada 2005 feature
7176 -------------------------------
7177 -- 12.3 Generic Actual Part --
7178 -------------------------------
7180 -- GENERIC_ACTUAL_PART ::=
7181 -- (GENERIC_ASSOCIATION {, GENERIC_ASSOCIATION})
7183 -------------------------------
7184 -- 12.3 Generic Association --
7185 -------------------------------
7187 -- GENERIC_ASSOCIATION ::=
7188 -- [generic_formal_parameter_SELECTOR_NAME =>]
7190 -- Note: unlike the procedure call case, a generic association node
7191 -- is generated for every association, even if no formal parameter
7192 -- selector name is present. In this case the parser will leave the
7193 -- Selector_Name field set to Empty, to be filled in later by the
7194 -- semantic pass.
7196 -- In Ada 2005, a formal may be associated with a box, if the
7197 -- association is part of the list of actuals for a formal package.
7198 -- If the association is given by OTHERS => <>, the association is
7199 -- an N_Others_Choice.
7201 -- N_Generic_Association
7202 -- Sloc points to first token of generic association
7203 -- Selector_Name (Node2) (set to Empty if no formal
7204 -- parameter selector name)
7205 -- Explicit_Generic_Actual_Parameter (Node1) (Empty if box present)
7206 -- Box_Present (Flag15) (for formal_package associations with a box)
7208 ---------------------------------------------
7209 -- 12.3 Explicit Generic Actual Parameter --
7210 ---------------------------------------------
7212 -- EXPLICIT_GENERIC_ACTUAL_PARAMETER ::=
7213 -- EXPRESSION | variable_NAME | subprogram_NAME
7214 -- | entry_NAME | SUBTYPE_MARK | package_instance_NAME
7216 -------------------------------------
7217 -- 12.4 Formal Object Declaration --
7218 -------------------------------------
7220 -- FORMAL_OBJECT_DECLARATION ::=
7221 -- DEFINING_IDENTIFIER_LIST :
7222 -- MODE [NULL_EXCLUSION] SUBTYPE_MARK [:= DEFAULT_EXPRESSION]
7223 -- [ASPECT_SPECIFICATIONS];
7224 -- | DEFINING_IDENTIFIER_LIST :
7225 -- MODE ACCESS_DEFINITION [:= DEFAULT_EXPRESSION]
7226 -- [ASPECT_SPECIFICATIONS];
7228 -- Although the syntax allows multiple identifiers in the list, the
7229 -- semantics is as though successive declarations were given with
7230 -- identical type definition and expression components. To simplify
7231 -- semantic processing, the parser represents a multiple declaration
7232 -- case as a sequence of single declarations, using the More_Ids and
7233 -- Prev_Ids flags to preserve the original source form as described
7234 -- in the section on "Handling of Defining Identifier Lists".
7236 -- N_Formal_Object_Declaration
7237 -- Sloc points to first identifier
7238 -- Defining_Identifier (Node1)
7239 -- In_Present (Flag15)
7240 -- Out_Present (Flag17)
7241 -- Null_Exclusion_Present (Flag11) (set to False if not present)
7242 -- Subtype_Mark (Node4) (set to Empty if not present)
7243 -- Access_Definition (Node3) (set to Empty if not present)
7244 -- Default_Expression (Node5) (set to Empty if no default expression)
7245 -- More_Ids (Flag5) (set to False if no more identifiers in list)
7246 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
7248 -----------------------------------
7249 -- 12.5 Formal Type Declaration --
7250 -----------------------------------
7252 -- FORMAL_TYPE_DECLARATION ::=
7253 -- type DEFINING_IDENTIFIER [DISCRIMINANT_PART]
7254 -- is FORMAL_TYPE_DEFINITION
7255 -- [ASPECT_SPECIFICATIONS];
7256 -- | type DEFINING_IDENTIFIER [DISCRIMINANT_PART] [is tagged]
7258 -- N_Formal_Type_Declaration
7259 -- Sloc points to TYPE
7260 -- Defining_Identifier (Node1)
7261 -- Formal_Type_Definition (Node3)
7262 -- Discriminant_Specifications (List4) (set to No_List if no
7263 -- discriminant part)
7264 -- Unknown_Discriminants_Present (Flag13) set if (<>) discriminant
7266 ----------------------------------
7267 -- 12.5 Formal type definition --
7268 ----------------------------------
7270 -- FORMAL_TYPE_DEFINITION ::=
7271 -- FORMAL_PRIVATE_TYPE_DEFINITION
7272 -- | FORMAL_DERIVED_TYPE_DEFINITION
7273 -- | FORMAL_DISCRETE_TYPE_DEFINITION
7274 -- | FORMAL_SIGNED_INTEGER_TYPE_DEFINITION
7275 -- | FORMAL_MODULAR_TYPE_DEFINITION
7276 -- | FORMAL_FLOATING_POINT_DEFINITION
7277 -- | FORMAL_ORDINARY_FIXED_POINT_DEFINITION
7278 -- | FORMAL_DECIMAL_FIXED_POINT_DEFINITION
7279 -- | FORMAL_ARRAY_TYPE_DEFINITION
7280 -- | FORMAL_ACCESS_TYPE_DEFINITION
7281 -- | FORMAL_INTERFACE_TYPE_DEFINITION
7282 -- | FORMAL_INCOMPLETE_TYPE_DEFINITION
7284 -- The Ada 2012 syntax introduces two new non-terminals:
7285 -- Formal_{Complete,Incomplete}_Type_Declaration just to introduce
7286 -- the latter category. Here we introduce an incomplete type definition
7287 -- in order to preserve as much as possible the existing structure.
7289 ---------------------------------------------
7290 -- 12.5.1 Formal Private Type Definition --
7291 ---------------------------------------------
7293 -- FORMAL_PRIVATE_TYPE_DEFINITION ::=
7294 -- [[abstract] tagged] [limited] private
7296 -- Note: TAGGED is not allowed in Ada 83 mode
7298 -- N_Formal_Private_Type_Definition
7299 -- Sloc points to PRIVATE
7300 -- Uninitialized_Variable (Node3-Sem)
7301 -- Abstract_Present (Flag4)
7302 -- Tagged_Present (Flag15)
7303 -- Limited_Present (Flag17)
7305 --------------------------------------------
7306 -- 12.5.1 Formal Derived Type Definition --
7307 --------------------------------------------
7309 -- FORMAL_DERIVED_TYPE_DEFINITION ::=
7310 -- [abstract] [limited | synchronized]
7311 -- new SUBTYPE_MARK [[and INTERFACE_LIST] with private]
7312 -- Note: this construct is not allowed in Ada 83 mode
7314 -- N_Formal_Derived_Type_Definition
7315 -- Sloc points to NEW
7316 -- Subtype_Mark (Node4)
7317 -- Private_Present (Flag15)
7318 -- Abstract_Present (Flag4)
7319 -- Limited_Present (Flag17)
7320 -- Synchronized_Present (Flag7)
7321 -- Interface_List (List2) (set to No_List if none)
7323 -----------------------------------------------
7324 -- 12.5.1 Formal Incomplete Type Definition --
7325 -----------------------------------------------
7327 -- FORMAL_INCOMPLETE_TYPE_DEFINITION ::= [tagged]
7329 -- N_Formal_Incomplete_Type_Definition
7330 -- Sloc points to identifier of parent
7331 -- Tagged_Present (Flag15)
7333 ---------------------------------------------
7334 -- 12.5.2 Formal Discrete Type Definition --
7335 ---------------------------------------------
7337 -- FORMAL_DISCRETE_TYPE_DEFINITION ::= (<>)
7339 -- N_Formal_Discrete_Type_Definition
7340 -- Sloc points to (
7342 ---------------------------------------------------
7343 -- 12.5.2 Formal Signed Integer Type Definition --
7344 ---------------------------------------------------
7346 -- FORMAL_SIGNED_INTEGER_TYPE_DEFINITION ::= range <>
7348 -- N_Formal_Signed_Integer_Type_Definition
7349 -- Sloc points to RANGE
7351 --------------------------------------------
7352 -- 12.5.2 Formal Modular Type Definition --
7353 --------------------------------------------
7355 -- FORMAL_MODULAR_TYPE_DEFINITION ::= mod <>
7357 -- N_Formal_Modular_Type_Definition
7358 -- Sloc points to MOD
7360 ----------------------------------------------
7361 -- 12.5.2 Formal Floating Point Definition --
7362 ----------------------------------------------
7364 -- FORMAL_FLOATING_POINT_DEFINITION ::= digits <>
7366 -- N_Formal_Floating_Point_Definition
7367 -- Sloc points to DIGITS
7369 ----------------------------------------------------
7370 -- 12.5.2 Formal Ordinary Fixed Point Definition --
7371 ----------------------------------------------------
7373 -- FORMAL_ORDINARY_FIXED_POINT_DEFINITION ::= delta <>
7375 -- N_Formal_Ordinary_Fixed_Point_Definition
7376 -- Sloc points to DELTA
7378 ---------------------------------------------------
7379 -- 12.5.2 Formal Decimal Fixed Point Definition --
7380 ---------------------------------------------------
7382 -- FORMAL_DECIMAL_FIXED_POINT_DEFINITION ::= delta <> digits <>
7384 -- Note: formal decimal fixed point definition not allowed in Ada 83
7386 -- N_Formal_Decimal_Fixed_Point_Definition
7387 -- Sloc points to DELTA
7389 ------------------------------------------
7390 -- 12.5.3 Formal Array Type Definition --
7391 ------------------------------------------
7393 -- FORMAL_ARRAY_TYPE_DEFINITION ::= ARRAY_TYPE_DEFINITION
7395 -------------------------------------------
7396 -- 12.5.4 Formal Access Type Definition --
7397 -------------------------------------------
7399 -- FORMAL_ACCESS_TYPE_DEFINITION ::= ACCESS_TYPE_DEFINITION
7401 ----------------------------------------------
7402 -- 12.5.5 Formal Interface Type Definition --
7403 ----------------------------------------------
7405 -- FORMAL_INTERFACE_TYPE_DEFINITION ::= INTERFACE_TYPE_DEFINITION
7407 -----------------------------------------
7408 -- 12.6 Formal Subprogram Declaration --
7409 -----------------------------------------
7411 -- FORMAL_SUBPROGRAM_DECLARATION ::=
7412 -- FORMAL_CONCRETE_SUBPROGRAM_DECLARATION
7413 -- | FORMAL_ABSTRACT_SUBPROGRAM_DECLARATION
7415 --------------------------------------------------
7416 -- 12.6 Formal Concrete Subprogram Declaration --
7417 --------------------------------------------------
7419 -- FORMAL_CONCRETE_SUBPROGRAM_DECLARATION ::=
7420 -- with SUBPROGRAM_SPECIFICATION [is SUBPROGRAM_DEFAULT]
7421 -- [ASPECT_SPECIFICATIONS];
7423 -- N_Formal_Concrete_Subprogram_Declaration
7424 -- Sloc points to WITH
7425 -- Specification (Node1)
7426 -- Default_Name (Node2) (set to Empty if no subprogram default)
7427 -- Box_Present (Flag15)
7429 -- Note: if no subprogram default is present, then Name is set
7430 -- to Empty, and Box_Present is False.
7432 --------------------------------------------------
7433 -- 12.6 Formal Abstract Subprogram Declaration --
7434 --------------------------------------------------
7436 -- FORMAL_ABSTRACT_SUBPROGRAM_DECLARATION ::=
7437 -- with SUBPROGRAM_SPECIFICATION is abstract [SUBPROGRAM_DEFAULT]
7438 -- [ASPECT_SPECIFICATIONS];
7440 -- N_Formal_Abstract_Subprogram_Declaration
7441 -- Sloc points to WITH
7442 -- Specification (Node1)
7443 -- Default_Name (Node2) (set to Empty if no subprogram default)
7444 -- Box_Present (Flag15)
7446 -- Note: if no subprogram default is present, then Name is set
7447 -- to Empty, and Box_Present is False.
7449 ------------------------------
7450 -- 12.6 Subprogram Default --
7451 ------------------------------
7453 -- SUBPROGRAM_DEFAULT ::= DEFAULT_NAME | <>
7455 -- There is no separate node in the tree for a subprogram default.
7456 -- Instead the parent (N_Formal_Concrete_Subprogram_Declaration
7457 -- or N_Formal_Abstract_Subprogram_Declaration) node contains the
7458 -- default name or box indication, as needed.
7460 ------------------------
7461 -- 12.6 Default Name --
7462 ------------------------
7464 -- DEFAULT_NAME ::= NAME
7466 --------------------------------------
7467 -- 12.7 Formal Package Declaration --
7468 --------------------------------------
7470 -- FORMAL_PACKAGE_DECLARATION ::=
7471 -- with package DEFINING_IDENTIFIER
7472 -- is new generic_package_NAME FORMAL_PACKAGE_ACTUAL_PART
7473 -- [ASPECT_SPECIFICATIONS];
7475 -- Note: formal package declarations not allowed in Ada 83 mode
7477 -- N_Formal_Package_Declaration
7478 -- Sloc points to WITH
7479 -- Defining_Identifier (Node1)
7480 -- Name (Node2)
7481 -- Generic_Associations (List3) (set to No_List if (<>) case or
7482 -- empty generic actual part)
7483 -- Box_Present (Flag15)
7484 -- Instance_Spec (Node5-Sem)
7485 -- Is_Known_Guaranteed_ABE (Flag18-Sem)
7487 --------------------------------------
7488 -- 12.7 Formal Package Actual Part --
7489 --------------------------------------
7491 -- FORMAL_PACKAGE_ACTUAL_PART ::=
7492 -- ([OTHERS] => <>)
7493 -- | [GENERIC_ACTUAL_PART]
7494 -- (FORMAL_PACKAGE_ASSOCIATION {. FORMAL_PACKAGE_ASSOCIATION}
7496 -- FORMAL_PACKAGE_ASSOCIATION ::=
7497 -- GENERIC_ASSOCIATION
7498 -- | GENERIC_FORMAL_PARAMETER_SELECTOR_NAME => <>
7500 -- There is no explicit node in the tree for a formal package actual
7501 -- part. Instead the information appears in the parent node (i.e. the
7502 -- formal package declaration node itself).
7504 -- There is no explicit node for a formal package association. All of
7505 -- them are represented either by a generic association, possibly with
7506 -- Box_Present, or by an N_Others_Choice.
7508 ---------------------------------
7509 -- 13.1 Representation clause --
7510 ---------------------------------
7512 -- REPRESENTATION_CLAUSE ::=
7513 -- ATTRIBUTE_DEFINITION_CLAUSE
7514 -- | ENUMERATION_REPRESENTATION_CLAUSE
7515 -- | RECORD_REPRESENTATION_CLAUSE
7516 -- | AT_CLAUSE
7518 ----------------------
7519 -- 13.1 Local Name --
7520 ----------------------
7522 -- LOCAL_NAME :=
7523 -- DIRECT_NAME
7524 -- | DIRECT_NAME'ATTRIBUTE_DESIGNATOR
7525 -- | library_unit_NAME
7527 -- The construct DIRECT_NAME'ATTRIBUTE_DESIGNATOR appears in the tree
7528 -- as an attribute reference, which has essentially the same form.
7530 ---------------------------------------
7531 -- 13.3 Attribute definition clause --
7532 ---------------------------------------
7534 -- ATTRIBUTE_DEFINITION_CLAUSE ::=
7535 -- for LOCAL_NAME'ATTRIBUTE_DESIGNATOR use EXPRESSION;
7536 -- | for LOCAL_NAME'ATTRIBUTE_DESIGNATOR use NAME;
7538 -- In Ada 83, the expression must be a simple expression and the
7539 -- local name must be a direct name.
7541 -- Note: the only attribute definition clause that is processed by
7542 -- gigi is an address clause. For all other cases, the information
7543 -- is extracted by the front end and either results in setting entity
7544 -- information, e.g. Esize for the Size clause, or in appropriate
7545 -- expansion actions (e.g. in the case of Storage_Size).
7547 -- For an address clause, Gigi constructs the appropriate addressing
7548 -- code. It also ensures that no aliasing optimizations are made
7549 -- for the object for which the address clause appears.
7551 -- Note: for an address clause used to achieve an overlay:
7553 -- A : Integer;
7554 -- B : Integer;
7555 -- for B'Address use A'Address;
7557 -- the above rule means that Gigi will ensure that no optimizations
7558 -- will be made for B that would violate the implementation advice
7559 -- of RM 13.3(19). However, this advice applies only to B and not
7560 -- to A, which seems unfortunate. The GNAT front end will mark the
7561 -- object A as volatile to also prevent unwanted optimization
7562 -- assumptions based on no aliasing being made for B.
7564 -- N_Attribute_Definition_Clause
7565 -- Sloc points to FOR
7566 -- Name (Node2) the local name
7567 -- Chars (Name1) the identifier name from the attribute designator
7568 -- Expression (Node3) the expression or name
7569 -- Entity (Node4-Sem)
7570 -- Next_Rep_Item (Node5-Sem)
7571 -- From_At_Mod (Flag4-Sem)
7572 -- Check_Address_Alignment (Flag11-Sem)
7573 -- From_Aspect_Specification (Flag13-Sem)
7574 -- Is_Delayed_Aspect (Flag14-Sem)
7575 -- Address_Warning_Posted (Flag18-Sem)
7577 -- Note: if From_Aspect_Specification is set, then Sloc points to the
7578 -- aspect name, and Entity is resolved already to reference the entity
7579 -- to which the aspect applies.
7581 -----------------------------------
7582 -- 13.3.1 Aspect Specifications --
7583 -----------------------------------
7585 -- We modify the RM grammar here, the RM grammar is:
7587 -- ASPECT_SPECIFICATION ::=
7588 -- with ASPECT_MARK [=> ASPECT_DEFINITION] {,
7589 -- ASPECT_MARK [=> ASPECT_DEFINITION] }
7591 -- ASPECT_MARK ::= aspect_IDENTIFIER['Class]
7593 -- ASPECT_DEFINITION ::= NAME | EXPRESSION
7595 -- That's inconvenient, since there is no non-terminal name for a single
7596 -- entry in the list of aspects. So we use this grammar instead:
7598 -- ASPECT_SPECIFICATIONS ::=
7599 -- with ASPECT_SPECIFICATION {, ASPECT_SPECIFICATION}
7601 -- ASPECT_SPECIFICATION =>
7602 -- ASPECT_MARK [=> ASPECT_DEFINITION]
7604 -- ASPECT_MARK ::= aspect_IDENTIFIER['Class]
7606 -- ASPECT_DEFINITION ::= NAME | EXPRESSION
7608 -- Note that for Annotate, the ASPECT_DEFINITION is a pure positional
7609 -- aggregate with the elements of the aggregate corresponding to the
7610 -- successive arguments of the corresponding pragma.
7612 -- See separate package Aspects for details on the incorporation of
7613 -- these nodes into the tree, and how aspect specifications for a given
7614 -- declaration node are associated with that node.
7616 -- N_Aspect_Specification
7617 -- Sloc points to aspect identifier
7618 -- Identifier (Node1) aspect identifier
7619 -- Aspect_Rep_Item (Node2-Sem)
7620 -- Expression (Node3) Aspect_Definition (set to Empty if none)
7621 -- Entity (Node4-Sem) entity to which the aspect applies
7622 -- Next_Rep_Item (Node5-Sem)
7623 -- Class_Present (Flag6) Set if 'Class present
7624 -- Is_Ignored (Flag9-Sem)
7625 -- Is_Checked (Flag11-Sem)
7626 -- Is_Delayed_Aspect (Flag14-Sem)
7627 -- Is_Disabled (Flag15-Sem)
7628 -- Is_Boolean_Aspect (Flag16-Sem)
7629 -- Split_PPC (Flag17) Set if split pre/post attribute
7631 -- Note: Aspect_Specification is an Ada 2012 feature
7633 -- Note: The Identifier serves to identify the aspect involved (it
7634 -- is the aspect whose name corresponds to the Chars field). This
7635 -- means that the other fields of this identifier are unused, and
7636 -- in particular we use the Entity field of this identifier to save
7637 -- a copy of the expression for visibility analysis, see spec of
7638 -- Sem_Ch13 for full details of this usage.
7640 -- In the case of aspects of the form xxx'Class, the aspect identifier
7641 -- is for xxx, and Class_Present is set to True.
7643 -- Note: When a Pre or Post aspect specification is processed, it is
7644 -- broken into AND THEN sections. The left most section has Split_PPC
7645 -- set to False, indicating that it is the original specification (e.g.
7646 -- for posting errors). For the other sections, Split_PPC is set True.
7648 ---------------------------------------------
7649 -- 13.4 Enumeration representation clause --
7650 ---------------------------------------------
7652 -- ENUMERATION_REPRESENTATION_CLAUSE ::=
7653 -- for first_subtype_LOCAL_NAME use ENUMERATION_AGGREGATE;
7655 -- In Ada 83, the name must be a direct name
7657 -- N_Enumeration_Representation_Clause
7658 -- Sloc points to FOR
7659 -- Identifier (Node1) direct name
7660 -- Array_Aggregate (Node3)
7661 -- Next_Rep_Item (Node5-Sem)
7663 ---------------------------------
7664 -- 13.4 Enumeration aggregate --
7665 ---------------------------------
7667 -- ENUMERATION_AGGREGATE ::= ARRAY_AGGREGATE
7669 ------------------------------------------
7670 -- 13.5.1 Record representation clause --
7671 ------------------------------------------
7673 -- RECORD_REPRESENTATION_CLAUSE ::=
7674 -- for first_subtype_LOCAL_NAME use
7675 -- record [MOD_CLAUSE]
7676 -- {COMPONENT_CLAUSE}
7677 -- end record;
7679 -- Gigi restriction: Mod_Clause is always Empty (if present it is
7680 -- replaced by a corresponding Alignment attribute definition clause).
7682 -- Note: Component_Clauses can include pragmas
7684 -- N_Record_Representation_Clause
7685 -- Sloc points to FOR
7686 -- Identifier (Node1) direct name
7687 -- Mod_Clause (Node2) (set to Empty if no mod clause present)
7688 -- Component_Clauses (List3)
7689 -- Next_Rep_Item (Node5-Sem)
7691 ------------------------------
7692 -- 13.5.1 Component clause --
7693 ------------------------------
7695 -- COMPONENT_CLAUSE ::=
7696 -- component_LOCAL_NAME at POSITION
7697 -- range FIRST_BIT .. LAST_BIT;
7699 -- N_Component_Clause
7700 -- Sloc points to AT
7701 -- Component_Name (Node1) points to Name or Attribute_Reference
7702 -- Position (Node2)
7703 -- First_Bit (Node3)
7704 -- Last_Bit (Node4)
7706 ----------------------
7707 -- 13.5.1 Position --
7708 ----------------------
7710 -- POSITION ::= static_EXPRESSION
7712 -----------------------
7713 -- 13.5.1 First_Bit --
7714 -----------------------
7716 -- FIRST_BIT ::= static_SIMPLE_EXPRESSION
7718 ----------------------
7719 -- 13.5.1 Last_Bit --
7720 ----------------------
7722 -- LAST_BIT ::= static_SIMPLE_EXPRESSION
7724 --------------------------
7725 -- 13.8 Code statement --
7726 --------------------------
7728 -- CODE_STATEMENT ::= QUALIFIED_EXPRESSION;
7730 -- Note: in GNAT, the qualified expression has the form
7732 -- Asm_Insn'(Asm (...));
7734 -- See package System.Machine_Code in file s-maccod.ads for details on
7735 -- the allowed parameters to Asm. There are two ways this node can
7736 -- arise, as a code statement, in which case the expression is the
7737 -- qualified expression, or as a result of the expansion of an intrinsic
7738 -- call to the Asm or Asm_Input procedure.
7740 -- N_Code_Statement
7741 -- Sloc points to first token of the expression
7742 -- Expression (Node3)
7744 -- Note: package Exp_Code contains an abstract functional interface
7745 -- for use by Gigi in accessing the data from N_Code_Statement nodes.
7747 ------------------------
7748 -- 13.12 Restriction --
7749 ------------------------
7751 -- RESTRICTION ::=
7752 -- restriction_IDENTIFIER
7753 -- | restriction_parameter_IDENTIFIER => EXPRESSION
7755 -- There is no explicit node for restrictions. Instead the restriction
7756 -- appears in normal pragma syntax as a pragma argument association,
7757 -- which has the same syntactic form.
7759 --------------------------
7760 -- B.2 Shift Operators --
7761 --------------------------
7763 -- Calls to the intrinsic shift functions are converted to one of
7764 -- the following shift nodes, which have the form of normal binary
7765 -- operator names. Note that for a given shift operation, one node
7766 -- covers all possible types, as for normal operators.
7768 -- Note: it is perfectly permissible for the expander to generate
7769 -- shift operation nodes directly, in which case they will be analyzed
7770 -- and parsed in the usual manner.
7772 -- Sprint syntax: shift-function-name!(expr, count)
7774 -- Note: the Left_Opnd field holds the first argument (the value to
7775 -- be shifted). The Right_Opnd field holds the second argument (the
7776 -- shift count). The Chars field is the name of the intrinsic function.
7778 -- N_Op_Rotate_Left
7779 -- Sloc points to the function name
7780 -- plus fields for binary operator
7781 -- plus fields for expression
7782 -- Shift_Count_OK (Flag4-Sem)
7784 -- N_Op_Rotate_Right
7785 -- Sloc points to the function name
7786 -- plus fields for binary operator
7787 -- plus fields for expression
7788 -- Shift_Count_OK (Flag4-Sem)
7790 -- N_Op_Shift_Left
7791 -- Sloc points to the function name
7792 -- plus fields for binary operator
7793 -- plus fields for expression
7794 -- Shift_Count_OK (Flag4-Sem)
7796 -- N_Op_Shift_Right_Arithmetic
7797 -- Sloc points to the function name
7798 -- plus fields for binary operator
7799 -- plus fields for expression
7800 -- Shift_Count_OK (Flag4-Sem)
7802 -- N_Op_Shift_Right
7803 -- Sloc points to the function name
7804 -- plus fields for binary operator
7805 -- plus fields for expression
7806 -- Shift_Count_OK (Flag4-Sem)
7808 -- Note: N_Op_Rotate_Left, N_Op_Rotate_Right, N_Shift_Right_Arithmetic
7809 -- never appear in the expanded tree if Modify_Tree_For_C mode is set.
7811 -- Note: For N_Op_Shift_Left and N_Op_Shift_Right, the right operand is
7812 -- always less than the word size if Modify_Tree_For_C mode is set.
7814 --------------------------
7815 -- Obsolescent Features --
7816 --------------------------
7818 -- The syntax descriptions and tree nodes for obsolescent features are
7819 -- grouped together, corresponding to their location in appendix I in
7820 -- the RM. However, parsing and semantic analysis for these constructs
7821 -- is located in an appropriate chapter (see individual notes).
7823 ---------------------------
7824 -- J.3 Delta Constraint --
7825 ---------------------------
7827 -- Note: the parse routine for this construct is located in section
7828 -- 3.5.9 of Par-Ch3, and semantic analysis is in Sem_Ch3, which is
7829 -- where delta constraint logically belongs.
7831 -- DELTA_CONSTRAINT ::= DELTA static_EXPRESSION [RANGE_CONSTRAINT]
7833 -- N_Delta_Constraint
7834 -- Sloc points to DELTA
7835 -- Delta_Expression (Node3)
7836 -- Range_Constraint (Node4) (set to Empty if not present)
7838 --------------------
7839 -- J.7 At Clause --
7840 --------------------
7842 -- AT_CLAUSE ::= for DIRECT_NAME use at EXPRESSION;
7844 -- Note: the parse routine for this construct is located in Par-Ch13,
7845 -- and the semantic analysis is in Sem_Ch13, where at clause logically
7846 -- belongs if it were not obsolescent.
7848 -- Note: in Ada 83 the expression must be a simple expression
7850 -- Gigi restriction: This node never appears, it is rewritten as an
7851 -- address attribute definition clause.
7853 -- N_At_Clause
7854 -- Sloc points to FOR
7855 -- Identifier (Node1)
7856 -- Expression (Node3)
7858 ---------------------
7859 -- J.8 Mod clause --
7860 ---------------------
7862 -- MOD_CLAUSE ::= at mod static_EXPRESSION;
7864 -- Note: the parse routine for this construct is located in Par-Ch13,
7865 -- and the semantic analysis is in Sem_Ch13, where mod clause logically
7866 -- belongs if it were not obsolescent.
7868 -- Note: in Ada 83, the expression must be a simple expression
7870 -- Gigi restriction: this node never appears. It is replaced
7871 -- by a corresponding Alignment attribute definition clause.
7873 -- Note: pragmas can appear before and after the MOD_CLAUSE since
7874 -- its name has "clause" in it. This is rather strange, but is quite
7875 -- definitely specified. The pragmas before are collected in the
7876 -- Pragmas_Before field of the mod clause node itself, and pragmas
7877 -- after are simply swallowed up in the list of component clauses.
7879 -- N_Mod_Clause
7880 -- Sloc points to AT
7881 -- Expression (Node3)
7882 -- Pragmas_Before (List4) Pragmas before mod clause (No_List if none)
7884 --------------------
7885 -- Semantic Nodes --
7886 --------------------
7888 -- These semantic nodes are used to hold additional semantic information.
7889 -- They are inserted into the tree as a result of semantic processing.
7890 -- Although there are no legitimate source syntax constructions that
7891 -- correspond directly to these nodes, we need a source syntax for the
7892 -- reconstructed tree printed by Sprint, and the node descriptions here
7893 -- show this syntax.
7895 -----------------
7896 -- Call_Marker --
7897 -----------------
7899 -- This node is created during the analysis/resolution of entry calls,
7900 -- requeues, and subprogram calls. It performs several functions:
7902 -- * Call markers provide a uniform model for handling calls by the
7903 -- ABE mechanism, regardless of whether expansion took place.
7905 -- * The call marker captures the target of the related call along
7906 -- with other attributes which are either unavailabe or expensive
7907 -- to recompute once analysis, resolution, and expansion are over.
7909 -- * The call marker aids the ABE Processing phase by signaling the
7910 -- presence of a call in case the original call was transformed by
7911 -- expansion.
7913 -- * The call marker acts as a reference point for the insertion of
7914 -- run-time conditional ABE checks or guaranteed ABE failures.
7916 -- Sprint syntax: #target#
7918 -- The Sprint syntax shown above is not enabled by default
7920 -- N_Call_Marker
7921 -- Sloc points to Sloc of original call
7922 -- Target (Node1-Sem)
7923 -- Is_Elaboration_Checks_OK_Node (Flag1-Sem)
7924 -- Is_SPARK_Mode_On_Node (Flag2-Sem)
7925 -- Is_Elaboration_Warnings_OK_Node (Flag3-Sem)
7926 -- Is_Source_Call (Flag4-Sem)
7927 -- Is_Declaration_Level_Node (Flag5-Sem)
7928 -- Is_Dispatching_Call (Flag6-Sem)
7929 -- Is_Known_Guaranteed_ABE (Flag18-Sem)
7931 ------------------------
7932 -- Compound Statement --
7933 ------------------------
7935 -- This node is created by the analyzer/expander to handle some
7936 -- expansion cases where a sequence of actions needs to be captured
7937 -- within a single node (which acts as a container and allows the
7938 -- entire list of actions to be moved around as a whole) appearing
7939 -- in a sequence of statements.
7941 -- This is the statement counterpart to the expression node
7942 -- N_Expression_With_Actions.
7944 -- The required semantics is that the set of actions is executed in
7945 -- the order in which it appears, as though they appeared by themselves
7946 -- in the enclosing list of declarations or statements. Unlike what
7947 -- happens when using an N_Block_Statement, no new scope is introduced.
7949 -- Note: for the time being, this is used only as a transient
7950 -- representation during expansion, and all compound statement nodes
7951 -- must be exploded back to their constituent statements before handing
7952 -- the tree to the back end.
7954 -- Sprint syntax: do
7955 -- action;
7956 -- action;
7957 -- ...
7958 -- action;
7959 -- end;
7961 -- N_Compound_Statement
7962 -- Actions (List1)
7964 --------------
7965 -- Contract --
7966 --------------
7968 -- This node is used to hold the various parts of an entry, subprogram
7969 -- [body] or package [body] contract, in particular:
7970 -- Abstract states declared by a package declaration
7971 -- Contract cases that apply to a subprogram
7972 -- Dependency relations of inputs and output of a subprogram
7973 -- Global annotations classifying data as input or output
7974 -- Initialization sequences for a package declaration
7975 -- Pre- and postconditions that apply to a subprogram
7977 -- The node appears in an entry and [generic] subprogram [body] entity.
7979 -- Sprint syntax: <none> as the node should not appear in the tree, but
7980 -- only attached to an entry or [generic] subprogram
7981 -- entity.
7983 -- N_Contract
7984 -- Sloc points to the subprogram's name
7985 -- Pre_Post_Conditions (Node1-Sem) (set to Empty if none)
7986 -- Contract_Test_Cases (Node2-Sem) (set to Empty if none)
7987 -- Classifications (Node3-Sem) (set to Empty if none)
7988 -- Is_Expanded_Contract (Flag1-Sem)
7990 -- Pre_Post_Conditions contains a collection of pragmas that correspond
7991 -- to pre- and postconditions associated with an entry or a subprogram
7992 -- [body or stub]. The pragmas can either come from source or be the
7993 -- byproduct of aspect expansion. Currently the following pragmas appear
7994 -- in this list:
7995 -- Post
7996 -- Postcondition
7997 -- Pre
7998 -- Precondition
7999 -- Refined_Post
8000 -- The ordering in the list is in LIFO fashion.
8002 -- Note that there might be multiple preconditions or postconditions
8003 -- in this list, either because they come from separate pragmas in the
8004 -- source, or because a Pre (resp. Post) aspect specification has been
8005 -- broken into AND THEN sections. See Split_PPC for details.
8007 -- In GNATprove mode, the inherited classwide pre- and postconditions
8008 -- (suitably specialized for the specific type of the overriding
8009 -- operation) are also in this list.
8011 -- Contract_Test_Cases contains a collection of pragmas that correspond
8012 -- to aspects/pragmas Contract_Cases and Test_Case. The ordering in the
8013 -- list is in LIFO fashion.
8015 -- Classifications contains pragmas that either declare, categorize, or
8016 -- establish dependencies between subprogram or package inputs and
8017 -- outputs. Currently the following pragmas appear in this list:
8018 -- Abstract_States
8019 -- Async_Readers
8020 -- Async_Writers
8021 -- Constant_After_Elaboration
8022 -- Depends
8023 -- Effective_Reads
8024 -- Effective_Writes
8025 -- Extensions_Visible
8026 -- Global
8027 -- Initial_Condition
8028 -- Initializes
8029 -- Part_Of
8030 -- Refined_Depends
8031 -- Refined_Global
8032 -- Refined_States
8033 -- Volatile_Function
8034 -- The ordering is in LIFO fashion.
8036 -------------------
8037 -- Expanded Name --
8038 -------------------
8040 -- The N_Expanded_Name node is used to represent a selected component
8041 -- name that has been resolved to an expanded name. The semantic phase
8042 -- replaces N_Selected_Component nodes that represent names by the use
8043 -- of this node, leaving the N_Selected_Component node used only when
8044 -- the prefix is a record or protected type.
8046 -- The fields of the N_Expanded_Name node are layed out identically
8047 -- to those of the N_Selected_Component node, allowing conversion of
8048 -- an expanded name node to a selected component node to be done
8049 -- easily, see Sinfo.CN.Change_Selected_Component_To_Expanded_Name.
8051 -- There is no special sprint syntax for an expanded name
8053 -- N_Expanded_Name
8054 -- Sloc points to the period
8055 -- Chars (Name1) copy of Chars field of selector name
8056 -- Prefix (Node3)
8057 -- Selector_Name (Node2)
8058 -- Entity (Node4-Sem)
8059 -- Associated_Node (Node4-Sem)
8060 -- Is_Elaboration_Checks_OK_Node (Flag1-Sem)
8061 -- Is_SPARK_Mode_On_Node (Flag2-Sem)
8062 -- Has_Private_View (Flag11-Sem) set in generic units
8063 -- Redundant_Use (Flag13-Sem)
8064 -- Atomic_Sync_Required (Flag14-Sem)
8065 -- plus fields for expression
8067 -----------------------------
8068 -- Expression With Actions --
8069 -----------------------------
8071 -- This node is created by the analyzer/expander to handle some
8072 -- expansion cases, notably short-circuit forms where there are
8073 -- actions associated with the right-hand side operand.
8075 -- The N_Expression_With_Actions node represents an expression with
8076 -- an associated set of actions (which are executable statements and
8077 -- declarations, as might occur in a handled statement sequence).
8079 -- The required semantics is that the set of actions is executed in
8080 -- the order in which it appears just before the expression is
8081 -- evaluated (and these actions must only be executed if the value
8082 -- of the expression is evaluated). The node is considered to be
8083 -- a subexpression, whose value is the value of the Expression after
8084 -- executing all the actions.
8086 -- If the actions contain declarations, then these declarations may
8087 -- be referenced within the expression. However note that there is
8088 -- no proper scope associated with the expression-with-action, so the
8089 -- back-end will elaborate them in the context of the enclosing scope.
8091 -- Sprint syntax: do
8092 -- action;
8093 -- action;
8094 -- ...
8095 -- action;
8096 -- in expression end
8098 -- N_Expression_With_Actions
8099 -- Actions (List1)
8100 -- Expression (Node3)
8101 -- plus fields for expression
8103 -- Note: In the final generated tree presented to the code generator,
8104 -- the actions list is always non-null, since there is no point in this
8105 -- node if the actions are Empty. During semantic analysis there are
8106 -- cases where it is convenient to temporarily generate an empty actions
8107 -- list. This arises in cases where we create such an empty actions
8108 -- list, and it may or may not end up being a place where additional
8109 -- actions are inserted. The expander removes such empty cases after
8110 -- the expression of the node is fully analyzed and expanded, at which
8111 -- point it is safe to remove it, since no more actions can be inserted.
8113 -- Note: In Modify_Tree_For_C, we never generate any declarations in
8114 -- the action list, which can contain only non-declarative statements.
8116 --------------------
8117 -- Free Statement --
8118 --------------------
8120 -- The N_Free_Statement node is generated as a result of a call to an
8121 -- instantiation of Unchecked_Deallocation. The instantiation of this
8122 -- generic is handled specially and generates this node directly.
8124 -- Sprint syntax: free expression
8126 -- N_Free_Statement
8127 -- Sloc is copied from the unchecked deallocation call
8128 -- Expression (Node3) argument to unchecked deallocation call
8129 -- Storage_Pool (Node1-Sem)
8130 -- Procedure_To_Call (Node2-Sem)
8131 -- Actual_Designated_Subtype (Node4-Sem)
8133 -- Note: in the case where a debug source file is generated, the Sloc
8134 -- for this node points to the FREE keyword in the Sprint file output.
8136 -------------------
8137 -- Freeze Entity --
8138 -------------------
8140 -- This node marks the point in a declarative part at which an entity
8141 -- declared therein becomes frozen. The expander places initialization
8142 -- procedures for types at those points. Gigi uses the freezing point
8143 -- to elaborate entities that may depend on previous private types.
8145 -- See the section in Einfo "Delayed Freezing and Elaboration" for
8146 -- a full description of the use of this node.
8148 -- The Entity field points back to the entity for the type (whose
8149 -- Freeze_Node field points back to this freeze node).
8151 -- The Actions field contains a list of declarations and statements
8152 -- generated by the expander which are associated with the freeze
8153 -- node, and are elaborated as though the freeze node were replaced
8154 -- by this sequence of actions.
8156 -- Note: the Sloc field in the freeze node references a construct
8157 -- associated with the freezing point. This is used for posting
8158 -- messages in some error/warning situations, e.g. the case where
8159 -- a primitive operation of a tagged type is declared too late.
8161 -- Sprint syntax: freeze entity-name [
8162 -- freeze actions
8163 -- ]
8165 -- N_Freeze_Entity
8166 -- Sloc points near freeze point (see above special note)
8167 -- Entity (Node4-Sem)
8168 -- Access_Types_To_Process (Elist2-Sem) (set to No_Elist if none)
8169 -- TSS_Elist (Elist3-Sem) (set to No_Elist if no associated TSS's)
8170 -- Actions (List1) (set to No_List if no freeze actions)
8171 -- First_Subtype_Link (Node5-Sem) (set to Empty if no link)
8173 -- The Actions field holds actions associated with the freeze. These
8174 -- actions are elaborated at the point where the type is frozen.
8176 -- Note: in the case where a debug source file is generated, the Sloc
8177 -- for this node points to the FREEZE keyword in the Sprint file output.
8179 ---------------------------
8180 -- Freeze Generic Entity --
8181 ---------------------------
8183 -- The freeze point of an entity indicates the point at which the
8184 -- information needed to generate code for the entity is complete.
8185 -- The freeze node for an entity triggers expander activities, such as
8186 -- build initialization procedures, and backend activities, such as
8187 -- completing the elaboration of packages.
8189 -- For entities declared within a generic unit, for which no code is
8190 -- generated, the freeze point is not equally meaningful. However, in
8191 -- Ada 2012 several semantic checks on declarations must be delayed to
8192 -- the freeze point, and we need to include such a mark in the tree to
8193 -- trigger these checks. The Freeze_Generic_Entity node plays no other
8194 -- role, and is ignored by the expander and the back-end.
8196 -- Sprint syntax: freeze_generic entity-name
8198 -- N_Freeze_Generic_Entity
8199 -- Sloc points near freeze point
8200 -- Entity (Node4-Sem)
8202 --------------------------------
8203 -- Implicit Label Declaration --
8204 --------------------------------
8206 -- An implicit label declaration is created for every occurrence of a
8207 -- label on a statement or a label on a block or loop. It is chained
8208 -- in the declarations of the innermost enclosing block as specified
8209 -- in RM section 5.1 (3).
8211 -- The Defining_Identifier is the actual identifier for the statement
8212 -- identifier. Note that the occurrence of the label is a reference, NOT
8213 -- the defining occurrence. The defining occurrence occurs at the head
8214 -- of the innermost enclosing block, and is represented by this node.
8216 -- Note: from the grammar, this might better be called an implicit
8217 -- statement identifier declaration, but the term we choose seems
8218 -- friendlier, since at least informally statement identifiers are
8219 -- called labels in both cases (i.e. when used in labels, and when
8220 -- used as the identifiers of blocks and loops).
8222 -- Note: although this is logically a semantic node, since it does not
8223 -- correspond directly to a source syntax construction, these nodes are
8224 -- actually created by the parser in a post pass done just after parsing
8225 -- is complete, before semantic analysis is started (see Par.Labl).
8227 -- Sprint syntax: labelname : label;
8229 -- N_Implicit_Label_Declaration
8230 -- Sloc points to the << token for a statement identifier, or to the
8231 -- LOOP, DECLARE, or BEGIN token for a loop or block identifier
8232 -- Defining_Identifier (Node1)
8233 -- Label_Construct (Node2-Sem)
8235 -- Note: in the case where a debug source file is generated, the Sloc
8236 -- for this node points to the label name in the generated declaration.
8238 ---------------------
8239 -- Itype Reference --
8240 ---------------------
8242 -- This node is used to create a reference to an Itype. The only purpose
8243 -- is to make sure the Itype is defined if this is the first reference.
8245 -- A typical use of this node is when an Itype is to be referenced in
8246 -- two branches of an IF statement. In this case it is important that
8247 -- the first use of the Itype not be inside the conditional, since then
8248 -- it might not be defined if the other branch of the IF is taken, in
8249 -- the case where the definition generates elaboration code.
8251 -- The Itype field points to the referenced Itype
8253 -- Sprint syntax: reference itype-name
8255 -- N_Itype_Reference
8256 -- Sloc points to the node generating the reference
8257 -- Itype (Node1-Sem)
8259 -- Note: in the case where a debug source file is generated, the Sloc
8260 -- for this node points to the REFERENCE keyword in the file output.
8262 ---------------------
8263 -- Raise xxx Error --
8264 ---------------------
8266 -- One of these nodes is created during semantic analysis to replace
8267 -- a node for an expression that is determined to definitely raise
8268 -- the corresponding exception.
8270 -- The N_Raise_xxx_Error node may also stand alone in place
8271 -- of a declaration or statement, in which case it simply causes
8272 -- the exception to be raised (i.e. it is equivalent to a raise
8273 -- statement that raises the corresponding exception). This use
8274 -- is distinguished by the fact that the Etype in this case is
8275 -- Standard_Void_Type; in the subexpression case, the Etype is the
8276 -- same as the type of the subexpression which it replaces.
8278 -- If Condition is empty, then the raise is unconditional. If the
8279 -- Condition field is non-empty, it is a boolean expression which is
8280 -- first evaluated, and the exception is raised only if the value of the
8281 -- expression is True. In the unconditional case, the creation of this
8282 -- node is usually accompanied by a warning message (unless it appears
8283 -- within the right operand of a short-circuit form whose left argument
8284 -- is static and decisively eliminates elaboration of the raise
8285 -- operation). The condition field can ONLY be present when the node is
8286 -- used as a statement form; it must NOT be present in the case where
8287 -- the node appears within an expression.
8289 -- The exception is generated with a message that contains the
8290 -- file name and line number, and then appended text. The Reason
8291 -- code shows the text to be added. The Reason code is an element
8292 -- of the type Types.RT_Exception_Code, and indicates both the
8293 -- message to be added, and the exception to be raised (which must
8294 -- match the node type). The value is stored by storing a Uint which
8295 -- is the Pos value of the enumeration element in this type.
8297 -- Gigi restriction: This expander ensures that the type of the
8298 -- Condition field is always Standard.Boolean, even if the type
8299 -- in the source is some non-standard boolean type.
8301 -- Sprint syntax: [xxx_error "msg"]
8302 -- or: [xxx_error when condition "msg"]
8304 -- N_Raise_Constraint_Error
8305 -- Sloc references related construct
8306 -- Condition (Node1) (set to Empty if no condition)
8307 -- Reason (Uint3)
8308 -- plus fields for expression
8310 -- N_Raise_Program_Error
8311 -- Sloc references related construct
8312 -- Condition (Node1) (set to Empty if no condition)
8313 -- Reason (Uint3)
8314 -- plus fields for expression
8316 -- N_Raise_Storage_Error
8317 -- Sloc references related construct
8318 -- Condition (Node1) (set to Empty if no condition)
8319 -- Reason (Uint3)
8320 -- plus fields for expression
8322 -- Note: Sloc is copied from the expression generating the exception.
8323 -- In the case where a debug source file is generated, the Sloc for
8324 -- this node points to the left bracket in the Sprint file output.
8326 -- Note: the back end may be required to translate these nodes into
8327 -- appropriate goto statements. See description of N_Push/Pop_xxx_Label.
8329 ---------------------------------------------
8330 -- Optimization of Exception Raise to Goto --
8331 ---------------------------------------------
8333 -- In some cases, the front end will determine that any exception raised
8334 -- by the back end for a certain exception should be transformed into a
8335 -- goto statement.
8337 -- There are three kinds of exceptions raised by the back end (note that
8338 -- for this purpose we consider gigi to be part of the back end in the
8339 -- gcc case):
8341 -- 1. Exceptions resulting from N_Raise_xxx_Error nodes
8342 -- 2. Exceptions from checks triggered by Do_xxx_Check flags
8343 -- 3. Other cases not specifically marked by the front end
8345 -- Normally all such exceptions are translated into calls to the proper
8346 -- Rcheck_xx procedure, where xx encodes both the exception to be raised
8347 -- and the exception message.
8349 -- The front end may determine that for a particular sequence of code,
8350 -- exceptions in any of these three categories for a particular builtin
8351 -- exception should result in a goto, rather than a call to Rcheck_xx.
8352 -- The exact sequence to be generated is:
8354 -- Local_Raise (exception'Identity);
8355 -- goto Label
8357 -- The front end marks such a sequence of code by bracketing it with
8358 -- push and pop nodes:
8360 -- N_Push_xxx_Label (referencing the label)
8361 -- ...
8362 -- (code where transformation is expected for exception xxx)
8363 -- ...
8364 -- N_Pop_xxx_Label
8366 -- The use of push/pop reflects the fact that such regions can properly
8367 -- nest, and one special case is a subregion in which no transformation
8368 -- is allowed. Such a region is marked by a N_Push_xxx_Label node whose
8369 -- Exception_Label field is Empty.
8371 -- N_Push_Constraint_Error_Label
8372 -- Sloc references first statement in region covered
8373 -- Exception_Label (Node5-Sem)
8375 -- N_Push_Program_Error_Label
8376 -- Sloc references first statement in region covered
8377 -- Exception_Label (Node5-Sem)
8379 -- N_Push_Storage_Error_Label
8380 -- Sloc references first statement in region covered
8381 -- Exception_Label (Node5-Sem)
8383 -- N_Pop_Constraint_Error_Label
8384 -- Sloc references last statement in region covered
8386 -- N_Pop_Program_Error_Label
8387 -- Sloc references last statement in region covered
8389 -- N_Pop_Storage_Error_Label
8390 -- Sloc references last statement in region covered
8392 ---------------
8393 -- Reference --
8394 ---------------
8396 -- For a number of purposes, we need to construct references to objects.
8397 -- These references are subsequently treated as normal access values.
8398 -- An example is the construction of the parameter block passed to a
8399 -- task entry. The N_Reference node is provided for this purpose. It is
8400 -- similar in effect to the use of the Unrestricted_Access attribute,
8401 -- and like Unrestricted_Access can be applied to objects which would
8402 -- not be valid prefixes for the Unchecked_Access attribute (e.g.
8403 -- objects which are not aliased, and slices). In addition it can be
8404 -- applied to composite type values as well as objects, including string
8405 -- values and aggregates.
8407 -- Note: we use the Prefix field for this expression so that the
8408 -- resulting node can be treated using common code with the attribute
8409 -- nodes for the 'Access and related attributes. Logically it would make
8410 -- more sense to call it an Expression field, but then we would have to
8411 -- special case the treatment of the N_Reference node.
8413 -- Note: evaluating a N_Reference node is guaranteed to yield a non-null
8414 -- value at run time. Therefore, it is valid to set Is_Known_Non_Null on
8415 -- a temporary initialized to a N_Reference node in order to eliminate
8416 -- superfluous access checks.
8418 -- Sprint syntax: prefix'reference
8420 -- N_Reference
8421 -- Sloc is copied from the expression
8422 -- Prefix (Node3)
8423 -- plus fields for expression
8425 -- Note: in the case where a debug source file is generated, the Sloc
8426 -- for this node points to the quote in the Sprint file output.
8428 ----------------
8429 -- SCIL Nodes --
8430 ----------------
8432 -- SCIL nodes are special nodes added to the tree when the CodePeer mode
8433 -- is active. They are only generated if SCIL generation is enabled.
8434 -- A standard tree-walk will not encounter these nodes even if they
8435 -- are present; these nodes are only accessible via the function
8436 -- SCIL_LL.Get_SCIL_Node. These nodes have no associated dynamic
8437 -- semantics.
8439 -- Sprint syntax: [ <node kind> ]
8440 -- No semantic field values are displayed.
8442 -- N_SCIL_Dispatch_Table_Tag_Init
8443 -- Sloc references a node for a tag initialization
8444 -- SCIL_Entity (Node4-Sem)
8446 -- An N_SCIL_Dispatch_Table_Tag_Init node may be associated (via
8447 -- Get_SCIL_Node) with the N_Object_Declaration node corresponding to
8448 -- the declaration of the dispatch table for a tagged type.
8450 -- N_SCIL_Dispatching_Call
8451 -- Sloc references the node of a dispatching call
8452 -- SCIL_Target_Prim (Node2-Sem)
8453 -- SCIL_Entity (Node4-Sem)
8454 -- SCIL_Controlling_Tag (Node5-Sem)
8456 -- An N_Scil_Dispatching call node may be associated (via Get_SCIL_Node)
8457 -- with the N_Procedure_Call_Statement or N_Function_Call node (or a
8458 -- rewriting thereof) corresponding to a dispatching call.
8460 -- N_SCIL_Membership_Test
8461 -- Sloc references the node of a membership test
8462 -- SCIL_Tag_Value (Node5-Sem)
8463 -- SCIL_Entity (Node4-Sem)
8465 -- An N_Scil_Membership_Test node may be associated (via Get_SCIL_Node)
8466 -- with the N_In node (or a rewriting thereof) corresponding to a
8467 -- classwide membership test.
8469 --------------------------
8470 -- Unchecked Expression --
8471 --------------------------
8473 -- An unchecked expression is one that must be analyzed and resolved
8474 -- with all checks off, regardless of the current setting of scope
8475 -- suppress flags.
8477 -- Sprint syntax: `(expression)
8479 -- Note: this node is always removed from the tree (and replaced by
8480 -- its constituent expression) on completion of analysis, so it only
8481 -- appears in intermediate trees, and will never be seen by Gigi.
8483 -- N_Unchecked_Expression
8484 -- Sloc is a copy of the Sloc of the expression
8485 -- Expression (Node3)
8486 -- plus fields for expression
8488 -- Note: in the case where a debug source file is generated, the Sloc
8489 -- for this node points to the back quote in the Sprint file output.
8491 -------------------------------
8492 -- Unchecked Type Conversion --
8493 -------------------------------
8495 -- An unchecked type conversion node represents the semantic action
8496 -- corresponding to a call to an instantiation of Unchecked_Conversion.
8497 -- It is generated as a result of actual use of Unchecked_Conversion
8498 -- and also the expander generates unchecked type conversion nodes
8499 -- directly for expansion of complex semantic actions.
8501 -- Note: an unchecked type conversion is a variable as far as the
8502 -- semantics are concerned, which is convenient for the expander.
8503 -- This does not change what Ada source programs are legal, since
8504 -- clearly a function call to an instantiation of Unchecked_Conversion
8505 -- is not a variable in any case.
8507 -- Sprint syntax: subtype-mark!(expression)
8509 -- N_Unchecked_Type_Conversion
8510 -- Sloc points to related node in source
8511 -- Subtype_Mark (Node4)
8512 -- Expression (Node3)
8513 -- Kill_Range_Check (Flag11-Sem)
8514 -- No_Truncation (Flag17-Sem)
8515 -- plus fields for expression
8517 -- Note: in the case where a debug source file is generated, the Sloc
8518 -- for this node points to the exclamation in the Sprint file output.
8520 -----------------------------------
8521 -- Validate_Unchecked_Conversion --
8522 -----------------------------------
8524 -- The front end does most of the validation of unchecked conversion,
8525 -- including checking sizes (this is done after the back end is called
8526 -- to take advantage of back-annotation of calculated sizes).
8528 -- The front end also deals with specific cases that are not allowed
8529 -- e.g. involving unconstrained array types.
8531 -- For the case of the standard gigi backend, this means that all
8532 -- checks are done in the front end.
8534 -- However, in the case of specialized back-ends, in particular the JVM
8535 -- backend in the past, additional requirements and restrictions may
8536 -- apply to unchecked conversion, and these are most conveniently
8537 -- performed in the specialized back-end.
8539 -- To accommodate this requirement, for such back ends, the following
8540 -- special node is generated recording an unchecked conversion that
8541 -- needs to be validated. The back end should post an appropriate
8542 -- error message if the unchecked conversion is invalid or warrants
8543 -- a special warning message.
8545 -- Source_Type and Target_Type point to the entities for the two
8546 -- types involved in the unchecked conversion instantiation that
8547 -- is to be validated.
8549 -- Sprint syntax: validate Unchecked_Conversion (source, target);
8551 -- N_Validate_Unchecked_Conversion
8552 -- Sloc points to instantiation (location for warning message)
8553 -- Source_Type (Node1-Sem)
8554 -- Target_Type (Node2-Sem)
8556 -- Note: in the case where a debug source file is generated, the Sloc
8557 -- for this node points to the VALIDATE keyword in the file output.
8559 -------------------------------
8560 -- Variable_Reference_Marker --
8561 -------------------------------
8563 -- This node is created during the analysis of direct or expanded names,
8564 -- and the resolution of entry and subprogram calls. It performs several
8565 -- functions:
8567 -- * Variable reference markers provide a uniform model for handling
8568 -- variable references by the ABE mechanism, regardless of whether
8569 -- expansion took place.
8571 -- * The variable reference marker captures the entity of the variable
8572 -- being read or written.
8574 -- * The variable reference markers aid the ABE Processing phase by
8575 -- signaling the presence of a call in case the original variable
8576 -- reference was transformed by expansion.
8578 -- Sprint syntax: r#target# -- for a read
8579 -- rw#target# -- for a read/write
8580 -- w#target# -- for a write
8582 -- The Sprint syntax shown above is not enabled by default
8584 -- N_Variable_Reference_Marker
8585 -- Sloc points to Sloc of original variable reference
8586 -- Target (Node1-Sem)
8587 -- Is_Read (Flag1-Sem)
8588 -- Is_Write (Flag2-Sem)
8590 -----------
8591 -- Empty --
8592 -----------
8594 -- Used as the contents of the Nkind field of the dummy Empty node and in
8595 -- some other situations to indicate an uninitialized value.
8597 -- N_Empty
8598 -- Chars (Name1) is set to No_Name
8600 -----------
8601 -- Error --
8602 -----------
8604 -- Used as the contents of the Nkind field of the dummy Error node.
8605 -- Has an Etype field, which gets set to Any_Type later on, to help
8606 -- error recovery (Error_Posted is also set in the Error node).
8608 -- N_Error
8609 -- Chars (Name1) is set to Error_Name
8610 -- Etype (Node5-Sem)
8612 --------------------------
8613 -- Node Type Definition --
8614 --------------------------
8616 -- The following is the definition of the Node_Kind type. As previously
8617 -- discussed, this is separated off to allow rearrangement of the order to
8618 -- facilitate definition of subtype ranges. The comments show the subtype
8619 -- classes which apply to each set of node kinds. The first entry in the
8620 -- comment characterizes the following list of nodes.
8622 type Node_Kind is (
8623 N_Unused_At_Start,
8625 -- N_Representation_Clause
8627 N_At_Clause,
8628 N_Component_Clause,
8629 N_Enumeration_Representation_Clause,
8630 N_Mod_Clause,
8631 N_Record_Representation_Clause,
8633 -- N_Representation_Clause, N_Has_Chars
8635 N_Attribute_Definition_Clause,
8637 -- N_Has_Chars
8639 N_Empty,
8640 N_Pragma_Argument_Association,
8642 -- N_Has_Etype, N_Has_Chars
8644 -- Note: of course N_Error does not really have Etype or Chars fields,
8645 -- and any attempt to access these fields in N_Error will cause an
8646 -- error, but historically this always has been positioned so that an
8647 -- "in N_Has_Chars" or "in N_Has_Etype" test yields true for N_Error.
8648 -- Most likely this makes coding easier somewhere but still seems
8649 -- undesirable. To be investigated some time ???
8651 N_Error,
8653 -- N_Entity, N_Has_Etype, N_Has_Chars
8655 N_Defining_Character_Literal,
8656 N_Defining_Identifier,
8657 N_Defining_Operator_Symbol,
8659 -- N_Subexpr, N_Has_Etype, N_Has_Chars, N_Has_Entity
8661 N_Expanded_Name,
8663 -- N_Direct_Name, N_Subexpr, N_Has_Etype,
8664 -- N_Has_Chars, N_Has_Entity
8666 N_Identifier,
8667 N_Operator_Symbol,
8669 -- N_Direct_Name, N_Subexpr, N_Has_Etype,
8670 -- N_Has_Chars, N_Has_Entity
8672 N_Character_Literal,
8674 -- N_Binary_Op, N_Op, N_Subexpr,
8675 -- N_Has_Etype, N_Has_Chars, N_Has_Entity
8677 N_Op_Add,
8678 N_Op_Concat,
8679 N_Op_Expon,
8680 N_Op_Subtract,
8682 -- N_Binary_Op, N_Op, N_Subexpr, N_Has_Treat_Fixed_As_Integer
8683 -- N_Has_Etype, N_Has_Chars, N_Has_Entity, N_Multiplying_Operator
8685 N_Op_Divide,
8686 N_Op_Mod,
8687 N_Op_Multiply,
8688 N_Op_Rem,
8690 -- N_Binary_Op, N_Op, N_Subexpr, N_Has_Etype
8691 -- N_Has_Entity, N_Has_Chars, N_Op_Boolean
8693 N_Op_And,
8695 -- N_Binary_Op, N_Op, N_Subexpr, N_Has_Etype
8696 -- N_Has_Entity, N_Has_Chars, N_Op_Boolean, N_Op_Compare
8698 N_Op_Eq,
8699 N_Op_Ge,
8700 N_Op_Gt,
8701 N_Op_Le,
8702 N_Op_Lt,
8703 N_Op_Ne,
8705 -- N_Binary_Op, N_Op, N_Subexpr, N_Has_Etype
8706 -- N_Has_Entity, N_Has_Chars, N_Op_Boolean
8708 N_Op_Or,
8709 N_Op_Xor,
8711 -- N_Binary_Op, N_Op, N_Subexpr, N_Has_Etype,
8712 -- N_Op_Shift, N_Has_Chars, N_Has_Entity
8714 N_Op_Rotate_Left,
8715 N_Op_Rotate_Right,
8716 N_Op_Shift_Left,
8717 N_Op_Shift_Right,
8718 N_Op_Shift_Right_Arithmetic,
8720 -- N_Unary_Op, N_Op, N_Subexpr, N_Has_Etype,
8721 -- N_Has_Chars, N_Has_Entity
8723 N_Op_Abs,
8724 N_Op_Minus,
8725 N_Op_Not,
8726 N_Op_Plus,
8728 -- N_Subexpr, N_Has_Etype, N_Has_Entity
8730 N_Attribute_Reference,
8732 -- N_Subexpr, N_Has_Etype, N_Membership_Test
8734 N_In,
8735 N_Not_In,
8737 -- N_Subexpr, N_Has_Etype, N_Short_Circuit
8739 N_And_Then,
8740 N_Or_Else,
8742 -- N_Subexpr, N_Has_Etype, N_Subprogram_Call
8744 N_Function_Call,
8745 N_Procedure_Call_Statement,
8747 -- N_Subexpr, N_Has_Etype, N_Raise_xxx_Error
8749 N_Raise_Constraint_Error,
8750 N_Raise_Program_Error,
8751 N_Raise_Storage_Error,
8753 -- N_Subexpr, N_Has_Etype, N_Numeric_Or_String_Literal
8755 N_Integer_Literal,
8756 N_Real_Literal,
8757 N_String_Literal,
8759 -- N_Subexpr, N_Has_Etype
8761 N_Explicit_Dereference,
8762 N_Expression_With_Actions,
8763 N_If_Expression,
8764 N_Indexed_Component,
8765 N_Null,
8766 N_Qualified_Expression,
8767 N_Quantified_Expression,
8768 N_Aggregate,
8769 N_Allocator,
8770 N_Case_Expression,
8771 N_Delta_Aggregate,
8772 N_Extension_Aggregate,
8773 N_Raise_Expression,
8774 N_Range,
8775 N_Reference,
8776 N_Selected_Component,
8777 N_Slice,
8778 N_Target_Name,
8779 N_Type_Conversion,
8780 N_Unchecked_Expression,
8781 N_Unchecked_Type_Conversion,
8783 -- N_Has_Etype
8785 N_Subtype_Indication,
8787 -- N_Declaration
8789 N_Component_Declaration,
8790 N_Entry_Declaration,
8791 N_Expression_Function,
8792 N_Formal_Object_Declaration,
8793 N_Formal_Type_Declaration,
8794 N_Full_Type_Declaration,
8795 N_Incomplete_Type_Declaration,
8796 N_Iterator_Specification,
8797 N_Loop_Parameter_Specification,
8798 N_Object_Declaration,
8799 N_Protected_Type_Declaration,
8800 N_Private_Extension_Declaration,
8801 N_Private_Type_Declaration,
8802 N_Subtype_Declaration,
8804 -- N_Subprogram_Specification, N_Declaration
8806 N_Function_Specification,
8807 N_Procedure_Specification,
8809 -- N_Access_To_Subprogram_Definition
8811 N_Access_Function_Definition,
8812 N_Access_Procedure_Definition,
8814 -- N_Later_Decl_Item
8816 N_Task_Type_Declaration,
8818 -- N_Body_Stub, N_Later_Decl_Item
8820 N_Package_Body_Stub,
8821 N_Protected_Body_Stub,
8822 N_Subprogram_Body_Stub,
8823 N_Task_Body_Stub,
8825 -- N_Generic_Instantiation, N_Later_Decl_Item
8826 -- N_Subprogram_Instantiation
8828 N_Function_Instantiation,
8829 N_Procedure_Instantiation,
8831 -- N_Generic_Instantiation, N_Later_Decl_Item
8833 N_Package_Instantiation,
8835 -- N_Unit_Body, N_Later_Decl_Item, N_Proper_Body
8837 N_Package_Body,
8838 N_Subprogram_Body,
8840 -- N_Later_Decl_Item, N_Proper_Body
8842 N_Protected_Body,
8843 N_Task_Body,
8845 -- N_Later_Decl_Item
8847 N_Implicit_Label_Declaration,
8848 N_Package_Declaration,
8849 N_Single_Task_Declaration,
8850 N_Subprogram_Declaration,
8851 N_Use_Package_Clause,
8853 -- N_Generic_Declaration, N_Later_Decl_Item
8855 N_Generic_Package_Declaration,
8856 N_Generic_Subprogram_Declaration,
8858 -- N_Array_Type_Definition
8860 N_Constrained_Array_Definition,
8861 N_Unconstrained_Array_Definition,
8863 -- N_Renaming_Declaration
8865 N_Exception_Renaming_Declaration,
8866 N_Object_Renaming_Declaration,
8867 N_Package_Renaming_Declaration,
8868 N_Subprogram_Renaming_Declaration,
8870 -- N_Generic_Renaming_Declaration, N_Renaming_Declaration
8872 N_Generic_Function_Renaming_Declaration,
8873 N_Generic_Package_Renaming_Declaration,
8874 N_Generic_Procedure_Renaming_Declaration,
8876 -- N_Statement_Other_Than_Procedure_Call
8878 N_Abort_Statement,
8879 N_Accept_Statement,
8880 N_Assignment_Statement,
8881 N_Asynchronous_Select,
8882 N_Block_Statement,
8883 N_Case_Statement,
8884 N_Code_Statement,
8885 N_Compound_Statement,
8886 N_Conditional_Entry_Call,
8888 -- N_Statement_Other_Than_Procedure_Call, N_Delay_Statement
8890 N_Delay_Relative_Statement,
8891 N_Delay_Until_Statement,
8893 -- N_Statement_Other_Than_Procedure_Call
8895 N_Entry_Call_Statement,
8896 N_Free_Statement,
8897 N_Goto_Statement,
8898 N_Loop_Statement,
8899 N_Null_Statement,
8900 N_Raise_Statement,
8901 N_Requeue_Statement,
8902 N_Simple_Return_Statement,
8903 N_Extended_Return_Statement,
8904 N_Selective_Accept,
8905 N_Timed_Entry_Call,
8907 -- N_Statement_Other_Than_Procedure_Call, N_Has_Condition
8909 N_Exit_Statement,
8910 N_If_Statement,
8912 -- N_Has_Condition
8914 N_Accept_Alternative,
8915 N_Delay_Alternative,
8916 N_Elsif_Part,
8917 N_Entry_Body_Formal_Part,
8918 N_Iteration_Scheme,
8919 N_Terminate_Alternative,
8921 -- N_Formal_Subprogram_Declaration
8923 N_Formal_Abstract_Subprogram_Declaration,
8924 N_Formal_Concrete_Subprogram_Declaration,
8926 -- N_Push_xxx_Label, N_Push_Pop_xxx_Label
8928 N_Push_Constraint_Error_Label,
8929 N_Push_Program_Error_Label,
8930 N_Push_Storage_Error_Label,
8932 -- N_Pop_xxx_Label, N_Push_Pop_xxx_Label
8934 N_Pop_Constraint_Error_Label,
8935 N_Pop_Program_Error_Label,
8936 N_Pop_Storage_Error_Label,
8938 -- SCIL nodes
8940 N_SCIL_Dispatch_Table_Tag_Init,
8941 N_SCIL_Dispatching_Call,
8942 N_SCIL_Membership_Test,
8944 -- Other nodes (not part of any subtype class)
8946 N_Abortable_Part,
8947 N_Abstract_Subprogram_Declaration,
8948 N_Access_Definition,
8949 N_Access_To_Object_Definition,
8950 N_Aspect_Specification,
8951 N_Call_Marker,
8952 N_Case_Expression_Alternative,
8953 N_Case_Statement_Alternative,
8954 N_Compilation_Unit,
8955 N_Compilation_Unit_Aux,
8956 N_Component_Association,
8957 N_Component_Definition,
8958 N_Component_List,
8959 N_Contract,
8960 N_Derived_Type_Definition,
8961 N_Decimal_Fixed_Point_Definition,
8962 N_Defining_Program_Unit_Name,
8963 N_Delta_Constraint,
8964 N_Designator,
8965 N_Digits_Constraint,
8966 N_Discriminant_Association,
8967 N_Discriminant_Specification,
8968 N_Enumeration_Type_Definition,
8969 N_Entry_Body,
8970 N_Entry_Call_Alternative,
8971 N_Entry_Index_Specification,
8972 N_Exception_Declaration,
8973 N_Exception_Handler,
8974 N_Floating_Point_Definition,
8975 N_Formal_Decimal_Fixed_Point_Definition,
8976 N_Formal_Derived_Type_Definition,
8977 N_Formal_Discrete_Type_Definition,
8978 N_Formal_Floating_Point_Definition,
8979 N_Formal_Modular_Type_Definition,
8980 N_Formal_Ordinary_Fixed_Point_Definition,
8981 N_Formal_Package_Declaration,
8982 N_Formal_Private_Type_Definition,
8983 N_Formal_Incomplete_Type_Definition,
8984 N_Formal_Signed_Integer_Type_Definition,
8985 N_Freeze_Entity,
8986 N_Freeze_Generic_Entity,
8987 N_Generic_Association,
8988 N_Handled_Sequence_Of_Statements,
8989 N_Index_Or_Discriminant_Constraint,
8990 N_Iterated_Component_Association,
8991 N_Itype_Reference,
8992 N_Label,
8993 N_Modular_Type_Definition,
8994 N_Number_Declaration,
8995 N_Ordinary_Fixed_Point_Definition,
8996 N_Others_Choice,
8997 N_Package_Specification,
8998 N_Parameter_Association,
8999 N_Parameter_Specification,
9000 N_Pragma,
9001 N_Protected_Definition,
9002 N_Range_Constraint,
9003 N_Real_Range_Specification,
9004 N_Record_Definition,
9005 N_Signed_Integer_Type_Definition,
9006 N_Single_Protected_Declaration,
9007 N_Subunit,
9008 N_Task_Definition,
9009 N_Triggering_Alternative,
9010 N_Use_Type_Clause,
9011 N_Validate_Unchecked_Conversion,
9012 N_Variable_Reference_Marker,
9013 N_Variant,
9014 N_Variant_Part,
9015 N_With_Clause,
9016 N_Unused_At_End);
9018 for Node_Kind'Size use 8;
9019 -- The data structures in Atree assume this
9021 ----------------------------
9022 -- Node Class Definitions --
9023 ----------------------------
9025 subtype N_Access_To_Subprogram_Definition is Node_Kind range
9026 N_Access_Function_Definition ..
9027 N_Access_Procedure_Definition;
9029 subtype N_Array_Type_Definition is Node_Kind range
9030 N_Constrained_Array_Definition ..
9031 N_Unconstrained_Array_Definition;
9033 subtype N_Binary_Op is Node_Kind range
9034 N_Op_Add ..
9035 N_Op_Shift_Right_Arithmetic;
9037 subtype N_Body_Stub is Node_Kind range
9038 N_Package_Body_Stub ..
9039 N_Task_Body_Stub;
9041 subtype N_Declaration is Node_Kind range
9042 N_Component_Declaration ..
9043 N_Procedure_Specification;
9044 -- Note: this includes all constructs normally thought of as declarations
9045 -- except those which are separately grouped as later declarations.
9047 subtype N_Delay_Statement is Node_Kind range
9048 N_Delay_Relative_Statement ..
9049 N_Delay_Until_Statement;
9051 subtype N_Direct_Name is Node_Kind range
9052 N_Identifier ..
9053 N_Character_Literal;
9055 subtype N_Entity is Node_Kind range
9056 N_Defining_Character_Literal ..
9057 N_Defining_Operator_Symbol;
9059 subtype N_Formal_Subprogram_Declaration is Node_Kind range
9060 N_Formal_Abstract_Subprogram_Declaration ..
9061 N_Formal_Concrete_Subprogram_Declaration;
9063 subtype N_Generic_Declaration is Node_Kind range
9064 N_Generic_Package_Declaration ..
9065 N_Generic_Subprogram_Declaration;
9067 subtype N_Generic_Instantiation is Node_Kind range
9068 N_Function_Instantiation ..
9069 N_Package_Instantiation;
9071 subtype N_Generic_Renaming_Declaration is Node_Kind range
9072 N_Generic_Function_Renaming_Declaration ..
9073 N_Generic_Procedure_Renaming_Declaration;
9075 subtype N_Has_Chars is Node_Kind range
9076 N_Attribute_Definition_Clause ..
9077 N_Op_Plus;
9079 subtype N_Has_Entity is Node_Kind range
9080 N_Expanded_Name ..
9081 N_Attribute_Reference;
9082 -- Nodes that have Entity fields
9083 -- Warning: DOES NOT INCLUDE N_Freeze_Entity, N_Freeze_Generic_Entity,
9084 -- N_Aspect_Specification, or N_Attribute_Definition_Clause.
9086 subtype N_Has_Etype is Node_Kind range
9087 N_Error ..
9088 N_Subtype_Indication;
9090 subtype N_Has_Treat_Fixed_As_Integer is Node_Kind range
9091 N_Op_Divide ..
9092 N_Op_Rem;
9094 subtype N_Multiplying_Operator is Node_Kind range
9095 N_Op_Divide ..
9096 N_Op_Rem;
9098 subtype N_Later_Decl_Item is Node_Kind range
9099 N_Task_Type_Declaration ..
9100 N_Generic_Subprogram_Declaration;
9101 -- Note: this is Ada 83 relevant only (see Ada 83 RM 3.9 (2)) and includes
9102 -- only those items which can appear as later declarative items. This also
9103 -- includes N_Implicit_Label_Declaration which is not specifically in the
9104 -- grammar but may appear as a valid later declarative items. It does NOT
9105 -- include N_Pragma which can also appear among later declarative items.
9106 -- It does however include N_Protected_Body, which is a bit peculiar, but
9107 -- harmless since this cannot appear in Ada 83 mode anyway.
9109 subtype N_Membership_Test is Node_Kind range
9110 N_In ..
9111 N_Not_In;
9113 subtype N_Numeric_Or_String_Literal is Node_Kind range
9114 N_Integer_Literal ..
9115 N_String_Literal;
9117 subtype N_Op is Node_Kind range
9118 N_Op_Add ..
9119 N_Op_Plus;
9121 subtype N_Op_Boolean is Node_Kind range
9122 N_Op_And ..
9123 N_Op_Xor;
9124 -- Binary operators which take operands of a boolean type, and yield
9125 -- a result of a boolean type.
9127 subtype N_Op_Compare is Node_Kind range
9128 N_Op_Eq ..
9129 N_Op_Ne;
9131 subtype N_Op_Shift is Node_Kind range
9132 N_Op_Rotate_Left ..
9133 N_Op_Shift_Right_Arithmetic;
9135 subtype N_Proper_Body is Node_Kind range
9136 N_Package_Body ..
9137 N_Task_Body;
9139 subtype N_Push_xxx_Label is Node_Kind range
9140 N_Push_Constraint_Error_Label ..
9141 N_Push_Storage_Error_Label;
9143 subtype N_Pop_xxx_Label is Node_Kind range
9144 N_Pop_Constraint_Error_Label ..
9145 N_Pop_Storage_Error_Label;
9147 subtype N_Push_Pop_xxx_Label is Node_Kind range
9148 N_Push_Constraint_Error_Label ..
9149 N_Pop_Storage_Error_Label;
9151 subtype N_Raise_xxx_Error is Node_Kind range
9152 N_Raise_Constraint_Error ..
9153 N_Raise_Storage_Error;
9155 subtype N_Renaming_Declaration is Node_Kind range
9156 N_Exception_Renaming_Declaration ..
9157 N_Generic_Procedure_Renaming_Declaration;
9159 subtype N_Representation_Clause is Node_Kind range
9160 N_At_Clause ..
9161 N_Attribute_Definition_Clause;
9163 subtype N_Short_Circuit is Node_Kind range
9164 N_And_Then ..
9165 N_Or_Else;
9167 subtype N_SCIL_Node is Node_Kind range
9168 N_SCIL_Dispatch_Table_Tag_Init ..
9169 N_SCIL_Membership_Test;
9171 subtype N_Statement_Other_Than_Procedure_Call is Node_Kind range
9172 N_Abort_Statement ..
9173 N_If_Statement;
9174 -- Note that this includes all statement types except for the cases of the
9175 -- N_Procedure_Call_Statement which is considered to be a subexpression
9176 -- (since overloading is possible, so it needs to go through the normal
9177 -- overloading resolution for expressions).
9179 subtype N_Subprogram_Call is Node_Kind range
9180 N_Function_Call ..
9181 N_Procedure_Call_Statement;
9183 subtype N_Subprogram_Instantiation is Node_Kind range
9184 N_Function_Instantiation ..
9185 N_Procedure_Instantiation;
9187 subtype N_Has_Condition is Node_Kind range
9188 N_Exit_Statement ..
9189 N_Terminate_Alternative;
9190 -- Nodes with condition fields (does not include N_Raise_xxx_Error)
9192 subtype N_Subexpr is Node_Kind range
9193 N_Expanded_Name ..
9194 N_Unchecked_Type_Conversion;
9195 -- Nodes with expression fields
9197 subtype N_Subprogram_Specification is Node_Kind range
9198 N_Function_Specification ..
9199 N_Procedure_Specification;
9201 subtype N_Unary_Op is Node_Kind range
9202 N_Op_Abs ..
9203 N_Op_Plus;
9205 subtype N_Unit_Body is Node_Kind range
9206 N_Package_Body ..
9207 N_Subprogram_Body;
9209 ---------------------------
9210 -- Node Access Functions --
9211 ---------------------------
9213 -- The following functions return the contents of the indicated field of
9214 -- the node referenced by the argument, which is a Node_Id. They provide
9215 -- logical access to fields in the node which could be accessed using the
9216 -- Atree.Unchecked_Access package, but the idea is always to use these
9217 -- higher level routines which preserve strong typing. In debug mode,
9218 -- these routines check that they are being applied to an appropriate
9219 -- node, as well as checking that the node is in range.
9221 function Abort_Present
9222 (N : Node_Id) return Boolean; -- Flag15
9224 function Abortable_Part
9225 (N : Node_Id) return Node_Id; -- Node2
9227 function Abstract_Present
9228 (N : Node_Id) return Boolean; -- Flag4
9230 function Accept_Handler_Records
9231 (N : Node_Id) return List_Id; -- List5
9233 function Accept_Statement
9234 (N : Node_Id) return Node_Id; -- Node2
9236 function Access_Definition
9237 (N : Node_Id) return Node_Id; -- Node3
9239 function Access_To_Subprogram_Definition
9240 (N : Node_Id) return Node_Id; -- Node3
9242 function Access_Types_To_Process
9243 (N : Node_Id) return Elist_Id; -- Elist2
9245 function Actions
9246 (N : Node_Id) return List_Id; -- List1
9248 function Activation_Chain_Entity
9249 (N : Node_Id) return Node_Id; -- Node3
9251 function Acts_As_Spec
9252 (N : Node_Id) return Boolean; -- Flag4
9254 function Actual_Designated_Subtype
9255 (N : Node_Id) return Node_Id; -- Node4
9257 function Address_Warning_Posted
9258 (N : Node_Id) return Boolean; -- Flag18
9260 function Aggregate_Bounds
9261 (N : Node_Id) return Node_Id; -- Node3
9263 function Aliased_Present
9264 (N : Node_Id) return Boolean; -- Flag4
9266 function Alloc_For_BIP_Return
9267 (N : Node_Id) return Boolean; -- Flag1
9269 function All_Others
9270 (N : Node_Id) return Boolean; -- Flag11
9272 function All_Present
9273 (N : Node_Id) return Boolean; -- Flag15
9275 function Alternatives
9276 (N : Node_Id) return List_Id; -- List4
9278 function Ancestor_Part
9279 (N : Node_Id) return Node_Id; -- Node3
9281 function Atomic_Sync_Required
9282 (N : Node_Id) return Boolean; -- Flag14
9284 function Array_Aggregate
9285 (N : Node_Id) return Node_Id; -- Node3
9287 function Aspect_Rep_Item
9288 (N : Node_Id) return Node_Id; -- Node2
9290 function Assignment_OK
9291 (N : Node_Id) return Boolean; -- Flag15
9293 function Associated_Node
9294 (N : Node_Id) return Node_Id; -- Node4
9296 function At_End_Proc
9297 (N : Node_Id) return Node_Id; -- Node1
9299 function Attribute_Name
9300 (N : Node_Id) return Name_Id; -- Name2
9302 function Aux_Decls_Node
9303 (N : Node_Id) return Node_Id; -- Node5
9305 function Backwards_OK
9306 (N : Node_Id) return Boolean; -- Flag6
9308 function Bad_Is_Detected
9309 (N : Node_Id) return Boolean; -- Flag15
9311 function By_Ref
9312 (N : Node_Id) return Boolean; -- Flag5
9314 function Body_Required
9315 (N : Node_Id) return Boolean; -- Flag13
9317 function Body_To_Inline
9318 (N : Node_Id) return Node_Id; -- Node3
9320 function Box_Present
9321 (N : Node_Id) return Boolean; -- Flag15
9323 function Char_Literal_Value
9324 (N : Node_Id) return Uint; -- Uint2
9326 function Chars
9327 (N : Node_Id) return Name_Id; -- Name1
9329 function Check_Address_Alignment
9330 (N : Node_Id) return Boolean; -- Flag11
9332 function Choice_Parameter
9333 (N : Node_Id) return Node_Id; -- Node2
9335 function Choices
9336 (N : Node_Id) return List_Id; -- List1
9338 function Class_Present
9339 (N : Node_Id) return Boolean; -- Flag6
9341 function Classifications
9342 (N : Node_Id) return Node_Id; -- Node3
9344 function Cleanup_Actions
9345 (N : Node_Id) return List_Id; -- List5
9347 function Comes_From_Extended_Return_Statement
9348 (N : Node_Id) return Boolean; -- Flag18
9350 function Compile_Time_Known_Aggregate
9351 (N : Node_Id) return Boolean; -- Flag18
9353 function Component_Associations
9354 (N : Node_Id) return List_Id; -- List2
9356 function Component_Clauses
9357 (N : Node_Id) return List_Id; -- List3
9359 function Component_Definition
9360 (N : Node_Id) return Node_Id; -- Node4
9362 function Component_Items
9363 (N : Node_Id) return List_Id; -- List3
9365 function Component_List
9366 (N : Node_Id) return Node_Id; -- Node1
9368 function Component_Name
9369 (N : Node_Id) return Node_Id; -- Node1
9371 function Componentwise_Assignment
9372 (N : Node_Id) return Boolean; -- Flag14
9374 function Condition
9375 (N : Node_Id) return Node_Id; -- Node1
9377 function Condition_Actions
9378 (N : Node_Id) return List_Id; -- List3
9380 function Config_Pragmas
9381 (N : Node_Id) return List_Id; -- List4
9383 function Constant_Present
9384 (N : Node_Id) return Boolean; -- Flag17
9386 function Constraint
9387 (N : Node_Id) return Node_Id; -- Node3
9389 function Constraints
9390 (N : Node_Id) return List_Id; -- List1
9392 function Context_Installed
9393 (N : Node_Id) return Boolean; -- Flag13
9395 function Context_Pending
9396 (N : Node_Id) return Boolean; -- Flag16
9398 function Context_Items
9399 (N : Node_Id) return List_Id; -- List1
9401 function Contract_Test_Cases
9402 (N : Node_Id) return Node_Id; -- Node2
9404 function Controlling_Argument
9405 (N : Node_Id) return Node_Id; -- Node1
9407 function Conversion_OK
9408 (N : Node_Id) return Boolean; -- Flag14
9410 function Convert_To_Return_False
9411 (N : Node_Id) return Boolean; -- Flag13
9413 function Corresponding_Aspect
9414 (N : Node_Id) return Node_Id; -- Node3
9416 function Corresponding_Body
9417 (N : Node_Id) return Node_Id; -- Node5
9419 function Corresponding_Formal_Spec
9420 (N : Node_Id) return Node_Id; -- Node3
9422 function Corresponding_Generic_Association
9423 (N : Node_Id) return Node_Id; -- Node5
9425 function Corresponding_Integer_Value
9426 (N : Node_Id) return Uint; -- Uint4
9428 function Corresponding_Spec
9429 (N : Node_Id) return Entity_Id; -- Node5
9431 function Corresponding_Spec_Of_Stub
9432 (N : Node_Id) return Node_Id; -- Node2
9434 function Corresponding_Stub
9435 (N : Node_Id) return Node_Id; -- Node3
9437 function Dcheck_Function
9438 (N : Node_Id) return Entity_Id; -- Node5
9440 function Declarations
9441 (N : Node_Id) return List_Id; -- List2
9443 function Default_Expression
9444 (N : Node_Id) return Node_Id; -- Node5
9446 function Default_Storage_Pool
9447 (N : Node_Id) return Node_Id; -- Node3
9449 function Default_Name
9450 (N : Node_Id) return Node_Id; -- Node2
9452 function Defining_Identifier
9453 (N : Node_Id) return Entity_Id; -- Node1
9455 function Defining_Unit_Name
9456 (N : Node_Id) return Node_Id; -- Node1
9458 function Delay_Alternative
9459 (N : Node_Id) return Node_Id; -- Node4
9461 function Delay_Statement
9462 (N : Node_Id) return Node_Id; -- Node2
9464 function Delta_Expression
9465 (N : Node_Id) return Node_Id; -- Node3
9467 function Digits_Expression
9468 (N : Node_Id) return Node_Id; -- Node2
9470 function Discr_Check_Funcs_Built
9471 (N : Node_Id) return Boolean; -- Flag11
9473 function Discrete_Choices
9474 (N : Node_Id) return List_Id; -- List4
9476 function Discrete_Range
9477 (N : Node_Id) return Node_Id; -- Node4
9479 function Discrete_Subtype_Definition
9480 (N : Node_Id) return Node_Id; -- Node4
9482 function Discrete_Subtype_Definitions
9483 (N : Node_Id) return List_Id; -- List2
9485 function Discriminant_Specifications
9486 (N : Node_Id) return List_Id; -- List4
9488 function Discriminant_Type
9489 (N : Node_Id) return Node_Id; -- Node5
9491 function Do_Accessibility_Check
9492 (N : Node_Id) return Boolean; -- Flag13
9494 function Do_Discriminant_Check
9495 (N : Node_Id) return Boolean; -- Flag3
9497 function Do_Division_Check
9498 (N : Node_Id) return Boolean; -- Flag13
9500 function Do_Length_Check
9501 (N : Node_Id) return Boolean; -- Flag4
9503 function Do_Overflow_Check
9504 (N : Node_Id) return Boolean; -- Flag17
9506 function Do_Range_Check
9507 (N : Node_Id) return Boolean; -- Flag9
9509 function Do_Storage_Check
9510 (N : Node_Id) return Boolean; -- Flag17
9512 function Do_Tag_Check
9513 (N : Node_Id) return Boolean; -- Flag13
9515 function Elaborate_All_Desirable
9516 (N : Node_Id) return Boolean; -- Flag9
9518 function Elaborate_All_Present
9519 (N : Node_Id) return Boolean; -- Flag14
9521 function Elaborate_Desirable
9522 (N : Node_Id) return Boolean; -- Flag11
9524 function Elaborate_Present
9525 (N : Node_Id) return Boolean; -- Flag4
9527 function Else_Actions
9528 (N : Node_Id) return List_Id; -- List3
9530 function Else_Statements
9531 (N : Node_Id) return List_Id; -- List4
9533 function Elsif_Parts
9534 (N : Node_Id) return List_Id; -- List3
9536 function Enclosing_Variant
9537 (N : Node_Id) return Node_Id; -- Node2
9539 function End_Label
9540 (N : Node_Id) return Node_Id; -- Node4
9542 function End_Span
9543 (N : Node_Id) return Uint; -- Uint5
9545 function Entity
9546 (N : Node_Id) return Node_Id; -- Node4
9548 function Entity_Or_Associated_Node
9549 (N : Node_Id) return Node_Id; -- Node4
9551 function Entry_Body_Formal_Part
9552 (N : Node_Id) return Node_Id; -- Node5
9554 function Entry_Call_Alternative
9555 (N : Node_Id) return Node_Id; -- Node1
9557 function Entry_Call_Statement
9558 (N : Node_Id) return Node_Id; -- Node1
9560 function Entry_Direct_Name
9561 (N : Node_Id) return Node_Id; -- Node1
9563 function Entry_Index
9564 (N : Node_Id) return Node_Id; -- Node5
9566 function Entry_Index_Specification
9567 (N : Node_Id) return Node_Id; -- Node4
9569 function Etype
9570 (N : Node_Id) return Node_Id; -- Node5
9572 function Exception_Choices
9573 (N : Node_Id) return List_Id; -- List4
9575 function Exception_Handlers
9576 (N : Node_Id) return List_Id; -- List5
9578 function Exception_Junk
9579 (N : Node_Id) return Boolean; -- Flag8
9581 function Exception_Label
9582 (N : Node_Id) return Node_Id; -- Node5
9584 function Explicit_Actual_Parameter
9585 (N : Node_Id) return Node_Id; -- Node3
9587 function Expansion_Delayed
9588 (N : Node_Id) return Boolean; -- Flag11
9590 function Explicit_Generic_Actual_Parameter
9591 (N : Node_Id) return Node_Id; -- Node1
9593 function Expression
9594 (N : Node_Id) return Node_Id; -- Node3
9596 function Expression_Copy
9597 (N : Node_Id) return Node_Id; -- Node2
9599 function Expressions
9600 (N : Node_Id) return List_Id; -- List1
9602 function First_Bit
9603 (N : Node_Id) return Node_Id; -- Node3
9605 function First_Inlined_Subprogram
9606 (N : Node_Id) return Entity_Id; -- Node3
9608 function First_Name
9609 (N : Node_Id) return Boolean; -- Flag5
9611 function First_Named_Actual
9612 (N : Node_Id) return Node_Id; -- Node4
9614 function First_Real_Statement
9615 (N : Node_Id) return Node_Id; -- Node2
9617 function First_Subtype_Link
9618 (N : Node_Id) return Entity_Id; -- Node5
9620 function Float_Truncate
9621 (N : Node_Id) return Boolean; -- Flag11
9623 function Formal_Type_Definition
9624 (N : Node_Id) return Node_Id; -- Node3
9626 function Forwards_OK
9627 (N : Node_Id) return Boolean; -- Flag5
9629 function From_Aspect_Specification
9630 (N : Node_Id) return Boolean; -- Flag13
9632 function From_At_End
9633 (N : Node_Id) return Boolean; -- Flag4
9635 function From_At_Mod
9636 (N : Node_Id) return Boolean; -- Flag4
9638 function From_Conditional_Expression
9639 (N : Node_Id) return Boolean; -- Flag1
9641 function From_Default
9642 (N : Node_Id) return Boolean; -- Flag6
9644 function Generalized_Indexing
9645 (N : Node_Id) return Node_Id; -- Node4
9647 function Generic_Associations
9648 (N : Node_Id) return List_Id; -- List3
9650 function Generic_Formal_Declarations
9651 (N : Node_Id) return List_Id; -- List2
9653 function Generic_Parent
9654 (N : Node_Id) return Node_Id; -- Node5
9656 function Generic_Parent_Type
9657 (N : Node_Id) return Node_Id; -- Node4
9659 function Handled_Statement_Sequence
9660 (N : Node_Id) return Node_Id; -- Node4
9662 function Handler_List_Entry
9663 (N : Node_Id) return Node_Id; -- Node2
9665 function Has_Created_Identifier
9666 (N : Node_Id) return Boolean; -- Flag15
9668 function Has_Dereference_Action
9669 (N : Node_Id) return Boolean; -- Flag13
9671 function Has_Dynamic_Length_Check
9672 (N : Node_Id) return Boolean; -- Flag10
9674 function Has_Dynamic_Range_Check
9675 (N : Node_Id) return Boolean; -- Flag12
9677 function Has_Init_Expression
9678 (N : Node_Id) return Boolean; -- Flag14
9680 function Has_Local_Raise
9681 (N : Node_Id) return Boolean; -- Flag8
9683 function Has_No_Elaboration_Code
9684 (N : Node_Id) return Boolean; -- Flag17
9686 function Has_Pragma_Suppress_All
9687 (N : Node_Id) return Boolean; -- Flag14
9689 function Has_Private_View
9690 (N : Node_Id) return Boolean; -- Flag11
9692 function Has_Relative_Deadline_Pragma
9693 (N : Node_Id) return Boolean; -- Flag9
9695 function Has_Self_Reference
9696 (N : Node_Id) return Boolean; -- Flag13
9698 function Has_SP_Choice
9699 (N : Node_Id) return Boolean; -- Flag15
9701 function Has_Storage_Size_Pragma
9702 (N : Node_Id) return Boolean; -- Flag5
9704 function Has_Target_Names
9705 (N : Node_Id) return Boolean; -- Flag8
9707 function Has_Wide_Character
9708 (N : Node_Id) return Boolean; -- Flag11
9710 function Has_Wide_Wide_Character
9711 (N : Node_Id) return Boolean; -- Flag13
9713 function Header_Size_Added
9714 (N : Node_Id) return Boolean; -- Flag11
9716 function Hidden_By_Use_Clause
9717 (N : Node_Id) return Elist_Id; -- Elist5
9719 function High_Bound
9720 (N : Node_Id) return Node_Id; -- Node2
9722 function Identifier
9723 (N : Node_Id) return Node_Id; -- Node1
9725 function Interface_List
9726 (N : Node_Id) return List_Id; -- List2
9728 function Interface_Present
9729 (N : Node_Id) return Boolean; -- Flag16
9731 function Implicit_With
9732 (N : Node_Id) return Boolean; -- Flag16
9734 function Import_Interface_Present
9735 (N : Node_Id) return Boolean; -- Flag16
9737 function In_Present
9738 (N : Node_Id) return Boolean; -- Flag15
9740 function Includes_Infinities
9741 (N : Node_Id) return Boolean; -- Flag11
9743 function Incomplete_View
9744 (N : Node_Id) return Node_Id; -- Node2
9746 function Inherited_Discriminant
9747 (N : Node_Id) return Boolean; -- Flag13
9749 function Instance_Spec
9750 (N : Node_Id) return Node_Id; -- Node5
9752 function Intval
9753 (N : Node_Id) return Uint; -- Uint3
9755 function Is_Abort_Block
9756 (N : Node_Id) return Boolean; -- Flag4
9758 function Is_Accessibility_Actual
9759 (N : Node_Id) return Boolean; -- Flag13
9761 function Is_Analyzed_Pragma
9762 (N : Node_Id) return Boolean; -- Flag5
9764 function Is_Asynchronous_Call_Block
9765 (N : Node_Id) return Boolean; -- Flag7
9767 function Is_Boolean_Aspect
9768 (N : Node_Id) return Boolean; -- Flag16
9770 function Is_Checked
9771 (N : Node_Id) return Boolean; -- Flag11
9773 function Is_Checked_Ghost_Pragma
9774 (N : Node_Id) return Boolean; -- Flag3
9776 function Is_Component_Left_Opnd
9777 (N : Node_Id) return Boolean; -- Flag13
9779 function Is_Component_Right_Opnd
9780 (N : Node_Id) return Boolean; -- Flag14
9782 function Is_Controlling_Actual
9783 (N : Node_Id) return Boolean; -- Flag16
9785 function Is_Declaration_Level_Node
9786 (N : Node_Id) return Boolean; -- Flag5
9788 function Is_Delayed_Aspect
9789 (N : Node_Id) return Boolean; -- Flag14
9791 function Is_Disabled
9792 (N : Node_Id) return Boolean; -- Flag15
9794 function Is_Dispatching_Call
9795 (N : Node_Id) return Boolean; -- Flag6
9797 function Is_Dynamic_Coextension
9798 (N : Node_Id) return Boolean; -- Flag18
9800 function Is_Effective_Use_Clause
9801 (N : Node_Id) return Boolean; -- Flag1
9803 function Is_Elaboration_Checks_OK_Node
9804 (N : Node_Id) return Boolean; -- Flag1
9806 function Is_Elaboration_Code
9807 (N : Node_Id) return Boolean; -- Flag9
9809 function Is_Elaboration_Warnings_OK_Node
9810 (N : Node_Id) return Boolean; -- Flag3
9812 function Is_Elsif
9813 (N : Node_Id) return Boolean; -- Flag13
9815 function Is_Entry_Barrier_Function
9816 (N : Node_Id) return Boolean; -- Flag8
9818 function Is_Expanded_Build_In_Place_Call
9819 (N : Node_Id) return Boolean; -- Flag11
9821 function Is_Expanded_Contract
9822 (N : Node_Id) return Boolean; -- Flag1
9824 function Is_Finalization_Wrapper
9825 (N : Node_Id) return Boolean; -- Flag9
9827 function Is_Folded_In_Parser
9828 (N : Node_Id) return Boolean; -- Flag4
9830 function Is_Generic_Contract_Pragma
9831 (N : Node_Id) return Boolean; -- Flag2
9833 function Is_Ignored
9834 (N : Node_Id) return Boolean; -- Flag9
9836 function Is_Ignored_Ghost_Pragma
9837 (N : Node_Id) return Boolean; -- Flag8
9839 function Is_In_Discriminant_Check
9840 (N : Node_Id) return Boolean; -- Flag11
9842 function Is_Inherited_Pragma
9843 (N : Node_Id) return Boolean; -- Flag4
9845 function Is_Initialization_Block
9846 (N : Node_Id) return Boolean; -- Flag1
9848 function Is_Known_Guaranteed_ABE
9849 (N : Node_Id) return Boolean; -- Flag18
9851 function Is_Machine_Number
9852 (N : Node_Id) return Boolean; -- Flag11
9854 function Is_Null_Loop
9855 (N : Node_Id) return Boolean; -- Flag16
9857 function Is_Overloaded
9858 (N : Node_Id) return Boolean; -- Flag5
9860 function Is_Power_Of_2_For_Shift
9861 (N : Node_Id) return Boolean; -- Flag13
9863 function Is_Prefixed_Call
9864 (N : Node_Id) return Boolean; -- Flag17
9866 function Is_Protected_Subprogram_Body
9867 (N : Node_Id) return Boolean; -- Flag7
9869 function Is_Qualified_Universal_Literal
9870 (N : Node_Id) return Boolean; -- Flag4
9872 function Is_Read
9873 (N : Node_Id) return Boolean; -- Flag1
9875 function Is_Source_Call
9876 (N : Node_Id) return Boolean; -- Flag4
9878 function Is_SPARK_Mode_On_Node
9879 (N : Node_Id) return Boolean; -- Flag2
9881 function Is_Static_Coextension
9882 (N : Node_Id) return Boolean; -- Flag14
9884 function Is_Static_Expression
9885 (N : Node_Id) return Boolean; -- Flag6
9887 function Is_Subprogram_Descriptor
9888 (N : Node_Id) return Boolean; -- Flag16
9890 function Is_Task_Allocation_Block
9891 (N : Node_Id) return Boolean; -- Flag6
9893 function Is_Task_Body_Procedure
9894 (N : Node_Id) return Boolean; -- Flag1
9896 function Is_Task_Master
9897 (N : Node_Id) return Boolean; -- Flag5
9899 function Is_Write
9900 (N : Node_Id) return Boolean; -- Flag2
9902 function Iteration_Scheme
9903 (N : Node_Id) return Node_Id; -- Node2
9905 function Iterator_Specification
9906 (N : Node_Id) return Node_Id; -- Node2
9908 function Itype
9909 (N : Node_Id) return Entity_Id; -- Node1
9911 function Kill_Range_Check
9912 (N : Node_Id) return Boolean; -- Flag11
9914 function Label_Construct
9915 (N : Node_Id) return Node_Id; -- Node2
9917 function Left_Opnd
9918 (N : Node_Id) return Node_Id; -- Node2
9920 function Last_Bit
9921 (N : Node_Id) return Node_Id; -- Node4
9923 function Last_Name
9924 (N : Node_Id) return Boolean; -- Flag6
9926 function Library_Unit
9927 (N : Node_Id) return Node_Id; -- Node4
9929 function Limited_View_Installed
9930 (N : Node_Id) return Boolean; -- Flag18
9932 function Limited_Present
9933 (N : Node_Id) return Boolean; -- Flag17
9935 function Literals
9936 (N : Node_Id) return List_Id; -- List1
9938 function Local_Raise_Not_OK
9939 (N : Node_Id) return Boolean; -- Flag7
9941 function Local_Raise_Statements
9942 (N : Node_Id) return Elist_Id; -- Elist1
9944 function Loop_Actions
9945 (N : Node_Id) return List_Id; -- List2
9947 function Loop_Parameter_Specification
9948 (N : Node_Id) return Node_Id; -- Node4
9950 function Low_Bound
9951 (N : Node_Id) return Node_Id; -- Node1
9953 function Mod_Clause
9954 (N : Node_Id) return Node_Id; -- Node2
9956 function More_Ids
9957 (N : Node_Id) return Boolean; -- Flag5
9959 function Must_Be_Byte_Aligned
9960 (N : Node_Id) return Boolean; -- Flag14
9962 function Must_Not_Freeze
9963 (N : Node_Id) return Boolean; -- Flag8
9965 function Must_Not_Override
9966 (N : Node_Id) return Boolean; -- Flag15
9968 function Must_Override
9969 (N : Node_Id) return Boolean; -- Flag14
9971 function Name
9972 (N : Node_Id) return Node_Id; -- Node2
9974 function Names
9975 (N : Node_Id) return List_Id; -- List2
9977 function Next_Entity
9978 (N : Node_Id) return Node_Id; -- Node2
9980 function Next_Exit_Statement
9981 (N : Node_Id) return Node_Id; -- Node3
9983 function Next_Implicit_With
9984 (N : Node_Id) return Node_Id; -- Node3
9986 function Next_Named_Actual
9987 (N : Node_Id) return Node_Id; -- Node4
9989 function Next_Pragma
9990 (N : Node_Id) return Node_Id; -- Node1
9992 function Next_Rep_Item
9993 (N : Node_Id) return Node_Id; -- Node5
9995 function Next_Use_Clause
9996 (N : Node_Id) return Node_Id; -- Node3
9998 function No_Ctrl_Actions
9999 (N : Node_Id) return Boolean; -- Flag7
10001 function No_Elaboration_Check
10002 (N : Node_Id) return Boolean; -- Flag4
10004 function No_Entities_Ref_In_Spec
10005 (N : Node_Id) return Boolean; -- Flag8
10007 function No_Initialization
10008 (N : Node_Id) return Boolean; -- Flag13
10010 function No_Minimize_Eliminate
10011 (N : Node_Id) return Boolean; -- Flag17
10013 function No_Side_Effect_Removal
10014 (N : Node_Id) return Boolean; -- Flag17
10016 function No_Truncation
10017 (N : Node_Id) return Boolean; -- Flag17
10019 function Null_Excluding_Subtype
10020 (N : Node_Id) return Boolean; -- Flag16
10022 function Null_Exclusion_Present
10023 (N : Node_Id) return Boolean; -- Flag11
10025 function Null_Exclusion_In_Return_Present
10026 (N : Node_Id) return Boolean; -- Flag14
10028 function Null_Present
10029 (N : Node_Id) return Boolean; -- Flag13
10031 function Null_Record_Present
10032 (N : Node_Id) return Boolean; -- Flag17
10034 function Null_Statement
10035 (N : Node_Id) return Node_Id; -- Node2
10037 function Object_Definition
10038 (N : Node_Id) return Node_Id; -- Node4
10040 function Of_Present
10041 (N : Node_Id) return Boolean; -- Flag16
10043 function Original_Discriminant
10044 (N : Node_Id) return Node_Id; -- Node2
10046 function Original_Entity
10047 (N : Node_Id) return Entity_Id; -- Node2
10049 function Others_Discrete_Choices
10050 (N : Node_Id) return List_Id; -- List1
10052 function Out_Present
10053 (N : Node_Id) return Boolean; -- Flag17
10055 function Parameter_Associations
10056 (N : Node_Id) return List_Id; -- List3
10058 function Parameter_Specifications
10059 (N : Node_Id) return List_Id; -- List3
10061 function Parameter_Type
10062 (N : Node_Id) return Node_Id; -- Node2
10064 function Parent_Spec
10065 (N : Node_Id) return Node_Id; -- Node4
10067 function Parent_With
10068 (N : Node_Id) return Boolean; -- Flag1
10070 function Position
10071 (N : Node_Id) return Node_Id; -- Node2
10073 function Pragma_Argument_Associations
10074 (N : Node_Id) return List_Id; -- List2
10076 function Pragma_Identifier
10077 (N : Node_Id) return Node_Id; -- Node4
10079 function Pragmas_After
10080 (N : Node_Id) return List_Id; -- List5
10082 function Pragmas_Before
10083 (N : Node_Id) return List_Id; -- List4
10085 function Pre_Post_Conditions
10086 (N : Node_Id) return Node_Id; -- Node1
10088 function Prefix
10089 (N : Node_Id) return Node_Id; -- Node3
10091 function Premature_Use
10092 (N : Node_Id) return Node_Id; -- Node5
10094 function Present_Expr
10095 (N : Node_Id) return Uint; -- Uint3
10097 function Prev_Ids
10098 (N : Node_Id) return Boolean; -- Flag6
10100 function Prev_Use_Clause
10101 (N : Node_Id) return Node_Id; -- Node1
10103 function Print_In_Hex
10104 (N : Node_Id) return Boolean; -- Flag13
10106 function Private_Declarations
10107 (N : Node_Id) return List_Id; -- List3
10109 function Private_Present
10110 (N : Node_Id) return Boolean; -- Flag15
10112 function Procedure_To_Call
10113 (N : Node_Id) return Node_Id; -- Node2
10115 function Proper_Body
10116 (N : Node_Id) return Node_Id; -- Node1
10118 function Protected_Definition
10119 (N : Node_Id) return Node_Id; -- Node3
10121 function Protected_Present
10122 (N : Node_Id) return Boolean; -- Flag6
10124 function Raises_Constraint_Error
10125 (N : Node_Id) return Boolean; -- Flag7
10127 function Range_Constraint
10128 (N : Node_Id) return Node_Id; -- Node4
10130 function Range_Expression
10131 (N : Node_Id) return Node_Id; -- Node4
10133 function Real_Range_Specification
10134 (N : Node_Id) return Node_Id; -- Node4
10136 function Realval
10137 (N : Node_Id) return Ureal; -- Ureal3
10139 function Reason
10140 (N : Node_Id) return Uint; -- Uint3
10142 function Record_Extension_Part
10143 (N : Node_Id) return Node_Id; -- Node3
10145 function Redundant_Use
10146 (N : Node_Id) return Boolean; -- Flag13
10148 function Renaming_Exception
10149 (N : Node_Id) return Node_Id; -- Node2
10151 function Result_Definition
10152 (N : Node_Id) return Node_Id; -- Node4
10154 function Return_Object_Declarations
10155 (N : Node_Id) return List_Id; -- List3
10157 function Return_Statement_Entity
10158 (N : Node_Id) return Node_Id; -- Node5
10160 function Reverse_Present
10161 (N : Node_Id) return Boolean; -- Flag15
10163 function Right_Opnd
10164 (N : Node_Id) return Node_Id; -- Node3
10166 function Rounded_Result
10167 (N : Node_Id) return Boolean; -- Flag18
10169 function SCIL_Controlling_Tag
10170 (N : Node_Id) return Node_Id; -- Node5
10172 function SCIL_Entity
10173 (N : Node_Id) return Node_Id; -- Node4
10175 function SCIL_Tag_Value
10176 (N : Node_Id) return Node_Id; -- Node5
10178 function SCIL_Target_Prim
10179 (N : Node_Id) return Node_Id; -- Node2
10181 function Scope
10182 (N : Node_Id) return Node_Id; -- Node3
10184 function Select_Alternatives
10185 (N : Node_Id) return List_Id; -- List1
10187 function Selector_Name
10188 (N : Node_Id) return Node_Id; -- Node2
10190 function Selector_Names
10191 (N : Node_Id) return List_Id; -- List1
10193 function Shift_Count_OK
10194 (N : Node_Id) return Boolean; -- Flag4
10196 function Source_Type
10197 (N : Node_Id) return Entity_Id; -- Node1
10199 function Specification
10200 (N : Node_Id) return Node_Id; -- Node1
10202 function Split_PPC
10203 (N : Node_Id) return Boolean; -- Flag17
10205 function Statements
10206 (N : Node_Id) return List_Id; -- List3
10208 function Storage_Pool
10209 (N : Node_Id) return Node_Id; -- Node1
10211 function Subpool_Handle_Name
10212 (N : Node_Id) return Node_Id; -- Node4
10214 function Strval
10215 (N : Node_Id) return String_Id; -- Str3
10217 function Subtype_Indication
10218 (N : Node_Id) return Node_Id; -- Node5
10220 function Subtype_Mark
10221 (N : Node_Id) return Node_Id; -- Node4
10223 function Subtype_Marks
10224 (N : Node_Id) return List_Id; -- List2
10226 function Suppress_Assignment_Checks
10227 (N : Node_Id) return Boolean; -- Flag18
10229 function Suppress_Loop_Warnings
10230 (N : Node_Id) return Boolean; -- Flag17
10232 function Synchronized_Present
10233 (N : Node_Id) return Boolean; -- Flag7
10235 function Tagged_Present
10236 (N : Node_Id) return Boolean; -- Flag15
10238 function Target
10239 (N : Node_Id) return Entity_Id; -- Node1
10241 function Target_Type
10242 (N : Node_Id) return Entity_Id; -- Node2
10244 function Task_Definition
10245 (N : Node_Id) return Node_Id; -- Node3
10247 function Task_Present
10248 (N : Node_Id) return Boolean; -- Flag5
10250 function Then_Actions
10251 (N : Node_Id) return List_Id; -- List2
10253 function Then_Statements
10254 (N : Node_Id) return List_Id; -- List2
10256 function Treat_Fixed_As_Integer
10257 (N : Node_Id) return Boolean; -- Flag14
10259 function Triggering_Alternative
10260 (N : Node_Id) return Node_Id; -- Node1
10262 function Triggering_Statement
10263 (N : Node_Id) return Node_Id; -- Node1
10265 function TSS_Elist
10266 (N : Node_Id) return Elist_Id; -- Elist3
10268 function Type_Definition
10269 (N : Node_Id) return Node_Id; -- Node3
10271 function Uneval_Old_Accept
10272 (N : Node_Id) return Boolean; -- Flag7
10274 function Uneval_Old_Warn
10275 (N : Node_Id) return Boolean; -- Flag18
10277 function Unit
10278 (N : Node_Id) return Node_Id; -- Node2
10280 function Unknown_Discriminants_Present
10281 (N : Node_Id) return Boolean; -- Flag13
10283 function Unreferenced_In_Spec
10284 (N : Node_Id) return Boolean; -- Flag7
10286 function Variant_Part
10287 (N : Node_Id) return Node_Id; -- Node4
10289 function Variants
10290 (N : Node_Id) return List_Id; -- List1
10292 function Visible_Declarations
10293 (N : Node_Id) return List_Id; -- List2
10295 function Uninitialized_Variable
10296 (N : Node_Id) return Node_Id; -- Node3
10298 function Used_Operations
10299 (N : Node_Id) return Elist_Id; -- Elist2
10301 function Was_Attribute_Reference
10302 (N : Node_Id) return Boolean; -- Flag2
10304 function Was_Expression_Function
10305 (N : Node_Id) return Boolean; -- Flag18
10307 function Was_Originally_Stub
10308 (N : Node_Id) return Boolean; -- Flag13
10310 function Withed_Body
10311 (N : Node_Id) return Node_Id; -- Node1
10313 -- End functions (note used by xsinfo utility program to end processing)
10315 ----------------------------
10316 -- Node Update Procedures --
10317 ----------------------------
10319 -- These are the corresponding node update routines, which again provide
10320 -- a high level logical access with type checking. In addition to setting
10321 -- the indicated field of the node N to the given Val, in the case of
10322 -- tree pointers (List1-4), the parent pointer of the Val node is set to
10323 -- point back to node N. This automates the setting of the parent pointer.
10325 procedure Set_Abort_Present
10326 (N : Node_Id; Val : Boolean := True); -- Flag15
10328 procedure Set_Abortable_Part
10329 (N : Node_Id; Val : Node_Id); -- Node2
10331 procedure Set_Abstract_Present
10332 (N : Node_Id; Val : Boolean := True); -- Flag4
10334 procedure Set_Accept_Handler_Records
10335 (N : Node_Id; Val : List_Id); -- List5
10337 procedure Set_Accept_Statement
10338 (N : Node_Id; Val : Node_Id); -- Node2
10340 procedure Set_Access_Definition
10341 (N : Node_Id; Val : Node_Id); -- Node3
10343 procedure Set_Access_To_Subprogram_Definition
10344 (N : Node_Id; Val : Node_Id); -- Node3
10346 procedure Set_Access_Types_To_Process
10347 (N : Node_Id; Val : Elist_Id); -- Elist2
10349 procedure Set_Actions
10350 (N : Node_Id; Val : List_Id); -- List1
10352 procedure Set_Activation_Chain_Entity
10353 (N : Node_Id; Val : Node_Id); -- Node3
10355 procedure Set_Acts_As_Spec
10356 (N : Node_Id; Val : Boolean := True); -- Flag4
10358 procedure Set_Actual_Designated_Subtype
10359 (N : Node_Id; Val : Node_Id); -- Node4
10361 procedure Set_Address_Warning_Posted
10362 (N : Node_Id; Val : Boolean := True); -- Flag18
10364 procedure Set_Aggregate_Bounds
10365 (N : Node_Id; Val : Node_Id); -- Node3
10367 procedure Set_Aliased_Present
10368 (N : Node_Id; Val : Boolean := True); -- Flag4
10370 procedure Set_Alloc_For_BIP_Return
10371 (N : Node_Id; Val : Boolean := True); -- Flag1
10373 procedure Set_All_Others
10374 (N : Node_Id; Val : Boolean := True); -- Flag11
10376 procedure Set_All_Present
10377 (N : Node_Id; Val : Boolean := True); -- Flag15
10379 procedure Set_Alternatives
10380 (N : Node_Id; Val : List_Id); -- List4
10382 procedure Set_Ancestor_Part
10383 (N : Node_Id; Val : Node_Id); -- Node3
10385 procedure Set_Atomic_Sync_Required
10386 (N : Node_Id; Val : Boolean := True); -- Flag14
10388 procedure Set_Array_Aggregate
10389 (N : Node_Id; Val : Node_Id); -- Node3
10391 procedure Set_Aspect_Rep_Item
10392 (N : Node_Id; Val : Node_Id); -- Node2
10394 procedure Set_Assignment_OK
10395 (N : Node_Id; Val : Boolean := True); -- Flag15
10397 procedure Set_Associated_Node
10398 (N : Node_Id; Val : Node_Id); -- Node4
10400 procedure Set_Attribute_Name
10401 (N : Node_Id; Val : Name_Id); -- Name2
10403 procedure Set_At_End_Proc
10404 (N : Node_Id; Val : Node_Id); -- Node1
10406 procedure Set_Aux_Decls_Node
10407 (N : Node_Id; Val : Node_Id); -- Node5
10409 procedure Set_Backwards_OK
10410 (N : Node_Id; Val : Boolean := True); -- Flag6
10412 procedure Set_Bad_Is_Detected
10413 (N : Node_Id; Val : Boolean := True); -- Flag15
10415 procedure Set_Body_Required
10416 (N : Node_Id; Val : Boolean := True); -- Flag13
10418 procedure Set_Body_To_Inline
10419 (N : Node_Id; Val : Node_Id); -- Node3
10421 procedure Set_Box_Present
10422 (N : Node_Id; Val : Boolean := True); -- Flag15
10424 procedure Set_By_Ref
10425 (N : Node_Id; Val : Boolean := True); -- Flag5
10427 procedure Set_Char_Literal_Value
10428 (N : Node_Id; Val : Uint); -- Uint2
10430 procedure Set_Chars
10431 (N : Node_Id; Val : Name_Id); -- Name1
10433 procedure Set_Check_Address_Alignment
10434 (N : Node_Id; Val : Boolean := True); -- Flag11
10436 procedure Set_Choice_Parameter
10437 (N : Node_Id; Val : Node_Id); -- Node2
10439 procedure Set_Choices
10440 (N : Node_Id; Val : List_Id); -- List1
10442 procedure Set_Class_Present
10443 (N : Node_Id; Val : Boolean := True); -- Flag6
10445 procedure Set_Classifications
10446 (N : Node_Id; Val : Node_Id); -- Node3
10448 procedure Set_Cleanup_Actions
10449 (N : Node_Id; Val : List_Id); -- List5
10451 procedure Set_Comes_From_Extended_Return_Statement
10452 (N : Node_Id; Val : Boolean := True); -- Flag18
10454 procedure Set_Compile_Time_Known_Aggregate
10455 (N : Node_Id; Val : Boolean := True); -- Flag18
10457 procedure Set_Component_Associations
10458 (N : Node_Id; Val : List_Id); -- List2
10460 procedure Set_Component_Clauses
10461 (N : Node_Id; Val : List_Id); -- List3
10463 procedure Set_Component_Definition
10464 (N : Node_Id; Val : Node_Id); -- Node4
10466 procedure Set_Component_Items
10467 (N : Node_Id; Val : List_Id); -- List3
10469 procedure Set_Component_List
10470 (N : Node_Id; Val : Node_Id); -- Node1
10472 procedure Set_Component_Name
10473 (N : Node_Id; Val : Node_Id); -- Node1
10475 procedure Set_Componentwise_Assignment
10476 (N : Node_Id; Val : Boolean := True); -- Flag14
10478 procedure Set_Condition
10479 (N : Node_Id; Val : Node_Id); -- Node1
10481 procedure Set_Condition_Actions
10482 (N : Node_Id; Val : List_Id); -- List3
10484 procedure Set_Config_Pragmas
10485 (N : Node_Id; Val : List_Id); -- List4
10487 procedure Set_Constant_Present
10488 (N : Node_Id; Val : Boolean := True); -- Flag17
10490 procedure Set_Constraint
10491 (N : Node_Id; Val : Node_Id); -- Node3
10493 procedure Set_Constraints
10494 (N : Node_Id; Val : List_Id); -- List1
10496 procedure Set_Context_Installed
10497 (N : Node_Id; Val : Boolean := True); -- Flag13
10499 procedure Set_Context_Items
10500 (N : Node_Id; Val : List_Id); -- List1
10502 procedure Set_Context_Pending
10503 (N : Node_Id; Val : Boolean := True); -- Flag16
10505 procedure Set_Contract_Test_Cases
10506 (N : Node_Id; Val : Node_Id); -- Node2
10508 procedure Set_Controlling_Argument
10509 (N : Node_Id; Val : Node_Id); -- Node1
10511 procedure Set_Conversion_OK
10512 (N : Node_Id; Val : Boolean := True); -- Flag14
10514 procedure Set_Convert_To_Return_False
10515 (N : Node_Id; Val : Boolean := True); -- Flag13
10517 procedure Set_Corresponding_Aspect
10518 (N : Node_Id; Val : Node_Id); -- Node3
10520 procedure Set_Corresponding_Body
10521 (N : Node_Id; Val : Node_Id); -- Node5
10523 procedure Set_Corresponding_Formal_Spec
10524 (N : Node_Id; Val : Node_Id); -- Node3
10526 procedure Set_Corresponding_Generic_Association
10527 (N : Node_Id; Val : Node_Id); -- Node5
10529 procedure Set_Corresponding_Integer_Value
10530 (N : Node_Id; Val : Uint); -- Uint4
10532 procedure Set_Corresponding_Spec
10533 (N : Node_Id; Val : Entity_Id); -- Node5
10535 procedure Set_Corresponding_Spec_Of_Stub
10536 (N : Node_Id; Val : Node_Id); -- Node2
10538 procedure Set_Corresponding_Stub
10539 (N : Node_Id; Val : Node_Id); -- Node3
10541 procedure Set_Dcheck_Function
10542 (N : Node_Id; Val : Entity_Id); -- Node5
10544 procedure Set_Declarations
10545 (N : Node_Id; Val : List_Id); -- List2
10547 procedure Set_Default_Expression
10548 (N : Node_Id; Val : Node_Id); -- Node5
10550 procedure Set_Default_Storage_Pool
10551 (N : Node_Id; Val : Node_Id); -- Node3
10553 procedure Set_Default_Name
10554 (N : Node_Id; Val : Node_Id); -- Node2
10556 procedure Set_Defining_Identifier
10557 (N : Node_Id; Val : Entity_Id); -- Node1
10559 procedure Set_Defining_Unit_Name
10560 (N : Node_Id; Val : Node_Id); -- Node1
10562 procedure Set_Delay_Alternative
10563 (N : Node_Id; Val : Node_Id); -- Node4
10565 procedure Set_Delay_Statement
10566 (N : Node_Id; Val : Node_Id); -- Node2
10568 procedure Set_Delta_Expression
10569 (N : Node_Id; Val : Node_Id); -- Node3
10571 procedure Set_Digits_Expression
10572 (N : Node_Id; Val : Node_Id); -- Node2
10574 procedure Set_Discr_Check_Funcs_Built
10575 (N : Node_Id; Val : Boolean := True); -- Flag11
10577 procedure Set_Discrete_Choices
10578 (N : Node_Id; Val : List_Id); -- List4
10580 procedure Set_Discrete_Range
10581 (N : Node_Id; Val : Node_Id); -- Node4
10583 procedure Set_Discrete_Subtype_Definition
10584 (N : Node_Id; Val : Node_Id); -- Node4
10586 procedure Set_Discrete_Subtype_Definitions
10587 (N : Node_Id; Val : List_Id); -- List2
10589 procedure Set_Discriminant_Specifications
10590 (N : Node_Id; Val : List_Id); -- List4
10592 procedure Set_Discriminant_Type
10593 (N : Node_Id; Val : Node_Id); -- Node5
10595 procedure Set_Do_Accessibility_Check
10596 (N : Node_Id; Val : Boolean := True); -- Flag13
10598 procedure Set_Do_Discriminant_Check
10599 (N : Node_Id; Val : Boolean := True); -- Flag3
10601 procedure Set_Do_Division_Check
10602 (N : Node_Id; Val : Boolean := True); -- Flag13
10604 procedure Set_Do_Length_Check
10605 (N : Node_Id; Val : Boolean := True); -- Flag4
10607 procedure Set_Do_Overflow_Check
10608 (N : Node_Id; Val : Boolean := True); -- Flag17
10610 procedure Set_Do_Range_Check
10611 (N : Node_Id; Val : Boolean := True); -- Flag9
10613 procedure Set_Do_Storage_Check
10614 (N : Node_Id; Val : Boolean := True); -- Flag17
10616 procedure Set_Do_Tag_Check
10617 (N : Node_Id; Val : Boolean := True); -- Flag13
10619 procedure Set_Elaborate_All_Desirable
10620 (N : Node_Id; Val : Boolean := True); -- Flag9
10622 procedure Set_Elaborate_All_Present
10623 (N : Node_Id; Val : Boolean := True); -- Flag14
10625 procedure Set_Elaborate_Desirable
10626 (N : Node_Id; Val : Boolean := True); -- Flag11
10628 procedure Set_Elaborate_Present
10629 (N : Node_Id; Val : Boolean := True); -- Flag4
10631 procedure Set_Else_Actions
10632 (N : Node_Id; Val : List_Id); -- List3
10634 procedure Set_Else_Statements
10635 (N : Node_Id; Val : List_Id); -- List4
10637 procedure Set_Elsif_Parts
10638 (N : Node_Id; Val : List_Id); -- List3
10640 procedure Set_Enclosing_Variant
10641 (N : Node_Id; Val : Node_Id); -- Node2
10643 procedure Set_End_Label
10644 (N : Node_Id; Val : Node_Id); -- Node4
10646 procedure Set_End_Span
10647 (N : Node_Id; Val : Uint); -- Uint5
10649 procedure Set_Entity
10650 (N : Node_Id; Val : Node_Id); -- Node4
10652 procedure Set_Entry_Body_Formal_Part
10653 (N : Node_Id; Val : Node_Id); -- Node5
10655 procedure Set_Entry_Call_Alternative
10656 (N : Node_Id; Val : Node_Id); -- Node1
10658 procedure Set_Entry_Call_Statement
10659 (N : Node_Id; Val : Node_Id); -- Node1
10661 procedure Set_Entry_Direct_Name
10662 (N : Node_Id; Val : Node_Id); -- Node1
10664 procedure Set_Entry_Index
10665 (N : Node_Id; Val : Node_Id); -- Node5
10667 procedure Set_Entry_Index_Specification
10668 (N : Node_Id; Val : Node_Id); -- Node4
10670 procedure Set_Etype
10671 (N : Node_Id; Val : Node_Id); -- Node5
10673 procedure Set_Exception_Choices
10674 (N : Node_Id; Val : List_Id); -- List4
10676 procedure Set_Exception_Handlers
10677 (N : Node_Id; Val : List_Id); -- List5
10679 procedure Set_Exception_Junk
10680 (N : Node_Id; Val : Boolean := True); -- Flag8
10682 procedure Set_Exception_Label
10683 (N : Node_Id; Val : Node_Id); -- Node5
10685 procedure Set_Expansion_Delayed
10686 (N : Node_Id; Val : Boolean := True); -- Flag11
10688 procedure Set_Explicit_Actual_Parameter
10689 (N : Node_Id; Val : Node_Id); -- Node3
10691 procedure Set_Explicit_Generic_Actual_Parameter
10692 (N : Node_Id; Val : Node_Id); -- Node1
10694 procedure Set_Expression
10695 (N : Node_Id; Val : Node_Id); -- Node3
10697 procedure Set_Expression_Copy
10698 (N : Node_Id; Val : Node_Id); -- Node2
10700 procedure Set_Expressions
10701 (N : Node_Id; Val : List_Id); -- List1
10703 procedure Set_First_Bit
10704 (N : Node_Id; Val : Node_Id); -- Node3
10706 procedure Set_First_Inlined_Subprogram
10707 (N : Node_Id; Val : Entity_Id); -- Node3
10709 procedure Set_First_Name
10710 (N : Node_Id; Val : Boolean := True); -- Flag5
10712 procedure Set_First_Named_Actual
10713 (N : Node_Id; Val : Node_Id); -- Node4
10715 procedure Set_First_Real_Statement
10716 (N : Node_Id; Val : Node_Id); -- Node2
10718 procedure Set_First_Subtype_Link
10719 (N : Node_Id; Val : Entity_Id); -- Node5
10721 procedure Set_Float_Truncate
10722 (N : Node_Id; Val : Boolean := True); -- Flag11
10724 procedure Set_Formal_Type_Definition
10725 (N : Node_Id; Val : Node_Id); -- Node3
10727 procedure Set_Forwards_OK
10728 (N : Node_Id; Val : Boolean := True); -- Flag5
10730 procedure Set_From_Aspect_Specification
10731 (N : Node_Id; Val : Boolean := True); -- Flag13
10733 procedure Set_From_At_End
10734 (N : Node_Id; Val : Boolean := True); -- Flag4
10736 procedure Set_From_At_Mod
10737 (N : Node_Id; Val : Boolean := True); -- Flag4
10739 procedure Set_From_Conditional_Expression
10740 (N : Node_Id; Val : Boolean := True); -- Flag1
10742 procedure Set_From_Default
10743 (N : Node_Id; Val : Boolean := True); -- Flag6
10745 procedure Set_Generalized_Indexing
10746 (N : Node_Id; Val : Node_Id); -- Node4
10748 procedure Set_Generic_Associations
10749 (N : Node_Id; Val : List_Id); -- List3
10751 procedure Set_Generic_Formal_Declarations
10752 (N : Node_Id; Val : List_Id); -- List2
10754 procedure Set_Generic_Parent
10755 (N : Node_Id; Val : Node_Id); -- Node5
10757 procedure Set_Generic_Parent_Type
10758 (N : Node_Id; Val : Node_Id); -- Node4
10760 procedure Set_Handled_Statement_Sequence
10761 (N : Node_Id; Val : Node_Id); -- Node4
10763 procedure Set_Handler_List_Entry
10764 (N : Node_Id; Val : Node_Id); -- Node2
10766 procedure Set_Has_Created_Identifier
10767 (N : Node_Id; Val : Boolean := True); -- Flag15
10769 procedure Set_Has_Dereference_Action
10770 (N : Node_Id; Val : Boolean := True); -- Flag13
10772 procedure Set_Has_Dynamic_Length_Check
10773 (N : Node_Id; Val : Boolean := True); -- Flag10
10775 procedure Set_Has_Dynamic_Range_Check
10776 (N : Node_Id; Val : Boolean := True); -- Flag12
10778 procedure Set_Has_Init_Expression
10779 (N : Node_Id; Val : Boolean := True); -- Flag14
10781 procedure Set_Has_Local_Raise
10782 (N : Node_Id; Val : Boolean := True); -- Flag8
10784 procedure Set_Has_No_Elaboration_Code
10785 (N : Node_Id; Val : Boolean := True); -- Flag17
10787 procedure Set_Has_Pragma_Suppress_All
10788 (N : Node_Id; Val : Boolean := True); -- Flag14
10790 procedure Set_Has_Private_View
10791 (N : Node_Id; Val : Boolean := True); -- Flag11
10793 procedure Set_Has_Relative_Deadline_Pragma
10794 (N : Node_Id; Val : Boolean := True); -- Flag9
10796 procedure Set_Has_Self_Reference
10797 (N : Node_Id; Val : Boolean := True); -- Flag13
10799 procedure Set_Has_SP_Choice
10800 (N : Node_Id; Val : Boolean := True); -- Flag15
10802 procedure Set_Has_Storage_Size_Pragma
10803 (N : Node_Id; Val : Boolean := True); -- Flag5
10805 procedure Set_Has_Target_Names
10806 (N : Node_Id; Val : Boolean := True); -- Flag8
10808 procedure Set_Has_Wide_Character
10809 (N : Node_Id; Val : Boolean := True); -- Flag11
10811 procedure Set_Has_Wide_Wide_Character
10812 (N : Node_Id; Val : Boolean := True); -- Flag13
10814 procedure Set_Header_Size_Added
10815 (N : Node_Id; Val : Boolean := True); -- Flag11
10817 procedure Set_Hidden_By_Use_Clause
10818 (N : Node_Id; Val : Elist_Id); -- Elist5
10820 procedure Set_High_Bound
10821 (N : Node_Id; Val : Node_Id); -- Node2
10823 procedure Set_Identifier
10824 (N : Node_Id; Val : Node_Id); -- Node1
10826 procedure Set_Interface_List
10827 (N : Node_Id; Val : List_Id); -- List2
10829 procedure Set_Interface_Present
10830 (N : Node_Id; Val : Boolean := True); -- Flag16
10832 procedure Set_Implicit_With
10833 (N : Node_Id; Val : Boolean := True); -- Flag16
10835 procedure Set_Import_Interface_Present
10836 (N : Node_Id; Val : Boolean := True); -- Flag16
10838 procedure Set_In_Present
10839 (N : Node_Id; Val : Boolean := True); -- Flag15
10841 procedure Set_Includes_Infinities
10842 (N : Node_Id; Val : Boolean := True); -- Flag11
10844 procedure Set_Incomplete_View
10845 (N : Node_Id; Val : Node_Id); -- Node2
10847 procedure Set_Inherited_Discriminant
10848 (N : Node_Id; Val : Boolean := True); -- Flag13
10850 procedure Set_Instance_Spec
10851 (N : Node_Id; Val : Node_Id); -- Node5
10853 procedure Set_Intval
10854 (N : Node_Id; Val : Uint); -- Uint3
10856 procedure Set_Is_Abort_Block
10857 (N : Node_Id; Val : Boolean := True); -- Flag4
10859 procedure Set_Is_Accessibility_Actual
10860 (N : Node_Id; Val : Boolean := True); -- Flag13
10862 procedure Set_Is_Analyzed_Pragma
10863 (N : Node_Id; Val : Boolean := True); -- Flag5
10865 procedure Set_Is_Asynchronous_Call_Block
10866 (N : Node_Id; Val : Boolean := True); -- Flag7
10868 procedure Set_Is_Boolean_Aspect
10869 (N : Node_Id; Val : Boolean := True); -- Flag16
10871 procedure Set_Is_Checked
10872 (N : Node_Id; Val : Boolean := True); -- Flag11
10874 procedure Set_Is_Checked_Ghost_Pragma
10875 (N : Node_Id; Val : Boolean := True); -- Flag3
10877 procedure Set_Is_Component_Left_Opnd
10878 (N : Node_Id; Val : Boolean := True); -- Flag13
10880 procedure Set_Is_Component_Right_Opnd
10881 (N : Node_Id; Val : Boolean := True); -- Flag14
10883 procedure Set_Is_Controlling_Actual
10884 (N : Node_Id; Val : Boolean := True); -- Flag16
10886 procedure Set_Is_Declaration_Level_Node
10887 (N : Node_Id; Val : Boolean := True); -- Flag5
10889 procedure Set_Is_Delayed_Aspect
10890 (N : Node_Id; Val : Boolean := True); -- Flag14
10892 procedure Set_Is_Disabled
10893 (N : Node_Id; Val : Boolean := True); -- Flag15
10895 procedure Set_Is_Dispatching_Call
10896 (N : Node_Id; Val : Boolean := True); -- Flag6
10898 procedure Set_Is_Dynamic_Coextension
10899 (N : Node_Id; Val : Boolean := True); -- Flag18
10901 procedure Set_Is_Effective_Use_Clause
10902 (N : Node_Id; Val : Boolean := True); -- Flag1
10904 procedure Set_Is_Elaboration_Checks_OK_Node
10905 (N : Node_Id; Val : Boolean := True); -- Flag1
10907 procedure Set_Is_Elaboration_Code
10908 (N : Node_Id; Val : Boolean := True); -- Flag9
10910 procedure Set_Is_Elaboration_Warnings_OK_Node
10911 (N : Node_Id; Val : Boolean := True); -- Flag3
10913 procedure Set_Is_Elsif
10914 (N : Node_Id; Val : Boolean := True); -- Flag13
10916 procedure Set_Is_Entry_Barrier_Function
10917 (N : Node_Id; Val : Boolean := True); -- Flag8
10919 procedure Set_Is_Expanded_Build_In_Place_Call
10920 (N : Node_Id; Val : Boolean := True); -- Flag11
10922 procedure Set_Is_Expanded_Contract
10923 (N : Node_Id; Val : Boolean := True); -- Flag1
10925 procedure Set_Is_Finalization_Wrapper
10926 (N : Node_Id; Val : Boolean := True); -- Flag9
10928 procedure Set_Is_Folded_In_Parser
10929 (N : Node_Id; Val : Boolean := True); -- Flag4
10931 procedure Set_Is_Generic_Contract_Pragma
10932 (N : Node_Id; Val : Boolean := True); -- Flag2
10934 procedure Set_Is_Ignored
10935 (N : Node_Id; Val : Boolean := True); -- Flag9
10937 procedure Set_Is_Ignored_Ghost_Pragma
10938 (N : Node_Id; Val : Boolean := True); -- Flag8
10940 procedure Set_Is_In_Discriminant_Check
10941 (N : Node_Id; Val : Boolean := True); -- Flag11
10943 procedure Set_Is_Inherited_Pragma
10944 (N : Node_Id; Val : Boolean := True); -- Flag4
10946 procedure Set_Is_Initialization_Block
10947 (N : Node_Id; Val : Boolean := True); -- Flag1
10949 procedure Set_Is_Known_Guaranteed_ABE
10950 (N : Node_Id; Val : Boolean := True); -- Flag18
10952 procedure Set_Is_Machine_Number
10953 (N : Node_Id; Val : Boolean := True); -- Flag11
10955 procedure Set_Is_Null_Loop
10956 (N : Node_Id; Val : Boolean := True); -- Flag16
10958 procedure Set_Is_Overloaded
10959 (N : Node_Id; Val : Boolean := True); -- Flag5
10961 procedure Set_Is_Power_Of_2_For_Shift
10962 (N : Node_Id; Val : Boolean := True); -- Flag13
10964 procedure Set_Is_Prefixed_Call
10965 (N : Node_Id; Val : Boolean := True); -- Flag17
10967 procedure Set_Is_Protected_Subprogram_Body
10968 (N : Node_Id; Val : Boolean := True); -- Flag7
10970 procedure Set_Is_Qualified_Universal_Literal
10971 (N : Node_Id; Val : Boolean := True); -- Flag4
10973 procedure Set_Is_Read
10974 (N : Node_Id; Val : Boolean := True); -- Flag1
10976 procedure Set_Is_Source_Call
10977 (N : Node_Id; Val : Boolean := True); -- Flag4
10979 procedure Set_Is_SPARK_Mode_On_Node
10980 (N : Node_Id; Val : Boolean := True); -- Flag2
10982 procedure Set_Is_Static_Coextension
10983 (N : Node_Id; Val : Boolean := True); -- Flag14
10985 procedure Set_Is_Static_Expression
10986 (N : Node_Id; Val : Boolean := True); -- Flag6
10988 procedure Set_Is_Subprogram_Descriptor
10989 (N : Node_Id; Val : Boolean := True); -- Flag16
10991 procedure Set_Is_Task_Allocation_Block
10992 (N : Node_Id; Val : Boolean := True); -- Flag6
10994 procedure Set_Is_Task_Body_Procedure
10995 (N : Node_Id; Val : Boolean := True); -- Flag1
10997 procedure Set_Is_Task_Master
10998 (N : Node_Id; Val : Boolean := True); -- Flag5
11000 procedure Set_Is_Write
11001 (N : Node_Id; Val : Boolean := True); -- Flag2
11003 procedure Set_Iteration_Scheme
11004 (N : Node_Id; Val : Node_Id); -- Node2
11006 procedure Set_Iterator_Specification
11007 (N : Node_Id; Val : Node_Id); -- Node2
11009 procedure Set_Itype
11010 (N : Node_Id; Val : Entity_Id); -- Node1
11012 procedure Set_Kill_Range_Check
11013 (N : Node_Id; Val : Boolean := True); -- Flag11
11015 procedure Set_Last_Bit
11016 (N : Node_Id; Val : Node_Id); -- Node4
11018 procedure Set_Last_Name
11019 (N : Node_Id; Val : Boolean := True); -- Flag6
11021 procedure Set_Library_Unit
11022 (N : Node_Id; Val : Node_Id); -- Node4
11024 procedure Set_Label_Construct
11025 (N : Node_Id; Val : Node_Id); -- Node2
11027 procedure Set_Left_Opnd
11028 (N : Node_Id; Val : Node_Id); -- Node2
11030 procedure Set_Limited_View_Installed
11031 (N : Node_Id; Val : Boolean := True); -- Flag18
11033 procedure Set_Limited_Present
11034 (N : Node_Id; Val : Boolean := True); -- Flag17
11036 procedure Set_Literals
11037 (N : Node_Id; Val : List_Id); -- List1
11039 procedure Set_Local_Raise_Not_OK
11040 (N : Node_Id; Val : Boolean := True); -- Flag7
11042 procedure Set_Local_Raise_Statements
11043 (N : Node_Id; Val : Elist_Id); -- Elist1
11045 procedure Set_Loop_Actions
11046 (N : Node_Id; Val : List_Id); -- List2
11048 procedure Set_Loop_Parameter_Specification
11049 (N : Node_Id; Val : Node_Id); -- Node4
11051 procedure Set_Low_Bound
11052 (N : Node_Id; Val : Node_Id); -- Node1
11054 procedure Set_Mod_Clause
11055 (N : Node_Id; Val : Node_Id); -- Node2
11057 procedure Set_More_Ids
11058 (N : Node_Id; Val : Boolean := True); -- Flag5
11060 procedure Set_Must_Be_Byte_Aligned
11061 (N : Node_Id; Val : Boolean := True); -- Flag14
11063 procedure Set_Must_Not_Freeze
11064 (N : Node_Id; Val : Boolean := True); -- Flag8
11066 procedure Set_Must_Not_Override
11067 (N : Node_Id; Val : Boolean := True); -- Flag15
11069 procedure Set_Must_Override
11070 (N : Node_Id; Val : Boolean := True); -- Flag14
11072 procedure Set_Name
11073 (N : Node_Id; Val : Node_Id); -- Node2
11075 procedure Set_Names
11076 (N : Node_Id; Val : List_Id); -- List2
11078 procedure Set_Next_Entity
11079 (N : Node_Id; Val : Node_Id); -- Node2
11081 procedure Set_Next_Exit_Statement
11082 (N : Node_Id; Val : Node_Id); -- Node3
11084 procedure Set_Next_Implicit_With
11085 (N : Node_Id; Val : Node_Id); -- Node3
11087 procedure Set_Next_Named_Actual
11088 (N : Node_Id; Val : Node_Id); -- Node4
11090 procedure Set_Next_Pragma
11091 (N : Node_Id; Val : Node_Id); -- Node1
11093 procedure Set_Next_Rep_Item
11094 (N : Node_Id; Val : Node_Id); -- Node5
11096 procedure Set_Next_Use_Clause
11097 (N : Node_Id; Val : Node_Id); -- Node3
11099 procedure Set_No_Ctrl_Actions
11100 (N : Node_Id; Val : Boolean := True); -- Flag7
11102 procedure Set_No_Elaboration_Check
11103 (N : Node_Id; Val : Boolean := True); -- Flag4
11105 procedure Set_No_Entities_Ref_In_Spec
11106 (N : Node_Id; Val : Boolean := True); -- Flag8
11108 procedure Set_No_Initialization
11109 (N : Node_Id; Val : Boolean := True); -- Flag13
11111 procedure Set_No_Minimize_Eliminate
11112 (N : Node_Id; Val : Boolean := True); -- Flag17
11114 procedure Set_No_Side_Effect_Removal
11115 (N : Node_Id; Val : Boolean := True); -- Flag17
11117 procedure Set_No_Truncation
11118 (N : Node_Id; Val : Boolean := True); -- Flag17
11120 procedure Set_Null_Excluding_Subtype
11121 (N : Node_Id; Val : Boolean := True); -- Flag16
11123 procedure Set_Null_Exclusion_Present
11124 (N : Node_Id; Val : Boolean := True); -- Flag11
11126 procedure Set_Null_Exclusion_In_Return_Present
11127 (N : Node_Id; Val : Boolean := True); -- Flag14
11129 procedure Set_Null_Present
11130 (N : Node_Id; Val : Boolean := True); -- Flag13
11132 procedure Set_Null_Record_Present
11133 (N : Node_Id; Val : Boolean := True); -- Flag17
11135 procedure Set_Null_Statement
11136 (N : Node_Id; Val : Node_Id); -- Node2
11138 procedure Set_Object_Definition
11139 (N : Node_Id; Val : Node_Id); -- Node4
11141 procedure Set_Of_Present
11142 (N : Node_Id; Val : Boolean := True); -- Flag16
11144 procedure Set_Original_Discriminant
11145 (N : Node_Id; Val : Node_Id); -- Node2
11147 procedure Set_Original_Entity
11148 (N : Node_Id; Val : Entity_Id); -- Node2
11150 procedure Set_Others_Discrete_Choices
11151 (N : Node_Id; Val : List_Id); -- List1
11153 procedure Set_Out_Present
11154 (N : Node_Id; Val : Boolean := True); -- Flag17
11156 procedure Set_Parameter_Associations
11157 (N : Node_Id; Val : List_Id); -- List3
11159 procedure Set_Parameter_Specifications
11160 (N : Node_Id; Val : List_Id); -- List3
11162 procedure Set_Parameter_Type
11163 (N : Node_Id; Val : Node_Id); -- Node2
11165 procedure Set_Parent_Spec
11166 (N : Node_Id; Val : Node_Id); -- Node4
11168 procedure Set_Parent_With
11169 (N : Node_Id; Val : Boolean := True); -- Flag1
11171 procedure Set_Position
11172 (N : Node_Id; Val : Node_Id); -- Node2
11174 procedure Set_Pragma_Argument_Associations
11175 (N : Node_Id; Val : List_Id); -- List2
11177 procedure Set_Pragma_Identifier
11178 (N : Node_Id; Val : Node_Id); -- Node4
11180 procedure Set_Pragmas_After
11181 (N : Node_Id; Val : List_Id); -- List5
11183 procedure Set_Pragmas_Before
11184 (N : Node_Id; Val : List_Id); -- List4
11186 procedure Set_Pre_Post_Conditions
11187 (N : Node_Id; Val : Node_Id); -- Node1
11189 procedure Set_Prefix
11190 (N : Node_Id; Val : Node_Id); -- Node3
11192 procedure Set_Premature_Use
11193 (N : Node_Id; Val : Node_Id); -- Node5
11195 procedure Set_Present_Expr
11196 (N : Node_Id; Val : Uint); -- Uint3
11198 procedure Set_Prev_Ids
11199 (N : Node_Id; Val : Boolean := True); -- Flag6
11201 procedure Set_Prev_Use_Clause
11202 (N : Node_Id; Val : Node_Id); -- Node1
11204 procedure Set_Print_In_Hex
11205 (N : Node_Id; Val : Boolean := True); -- Flag13
11207 procedure Set_Private_Declarations
11208 (N : Node_Id; Val : List_Id); -- List3
11210 procedure Set_Private_Present
11211 (N : Node_Id; Val : Boolean := True); -- Flag15
11213 procedure Set_Procedure_To_Call
11214 (N : Node_Id; Val : Node_Id); -- Node2
11216 procedure Set_Proper_Body
11217 (N : Node_Id; Val : Node_Id); -- Node1
11219 procedure Set_Protected_Definition
11220 (N : Node_Id; Val : Node_Id); -- Node3
11222 procedure Set_Protected_Present
11223 (N : Node_Id; Val : Boolean := True); -- Flag6
11225 procedure Set_Raises_Constraint_Error
11226 (N : Node_Id; Val : Boolean := True); -- Flag7
11228 procedure Set_Range_Constraint
11229 (N : Node_Id; Val : Node_Id); -- Node4
11231 procedure Set_Range_Expression
11232 (N : Node_Id; Val : Node_Id); -- Node4
11234 procedure Set_Real_Range_Specification
11235 (N : Node_Id; Val : Node_Id); -- Node4
11237 procedure Set_Realval
11238 (N : Node_Id; Val : Ureal); -- Ureal3
11240 procedure Set_Reason
11241 (N : Node_Id; Val : Uint); -- Uint3
11243 procedure Set_Record_Extension_Part
11244 (N : Node_Id; Val : Node_Id); -- Node3
11246 procedure Set_Redundant_Use
11247 (N : Node_Id; Val : Boolean := True); -- Flag13
11249 procedure Set_Renaming_Exception
11250 (N : Node_Id; Val : Node_Id); -- Node2
11252 procedure Set_Result_Definition
11253 (N : Node_Id; Val : Node_Id); -- Node4
11255 procedure Set_Return_Object_Declarations
11256 (N : Node_Id; Val : List_Id); -- List3
11258 procedure Set_Return_Statement_Entity
11259 (N : Node_Id; Val : Node_Id); -- Node5
11261 procedure Set_Reverse_Present
11262 (N : Node_Id; Val : Boolean := True); -- Flag15
11264 procedure Set_Right_Opnd
11265 (N : Node_Id; Val : Node_Id); -- Node3
11267 procedure Set_Rounded_Result
11268 (N : Node_Id; Val : Boolean := True); -- Flag18
11270 procedure Set_SCIL_Controlling_Tag
11271 (N : Node_Id; Val : Node_Id); -- Node5
11273 procedure Set_SCIL_Entity
11274 (N : Node_Id; Val : Node_Id); -- Node4
11276 procedure Set_SCIL_Tag_Value
11277 (N : Node_Id; Val : Node_Id); -- Node5
11279 procedure Set_SCIL_Target_Prim
11280 (N : Node_Id; Val : Node_Id); -- Node2
11282 procedure Set_Scope
11283 (N : Node_Id; Val : Node_Id); -- Node3
11285 procedure Set_Select_Alternatives
11286 (N : Node_Id; Val : List_Id); -- List1
11288 procedure Set_Selector_Name
11289 (N : Node_Id; Val : Node_Id); -- Node2
11291 procedure Set_Selector_Names
11292 (N : Node_Id; Val : List_Id); -- List1
11294 procedure Set_Shift_Count_OK
11295 (N : Node_Id; Val : Boolean := True); -- Flag4
11297 procedure Set_Source_Type
11298 (N : Node_Id; Val : Entity_Id); -- Node1
11300 procedure Set_Specification
11301 (N : Node_Id; Val : Node_Id); -- Node1
11303 procedure Set_Split_PPC
11304 (N : Node_Id; Val : Boolean); -- Flag17
11306 procedure Set_Statements
11307 (N : Node_Id; Val : List_Id); -- List3
11309 procedure Set_Storage_Pool
11310 (N : Node_Id; Val : Node_Id); -- Node1
11312 procedure Set_Subpool_Handle_Name
11313 (N : Node_Id; Val : Node_Id); -- Node4
11315 procedure Set_Strval
11316 (N : Node_Id; Val : String_Id); -- Str3
11318 procedure Set_Subtype_Indication
11319 (N : Node_Id; Val : Node_Id); -- Node5
11321 procedure Set_Subtype_Mark
11322 (N : Node_Id; Val : Node_Id); -- Node4
11324 procedure Set_Subtype_Marks
11325 (N : Node_Id; Val : List_Id); -- List2
11327 procedure Set_Suppress_Assignment_Checks
11328 (N : Node_Id; Val : Boolean := True); -- Flag18
11330 procedure Set_Suppress_Loop_Warnings
11331 (N : Node_Id; Val : Boolean := True); -- Flag17
11333 procedure Set_Synchronized_Present
11334 (N : Node_Id; Val : Boolean := True); -- Flag7
11336 procedure Set_Tagged_Present
11337 (N : Node_Id; Val : Boolean := True); -- Flag15
11339 procedure Set_Target
11340 (N : Node_Id; Val : Entity_Id); -- Node1
11342 procedure Set_Target_Type
11343 (N : Node_Id; Val : Entity_Id); -- Node2
11345 procedure Set_Task_Definition
11346 (N : Node_Id; Val : Node_Id); -- Node3
11348 procedure Set_Task_Present
11349 (N : Node_Id; Val : Boolean := True); -- Flag5
11351 procedure Set_Then_Actions
11352 (N : Node_Id; Val : List_Id); -- List2
11354 procedure Set_Then_Statements
11355 (N : Node_Id; Val : List_Id); -- List2
11357 procedure Set_Treat_Fixed_As_Integer
11358 (N : Node_Id; Val : Boolean := True); -- Flag14
11360 procedure Set_Triggering_Alternative
11361 (N : Node_Id; Val : Node_Id); -- Node1
11363 procedure Set_Triggering_Statement
11364 (N : Node_Id; Val : Node_Id); -- Node1
11366 procedure Set_TSS_Elist
11367 (N : Node_Id; Val : Elist_Id); -- Elist3
11369 procedure Set_Type_Definition
11370 (N : Node_Id; Val : Node_Id); -- Node3
11372 procedure Set_Uneval_Old_Accept
11373 (N : Node_Id; Val : Boolean := True); -- Flag7
11375 procedure Set_Uneval_Old_Warn
11376 (N : Node_Id; Val : Boolean := True); -- Flag18
11378 procedure Set_Unit
11379 (N : Node_Id; Val : Node_Id); -- Node2
11381 procedure Set_Unknown_Discriminants_Present
11382 (N : Node_Id; Val : Boolean := True); -- Flag13
11384 procedure Set_Unreferenced_In_Spec
11385 (N : Node_Id; Val : Boolean := True); -- Flag7
11387 procedure Set_Variant_Part
11388 (N : Node_Id; Val : Node_Id); -- Node4
11390 procedure Set_Variants
11391 (N : Node_Id; Val : List_Id); -- List1
11393 procedure Set_Visible_Declarations
11394 (N : Node_Id; Val : List_Id); -- List2
11396 procedure Set_Uninitialized_Variable
11397 (N : Node_Id; Val : Node_Id); -- Node3
11399 procedure Set_Used_Operations
11400 (N : Node_Id; Val : Elist_Id); -- Elist2
11402 procedure Set_Was_Attribute_Reference
11403 (N : Node_Id; Val : Boolean := True); -- Flag2
11405 procedure Set_Was_Expression_Function
11406 (N : Node_Id; Val : Boolean := True); -- Flag18
11408 procedure Set_Was_Originally_Stub
11409 (N : Node_Id; Val : Boolean := True); -- Flag13
11411 procedure Set_Withed_Body
11412 (N : Node_Id; Val : Node_Id); -- Node1
11414 -------------------------
11415 -- Iterator Procedures --
11416 -------------------------
11418 -- The call to Next_xxx (N) is equivalent to N := Next_xxx (N)
11420 procedure Next_Entity (N : in out Node_Id);
11421 procedure Next_Named_Actual (N : in out Node_Id);
11422 procedure Next_Rep_Item (N : in out Node_Id);
11423 procedure Next_Use_Clause (N : in out Node_Id);
11425 -------------------------------------------
11426 -- Miscellaneous Tree Access Subprograms --
11427 -------------------------------------------
11429 function End_Location (N : Node_Id) return Source_Ptr;
11430 -- N is an N_If_Statement or N_Case_Statement node, and this function
11431 -- returns the location of the IF token in the END IF sequence by
11432 -- translating the value of the End_Span field.
11434 procedure Set_End_Location (N : Node_Id; S : Source_Ptr);
11435 -- N is an N_If_Statement or N_Case_Statement node. This procedure sets
11436 -- the End_Span field to correspond to the given value S. In other words,
11437 -- End_Span is set to the difference between S and Sloc (N), the starting
11438 -- location.
11440 function Get_Pragma_Arg (Arg : Node_Id) return Node_Id;
11441 -- Given an argument to a pragma Arg, this function returns the expression
11442 -- for the argument. This is Arg itself, or, in the case where Arg is a
11443 -- pragma argument association node, the expression from this node.
11445 --------------------------------
11446 -- Node_Kind Membership Tests --
11447 --------------------------------
11449 -- The following functions allow a convenient notation for testing whether
11450 -- a Node_Kind value matches any one of a list of possible values. In each
11451 -- case True is returned if the given T argument is equal to any of the V
11452 -- arguments. Note that there is a similar set of functions defined in
11453 -- Atree where the first argument is a Node_Id whose Nkind field is tested.
11455 function Nkind_In
11456 (T : Node_Kind;
11457 V1 : Node_Kind;
11458 V2 : Node_Kind) return Boolean;
11460 function Nkind_In
11461 (T : Node_Kind;
11462 V1 : Node_Kind;
11463 V2 : Node_Kind;
11464 V3 : Node_Kind) return Boolean;
11466 function Nkind_In
11467 (T : Node_Kind;
11468 V1 : Node_Kind;
11469 V2 : Node_Kind;
11470 V3 : Node_Kind;
11471 V4 : Node_Kind) return Boolean;
11473 function Nkind_In
11474 (T : Node_Kind;
11475 V1 : Node_Kind;
11476 V2 : Node_Kind;
11477 V3 : Node_Kind;
11478 V4 : Node_Kind;
11479 V5 : Node_Kind) return Boolean;
11481 function Nkind_In
11482 (T : Node_Kind;
11483 V1 : Node_Kind;
11484 V2 : Node_Kind;
11485 V3 : Node_Kind;
11486 V4 : Node_Kind;
11487 V5 : Node_Kind;
11488 V6 : Node_Kind) return Boolean;
11490 function Nkind_In
11491 (T : Node_Kind;
11492 V1 : Node_Kind;
11493 V2 : Node_Kind;
11494 V3 : Node_Kind;
11495 V4 : Node_Kind;
11496 V5 : Node_Kind;
11497 V6 : Node_Kind;
11498 V7 : Node_Kind) return Boolean;
11500 function Nkind_In
11501 (T : Node_Kind;
11502 V1 : Node_Kind;
11503 V2 : Node_Kind;
11504 V3 : Node_Kind;
11505 V4 : Node_Kind;
11506 V5 : Node_Kind;
11507 V6 : Node_Kind;
11508 V7 : Node_Kind;
11509 V8 : Node_Kind) return Boolean;
11511 function Nkind_In
11512 (T : Node_Kind;
11513 V1 : Node_Kind;
11514 V2 : Node_Kind;
11515 V3 : Node_Kind;
11516 V4 : Node_Kind;
11517 V5 : Node_Kind;
11518 V6 : Node_Kind;
11519 V7 : Node_Kind;
11520 V8 : Node_Kind;
11521 V9 : Node_Kind) return Boolean;
11523 function Nkind_In
11524 (T : Node_Kind;
11525 V1 : Node_Kind;
11526 V2 : Node_Kind;
11527 V3 : Node_Kind;
11528 V4 : Node_Kind;
11529 V5 : Node_Kind;
11530 V6 : Node_Kind;
11531 V7 : Node_Kind;
11532 V8 : Node_Kind;
11533 V9 : Node_Kind;
11534 V10 : Node_Kind) return Boolean;
11536 function Nkind_In
11537 (T : Node_Kind;
11538 V1 : Node_Kind;
11539 V2 : Node_Kind;
11540 V3 : Node_Kind;
11541 V4 : Node_Kind;
11542 V5 : Node_Kind;
11543 V6 : Node_Kind;
11544 V7 : Node_Kind;
11545 V8 : Node_Kind;
11546 V9 : Node_Kind;
11547 V10 : Node_Kind;
11548 V11 : Node_Kind) return Boolean;
11550 pragma Inline (Nkind_In);
11551 -- Inline all above functions
11553 -----------------------
11554 -- Utility Functions --
11555 -----------------------
11557 procedure Map_Pragma_Name (From, To : Name_Id);
11558 -- Used in the implementation of pragma Rename_Pragma. Maps pragma name
11559 -- From to pragma name To, so From can be used as a synonym for To.
11561 Too_Many_Pragma_Mappings : exception;
11562 -- Raised if Map_Pragma_Name is called too many times. We expect that few
11563 -- programs will use it at all, and those that do will use it approximately
11564 -- once or twice.
11566 function Pragma_Name (N : Node_Id) return Name_Id;
11567 -- Obtain the name of pragma N from the Chars field of its identifier. If
11568 -- the pragma has been renamed using Rename_Pragma, this routine returns
11569 -- the name of the renaming.
11571 function Pragma_Name_Unmapped (N : Node_Id) return Name_Id;
11572 -- Obtain the name of pragma N from the Chars field of its identifier. This
11573 -- form of name extraction does not take into account renamings performed
11574 -- by Rename_Pragma.
11576 -----------------------------
11577 -- Syntactic Parent Tables --
11578 -----------------------------
11580 -- These tables show for each node, and for each of the five fields,
11581 -- whether the corresponding field is syntactic (True) or semantic (False).
11582 -- Unused entries are also set to False.
11584 subtype Field_Num is Natural range 1 .. 5;
11586 Is_Syntactic_Field : constant array (Node_Kind, Field_Num) of Boolean := (
11588 -- Following entries can be built automatically from the sinfo sources
11589 -- using the makeisf utility (currently this program is in spitbol).
11591 N_Identifier =>
11592 (1 => True, -- Chars (Name1)
11593 2 => False, -- Original_Discriminant (Node2-Sem)
11594 3 => False, -- unused
11595 4 => False, -- Entity (Node4-Sem)
11596 5 => False), -- Etype (Node5-Sem)
11598 N_Integer_Literal =>
11599 (1 => False, -- unused
11600 2 => False, -- Original_Entity (Node2-Sem)
11601 3 => True, -- Intval (Uint3)
11602 4 => False, -- unused
11603 5 => False), -- Etype (Node5-Sem)
11605 N_Real_Literal =>
11606 (1 => False, -- unused
11607 2 => False, -- Original_Entity (Node2-Sem)
11608 3 => True, -- Realval (Ureal3)
11609 4 => False, -- Corresponding_Integer_Value (Uint4-Sem)
11610 5 => False), -- Etype (Node5-Sem)
11612 N_Character_Literal =>
11613 (1 => True, -- Chars (Name1)
11614 2 => True, -- Char_Literal_Value (Uint2)
11615 3 => False, -- unused
11616 4 => False, -- Entity (Node4-Sem)
11617 5 => False), -- Etype (Node5-Sem)
11619 N_String_Literal =>
11620 (1 => False, -- unused
11621 2 => False, -- unused
11622 3 => True, -- Strval (Str3)
11623 4 => False, -- unused
11624 5 => False), -- Etype (Node5-Sem)
11626 N_Pragma =>
11627 (1 => False, -- Next_Pragma (Node1-Sem)
11628 2 => True, -- Pragma_Argument_Associations (List2)
11629 3 => False, -- Corresponding_Aspect (Node3-Sem)
11630 4 => True, -- Pragma_Identifier (Node4)
11631 5 => False), -- Next_Rep_Item (Node5-Sem)
11633 N_Pragma_Argument_Association =>
11634 (1 => True, -- Chars (Name1)
11635 2 => False, -- Expression_Copy (Node2-Sem)
11636 3 => True, -- Expression (Node3)
11637 4 => False, -- unused
11638 5 => False), -- unused
11640 N_Defining_Identifier =>
11641 (1 => True, -- Chars (Name1)
11642 2 => False, -- Next_Entity (Node2-Sem)
11643 3 => False, -- Scope (Node3-Sem)
11644 4 => False, -- unused
11645 5 => False), -- Etype (Node5-Sem)
11647 N_Full_Type_Declaration =>
11648 (1 => True, -- Defining_Identifier (Node1)
11649 2 => False, -- Incomplete_View (Node2-Sem)
11650 3 => True, -- Type_Definition (Node3)
11651 4 => True, -- Discriminant_Specifications (List4)
11652 5 => False), -- unused
11654 N_Subtype_Declaration =>
11655 (1 => True, -- Defining_Identifier (Node1)
11656 2 => False, -- unused
11657 3 => False, -- unused
11658 4 => False, -- Generic_Parent_Type (Node4-Sem)
11659 5 => True), -- Subtype_Indication (Node5)
11661 N_Subtype_Indication =>
11662 (1 => False, -- unused
11663 2 => False, -- unused
11664 3 => True, -- Constraint (Node3)
11665 4 => True, -- Subtype_Mark (Node4)
11666 5 => False), -- Etype (Node5-Sem)
11668 N_Object_Declaration =>
11669 (1 => True, -- Defining_Identifier (Node1)
11670 2 => False, -- Handler_List_Entry (Node2-Sem)
11671 3 => True, -- Expression (Node3)
11672 4 => True, -- Object_Definition (Node4)
11673 5 => False), -- Corresponding_Generic_Association (Node5-Sem)
11675 N_Number_Declaration =>
11676 (1 => True, -- Defining_Identifier (Node1)
11677 2 => False, -- unused
11678 3 => True, -- Expression (Node3)
11679 4 => False, -- unused
11680 5 => False), -- unused
11682 N_Derived_Type_Definition =>
11683 (1 => False, -- unused
11684 2 => True, -- Interface_List (List2)
11685 3 => True, -- Record_Extension_Part (Node3)
11686 4 => False, -- unused
11687 5 => True), -- Subtype_Indication (Node5)
11689 N_Range_Constraint =>
11690 (1 => False, -- unused
11691 2 => False, -- unused
11692 3 => False, -- unused
11693 4 => True, -- Range_Expression (Node4)
11694 5 => False), -- unused
11696 N_Range =>
11697 (1 => True, -- Low_Bound (Node1)
11698 2 => True, -- High_Bound (Node2)
11699 3 => False, -- unused
11700 4 => False, -- unused
11701 5 => False), -- Etype (Node5-Sem)
11703 N_Enumeration_Type_Definition =>
11704 (1 => True, -- Literals (List1)
11705 2 => False, -- unused
11706 3 => False, -- unused
11707 4 => True, -- End_Label (Node4)
11708 5 => False), -- unused
11710 N_Defining_Character_Literal =>
11711 (1 => True, -- Chars (Name1)
11712 2 => False, -- Next_Entity (Node2-Sem)
11713 3 => False, -- Scope (Node3-Sem)
11714 4 => False, -- unused
11715 5 => False), -- Etype (Node5-Sem)
11717 N_Signed_Integer_Type_Definition =>
11718 (1 => True, -- Low_Bound (Node1)
11719 2 => True, -- High_Bound (Node2)
11720 3 => False, -- unused
11721 4 => False, -- unused
11722 5 => False), -- unused
11724 N_Modular_Type_Definition =>
11725 (1 => False, -- unused
11726 2 => False, -- unused
11727 3 => True, -- Expression (Node3)
11728 4 => False, -- unused
11729 5 => False), -- unused
11731 N_Floating_Point_Definition =>
11732 (1 => False, -- unused
11733 2 => True, -- Digits_Expression (Node2)
11734 3 => False, -- unused
11735 4 => True, -- Real_Range_Specification (Node4)
11736 5 => False), -- unused
11738 N_Real_Range_Specification =>
11739 (1 => True, -- Low_Bound (Node1)
11740 2 => True, -- High_Bound (Node2)
11741 3 => False, -- unused
11742 4 => False, -- unused
11743 5 => False), -- unused
11745 N_Ordinary_Fixed_Point_Definition =>
11746 (1 => False, -- unused
11747 2 => False, -- unused
11748 3 => True, -- Delta_Expression (Node3)
11749 4 => True, -- Real_Range_Specification (Node4)
11750 5 => False), -- unused
11752 N_Decimal_Fixed_Point_Definition =>
11753 (1 => False, -- unused
11754 2 => True, -- Digits_Expression (Node2)
11755 3 => True, -- Delta_Expression (Node3)
11756 4 => True, -- Real_Range_Specification (Node4)
11757 5 => False), -- unused
11759 N_Digits_Constraint =>
11760 (1 => False, -- unused
11761 2 => True, -- Digits_Expression (Node2)
11762 3 => False, -- unused
11763 4 => True, -- Range_Constraint (Node4)
11764 5 => False), -- unused
11766 N_Unconstrained_Array_Definition =>
11767 (1 => False, -- unused
11768 2 => True, -- Subtype_Marks (List2)
11769 3 => False, -- unused
11770 4 => True, -- Component_Definition (Node4)
11771 5 => False), -- unused
11773 N_Constrained_Array_Definition =>
11774 (1 => False, -- unused
11775 2 => True, -- Discrete_Subtype_Definitions (List2)
11776 3 => False, -- unused
11777 4 => True, -- Component_Definition (Node4)
11778 5 => False), -- unused
11780 N_Component_Definition =>
11781 (1 => False, -- unused
11782 2 => False, -- unused
11783 3 => True, -- Access_Definition (Node3)
11784 4 => False, -- unused
11785 5 => True), -- Subtype_Indication (Node5)
11787 N_Discriminant_Specification =>
11788 (1 => True, -- Defining_Identifier (Node1)
11789 2 => False, -- unused
11790 3 => True, -- Expression (Node3)
11791 4 => False, -- unused
11792 5 => True), -- Discriminant_Type (Node5)
11794 N_Index_Or_Discriminant_Constraint =>
11795 (1 => True, -- Constraints (List1)
11796 2 => False, -- unused
11797 3 => False, -- unused
11798 4 => False, -- unused
11799 5 => False), -- unused
11801 N_Discriminant_Association =>
11802 (1 => True, -- Selector_Names (List1)
11803 2 => False, -- unused
11804 3 => True, -- Expression (Node3)
11805 4 => False, -- unused
11806 5 => False), -- unused
11808 N_Record_Definition =>
11809 (1 => True, -- Component_List (Node1)
11810 2 => True, -- Interface_List (List2)
11811 3 => False, -- unused
11812 4 => True, -- End_Label (Node4)
11813 5 => False), -- unused
11815 N_Component_List =>
11816 (1 => False, -- unused
11817 2 => False, -- unused
11818 3 => True, -- Component_Items (List3)
11819 4 => True, -- Variant_Part (Node4)
11820 5 => False), -- unused
11822 N_Component_Declaration =>
11823 (1 => True, -- Defining_Identifier (Node1)
11824 2 => False, -- unused
11825 3 => True, -- Expression (Node3)
11826 4 => True, -- Component_Definition (Node4)
11827 5 => False), -- unused
11829 N_Variant_Part =>
11830 (1 => True, -- Variants (List1)
11831 2 => True, -- Name (Node2)
11832 3 => False, -- unused
11833 4 => False, -- unused
11834 5 => False), -- unused
11836 N_Variant =>
11837 (1 => True, -- Component_List (Node1)
11838 2 => False, -- Enclosing_Variant (Node2-Sem)
11839 3 => False, -- Present_Expr (Uint3-Sem)
11840 4 => True, -- Discrete_Choices (List4)
11841 5 => False), -- Dcheck_Function (Node5-Sem)
11843 N_Others_Choice =>
11844 (1 => False, -- Others_Discrete_Choices (List1-Sem)
11845 2 => False, -- unused
11846 3 => False, -- unused
11847 4 => False, -- unused
11848 5 => False), -- unused
11850 N_Access_To_Object_Definition =>
11851 (1 => False, -- unused
11852 2 => False, -- unused
11853 3 => False, -- unused
11854 4 => False, -- unused
11855 5 => True), -- Subtype_Indication (Node5)
11857 N_Access_Function_Definition =>
11858 (1 => False, -- unused
11859 2 => False, -- unused
11860 3 => True, -- Parameter_Specifications (List3)
11861 4 => True, -- Result_Definition (Node4)
11862 5 => False), -- unused
11864 N_Access_Procedure_Definition =>
11865 (1 => False, -- unused
11866 2 => False, -- unused
11867 3 => True, -- Parameter_Specifications (List3)
11868 4 => False, -- unused
11869 5 => False), -- unused
11871 N_Access_Definition =>
11872 (1 => False, -- unused
11873 2 => False, -- unused
11874 3 => True, -- Access_To_Subprogram_Definition (Node3)
11875 4 => True, -- Subtype_Mark (Node4)
11876 5 => False), -- unused
11878 N_Incomplete_Type_Declaration =>
11879 (1 => True, -- Defining_Identifier (Node1)
11880 2 => False, -- unused
11881 3 => False, -- unused
11882 4 => True, -- Discriminant_Specifications (List4)
11883 5 => False), -- Premature_Use
11885 N_Explicit_Dereference =>
11886 (1 => False, -- unused
11887 2 => False, -- unused
11888 3 => True, -- Prefix (Node3)
11889 4 => False, -- Actual_Designated_Subtype (Node4-Sem)
11890 5 => False), -- Etype (Node5-Sem)
11892 N_Indexed_Component =>
11893 (1 => True, -- Expressions (List1)
11894 2 => False, -- unused
11895 3 => True, -- Prefix (Node3)
11896 4 => False, -- Generalized_Indexing (Node4-Sem)
11897 5 => False), -- Etype (Node5-Sem)
11899 N_Slice =>
11900 (1 => False, -- unused
11901 2 => False, -- unused
11902 3 => True, -- Prefix (Node3)
11903 4 => True, -- Discrete_Range (Node4)
11904 5 => False), -- Etype (Node5-Sem)
11906 N_Selected_Component =>
11907 (1 => False, -- unused
11908 2 => True, -- Selector_Name (Node2)
11909 3 => True, -- Prefix (Node3)
11910 4 => False, -- unused
11911 5 => False), -- Etype (Node5-Sem)
11913 N_Attribute_Reference =>
11914 (1 => True, -- Expressions (List1)
11915 2 => True, -- Attribute_Name (Name2)
11916 3 => True, -- Prefix (Node3)
11917 4 => False, -- Entity (Node4-Sem)
11918 5 => False), -- Etype (Node5-Sem)
11920 N_Aggregate =>
11921 (1 => True, -- Expressions (List1)
11922 2 => True, -- Component_Associations (List2)
11923 3 => False, -- Aggregate_Bounds (Node3-Sem)
11924 4 => False, -- unused
11925 5 => False), -- Etype (Node5-Sem)
11927 N_Component_Association =>
11928 (1 => True, -- Choices (List1)
11929 2 => False, -- Loop_Actions (List2-Sem)
11930 3 => True, -- Expression (Node3)
11931 4 => False, -- unused
11932 5 => False), -- unused
11934 N_Iterated_Component_Association =>
11935 (1 => True, -- Defining_Identifier (Node1)
11936 2 => False, -- unused
11937 3 => True, -- Expression (Node3)
11938 4 => True, -- Discrete_Choices (List4)
11939 5 => False), -- unused
11941 N_Delta_Aggregate =>
11942 (1 => False, -- Expressions (List1-Sem)
11943 2 => True, -- Component_Associations (List2)
11944 3 => True, -- Expression (Node3)
11945 4 => False, -- Unused
11946 5 => False), -- Etype (Node5-Sem)
11948 N_Extension_Aggregate =>
11949 (1 => True, -- Expressions (List1)
11950 2 => True, -- Component_Associations (List2)
11951 3 => True, -- Ancestor_Part (Node3)
11952 4 => False, -- unused
11953 5 => False), -- Etype (Node5-Sem)
11955 N_Null =>
11956 (1 => False, -- unused
11957 2 => False, -- unused
11958 3 => False, -- unused
11959 4 => False, -- unused
11960 5 => False), -- Etype (Node5-Sem)
11962 N_And_Then =>
11963 (1 => False, -- Actions (List1-Sem)
11964 2 => True, -- Left_Opnd (Node2)
11965 3 => True, -- Right_Opnd (Node3)
11966 4 => False, -- unused
11967 5 => False), -- Etype (Node5-Sem)
11969 N_Or_Else =>
11970 (1 => False, -- Actions (List1-Sem)
11971 2 => True, -- Left_Opnd (Node2)
11972 3 => True, -- Right_Opnd (Node3)
11973 4 => False, -- unused
11974 5 => False), -- Etype (Node5-Sem)
11976 N_In =>
11977 (1 => False, -- unused
11978 2 => True, -- Left_Opnd (Node2)
11979 3 => True, -- Right_Opnd (Node3)
11980 4 => True, -- Alternatives (List4)
11981 5 => False), -- Etype (Node5-Sem)
11983 N_Not_In =>
11984 (1 => False, -- unused
11985 2 => True, -- Left_Opnd (Node2)
11986 3 => True, -- Right_Opnd (Node3)
11987 4 => True, -- Alternatives (List4)
11988 5 => False), -- Etype (Node5-Sem)
11990 N_Op_And =>
11991 (1 => True, -- Chars (Name1)
11992 2 => True, -- Left_Opnd (Node2)
11993 3 => True, -- Right_Opnd (Node3)
11994 4 => False, -- Entity (Node4-Sem)
11995 5 => False), -- Etype (Node5-Sem)
11997 N_Op_Or =>
11998 (1 => True, -- Chars (Name1)
11999 2 => True, -- Left_Opnd (Node2)
12000 3 => True, -- Right_Opnd (Node3)
12001 4 => False, -- Entity (Node4-Sem)
12002 5 => False), -- Etype (Node5-Sem)
12004 N_Op_Xor =>
12005 (1 => True, -- Chars (Name1)
12006 2 => True, -- Left_Opnd (Node2)
12007 3 => True, -- Right_Opnd (Node3)
12008 4 => False, -- Entity (Node4-Sem)
12009 5 => False), -- Etype (Node5-Sem)
12011 N_Op_Eq =>
12012 (1 => True, -- Chars (Name1)
12013 2 => True, -- Left_Opnd (Node2)
12014 3 => True, -- Right_Opnd (Node3)
12015 4 => False, -- Entity (Node4-Sem)
12016 5 => False), -- Etype (Node5-Sem)
12018 N_Op_Ne =>
12019 (1 => True, -- Chars (Name1)
12020 2 => True, -- Left_Opnd (Node2)
12021 3 => True, -- Right_Opnd (Node3)
12022 4 => False, -- Entity (Node4-Sem)
12023 5 => False), -- Etype (Node5-Sem)
12025 N_Op_Lt =>
12026 (1 => True, -- Chars (Name1)
12027 2 => True, -- Left_Opnd (Node2)
12028 3 => True, -- Right_Opnd (Node3)
12029 4 => False, -- Entity (Node4-Sem)
12030 5 => False), -- Etype (Node5-Sem)
12032 N_Op_Le =>
12033 (1 => True, -- Chars (Name1)
12034 2 => True, -- Left_Opnd (Node2)
12035 3 => True, -- Right_Opnd (Node3)
12036 4 => False, -- Entity (Node4-Sem)
12037 5 => False), -- Etype (Node5-Sem)
12039 N_Op_Gt =>
12040 (1 => True, -- Chars (Name1)
12041 2 => True, -- Left_Opnd (Node2)
12042 3 => True, -- Right_Opnd (Node3)
12043 4 => False, -- Entity (Node4-Sem)
12044 5 => False), -- Etype (Node5-Sem)
12046 N_Op_Ge =>
12047 (1 => True, -- Chars (Name1)
12048 2 => True, -- Left_Opnd (Node2)
12049 3 => True, -- Right_Opnd (Node3)
12050 4 => False, -- Entity (Node4-Sem)
12051 5 => False), -- Etype (Node5-Sem)
12053 N_Op_Add =>
12054 (1 => True, -- Chars (Name1)
12055 2 => True, -- Left_Opnd (Node2)
12056 3 => True, -- Right_Opnd (Node3)
12057 4 => False, -- Entity (Node4-Sem)
12058 5 => False), -- Etype (Node5-Sem)
12060 N_Op_Subtract =>
12061 (1 => True, -- Chars (Name1)
12062 2 => True, -- Left_Opnd (Node2)
12063 3 => True, -- Right_Opnd (Node3)
12064 4 => False, -- Entity (Node4-Sem)
12065 5 => False), -- Etype (Node5-Sem)
12067 N_Op_Concat =>
12068 (1 => True, -- Chars (Name1)
12069 2 => True, -- Left_Opnd (Node2)
12070 3 => True, -- Right_Opnd (Node3)
12071 4 => False, -- Entity (Node4-Sem)
12072 5 => False), -- Etype (Node5-Sem)
12074 N_Op_Multiply =>
12075 (1 => True, -- Chars (Name1)
12076 2 => True, -- Left_Opnd (Node2)
12077 3 => True, -- Right_Opnd (Node3)
12078 4 => False, -- Entity (Node4-Sem)
12079 5 => False), -- Etype (Node5-Sem)
12081 N_Op_Divide =>
12082 (1 => True, -- Chars (Name1)
12083 2 => True, -- Left_Opnd (Node2)
12084 3 => True, -- Right_Opnd (Node3)
12085 4 => False, -- Entity (Node4-Sem)
12086 5 => False), -- Etype (Node5-Sem)
12088 N_Op_Mod =>
12089 (1 => True, -- Chars (Name1)
12090 2 => True, -- Left_Opnd (Node2)
12091 3 => True, -- Right_Opnd (Node3)
12092 4 => False, -- Entity (Node4-Sem)
12093 5 => False), -- Etype (Node5-Sem)
12095 N_Op_Rem =>
12096 (1 => True, -- Chars (Name1)
12097 2 => True, -- Left_Opnd (Node2)
12098 3 => True, -- Right_Opnd (Node3)
12099 4 => False, -- Entity (Node4-Sem)
12100 5 => False), -- Etype (Node5-Sem)
12102 N_Op_Expon =>
12103 (1 => True, -- Chars (Name1)
12104 2 => True, -- Left_Opnd (Node2)
12105 3 => True, -- Right_Opnd (Node3)
12106 4 => False, -- Entity (Node4-Sem)
12107 5 => False), -- Etype (Node5-Sem)
12109 N_Op_Plus =>
12110 (1 => True, -- Chars (Name1)
12111 2 => False, -- unused
12112 3 => True, -- Right_Opnd (Node3)
12113 4 => False, -- Entity (Node4-Sem)
12114 5 => False), -- Etype (Node5-Sem)
12116 N_Op_Minus =>
12117 (1 => True, -- Chars (Name1)
12118 2 => False, -- unused
12119 3 => True, -- Right_Opnd (Node3)
12120 4 => False, -- Entity (Node4-Sem)
12121 5 => False), -- Etype (Node5-Sem)
12123 N_Op_Abs =>
12124 (1 => True, -- Chars (Name1)
12125 2 => False, -- unused
12126 3 => True, -- Right_Opnd (Node3)
12127 4 => False, -- Entity (Node4-Sem)
12128 5 => False), -- Etype (Node5-Sem)
12130 N_Op_Not =>
12131 (1 => True, -- Chars (Name1)
12132 2 => False, -- unused
12133 3 => True, -- Right_Opnd (Node3)
12134 4 => False, -- Entity (Node4-Sem)
12135 5 => False), -- Etype (Node5-Sem)
12137 N_Type_Conversion =>
12138 (1 => False, -- unused
12139 2 => False, -- unused
12140 3 => True, -- Expression (Node3)
12141 4 => True, -- Subtype_Mark (Node4)
12142 5 => False), -- Etype (Node5-Sem)
12144 N_Qualified_Expression =>
12145 (1 => False, -- unused
12146 2 => False, -- unused
12147 3 => True, -- Expression (Node3)
12148 4 => True, -- Subtype_Mark (Node4)
12149 5 => False), -- Etype (Node5-Sem)
12151 N_Quantified_Expression =>
12152 (1 => True, -- Condition (Node1)
12153 2 => True, -- Iterator_Specification (Node2)
12154 3 => False, -- unused
12155 4 => True, -- Loop_Parameter_Specification (Node4)
12156 5 => False), -- Etype (Node5-Sem)
12158 N_Allocator =>
12159 (1 => False, -- Storage_Pool (Node1-Sem)
12160 2 => False, -- Procedure_To_Call (Node2-Sem)
12161 3 => True, -- Expression (Node3)
12162 4 => True, -- Subpool_Handle_Name (Node4)
12163 5 => False), -- Etype (Node5-Sem)
12165 N_Null_Statement =>
12166 (1 => False, -- unused
12167 2 => False, -- unused
12168 3 => False, -- unused
12169 4 => False, -- unused
12170 5 => False), -- unused
12172 N_Label =>
12173 (1 => True, -- Identifier (Node1)
12174 2 => False, -- unused
12175 3 => False, -- unused
12176 4 => False, -- unused
12177 5 => False), -- unused
12179 N_Assignment_Statement =>
12180 (1 => False, -- unused
12181 2 => True, -- Name (Node2)
12182 3 => True, -- Expression (Node3)
12183 4 => False, -- unused
12184 5 => False), -- unused
12186 N_Target_Name =>
12187 (1 => False, -- unused
12188 2 => False, -- unused
12189 3 => False, -- unused
12190 4 => False, -- unused
12191 5 => False), -- Etype (Node5-Sem)
12193 N_If_Statement =>
12194 (1 => True, -- Condition (Node1)
12195 2 => True, -- Then_Statements (List2)
12196 3 => True, -- Elsif_Parts (List3)
12197 4 => True, -- Else_Statements (List4)
12198 5 => True), -- End_Span (Uint5)
12200 N_Elsif_Part =>
12201 (1 => True, -- Condition (Node1)
12202 2 => True, -- Then_Statements (List2)
12203 3 => False, -- Condition_Actions (List3-Sem)
12204 4 => False, -- unused
12205 5 => False), -- unused
12207 N_Case_Expression =>
12208 (1 => False, -- unused
12209 2 => False, -- unused
12210 3 => True, -- Expression (Node3)
12211 4 => True, -- Alternatives (List4)
12212 5 => False), -- unused
12214 N_Case_Expression_Alternative =>
12215 (1 => False, -- Actions (List1-Sem)
12216 2 => False, -- unused
12217 3 => True, -- Expression (Node3)
12218 4 => True, -- Discrete_Choices (List4)
12219 5 => False), -- unused
12221 N_Case_Statement =>
12222 (1 => False, -- unused
12223 2 => False, -- unused
12224 3 => True, -- Expression (Node3)
12225 4 => True, -- Alternatives (List4)
12226 5 => True), -- End_Span (Uint5)
12228 N_Case_Statement_Alternative =>
12229 (1 => False, -- unused
12230 2 => False, -- unused
12231 3 => True, -- Statements (List3)
12232 4 => True, -- Discrete_Choices (List4)
12233 5 => False), -- unused
12235 N_Loop_Statement =>
12236 (1 => True, -- Identifier (Node1)
12237 2 => True, -- Iteration_Scheme (Node2)
12238 3 => True, -- Statements (List3)
12239 4 => True, -- End_Label (Node4)
12240 5 => False), -- unused
12242 N_Iteration_Scheme =>
12243 (1 => True, -- Condition (Node1)
12244 2 => True, -- Iterator_Specification (Node2)
12245 3 => False, -- Condition_Actions (List3-Sem)
12246 4 => True, -- Loop_Parameter_Specification (Node4)
12247 5 => False), -- unused
12249 N_Loop_Parameter_Specification =>
12250 (1 => True, -- Defining_Identifier (Node1)
12251 2 => False, -- unused
12252 3 => False, -- unused
12253 4 => True, -- Discrete_Subtype_Definition (Node4)
12254 5 => False), -- unused
12256 N_Iterator_Specification =>
12257 (1 => True, -- Defining_Identifier (Node1)
12258 2 => True, -- Name (Node2)
12259 3 => False, -- Unused
12260 4 => False, -- Unused
12261 5 => True), -- Subtype_Indication (Node5)
12263 N_Block_Statement =>
12264 (1 => True, -- Identifier (Node1)
12265 2 => True, -- Declarations (List2)
12266 3 => False, -- Activation_Chain_Entity (Node3-Sem)
12267 4 => True, -- Handled_Statement_Sequence (Node4)
12268 5 => False), -- unused
12270 N_Exit_Statement =>
12271 (1 => True, -- Condition (Node1)
12272 2 => True, -- Name (Node2)
12273 3 => False, -- unused
12274 4 => False, -- unused
12275 5 => False), -- unused
12277 N_Goto_Statement =>
12278 (1 => False, -- unused
12279 2 => True, -- Name (Node2)
12280 3 => False, -- unused
12281 4 => False, -- unused
12282 5 => False), -- unused
12284 N_Subprogram_Declaration =>
12285 (1 => True, -- Specification (Node1)
12286 2 => False, -- unused
12287 3 => False, -- Body_To_Inline (Node3-Sem)
12288 4 => False, -- Parent_Spec (Node4-Sem)
12289 5 => False), -- Corresponding_Body (Node5-Sem)
12291 N_Abstract_Subprogram_Declaration =>
12292 (1 => True, -- Specification (Node1)
12293 2 => False, -- unused
12294 3 => False, -- unused
12295 4 => False, -- unused
12296 5 => False), -- unused
12298 N_Function_Specification =>
12299 (1 => True, -- Defining_Unit_Name (Node1)
12300 2 => False, -- unused
12301 3 => True, -- Parameter_Specifications (List3)
12302 4 => True, -- Result_Definition (Node4)
12303 5 => False), -- Generic_Parent (Node5-Sem)
12305 N_Procedure_Specification =>
12306 (1 => True, -- Defining_Unit_Name (Node1)
12307 2 => False, -- Null_Statement (Node2-Sem)
12308 3 => True, -- Parameter_Specifications (List3)
12309 4 => False, -- unused
12310 5 => False), -- Generic_Parent (Node5-Sem)
12312 N_Designator =>
12313 (1 => True, -- Identifier (Node1)
12314 2 => True, -- Name (Node2)
12315 3 => False, -- unused
12316 4 => False, -- unused
12317 5 => False), -- unused
12319 N_Defining_Program_Unit_Name =>
12320 (1 => True, -- Defining_Identifier (Node1)
12321 2 => True, -- Name (Node2)
12322 3 => False, -- unused
12323 4 => False, -- unused
12324 5 => False), -- unused
12326 N_Operator_Symbol =>
12327 (1 => True, -- Chars (Name1)
12328 2 => False, -- unused
12329 3 => True, -- Strval (Str3)
12330 4 => False, -- Entity (Node4-Sem)
12331 5 => False), -- Etype (Node5-Sem)
12333 N_Defining_Operator_Symbol =>
12334 (1 => True, -- Chars (Name1)
12335 2 => False, -- Next_Entity (Node2-Sem)
12336 3 => False, -- Scope (Node3-Sem)
12337 4 => False, -- unused
12338 5 => False), -- Etype (Node5-Sem)
12340 N_Parameter_Specification =>
12341 (1 => True, -- Defining_Identifier (Node1)
12342 2 => True, -- Parameter_Type (Node2)
12343 3 => True, -- Expression (Node3)
12344 4 => False, -- unused
12345 5 => False), -- Default_Expression (Node5-Sem)
12347 N_Subprogram_Body =>
12348 (1 => True, -- Specification (Node1)
12349 2 => True, -- Declarations (List2)
12350 3 => False, -- Activation_Chain_Entity (Node3-Sem)
12351 4 => True, -- Handled_Statement_Sequence (Node4)
12352 5 => False), -- Corresponding_Spec (Node5-Sem)
12354 N_Expression_Function =>
12355 (1 => True, -- Specification (Node1)
12356 2 => False, -- unused
12357 3 => True, -- Expression (Node3)
12358 4 => False, -- unused
12359 5 => False), -- unused
12361 N_Procedure_Call_Statement =>
12362 (1 => False, -- Controlling_Argument (Node1-Sem)
12363 2 => True, -- Name (Node2)
12364 3 => True, -- Parameter_Associations (List3)
12365 4 => False, -- First_Named_Actual (Node4-Sem)
12366 5 => False), -- Etype (Node5-Sem)
12368 N_Function_Call =>
12369 (1 => False, -- Controlling_Argument (Node1-Sem)
12370 2 => True, -- Name (Node2)
12371 3 => True, -- Parameter_Associations (List3)
12372 4 => False, -- First_Named_Actual (Node4-Sem)
12373 5 => False), -- Etype (Node5-Sem)
12375 N_Parameter_Association =>
12376 (1 => False, -- unused
12377 2 => True, -- Selector_Name (Node2)
12378 3 => True, -- Explicit_Actual_Parameter (Node3)
12379 4 => False, -- Next_Named_Actual (Node4-Sem)
12380 5 => False), -- unused
12382 N_Simple_Return_Statement =>
12383 (1 => False, -- Storage_Pool (Node1-Sem)
12384 2 => False, -- Procedure_To_Call (Node2-Sem)
12385 3 => True, -- Expression (Node3)
12386 4 => False, -- unused
12387 5 => False), -- Return_Statement_Entity (Node5-Sem)
12389 N_Extended_Return_Statement =>
12390 (1 => False, -- Storage_Pool (Node1-Sem)
12391 2 => False, -- Procedure_To_Call (Node2-Sem)
12392 3 => True, -- Return_Object_Declarations (List3)
12393 4 => True, -- Handled_Statement_Sequence (Node4)
12394 5 => False), -- Return_Statement_Entity (Node5-Sem)
12396 N_Package_Declaration =>
12397 (1 => True, -- Specification (Node1)
12398 2 => False, -- unused
12399 3 => False, -- Activation_Chain_Entity (Node3-Sem)
12400 4 => False, -- Parent_Spec (Node4-Sem)
12401 5 => False), -- Corresponding_Body (Node5-Sem)
12403 N_Package_Specification =>
12404 (1 => True, -- Defining_Unit_Name (Node1)
12405 2 => True, -- Visible_Declarations (List2)
12406 3 => True, -- Private_Declarations (List3)
12407 4 => True, -- End_Label (Node4)
12408 5 => False), -- Generic_Parent (Node5-Sem)
12410 N_Package_Body =>
12411 (1 => True, -- Defining_Unit_Name (Node1)
12412 2 => True, -- Declarations (List2)
12413 3 => False, -- unused
12414 4 => True, -- Handled_Statement_Sequence (Node4)
12415 5 => False), -- Corresponding_Spec (Node5-Sem)
12417 N_Private_Type_Declaration =>
12418 (1 => True, -- Defining_Identifier (Node1)
12419 2 => False, -- unused
12420 3 => False, -- unused
12421 4 => True, -- Discriminant_Specifications (List4)
12422 5 => False), -- unused
12424 N_Private_Extension_Declaration =>
12425 (1 => True, -- Defining_Identifier (Node1)
12426 2 => True, -- Interface_List (List2)
12427 3 => False, -- unused
12428 4 => True, -- Discriminant_Specifications (List4)
12429 5 => True), -- Subtype_Indication (Node5)
12431 N_Use_Package_Clause =>
12432 (1 => False, -- Prev_Use_Clause (Node1-Sem)
12433 2 => True, -- Name (Node2)
12434 3 => False, -- Next_Use_Clause (Node3-Sem)
12435 4 => False, -- Associated_Node (Node4-Sem)
12436 5 => False), -- Hidden_By_Use_Clause (Elist5-Sem)
12438 N_Use_Type_Clause =>
12439 (1 => False, -- Prev_Use_Clause (Node1-Sem)
12440 2 => False, -- Used_Operations (Elist2-Sem)
12441 3 => False, -- Next_Use_Clause (Node3-Sem)
12442 4 => True, -- Subtype_Mark (Node4)
12443 5 => False), -- Hidden_By_Use_Clause (Elist5-Sem)
12445 N_Object_Renaming_Declaration =>
12446 (1 => True, -- Defining_Identifier (Node1)
12447 2 => True, -- Name (Node2)
12448 3 => True, -- Access_Definition (Node3)
12449 4 => True, -- Subtype_Mark (Node4)
12450 5 => False), -- Corresponding_Generic_Association (Node5-Sem)
12452 N_Exception_Renaming_Declaration =>
12453 (1 => True, -- Defining_Identifier (Node1)
12454 2 => True, -- Name (Node2)
12455 3 => False, -- unused
12456 4 => False, -- unused
12457 5 => False), -- unused
12459 N_Package_Renaming_Declaration =>
12460 (1 => True, -- Defining_Unit_Name (Node1)
12461 2 => True, -- Name (Node2)
12462 3 => False, -- unused
12463 4 => False, -- Parent_Spec (Node4-Sem)
12464 5 => False), -- unused
12466 N_Subprogram_Renaming_Declaration =>
12467 (1 => True, -- Specification (Node1)
12468 2 => True, -- Name (Node2)
12469 3 => False, -- Corresponding_Formal_Spec (Node3-Sem)
12470 4 => False, -- Parent_Spec (Node4-Sem)
12471 5 => False), -- Corresponding_Spec (Node5-Sem)
12473 N_Generic_Package_Renaming_Declaration =>
12474 (1 => True, -- Defining_Unit_Name (Node1)
12475 2 => True, -- Name (Node2)
12476 3 => False, -- unused
12477 4 => False, -- Parent_Spec (Node4-Sem)
12478 5 => False), -- unused
12480 N_Generic_Procedure_Renaming_Declaration =>
12481 (1 => True, -- Defining_Unit_Name (Node1)
12482 2 => True, -- Name (Node2)
12483 3 => False, -- unused
12484 4 => False, -- Parent_Spec (Node4-Sem)
12485 5 => False), -- unused
12487 N_Generic_Function_Renaming_Declaration =>
12488 (1 => True, -- Defining_Unit_Name (Node1)
12489 2 => True, -- Name (Node2)
12490 3 => False, -- unused
12491 4 => False, -- Parent_Spec (Node4-Sem)
12492 5 => False), -- unused
12494 N_Task_Type_Declaration =>
12495 (1 => True, -- Defining_Identifier (Node1)
12496 2 => True, -- Interface_List (List2)
12497 3 => True, -- Task_Definition (Node3)
12498 4 => True, -- Discriminant_Specifications (List4)
12499 5 => False), -- Corresponding_Body (Node5-Sem)
12501 N_Single_Task_Declaration =>
12502 (1 => True, -- Defining_Identifier (Node1)
12503 2 => True, -- Interface_List (List2)
12504 3 => True, -- Task_Definition (Node3)
12505 4 => False, -- unused
12506 5 => False), -- unused
12508 N_Task_Definition =>
12509 (1 => False, -- unused
12510 2 => True, -- Visible_Declarations (List2)
12511 3 => True, -- Private_Declarations (List3)
12512 4 => True, -- End_Label (Node4)
12513 5 => False), -- unused
12515 N_Task_Body =>
12516 (1 => True, -- Defining_Identifier (Node1)
12517 2 => True, -- Declarations (List2)
12518 3 => False, -- Activation_Chain_Entity (Node3-Sem)
12519 4 => True, -- Handled_Statement_Sequence (Node4)
12520 5 => False), -- Corresponding_Spec (Node5-Sem)
12522 N_Protected_Type_Declaration =>
12523 (1 => True, -- Defining_Identifier (Node1)
12524 2 => True, -- Interface_List (List2)
12525 3 => True, -- Protected_Definition (Node3)
12526 4 => True, -- Discriminant_Specifications (List4)
12527 5 => False), -- Corresponding_Body (Node5-Sem)
12529 N_Single_Protected_Declaration =>
12530 (1 => True, -- Defining_Identifier (Node1)
12531 2 => True, -- Interface_List (List2)
12532 3 => True, -- Protected_Definition (Node3)
12533 4 => False, -- unused
12534 5 => False), -- unused
12536 N_Protected_Definition =>
12537 (1 => False, -- unused
12538 2 => True, -- Visible_Declarations (List2)
12539 3 => True, -- Private_Declarations (List3)
12540 4 => True, -- End_Label (Node4)
12541 5 => False), -- unused
12543 N_Protected_Body =>
12544 (1 => True, -- Defining_Identifier (Node1)
12545 2 => True, -- Declarations (List2)
12546 3 => False, -- unused
12547 4 => True, -- End_Label (Node4)
12548 5 => False), -- Corresponding_Spec (Node5-Sem)
12550 N_Entry_Declaration =>
12551 (1 => True, -- Defining_Identifier (Node1)
12552 2 => False, -- unused
12553 3 => True, -- Parameter_Specifications (List3)
12554 4 => True, -- Discrete_Subtype_Definition (Node4)
12555 5 => False), -- Corresponding_Body (Node5-Sem)
12557 N_Accept_Statement =>
12558 (1 => True, -- Entry_Direct_Name (Node1)
12559 2 => True, -- Declarations (List2)
12560 3 => True, -- Parameter_Specifications (List3)
12561 4 => True, -- Handled_Statement_Sequence (Node4)
12562 5 => True), -- Entry_Index (Node5)
12564 N_Entry_Body =>
12565 (1 => True, -- Defining_Identifier (Node1)
12566 2 => True, -- Declarations (List2)
12567 3 => False, -- Activation_Chain_Entity (Node3-Sem)
12568 4 => True, -- Handled_Statement_Sequence (Node4)
12569 5 => True), -- Entry_Body_Formal_Part (Node5)
12571 N_Entry_Body_Formal_Part =>
12572 (1 => True, -- Condition (Node1)
12573 2 => False, -- unused
12574 3 => True, -- Parameter_Specifications (List3)
12575 4 => True, -- Entry_Index_Specification (Node4)
12576 5 => False), -- unused
12578 N_Entry_Index_Specification =>
12579 (1 => True, -- Defining_Identifier (Node1)
12580 2 => False, -- unused
12581 3 => False, -- unused
12582 4 => True, -- Discrete_Subtype_Definition (Node4)
12583 5 => False), -- unused
12585 N_Entry_Call_Statement =>
12586 (1 => False, -- unused
12587 2 => True, -- Name (Node2)
12588 3 => True, -- Parameter_Associations (List3)
12589 4 => False, -- First_Named_Actual (Node4-Sem)
12590 5 => False), -- unused
12592 N_Requeue_Statement =>
12593 (1 => False, -- unused
12594 2 => True, -- Name (Node2)
12595 3 => False, -- unused
12596 4 => False, -- unused
12597 5 => False), -- unused
12599 N_Delay_Until_Statement =>
12600 (1 => False, -- unused
12601 2 => False, -- unused
12602 3 => True, -- Expression (Node3)
12603 4 => False, -- unused
12604 5 => False), -- unused
12606 N_Delay_Relative_Statement =>
12607 (1 => False, -- unused
12608 2 => False, -- unused
12609 3 => True, -- Expression (Node3)
12610 4 => False, -- unused
12611 5 => False), -- unused
12613 N_Selective_Accept =>
12614 (1 => True, -- Select_Alternatives (List1)
12615 2 => False, -- unused
12616 3 => False, -- unused
12617 4 => True, -- Else_Statements (List4)
12618 5 => False), -- unused
12620 N_Accept_Alternative =>
12621 (1 => True, -- Condition (Node1)
12622 2 => True, -- Accept_Statement (Node2)
12623 3 => True, -- Statements (List3)
12624 4 => True, -- Pragmas_Before (List4)
12625 5 => False), -- Accept_Handler_Records (List5-Sem)
12627 N_Delay_Alternative =>
12628 (1 => True, -- Condition (Node1)
12629 2 => True, -- Delay_Statement (Node2)
12630 3 => True, -- Statements (List3)
12631 4 => True, -- Pragmas_Before (List4)
12632 5 => False), -- unused
12634 N_Terminate_Alternative =>
12635 (1 => True, -- Condition (Node1)
12636 2 => False, -- unused
12637 3 => False, -- unused
12638 4 => True, -- Pragmas_Before (List4)
12639 5 => True), -- Pragmas_After (List5)
12641 N_Timed_Entry_Call =>
12642 (1 => True, -- Entry_Call_Alternative (Node1)
12643 2 => False, -- unused
12644 3 => False, -- unused
12645 4 => True, -- Delay_Alternative (Node4)
12646 5 => False), -- unused
12648 N_Entry_Call_Alternative =>
12649 (1 => True, -- Entry_Call_Statement (Node1)
12650 2 => False, -- unused
12651 3 => True, -- Statements (List3)
12652 4 => True, -- Pragmas_Before (List4)
12653 5 => False), -- unused
12655 N_Conditional_Entry_Call =>
12656 (1 => True, -- Entry_Call_Alternative (Node1)
12657 2 => False, -- unused
12658 3 => False, -- unused
12659 4 => True, -- Else_Statements (List4)
12660 5 => False), -- unused
12662 N_Asynchronous_Select =>
12663 (1 => True, -- Triggering_Alternative (Node1)
12664 2 => True, -- Abortable_Part (Node2)
12665 3 => False, -- unused
12666 4 => False, -- unused
12667 5 => False), -- unused
12669 N_Triggering_Alternative =>
12670 (1 => True, -- Triggering_Statement (Node1)
12671 2 => False, -- unused
12672 3 => True, -- Statements (List3)
12673 4 => True, -- Pragmas_Before (List4)
12674 5 => False), -- unused
12676 N_Abortable_Part =>
12677 (1 => False, -- unused
12678 2 => False, -- unused
12679 3 => True, -- Statements (List3)
12680 4 => False, -- unused
12681 5 => False), -- unused
12683 N_Abort_Statement =>
12684 (1 => False, -- unused
12685 2 => True, -- Names (List2)
12686 3 => False, -- unused
12687 4 => False, -- unused
12688 5 => False), -- unused
12690 N_Compilation_Unit =>
12691 (1 => True, -- Context_Items (List1)
12692 2 => True, -- Unit (Node2)
12693 3 => False, -- First_Inlined_Subprogram (Node3-Sem)
12694 4 => False, -- Library_Unit (Node4-Sem)
12695 5 => True), -- Aux_Decls_Node (Node5)
12697 N_Compilation_Unit_Aux =>
12698 (1 => True, -- Actions (List1)
12699 2 => True, -- Declarations (List2)
12700 3 => False, -- Default_Storage_Pool (Node3)
12701 4 => True, -- Config_Pragmas (List4)
12702 5 => True), -- Pragmas_After (List5)
12704 N_With_Clause =>
12705 (1 => False, -- unused
12706 2 => True, -- Name (Node2)
12707 3 => False, -- unused
12708 4 => False, -- Library_Unit (Node4-Sem)
12709 5 => False), -- Corresponding_Spec (Node5-Sem)
12711 N_Subprogram_Body_Stub =>
12712 (1 => True, -- Specification (Node1)
12713 2 => False, -- Corresponding_Spec_Of_Stub (Node2-Sem)
12714 3 => False, -- unused
12715 4 => False, -- Library_Unit (Node4-Sem)
12716 5 => False), -- Corresponding_Body (Node5-Sem)
12718 N_Package_Body_Stub =>
12719 (1 => True, -- Defining_Identifier (Node1)
12720 2 => False, -- Corresponding_Spec_Of_Stub (Node2-Sem)
12721 3 => False, -- unused
12722 4 => False, -- Library_Unit (Node4-Sem)
12723 5 => False), -- Corresponding_Body (Node5-Sem)
12725 N_Task_Body_Stub =>
12726 (1 => True, -- Defining_Identifier (Node1)
12727 2 => False, -- Corresponding_Spec_Of_Stub (Node2-Sem)
12728 3 => False, -- unused
12729 4 => False, -- Library_Unit (Node4-Sem)
12730 5 => False), -- Corresponding_Body (Node5-Sem)
12732 N_Protected_Body_Stub =>
12733 (1 => True, -- Defining_Identifier (Node1)
12734 2 => False, -- Corresponding_Spec_Of_Stub (Node2-Sem)
12735 3 => False, -- unused
12736 4 => False, -- Library_Unit (Node4-Sem)
12737 5 => False), -- Corresponding_Body (Node5-Sem)
12739 N_Subunit =>
12740 (1 => True, -- Proper_Body (Node1)
12741 2 => True, -- Name (Node2)
12742 3 => False, -- Corresponding_Stub (Node3-Sem)
12743 4 => False, -- unused
12744 5 => False), -- unused
12746 N_Exception_Declaration =>
12747 (1 => True, -- Defining_Identifier (Node1)
12748 2 => False, -- unused
12749 3 => False, -- Expression (Node3-Sem)
12750 4 => False, -- unused
12751 5 => False), -- unused
12753 N_Handled_Sequence_Of_Statements =>
12754 (1 => True, -- At_End_Proc (Node1)
12755 2 => False, -- First_Real_Statement (Node2-Sem)
12756 3 => True, -- Statements (List3)
12757 4 => True, -- End_Label (Node4)
12758 5 => True), -- Exception_Handlers (List5)
12760 N_Exception_Handler =>
12761 (1 => False, -- Local_Raise_Statements (Elist1)
12762 2 => True, -- Choice_Parameter (Node2)
12763 3 => True, -- Statements (List3)
12764 4 => True, -- Exception_Choices (List4)
12765 5 => False), -- Exception_Label (Node5)
12767 N_Raise_Statement =>
12768 (1 => False, -- unused
12769 2 => True, -- Name (Node2)
12770 3 => True, -- Expression (Node3)
12771 4 => False, -- unused
12772 5 => False), -- unused
12774 N_Raise_Expression =>
12775 (1 => False, -- unused
12776 2 => True, -- Name (Node2)
12777 3 => True, -- Expression (Node3)
12778 4 => False, -- unused
12779 5 => False), -- Etype (Node5-Sem)
12781 N_Generic_Subprogram_Declaration =>
12782 (1 => True, -- Specification (Node1)
12783 2 => True, -- Generic_Formal_Declarations (List2)
12784 3 => False, -- unused
12785 4 => False, -- Parent_Spec (Node4-Sem)
12786 5 => False), -- Corresponding_Body (Node5-Sem)
12788 N_Generic_Package_Declaration =>
12789 (1 => True, -- Specification (Node1)
12790 2 => True, -- Generic_Formal_Declarations (List2)
12791 3 => False, -- Activation_Chain_Entity (Node3-Sem)
12792 4 => False, -- Parent_Spec (Node4-Sem)
12793 5 => False), -- Corresponding_Body (Node5-Sem)
12795 N_Package_Instantiation =>
12796 (1 => True, -- Defining_Unit_Name (Node1)
12797 2 => True, -- Name (Node2)
12798 3 => True, -- Generic_Associations (List3)
12799 4 => False, -- Parent_Spec (Node4-Sem)
12800 5 => False), -- Instance_Spec (Node5-Sem)
12802 N_Procedure_Instantiation =>
12803 (1 => True, -- Defining_Unit_Name (Node1)
12804 2 => True, -- Name (Node2)
12805 3 => True, -- Generic_Associations (List3)
12806 4 => False, -- Parent_Spec (Node4-Sem)
12807 5 => False), -- Instance_Spec (Node5-Sem)
12809 N_Function_Instantiation =>
12810 (1 => True, -- Defining_Unit_Name (Node1)
12811 2 => True, -- Name (Node2)
12812 3 => True, -- Generic_Associations (List3)
12813 4 => False, -- Parent_Spec (Node4-Sem)
12814 5 => False), -- Instance_Spec (Node5-Sem)
12816 N_Generic_Association =>
12817 (1 => True, -- Explicit_Generic_Actual_Parameter (Node1)
12818 2 => True, -- Selector_Name (Node2)
12819 3 => False, -- unused
12820 4 => False, -- unused
12821 5 => False), -- unused
12823 N_Formal_Object_Declaration =>
12824 (1 => True, -- Defining_Identifier (Node1)
12825 2 => False, -- unused
12826 3 => True, -- Access_Definition (Node3)
12827 4 => True, -- Subtype_Mark (Node4)
12828 5 => True), -- Default_Expression (Node5)
12830 N_Formal_Type_Declaration =>
12831 (1 => True, -- Defining_Identifier (Node1)
12832 2 => False, -- unused
12833 3 => True, -- Formal_Type_Definition (Node3)
12834 4 => True, -- Discriminant_Specifications (List4)
12835 5 => False), -- unused
12837 N_Formal_Private_Type_Definition =>
12838 (1 => False, -- unused
12839 2 => False, -- unused
12840 3 => False, -- unused
12841 4 => False, -- unused
12842 5 => False), -- unused
12844 N_Formal_Incomplete_Type_Definition =>
12845 (1 => False, -- unused
12846 2 => False, -- unused
12847 3 => False, -- unused
12848 4 => False, -- unused
12849 5 => False), -- unused
12851 N_Formal_Derived_Type_Definition =>
12852 (1 => False, -- unused
12853 2 => True, -- Interface_List (List2)
12854 3 => False, -- unused
12855 4 => True, -- Subtype_Mark (Node4)
12856 5 => False), -- unused
12858 N_Formal_Discrete_Type_Definition =>
12859 (1 => False, -- unused
12860 2 => False, -- unused
12861 3 => False, -- unused
12862 4 => False, -- unused
12863 5 => False), -- unused
12865 N_Formal_Signed_Integer_Type_Definition =>
12866 (1 => False, -- unused
12867 2 => False, -- unused
12868 3 => False, -- unused
12869 4 => False, -- unused
12870 5 => False), -- unused
12872 N_Formal_Modular_Type_Definition =>
12873 (1 => False, -- unused
12874 2 => False, -- unused
12875 3 => False, -- unused
12876 4 => False, -- unused
12877 5 => False), -- unused
12879 N_Formal_Floating_Point_Definition =>
12880 (1 => False, -- unused
12881 2 => False, -- unused
12882 3 => False, -- unused
12883 4 => False, -- unused
12884 5 => False), -- unused
12886 N_Formal_Ordinary_Fixed_Point_Definition =>
12887 (1 => False, -- unused
12888 2 => False, -- unused
12889 3 => False, -- unused
12890 4 => False, -- unused
12891 5 => False), -- unused
12893 N_Formal_Decimal_Fixed_Point_Definition =>
12894 (1 => False, -- unused
12895 2 => False, -- unused
12896 3 => False, -- unused
12897 4 => False, -- unused
12898 5 => False), -- unused
12900 N_Formal_Concrete_Subprogram_Declaration =>
12901 (1 => True, -- Specification (Node1)
12902 2 => True, -- Default_Name (Node2)
12903 3 => False, -- unused
12904 4 => False, -- unused
12905 5 => False), -- unused
12907 N_Formal_Abstract_Subprogram_Declaration =>
12908 (1 => True, -- Specification (Node1)
12909 2 => True, -- Default_Name (Node2)
12910 3 => False, -- unused
12911 4 => False, -- unused
12912 5 => False), -- unused
12914 N_Formal_Package_Declaration =>
12915 (1 => True, -- Defining_Identifier (Node1)
12916 2 => True, -- Name (Node2)
12917 3 => True, -- Generic_Associations (List3)
12918 4 => False, -- unused
12919 5 => False), -- Instance_Spec (Node5-Sem)
12921 N_Attribute_Definition_Clause =>
12922 (1 => True, -- Chars (Name1)
12923 2 => True, -- Name (Node2)
12924 3 => True, -- Expression (Node3)
12925 4 => False, -- unused
12926 5 => False), -- Next_Rep_Item (Node5-Sem)
12928 N_Aspect_Specification =>
12929 (1 => True, -- Identifier (Node1)
12930 2 => False, -- Aspect_Rep_Item (Node2-Sem)
12931 3 => True, -- Expression (Node3)
12932 4 => False, -- Entity (Node4-Sem)
12933 5 => False), -- Next_Rep_Item (Node5-Sem)
12935 N_Enumeration_Representation_Clause =>
12936 (1 => True, -- Identifier (Node1)
12937 2 => False, -- unused
12938 3 => True, -- Array_Aggregate (Node3)
12939 4 => False, -- unused
12940 5 => False), -- Next_Rep_Item (Node5-Sem)
12942 N_Record_Representation_Clause =>
12943 (1 => True, -- Identifier (Node1)
12944 2 => True, -- Mod_Clause (Node2)
12945 3 => True, -- Component_Clauses (List3)
12946 4 => False, -- unused
12947 5 => False), -- Next_Rep_Item (Node5-Sem)
12949 N_Component_Clause =>
12950 (1 => True, -- Component_Name (Node1)
12951 2 => True, -- Position (Node2)
12952 3 => True, -- First_Bit (Node3)
12953 4 => True, -- Last_Bit (Node4)
12954 5 => False), -- unused
12956 N_Code_Statement =>
12957 (1 => False, -- unused
12958 2 => False, -- unused
12959 3 => True, -- Expression (Node3)
12960 4 => False, -- unused
12961 5 => False), -- unused
12963 N_Op_Rotate_Left =>
12964 (1 => True, -- Chars (Name1)
12965 2 => True, -- Left_Opnd (Node2)
12966 3 => True, -- Right_Opnd (Node3)
12967 4 => False, -- Entity (Node4-Sem)
12968 5 => False), -- Etype (Node5-Sem)
12970 N_Op_Rotate_Right =>
12971 (1 => True, -- Chars (Name1)
12972 2 => True, -- Left_Opnd (Node2)
12973 3 => True, -- Right_Opnd (Node3)
12974 4 => False, -- Entity (Node4-Sem)
12975 5 => False), -- Etype (Node5-Sem)
12977 N_Op_Shift_Left =>
12978 (1 => True, -- Chars (Name1)
12979 2 => True, -- Left_Opnd (Node2)
12980 3 => True, -- Right_Opnd (Node3)
12981 4 => False, -- Entity (Node4-Sem)
12982 5 => False), -- Etype (Node5-Sem)
12984 N_Op_Shift_Right_Arithmetic =>
12985 (1 => True, -- Chars (Name1)
12986 2 => True, -- Left_Opnd (Node2)
12987 3 => True, -- Right_Opnd (Node3)
12988 4 => False, -- Entity (Node4-Sem)
12989 5 => False), -- Etype (Node5-Sem)
12991 N_Op_Shift_Right =>
12992 (1 => True, -- Chars (Name1)
12993 2 => True, -- Left_Opnd (Node2)
12994 3 => True, -- Right_Opnd (Node3)
12995 4 => False, -- Entity (Node4-Sem)
12996 5 => False), -- Etype (Node5-Sem)
12998 N_Delta_Constraint =>
12999 (1 => False, -- unused
13000 2 => False, -- unused
13001 3 => True, -- Delta_Expression (Node3)
13002 4 => True, -- Range_Constraint (Node4)
13003 5 => False), -- unused
13005 N_At_Clause =>
13006 (1 => True, -- Identifier (Node1)
13007 2 => False, -- unused
13008 3 => True, -- Expression (Node3)
13009 4 => False, -- unused
13010 5 => False), -- unused
13012 N_Mod_Clause =>
13013 (1 => False, -- unused
13014 2 => False, -- unused
13015 3 => True, -- Expression (Node3)
13016 4 => True, -- Pragmas_Before (List4)
13017 5 => False), -- unused
13019 N_If_Expression =>
13020 (1 => True, -- Expressions (List1)
13021 2 => False, -- Then_Actions (List2-Sem)
13022 3 => False, -- Else_Actions (List3-Sem)
13023 4 => False, -- unused
13024 5 => False), -- Etype (Node5-Sem)
13026 N_Compound_Statement =>
13027 (1 => True, -- Actions (List1)
13028 2 => False, -- unused
13029 3 => False, -- unused
13030 4 => False, -- unused
13031 5 => False), -- unused
13033 N_Contract =>
13034 (1 => False, -- Pre_Post_Conditions (Node1-Sem)
13035 2 => False, -- Contract_Test_Cases (Node2-Sem)
13036 3 => False, -- Classifications (Node3-Sem)
13037 4 => False, -- unused
13038 5 => False), -- unused
13040 N_Expanded_Name =>
13041 (1 => True, -- Chars (Name1)
13042 2 => True, -- Selector_Name (Node2)
13043 3 => True, -- Prefix (Node3)
13044 4 => False, -- Entity (Node4-Sem)
13045 5 => False), -- Etype (Node5-Sem)
13047 N_Expression_With_Actions =>
13048 (1 => True, -- Actions (List1)
13049 2 => False, -- unused
13050 3 => True, -- Expression (Node3)
13051 4 => False, -- unused
13052 5 => False), -- unused
13054 N_Free_Statement =>
13055 (1 => False, -- Storage_Pool (Node1-Sem)
13056 2 => False, -- Procedure_To_Call (Node2-Sem)
13057 3 => True, -- Expression (Node3)
13058 4 => False, -- Actual_Designated_Subtype (Node4-Sem)
13059 5 => False), -- unused
13061 N_Freeze_Entity =>
13062 (1 => True, -- Actions (List1)
13063 2 => False, -- Access_Types_To_Process (Elist2-Sem)
13064 3 => False, -- TSS_Elist (Elist3-Sem)
13065 4 => False, -- Entity (Node4-Sem)
13066 5 => False), -- First_Subtype_Link (Node5-Sem)
13068 N_Freeze_Generic_Entity =>
13069 (1 => False, -- unused
13070 2 => False, -- unused
13071 3 => False, -- unused
13072 4 => False, -- Entity (Node4-Sem)
13073 5 => False), -- unused
13075 N_Implicit_Label_Declaration =>
13076 (1 => True, -- Defining_Identifier (Node1)
13077 2 => False, -- Label_Construct (Node2-Sem)
13078 3 => False, -- unused
13079 4 => False, -- unused
13080 5 => False), -- unused
13082 N_Itype_Reference =>
13083 (1 => False, -- Itype (Node1-Sem)
13084 2 => False, -- unused
13085 3 => False, -- unused
13086 4 => False, -- unused
13087 5 => False), -- unused
13089 N_Raise_Constraint_Error =>
13090 (1 => True, -- Condition (Node1)
13091 2 => False, -- unused
13092 3 => True, -- Reason (Uint3)
13093 4 => False, -- unused
13094 5 => False), -- Etype (Node5-Sem)
13096 N_Raise_Program_Error =>
13097 (1 => True, -- Condition (Node1)
13098 2 => False, -- unused
13099 3 => True, -- Reason (Uint3)
13100 4 => False, -- unused
13101 5 => False), -- Etype (Node5-Sem)
13103 N_Raise_Storage_Error =>
13104 (1 => True, -- Condition (Node1)
13105 2 => False, -- unused
13106 3 => True, -- Reason (Uint3)
13107 4 => False, -- unused
13108 5 => False), -- Etype (Node5-Sem)
13110 N_Push_Constraint_Error_Label =>
13111 (1 => False, -- unused
13112 2 => False, -- unused
13113 3 => False, -- unused
13114 4 => False, -- unused
13115 5 => False), -- unused
13117 N_Push_Program_Error_Label =>
13118 (1 => False, -- unused
13119 2 => False, -- unused
13120 3 => False, -- unused
13121 4 => False, -- unused
13122 5 => False), -- Exception_Label
13124 N_Push_Storage_Error_Label =>
13125 (1 => False, -- unused
13126 2 => False, -- unused
13127 3 => False, -- unused
13128 4 => False, -- unused
13129 5 => False), -- Exception_Label
13131 N_Pop_Constraint_Error_Label =>
13132 (1 => False, -- unused
13133 2 => False, -- unused
13134 3 => False, -- unused
13135 4 => False, -- unused
13136 5 => False), -- unused
13138 N_Pop_Program_Error_Label =>
13139 (1 => False, -- unused
13140 2 => False, -- unused
13141 3 => False, -- unused
13142 4 => False, -- unused
13143 5 => False), -- unused
13145 N_Pop_Storage_Error_Label =>
13146 (1 => False, -- unused
13147 2 => False, -- unused
13148 3 => False, -- unused
13149 4 => False, -- unused
13150 5 => False), -- unused
13152 N_Reference =>
13153 (1 => False, -- unused
13154 2 => False, -- unused
13155 3 => True, -- Prefix (Node3)
13156 4 => False, -- unused
13157 5 => False), -- Etype (Node5-Sem)
13159 N_Unchecked_Expression =>
13160 (1 => False, -- unused
13161 2 => False, -- unused
13162 3 => True, -- Expression (Node3)
13163 4 => False, -- unused
13164 5 => False), -- Etype (Node5-Sem)
13166 N_Unchecked_Type_Conversion =>
13167 (1 => False, -- unused
13168 2 => False, -- unused
13169 3 => True, -- Expression (Node3)
13170 4 => True, -- Subtype_Mark (Node4)
13171 5 => False), -- Etype (Node5-Sem)
13173 N_Validate_Unchecked_Conversion =>
13174 (1 => False, -- Source_Type (Node1-Sem)
13175 2 => False, -- Target_Type (Node2-Sem)
13176 3 => False, -- unused
13177 4 => False, -- unused
13178 5 => False), -- unused
13180 -- Entries for SCIL nodes
13182 N_SCIL_Dispatch_Table_Tag_Init =>
13183 (1 => False, -- unused
13184 2 => False, -- unused
13185 3 => False, -- unused
13186 4 => False, -- SCIL_Entity (Node4-Sem)
13187 5 => False), -- unused
13189 N_SCIL_Dispatching_Call =>
13190 (1 => False, -- unused
13191 2 => False, -- SCIL_Target_Prim (Node2-Sem)
13192 3 => False, -- unused
13193 4 => False, -- SCIL_Entity (Node4-Sem)
13194 5 => False), -- SCIL_Controlling_Tag (Node5-Sem)
13196 N_SCIL_Membership_Test =>
13197 (1 => False, -- unused
13198 2 => False, -- unused
13199 3 => False, -- unused
13200 4 => False, -- SCIL_Entity (Node4-Sem)
13201 5 => False), -- SCIL_Tag_Value (Node5-Sem)
13203 N_Call_Marker =>
13204 (1 => False, -- Target (Node1-Sem)
13205 2 => False, -- unused
13206 3 => False, -- unused
13207 4 => False, -- unused
13208 5 => False), -- unused
13210 N_Variable_Reference_Marker =>
13211 (1 => False, -- Target (Node1-Sem)
13212 2 => False, -- unused
13213 3 => False, -- unused
13214 4 => False, -- unused
13215 5 => False), -- unused
13217 -- Entries for Empty, Error, and Unused. Even though these have a Chars
13218 -- field for debugging purposes, they are not really syntactic fields, so
13219 -- we mark all fields as unused.
13221 N_Empty =>
13222 (1 => False, -- unused
13223 2 => False, -- unused
13224 3 => False, -- unused
13225 4 => False, -- unused
13226 5 => False), -- unused
13228 N_Error =>
13229 (1 => False, -- unused
13230 2 => False, -- unused
13231 3 => False, -- unused
13232 4 => False, -- unused
13233 5 => False), -- unused
13235 N_Unused_At_Start =>
13236 (1 => False, -- unused
13237 2 => False, -- unused
13238 3 => False, -- unused
13239 4 => False, -- unused
13240 5 => False), -- unused
13242 N_Unused_At_End =>
13243 (1 => False, -- unused
13244 2 => False, -- unused
13245 3 => False, -- unused
13246 4 => False, -- unused
13247 5 => False)); -- unused
13249 --------------------
13250 -- Inline Pragmas --
13251 --------------------
13253 pragma Inline (Abort_Present);
13254 pragma Inline (Abortable_Part);
13255 pragma Inline (Abstract_Present);
13256 pragma Inline (Accept_Handler_Records);
13257 pragma Inline (Accept_Statement);
13258 pragma Inline (Access_Definition);
13259 pragma Inline (Access_To_Subprogram_Definition);
13260 pragma Inline (Access_Types_To_Process);
13261 pragma Inline (Actions);
13262 pragma Inline (Activation_Chain_Entity);
13263 pragma Inline (Acts_As_Spec);
13264 pragma Inline (Actual_Designated_Subtype);
13265 pragma Inline (Address_Warning_Posted);
13266 pragma Inline (Aggregate_Bounds);
13267 pragma Inline (Aliased_Present);
13268 pragma Inline (Alloc_For_BIP_Return);
13269 pragma Inline (All_Others);
13270 pragma Inline (All_Present);
13271 pragma Inline (Alternatives);
13272 pragma Inline (Ancestor_Part);
13273 pragma Inline (Atomic_Sync_Required);
13274 pragma Inline (Array_Aggregate);
13275 pragma Inline (Aspect_Rep_Item);
13276 pragma Inline (Assignment_OK);
13277 pragma Inline (Associated_Node);
13278 pragma Inline (At_End_Proc);
13279 pragma Inline (Attribute_Name);
13280 pragma Inline (Aux_Decls_Node);
13281 pragma Inline (Backwards_OK);
13282 pragma Inline (Bad_Is_Detected);
13283 pragma Inline (Body_To_Inline);
13284 pragma Inline (Body_Required);
13285 pragma Inline (By_Ref);
13286 pragma Inline (Box_Present);
13287 pragma Inline (Char_Literal_Value);
13288 pragma Inline (Chars);
13289 pragma Inline (Check_Address_Alignment);
13290 pragma Inline (Choice_Parameter);
13291 pragma Inline (Choices);
13292 pragma Inline (Class_Present);
13293 pragma Inline (Classifications);
13294 pragma Inline (Cleanup_Actions);
13295 pragma Inline (Comes_From_Extended_Return_Statement);
13296 pragma Inline (Compile_Time_Known_Aggregate);
13297 pragma Inline (Component_Associations);
13298 pragma Inline (Component_Clauses);
13299 pragma Inline (Component_Definition);
13300 pragma Inline (Component_Items);
13301 pragma Inline (Component_List);
13302 pragma Inline (Component_Name);
13303 pragma Inline (Componentwise_Assignment);
13304 pragma Inline (Condition);
13305 pragma Inline (Condition_Actions);
13306 pragma Inline (Config_Pragmas);
13307 pragma Inline (Constant_Present);
13308 pragma Inline (Constraint);
13309 pragma Inline (Constraints);
13310 pragma Inline (Context_Installed);
13311 pragma Inline (Context_Items);
13312 pragma Inline (Context_Pending);
13313 pragma Inline (Contract_Test_Cases);
13314 pragma Inline (Controlling_Argument);
13315 pragma Inline (Convert_To_Return_False);
13316 pragma Inline (Conversion_OK);
13317 pragma Inline (Corresponding_Aspect);
13318 pragma Inline (Corresponding_Body);
13319 pragma Inline (Corresponding_Formal_Spec);
13320 pragma Inline (Corresponding_Generic_Association);
13321 pragma Inline (Corresponding_Integer_Value);
13322 pragma Inline (Corresponding_Spec);
13323 pragma Inline (Corresponding_Spec_Of_Stub);
13324 pragma Inline (Corresponding_Stub);
13325 pragma Inline (Dcheck_Function);
13326 pragma Inline (Declarations);
13327 pragma Inline (Default_Expression);
13328 pragma Inline (Default_Storage_Pool);
13329 pragma Inline (Default_Name);
13330 pragma Inline (Defining_Identifier);
13331 pragma Inline (Defining_Unit_Name);
13332 pragma Inline (Delay_Alternative);
13333 pragma Inline (Delay_Statement);
13334 pragma Inline (Delta_Expression);
13335 pragma Inline (Digits_Expression);
13336 pragma Inline (Discr_Check_Funcs_Built);
13337 pragma Inline (Discrete_Choices);
13338 pragma Inline (Discrete_Range);
13339 pragma Inline (Discrete_Subtype_Definition);
13340 pragma Inline (Discrete_Subtype_Definitions);
13341 pragma Inline (Discriminant_Specifications);
13342 pragma Inline (Discriminant_Type);
13343 pragma Inline (Do_Accessibility_Check);
13344 pragma Inline (Do_Discriminant_Check);
13345 pragma Inline (Do_Length_Check);
13346 pragma Inline (Do_Division_Check);
13347 pragma Inline (Do_Overflow_Check);
13348 pragma Inline (Do_Range_Check);
13349 pragma Inline (Do_Storage_Check);
13350 pragma Inline (Do_Tag_Check);
13351 pragma Inline (Elaborate_All_Desirable);
13352 pragma Inline (Elaborate_All_Present);
13353 pragma Inline (Elaborate_Desirable);
13354 pragma Inline (Elaborate_Present);
13355 pragma Inline (Else_Actions);
13356 pragma Inline (Else_Statements);
13357 pragma Inline (Elsif_Parts);
13358 pragma Inline (Enclosing_Variant);
13359 pragma Inline (End_Label);
13360 pragma Inline (End_Span);
13361 pragma Inline (Entity);
13362 pragma Inline (Entity_Or_Associated_Node);
13363 pragma Inline (Entry_Body_Formal_Part);
13364 pragma Inline (Entry_Call_Alternative);
13365 pragma Inline (Entry_Call_Statement);
13366 pragma Inline (Entry_Direct_Name);
13367 pragma Inline (Entry_Index);
13368 pragma Inline (Entry_Index_Specification);
13369 pragma Inline (Etype);
13370 pragma Inline (Exception_Choices);
13371 pragma Inline (Exception_Handlers);
13372 pragma Inline (Exception_Junk);
13373 pragma Inline (Exception_Label);
13374 pragma Inline (Expansion_Delayed);
13375 pragma Inline (Explicit_Actual_Parameter);
13376 pragma Inline (Explicit_Generic_Actual_Parameter);
13377 pragma Inline (Expression);
13378 pragma Inline (Expression_Copy);
13379 pragma Inline (Expressions);
13380 pragma Inline (First_Bit);
13381 pragma Inline (First_Inlined_Subprogram);
13382 pragma Inline (First_Name);
13383 pragma Inline (First_Named_Actual);
13384 pragma Inline (First_Real_Statement);
13385 pragma Inline (First_Subtype_Link);
13386 pragma Inline (Float_Truncate);
13387 pragma Inline (Formal_Type_Definition);
13388 pragma Inline (Forwards_OK);
13389 pragma Inline (From_Aspect_Specification);
13390 pragma Inline (From_At_End);
13391 pragma Inline (From_At_Mod);
13392 pragma Inline (From_Conditional_Expression);
13393 pragma Inline (From_Default);
13394 pragma Inline (Generalized_Indexing);
13395 pragma Inline (Generic_Associations);
13396 pragma Inline (Generic_Formal_Declarations);
13397 pragma Inline (Generic_Parent);
13398 pragma Inline (Generic_Parent_Type);
13399 pragma Inline (Handled_Statement_Sequence);
13400 pragma Inline (Handler_List_Entry);
13401 pragma Inline (Has_Created_Identifier);
13402 pragma Inline (Has_Dereference_Action);
13403 pragma Inline (Has_Dynamic_Length_Check);
13404 pragma Inline (Has_Dynamic_Range_Check);
13405 pragma Inline (Has_Init_Expression);
13406 pragma Inline (Has_Local_Raise);
13407 pragma Inline (Has_Self_Reference);
13408 pragma Inline (Has_SP_Choice);
13409 pragma Inline (Has_No_Elaboration_Code);
13410 pragma Inline (Has_Pragma_Suppress_All);
13411 pragma Inline (Has_Private_View);
13412 pragma Inline (Has_Relative_Deadline_Pragma);
13413 pragma Inline (Has_Storage_Size_Pragma);
13414 pragma Inline (Has_Target_Names);
13415 pragma Inline (Has_Wide_Character);
13416 pragma Inline (Has_Wide_Wide_Character);
13417 pragma Inline (Header_Size_Added);
13418 pragma Inline (Hidden_By_Use_Clause);
13419 pragma Inline (High_Bound);
13420 pragma Inline (Identifier);
13421 pragma Inline (Implicit_With);
13422 pragma Inline (Interface_List);
13423 pragma Inline (Interface_Present);
13424 pragma Inline (Includes_Infinities);
13425 pragma Inline (Import_Interface_Present);
13426 pragma Inline (In_Present);
13427 pragma Inline (Incomplete_View);
13428 pragma Inline (Inherited_Discriminant);
13429 pragma Inline (Instance_Spec);
13430 pragma Inline (Intval);
13431 pragma Inline (Iterator_Specification);
13432 pragma Inline (Is_Abort_Block);
13433 pragma Inline (Is_Accessibility_Actual);
13434 pragma Inline (Is_Analyzed_Pragma);
13435 pragma Inline (Is_Asynchronous_Call_Block);
13436 pragma Inline (Is_Boolean_Aspect);
13437 pragma Inline (Is_Checked);
13438 pragma Inline (Is_Checked_Ghost_Pragma);
13439 pragma Inline (Is_Component_Left_Opnd);
13440 pragma Inline (Is_Component_Right_Opnd);
13441 pragma Inline (Is_Controlling_Actual);
13442 pragma Inline (Is_Declaration_Level_Node);
13443 pragma Inline (Is_Delayed_Aspect);
13444 pragma Inline (Is_Disabled);
13445 pragma Inline (Is_Dispatching_Call);
13446 pragma Inline (Is_Dynamic_Coextension);
13447 pragma Inline (Is_Effective_Use_Clause);
13448 pragma Inline (Is_Elaboration_Checks_OK_Node);
13449 pragma Inline (Is_Elaboration_Code);
13450 pragma Inline (Is_Elaboration_Warnings_OK_Node);
13451 pragma Inline (Is_Elsif);
13452 pragma Inline (Is_Entry_Barrier_Function);
13453 pragma Inline (Is_Expanded_Build_In_Place_Call);
13454 pragma Inline (Is_Expanded_Contract);
13455 pragma Inline (Is_Finalization_Wrapper);
13456 pragma Inline (Is_Folded_In_Parser);
13457 pragma Inline (Is_Generic_Contract_Pragma);
13458 pragma Inline (Is_Ignored);
13459 pragma Inline (Is_Ignored_Ghost_Pragma);
13460 pragma Inline (Is_In_Discriminant_Check);
13461 pragma Inline (Is_Inherited_Pragma);
13462 pragma Inline (Is_Initialization_Block);
13463 pragma Inline (Is_Known_Guaranteed_ABE);
13464 pragma Inline (Is_Machine_Number);
13465 pragma Inline (Is_Null_Loop);
13466 pragma Inline (Is_Overloaded);
13467 pragma Inline (Is_Power_Of_2_For_Shift);
13468 pragma Inline (Is_Prefixed_Call);
13469 pragma Inline (Is_Protected_Subprogram_Body);
13470 pragma Inline (Is_Qualified_Universal_Literal);
13471 pragma Inline (Is_Read);
13472 pragma Inline (Is_Source_Call);
13473 pragma Inline (Is_SPARK_Mode_On_Node);
13474 pragma Inline (Is_Static_Coextension);
13475 pragma Inline (Is_Static_Expression);
13476 pragma Inline (Is_Subprogram_Descriptor);
13477 pragma Inline (Is_Task_Allocation_Block);
13478 pragma Inline (Is_Task_Body_Procedure);
13479 pragma Inline (Is_Task_Master);
13480 pragma Inline (Is_Write);
13481 pragma Inline (Iteration_Scheme);
13482 pragma Inline (Itype);
13483 pragma Inline (Kill_Range_Check);
13484 pragma Inline (Last_Bit);
13485 pragma Inline (Last_Name);
13486 pragma Inline (Library_Unit);
13487 pragma Inline (Label_Construct);
13488 pragma Inline (Left_Opnd);
13489 pragma Inline (Limited_View_Installed);
13490 pragma Inline (Limited_Present);
13491 pragma Inline (Literals);
13492 pragma Inline (Local_Raise_Not_OK);
13493 pragma Inline (Local_Raise_Statements);
13494 pragma Inline (Loop_Actions);
13495 pragma Inline (Loop_Parameter_Specification);
13496 pragma Inline (Low_Bound);
13497 pragma Inline (Mod_Clause);
13498 pragma Inline (More_Ids);
13499 pragma Inline (Must_Be_Byte_Aligned);
13500 pragma Inline (Must_Not_Freeze);
13501 pragma Inline (Must_Not_Override);
13502 pragma Inline (Must_Override);
13503 pragma Inline (Name);
13504 pragma Inline (Names);
13505 pragma Inline (Next_Entity);
13506 pragma Inline (Next_Exit_Statement);
13507 pragma Inline (Next_Implicit_With);
13508 pragma Inline (Next_Named_Actual);
13509 pragma Inline (Next_Pragma);
13510 pragma Inline (Next_Rep_Item);
13511 pragma Inline (Next_Use_Clause);
13512 pragma Inline (No_Ctrl_Actions);
13513 pragma Inline (No_Elaboration_Check);
13514 pragma Inline (No_Entities_Ref_In_Spec);
13515 pragma Inline (No_Initialization);
13516 pragma Inline (No_Minimize_Eliminate);
13517 pragma Inline (No_Side_Effect_Removal);
13518 pragma Inline (No_Truncation);
13519 pragma Inline (Null_Excluding_Subtype);
13520 pragma Inline (Null_Exclusion_Present);
13521 pragma Inline (Null_Exclusion_In_Return_Present);
13522 pragma Inline (Null_Present);
13523 pragma Inline (Null_Record_Present);
13524 pragma Inline (Null_Statement);
13525 pragma Inline (Object_Definition);
13526 pragma Inline (Of_Present);
13527 pragma Inline (Original_Discriminant);
13528 pragma Inline (Original_Entity);
13529 pragma Inline (Others_Discrete_Choices);
13530 pragma Inline (Out_Present);
13531 pragma Inline (Parameter_Associations);
13532 pragma Inline (Parameter_Specifications);
13533 pragma Inline (Parameter_Type);
13534 pragma Inline (Parent_Spec);
13535 pragma Inline (Parent_With);
13536 pragma Inline (Position);
13537 pragma Inline (Pragma_Argument_Associations);
13538 pragma Inline (Pragma_Identifier);
13539 pragma Inline (Pragmas_After);
13540 pragma Inline (Pragmas_Before);
13541 pragma Inline (Pre_Post_Conditions);
13542 pragma Inline (Prefix);
13543 pragma Inline (Premature_Use);
13544 pragma Inline (Present_Expr);
13545 pragma Inline (Prev_Ids);
13546 pragma Inline (Prev_Use_Clause);
13547 pragma Inline (Print_In_Hex);
13548 pragma Inline (Private_Declarations);
13549 pragma Inline (Private_Present);
13550 pragma Inline (Procedure_To_Call);
13551 pragma Inline (Proper_Body);
13552 pragma Inline (Protected_Definition);
13553 pragma Inline (Protected_Present);
13554 pragma Inline (Raises_Constraint_Error);
13555 pragma Inline (Range_Constraint);
13556 pragma Inline (Range_Expression);
13557 pragma Inline (Real_Range_Specification);
13558 pragma Inline (Realval);
13559 pragma Inline (Reason);
13560 pragma Inline (Record_Extension_Part);
13561 pragma Inline (Redundant_Use);
13562 pragma Inline (Renaming_Exception);
13563 pragma Inline (Result_Definition);
13564 pragma Inline (Return_Object_Declarations);
13565 pragma Inline (Return_Statement_Entity);
13566 pragma Inline (Reverse_Present);
13567 pragma Inline (Right_Opnd);
13568 pragma Inline (Rounded_Result);
13569 pragma Inline (SCIL_Controlling_Tag);
13570 pragma Inline (SCIL_Entity);
13571 pragma Inline (SCIL_Tag_Value);
13572 pragma Inline (SCIL_Target_Prim);
13573 pragma Inline (Scope);
13574 pragma Inline (Select_Alternatives);
13575 pragma Inline (Selector_Name);
13576 pragma Inline (Selector_Names);
13577 pragma Inline (Shift_Count_OK);
13578 pragma Inline (Source_Type);
13579 pragma Inline (Specification);
13580 pragma Inline (Split_PPC);
13581 pragma Inline (Statements);
13582 pragma Inline (Storage_Pool);
13583 pragma Inline (Subpool_Handle_Name);
13584 pragma Inline (Strval);
13585 pragma Inline (Subtype_Indication);
13586 pragma Inline (Subtype_Mark);
13587 pragma Inline (Subtype_Marks);
13588 pragma Inline (Suppress_Assignment_Checks);
13589 pragma Inline (Suppress_Loop_Warnings);
13590 pragma Inline (Synchronized_Present);
13591 pragma Inline (Tagged_Present);
13592 pragma Inline (Target);
13593 pragma Inline (Target_Type);
13594 pragma Inline (Task_Definition);
13595 pragma Inline (Task_Present);
13596 pragma Inline (Then_Actions);
13597 pragma Inline (Then_Statements);
13598 pragma Inline (Triggering_Alternative);
13599 pragma Inline (Triggering_Statement);
13600 pragma Inline (Treat_Fixed_As_Integer);
13601 pragma Inline (TSS_Elist);
13602 pragma Inline (Type_Definition);
13603 pragma Inline (Uneval_Old_Accept);
13604 pragma Inline (Uneval_Old_Warn);
13605 pragma Inline (Unit);
13606 pragma Inline (Uninitialized_Variable);
13607 pragma Inline (Unknown_Discriminants_Present);
13608 pragma Inline (Unreferenced_In_Spec);
13609 pragma Inline (Variant_Part);
13610 pragma Inline (Variants);
13611 pragma Inline (Visible_Declarations);
13612 pragma Inline (Used_Operations);
13613 pragma Inline (Was_Attribute_Reference);
13614 pragma Inline (Was_Expression_Function);
13615 pragma Inline (Was_Originally_Stub);
13616 pragma Inline (Withed_Body);
13618 pragma Inline (Set_Abort_Present);
13619 pragma Inline (Set_Abortable_Part);
13620 pragma Inline (Set_Abstract_Present);
13621 pragma Inline (Set_Accept_Handler_Records);
13622 pragma Inline (Set_Accept_Statement);
13623 pragma Inline (Set_Access_Definition);
13624 pragma Inline (Set_Access_To_Subprogram_Definition);
13625 pragma Inline (Set_Access_Types_To_Process);
13626 pragma Inline (Set_Actions);
13627 pragma Inline (Set_Activation_Chain_Entity);
13628 pragma Inline (Set_Acts_As_Spec);
13629 pragma Inline (Set_Actual_Designated_Subtype);
13630 pragma Inline (Set_Address_Warning_Posted);
13631 pragma Inline (Set_Aggregate_Bounds);
13632 pragma Inline (Set_Aliased_Present);
13633 pragma Inline (Set_Alloc_For_BIP_Return);
13634 pragma Inline (Set_All_Others);
13635 pragma Inline (Set_All_Present);
13636 pragma Inline (Set_Alternatives);
13637 pragma Inline (Set_Ancestor_Part);
13638 pragma Inline (Set_Array_Aggregate);
13639 pragma Inline (Set_Aspect_Rep_Item);
13640 pragma Inline (Set_Assignment_OK);
13641 pragma Inline (Set_Associated_Node);
13642 pragma Inline (Set_At_End_Proc);
13643 pragma Inline (Set_Atomic_Sync_Required);
13644 pragma Inline (Set_Attribute_Name);
13645 pragma Inline (Set_Aux_Decls_Node);
13646 pragma Inline (Set_Backwards_OK);
13647 pragma Inline (Set_Bad_Is_Detected);
13648 pragma Inline (Set_Body_Required);
13649 pragma Inline (Set_Body_To_Inline);
13650 pragma Inline (Set_Box_Present);
13651 pragma Inline (Set_By_Ref);
13652 pragma Inline (Set_Char_Literal_Value);
13653 pragma Inline (Set_Chars);
13654 pragma Inline (Set_Check_Address_Alignment);
13655 pragma Inline (Set_Choice_Parameter);
13656 pragma Inline (Set_Choices);
13657 pragma Inline (Set_Class_Present);
13658 pragma Inline (Set_Classifications);
13659 pragma Inline (Set_Cleanup_Actions);
13660 pragma Inline (Set_Comes_From_Extended_Return_Statement);
13661 pragma Inline (Set_Compile_Time_Known_Aggregate);
13662 pragma Inline (Set_Component_Associations);
13663 pragma Inline (Set_Component_Clauses);
13664 pragma Inline (Set_Component_Definition);
13665 pragma Inline (Set_Component_Items);
13666 pragma Inline (Set_Component_List);
13667 pragma Inline (Set_Component_Name);
13668 pragma Inline (Set_Componentwise_Assignment);
13669 pragma Inline (Set_Condition);
13670 pragma Inline (Set_Condition_Actions);
13671 pragma Inline (Set_Config_Pragmas);
13672 pragma Inline (Set_Constant_Present);
13673 pragma Inline (Set_Constraint);
13674 pragma Inline (Set_Constraints);
13675 pragma Inline (Set_Context_Installed);
13676 pragma Inline (Set_Context_Items);
13677 pragma Inline (Set_Context_Pending);
13678 pragma Inline (Set_Contract_Test_Cases);
13679 pragma Inline (Set_Controlling_Argument);
13680 pragma Inline (Set_Conversion_OK);
13681 pragma Inline (Set_Convert_To_Return_False);
13682 pragma Inline (Set_Corresponding_Aspect);
13683 pragma Inline (Set_Corresponding_Body);
13684 pragma Inline (Set_Corresponding_Formal_Spec);
13685 pragma Inline (Set_Corresponding_Generic_Association);
13686 pragma Inline (Set_Corresponding_Integer_Value);
13687 pragma Inline (Set_Corresponding_Spec);
13688 pragma Inline (Set_Corresponding_Spec_Of_Stub);
13689 pragma Inline (Set_Corresponding_Stub);
13690 pragma Inline (Set_Dcheck_Function);
13691 pragma Inline (Set_Declarations);
13692 pragma Inline (Set_Default_Expression);
13693 pragma Inline (Set_Default_Name);
13694 pragma Inline (Set_Default_Storage_Pool);
13695 pragma Inline (Set_Defining_Identifier);
13696 pragma Inline (Set_Defining_Unit_Name);
13697 pragma Inline (Set_Delay_Alternative);
13698 pragma Inline (Set_Delay_Statement);
13699 pragma Inline (Set_Delta_Expression);
13700 pragma Inline (Set_Digits_Expression);
13701 pragma Inline (Set_Discr_Check_Funcs_Built);
13702 pragma Inline (Set_Discrete_Choices);
13703 pragma Inline (Set_Discrete_Range);
13704 pragma Inline (Set_Discrete_Subtype_Definition);
13705 pragma Inline (Set_Discrete_Subtype_Definitions);
13706 pragma Inline (Set_Discriminant_Specifications);
13707 pragma Inline (Set_Discriminant_Type);
13708 pragma Inline (Set_Do_Accessibility_Check);
13709 pragma Inline (Set_Do_Discriminant_Check);
13710 pragma Inline (Set_Do_Division_Check);
13711 pragma Inline (Set_Do_Length_Check);
13712 pragma Inline (Set_Do_Overflow_Check);
13713 pragma Inline (Set_Do_Range_Check);
13714 pragma Inline (Set_Do_Storage_Check);
13715 pragma Inline (Set_Do_Tag_Check);
13716 pragma Inline (Set_Elaborate_All_Desirable);
13717 pragma Inline (Set_Elaborate_All_Present);
13718 pragma Inline (Set_Elaborate_Desirable);
13719 pragma Inline (Set_Elaborate_Present);
13720 pragma Inline (Set_Else_Actions);
13721 pragma Inline (Set_Else_Statements);
13722 pragma Inline (Set_Elsif_Parts);
13723 pragma Inline (Set_Enclosing_Variant);
13724 pragma Inline (Set_End_Label);
13725 pragma Inline (Set_End_Span);
13726 pragma Inline (Set_Entity);
13727 pragma Inline (Set_Entry_Body_Formal_Part);
13728 pragma Inline (Set_Entry_Call_Alternative);
13729 pragma Inline (Set_Entry_Call_Statement);
13730 pragma Inline (Set_Entry_Direct_Name);
13731 pragma Inline (Set_Entry_Index);
13732 pragma Inline (Set_Entry_Index_Specification);
13733 pragma Inline (Set_Etype);
13734 pragma Inline (Set_Exception_Choices);
13735 pragma Inline (Set_Exception_Handlers);
13736 pragma Inline (Set_Exception_Junk);
13737 pragma Inline (Set_Exception_Label);
13738 pragma Inline (Set_Expansion_Delayed);
13739 pragma Inline (Set_Explicit_Actual_Parameter);
13740 pragma Inline (Set_Explicit_Generic_Actual_Parameter);
13741 pragma Inline (Set_Expression);
13742 pragma Inline (Set_Expression_Copy);
13743 pragma Inline (Set_Expressions);
13744 pragma Inline (Set_First_Bit);
13745 pragma Inline (Set_First_Inlined_Subprogram);
13746 pragma Inline (Set_First_Name);
13747 pragma Inline (Set_First_Named_Actual);
13748 pragma Inline (Set_First_Real_Statement);
13749 pragma Inline (Set_First_Subtype_Link);
13750 pragma Inline (Set_Float_Truncate);
13751 pragma Inline (Set_Formal_Type_Definition);
13752 pragma Inline (Set_Forwards_OK);
13753 pragma Inline (Set_From_Aspect_Specification);
13754 pragma Inline (Set_From_At_End);
13755 pragma Inline (Set_From_At_Mod);
13756 pragma Inline (Set_From_Conditional_Expression);
13757 pragma Inline (Set_From_Default);
13758 pragma Inline (Set_Generalized_Indexing);
13759 pragma Inline (Set_Generic_Associations);
13760 pragma Inline (Set_Generic_Formal_Declarations);
13761 pragma Inline (Set_Generic_Parent);
13762 pragma Inline (Set_Generic_Parent_Type);
13763 pragma Inline (Set_Handled_Statement_Sequence);
13764 pragma Inline (Set_Handler_List_Entry);
13765 pragma Inline (Set_Has_Created_Identifier);
13766 pragma Inline (Set_Has_Dereference_Action);
13767 pragma Inline (Set_Has_Dynamic_Length_Check);
13768 pragma Inline (Set_Has_Dynamic_Range_Check);
13769 pragma Inline (Set_Has_Init_Expression);
13770 pragma Inline (Set_Has_Local_Raise);
13771 pragma Inline (Set_Has_No_Elaboration_Code);
13772 pragma Inline (Set_Has_Pragma_Suppress_All);
13773 pragma Inline (Set_Has_Private_View);
13774 pragma Inline (Set_Has_Relative_Deadline_Pragma);
13775 pragma Inline (Set_Has_Self_Reference);
13776 pragma Inline (Set_Has_SP_Choice);
13777 pragma Inline (Set_Has_Storage_Size_Pragma);
13778 pragma Inline (Set_Has_Target_Names);
13779 pragma Inline (Set_Has_Wide_Character);
13780 pragma Inline (Set_Has_Wide_Wide_Character);
13781 pragma Inline (Set_Header_Size_Added);
13782 pragma Inline (Set_Hidden_By_Use_Clause);
13783 pragma Inline (Set_High_Bound);
13784 pragma Inline (Set_Identifier);
13785 pragma Inline (Set_Implicit_With);
13786 pragma Inline (Set_Import_Interface_Present);
13787 pragma Inline (Set_In_Present);
13788 pragma Inline (Set_Includes_Infinities);
13789 pragma Inline (Set_Incomplete_View);
13790 pragma Inline (Set_Inherited_Discriminant);
13791 pragma Inline (Set_Instance_Spec);
13792 pragma Inline (Set_Interface_List);
13793 pragma Inline (Set_Interface_Present);
13794 pragma Inline (Set_Intval);
13795 pragma Inline (Set_Is_Abort_Block);
13796 pragma Inline (Set_Is_Accessibility_Actual);
13797 pragma Inline (Set_Is_Analyzed_Pragma);
13798 pragma Inline (Set_Is_Asynchronous_Call_Block);
13799 pragma Inline (Set_Is_Boolean_Aspect);
13800 pragma Inline (Set_Is_Checked);
13801 pragma Inline (Set_Is_Checked_Ghost_Pragma);
13802 pragma Inline (Set_Is_Component_Left_Opnd);
13803 pragma Inline (Set_Is_Component_Right_Opnd);
13804 pragma Inline (Set_Is_Controlling_Actual);
13805 pragma Inline (Set_Is_Declaration_Level_Node);
13806 pragma Inline (Set_Is_Delayed_Aspect);
13807 pragma Inline (Set_Is_Disabled);
13808 pragma Inline (Set_Is_Dispatching_Call);
13809 pragma Inline (Set_Is_Dynamic_Coextension);
13810 pragma Inline (Set_Is_Effective_Use_Clause);
13811 pragma Inline (Set_Is_Elaboration_Checks_OK_Node);
13812 pragma Inline (Set_Is_Elaboration_Code);
13813 pragma Inline (Set_Is_Elaboration_Warnings_OK_Node);
13814 pragma Inline (Set_Is_Elsif);
13815 pragma Inline (Set_Is_Entry_Barrier_Function);
13816 pragma Inline (Set_Is_Expanded_Build_In_Place_Call);
13817 pragma Inline (Set_Is_Expanded_Contract);
13818 pragma Inline (Set_Is_Finalization_Wrapper);
13819 pragma Inline (Set_Is_Folded_In_Parser);
13820 pragma Inline (Set_Is_Generic_Contract_Pragma);
13821 pragma Inline (Set_Is_Ignored);
13822 pragma Inline (Set_Is_Ignored_Ghost_Pragma);
13823 pragma Inline (Set_Is_In_Discriminant_Check);
13824 pragma Inline (Set_Is_Inherited_Pragma);
13825 pragma Inline (Set_Is_Initialization_Block);
13826 pragma Inline (Set_Is_Known_Guaranteed_ABE);
13827 pragma Inline (Set_Is_Machine_Number);
13828 pragma Inline (Set_Is_Null_Loop);
13829 pragma Inline (Set_Is_Overloaded);
13830 pragma Inline (Set_Is_Power_Of_2_For_Shift);
13831 pragma Inline (Set_Is_Prefixed_Call);
13832 pragma Inline (Set_Is_Protected_Subprogram_Body);
13833 pragma Inline (Set_Is_Qualified_Universal_Literal);
13834 pragma Inline (Set_Is_Read);
13835 pragma Inline (Set_Is_Source_Call);
13836 pragma Inline (Set_Is_SPARK_Mode_On_Node);
13837 pragma Inline (Set_Is_Static_Coextension);
13838 pragma Inline (Set_Is_Static_Expression);
13839 pragma Inline (Set_Is_Subprogram_Descriptor);
13840 pragma Inline (Set_Is_Task_Allocation_Block);
13841 pragma Inline (Set_Is_Task_Body_Procedure);
13842 pragma Inline (Set_Is_Task_Master);
13843 pragma Inline (Set_Is_Write);
13844 pragma Inline (Set_Iteration_Scheme);
13845 pragma Inline (Set_Iterator_Specification);
13846 pragma Inline (Set_Itype);
13847 pragma Inline (Set_Kill_Range_Check);
13848 pragma Inline (Set_Label_Construct);
13849 pragma Inline (Set_Last_Bit);
13850 pragma Inline (Set_Last_Name);
13851 pragma Inline (Set_Left_Opnd);
13852 pragma Inline (Set_Library_Unit);
13853 pragma Inline (Set_Limited_Present);
13854 pragma Inline (Set_Limited_View_Installed);
13855 pragma Inline (Set_Literals);
13856 pragma Inline (Set_Local_Raise_Not_OK);
13857 pragma Inline (Set_Local_Raise_Statements);
13858 pragma Inline (Set_Loop_Actions);
13859 pragma Inline (Set_Loop_Parameter_Specification);
13860 pragma Inline (Set_Low_Bound);
13861 pragma Inline (Set_Mod_Clause);
13862 pragma Inline (Set_More_Ids);
13863 pragma Inline (Set_Must_Be_Byte_Aligned);
13864 pragma Inline (Set_Must_Not_Freeze);
13865 pragma Inline (Set_Must_Not_Override);
13866 pragma Inline (Set_Must_Override);
13867 pragma Inline (Set_Name);
13868 pragma Inline (Set_Names);
13869 pragma Inline (Set_Next_Entity);
13870 pragma Inline (Set_Next_Exit_Statement);
13871 pragma Inline (Set_Next_Implicit_With);
13872 pragma Inline (Set_Next_Named_Actual);
13873 pragma Inline (Set_Next_Pragma);
13874 pragma Inline (Set_Next_Rep_Item);
13875 pragma Inline (Set_Next_Use_Clause);
13876 pragma Inline (Set_No_Ctrl_Actions);
13877 pragma Inline (Set_No_Elaboration_Check);
13878 pragma Inline (Set_No_Entities_Ref_In_Spec);
13879 pragma Inline (Set_No_Initialization);
13880 pragma Inline (Set_No_Minimize_Eliminate);
13881 pragma Inline (Set_No_Side_Effect_Removal);
13882 pragma Inline (Set_No_Truncation);
13883 pragma Inline (Set_Null_Excluding_Subtype);
13884 pragma Inline (Set_Null_Exclusion_Present);
13885 pragma Inline (Set_Null_Exclusion_In_Return_Present);
13886 pragma Inline (Set_Null_Present);
13887 pragma Inline (Set_Null_Record_Present);
13888 pragma Inline (Set_Null_Statement);
13889 pragma Inline (Set_Object_Definition);
13890 pragma Inline (Set_Of_Present);
13891 pragma Inline (Set_Original_Discriminant);
13892 pragma Inline (Set_Original_Entity);
13893 pragma Inline (Set_Others_Discrete_Choices);
13894 pragma Inline (Set_Out_Present);
13895 pragma Inline (Set_Parameter_Associations);
13896 pragma Inline (Set_Parameter_Specifications);
13897 pragma Inline (Set_Parameter_Type);
13898 pragma Inline (Set_Parent_Spec);
13899 pragma Inline (Set_Parent_With);
13900 pragma Inline (Set_Position);
13901 pragma Inline (Set_Pragma_Argument_Associations);
13902 pragma Inline (Set_Pragma_Identifier);
13903 pragma Inline (Set_Pragmas_After);
13904 pragma Inline (Set_Pragmas_Before);
13905 pragma Inline (Set_Pre_Post_Conditions);
13906 pragma Inline (Set_Prefix);
13907 pragma Inline (Set_Premature_Use);
13908 pragma Inline (Set_Present_Expr);
13909 pragma Inline (Set_Prev_Ids);
13910 pragma Inline (Set_Prev_Use_Clause);
13911 pragma Inline (Set_Print_In_Hex);
13912 pragma Inline (Set_Private_Declarations);
13913 pragma Inline (Set_Private_Present);
13914 pragma Inline (Set_Procedure_To_Call);
13915 pragma Inline (Set_Proper_Body);
13916 pragma Inline (Set_Protected_Definition);
13917 pragma Inline (Set_Protected_Present);
13918 pragma Inline (Set_Raises_Constraint_Error);
13919 pragma Inline (Set_Range_Constraint);
13920 pragma Inline (Set_Range_Expression);
13921 pragma Inline (Set_Real_Range_Specification);
13922 pragma Inline (Set_Realval);
13923 pragma Inline (Set_Reason);
13924 pragma Inline (Set_Record_Extension_Part);
13925 pragma Inline (Set_Redundant_Use);
13926 pragma Inline (Set_Renaming_Exception);
13927 pragma Inline (Set_Result_Definition);
13928 pragma Inline (Set_Return_Object_Declarations);
13929 pragma Inline (Set_Reverse_Present);
13930 pragma Inline (Set_Right_Opnd);
13931 pragma Inline (Set_Rounded_Result);
13932 pragma Inline (Set_SCIL_Controlling_Tag);
13933 pragma Inline (Set_SCIL_Entity);
13934 pragma Inline (Set_SCIL_Tag_Value);
13935 pragma Inline (Set_SCIL_Target_Prim);
13936 pragma Inline (Set_Scope);
13937 pragma Inline (Set_Select_Alternatives);
13938 pragma Inline (Set_Selector_Name);
13939 pragma Inline (Set_Selector_Names);
13940 pragma Inline (Set_Shift_Count_OK);
13941 pragma Inline (Set_Source_Type);
13942 pragma Inline (Set_Split_PPC);
13943 pragma Inline (Set_Statements);
13944 pragma Inline (Set_Storage_Pool);
13945 pragma Inline (Set_Strval);
13946 pragma Inline (Set_Subpool_Handle_Name);
13947 pragma Inline (Set_Subtype_Indication);
13948 pragma Inline (Set_Subtype_Mark);
13949 pragma Inline (Set_Subtype_Marks);
13950 pragma Inline (Set_Suppress_Assignment_Checks);
13951 pragma Inline (Set_Suppress_Loop_Warnings);
13952 pragma Inline (Set_Synchronized_Present);
13953 pragma Inline (Set_TSS_Elist);
13954 pragma Inline (Set_Tagged_Present);
13955 pragma Inline (Set_Target);
13956 pragma Inline (Set_Target_Type);
13957 pragma Inline (Set_Task_Definition);
13958 pragma Inline (Set_Task_Present);
13959 pragma Inline (Set_Then_Actions);
13960 pragma Inline (Set_Then_Statements);
13961 pragma Inline (Set_Treat_Fixed_As_Integer);
13962 pragma Inline (Set_Triggering_Alternative);
13963 pragma Inline (Set_Triggering_Statement);
13964 pragma Inline (Set_Type_Definition);
13965 pragma Inline (Set_Uneval_Old_Accept);
13966 pragma Inline (Set_Uneval_Old_Warn);
13967 pragma Inline (Set_Unit);
13968 pragma Inline (Set_Uninitialized_Variable);
13969 pragma Inline (Set_Unknown_Discriminants_Present);
13970 pragma Inline (Set_Unreferenced_In_Spec);
13971 pragma Inline (Set_Used_Operations);
13972 pragma Inline (Set_Variant_Part);
13973 pragma Inline (Set_Variants);
13974 pragma Inline (Set_Visible_Declarations);
13975 pragma Inline (Set_Was_Attribute_Reference);
13976 pragma Inline (Set_Was_Expression_Function);
13977 pragma Inline (Set_Was_Originally_Stub);
13978 pragma Inline (Set_Withed_Body);
13980 end Sinfo;