[multiple changes]
[platform/upstream/gcc.git] / gcc / ada / sinfo.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                                S I N F O                                 --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2014, 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 ------------------------------------------------------------------------------
31
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.
35
36 --  The grammar in the RM is followed very closely in the tree design, and is
37 --  repeated as part of this source file.
38
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.
45
46 --  WARNING: Several files are automatically generated from this package.
47 --  See below for details.
48
49 with Namet;  use Namet;
50 with Types;  use Types;
51 with Uintp;  use Uintp;
52 with Urealp; use Urealp;
53
54 package Sinfo is
55
56    ---------------------------------
57    -- Making Changes to This File --
58    ---------------------------------
59
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:
63
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
75
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.
79
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.
83
84    --  If a new tree node is added, then the following changes are made:
85
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
101
102    --  All back ends must be made aware of the new node kind.
103
104    --  Finally, four utility programs must be run:
105
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.
110
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.
115
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.
121
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.
125
126    --  The above steps are done automatically by the build scripts when you do
127    --  a full bootstrap.
128
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.
132
133    --------------------------------
134    -- Implicit Nodes in the Tree --
135    --------------------------------
136
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:
141
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.
149
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.
155
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.
159
160    -------------------------------------------
161    -- Handling of Defining Identifier Lists --
162    -------------------------------------------
163
164    --  In several declarative forms in the syntax, lists of defining
165    --  identifiers appear (object declarations, component declarations, number
166    --  declarations etc.)
167
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).
171
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.
181
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.
185
186    -----------------------
187    -- Use of Node Lists --
188    -----------------------
189
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.
197
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.
201
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:
205
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;
213
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.
217
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.
223
224    -------------
225    -- Pragmas --
226    -------------
227
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.
231
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.
237
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.
242
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.
247
248    --  In the case of the variants list, we can either write:
249
250    --      Variant := First (Variants (N));
251    --      while Present (Variant) loop
252    --         ...
253    --         Variant := Next (Variant);
254    --      end loop;
255
256    --  or
257
258    --      Variant := First_Non_Pragma (Variants (N));
259    --      while Present (Variant) loop
260    --         ...
261    --         Variant := Next_Non_Pragma (Variant);
262    --      end loop;
263
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.
267
268    ---------------------
269    -- Optional Fields --
270    ---------------------
271
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.
281
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.
288
289    -----------------------------------
290    -- Note on Body/Spec Terminology --
291    -----------------------------------
292
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.
302
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.
309
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.
313
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.
318
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.
323
324    --  So, to summarize:
325
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.
330
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.
336
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.
341
342    --  This convention is followed throughout the GNAT documentation
343    --  both internal and external, and in all error message text.
344
345    ------------------------
346    -- Internal Use Nodes --
347    ------------------------
348
349    --  These are Node_Kind settings used in the internal implementation which
350    --  are not logically part of the specification.
351
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).
356
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).
363
364    -----------------------------------------
365    -- Note on the settings of Sloc fields --
366    -----------------------------------------
367
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.
375
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.
379
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.
385
386    -----------------------
387    -- Field Definitions --
388    -----------------------
389
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.
395
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:
400
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.
404
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.
413
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.
421
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
434
435    --  Note: see under (EXPRESSION) for further details on the use of
436    --  the Paren_Count field to record the number of parentheses levels.
437
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.
446
447    -----------------------
448    -- Gigi Restrictions --
449    -----------------------
450
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.
456
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.
460
461    ---------------
462    -- ASIS Mode --
463    ---------------
464
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.
468
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.
473
474    --  At least in ASIS mode (not really important in non-ASIS mode), when
475    --  N1 is rewritten as N2:
476
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).
481
482    --    For all the direct descendants of N1 (original node) their Parent
483    --    links should point not to N1, but to N2 (rewriting node).
484
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 ???
489
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:
496    --
497    --    Generic specifications and generic bodies
498    --    Function calls that use prefixed notation (Operand.Operation [(...)])
499
500    --  Representation Information
501
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.
505
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.
509
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:
513
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.
517
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.
523
524    --------------------
525    -- GNATprove Mode --
526    --------------------
527
528    --  When a file is compiled in GNATprove mode (-gnatd.F), a very light
529    --  expansion is performed and the analysis must generate a tree in a
530    --  form that meets additional requirements.
531
532    --  This light expansion does two transformations of the tree that cannot
533    --  be postponed till after semantic analysis:
534
535    --    1. Replace object renamings by renamed object. This requires the
536    --       introduction of temporaries at the point of the renaming, which
537    --       must be properly analyzed.
538
539    --    2. Fully qualify entity names. This is needed to generate suitable
540    --       local effects and call-graphs in ALI files, with the completely
541    --       qualified names (in particular the suffix to distinguish homonyms).
542
543    --  The tree after this light expansion should be fully analyzed
544    --  semantically, which sometimes requires the insertion of semantic
545    --  pre-analysis, for example for subprogram contracts and pragma
546    --  check/assert. In particular, all expression must have their proper type,
547    --  and semantic links should be set between tree nodes (partial to full
548    --  view, etc.) Some kinds of nodes should be either absent, or can be
549    --  ignored by the formal verification backend:
550
551    --      N_Object_Renaming_Declaration: can be ignored safely
552    --      N_Expression_Function:         absent (rewritten)
553    --      N_Expression_With_Actions:     absent (not generated)
554
555    --  SPARK cross-references are generated from the regular cross-references
556    --  (used for browsing and code understanding) and additional references
557    --  collected during semantic analysis, in particular on all dereferences.
558    --  These SPARK cross-references are output in a separate section of ALI
559    --  files, as described in spark_xrefs.adb. They are the basis for the
560    --  computation of data dependences in GNATprove. This implies that all
561    --  cross-references should be generated in this mode, even those that would
562    --  not make sense from a user point-of-view, and that cross-references that
563    --  do not lead to data dependences for subprograms can be safely ignored.
564
565    --  GNATprove relies on the following frontend behaviors:
566
567    --    1. The first declarations in the list of visible declarations of
568    --       a package declaration for a generic instance, up to the first
569    --       declaration which comes from source, should correspond to
570    --       the "mappings nodes" between formal and actual generic parameters.
571
572    --    2. In addition pragma Debug statements are removed from the tree
573    --       (rewritten to NULL stmt), since they should be ignored in formal
574    --       verification.
575
576    --    3. An error is also issued for missing subunits, similar to the
577    --       warning issued when generating code, to avoid formal verification
578    --       of a partial unit.
579
580    -----------------------
581    -- Check Flag Fields --
582    -----------------------
583
584    --  The following flag fields appear in expression nodes:
585
586    --    Do_Division_Check
587    --    Do_Overflow_Check
588    --    Do_Range_Check
589
590    --  These three flags are always set by the front end during semantic
591    --  analysis, on expression nodes that may trigger the corresponding
592    --  check. The front end then inserts or not the check during expansion. In
593    --  particular, these flags should also be correctly set in ASIS mode and
594    --  GNATprove mode.
595
596    --  Note: the expander always takes care of the Do_Range check case,
597    --  so this flag will never be set in the expanded tree passed to the
598    --  back end code generator.
599
600    --  Note that this accounts for all nodes that trigger the corresponding
601    --  checks, except for range checks on subtype_indications, which may be
602    --  required to check that a range_constraint is compatible with the given
603    --  subtype (RM 3.2.2(11)).
604
605    --  The following flag fields appear in various nodes:
606
607    --    Do_Accessibility_Check
608    --    Do_Discriminant_Check
609    --    Do_Length_Check
610    --    Do_Storage_Check
611    --    Do_Tag_Check
612
613    --  These flags are used in some specific cases by the front end, either
614    --  during semantic analysis or during expansion, and cannot be expected
615    --  to be set on all nodes that trigger the corresponding check.
616
617    ------------------------
618    -- Common Flag Fields --
619    ------------------------
620
621    --  The following flag fields appear in all nodes:
622
623    --  Analyzed
624    --    This flag is used to indicate that a node (and all its children have
625    --    been analyzed. It is used to avoid reanalysis of a node that has
626    --    already been analyzed, both for efficiency and functional correctness
627    --    reasons.
628
629    --  Comes_From_Source
630    --    This flag is set if the node comes directly from an explicit construct
631    --    in the source. It is normally on for any nodes built by the scanner or
632    --    parser from the source program, with the exception that in a few cases
633    --    the parser adds nodes to normalize the representation (in particular
634    --    a null statement is added to a package body if there is no begin/end
635    --    initialization section.
636    --
637    --    Most nodes inserted by the analyzer or expander are not considered
638    --    as coming from source, so the flag is off for such nodes. In a few
639    --    cases, the expander constructs nodes closely equivalent to nodes
640    --    from the source program (e.g. the allocator built for build-in-place
641    --    case), and the Comes_From_Source flag is deliberately set.
642
643    --  Error_Posted
644    --    This flag is used to avoid multiple error messages being posted on or
645    --    referring to the same node. This flag is set if an error message
646    --    refers to a node or is posted on its source location, and has the
647    --    effect of inhibiting further messages involving this same node.
648
649    -----------------------
650    -- Modify_Tree_For_C --
651    -----------------------
652
653    --  If the flag Opt.Modify_Tree_For_C is set True, then the tree is modified
654    --  in ways that help match the semantics better with C, easing the task of
655    --  interfacing to C code generators (other than GCC, where the work is done
656    --  in gigi, and there is no point in changing that), and also making life
657    --  easier for Cprint in generating C source code.
658
659    --  The current modifications implemented are as follows:
660
661    --    N_Op_Rotate_Left, N_Op_Rotate_Right, N_Shift_Right_Arithmetic nodes
662    --    are eliminated from the tree (since these operations do not exist in
663    --    C), and the operations are rewritten in terms of logical shifts and
664    --    other logical operations that do exist in C. See Exp_Ch4 expansion
665    --    routines for these operators for details of the transformations made.
666
667    --    The right operand of N_Op_Shift_Right and N_Op_Shift_Left is always
668    --    less than the word size (since other values are not well-defined in
669    --    C). This is done using an explicit test if necessary.
670
671    --    Min and Max attributes are expanded into equivalent if expressions,
672    --    dealing properly with side effect issues.
673
674    --    Mod for signed integer types is expanded into equivalent expressions
675    --    using Rem (which is % in C) and other C-available operators.
676
677    --    The Actions list of an Expression_With_Actions node does not contain
678    --    any declarations,(so that DO X, .. Y IN Z becomes (X, .. Y, Z) in C).
679
680    ------------------------------------
681    -- Description of Semantic Fields --
682    ------------------------------------
683
684    --  The meaning of the syntactic fields is generally clear from their names
685    --  without any further description, since the names are chosen to
686    --  correspond very closely to the syntax in the reference manual. This
687    --  section describes the usage of the semantic fields, which are used to
688    --  contain additional information determined during semantic analysis.
689
690    --  ABE_Is_Certain (Flag18-Sem)
691    --    This flag is set in an instantiation node or a call node is determined
692    --    to be sure to raise an ABE. This is used to trigger special handling
693    --    of such cases, particularly in the instantiation case where we avoid
694    --    instantiating the body if this flag is set. This flag is also present
695    --    in an N_Formal_Package_Declaration_Node since formal package
696    --    declarations are treated like instantiations, but it is always set to
697    --    False in this context.
698
699    --  Accept_Handler_Records (List5-Sem)
700    --    This field is present only in an N_Accept_Alternative node. It is used
701    --    to temporarily hold the exception handler records from an accept
702    --    statement in a selective accept. These exception handlers will
703    --    eventually be placed in the Handler_Records list of the procedure
704    --    built for this accept (see Expand_N_Selective_Accept procedure in
705    --    Exp_Ch9 for further details).
706
707    --  Access_Types_To_Process (Elist2-Sem)
708    --    Present in N_Freeze_Entity nodes for Incomplete or private types.
709    --    Contains the list of access types which may require specific treatment
710    --    when the nature of the type completion is completely known. An example
711    --    of such treatment is the generation of the associated_final_chain.
712
713    --  Actions (List1-Sem)
714    --    This field contains a sequence of actions that are associated with the
715    --    node holding the field. See the individual node types for details of
716    --    how this field is used, as well as the description of the specific use
717    --    for a particular node type.
718
719    --  Activation_Chain_Entity (Node3-Sem)
720    --    This is used in tree nodes representing task activators (blocks,
721    --    subprogram bodies, package declarations, and task bodies). It is
722    --    initially Empty, and then gets set to point to the entity for the
723    --    declared Activation_Chain variable when the first task is declared.
724    --    When tasks are declared in the corresponding declarative region this
725    --    entity is located by name (its name is always _Chain) and the declared
726    --    tasks are added to the chain. Note that N_Extended_Return_Statement
727    --    does not have this attribute, although it does have an activation
728    --    chain. This chain is used to store the tasks temporarily, and is not
729    --    used for activating them. On successful completion of the return
730    --    statement, the tasks are moved to the caller's chain, and the caller
731    --    activates them.
732
733    --  Acts_As_Spec (Flag4-Sem)
734    --    A flag set in the N_Subprogram_Body node for a subprogram body which
735    --    is acting as its own spec, except in the case of a library level
736    --    subprogram, in which case the flag is set on the parent compilation
737    --    unit node instead.
738
739    --  Actual_Designated_Subtype (Node4-Sem)
740    --    Present in N_Free_Statement and N_Explicit_Dereference nodes. If gigi
741    --    needs to known the dynamic constrained subtype of the designated
742    --    object, this attribute is set to that type. This is done for
743    --    N_Free_Statements for access-to-classwide types and access to
744    --    unconstrained packed array types, and for N_Explicit_Dereference when
745    --    the designated type is an unconstrained packed array and the
746    --    dereference is the prefix of a 'Size attribute reference.
747
748    --  Address_Warning_Posted (Flag18-Sem)
749    --    Present in N_Attribute_Definition nodes. Set to indicate that we have
750    --    posted a warning for the address clause regarding size or alignment
751    --    issues. Used to inhibit multiple redundant messages.
752
753    --  Aggregate_Bounds (Node3-Sem)
754    --    Present in array N_Aggregate nodes. If the bounds of the aggregate are
755    --    known at compile time, this field points to an N_Range node with those
756    --    bounds. Otherwise Empty.
757
758    --  All_Others (Flag11-Sem)
759    --    Present in an N_Others_Choice node. This flag is set for an others
760    --    exception where all exceptions are to be caught, even those that are
761    --    not normally handled (in particular the tasking abort signal). This
762    --    is used for translation of the at end handler into a normal exception
763    --    handler.
764
765    --  Aspect_Rep_Item (Node2-Sem)
766    --    Present in N_Aspect_Specification nodes. Points to the corresponding
767    --    pragma/attribute definition node used to process the aspect.
768
769    --  Assignment_OK (Flag15-Sem)
770    --    This flag is set in a subexpression node for an object, indicating
771    --    that the associated object can be modified, even if this would not
772    --    normally be permissible (either by direct assignment, or by being
773    --    passed as an out or in-out parameter). This is used by the expander
774    --    for a number of purposes, including initialization of constants and
775    --    limited type objects (such as tasks), setting discriminant fields,
776    --    setting tag values, etc. N_Object_Declaration nodes also have this
777    --    flag defined. Here it is used to indicate that an initialization
778    --    expression is valid, even where it would normally not be allowed
779    --    (e.g. where the type involved is limited).
780
781    --  Associated_Node (Node4-Sem)
782    --    Present in nodes that can denote an entity: identifiers, character
783    --    literals, operator symbols, expanded names, operator nodes, and
784    --    attribute reference nodes (all these nodes have an Entity field).
785    --    This field is also present in N_Aggregate, N_Selected_Component, and
786    --    N_Extension_Aggregate nodes. This field is used in generic processing
787    --    to create links between the generic template and the generic copy.
788    --    See Sem_Ch12.Get_Associated_Node for full details. Note that this
789    --    field overlaps Entity, which is fine, since, as explained in Sem_Ch12,
790    --    the normal function of Entity is not required at the point where the
791    --    Associated_Node is set. Note also, that in generic templates, this
792    --    means that the Entity field does not necessarily point to an Entity.
793    --    Since the back end is expected to ignore generic templates, this is
794    --    harmless.
795
796    --  Atomic_Sync_Required (Flag14-Sem)
797    --    This flag is set on a node for which atomic synchronization is
798    --    required for the corresponding reference or modification.
799
800    --  At_End_Proc (Node1)
801    --    This field is present in an N_Handled_Sequence_Of_Statements node.
802    --    It contains an identifier reference for the cleanup procedure to be
803    --    called. See description of this node for further details.
804
805    --  Backwards_OK (Flag6-Sem)
806    --    A flag present in the N_Assignment_Statement node. It is used only
807    --    if the type being assigned is an array type, and is set if analysis
808    --    determines that it is definitely safe to do the copy backwards, i.e.
809    --    starting at the highest addressed element. This is the case if either
810    --    the operands do not overlap, or they may overlap, but if they do,
811    --    then the left operand is at a higher address than the right operand.
812    --
813    --    Note: If neither of the flags Forwards_OK or Backwards_OK is set, it
814    --    means that the front end could not determine that either direction is
815    --    definitely safe, and a runtime check may be required if the backend
816    --    cannot figure it out. If both flags Forwards_OK and Backwards_OK are
817    --    set, it means that the front end can assure no overlap of operands.
818
819    --  Body_To_Inline (Node3-Sem)
820    --    present in subprogram declarations. Denotes analyzed but unexpanded
821    --    body of subprogram, to be used when inlining calls. Present when the
822    --    subprogram has an Inline pragma and inlining is enabled. If the
823    --    declaration is completed by a renaming_as_body, and the renamed en-
824    --    tity is a subprogram, the Body_To_Inline is the name of that entity,
825    --    which is used directly in later calls to the original subprogram.
826
827    --  Body_Required (Flag13-Sem)
828    --    A flag that appears in the N_Compilation_Unit node indicating that
829    --    the corresponding unit requires a body. For the package case, this
830    --    indicates that a completion is required. In Ada 95, if the flag is not
831    --    set for the package case, then a body may not be present. In Ada 83,
832    --    if the flag is not set for the package case, then body is optional.
833    --    For a subprogram declaration, the flag is set except in the case where
834    --    a pragma Import or Interface applies, in which case no body is
835    --    permitted (in Ada 83 or Ada 95).
836
837    --  By_Ref (Flag5-Sem)
838    --    Present in N_Simple_Return_Statement and N_Extended_Return_Statement,
839    --    this flag is set when the returned expression is already allocated on
840    --    the secondary stack and thus the result is passed by reference rather
841    --    than copied another time.
842
843    --  Cleanup_Actions (List5-Sem)
844    --    Present in block statements created for transient blocks, contains
845    --    additional cleanup actions carried over from the transient scope.
846
847    --  Check_Address_Alignment (Flag11-Sem)
848    --    A flag present in N_Attribute_Definition clause for a 'Address
849    --    attribute definition. This flag is set if a dynamic check should be
850    --    generated at the freeze point for the entity to which this address
851    --    clause applies. The reason that we need this flag is that we want to
852    --    check for range checks being suppressed at the point where the
853    --    attribute definition clause is given, rather than testing this at the
854    --    freeze point.
855
856    --  Comes_From_Extended_Return_Statement (Flag18-Sem)
857    --    Present in N_Simple_Return_Statement nodes. True if this node was
858    --    constructed as part of the N_Extended_Return_Statement expansion.
859
860    --  Compile_Time_Known_Aggregate (Flag18-Sem)
861    --    Present in N_Aggregate nodes. Set for aggregates which can be fully
862    --    evaluated at compile time without raising constraint error. Such
863    --    aggregates can be passed as is the back end without any expansion.
864    --    See Exp_Aggr for specific conditions under which this flag gets set.
865
866    --  Componentwise_Assignment (Flag14-Sem)
867    --    Present in N_Assignment_Statement nodes. Set for a record assignment
868    --    where all that needs doing is to expand it into component-by-component
869    --    assignments. This is used internally for the case of tagged types with
870    --    rep clauses, where we need to avoid recursion (we don't want to try to
871    --    generate a call to the primitive operation, because this is the case
872    --    where we are compiling the primitive operation). Note that when we are
873    --    expanding component assignments in this case, we never assign the _tag
874    --    field, but we recursively assign components of the parent type.
875
876    --  Condition_Actions (List3-Sem)
877    --    This field appears in else-if nodes and in the iteration scheme node
878    --    for while loops. This field is only used during semantic processing to
879    --    temporarily hold actions inserted into the tree. In the tree passed
880    --    to gigi, the condition actions field is always set to No_List. For
881    --    details on how this field is used, see the routine Insert_Actions in
882    --    package Exp_Util, and also the expansion routines for the relevant
883    --    nodes.
884
885    --  Context_Pending (Flag16-Sem)
886    --    This field appears in Compilation_Unit nodes, to indicate that the
887    --    context of the unit is being compiled. Used to detect circularities
888    --    that are not otherwise detected by the loading mechanism. Such
889    --    circularities can occur in the presence of limited and non-limited
890    --    with_clauses that mention the same units.
891
892    --  Controlling_Argument (Node1-Sem)
893    --    This field is set in procedure and function call nodes if the call
894    --    is a dispatching call (it is Empty for a non-dispatching call). It
895    --    indicates the source of the call's controlling tag. For procedure
896    --    calls, the Controlling_Argument is one of the actuals. For function
897    --    that has a dispatching result, it is an entity in the context of the
898    --    call that can provide a tag, or else it is the tag of the root type
899    --    of the class. It can also specify a tag directly rather than being a
900    --    tagged object. The latter is needed by the implementations of AI-239
901    --    and AI-260.
902
903    --  Conversion_OK (Flag14-Sem)
904    --    A flag set on type conversion nodes to indicate that the conversion
905    --    is to be considered as being valid, even though it is the case that
906    --    the conversion is not valid Ada. This is used for attributes Enum_Rep,
907    --    Fixed_Value and Integer_Value, for internal conversions done for
908    --    fixed-point operations, and for certain conversions for calls to
909    --    initialization procedures. If Conversion_OK is set, then Etype must be
910    --    set (the analyzer assumes that Etype has been set). For the case of
911    --    fixed-point operands, it also indicates that the conversion is to be
912    --    direct conversion of the underlying integer result, with no regard to
913    --    the small operand.
914
915    --  Convert_To_Return_False (Flag13-Sem)
916    --    Present in N_Raise_Expression nodes that appear in the body of the
917    --    special predicateM function used to test a predicate in the context
918    --    of a membership test, where raise expression results in returning a
919    --    value of False rather than raising an exception.
920
921    --  Corresponding_Aspect (Node3-Sem)
922    --    Present in N_Pragma node. Used to point back to the source aspect from
923    --    the corresponding pragma. This field is Empty for source pragmas.
924
925    --  Corresponding_Body (Node5-Sem)
926    --    This field is set in subprogram declarations, package declarations,
927    --    entry declarations of protected types, and in generic units. It points
928    --    to the defining entity for the corresponding body (NOT the node for
929    --    the body itself).
930
931    --  Corresponding_Formal_Spec (Node3-Sem)
932    --    This field is set in subprogram renaming declarations, where it points
933    --    to the defining entity for a formal subprogram in the case where the
934    --    renaming corresponds to a generic formal subprogram association in an
935    --    instantiation. The field is Empty if the renaming does not correspond
936    --    to such a formal association.
937
938    --  Corresponding_Generic_Association (Node5-Sem)
939    --    This field is defined for object declarations and object renaming
940    --    declarations. It is set for the declarations within an instance that
941    --    map generic formals to their actuals. If set, the field points to
942    --    a generic_association which is the original parent of the expression
943    --    or name appearing in the declaration. This simplifies ASIS queries.
944
945    --  Corresponding_Integer_Value (Uint4-Sem)
946    --    This field is set in real literals of fixed-point types (it is not
947    --    used for floating-point types). It contains the integer value used
948    --    to represent the fixed-point value. It is also set on the universal
949    --    real literals used to represent bounds of fixed-point base types
950    --    and their first named subtypes.
951
952    --  Corresponding_Spec (Node5-Sem)
953    --    This field is set in subprogram, package, task, and protected body
954    --    nodes, where it points to the defining entity in the corresponding
955    --    spec. The attribute is also set in N_With_Clause nodes where it points
956    --    to the defining entity for the with'ed spec, and in a subprogram
957    --    renaming declaration when it is a Renaming_As_Body. The field is Empty
958    --    if there is no corresponding spec, as in the case of a subprogram body
959    --    that serves as its own spec.
960    --
961    --    In Ada 2012, Corresponding_Spec is set on expression functions that
962    --    complete a subprogram declaration.
963
964    --  Corresponding_Spec_Of_Stub (Node2-Sem)
965    --    This field is present in subprogram, package, task and protected body
966    --    stubs where it points to the corresponding spec of the stub. Due to
967    --    clashes in the structure of nodes, we cannot use Corresponding_Spec.
968
969    --  Corresponding_Stub (Node3-Sem)
970    --    This field is present in an N_Subunit node. It holds the node in
971    --    the parent unit that is the stub declaration for the subunit. It is
972    --    set when analysis of the stub forces loading of the proper body. If
973    --    expansion of the proper body creates new declarative nodes, they are
974    --    inserted at the point of the corresponding_stub.
975
976    --  Dcheck_Function (Node5-Sem)
977    --    This field is present in an N_Variant node, It references the entity
978    --    for the discriminant checking function for the variant.
979
980    --  Default_Expression (Node5-Sem)
981    --    This field is Empty if there is no default expression. If there is a
982    --    simple default expression (one with no side effects), then this field
983    --    simply contains a copy of the Expression field (both point to the tree
984    --    for the default expression). Default_Expression is used for
985    --    conformance checking.
986
987    --  Default_Storage_Pool (Node3-Sem)
988    --    This field is present in N_Compilation_Unit_Aux nodes. It is set to a
989    --    copy of Opt.Default_Pool at the end of the compilation unit. See
990    --    package Opt for details. This is used for inheriting the
991    --    Default_Storage_Pool in child units.
992
993    --  Discr_Check_Funcs_Built (Flag11-Sem)
994    --    This flag is present in N_Full_Type_Declaration nodes. It is set when
995    --    discriminant checking functions are constructed. The purpose is to
996    --    avoid attempting to set these functions more than once.
997
998    --  Do_Accessibility_Check (Flag13-Sem)
999    --    This flag is set on N_Parameter_Specification nodes to indicate
1000    --    that an accessibility check is required for the parameter. It is
1001    --    not yet decided who takes care of this check (TBD ???).
1002
1003    --  Do_Discriminant_Check (Flag1-Sem)
1004    --    This flag is set on N_Selected_Component nodes to indicate that a
1005    --    discriminant check is required using the discriminant check routine
1006    --    associated with the selector. The actual check is generated by the
1007    --    expander when processing selected components. In the case of
1008    --    Unchecked_Union, the flag is also set, but no discriminant check
1009    --    routine is associated with the selector, and the expander does not
1010    --    generate a check. This flag is also present in assignment statements
1011    --    (and set if the assignment requires a discriminant check), and in type
1012    --    conversion nodes (and set if the conversion requires a check).
1013
1014    --  Do_Division_Check (Flag13-Sem)
1015    --    This flag is set on a division operator (/ mod rem) to indicate
1016    --    that a zero divide check is required. The actual check is dealt
1017    --    with by the backend (all the front end does is to set the flag).
1018
1019    --  Do_Length_Check (Flag4-Sem)
1020    --    This flag is set in an N_Assignment_Statement, N_Op_And, N_Op_Or,
1021    --    N_Op_Xor, or N_Type_Conversion node to indicate that a length check
1022    --    is required. It is not determined who deals with this flag (???).
1023
1024    --  Do_Overflow_Check (Flag17-Sem)
1025    --    This flag is set on an operator where an overflow check is required on
1026    --    the operation. The actual check is dealt with by the backend (all the
1027    --    front end does is to set the flag). The other cases where this flag is
1028    --    used is on a Type_Conversion node and for attribute reference nodes.
1029    --    For a type conversion, it means that the conversion is from one base
1030    --    type to another, and the value may not fit in the target base type.
1031    --    See also the description of Do_Range_Check for this case. The only
1032    --    attribute references which use this flag are Pred and Succ, where it
1033    --    means that the result should be checked for going outside the base
1034    --    range. Note that this flag is not set for modular types. This flag is
1035    --    also set on if and case expression nodes if we are operating in either
1036    --    MINIMIZED or ELIMINATED overflow checking mode (to make sure that we
1037    --    properly process overflow checking for dependent expressions).
1038
1039    --  Do_Range_Check (Flag9-Sem)
1040    --    This flag is set on an expression which appears in a context where a
1041    --    range check is required. The target type is clear from the context.
1042    --    The contexts in which this flag can appear are the following:
1043
1044    --      Right side of an assignment. In this case the target type is
1045    --      taken from the left side of the assignment, which is referenced
1046    --      by the Name of the N_Assignment_Statement node.
1047
1048    --      Subscript expressions in an indexed component. In this case the
1049    --      target type is determined from the type of the array, which is
1050    --      referenced by the Prefix of the N_Indexed_Component node.
1051
1052    --      Argument expression for a parameter, appearing either directly in
1053    --      the Parameter_Associations list of a call or as the Expression of an
1054    --      N_Parameter_Association node that appears in this list. In either
1055    --      case, the check is against the type of the formal. Note that the
1056    --      flag is relevant only in IN and IN OUT parameters, and will be
1057    --      ignored for OUT parameters, where no check is required in the call,
1058    --      and if a check is required on the return, it is generated explicitly
1059    --      with a type conversion.
1060
1061    --      Initialization expression for the initial value in an object
1062    --      declaration. In this case the Do_Range_Check flag is set on
1063    --      the initialization expression, and the check is against the
1064    --      range of the type of the object being declared.
1065
1066    --      The expression of a type conversion. In this case the range check is
1067    --      against the target type of the conversion. See also the use of
1068    --      Do_Overflow_Check on a type conversion. The distinction is that the
1069    --      overflow check protects against a value that is outside the range of
1070    --      the target base type, whereas a range check checks that the
1071    --      resulting value (which is a value of the base type of the target
1072    --      type), satisfies the range constraint of the target type.
1073
1074    --    Note: when a range check is required in contexts other than those
1075    --    listed above (e.g. in a return statement), an additional type
1076    --    conversion node is introduced to represent the required check.
1077
1078    --    A special case arises for the arguments of the Pred/Succ attributes.
1079    --    Here the range check needed is against First + 1 ..  Last (Pred) or
1080    --    First .. Last - 1 (Succ) of the corresponding base type. Essentially
1081    --    these checks are what would be performed within the implicit body of
1082    --    the functions that correspond to these attributes. In these cases,
1083    --    the Do_Range check flag is set on the argument to the attribute
1084    --    function, and the back end must special case the appropriate range
1085    --    to check against.
1086
1087    --  Do_Storage_Check (Flag17-Sem)
1088    --    This flag is set in an N_Allocator node to indicate that a storage
1089    --    check is required for the allocation, or in an N_Subprogram_Body node
1090    --    to indicate that a stack check is required in the subprogram prolog.
1091    --    The N_Allocator case is handled by the routine that expands the call
1092    --    to the runtime routine. The N_Subprogram_Body case is handled by the
1093    --    backend, and all the semantics does is set the flag.
1094
1095    --  Do_Tag_Check (Flag13-Sem)
1096    --    This flag is set on an N_Assignment_Statement, N_Function_Call,
1097    --    N_Procedure_Call_Statement, N_Type_Conversion,
1098    --    N_Simple_Return_Statement, or N_Extended_Return_Statement
1099    --    node to indicate that the tag check can be suppressed. It is not
1100    --    yet decided how this flag is used (TBD ???).
1101
1102    --  Elaborate_Present (Flag4-Sem)
1103    --    This flag is set in the N_With_Clause node to indicate that pragma
1104    --    Elaborate pragma appears for the with'ed units.
1105
1106    --  Elaborate_All_Desirable (Flag9-Sem)
1107    --    This flag is set in the N_With_Clause mode to indicate that the static
1108    --    elaboration processing has determined that an Elaborate_All pragma is
1109    --    desirable for correct elaboration for this unit.
1110
1111    --  Elaborate_All_Present (Flag14-Sem)
1112    --    This flag is set in the N_With_Clause node to indicate that a
1113    --    pragma Elaborate_All pragma appears for the with'ed units.
1114
1115    --  Elaborate_Desirable (Flag11-Sem)
1116    --    This flag is set in the N_With_Clause mode to indicate that the static
1117    --    elaboration processing has determined that an Elaborate pragma is
1118    --    desirable for correct elaboration for this unit.
1119
1120    --  Elaboration_Boolean (Node2-Sem)
1121    --    This field is present in function and procedure specification nodes.
1122    --    If set, it points to the entity for a Boolean flag that must be tested
1123    --    for certain calls to check for access before elaboration. See body of
1124    --    Sem_Elab for further details. This field is Empty if no elaboration
1125    --    boolean is required.
1126
1127    --  Else_Actions (List3-Sem)
1128    --    This field is present in if expression nodes. During code
1129    --    expansion we use the Insert_Actions procedure (in Exp_Util) to insert
1130    --    actions at an appropriate place in the tree to get elaborated at the
1131    --    right time. For if expressions, we have to be sure that the actions
1132    --    for the Else branch are only elaborated if the condition is False.
1133    --    The Else_Actions field is used as a temporary parking place for
1134    --    these actions. The final tree is always rewritten to eliminate the
1135    --    need for this field, so in the tree passed to Gigi, this field is
1136    --    always set to No_List.
1137
1138    --  Enclosing_Variant (Node2-Sem)
1139    --    This field is present in the N_Variant node and identifies the Node_Id
1140    --    corresponding to the immediately enclosing variant when the variant is
1141    --    nested, and N_Empty otherwise. Set during semantic processing of the
1142    --    variant part of a record type.
1143
1144    --  Entity (Node4-Sem)
1145    --    Appears in all direct names (identifiers, character literals, and
1146    --    operator symbols), as well as expanded names, and attributes that
1147    --    denote entities, such as 'Class. Points to entity for corresponding
1148    --    defining occurrence. Set after name resolution. For identifiers in a
1149    --    WITH list, the corresponding defining occurrence is in a separately
1150    --    compiled file, and Entity must be set by the library Load procedure.
1151    --
1152    --    Note: During name resolution, the value in Entity may be temporarily
1153    --    incorrect (e.g. during overload resolution, Entity is initially set to
1154    --    the first possible correct interpretation, and then later modified if
1155    --    necessary to contain the correct value after resolution).
1156    --
1157    --    Note: This field overlaps Associated_Node, which is used during
1158    --    generic processing (see Sem_Ch12 for details). Note also that in
1159    --    generic templates, this means that the Entity field does not always
1160    --    point to an Entity. Since the back end is expected to ignore generic
1161    --    templates, this is harmless.
1162    --
1163    --    Note: This field also appears in N_Attribute_Definition_Clause nodes.
1164    --    It is used only for stream attributes definition clauses. In this
1165    --    case, it denotes a (possibly dummy) subprogram entity that is declared
1166    --    conceptually at the point of the clause. Thus the visibility of the
1167    --    attribute definition clause (in the sense of 8.3(23) as amended by
1168    --    AI-195) can be checked by testing the visibility of that subprogram.
1169    --
1170    --    Note: Normally the Entity field of an identifier points to the entity
1171    --    for the corresponding defining identifier, and hence the Chars field
1172    --    of an identifier will match the Chars field of the entity. However,
1173    --    there is no requirement that these match, and there are obscure cases
1174    --    of generated code where they do not match.
1175
1176    --    Note: Ada 2012 aspect specifications require additional links between
1177    --    identifiers and various attributes. These attributes can be of
1178    --    arbitrary types, and the entity field of identifiers that denote
1179    --    aspects must be used to store arbitrary expressions for later semantic
1180    --    checks. See section on aspect specifications for details.
1181
1182    --  Entity_Or_Associated_Node (Node4-Sem)
1183    --    A synonym for both Entity and Associated_Node. Used by convention in
1184    --    the code when referencing this field in cases where it is not known
1185    --    whether the field contains an Entity or an Associated_Node.
1186
1187    --  Etype (Node5-Sem)
1188    --    Appears in all expression nodes, all direct names, and all entities.
1189    --    Points to the entity for the related type. Set after type resolution.
1190    --    Normally this is the actual subtype of the expression. However, in
1191    --    certain contexts such as the right side of an assignment, subscripts,
1192    --    arguments to calls, returned value in a function, initial value etc.
1193    --    it is the desired target type. In the event that this is different
1194    --    from the actual type, the Do_Range_Check flag will be set if a range
1195    --    check is required. Note: if the Is_Overloaded flag is set, then Etype
1196    --    points to an essentially arbitrary choice from the possible set of
1197    --    types.
1198
1199    --  Exception_Junk (Flag8-Sem)
1200    --    This flag is set in a various nodes appearing in a statement sequence
1201    --    to indicate that the corresponding node is an artifact of the
1202    --    generated code for exception handling, and should be ignored when
1203    --    analyzing the control flow of the relevant sequence of statements
1204    --    (e.g. to check that it does not end with a bad return statement).
1205
1206    --  Exception_Label (Node5-Sem)
1207    --    Appears in N_Push_xxx_Label nodes. Points to the entity of the label
1208    --    to be used for transforming the corresponding exception into a goto,
1209    --    or contains Empty, if this exception is not to be transformed. Also
1210    --    appears in N_Exception_Handler nodes, where, if set, it indicates
1211    --    that there may be a local raise for the handler, so that expansion
1212    --    to allow a goto is required (and this field contains the label for
1213    --    this goto). See Exp_Ch11.Expand_Local_Exception_Handlers for details.
1214
1215    --  Expansion_Delayed (Flag11-Sem)
1216    --    Set on aggregates and extension aggregates that need a top-down rather
1217    --    than bottom-up expansion. Typically aggregate expansion happens bottom
1218    --    up. For nested aggregates the expansion is delayed until the enclosing
1219    --    aggregate itself is expanded, e.g. in the context of a declaration. To
1220    --    delay it we set this flag. This is done to avoid creating a temporary
1221    --    for each level of a nested aggregates, and also to prevent the
1222    --    premature generation of constraint checks. This is also a requirement
1223    --    if we want to generate the proper attachment to the internal
1224    --    finalization lists (for record with controlled components). Top down
1225    --    expansion of aggregates is also used for in-place array aggregate
1226    --    assignment or initialization. When the full context is known, the
1227    --    target of the assignment or initialization is used to generate the
1228    --    left-hand side of individual assignment to each sub-component.
1229
1230    --  First_Inlined_Subprogram (Node3-Sem)
1231    --    Present in the N_Compilation_Unit node for the main program. Points
1232    --    to a chain of entities for subprograms that are to be inlined. The
1233    --    Next_Inlined_Subprogram field of these entities is used as a link
1234    --    pointer with Empty marking the end of the list. This field is Empty
1235    --    if there are no inlined subprograms or inlining is not active.
1236
1237    --  First_Named_Actual (Node4-Sem)
1238    --    Present in procedure call statement and function call nodes, and also
1239    --    in Intrinsic nodes. Set during semantic analysis to point to the first
1240    --    named parameter where parameters are ordered by declaration order (as
1241    --    opposed to the actual order in the call which may be different due to
1242    --    named associations). Note: this field points to the explicit actual
1243    --    parameter itself, not the N_Parameter_Association node (its parent).
1244
1245    --  First_Real_Statement (Node2-Sem)
1246    --    Present in N_Handled_Sequence_Of_Statements node. Normally set to
1247    --    Empty. Used only when declarations are moved into the statement part
1248    --    of a construct as a result of wrapping an AT END handler that is
1249    --    required to cover the declarations. In this case, this field is used
1250    --    to remember the location in the statements list of the first real
1251    --    statement, i.e. the statement that used to be first in the statement
1252    --    list before the declarations were prepended.
1253
1254    --  First_Subtype_Link (Node5-Sem)
1255    --    Present in N_Freeze_Entity node for an anonymous base type that is
1256    --    implicitly created by the declaration of a first subtype. It points
1257    --    to the entity for the first subtype.
1258
1259    --  Float_Truncate (Flag11-Sem)
1260    --    A flag present in type conversion nodes. This is used for float to
1261    --    integer conversions where truncation is required rather than rounding.
1262    --    Note that Gigi does not handle type conversions from real to integer
1263    --    with rounding (see Expand_N_Type_Conversion).
1264
1265    --  Forwards_OK (Flag5-Sem)
1266    --    A flag present in the N_Assignment_Statement node. It is used only
1267    --    if the type being assigned is an array type, and is set if analysis
1268    --    determines that it is definitely safe to do the copy forwards, i.e.
1269    --    starting at the lowest addressed element. This is the case if either
1270    --    the operands do not overlap, or they may overlap, but if they do,
1271    --    then the left operand is at a lower address than the right operand.
1272    --
1273    --    Note: If neither of the flags Forwards_OK or Backwards_OK is set, it
1274    --    means that the front end could not determine that either direction is
1275    --    definitely safe, and a runtime check may be required if the backend
1276    --    cannot figure it out. If both flags Forwards_OK and Backwards_OK are
1277    --    set, it means that the front end can assure no overlap of operands.
1278
1279    --  From_Aspect_Specification (Flag13-Sem)
1280    --    Processing of aspect specifications typically results in insertion in
1281    --    the tree of corresponding pragma or attribute definition clause nodes.
1282    --    These generated nodes have the From_Aspect_Specification flag set to
1283    --    indicate that they came from aspect specifications originally.
1284
1285    --  From_At_End (Flag4-Sem)
1286    --    This flag is set on an N_Raise_Statement node if it corresponds to
1287    --    the reraise statement generated as the last statement of an AT END
1288    --    handler when SJLJ exception handling is active. It is used to stop
1289    --    a bogus violation of restriction (No_Exception_Propagation), bogus
1290    --    because if the restriction is set, the reraise is not generated.
1291
1292    --  From_At_Mod (Flag4-Sem)
1293    --    This flag is set on the attribute definition clause node that is
1294    --    generated by a transformation of an at mod phrase in a record
1295    --    representation clause. This is used to give slightly different (Ada 83
1296    --    compatible) semantics to such a clause, namely it is used to specify a
1297    --    minimum acceptable alignment for the base type and all subtypes. In
1298    --    Ada 95 terms, the actual alignment of the base type and all subtypes
1299    --    must be a multiple of the given value, and the representation clause
1300    --    is considered to be type specific instead of subtype specific.
1301
1302    --  From_Conditional_Expression (Flag1-Sem)
1303    --    This flag is set on if and case statements generated by the expansion
1304    --    of if and case expressions respectively. The flag is used to suppress
1305    --    any finalization of controlled objects found within these statements.
1306
1307    --  From_Default (Flag6-Sem)
1308    --    This flag is set on the subprogram renaming declaration created in an
1309    --    instance for a formal subprogram, when the formal is declared with a
1310    --    box, and there is no explicit actual. If the flag is present, the
1311    --    declaration is treated as an implicit reference to the formal in the
1312    --    ali file.
1313
1314    --  Generalized_Indexing (Node4-Sem)
1315    --    Present in N_Indexed_Component nodes. Set for Indexed_Component nodes
1316    --    that are Ada 2012 container indexing operations. The value of the
1317    --    attribute is a function call (possibly dereferenced) that corresponds
1318    --    to the proper expansion of the source indexing operation. Before
1319    --    expansion, the source node is rewritten as the resolved generalized
1320    --    indexing. In ASIS mode, the expansion does not take place, so that
1321    --    the source is preserved and properly annotated with types.
1322
1323    --  Generic_Parent (Node5-Sem)
1324    --    Generic_Parent is defined on declaration nodes that are instances. The
1325    --    value of Generic_Parent is the generic entity from which the instance
1326    --    is obtained. Generic_Parent is also defined for the renaming
1327    --    declarations and object declarations created for the actuals in an
1328    --    instantiation. The generic parent of such a declaration is the
1329    --    corresponding generic association in the Instantiation node.
1330
1331    --  Generic_Parent_Type (Node4-Sem)
1332    --    Generic_Parent_Type is defined on Subtype_Declaration nodes for the
1333    --    actuals of formal private and derived types. Within the instance, the
1334    --    operations on the actual are those inherited from the parent. For a
1335    --    formal private type, the parent type is the generic type itself. The
1336    --    Generic_Parent_Type is also used in an instance to determine whether a
1337    --    private operation overrides an inherited one.
1338
1339    --  Handler_List_Entry (Node2-Sem)
1340    --    This field is present in N_Object_Declaration nodes. It is set only
1341    --    for the Handler_Record entry generated for an exception in zero cost
1342    --    exception handling mode. It references the corresponding item in the
1343    --    handler list, and is used to delete this entry if the corresponding
1344    --    handler is deleted during optimization. For further details on why
1345    --    this is required, see Exp_Ch11.Remove_Handler_Entries.
1346
1347    --  Has_Dereference_Action (Flag13-Sem)
1348    --    This flag is present in N_Explicit_Dereference nodes. It is set to
1349    --    indicate that the expansion has aready produced a call to primitive
1350    --    Dereference of a System.Checked_Pools.Checked_Pool implementation.
1351    --    Such dereference actions are produced for debugging purposes.
1352
1353    --  Has_Dynamic_Length_Check (Flag10-Sem)
1354    --    This flag is present in all expression nodes. It is set to indicate
1355    --    that one of the routines in unit Checks has generated a length check
1356    --    action which has been inserted at the flagged node. This is used to
1357    --    avoid the generation of duplicate checks.
1358
1359    --  Has_Dynamic_Range_Check (Flag12-Sem)
1360    --    This flag is present in N_Subtype_Declaration nodes and on all
1361    --    expression nodes. It is set to indicate that one of the routines in
1362    --    unit Checks has generated a range check action which has been inserted
1363    --    at the flagged node. This is used to avoid the generation of duplicate
1364    --    checks. Why does this occur on N_Subtype_Declaration nodes, what does
1365    --    it mean in that context???
1366
1367    --  Has_Local_Raise (Flag8-Sem)
1368    --    Present in exception handler nodes. Set if the handler can be entered
1369    --    via a local raise that gets transformed to a goto statement. This will
1370    --    always be set if Local_Raise_Statements is non-empty, but can also be
1371    --    set as a result of generation of N_Raise_xxx nodes, or flags set in
1372    --    nodes requiring generation of back end checks.
1373
1374    --  Has_No_Elaboration_Code (Flag17-Sem)
1375    --    A flag that appears in the N_Compilation_Unit node to indicate whether
1376    --    or not elaboration code is present for this unit. It is initially set
1377    --    true for subprogram specs and bodies and for all generic units and
1378    --    false for non-generic package specs and bodies. Gigi may set the flag
1379    --    in the non-generic package case if it determines that no elaboration
1380    --    code is generated. Note that this flag is not related to the
1381    --    Is_Preelaborated status, there can be preelaborated packages that
1382    --    generate elaboration code, and non-preelaborated packages which do
1383    --    not generate elaboration code.
1384
1385    --  Has_Pragma_Suppress_All (Flag14-Sem)
1386    --    This flag is set in an N_Compilation_Unit node if the Suppress_All
1387    --    pragma appears anywhere in the unit. This accommodates the rather
1388    --    strange placement rules of other compilers (DEC permits it at the
1389    --    end of a unit, and Rational allows it as a program unit pragma). We
1390    --    allow it anywhere at all, and consider it equivalent to a pragma
1391    --    Suppress (All_Checks) appearing at the start of the configuration
1392    --    pragmas for the unit.
1393
1394    --  Has_Private_View (Flag11-Sem)
1395    --    A flag present in generic nodes that have an entity, to indicate that
1396    --    the node has a private type. Used to exchange private and full
1397    --    declarations if the visibility at instantiation is different from the
1398    --    visibility at generic definition.
1399
1400    --  Has_Relative_Deadline_Pragma (Flag9-Sem)
1401    --    A flag present in N_Subprogram_Body and N_Task_Definition nodes to
1402    --    flag the presence of a pragma Relative_Deadline.
1403
1404    --  Has_Self_Reference (Flag13-Sem)
1405    --    Present in N_Aggregate and N_Extension_Aggregate. Indicates that one
1406    --    of the expressions contains an access attribute reference to the
1407    --    enclosing type. Such a self-reference can only appear in default-
1408    --    initialized aggregate for a record type.
1409
1410    --  Has_SP_Choice (Flag15-Sem)
1411    --    Present in all nodes containing a Discrete_Choices field (N_Variant,
1412    --    N_Case_Expression_Alternative, N_Case_Statement_Alternative). Set to
1413    --    True if the Discrete_Choices list has at least one occurrence of a
1414    --    statically predicated subtype.
1415
1416    --  Has_Storage_Size_Pragma (Flag5-Sem)
1417    --    A flag present in an N_Task_Definition node to flag the presence of a
1418    --    Storage_Size pragma.
1419
1420    --  Has_Wide_Character (Flag11-Sem)
1421    --    Present in string literals, set if any wide character (i.e. character
1422    --    code outside the Character range but within Wide_Character range)
1423    --    appears in the string. Used to implement pragma preference rules.
1424
1425    --  Has_Wide_Wide_Character (Flag13-Sem)
1426    --    Present in string literals, set if any wide character (i.e. character
1427    --    code outside the Wide_Character range) appears in the string. Used to
1428    --    implement pragma preference rules.
1429
1430    --  Header_Size_Added (Flag11-Sem)
1431    --    Present in N_Attribute_Reference nodes, set only for attribute
1432    --    Max_Size_In_Storage_Elements. The flag indicates that the size of the
1433    --    hidden list header used by the runtime finalization support has been
1434    --    added to the size of the prefix. The flag also prevents the infinite
1435    --    expansion of the same attribute in the said context.
1436
1437    --  Hidden_By_Use_Clause (Elist4-Sem)
1438    --     An entity list present in use clauses that appear within
1439    --     instantiations. For the resolution of local entities, entities
1440    --     introduced by these use clauses have priority over global ones, and
1441    --     outer entities must be explicitly hidden/restored on exit.
1442
1443    --  Implicit_With (Flag16-Sem)
1444    --    This flag is set in the N_With_Clause node that is implicitly
1445    --    generated for runtime units that are loaded by the expander, and also
1446    --    for package System, if it is loaded implicitly by a use of the
1447    --    'Address or 'Tag attribute. ???There are other implicit with clauses
1448    --    as well.
1449
1450    --  Implicit_With_From_Instantiation (Flag12-Sem)
1451    --     Set in N_With_Clause nodes from generic instantiations.
1452
1453    --  Import_Interface_Present (Flag16-Sem)
1454    --     This flag is set in an Interface or Import pragma if a matching
1455    --     pragma of the other kind is also present. This is used to avoid
1456    --     generating some unwanted error messages.
1457
1458    --  Includes_Infinities (Flag11-Sem)
1459    --    This flag is present in N_Range nodes. It is set for the range of
1460    --    unconstrained float types defined in Standard, which include not only
1461    --    the given range of values, but also legitimately can include infinite
1462    --    values. This flag is false for any float type for which an explicit
1463    --    range is given by the programmer, even if that range is identical to
1464    --    the range for Float.
1465
1466    --  Incomplete_View (Node2-Sem)
1467    --    Present in full type declarations that are completions of incomplete
1468    --    type declarations. Denotes the corresponding incomplete type
1469    --    declaration. Used to simplify the retrieval of primitive operations
1470    --    that may be declared between the partial and the full view of an
1471    --    untagged type.
1472
1473    --  Inherited_Discriminant (Flag13-Sem)
1474    --    This flag is present in N_Component_Association nodes. It indicates
1475    --    that a given component association in an extension aggregate is the
1476    --    value obtained from a constraint on an ancestor. Used to prevent
1477    --    double expansion when the aggregate has expansion delayed.
1478
1479    --  Instance_Spec (Node5-Sem)
1480    --    This field is present in generic instantiation nodes, and also in
1481    --    formal package declaration nodes (formal package declarations are
1482    --    treated in a manner very similar to package instantiations). It points
1483    --    to the node for the spec of the instance, inserted as part of the
1484    --    semantic processing for instantiations in Sem_Ch12.
1485
1486    --  Is_Accessibility_Actual (Flag13-Sem)
1487    --    Present in N_Parameter_Association nodes. True if the parameter is
1488    --    an extra actual that carries the accessibility level of the actual
1489    --    for an access parameter, in a function that dispatches on result and
1490    --    is called in a dispatching context. Used to prevent a formal/actual
1491    --    mismatch when the call is rewritten as a dispatching call.
1492
1493    --  Is_Asynchronous_Call_Block (Flag7-Sem)
1494    --    A flag set in a Block_Statement node to indicate that it is the
1495    --    expansion of an asynchronous entry call. Such a block needs cleanup
1496    --    handler to assure that the call is cancelled.
1497
1498    --  Is_Boolean_Aspect (Flag16-Sem)
1499    --    Present in N_Aspect_Specification node. Set if the aspect is for a
1500    --    boolean aspect (i.e. Aspect_Id is in Boolean_Aspect subtype).
1501
1502    --  Is_Checked (Flag11-Sem)
1503    --    Present in N_Aspect_Specification and N_Pragma nodes. Set for an
1504    --    assertion aspect or pragma, or check pragma for an assertion, that
1505    --    is to be checked at run time. If either Is_Checked or Is_Ignored
1506    --    is set (they cannot both be set), then this means that the status of
1507    --    the pragma has been checked at the appropriate point and should not
1508    --    be further modified (in some cases these flags are copied when a
1509    --    pragma is rewritten).
1510
1511    --  Is_Component_Left_Opnd  (Flag13-Sem)
1512    --  Is_Component_Right_Opnd (Flag14-Sem)
1513    --    Present in concatenation nodes, to indicate that the corresponding
1514    --    operand is of the component type of the result. Used in resolving
1515    --    concatenation nodes in instances.
1516
1517    --  Is_Delayed_Aspect (Flag14-Sem)
1518    --    Present in N_Pragma and N_Attribute_Definition_Clause nodes which
1519    --    come from aspect specifications, where the evaluation of the aspect
1520    --    must be delayed to the freeze point. This flag is also set True in
1521    --    the corresponding N_Aspect_Specification node.
1522
1523    --  Is_Controlling_Actual (Flag16-Sem)
1524    --    This flag is set on in an expression that is a controlling argument in
1525    --    a dispatching call. It is off in all other cases. See Sem_Disp for
1526    --    details of its use.
1527
1528    --  Is_Disabled (Flag15-Sem)
1529    --    A flag set in an N_Aspect_Specification or N_Pragma node if there was
1530    --    a Check_Policy or Assertion_Policy (or in the case of a Debug_Pragma)
1531    --    a Debug_Policy pragma that resulted in totally disabling the flagged
1532    --    aspect or policy as a result of using the GNAT-defined policy DISABLE.
1533    --    If this flag is set, the aspect or policy is not analyzed for semantic
1534    --    correctness, so any expressions etc will not be marked as analyzed.
1535
1536    --  Is_Dynamic_Coextension (Flag18-Sem)
1537    --    Present in allocator nodes, to indicate that this is an allocator
1538    --    for an access discriminant of a dynamically allocated object. The
1539    --    coextension must be deallocated and finalized at the same time as
1540    --    the enclosing object.
1541
1542    --  Is_Entry_Barrier_Function (Flag8-Sem)
1543    --    This flag is set in an N_Subprogram_Body node which is the expansion
1544    --    of an entry barrier from a protected entry body. It is used for the
1545    --    circuitry checking for incorrect use of Current_Task.
1546
1547    --  Is_Expanded_Build_In_Place_Call (Flag11-Sem)
1548    --    This flag is set in an N_Function_Call node to indicate that the extra
1549    --    actuals to support a build-in-place style of call have been added to
1550    --    the call.
1551
1552    --  Is_Finalization_Wrapper (Flag9-Sem);
1553    --    This flag is present in N_Block_Statement nodes. It is set when the
1554    --    block acts as a wrapper of a handled construct which has controlled
1555    --    objects. The wrapper prevents interference between exception handlers
1556    --    and At_End handlers.
1557
1558    --  Is_Ignored (Flag9-Sem)
1559    --    A flag set in an N_Aspect_Specification or N_Pragma node if there was
1560    --    a Check_Policy or Assertion_Policy (or in the case of a Debug_Pragma)
1561    --    a Debug_Policy pragma that specified a policy of IGNORE, DISABLE, or
1562    --    OFF, for the pragma/aspect. If there was a Policy pragma specifying
1563    --    a Policy of ON or CHECK, then this flag is reset. If no Policy pragma
1564    --    gives a policy for the aspect or pragma, then there are two cases. For
1565    --    an assertion aspect or pragma (one of the assertion kinds allowed in
1566    --    an Assertion_Policy pragma), then Is_Ignored is set if assertions are
1567    --    ignored because of the absence of a -gnata switch. For any other
1568    --    aspects or pragmas, the flag is off. If this flag is set, the
1569    --    aspect/pragma is fully analyzed and checked for other syntactic
1570    --    and semantic errors, but it does not have any semantic effect.
1571
1572    --  Is_In_Discriminant_Check (Flag11-Sem)
1573    --    This flag is present in a selected component, and is used to indicate
1574    --    that the reference occurs within a discriminant check. The
1575    --    significance is that optimizations based on assuming that the
1576    --    discriminant check has a correct value cannot be performed in this
1577    --    case (or the discriminant check may be optimized away).
1578
1579    --  Is_Machine_Number (Flag11-Sem)
1580    --    This flag is set in an N_Real_Literal node to indicate that the value
1581    --    is a machine number. This avoids some unnecessary cases of converting
1582    --    real literals to machine numbers.
1583
1584    --  Is_Null_Loop (Flag16-Sem)
1585    --    This flag is set in an N_Loop_Statement node if the corresponding loop
1586    --    can be determined to be null at compile time. This is used to remove
1587    --    the loop entirely at expansion time.
1588
1589    --  Is_Overloaded (Flag5-Sem)
1590    --    A flag present in all expression nodes. Used temporarily during
1591    --    overloading determination. The setting of this flag is not relevant
1592    --    once overloading analysis is complete.
1593
1594    --  Is_Power_Of_2_For_Shift (Flag13-Sem)
1595    --    A flag present only in N_Op_Expon nodes. It is set when the
1596    --    exponentiation is of the form 2 ** N, where the type of N is an
1597    --    unsigned integral subtype whose size does not exceed the size of
1598    --    Standard_Integer (i.e. a type that can be safely converted to
1599    --    Natural), and the exponentiation appears as the right operand of an
1600    --    integer multiplication or an integer division where the dividend is
1601    --    unsigned. It is also required that overflow checking is off for both
1602    --    the exponentiation and the multiply/divide node. If this set of
1603    --    conditions holds, and the flag is set, then the division or
1604    --    multiplication can be (and is) converted to a shift.
1605
1606    --  Is_Prefixed_Call (Flag17-Sem)
1607    --    This flag is set in a selected component within a generic unit, if
1608    --    it resolves to a prefixed call to a primitive operation. The flag
1609    --    is used to prevent accidental overloadings in an instance, when a
1610    --    primitive operation and a private record component may be homographs.
1611
1612    --  Is_Protected_Subprogram_Body (Flag7-Sem)
1613    --    A flag set in a Subprogram_Body block to indicate that it is the
1614    --    implementation of a protected subprogram. Such a body needs cleanup
1615    --    handler to make sure that the associated protected object is unlocked
1616    --    when the subprogram completes.
1617
1618    --  Is_Static_Coextension (Flag14-Sem)
1619    --    Present in N_Allocator nodes. Set if the allocator is a coextension
1620    --    of an object allocated on the stack rather than the heap.
1621
1622    --  Is_Static_Expression (Flag6-Sem)
1623    --    Indicates that an expression is a static expression according to the
1624    --    rules in (RM 4.9). Note that it is possible for this flag to be set
1625    --    when Raises_Constraint_Error is also set. In practice almost all cases
1626    --    where a static expression is required do not allow an expression which
1627    --    raises Constraint_Error, so almost always, callers should call the
1628    --    Is_Ok_Static_Exprression routine instead of testing this flag. See
1629    --    spec of package Sem_Eval for full details on the use of this flag.
1630
1631    --  Is_Subprogram_Descriptor (Flag16-Sem)
1632    --    Present in N_Object_Declaration, and set only for the object
1633    --    declaration generated for a subprogram descriptor in fast exception
1634    --    mode. See Exp_Ch11 for details of use.
1635
1636    --  Is_Task_Allocation_Block (Flag6-Sem)
1637    --    A flag set in a Block_Statement node to indicate that it is the
1638    --    expansion of a task allocator, or the allocator of an object
1639    --    containing tasks. Such a block requires a cleanup handler to call
1640    --    Expunge_Unactivated_Tasks to complete any tasks that have been
1641    --    allocated but not activated when the allocator completes abnormally.
1642
1643    --  Is_Task_Master (Flag5-Sem)
1644    --    A flag set in a Subprogram_Body, Block_Statement or Task_Body node to
1645    --    indicate that the construct is a task master (i.e. has declared tasks
1646    --    or declares an access to a task type).
1647
1648    --  Itype (Node1-Sem)
1649    --    Used in N_Itype_Reference node to reference an itype for which it is
1650    --    important to ensure that it is defined. See description of this node
1651    --    for further details.
1652
1653    --  Kill_Range_Check (Flag11-Sem)
1654    --    Used in an N_Unchecked_Type_Conversion node to indicate that the
1655    --    result should not be subjected to range checks. This is used for the
1656    --    implementation of Normalize_Scalars.
1657
1658    --  Label_Construct (Node2-Sem)
1659    --    Used in an N_Implicit_Label_Declaration node. Refers to an N_Label,
1660    --    N_Block_Statement or N_Loop_Statement node to which the label
1661    --    declaration applies. This attribute is used both in the compiler and
1662    --    in the implementation of ASIS queries. The field is left empty for the
1663    --    special labels generated as part of expanding raise statements with a
1664    --    local exception handler.
1665
1666    --  Library_Unit (Node4-Sem)
1667    --    In a stub node, Library_Unit points to the compilation unit node of
1668    --    the corresponding subunit.
1669    --
1670    --    In a with clause node, Library_Unit points to the spec of the with'ed
1671    --    unit.
1672    --
1673    --    In a compilation unit node, the usage depends on the unit type:
1674    --
1675    --     For a library unit body, Library_Unit points to the compilation unit
1676    --     node of the corresponding spec, unless it's a subprogram body with
1677    --     Acts_As_Spec set, in which case it points to itself.
1678    --
1679    --     For a spec, Library_Unit points to the compilation unit node of the
1680    --     corresponding body, if present. The body will be present if the spec
1681    --     is or contains generics that we needed to instantiate. Similarly, the
1682    --     body will be present if we needed it for inlining purposes. Thus, if
1683    --     we have a spec/body pair, both of which are present, they point to
1684    --     each other via Library_Unit.
1685    --
1686    --     For a subunit, Library_Unit points to the compilation unit node of
1687    --     the parent body.
1688    --
1689    --    Note that this field is not used to hold the parent pointer for child
1690    --    unit (which might in any case need to use it for some other purpose as
1691    --    described above). Instead for a child unit, implicit with's are
1692    --    generated for all parents.
1693
1694    --  Local_Raise_Statements (Elist1)
1695    --    This field is present in exception handler nodes. It is set to
1696    --    No_Elist in the normal case. If there is at least one raise statement
1697    --    which can potentially be handled as a local raise, then this field
1698    --    points to a list of raise nodes, which are calls to a routine to raise
1699    --    an exception. These are raise nodes which can be optimized into gotos
1700    --    if the handler turns out to meet the conditions which permit this
1701    --    transformation. Note that this does NOT include instances of the
1702    --    N_Raise_xxx_Error nodes since the transformation of these nodes is
1703    --    handled by the back end (using the N_Push/N_Pop mechanism).
1704
1705    --  Loop_Actions (List2-Sem)
1706    --    A list present in Component_Association nodes in array aggregates.
1707    --    Used to collect actions that must be executed within the loop because
1708    --    they may need to be evaluated anew each time through.
1709
1710    --  Limited_View_Installed (Flag18-Sem)
1711    --    Present in With_Clauses and in package specifications. If set on
1712    --    with_clause, it indicates that this clause has created the current
1713    --    limited view of the designated package. On a package specification, it
1714    --    indicates that the limited view has already been created because the
1715    --    package is mentioned in a limited_with_clause in the closure of the
1716    --    unit being compiled.
1717
1718    --  Local_Raise_Not_OK (Flag7-Sem)
1719    --    Present in N_Exception_Handler nodes. Set if the handler contains
1720    --    a construct (reraise statement, or call to subprogram in package
1721    --    GNAT.Current_Exception) that makes the handler unsuitable as a target
1722    --    for a local raise (one that could otherwise be converted to a goto).
1723
1724    --  Must_Be_Byte_Aligned (Flag14-Sem)
1725    --    This flag is present in N_Attribute_Reference nodes. It can be set
1726    --    only for the Address and Unrestricted_Access attributes. If set it
1727    --    means that the object for which the address/access is given must be on
1728    --    a byte (more accurately a storage unit) boundary. If necessary, a copy
1729    --    of the object is to be made before taking the address (this copy is in
1730    --    the current scope on the stack frame). This is used for certain cases
1731    --    of code generated by the expander that passes parameters by address.
1732    --
1733    --    The reason the copy is not made by the front end is that the back end
1734    --    has more information about type layout and may be able to (but is not
1735    --    guaranteed to) prevent making unnecessary copies.
1736
1737    --  Must_Not_Freeze (Flag8-Sem)
1738    --    A flag present in all expression nodes. Normally expressions cause
1739    --    freezing as described in the RM. If this flag is set, then this is
1740    --    inhibited. This is used by the analyzer and expander to label nodes
1741    --    that are created by semantic analysis or expansion and which must not
1742    --    cause freezing even though they normally would. This flag is also
1743    --    present in an N_Subtype_Indication node, since we also use these in
1744    --    calls to Freeze_Expression.
1745
1746    --  Next_Entity (Node2-Sem)
1747    --    Present in defining identifiers, defining character literals and
1748    --    defining operator symbols (i.e. in all entities). The entities of a
1749    --    scope are chained, and this field is used as the forward pointer for
1750    --    this list. See Einfo for further details.
1751
1752    --  Next_Exit_Statement (Node3-Sem)
1753    --    Present in N_Exit_Statement nodes. The exit statements for a loop are
1754    --    chained (in reverse order of appearance) from the First_Exit_Statement
1755    --    field of the E_Loop entity for the loop. Next_Exit_Statement points to
1756    --    the next entry on this chain (Empty = end of list).
1757
1758    --  Next_Implicit_With (Node3-Sem)
1759    --    Present in N_With_Clause. Part of a chain of with_clauses generated
1760    --    in rtsfind to indicate implicit dependencies on predefined units. Used
1761    --    to prevent multiple with_clauses for the same unit in a given context.
1762    --    A postorder traversal of the tree whose nodes are units and whose
1763    --    links are with_clauses defines the order in which CodePeer must
1764    --    examine a compiled unit and its full context. This ordering ensures
1765    --    that any subprogram call is examined after the subprogram declaration
1766    --    has been seen.
1767
1768    --  Next_Named_Actual (Node4-Sem)
1769    --    Present in parameter association nodes. Set during semantic analysis
1770    --    to point to the next named parameter, where parameters are ordered by
1771    --    declaration order (as opposed to the actual order in the call, which
1772    --    may be different due to named associations). Not that this field
1773    --    points to the explicit actual parameter itself, not to the
1774    --    N_Parameter_Association node (its parent).
1775
1776    --  Next_Pragma (Node1-Sem)
1777    --    Present in N_Pragma nodes. Used to create a linked list of pragma
1778    --    nodes. Currently used for two purposes:
1779    --
1780    --      Create a list of linked Check_Policy pragmas. The head of this list
1781    --      is stored in Opt.Check_Policy_List (which has further details).
1782    --
1783    --      Used by processing for Pre/Postcondition pragmas to store a list of
1784    --      pragmas associated with the spec of a subprogram (see Sem_Prag for
1785    --      details).
1786    --
1787    --      Used by processing for pragma SPARK_Mode to store multiple pragmas
1788    --      the apply to the same construct. These are visible/private mode for
1789    --      a package spec and declarative/statement mode for package body.
1790
1791    --  Next_Rep_Item (Node5-Sem)
1792    --    Present in pragma nodes, attribute definition nodes, enumeration rep
1793    --    clauses, record rep clauses, aspect specification nodes. Used to link
1794    --    representation items that apply to an entity. See full description of
1795    --    First_Rep_Item field in Einfo for further details.
1796
1797    --  Next_Use_Clause (Node3-Sem)
1798    --    While use clauses are active during semantic processing, they are
1799    --    chained from the scope stack entry, using Next_Use_Clause as a link
1800    --    pointer, with Empty marking the end of the list. The head pointer is
1801    --    in the scope stack entry (First_Use_Clause). At the end of semantic
1802    --    processing (i.e. when Gigi sees the tree, the contents of this field
1803    --    is undefined and should not be read).
1804
1805    --  No_Ctrl_Actions (Flag7-Sem)
1806    --    Present in N_Assignment_Statement to indicate that no Finalize nor
1807    --    Adjust should take place on this assignment even though the RHS is
1808    --    controlled. Also indicates that the primitive _assign should not be
1809    --    used for a tagged assignment. This is used in init procs and aggregate
1810    --    expansions where the generated assignments are initializations, not
1811    --    real assignments.
1812
1813    --  No_Elaboration_Check (Flag14-Sem)
1814    --    Present in N_Function_Call and N_Procedure_Call_Statement. Indicates
1815    --    that no elaboration check is needed on the call, because it appears in
1816    --    the context of a local Suppress pragma. This is used on calls within
1817    --    task bodies, where the actual elaboration checks are applied after
1818    --    analysis, when the local scope stack is not present.
1819
1820    --  No_Entities_Ref_In_Spec (Flag8-Sem)
1821    --    Present in N_With_Clause nodes. Set if the with clause is on the
1822    --    package or subprogram spec where the main unit is the corresponding
1823    --    body, and no entities of the with'ed unit are referenced by the spec
1824    --    (an entity may still be referenced in the body, so this flag is used
1825    --    to generate the proper message (see Sem_Util.Check_Unused_Withs for
1826    --    full details)
1827
1828    --  No_Initialization (Flag13-Sem)
1829    --    Present in N_Object_Declaration and N_Allocator to indicate that the
1830    --    object must not be initialized (by Initialize or call to an init
1831    --    proc). This is needed for controlled aggregates. When the Object
1832    --    declaration has an expression, this flag means that this expression
1833    --    should not be taken into account (needed for in place initialization
1834    --    with aggregates, and for object with an address clause, which are
1835    --    initialized with an assignment at freeze time).
1836
1837    --  No_Minimize_Eliminate (Flag17-Sem)
1838    --    This flag is present in membership operator nodes (N_In/N_Not_In).
1839    --    It is used to indicate that processing for extended overflow checking
1840    --    modes is not required (this is used to prevent infinite recursion).
1841
1842    --  No_Truncation (Flag17-Sem)
1843    --    Present in N_Unchecked_Type_Conversion node. This flag has an effect
1844    --    only if the RM_Size of the source is greater than the RM_Size of the
1845    --    target for scalar operands. Normally in such a case we truncate some
1846    --    higher order bits of the source, and then sign/zero extend the result
1847    --    to form the output value. But if this flag is set, then we do not do
1848    --    any truncation, so for example, if an 8 bit input is converted to 5
1849    --    bit result which is in fact stored in 8 bits, then the high order
1850    --    three bits of the target result will be copied from the source. This
1851    --    is used for properly setting out of range values for use by pragmas
1852    --    Initialize_Scalars and Normalize_Scalars.
1853
1854    --  Non_Aliased_Prefix (Flag18-Sem)
1855    --    Present in N_Attribute_Reference nodes. Set only for the case of an
1856    --    Unrestricted_Access reference whose prefix is non-aliased, which is
1857    --    the case that is permitted for Unrestricted_Access except when the
1858    --    expected type is a thin pointer to unconstrained array. This flag is
1859    --    to assist in detecting this illegal use of Unrestricted_Access.
1860
1861    --  Null_Excluding_Subtype (Flag16)
1862    --    Present in N_Access_To_Object_Definition. Indicates that the subtype
1863    --    indication carries a null-exclusion indicator, which is distinct from
1864    --    the null-exclusion indicator that may precede the access keyword.
1865
1866    --  Original_Discriminant (Node2-Sem)
1867    --    Present in identifiers. Used in references to discriminants that
1868    --    appear in generic units. Because the names of the discriminants may be
1869    --    different in an instance, we use this field to recover the position of
1870    --    the discriminant in the original type, and replace it with the
1871    --    discriminant at the same position in the instantiated type.
1872
1873    --  Original_Entity (Node2-Sem)
1874    --    Present in numeric literals. Used to denote the named number that has
1875    --    been constant-folded into the given literal. If literal is from
1876    --    source, or the result of some other constant-folding operation, then
1877    --    Original_Entity is empty. This field is needed to handle properly
1878    --    named numbers in generic units, where the Associated_Node field
1879    --    interferes with the Entity field, making it impossible to preserve the
1880    --    original entity at the point of instantiation (ASIS problem).
1881
1882    --  Others_Discrete_Choices (List1-Sem)
1883    --    When a case statement or variant is analyzed, the semantic checks
1884    --    determine the actual list of choices that correspond to an others
1885    --    choice. This list is materialized for later use by the expander and
1886    --    the Others_Discrete_Choices field of an N_Others_Choice node points to
1887    --    this materialized list of choices, which is in standard format for a
1888    --    list of discrete choices, except that of course it cannot contain an
1889    --    N_Others_Choice entry.
1890
1891    --  Parameter_List_Truncated (Flag17-Sem)
1892    --    Present in N_Function_Call and N_Procedure_Call_Statement nodes. Set
1893    --    (for OpenVMS ports of GNAT only) if the parameter list is truncated
1894    --    as a result of a First_Optional_Parameter specification in one of the
1895    --    pragmas Import_Function, Import_Procedure, or Import_Valued_Procedure.
1896    --    The truncation is done by the expander by removing trailing parameters
1897    --    from the argument list, in accordance with the set of rules allowing
1898    --    such parameter removal. In particular, parameters can be removed
1899    --    working from the end of the parameter list backwards up to and
1900    --    including the entry designated by First_Optional_Parameter in the
1901    --    Import pragma. Parameters can be removed if they are implicit and the
1902    --    default value is known at compile time value, including the use of
1903    --    the Null_Parameter attribute, or if explicit parameter values are
1904    --    present that match the corresponding defaults.
1905
1906    --  Parent_Spec (Node4-Sem)
1907    --    For a library unit that is a child unit spec (package or subprogram
1908    --    declaration, generic declaration or instantiation, or library level
1909    --    rename, this field points to the compilation unit node for the parent
1910    --    package specification. This field is Empty for library bodies (the
1911    --    parent spec in this case can be found from the corresponding spec).
1912
1913    --  Premature_Use (Node5-Sem)
1914    --    Present in N_Incomplete_Type_Declaration node. Used for improved
1915    --    error diagnostics: if there is a premature usage of an incomplete
1916    --    type, a subsequently generated error message indicates the position
1917    --    of its full declaration.
1918
1919    --  Present_Expr (Uint3-Sem)
1920    --    Present in an N_Variant node. This has a meaningful value only after
1921    --    Gigi has back annotated the tree with representation information. At
1922    --    this point, it contains a reference to a gcc expression that depends
1923    --    on the values of one or more discriminants. Give a set of discriminant
1924    --    values, this expression evaluates to False (zero) if variant is not
1925    --    present, and True (non-zero) if it is present. See unit Repinfo for
1926    --    further details on gigi back annotation. This field is used during
1927    --    ASIS processing (data decomposition annex) to determine if a field is
1928    --    present or not.
1929
1930    --  Print_In_Hex (Flag13-Sem)
1931    --    Set on an N_Integer_Literal node to indicate that the value should be
1932    --    printed in hexadecimal in the sprint listing. Has no effect on
1933    --    legality or semantics of program, only on the displayed output. This
1934    --    is used to clarify output from the packed array cases.
1935
1936    --  Procedure_To_Call (Node2-Sem)
1937    --    Present in N_Allocator, N_Free_Statement, N_Simple_Return_Statement,
1938    --    and N_Extended_Return_Statement nodes. References the entity for the
1939    --    declaration of the procedure to be called to accomplish the required
1940    --    operation (i.e. for the Allocate procedure in the case of N_Allocator
1941    --    and N_Simple_Return_Statement and N_Extended_Return_Statement (for
1942    --    allocating the return value), and for the Deallocate procedure in the
1943    --    case of N_Free_Statement.
1944
1945    --  Raises_Constraint_Error (Flag7-Sem)
1946    --    Set on an expression whose evaluation will definitely fail constraint
1947    --    error check. In the case of static expressions, this flag must be set
1948    --    accurately (and if it is set, the expression is typically illegal
1949    --    unless it appears as a non-elaborated branch of a short-circuit form).
1950    --    For a non-static expression, this flag may be set whenever an
1951    --    expression (e.g. an aggregate) is known to raise constraint error. If
1952    --    set, the expression definitely will raise CE if elaborated at runtime.
1953    --    If not set, the expression may or may not raise CE. In other words, on
1954    --    static expressions, the flag is set accurately, on non-static
1955    --    expressions it is set conservatively.
1956
1957    --  Redundant_Use (Flag13-Sem)
1958    --    Present in nodes that can appear as an operand in a use clause or use
1959    --    type clause (identifiers, expanded names, attribute references). Set
1960    --    to indicate that a use is redundant (and therefore need not be undone
1961    --    on scope exit).
1962
1963    --  Renaming_Exception (Node2-Sem)
1964    --    Present in N_Exception_Declaration node. Used to point back to the
1965    --    exception renaming for an exception declared within a subprogram.
1966    --    What happens is that an exception declared in a subprogram is moved
1967    --    to the library level with a unique name, and the original exception
1968    --    becomes a renaming. This link from the library level exception to the
1969    --    renaming declaration allows registering of the proper exception name.
1970
1971    --  Return_Statement_Entity (Node5-Sem)
1972    --    Present in N_Simple_Return_Statement and N_Extended_Return_Statement.
1973    --    Points to an E_Return_Statement representing the return statement.
1974
1975    --  Return_Object_Declarations (List3)
1976    --    Present in N_Extended_Return_Statement. Points to a list initially
1977    --    containing a single N_Object_Declaration representing the return
1978    --    object. We use a list (instead of just a pointer to the object decl)
1979    --    because Analyze wants to insert extra actions on this list.
1980
1981    --  Rounded_Result (Flag18-Sem)
1982    --    Present in N_Type_Conversion, N_Op_Divide and N_Op_Multiply nodes.
1983    --    Used in the fixed-point cases to indicate that the result must be
1984    --    rounded as a result of the use of the 'Round attribute. Also used for
1985    --    integer N_Op_Divide nodes to indicate that the result should be
1986    --    rounded to the nearest integer (breaking ties away from zero), rather
1987    --    than truncated towards zero as usual. These rounded integer operations
1988    --    are the result of expansion of rounded fixed-point divide, conversion
1989    --    and multiplication operations.
1990
1991    --  SCIL_Entity (Node4-Sem)
1992    --    Present in SCIL nodes. References the specific tagged type associated
1993    --    with the SCIL node (for an N_SCIL_Dispatching_Call node, this is
1994    --    the controlling type of the call; for an N_SCIL_Membership_Test node
1995    --    generated as part of testing membership in T'Class, this is T; for an
1996    --    N_SCIL_Dispatch_Table_Tag_Init node, this is the type being declared).
1997
1998    --  SCIL_Controlling_Tag (Node5-Sem)
1999    --    Present in N_SCIL_Dispatching_Call nodes. References the controlling
2000    --    tag of a dispatching call. This is usually an N_Selected_Component
2001    --    node (for a _tag component), but may be an N_Object_Declaration or
2002    --    N_Parameter_Specification node in some cases (e.g., for a call to
2003    --    a classwide streaming operation or a call to an instance of
2004    --    Ada.Tags.Generic_Dispatching_Constructor).
2005
2006    --  SCIL_Tag_Value (Node5-Sem)
2007    --    Present in N_SCIL_Membership_Test nodes. Used to reference the tag
2008    --    of the value that is being tested.
2009
2010    --  SCIL_Target_Prim (Node2-Sem)
2011    --    Present in N_SCIL_Dispatching_Call nodes. References the primitive
2012    --    operation named (statically) in a dispatching call.
2013
2014    --  Scope (Node3-Sem)
2015    --    Present in defining identifiers, defining character literals and
2016    --    defining operator symbols (i.e. in all entities). The entities of a
2017    --    scope all use this field to reference the corresponding scope entity.
2018    --    See Einfo for further details.
2019
2020    --  Shift_Count_OK (Flag4-Sem)
2021    --    A flag present in shift nodes to indicate that the shift count is
2022    --    known to be in range, i.e. is in the range from zero to word length
2023    --    minus one. If this flag is not set, then the shift count may be
2024    --    outside this range, i.e. larger than the word length, and the code
2025    --    must ensure that such shift counts give the appropriate result.
2026
2027    --  Source_Type (Node1-Sem)
2028    --    Used in an N_Validate_Unchecked_Conversion node to point to the
2029    --    source type entity for the unchecked conversion instantiation
2030    --    which gigi must do size validation for.
2031
2032    --  Split_PPC (Flag17)
2033    --    When a Pre or Post aspect specification is processed, it is broken
2034    --    into AND THEN sections. The left most section has Split_PPC set to
2035    --    False, indicating that it is the original specification (e.g. for
2036    --    posting errors). For other sections, Split_PPC is set to True.
2037    --    This flag is set in both the N_Aspect_Specification node itself,
2038    --    and in the pragma which is generated from this node.
2039
2040    --  Storage_Pool (Node1-Sem)
2041    --    Present in N_Allocator, N_Free_Statement, N_Simple_Return_Statement,
2042    --    and N_Extended_Return_Statement nodes. References the entity for the
2043    --    storage pool to be used for the allocate or free call or for the
2044    --    allocation of the returned value from function. Empty indicates that
2045    --    the global default pool is to be used. Note that in the case
2046    --    of a return statement, this field is set only if the function returns
2047    --    value of a type whose size is not known at compile time on the
2048    --    secondary stack.
2049
2050    --  Suppress_Assignment_Checks (Flag18-Sem)
2051    --    Used in generated N_Assignment_Statement nodes to suppress predicate
2052    --    and range checks in cases where the generated code knows that the
2053    --    value being assigned is in range and satisfies any predicate. Also
2054    --    can be set in N_Object_Declaration nodes, to similarly suppress any
2055    --    checks on the initializing value. In assignment statements it also
2056    --    suppresses access checks in the generated code for out- and in-out
2057    --    parameters in entry calls.
2058
2059    --  Suppress_Loop_Warnings (Flag17-Sem)
2060    --    Used in N_Loop_Statement node to indicate that warnings within the
2061    --    body of the loop should be suppressed. This is set when the range
2062    --    of a FOR loop is known to be null, or is probably null (loop would
2063    --    only execute if invalid values are present).
2064
2065    --  Target_Type (Node2-Sem)
2066    --    Used in an N_Validate_Unchecked_Conversion node to point to the target
2067    --    type entity for the unchecked conversion instantiation which gigi must
2068    --    do size validation for.
2069
2070    --  Then_Actions (List3-Sem)
2071    --    This field is present in if expression nodes. During code expansion
2072    --    we use the Insert_Actions procedure (in Exp_Util) to insert actions
2073    --    at an appropriate place in the tree to get elaborated at the right
2074    --    time. For if expressions, we have to be sure that the actions for
2075    --    for the Then branch are only elaborated if the condition is True.
2076    --    The Then_Actions field is used as a temporary parking place for
2077    --    these actions. The final tree is always rewritten to eliminate the
2078    --    need for this field, so in the tree passed to Gigi, this field is
2079    --    always set to No_List.
2080
2081    --  Treat_Fixed_As_Integer (Flag14-Sem)
2082    --    This flag appears in operator nodes for divide, multiply, mod and rem
2083    --    on fixed-point operands. It indicates that the operands are to be
2084    --    treated as integer values, ignoring small values. This flag is only
2085    --    set as a result of expansion of fixed-point operations. Typically a
2086    --    fixed-point multiplication in the source generates subsidiary
2087    --    multiplication and division operations that work with the underlying
2088    --    integer values and have this flag set. Note that this flag is not
2089    --    needed on other arithmetic operations (add, neg, subtract etc.) since
2090    --    in these cases it is always the case that fixed is treated as integer.
2091    --    The Etype field MUST be set if this flag is set. The analyzer knows to
2092    --    leave such nodes alone, and whoever makes them must set the correct
2093    --    Etype value.
2094
2095    --  TSS_Elist (Elist3-Sem)
2096    --    Present in N_Freeze_Entity nodes. Holds an element list containing
2097    --    entries for each TSS (type support subprogram) associated with the
2098    --    frozen type. The elements of the list are the entities for the
2099    --    subprograms (see package Exp_TSS for further details). Set to No_Elist
2100    --    if there are no type support subprograms for the type or if the freeze
2101    --    node is not for a type.
2102
2103    --  Uneval_Old_Accept (Flag7-Sem)
2104    --    Present in N_Pragma nodes. Set True if Opt.Uneval_Old is set to 'A'
2105    --    (accept) at the point where the pragma is encountered (including the
2106    --    case of a pragma generated from an aspect specification). It is this
2107    --    setting that is relevant, rather than the setting at the point where
2108    --    a contract is finally analyzed after the delay till the freeze point.
2109
2110    --  Uneval_Old_Warn (Flag18-Sem)
2111    --    Present in N_Pragma nodes. Set True if Opt.Uneval_Old is set to 'W'
2112    --    (warn) at the point where the pragma is encountered (including the
2113    --    case of a pragma generated from an aspect specification). It is this
2114    --    setting that is relevant, rather than the setting at the point where
2115    --    a contract is finally analyzed after the delay till the freeze point.
2116
2117    --  Unreferenced_In_Spec (Flag7-Sem)
2118    --    Present in N_With_Clause nodes. Set if the with clause is on the
2119    --    package or subprogram spec where the main unit is the corresponding
2120    --    body, and is not referenced by the spec (it may still be referenced by
2121    --    the body, so this flag is used to generate the proper message (see
2122    --    Sem_Util.Check_Unused_Withs for details)
2123
2124    --  Uninitialized_Variable (Node3-Sem)
2125    --    Present in N_Formal_Private_Type_Definition and in N_Private_
2126    --    Extension_Declarations. Indicates that a variable in a generic unit
2127    --    whose type is a formal private or derived type is read without being
2128    --    initialized. Used to warn if the corresponding actual type is not
2129    --    a fully initialized type.
2130
2131    --  Used_Operations (Elist5-Sem)
2132    --    Present in N_Use_Type_Clause nodes. Holds the list of operations that
2133    --    are made potentially use-visible by the clause. Simplifies processing
2134    --    on exit from the scope of the use_type_clause, in particular in the
2135    --    case of Use_All_Type, when those operations several scopes.
2136
2137    --  Was_Originally_Stub (Flag13-Sem)
2138    --    This flag is set in the node for a proper body that replaces stub.
2139    --    During the analysis procedure, stubs in some situations get rewritten
2140    --    by the corresponding bodies, and we set this flag to remember that
2141    --    this happened. Note that it is not good enough to rely on the use of
2142    --    Original_Node here because of the case of nested instantiations where
2143    --    the substituted node can be copied.
2144
2145    --  Withed_Body (Node1-Sem)
2146    --    Present in N_With_Clause nodes. Set if the unit in whose context
2147    --    the with_clause appears instantiates a generic contained in the
2148    --    library unit of the with_clause and as a result loads its body.
2149    --    Used for a more precise unit traversal for CodePeer.
2150
2151    --------------------------------------------------
2152    -- Note on Use of End_Label and End_Span Fields --
2153    --------------------------------------------------
2154
2155    --  Several constructs have end lines:
2156
2157    --    Loop Statement             end loop [loop_IDENTIFIER];
2158    --    Package Specification      end [[PARENT_UNIT_NAME .] IDENTIFIER]
2159    --    Task Definition            end [task_IDENTIFIER]
2160    --    Protected Definition       end [protected_IDENTIFIER]
2161    --    Protected Body             end [protected_IDENTIFIER]
2162
2163    --    Block Statement            end [block_IDENTIFIER];
2164    --    Subprogram Body            end [DESIGNATOR];
2165    --    Package Body               end [[PARENT_UNIT_NAME .] IDENTIFIER];
2166    --    Task Body                  end [task_IDENTIFIER];
2167    --    Accept Statement           end [entry_IDENTIFIER]];
2168    --    Entry Body                 end [entry_IDENTIFIER];
2169
2170    --    If Statement               end if;
2171    --    Case Statement             end case;
2172
2173    --    Record Definition          end record;
2174    --    Enumeration Definition     );
2175
2176    --  The End_Label and End_Span fields are used to mark the locations of
2177    --  these lines, and also keep track of the label in the case where a label
2178    --  is present.
2179
2180    --  For the first group above, the End_Label field of the corresponding node
2181    --  is used to point to the label identifier. In the case where there is no
2182    --  label in the source, the parser supplies a dummy identifier (with
2183    --  Comes_From_Source set to False), and the Sloc of this dummy identifier
2184    --  marks the location of the token following the END token.
2185
2186    --  For the second group, the use of End_Label is similar, but the End_Label
2187    --  is found in the N_Handled_Sequence_Of_Statements node. This is done
2188    --  simply because in some cases there is no room in the parent node.
2189
2190    --  For the third group, there is never any label, and instead of using
2191    --  End_Label, we use the End_Span field which gives the location of the
2192    --  token following END, relative to the starting Sloc of the construct,
2193    --  i.e. add Sloc (Node) + End_Span (Node) to get the Sloc of the IF or CASE
2194    --  following the End_Label.
2195
2196    --  The record definition case is handled specially, we treat it as though
2197    --  it required an optional label which is never present, and so the parser
2198    --  always builds a dummy identifier with Comes From Source set False. The
2199    --  reason we do this, rather than using End_Span in this case, is that we
2200    --  want to generate a cross-ref entry for the end of a record, since it
2201    --  represents a scope for name declaration purposes.
2202
2203    --  The enumeration definition case is handled in an exactly similar manner,
2204    --  building a dummy identifier to get a cross-reference.
2205
2206    --  Note: the reason we store the difference as a Uint, instead of storing
2207    --  the Source_Ptr value directly, is that Source_Ptr values cannot be
2208    --  distinguished from other types of values, and we count on all general
2209    --  use fields being self describing. To make things easier for clients,
2210    --  note that we provide function End_Location, and procedure
2211    --  Set_End_Location to allow access to the logical value (which is the
2212    --  Source_Ptr value for the end token).
2213
2214    ---------------------
2215    -- Syntactic Nodes --
2216    ---------------------
2217
2218       ---------------------
2219       -- 2.3  Identifier --
2220       ---------------------
2221
2222       --  IDENTIFIER ::= IDENTIFIER_LETTER {[UNDERLINE] LETTER_OR_DIGIT}
2223       --  LETTER_OR_DIGIT ::= IDENTIFIER_LETTER | DIGIT
2224
2225       --  An IDENTIFIER shall not be a reserved word
2226
2227       --  In the Ada grammar identifiers are the bottom level tokens which have
2228       --  very few semantics. Actual program identifiers are direct names. If
2229       --  we were being 100% honest with the grammar, then we would have a node
2230       --  called N_Direct_Name which would point to an identifier. However,
2231       --  that's too many extra nodes, so we just use the N_Identifier node
2232       --  directly as a direct name, and it contains the expression fields and
2233       --  Entity field that correspond to its use as a direct name. In those
2234       --  few cases where identifiers appear in contexts where they are not
2235       --  direct names (pragmas, pragma argument associations, attribute
2236       --  references and attribute definition clauses), the Chars field of the
2237       --  node contains the Name_Id for the identifier name.
2238
2239       --  Note: in GNAT, a reserved word can be treated as an identifier in two
2240       --  cases. First, an incorrect use of a reserved word as an identifier is
2241       --  diagnosed and then treated as a normal identifier. Second, an
2242       --  attribute designator of the form of a reserved word (access, delta,
2243       --  digits, range) is treated as an identifier.
2244
2245       --  Note: The set of letters that is permitted in an identifier depends
2246       --  on the character set in use. See package Csets for full details.
2247
2248       --  N_Identifier
2249       --  Sloc points to identifier
2250       --  Chars (Name1) contains the Name_Id for the identifier
2251       --  Entity (Node4-Sem)
2252       --  Associated_Node (Node4-Sem)
2253       --  Original_Discriminant (Node2-Sem)
2254       --  Redundant_Use (Flag13-Sem)
2255       --  Atomic_Sync_Required (Flag14-Sem)
2256       --  Has_Private_View (Flag11-Sem) (set in generic units)
2257       --  plus fields for expression
2258
2259       --------------------------
2260       -- 2.4  Numeric Literal --
2261       --------------------------
2262
2263       --  NUMERIC_LITERAL ::= DECIMAL_LITERAL | BASED_LITERAL
2264
2265       ----------------------------
2266       -- 2.4.1  Decimal Literal --
2267       ----------------------------
2268
2269       --  DECIMAL_LITERAL ::= NUMERAL [.NUMERAL] [EXPONENT]
2270
2271       --  NUMERAL ::= DIGIT {[UNDERLINE] DIGIT}
2272
2273       --  EXPONENT ::= E [+] NUMERAL | E - NUMERAL
2274
2275       --  Decimal literals appear in the tree as either integer literal nodes
2276       --  or real literal nodes, depending on whether a period is present.
2277
2278       --  Note: literal nodes appear as a result of direct use of literals
2279       --  in the source program, and also as the result of evaluating
2280       --  expressions at compile time. In the latter case, it is possible
2281       --  to construct real literals that have no syntactic representation
2282       --  using the standard literal format. Such literals are listed by
2283       --  Sprint using the notation [numerator / denominator].
2284
2285       --  Note: the value of an integer literal node created by the front end
2286       --  is never outside the range of values of the base type. However, it
2287       --  can be the case that the created value is outside the range of the
2288       --  particular subtype. This happens in the case of integer overflows
2289       --  with checks suppressed.
2290
2291       --  N_Integer_Literal
2292       --  Sloc points to literal
2293       --  Original_Entity (Node2-Sem) If not Empty, holds Named_Number that
2294       --  has been constant-folded into its literal value.
2295       --  Intval (Uint3) contains integer value of literal
2296       --  plus fields for expression
2297       --  Print_In_Hex (Flag13-Sem)
2298
2299       --  N_Real_Literal
2300       --  Sloc points to literal
2301       --  Original_Entity (Node2-Sem) If not Empty, holds Named_Number that
2302       --  has been constant-folded into its literal value.
2303       --  Realval (Ureal3) contains real value of literal
2304       --  Corresponding_Integer_Value (Uint4-Sem)
2305       --  Is_Machine_Number (Flag11-Sem)
2306       --  plus fields for expression
2307
2308       --------------------------
2309       -- 2.4.2  Based Literal --
2310       --------------------------
2311
2312       --  BASED_LITERAL ::=
2313       --   BASE # BASED_NUMERAL [.BASED_NUMERAL] # [EXPONENT]
2314
2315       --  BASE ::= NUMERAL
2316
2317       --  BASED_NUMERAL ::=
2318       --    EXTENDED_DIGIT {[UNDERLINE] EXTENDED_DIGIT}
2319
2320       --  EXTENDED_DIGIT ::= DIGIT | A | B | C | D | E | F
2321
2322       --  Based literals appear in the tree as either integer literal nodes
2323       --  or real literal nodes, depending on whether a period is present.
2324
2325       ----------------------------
2326       -- 2.5  Character Literal --
2327       ----------------------------
2328
2329       --  CHARACTER_LITERAL ::= ' GRAPHIC_CHARACTER '
2330
2331       --  N_Character_Literal
2332       --  Sloc points to literal
2333       --  Chars (Name1) contains the Name_Id for the identifier
2334       --  Char_Literal_Value (Uint2) contains the literal value
2335       --  Entity (Node4-Sem)
2336       --  Associated_Node (Node4-Sem)
2337       --  Has_Private_View (Flag11-Sem) set in generic units.
2338       --  plus fields for expression
2339
2340       --  Note: the Entity field will be missing (set to Empty) for character
2341       --  literals whose type is Standard.Wide_Character or Standard.Character
2342       --  or a type derived from one of these two. In this case the character
2343       --  literal stands for its own coding. The reason we take this irregular
2344       --  short cut is to avoid the need to build lots of junk defining
2345       --  character literal nodes.
2346
2347       -------------------------
2348       -- 2.6  String Literal --
2349       -------------------------
2350
2351       --  STRING LITERAL ::= "{STRING_ELEMENT}"
2352
2353       --  A STRING_ELEMENT is either a pair of quotation marks ("), or a
2354       --  single GRAPHIC_CHARACTER other than a quotation mark.
2355       --
2356       --  Is_Folded_In_Parser is True if the parser created this literal by
2357       --  folding a sequence of "&" operators. For example, if the source code
2358       --  says "aaa" & "bbb" & "ccc", and this produces "aaabbbccc", the flag
2359       --  is set. This flag is needed because the parser doesn't know about
2360       --  visibility, so the folded result might be wrong, and semantic
2361       --  analysis needs to check for that.
2362
2363       --  N_String_Literal
2364       --  Sloc points to literal
2365       --  Strval (Str3) contains Id of string value
2366       --  Has_Wide_Character (Flag11-Sem)
2367       --  Has_Wide_Wide_Character (Flag13-Sem)
2368       --  Is_Folded_In_Parser (Flag4)
2369       --  plus fields for expression
2370
2371       ------------------
2372       -- 2.7  Comment --
2373       ------------------
2374
2375       --  A COMMENT starts with two adjacent hyphens and extends up to the
2376       --  end of the line. A COMMENT may appear on any line of a program.
2377
2378       --  Comments are skipped by the scanner and do not appear in the tree.
2379       --  It is possible to reconstruct the position of comments with respect
2380       --  to the elements of the tree by using the source position (Sloc)
2381       --  pointers that appear in every tree node.
2382
2383       -----------------
2384       -- 2.8  Pragma --
2385       -----------------
2386
2387       --  PRAGMA ::= pragma IDENTIFIER
2388       --    [(PRAGMA_ARGUMENT_ASSOCIATION {, PRAGMA_ARGUMENT_ASSOCIATION})];
2389
2390       --  Note that a pragma may appear in the tree anywhere a declaration
2391       --  or a statement may appear, as well as in some other situations
2392       --  which are explicitly documented.
2393
2394       --  N_Pragma
2395       --  Sloc points to PRAGMA
2396       --  Next_Pragma (Node1-Sem)
2397       --  Pragma_Argument_Associations (List2) (set to No_List if none)
2398       --  Corresponding_Aspect (Node3-Sem) (set to Empty if not present)
2399       --  Pragma_Identifier (Node4)
2400       --  Next_Rep_Item (Node5-Sem)
2401       --  Class_Present (Flag6) set if from Aspect with 'Class
2402       --  From_Aspect_Specification (Flag13-Sem)
2403       --  Is_Delayed_Aspect (Flag14-Sem)
2404       --  Is_Disabled (Flag15-Sem)
2405       --  Is_Ignored (Flag9-Sem)
2406       --  Is_Checked (Flag11-Sem)
2407       --  Import_Interface_Present (Flag16-Sem)
2408       --  Split_PPC (Flag17) set if corresponding aspect had Split_PPC set
2409       --  Uneval_Old_Accept (Flag7-Sem)
2410       --  Uneval_Old_Warn (Flag18-Sem)
2411
2412       --  Note: we should have a section on what pragmas are passed on to
2413       --  the back end to be processed. This section should note that pragma
2414       --  Psect_Object is always converted to Common_Object, but there are
2415       --  undoubtedly many other similar notes required ???
2416
2417       --  Note: a utility function Pragma_Name may be applied to pragma nodes
2418       --  to conveniently obtain the Chars field of the Pragma_Identifier.
2419
2420       --  Note: if From_Aspect_Specification is set, then Sloc points to the
2421       --  aspect name, as does the Pragma_Identifier. In this case if the
2422       --  pragma has a local name argument (such as pragma Inline), it is
2423       --  resolved to point to the specific entity affected by the pragma.
2424
2425       --------------------------------------
2426       -- 2.8  Pragma Argument Association --
2427       --------------------------------------
2428
2429       --  PRAGMA_ARGUMENT_ASSOCIATION ::=
2430       --    [pragma_argument_IDENTIFIER =>] NAME
2431       --  | [pragma_argument_IDENTIFIER =>] EXPRESSION
2432
2433       --  In Ada 2012, there are two more possibilities:
2434
2435       --  PRAGMA_ARGUMENT_ASSOCIATION ::=
2436       --    [pragma_argument_ASPECT_MARK =>] NAME
2437       --  | [pragma_argument_ASPECT_MARK =>] EXPRESSION
2438
2439       --  where the interesting allowed cases (which do not fit the syntax of
2440       --  the first alternative above) are
2441
2442       --  ASPECT_MARK => Pre'Class |
2443       --                 Post'Class |
2444       --                 Type_Invariant'Class |
2445       --                 Invariant'Class
2446
2447       --  We allow this special usage in all Ada modes, but it would be a
2448       --  pain to allow these aspects to pervade the pragma syntax, and the
2449       --  representation of pragma nodes internally. So what we do is to
2450       --  replace these ASPECT_MARK forms with identifiers whose name is one
2451       --  of the special internal names _Pre, _Post or _Type_Invariant.
2452
2453       --  We do a similar replacement of these Aspect_Mark forms in the
2454       --  Expression of a pragma argument association for the cases of
2455       --  the first arguments of any Check pragmas and Check_Policy pragmas
2456
2457       --  N_Pragma_Argument_Association
2458       --  Sloc points to first token in association
2459       --  Chars (Name1) (set to No_Name if no pragma argument identifier)
2460       --  Expression (Node3)
2461
2462       ------------------------
2463       -- 2.9  Reserved Word --
2464       ------------------------
2465
2466       --  Reserved words are parsed by the scanner, and returned as the
2467       --  corresponding token types (e.g. PACKAGE is returned as Tok_Package)
2468
2469       ----------------------------
2470       -- 3.1  Basic Declaration --
2471       ----------------------------
2472
2473       --  BASIC_DECLARATION ::=
2474       --    TYPE_DECLARATION          | SUBTYPE_DECLARATION
2475       --  | OBJECT_DECLARATION        | NUMBER_DECLARATION
2476       --  | SUBPROGRAM_DECLARATION    | ABSTRACT_SUBPROGRAM_DECLARATION
2477       --  | PACKAGE_DECLARATION       | RENAMING_DECLARATION
2478       --  | EXCEPTION_DECLARATION     | GENERIC_DECLARATION
2479       --  | GENERIC_INSTANTIATION
2480
2481       --  Basic declaration also includes IMPLICIT_LABEL_DECLARATION
2482       --  see further description in section on semantic nodes.
2483
2484       --  Also, in the tree that is constructed, a pragma may appear
2485       --  anywhere that a declaration may appear.
2486
2487       ------------------------------
2488       -- 3.1  Defining Identifier --
2489       ------------------------------
2490
2491       --  DEFINING_IDENTIFIER ::= IDENTIFIER
2492
2493       --  A defining identifier is an entity, which has additional fields
2494       --  depending on the setting of the Ekind field. These additional
2495       --  fields are defined (and access subprograms declared) in package
2496       --  Einfo.
2497
2498       --  Note: N_Defining_Identifier is an extended node whose fields are
2499       --  deliberate layed out to match the layout of fields in an ordinary
2500       --  N_Identifier node allowing for easy alteration of an identifier
2501       --  node into a defining identifier node. For details, see procedure
2502       --  Sinfo.CN.Change_Identifier_To_Defining_Identifier.
2503
2504       --  N_Defining_Identifier
2505       --  Sloc points to identifier
2506       --  Chars (Name1) contains the Name_Id for the identifier
2507       --  Next_Entity (Node2-Sem)
2508       --  Scope (Node3-Sem)
2509       --  Etype (Node5-Sem)
2510
2511       -----------------------------
2512       -- 3.2.1  Type Declaration --
2513       -----------------------------
2514
2515       --  TYPE_DECLARATION ::=
2516       --    FULL_TYPE_DECLARATION
2517       --  | INCOMPLETE_TYPE_DECLARATION
2518       --  | PRIVATE_TYPE_DECLARATION
2519       --  | PRIVATE_EXTENSION_DECLARATION
2520
2521       ----------------------------------
2522       -- 3.2.1  Full Type Declaration --
2523       ----------------------------------
2524
2525       --  FULL_TYPE_DECLARATION ::=
2526       --    type DEFINING_IDENTIFIER [KNOWN_DISCRIMINANT_PART]
2527       --      is TYPE_DEFINITION
2528       --        [ASPECT_SPECIFICATIONS];
2529       --  | TASK_TYPE_DECLARATION
2530       --  | PROTECTED_TYPE_DECLARATION
2531
2532       --  The full type declaration node is used only for the first case. The
2533       --  second case (concurrent type declaration), is represented directly
2534       --  by a task type declaration or a protected type declaration.
2535
2536       --  N_Full_Type_Declaration
2537       --  Sloc points to TYPE
2538       --  Defining_Identifier (Node1)
2539       --  Incomplete_View (Node2-Sem)
2540       --  Discriminant_Specifications (List4) (set to No_List if none)
2541       --  Type_Definition (Node3)
2542       --  Discr_Check_Funcs_Built (Flag11-Sem)
2543
2544       ----------------------------
2545       -- 3.2.1  Type Definition --
2546       ----------------------------
2547
2548       --  TYPE_DEFINITION ::=
2549       --    ENUMERATION_TYPE_DEFINITION  | INTEGER_TYPE_DEFINITION
2550       --  | REAL_TYPE_DEFINITION         | ARRAY_TYPE_DEFINITION
2551       --  | RECORD_TYPE_DEFINITION       | ACCESS_TYPE_DEFINITION
2552       --  | DERIVED_TYPE_DEFINITION      | INTERFACE_TYPE_DEFINITION
2553
2554       --------------------------------
2555       -- 3.2.2  Subtype Declaration --
2556       --------------------------------
2557
2558       --  SUBTYPE_DECLARATION ::=
2559       --    subtype DEFINING_IDENTIFIER is [NULL_EXCLUSION] SUBTYPE_INDICATION
2560       --      [ASPECT_SPECIFICATIONS];
2561
2562       --  The subtype indication field is set to Empty for subtypes
2563       --  declared in package Standard (Positive, Natural).
2564
2565       --  N_Subtype_Declaration
2566       --  Sloc points to SUBTYPE
2567       --  Defining_Identifier (Node1)
2568       --  Null_Exclusion_Present (Flag11)
2569       --  Subtype_Indication (Node5)
2570       --  Generic_Parent_Type (Node4-Sem) (set for an actual derived type).
2571       --  Exception_Junk (Flag8-Sem)
2572       --  Has_Dynamic_Range_Check (Flag12-Sem)
2573
2574       -------------------------------
2575       -- 3.2.2  Subtype Indication --
2576       -------------------------------
2577
2578       --  SUBTYPE_INDICATION ::= SUBTYPE_MARK [CONSTRAINT]
2579
2580       --  Note: if no constraint is present, the subtype indication appears
2581       --  directly in the tree as a subtype mark. The N_Subtype_Indication
2582       --  node is used only if a constraint is present.
2583
2584       --  Note: [For Ada 2005 (AI-231)]: Because Ada 2005 extends this rule
2585       --  with the null-exclusion part (see AI-231), we had to introduce a new
2586       --  attribute in all the parents of subtype_indication nodes to indicate
2587       --  if the null-exclusion is present.
2588
2589       --  Note: the reason that this node has expression fields is that a
2590       --  subtype indication can appear as an operand of a membership test.
2591
2592       --  N_Subtype_Indication
2593       --  Sloc points to first token of subtype mark
2594       --  Subtype_Mark (Node4)
2595       --  Constraint (Node3)
2596       --  Etype (Node5-Sem)
2597       --  Must_Not_Freeze (Flag8-Sem)
2598
2599       --  Note: Depending on context, the Etype is either the entity of the
2600       --  Subtype_Mark field, or it is an itype constructed to reify the
2601       --  subtype indication. In particular, such itypes are created for a
2602       --  subtype indication that appears in an array type declaration. This
2603       --  simplifies constraint checking in indexed components.
2604
2605       --  For subtype indications that appear in scalar type and subtype
2606       --  declarations, the Etype is the entity of the subtype mark.
2607
2608       -------------------------
2609       -- 3.2.2  Subtype Mark --
2610       -------------------------
2611
2612       --  SUBTYPE_MARK ::= subtype_NAME
2613
2614       -----------------------
2615       -- 3.2.2  Constraint --
2616       -----------------------
2617
2618       --  CONSTRAINT ::= SCALAR_CONSTRAINT | COMPOSITE_CONSTRAINT
2619
2620       ------------------------------
2621       -- 3.2.2  Scalar Constraint --
2622       ------------------------------
2623
2624       --  SCALAR_CONSTRAINT ::=
2625       --    RANGE_CONSTRAINT | DIGITS_CONSTRAINT | DELTA_CONSTRAINT
2626
2627       ---------------------------------
2628       -- 3.2.2  Composite Constraint --
2629       ---------------------------------
2630
2631       --  COMPOSITE_CONSTRAINT ::=
2632       --    INDEX_CONSTRAINT | DISCRIMINANT_CONSTRAINT
2633
2634       -------------------------------
2635       -- 3.3.1  Object Declaration --
2636       -------------------------------
2637
2638       --  OBJECT_DECLARATION ::=
2639       --    DEFINING_IDENTIFIER_LIST : [aliased] [constant]
2640       --      [NULL_EXCLUSION] SUBTYPE_INDICATION [:= EXPRESSION]
2641       --        [ASPECT_SPECIFICATIONS];
2642       --  | DEFINING_IDENTIFIER_LIST : [aliased] [constant]
2643       --      ACCESS_DEFINITION [:= EXPRESSION]
2644       --        [ASPECT_SPECIFICATIONS];
2645       --  | DEFINING_IDENTIFIER_LIST : [aliased] [constant]
2646       --      ARRAY_TYPE_DEFINITION [:= EXPRESSION]
2647       --        [ASPECT_SPECIFICATIONS];
2648       --  | SINGLE_TASK_DECLARATION
2649       --  | SINGLE_PROTECTED_DECLARATION
2650
2651       --  Note: aliased is not permitted in Ada 83 mode
2652
2653       --  The N_Object_Declaration node is only for the first two cases.
2654       --  Single task declaration is handled by P_Task (9.1)
2655       --  Single protected declaration is handled by P_protected (9.5)
2656
2657       --  Although the syntax allows multiple identifiers in the list, the
2658       --  semantics is as though successive declarations were given with
2659       --  identical type definition and expression components. To simplify
2660       --  semantic processing, the parser represents a multiple declaration
2661       --  case as a sequence of single declarations, using the More_Ids and
2662       --  Prev_Ids flags to preserve the original source form as described
2663       --  in the section on "Handling of Defining Identifier Lists".
2664
2665       --  The flag Has_Init_Expression is set if an initializing expression
2666       --  is present. Normally it is set if and only if Expression contains
2667       --  a non-empty value, but there is an exception to this. When the
2668       --  initializing expression is an aggregate which requires explicit
2669       --  assignments, the Expression field gets set to Empty, but this flag
2670       --  is still set, so we don't forget we had an initializing expression.
2671
2672       --  Note: if a range check is required for the initialization
2673       --  expression then the Do_Range_Check flag is set in the Expression,
2674       --  with the check being done against the type given by the object
2675       --  definition, which is also the Etype of the defining identifier.
2676
2677       --  Note: the contents of the Expression field must be ignored (i.e.
2678       --  treated as though it were Empty) if No_Initialization is set True.
2679
2680       --  Note: the back end places some restrictions on the form of the
2681       --  Expression field. If the object being declared is Atomic, then
2682       --  the Expression may not have the form of an aggregate (since this
2683       --  might cause the back end to generate separate assignments). In this
2684       --  case the front end must generate an extra temporary and initialize
2685       --  this temporary as required (the temporary itself is not atomic).
2686
2687       --  Note: there is not node kind for object definition. Instead, the
2688       --  corresponding field holds a subtype indication, an array type
2689       --  definition, or (Ada 2005, AI-406) an access definition.
2690
2691       --  N_Object_Declaration
2692       --  Sloc points to first identifier
2693       --  Defining_Identifier (Node1)
2694       --  Aliased_Present (Flag4)
2695       --  Constant_Present (Flag17) set if CONSTANT appears
2696       --  Null_Exclusion_Present (Flag11)
2697       --  Object_Definition (Node4) subtype indic./array type def./access def.
2698       --  Expression (Node3) (set to Empty if not present)
2699       --  Handler_List_Entry (Node2-Sem)
2700       --  Corresponding_Generic_Association (Node5-Sem)
2701       --  More_Ids (Flag5) (set to False if no more identifiers in list)
2702       --  Prev_Ids (Flag6) (set to False if no previous identifiers in list)
2703       --  No_Initialization (Flag13-Sem)
2704       --  Assignment_OK (Flag15-Sem)
2705       --  Exception_Junk (Flag8-Sem)
2706       --  Is_Subprogram_Descriptor (Flag16-Sem)
2707       --  Has_Init_Expression (Flag14)
2708       --  Suppress_Assignment_Checks (Flag18-Sem)
2709
2710       -------------------------------------
2711       -- 3.3.1  Defining Identifier List --
2712       -------------------------------------
2713
2714       --  DEFINING_IDENTIFIER_LIST ::=
2715       --    DEFINING_IDENTIFIER {, DEFINING_IDENTIFIER}
2716
2717       -------------------------------
2718       -- 3.3.2  Number Declaration --
2719       -------------------------------
2720
2721       --  NUMBER_DECLARATION ::=
2722       --    DEFINING_IDENTIFIER_LIST : constant := static_EXPRESSION;
2723
2724       --  Although the syntax allows multiple identifiers in the list, the
2725       --  semantics is as though successive declarations were given with
2726       --  identical expressions. To simplify semantic processing, the parser
2727       --  represents a multiple declaration case as a sequence of single
2728       --  declarations, using the More_Ids and Prev_Ids flags to preserve
2729       --  the original source form as described in the section on "Handling
2730       --  of Defining Identifier Lists".
2731
2732       --  N_Number_Declaration
2733       --  Sloc points to first identifier
2734       --  Defining_Identifier (Node1)
2735       --  Expression (Node3)
2736       --  More_Ids (Flag5) (set to False if no more identifiers in list)
2737       --  Prev_Ids (Flag6) (set to False if no previous identifiers in list)
2738
2739       ----------------------------------
2740       -- 3.4  Derived Type Definition --
2741       ----------------------------------
2742
2743       --  DERIVED_TYPE_DEFINITION ::=
2744       --    [abstract] [limited] new [NULL_EXCLUSION] parent_SUBTYPE_INDICATION
2745       --    [[and INTERFACE_LIST] RECORD_EXTENSION_PART]
2746
2747       --  Note: ABSTRACT, LIMITED and record extension part are not permitted
2748       --  in Ada 83 mode
2749
2750       --  Note: a record extension part is required if ABSTRACT is present
2751
2752       --  N_Derived_Type_Definition
2753       --  Sloc points to NEW
2754       --  Abstract_Present (Flag4)
2755       --  Null_Exclusion_Present (Flag11) (set to False if not present)
2756       --  Subtype_Indication (Node5)
2757       --  Record_Extension_Part (Node3) (set to Empty if not present)
2758       --  Limited_Present (Flag17)
2759       --  Task_Present (Flag5) set in task interfaces
2760       --  Protected_Present (Flag6) set in protected interfaces
2761       --  Synchronized_Present (Flag7) set in interfaces
2762       --  Interface_List (List2) (set to No_List if none)
2763       --  Interface_Present (Flag16) set in abstract interfaces
2764
2765       --  Note: Task_Present, Protected_Present, Synchronized_Present,
2766       --        Interface_List, and Interface_Present are used for abstract
2767       --        interfaces (see comments for INTERFACE_TYPE_DEFINITION).
2768
2769       ---------------------------
2770       -- 3.5  Range Constraint --
2771       ---------------------------
2772
2773       --  RANGE_CONSTRAINT ::= range RANGE
2774
2775       --  N_Range_Constraint
2776       --  Sloc points to RANGE
2777       --  Range_Expression (Node4)
2778
2779       ----------------
2780       -- 3.5  Range --
2781       ----------------
2782
2783       --  RANGE ::=
2784       --    RANGE_ATTRIBUTE_REFERENCE
2785       --  | SIMPLE_EXPRESSION .. SIMPLE_EXPRESSION
2786
2787       --  Note: the case of a range given as a range attribute reference
2788       --  appears directly in the tree as an attribute reference.
2789
2790       --  Note: the field name for a reference to a range is Range_Expression
2791       --  rather than Range, because range is a reserved keyword in Ada.
2792
2793       --  Note: the reason that this node has expression fields is that a
2794       --  range can appear as an operand of a membership test. The Etype
2795       --  field is the type of the range (we do NOT construct an implicit
2796       --  subtype to represent the range exactly).
2797
2798       --  N_Range
2799       --  Sloc points to ..
2800       --  Low_Bound (Node1)
2801       --  High_Bound (Node2)
2802       --  Includes_Infinities (Flag11)
2803       --  plus fields for expression
2804
2805       --  Note: if the range appears in a context, such as a subtype
2806       --  declaration, where range checks are required on one or both of
2807       --  the expression fields, then type conversion nodes are inserted
2808       --  to represent the required checks.
2809
2810       ----------------------------------------
2811       -- 3.5.1  Enumeration Type Definition --
2812       ----------------------------------------
2813
2814       --  ENUMERATION_TYPE_DEFINITION ::=
2815       --    (ENUMERATION_LITERAL_SPECIFICATION
2816       --      {, ENUMERATION_LITERAL_SPECIFICATION})
2817
2818       --  Note: the Literals field in the node described below is null for
2819       --  the case of the standard types CHARACTER and WIDE_CHARACTER, for
2820       --  which special processing handles these types as special cases.
2821
2822       --  N_Enumeration_Type_Definition
2823       --  Sloc points to left parenthesis
2824       --  Literals (List1) (Empty for CHARACTER or WIDE_CHARACTER)
2825       --  End_Label (Node4) (set to Empty if internally generated record)
2826
2827       ----------------------------------------------
2828       -- 3.5.1  Enumeration Literal Specification --
2829       ----------------------------------------------
2830
2831       --  ENUMERATION_LITERAL_SPECIFICATION ::=
2832       --    DEFINING_IDENTIFIER | DEFINING_CHARACTER_LITERAL
2833
2834       ---------------------------------------
2835       -- 3.5.1  Defining Character Literal --
2836       ---------------------------------------
2837
2838       --  DEFINING_CHARACTER_LITERAL ::= CHARACTER_LITERAL
2839
2840       --  A defining character literal is an entity, which has additional
2841       --  fields depending on the setting of the Ekind field. These
2842       --  additional fields are defined (and access subprograms declared)
2843       --  in package Einfo.
2844
2845       --  Note: N_Defining_Character_Literal is an extended node whose fields
2846       --  are deliberate layed out to match the layout of fields in an ordinary
2847       --  N_Character_Literal node allowing for easy alteration of a character
2848       --  literal node into a defining character literal node. For details, see
2849       --  Sinfo.CN.Change_Character_Literal_To_Defining_Character_Literal.
2850
2851       --  N_Defining_Character_Literal
2852       --  Sloc points to literal
2853       --  Chars (Name1) contains the Name_Id for the identifier
2854       --  Next_Entity (Node2-Sem)
2855       --  Scope (Node3-Sem)
2856       --  Etype (Node5-Sem)
2857
2858       ------------------------------------
2859       -- 3.5.4  Integer Type Definition --
2860       ------------------------------------
2861
2862       --  Note: there is an error in this rule in the latest version of the
2863       --  grammar, so we have retained the old rule pending clarification.
2864
2865       --  INTEGER_TYPE_DEFINITION ::=
2866       --    SIGNED_INTEGER_TYPE_DEFINITION
2867       --  | MODULAR_TYPE_DEFINITION
2868
2869       -------------------------------------------
2870       -- 3.5.4  Signed Integer Type Definition --
2871       -------------------------------------------
2872
2873       --  SIGNED_INTEGER_TYPE_DEFINITION ::=
2874       --    range static_SIMPLE_EXPRESSION .. static_SIMPLE_EXPRESSION
2875
2876       --  Note: the Low_Bound and High_Bound fields are set to Empty
2877       --  for integer types defined in package Standard.
2878
2879       --  N_Signed_Integer_Type_Definition
2880       --  Sloc points to RANGE
2881       --  Low_Bound (Node1)
2882       --  High_Bound (Node2)
2883
2884       ------------------------------------
2885       -- 3.5.4  Modular Type Definition --
2886       ------------------------------------
2887
2888       --  MODULAR_TYPE_DEFINITION ::= mod static_EXPRESSION
2889
2890       --  N_Modular_Type_Definition
2891       --  Sloc points to MOD
2892       --  Expression (Node3)
2893
2894       ---------------------------------
2895       -- 3.5.6  Real Type Definition --
2896       ---------------------------------
2897
2898       --  REAL_TYPE_DEFINITION ::=
2899       --    FLOATING_POINT_DEFINITION | FIXED_POINT_DEFINITION
2900
2901       --------------------------------------
2902       -- 3.5.7  Floating Point Definition --
2903       --------------------------------------
2904
2905       --  FLOATING_POINT_DEFINITION ::=
2906       --    digits static_SIMPLE_EXPRESSION [REAL_RANGE_SPECIFICATION]
2907
2908       --  Note: The Digits_Expression and Real_Range_Specifications fields
2909       --  are set to Empty for floating-point types declared in Standard.
2910
2911       --  N_Floating_Point_Definition
2912       --  Sloc points to DIGITS
2913       --  Digits_Expression (Node2)
2914       --  Real_Range_Specification (Node4) (set to Empty if not present)
2915
2916       -------------------------------------
2917       -- 3.5.7  Real Range Specification --
2918       -------------------------------------
2919
2920       --  REAL_RANGE_SPECIFICATION ::=
2921       --    range static_SIMPLE_EXPRESSION .. static_SIMPLE_EXPRESSION
2922
2923       --  N_Real_Range_Specification
2924       --  Sloc points to RANGE
2925       --  Low_Bound (Node1)
2926       --  High_Bound (Node2)
2927
2928       -----------------------------------
2929       -- 3.5.9  Fixed Point Definition --
2930       -----------------------------------
2931
2932       --  FIXED_POINT_DEFINITION ::=
2933       --    ORDINARY_FIXED_POINT_DEFINITION | DECIMAL_FIXED_POINT_DEFINITION
2934
2935       --------------------------------------------
2936       -- 3.5.9  Ordinary Fixed Point Definition --
2937       --------------------------------------------
2938
2939       --  ORDINARY_FIXED_POINT_DEFINITION ::=
2940       --    delta static_EXPRESSION REAL_RANGE_SPECIFICATION
2941
2942       --  Note: In Ada 83, the EXPRESSION must be a SIMPLE_EXPRESSION
2943
2944       --  N_Ordinary_Fixed_Point_Definition
2945       --  Sloc points to DELTA
2946       --  Delta_Expression (Node3)
2947       --  Real_Range_Specification (Node4)
2948
2949       -------------------------------------------
2950       -- 3.5.9  Decimal Fixed Point Definition --
2951       -------------------------------------------
2952
2953       --  DECIMAL_FIXED_POINT_DEFINITION ::=
2954       --    delta static_EXPRESSION
2955       --      digits static_EXPRESSION [REAL_RANGE_SPECIFICATION]
2956
2957       --  Note: decimal types are not permitted in Ada 83 mode
2958
2959       --  N_Decimal_Fixed_Point_Definition
2960       --  Sloc points to DELTA
2961       --  Delta_Expression (Node3)
2962       --  Digits_Expression (Node2)
2963       --  Real_Range_Specification (Node4) (set to Empty if not present)
2964
2965       ------------------------------
2966       -- 3.5.9  Digits Constraint --
2967       ------------------------------
2968
2969       --  DIGITS_CONSTRAINT ::=
2970       --    digits static_EXPRESSION [RANGE_CONSTRAINT]
2971
2972       --  Note: in Ada 83, the EXPRESSION must be a SIMPLE_EXPRESSION
2973       --  Note: in Ada 95, reduced accuracy subtypes are obsolescent
2974
2975       --  N_Digits_Constraint
2976       --  Sloc points to DIGITS
2977       --  Digits_Expression (Node2)
2978       --  Range_Constraint (Node4) (set to Empty if not present)
2979
2980       --------------------------------
2981       -- 3.6  Array Type Definition --
2982       --------------------------------
2983
2984       --  ARRAY_TYPE_DEFINITION ::=
2985       --    UNCONSTRAINED_ARRAY_DEFINITION | CONSTRAINED_ARRAY_DEFINITION
2986
2987       -----------------------------------------
2988       -- 3.6  Unconstrained Array Definition --
2989       -----------------------------------------
2990
2991       --  UNCONSTRAINED_ARRAY_DEFINITION ::=
2992       --    array (INDEX_SUBTYPE_DEFINITION {, INDEX_SUBTYPE_DEFINITION}) of
2993       --      COMPONENT_DEFINITION
2994
2995       --  Note: dimensionality of array is indicated by number of entries in
2996       --  the Subtype_Marks list, which has one entry for each dimension.
2997
2998       --  N_Unconstrained_Array_Definition
2999       --  Sloc points to ARRAY
3000       --  Subtype_Marks (List2)
3001       --  Component_Definition (Node4)
3002
3003       -----------------------------------
3004       -- 3.6  Index Subtype Definition --
3005       -----------------------------------
3006
3007       --  INDEX_SUBTYPE_DEFINITION ::= SUBTYPE_MARK range <>
3008
3009       --  There is no explicit node in the tree for an index subtype
3010       --  definition since the N_Unconstrained_Array_Definition node
3011       --  incorporates the type marks which appear in this context.
3012
3013       ---------------------------------------
3014       -- 3.6  Constrained Array Definition --
3015       ---------------------------------------
3016
3017       --  CONSTRAINED_ARRAY_DEFINITION ::=
3018       --    array (DISCRETE_SUBTYPE_DEFINITION
3019       --      {, DISCRETE_SUBTYPE_DEFINITION})
3020       --        of COMPONENT_DEFINITION
3021
3022       --  Note: dimensionality of array is indicated by number of entries
3023       --  in the Discrete_Subtype_Definitions list, which has one entry
3024       --  for each dimension.
3025
3026       --  N_Constrained_Array_Definition
3027       --  Sloc points to ARRAY
3028       --  Discrete_Subtype_Definitions (List2)
3029       --  Component_Definition (Node4)
3030
3031       --  Note: although the language allows the full syntax for discrete
3032       --  subtype definitions (i.e. a discrete subtype indication or a range),
3033       --  in the generated tree, we always rewrite these as N_Range nodes.
3034
3035       --------------------------------------
3036       -- 3.6  Discrete Subtype Definition --
3037       --------------------------------------
3038
3039       --  DISCRETE_SUBTYPE_DEFINITION ::=
3040       --    discrete_SUBTYPE_INDICATION | RANGE
3041
3042       -------------------------------
3043       -- 3.6  Component Definition --
3044       -------------------------------
3045
3046       --  COMPONENT_DEFINITION ::=
3047       --    [aliased] [NULL_EXCLUSION] SUBTYPE_INDICATION | ACCESS_DEFINITION
3048
3049       --  Note: although the syntax does not permit a component definition to
3050       --  be an anonymous array (and the parser will diagnose such an attempt
3051       --  with an appropriate message), it is possible for anonymous arrays
3052       --  to appear as component definitions. The semantics and back end handle
3053       --  this case properly, and the expander in fact generates such cases.
3054       --  Access_Definition is an optional field that gives support to
3055       --  Ada 2005 (AI-230). The parser generates nodes that have either the
3056       --  Subtype_Indication field or else the Access_Definition field.
3057
3058       --  N_Component_Definition
3059       --  Sloc points to ALIASED, ACCESS or to first token of subtype mark
3060       --  Aliased_Present (Flag4)
3061       --  Null_Exclusion_Present (Flag11)
3062       --  Subtype_Indication (Node5) (set to Empty if not present)
3063       --  Access_Definition (Node3) (set to Empty if not present)
3064
3065       -----------------------------
3066       -- 3.6.1  Index Constraint --
3067       -----------------------------
3068
3069       --  INDEX_CONSTRAINT ::= (DISCRETE_RANGE {, DISCRETE_RANGE})
3070
3071       --  It is not in general possible to distinguish between discriminant
3072       --  constraints and index constraints at parse time, since a simple
3073       --  name could be either the subtype mark of a discrete range, or an
3074       --  expression in a discriminant association with no name. Either
3075       --  entry appears simply as the name, and the semantic parse must
3076       --  distinguish between the two cases. Thus we use a common tree
3077       --  node format for both of these constraint types.
3078
3079       --  See Discriminant_Constraint for format of node
3080
3081       ---------------------------
3082       -- 3.6.1  Discrete Range --
3083       ---------------------------
3084
3085       --  DISCRETE_RANGE ::= discrete_SUBTYPE_INDICATION | RANGE
3086
3087       ----------------------------
3088       -- 3.7  Discriminant Part --
3089       ----------------------------
3090
3091       --  DISCRIMINANT_PART ::=
3092       --    UNKNOWN_DISCRIMINANT_PART | KNOWN_DISCRIMINANT_PART
3093
3094       ------------------------------------
3095       -- 3.7  Unknown Discriminant Part --
3096       ------------------------------------
3097
3098       --  UNKNOWN_DISCRIMINANT_PART ::= (<>)
3099
3100       --  Note: unknown discriminant parts are not permitted in Ada 83 mode
3101
3102       --  There is no explicit node in the tree for an unknown discriminant
3103       --  part. Instead the Unknown_Discriminants_Present flag is set in the
3104       --  parent node.
3105
3106       ----------------------------------
3107       -- 3.7  Known Discriminant Part --
3108       ----------------------------------
3109
3110       --  KNOWN_DISCRIMINANT_PART ::=
3111       --    (DISCRIMINANT_SPECIFICATION {; DISCRIMINANT_SPECIFICATION})
3112
3113       -------------------------------------
3114       -- 3.7  Discriminant Specification --
3115       -------------------------------------
3116
3117       --  DISCRIMINANT_SPECIFICATION ::=
3118       --    DEFINING_IDENTIFIER_LIST : [NULL_EXCLUSION] SUBTYPE_MARK
3119       --      [:= DEFAULT_EXPRESSION]
3120       --  | DEFINING_IDENTIFIER_LIST : ACCESS_DEFINITION
3121       --      [:= DEFAULT_EXPRESSION]
3122
3123       --  Although the syntax allows multiple identifiers in the list, the
3124       --  semantics is as though successive specifications were given with
3125       --  identical type definition and expression components. To simplify
3126       --  semantic processing, the parser represents a multiple declaration
3127       --  case as a sequence of single specifications, using the More_Ids and
3128       --  Prev_Ids flags to preserve the original source form as described
3129       --  in the section on "Handling of Defining Identifier Lists".
3130
3131       --  N_Discriminant_Specification
3132       --  Sloc points to first identifier
3133       --  Defining_Identifier (Node1)
3134       --  Null_Exclusion_Present (Flag11)
3135       --  Discriminant_Type (Node5) subtype mark or access parameter definition
3136       --  Expression (Node3) (set to Empty if no default expression)
3137       --  More_Ids (Flag5) (set to False if no more identifiers in list)
3138       --  Prev_Ids (Flag6) (set to False if no previous identifiers in list)
3139
3140       -----------------------------
3141       -- 3.7  Default Expression --
3142       -----------------------------
3143
3144       --  DEFAULT_EXPRESSION ::= EXPRESSION
3145
3146       ------------------------------------
3147       -- 3.7.1  Discriminant Constraint --
3148       ------------------------------------
3149
3150       --  DISCRIMINANT_CONSTRAINT ::=
3151       --    (DISCRIMINANT_ASSOCIATION {, DISCRIMINANT_ASSOCIATION})
3152
3153       --  It is not in general possible to distinguish between discriminant
3154       --  constraints and index constraints at parse time, since a simple
3155       --  name could be either the subtype mark of a discrete range, or an
3156       --  expression in a discriminant association with no name. Either
3157       --  entry appears simply as the name, and the semantic parse must
3158       --  distinguish between the two cases. Thus we use a common tree
3159       --  node format for both of these constraint types.
3160
3161       --  N_Index_Or_Discriminant_Constraint
3162       --  Sloc points to left paren
3163       --  Constraints (List1) points to list of discrete ranges or
3164       --    discriminant associations
3165
3166       -------------------------------------
3167       -- 3.7.1  Discriminant Association --
3168       -------------------------------------
3169
3170       --  DISCRIMINANT_ASSOCIATION ::=
3171       --    [discriminant_SELECTOR_NAME
3172       --      {| discriminant_SELECTOR_NAME} =>] EXPRESSION
3173
3174       --  Note: a discriminant association that has no selector name list
3175       --  appears directly as an expression in the tree.
3176
3177       --  N_Discriminant_Association
3178       --  Sloc points to first token of discriminant association
3179       --  Selector_Names (List1) (always non-empty, since if no selector
3180       --   names are present, this node is not used, see comment above)
3181       --  Expression (Node3)
3182
3183       ---------------------------------
3184       -- 3.8  Record Type Definition --
3185       ---------------------------------
3186
3187       --  RECORD_TYPE_DEFINITION ::=
3188       --    [[abstract] tagged] [limited] RECORD_DEFINITION
3189
3190       --  Note: ABSTRACT, TAGGED, LIMITED are not permitted in Ada 83 mode
3191
3192       --  There is no explicit node in the tree for a record type definition.
3193       --  Instead the flags for Tagged_Present and Limited_Present appear in
3194       --  the N_Record_Definition node for a record definition appearing in
3195       --  the context of a record type definition.
3196
3197       ----------------------------
3198       -- 3.8  Record Definition --
3199       ----------------------------
3200
3201       --  RECORD_DEFINITION ::=
3202       --    record
3203       --      COMPONENT_LIST
3204       --    end record
3205       --  | null record
3206
3207       --  Note: the Abstract_Present, Tagged_Present and Limited_Present
3208       --  flags appear only for a record definition appearing in a record
3209       --  type definition.
3210
3211       --  Note: the NULL RECORD case is not permitted in Ada 83
3212
3213       --  N_Record_Definition
3214       --  Sloc points to RECORD or NULL
3215       --  End_Label (Node4) (set to Empty if internally generated record)
3216       --  Abstract_Present (Flag4)
3217       --  Tagged_Present (Flag15)
3218       --  Limited_Present (Flag17)
3219       --  Component_List (Node1) empty in null record case
3220       --  Null_Present (Flag13) set in null record case
3221       --  Task_Present (Flag5) set in task interfaces
3222       --  Protected_Present (Flag6) set in protected interfaces
3223       --  Synchronized_Present (Flag7) set in interfaces
3224       --  Interface_Present (Flag16) set in abstract interfaces
3225       --  Interface_List (List2) (set to No_List if none)
3226
3227       --  Note: Task_Present, Protected_Present, Synchronized _Present,
3228       --        Interface_List and Interface_Present are used for abstract
3229       --        interfaces (see comments for INTERFACE_TYPE_DEFINITION).
3230
3231       -------------------------
3232       -- 3.8  Component List --
3233       -------------------------
3234
3235       --  COMPONENT_LIST ::=
3236       --    COMPONENT_ITEM {COMPONENT_ITEM}
3237       --  | {COMPONENT_ITEM} VARIANT_PART
3238       --  | null;
3239
3240       --  N_Component_List
3241       --  Sloc points to first token of component list
3242       --  Component_Items (List3)
3243       --  Variant_Part (Node4) (set to Empty if no variant part)
3244       --  Null_Present (Flag13)
3245
3246       -------------------------
3247       -- 3.8  Component Item --
3248       -------------------------
3249
3250       --  COMPONENT_ITEM ::= COMPONENT_DECLARATION | REPRESENTATION_CLAUSE
3251
3252       --  Note: A component item can also be a pragma, and in the tree
3253       --  that is obtained after semantic processing, a component item
3254       --  can be an N_Null node resulting from a non-recognized pragma.
3255
3256       --------------------------------
3257       -- 3.8  Component Declaration --
3258       --------------------------------
3259
3260       --  COMPONENT_DECLARATION ::=
3261       --    DEFINING_IDENTIFIER_LIST : COMPONENT_DEFINITION
3262       --      [:= DEFAULT_EXPRESSION]
3263       --        [ASPECT_SPECIFICATIONS];
3264
3265       --  Note: although the syntax does not permit a component definition to
3266       --  be an anonymous array (and the parser will diagnose such an attempt
3267       --  with an appropriate message), it is possible for anonymous arrays
3268       --  to appear as component definitions. The semantics and back end handle
3269       --  this case properly, and the expander in fact generates such cases.
3270
3271       --  Although the syntax allows multiple identifiers in the list, the
3272       --  semantics is as though successive declarations were given with the
3273       --  same component definition and expression components. To simplify
3274       --  semantic processing, the parser represents a multiple declaration
3275       --  case as a sequence of single declarations, using the More_Ids and
3276       --  Prev_Ids flags to preserve the original source form as described
3277       --  in the section on "Handling of Defining Identifier Lists".
3278
3279       --  N_Component_Declaration
3280       --  Sloc points to first identifier
3281       --  Defining_Identifier (Node1)
3282       --  Component_Definition (Node4)
3283       --  Expression (Node3) (set to Empty if no default expression)
3284       --  More_Ids (Flag5) (set to False if no more identifiers in list)
3285       --  Prev_Ids (Flag6) (set to False if no previous identifiers in list)
3286
3287       -------------------------
3288       -- 3.8.1  Variant Part --
3289       -------------------------
3290
3291       --  VARIANT_PART ::=
3292       --    case discriminant_DIRECT_NAME is
3293       --      VARIANT {VARIANT}
3294       --    end case;
3295
3296       --  Note: the variants list can contain pragmas as well as variants.
3297       --  In a properly formed program there is at least one variant.
3298
3299       --  N_Variant_Part
3300       --  Sloc points to CASE
3301       --  Name (Node2)
3302       --  Variants (List1)
3303
3304       --------------------
3305       -- 3.8.1  Variant --
3306       --------------------
3307
3308       --  VARIANT ::=
3309       --    when DISCRETE_CHOICE_LIST =>
3310       --      COMPONENT_LIST
3311
3312       --  N_Variant
3313       --  Sloc points to WHEN
3314       --  Discrete_Choices (List4)
3315       --  Component_List (Node1)
3316       --  Enclosing_Variant (Node2-Sem)
3317       --  Present_Expr (Uint3-Sem)
3318       --  Dcheck_Function (Node5-Sem)
3319       --  Has_SP_Choice (Flag15-Sem)
3320
3321       --  Note: in the list of Discrete_Choices, the tree passed to the back
3322       --  end does not have choice entries corresponding to names of statically
3323       --  predicated subtypes. Such entries are always expanded out to the list
3324       --  of equivalent values or ranges. The ASIS tree generated in -gnatct
3325       --  mode also has this expansion, but done with a proper Rewrite call on
3326       --  the N_Variant node so that ASIS can properly retrieve the original.
3327
3328       ---------------------------------
3329       -- 3.8.1  Discrete Choice List --
3330       ---------------------------------
3331
3332       --  DISCRETE_CHOICE_LIST ::= DISCRETE_CHOICE {| DISCRETE_CHOICE}
3333
3334       ----------------------------
3335       -- 3.8.1  Discrete Choice --
3336       ----------------------------
3337
3338       --  DISCRETE_CHOICE ::= EXPRESSION | DISCRETE_RANGE | others
3339
3340       --  Note: in Ada 83 mode, the expression must be a simple expression
3341
3342       --  The only choice that appears explicitly is the OTHERS choice, as
3343       --  defined here. Other cases of discrete choice (expression and
3344       --  discrete range) appear directly. This production is also used
3345       --  for the OTHERS possibility of an exception choice.
3346
3347       --  Note: in accordance with the syntax, the parser does not check that
3348       --  OTHERS appears at the end on its own in a choice list context. This
3349       --  is a semantic check.
3350
3351       --  N_Others_Choice
3352       --  Sloc points to OTHERS
3353       --  Others_Discrete_Choices (List1-Sem)
3354       --  All_Others (Flag11-Sem)
3355
3356       ----------------------------------
3357       -- 3.9.1  Record Extension Part --
3358       ----------------------------------
3359
3360       --  RECORD_EXTENSION_PART ::= with RECORD_DEFINITION
3361
3362       --  Note: record extension parts are not permitted in Ada 83 mode
3363
3364       --------------------------------------
3365       -- 3.9.4  Interface Type Definition --
3366       --------------------------------------
3367
3368       --  INTERFACE_TYPE_DEFINITION ::=
3369       --    [limited | task | protected | synchronized]
3370       --    interface [interface_list]
3371
3372       --  Note: Interfaces are implemented with N_Record_Definition and
3373       --        N_Derived_Type_Definition nodes because most of the support
3374       --        for the analysis of abstract types has been reused to
3375       --        analyze abstract interfaces.
3376
3377       ----------------------------------
3378       -- 3.10  Access Type Definition --
3379       ----------------------------------
3380
3381       --  ACCESS_TYPE_DEFINITION ::=
3382       --    ACCESS_TO_OBJECT_DEFINITION
3383       --  | ACCESS_TO_SUBPROGRAM_DEFINITION
3384
3385       --------------------------
3386       -- 3.10  Null Exclusion --
3387       --------------------------
3388
3389       --  NULL_EXCLUSION ::= not null
3390
3391       ---------------------------------------
3392       -- 3.10  Access To Object Definition --
3393       ---------------------------------------
3394
3395       --  ACCESS_TO_OBJECT_DEFINITION ::=
3396       --    [NULL_EXCLUSION] access [GENERAL_ACCESS_MODIFIER]
3397       --    SUBTYPE_INDICATION
3398
3399       --  N_Access_To_Object_Definition
3400       --  Sloc points to ACCESS
3401       --  All_Present (Flag15)
3402       --  Null_Exclusion_Present (Flag11)
3403       --  Null_Excluding_Subtype (Flag16)
3404       --  Subtype_Indication (Node5)
3405       --  Constant_Present (Flag17)
3406
3407       -----------------------------------
3408       -- 3.10  General Access Modifier --
3409       -----------------------------------
3410
3411       --  GENERAL_ACCESS_MODIFIER ::= all | constant
3412
3413       --  Note: general access modifiers are not permitted in Ada 83 mode
3414
3415       --  There is no explicit node in the tree for general access modifier.
3416       --  Instead the All_Present or Constant_Present flags are set in the
3417       --  parent node.
3418
3419       -------------------------------------------
3420       -- 3.10  Access To Subprogram Definition --
3421       -------------------------------------------
3422
3423       --  ACCESS_TO_SUBPROGRAM_DEFINITION
3424       --    [NULL_EXCLUSION] access [protected] procedure PARAMETER_PROFILE
3425       --  | [NULL_EXCLUSION] access [protected] function
3426       --    PARAMETER_AND_RESULT_PROFILE
3427
3428       --  Note: access to subprograms are not permitted in Ada 83 mode
3429
3430       --  N_Access_Function_Definition
3431       --  Sloc points to ACCESS
3432       --  Null_Exclusion_Present (Flag11)
3433       --  Null_Exclusion_In_Return_Present (Flag14)
3434       --  Protected_Present (Flag6)
3435       --  Parameter_Specifications (List3) (set to No_List if no formal part)
3436       --  Result_Definition (Node4) result subtype (subtype mark or access def)
3437
3438       --  N_Access_Procedure_Definition
3439       --  Sloc points to ACCESS
3440       --  Null_Exclusion_Present (Flag11)
3441       --  Protected_Present (Flag6)
3442       --  Parameter_Specifications (List3) (set to No_List if no formal part)
3443
3444       -----------------------------
3445       -- 3.10  Access Definition --
3446       -----------------------------
3447
3448       --  ACCESS_DEFINITION ::=
3449       --    [NULL_EXCLUSION] access [GENERAL_ACCESS_MODIFIER] SUBTYPE_MARK
3450       --  | ACCESS_TO_SUBPROGRAM_DEFINITION
3451
3452       --  Note: access to subprograms are an Ada 2005 (AI-254) extension
3453
3454       --  N_Access_Definition
3455       --  Sloc points to ACCESS
3456       --  Null_Exclusion_Present (Flag11)
3457       --  All_Present (Flag15)
3458       --  Constant_Present (Flag17)
3459       --  Subtype_Mark (Node4)
3460       --  Access_To_Subprogram_Definition (Node3) (set to Empty if not present)
3461
3462       -----------------------------------------
3463       -- 3.10.1  Incomplete Type Declaration --
3464       -----------------------------------------
3465
3466       --  INCOMPLETE_TYPE_DECLARATION ::=
3467       --    type DEFINING_IDENTIFIER [DISCRIMINANT_PART] [IS TAGGED];
3468
3469       --  N_Incomplete_Type_Declaration
3470       --  Sloc points to TYPE
3471       --  Defining_Identifier (Node1)
3472       --  Discriminant_Specifications (List4) (set to No_List if no
3473       --   discriminant part, or if the discriminant part is an
3474       --   unknown discriminant part)
3475       --  Premature_Use (Node5-Sem) used for improved diagnostics.
3476       --  Unknown_Discriminants_Present (Flag13) set if (<>) discriminant
3477       --  Tagged_Present (Flag15)
3478
3479       ----------------------------
3480       -- 3.11  Declarative Part --
3481       ----------------------------
3482
3483       --  DECLARATIVE_PART ::= {DECLARATIVE_ITEM}
3484
3485       --  Note: although the parser enforces the syntactic requirement that
3486       --  a declarative part can contain only declarations, the semantic
3487       --  processing may add statements to the list of actions in a
3488       --  declarative part, so the code generator should be prepared
3489       --  to accept a statement in this position.
3490
3491       ----------------------------
3492       -- 3.11  Declarative Item --
3493       ----------------------------
3494
3495       --  DECLARATIVE_ITEM ::= BASIC_DECLARATIVE_ITEM | BODY
3496
3497       ----------------------------------
3498       -- 3.11  Basic Declarative Item --
3499       ----------------------------------
3500
3501       --  BASIC_DECLARATIVE_ITEM ::=
3502       --    BASIC_DECLARATION | REPRESENTATION_CLAUSE | USE_CLAUSE
3503
3504       ----------------
3505       -- 3.11  Body --
3506       ----------------
3507
3508       --  BODY ::= PROPER_BODY | BODY_STUB
3509
3510       -----------------------
3511       -- 3.11  Proper Body --
3512       -----------------------
3513
3514       --  PROPER_BODY ::=
3515       --    SUBPROGRAM_BODY | PACKAGE_BODY | TASK_BODY | PROTECTED_BODY
3516
3517       ---------------
3518       -- 4.1  Name --
3519       ---------------
3520
3521       --  NAME ::=
3522       --    DIRECT_NAME        | EXPLICIT_DEREFERENCE
3523       --  | INDEXED_COMPONENT  | SLICE
3524       --  | SELECTED_COMPONENT | ATTRIBUTE_REFERENCE
3525       --  | TYPE_CONVERSION    | FUNCTION_CALL
3526       --  | CHARACTER_LITERAL
3527
3528       ----------------------
3529       -- 4.1  Direct Name --
3530       ----------------------
3531
3532       --  DIRECT_NAME ::= IDENTIFIER | OPERATOR_SYMBOL
3533
3534       -----------------
3535       -- 4.1  Prefix --
3536       -----------------
3537
3538       --  PREFIX ::= NAME | IMPLICIT_DEREFERENCE
3539
3540       -------------------------------
3541       -- 4.1  Explicit Dereference --
3542       -------------------------------
3543
3544       --  EXPLICIT_DEREFERENCE ::= NAME . all
3545
3546       --  N_Explicit_Dereference
3547       --  Sloc points to ALL
3548       --  Prefix (Node3)
3549       --  Actual_Designated_Subtype (Node4-Sem)
3550       --  Atomic_Sync_Required (Flag14-Sem)
3551       --  Has_Dereference_Action (Flag13-Sem)
3552       --  plus fields for expression
3553
3554       -------------------------------
3555       -- 4.1  Implicit Dereference --
3556       -------------------------------
3557
3558       --  IMPLICIT_DEREFERENCE ::= NAME
3559
3560       ------------------------------
3561       -- 4.1.1  Indexed Component --
3562       ------------------------------
3563
3564       --  INDEXED_COMPONENT ::= PREFIX (EXPRESSION {, EXPRESSION})
3565
3566       --  Note: the parser may generate this node in some situations where it
3567       --  should be a function call. The semantic  pass must correct this
3568       --  misidentification (which is inevitable at the parser level).
3569
3570       --  N_Indexed_Component
3571       --  Sloc contains a copy of the Sloc value of the Prefix
3572       --  Prefix (Node3)
3573       --  Expressions (List1)
3574       --  Generalized_Indexing (Node4-Sem)
3575       --  Atomic_Sync_Required (Flag14-Sem)
3576       --  plus fields for expression
3577
3578       --  Note: if any of the subscripts requires a range check, then the
3579       --  Do_Range_Check flag is set on the corresponding expression, with
3580       --  the index type being determined from the type of the Prefix, which
3581       --  references the array being indexed.
3582
3583       --  Note: in a fully analyzed and expanded indexed component node, and
3584       --  hence in any such node that gigi sees, if the prefix is an access
3585       --  type, then an explicit dereference operation has been inserted.
3586
3587       ------------------
3588       -- 4.1.2  Slice --
3589       ------------------
3590
3591       --  SLICE ::= PREFIX (DISCRETE_RANGE)
3592
3593       --  Note: an implicit subtype is created to describe the resulting
3594       --  type, so that the bounds of this type are the bounds of the slice.
3595
3596       --  N_Slice
3597       --  Sloc points to first token of prefix
3598       --  Prefix (Node3)
3599       --  Discrete_Range (Node4)
3600       --  plus fields for expression
3601
3602       -------------------------------
3603       -- 4.1.3  Selected Component --
3604       -------------------------------
3605
3606       --  SELECTED_COMPONENT ::= PREFIX . SELECTOR_NAME
3607
3608       --  Note: selected components that are semantically expanded names get
3609       --  changed during semantic processing into the separate N_Expanded_Name
3610       --  node. See description of this node in the section on semantic nodes.
3611
3612       --  N_Selected_Component
3613       --  Sloc points to period
3614       --  Prefix (Node3)
3615       --  Selector_Name (Node2)
3616       --  Associated_Node (Node4-Sem)
3617       --  Do_Discriminant_Check (Flag1-Sem)
3618       --  Is_In_Discriminant_Check (Flag11-Sem)
3619       --  Is_Prefixed_Call (Flag17-Sem)
3620       --  Atomic_Sync_Required (Flag14-Sem)
3621       --  plus fields for expression
3622
3623       --------------------------
3624       -- 4.1.3  Selector Name --
3625       --------------------------
3626
3627       --  SELECTOR_NAME ::= IDENTIFIER | CHARACTER_LITERAL | OPERATOR_SYMBOL
3628
3629       --------------------------------
3630       -- 4.1.4  Attribute Reference --
3631       --------------------------------
3632
3633       --  ATTRIBUTE_REFERENCE ::= PREFIX ' ATTRIBUTE_DESIGNATOR
3634
3635       --  Note: the syntax is quite ambiguous at this point. Consider:
3636
3637       --    A'Length (X)  X is part of the attribute designator
3638       --    A'Pos (X)     X is an explicit actual parameter of function A'Pos
3639       --    A'Class (X)   X is the expression of a type conversion
3640
3641       --  It would be possible for the parser to distinguish these cases
3642       --  by looking at the attribute identifier. However, that would mean
3643       --  more work in introducing new implementation defined attributes,
3644       --  and also it would mean that special processing for attributes
3645       --  would be scattered around, instead of being centralized in the
3646       --  semantic routine that handles an N_Attribute_Reference node.
3647       --  Consequently, the parser in all the above cases stores the
3648       --  expression (X in these examples) as a single element list in
3649       --  in the Expressions field of the N_Attribute_Reference node.
3650
3651       --  Similarly, for attributes like Max which take two arguments,
3652       --  we store the two arguments as a two element list in the
3653       --  Expressions field. Of course it is clear at parse time that
3654       --  this case is really a function call with an attribute as the
3655       --  prefix, but it turns out to be convenient to handle the two
3656       --  argument case in a similar manner to the one argument case,
3657       --  and indeed in general the parser will accept any number of
3658       --  expressions in this position and store them as a list in the
3659       --  attribute reference node. This allows for future addition of
3660       --  attributes that take more than two arguments.
3661
3662       --  Note: named associates are not permitted in function calls where
3663       --  the function is an attribute (see RM 6.4(3)) so it is legitimate
3664       --  to skip the normal subprogram argument processing.
3665
3666       --  Note: for the attributes whose designators are technically keywords,
3667       --  i.e. digits, access, delta, range, the Attribute_Name field contains
3668       --  the corresponding name, even though no identifier is involved.
3669
3670       --  Note: the generated code may contain stream attributes applied to
3671       --  limited types for which no stream routines exist officially. In such
3672       --  case, the result is to use the stream attribute for the underlying
3673       --  full type, or in the case of a protected type, the components
3674       --  (including any discriminants) are merely streamed in order.
3675
3676       --  See Exp_Attr for a complete description of which attributes are
3677       --  passed onto Gigi, and which are handled entirely by the front end.
3678
3679       --  Gigi restriction: For the Pos attribute, the prefix cannot be
3680       --  a non-standard enumeration type or a nonzero/zero semantics
3681       --  boolean type, so the value is simply the stored representation.
3682
3683       --  Gigi requirement: For the Mechanism_Code attribute, if the prefix
3684       --  references a subprogram that is a renaming, then the front end must
3685       --  rewrite the attribute to refer directly to the renamed entity.
3686
3687       --  Note: syntactically the prefix of an attribute reference must be a
3688       --  name, and this (somewhat artificial) requirement is enforced by the
3689       --  parser. However, for many attributes, such as 'Valid, it is quite
3690       --  reasonable to apply the attribute to any value, and hence to any
3691       --  expression. Internally in the tree, the prefix is an expression which
3692       --  does not have to be a name, and this is handled fine by the semantic
3693       --  analysis and expansion, and back ends. This arises for the case of
3694       --  attribute references built by the expander (e.g. 'Valid for the case
3695       --  of an implicit validity check).
3696
3697       --  Note: In generated code, the Address and Unrestricted_Access
3698       --  attributes can be applied to any expression, and the meaning is
3699       --  to create an object containing the value (the object is in the
3700       --  current stack frame), and pass the address of this value. If the
3701       --  Must_Be_Byte_Aligned flag is set, then the object whose address
3702       --  is taken must be on a byte (storage unit) boundary, and if it is
3703       --  not (or may not be), then the generated code must create a copy
3704       --  that is byte aligned, and pass the address of this copy.
3705
3706       --  N_Attribute_Reference
3707       --  Sloc points to apostrophe
3708       --  Prefix (Node3) (general expression, see note above)
3709       --  Attribute_Name (Name2) identifier name from attribute designator
3710       --  Expressions (List1) (set to No_List if no associated expressions)
3711       --  Entity (Node4-Sem) used if the attribute yields a type
3712       --  Associated_Node (Node4-Sem)
3713       --  Do_Overflow_Check (Flag17-Sem)
3714       --  Header_Size_Added (Flag11-Sem)
3715       --  Must_Be_Byte_Aligned (Flag14-Sem)
3716       --  Non_Aliased_Prefix (Flag18-Sem)
3717       --  Redundant_Use (Flag13-Sem)
3718
3719       --  plus fields for expression
3720
3721       --  Note: in Modify_Tree_For_C mode, Max and Min attributes are expanded
3722       --  into equivalent if expressions, properly taking care of side effects.
3723
3724       ---------------------------------
3725       -- 4.1.4  Attribute Designator --
3726       ---------------------------------
3727
3728       --  ATTRIBUTE_DESIGNATOR ::=
3729       --    IDENTIFIER [(static_EXPRESSION)]
3730       --  | access | delta | digits
3731
3732       --  There is no explicit node in the tree for an attribute designator.
3733       --  Instead the Attribute_Name and Expressions fields of the parent
3734       --  node (N_Attribute_Reference node) hold the information.
3735
3736       --  Note: if ACCESS, DELTA or DIGITS appears in an attribute
3737       --  designator, then they are treated as identifiers internally
3738       --  rather than the keywords of the same name.
3739
3740       --------------------------------------
3741       -- 4.1.4  Range Attribute Reference --
3742       --------------------------------------
3743
3744       --  RANGE_ATTRIBUTE_REFERENCE ::= PREFIX ' RANGE_ATTRIBUTE_DESIGNATOR
3745
3746       --  A range attribute reference is represented in the tree using the
3747       --  normal N_Attribute_Reference node.
3748
3749       ---------------------------------------
3750       -- 4.1.4  Range Attribute Designator --
3751       ---------------------------------------
3752
3753       --  RANGE_ATTRIBUTE_DESIGNATOR ::= Range [(static_EXPRESSION)]
3754
3755       --  A range attribute designator is represented in the tree using the
3756       --  normal N_Attribute_Reference node.
3757
3758       --------------------
3759       -- 4.3  Aggregate --
3760       --------------------
3761
3762       --  AGGREGATE ::=
3763       --    RECORD_AGGREGATE | EXTENSION_AGGREGATE | ARRAY_AGGREGATE
3764
3765       -----------------------------
3766       -- 4.3.1  Record Aggregate --
3767       -----------------------------
3768
3769       --  RECORD_AGGREGATE ::= (RECORD_COMPONENT_ASSOCIATION_LIST)
3770
3771       --  N_Aggregate
3772       --  Sloc points to left parenthesis
3773       --  Expressions (List1) (set to No_List if none or null record case)
3774       --  Component_Associations (List2) (set to No_List if none)
3775       --  Null_Record_Present (Flag17)
3776       --  Aggregate_Bounds (Node3-Sem)
3777       --  Associated_Node (Node4-Sem)
3778       --  Compile_Time_Known_Aggregate (Flag18-Sem)
3779       --  Expansion_Delayed (Flag11-Sem)
3780       --  Has_Self_Reference (Flag13-Sem)
3781       --  plus fields for expression
3782
3783       --  Note: this structure is used for both record and array aggregates
3784       --  since the two cases are not separable by the parser. The parser
3785       --  makes no attempt to enforce consistency here, so it is up to the
3786       --  semantic phase to make sure that the aggregate is consistent (i.e.
3787       --  that it is not a "half-and-half" case that mixes record and array
3788       --  syntax. In particular, for a record aggregate, the expressions
3789       --  field will be set if there are positional associations.
3790
3791       --  Note: N_Aggregate is not used for all aggregates; in particular,
3792       --  there is a separate node kind for extension aggregates.
3793
3794       --  Note: gigi/gcc can handle array aggregates correctly providing that
3795       --  they are entirely positional, and the array subtype involved has a
3796       --  known at compile time length and is not bit packed, or a convention
3797       --  Fortran array with more than one dimension. If these conditions
3798       --  are not met, then the front end must translate the aggregate into
3799       --  an appropriate set of assignments into a temporary.
3800
3801       --  Note: for the record aggregate case, gigi/gcc can handle most cases
3802       --  of record aggregates, including those for packed, and rep-claused
3803       --  records, and also variant records, providing that there are no
3804       --  variable length fields whose size is not known at compile time,
3805       --  and providing that the aggregate is presented in fully named form.
3806
3807       --  The other situation in which array aggregates and record aggregates
3808       --  cannot be passed to the back end is if assignment to one or more
3809       --  components itself needs expansion, e.g. in the case of an assignment
3810       --  of an object of a controlled type. In such cases, the front end
3811       --  must expand the aggregate to a series of assignments, and apply
3812       --  the required expansion to the individual assignment statements.
3813
3814       ----------------------------------------------
3815       -- 4.3.1  Record Component Association List --
3816       ----------------------------------------------
3817
3818       --  RECORD_COMPONENT_ASSOCIATION_LIST ::=
3819       --     RECORD_COMPONENT_ASSOCIATION {, RECORD_COMPONENT_ASSOCIATION}
3820       --   | null record
3821
3822       --  There is no explicit node in the tree for a record component
3823       --  association list. Instead the Null_Record_Present flag is set in
3824       --  the parent node for the NULL RECORD case.
3825
3826       ------------------------------------------------------
3827       -- 4.3.1  Record Component Association (also 4.3.3) --
3828       ------------------------------------------------------
3829
3830       --  RECORD_COMPONENT_ASSOCIATION ::=
3831       --    [COMPONENT_CHOICE_LIST =>] EXPRESSION
3832
3833       --  N_Component_Association
3834       --  Sloc points to first selector name
3835       --  Choices (List1)
3836       --  Loop_Actions (List2-Sem)
3837       --  Expression (Node3) (empty if Box_Present)
3838       --  Box_Present (Flag15)
3839       --  Inherited_Discriminant (Flag13)
3840
3841       --  Note: this structure is used for both record component associations
3842       --  and array component associations, since the two cases aren't always
3843       --  separable by the parser. The choices list may represent either a
3844       --  list of selector names in the record aggregate case, or a list of
3845       --  discrete choices in the array aggregate case or an N_Others_Choice
3846       --  node (which appears as a singleton list). Box_Present gives support
3847       --  to Ada 2005 (AI-287).
3848
3849       ----------------------------------
3850       -- 4.3.1  Component Choice List --
3851       ----------------------------------
3852
3853       --  COMPONENT_CHOICE_LIST ::=
3854       --    component_SELECTOR_NAME {| component_SELECTOR_NAME}
3855       --  | others
3856
3857       --  The entries of a component choice list appear in the Choices list of
3858       --  the associated N_Component_Association, as either selector names, or
3859       --  as an N_Others_Choice node.
3860
3861       --------------------------------
3862       -- 4.3.2  Extension Aggregate --
3863       --------------------------------
3864
3865       --  EXTENSION_AGGREGATE ::=
3866       --    (ANCESTOR_PART with RECORD_COMPONENT_ASSOCIATION_LIST)
3867
3868       --  Note: extension aggregates are not permitted in Ada 83 mode
3869
3870       --  N_Extension_Aggregate
3871       --  Sloc points to left parenthesis
3872       --  Ancestor_Part (Node3)
3873       --  Associated_Node (Node4-Sem)
3874       --  Expressions (List1) (set to No_List if none or null record case)
3875       --  Component_Associations (List2) (set to No_List if none)
3876       --  Null_Record_Present (Flag17)
3877       --  Expansion_Delayed (Flag11-Sem)
3878       --  Has_Self_Reference (Flag13-Sem)
3879       --  plus fields for expression
3880
3881       --------------------------
3882       -- 4.3.2  Ancestor Part --
3883       --------------------------
3884
3885       --  ANCESTOR_PART ::= EXPRESSION | SUBTYPE_MARK
3886
3887       ----------------------------
3888       -- 4.3.3  Array Aggregate --
3889       ----------------------------
3890
3891       --  ARRAY_AGGREGATE ::=
3892       --    POSITIONAL_ARRAY_AGGREGATE | NAMED_ARRAY_AGGREGATE
3893
3894       ---------------------------------------
3895       -- 4.3.3  Positional Array Aggregate --
3896       ---------------------------------------
3897
3898       --  POSITIONAL_ARRAY_AGGREGATE ::=
3899       --    (EXPRESSION, EXPRESSION {, EXPRESSION})
3900       --  | (EXPRESSION {, EXPRESSION}, others => EXPRESSION)
3901
3902       --  See Record_Aggregate (4.3.1) for node structure
3903
3904       ----------------------------------
3905       -- 4.3.3  Named Array Aggregate --
3906       ----------------------------------
3907
3908       --  NAMED_ARRAY_AGGREGATE ::=
3909       --  | (ARRAY_COMPONENT_ASSOCIATION {, ARRAY_COMPONENT_ASSOCIATION})
3910
3911       --  See Record_Aggregate (4.3.1) for node structure
3912
3913       ----------------------------------------
3914       -- 4.3.3  Array Component Association --
3915       ----------------------------------------
3916
3917       --  ARRAY_COMPONENT_ASSOCIATION ::=
3918       --    DISCRETE_CHOICE_LIST => EXPRESSION
3919
3920       --  See Record_Component_Association (4.3.1) for node structure
3921
3922       --------------------------------------------------
3923       -- 4.4  Expression/Relation/Term/Factor/Primary --
3924       --------------------------------------------------
3925
3926       --  EXPRESSION ::=
3927       --    RELATION {LOGICAL_OPERATOR RELATION}
3928
3929       --  CHOICE_EXPRESSION ::=
3930       --    CHOICE_RELATION {LOGICAL_OPERATOR CHOICE_RELATION}
3931
3932       --  CHOICE_RELATION ::=
3933       --    SIMPLE_EXPRESSION [RELATIONAL_OPERATOR SIMPLE_EXPRESSION]
3934
3935       --  RELATION ::=
3936       --    SIMPLE_EXPRESSION [not] in MEMBERSHIP_CHOICE_LIST
3937       --  | RAISE_EXPRESSION
3938
3939       --  MEMBERSHIP_CHOICE_LIST ::=
3940       --    MEMBERSHIP_CHOICE {'|' MEMBERSHIP CHOICE}
3941
3942       --  MEMBERSHIP_CHOICE ::=
3943       --    CHOICE_EXPRESSION | RANGE | SUBTYPE_MARK
3944
3945       --  LOGICAL_OPERATOR ::= and | and then | or | or else | xor
3946
3947       --  SIMPLE_EXPRESSION ::=
3948       --    [UNARY_ADDING_OPERATOR] TERM {BINARY_ADDING_OPERATOR TERM}
3949
3950       --  TERM ::= FACTOR {MULTIPLYING_OPERATOR FACTOR}
3951
3952       --  FACTOR ::= PRIMARY [** PRIMARY] | abs PRIMARY | not PRIMARY
3953
3954       --  No nodes are generated for any of these constructs. Instead, the
3955       --  node for the operator appears directly. When we refer to an
3956       --  expression in this description, we mean any of the possible
3957       --  constituent components of an expression (e.g. identifier is
3958       --  an example of an expression).
3959
3960       --  Note: the above syntax is that Ada 2012 syntax which restricts
3961       --  choice relations to simple expressions to avoid ambiguities in
3962       --  some contexts with set membership notation. It has been decided
3963       --  that in retrospect, the Ada 95 change allowing general expressions
3964       --  in this context was a mistake, so we have reverted to the above
3965       --  syntax in Ada 95 and Ada 2005 modes (the restriction to simple
3966       --  expressions was there in Ada 83 from the start).
3967
3968       ------------------
3969       -- 4.4  Primary --
3970       ------------------
3971
3972       --  PRIMARY ::=
3973       --    NUMERIC_LITERAL  | null
3974       --  | STRING_LITERAL   | AGGREGATE
3975       --  | NAME             | QUALIFIED_EXPRESSION
3976       --  | ALLOCATOR        | (EXPRESSION)
3977
3978       --  Usually there is no explicit node in the tree for primary. Instead
3979       --  the constituent (e.g. AGGREGATE) appears directly. There are two
3980       --  exceptions. First, there is an explicit node for a null primary.
3981
3982       --  N_Null
3983       --  Sloc points to NULL
3984       --  plus fields for expression
3985
3986       --  Second, the case of (EXPRESSION) is handled specially. Ada requires
3987       --  that the parser keep track of which subexpressions are enclosed
3988       --  in parentheses, and how many levels of parentheses are used. This
3989       --  information is required for optimization purposes, and also for
3990       --  some semantic checks (e.g. (((1))) in a procedure spec does not
3991       --  conform with ((((1)))) in the body).
3992
3993       --  The parentheses are recorded by keeping a Paren_Count field in every
3994       --  subexpression node (it is actually present in all nodes, but only
3995       --  used in subexpression nodes). This count records the number of
3996       --  levels of parentheses. If the number of levels in the source exceeds
3997       --  the maximum accommodated by this count, then the count is simply left
3998       --  at the maximum value. This means that there are some pathological
3999       --  cases of failure to detect conformance failures (e.g. an expression
4000       --  with 500 levels of parens will conform with one with 501 levels),
4001       --  but we do not need to lose sleep over this.
4002
4003       --  Historical note: in versions of GNAT prior to 1.75, there was a node
4004       --  type N_Parenthesized_Expression used to accurately record unlimited
4005       --  numbers of levels of parentheses. However, it turned out to be a
4006       --  real nuisance to have to take into account the possible presence of
4007       --  this node during semantic analysis, since basically parentheses have
4008       --  zero relevance to semantic analysis.
4009
4010       --  Note: the level of parentheses always present in things like
4011       --  aggregates does not count, only the parentheses in the primary
4012       --  (EXPRESSION) affect the setting of the Paren_Count field.
4013
4014       --  2nd Note: the contents of the Expression field must be ignored (i.e.
4015       --  treated as though it were Empty) if No_Initialization is set True.
4016
4017       --------------------------------------
4018       -- 4.5  Short Circuit Control Forms --
4019       --------------------------------------
4020
4021       --  EXPRESSION ::=
4022       --    RELATION {and then RELATION} | RELATION {or else RELATION}
4023
4024       --  Gigi restriction: For both these control forms, the operand and
4025       --  result types are always Standard.Boolean. The expander inserts the
4026       --  required conversion operations where needed to ensure this is the
4027       --  case.
4028
4029       --  N_And_Then
4030       --  Sloc points to AND of AND THEN
4031       --  Left_Opnd (Node2)
4032       --  Right_Opnd (Node3)
4033       --  Actions (List1-Sem)
4034       --  plus fields for expression
4035
4036       --  N_Or_Else
4037       --  Sloc points to OR of OR ELSE
4038       --  Left_Opnd (Node2)
4039       --  Right_Opnd (Node3)
4040       --  Actions (List1-Sem)
4041       --  plus fields for expression
4042
4043       --  Note: The Actions field is used to hold actions associated with
4044       --  the right hand operand. These have to be treated specially since
4045       --  they are not unconditionally executed. See Insert_Actions for a
4046       --  more detailed description of how these actions are handled.
4047
4048       ---------------------------
4049       -- 4.5  Membership Tests --
4050       ---------------------------
4051
4052       --  RELATION ::=
4053       --    SIMPLE_EXPRESSION [not] in MEMBERSHIP_CHOICE_LIST
4054
4055       --  MEMBERSHIP_CHOICE_LIST ::=
4056       --    MEMBERSHIP_CHOICE {'|' MEMBERSHIP CHOICE}
4057
4058       --  MEMBERSHIP_CHOICE ::=
4059       --    CHOICE_EXPRESSION | RANGE | SUBTYPE_MARK
4060
4061       --  Note: although the grammar above allows only a range or a subtype
4062       --  mark, the parser in fact will accept any simple expression in place
4063       --  of a subtype mark. This means that the semantic analyzer must be able
4064       --  to deal with, and diagnose a simple expression other than a name for
4065       --  the right operand. This simplifies error recovery in the parser.
4066
4067       --  The Alternatives field below is present only if there is more than
4068       --  one Membership_Choice present (which is legitimate only in Ada 2012
4069       --  mode) in which case Right_Opnd is Empty, and Alternatives contains
4070       --  the list of choices. In the tree passed to the back end, Alternatives
4071       --  is always No_List, and Right_Opnd is set (i.e. the expansion circuit
4072       --  expands out the complex set membership case using simple membership
4073       --  and equality operations).
4074
4075       --  Should we rename Alternatives here to Membership_Choices ???
4076
4077       --  N_In
4078       --  Sloc points to IN
4079       --  Left_Opnd (Node2)
4080       --  Right_Opnd (Node3)
4081       --  Alternatives (List4) (set to No_List if only one set alternative)
4082       --  No_Minimize_Eliminate (Flag17)
4083       --  plus fields for expression
4084
4085       --  N_Not_In
4086       --  Sloc points to NOT of NOT IN
4087       --  Left_Opnd (Node2)
4088       --  Right_Opnd (Node3)
4089       --  Alternatives (List4) (set to No_List if only one set alternative)
4090       --  No_Minimize_Eliminate (Flag17)
4091       --  plus fields for expression
4092
4093       --------------------
4094       -- 4.5  Operators --
4095       --------------------
4096
4097       --  LOGICAL_OPERATOR             ::=  and | or  | xor
4098
4099       --  RELATIONAL_OPERATOR          ::=  =   | /=  | <   | <= | > | >=
4100
4101       --  BINARY_ADDING_OPERATOR       ::=  +   |  -  | &
4102
4103       --  UNARY_ADDING_OPERATOR        ::=  +   |  -
4104
4105       --  MULTIPLYING_OPERATOR         ::=  *   |  /  | mod | rem
4106
4107       --  HIGHEST_PRECEDENCE_OPERATOR  ::=  **  | abs | not
4108
4109       --  Sprint syntax if Treat_Fixed_As_Integer is set:
4110
4111       --     x #* y
4112       --     x #/ y
4113       --     x #mod y
4114       --     x #rem y
4115
4116       --  Gigi restriction: For * / mod rem with fixed-point operands, Gigi
4117       --  will only be given nodes with the Treat_Fixed_As_Integer flag set.
4118       --  All handling of smalls for multiplication and division is handled
4119       --  by the front end (mod and rem result only from expansion). Gigi
4120       --  thus never needs to worry about small values (for other operators
4121       --  operating on fixed-point, e.g. addition, the small value does not
4122       --  have any semantic effect anyway, these are always integer operations.
4123
4124       --  Gigi restriction: For all operators taking Boolean operands, the
4125       --  type is always Standard.Boolean. The expander inserts the required
4126       --  conversion operations where needed to ensure this is the case.
4127
4128       --  N_Op_And
4129       --  Sloc points to AND
4130       --  Do_Length_Check (Flag4-Sem)
4131       --  plus fields for binary operator
4132       --  plus fields for expression
4133
4134       --  N_Op_Or
4135       --  Sloc points to OR
4136       --  Do_Length_Check (Flag4-Sem)
4137       --  plus fields for binary operator
4138       --  plus fields for expression
4139
4140       --  N_Op_Xor
4141       --  Sloc points to XOR
4142       --  Do_Length_Check (Flag4-Sem)
4143       --  plus fields for binary operator
4144       --  plus fields for expression
4145
4146       --  N_Op_Eq
4147       --  Sloc points to =
4148       --  plus fields for binary operator
4149       --  plus fields for expression
4150
4151       --  N_Op_Ne
4152       --  Sloc points to /=
4153       --  plus fields for binary operator
4154       --  plus fields for expression
4155
4156       --  N_Op_Lt
4157       --  Sloc points to <
4158       --  plus fields for binary operator
4159       --  plus fields for expression
4160
4161       --  N_Op_Le
4162       --  Sloc points to <=
4163       --  plus fields for binary operator
4164       --  plus fields for expression
4165
4166       --  N_Op_Gt
4167       --  Sloc points to >
4168       --  plus fields for binary operator
4169       --  plus fields for expression
4170
4171       --  N_Op_Ge
4172       --  Sloc points to >=
4173       --  plus fields for binary operator
4174       --  plus fields for expression
4175
4176       --  N_Op_Add
4177       --  Sloc points to + (binary)
4178       --  plus fields for binary operator
4179       --  plus fields for expression
4180
4181       --  N_Op_Subtract
4182       --  Sloc points to - (binary)
4183       --  plus fields for binary operator
4184       --  plus fields for expression
4185
4186       --  N_Op_Concat
4187       --  Sloc points to &
4188       --  Is_Component_Left_Opnd (Flag13-Sem)
4189       --  Is_Component_Right_Opnd (Flag14-Sem)
4190       --  plus fields for binary operator
4191       --  plus fields for expression
4192
4193       --  N_Op_Multiply
4194       --  Sloc points to *
4195       --  Treat_Fixed_As_Integer (Flag14-Sem)
4196       --  Rounded_Result (Flag18-Sem)
4197       --  plus fields for binary operator
4198       --  plus fields for expression
4199
4200       --  N_Op_Divide
4201       --  Sloc points to /
4202       --  Treat_Fixed_As_Integer (Flag14-Sem)
4203       --  Do_Division_Check (Flag13-Sem)
4204       --  Rounded_Result (Flag18-Sem)
4205       --  plus fields for binary operator
4206       --  plus fields for expression
4207
4208       --  N_Op_Mod
4209       --  Sloc points to MOD
4210       --  Treat_Fixed_As_Integer (Flag14-Sem)
4211       --  Do_Division_Check (Flag13-Sem)
4212       --  plus fields for binary operator
4213       --  plus fields for expression
4214
4215       --  N_Op_Rem
4216       --  Sloc points to REM
4217       --  Treat_Fixed_As_Integer (Flag14-Sem)
4218       --  Do_Division_Check (Flag13-Sem)
4219       --  plus fields for binary operator
4220       --  plus fields for expression
4221
4222       --  N_Op_Expon
4223       --  Is_Power_Of_2_For_Shift (Flag13-Sem)
4224       --  Sloc points to **
4225       --  plus fields for binary operator
4226       --  plus fields for expression
4227
4228       --  N_Op_Plus
4229       --  Sloc points to + (unary)
4230       --  plus fields for unary operator
4231       --  plus fields for expression
4232
4233       --  N_Op_Minus
4234       --  Sloc points to - (unary)
4235       --  plus fields for unary operator
4236       --  plus fields for expression
4237
4238       --  N_Op_Abs
4239       --  Sloc points to ABS
4240       --  plus fields for unary operator
4241       --  plus fields for expression
4242
4243       --  N_Op_Not
4244       --  Sloc points to NOT
4245       --  plus fields for unary operator
4246       --  plus fields for expression
4247
4248       --  See also shift operators in section B.2
4249
4250       --  Note on fixed-point operations passed to Gigi: For adding operators,
4251       --  the semantics is to treat these simply as integer operations, with
4252       --  the small values being ignored (the bounds are already stored in
4253       --  units of small, so that constraint checking works as usual). For the
4254       --  case of multiply/divide/rem/mod operations, Gigi will only see fixed
4255       --  point operands if the Treat_Fixed_As_Integer flag is set and will
4256       --  thus treat these nodes in identical manner, ignoring small values.
4257
4258       --  Note on overflow handling: When the overflow checking mode is set to
4259       --  MINIMIZED or ELIMINATED, nodes for signed arithmetic operations may
4260       --  be modified to use a larger type for the operands and result. In
4261       --  the case where the computed range exceeds that of Long_Long_Integer,
4262       --  and we are running in ELIMINATED mode, the operator node will be
4263       --  changed to be a call to the appropriate routine in System.Bignums.
4264
4265       --  Note: In Modify_Tree_For_C mode, we do not generate an N_Op_Mod node
4266       --  for signed integer types (since there is no equivalent operator in
4267       --  C). Instead we rewrite such an operation in terms of REM (which is
4268       --  % in C) and other C-available operators.
4269
4270       ------------------------------------
4271       -- 4.5.7  Conditional Expressions --
4272       ------------------------------------
4273
4274       --  CONDITIONAL_EXPRESSION ::= IF_EXPRESSION | CASE_EXPRESSION
4275
4276       --------------------------
4277       -- 4.5.7  If Expression --
4278       ----------------------------
4279
4280       --  IF_EXPRESSION ::=
4281       --    if CONDITION then DEPENDENT_EXPRESSION
4282       --                {elsif CONDITION then DEPENDENT_EXPRESSION}
4283       --                [else DEPENDENT_EXPRESSION]
4284
4285       --  DEPENDENT_EXPRESSION ::= EXPRESSION
4286
4287       --  Note: if we have (IF x1 THEN x2 ELSIF x3 THEN x4 ELSE x5) then it
4288       --  is represented as (IF x1 THEN x2 ELSE (IF x3 THEN x4 ELSE x5)) and
4289       --  the Is_Elsif flag is set on the inner if expression.
4290
4291       --  N_If_Expression
4292       --  Sloc points to IF or ELSIF keyword
4293       --  Expressions (List1)
4294       --  Then_Actions (List2-Sem)
4295       --  Else_Actions (List3-Sem)
4296       --  Is_Elsif (Flag13) (set if comes from ELSIF)
4297       --  Do_Overflow_Check (Flag17-Sem)
4298       --  plus fields for expression
4299
4300       --  Expressions here is a three-element list, whose first element is the
4301       --  condition, the second element is the dependent expression after THEN
4302       --  and the third element is the dependent expression after the ELSE
4303       --  (explicitly set to True if missing).
4304
4305       --  Note: the Then_Actions and Else_Actions fields are always set to
4306       --  No_List in the tree passed to the back end. These are used only
4307       --  for temporary processing purposes in the expander. Even though they
4308       --  are semantic fields, their parent pointers are set because analysis
4309       --  of actions nodes in those lists may generate additional actions that
4310       --  need to know their insertion point (for example for the creation of
4311       --  transient scopes).
4312
4313       --  Note: in the tree passed to the back end, if the result type is
4314       --  an unconstrained array, the if expression can only appears in the
4315       --  initializing expression of an object declaration (this avoids the
4316       --  back end having to create a variable length temporary on the fly).
4317
4318       ----------------------------
4319       -- 4.5.7  Case Expression --
4320       ----------------------------
4321
4322       --  CASE_EXPRESSION ::=
4323       --    case SELECTING_EXPRESSION is
4324       --      CASE_EXPRESSION_ALTERNATIVE
4325       --      {,CASE_EXPRESSION_ALTERNATIVE}
4326
4327       --  Note that the Alternatives cannot include pragmas (this contrasts
4328       --  with the situation of case statements where pragmas are allowed).
4329
4330       --  N_Case_Expression
4331       --  Sloc points to CASE
4332       --  Expression (Node3) (the selecting expression)
4333       --  Alternatives (List4) (the case expression alternatives)
4334       --  Do_Overflow_Check (Flag17-Sem)
4335
4336       ----------------------------------------
4337       -- 4.5.7  Case Expression Alternative --
4338       ----------------------------------------
4339
4340       --  CASE_EXPRESSION_ALTERNATIVE ::=
4341       --    when DISCRETE_CHOICE_LIST =>
4342       --      DEPENDENT_EXPRESSION
4343
4344       --  N_Case_Expression_Alternative
4345       --  Sloc points to WHEN
4346       --  Actions (List1)
4347       --  Discrete_Choices (List4)
4348       --  Expression (Node3)
4349       --  Has_SP_Choice (Flag15-Sem)
4350
4351       --  Note: The Actions field temporarily holds any actions associated with
4352       --  evaluation of the Expression. During expansion of the case expression
4353       --  these actions are wrapped into an N_Expressions_With_Actions node
4354       --  replacing the original expression.
4355
4356       --  Note: this node never appears in the tree passed to the back end,
4357       --  since the expander converts case expressions into case statements.
4358
4359       ---------------------------------
4360       -- 4.5.9 Quantified Expression --
4361       ---------------------------------
4362
4363       --  QUANTIFIED_EXPRESSION ::=
4364       --    for QUANTIFIER LOOP_PARAMETER_SPECIFICATION => PREDICATE
4365       --  | for QUANTIFIER ITERATOR_SPECIFICATION => PREDICATE
4366       --
4367       --  QUANTIFIER ::= all | some
4368
4369       --  At most one of (Iterator_Specification, Loop_Parameter_Specification)
4370       --  is present at a time, in which case the other one is empty.
4371
4372       --  N_Quantified_Expression
4373       --  Sloc points to FOR
4374       --  Iterator_Specification (Node2)
4375       --  Loop_Parameter_Specification (Node4)
4376       --  Condition (Node1)
4377       --  All_Present (Flag15)
4378
4379       --------------------------
4380       -- 4.6  Type Conversion --
4381       --------------------------
4382
4383       --  TYPE_CONVERSION ::=
4384       --    SUBTYPE_MARK (EXPRESSION) | SUBTYPE_MARK (NAME)
4385
4386       --  In the (NAME) case, the name is stored as the expression
4387
4388       --  Note: the parser never generates a type conversion node, since it
4389       --  looks like an indexed component which is generated by preference.
4390       --  The semantic pass must correct this misidentification.
4391
4392       --  Gigi handles conversions that involve no change in the root type,
4393       --  and also all conversions from integer to floating-point types.
4394       --  Conversions from floating-point to integer are only handled in
4395       --  the case where Float_Truncate flag set. Other conversions from
4396       --  floating-point to integer (involving rounding) and all conversions
4397       --  involving fixed-point types are handled by the expander.
4398
4399       --  Sprint syntax if Float_Truncate set: X^(Y)
4400       --  Sprint syntax if Conversion_OK set X?(Y)
4401       --  Sprint syntax if both flags set X?^(Y)
4402
4403       --  Note: If either the operand or result type is fixed-point, Gigi will
4404       --  only see a type conversion node with Conversion_OK set. The front end
4405       --  takes care of all handling of small's for fixed-point conversions.
4406
4407       --  N_Type_Conversion
4408       --  Sloc points to first token of subtype mark
4409       --  Subtype_Mark (Node4)
4410       --  Expression (Node3)
4411       --  Do_Discriminant_Check (Flag1-Sem)
4412       --  Do_Length_Check (Flag4-Sem)
4413       --  Float_Truncate (Flag11-Sem)
4414       --  Do_Tag_Check (Flag13-Sem)
4415       --  Conversion_OK (Flag14-Sem)
4416       --  Do_Overflow_Check (Flag17-Sem)
4417       --  Rounded_Result (Flag18-Sem)
4418       --  plus fields for expression
4419
4420       --  Note: if a range check is required, then the Do_Range_Check flag
4421       --  is set in the Expression with the check being done against the
4422       --  target type range (after the base type conversion, if any).
4423
4424       -------------------------------
4425       -- 4.7  Qualified Expression --
4426       -------------------------------
4427
4428       --  QUALIFIED_EXPRESSION ::=
4429       --    SUBTYPE_MARK ' (EXPRESSION) | SUBTYPE_MARK ' AGGREGATE
4430
4431       --  Note: the parentheses in the (EXPRESSION) case are deemed to enclose
4432       --  the expression, so the Expression field of this node always points
4433       --  to a parenthesized expression in this case (i.e. Paren_Count will
4434       --  always be non-zero for the referenced expression if it is not an
4435       --  aggregate).
4436
4437       --  N_Qualified_Expression
4438       --  Sloc points to apostrophe
4439       --  Subtype_Mark (Node4)
4440       --  Expression (Node3) expression or aggregate
4441       --  plus fields for expression
4442
4443       --------------------
4444       -- 4.8  Allocator --
4445       --------------------
4446
4447       --  ALLOCATOR ::=
4448       --      new [SUBPOOL_SPECIFICATION] SUBTYPE_INDICATION
4449       --    | new [SUBPOOL_SPECIFICATION] QUALIFIED_EXPRESSION
4450       --
4451       --  SUBPOOL_SPECIFICATION ::= (subpool_handle_NAME)
4452
4453       --  Sprint syntax (when storage pool present)
4454       --    new xxx (storage_pool = pool)
4455       --  or
4456       --    new (subpool) xxx (storage_pool = pool)
4457
4458       --  N_Allocator
4459       --  Sloc points to NEW
4460       --  Expression (Node3) subtype indication or qualified expression
4461       --  Subpool_Handle_Name (Node4) (set to Empty if not present)
4462       --  Storage_Pool (Node1-Sem)
4463       --  Procedure_To_Call (Node2-Sem)
4464       --  Null_Exclusion_Present (Flag11)
4465       --  No_Initialization (Flag13-Sem)
4466       --  Is_Static_Coextension (Flag14-Sem)
4467       --  Do_Storage_Check (Flag17-Sem)
4468       --  Is_Dynamic_Coextension (Flag18-Sem)
4469       --  plus fields for expression
4470
4471       --  Note: like all nodes, the N_Allocator has the Comes_From_Source flag.
4472       --  This flag has a special function in conjunction with the restriction
4473       --  No_Implicit_Heap_Allocations, which will be triggered if this flag
4474       --  is not set. This means that if a source allocator is replaced with
4475       --  a constructed allocator, the Comes_From_Source flag should be copied
4476       --  to the newly created allocator.
4477
4478       ---------------------------------
4479       -- 5.1  Sequence Of Statements --
4480       ---------------------------------
4481
4482       --  SEQUENCE_OF_STATEMENTS ::= STATEMENT {STATEMENT}
4483
4484       --  Note: Although the parser will not accept a declaration as a
4485       --  statement, the semantic analyzer may insert declarations (e.g.
4486       --  declarations of implicit types needed for execution of other
4487       --  statements) into a sequence of statements, so the code generator
4488       --  should be prepared to accept a declaration where a statement is
4489       --  expected. Note also that pragmas can appear as statements.
4490
4491       --------------------
4492       -- 5.1  Statement --
4493       --------------------
4494
4495       --  STATEMENT ::=
4496       --    {LABEL} SIMPLE_STATEMENT | {LABEL} COMPOUND_STATEMENT
4497
4498       --  There is no explicit node in the tree for a statement. Instead, the
4499       --  individual statement appears directly. Labels are treated  as a
4500       --  kind of statement, i.e. they are linked into a statement list at
4501       --  the point they appear, so the labeled statement appears following
4502       --  the label or labels in the statement list.
4503
4504       ---------------------------
4505       -- 5.1  Simple Statement --
4506       ---------------------------
4507
4508       --  SIMPLE_STATEMENT ::=        NULL_STATEMENT
4509       --  | ASSIGNMENT_STATEMENT    | EXIT_STATEMENT
4510       --  | GOTO_STATEMENT          | PROCEDURE_CALL_STATEMENT
4511       --  | SIMPLE_RETURN_STATEMENT | ENTRY_CALL_STATEMENT
4512       --  | REQUEUE_STATEMENT       | DELAY_STATEMENT
4513       --  | ABORT_STATEMENT         | RAISE_STATEMENT
4514       --  | CODE_STATEMENT
4515
4516       -----------------------------
4517       -- 5.1  Compound Statement --
4518       -----------------------------
4519
4520       --  COMPOUND_STATEMENT ::=
4521       --    IF_STATEMENT              | CASE_STATEMENT
4522       --  | LOOP_STATEMENT            | BLOCK_STATEMENT
4523       --  | EXTENDED_RETURN_STATEMENT
4524       --  | ACCEPT_STATEMENT          | SELECT_STATEMENT
4525
4526       -------------------------
4527       -- 5.1  Null Statement --
4528       -------------------------
4529
4530       --  NULL_STATEMENT ::= null;
4531
4532       --  N_Null_Statement
4533       --  Sloc points to NULL
4534
4535       ----------------
4536       -- 5.1  Label --
4537       ----------------
4538
4539       --  LABEL ::= <<label_STATEMENT_IDENTIFIER>>
4540
4541       --  Note that the occurrence of a label is not a defining identifier,
4542       --  but rather a referencing occurrence. The defining occurrence is
4543       --  in the implicit label declaration which occurs in the innermost
4544       --  enclosing block.
4545
4546       --  N_Label
4547       --  Sloc points to <<
4548       --  Identifier (Node1) direct name of statement identifier
4549       --  Exception_Junk (Flag8-Sem)
4550
4551       --  Note: Before Ada 2012, a label is always followed by a statement,
4552       --  and this is true in the tree even in Ada 2012 mode (the parser
4553       --  inserts a null statement marked with Comes_From_Source False).
4554
4555       -------------------------------
4556       -- 5.1  Statement Identifier --
4557       -------------------------------
4558
4559       --  STATEMENT_IDENTIFIER ::= DIRECT_NAME
4560
4561       --  The IDENTIFIER of a STATEMENT_IDENTIFIER shall be an identifier
4562       --  (not an OPERATOR_SYMBOL)
4563
4564       -------------------------------
4565       -- 5.2  Assignment Statement --
4566       -------------------------------
4567
4568       --  ASSIGNMENT_STATEMENT ::=
4569       --    variable_NAME := EXPRESSION;
4570
4571       --  N_Assignment_Statement
4572       --  Sloc points to :=
4573       --  Name (Node2)
4574       --  Expression (Node3)
4575       --  Do_Discriminant_Check (Flag1-Sem)
4576       --  Do_Tag_Check (Flag13-Sem)
4577       --  Do_Length_Check (Flag4-Sem)
4578       --  Forwards_OK (Flag5-Sem)
4579       --  Backwards_OK (Flag6-Sem)
4580       --  No_Ctrl_Actions (Flag7-Sem)
4581       --  Componentwise_Assignment (Flag14-Sem)
4582       --  Suppress_Assignment_Checks (Flag18-Sem)
4583
4584       --  Note: if a range check is required, then the Do_Range_Check flag
4585       --  is set in the Expression (right hand side), with the check being
4586       --  done against the type of the Name (left hand side).
4587
4588       --  Note: the back end places some restrictions on the form of the
4589       --  Expression field. If the object being assigned to is Atomic, then
4590       --  the Expression may not have the form of an aggregate (since this
4591       --  might cause the back end to generate separate assignments). In this
4592       --  case the front end must generate an extra temporary and initialize
4593       --  this temporary as required (the temporary itself is not atomic).
4594
4595       -----------------------
4596       -- 5.3  If Statement --
4597       -----------------------
4598
4599       --  IF_STATEMENT ::=
4600       --    if CONDITION then
4601       --      SEQUENCE_OF_STATEMENTS
4602       --    {elsif CONDITION then
4603       --      SEQUENCE_OF_STATEMENTS}
4604       --    [else
4605       --      SEQUENCE_OF_STATEMENTS]
4606       --    end if;
4607
4608       --  Gigi restriction: This expander ensures that the type of the
4609       --  Condition fields is always Standard.Boolean, even if the type
4610       --  in the source is some non-standard boolean type.
4611
4612       --  N_If_Statement
4613       --  Sloc points to IF
4614       --  Condition (Node1)
4615       --  Then_Statements (List2)
4616       --  Elsif_Parts (List3) (set to No_List if none present)
4617       --  Else_Statements (List4) (set to No_List if no else part present)
4618       --  End_Span (Uint5) (set to Uint_0 if expander generated)
4619       --  From_Conditional_Expression (Flag1-Sem)
4620
4621       --  N_Elsif_Part
4622       --  Sloc points to ELSIF
4623       --  Condition (Node1)
4624       --  Then_Statements (List2)
4625       --  Condition_Actions (List3-Sem)
4626
4627       --------------------
4628       -- 5.3  Condition --
4629       --------------------
4630
4631       --  CONDITION ::= boolean_EXPRESSION
4632
4633       -------------------------
4634       -- 5.4  Case Statement --
4635       -------------------------
4636
4637       --  CASE_STATEMENT ::=
4638       --    case EXPRESSION is
4639       --      CASE_STATEMENT_ALTERNATIVE
4640       --      {CASE_STATEMENT_ALTERNATIVE}
4641       --    end case;
4642
4643       --  Note: the Alternatives can contain pragmas. These only occur at
4644       --  the start of the list, since any pragmas occurring after the first
4645       --  alternative are absorbed into the corresponding statement sequence.
4646
4647       --  N_Case_Statement
4648       --  Sloc points to CASE
4649       --  Expression (Node3)
4650       --  Alternatives (List4)
4651       --  End_Span (Uint5) (set to Uint_0 if expander generated)
4652       --  From_Conditional_Expression (Flag1-Sem)
4653
4654       --  Note: Before Ada 2012, a pragma in a statement sequence is always
4655       --  followed by a statement, and this is true in the tree even in Ada
4656       --  2012 mode (the parser inserts a null statement marked with the flag
4657       --  Comes_From_Source False).
4658
4659       -------------------------------------
4660       -- 5.4  Case Statement Alternative --
4661       -------------------------------------
4662
4663       --  CASE_STATEMENT_ALTERNATIVE ::=
4664       --    when DISCRETE_CHOICE_LIST =>
4665       --      SEQUENCE_OF_STATEMENTS
4666
4667       --  N_Case_Statement_Alternative
4668       --  Sloc points to WHEN
4669       --  Discrete_Choices (List4)
4670       --  Statements (List3)
4671       --  Has_SP_Choice (Flag15-Sem)
4672
4673       --  Note: in the list of Discrete_Choices, the tree passed to the back
4674       --  end does not have choice entries corresponding to names of statically
4675       --  predicated subtypes. Such entries are always expanded out to the list
4676       --  of equivalent values or ranges. The ASIS tree generated in -gnatct
4677       --  mode does not have this expansion, and has the original choices.
4678
4679       -------------------------
4680       -- 5.5  Loop Statement --
4681       -------------------------
4682
4683       --  LOOP_STATEMENT ::=
4684       --    [loop_STATEMENT_IDENTIFIER :]
4685       --      [ITERATION_SCHEME] loop
4686       --        SEQUENCE_OF_STATEMENTS
4687       --      end loop [loop_IDENTIFIER];
4688
4689       --  Note: The occurrence of a loop label is not a defining identifier
4690       --  but rather a referencing occurrence. The defining occurrence is in
4691       --  the implicit label declaration which occurs in the innermost
4692       --  enclosing block.
4693
4694       --  Note: there is always a loop statement identifier present in the
4695       --  tree, even if none was given in the source. In the case where no loop
4696       --  identifier is given in the source, the parser creates a name of the
4697       --  form _Loop_n, where n is a decimal integer (the two underlines ensure
4698       --  that the loop names created in this manner do not conflict with any
4699       --  user defined identifiers), and the flag Has_Created_Identifier is set
4700       --  to True. The only exception to the rule that all loop statement nodes
4701       --  have identifiers occurs for loops constructed by the expander, and
4702       --  the semantic analyzer will create and supply dummy loop identifiers
4703       --  in these cases.
4704
4705       --  N_Loop_Statement
4706       --  Sloc points to LOOP
4707       --  Identifier (Node1) loop identifier (set to Empty if no identifier)
4708       --  Iteration_Scheme (Node2) (set to Empty if no iteration scheme)
4709       --  Statements (List3)
4710       --  End_Label (Node4)
4711       --  Has_Created_Identifier (Flag15)
4712       --  Is_Null_Loop (Flag16)
4713       --  Suppress_Loop_Warnings (Flag17)
4714
4715       --  Note: the parser fills in the Identifier field if there is an
4716       --  explicit loop identifier. Otherwise the parser leaves this field
4717       --  set to Empty, and then the semantic processing for a loop statement
4718       --  creates an identifier, setting the Has_Created_Identifier flag to
4719       --  True. So after semantic analysis, the Identifier is always set,
4720       --  referencing an identifier whose entity has an Ekind of E_Loop.
4721
4722       ---------------------------
4723       -- 5.5  Iteration Scheme --
4724       ---------------------------
4725
4726       --  ITERATION_SCHEME ::=
4727       --    while CONDITION
4728       --  | for LOOP_PARAMETER_SPECIFICATION
4729       --  | for ITERATOR_SPECIFICATION
4730
4731       --  At most one of (Iterator_Specification, Loop_Parameter_Specification)
4732       --  is present at a time, in which case the other one is empty. Both are
4733       --  empty in the case of a WHILE loop.
4734
4735       --  Gigi restriction: The expander ensures that the type of the Condition
4736       --  field is always Standard.Boolean, even if the type in the source is
4737       --  some non-standard boolean type.
4738
4739       --  N_Iteration_Scheme
4740       --  Sloc points to WHILE or FOR
4741       --  Condition (Node1) (set to Empty if FOR case)
4742       --  Condition_Actions (List3-Sem)
4743       --  Iterator_Specification (Node2) (set to Empty if WHILE case)
4744       --  Loop_Parameter_Specification (Node4) (set to Empty if WHILE case)
4745
4746       ---------------------------------------
4747       -- 5.5  Loop Parameter Specification --
4748       ---------------------------------------
4749
4750       --  LOOP_PARAMETER_SPECIFICATION ::=
4751       --    DEFINING_IDENTIFIER in [reverse] DISCRETE_SUBTYPE_DEFINITION
4752
4753       --  N_Loop_Parameter_Specification
4754       --  Sloc points to first identifier
4755       --  Defining_Identifier (Node1)
4756       --  Reverse_Present (Flag15)
4757       --  Discrete_Subtype_Definition (Node4)
4758
4759       -----------------------------------
4760       -- 5.5.1  Iterator Specification --
4761       -----------------------------------
4762
4763       --  ITERATOR_SPECIFICATION ::=
4764       --    DEFINING_IDENTIFIER in [reverse] NAME
4765       --  | DEFINING_IDENTIFIER [: SUBTYPE_INDICATION] of [reverse] NAME
4766
4767       --  N_Iterator_Specification
4768       --  Sloc points to defining identifier
4769       --  Defining_Identifier (Node1)
4770       --  Name (Node2)
4771       --  Reverse_Present (Flag15)
4772       --  Of_Present (Flag16)
4773       --  Subtype_Indication (Node5)
4774
4775       --  Note: The Of_Present flag distinguishes the two forms
4776
4777       --------------------------
4778       -- 5.6  Block Statement --
4779       --------------------------
4780
4781       --  BLOCK_STATEMENT ::=
4782       --    [block_STATEMENT_IDENTIFIER:]
4783       --      [declare
4784       --        DECLARATIVE_PART]
4785       --      begin
4786       --        HANDLED_SEQUENCE_OF_STATEMENTS
4787       --      end [block_IDENTIFIER];
4788
4789       --  Note that the occurrence of a block identifier is not a defining
4790       --  identifier, but rather a referencing occurrence. The defining
4791       --  occurrence is an E_Block entity declared by the implicit label
4792       --  declaration which occurs in the innermost enclosing block statement
4793       --  or body; the block identifier denotes that E_Block.
4794
4795       --  For block statements that come from source code, there is always a
4796       --  block statement identifier present in the tree, denoting an E_Block.
4797       --  In the case where no block identifier is given in the source,
4798       --  the parser creates a name of the form B_n, where n is a decimal
4799       --  integer, and the flag Has_Created_Identifier is set to True. Blocks
4800       --  constructed by the expander usually have no identifier, and no
4801       --  corresponding entity.
4802
4803       --  Note: the block statement created for an extended return statement
4804       --  has an entity, and this entity is an E_Return_Statement, rather than
4805       --  the usual E_Block.
4806
4807       --  Note: Exception_Junk is set for the wrapping blocks created during
4808       --  local raise optimization (Exp_Ch11.Expand_Local_Exception_Handlers).
4809
4810       --  Note: from a control flow viewpoint, a block statement defines an
4811       --  extended basic block, i.e. the entry of the block dominates every
4812       --  statement in the sequence. When generating new statements with
4813       --  exception handlers in the expander at the end of a sequence that
4814       --  comes from source code, it can be necessary to wrap them all in a
4815       --  block statement in order to expose the implicit control flow to
4816       --  gigi and thus prevent it from issuing bogus control flow warnings.
4817
4818       --  N_Block_Statement
4819       --  Sloc points to DECLARE or BEGIN
4820       --  Identifier (Node1) block direct name (set to Empty if not present)
4821       --  Declarations (List2) (set to No_List if no DECLARE part)
4822       --  Handled_Statement_Sequence (Node4)
4823       --  Cleanup_Actions (List5-Sem)
4824       --  Is_Task_Master (Flag5-Sem)
4825       --  Activation_Chain_Entity (Node3-Sem)
4826       --  Has_Created_Identifier (Flag15)
4827       --  Is_Task_Allocation_Block (Flag6)
4828       --  Is_Asynchronous_Call_Block (Flag7)
4829       --  Exception_Junk (Flag8-Sem)
4830       --  Is_Finalization_Wrapper (Flag9-Sem)
4831
4832       -------------------------
4833       -- 5.7  Exit Statement --
4834       -------------------------
4835
4836       --  EXIT_STATEMENT ::= exit [loop_NAME] [when CONDITION];
4837
4838       --  Gigi restriction: The expander ensures that the type of the Condition
4839       --  field is always Standard.Boolean, even if the type in the source is
4840       --  some non-standard boolean type.
4841
4842       --  N_Exit_Statement
4843       --  Sloc points to EXIT
4844       --  Name (Node2) (set to Empty if no loop name present)
4845       --  Condition (Node1) (set to Empty if no WHEN part present)
4846       --  Next_Exit_Statement (Node3-Sem): Next exit on chain
4847
4848       -------------------------
4849       -- 5.9  Goto Statement --
4850       -------------------------
4851
4852       --  GOTO_STATEMENT ::= goto label_NAME;
4853
4854       --  N_Goto_Statement
4855       --  Sloc points to GOTO
4856       --  Name (Node2)
4857       --  Exception_Junk (Flag8-Sem)
4858
4859       ---------------------------------
4860       -- 6.1  Subprogram Declaration --
4861       ---------------------------------
4862
4863       --  SUBPROGRAM_DECLARATION ::=
4864       --    SUBPROGRAM_SPECIFICATION
4865       --      [ASPECT_SPECIFICATIONS];
4866
4867       --  N_Subprogram_Declaration
4868       --  Sloc points to FUNCTION or PROCEDURE
4869       --  Specification (Node1)
4870       --  Body_To_Inline (Node3-Sem)
4871       --  Corresponding_Body (Node5-Sem)
4872       --  Parent_Spec (Node4-Sem)
4873
4874       ------------------------------------------
4875       -- 6.1  Abstract Subprogram Declaration --
4876       ------------------------------------------
4877
4878       --  ABSTRACT_SUBPROGRAM_DECLARATION ::=
4879       --    SUBPROGRAM_SPECIFICATION is abstract
4880       --      [ASPECT_SPECIFICATIONS];
4881
4882       --  N_Abstract_Subprogram_Declaration
4883       --  Sloc points to ABSTRACT
4884       --  Specification (Node1)
4885
4886       -----------------------------------
4887       -- 6.1  Subprogram Specification --
4888       -----------------------------------
4889
4890       --  SUBPROGRAM_SPECIFICATION ::=
4891       --    [[not] overriding]
4892       --    procedure DEFINING_PROGRAM_UNIT_NAME PARAMETER_PROFILE
4893       --  | [[not] overriding]
4894       --    function DEFINING_DESIGNATOR PARAMETER_AND_RESULT_PROFILE
4895
4896       --  Note: there are no separate nodes for the profiles, instead the
4897       --  information appears directly in the following nodes.
4898
4899       --  N_Function_Specification
4900       --  Sloc points to FUNCTION
4901       --  Defining_Unit_Name (Node1) (the designator)
4902       --  Elaboration_Boolean (Node2-Sem)
4903       --  Parameter_Specifications (List3) (set to No_List if no formal part)
4904       --  Null_Exclusion_Present (Flag11)
4905       --  Result_Definition (Node4) for result subtype
4906       --  Generic_Parent (Node5-Sem)
4907       --  Must_Override (Flag14) set if overriding indicator present
4908       --  Must_Not_Override (Flag15) set if not_overriding indicator present
4909
4910       --  N_Procedure_Specification
4911       --  Sloc points to PROCEDURE
4912       --  Defining_Unit_Name (Node1)
4913       --  Elaboration_Boolean (Node2-Sem)
4914       --  Parameter_Specifications (List3) (set to No_List if no formal part)
4915       --  Generic_Parent (Node5-Sem)
4916       --  Null_Present (Flag13) set for null procedure case (Ada 2005 feature)
4917       --  Must_Override (Flag14) set if overriding indicator present
4918       --  Must_Not_Override (Flag15) set if not_overriding indicator present
4919
4920       --  Note: overriding indicator is an Ada 2005 feature
4921
4922       ---------------------
4923       -- 6.1  Designator --
4924       ---------------------
4925
4926       --  DESIGNATOR ::=
4927       --    [PARENT_UNIT_NAME .] IDENTIFIER | OPERATOR_SYMBOL
4928
4929       --  Designators that are simply identifiers or operator symbols appear
4930       --  directly in the tree in this form. The following node is used only
4931       --  in the case where the designator has a parent unit name component.
4932
4933       --  N_Designator
4934       --  Sloc points to period
4935       --  Name (Node2) holds the parent unit name
4936       --  Identifier (Node1)
4937
4938       --  Note: Name is always non-Empty, since this node is only used for the
4939       --  case where a parent library unit package name is present.
4940
4941       --  Note that the identifier can also be an operator symbol here
4942
4943       ------------------------------
4944       -- 6.1  Defining Designator --
4945       ------------------------------
4946
4947       --  DEFINING_DESIGNATOR ::=
4948       --    DEFINING_PROGRAM_UNIT_NAME | DEFINING_OPERATOR_SYMBOL
4949
4950       -------------------------------------
4951       -- 6.1  Defining Program Unit Name --
4952       -------------------------------------
4953
4954       --  DEFINING_PROGRAM_UNIT_NAME ::=
4955       --    [PARENT_UNIT_NAME .] DEFINING_IDENTIFIER
4956
4957       --  The parent unit name is present only in the case of a child unit name
4958       --  (permissible only for Ada 95 for a library level unit, i.e. a unit
4959       --  at scope level one). If no such name is present, the defining program
4960       --  unit name is represented simply as the defining identifier. In the
4961       --  child unit case, the following node is used to represent the child
4962       --  unit name.
4963
4964       --  N_Defining_Program_Unit_Name
4965       --  Sloc points to period
4966       --  Name (Node2) holds the parent unit name
4967       --  Defining_Identifier (Node1)
4968
4969       --  Note: Name is always non-Empty, since this node is only used for the
4970       --  case where a parent unit name is present.
4971
4972       --------------------------
4973       -- 6.1  Operator Symbol --
4974       --------------------------
4975
4976       --  OPERATOR_SYMBOL ::= STRING_LITERAL
4977
4978       --  Note: the fields of the N_Operator_Symbol node are laid out to match
4979       --  the corresponding fields of an N_Character_Literal node. This allows
4980       --  easy conversion of the operator symbol node into a character literal
4981       --  node in the case where a string constant of the form of an operator
4982       --  symbol is scanned out as such, but turns out semantically to be a
4983       --  string literal that is not an operator. For details see Sinfo.CN.
4984       --  Change_Operator_Symbol_To_String_Literal.
4985
4986       --  N_Operator_Symbol
4987       --  Sloc points to literal
4988       --  Chars (Name1) contains the Name_Id for the operator symbol
4989       --  Strval (Str3) Id of string value. This is used if the operator
4990       --   symbol turns out to be a normal string after all.
4991       --  Entity (Node4-Sem)
4992       --  Associated_Node (Node4-Sem)
4993       --  Has_Private_View (Flag11-Sem) set in generic units.
4994       --  Etype (Node5-Sem)
4995
4996       --  Note: the Strval field may be set to No_String for generated
4997       --  operator symbols that are known not to be string literals
4998       --  semantically.
4999
5000       -----------------------------------
5001       -- 6.1  Defining Operator Symbol --
5002       -----------------------------------
5003
5004       --  DEFINING_OPERATOR_SYMBOL ::= OPERATOR_SYMBOL
5005
5006       --  A defining operator symbol is an entity, which has additional
5007       --  fields depending on the setting of the Ekind field. These
5008       --  additional fields are defined (and access subprograms declared)
5009       --  in package Einfo.
5010
5011       --  Note: N_Defining_Operator_Symbol is an extended node whose fields
5012       --  are deliberately layed out to match the layout of fields in an
5013       --  ordinary N_Operator_Symbol node allowing for easy alteration of
5014       --  an operator symbol node into a defining operator symbol node.
5015       --  See Sinfo.CN.Change_Operator_Symbol_To_Defining_Operator_Symbol
5016       --  for further details.
5017
5018       --  N_Defining_Operator_Symbol
5019       --  Sloc points to literal
5020       --  Chars (Name1) contains the Name_Id for the operator symbol
5021       --  Next_Entity (Node2-Sem)
5022       --  Scope (Node3-Sem)
5023       --  Etype (Node5-Sem)
5024
5025       ----------------------------
5026       -- 6.1  Parameter Profile --
5027       ----------------------------
5028
5029       --  PARAMETER_PROFILE ::= [FORMAL_PART]
5030
5031       ---------------------------------------
5032       -- 6.1  Parameter and Result Profile --
5033       ---------------------------------------
5034
5035       --  PARAMETER_AND_RESULT_PROFILE ::=
5036       --    [FORMAL_PART] return [NULL_EXCLUSION] SUBTYPE_MARK
5037       --  | [FORMAL_PART] return ACCESS_DEFINITION
5038
5039       --  There is no explicit node in the tree for a parameter and result
5040       --  profile. Instead the information appears directly in the parent.
5041
5042       ----------------------
5043       -- 6.1  Formal Part --
5044       ----------------------
5045
5046       --  FORMAL_PART ::=
5047       --    (PARAMETER_SPECIFICATION {; PARAMETER_SPECIFICATION})
5048
5049       ----------------------------------
5050       -- 6.1  Parameter Specification --
5051       ----------------------------------
5052
5053       --  PARAMETER_SPECIFICATION ::=
5054       --    DEFINING_IDENTIFIER_LIST : [ALIASED] MODE [NULL_EXCLUSION]
5055       --      SUBTYPE_MARK [:= DEFAULT_EXPRESSION]
5056       --  | DEFINING_IDENTIFIER_LIST : ACCESS_DEFINITION
5057       --      [:= DEFAULT_EXPRESSION]
5058
5059       --  Although the syntax allows multiple identifiers in the list, the
5060       --  semantics is as though successive specifications were given with
5061       --  identical type definition and expression components. To simplify
5062       --  semantic processing, the parser represents a multiple declaration
5063       --  case as a sequence of single Specifications, using the More_Ids and
5064       --  Prev_Ids flags to preserve the original source form as described
5065       --  in the section on "Handling of Defining Identifier Lists".
5066
5067       --  ALIASED can only be present in Ada 2012 mode
5068
5069       --  N_Parameter_Specification
5070       --  Sloc points to first identifier
5071       --  Defining_Identifier (Node1)
5072       --  Aliased_Present (Flag4)
5073       --  In_Present (Flag15)
5074       --  Out_Present (Flag17)
5075       --  Null_Exclusion_Present (Flag11)
5076       --  Parameter_Type (Node2) subtype mark or access definition
5077       --  Expression (Node3) (set to Empty if no default expression present)
5078       --  Do_Accessibility_Check (Flag13-Sem)
5079       --  More_Ids (Flag5) (set to False if no more identifiers in list)
5080       --  Prev_Ids (Flag6) (set to False if no previous identifiers in list)
5081       --  Default_Expression (Node5-Sem)
5082
5083       ---------------
5084       -- 6.1  Mode --
5085       ---------------
5086
5087       --  MODE ::= [in] | in out | out
5088
5089       --  There is no explicit node in the tree for the Mode. Instead the
5090       --  In_Present and Out_Present flags are set in the parent node to
5091       --  record the presence of keywords specifying the mode.
5092
5093       --------------------------
5094       -- 6.3  Subprogram Body --
5095       --------------------------
5096
5097       --  SUBPROGRAM_BODY ::=
5098       --    SUBPROGRAM_SPECIFICATION [ASPECT_SPECIFICATIONS] is
5099       --      DECLARATIVE_PART
5100       --    begin
5101       --      HANDLED_SEQUENCE_OF_STATEMENTS
5102       --    end [DESIGNATOR];
5103
5104       --  N_Subprogram_Body
5105       --  Sloc points to FUNCTION or PROCEDURE
5106       --  Specification (Node1)
5107       --  Declarations (List2)
5108       --  Handled_Statement_Sequence (Node4)
5109       --  Activation_Chain_Entity (Node3-Sem)
5110       --  Corresponding_Spec (Node5-Sem)
5111       --  Acts_As_Spec (Flag4-Sem)
5112       --  Bad_Is_Detected (Flag15) used only by parser
5113       --  Do_Storage_Check (Flag17-Sem)
5114       --  Is_Protected_Subprogram_Body (Flag7-Sem)
5115       --  Is_Entry_Barrier_Function (Flag8-Sem)
5116       --  Is_Task_Master (Flag5-Sem)
5117       --  Was_Originally_Stub (Flag13-Sem)
5118       --  Has_Relative_Deadline_Pragma (Flag9-Sem)
5119
5120       -------------------------
5121       -- Expression Function --
5122       -------------------------
5123
5124       --  This is an Ada 2012 extension, we put it here for now, to be labeled
5125       --  and put in its proper section when we know exactly where that is.
5126
5127       --  EXPRESSION_FUNCTION ::=
5128       --    FUNCTION SPECIFICATION IS (EXPRESSION)
5129       --      [ASPECT_SPECIFICATIONS];
5130
5131       --  N_Expression_Function
5132       --  Sloc points to FUNCTION
5133       --  Specification (Node1)
5134       --  Expression (Node3)
5135       --  Corresponding_Spec (Node5-Sem)
5136
5137       -----------------------------------
5138       -- 6.4  Procedure Call Statement --
5139       -----------------------------------
5140
5141       --  PROCEDURE_CALL_STATEMENT ::=
5142       --    procedure_NAME; | procedure_PREFIX ACTUAL_PARAMETER_PART;
5143
5144       --  Note: the reason that a procedure call has expression fields is that
5145       --  it semantically resembles an expression, e.g. overloading is allowed
5146       --  and a type is concocted for semantic processing purposes. Certain of
5147       --  these fields, such as Parens are not relevant, but it is easier to
5148       --  just supply all of them together.
5149
5150       --  N_Procedure_Call_Statement
5151       --  Sloc points to first token of name or prefix
5152       --  Name (Node2) stores name or prefix
5153       --  Parameter_Associations (List3) (set to No_List if no
5154       --   actual parameter part)
5155       --  First_Named_Actual (Node4-Sem)
5156       --  Controlling_Argument (Node1-Sem) (set to Empty if not dispatching)
5157       --  Do_Tag_Check (Flag13-Sem)
5158       --  No_Elaboration_Check (Flag14-Sem)
5159       --  Parameter_List_Truncated (Flag17-Sem)
5160       --  ABE_Is_Certain (Flag18-Sem)
5161       --  plus fields for expression
5162
5163       --  If any IN parameter requires a range check, then the corresponding
5164       --  argument expression has the Do_Range_Check flag set, and the range
5165       --  check is done against the formal type. Note that this argument
5166       --  expression may appear directly in the Parameter_Associations list,
5167       --  or may be a descendent of an N_Parameter_Association node that
5168       --  appears in this list.
5169
5170       ------------------------
5171       -- 6.4  Function Call --
5172       ------------------------
5173
5174       --  FUNCTION_CALL ::=
5175       --    function_NAME | function_PREFIX ACTUAL_PARAMETER_PART
5176
5177       --  Note: the parser may generate an indexed component node or simply
5178       --  a name node instead of a function call node. The semantic pass must
5179       --  correct this misidentification.
5180
5181       --  N_Function_Call
5182       --  Sloc points to first token of name or prefix
5183       --  Name (Node2) stores name or prefix
5184       --  Parameter_Associations (List3) (set to No_List if no
5185       --   actual parameter part)
5186       --  First_Named_Actual (Node4-Sem)
5187       --  Controlling_Argument (Node1-Sem) (set to Empty if not dispatching)
5188       --  Is_Expanded_Build_In_Place_Call (Flag11-Sem)
5189       --  Do_Tag_Check (Flag13-Sem)
5190       --  No_Elaboration_Check (Flag14-Sem)
5191       --  Parameter_List_Truncated (Flag17-Sem)
5192       --  ABE_Is_Certain (Flag18-Sem)
5193       --  plus fields for expression
5194
5195       --------------------------------
5196       -- 6.4  Actual Parameter Part --
5197       --------------------------------
5198
5199       --  ACTUAL_PARAMETER_PART ::=
5200       --    (PARAMETER_ASSOCIATION {,PARAMETER_ASSOCIATION})
5201
5202       --------------------------------
5203       -- 6.4  Parameter Association --
5204       --------------------------------
5205
5206       --  PARAMETER_ASSOCIATION ::=
5207       --    [formal_parameter_SELECTOR_NAME =>] EXPLICIT_ACTUAL_PARAMETER
5208
5209       --  Note: the N_Parameter_Association node is built only if a formal
5210       --  parameter selector name is present, otherwise the parameter
5211       --  association appears in the tree simply as the node for the
5212       --  explicit actual parameter.
5213
5214       --  N_Parameter_Association
5215       --  Sloc points to formal parameter
5216       --  Selector_Name (Node2) (always non-Empty)
5217       --  Explicit_Actual_Parameter (Node3)
5218       --  Next_Named_Actual (Node4-Sem)
5219       --  Is_Accessibility_Actual (Flag13-Sem)
5220
5221       ---------------------------
5222       -- 6.4  Actual Parameter --
5223       ---------------------------
5224
5225       --  EXPLICIT_ACTUAL_PARAMETER ::= EXPRESSION | variable_NAME
5226
5227       ---------------------------
5228       -- 6.5  Return Statement --
5229       ---------------------------
5230
5231       --  SIMPLE_RETURN_STATEMENT ::= return [EXPRESSION];
5232
5233       --  EXTENDED_RETURN_STATEMENT ::=
5234       --    return DEFINING_IDENTIFIER : [aliased] RETURN_SUBTYPE_INDICATION
5235       --                                           [:= EXPRESSION] [do
5236       --      HANDLED_SEQUENCE_OF_STATEMENTS
5237       --    end return];
5238
5239       --  RETURN_SUBTYPE_INDICATION ::= SUBTYPE_INDICATION | ACCESS_DEFINITION
5240
5241       --  The term "return statement" is defined in 6.5 to mean either a
5242       --  SIMPLE_RETURN_STATEMENT or an EXTENDED_RETURN_STATEMENT. We avoid
5243       --  the use of this term, since it used to mean someting else in earlier
5244       --  versions of Ada.
5245
5246       --  N_Simple_Return_Statement
5247       --  Sloc points to RETURN
5248       --  Return_Statement_Entity (Node5-Sem)
5249       --  Expression (Node3) (set to Empty if no expression present)
5250       --  Storage_Pool (Node1-Sem)
5251       --  Procedure_To_Call (Node2-Sem)
5252       --  Do_Tag_Check (Flag13-Sem)
5253       --  By_Ref (Flag5-Sem)
5254       --  Comes_From_Extended_Return_Statement (Flag18-Sem)
5255
5256       --  Note: Return_Statement_Entity points to an E_Return_Statement
5257
5258       --  If a range check is required, then Do_Range_Check is set on the
5259       --  Expression. The check is against the return subtype of the function.
5260
5261       --  N_Extended_Return_Statement
5262       --  Sloc points to RETURN
5263       --  Return_Statement_Entity (Node5-Sem)
5264       --  Return_Object_Declarations (List3)
5265       --  Handled_Statement_Sequence (Node4) (set to Empty if not present)
5266       --  Storage_Pool (Node1-Sem)
5267       --  Procedure_To_Call (Node2-Sem)
5268       --  Do_Tag_Check (Flag13-Sem)
5269       --  By_Ref (Flag5-Sem)
5270
5271       --  Note: Return_Statement_Entity points to an E_Return_Statement.
5272
5273       --  Note that Return_Object_Declarations is a list containing the
5274       --  N_Object_Declaration -- see comment on this field above.
5275
5276       --  The declared object will have Is_Return_Object = True.
5277
5278       --  There is no such syntactic category as return_object_declaration
5279       --  in the RM. Return_Object_Declarations represents this portion of
5280       --  the syntax for EXTENDED_RETURN_STATEMENT:
5281       --      DEFINING_IDENTIFIER : [aliased] RETURN_SUBTYPE_INDICATION
5282       --                                      [:= EXPRESSION]
5283
5284       --  There are two entities associated with an extended_return_statement:
5285       --  the Return_Statement_Entity represents the statement itself,
5286       --  and the Defining_Identifier of the Object_Declaration in
5287       --  Return_Object_Declarations represents the object being
5288       --  returned. N_Simple_Return_Statement has only the former.
5289
5290       ------------------------------
5291       -- 7.1  Package Declaration --
5292       ------------------------------
5293
5294       --  PACKAGE_DECLARATION ::=
5295       --    PACKAGE_SPECIFICATION;
5296
5297       --  Note: the activation chain entity for a package spec is used for
5298       --  all tasks declared in the package spec, or in the package body.
5299
5300       --  N_Package_Declaration
5301       --  Sloc points to PACKAGE
5302       --  Specification (Node1)
5303       --  Corresponding_Body (Node5-Sem)
5304       --  Parent_Spec (Node4-Sem)
5305       --  Activation_Chain_Entity (Node3-Sem)
5306
5307       --------------------------------
5308       -- 7.1  Package Specification --
5309       --------------------------------
5310
5311       --  PACKAGE_SPECIFICATION ::=
5312       --    package DEFINING_PROGRAM_UNIT_NAME
5313       --      [ASPECT_SPECIFICATIONS]
5314       --    is
5315       --      {BASIC_DECLARATIVE_ITEM}
5316       --    [private
5317       --      {BASIC_DECLARATIVE_ITEM}]
5318       --    end [[PARENT_UNIT_NAME .] IDENTIFIER]
5319
5320       --  N_Package_Specification
5321       --  Sloc points to PACKAGE
5322       --  Defining_Unit_Name (Node1)
5323       --  Visible_Declarations (List2)
5324       --  Private_Declarations (List3) (set to No_List if no private
5325       --   part present)
5326       --  End_Label (Node4)
5327       --  Generic_Parent (Node5-Sem)
5328       --  Limited_View_Installed (Flag18-Sem)
5329
5330       -----------------------
5331       -- 7.1  Package Body --
5332       -----------------------
5333
5334       --  PACKAGE_BODY ::=
5335       --    package body DEFINING_PROGRAM_UNIT_NAME
5336       --      [ASPECT_SPECIFICATIONS]
5337       --    is
5338       --      DECLARATIVE_PART
5339       --    [begin
5340       --      HANDLED_SEQUENCE_OF_STATEMENTS]
5341       --    end [[PARENT_UNIT_NAME .] IDENTIFIER];
5342
5343       --  N_Package_Body
5344       --  Sloc points to PACKAGE
5345       --  Defining_Unit_Name (Node1)
5346       --  Declarations (List2)
5347       --  Handled_Statement_Sequence (Node4) (set to Empty if no HSS present)
5348       --  Corresponding_Spec (Node5-Sem)
5349       --  Was_Originally_Stub (Flag13-Sem)
5350
5351       --  Note: if a source level package does not contain a handled sequence
5352       --  of statements, then the parser supplies a dummy one with a null
5353       --  sequence of statements. Comes_From_Source will be False in this
5354       --  constructed sequence. The reason we need this is for the End_Label
5355       --  field in the HSS.
5356
5357       -----------------------------------
5358       -- 7.4  Private Type Declaration --
5359       -----------------------------------
5360
5361       --  PRIVATE_TYPE_DECLARATION ::=
5362       --    type DEFINING_IDENTIFIER [DISCRIMINANT_PART]
5363       --      is [[abstract] tagged] [limited] private
5364       --        [ASPECT_SPECIFICATIONS];
5365
5366       --  Note: TAGGED is not permitted in Ada 83 mode
5367
5368       --  N_Private_Type_Declaration
5369       --  Sloc points to TYPE
5370       --  Defining_Identifier (Node1)
5371       --  Discriminant_Specifications (List4) (set to No_List if no
5372       --   discriminant part)
5373       --  Unknown_Discriminants_Present (Flag13) set if (<>) discriminant
5374       --  Abstract_Present (Flag4)
5375       --  Tagged_Present (Flag15)
5376       --  Limited_Present (Flag17)
5377
5378       ----------------------------------------
5379       -- 7.4  Private Extension Declaration --
5380       ----------------------------------------
5381
5382       --  PRIVATE_EXTENSION_DECLARATION ::=
5383       --    type DEFINING_IDENTIFIER [DISCRIMINANT_PART] is
5384       --      [abstract] [limited | synchronized]
5385       --        new ancestor_SUBTYPE_INDICATION [and INTERFACE_LIST]
5386       --           with private [ASPECT_SPECIFICATIONS];
5387
5388       --  Note: LIMITED, and private extension declarations are not allowed
5389       --        in Ada 83 mode.
5390
5391       --  N_Private_Extension_Declaration
5392       --  Sloc points to TYPE
5393       --  Defining_Identifier (Node1)
5394       --  Uninitialized_Variable (Node3-Sem)
5395       --  Discriminant_Specifications (List4) (set to No_List if no
5396       --   discriminant part)
5397       --  Unknown_Discriminants_Present (Flag13) set if (<>) discriminant
5398       --  Abstract_Present (Flag4)
5399       --  Limited_Present (Flag17)
5400       --  Synchronized_Present (Flag7)
5401       --  Subtype_Indication (Node5)
5402       --  Interface_List (List2) (set to No_List if none)
5403
5404       ---------------------
5405       -- 8.4  Use Clause --
5406       ---------------------
5407
5408       --  USE_CLAUSE ::= USE_PACKAGE_CLAUSE | USE_TYPE_CLAUSE
5409
5410       -----------------------------
5411       -- 8.4  Use Package Clause --
5412       -----------------------------
5413
5414       --  USE_PACKAGE_CLAUSE ::= use package_NAME {, package_NAME};
5415
5416       --  N_Use_Package_Clause
5417       --  Sloc points to USE
5418       --  Names (List2)
5419       --  Next_Use_Clause (Node3-Sem)
5420       --  Hidden_By_Use_Clause (Elist4-Sem)
5421
5422       --------------------------
5423       -- 8.4  Use Type Clause --
5424       --------------------------
5425
5426       --  USE_TYPE_CLAUSE ::= use [ALL] type SUBTYPE_MARK {, SUBTYPE_MARK};
5427
5428       --  Note: use type clause is not permitted in Ada 83 mode
5429
5430       --  Note: the ALL keyword can appear only in Ada 2012 mode
5431
5432       --  N_Use_Type_Clause
5433       --  Sloc points to USE
5434       --  Subtype_Marks (List2)
5435       --  Next_Use_Clause (Node3-Sem)
5436       --  Hidden_By_Use_Clause (Elist4-Sem)
5437       --  Used_Operations (Elist5-Sem)
5438       --  All_Present (Flag15)
5439
5440       -------------------------------
5441       -- 8.5  Renaming Declaration --
5442       -------------------------------
5443
5444       --  RENAMING_DECLARATION ::=
5445       --    OBJECT_RENAMING_DECLARATION
5446       --  | EXCEPTION_RENAMING_DECLARATION
5447       --  | PACKAGE_RENAMING_DECLARATION
5448       --  | SUBPROGRAM_RENAMING_DECLARATION
5449       --  | GENERIC_RENAMING_DECLARATION
5450
5451       --------------------------------------
5452       -- 8.5  Object Renaming Declaration --
5453       --------------------------------------
5454
5455       --  OBJECT_RENAMING_DECLARATION ::=
5456       --    DEFINING_IDENTIFIER :
5457       --      [NULL_EXCLUSION] SUBTYPE_MARK renames object_NAME
5458       --        [ASPECT_SPECIFICATIONS];
5459       --  | DEFINING_IDENTIFIER :
5460       --      ACCESS_DEFINITION renames object_NAME
5461       --        [ASPECT_SPECIFICATIONS];
5462
5463       --  Note: Access_Definition is an optional field that gives support to
5464       --  Ada 2005 (AI-230). The parser generates nodes that have either the
5465       --  Subtype_Indication field or else the Access_Definition field.
5466
5467       --  N_Object_Renaming_Declaration
5468       --  Sloc points to first identifier
5469       --  Defining_Identifier (Node1)
5470       --  Null_Exclusion_Present (Flag11) (set to False if not present)
5471       --  Subtype_Mark (Node4) (set to Empty if not present)
5472       --  Access_Definition (Node3) (set to Empty if not present)
5473       --  Name (Node2)
5474       --  Corresponding_Generic_Association (Node5-Sem)
5475
5476       -----------------------------------------
5477       -- 8.5  Exception Renaming Declaration --
5478       -----------------------------------------
5479
5480       --  EXCEPTION_RENAMING_DECLARATION ::=
5481       --    DEFINING_IDENTIFIER : exception renames exception_NAME
5482       --      [ASPECT_SPECIFICATIONS];
5483
5484       --  N_Exception_Renaming_Declaration
5485       --  Sloc points to first identifier
5486       --  Defining_Identifier (Node1)
5487       --  Name (Node2)
5488
5489       ---------------------------------------
5490       -- 8.5  Package Renaming Declaration --
5491       ---------------------------------------
5492
5493       --  PACKAGE_RENAMING_DECLARATION ::=
5494       --    package DEFINING_PROGRAM_UNIT_NAME renames package_NAME
5495       --      [ASPECT_SPECIFICATIONS];
5496
5497       --  N_Package_Renaming_Declaration
5498       --  Sloc points to PACKAGE
5499       --  Defining_Unit_Name (Node1)
5500       --  Name (Node2)
5501       --  Parent_Spec (Node4-Sem)
5502
5503       ------------------------------------------
5504       -- 8.5  Subprogram Renaming Declaration --
5505       ------------------------------------------
5506
5507       --  SUBPROGRAM_RENAMING_DECLARATION ::=
5508       --    SUBPROGRAM_SPECIFICATION renames callable_entity_NAME
5509       --      [ASPECT_SPECIFICATIONS];
5510
5511       --  N_Subprogram_Renaming_Declaration
5512       --  Sloc points to RENAMES
5513       --  Specification (Node1)
5514       --  Name (Node2)
5515       --  Parent_Spec (Node4-Sem)
5516       --  Corresponding_Spec (Node5-Sem)
5517       --  Corresponding_Formal_Spec (Node3-Sem)
5518       --  From_Default (Flag6-Sem)
5519
5520       -----------------------------------------
5521       -- 8.5.5  Generic Renaming Declaration --
5522       -----------------------------------------
5523
5524       --  GENERIC_RENAMING_DECLARATION ::=
5525       --    generic package DEFINING_PROGRAM_UNIT_NAME
5526       --      renames generic_package_NAME
5527       --        [ASPECT_SPECIFICATIONS];
5528       --  | generic procedure DEFINING_PROGRAM_UNIT_NAME
5529       --      renames generic_procedure_NAME
5530       --        [ASPECT_SPECIFICATIONS];
5531       --  | generic function DEFINING_PROGRAM_UNIT_NAME
5532       --      renames generic_function_NAME
5533       --        [ASPECT_SPECIFICATIONS];
5534
5535       --  N_Generic_Package_Renaming_Declaration
5536       --  Sloc points to GENERIC
5537       --  Defining_Unit_Name (Node1)
5538       --  Name (Node2)
5539       --  Parent_Spec (Node4-Sem)
5540
5541       --  N_Generic_Procedure_Renaming_Declaration
5542       --  Sloc points to GENERIC
5543       --  Defining_Unit_Name (Node1)
5544       --  Name (Node2)
5545       --  Parent_Spec (Node4-Sem)
5546
5547       --  N_Generic_Function_Renaming_Declaration
5548       --  Sloc points to GENERIC
5549       --  Defining_Unit_Name (Node1)
5550       --  Name (Node2)
5551       --  Parent_Spec (Node4-Sem)
5552
5553       --------------------------------
5554       -- 9.1  Task Type Declaration --
5555       --------------------------------
5556
5557       --  TASK_TYPE_DECLARATION ::=
5558       --    task type DEFINING_IDENTIFIER [KNOWN_DISCRIMINANT_PART]
5559       --      [ASPECT_SPECIFICATIONS]
5560       --    [is [new INTERFACE_LIST with] TASK_DEFINITION];
5561
5562       --  N_Task_Type_Declaration
5563       --  Sloc points to TASK
5564       --  Defining_Identifier (Node1)
5565       --  Discriminant_Specifications (List4) (set to No_List if no
5566       --   discriminant part)
5567       --  Interface_List (List2) (set to No_List if none)
5568       --  Task_Definition (Node3) (set to Empty if not present)
5569       --  Corresponding_Body (Node5-Sem)
5570
5571       ----------------------------------
5572       -- 9.1  Single Task Declaration --
5573       ----------------------------------
5574
5575       --  SINGLE_TASK_DECLARATION ::=
5576       --    task DEFINING_IDENTIFIER
5577       --      [ASPECT_SPECIFICATIONS]
5578       --    [is [new INTERFACE_LIST with] TASK_DEFINITION];
5579
5580       --  N_Single_Task_Declaration
5581       --  Sloc points to TASK
5582       --  Defining_Identifier (Node1)
5583       --  Interface_List (List2) (set to No_List if none)
5584       --  Task_Definition (Node3) (set to Empty if not present)
5585
5586       --------------------------
5587       -- 9.1  Task Definition --
5588       --------------------------
5589
5590       --  TASK_DEFINITION ::=
5591       --      {TASK_ITEM}
5592       --    [private
5593       --      {TASK_ITEM}]
5594       --    end [task_IDENTIFIER]
5595
5596       --  Note: as a result of semantic analysis, the list of task items can
5597       --  include implicit type declarations resulting from entry families.
5598
5599       --  N_Task_Definition
5600       --  Sloc points to first token of task definition
5601       --  Visible_Declarations (List2)
5602       --  Private_Declarations (List3) (set to No_List if no private part)
5603       --  End_Label (Node4)
5604       --  Has_Storage_Size_Pragma (Flag5-Sem)
5605       --  Has_Relative_Deadline_Pragma (Flag9-Sem)
5606
5607       --------------------
5608       -- 9.1  Task Item --
5609       --------------------
5610
5611       --  TASK_ITEM ::= ENTRY_DECLARATION | REPRESENTATION_CLAUSE
5612
5613       --------------------
5614       -- 9.1  Task Body --
5615       --------------------
5616
5617       --  TASK_BODY ::=
5618       --    task body task_DEFINING_IDENTIFIER
5619       --      [ASPECT_SPECIFICATIONS]
5620       --    is
5621       --      DECLARATIVE_PART
5622       --    begin
5623       --      HANDLED_SEQUENCE_OF_STATEMENTS
5624       --    end [task_IDENTIFIER];
5625
5626       --  Gigi restriction: This node never appears
5627
5628       --  N_Task_Body
5629       --  Sloc points to TASK
5630       --  Defining_Identifier (Node1)
5631       --  Declarations (List2)
5632       --  Handled_Statement_Sequence (Node4)
5633       --  Is_Task_Master (Flag5-Sem)
5634       --  Activation_Chain_Entity (Node3-Sem)
5635       --  Corresponding_Spec (Node5-Sem)
5636       --  Was_Originally_Stub (Flag13-Sem)
5637
5638       -------------------------------------
5639       -- 9.4  Protected Type Declaration --
5640       -------------------------------------
5641
5642       --  PROTECTED_TYPE_DECLARATION ::=
5643       --    protected type DEFINING_IDENTIFIER [KNOWN_DISCRIMINANT_PART]
5644       --      [ASPECT_SPECIFICATIONS]
5645       --    is [new INTERFACE_LIST with] PROTECTED_DEFINITION;
5646
5647       --  Note: protected type declarations are not permitted in Ada 83 mode
5648
5649       --  N_Protected_Type_Declaration
5650       --  Sloc points to PROTECTED
5651       --  Defining_Identifier (Node1)
5652       --  Discriminant_Specifications (List4) (set to No_List if no
5653       --   discriminant part)
5654       --  Interface_List (List2) (set to No_List if none)
5655       --  Protected_Definition (Node3)
5656       --  Corresponding_Body (Node5-Sem)
5657
5658       ---------------------------------------
5659       -- 9.4  Single Protected Declaration --
5660       ---------------------------------------
5661
5662       --  SINGLE_PROTECTED_DECLARATION ::=
5663       --    protected DEFINING_IDENTIFIER
5664       --      [ASPECT_SPECIFICATIONS]
5665       --    is [new INTERFACE_LIST with] PROTECTED_DEFINITION;
5666
5667       --  Note: single protected declarations are not allowed in Ada 83 mode
5668
5669       --  N_Single_Protected_Declaration
5670       --  Sloc points to PROTECTED
5671       --  Defining_Identifier (Node1)
5672       --  Interface_List (List2) (set to No_List if none)
5673       --  Protected_Definition (Node3)
5674
5675       -------------------------------
5676       -- 9.4  Protected Definition --
5677       -------------------------------
5678
5679       --  PROTECTED_DEFINITION ::=
5680       --      {PROTECTED_OPERATION_DECLARATION}
5681       --    [private
5682       --      {PROTECTED_ELEMENT_DECLARATION}]
5683       --    end [protected_IDENTIFIER]
5684
5685       --  N_Protected_Definition
5686       --  Sloc points to first token of protected definition
5687       --  Visible_Declarations (List2)
5688       --  Private_Declarations (List3) (set to No_List if no private part)
5689       --  End_Label (Node4)
5690
5691       ------------------------------------------
5692       -- 9.4  Protected Operation Declaration --
5693       ------------------------------------------
5694
5695       --  PROTECTED_OPERATION_DECLARATION ::=
5696       --    SUBPROGRAM_DECLARATION
5697       --  | ENTRY_DECLARATION
5698       --  | REPRESENTATION_CLAUSE
5699
5700       ----------------------------------------
5701       -- 9.4  Protected Element Declaration --
5702       ----------------------------------------
5703
5704       --  PROTECTED_ELEMENT_DECLARATION ::=
5705       --    PROTECTED_OPERATION_DECLARATION | COMPONENT_DECLARATION
5706
5707       -------------------------
5708       -- 9.4  Protected Body --
5709       -------------------------
5710
5711       --  PROTECTED_BODY ::=
5712       --    protected body DEFINING_IDENTIFIER
5713       --      [ASPECT_SPECIFICATIONS];
5714       --    is
5715       --      {PROTECTED_OPERATION_ITEM}
5716       --    end [protected_IDENTIFIER];
5717
5718       --  Note: protected bodies are not allowed in Ada 83 mode
5719
5720       --  Gigi restriction: This node never appears
5721
5722       --  N_Protected_Body
5723       --  Sloc points to PROTECTED
5724       --  Defining_Identifier (Node1)
5725       --  Declarations (List2) protected operation items (and pragmas)
5726       --  End_Label (Node4)
5727       --  Corresponding_Spec (Node5-Sem)
5728       --  Was_Originally_Stub (Flag13-Sem)
5729
5730       -----------------------------------
5731       -- 9.4  Protected Operation Item --
5732       -----------------------------------
5733
5734       --  PROTECTED_OPERATION_ITEM ::=
5735       --    SUBPROGRAM_DECLARATION
5736       --  | SUBPROGRAM_BODY
5737       --  | ENTRY_BODY
5738       --  | REPRESENTATION_CLAUSE
5739
5740       ------------------------------
5741       -- 9.5.2  Entry Declaration --
5742       ------------------------------
5743
5744       --  ENTRY_DECLARATION ::=
5745       --    [[not] overriding]
5746       --    entry DEFINING_IDENTIFIER
5747       --      [(DISCRETE_SUBTYPE_DEFINITION)] PARAMETER_PROFILE
5748       --        [ASPECT_SPECIFICATIONS];
5749
5750       --  N_Entry_Declaration
5751       --  Sloc points to ENTRY
5752       --  Defining_Identifier (Node1)
5753       --  Discrete_Subtype_Definition (Node4) (set to Empty if not present)
5754       --  Parameter_Specifications (List3) (set to No_List if no formal part)
5755       --  Corresponding_Body (Node5-Sem)
5756       --  Must_Override (Flag14) set if overriding indicator present
5757       --  Must_Not_Override (Flag15) set if not_overriding indicator present
5758
5759       --  Note: overriding indicator is an Ada 2005 feature
5760
5761       -----------------------------
5762       -- 9.5.2  Accept statement --
5763       -----------------------------
5764
5765       --  ACCEPT_STATEMENT ::=
5766       --    accept entry_DIRECT_NAME
5767       --      [(ENTRY_INDEX)] PARAMETER_PROFILE [do
5768       --        HANDLED_SEQUENCE_OF_STATEMENTS
5769       --    end [entry_IDENTIFIER]];
5770
5771       --  Gigi restriction: This node never appears
5772
5773       --  Note: there are no explicit declarations allowed in an accept
5774       --  statement. However, the implicit declarations for any statement
5775       --  identifiers (labels and block/loop identifiers) are declarations
5776       --  that belong logically to the accept statement, and that is why
5777       --  there is a Declarations field in this node.
5778
5779       --  N_Accept_Statement
5780       --  Sloc points to ACCEPT
5781       --  Entry_Direct_Name (Node1)
5782       --  Entry_Index (Node5) (set to Empty if not present)
5783       --  Parameter_Specifications (List3) (set to No_List if no formal part)
5784       --  Handled_Statement_Sequence (Node4)
5785       --  Declarations (List2) (set to No_List if no declarations)
5786
5787       ------------------------
5788       -- 9.5.2  Entry Index --
5789       ------------------------
5790
5791       --  ENTRY_INDEX ::= EXPRESSION
5792
5793       -----------------------
5794       -- 9.5.2  Entry Body --
5795       -----------------------
5796
5797       --  ENTRY_BODY ::=
5798       --    entry DEFINING_IDENTIFIER ENTRY_BODY_FORMAL_PART ENTRY_BARRIER is
5799       --      DECLARATIVE_PART
5800       --    begin
5801       --      HANDLED_SEQUENCE_OF_STATEMENTS
5802       --    end [entry_IDENTIFIER];
5803
5804       --  ENTRY_BARRIER ::= when CONDITION
5805
5806       --  Note: we store the CONDITION of the ENTRY_BARRIER in the node for
5807       --  the ENTRY_BODY_FORMAL_PART to avoid the N_Entry_Body node getting
5808       --  too full (it would otherwise have too many fields)
5809
5810       --  Gigi restriction: This node never appears
5811
5812       --  N_Entry_Body
5813       --  Sloc points to ENTRY
5814       --  Defining_Identifier (Node1)
5815       --  Entry_Body_Formal_Part (Node5)
5816       --  Declarations (List2)
5817       --  Handled_Statement_Sequence (Node4)
5818       --  Activation_Chain_Entity (Node3-Sem)
5819
5820       -----------------------------------
5821       -- 9.5.2  Entry Body Formal Part --
5822       -----------------------------------
5823
5824       --  ENTRY_BODY_FORMAL_PART ::=
5825       --    [(ENTRY_INDEX_SPECIFICATION)] PARAMETER_PROFILE
5826
5827       --  Note that an entry body formal part node is present even if it is
5828       --  empty. This reflects the grammar, in which it is the components of
5829       --  the entry body formal part that are optional, not the entry body
5830       --  formal part itself. Also this means that the barrier condition
5831       --  always has somewhere to be stored.
5832
5833       --  Gigi restriction: This node never appears
5834
5835       --  N_Entry_Body_Formal_Part
5836       --  Sloc points to first token
5837       --  Entry_Index_Specification (Node4) (set to Empty if not present)
5838       --  Parameter_Specifications (List3) (set to No_List if no formal part)
5839       --  Condition (Node1) from entry barrier of entry body
5840
5841       --------------------------
5842       -- 9.5.2  Entry Barrier --
5843       --------------------------
5844
5845       --  ENTRY_BARRIER ::= when CONDITION
5846
5847       --------------------------------------
5848       -- 9.5.2  Entry Index Specification --
5849       --------------------------------------
5850
5851       --  ENTRY_INDEX_SPECIFICATION ::=
5852       --    for DEFINING_IDENTIFIER in DISCRETE_SUBTYPE_DEFINITION
5853
5854       --  Gigi restriction: This node never appears
5855
5856       --  N_Entry_Index_Specification
5857       --  Sloc points to FOR
5858       --  Defining_Identifier (Node1)
5859       --  Discrete_Subtype_Definition (Node4)
5860
5861       ---------------------------------
5862       -- 9.5.3  Entry Call Statement --
5863       ---------------------------------
5864
5865       --  ENTRY_CALL_STATEMENT ::= entry_NAME [ACTUAL_PARAMETER_PART];
5866
5867       --  The parser may generate a procedure call for this construct. The
5868       --  semantic pass must correct this misidentification where needed.
5869
5870       --  Gigi restriction: This node never appears
5871
5872       --  N_Entry_Call_Statement
5873       --  Sloc points to first token of name
5874       --  Name (Node2)
5875       --  Parameter_Associations (List3) (set to No_List if no
5876       --   actual parameter part)
5877       --  First_Named_Actual (Node4-Sem)
5878
5879       ------------------------------
5880       -- 9.5.4  Requeue Statement --
5881       ------------------------------
5882
5883       --  REQUEUE_STATEMENT ::= requeue entry_NAME [with abort];
5884
5885       --  Note: requeue statements are not permitted in Ada 83 mode
5886
5887       --  Gigi restriction: This node never appears
5888
5889       --  N_Requeue_Statement
5890       --  Sloc points to REQUEUE
5891       --  Name (Node2)
5892       --  Abort_Present (Flag15)
5893
5894       --------------------------
5895       -- 9.6  Delay Statement --
5896       --------------------------
5897
5898       --  DELAY_STATEMENT ::=
5899       --    DELAY_UNTIL_STATEMENT
5900       --  | DELAY_RELATIVE_STATEMENT
5901
5902       --------------------------------
5903       -- 9.6  Delay Until Statement --
5904       --------------------------------
5905
5906       --  DELAY_UNTIL_STATEMENT ::= delay until delay_EXPRESSION;
5907
5908       --  Note: delay until statements are not permitted in Ada 83 mode
5909
5910       --  Gigi restriction: This node never appears
5911
5912       --  N_Delay_Until_Statement
5913       --  Sloc points to DELAY
5914       --  Expression (Node3)
5915
5916       -----------------------------------
5917       -- 9.6  Delay Relative Statement --
5918       -----------------------------------
5919
5920       --  DELAY_RELATIVE_STATEMENT ::= delay delay_EXPRESSION;
5921
5922       --  Gigi restriction: This node never appears
5923
5924       --  N_Delay_Relative_Statement
5925       --  Sloc points to DELAY
5926       --  Expression (Node3)
5927
5928       ---------------------------
5929       -- 9.7  Select Statement --
5930       ---------------------------
5931
5932       --  SELECT_STATEMENT ::=
5933       --    SELECTIVE_ACCEPT
5934       --  | TIMED_ENTRY_CALL
5935       --  | CONDITIONAL_ENTRY_CALL
5936       --  | ASYNCHRONOUS_SELECT
5937
5938       -----------------------------
5939       -- 9.7.1  Selective Accept --
5940       -----------------------------
5941
5942       --  SELECTIVE_ACCEPT ::=
5943       --    select
5944       --      [GUARD]
5945       --        SELECT_ALTERNATIVE
5946       --    {or
5947       --      [GUARD]
5948       --        SELECT_ALTERNATIVE}
5949       --    [else
5950       --      SEQUENCE_OF_STATEMENTS]
5951       --    end select;
5952
5953       --  Gigi restriction: This node never appears
5954
5955       --  Note: the guard expression, if present, appears in the node for
5956       --  the select alternative.
5957
5958       --  N_Selective_Accept
5959       --  Sloc points to SELECT
5960       --  Select_Alternatives (List1)
5961       --  Else_Statements (List4) (set to No_List if no else part)
5962
5963       ------------------
5964       -- 9.7.1  Guard --
5965       ------------------
5966
5967       --  GUARD ::= when CONDITION =>
5968
5969       --  As noted above, the CONDITION that is part of a GUARD is included
5970       --  in the node for the select alternative for convenience.
5971
5972       -------------------------------
5973       -- 9.7.1  Select Alternative --
5974       -------------------------------
5975
5976       --  SELECT_ALTERNATIVE ::=
5977       --    ACCEPT_ALTERNATIVE
5978       --  | DELAY_ALTERNATIVE
5979       --  | TERMINATE_ALTERNATIVE
5980
5981       -------------------------------
5982       -- 9.7.1  Accept Alternative --
5983       -------------------------------
5984
5985       --  ACCEPT_ALTERNATIVE ::=
5986       --    ACCEPT_STATEMENT [SEQUENCE_OF_STATEMENTS]
5987
5988       --  Gigi restriction: This node never appears
5989
5990       --  N_Accept_Alternative
5991       --  Sloc points to ACCEPT
5992       --  Accept_Statement (Node2)
5993       --  Condition (Node1) from the guard (set to Empty if no guard present)
5994       --  Statements (List3) (set to Empty_List if no statements)
5995       --  Pragmas_Before (List4) pragmas before alt (set to No_List if none)
5996       --  Accept_Handler_Records (List5-Sem)
5997
5998       ------------------------------
5999       -- 9.7.1  Delay Alternative --
6000       ------------------------------
6001
6002       --  DELAY_ALTERNATIVE ::=
6003       --    DELAY_STATEMENT [SEQUENCE_OF_STATEMENTS]
6004
6005       --  Gigi restriction: This node never appears
6006
6007       --  N_Delay_Alternative
6008       --  Sloc points to DELAY
6009       --  Delay_Statement (Node2)
6010       --  Condition (Node1) from the guard (set to Empty if no guard present)
6011       --  Statements (List3) (set to Empty_List if no statements)
6012       --  Pragmas_Before (List4) pragmas before alt (set to No_List if none)
6013
6014       ----------------------------------
6015       -- 9.7.1  Terminate Alternative --
6016       ----------------------------------
6017
6018       --  TERMINATE_ALTERNATIVE ::= terminate;
6019
6020       --  Gigi restriction: This node never appears
6021
6022       --  N_Terminate_Alternative
6023       --  Sloc points to TERMINATE
6024       --  Condition (Node1) from the guard (set to Empty if no guard present)
6025       --  Pragmas_Before (List4) pragmas before alt (set to No_List if none)
6026       --  Pragmas_After (List5) pragmas after alt (set to No_List if none)
6027
6028       -----------------------------
6029       -- 9.7.2  Timed Entry Call --
6030       -----------------------------
6031
6032       --  TIMED_ENTRY_CALL ::=
6033       --    select
6034       --      ENTRY_CALL_ALTERNATIVE
6035       --    or
6036       --      DELAY_ALTERNATIVE
6037       --    end select;
6038
6039       --  Gigi restriction: This node never appears
6040
6041       --  N_Timed_Entry_Call
6042       --  Sloc points to SELECT
6043       --  Entry_Call_Alternative (Node1)
6044       --  Delay_Alternative (Node4)
6045
6046       -----------------------------------
6047       -- 9.7.2  Entry Call Alternative --
6048       -----------------------------------
6049
6050       --  ENTRY_CALL_ALTERNATIVE ::=
6051       --    PROCEDURE_OR_ENTRY_CALL [SEQUENCE_OF_STATEMENTS]
6052
6053       --  PROCEDURE_OR_ENTRY_CALL ::=
6054       --    PROCEDURE_CALL_STATEMENT | ENTRY_CALL_STATEMENT
6055
6056       --  Gigi restriction: This node never appears
6057
6058       --  N_Entry_Call_Alternative
6059       --  Sloc points to first token of entry call statement
6060       --  Entry_Call_Statement (Node1)
6061       --  Statements (List3) (set to Empty_List if no statements)
6062       --  Pragmas_Before (List4) pragmas before alt (set to No_List if none)
6063
6064       -----------------------------------
6065       -- 9.7.3  Conditional Entry Call --
6066       -----------------------------------
6067
6068       --  CONDITIONAL_ENTRY_CALL ::=
6069       --    select
6070       --      ENTRY_CALL_ALTERNATIVE
6071       --    else
6072       --      SEQUENCE_OF_STATEMENTS
6073       --    end select;
6074
6075       --  Gigi restriction: This node never appears
6076
6077       --  N_Conditional_Entry_Call
6078       --  Sloc points to SELECT
6079       --  Entry_Call_Alternative (Node1)
6080       --  Else_Statements (List4)
6081
6082       --------------------------------
6083       -- 9.7.4  Asynchronous Select --
6084       --------------------------------
6085
6086       --  ASYNCHRONOUS_SELECT ::=
6087       --    select
6088       --      TRIGGERING_ALTERNATIVE
6089       --    then abort
6090       --      ABORTABLE_PART
6091       --    end select;
6092
6093       --  Note: asynchronous select is not permitted in Ada 83 mode
6094
6095       --  Gigi restriction: This node never appears
6096
6097       --  N_Asynchronous_Select
6098       --  Sloc points to SELECT
6099       --  Triggering_Alternative (Node1)
6100       --  Abortable_Part (Node2)
6101
6102       -----------------------------------
6103       -- 9.7.4  Triggering Alternative --
6104       -----------------------------------
6105
6106       --  TRIGGERING_ALTERNATIVE ::=
6107       --    TRIGGERING_STATEMENT [SEQUENCE_OF_STATEMENTS]
6108
6109       --  Gigi restriction: This node never appears
6110
6111       --  N_Triggering_Alternative
6112       --  Sloc points to first token of triggering statement
6113       --  Triggering_Statement (Node1)
6114       --  Statements (List3) (set to Empty_List if no statements)
6115       --  Pragmas_Before (List4) pragmas before alt (set to No_List if none)
6116
6117       ---------------------------------
6118       -- 9.7.4  Triggering Statement --
6119       ---------------------------------
6120
6121       --  TRIGGERING_STATEMENT ::= PROCEDURE_OR_ENTRY_CALL | DELAY_STATEMENT
6122
6123       ---------------------------
6124       -- 9.7.4  Abortable Part --
6125       ---------------------------
6126
6127       --  ABORTABLE_PART ::= SEQUENCE_OF_STATEMENTS
6128
6129       --  Gigi restriction: This node never appears
6130
6131       --  N_Abortable_Part
6132       --  Sloc points to ABORT
6133       --  Statements (List3)
6134
6135       --------------------------
6136       -- 9.8  Abort Statement --
6137       --------------------------
6138
6139       --  ABORT_STATEMENT ::= abort task_NAME {, task_NAME};
6140
6141       --  Gigi restriction: This node never appears
6142
6143       --  N_Abort_Statement
6144       --  Sloc points to ABORT
6145       --  Names (List2)
6146
6147       -------------------------
6148       -- 10.1.1  Compilation --
6149       -------------------------
6150
6151       --  COMPILATION ::= {COMPILATION_UNIT}
6152
6153       --  There is no explicit node in the tree for a compilation, since in
6154       --  general the compiler is processing only a single compilation unit
6155       --  at a time. It is possible to parse multiple units in syntax check
6156       --  only mode, but the trees are discarded in that case.
6157
6158       ------------------------------
6159       -- 10.1.1  Compilation Unit --
6160       ------------------------------
6161
6162       --  COMPILATION_UNIT ::=
6163       --    CONTEXT_CLAUSE LIBRARY_ITEM
6164       --  | CONTEXT_CLAUSE SUBUNIT
6165
6166       --  The N_Compilation_Unit node itself represents the above syntax.
6167       --  However, there are two additional items not reflected in the above
6168       --  syntax. First we have the global declarations that are added by the
6169       --  code generator. These are outer level declarations (so they cannot
6170       --  be represented as being inside the units). An example is the wrapper
6171       --  subprograms that are created to do ABE checking. As always a list of
6172       --  declarations can contain actions as well (i.e. statements), and such
6173       --  statements are executed as part of the elaboration of the unit. Note
6174       --  that all such declarations are elaborated before the library unit.
6175
6176       --  Similarly, certain actions need to be elaborated at the completion
6177       --  of elaboration of the library unit (notably the statement that sets
6178       --  the Boolean flag indicating that elaboration is complete).
6179
6180       --  The third item not reflected in the syntax is pragmas that appear
6181       --  after the compilation unit. As always pragmas are a problem since
6182       --  they are not part of the formal syntax, but can be stuck into the
6183       --  source following a set of ad hoc rules, and we have to find an ad
6184       --  hoc way of sticking them into the tree. For pragmas that appear
6185       --  before the library unit, we just consider them to be part of the
6186       --  context clause, and pragmas can appear in the Context_Items list
6187       --  of the compilation unit. However, pragmas can also appear after
6188       --  the library item.
6189
6190       --  To deal with all these problems, we create an auxiliary node for
6191       --  a compilation unit, referenced from the N_Compilation_Unit node,
6192       --  that contains these items.
6193
6194       --  N_Compilation_Unit
6195       --  Sloc points to first token of defining unit name
6196       --  Library_Unit (Node4-Sem) corresponding/parent spec/body
6197       --  Context_Items (List1) context items and pragmas preceding unit
6198       --  Private_Present (Flag15) set if library unit has private keyword
6199       --  Unit (Node2) library item or subunit
6200       --  Aux_Decls_Node (Node5) points to the N_Compilation_Unit_Aux node
6201       --  Has_No_Elaboration_Code (Flag17-Sem)
6202       --  Body_Required (Flag13-Sem) set for spec if body is required
6203       --  Acts_As_Spec (Flag4-Sem) flag for subprogram body with no spec
6204       --  Context_Pending (Flag16-Sem)
6205       --  First_Inlined_Subprogram (Node3-Sem)
6206       --  Has_Pragma_Suppress_All (Flag14-Sem)
6207
6208       --  N_Compilation_Unit_Aux
6209       --  Sloc is a copy of the Sloc from the N_Compilation_Unit node
6210       --  Declarations (List2) (set to No_List if no global declarations)
6211       --  Actions (List1) (set to No_List if no actions)
6212       --  Pragmas_After (List5) pragmas after unit (set to No_List if none)
6213       --  Config_Pragmas (List4) config pragmas (set to Empty_List if none)
6214       --  Default_Storage_Pool (Node3-Sem)
6215
6216       --------------------------
6217       -- 10.1.1  Library Item --
6218       --------------------------
6219
6220       --  LIBRARY_ITEM ::=
6221       --    [private] LIBRARY_UNIT_DECLARATION
6222       --  | LIBRARY_UNIT_BODY
6223       --  | [private] LIBRARY_UNIT_RENAMING_DECLARATION
6224
6225       --  Note: PRIVATE is not allowed in Ada 83 mode
6226
6227       --  There is no explicit node in the tree for library item, instead
6228       --  the declaration or body, and the flag for private if present,
6229       --  appear in the N_Compilation_Unit node.
6230
6231       --------------------------------------
6232       -- 10.1.1  Library Unit Declaration --
6233       --------------------------------------
6234
6235       --  LIBRARY_UNIT_DECLARATION ::=
6236       --    SUBPROGRAM_DECLARATION | PACKAGE_DECLARATION
6237       --  | GENERIC_DECLARATION    | GENERIC_INSTANTIATION
6238
6239       -----------------------------------------------
6240       -- 10.1.1  Library Unit Renaming Declaration --
6241       -----------------------------------------------
6242
6243       --  LIBRARY_UNIT_RENAMING_DECLARATION ::=
6244       --    PACKAGE_RENAMING_DECLARATION
6245       --  | GENERIC_RENAMING_DECLARATION
6246       --  | SUBPROGRAM_RENAMING_DECLARATION
6247
6248       -------------------------------
6249       -- 10.1.1  Library unit body --
6250       -------------------------------
6251
6252       --  LIBRARY_UNIT_BODY ::= SUBPROGRAM_BODY | PACKAGE_BODY
6253
6254       ------------------------------
6255       -- 10.1.1  Parent Unit Name --
6256       ------------------------------
6257
6258       --  PARENT_UNIT_NAME ::= NAME
6259
6260       ----------------------------
6261       -- 10.1.2  Context clause --
6262       ----------------------------
6263
6264       --  CONTEXT_CLAUSE ::= {CONTEXT_ITEM}
6265
6266       --  The context clause can include pragmas, and any pragmas that appear
6267       --  before the context clause proper (i.e. all configuration pragmas,
6268       --  also appear at the front of this list).
6269
6270       --------------------------
6271       -- 10.1.2  Context_Item --
6272       --------------------------
6273
6274       --  CONTEXT_ITEM ::= WITH_CLAUSE | USE_CLAUSE  | WITH_TYPE_CLAUSE
6275
6276       -------------------------
6277       -- 10.1.2  With clause --
6278       -------------------------
6279
6280       --  WITH_CLAUSE ::=
6281       --    with library_unit_NAME {,library_unit_NAME};
6282
6283       --  A separate With clause is built for each name, so that we have
6284       --  a Corresponding_Spec field for each with'ed spec. The flags
6285       --  First_Name and Last_Name are used to reconstruct the exact
6286       --  source form. When a list of names appears in one with clause,
6287       --  the first name in the list has First_Name set, and the last
6288       --  has Last_Name set. If the with clause has only one name, then
6289       --  both of the flags First_Name and Last_Name are set in this name.
6290
6291       --  Note: in the case of implicit with's that are installed by the
6292       --  Rtsfind routine, Implicit_With is set, and the Sloc is typically
6293       --  set to Standard_Location, but it is incorrect to test the Sloc
6294       --  to find out if a with clause is implicit, test the flag instead.
6295
6296       --  N_With_Clause
6297       --  Sloc points to first token of library unit name
6298       --  Withed_Body (Node1-Sem)
6299       --  Name (Node2)
6300       --  Next_Implicit_With (Node3-Sem)
6301       --  Library_Unit (Node4-Sem)
6302       --  Corresponding_Spec (Node5-Sem)
6303       --  First_Name (Flag5) (set to True if first name or only one name)
6304       --  Last_Name (Flag6) (set to True if last name or only one name)
6305       --  Context_Installed (Flag13-Sem)
6306       --  Elaborate_Present (Flag4-Sem)
6307       --  Elaborate_All_Present (Flag14-Sem)
6308       --  Elaborate_All_Desirable (Flag9-Sem)
6309       --  Elaborate_Desirable (Flag11-Sem)
6310       --  Private_Present (Flag15) set if with_clause has private keyword
6311       --  Implicit_With (Flag16-Sem)
6312       --  Implicit_With_From_Instantiation (Flag12-Sem)
6313       --  Limited_Present (Flag17) set if LIMITED is present
6314       --  Limited_View_Installed (Flag18-Sem)
6315       --  Unreferenced_In_Spec (Flag7-Sem)
6316       --  No_Entities_Ref_In_Spec (Flag8-Sem)
6317
6318       --  Note: Limited_Present and Limited_View_Installed are used to support
6319       --  the implementation of Ada 2005 (AI-50217).
6320
6321       --  Similarly, Private_Present is used to support the implementation of
6322       --  Ada 2005 (AI-50262).
6323
6324       ----------------------
6325       -- With_Type clause --
6326       ----------------------
6327
6328       --  This is a GNAT extension, used to implement mutually recursive
6329       --  types declared in different packages.
6330
6331       --  Note: this is now obsolete. The functionality of this construct
6332       --  is now implemented by the Ada 2005 limited_with_clause.
6333
6334       ---------------------
6335       -- 10.2  Body stub --
6336       ---------------------
6337
6338       --  BODY_STUB ::=
6339       --    SUBPROGRAM_BODY_STUB
6340       --  | PACKAGE_BODY_STUB
6341       --  | TASK_BODY_STUB
6342       --  | PROTECTED_BODY_STUB
6343
6344       ----------------------------------
6345       -- 10.1.3  Subprogram Body Stub --
6346       ----------------------------------
6347
6348       --  SUBPROGRAM_BODY_STUB ::=
6349       --    SUBPROGRAM_SPECIFICATION is separate
6350       --      [ASPECT_SPECIFICATION];
6351
6352       --  N_Subprogram_Body_Stub
6353       --  Sloc points to FUNCTION or PROCEDURE
6354       --  Specification (Node1)
6355       --  Corresponding_Spec_Of_Stub (Node2-Sem)
6356       --  Library_Unit (Node4-Sem) points to the subunit
6357       --  Corresponding_Body (Node5-Sem)
6358
6359       -------------------------------
6360       -- 10.1.3  Package Body Stub --
6361       -------------------------------
6362
6363       --  PACKAGE_BODY_STUB ::=
6364       --    package body DEFINING_IDENTIFIER is separate
6365       --      [ASPECT_SPECIFICATION];
6366
6367       --  N_Package_Body_Stub
6368       --  Sloc points to PACKAGE
6369       --  Defining_Identifier (Node1)
6370       --  Corresponding_Spec_Of_Stub (Node2-Sem)
6371       --  Library_Unit (Node4-Sem) points to the subunit
6372       --  Corresponding_Body (Node5-Sem)
6373
6374       ----------------------------
6375       -- 10.1.3  Task Body Stub --
6376       ----------------------------
6377
6378       --  TASK_BODY_STUB ::=
6379       --    task body DEFINING_IDENTIFIER is separate
6380       --      [ASPECT_SPECIFICATION];
6381
6382       --  N_Task_Body_Stub
6383       --  Sloc points to TASK
6384       --  Defining_Identifier (Node1)
6385       --  Corresponding_Spec_Of_Stub (Node2-Sem)
6386       --  Library_Unit (Node4-Sem) points to the subunit
6387       --  Corresponding_Body (Node5-Sem)
6388
6389       ---------------------------------
6390       -- 10.1.3  Protected Body Stub --
6391       ---------------------------------
6392
6393       --  PROTECTED_BODY_STUB ::=
6394       --    protected body DEFINING_IDENTIFIER is separate
6395       --      [ASPECT_SPECIFICATION];
6396
6397       --  Note: protected body stubs are not allowed in Ada 83 mode
6398
6399       --  N_Protected_Body_Stub
6400       --  Sloc points to PROTECTED
6401       --  Defining_Identifier (Node1)
6402       --  Corresponding_Spec_Of_Stub (Node2-Sem)
6403       --  Library_Unit (Node4-Sem) points to the subunit
6404       --  Corresponding_Body (Node5-Sem)
6405
6406       ---------------------
6407       -- 10.1.3  Subunit --
6408       ---------------------
6409
6410       --  SUBUNIT ::= separate (PARENT_UNIT_NAME) PROPER_BODY
6411
6412       --  N_Subunit
6413       --  Sloc points to SEPARATE
6414       --  Name (Node2) is the name of the parent unit
6415       --  Proper_Body (Node1) is the subunit body
6416       --  Corresponding_Stub (Node3-Sem) is the stub declaration for the unit.
6417
6418       ---------------------------------
6419       -- 11.1  Exception Declaration --
6420       ---------------------------------
6421
6422       --  EXCEPTION_DECLARATION ::= DEFINING_IDENTIFIER_LIST : exception
6423       --    [ASPECT_SPECIFICATIONS];
6424
6425       --  For consistency with object declarations etc., the parser converts
6426       --  the case of multiple identifiers being declared to a series of
6427       --  declarations in which the expression is copied, using the More_Ids
6428       --  and Prev_Ids flags to remember the source form as described in the
6429       --  section on "Handling of Defining Identifier Lists".
6430
6431       --  N_Exception_Declaration
6432       --  Sloc points to EXCEPTION
6433       --  Defining_Identifier (Node1)
6434       --  Expression (Node3-Sem)
6435       --  Renaming_Exception (Node2-Sem)
6436       --  More_Ids (Flag5) (set to False if no more identifiers in list)
6437       --  Prev_Ids (Flag6) (set to False if no previous identifiers in list)
6438
6439       ------------------------------------------
6440       -- 11.2  Handled Sequence Of Statements --
6441       ------------------------------------------
6442
6443       --  HANDLED_SEQUENCE_OF_STATEMENTS ::=
6444       --      SEQUENCE_OF_STATEMENTS
6445       --    [exception
6446       --      EXCEPTION_HANDLER
6447       --      {EXCEPTION_HANDLER}]
6448       --    [at end
6449       --      cleanup_procedure_call (param, param, param, ...);]
6450
6451       --  The AT END phrase is a GNAT extension to provide for cleanups. It is
6452       --  used only internally currently, but is considered to be syntactic.
6453       --  At the moment, the only cleanup action allowed is a single call to
6454       --  a parameterless procedure, and the Identifier field of the node is
6455       --  the procedure to be called. The cleanup action occurs whenever the
6456       --  sequence of statements is left for any reason. The possible reasons
6457       --  are:
6458       --      1. reaching the end of the sequence
6459       --      2. exit, return, or goto
6460       --      3. exception or abort
6461       --  For some back ends, such as gcc with ZCX, "at end" is implemented
6462       --  entirely in the back end. In this case, a handled sequence of
6463       --  statements with an "at end" cannot also have exception handlers.
6464       --  For other back ends, such as gcc with SJLJ and .NET, the
6465       --  implementation is split between the front end and back end; the front
6466       --  end implements 3, and the back end implements 1 and 2. In this case,
6467       --  if there is an "at end", the front end inserts the appropriate
6468       --  exception handler, and this handler takes precedence over "at end"
6469       --  in case of exception.
6470
6471       --  The inserted exception handler is of the form:
6472
6473       --     when all others =>
6474       --        cleanup;
6475       --        raise;
6476
6477       --  where cleanup is the procedure to be called. The reason we do this is
6478       --  so that the front end can handle the necessary entries in the
6479       --  exception tables, and other exception handler actions required as
6480       --  part of the normal handling for exception handlers.
6481
6482       --  The AT END cleanup handler protects only the sequence of statements
6483       --  (not the associated declarations of the parent), just like exception
6484       --  handlers. The big difference is that the cleanup procedure is called
6485       --  on either a normal or an abnormal exit from the statement sequence.
6486
6487       --  Note: the list of Exception_Handlers can contain pragmas as well
6488       --  as actual handlers. In practice these pragmas can only occur at
6489       --  the start of the list, since any pragmas occurring later on will
6490       --  be included in the statement list of the corresponding handler.
6491
6492       --  Note: although in the Ada syntax, the sequence of statements in
6493       --  a handled sequence of statements can only contain statements, we
6494       --  allow free mixing of declarations and statements in the resulting
6495       --  expanded tree. This is for example used to deal with the case of
6496       --  a cleanup procedure that must handle declarations as well as the
6497       --  statements of a block.
6498
6499       --  N_Handled_Sequence_Of_Statements
6500       --  Sloc points to first token of first statement
6501       --  Statements (List3)
6502       --  End_Label (Node4) (set to Empty if expander generated)
6503       --  Exception_Handlers (List5) (set to No_List if none present)
6504       --  At_End_Proc (Node1) (set to Empty if no clean up procedure)
6505       --  First_Real_Statement (Node2-Sem)
6506
6507       --  Note: the parent always contains a Declarations field which contains
6508       --  declarations associated with the handled sequence of statements. This
6509       --  is true even in the case of an accept statement (see description of
6510       --  the N_Accept_Statement node).
6511
6512       --  End_Label refers to the containing construct
6513
6514       -----------------------------
6515       -- 11.2  Exception Handler --
6516       -----------------------------
6517
6518       --  EXCEPTION_HANDLER ::=
6519       --    when [CHOICE_PARAMETER_SPECIFICATION :]
6520       --      EXCEPTION_CHOICE {| EXCEPTION_CHOICE} =>
6521       --        SEQUENCE_OF_STATEMENTS
6522
6523       --  Note: choice parameter specification is not allowed in Ada 83 mode
6524
6525       --  N_Exception_Handler
6526       --  Sloc points to WHEN
6527       --  Choice_Parameter (Node2) (set to Empty if not present)
6528       --  Exception_Choices (List4)
6529       --  Statements (List3)
6530       --  Exception_Label (Node5-Sem) (set to Empty of not present)
6531       --  Local_Raise_Statements (Elist1-Sem) (set to No_Elist if not present)
6532       --  Local_Raise_Not_OK (Flag7-Sem)
6533       --  Has_Local_Raise (Flag8-Sem)
6534
6535       ------------------------------------------
6536       -- 11.2  Choice parameter specification --
6537       ------------------------------------------
6538
6539       --  CHOICE_PARAMETER_SPECIFICATION ::= DEFINING_IDENTIFIER
6540
6541       ----------------------------
6542       -- 11.2  Exception Choice --
6543       ----------------------------
6544
6545       --  EXCEPTION_CHOICE ::= exception_NAME | others
6546
6547       --  Except in the case of OTHERS, no explicit node appears in the tree
6548       --  for exception choice. Instead the exception name appears directly.
6549       --  An OTHERS choice is represented by a N_Others_Choice node (see
6550       --  section 3.8.1.
6551
6552       --  Note: for the exception choice created for an at end handler, the
6553       --  exception choice is an N_Others_Choice node with All_Others set.
6554
6555       ---------------------------
6556       -- 11.3  Raise Statement --
6557       ---------------------------
6558
6559       --  RAISE_STATEMENT ::= raise [exception_NAME];
6560
6561       --  In Ada 2005, we have
6562
6563       --  RAISE_STATEMENT ::=
6564       --    raise; | raise exception_NAME [with string_EXPRESSION];
6565
6566       --  N_Raise_Statement
6567       --  Sloc points to RAISE
6568       --  Name (Node2) (set to Empty if no exception name present)
6569       --  Expression (Node3) (set to Empty if no expression present)
6570       --  From_At_End (Flag4-Sem)
6571
6572       ----------------------------
6573       -- 11.3  Raise Expression --
6574       ----------------------------
6575
6576       --  RAISE_EXPRESSION ::= raise exception_NAME [with string_EXPRESSION]
6577
6578       --  N_Raise_Expression
6579       --  Sloc points to RAISE
6580       --  Name (Node2) (always present)
6581       --  Expression (Node3) (set to Empty if no expression present)
6582       --  Convert_To_Return_False (Flag13-Sem)
6583       --  plus fields for expression
6584
6585       -------------------------------
6586       -- 12.1  Generic Declaration --
6587       -------------------------------
6588
6589       --  GENERIC_DECLARATION ::=
6590       --    GENERIC_SUBPROGRAM_DECLARATION | GENERIC_PACKAGE_DECLARATION
6591
6592       ------------------------------------------
6593       -- 12.1  Generic Subprogram Declaration --
6594       ------------------------------------------
6595
6596       --  GENERIC_SUBPROGRAM_DECLARATION ::=
6597       --    GENERIC_FORMAL_PART SUBPROGRAM_SPECIFICATION
6598       --      [ASPECT_SPECIFICATIONS];
6599
6600       --  Note: Generic_Formal_Declarations can include pragmas
6601
6602       --  N_Generic_Subprogram_Declaration
6603       --  Sloc points to GENERIC
6604       --  Specification (Node1) subprogram specification
6605       --  Corresponding_Body (Node5-Sem)
6606       --  Generic_Formal_Declarations (List2) from generic formal part
6607       --  Parent_Spec (Node4-Sem)
6608
6609       ---------------------------------------
6610       -- 12.1  Generic Package Declaration --
6611       ---------------------------------------
6612
6613       --  GENERIC_PACKAGE_DECLARATION ::=
6614       --    GENERIC_FORMAL_PART PACKAGE_SPECIFICATION
6615       --      [ASPECT_SPECIFICATIONS];
6616
6617       --  Note: when we do generics right, the Activation_Chain_Entity entry
6618       --  for this node can be removed (since the expander won't see generic
6619       --  units any more)???.
6620
6621       --  Note: Generic_Formal_Declarations can include pragmas
6622
6623       --  N_Generic_Package_Declaration
6624       --  Sloc points to GENERIC
6625       --  Specification (Node1) package specification
6626       --  Corresponding_Body (Node5-Sem)
6627       --  Generic_Formal_Declarations (List2) from generic formal part
6628       --  Parent_Spec (Node4-Sem)
6629       --  Activation_Chain_Entity (Node3-Sem)
6630
6631       -------------------------------
6632       -- 12.1  Generic Formal Part --
6633       -------------------------------
6634
6635       --  GENERIC_FORMAL_PART ::=
6636       --    generic {GENERIC_FORMAL_PARAMETER_DECLARATION | USE_CLAUSE}
6637
6638       ------------------------------------------------
6639       -- 12.1  Generic Formal Parameter Declaration --
6640       ------------------------------------------------
6641
6642       --  GENERIC_FORMAL_PARAMETER_DECLARATION ::=
6643       --    FORMAL_OBJECT_DECLARATION
6644       --  | FORMAL_TYPE_DECLARATION
6645       --  | FORMAL_SUBPROGRAM_DECLARATION
6646       --  | FORMAL_PACKAGE_DECLARATION
6647
6648       ---------------------------------
6649       -- 12.3  Generic Instantiation --
6650       ---------------------------------
6651
6652       --  GENERIC_INSTANTIATION ::=
6653       --    package DEFINING_PROGRAM_UNIT_NAME is
6654       --      new generic_package_NAME [GENERIC_ACTUAL_PART]
6655       --        [ASPECT_SPECIFICATIONS];
6656       --  | [[not] overriding]
6657       --    procedure DEFINING_PROGRAM_UNIT_NAME is
6658       --      new generic_procedure_NAME [GENERIC_ACTUAL_PART]
6659       --        [ASPECT_SPECIFICATIONS];
6660       --  | [[not] overriding]
6661       --    function DEFINING_DESIGNATOR is
6662       --      new generic_function_NAME [GENERIC_ACTUAL_PART]
6663       --        [ASPECT_SPECIFICATIONS];
6664
6665       --  N_Package_Instantiation
6666       --  Sloc points to PACKAGE
6667       --  Defining_Unit_Name (Node1)
6668       --  Name (Node2)
6669       --  Generic_Associations (List3) (set to No_List if no
6670       --   generic actual part)
6671       --  Parent_Spec (Node4-Sem)
6672       --  Instance_Spec (Node5-Sem)
6673       --  ABE_Is_Certain (Flag18-Sem)
6674
6675       --  N_Procedure_Instantiation
6676       --  Sloc points to PROCEDURE
6677       --  Defining_Unit_Name (Node1)
6678       --  Name (Node2)
6679       --  Parent_Spec (Node4-Sem)
6680       --  Generic_Associations (List3) (set to No_List if no
6681       --   generic actual part)
6682       --  Instance_Spec (Node5-Sem)
6683       --  Must_Override (Flag14) set if overriding indicator present
6684       --  Must_Not_Override (Flag15) set if not_overriding indicator present
6685       --  ABE_Is_Certain (Flag18-Sem)
6686
6687       --  N_Function_Instantiation
6688       --  Sloc points to FUNCTION
6689       --  Defining_Unit_Name (Node1)
6690       --  Name (Node2)
6691       --  Generic_Associations (List3) (set to No_List if no
6692       --   generic actual part)
6693       --  Parent_Spec (Node4-Sem)
6694       --  Instance_Spec (Node5-Sem)
6695       --  Must_Override (Flag14) set if overriding indicator present
6696       --  Must_Not_Override (Flag15) set if not_overriding indicator present
6697       --  ABE_Is_Certain (Flag18-Sem)
6698
6699       --  Note: overriding indicator is an Ada 2005 feature
6700
6701       -------------------------------
6702       -- 12.3  Generic Actual Part --
6703       -------------------------------
6704
6705       --  GENERIC_ACTUAL_PART ::=
6706       --    (GENERIC_ASSOCIATION {, GENERIC_ASSOCIATION})
6707
6708       -------------------------------
6709       -- 12.3  Generic Association --
6710       -------------------------------
6711
6712       --  GENERIC_ASSOCIATION ::=
6713       --    [generic_formal_parameter_SELECTOR_NAME =>]
6714
6715       --  Note: unlike the procedure call case, a generic association node
6716       --  is generated for every association, even if no formal parameter
6717       --  selector name is present. In this case the parser will leave the
6718       --  Selector_Name field set to Empty, to be filled in later by the
6719       --  semantic pass.
6720
6721       --  In Ada 2005, a formal may be associated with a box, if the
6722       --  association is part of the list of actuals for a formal package.
6723       --  If the association is given by  OTHERS => <>, the association is
6724       --  an N_Others_Choice.
6725
6726       --  N_Generic_Association
6727       --  Sloc points to first token of generic association
6728       --  Selector_Name (Node2) (set to Empty if no formal
6729       --   parameter selector name)
6730       --  Explicit_Generic_Actual_Parameter (Node1) (Empty if box present)
6731       --  Box_Present (Flag15) (for formal_package associations with a box)
6732
6733       ---------------------------------------------
6734       -- 12.3  Explicit Generic Actual Parameter --
6735       ---------------------------------------------
6736
6737       --  EXPLICIT_GENERIC_ACTUAL_PARAMETER ::=
6738       --    EXPRESSION      | variable_NAME   | subprogram_NAME
6739       --  | entry_NAME      | SUBTYPE_MARK    | package_instance_NAME
6740
6741       -------------------------------------
6742       -- 12.4  Formal Object Declaration --
6743       -------------------------------------
6744
6745       --  FORMAL_OBJECT_DECLARATION ::=
6746       --    DEFINING_IDENTIFIER_LIST :
6747       --      MODE [NULL_EXCLUSION] SUBTYPE_MARK [:= DEFAULT_EXPRESSION]
6748       --        [ASPECT_SPECIFICATIONS];
6749       --  | DEFINING_IDENTIFIER_LIST :
6750       --      MODE ACCESS_DEFINITION [:= DEFAULT_EXPRESSION]
6751       --        [ASPECT_SPECIFICATIONS];
6752
6753       --  Although the syntax allows multiple identifiers in the list, the
6754       --  semantics is as though successive declarations were given with
6755       --  identical type definition and expression components. To simplify
6756       --  semantic processing, the parser represents a multiple declaration
6757       --  case as a sequence of single declarations, using the More_Ids and
6758       --  Prev_Ids flags to preserve the original source form as described
6759       --  in the section on "Handling of Defining Identifier Lists".
6760
6761       --  N_Formal_Object_Declaration
6762       --  Sloc points to first identifier
6763       --  Defining_Identifier (Node1)
6764       --  In_Present (Flag15)
6765       --  Out_Present (Flag17)
6766       --  Null_Exclusion_Present (Flag11) (set to False if not present)
6767       --  Subtype_Mark (Node4) (set to Empty if not present)
6768       --  Access_Definition (Node3) (set to Empty if not present)
6769       --  Default_Expression (Node5) (set to Empty if no default expression)
6770       --  More_Ids (Flag5) (set to False if no more identifiers in list)
6771       --  Prev_Ids (Flag6) (set to False if no previous identifiers in list)
6772
6773       -----------------------------------
6774       -- 12.5  Formal Type Declaration --
6775       -----------------------------------
6776
6777       --  FORMAL_TYPE_DECLARATION ::=
6778       --    type DEFINING_IDENTIFIER [DISCRIMINANT_PART]
6779       --      is FORMAL_TYPE_DEFINITION
6780       --        [ASPECT_SPECIFICATIONS];
6781       --  | type DEFINING_IDENTIFIER [DISCRIMINANT_PART] [is tagged]
6782
6783       --  N_Formal_Type_Declaration
6784       --  Sloc points to TYPE
6785       --  Defining_Identifier (Node1)
6786       --  Formal_Type_Definition (Node3)
6787       --  Discriminant_Specifications (List4) (set to No_List if no
6788       --   discriminant part)
6789       --  Unknown_Discriminants_Present (Flag13) set if (<>) discriminant
6790
6791       ----------------------------------
6792       -- 12.5  Formal type definition --
6793       ----------------------------------
6794
6795       --  FORMAL_TYPE_DEFINITION ::=
6796       --    FORMAL_PRIVATE_TYPE_DEFINITION
6797       --  | FORMAL_DERIVED_TYPE_DEFINITION
6798       --  | FORMAL_DISCRETE_TYPE_DEFINITION
6799       --  | FORMAL_SIGNED_INTEGER_TYPE_DEFINITION
6800       --  | FORMAL_MODULAR_TYPE_DEFINITION
6801       --  | FORMAL_FLOATING_POINT_DEFINITION
6802       --  | FORMAL_ORDINARY_FIXED_POINT_DEFINITION
6803       --  | FORMAL_DECIMAL_FIXED_POINT_DEFINITION
6804       --  | FORMAL_ARRAY_TYPE_DEFINITION
6805       --  | FORMAL_ACCESS_TYPE_DEFINITION
6806       --  | FORMAL_INTERFACE_TYPE_DEFINITION
6807       --  | FORMAL_INCOMPLETE_TYPE_DEFINITION
6808
6809       --  The Ada 2012 syntax introduces two new non-terminals:
6810       --  Formal_{Complete,Incomplete}_Type_Declaration just to introduce
6811       --  the latter category. Here we introduce an incomplete type definition
6812       --  in order to preserve as much as possible the existing structure.
6813
6814       ---------------------------------------------
6815       -- 12.5.1  Formal Private Type Definition --
6816       ---------------------------------------------
6817
6818       --  FORMAL_PRIVATE_TYPE_DEFINITION ::=
6819       --    [[abstract] tagged] [limited] private
6820
6821       --  Note: TAGGED is not allowed in Ada 83 mode
6822
6823       --  N_Formal_Private_Type_Definition
6824       --  Sloc points to PRIVATE
6825       --  Uninitialized_Variable (Node3-Sem)
6826       --  Abstract_Present (Flag4)
6827       --  Tagged_Present (Flag15)
6828       --  Limited_Present (Flag17)
6829
6830       --------------------------------------------
6831       -- 12.5.1  Formal Derived Type Definition --
6832       --------------------------------------------
6833
6834       --  FORMAL_DERIVED_TYPE_DEFINITION ::=
6835       --    [abstract] [limited | synchronized]
6836       --       new SUBTYPE_MARK [[and INTERFACE_LIST] with private]
6837       --  Note: this construct is not allowed in Ada 83 mode
6838
6839       --  N_Formal_Derived_Type_Definition
6840       --  Sloc points to NEW
6841       --  Subtype_Mark (Node4)
6842       --  Private_Present (Flag15)
6843       --  Abstract_Present (Flag4)
6844       --  Limited_Present (Flag17)
6845       --  Synchronized_Present (Flag7)
6846       --  Interface_List (List2) (set to No_List if none)
6847
6848       -----------------------------------------------
6849       -- 12.5.1  Formal Incomplete Type Definition --
6850       -----------------------------------------------
6851
6852       --  FORMAL_INCOMPLETE_TYPE_DEFINITION ::= [tagged]
6853
6854       --  N_Formal_Incomplete_Type_Definition
6855       --  Sloc points to identifier of parent
6856       --  Tagged_Present (Flag15)
6857
6858       ---------------------------------------------
6859       -- 12.5.2  Formal Discrete Type Definition --
6860       ---------------------------------------------
6861
6862       --  FORMAL_DISCRETE_TYPE_DEFINITION ::= (<>)
6863
6864       --  N_Formal_Discrete_Type_Definition
6865       --  Sloc points to (
6866
6867       ---------------------------------------------------
6868       -- 12.5.2  Formal Signed Integer Type Definition --
6869       ---------------------------------------------------
6870
6871       --  FORMAL_SIGNED_INTEGER_TYPE_DEFINITION ::= range <>
6872
6873       --  N_Formal_Signed_Integer_Type_Definition
6874       --  Sloc points to RANGE
6875
6876       --------------------------------------------
6877       -- 12.5.2  Formal Modular Type Definition --
6878       --------------------------------------------
6879
6880       --  FORMAL_MODULAR_TYPE_DEFINITION ::= mod <>
6881
6882       --  N_Formal_Modular_Type_Definition
6883       --  Sloc points to MOD
6884
6885       ----------------------------------------------
6886       -- 12.5.2  Formal Floating Point Definition --
6887       ----------------------------------------------
6888
6889       --  FORMAL_FLOATING_POINT_DEFINITION ::= digits <>
6890
6891       --  N_Formal_Floating_Point_Definition
6892       --  Sloc points to DIGITS
6893
6894       ----------------------------------------------------
6895       -- 12.5.2  Formal Ordinary Fixed Point Definition --
6896       ----------------------------------------------------
6897
6898       --  FORMAL_ORDINARY_FIXED_POINT_DEFINITION ::= delta <>
6899
6900       --  N_Formal_Ordinary_Fixed_Point_Definition
6901       --  Sloc points to DELTA
6902
6903       ---------------------------------------------------
6904       -- 12.5.2  Formal Decimal Fixed Point Definition --
6905       ---------------------------------------------------
6906
6907       --  FORMAL_DECIMAL_FIXED_POINT_DEFINITION ::= delta <> digits <>
6908
6909       --  Note: formal decimal fixed point definition not allowed in Ada 83
6910
6911       --  N_Formal_Decimal_Fixed_Point_Definition
6912       --  Sloc points to DELTA
6913
6914       ------------------------------------------
6915       -- 12.5.3  Formal Array Type Definition --
6916       ------------------------------------------
6917
6918       --  FORMAL_ARRAY_TYPE_DEFINITION ::= ARRAY_TYPE_DEFINITION
6919
6920       -------------------------------------------
6921       -- 12.5.4  Formal Access Type Definition --
6922       -------------------------------------------
6923
6924       --  FORMAL_ACCESS_TYPE_DEFINITION ::= ACCESS_TYPE_DEFINITION
6925
6926       ----------------------------------------------
6927       -- 12.5.5  Formal Interface Type Definition --
6928       ----------------------------------------------
6929
6930       --  FORMAL_INTERFACE_TYPE_DEFINITION ::= INTERFACE_TYPE_DEFINITION
6931
6932       -----------------------------------------
6933       -- 12.6  Formal Subprogram Declaration --
6934       -----------------------------------------
6935
6936       --  FORMAL_SUBPROGRAM_DECLARATION ::=
6937       --    FORMAL_CONCRETE_SUBPROGRAM_DECLARATION
6938       --  | FORMAL_ABSTRACT_SUBPROGRAM_DECLARATION
6939
6940       --------------------------------------------------
6941       -- 12.6  Formal Concrete Subprogram Declaration --
6942       --------------------------------------------------
6943
6944       --  FORMAL_CONCRETE_SUBPROGRAM_DECLARATION ::=
6945       --    with SUBPROGRAM_SPECIFICATION [is SUBPROGRAM_DEFAULT]
6946       --      [ASPECT_SPECIFICATIONS];
6947
6948       --  N_Formal_Concrete_Subprogram_Declaration
6949       --  Sloc points to WITH
6950       --  Specification (Node1)
6951       --  Default_Name (Node2) (set to Empty if no subprogram default)
6952       --  Box_Present (Flag15)
6953
6954       --  Note: if no subprogram default is present, then Name is set
6955       --  to Empty, and Box_Present is False.
6956
6957       --------------------------------------------------
6958       -- 12.6  Formal Abstract Subprogram Declaration --
6959       --------------------------------------------------
6960
6961       --  FORMAL_ABSTRACT_SUBPROGRAM_DECLARATION ::=
6962       --    with SUBPROGRAM_SPECIFICATION is abstract [SUBPROGRAM_DEFAULT]
6963       --      [ASPECT_SPECIFICATIONS];
6964
6965       --  N_Formal_Abstract_Subprogram_Declaration
6966       --  Sloc points to WITH
6967       --  Specification (Node1)
6968       --  Default_Name (Node2) (set to Empty if no subprogram default)
6969       --  Box_Present (Flag15)
6970
6971       --  Note: if no subprogram default is present, then Name is set
6972       --  to Empty, and Box_Present is False.
6973
6974       ------------------------------
6975       -- 12.6  Subprogram Default --
6976       ------------------------------
6977
6978       --  SUBPROGRAM_DEFAULT ::= DEFAULT_NAME | <>
6979
6980       --  There is no separate node in the tree for a subprogram default.
6981       --  Instead the parent (N_Formal_Concrete_Subprogram_Declaration
6982       --  or N_Formal_Abstract_Subprogram_Declaration) node contains the
6983       --  default name or box indication, as needed.
6984
6985       ------------------------
6986       -- 12.6  Default Name --
6987       ------------------------
6988
6989       --  DEFAULT_NAME ::= NAME
6990
6991       --------------------------------------
6992       -- 12.7  Formal Package Declaration --
6993       --------------------------------------
6994
6995       --  FORMAL_PACKAGE_DECLARATION ::=
6996       --    with package DEFINING_IDENTIFIER
6997       --      is new generic_package_NAME FORMAL_PACKAGE_ACTUAL_PART
6998       --        [ASPECT_SPECIFICATIONS];
6999
7000       --  Note: formal package declarations not allowed in Ada 83 mode
7001
7002       --  N_Formal_Package_Declaration
7003       --  Sloc points to WITH
7004       --  Defining_Identifier (Node1)
7005       --  Name (Node2)
7006       --  Generic_Associations (List3) (set to No_List if (<>) case or
7007       --   empty generic actual part)
7008       --  Box_Present (Flag15)
7009       --  Instance_Spec (Node5-Sem)
7010       --  ABE_Is_Certain (Flag18-Sem)
7011
7012       --------------------------------------
7013       -- 12.7  Formal Package Actual Part --
7014       --------------------------------------
7015
7016       --  FORMAL_PACKAGE_ACTUAL_PART ::=
7017       --    ([OTHERS] => <>)
7018       --    | [GENERIC_ACTUAL_PART]
7019       --    (FORMAL_PACKAGE_ASSOCIATION {. FORMAL_PACKAGE_ASSOCIATION}
7020
7021       --  FORMAL_PACKAGE_ASSOCIATION ::=
7022       --   GENERIC_ASSOCIATION
7023       --  | GENERIC_FORMAL_PARAMETER_SELECTOR_NAME => <>
7024
7025       --  There is no explicit node in the tree for a formal package actual
7026       --  part. Instead the information appears in the parent node (i.e. the
7027       --  formal package declaration node itself).
7028
7029       --  There is no explicit node for a formal package association. All of
7030       --  them are represented either by a generic association, possibly with
7031       --  Box_Present, or by an N_Others_Choice.
7032
7033       ---------------------------------
7034       -- 13.1  Representation clause --
7035       ---------------------------------
7036
7037       --  REPRESENTATION_CLAUSE ::=
7038       --    ATTRIBUTE_DEFINITION_CLAUSE
7039       --  | ENUMERATION_REPRESENTATION_CLAUSE
7040       --  | RECORD_REPRESENTATION_CLAUSE
7041       --  | AT_CLAUSE
7042
7043       ----------------------
7044       -- 13.1  Local Name --
7045       ----------------------
7046
7047       --  LOCAL_NAME :=
7048       --    DIRECT_NAME
7049       --  | DIRECT_NAME'ATTRIBUTE_DESIGNATOR
7050       --  | library_unit_NAME
7051
7052       --  The construct DIRECT_NAME'ATTRIBUTE_DESIGNATOR appears in the tree
7053       --  as an attribute reference, which has essentially the same form.
7054
7055       ---------------------------------------
7056       -- 13.3  Attribute definition clause --
7057       ---------------------------------------
7058
7059       --  ATTRIBUTE_DEFINITION_CLAUSE ::=
7060       --    for LOCAL_NAME'ATTRIBUTE_DESIGNATOR use EXPRESSION;
7061       --  | for LOCAL_NAME'ATTRIBUTE_DESIGNATOR use NAME;
7062
7063       --  In Ada 83, the expression must be a simple expression and the
7064       --  local name must be a direct name.
7065
7066       --  Note: the only attribute definition clause that is processed by
7067       --  gigi is an address clause. For all other cases, the information
7068       --  is extracted by the front end and either results in setting entity
7069       --  information, e.g. Esize for the Size clause, or in appropriate
7070       --  expansion actions (e.g. in the case of Storage_Size).
7071
7072       --  For an address clause, Gigi constructs the appropriate addressing
7073       --  code. It also ensures that no aliasing optimizations are made
7074       --  for the object for which the address clause appears.
7075
7076       --  Note: for an address clause used to achieve an overlay:
7077
7078       --    A : Integer;
7079       --    B : Integer;
7080       --    for B'Address use A'Address;
7081
7082       --  the above rule means that Gigi will ensure that no optimizations
7083       --  will be made for B that would violate the implementation advice
7084       --  of RM 13.3(19). However, this advice applies only to B and not
7085       --  to A, which seems unfortunate. The GNAT front end will mark the
7086       --  object A as volatile to also prevent unwanted optimization
7087       --  assumptions based on no aliasing being made for B.
7088
7089       --  N_Attribute_Definition_Clause
7090       --  Sloc points to FOR
7091       --  Name (Node2) the local name
7092       --  Chars (Name1) the identifier name from the attribute designator
7093       --  Expression (Node3) the expression or name
7094       --  Entity (Node4-Sem)
7095       --  Next_Rep_Item (Node5-Sem)
7096       --  From_At_Mod (Flag4-Sem)
7097       --  Check_Address_Alignment (Flag11-Sem)
7098       --  From_Aspect_Specification (Flag13-Sem)
7099       --  Is_Delayed_Aspect (Flag14-Sem)
7100       --  Address_Warning_Posted (Flag18-Sem)
7101
7102       --  Note: if From_Aspect_Specification is set, then Sloc points to the
7103       --  aspect name, and Entity is resolved already to reference the entity
7104       --  to which the aspect applies.
7105
7106       -----------------------------------
7107       -- 13.3.1  Aspect Specifications --
7108       -----------------------------------
7109
7110       --  We modify the RM grammar here, the RM grammar is:
7111
7112       --     ASPECT_SPECIFICATION ::=
7113       --       with ASPECT_MARK [=> ASPECT_DEFINITION] {,
7114       --            ASPECT_MARK [=> ASPECT_DEFINITION] }
7115
7116       --     ASPECT_MARK ::= aspect_IDENTIFIER['Class]
7117
7118       --     ASPECT_DEFINITION ::= NAME | EXPRESSION
7119
7120       --  That's inconvenient, since there is no non-terminal name for a single
7121       --  entry in the list of aspects. So we use this grammar instead:
7122
7123       --     ASPECT_SPECIFICATIONS ::=
7124       --       with ASPECT_SPECIFICATION {, ASPECT_SPECIFICATION}
7125
7126       --     ASPECT_SPECIFICATION =>
7127       --       ASPECT_MARK [=> ASPECT_DEFINITION]
7128
7129       --     ASPECT_MARK ::= aspect_IDENTIFIER['Class]
7130
7131       --     ASPECT_DEFINITION ::= NAME | EXPRESSION
7132
7133       --  Note that for Annotate, the ASPECT_DEFINITION is a pure positional
7134       --  aggregate with the elements of the aggregate corresponding to the
7135       --  successive arguments of the corresponding pragma.
7136
7137       --  See separate package Aspects for details on the incorporation of
7138       --  these nodes into the tree, and how aspect specifications for a given
7139       --  declaration node are associated with that node.
7140
7141       --  N_Aspect_Specification
7142       --  Sloc points to aspect identifier
7143       --  Identifier (Node1) aspect identifier
7144       --  Aspect_Rep_Item (Node2-Sem)
7145       --  Expression (Node3) Aspect_Definition (set to Empty if none)
7146       --  Entity (Node4-Sem) entity to which the aspect applies
7147       --  Next_Rep_Item (Node5-Sem)
7148       --  Class_Present (Flag6) Set if 'Class present
7149       --  Is_Ignored (Flag9-Sem)
7150       --  Is_Checked (Flag11-Sem)
7151       --  Is_Delayed_Aspect (Flag14-Sem)
7152       --  Is_Disabled (Flag15-Sem)
7153       --  Is_Boolean_Aspect (Flag16-Sem)
7154       --  Split_PPC (Flag17) Set if split pre/post attribute
7155
7156       --  Note: Aspect_Specification is an Ada 2012 feature
7157
7158       --  Note: The Identifier serves to identify the aspect involved (it
7159       --  is the aspect whose name corresponds to the Chars field). This
7160       --  means that the other fields of this identifier are unused, and
7161       --  in particular we use the Entity field of this identifier to save
7162       --  a copy of the expression for visibility analysis, see spec of
7163       --  Sem_Ch13 for full details of this usage.
7164
7165       --  In the case of aspects of the form xxx'Class, the aspect identifier
7166       --  is for xxx, and Class_Present is set to True.
7167
7168       --  Note: When a Pre or Post aspect specification is processed, it is
7169       --  broken into AND THEN sections. The left most section has Split_PPC
7170       --  set to False, indicating that it is the original specification (e.g.
7171       --  for posting errors). For the other sections, Split_PPC is set True.
7172
7173       ---------------------------------------------
7174       -- 13.4  Enumeration representation clause --
7175       ---------------------------------------------
7176
7177       --  ENUMERATION_REPRESENTATION_CLAUSE ::=
7178       --    for first_subtype_LOCAL_NAME use ENUMERATION_AGGREGATE;
7179
7180       --  In Ada 83, the name must be a direct name
7181
7182       --  N_Enumeration_Representation_Clause
7183       --  Sloc points to FOR
7184       --  Identifier (Node1) direct name
7185       --  Array_Aggregate (Node3)
7186       --  Next_Rep_Item (Node5-Sem)
7187
7188       ---------------------------------
7189       -- 13.4  Enumeration aggregate --
7190       ---------------------------------
7191
7192       --  ENUMERATION_AGGREGATE ::= ARRAY_AGGREGATE
7193
7194       ------------------------------------------
7195       -- 13.5.1  Record representation clause --
7196       ------------------------------------------
7197
7198       --  RECORD_REPRESENTATION_CLAUSE ::=
7199       --    for first_subtype_LOCAL_NAME use
7200       --      record [MOD_CLAUSE]
7201       --        {COMPONENT_CLAUSE}
7202       --      end record;
7203
7204       --  Gigi restriction: Mod_Clause is always Empty (if present it is
7205       --  replaced by a corresponding Alignment attribute definition clause).
7206
7207       --  Note: Component_Clauses can include pragmas
7208
7209       --  N_Record_Representation_Clause
7210       --  Sloc points to FOR
7211       --  Identifier (Node1) direct name
7212       --  Mod_Clause (Node2) (set to Empty if no mod clause present)
7213       --  Component_Clauses (List3)
7214       --  Next_Rep_Item (Node5-Sem)
7215
7216       ------------------------------
7217       -- 13.5.1  Component clause --
7218       ------------------------------
7219
7220       --  COMPONENT_CLAUSE ::=
7221       --    component_LOCAL_NAME at POSITION
7222       --      range FIRST_BIT .. LAST_BIT;
7223
7224       --  N_Component_Clause
7225       --  Sloc points to AT
7226       --  Component_Name (Node1) points to Name or Attribute_Reference
7227       --  Position (Node2)
7228       --  First_Bit (Node3)
7229       --  Last_Bit (Node4)
7230
7231       ----------------------
7232       -- 13.5.1  Position --
7233       ----------------------
7234
7235       --  POSITION ::= static_EXPRESSION
7236
7237       -----------------------
7238       -- 13.5.1  First_Bit --
7239       -----------------------
7240
7241       --  FIRST_BIT ::= static_SIMPLE_EXPRESSION
7242
7243       ----------------------
7244       -- 13.5.1  Last_Bit --
7245       ----------------------
7246
7247       --  LAST_BIT ::= static_SIMPLE_EXPRESSION
7248
7249       --------------------------
7250       -- 13.8  Code statement --
7251       --------------------------
7252
7253       --  CODE_STATEMENT ::= QUALIFIED_EXPRESSION;
7254
7255       --  Note: in GNAT, the qualified expression has the form
7256
7257       --    Asm_Insn'(Asm (...));
7258
7259       --  See package System.Machine_Code in file s-maccod.ads for details on
7260       --  the allowed parameters to Asm. There are two ways this node can
7261       --  arise, as a code statement, in which case the expression is the
7262       --  qualified expression, or as a result of the expansion of an intrinsic
7263       --  call to the Asm or Asm_Input procedure.
7264
7265       --  N_Code_Statement
7266       --  Sloc points to first token of the expression
7267       --  Expression (Node3)
7268
7269       --  Note: package Exp_Code contains an abstract functional interface
7270       --  for use by Gigi in accessing the data from N_Code_Statement nodes.
7271
7272       ------------------------
7273       -- 13.12  Restriction --
7274       ------------------------
7275
7276       --  RESTRICTION ::=
7277       --    restriction_IDENTIFIER
7278       --  | restriction_parameter_IDENTIFIER => EXPRESSION
7279
7280       --  There is no explicit node for restrictions. Instead the restriction
7281       --  appears in normal pragma syntax as a pragma argument association,
7282       --  which has the same syntactic form.
7283
7284       --------------------------
7285       -- B.2  Shift Operators --
7286       --------------------------
7287
7288       --  Calls to the intrinsic shift functions are converted to one of
7289       --  the following shift nodes, which have the form of normal binary
7290       --  operator names. Note that for a given shift operation, one node
7291       --  covers all possible types, as for normal operators.
7292
7293       --  Note: it is perfectly permissible for the expander to generate
7294       --  shift operation nodes directly, in which case they will be analyzed
7295       --  and parsed in the usual manner.
7296
7297       --  Sprint syntax: shift-function-name!(expr, count)
7298
7299       --  Note: the Left_Opnd field holds the first argument (the value to
7300       --  be shifted). The Right_Opnd field holds the second argument (the
7301       --  shift count). The Chars field is the name of the intrinsic function.
7302
7303       --  N_Op_Rotate_Left
7304       --  Sloc points to the function name
7305       --  plus fields for binary operator
7306       --  plus fields for expression
7307       --  Shift_Count_OK (Flag4-Sem)
7308
7309       --  N_Op_Rotate_Right
7310       --  Sloc points to the function name
7311       --  plus fields for binary operator
7312       --  plus fields for expression
7313       --  Shift_Count_OK (Flag4-Sem)
7314
7315       --  N_Op_Shift_Left
7316       --  Sloc points to the function name
7317       --  plus fields for binary operator
7318       --  plus fields for expression
7319       --  Shift_Count_OK (Flag4-Sem)
7320
7321       --  N_Op_Shift_Right_Arithmetic
7322       --  Sloc points to the function name
7323       --  plus fields for binary operator
7324       --  plus fields for expression
7325       --  Shift_Count_OK (Flag4-Sem)
7326
7327       --  N_Op_Shift_Right
7328       --  Sloc points to the function name
7329       --  plus fields for binary operator
7330       --  plus fields for expression
7331       --  Shift_Count_OK (Flag4-Sem)
7332
7333       --  Note: N_Op_Rotate_Left, N_Op_Rotate_Right, N_Shift_Right_Arithmetic
7334       --  never appear in the expanded tree if Modify_Tree_For_C mode is set.
7335
7336       --  Note: For N_Op_Shift_Left and N_Op_Shift_Right, the right operand is
7337       --  always less than the word size if Modify_Tree_For_C mode is set.
7338
7339    --------------------------
7340    -- Obsolescent Features --
7341    --------------------------
7342
7343       --  The syntax descriptions and tree nodes for obsolescent features are
7344       --  grouped together, corresponding to their location in appendix I in
7345       --  the RM. However, parsing and semantic analysis for these constructs
7346       --  is located in an appropriate chapter (see individual notes).
7347
7348       ---------------------------
7349       -- J.3  Delta Constraint --
7350       ---------------------------
7351
7352       --  Note: the parse routine for this construct is located in section
7353       --  3.5.9 of Par-Ch3, and semantic analysis is in Sem_Ch3, which is
7354       --  where delta constraint logically belongs.
7355
7356       --  DELTA_CONSTRAINT ::= DELTA static_EXPRESSION [RANGE_CONSTRAINT]
7357
7358       --  N_Delta_Constraint
7359       --  Sloc points to DELTA
7360       --  Delta_Expression (Node3)
7361       --  Range_Constraint (Node4) (set to Empty if not present)
7362
7363       --------------------
7364       -- J.7  At Clause --
7365       --------------------
7366
7367       --  AT_CLAUSE ::= for DIRECT_NAME use at EXPRESSION;
7368
7369       --  Note: the parse routine for this construct is located in Par-Ch13,
7370       --  and the semantic analysis is in Sem_Ch13, where at clause logically
7371       --  belongs if it were not obsolescent.
7372
7373       --  Note: in Ada 83 the expression must be a simple expression
7374
7375       --  Gigi restriction: This node never appears, it is rewritten as an
7376       --  address attribute definition clause.
7377
7378       --  N_At_Clause
7379       --  Sloc points to FOR
7380       --  Identifier (Node1)
7381       --  Expression (Node3)
7382
7383       ---------------------
7384       -- J.8  Mod clause --
7385       ---------------------
7386
7387       --  MOD_CLAUSE ::= at mod static_EXPRESSION;
7388
7389       --  Note: the parse routine for this construct is located in Par-Ch13,
7390       --  and the semantic analysis is in Sem_Ch13, where mod clause logically
7391       --  belongs if it were not obsolescent.
7392
7393       --  Note: in Ada 83, the expression must be a simple expression
7394
7395       --  Gigi restriction: this node never appears. It is replaced
7396       --  by a corresponding Alignment attribute definition clause.
7397
7398       --  Note: pragmas can appear before and after the MOD_CLAUSE since
7399       --  its name has "clause" in it. This is rather strange, but is quite
7400       --  definitely specified. The pragmas before are collected in the
7401       --  Pragmas_Before field of the mod clause node itself, and pragmas
7402       --  after are simply swallowed up in the list of component clauses.
7403
7404       --  N_Mod_Clause
7405       --  Sloc points to AT
7406       --  Expression (Node3)
7407       --  Pragmas_Before (List4) Pragmas before mod clause (No_List if none)
7408
7409    --------------------
7410    -- Semantic Nodes --
7411    --------------------
7412
7413    --  These semantic nodes are used to hold additional semantic information.
7414    --  They are inserted into the tree as a result of semantic processing.
7415    --  Although there are no legitimate source syntax constructions that
7416    --  correspond directly to these nodes, we need a source syntax for the
7417    --  reconstructed tree printed by Sprint, and the node descriptions here
7418    --  show this syntax.
7419
7420       ------------------------
7421       -- Compound Statement --
7422       ------------------------
7423
7424       --  This node is created by the analyzer/expander to handle some
7425       --  expansion cases where a sequence of actions needs to be captured
7426       --  within a single node (which acts as a container and allows the
7427       --  entire list of actions to be moved around as a whole) appearing
7428       --  in a sequence of statements.
7429
7430       --  This is the statement counterpart to the expression node
7431       --  N_Expression_With_Actions.
7432
7433       --  The required semantics is that the set of actions is executed in
7434       --  the order in which it appears, as though they appeared by themselves
7435       --  in the enclosing list of declarations of statements. Unlike what
7436       --  happens when using an N_Block_Statement, no new scope is introduced.
7437
7438       --  Note: for the time being, this is used only as a transient
7439       --  representation during expansion, and all compound statement nodes
7440       --  must be exploded back to their constituent statements before handing
7441       --  the tree to the back end.
7442
7443       --  Sprint syntax:  do
7444       --                    action;
7445       --                    action;
7446       --                    ...
7447       --                    action;
7448       --                  end;
7449
7450       --  N_Compound_Statement
7451       --  Actions (List1)
7452
7453       --------------
7454       -- Contract --
7455       --------------
7456
7457       --  This node is used to hold the various parts of an entry, subprogram
7458       --  [body] or package [body] contract, in particular:
7459       --     Abstract states declared by a package declaration
7460       --     Contract cases that apply to a subprogram
7461       --     Dependency relations of inputs and output of a subprogram
7462       --     Global annotations classifying data as input or output
7463       --     Initialization sequences for a package declaration
7464       --     Pre- and postconditions that apply to a subprogram
7465
7466       --  The node appears in an entry and [generic] subprogram [body] entity.
7467
7468       --  Sprint syntax:  <none> as the node should not appear in the tree, but
7469       --                  only attached to an entry or [generic] subprogram
7470       --                  entity.
7471
7472       --  N_Contract
7473       --  Sloc points to the subprogram's name
7474       --  Pre_Post_Conditions (Node1) (set to Empty if none)
7475       --  Contract_Test_Cases (Node2) (set to Empty if none)
7476       --  Classifications (Node3) (set to Empty if none)
7477
7478       --  Pre_Post_Conditions contains a collection of pragmas that correspond
7479       --  to pre- and postconditions associated with an entry or a subprogram
7480       --  [body or stub]. The pragmas can either come from source or be the
7481       --  byproduct of aspect expansion. Currently the following pragmas appear
7482       --  in this list:
7483       --    Post
7484       --    Postcondition
7485       --    Pre
7486       --    Precondition
7487       --    Refined_Post
7488       --  The ordering in the list is in LIFO fashion.
7489
7490       --  Note that there might be multiple preconditions or postconditions
7491       --  in this list, either because they come from separate pragmas in the
7492       --  source, or because a Pre (resp. Post) aspect specification has been
7493       --  broken into AND THEN sections. See Split_PPC for details.
7494
7495       --  Contract_Test_Cases contains a collection of pragmas that correspond
7496       --  to aspects/pragmas Contract_Cases and Test_Case. The ordering in the
7497       --  list is in LIFO fashion.
7498
7499       --  Classifications contains pragmas that either declare, categorize or
7500       --  establish dependencies between subprogram or package inputs and
7501       --  outputs. Currently the following pragmas appear in this list:
7502       --    Abstract_States
7503       --    Async_Readers
7504       --    Async_Writers
7505       --    Depends
7506       --    Effective_Reads
7507       --    Effective_Writes
7508       --    Global
7509       --    Initial_Condition
7510       --    Initializes
7511       --    Part_Of
7512       --    Refined_Depends
7513       --    Refined_Global
7514       --    Refined_States
7515       --  The ordering is in LIFO fashion.
7516
7517       -------------------
7518       -- Expanded Name --
7519       -------------------
7520
7521       --  The N_Expanded_Name node is used to represent a selected component
7522       --  name that has been resolved to an expanded name. The semantic phase
7523       --  replaces N_Selected_Component nodes that represent names by the use
7524       --  of this node, leaving the N_Selected_Component node used only when
7525       --  the prefix is a record or protected type.
7526
7527       --  The fields of the N_Expanded_Name node are layed out identically
7528       --  to those of the N_Selected_Component node, allowing conversion of
7529       --  an expanded name node to a selected component node to be done
7530       --  easily, see Sinfo.CN.Change_Selected_Component_To_Expanded_Name.
7531
7532       --  There is no special sprint syntax for an expanded name
7533
7534       --  N_Expanded_Name
7535       --  Sloc points to the period
7536       --  Chars (Name1) copy of Chars field of selector name
7537       --  Prefix (Node3)
7538       --  Selector_Name (Node2)
7539       --  Entity (Node4-Sem)
7540       --  Associated_Node (Node4-Sem)
7541       --  Has_Private_View (Flag11-Sem) set in generic units.
7542       --  Redundant_Use (Flag13-Sem)
7543       --  Atomic_Sync_Required (Flag14-Sem)
7544       --  plus fields for expression
7545
7546       -----------------------------
7547       -- Expression With Actions --
7548       -----------------------------
7549
7550       --  This node is created by the analyzer/expander to handle some
7551       --  expansion cases, notably short circuit forms where there are
7552       --  actions associated with the right-hand side operand.
7553
7554       --  The N_Expression_With_Actions node represents an expression with
7555       --  an associated set of actions (which are executable statements and
7556       --  declarations, as might occur in a handled statement sequence).
7557
7558       --  The required semantics is that the set of actions is executed in
7559       --  the order in which it appears just before the expression is
7560       --  evaluated (and these actions must only be executed if the value
7561       --  of the expression is evaluated). The node is considered to be
7562       --  a subexpression, whose value is the value of the Expression after
7563       --  executing all the actions.
7564
7565       --  If the actions contain declarations, then these declarations may
7566       --  be referenced within the expression. However note that there is
7567       --  no proper scope associated with the expression-with-action, so the
7568       --  back-end will elaborate them in the context of the enclosing scope.
7569
7570       --  Sprint syntax:  do
7571       --                    action;
7572       --                    action;
7573       --                    ...
7574       --                    action;
7575       --                  in expression end
7576
7577       --  N_Expression_With_Actions
7578       --  Actions (List1)
7579       --  Expression (Node3)
7580       --  plus fields for expression
7581
7582       --  Note: In the final generated tree presented to the code generator,
7583       --  the actions list is always non-null, since there is no point in this
7584       --  node if the actions are Empty. During semantic analysis there are
7585       --  cases where it is convenient to temporarily generate an empty actions
7586       --  list. This arises in cases where we create such an empty actions
7587       --  list, and it may or may not end up being a place where additional
7588       --  actions are inserted. The expander removes such empty cases after
7589       --  the expression of the node is fully analyzed and expanded, at which
7590       --  point it is safe to remove it, since no more actions can be inserted.
7591
7592       --  Note: In Modify_Tree_For_C, we never generate any declarations in
7593       --  the action list, which can contain only non-declarative statements.
7594
7595       --------------------
7596       -- Free Statement --
7597       --------------------
7598
7599       --  The N_Free_Statement node is generated as a result of a call to an
7600       --  instantiation of Unchecked_Deallocation. The instantiation of this
7601       --  generic is handled specially and generates this node directly.
7602
7603       --  Sprint syntax: free expression
7604
7605       --  N_Free_Statement
7606       --  Sloc is copied from the unchecked deallocation call
7607       --  Expression (Node3) argument to unchecked deallocation call
7608       --  Storage_Pool (Node1-Sem)
7609       --  Procedure_To_Call (Node2-Sem)
7610       --  Actual_Designated_Subtype (Node4-Sem)
7611
7612       --  Note: in the case where a debug source file is generated, the Sloc
7613       --  for this node points to the FREE keyword in the Sprint file output.
7614
7615       -------------------
7616       -- Freeze Entity --
7617       -------------------
7618
7619       --  This node marks the point in a declarative part at which an entity
7620       --  declared therein becomes frozen. The expander places initialization
7621       --  procedures for types at those points. Gigi uses the freezing point
7622       --  to elaborate entities that may depend on previous private types.
7623
7624       --  See the section in Einfo "Delayed Freezing and Elaboration" for
7625       --  a full description of the use of this node.
7626
7627       --  The Entity field points back to the entity for the type (whose
7628       --  Freeze_Node field points back to this freeze node).
7629
7630       --  The Actions field contains a list of declarations and statements
7631       --  generated by the expander which are associated with the freeze
7632       --  node, and are elaborated as though the freeze node were replaced
7633       --  by this sequence of actions.
7634
7635       --  Note: the Sloc field in the freeze node references a construct
7636       --  associated with the freezing point. This is used for posting
7637       --  messages in some error/warning situations, e.g. the case where
7638       --  a primitive operation of a tagged type is declared too late.
7639
7640       --  Sprint syntax: freeze entity-name [
7641       --                   freeze actions
7642       --                 ]
7643
7644       --  N_Freeze_Entity
7645       --  Sloc points near freeze point (see above special note)
7646       --  Entity (Node4-Sem)
7647       --  Access_Types_To_Process (Elist2-Sem) (set to No_Elist if none)
7648       --  TSS_Elist (Elist3-Sem) (set to No_Elist if no associated TSS's)
7649       --  Actions (List1) (set to No_List if no freeze actions)
7650       --  First_Subtype_Link (Node5-Sem) (set to Empty if no link)
7651
7652       --  The Actions field holds actions associated with the freeze. These
7653       --  actions are elaborated at the point where the type is frozen.
7654
7655       --  Note: in the case where a debug source file is generated, the Sloc
7656       --  for this node points to the FREEZE keyword in the Sprint file output.
7657
7658       ---------------------------
7659       -- Freeze Generic Entity --
7660       ---------------------------
7661
7662       --  The freeze point of an entity indicates the point at which the
7663       --  information needed to generate code for the entity is complete.
7664       --  The freeze node for an entity triggers expander activities, such as
7665       --  build initialization procedures, and backend activities, such as
7666       --  completing the elaboration of packages.
7667
7668       --  For entities declared within a generic unit, for which no code is
7669       --  generated, the freeze point is not equally meaningful. However, in
7670       --  Ada 2012 several semantic checks on declarations must be delayed to
7671       --  the freeze point, and we need to include such a mark in the tree to
7672       --  trigger these checks. The Freeze_Generic_Entity node plays no other
7673       --  role, and is ignored by the expander and the back-end.
7674
7675       --  Sprint syntax: freeze_generic entity-name
7676
7677       --  N_Freeze_Generic_Entity
7678       --  Sloc points near freeze point
7679       --  Entity (Node4-Sem)
7680
7681       --------------------------------
7682       -- Implicit Label Declaration --
7683       --------------------------------
7684
7685       --  An implicit label declaration is created for every occurrence of a
7686       --  label on a statement or a label on a block or loop. It is chained
7687       --  in the declarations of the innermost enclosing block as specified
7688       --  in RM section 5.1 (3).
7689
7690       --  The Defining_Identifier is the actual identifier for the statement
7691       --  identifier. Note that the occurrence of the label is a reference, NOT
7692       --  the defining occurrence. The defining occurrence occurs at the head
7693       --  of the innermost enclosing block, and is represented by this node.
7694
7695       --  Note: from the grammar, this might better be called an implicit
7696       --  statement identifier declaration, but the term we choose seems
7697       --  friendlier, since at least informally statement identifiers are
7698       --  called labels in both cases (i.e. when used in labels, and when
7699       --  used as the identifiers of blocks and loops).
7700
7701       --  Note: although this is logically a semantic node, since it does not
7702       --  correspond directly to a source syntax construction, these nodes are
7703       --  actually created by the parser in a post pass done just after parsing
7704       --  is complete, before semantic analysis is started (see Par.Labl).
7705
7706       --  Sprint syntax: labelname : label;
7707
7708       --  N_Implicit_Label_Declaration
7709       --  Sloc points to the << token for a statement identifier, or to the
7710       --    LOOP, DECLARE, or BEGIN token for a loop or block identifier
7711       --  Defining_Identifier (Node1)
7712       --  Label_Construct (Node2-Sem)
7713
7714       --  Note: in the case where a debug source file is generated, the Sloc
7715       --  for this node points to the label name in the generated declaration.
7716
7717       ---------------------
7718       -- Itype Reference --
7719       ---------------------
7720
7721       --  This node is used to create a reference to an Itype. The only purpose
7722       --  is to make sure the Itype is defined if this is the first reference.
7723
7724       --  A typical use of this node is when an Itype is to be referenced in
7725       --  two branches of an IF statement. In this case it is important that
7726       --  the first use of the Itype not be inside the conditional, since then
7727       --  it might not be defined if the other branch of the IF is taken, in
7728       --  the case where the definition generates elaboration code.
7729
7730       --  The Itype field points to the referenced Itype
7731
7732       --  Sprint syntax: reference itype-name
7733
7734       --  N_Itype_Reference
7735       --  Sloc points to the node generating the reference
7736       --  Itype (Node1-Sem)
7737
7738       --  Note: in the case where a debug source file is generated, the Sloc
7739       --  for this node points to the REFERENCE keyword in the file output.
7740
7741       ---------------------
7742       -- Raise xxx Error --
7743       ---------------------
7744
7745       --  One of these nodes is created during semantic analysis to replace
7746       --  a node for an expression that is determined to definitely raise
7747       --  the corresponding exception.
7748
7749       --  The N_Raise_xxx_Error node may also stand alone in place
7750       --  of a declaration or statement, in which case it simply causes
7751       --  the exception to be raised (i.e. it is equivalent to a raise
7752       --  statement that raises the corresponding exception). This use
7753       --  is distinguished by the fact that the Etype in this case is
7754       --  Standard_Void_Type; in the subexpression case, the Etype is the
7755       --  same as the type of the subexpression which it replaces.
7756
7757       --  If Condition is empty, then the raise is unconditional. If the
7758       --  Condition field is non-empty, it is a boolean expression which
7759       --  is first evaluated, and the exception is raised only if the
7760       --  value of the expression is True. In the unconditional case, the
7761       --  creation of this node is usually accompanied by a warning message
7762       --  error. The creation of this node will usually be accompanied by a
7763       --  message (unless it appears within the right operand of a short
7764       --  circuit form whose left argument is static and decisively
7765       --  eliminates elaboration of the raise operation. The condition field
7766       --  can ONLY be present when the node is used as a statement form, it
7767       --  may NOT be present in the case where the node appears within an
7768       --  expression.
7769
7770       --  The exception is generated with a message that contains the
7771       --  file name and line number, and then appended text. The Reason
7772       --  code shows the text to be added. The Reason code is an element
7773       --  of the type Types.RT_Exception_Code, and indicates both the
7774       --  message to be added, and the exception to be raised (which must
7775       --  match the node type). The value is stored by storing a Uint which
7776       --  is the Pos value of the enumeration element in this type.
7777
7778       --  Gigi restriction: This expander ensures that the type of the
7779       --  Condition field is always Standard.Boolean, even if the type
7780       --  in the source is some non-standard boolean type.
7781
7782       --  Sprint syntax: [xxx_error "msg"]
7783       --             or: [xxx_error when condition "msg"]
7784
7785       --  N_Raise_Constraint_Error
7786       --  Sloc references related construct
7787       --  Condition (Node1) (set to Empty if no condition)
7788       --  Reason (Uint3)
7789       --  plus fields for expression
7790
7791       --  N_Raise_Program_Error
7792       --  Sloc references related construct
7793       --  Condition (Node1) (set to Empty if no condition)
7794       --  Reason (Uint3)
7795       --  plus fields for expression
7796
7797       --  N_Raise_Storage_Error
7798       --  Sloc references related construct
7799       --  Condition (Node1) (set to Empty if no condition)
7800       --  Reason (Uint3)
7801       --  plus fields for expression
7802
7803       --  Note: Sloc is copied from the expression generating the exception.
7804       --  In the case where a debug source file is generated, the Sloc for
7805       --  this node points to the left bracket in the Sprint file output.
7806
7807       --  Note: the back end may be required to translate these nodes into
7808       --  appropriate goto statements. See description of N_Push/Pop_xxx_Label.
7809
7810       ---------------------------------------------
7811       -- Optimization of Exception Raise to Goto --
7812       ---------------------------------------------
7813
7814       --  In some cases, the front end will determine that any exception raised
7815       --  by the back end for a certain exception should be transformed into a
7816       --  goto statement.
7817
7818       --  There are three kinds of exceptions raised by the back end (note that
7819       --  for this purpose we consider gigi to be part of the back end in the
7820       --  gcc case):
7821
7822       --     1. Exceptions resulting from N_Raise_xxx_Error nodes
7823       --     2. Exceptions from checks triggered by Do_xxx_Check flags
7824       --     3. Other cases not specifically marked by the front end
7825
7826       --  Normally all such exceptions are translated into calls to the proper
7827       --  Rcheck_xx procedure, where xx encodes both the exception to be raised
7828       --  and the exception message.
7829
7830       --  The front end may determine that for a particular sequence of code,
7831       --  exceptions in any of these three categories for a particular builtin
7832       --  exception should result in a goto, rather than a call to Rcheck_xx.
7833       --  The exact sequence to be generated is:
7834
7835       --      Local_Raise (exception'Identity);
7836       --      goto Label
7837
7838       --  The front end marks such a sequence of code by bracketing it with
7839       --  push and pop nodes:
7840
7841       --       N_Push_xxx_Label (referencing the label)
7842       --       ...
7843       --       (code where transformation is expected for exception xxx)
7844       --       ...
7845       --       N_Pop_xxx_Label
7846
7847       --  The use of push/pop reflects the fact that such regions can properly
7848       --  nest, and one special case is a subregion in which no transformation
7849       --  is allowed. Such a region is marked by a N_Push_xxx_Label node whose
7850       --  Exception_Label field is Empty.
7851
7852       --  N_Push_Constraint_Error_Label
7853       --  Sloc references first statement in region covered
7854       --  Exception_Label (Node5-Sem)
7855
7856       --  N_Push_Program_Error_Label
7857       --  Sloc references first statement in region covered
7858       --  Exception_Label (Node5-Sem)
7859
7860       --  N_Push_Storage_Error_Label
7861       --  Sloc references first statement in region covered
7862       --  Exception_Label (Node5-Sem)
7863
7864       --  N_Pop_Constraint_Error_Label
7865       --  Sloc references last statement in region covered
7866
7867       --  N_Pop_Program_Error_Label
7868       --  Sloc references last statement in region covered
7869
7870       --  N_Pop_Storage_Error_Label
7871       --  Sloc references last statement in region covered
7872
7873       ---------------
7874       -- Reference --
7875       ---------------
7876
7877       --  For a number of purposes, we need to construct references to objects.
7878       --  These references are subsequently treated as normal access values.
7879       --  An example is the construction of the parameter block passed to a
7880       --  task entry. The N_Reference node is provided for this purpose. It is
7881       --  similar in effect to the use of the Unrestricted_Access attribute,
7882       --  and like Unrestricted_Access can be applied to objects which would
7883       --  not be valid prefixes for the Unchecked_Access attribute (e.g.
7884       --  objects which are not aliased, and slices). In addition it can be
7885       --  applied to composite type values as well as objects, including string
7886       --  values and aggregates.
7887
7888       --  Note: we use the Prefix field for this expression so that the
7889       --  resulting node can be treated using common code with the attribute
7890       --  nodes for the 'Access and related attributes. Logically it would make
7891       --  more sense to call it an Expression field, but then we would have to
7892       --  special case the treatment of the N_Reference node.
7893
7894       --  Note: evaluating a N_Reference node is guaranteed to yield a non-null
7895       --  value at run time. Therefore, it is valid to set Is_Known_Non_Null on
7896       --  a temporary initialized to a N_Reference node in order to eliminate
7897       --  superfluous access checks.
7898
7899       --  Sprint syntax: prefix'reference
7900
7901       --  N_Reference
7902       --  Sloc is copied from the expression
7903       --  Prefix (Node3)
7904       --  plus fields for expression
7905
7906       --  Note: in the case where a debug source file is generated, the Sloc
7907       --  for this node points to the quote in the Sprint file output.
7908
7909       ----------------
7910       -- SCIL Nodes --
7911       ----------------
7912
7913       --  SCIL nodes are special nodes added to the tree when the CodePeer mode
7914       --  is active. They are only generated if SCIL generation is enabled.
7915       --  A standard tree-walk will not encounter these nodes even if they
7916       --  are present; these nodes are only accessible via the function
7917       --  SCIL_LL.Get_SCIL_Node. These nodes have no associated dynamic
7918       --  semantics.
7919
7920       --  Sprint syntax: [ <node kind> ]
7921       --  No semantic field values are displayed.
7922
7923       --  N_SCIL_Dispatch_Table_Tag_Init
7924       --  Sloc references a node for a tag initialization
7925       --  SCIL_Entity (Node4-Sem)
7926       --
7927       --  An N_SCIL_Dispatch_Table_Tag_Init node may be associated (via
7928       --  Get_SCIL_Node) with the N_Object_Declaration node corresponding to
7929       --  the declaration of the dispatch table for a tagged type.
7930
7931       --  N_SCIL_Dispatching_Call
7932       --  Sloc references the node of a dispatching call
7933       --  SCIL_Target_Prim (Node2-Sem)
7934       --  SCIL_Entity (Node4-Sem)
7935       --  SCIL_Controlling_Tag (Node5-Sem)
7936       --
7937       --  An N_Scil_Dispatching call node may be associated (via Get_SCIL_Node)
7938       --  with the N_Procedure_Call or N_Function_Call node (or a rewriting
7939       --  thereof) corresponding to a dispatching call.
7940
7941       --  N_SCIL_Membership_Test
7942       --  Sloc references the node of a membership test
7943       --  SCIL_Tag_Value (Node5-Sem)
7944       --  SCIL_Entity (Node4-Sem)
7945       --
7946       --  An N_Scil_Membership_Test node may be associated (via Get_SCIL_Node)
7947       --  with the N_In node (or a rewriting thereof) corresponding to a
7948       --  classwide membership test.
7949
7950       --------------------------
7951       -- Unchecked Expression --
7952       --------------------------
7953
7954       --  An unchecked expression is one that must be analyzed and resolved
7955       --  with all checks off, regardless of the current setting of scope
7956       --  suppress flags.
7957
7958       --  Sprint syntax: `(expression)
7959
7960       --  Note: this node is always removed from the tree (and replaced by
7961       --  its constituent expression) on completion of analysis, so it only
7962       --  appears in intermediate trees, and will never be seen by Gigi.
7963
7964       --  N_Unchecked_Expression
7965       --  Sloc is a copy of the Sloc of the expression
7966       --  Expression (Node3)
7967       --  plus fields for expression
7968
7969       --  Note: in the case where a debug source file is generated, the Sloc
7970       --  for this node points to the back quote in the Sprint file output.
7971
7972       -------------------------------
7973       -- Unchecked Type Conversion --
7974       -------------------------------
7975
7976       --  An unchecked type conversion node represents the semantic action
7977       --  corresponding to a call to an instantiation of Unchecked_Conversion.
7978       --  It is generated as a result of actual use of Unchecked_Conversion
7979       --  and also the expander generates unchecked type conversion nodes
7980       --  directly for expansion of complex semantic actions.
7981
7982       --  Note: an unchecked type conversion is a variable as far as the
7983       --  semantics are concerned, which is convenient for the expander.
7984       --  This does not change what Ada source programs are legal, since
7985       --  clearly a function call to an instantiation of Unchecked_Conversion
7986       --  is not a variable in any case.
7987
7988       --  Sprint syntax: subtype-mark!(expression)
7989
7990       --  N_Unchecked_Type_Conversion
7991       --  Sloc points to related node in source
7992       --  Subtype_Mark (Node4)
7993       --  Expression (Node3)
7994       --  Kill_Range_Check (Flag11-Sem)
7995       --  No_Truncation (Flag17-Sem)
7996       --  plus fields for expression
7997
7998       --  Note: in the case where a debug source file is generated, the Sloc
7999       --  for this node points to the exclamation in the Sprint file output.
8000
8001       -----------------------------------
8002       -- Validate_Unchecked_Conversion --
8003       -----------------------------------
8004
8005       --  The front end does most of the validation of unchecked conversion,
8006       --  including checking sizes (this is done after the back end is called
8007       --  to take advantage of back-annotation of calculated sizes).
8008
8009       --  The front end also deals with specific cases that are not allowed
8010       --  e.g. involving unconstrained array types.
8011
8012       --  For the case of the standard gigi backend, this means that all
8013       --  checks are done in the front end.
8014
8015       --  However, in the case of specialized back-ends, notably the JVM
8016       --  backend for JGNAT, additional requirements and restrictions apply
8017       --  to unchecked conversion, and these are most conveniently performed
8018       --  in the specialized back-end.
8019
8020       --  To accommodate this requirement, for such back ends, the following
8021       --  special node is generated recording an unchecked conversion that
8022       --  needs to be validated. The back end should post an appropriate
8023       --  error message if the unchecked conversion is invalid or warrants
8024       --  a special warning message.
8025
8026       --  Source_Type and Target_Type point to the entities for the two
8027       --  types involved in the unchecked conversion instantiation that
8028       --  is to be validated.
8029
8030       --  Sprint syntax: validate Unchecked_Conversion (source, target);
8031
8032       --  N_Validate_Unchecked_Conversion
8033       --  Sloc points to instantiation (location for warning message)
8034       --  Source_Type (Node1-Sem)
8035       --  Target_Type (Node2-Sem)
8036
8037       --  Note: in the case where a debug source file is generated, the Sloc
8038       --  for this node points to the VALIDATE keyword in the file output.
8039
8040    -----------
8041    -- Empty --
8042    -----------
8043
8044    --  Used as the contents of the Nkind field of the dummy Empty node
8045    --  and in some other situations to indicate an uninitialized value.
8046
8047    --  N_Empty
8048    --  Chars (Name1) is set to No_Name
8049
8050    -----------
8051    -- Error --
8052    -----------
8053
8054    --  Used as the contents of the Nkind field of the dummy Error node.
8055    --  Has an Etype field, which gets set to Any_Type later on, to help
8056    --  error recovery (Error_Posted is also set in the Error node).
8057
8058    --  N_Error
8059    --  Chars (Name1) is set to Error_Name
8060    --  Etype (Node5-Sem)
8061
8062    --------------------------
8063    -- Node Type Definition --
8064    --------------------------
8065
8066    --  The following is the definition of the Node_Kind type. As previously
8067    --  discussed, this is separated off to allow rearrangement of the order to
8068    --  facilitate definition of subtype ranges. The comments show the subtype
8069    --  classes which apply to each set of node kinds. The first entry in the
8070    --  comment characterizes the following list of nodes.
8071
8072    type Node_Kind is (
8073       N_Unused_At_Start,
8074
8075       --  N_Representation_Clause
8076
8077       N_At_Clause,
8078       N_Component_Clause,
8079       N_Enumeration_Representation_Clause,
8080       N_Mod_Clause,
8081       N_Record_Representation_Clause,
8082
8083       --  N_Representation_Clause, N_Has_Chars
8084
8085       N_Attribute_Definition_Clause,
8086
8087       --  N_Has_Chars
8088
8089       N_Empty,
8090       N_Pragma_Argument_Association,
8091
8092       --  N_Has_Etype, N_Has_Chars
8093
8094       --  Note: of course N_Error does not really have Etype or Chars fields,
8095       --  and any attempt to access these fields in N_Error will cause an
8096       --  error, but historically this always has been positioned so that an
8097       --  "in N_Has_Chars" or "in N_Has_Etype" test yields true for N_Error.
8098       --  Most likely this makes coding easier somewhere but still seems
8099       --  undesirable. To be investigated some time ???
8100
8101       N_Error,
8102
8103       --  N_Entity, N_Has_Etype, N_Has_Chars
8104
8105       N_Defining_Character_Literal,
8106       N_Defining_Identifier,
8107       N_Defining_Operator_Symbol,
8108
8109       --  N_Subexpr, N_Has_Etype, N_Has_Chars, N_Has_Entity
8110
8111       N_Expanded_Name,
8112
8113       --  N_Direct_Name, N_Subexpr, N_Has_Etype,
8114       --  N_Has_Chars, N_Has_Entity
8115
8116       N_Identifier,
8117       N_Operator_Symbol,
8118
8119       --  N_Direct_Name, N_Subexpr, N_Has_Etype,
8120       --  N_Has_Chars, N_Has_Entity
8121
8122       N_Character_Literal,
8123
8124       --  N_Binary_Op, N_Op, N_Subexpr,
8125       --  N_Has_Etype, N_Has_Chars, N_Has_Entity
8126
8127       N_Op_Add,
8128       N_Op_Concat,
8129       N_Op_Expon,
8130       N_Op_Subtract,
8131
8132       --  N_Binary_Op, N_Op, N_Subexpr, N_Has_Treat_Fixed_As_Integer
8133       --  N_Has_Etype, N_Has_Chars, N_Has_Entity, N_Multiplying_Operator
8134
8135       N_Op_Divide,
8136       N_Op_Mod,
8137       N_Op_Multiply,
8138       N_Op_Rem,
8139
8140       --  N_Binary_Op, N_Op, N_Subexpr, N_Has_Etype
8141       --  N_Has_Entity, N_Has_Chars, N_Op_Boolean
8142
8143       N_Op_And,
8144
8145       --  N_Binary_Op, N_Op, N_Subexpr, N_Has_Etype
8146       --  N_Has_Entity, N_Has_Chars, N_Op_Boolean, N_Op_Compare
8147
8148       N_Op_Eq,
8149       N_Op_Ge,
8150       N_Op_Gt,
8151       N_Op_Le,
8152       N_Op_Lt,
8153       N_Op_Ne,
8154
8155       --  N_Binary_Op, N_Op, N_Subexpr, N_Has_Etype
8156       --  N_Has_Entity, N_Has_Chars, N_Op_Boolean
8157
8158       N_Op_Or,
8159       N_Op_Xor,
8160
8161       --  N_Binary_Op, N_Op, N_Subexpr, N_Has_Etype,
8162       --  N_Op_Shift, N_Has_Chars, N_Has_Entity
8163
8164       N_Op_Rotate_Left,
8165       N_Op_Rotate_Right,
8166       N_Op_Shift_Left,
8167       N_Op_Shift_Right,
8168       N_Op_Shift_Right_Arithmetic,
8169
8170       --  N_Unary_Op, N_Op, N_Subexpr, N_Has_Etype,
8171       --  N_Has_Chars, N_Has_Entity
8172
8173       N_Op_Abs,
8174       N_Op_Minus,
8175       N_Op_Not,
8176       N_Op_Plus,
8177
8178       --  N_Subexpr, N_Has_Etype, N_Has_Entity
8179
8180       N_Attribute_Reference,
8181
8182       --  N_Subexpr, N_Has_Etype, N_Membership_Test
8183
8184       N_In,
8185       N_Not_In,
8186
8187       --  N_Subexpr, N_Has_Etype, N_Short_Circuit
8188
8189       N_And_Then,
8190       N_Or_Else,
8191
8192       --  N_Subexpr, N_Has_Etype, N_Subprogram_Call
8193
8194       N_Function_Call,
8195       N_Procedure_Call_Statement,
8196
8197       --  N_Subexpr, N_Has_Etype, N_Raise_xxx_Error
8198
8199       N_Raise_Constraint_Error,
8200       N_Raise_Program_Error,
8201       N_Raise_Storage_Error,
8202
8203       --  N_Subexpr, N_Has_Etype, N_Numeric_Or_String_Literal
8204
8205       N_Integer_Literal,
8206       N_Real_Literal,
8207       N_String_Literal,
8208
8209       --  N_Subexpr, N_Has_Etype
8210
8211       N_Explicit_Dereference,
8212       N_Expression_With_Actions,
8213       N_If_Expression,
8214       N_Indexed_Component,
8215       N_Null,
8216       N_Qualified_Expression,
8217       N_Quantified_Expression,
8218       N_Aggregate,
8219       N_Allocator,
8220       N_Case_Expression,
8221       N_Extension_Aggregate,
8222       N_Raise_Expression,
8223       N_Range,
8224       N_Reference,
8225       N_Selected_Component,
8226       N_Slice,
8227       N_Type_Conversion,
8228       N_Unchecked_Expression,
8229       N_Unchecked_Type_Conversion,
8230
8231       --  N_Has_Etype
8232
8233       N_Subtype_Indication,
8234
8235       --  N_Declaration
8236
8237       N_Component_Declaration,
8238       N_Entry_Declaration,
8239       N_Expression_Function,
8240       N_Formal_Object_Declaration,
8241       N_Formal_Type_Declaration,
8242       N_Full_Type_Declaration,
8243       N_Incomplete_Type_Declaration,
8244       N_Iterator_Specification,
8245       N_Loop_Parameter_Specification,
8246       N_Object_Declaration,
8247       N_Protected_Type_Declaration,
8248       N_Private_Extension_Declaration,
8249       N_Private_Type_Declaration,
8250       N_Subtype_Declaration,
8251
8252       --  N_Subprogram_Specification, N_Declaration
8253
8254       N_Function_Specification,
8255       N_Procedure_Specification,
8256
8257       --  N_Access_To_Subprogram_Definition
8258
8259       N_Access_Function_Definition,
8260       N_Access_Procedure_Definition,
8261
8262       --  N_Later_Decl_Item
8263
8264       N_Task_Type_Declaration,
8265
8266       --  N_Body_Stub, N_Later_Decl_Item
8267
8268       N_Package_Body_Stub,
8269       N_Protected_Body_Stub,
8270       N_Subprogram_Body_Stub,
8271       N_Task_Body_Stub,
8272
8273       --  N_Generic_Instantiation, N_Later_Decl_Item
8274       --  N_Subprogram_Instantiation
8275
8276       N_Function_Instantiation,
8277       N_Procedure_Instantiation,
8278
8279       --  N_Generic_Instantiation, N_Later_Decl_Item
8280
8281       N_Package_Instantiation,
8282
8283       --  N_Unit_Body, N_Later_Decl_Item, N_Proper_Body
8284
8285       N_Package_Body,
8286       N_Subprogram_Body,
8287
8288       --  N_Later_Decl_Item, N_Proper_Body
8289
8290       N_Protected_Body,
8291       N_Task_Body,
8292
8293       --  N_Later_Decl_Item
8294
8295       N_Implicit_Label_Declaration,
8296       N_Package_Declaration,
8297       N_Single_Task_Declaration,
8298       N_Subprogram_Declaration,
8299       N_Use_Package_Clause,
8300
8301       --  N_Generic_Declaration, N_Later_Decl_Item
8302
8303       N_Generic_Package_Declaration,
8304       N_Generic_Subprogram_Declaration,
8305
8306       --  N_Array_Type_Definition
8307
8308       N_Constrained_Array_Definition,
8309       N_Unconstrained_Array_Definition,
8310
8311       --  N_Renaming_Declaration
8312
8313       N_Exception_Renaming_Declaration,
8314       N_Object_Renaming_Declaration,
8315       N_Package_Renaming_Declaration,
8316       N_Subprogram_Renaming_Declaration,
8317
8318       --  N_Generic_Renaming_Declaration, N_Renaming_Declaration
8319
8320       N_Generic_Function_Renaming_Declaration,
8321       N_Generic_Package_Renaming_Declaration,
8322       N_Generic_Procedure_Renaming_Declaration,
8323
8324       --  N_Statement_Other_Than_Procedure_Call
8325
8326       N_Abort_Statement,
8327       N_Accept_Statement,
8328       N_Assignment_Statement,
8329       N_Asynchronous_Select,
8330       N_Block_Statement,
8331       N_Case_Statement,
8332       N_Code_Statement,
8333       N_Compound_Statement,
8334       N_Conditional_Entry_Call,
8335
8336       --  N_Statement_Other_Than_Procedure_Call, N_Delay_Statement
8337
8338       N_Delay_Relative_Statement,
8339       N_Delay_Until_Statement,
8340
8341       --  N_Statement_Other_Than_Procedure_Call
8342
8343       N_Entry_Call_Statement,
8344       N_Free_Statement,
8345       N_Goto_Statement,
8346       N_Loop_Statement,
8347       N_Null_Statement,
8348       N_Raise_Statement,
8349       N_Requeue_Statement,
8350       N_Simple_Return_Statement,
8351       N_Extended_Return_Statement,
8352       N_Selective_Accept,
8353       N_Timed_Entry_Call,
8354
8355       --  N_Statement_Other_Than_Procedure_Call, N_Has_Condition
8356
8357       N_Exit_Statement,
8358       N_If_Statement,
8359
8360       --  N_Has_Condition
8361
8362       N_Accept_Alternative,
8363       N_Delay_Alternative,
8364       N_Elsif_Part,
8365       N_Entry_Body_Formal_Part,
8366       N_Iteration_Scheme,
8367       N_Terminate_Alternative,
8368
8369       --  N_Formal_Subprogram_Declaration
8370
8371       N_Formal_Abstract_Subprogram_Declaration,
8372       N_Formal_Concrete_Subprogram_Declaration,
8373
8374       --  N_Push_xxx_Label, N_Push_Pop_xxx_Label
8375
8376       N_Push_Constraint_Error_Label,
8377       N_Push_Program_Error_Label,
8378       N_Push_Storage_Error_Label,
8379
8380       --  N_Pop_xxx_Label, N_Push_Pop_xxx_Label
8381
8382       N_Pop_Constraint_Error_Label,
8383       N_Pop_Program_Error_Label,
8384       N_Pop_Storage_Error_Label,
8385
8386       --  SCIL nodes
8387
8388       N_SCIL_Dispatch_Table_Tag_Init,
8389       N_SCIL_Dispatching_Call,
8390       N_SCIL_Membership_Test,
8391
8392       --  Other nodes (not part of any subtype class)
8393
8394       N_Abortable_Part,
8395       N_Abstract_Subprogram_Declaration,
8396       N_Access_Definition,
8397       N_Access_To_Object_Definition,
8398       N_Aspect_Specification,
8399       N_Case_Expression_Alternative,
8400       N_Case_Statement_Alternative,
8401       N_Compilation_Unit,
8402       N_Compilation_Unit_Aux,
8403       N_Component_Association,
8404       N_Component_Definition,
8405       N_Component_List,
8406       N_Contract,
8407       N_Derived_Type_Definition,
8408       N_Decimal_Fixed_Point_Definition,
8409       N_Defining_Program_Unit_Name,
8410       N_Delta_Constraint,
8411       N_Designator,
8412       N_Digits_Constraint,
8413       N_Discriminant_Association,
8414       N_Discriminant_Specification,
8415       N_Enumeration_Type_Definition,
8416       N_Entry_Body,
8417       N_Entry_Call_Alternative,
8418       N_Entry_Index_Specification,
8419       N_Exception_Declaration,
8420       N_Exception_Handler,
8421       N_Floating_Point_Definition,
8422       N_Formal_Decimal_Fixed_Point_Definition,
8423       N_Formal_Derived_Type_Definition,
8424       N_Formal_Discrete_Type_Definition,
8425       N_Formal_Floating_Point_Definition,
8426       N_Formal_Modular_Type_Definition,
8427       N_Formal_Ordinary_Fixed_Point_Definition,
8428       N_Formal_Package_Declaration,
8429       N_Formal_Private_Type_Definition,
8430       N_Formal_Incomplete_Type_Definition,
8431       N_Formal_Signed_Integer_Type_Definition,
8432       N_Freeze_Entity,
8433       N_Freeze_Generic_Entity,
8434       N_Generic_Association,
8435       N_Handled_Sequence_Of_Statements,
8436       N_Index_Or_Discriminant_Constraint,
8437       N_Itype_Reference,
8438       N_Label,
8439       N_Modular_Type_Definition,
8440       N_Number_Declaration,
8441       N_Ordinary_Fixed_Point_Definition,
8442       N_Others_Choice,
8443       N_Package_Specification,
8444       N_Parameter_Association,
8445       N_Parameter_Specification,
8446       N_Pragma,
8447       N_Protected_Definition,
8448       N_Range_Constraint,
8449       N_Real_Range_Specification,
8450       N_Record_Definition,
8451       N_Signed_Integer_Type_Definition,
8452       N_Single_Protected_Declaration,
8453       N_Subunit,
8454       N_Task_Definition,
8455       N_Triggering_Alternative,
8456       N_Use_Type_Clause,
8457       N_Validate_Unchecked_Conversion,
8458       N_Variant,
8459       N_Variant_Part,
8460       N_With_Clause,
8461       N_Unused_At_End);
8462
8463    for Node_Kind'Size use 8;
8464    --  The data structures in Atree assume this
8465
8466    ----------------------------
8467    -- Node Class Definitions --
8468    ----------------------------
8469
8470    subtype N_Access_To_Subprogram_Definition is Node_Kind range
8471      N_Access_Function_Definition ..
8472      N_Access_Procedure_Definition;
8473
8474    subtype N_Array_Type_Definition is Node_Kind range
8475      N_Constrained_Array_Definition ..
8476      N_Unconstrained_Array_Definition;
8477
8478    subtype N_Binary_Op is Node_Kind range
8479      N_Op_Add ..
8480      N_Op_Shift_Right_Arithmetic;
8481
8482    subtype N_Body_Stub is Node_Kind range
8483      N_Package_Body_Stub ..
8484      N_Task_Body_Stub;
8485
8486    subtype N_Declaration is Node_Kind range
8487      N_Component_Declaration ..
8488      N_Procedure_Specification;
8489    --  Note: this includes all constructs normally thought of as declarations
8490    --  except those which are separately grouped as later declarations.
8491
8492    subtype N_Delay_Statement is Node_Kind range
8493       N_Delay_Relative_Statement ..
8494       N_Delay_Until_Statement;
8495
8496    subtype N_Direct_Name is Node_Kind range
8497      N_Identifier ..
8498      N_Character_Literal;
8499
8500    subtype N_Entity is Node_Kind range
8501      N_Defining_Character_Literal ..
8502      N_Defining_Operator_Symbol;
8503
8504    subtype N_Formal_Subprogram_Declaration is Node_Kind range
8505      N_Formal_Abstract_Subprogram_Declaration ..
8506      N_Formal_Concrete_Subprogram_Declaration;
8507
8508    subtype N_Generic_Declaration is Node_Kind range
8509      N_Generic_Package_Declaration ..
8510      N_Generic_Subprogram_Declaration;
8511
8512    subtype N_Generic_Instantiation is Node_Kind range
8513      N_Function_Instantiation ..
8514      N_Package_Instantiation;
8515
8516    subtype N_Generic_Renaming_Declaration is Node_Kind range
8517      N_Generic_Function_Renaming_Declaration ..
8518      N_Generic_Procedure_Renaming_Declaration;
8519
8520    subtype N_Has_Chars is Node_Kind range
8521      N_Attribute_Definition_Clause ..
8522      N_Op_Plus;
8523
8524    subtype N_Has_Entity is Node_Kind range
8525      N_Expanded_Name ..
8526      N_Attribute_Reference;
8527    --  Nodes that have Entity fields
8528    --  Warning: DOES NOT INCLUDE N_Freeze_Entity, N_Freeze_Generic_Entity,
8529    --  N_Aspect_Specification, or N_Attribute_Definition_Clause.
8530
8531    subtype N_Has_Etype is Node_Kind range
8532      N_Error ..
8533      N_Subtype_Indication;
8534
8535    subtype N_Has_Treat_Fixed_As_Integer is Node_Kind range
8536       N_Op_Divide ..
8537       N_Op_Rem;
8538
8539    subtype N_Multiplying_Operator is Node_Kind range
8540       N_Op_Divide ..
8541       N_Op_Rem;
8542
8543    subtype N_Later_Decl_Item is Node_Kind range
8544      N_Task_Type_Declaration ..
8545      N_Generic_Subprogram_Declaration;
8546    --  Note: this is Ada 83 relevant only (see Ada 83 RM 3.9 (2)) and includes
8547    --  only those items which can appear as later declarative items. This also
8548    --  includes N_Implicit_Label_Declaration which is not specifically in the
8549    --  grammar but may appear as a valid later declarative items. It does NOT
8550    --  include N_Pragma which can also appear among later declarative items.
8551    --  It does however include N_Protected_Body, which is a bit peculiar, but
8552    --  harmless since this cannot appear in Ada 83 mode anyway.
8553
8554    subtype N_Membership_Test is Node_Kind range
8555       N_In ..
8556       N_Not_In;
8557
8558    subtype N_Numeric_Or_String_Literal is Node_Kind range
8559       N_Integer_Literal ..
8560       N_String_Literal;
8561
8562    subtype N_Op is Node_Kind range
8563      N_Op_Add ..
8564      N_Op_Plus;
8565
8566    subtype N_Op_Boolean is Node_Kind range
8567      N_Op_And ..
8568      N_Op_Xor;
8569    --  Binary operators which take operands of a boolean type, and yield
8570    --  a result of a boolean type.
8571
8572    subtype N_Op_Compare is Node_Kind range
8573      N_Op_Eq ..
8574      N_Op_Ne;
8575
8576    subtype N_Op_Shift is Node_Kind range
8577      N_Op_Rotate_Left ..
8578      N_Op_Shift_Right_Arithmetic;
8579
8580    subtype N_Proper_Body is Node_Kind range
8581      N_Package_Body ..
8582      N_Task_Body;
8583
8584    subtype N_Push_xxx_Label is Node_Kind range
8585      N_Push_Constraint_Error_Label ..
8586      N_Push_Storage_Error_Label;
8587
8588    subtype N_Pop_xxx_Label is Node_Kind range
8589      N_Pop_Constraint_Error_Label ..
8590      N_Pop_Storage_Error_Label;
8591
8592    subtype N_Push_Pop_xxx_Label is Node_Kind range
8593      N_Push_Constraint_Error_Label ..
8594      N_Pop_Storage_Error_Label;
8595
8596    subtype N_Raise_xxx_Error is Node_Kind range
8597      N_Raise_Constraint_Error ..
8598      N_Raise_Storage_Error;
8599
8600    subtype N_Renaming_Declaration is Node_Kind range
8601      N_Exception_Renaming_Declaration ..
8602      N_Generic_Procedure_Renaming_Declaration;
8603
8604    subtype N_Representation_Clause is Node_Kind range
8605      N_At_Clause ..
8606      N_Attribute_Definition_Clause;
8607
8608    subtype N_Short_Circuit is Node_Kind range
8609      N_And_Then ..
8610      N_Or_Else;
8611
8612    subtype N_SCIL_Node is Node_Kind range
8613      N_SCIL_Dispatch_Table_Tag_Init ..
8614      N_SCIL_Membership_Test;
8615
8616    subtype N_Statement_Other_Than_Procedure_Call is Node_Kind range
8617      N_Abort_Statement ..
8618      N_If_Statement;
8619    --  Note that this includes all statement types except for the cases of the
8620    --  N_Procedure_Call_Statement which is considered to be a subexpression
8621    --  (since overloading is possible, so it needs to go through the normal
8622    --  overloading resolution for expressions).
8623
8624    subtype N_Subprogram_Call is Node_Kind range
8625       N_Function_Call ..
8626       N_Procedure_Call_Statement;
8627
8628    subtype N_Subprogram_Instantiation is Node_Kind range
8629      N_Function_Instantiation ..
8630      N_Procedure_Instantiation;
8631
8632    subtype N_Has_Condition is Node_Kind range
8633      N_Exit_Statement ..
8634      N_Terminate_Alternative;
8635    --  Nodes with condition fields (does not include N_Raise_xxx_Error)
8636
8637    subtype N_Subexpr is Node_Kind range
8638      N_Expanded_Name ..
8639      N_Unchecked_Type_Conversion;
8640    --  Nodes with expression fields
8641
8642    subtype N_Subprogram_Specification is Node_Kind range
8643      N_Function_Specification ..
8644      N_Procedure_Specification;
8645
8646    subtype N_Unary_Op is Node_Kind range
8647      N_Op_Abs ..
8648      N_Op_Plus;
8649
8650    subtype N_Unit_Body is Node_Kind range
8651      N_Package_Body ..
8652        N_Subprogram_Body;
8653
8654    ---------------------------
8655    -- Node Access Functions --
8656    ---------------------------
8657
8658    --  The following functions return the contents of the indicated field of
8659    --  the node referenced by the argument, which is a Node_Id. They provide
8660    --  logical access to fields in the node which could be accessed using the
8661    --  Atree.Unchecked_Access package, but the idea is always to use these
8662    --  higher level routines which preserve strong typing. In debug mode,
8663    --  these routines check that they are being applied to an appropriate
8664    --  node, as well as checking that the node is in range.
8665
8666    function ABE_Is_Certain
8667      (N : Node_Id) return Boolean;    -- Flag18
8668
8669    function Abort_Present
8670      (N : Node_Id) return Boolean;    -- Flag15
8671
8672    function Abortable_Part
8673      (N : Node_Id) return Node_Id;    -- Node2
8674
8675    function Abstract_Present
8676      (N : Node_Id) return Boolean;    -- Flag4
8677
8678    function Accept_Handler_Records
8679      (N : Node_Id) return List_Id;    -- List5
8680
8681    function Accept_Statement
8682      (N : Node_Id) return Node_Id;    -- Node2
8683
8684    function Access_Definition
8685      (N : Node_Id) return Node_Id;    -- Node3
8686
8687    function Access_To_Subprogram_Definition
8688      (N : Node_Id) return Node_Id;    -- Node3
8689
8690    function Access_Types_To_Process
8691      (N : Node_Id) return Elist_Id;   -- Elist2
8692
8693    function Actions
8694      (N : Node_Id) return List_Id;    -- List1
8695
8696    function Activation_Chain_Entity
8697      (N : Node_Id) return Node_Id;    -- Node3
8698
8699    function Acts_As_Spec
8700      (N : Node_Id) return Boolean;    -- Flag4
8701
8702    function Actual_Designated_Subtype
8703      (N : Node_Id) return Node_Id;    -- Node4
8704
8705    function Address_Warning_Posted
8706      (N : Node_Id) return Boolean;    -- Flag18
8707
8708    function Aggregate_Bounds
8709      (N : Node_Id) return Node_Id;    -- Node3
8710
8711    function Aliased_Present
8712      (N : Node_Id) return Boolean;    -- Flag4
8713
8714    function All_Others
8715      (N : Node_Id) return Boolean;    -- Flag11
8716
8717    function All_Present
8718      (N : Node_Id) return Boolean;    -- Flag15
8719
8720    function Alternatives
8721      (N : Node_Id) return List_Id;    -- List4
8722
8723    function Ancestor_Part
8724      (N : Node_Id) return Node_Id;    -- Node3
8725
8726    function Atomic_Sync_Required
8727      (N : Node_Id) return Boolean;    -- Flag14
8728
8729    function Array_Aggregate
8730      (N : Node_Id) return Node_Id;    -- Node3
8731
8732    function Aspect_Rep_Item
8733      (N : Node_Id) return Node_Id;    -- Node2
8734
8735    function Assignment_OK
8736      (N : Node_Id) return Boolean;    -- Flag15
8737
8738    function Associated_Node
8739      (N : Node_Id) return Node_Id;    -- Node4
8740
8741    function At_End_Proc
8742      (N : Node_Id) return Node_Id;    -- Node1
8743
8744    function Attribute_Name
8745      (N : Node_Id) return Name_Id;    -- Name2
8746
8747    function Aux_Decls_Node
8748      (N : Node_Id) return Node_Id;    -- Node5
8749
8750    function Backwards_OK
8751      (N : Node_Id) return Boolean;    -- Flag6
8752
8753    function Bad_Is_Detected
8754      (N : Node_Id) return Boolean;    -- Flag15
8755
8756    function By_Ref
8757      (N : Node_Id) return Boolean;    -- Flag5
8758
8759    function Body_Required
8760      (N : Node_Id) return Boolean;    -- Flag13
8761
8762    function Body_To_Inline
8763      (N : Node_Id) return Node_Id;    -- Node3
8764
8765    function Box_Present
8766      (N : Node_Id) return Boolean;    -- Flag15
8767
8768    function Char_Literal_Value
8769      (N : Node_Id) return Uint;       -- Uint2
8770
8771    function Chars
8772      (N : Node_Id) return Name_Id;    -- Name1
8773
8774    function Check_Address_Alignment
8775      (N : Node_Id) return Boolean;    -- Flag11
8776
8777    function Choice_Parameter
8778      (N : Node_Id) return Node_Id;    -- Node2
8779
8780    function Choices
8781      (N : Node_Id) return List_Id;    -- List1
8782
8783    function Class_Present
8784      (N : Node_Id) return Boolean;    -- Flag6
8785
8786    function Classifications
8787      (N : Node_Id) return Node_Id;    -- Node3
8788
8789    function Cleanup_Actions
8790      (N : Node_Id) return List_Id;    -- List5
8791
8792    function Comes_From_Extended_Return_Statement
8793      (N : Node_Id) return Boolean;    -- Flag18
8794
8795    function Compile_Time_Known_Aggregate
8796      (N : Node_Id) return Boolean;    -- Flag18
8797
8798    function Component_Associations
8799      (N : Node_Id) return List_Id;    -- List2
8800
8801    function Component_Clauses
8802      (N : Node_Id) return List_Id;    -- List3
8803
8804    function Component_Definition
8805      (N : Node_Id) return Node_Id;    -- Node4
8806
8807    function Component_Items
8808      (N : Node_Id) return List_Id;    -- List3
8809
8810    function Component_List
8811      (N : Node_Id) return Node_Id;    -- Node1
8812
8813    function Component_Name
8814      (N : Node_Id) return Node_Id;    -- Node1
8815
8816    function Componentwise_Assignment
8817      (N : Node_Id) return Boolean;    -- Flag14
8818
8819    function Condition
8820      (N : Node_Id) return Node_Id;    -- Node1
8821
8822    function Condition_Actions
8823      (N : Node_Id) return List_Id;    -- List3
8824
8825    function Config_Pragmas
8826      (N : Node_Id) return List_Id;    -- List4
8827
8828    function Constant_Present
8829      (N : Node_Id) return Boolean;    -- Flag17
8830
8831    function Constraint
8832      (N : Node_Id) return Node_Id;    -- Node3
8833
8834    function Constraints
8835      (N : Node_Id) return List_Id;    -- List1
8836
8837    function Context_Installed
8838      (N : Node_Id) return Boolean;    -- Flag13
8839
8840    function Context_Pending
8841      (N : Node_Id) return Boolean;    -- Flag16
8842
8843    function Context_Items
8844      (N : Node_Id) return List_Id;    -- List1
8845
8846    function Contract_Test_Cases
8847      (N : Node_Id) return Node_Id;    -- Node2
8848
8849    function Controlling_Argument
8850      (N : Node_Id) return Node_Id;    -- Node1
8851
8852    function Conversion_OK
8853      (N : Node_Id) return Boolean;    -- Flag14
8854
8855    function Convert_To_Return_False
8856      (N : Node_Id) return Boolean;    -- Flag13
8857
8858    function Corresponding_Aspect
8859      (N : Node_Id) return Node_Id;    -- Node3
8860
8861    function Corresponding_Body
8862      (N : Node_Id) return Node_Id;    -- Node5
8863
8864    function Corresponding_Formal_Spec
8865      (N : Node_Id) return Node_Id;    -- Node3
8866
8867    function Corresponding_Generic_Association
8868      (N : Node_Id) return Node_Id;    -- Node5
8869
8870    function Corresponding_Integer_Value
8871      (N : Node_Id) return Uint;       -- Uint4
8872
8873    function Corresponding_Spec
8874      (N : Node_Id) return Node_Id;    -- Node5
8875
8876    function Corresponding_Spec_Of_Stub
8877      (N : Node_Id) return Node_Id;    -- Node2
8878
8879    function Corresponding_Stub
8880      (N : Node_Id) return Node_Id;    -- Node3
8881
8882    function Dcheck_Function
8883      (N : Node_Id) return Entity_Id;  -- Node5
8884
8885    function Declarations
8886      (N : Node_Id) return List_Id;    -- List2
8887
8888    function Default_Expression
8889      (N : Node_Id) return Node_Id;    -- Node5
8890
8891    function Default_Storage_Pool
8892      (N : Node_Id) return Node_Id;    -- Node3
8893
8894    function Default_Name
8895      (N : Node_Id) return Node_Id;    -- Node2
8896
8897    function Defining_Identifier
8898      (N : Node_Id) return Entity_Id;  -- Node1
8899
8900    function Defining_Unit_Name
8901      (N : Node_Id) return Node_Id;    -- Node1
8902
8903    function Delay_Alternative
8904      (N : Node_Id) return Node_Id;    -- Node4
8905
8906    function Delay_Statement
8907      (N : Node_Id) return Node_Id;    -- Node2
8908
8909    function Delta_Expression
8910      (N : Node_Id) return Node_Id;    -- Node3
8911
8912    function Digits_Expression
8913      (N : Node_Id) return Node_Id;    -- Node2
8914
8915    function Discr_Check_Funcs_Built
8916      (N : Node_Id) return Boolean;    -- Flag11
8917
8918    function Discrete_Choices
8919      (N : Node_Id) return List_Id;    -- List4
8920
8921    function Discrete_Range
8922      (N : Node_Id) return Node_Id;    -- Node4
8923
8924    function Discrete_Subtype_Definition
8925      (N : Node_Id) return Node_Id;    -- Node4
8926
8927    function Discrete_Subtype_Definitions
8928      (N : Node_Id) return List_Id;    -- List2
8929
8930    function Discriminant_Specifications
8931      (N : Node_Id) return List_Id;    -- List4
8932
8933    function Discriminant_Type
8934      (N : Node_Id) return Node_Id;    -- Node5
8935
8936    function Do_Accessibility_Check
8937      (N : Node_Id) return Boolean;    -- Flag13
8938
8939    function Do_Discriminant_Check
8940      (N : Node_Id) return Boolean;    -- Flag1
8941
8942    function Do_Division_Check
8943      (N : Node_Id) return Boolean;    -- Flag13
8944
8945    function Do_Length_Check
8946      (N : Node_Id) return Boolean;    -- Flag4
8947
8948    function Do_Overflow_Check
8949      (N : Node_Id) return Boolean;    -- Flag17
8950
8951    function Do_Range_Check
8952      (N : Node_Id) return Boolean;    -- Flag9
8953
8954    function Do_Storage_Check
8955      (N : Node_Id) return Boolean;    -- Flag17
8956
8957    function Do_Tag_Check
8958      (N : Node_Id) return Boolean;    -- Flag13
8959
8960    function Elaborate_All_Desirable
8961      (N : Node_Id) return Boolean;    -- Flag9
8962
8963    function Elaborate_All_Present
8964      (N : Node_Id) return Boolean;    -- Flag14
8965
8966    function Elaborate_Desirable
8967      (N : Node_Id) return Boolean;    -- Flag11
8968
8969    function Elaborate_Present
8970      (N : Node_Id) return Boolean;    -- Flag4
8971
8972    function Elaboration_Boolean
8973      (N : Node_Id) return Node_Id;    -- Node2
8974
8975    function Else_Actions
8976      (N : Node_Id) return List_Id;    -- List3
8977
8978    function Else_Statements
8979      (N : Node_Id) return List_Id;    -- List4
8980
8981    function Elsif_Parts
8982      (N : Node_Id) return List_Id;    -- List3
8983
8984    function Enclosing_Variant
8985      (N : Node_Id) return Node_Id;    -- Node2
8986
8987    function End_Label
8988      (N : Node_Id) return Node_Id;    -- Node4
8989
8990    function End_Span
8991      (N : Node_Id) return Uint;       -- Uint5
8992
8993    function Entity
8994      (N : Node_Id) return Node_Id;    -- Node4
8995
8996    function Entity_Or_Associated_Node
8997      (N : Node_Id) return Node_Id;    -- Node4
8998
8999    function Entry_Body_Formal_Part
9000      (N : Node_Id) return Node_Id;    -- Node5
9001
9002    function Entry_Call_Alternative
9003      (N : Node_Id) return Node_Id;    -- Node1
9004
9005    function Entry_Call_Statement
9006      (N : Node_Id) return Node_Id;    -- Node1
9007
9008    function Entry_Direct_Name
9009      (N : Node_Id) return Node_Id;    -- Node1
9010
9011    function Entry_Index
9012      (N : Node_Id) return Node_Id;    -- Node5
9013
9014    function Entry_Index_Specification
9015      (N : Node_Id) return Node_Id;    -- Node4
9016
9017    function Etype
9018      (N : Node_Id) return Node_Id;    -- Node5
9019
9020    function Exception_Choices
9021      (N : Node_Id) return List_Id;    -- List4
9022
9023    function Exception_Handlers
9024      (N : Node_Id) return List_Id;    -- List5
9025
9026    function Exception_Junk
9027      (N : Node_Id) return Boolean;    -- Flag8
9028
9029    function Exception_Label
9030      (N : Node_Id) return Node_Id;    -- Node5
9031
9032    function Explicit_Actual_Parameter
9033      (N : Node_Id) return Node_Id;    -- Node3
9034
9035    function Expansion_Delayed
9036      (N : Node_Id) return Boolean;    -- Flag11
9037
9038    function Explicit_Generic_Actual_Parameter
9039      (N : Node_Id) return Node_Id;    -- Node1
9040
9041    function Expression
9042      (N : Node_Id) return Node_Id;    -- Node3
9043
9044    function Expressions
9045      (N : Node_Id) return List_Id;    -- List1
9046
9047    function First_Bit
9048      (N : Node_Id) return Node_Id;    -- Node3
9049
9050    function First_Inlined_Subprogram
9051      (N : Node_Id) return Entity_Id;  -- Node3
9052
9053    function First_Name
9054      (N : Node_Id) return Boolean;    -- Flag5
9055
9056    function First_Named_Actual
9057      (N : Node_Id) return Node_Id;    -- Node4
9058
9059    function First_Real_Statement
9060      (N : Node_Id) return Node_Id;    -- Node2
9061
9062    function First_Subtype_Link
9063      (N : Node_Id) return Entity_Id;  -- Node5
9064
9065    function Float_Truncate
9066      (N : Node_Id) return Boolean;    -- Flag11
9067
9068    function Formal_Type_Definition
9069      (N : Node_Id) return Node_Id;    -- Node3
9070
9071    function Forwards_OK
9072      (N : Node_Id) return Boolean;    -- Flag5
9073
9074    function From_Aspect_Specification
9075      (N : Node_Id) return Boolean;    -- Flag13
9076
9077    function From_At_End
9078      (N : Node_Id) return Boolean;    -- Flag4
9079
9080    function From_At_Mod
9081      (N : Node_Id) return Boolean;    -- Flag4
9082
9083    function From_Conditional_Expression
9084      (N : Node_Id) return Boolean;    -- Flag1
9085
9086    function From_Default
9087      (N : Node_Id) return Boolean;    -- Flag6
9088
9089    function Generalized_Indexing
9090      (N : Node_Id) return Node_Id;    -- Node4
9091    function Generic_Associations
9092      (N : Node_Id) return List_Id;    -- List3
9093
9094    function Generic_Formal_Declarations
9095      (N : Node_Id) return List_Id;    -- List2
9096
9097    function Generic_Parent
9098      (N : Node_Id) return Node_Id;    -- Node5
9099
9100    function Generic_Parent_Type
9101      (N : Node_Id) return Node_Id;    -- Node4
9102
9103    function Handled_Statement_Sequence
9104      (N : Node_Id) return Node_Id;    -- Node4
9105
9106    function Handler_List_Entry
9107      (N : Node_Id) return Node_Id;    -- Node2
9108
9109    function Has_Created_Identifier
9110      (N : Node_Id) return Boolean;    -- Flag15
9111
9112    function Has_Dereference_Action
9113      (N : Node_Id) return Boolean;    -- Flag13
9114
9115    function Has_Dynamic_Length_Check
9116      (N : Node_Id) return Boolean;    -- Flag10
9117
9118    function Has_Dynamic_Range_Check
9119      (N : Node_Id) return Boolean;    -- Flag12
9120
9121    function Has_Init_Expression
9122      (N : Node_Id) return Boolean;    -- Flag14
9123
9124    function Has_Local_Raise
9125      (N : Node_Id) return Boolean;    -- Flag8
9126
9127    function Has_No_Elaboration_Code
9128      (N : Node_Id) return Boolean;    -- Flag17
9129
9130    function Has_Pragma_Suppress_All
9131      (N : Node_Id) return Boolean;    -- Flag14
9132
9133    function Has_Private_View
9134      (N : Node_Id) return Boolean;    -- Flag11
9135
9136    function Has_Relative_Deadline_Pragma
9137      (N : Node_Id) return Boolean;    -- Flag9
9138
9139    function Has_Self_Reference
9140      (N : Node_Id) return Boolean;    -- Flag13
9141
9142    function Has_SP_Choice
9143      (N : Node_Id) return Boolean;    -- Flag15
9144
9145    function Has_Storage_Size_Pragma
9146      (N : Node_Id) return Boolean;    -- Flag5
9147
9148    function Has_Wide_Character
9149      (N : Node_Id) return Boolean;    -- Flag11
9150
9151    function Has_Wide_Wide_Character
9152      (N : Node_Id) return Boolean;    -- Flag13
9153
9154    function Header_Size_Added
9155      (N : Node_Id) return Boolean;    -- Flag11
9156
9157    function Hidden_By_Use_Clause
9158      (N : Node_Id) return Elist_Id;   -- Elist4
9159
9160    function High_Bound
9161      (N : Node_Id) return Node_Id;    -- Node2
9162
9163    function Identifier
9164      (N : Node_Id) return Node_Id;    -- Node1
9165
9166    function Interface_List
9167      (N : Node_Id) return List_Id;    -- List2
9168
9169    function Interface_Present
9170      (N : Node_Id) return Boolean;    -- Flag16
9171
9172    function Implicit_With
9173      (N : Node_Id) return Boolean;    -- Flag16
9174
9175    function Implicit_With_From_Instantiation
9176      (N : Node_Id) return Boolean;    -- Flag12
9177
9178    function Import_Interface_Present
9179      (N : Node_Id) return Boolean;    -- Flag16
9180
9181    function In_Present
9182      (N : Node_Id) return Boolean;    -- Flag15
9183
9184    function Includes_Infinities
9185      (N : Node_Id) return Boolean;    -- Flag11
9186
9187    function Incomplete_View
9188      (N : Node_Id) return Node_Id;    -- Node2
9189
9190    function Inherited_Discriminant
9191      (N : Node_Id) return Boolean;    -- Flag13
9192
9193    function Instance_Spec
9194      (N : Node_Id) return Node_Id;    -- Node5
9195
9196    function Intval
9197      (N : Node_Id) return Uint;       -- Uint3
9198
9199    function Is_Accessibility_Actual
9200      (N : Node_Id) return Boolean;    -- Flag13
9201
9202    function Is_Asynchronous_Call_Block
9203      (N : Node_Id) return Boolean;    -- Flag7
9204
9205    function Is_Boolean_Aspect
9206      (N : Node_Id) return Boolean;    -- Flag16
9207
9208    function Is_Checked
9209      (N : Node_Id) return Boolean;    -- Flag11
9210
9211    function Is_Component_Left_Opnd
9212      (N : Node_Id) return Boolean;    -- Flag13
9213
9214    function Is_Component_Right_Opnd
9215      (N : Node_Id) return Boolean;    -- Flag14
9216
9217    function Is_Controlling_Actual
9218      (N : Node_Id) return Boolean;    -- Flag16
9219
9220    function Is_Delayed_Aspect
9221      (N : Node_Id) return Boolean;    -- Flag14
9222
9223    function Is_Disabled
9224      (N : Node_Id) return Boolean;    -- Flag15
9225
9226    function Is_Dynamic_Coextension
9227      (N : Node_Id) return Boolean;    -- Flag18
9228
9229    function Is_Elsif
9230      (N : Node_Id) return Boolean;    -- Flag13
9231
9232    function Is_Entry_Barrier_Function
9233      (N : Node_Id) return Boolean;    -- Flag8
9234
9235    function Is_Expanded_Build_In_Place_Call
9236      (N : Node_Id) return Boolean;    -- Flag11
9237
9238    function Is_Finalization_Wrapper
9239      (N : Node_Id) return Boolean;    -- Flag9
9240
9241    function Is_Folded_In_Parser
9242      (N : Node_Id) return Boolean;    -- Flag4
9243
9244    function Is_Ignored
9245      (N : Node_Id) return Boolean;    -- Flag9
9246
9247    function Is_In_Discriminant_Check
9248      (N : Node_Id) return Boolean;    -- Flag11
9249
9250    function Is_Machine_Number
9251      (N : Node_Id) return Boolean;    -- Flag11
9252
9253    function Is_Null_Loop
9254      (N : Node_Id) return Boolean;    -- Flag16
9255
9256    function Is_Overloaded
9257      (N : Node_Id) return Boolean;    -- Flag5
9258
9259    function Is_Power_Of_2_For_Shift
9260      (N : Node_Id) return Boolean;    -- Flag13
9261
9262    function Is_Prefixed_Call
9263      (N : Node_Id) return Boolean;    -- Flag17
9264
9265    function Is_Protected_Subprogram_Body
9266      (N : Node_Id) return Boolean;    -- Flag7
9267
9268    function Is_Static_Coextension
9269      (N : Node_Id) return Boolean;    -- Flag14
9270
9271    function Is_Static_Expression
9272      (N : Node_Id) return Boolean;    -- Flag6
9273
9274    function Is_Subprogram_Descriptor
9275      (N : Node_Id) return Boolean;    -- Flag16
9276
9277    function Is_Task_Allocation_Block
9278      (N : Node_Id) return Boolean;    -- Flag6
9279
9280    function Is_Task_Master
9281      (N : Node_Id) return Boolean;    -- Flag5
9282
9283    function Iteration_Scheme
9284      (N : Node_Id) return Node_Id;    -- Node2
9285
9286    function Iterator_Specification
9287      (N : Node_Id) return Node_Id;    -- Node2
9288
9289    function Itype
9290      (N : Node_Id) return Entity_Id;  -- Node1
9291
9292    function Kill_Range_Check
9293      (N : Node_Id) return Boolean;    -- Flag11
9294
9295    function Label_Construct
9296      (N : Node_Id) return Node_Id;    -- Node2
9297
9298    function Left_Opnd
9299      (N : Node_Id) return Node_Id;    -- Node2
9300
9301    function Last_Bit
9302      (N : Node_Id) return Node_Id;    -- Node4
9303
9304    function Last_Name
9305      (N : Node_Id) return Boolean;    -- Flag6
9306
9307    function Library_Unit
9308      (N : Node_Id) return Node_Id;    -- Node4
9309
9310    function Limited_View_Installed
9311      (N : Node_Id) return Boolean;    -- Flag18
9312
9313    function Limited_Present
9314      (N : Node_Id) return Boolean;    -- Flag17
9315
9316    function Literals
9317      (N : Node_Id) return List_Id;    -- List1
9318
9319    function Local_Raise_Not_OK
9320      (N : Node_Id) return Boolean;    -- Flag7
9321
9322    function Local_Raise_Statements
9323      (N : Node_Id) return Elist_Id;   -- Elist1
9324
9325    function Loop_Actions
9326      (N : Node_Id) return List_Id;    -- List2
9327
9328    function Loop_Parameter_Specification
9329      (N : Node_Id) return Node_Id;    -- Node4
9330
9331    function Low_Bound
9332      (N : Node_Id) return Node_Id;    -- Node1
9333
9334    function Mod_Clause
9335      (N : Node_Id) return Node_Id;    -- Node2
9336
9337    function More_Ids
9338      (N : Node_Id) return Boolean;    -- Flag5
9339
9340    function Must_Be_Byte_Aligned
9341      (N : Node_Id) return Boolean;    -- Flag14
9342
9343    function Must_Not_Freeze
9344      (N : Node_Id) return Boolean;    -- Flag8
9345
9346    function Must_Not_Override
9347      (N : Node_Id) return Boolean;    -- Flag15
9348
9349    function Must_Override
9350      (N : Node_Id) return Boolean;    -- Flag14
9351
9352    function Name
9353      (N : Node_Id) return Node_Id;    -- Node2
9354
9355    function Names
9356      (N : Node_Id) return List_Id;    -- List2
9357
9358    function Next_Entity
9359      (N : Node_Id) return Node_Id;    -- Node2
9360
9361    function Next_Exit_Statement
9362      (N : Node_Id) return Node_Id;    -- Node3
9363
9364    function Next_Implicit_With
9365      (N : Node_Id) return Node_Id;    -- Node3
9366
9367    function Next_Named_Actual
9368      (N : Node_Id) return Node_Id;    -- Node4
9369
9370    function Next_Pragma
9371      (N : Node_Id) return Node_Id;    -- Node1
9372
9373    function Next_Rep_Item
9374      (N : Node_Id) return Node_Id;    -- Node5
9375
9376    function Next_Use_Clause
9377      (N : Node_Id) return Node_Id;    -- Node3
9378
9379    function No_Ctrl_Actions
9380      (N : Node_Id) return Boolean;    -- Flag7
9381
9382    function No_Elaboration_Check
9383      (N : Node_Id) return Boolean;    -- Flag14
9384
9385    function No_Entities_Ref_In_Spec
9386      (N : Node_Id) return Boolean;    -- Flag8
9387
9388    function No_Initialization
9389      (N : Node_Id) return Boolean;    -- Flag13
9390
9391    function No_Minimize_Eliminate
9392      (N : Node_Id) return Boolean;    -- Flag17
9393
9394    function No_Truncation
9395      (N : Node_Id) return Boolean;    -- Flag17
9396
9397    function Non_Aliased_Prefix
9398      (N : Node_Id) return Boolean;    -- Flag18
9399
9400    function Null_Present
9401      (N : Node_Id) return Boolean;    -- Flag13
9402
9403    function Null_Excluding_Subtype
9404      (N : Node_Id) return Boolean;    -- Flag16
9405
9406    function Null_Exclusion_Present
9407      (N : Node_Id) return Boolean;    -- Flag11
9408
9409    function Null_Exclusion_In_Return_Present
9410      (N : Node_Id) return Boolean;    -- Flag14
9411
9412    function Null_Record_Present
9413      (N : Node_Id) return Boolean;    -- Flag17
9414
9415    function Object_Definition
9416      (N : Node_Id) return Node_Id;    -- Node4
9417
9418    function Of_Present
9419      (N : Node_Id) return Boolean;    -- Flag16
9420
9421    function Original_Discriminant
9422      (N : Node_Id) return Node_Id;    -- Node2
9423
9424    function Original_Entity
9425      (N : Node_Id) return Entity_Id;  -- Node2
9426
9427    function Others_Discrete_Choices
9428      (N : Node_Id) return List_Id;    -- List1
9429
9430    function Out_Present
9431      (N : Node_Id) return Boolean;    -- Flag17
9432
9433    function Parameter_Associations
9434      (N : Node_Id) return List_Id;    -- List3
9435
9436    function Parameter_List_Truncated
9437      (N : Node_Id) return Boolean;    -- Flag17
9438
9439    function Parameter_Specifications
9440      (N : Node_Id) return List_Id;    -- List3
9441
9442    function Parameter_Type
9443      (N : Node_Id) return Node_Id;    -- Node2
9444
9445    function Parent_Spec
9446      (N : Node_Id) return Node_Id;    -- Node4
9447
9448    function Position
9449      (N : Node_Id) return Node_Id;    -- Node2
9450
9451    function Pragma_Argument_Associations
9452      (N : Node_Id) return List_Id;    -- List2
9453
9454    function Pragma_Identifier
9455      (N : Node_Id) return Node_Id;    -- Node4
9456
9457    function Pragmas_After
9458      (N : Node_Id) return List_Id;    -- List5
9459
9460    function Pragmas_Before
9461      (N : Node_Id) return List_Id;    -- List4
9462
9463    function Pre_Post_Conditions
9464      (N : Node_Id) return Node_Id;    -- Node1
9465
9466    function Prefix
9467      (N : Node_Id) return Node_Id;    -- Node3
9468
9469    function Premature_Use
9470      (N : Node_Id) return Node_Id;    -- Node5
9471
9472    function Present_Expr
9473      (N : Node_Id) return Uint;       -- Uint3
9474
9475    function Prev_Ids
9476      (N : Node_Id) return Boolean;    -- Flag6
9477
9478    function Print_In_Hex
9479      (N : Node_Id) return Boolean;    -- Flag13
9480
9481    function Private_Declarations
9482      (N : Node_Id) return List_Id;    -- List3
9483
9484    function Private_Present
9485      (N : Node_Id) return Boolean;    -- Flag15
9486
9487    function Procedure_To_Call
9488      (N : Node_Id) return Node_Id;    -- Node2
9489
9490    function Proper_Body
9491      (N : Node_Id) return Node_Id;    -- Node1
9492
9493    function Protected_Definition
9494      (N : Node_Id) return Node_Id;    -- Node3
9495
9496    function Protected_Present
9497      (N : Node_Id) return Boolean;    -- Flag6
9498
9499    function Raises_Constraint_Error
9500      (N : Node_Id) return Boolean;    -- Flag7
9501
9502    function Range_Constraint
9503      (N : Node_Id) return Node_Id;    -- Node4
9504
9505    function Range_Expression
9506      (N : Node_Id) return Node_Id;    -- Node4
9507
9508    function Real_Range_Specification
9509      (N : Node_Id) return Node_Id;    -- Node4
9510
9511    function Realval
9512      (N : Node_Id) return Ureal;      -- Ureal3
9513
9514    function Reason
9515      (N : Node_Id) return Uint;       -- Uint3
9516
9517    function Record_Extension_Part
9518      (N : Node_Id) return Node_Id;    -- Node3
9519
9520    function Redundant_Use
9521      (N : Node_Id) return Boolean;    -- Flag13
9522
9523    function Renaming_Exception
9524      (N : Node_Id) return Node_Id;    -- Node2
9525
9526    function Result_Definition
9527      (N : Node_Id) return Node_Id;    -- Node4
9528
9529    function Return_Object_Declarations
9530      (N : Node_Id) return List_Id;    -- List3
9531
9532    function Return_Statement_Entity
9533      (N : Node_Id) return Node_Id;    -- Node5
9534
9535    function Reverse_Present
9536      (N : Node_Id) return Boolean;    -- Flag15
9537
9538    function Right_Opnd
9539      (N : Node_Id) return Node_Id;    -- Node3
9540
9541    function Rounded_Result
9542      (N : Node_Id) return Boolean;    -- Flag18
9543
9544    function SCIL_Controlling_Tag
9545      (N : Node_Id) return Node_Id;    -- Node5
9546
9547    function SCIL_Entity
9548      (N : Node_Id) return Node_Id;    -- Node4
9549
9550    function SCIL_Tag_Value
9551      (N : Node_Id) return Node_Id;    -- Node5
9552
9553    function SCIL_Target_Prim
9554      (N : Node_Id) return Node_Id;    -- Node2
9555
9556    function Scope
9557      (N : Node_Id) return Node_Id;    -- Node3
9558
9559    function Select_Alternatives
9560      (N : Node_Id) return List_Id;    -- List1
9561
9562    function Selector_Name
9563      (N : Node_Id) return Node_Id;    -- Node2
9564
9565    function Selector_Names
9566      (N : Node_Id) return List_Id;    -- List1
9567
9568    function Shift_Count_OK
9569      (N : Node_Id) return Boolean;    -- Flag4
9570
9571    function Source_Type
9572      (N : Node_Id) return Entity_Id;  -- Node1
9573
9574    function Specification
9575      (N : Node_Id) return Node_Id;    -- Node1
9576
9577    function Split_PPC
9578      (N : Node_Id) return Boolean;    -- Flag17
9579
9580    function Statements
9581      (N : Node_Id) return List_Id;    -- List3
9582
9583    function Storage_Pool
9584      (N : Node_Id) return Node_Id;    -- Node1
9585
9586    function Subpool_Handle_Name
9587      (N : Node_Id) return Node_Id;    -- Node4
9588
9589    function Strval
9590      (N : Node_Id) return String_Id;  -- Str3
9591
9592    function Subtype_Indication
9593      (N : Node_Id) return Node_Id;    -- Node5
9594
9595    function Subtype_Mark
9596      (N : Node_Id) return Node_Id;    -- Node4
9597
9598    function Subtype_Marks
9599      (N : Node_Id) return List_Id;    -- List2
9600
9601    function Suppress_Assignment_Checks
9602      (N : Node_Id) return Boolean;    -- Flag18
9603
9604    function Suppress_Loop_Warnings
9605      (N : Node_Id) return Boolean;    -- Flag17
9606
9607    function Synchronized_Present
9608      (N : Node_Id) return Boolean;    -- Flag7
9609
9610    function Tagged_Present
9611      (N : Node_Id) return Boolean;    -- Flag15
9612
9613    function Target_Type
9614      (N : Node_Id) return Entity_Id;  -- Node2
9615
9616    function Task_Definition
9617      (N : Node_Id) return Node_Id;    -- Node3
9618
9619    function Task_Present
9620      (N : Node_Id) return Boolean;    -- Flag5
9621
9622    function Then_Actions
9623      (N : Node_Id) return List_Id;    -- List2
9624
9625    function Then_Statements
9626      (N : Node_Id) return List_Id;    -- List2
9627
9628    function Treat_Fixed_As_Integer
9629      (N : Node_Id) return Boolean;    -- Flag14
9630
9631    function Triggering_Alternative
9632      (N : Node_Id) return Node_Id;    -- Node1
9633
9634    function Triggering_Statement
9635      (N : Node_Id) return Node_Id;    -- Node1
9636
9637    function TSS_Elist
9638      (N : Node_Id) return Elist_Id;   -- Elist3
9639
9640    function Type_Definition
9641      (N : Node_Id) return Node_Id;    -- Node3
9642
9643    function Uneval_Old_Accept
9644      (N : Node_Id) return Boolean;    -- Flag7
9645
9646    function Uneval_Old_Warn
9647      (N : Node_Id) return Boolean;    -- Flag18
9648
9649    function Unit
9650      (N : Node_Id) return Node_Id;    -- Node2
9651
9652    function Unknown_Discriminants_Present
9653      (N : Node_Id) return Boolean;    -- Flag13
9654
9655    function Unreferenced_In_Spec
9656      (N : Node_Id) return Boolean;    -- Flag7
9657
9658    function Variant_Part
9659      (N : Node_Id) return Node_Id;    -- Node4
9660
9661    function Variants
9662      (N : Node_Id) return List_Id;    -- List1
9663
9664    function Visible_Declarations
9665      (N : Node_Id) return List_Id;    -- List2
9666
9667    function Uninitialized_Variable
9668      (N : Node_Id) return Node_Id;    -- Node3
9669
9670    function Used_Operations
9671      (N : Node_Id) return Elist_Id;   -- Elist5
9672
9673    function Was_Originally_Stub
9674      (N : Node_Id) return Boolean;    -- Flag13
9675
9676    function Withed_Body
9677      (N : Node_Id) return Node_Id;    -- Node1
9678
9679    --  End functions (note used by xsinfo utility program to end processing)
9680
9681    ----------------------------
9682    -- Node Update Procedures --
9683    ----------------------------
9684
9685    --  These are the corresponding node update routines, which again provide
9686    --  a high level logical access with type checking. In addition to setting
9687    --  the indicated field of the node N to the given Val, in the case of
9688    --  tree pointers (List1-4), the parent pointer of the Val node is set to
9689    --  point back to node N. This automates the setting of the parent pointer.
9690
9691    procedure Set_ABE_Is_Certain
9692      (N : Node_Id; Val : Boolean := True);    -- Flag18
9693
9694    procedure Set_Abort_Present
9695      (N : Node_Id; Val : Boolean := True);    -- Flag15
9696
9697    procedure Set_Abortable_Part
9698      (N : Node_Id; Val : Node_Id);            -- Node2
9699
9700    procedure Set_Abstract_Present
9701      (N : Node_Id; Val : Boolean := True);    -- Flag4
9702
9703    procedure Set_Accept_Handler_Records
9704      (N : Node_Id; Val : List_Id);            -- List5
9705
9706    procedure Set_Accept_Statement
9707      (N : Node_Id; Val : Node_Id);            -- Node2
9708
9709    procedure Set_Access_Definition
9710      (N : Node_Id; Val : Node_Id);            -- Node3
9711
9712    procedure Set_Access_To_Subprogram_Definition
9713      (N : Node_Id; Val : Node_Id);            -- Node3
9714
9715    procedure Set_Access_Types_To_Process
9716      (N : Node_Id; Val : Elist_Id);           -- Elist2
9717
9718    procedure Set_Actions
9719      (N : Node_Id; Val : List_Id);            -- List1
9720
9721    procedure Set_Activation_Chain_Entity
9722      (N : Node_Id; Val : Node_Id);            -- Node3
9723
9724    procedure Set_Acts_As_Spec
9725      (N : Node_Id; Val : Boolean := True);    -- Flag4
9726
9727    procedure Set_Actual_Designated_Subtype
9728      (N : Node_Id; Val : Node_Id);            -- Node4
9729
9730    procedure Set_Address_Warning_Posted
9731      (N : Node_Id; Val : Boolean := True);    -- Flag18
9732
9733    procedure Set_Aggregate_Bounds
9734      (N : Node_Id; Val : Node_Id);            -- Node3
9735
9736    procedure Set_Aliased_Present
9737      (N : Node_Id; Val : Boolean := True);    -- Flag4
9738
9739    procedure Set_All_Others
9740      (N : Node_Id; Val : Boolean := True);    -- Flag11
9741
9742    procedure Set_All_Present
9743      (N : Node_Id; Val : Boolean := True);    -- Flag15
9744
9745    procedure Set_Alternatives
9746      (N : Node_Id; Val : List_Id);            -- List4
9747
9748    procedure Set_Ancestor_Part
9749      (N : Node_Id; Val : Node_Id);            -- Node3
9750
9751    procedure Set_Atomic_Sync_Required
9752      (N : Node_Id; Val : Boolean := True);    -- Flag14
9753
9754    procedure Set_Array_Aggregate
9755      (N : Node_Id; Val : Node_Id);            -- Node3
9756
9757    procedure Set_Aspect_Rep_Item
9758      (N : Node_Id; Val : Node_Id);            -- Node2
9759
9760    procedure Set_Assignment_OK
9761      (N : Node_Id; Val : Boolean := True);    -- Flag15
9762
9763    procedure Set_Associated_Node
9764      (N : Node_Id; Val : Node_Id);            -- Node4
9765
9766    procedure Set_Attribute_Name
9767      (N : Node_Id; Val : Name_Id);            -- Name2
9768
9769    procedure Set_At_End_Proc
9770      (N : Node_Id; Val : Node_Id);            -- Node1
9771
9772    procedure Set_Aux_Decls_Node
9773      (N : Node_Id; Val : Node_Id);            -- Node5
9774
9775    procedure Set_Backwards_OK
9776      (N : Node_Id; Val : Boolean := True);    -- Flag6
9777
9778    procedure Set_Bad_Is_Detected
9779      (N : Node_Id; Val : Boolean := True);    -- Flag15
9780
9781    procedure Set_Body_Required
9782      (N : Node_Id; Val : Boolean := True);    -- Flag13
9783
9784    procedure Set_Body_To_Inline
9785      (N : Node_Id; Val : Node_Id);            -- Node3
9786
9787    procedure Set_Box_Present
9788      (N : Node_Id; Val : Boolean := True);    -- Flag15
9789
9790    procedure Set_By_Ref
9791      (N : Node_Id; Val : Boolean := True);    -- Flag5
9792
9793    procedure Set_Char_Literal_Value
9794      (N : Node_Id; Val : Uint);               -- Uint2
9795
9796    procedure Set_Chars
9797      (N : Node_Id; Val : Name_Id);            -- Name1
9798
9799    procedure Set_Check_Address_Alignment
9800      (N : Node_Id; Val : Boolean := True);    -- Flag11
9801
9802    procedure Set_Choice_Parameter
9803      (N : Node_Id; Val : Node_Id);            -- Node2
9804
9805    procedure Set_Choices
9806      (N : Node_Id; Val : List_Id);            -- List1
9807
9808    procedure Set_Class_Present
9809      (N : Node_Id; Val : Boolean := True);    -- Flag6
9810
9811    procedure Set_Classifications
9812      (N : Node_Id; Val : Node_Id);            -- Node3
9813
9814    procedure Set_Cleanup_Actions
9815      (N : Node_Id; Val : List_Id);            -- List5
9816
9817    procedure Set_Comes_From_Extended_Return_Statement
9818      (N : Node_Id; Val : Boolean := True);    -- Flag18
9819
9820    procedure Set_Compile_Time_Known_Aggregate
9821      (N : Node_Id; Val : Boolean := True);    -- Flag18
9822
9823    procedure Set_Component_Associations
9824      (N : Node_Id; Val : List_Id);            -- List2
9825
9826    procedure Set_Component_Clauses
9827      (N : Node_Id; Val : List_Id);            -- List3
9828
9829    procedure Set_Component_Definition
9830      (N : Node_Id; Val : Node_Id);            -- Node4
9831
9832    procedure Set_Component_Items
9833      (N : Node_Id; Val : List_Id);            -- List3
9834
9835    procedure Set_Component_List
9836      (N : Node_Id; Val : Node_Id);            -- Node1
9837
9838    procedure Set_Component_Name
9839      (N : Node_Id; Val : Node_Id);            -- Node1
9840
9841    procedure Set_Componentwise_Assignment
9842      (N : Node_Id; Val : Boolean := True);    -- Flag14
9843
9844    procedure Set_Condition
9845      (N : Node_Id; Val : Node_Id);            -- Node1
9846
9847    procedure Set_Condition_Actions
9848      (N : Node_Id; Val : List_Id);            -- List3
9849
9850    procedure Set_Config_Pragmas
9851      (N : Node_Id; Val : List_Id);            -- List4
9852
9853    procedure Set_Constant_Present
9854      (N : Node_Id; Val : Boolean := True);    -- Flag17
9855
9856    procedure Set_Constraint
9857      (N : Node_Id; Val : Node_Id);            -- Node3
9858
9859    procedure Set_Constraints
9860      (N : Node_Id; Val : List_Id);            -- List1
9861
9862    procedure Set_Context_Installed
9863      (N : Node_Id; Val : Boolean := True);    -- Flag13
9864
9865    procedure Set_Context_Items
9866      (N : Node_Id; Val : List_Id);            -- List1
9867
9868    procedure Set_Context_Pending
9869      (N : Node_Id; Val : Boolean := True);    -- Flag16
9870
9871    procedure Set_Contract_Test_Cases
9872      (N : Node_Id; Val : Node_Id);            -- Node2
9873
9874    procedure Set_Controlling_Argument
9875      (N : Node_Id; Val : Node_Id);            -- Node1
9876
9877    procedure Set_Conversion_OK
9878      (N : Node_Id; Val : Boolean := True);    -- Flag14
9879
9880    procedure Set_Convert_To_Return_False
9881      (N : Node_Id; Val : Boolean := True);    -- Flag13
9882
9883    procedure Set_Corresponding_Aspect
9884      (N : Node_Id; Val : Node_Id);            -- Node3
9885
9886    procedure Set_Corresponding_Body
9887      (N : Node_Id; Val : Node_Id);            -- Node5
9888
9889    procedure Set_Corresponding_Formal_Spec
9890      (N : Node_Id; Val : Node_Id);            -- Node3
9891
9892    procedure Set_Corresponding_Generic_Association
9893      (N : Node_Id; Val : Node_Id);            -- Node5
9894
9895    procedure Set_Corresponding_Integer_Value
9896      (N : Node_Id; Val : Uint);               -- Uint4
9897
9898    procedure Set_Corresponding_Spec
9899      (N : Node_Id; Val : Node_Id);            -- Node5
9900
9901    procedure Set_Corresponding_Spec_Of_Stub
9902      (N : Node_Id; Val : Node_Id);            -- Node2
9903
9904    procedure Set_Corresponding_Stub
9905      (N : Node_Id; Val : Node_Id);            -- Node3
9906
9907    procedure Set_Dcheck_Function
9908      (N : Node_Id; Val : Entity_Id);          -- Node5
9909
9910    procedure Set_Declarations
9911      (N : Node_Id; Val : List_Id);            -- List2
9912
9913    procedure Set_Default_Expression
9914      (N : Node_Id; Val : Node_Id);            -- Node5
9915
9916    procedure Set_Default_Storage_Pool
9917      (N : Node_Id; Val : Node_Id);            -- Node3
9918
9919    procedure Set_Default_Name
9920      (N : Node_Id; Val : Node_Id);            -- Node2
9921
9922    procedure Set_Defining_Identifier
9923      (N : Node_Id; Val : Entity_Id);          -- Node1
9924
9925    procedure Set_Defining_Unit_Name
9926      (N : Node_Id; Val : Node_Id);            -- Node1
9927
9928    procedure Set_Delay_Alternative
9929      (N : Node_Id; Val : Node_Id);            -- Node4
9930
9931    procedure Set_Delay_Statement
9932      (N : Node_Id; Val : Node_Id);            -- Node2
9933
9934    procedure Set_Delta_Expression
9935      (N : Node_Id; Val : Node_Id);            -- Node3
9936
9937    procedure Set_Digits_Expression
9938      (N : Node_Id; Val : Node_Id);            -- Node2
9939
9940    procedure Set_Discr_Check_Funcs_Built
9941      (N : Node_Id; Val : Boolean := True);    -- Flag11
9942
9943    procedure Set_Discrete_Choices
9944      (N : Node_Id; Val : List_Id);            -- List4
9945
9946    procedure Set_Discrete_Range
9947      (N : Node_Id; Val : Node_Id);            -- Node4
9948
9949    procedure Set_Discrete_Subtype_Definition
9950      (N : Node_Id; Val : Node_Id);            -- Node4
9951
9952    procedure Set_Discrete_Subtype_Definitions
9953      (N : Node_Id; Val : List_Id);            -- List2
9954
9955    procedure Set_Discriminant_Specifications
9956      (N : Node_Id; Val : List_Id);            -- List4
9957
9958    procedure Set_Discriminant_Type
9959      (N : Node_Id; Val : Node_Id);            -- Node5
9960
9961    procedure Set_Do_Accessibility_Check
9962      (N : Node_Id; Val : Boolean := True);    -- Flag13
9963
9964    procedure Set_Do_Discriminant_Check
9965      (N : Node_Id; Val : Boolean := True);    -- Flag1
9966
9967    procedure Set_Do_Division_Check
9968      (N : Node_Id; Val : Boolean := True);    -- Flag13
9969
9970    procedure Set_Do_Length_Check
9971      (N : Node_Id; Val : Boolean := True);    -- Flag4
9972
9973    procedure Set_Do_Overflow_Check
9974      (N : Node_Id; Val : Boolean := True);    -- Flag17
9975
9976    procedure Set_Do_Range_Check
9977      (N : Node_Id; Val : Boolean := True);    -- Flag9
9978
9979    procedure Set_Do_Storage_Check
9980      (N : Node_Id; Val : Boolean := True);    -- Flag17
9981
9982    procedure Set_Do_Tag_Check
9983      (N : Node_Id; Val : Boolean := True);    -- Flag13
9984
9985    procedure Set_Elaborate_All_Desirable
9986      (N : Node_Id; Val : Boolean := True);    -- Flag9
9987
9988    procedure Set_Elaborate_All_Present
9989      (N : Node_Id; Val : Boolean := True);    -- Flag14
9990
9991    procedure Set_Elaborate_Desirable
9992      (N : Node_Id; Val : Boolean := True);    -- Flag11
9993
9994    procedure Set_Elaborate_Present
9995      (N : Node_Id; Val : Boolean := True);    -- Flag4
9996
9997    procedure Set_Elaboration_Boolean
9998      (N : Node_Id; Val : Node_Id);            -- Node2
9999
10000    procedure Set_Else_Actions
10001      (N : Node_Id; Val : List_Id);            -- List3
10002
10003    procedure Set_Else_Statements
10004      (N : Node_Id; Val : List_Id);            -- List4
10005
10006    procedure Set_Elsif_Parts
10007      (N : Node_Id; Val : List_Id);            -- List3
10008
10009    procedure Set_Enclosing_Variant
10010      (N : Node_Id; Val : Node_Id);            -- Node2
10011
10012    procedure Set_End_Label
10013      (N : Node_Id; Val : Node_Id);            -- Node4
10014
10015    procedure Set_End_Span
10016      (N : Node_Id; Val : Uint);               -- Uint5
10017
10018    procedure Set_Entity
10019      (N : Node_Id; Val : Node_Id);            -- Node4
10020
10021    procedure Set_Entry_Body_Formal_Part
10022      (N : Node_Id; Val : Node_Id);            -- Node5
10023
10024    procedure Set_Entry_Call_Alternative
10025      (N : Node_Id; Val : Node_Id);            -- Node1
10026
10027    procedure Set_Entry_Call_Statement
10028      (N : Node_Id; Val : Node_Id);            -- Node1
10029
10030    procedure Set_Entry_Direct_Name
10031      (N : Node_Id; Val : Node_Id);            -- Node1
10032
10033    procedure Set_Entry_Index
10034      (N : Node_Id; Val : Node_Id);            -- Node5
10035
10036    procedure Set_Entry_Index_Specification
10037      (N : Node_Id; Val : Node_Id);            -- Node4
10038
10039    procedure Set_Etype
10040      (N : Node_Id; Val : Node_Id);            -- Node5
10041
10042    procedure Set_Exception_Choices
10043      (N : Node_Id; Val : List_Id);            -- List4
10044
10045    procedure Set_Exception_Handlers
10046      (N : Node_Id; Val : List_Id);            -- List5
10047
10048    procedure Set_Exception_Junk
10049      (N : Node_Id; Val : Boolean := True);    -- Flag8
10050
10051    procedure Set_Exception_Label
10052      (N : Node_Id; Val : Node_Id);            -- Node5
10053
10054    procedure Set_Expansion_Delayed
10055      (N : Node_Id; Val : Boolean := True);    -- Flag11
10056
10057    procedure Set_Explicit_Actual_Parameter
10058      (N : Node_Id; Val : Node_Id);            -- Node3
10059
10060    procedure Set_Explicit_Generic_Actual_Parameter
10061      (N : Node_Id; Val : Node_Id);            -- Node1
10062
10063    procedure Set_Expression
10064      (N : Node_Id; Val : Node_Id);            -- Node3
10065
10066    procedure Set_Expressions
10067      (N : Node_Id; Val : List_Id);            -- List1
10068
10069    procedure Set_First_Bit
10070      (N : Node_Id; Val : Node_Id);            -- Node3
10071
10072    procedure Set_First_Inlined_Subprogram
10073      (N : Node_Id; Val : Entity_Id);          -- Node3
10074
10075    procedure Set_First_Name
10076      (N : Node_Id; Val : Boolean := True);    -- Flag5
10077
10078    procedure Set_First_Named_Actual
10079      (N : Node_Id; Val : Node_Id);            -- Node4
10080
10081    procedure Set_First_Real_Statement
10082      (N : Node_Id; Val : Node_Id);            -- Node2
10083
10084    procedure Set_First_Subtype_Link
10085      (N : Node_Id; Val : Entity_Id);          -- Node5
10086
10087    procedure Set_Float_Truncate
10088      (N : Node_Id; Val : Boolean := True);    -- Flag11
10089
10090    procedure Set_Formal_Type_Definition
10091      (N : Node_Id; Val : Node_Id);            -- Node3
10092
10093    procedure Set_Forwards_OK
10094      (N : Node_Id; Val : Boolean := True);    -- Flag5
10095
10096    procedure Set_From_Aspect_Specification
10097      (N : Node_Id; Val : Boolean := True);    -- Flag13
10098
10099    procedure Set_From_At_End
10100      (N : Node_Id; Val : Boolean := True);    -- Flag4
10101
10102    procedure Set_From_At_Mod
10103      (N : Node_Id; Val : Boolean := True);    -- Flag4
10104
10105    procedure Set_From_Conditional_Expression
10106      (N : Node_Id; Val : Boolean := True);    -- Flag1
10107
10108    procedure Set_From_Default
10109      (N : Node_Id; Val : Boolean := True);    -- Flag6
10110
10111    procedure Set_Generalized_Indexing
10112      (N : Node_Id; Val : Node_Id);            -- Node4
10113
10114    procedure Set_Generic_Associations
10115      (N : Node_Id; Val : List_Id);            -- List3
10116
10117    procedure Set_Generic_Formal_Declarations
10118      (N : Node_Id; Val : List_Id);            -- List2
10119
10120    procedure Set_Generic_Parent
10121      (N : Node_Id; Val : Node_Id);            -- Node5
10122
10123    procedure Set_Generic_Parent_Type
10124      (N : Node_Id; Val : Node_Id);            -- Node4
10125
10126    procedure Set_Handled_Statement_Sequence
10127      (N : Node_Id; Val : Node_Id);            -- Node4
10128
10129    procedure Set_Handler_List_Entry
10130      (N : Node_Id; Val : Node_Id);            -- Node2
10131
10132    procedure Set_Has_Created_Identifier
10133      (N : Node_Id; Val : Boolean := True);    -- Flag15
10134
10135    procedure Set_Has_Dereference_Action
10136      (N : Node_Id; Val : Boolean := True);    -- Flag13
10137
10138    procedure Set_Has_Dynamic_Length_Check
10139      (N : Node_Id; Val : Boolean := True);    -- Flag10
10140
10141    procedure Set_Has_Dynamic_Range_Check
10142      (N : Node_Id; Val : Boolean := True);    -- Flag12
10143
10144    procedure Set_Has_Init_Expression
10145      (N : Node_Id; Val : Boolean := True);    -- Flag14
10146
10147    procedure Set_Has_Local_Raise
10148      (N : Node_Id; Val : Boolean := True);    -- Flag8
10149
10150    procedure Set_Has_No_Elaboration_Code
10151      (N : Node_Id; Val : Boolean := True);    -- Flag17
10152
10153    procedure Set_Has_Pragma_Suppress_All
10154      (N : Node_Id; Val : Boolean := True);    -- Flag14
10155
10156    procedure Set_Has_Private_View
10157      (N : Node_Id; Val : Boolean := True);    -- Flag11
10158
10159    procedure Set_Has_Relative_Deadline_Pragma
10160      (N : Node_Id; Val : Boolean := True);    -- Flag9
10161
10162    procedure Set_Has_Self_Reference
10163      (N : Node_Id; Val : Boolean := True);    -- Flag13
10164
10165    procedure Set_Has_SP_Choice
10166      (N : Node_Id; Val : Boolean := True);    -- Flag15
10167
10168    procedure Set_Has_Storage_Size_Pragma
10169      (N : Node_Id; Val : Boolean := True);    -- Flag5
10170
10171    procedure Set_Has_Wide_Character
10172      (N : Node_Id; Val : Boolean := True);    -- Flag11
10173
10174    procedure Set_Has_Wide_Wide_Character
10175      (N : Node_Id; Val : Boolean := True);    -- Flag13
10176
10177    procedure Set_Header_Size_Added
10178      (N : Node_Id; Val : Boolean := True);    -- Flag11
10179
10180    procedure Set_Hidden_By_Use_Clause
10181      (N : Node_Id; Val : Elist_Id);           -- Elist4
10182
10183    procedure Set_High_Bound
10184      (N : Node_Id; Val : Node_Id);            -- Node2
10185
10186    procedure Set_Identifier
10187      (N : Node_Id; Val : Node_Id);            -- Node1
10188
10189    procedure Set_Interface_List
10190      (N : Node_Id; Val : List_Id);            -- List2
10191
10192    procedure Set_Interface_Present
10193      (N : Node_Id; Val : Boolean := True);    -- Flag16
10194
10195    procedure Set_Implicit_With
10196      (N : Node_Id; Val : Boolean := True);    -- Flag16
10197
10198    procedure Set_Implicit_With_From_Instantiation
10199      (N : Node_Id; Val : Boolean := True);    -- Flag12
10200
10201    procedure Set_Import_Interface_Present
10202      (N : Node_Id; Val : Boolean := True);    -- Flag16
10203
10204    procedure Set_In_Present
10205      (N : Node_Id; Val : Boolean := True);    -- Flag15
10206
10207    procedure Set_Includes_Infinities
10208      (N : Node_Id; Val : Boolean := True);    -- Flag11
10209
10210    procedure Set_Incomplete_View
10211      (N : Node_Id;  Val : Node_Id);           -- Node2
10212
10213    procedure Set_Inherited_Discriminant
10214      (N : Node_Id; Val : Boolean := True);    -- Flag13
10215
10216    procedure Set_Instance_Spec
10217      (N : Node_Id; Val : Node_Id);            -- Node5
10218
10219    procedure Set_Intval
10220      (N : Node_Id; Val : Uint);               -- Uint3
10221
10222    procedure Set_Is_Accessibility_Actual
10223      (N : Node_Id; Val : Boolean := True);    -- Flag13
10224
10225    procedure Set_Is_Asynchronous_Call_Block
10226      (N : Node_Id; Val : Boolean := True);    -- Flag7
10227
10228    procedure Set_Is_Boolean_Aspect
10229      (N : Node_Id; Val : Boolean := True);    -- Flag16
10230
10231    procedure Set_Is_Checked
10232      (N : Node_Id; Val : Boolean := True);    -- Flag11
10233
10234    procedure Set_Is_Component_Left_Opnd
10235      (N : Node_Id; Val : Boolean := True);    -- Flag13
10236
10237    procedure Set_Is_Component_Right_Opnd
10238      (N : Node_Id; Val : Boolean := True);    -- Flag14
10239
10240    procedure Set_Is_Controlling_Actual
10241      (N : Node_Id; Val : Boolean := True);    -- Flag16
10242
10243    procedure Set_Is_Delayed_Aspect
10244      (N : Node_Id; Val : Boolean := True);    -- Flag14
10245
10246    procedure Set_Is_Disabled
10247      (N : Node_Id; Val : Boolean := True);    -- Flag15
10248
10249    procedure Set_Is_Ignored
10250      (N : Node_Id; Val : Boolean := True);    -- Flag9
10251
10252    procedure Set_Is_Dynamic_Coextension
10253      (N : Node_Id; Val : Boolean := True);    -- Flag18
10254
10255    procedure Set_Is_Elsif
10256      (N : Node_Id; Val : Boolean := True);    -- Flag13
10257
10258    procedure Set_Is_Entry_Barrier_Function
10259      (N : Node_Id; Val : Boolean := True);    -- Flag8
10260
10261    procedure Set_Is_Expanded_Build_In_Place_Call
10262      (N : Node_Id; Val : Boolean := True);    -- Flag11
10263
10264    procedure Set_Is_Finalization_Wrapper
10265      (N : Node_Id; Val : Boolean := True);    -- Flag9
10266
10267    procedure Set_Is_Folded_In_Parser
10268      (N : Node_Id; Val : Boolean := True);    -- Flag4
10269
10270    procedure Set_Is_In_Discriminant_Check
10271      (N : Node_Id; Val : Boolean := True);    -- Flag11
10272
10273    procedure Set_Is_Machine_Number
10274      (N : Node_Id; Val : Boolean := True);    -- Flag11
10275
10276    procedure Set_Is_Null_Loop
10277      (N : Node_Id; Val : Boolean := True);    -- Flag16
10278
10279    procedure Set_Is_Overloaded
10280      (N : Node_Id; Val : Boolean := True);    -- Flag5
10281
10282    procedure Set_Is_Power_Of_2_For_Shift
10283      (N : Node_Id; Val : Boolean := True);    -- Flag13
10284
10285    procedure Set_Is_Prefixed_Call
10286      (N : Node_Id; Val : Boolean := True);    -- Flag17
10287
10288    procedure Set_Is_Protected_Subprogram_Body
10289      (N : Node_Id; Val : Boolean := True);    -- Flag7
10290
10291    procedure Set_Is_Static_Coextension
10292      (N : Node_Id; Val : Boolean := True);    -- Flag14
10293
10294    procedure Set_Is_Static_Expression
10295      (N : Node_Id; Val : Boolean := True);    -- Flag6
10296
10297    procedure Set_Is_Subprogram_Descriptor
10298      (N : Node_Id; Val : Boolean := True);    -- Flag16
10299
10300    procedure Set_Is_Task_Allocation_Block
10301      (N : Node_Id; Val : Boolean := True);    -- Flag6
10302
10303    procedure Set_Is_Task_Master
10304      (N : Node_Id; Val : Boolean := True);    -- Flag5
10305
10306    procedure Set_Iteration_Scheme
10307      (N : Node_Id; Val : Node_Id);            -- Node2
10308
10309    procedure Set_Iterator_Specification
10310      (N : Node_Id; Val : Node_Id);            -- Node2
10311
10312    procedure Set_Itype
10313      (N : Node_Id; Val : Entity_Id);          -- Node1
10314
10315    procedure Set_Kill_Range_Check
10316      (N : Node_Id; Val : Boolean := True);    -- Flag11
10317
10318    procedure Set_Last_Bit
10319      (N : Node_Id; Val : Node_Id);            -- Node4
10320
10321    procedure Set_Last_Name
10322      (N : Node_Id; Val : Boolean := True);    -- Flag6
10323
10324    procedure Set_Library_Unit
10325      (N : Node_Id; Val : Node_Id);            -- Node4
10326
10327    procedure Set_Label_Construct
10328      (N : Node_Id; Val : Node_Id);            -- Node2
10329
10330    procedure Set_Left_Opnd
10331      (N : Node_Id; Val : Node_Id);            -- Node2
10332
10333    procedure Set_Limited_View_Installed
10334      (N : Node_Id; Val : Boolean := True);    -- Flag18
10335
10336    procedure Set_Limited_Present
10337      (N : Node_Id; Val : Boolean := True);    -- Flag17
10338
10339    procedure Set_Literals
10340      (N : Node_Id; Val : List_Id);            -- List1
10341
10342    procedure Set_Local_Raise_Not_OK
10343      (N : Node_Id; Val : Boolean := True);    -- Flag7
10344
10345    procedure Set_Local_Raise_Statements
10346      (N : Node_Id; Val : Elist_Id);           -- Elist1
10347
10348    procedure Set_Loop_Actions
10349      (N : Node_Id; Val : List_Id);            -- List2
10350
10351    procedure Set_Loop_Parameter_Specification
10352      (N : Node_Id; Val : Node_Id);            -- Node4
10353
10354    procedure Set_Low_Bound
10355      (N : Node_Id; Val : Node_Id);            -- Node1
10356
10357    procedure Set_Mod_Clause
10358      (N : Node_Id; Val : Node_Id);            -- Node2
10359
10360    procedure Set_More_Ids
10361      (N : Node_Id; Val : Boolean := True);    -- Flag5
10362
10363    procedure Set_Must_Be_Byte_Aligned
10364      (N : Node_Id; Val : Boolean := True);    -- Flag14
10365
10366    procedure Set_Must_Not_Freeze
10367      (N : Node_Id; Val : Boolean := True);    -- Flag8
10368
10369    procedure Set_Must_Not_Override
10370      (N : Node_Id; Val : Boolean := True);    -- Flag15
10371
10372    procedure Set_Must_Override
10373      (N : Node_Id; Val : Boolean := True);    -- Flag14
10374
10375    procedure Set_Name
10376      (N : Node_Id; Val : Node_Id);            -- Node2
10377
10378    procedure Set_Names
10379      (N : Node_Id; Val : List_Id);            -- List2
10380
10381    procedure Set_Next_Entity
10382      (N : Node_Id; Val : Node_Id);            -- Node2
10383
10384    procedure Set_Next_Exit_Statement
10385      (N : Node_Id; Val : Node_Id);            -- Node3
10386
10387    procedure Set_Next_Implicit_With
10388      (N : Node_Id; Val : Node_Id);            -- Node3
10389
10390    procedure Set_Next_Named_Actual
10391      (N : Node_Id; Val : Node_Id);            -- Node4
10392
10393    procedure Set_Next_Pragma
10394      (N : Node_Id; Val : Node_Id);            -- Node1
10395
10396    procedure Set_Next_Rep_Item
10397      (N : Node_Id; Val : Node_Id);            -- Node5
10398
10399    procedure Set_Next_Use_Clause
10400      (N : Node_Id; Val : Node_Id);            -- Node3
10401
10402    procedure Set_No_Ctrl_Actions
10403      (N : Node_Id; Val : Boolean := True);    -- Flag7
10404
10405    procedure Set_No_Elaboration_Check
10406      (N : Node_Id; Val : Boolean := True);    -- Flag14
10407
10408    procedure Set_No_Entities_Ref_In_Spec
10409      (N : Node_Id; Val : Boolean := True);    -- Flag8
10410
10411    procedure Set_No_Initialization
10412      (N : Node_Id; Val : Boolean := True);    -- Flag13
10413
10414    procedure Set_No_Minimize_Eliminate
10415      (N : Node_Id; Val : Boolean := True);    -- Flag17
10416
10417    procedure Set_No_Truncation
10418      (N : Node_Id; Val : Boolean := True);    -- Flag17
10419
10420    procedure Set_Non_Aliased_Prefix
10421      (N : Node_Id; Val : Boolean := True);    -- Flag18
10422
10423    procedure Set_Null_Present
10424      (N : Node_Id; Val : Boolean := True);    -- Flag13
10425
10426    procedure Set_Null_Excluding_Subtype
10427      (N : Node_Id; Val : Boolean := True);    -- Flag16
10428
10429    procedure Set_Null_Exclusion_Present
10430      (N : Node_Id; Val : Boolean := True);    -- Flag11
10431
10432    procedure Set_Null_Exclusion_In_Return_Present
10433      (N : Node_Id; Val : Boolean := True);    -- Flag14
10434
10435    procedure Set_Null_Record_Present
10436      (N : Node_Id; Val : Boolean := True);    -- Flag17
10437
10438    procedure Set_Object_Definition
10439      (N : Node_Id; Val : Node_Id);            -- Node4
10440
10441    procedure Set_Of_Present
10442      (N : Node_Id; Val : Boolean := True);   -- Flag16
10443
10444    procedure Set_Original_Discriminant
10445      (N : Node_Id; Val : Node_Id);            -- Node2
10446
10447    procedure Set_Original_Entity
10448      (N : Node_Id; Val : Entity_Id);          -- Node2
10449
10450    procedure Set_Others_Discrete_Choices
10451      (N : Node_Id; Val : List_Id);            -- List1
10452
10453    procedure Set_Out_Present
10454      (N : Node_Id; Val : Boolean := True);    -- Flag17
10455
10456    procedure Set_Parameter_Associations
10457      (N : Node_Id; Val : List_Id);            -- List3
10458
10459    procedure Set_Parameter_List_Truncated
10460      (N : Node_Id; Val : Boolean := True);    -- Flag17
10461
10462    procedure Set_Parameter_Specifications
10463      (N : Node_Id; Val : List_Id);            -- List3
10464
10465    procedure Set_Parameter_Type
10466      (N : Node_Id; Val : Node_Id);            -- Node2
10467
10468    procedure Set_Parent_Spec
10469      (N : Node_Id; Val : Node_Id);            -- Node4
10470
10471    procedure Set_Position
10472      (N : Node_Id; Val : Node_Id);            -- Node2
10473
10474    procedure Set_Pragma_Argument_Associations
10475      (N : Node_Id; Val : List_Id);            -- List2
10476
10477    procedure Set_Pragma_Identifier
10478      (N : Node_Id; Val : Node_Id);            -- Node4
10479
10480    procedure Set_Pragmas_After
10481      (N : Node_Id; Val : List_Id);            -- List5
10482
10483    procedure Set_Pragmas_Before
10484      (N : Node_Id; Val : List_Id);            -- List4
10485
10486    procedure Set_Pre_Post_Conditions
10487      (N : Node_Id; Val : Node_Id);            -- Node1
10488
10489    procedure Set_Prefix
10490      (N : Node_Id; Val : Node_Id);            -- Node3
10491
10492    procedure Set_Premature_Use
10493      (N : Node_Id; Val : Node_Id);            -- Node5
10494
10495    procedure Set_Present_Expr
10496      (N : Node_Id; Val : Uint);               -- Uint3
10497
10498    procedure Set_Prev_Ids
10499      (N : Node_Id; Val : Boolean := True);    -- Flag6
10500
10501    procedure Set_Print_In_Hex
10502      (N : Node_Id; Val : Boolean := True);    -- Flag13
10503
10504    procedure Set_Private_Declarations
10505      (N : Node_Id; Val : List_Id);            -- List3
10506
10507    procedure Set_Private_Present
10508      (N : Node_Id; Val : Boolean := True);    -- Flag15
10509
10510    procedure Set_Procedure_To_Call
10511      (N : Node_Id; Val : Node_Id);            -- Node2
10512
10513    procedure Set_Proper_Body
10514      (N : Node_Id; Val : Node_Id);            -- Node1
10515
10516    procedure Set_Protected_Definition
10517      (N : Node_Id; Val : Node_Id);            -- Node3
10518
10519    procedure Set_Protected_Present
10520      (N : Node_Id; Val : Boolean := True);    -- Flag6
10521
10522    procedure Set_Raises_Constraint_Error
10523      (N : Node_Id; Val : Boolean := True);    -- Flag7
10524
10525    procedure Set_Range_Constraint
10526      (N : Node_Id; Val : Node_Id);            -- Node4
10527
10528    procedure Set_Range_Expression
10529      (N : Node_Id; Val : Node_Id);            -- Node4
10530
10531    procedure Set_Real_Range_Specification
10532      (N : Node_Id; Val : Node_Id);            -- Node4
10533
10534    procedure Set_Realval
10535      (N : Node_Id; Val : Ureal);              -- Ureal3
10536
10537    procedure Set_Reason
10538      (N : Node_Id; Val : Uint);               -- Uint3
10539
10540    procedure Set_Record_Extension_Part
10541      (N : Node_Id; Val : Node_Id);            -- Node3
10542
10543    procedure Set_Redundant_Use
10544      (N : Node_Id; Val : Boolean := True);    -- Flag13
10545
10546    procedure Set_Renaming_Exception
10547      (N : Node_Id; Val : Node_Id);            -- Node2
10548
10549    procedure Set_Result_Definition
10550      (N : Node_Id; Val : Node_Id);            -- Node4
10551
10552    procedure Set_Return_Object_Declarations
10553      (N : Node_Id; Val : List_Id);            -- List3
10554
10555    procedure Set_Return_Statement_Entity
10556      (N : Node_Id; Val : Node_Id);            -- Node5
10557
10558    procedure Set_Reverse_Present
10559      (N : Node_Id; Val : Boolean := True);    -- Flag15
10560
10561    procedure Set_Right_Opnd
10562      (N : Node_Id; Val : Node_Id);            -- Node3
10563
10564    procedure Set_Rounded_Result
10565      (N : Node_Id; Val : Boolean := True);    -- Flag18
10566
10567    procedure Set_SCIL_Controlling_Tag
10568      (N : Node_Id; Val : Node_Id);            -- Node5
10569
10570    procedure Set_SCIL_Entity
10571      (N : Node_Id; Val : Node_Id);            -- Node4
10572
10573    procedure Set_SCIL_Tag_Value
10574      (N : Node_Id; Val : Node_Id);            -- Node5
10575
10576    procedure Set_SCIL_Target_Prim
10577      (N : Node_Id; Val : Node_Id);            -- Node2
10578
10579    procedure Set_Scope
10580      (N : Node_Id; Val : Node_Id);            -- Node3
10581
10582    procedure Set_Select_Alternatives
10583      (N : Node_Id; Val : List_Id);            -- List1
10584
10585    procedure Set_Selector_Name
10586      (N : Node_Id; Val : Node_Id);            -- Node2
10587
10588    procedure Set_Selector_Names
10589      (N : Node_Id; Val : List_Id);            -- List1
10590
10591    procedure Set_Shift_Count_OK
10592      (N : Node_Id; Val : Boolean := True);    -- Flag4
10593
10594    procedure Set_Source_Type
10595      (N : Node_Id; Val : Entity_Id);          -- Node1
10596
10597    procedure Set_Specification
10598      (N : Node_Id; Val : Node_Id);            -- Node1
10599
10600    procedure Set_Split_PPC
10601      (N : Node_Id; Val : Boolean);            -- Flag17
10602
10603    procedure Set_Statements
10604      (N : Node_Id; Val : List_Id);            -- List3
10605
10606    procedure Set_Storage_Pool
10607      (N : Node_Id; Val : Node_Id);            -- Node1
10608
10609    procedure Set_Subpool_Handle_Name
10610      (N : Node_Id; Val : Node_Id);            -- Node4
10611
10612    procedure Set_Strval
10613      (N : Node_Id; Val : String_Id);          -- Str3
10614
10615    procedure Set_Subtype_Indication
10616      (N : Node_Id; Val : Node_Id);            -- Node5
10617
10618    procedure Set_Subtype_Mark
10619      (N : Node_Id; Val : Node_Id);            -- Node4
10620
10621    procedure Set_Subtype_Marks
10622      (N : Node_Id; Val : List_Id);            -- List2
10623
10624    procedure Set_Suppress_Assignment_Checks
10625      (N : Node_Id; Val : Boolean := True);    -- Flag18
10626
10627    procedure Set_Suppress_Loop_Warnings
10628      (N : Node_Id; Val : Boolean := True);    -- Flag17
10629
10630    procedure Set_Synchronized_Present
10631      (N : Node_Id; Val : Boolean := True);    -- Flag7
10632
10633    procedure Set_Tagged_Present
10634      (N : Node_Id; Val : Boolean := True);    -- Flag15
10635
10636    procedure Set_Target_Type
10637      (N : Node_Id; Val : Entity_Id);          -- Node2
10638
10639    procedure Set_Task_Definition
10640      (N : Node_Id; Val : Node_Id);            -- Node3
10641
10642    procedure Set_Task_Present
10643      (N : Node_Id; Val : Boolean := True);    -- Flag5
10644
10645    procedure Set_Then_Actions
10646      (N : Node_Id; Val : List_Id);            -- List2
10647
10648    procedure Set_Then_Statements
10649      (N : Node_Id; Val : List_Id);            -- List2
10650
10651    procedure Set_Treat_Fixed_As_Integer
10652      (N : Node_Id; Val : Boolean := True);    -- Flag14
10653
10654    procedure Set_Triggering_Alternative
10655      (N : Node_Id; Val : Node_Id);            -- Node1
10656
10657    procedure Set_Triggering_Statement
10658      (N : Node_Id; Val : Node_Id);            -- Node1
10659
10660    procedure Set_TSS_Elist
10661      (N : Node_Id; Val : Elist_Id);           -- Elist3
10662
10663    procedure Set_Type_Definition
10664      (N : Node_Id; Val : Node_Id);            -- Node3
10665
10666    procedure Set_Uneval_Old_Accept
10667      (N : Node_Id; Val : Boolean := True);    -- Flag7
10668
10669    procedure Set_Uneval_Old_Warn
10670      (N : Node_Id; Val : Boolean := True);    -- Flag18
10671
10672    procedure Set_Unit
10673      (N : Node_Id; Val : Node_Id);            -- Node2
10674
10675    procedure Set_Unknown_Discriminants_Present
10676      (N : Node_Id; Val : Boolean := True);    -- Flag13
10677
10678    procedure Set_Unreferenced_In_Spec
10679      (N : Node_Id; Val : Boolean := True);    -- Flag7
10680
10681    procedure Set_Variant_Part
10682      (N : Node_Id; Val : Node_Id);            -- Node4
10683
10684    procedure Set_Variants
10685      (N : Node_Id; Val : List_Id);            -- List1
10686
10687    procedure Set_Visible_Declarations
10688      (N : Node_Id; Val : List_Id);            -- List2
10689
10690    procedure Set_Uninitialized_Variable
10691      (N : Node_Id; Val : Node_Id);            -- Node3
10692
10693    procedure Set_Used_Operations
10694      (N : Node_Id; Val : Elist_Id);           -- Elist5
10695
10696    procedure Set_Was_Originally_Stub
10697      (N : Node_Id; Val : Boolean := True);    -- Flag13
10698
10699    procedure Set_Withed_Body
10700      (N : Node_Id; Val : Node_Id);            -- Node1
10701
10702    -------------------------
10703    -- Iterator Procedures --
10704    -------------------------
10705
10706    --  The call to Next_xxx (N) is equivalent to N := Next_xxx (N)
10707
10708    procedure Next_Entity       (N : in out Node_Id);
10709    procedure Next_Named_Actual (N : in out Node_Id);
10710    procedure Next_Rep_Item     (N : in out Node_Id);
10711    procedure Next_Use_Clause   (N : in out Node_Id);
10712
10713    -------------------------------------------
10714    -- Miscellaneous Tree Access Subprograms --
10715    -------------------------------------------
10716
10717    function End_Location (N : Node_Id) return Source_Ptr;
10718    --  N is an N_If_Statement or N_Case_Statement node, and this function
10719    --  returns the location of the IF token in the END IF sequence by
10720    --  translating the value of the End_Span field.
10721
10722    procedure Set_End_Location (N : Node_Id; S : Source_Ptr);
10723    --  N is an N_If_Statement or N_Case_Statement node. This procedure sets
10724    --  the End_Span field to correspond to the given value S. In other words,
10725    --  End_Span is set to the difference between S and Sloc (N), the starting
10726    --  location.
10727
10728    function Get_Pragma_Arg (Arg : Node_Id) return Node_Id;
10729    --  Given an argument to a pragma Arg, this function returns the expression
10730    --  for the argument. This is Arg itself, or, in the case where Arg is a
10731    --  pragma argument association node, the expression from this node.
10732
10733    --------------------------------
10734    -- Node_Kind Membership Tests --
10735    --------------------------------
10736
10737    --  The following functions allow a convenient notation for testing whether
10738    --  a Node_Kind value matches any one of a list of possible values. In each
10739    --  case True is returned if the given T argument is equal to any of the V
10740    --  arguments. Note that there is a similar set of functions defined in
10741    --  Atree where the first argument is a Node_Id whose Nkind field is tested.
10742
10743    function Nkind_In
10744      (T  : Node_Kind;
10745       V1 : Node_Kind;
10746       V2 : Node_Kind) return Boolean;
10747
10748    function Nkind_In
10749      (T  : Node_Kind;
10750       V1 : Node_Kind;
10751       V2 : Node_Kind;
10752       V3 : Node_Kind) return Boolean;
10753
10754    function Nkind_In
10755      (T  : Node_Kind;
10756       V1 : Node_Kind;
10757       V2 : Node_Kind;
10758       V3 : Node_Kind;
10759       V4 : Node_Kind) return Boolean;
10760
10761    function Nkind_In
10762      (T  : Node_Kind;
10763       V1 : Node_Kind;
10764       V2 : Node_Kind;
10765       V3 : Node_Kind;
10766       V4 : Node_Kind;
10767       V5 : Node_Kind) return Boolean;
10768
10769    function Nkind_In
10770      (T  : Node_Kind;
10771       V1 : Node_Kind;
10772       V2 : Node_Kind;
10773       V3 : Node_Kind;
10774       V4 : Node_Kind;
10775       V5 : Node_Kind;
10776       V6 : Node_Kind) return Boolean;
10777
10778    function Nkind_In
10779      (T  : Node_Kind;
10780       V1 : Node_Kind;
10781       V2 : Node_Kind;
10782       V3 : Node_Kind;
10783       V4 : Node_Kind;
10784       V5 : Node_Kind;
10785       V6 : Node_Kind;
10786       V7 : Node_Kind) return Boolean;
10787
10788    function Nkind_In
10789      (T  : Node_Kind;
10790       V1 : Node_Kind;
10791       V2 : Node_Kind;
10792       V3 : Node_Kind;
10793       V4 : Node_Kind;
10794       V5 : Node_Kind;
10795       V6 : Node_Kind;
10796       V7 : Node_Kind;
10797       V8 : Node_Kind) return Boolean;
10798
10799    function Nkind_In
10800      (T  : Node_Kind;
10801       V1 : Node_Kind;
10802       V2 : Node_Kind;
10803       V3 : Node_Kind;
10804       V4 : Node_Kind;
10805       V5 : Node_Kind;
10806       V6 : Node_Kind;
10807       V7 : Node_Kind;
10808       V8 : Node_Kind;
10809       V9 : Node_Kind) return Boolean;
10810
10811    pragma Inline (Nkind_In);
10812    --  Inline all above functions
10813
10814    -----------------------
10815    -- Utility Functions --
10816    -----------------------
10817
10818    function Pragma_Name (N : Node_Id) return Name_Id;
10819    pragma Inline (Pragma_Name);
10820    --  Convenient function to obtain Chars field of Pragma_Identifier
10821
10822    -----------------------------
10823    -- Syntactic Parent Tables --
10824    -----------------------------
10825
10826    --  These tables show for each node, and for each of the five fields,
10827    --  whether the corresponding field is syntactic (True) or semantic (False).
10828    --  Unused entries are also set to False.
10829
10830    subtype Field_Num is Natural range 1 .. 5;
10831
10832    Is_Syntactic_Field : constant array (Node_Kind, Field_Num) of Boolean := (
10833
10834    --  Following entries can be built automatically from the sinfo sources
10835    --  using the makeisf utility (currently this program is in spitbol).
10836
10837      N_Identifier =>
10838        (1 => True,    --  Chars (Name1)
10839         2 => False,   --  Original_Discriminant (Node2-Sem)
10840         3 => False,   --  unused
10841         4 => False,   --  Entity (Node4-Sem)
10842         5 => False),  --  Etype (Node5-Sem)
10843
10844      N_Integer_Literal =>
10845        (1 => False,   --  unused
10846         2 => False,   --  Original_Entity (Node2-Sem)
10847         3 => True,    --  Intval (Uint3)
10848         4 => False,   --  unused
10849         5 => False),  --  Etype (Node5-Sem)
10850
10851      N_Real_Literal =>
10852        (1 => False,   --  unused
10853         2 => False,   --  Original_Entity (Node2-Sem)
10854         3 => True,    --  Realval (Ureal3)
10855         4 => False,   --  Corresponding_Integer_Value (Uint4-Sem)
10856         5 => False),  --  Etype (Node5-Sem)
10857
10858      N_Character_Literal =>
10859        (1 => True,    --  Chars (Name1)
10860         2 => True,    --  Char_Literal_Value (Uint2)
10861         3 => False,   --  unused
10862         4 => False,   --  Entity (Node4-Sem)
10863         5 => False),  --  Etype (Node5-Sem)
10864
10865      N_String_Literal =>
10866        (1 => False,   --  unused
10867         2 => False,   --  unused
10868         3 => True,    --  Strval (Str3)
10869         4 => False,   --  unused
10870         5 => False),  --  Etype (Node5-Sem)
10871
10872      N_Pragma =>
10873        (1 => False,   --  Next_Pragma (Node1-Sem)
10874         2 => True,    --  Pragma_Argument_Associations (List2)
10875         3 => False,   --  unused
10876         4 => True,    --  Pragma_Identifier (Node4)
10877         5 => False),  --  Next_Rep_Item (Node5-Sem)
10878
10879      N_Pragma_Argument_Association =>
10880        (1 => True,    --  Chars (Name1)
10881         2 => False,   --  unused
10882         3 => True,    --  Expression (Node3)
10883         4 => False,   --  unused
10884         5 => False),  --  unused
10885
10886      N_Defining_Identifier =>
10887        (1 => True,    --  Chars (Name1)
10888         2 => False,   --  Next_Entity (Node2-Sem)
10889         3 => False,   --  Scope (Node3-Sem)
10890         4 => False,   --  unused
10891         5 => False),  --  Etype (Node5-Sem)
10892
10893      N_Full_Type_Declaration =>
10894        (1 => True,    --  Defining_Identifier (Node1)
10895         2 => False,   --  Incomplete_View (Node2-Sem)
10896         3 => True,    --  Type_Definition (Node3)
10897         4 => True,    --  Discriminant_Specifications (List4)
10898         5 => False),  --  unused
10899
10900      N_Subtype_Declaration =>
10901        (1 => True,    --  Defining_Identifier (Node1)
10902         2 => False,   --  unused
10903         3 => False,   --  unused
10904         4 => False,   --  Generic_Parent_Type (Node4-Sem)
10905         5 => True),   --  Subtype_Indication (Node5)
10906
10907      N_Subtype_Indication =>
10908        (1 => False,   --  unused
10909         2 => False,   --  unused
10910         3 => True,    --  Constraint (Node3)
10911         4 => True,    --  Subtype_Mark (Node4)
10912         5 => False),  --  Etype (Node5-Sem)
10913
10914      N_Object_Declaration =>
10915        (1 => True,    --  Defining_Identifier (Node1)
10916         2 => False,   --  Handler_List_Entry (Node2-Sem)
10917         3 => True,    --  Expression (Node3)
10918         4 => True,    --  Object_Definition (Node4)
10919         5 => False),  --  Corresponding_Generic_Association (Node5-Sem)
10920
10921      N_Number_Declaration =>
10922        (1 => True,    --  Defining_Identifier (Node1)
10923         2 => False,   --  unused
10924         3 => True,    --  Expression (Node3)
10925         4 => False,   --  unused
10926         5 => False),  --  unused
10927
10928      N_Derived_Type_Definition =>
10929        (1 => False,   --  unused
10930         2 => True,    --  Interface_List (List2)
10931         3 => True,    --  Record_Extension_Part (Node3)
10932         4 => False,   --  unused
10933         5 => True),   --  Subtype_Indication (Node5)
10934
10935      N_Range_Constraint =>
10936        (1 => False,   --  unused
10937         2 => False,   --  unused
10938         3 => False,   --  unused
10939         4 => True,    --  Range_Expression (Node4)
10940         5 => False),  --  unused
10941
10942      N_Range =>
10943        (1 => True,    --  Low_Bound (Node1)
10944         2 => True,    --  High_Bound (Node2)
10945         3 => False,   --  unused
10946         4 => False,   --  unused
10947         5 => False),  --  Etype (Node5-Sem)
10948
10949      N_Enumeration_Type_Definition =>
10950        (1 => True,    --  Literals (List1)
10951         2 => False,   --  unused
10952         3 => False,   --  unused
10953         4 => True,    --  End_Label (Node4)
10954         5 => False),  --  unused
10955
10956      N_Defining_Character_Literal =>
10957        (1 => True,    --  Chars (Name1)
10958         2 => False,   --  Next_Entity (Node2-Sem)
10959         3 => False,   --  Scope (Node3-Sem)
10960         4 => False,   --  unused
10961         5 => False),  --  Etype (Node5-Sem)
10962
10963      N_Signed_Integer_Type_Definition =>
10964        (1 => True,    --  Low_Bound (Node1)
10965         2 => True,    --  High_Bound (Node2)
10966         3 => False,   --  unused
10967         4 => False,   --  unused
10968         5 => False),  --  unused
10969
10970      N_Modular_Type_Definition =>
10971        (1 => False,   --  unused
10972         2 => False,   --  unused
10973         3 => True,    --  Expression (Node3)
10974         4 => False,   --  unused
10975         5 => False),  --  unused
10976
10977      N_Floating_Point_Definition =>
10978        (1 => False,   --  unused
10979         2 => True,    --  Digits_Expression (Node2)
10980         3 => False,   --  unused
10981         4 => True,    --  Real_Range_Specification (Node4)
10982         5 => False),  --  unused
10983
10984      N_Real_Range_Specification =>
10985        (1 => True,    --  Low_Bound (Node1)
10986         2 => True,    --  High_Bound (Node2)
10987         3 => False,   --  unused
10988         4 => False,   --  unused
10989         5 => False),  --  unused
10990
10991      N_Ordinary_Fixed_Point_Definition =>
10992        (1 => False,   --  unused
10993         2 => False,   --  unused
10994         3 => True,    --  Delta_Expression (Node3)
10995         4 => True,    --  Real_Range_Specification (Node4)
10996         5 => False),  --  unused
10997
10998      N_Decimal_Fixed_Point_Definition =>
10999        (1 => False,   --  unused
11000         2 => True,    --  Digits_Expression (Node2)
11001         3 => True,    --  Delta_Expression (Node3)
11002         4 => True,    --  Real_Range_Specification (Node4)
11003         5 => False),  --  unused
11004
11005      N_Digits_Constraint =>
11006        (1 => False,   --  unused
11007         2 => True,    --  Digits_Expression (Node2)
11008         3 => False,   --  unused
11009         4 => True,    --  Range_Constraint (Node4)
11010         5 => False),  --  unused
11011
11012      N_Unconstrained_Array_Definition =>
11013        (1 => False,   --  unused
11014         2 => True,    --  Subtype_Marks (List2)
11015         3 => False,   --  unused
11016         4 => True,    --  Component_Definition (Node4)
11017         5 => False),  --  unused
11018
11019      N_Constrained_Array_Definition =>
11020        (1 => False,   --  unused
11021         2 => True,    --  Discrete_Subtype_Definitions (List2)
11022         3 => False,   --  unused
11023         4 => True,    --  Component_Definition (Node4)
11024         5 => False),  --  unused
11025
11026      N_Component_Definition =>
11027        (1 => False,   --  unused
11028         2 => False,   --  unused
11029         3 => True,    --  Access_Definition (Node3)
11030         4 => False,   --  unused
11031         5 => True),   --  Subtype_Indication (Node5)
11032
11033      N_Discriminant_Specification =>
11034        (1 => True,    --  Defining_Identifier (Node1)
11035         2 => False,   --  unused
11036         3 => True,    --  Expression (Node3)
11037         4 => False,   --  unused
11038         5 => True),   --  Discriminant_Type (Node5)
11039
11040      N_Index_Or_Discriminant_Constraint =>
11041        (1 => True,    --  Constraints (List1)
11042         2 => False,   --  unused
11043         3 => False,   --  unused
11044         4 => False,   --  unused
11045         5 => False),  --  unused
11046
11047      N_Discriminant_Association =>
11048        (1 => True,    --  Selector_Names (List1)
11049         2 => False,   --  unused
11050         3 => True,    --  Expression (Node3)
11051         4 => False,   --  unused
11052         5 => False),  --  unused
11053
11054      N_Record_Definition =>
11055        (1 => True,    --  Component_List (Node1)
11056         2 => True,    --  Interface_List (List2)
11057         3 => False,   --  unused
11058         4 => True,    --  End_Label (Node4)
11059         5 => False),  --  unused
11060
11061      N_Component_List =>
11062        (1 => False,   --  unused
11063         2 => False,   --  unused
11064         3 => True,    --  Component_Items (List3)
11065         4 => True,    --  Variant_Part (Node4)
11066         5 => False),  --  unused
11067
11068      N_Component_Declaration =>
11069        (1 => True,    --  Defining_Identifier (Node1)
11070         2 => False,   --  unused
11071         3 => True,    --  Expression (Node3)
11072         4 => True,    --  Component_Definition (Node4)
11073         5 => False),  --  unused
11074
11075      N_Variant_Part =>
11076        (1 => True,    --  Variants (List1)
11077         2 => True,    --  Name (Node2)
11078         3 => False,   --  unused
11079         4 => False,   --  unused
11080         5 => False),  --  unused
11081
11082      N_Variant =>
11083        (1 => True,    --  Component_List (Node1)
11084         2 => False,   --  Enclosing_Variant (Node2-Sem)
11085         3 => False,   --  Present_Expr (Uint3-Sem)
11086         4 => True,    --  Discrete_Choices (List4)
11087         5 => False),  --  Dcheck_Function (Node5-Sem)
11088
11089      N_Others_Choice =>
11090        (1 => False,   --  Others_Discrete_Choices (List1-Sem)
11091         2 => False,   --  unused
11092         3 => False,   --  unused
11093         4 => False,   --  unused
11094         5 => False),  --  unused
11095
11096      N_Access_To_Object_Definition =>
11097        (1 => False,   --  unused
11098         2 => False,   --  unused
11099         3 => False,   --  unused
11100         4 => False,   --  unused
11101         5 => True),   --  Subtype_Indication (Node5)
11102
11103      N_Access_Function_Definition =>
11104        (1 => False,   --  unused
11105         2 => False,   --  unused
11106         3 => True,    --  Parameter_Specifications (List3)
11107         4 => True,    --  Result_Definition (Node4)
11108         5 => False),  --  unused
11109
11110      N_Access_Procedure_Definition =>
11111        (1 => False,   --  unused
11112         2 => False,   --  unused
11113         3 => True,    --  Parameter_Specifications (List3)
11114         4 => False,   --  unused
11115         5 => False),  --  unused
11116
11117      N_Access_Definition =>
11118        (1 => False,   --  unused
11119         2 => False,   --  unused
11120         3 => True,    --  Access_To_Subprogram_Definition (Node3)
11121         4 => True,    --  Subtype_Mark (Node4)
11122         5 => False),  --  unused
11123
11124      N_Incomplete_Type_Declaration =>
11125        (1 => True,    --  Defining_Identifier (Node1)
11126         2 => False,   --  unused
11127         3 => False,   --  unused
11128         4 => True,    --  Discriminant_Specifications (List4)
11129         5 => False),  --  Premature_Use
11130
11131      N_Explicit_Dereference =>
11132        (1 => False,   --  unused
11133         2 => False,   --  unused
11134         3 => True,    --  Prefix (Node3)
11135         4 => False,   --  Actual_Designated_Subtype (Node4-Sem)
11136         5 => False),  --  Etype (Node5-Sem)
11137
11138      N_Indexed_Component =>
11139        (1 => True,    --  Expressions (List1)
11140         2 => False,   --  unused
11141         3 => True,    --  Prefix (Node3)
11142         4 => False,   --  Generalized_Indexing (Node4-Sem)
11143         5 => False),  --  Etype (Node5-Sem)
11144
11145      N_Slice =>
11146        (1 => False,   --  unused
11147         2 => False,   --  unused
11148         3 => True,    --  Prefix (Node3)
11149         4 => True,    --  Discrete_Range (Node4)
11150         5 => False),  --  Etype (Node5-Sem)
11151
11152      N_Selected_Component =>
11153        (1 => False,   --  unused
11154         2 => True,    --  Selector_Name (Node2)
11155         3 => True,    --  Prefix (Node3)
11156         4 => False,   --  unused
11157         5 => False),  --  Etype (Node5-Sem)
11158
11159      N_Attribute_Reference =>
11160        (1 => True,    --  Expressions (List1)
11161         2 => True,    --  Attribute_Name (Name2)
11162         3 => True,    --  Prefix (Node3)
11163         4 => False,   --  Entity (Node4-Sem)
11164         5 => False),  --  Etype (Node5-Sem)
11165
11166      N_Aggregate =>
11167        (1 => True,    --  Expressions (List1)
11168         2 => True,    --  Component_Associations (List2)
11169         3 => False,   --  Aggregate_Bounds (Node3-Sem)
11170         4 => False,   --  unused
11171         5 => False),  --  Etype (Node5-Sem)
11172
11173      N_Component_Association =>
11174        (1 => True,    --  Choices (List1)
11175         2 => False,   --  Loop_Actions (List2-Sem)
11176         3 => True,    --  Expression (Node3)
11177         4 => False,   --  unused
11178         5 => False),  --  unused
11179
11180      N_Extension_Aggregate =>
11181        (1 => True,    --  Expressions (List1)
11182         2 => True,    --  Component_Associations (List2)
11183         3 => True,    --  Ancestor_Part (Node3)
11184         4 => False,   --  unused
11185         5 => False),  --  Etype (Node5-Sem)
11186
11187      N_Null =>
11188        (1 => False,   --  unused
11189         2 => False,   --  unused
11190         3 => False,   --  unused
11191         4 => False,   --  unused
11192         5 => False),  --  Etype (Node5-Sem)
11193
11194      N_And_Then =>
11195        (1 => False,   --  Actions (List1-Sem)
11196         2 => True,    --  Left_Opnd (Node2)
11197         3 => True,    --  Right_Opnd (Node3)
11198         4 => False,   --  unused
11199         5 => False),  --  Etype (Node5-Sem)
11200
11201      N_Or_Else =>
11202        (1 => False,   --  Actions (List1-Sem)
11203         2 => True,    --  Left_Opnd (Node2)
11204         3 => True,    --  Right_Opnd (Node3)
11205         4 => False,   --  unused
11206         5 => False),  --  Etype (Node5-Sem)
11207
11208      N_In =>
11209        (1 => False,   --  unused
11210         2 => True,    --  Left_Opnd (Node2)
11211         3 => True,    --  Right_Opnd (Node3)
11212         4 => True,    --  Alternatives (List4)
11213         5 => False),  --  Etype (Node5-Sem)
11214
11215      N_Not_In =>
11216        (1 => False,   --  unused
11217         2 => True,    --  Left_Opnd (Node2)
11218         3 => True,    --  Right_Opnd (Node3)
11219         4 => True,    --  Alternatives (List4)
11220         5 => False),  --  Etype (Node5-Sem)
11221
11222      N_Op_And =>
11223        (1 => True,    --  Chars (Name1)
11224         2 => True,    --  Left_Opnd (Node2)
11225         3 => True,    --  Right_Opnd (Node3)
11226         4 => False,   --  Entity (Node4-Sem)
11227         5 => False),  --  Etype (Node5-Sem)
11228
11229      N_Op_Or =>
11230        (1 => True,    --  Chars (Name1)
11231         2 => True,    --  Left_Opnd (Node2)
11232         3 => True,    --  Right_Opnd (Node3)
11233         4 => False,   --  Entity (Node4-Sem)
11234         5 => False),  --  Etype (Node5-Sem)
11235
11236      N_Op_Xor =>
11237        (1 => True,    --  Chars (Name1)
11238         2 => True,    --  Left_Opnd (Node2)
11239         3 => True,    --  Right_Opnd (Node3)
11240         4 => False,   --  Entity (Node4-Sem)
11241         5 => False),  --  Etype (Node5-Sem)
11242
11243      N_Op_Eq =>
11244        (1 => True,    --  Chars (Name1)
11245         2 => True,    --  Left_Opnd (Node2)
11246         3 => True,    --  Right_Opnd (Node3)
11247         4 => False,   --  Entity (Node4-Sem)
11248         5 => False),  --  Etype (Node5-Sem)
11249
11250      N_Op_Ne =>
11251        (1 => True,    --  Chars (Name1)
11252         2 => True,    --  Left_Opnd (Node2)
11253         3 => True,    --  Right_Opnd (Node3)
11254         4 => False,   --  Entity (Node4-Sem)
11255         5 => False),  --  Etype (Node5-Sem)
11256
11257      N_Op_Lt =>
11258        (1 => True,    --  Chars (Name1)
11259         2 => True,    --  Left_Opnd (Node2)
11260         3 => True,    --  Right_Opnd (Node3)
11261         4 => False,   --  Entity (Node4-Sem)
11262         5 => False),  --  Etype (Node5-Sem)
11263
11264      N_Op_Le =>
11265        (1 => True,    --  Chars (Name1)
11266         2 => True,    --  Left_Opnd (Node2)
11267         3 => True,    --  Right_Opnd (Node3)
11268         4 => False,   --  Entity (Node4-Sem)
11269         5 => False),  --  Etype (Node5-Sem)
11270
11271      N_Op_Gt =>
11272        (1 => True,    --  Chars (Name1)
11273         2 => True,    --  Left_Opnd (Node2)
11274         3 => True,    --  Right_Opnd (Node3)
11275         4 => False,   --  Entity (Node4-Sem)
11276         5 => False),  --  Etype (Node5-Sem)
11277
11278      N_Op_Ge =>
11279        (1 => True,    --  Chars (Name1)
11280         2 => True,    --  Left_Opnd (Node2)
11281         3 => True,    --  Right_Opnd (Node3)
11282         4 => False,   --  Entity (Node4-Sem)
11283         5 => False),  --  Etype (Node5-Sem)
11284
11285      N_Op_Add =>
11286        (1 => True,    --  Chars (Name1)
11287         2 => True,    --  Left_Opnd (Node2)
11288         3 => True,    --  Right_Opnd (Node3)
11289         4 => False,   --  Entity (Node4-Sem)
11290         5 => False),  --  Etype (Node5-Sem)
11291
11292      N_Op_Subtract =>
11293        (1 => True,    --  Chars (Name1)
11294         2 => True,    --  Left_Opnd (Node2)
11295         3 => True,    --  Right_Opnd (Node3)
11296         4 => False,   --  Entity (Node4-Sem)
11297         5 => False),  --  Etype (Node5-Sem)
11298
11299      N_Op_Concat =>
11300        (1 => True,    --  Chars (Name1)
11301         2 => True,    --  Left_Opnd (Node2)
11302         3 => True,    --  Right_Opnd (Node3)
11303         4 => False,   --  Entity (Node4-Sem)
11304         5 => False),  --  Etype (Node5-Sem)
11305
11306      N_Op_Multiply =>
11307        (1 => True,    --  Chars (Name1)
11308         2 => True,    --  Left_Opnd (Node2)
11309         3 => True,    --  Right_Opnd (Node3)
11310         4 => False,   --  Entity (Node4-Sem)
11311         5 => False),  --  Etype (Node5-Sem)
11312
11313      N_Op_Divide =>
11314        (1 => True,    --  Chars (Name1)
11315         2 => True,    --  Left_Opnd (Node2)
11316         3 => True,    --  Right_Opnd (Node3)
11317         4 => False,   --  Entity (Node4-Sem)
11318         5 => False),  --  Etype (Node5-Sem)
11319
11320      N_Op_Mod =>
11321        (1 => True,    --  Chars (Name1)
11322         2 => True,    --  Left_Opnd (Node2)
11323         3 => True,    --  Right_Opnd (Node3)
11324         4 => False,   --  Entity (Node4-Sem)
11325         5 => False),  --  Etype (Node5-Sem)
11326
11327      N_Op_Rem =>
11328        (1 => True,    --  Chars (Name1)
11329         2 => True,    --  Left_Opnd (Node2)
11330         3 => True,    --  Right_Opnd (Node3)
11331         4 => False,   --  Entity (Node4-Sem)
11332         5 => False),  --  Etype (Node5-Sem)
11333
11334      N_Op_Expon =>
11335        (1 => True,    --  Chars (Name1)
11336         2 => True,    --  Left_Opnd (Node2)
11337         3 => True,    --  Right_Opnd (Node3)
11338         4 => False,   --  Entity (Node4-Sem)
11339         5 => False),  --  Etype (Node5-Sem)
11340
11341      N_Op_Plus =>
11342        (1 => True,    --  Chars (Name1)
11343         2 => False,   --  unused
11344         3 => True,    --  Right_Opnd (Node3)
11345         4 => False,   --  Entity (Node4-Sem)
11346         5 => False),  --  Etype (Node5-Sem)
11347
11348      N_Op_Minus =>
11349        (1 => True,    --  Chars (Name1)
11350         2 => False,   --  unused
11351         3 => True,    --  Right_Opnd (Node3)
11352         4 => False,   --  Entity (Node4-Sem)
11353         5 => False),  --  Etype (Node5-Sem)
11354
11355      N_Op_Abs =>
11356        (1 => True,    --  Chars (Name1)
11357         2 => False,   --  unused
11358         3 => True,    --  Right_Opnd (Node3)
11359         4 => False,   --  Entity (Node4-Sem)
11360         5 => False),  --  Etype (Node5-Sem)
11361
11362      N_Op_Not =>
11363        (1 => True,    --  Chars (Name1)
11364         2 => False,   --  unused
11365         3 => True,    --  Right_Opnd (Node3)
11366         4 => False,   --  Entity (Node4-Sem)
11367         5 => False),  --  Etype (Node5-Sem)
11368
11369      N_Type_Conversion =>
11370        (1 => False,   --  unused
11371         2 => False,   --  unused
11372         3 => True,    --  Expression (Node3)
11373         4 => True,    --  Subtype_Mark (Node4)
11374         5 => False),  --  Etype (Node5-Sem)
11375
11376      N_Qualified_Expression =>
11377        (1 => False,   --  unused
11378         2 => False,   --  unused
11379         3 => True,    --  Expression (Node3)
11380         4 => True,    --  Subtype_Mark (Node4)
11381         5 => False),  --  Etype (Node5-Sem)
11382
11383      N_Quantified_Expression =>
11384        (1 => True,    --  Condition (Node1)
11385         2 => True,    --  Iterator_Specification
11386         3 => False,   --  unused
11387         4 => True,    --  Loop_Parameter_Specification (Node4)
11388         5 => False),  --  Etype (Node5-Sem)
11389
11390      N_Allocator =>
11391        (1 => False,   --  Storage_Pool (Node1-Sem)
11392         2 => False,   --  Procedure_To_Call (Node2-Sem)
11393         3 => True,    --  Expression (Node3)
11394         4 => True,    --  Subpool_Handle_Name (Node4)
11395         5 => False),  --  Etype (Node5-Sem)
11396
11397      N_Null_Statement =>
11398        (1 => False,   --  unused
11399         2 => False,   --  unused
11400         3 => False,   --  unused
11401         4 => False,   --  unused
11402         5 => False),  --  unused
11403
11404      N_Label =>
11405        (1 => True,    --  Identifier (Node1)
11406         2 => False,   --  unused
11407         3 => False,   --  unused
11408         4 => False,   --  unused
11409         5 => False),  --  unused
11410
11411      N_Assignment_Statement =>
11412        (1 => False,   --  unused
11413         2 => True,    --  Name (Node2)
11414         3 => True,    --  Expression (Node3)
11415         4 => False,   --  unused
11416         5 => False),  --  unused
11417
11418      N_If_Statement =>
11419        (1 => True,    --  Condition (Node1)
11420         2 => True,    --  Then_Statements (List2)
11421         3 => True,    --  Elsif_Parts (List3)
11422         4 => True,    --  Else_Statements (List4)
11423         5 => True),   --  End_Span (Uint5)
11424
11425      N_Elsif_Part =>
11426        (1 => True,    --  Condition (Node1)
11427         2 => True,    --  Then_Statements (List2)
11428         3 => False,   --  Condition_Actions (List3-Sem)
11429         4 => False,   --  unused
11430         5 => False),  --  unused
11431
11432      N_Case_Expression =>
11433        (1 => False,   --  unused
11434         2 => False,   --  unused
11435         3 => True,    --  Expression (Node3)
11436         4 => True,    --  Alternatives (List4)
11437         5 => False),  --  unused
11438
11439      N_Case_Expression_Alternative =>
11440        (1 => False,   --  Actions (List1-Sem)
11441         2 => False,   --  unused
11442         3 => True,    --  Statements (List3)
11443         4 => True,    --  Expression (Node4)
11444         5 => False),  --  unused
11445
11446      N_Case_Statement =>
11447        (1 => False,   --  unused
11448         2 => False,   --  unused
11449         3 => True,    --  Expression (Node3)
11450         4 => True,    --  Alternatives (List4)
11451         5 => True),   --  End_Span (Uint5)
11452
11453      N_Case_Statement_Alternative =>
11454        (1 => False,   --  unused
11455         2 => False,   --  unused
11456         3 => True,    --  Statements (List3)
11457         4 => True,    --  Discrete_Choices (List4)
11458         5 => False),  --  unused
11459
11460      N_Loop_Statement =>
11461        (1 => True,    --  Identifier (Node1)
11462         2 => True,    --  Iteration_Scheme (Node2)
11463         3 => True,    --  Statements (List3)
11464         4 => True,    --  End_Label (Node4)
11465         5 => False),  --  unused
11466
11467      N_Iteration_Scheme =>
11468        (1 => True,    --  Condition (Node1)
11469         2 => True,    --  Iterator_Specification (Node2)
11470         3 => False,   --  Condition_Actions (List3-Sem)
11471         4 => True,    --  Loop_Parameter_Specification (Node4)
11472         5 => False),  --  unused
11473
11474      N_Loop_Parameter_Specification =>
11475        (1 => True,    --  Defining_Identifier (Node1)
11476         2 => False,   --  unused
11477         3 => False,   --  unused
11478         4 => True,    --  Discrete_Subtype_Definition (Node4)
11479         5 => False),  --  unused
11480
11481      N_Iterator_Specification =>
11482        (1 => True,    --  Defining_Identifier (Node1)
11483         2 => True,    --  Name (Node2)
11484         3 => False,   --  Unused
11485         4 => False,   --  Unused
11486         5 => True),   --  Subtype_Indication (Node5)
11487
11488      N_Block_Statement =>
11489        (1 => True,    --  Identifier (Node1)
11490         2 => True,    --  Declarations (List2)
11491         3 => False,   --  Activation_Chain_Entity (Node3-Sem)
11492         4 => True,    --  Handled_Statement_Sequence (Node4)
11493         5 => False),  --  unused
11494
11495      N_Exit_Statement =>
11496        (1 => True,    --  Condition (Node1)
11497         2 => True,    --  Name (Node2)
11498         3 => False,   --  unused
11499         4 => False,   --  unused
11500         5 => False),  --  unused
11501
11502      N_Goto_Statement =>
11503        (1 => False,   --  unused
11504         2 => True,    --  Name (Node2)
11505         3 => False,   --  unused
11506         4 => False,   --  unused
11507         5 => False),  --  unused
11508
11509      N_Subprogram_Declaration =>
11510        (1 => True,    --  Specification (Node1)
11511         2 => False,   --  unused
11512         3 => False,   --  Body_To_Inline (Node3-Sem)
11513         4 => False,   --  Parent_Spec (Node4-Sem)
11514         5 => False),  --  Corresponding_Body (Node5-Sem)
11515
11516      N_Abstract_Subprogram_Declaration =>
11517        (1 => True,    --  Specification (Node1)
11518         2 => False,   --  unused
11519         3 => False,   --  unused
11520         4 => False,   --  unused
11521         5 => False),  --  unused
11522
11523      N_Function_Specification =>
11524        (1 => True,    --  Defining_Unit_Name (Node1)
11525         2 => False,   --  Elaboration_Boolean (Node2-Sem)
11526         3 => True,    --  Parameter_Specifications (List3)
11527         4 => True,    --  Result_Definition (Node4)
11528         5 => False),  --  Generic_Parent (Node5-Sem)
11529
11530      N_Procedure_Specification =>
11531        (1 => True,    --  Defining_Unit_Name (Node1)
11532         2 => False,   --  Elaboration_Boolean (Node2-Sem)
11533         3 => True,    --  Parameter_Specifications (List3)
11534         4 => False,   --  unused
11535         5 => False),  --  Generic_Parent (Node5-Sem)
11536
11537      N_Designator =>
11538        (1 => True,    --  Identifier (Node1)
11539         2 => True,    --  Name (Node2)
11540         3 => False,   --  unused
11541         4 => False,   --  unused
11542         5 => False),  --  unused
11543
11544      N_Defining_Program_Unit_Name =>
11545        (1 => True,    --  Defining_Identifier (Node1)
11546         2 => True,    --  Name (Node2)
11547         3 => False,   --  unused
11548         4 => False,   --  unused
11549         5 => False),  --  unused
11550
11551      N_Operator_Symbol =>
11552        (1 => True,    --  Chars (Name1)
11553         2 => False,   --  unused
11554         3 => True,    --  Strval (Str3)
11555         4 => False,   --  Entity (Node4-Sem)
11556         5 => False),  --  Etype (Node5-Sem)
11557
11558      N_Defining_Operator_Symbol =>
11559        (1 => True,    --  Chars (Name1)
11560         2 => False,   --  Next_Entity (Node2-Sem)
11561         3 => False,   --  Scope (Node3-Sem)
11562         4 => False,   --  unused
11563         5 => False),  --  Etype (Node5-Sem)
11564
11565      N_Parameter_Specification =>
11566        (1 => True,    --  Defining_Identifier (Node1)
11567         2 => True,    --  Parameter_Type (Node2)
11568         3 => True,    --  Expression (Node3)
11569         4 => False,   --  unused
11570         5 => False),  --  Default_Expression (Node5-Sem)
11571
11572      N_Subprogram_Body =>
11573        (1 => True,    --  Specification (Node1)
11574         2 => True,    --  Declarations (List2)
11575         3 => False,   --  Activation_Chain_Entity (Node3-Sem)
11576         4 => True,    --  Handled_Statement_Sequence (Node4)
11577         5 => False),  --  Corresponding_Spec (Node5-Sem)
11578
11579      N_Expression_Function =>
11580        (1 => True,    --  Specification (Node1)
11581         2 => False,   --  unused
11582         3 => True,    --  Expression (Node3)
11583         4 => False,   --  unused
11584         5 => False),  --  unused
11585
11586      N_Procedure_Call_Statement =>
11587        (1 => False,   --  Controlling_Argument (Node1-Sem)
11588         2 => True,    --  Name (Node2)
11589         3 => True,    --  Parameter_Associations (List3)
11590         4 => False,   --  First_Named_Actual (Node4-Sem)
11591         5 => False),  --  Etype (Node5-Sem)
11592
11593      N_Function_Call =>
11594        (1 => False,   --  Controlling_Argument (Node1-Sem)
11595         2 => True,    --  Name (Node2)
11596         3 => True,    --  Parameter_Associations (List3)
11597         4 => False,   --  First_Named_Actual (Node4-Sem)
11598         5 => False),  --  Etype (Node5-Sem)
11599
11600      N_Parameter_Association =>
11601        (1 => False,   --  unused
11602         2 => True,    --  Selector_Name (Node2)
11603         3 => True,    --  Explicit_Actual_Parameter (Node3)
11604         4 => False,   --  Next_Named_Actual (Node4-Sem)
11605         5 => False),  --  unused
11606
11607      N_Simple_Return_Statement =>
11608        (1 => False,   --  Storage_Pool (Node1-Sem)
11609         2 => False,   --  Procedure_To_Call (Node2-Sem)
11610         3 => True,    --  Expression (Node3)
11611         4 => False,   --  unused
11612         5 => False),  --  Return_Statement_Entity (Node5-Sem)
11613
11614      N_Extended_Return_Statement =>
11615        (1 => False,   --  Storage_Pool (Node1-Sem)
11616         2 => False,   --  Procedure_To_Call (Node2-Sem)
11617         3 => True,    --  Return_Object_Declarations (List3)
11618         4 => True,    --  Handled_Statement_Sequence (Node4)
11619         5 => False),  --  Return_Statement_Entity (Node5-Sem)
11620
11621      N_Package_Declaration =>
11622        (1 => True,    --  Specification (Node1)
11623         2 => False,   --  unused
11624         3 => False,   --  Activation_Chain_Entity (Node3-Sem)
11625         4 => False,   --  Parent_Spec (Node4-Sem)
11626         5 => False),  --  Corresponding_Body (Node5-Sem)
11627
11628      N_Package_Specification =>
11629        (1 => True,    --  Defining_Unit_Name (Node1)
11630         2 => True,    --  Visible_Declarations (List2)
11631         3 => True,    --  Private_Declarations (List3)
11632         4 => True,    --  End_Label (Node4)
11633         5 => False),  --  Generic_Parent (Node5-Sem)
11634
11635      N_Package_Body =>
11636        (1 => True,    --  Defining_Unit_Name (Node1)
11637         2 => True,    --  Declarations (List2)
11638         3 => False,   --  unused
11639         4 => True,    --  Handled_Statement_Sequence (Node4)
11640         5 => False),  --  Corresponding_Spec (Node5-Sem)
11641
11642      N_Private_Type_Declaration =>
11643        (1 => True,    --  Defining_Identifier (Node1)
11644         2 => False,   --  unused
11645         3 => False,   --  unused
11646         4 => True,    --  Discriminant_Specifications (List4)
11647         5 => False),  --  unused
11648
11649      N_Private_Extension_Declaration =>
11650        (1 => True,    --  Defining_Identifier (Node1)
11651         2 => True,    --  Interface_List (List2)
11652         3 => False,   --  unused
11653         4 => True,    --  Discriminant_Specifications (List4)
11654         5 => True),   --  Subtype_Indication (Node5)
11655
11656      N_Use_Package_Clause =>
11657        (1 => False,   --  unused
11658         2 => True,    --  Names (List2)
11659         3 => False,   --  Next_Use_Clause (Node3-Sem)
11660         4 => False,   --  Hidden_By_Use_Clause (Elist4-Sem)
11661         5 => False),  --  unused
11662
11663      N_Use_Type_Clause =>
11664        (1 => False,   --  unused
11665         2 => True,    --  Subtype_Marks (List2)
11666         3 => False,   --  Next_Use_Clause (Node3-Sem)
11667         4 => False,   --  Hidden_By_Use_Clause (Elist4-Sem)
11668         5 => False),  --  unused
11669
11670      N_Object_Renaming_Declaration =>
11671        (1 => True,    --  Defining_Identifier (Node1)
11672         2 => True,    --  Name (Node2)
11673         3 => True,    --  Access_Definition (Node3)
11674         4 => True,    --  Subtype_Mark (Node4)
11675         5 => False),  --  Corresponding_Generic_Association (Node5-Sem)
11676
11677      N_Exception_Renaming_Declaration =>
11678        (1 => True,    --  Defining_Identifier (Node1)
11679         2 => True,    --  Name (Node2)
11680         3 => False,   --  unused
11681         4 => False,   --  unused
11682         5 => False),  --  unused
11683
11684      N_Package_Renaming_Declaration =>
11685        (1 => True,    --  Defining_Unit_Name (Node1)
11686         2 => True,    --  Name (Node2)
11687         3 => False,   --  unused
11688         4 => False,   --  Parent_Spec (Node4-Sem)
11689         5 => False),  --  unused
11690
11691      N_Subprogram_Renaming_Declaration =>
11692        (1 => True,    --  Specification (Node1)
11693         2 => True,    --  Name (Node2)
11694         3 => False,   --  Corresponding_Formal_Spec (Node3-Sem)
11695         4 => False,   --  Parent_Spec (Node4-Sem)
11696         5 => False),  --  Corresponding_Spec (Node5-Sem)
11697
11698      N_Generic_Package_Renaming_Declaration =>
11699        (1 => True,    --  Defining_Unit_Name (Node1)
11700         2 => True,    --  Name (Node2)
11701         3 => False,   --  unused
11702         4 => False,   --  Parent_Spec (Node4-Sem)
11703         5 => False),  --  unused
11704
11705      N_Generic_Procedure_Renaming_Declaration =>
11706        (1 => True,    --  Defining_Unit_Name (Node1)
11707         2 => True,    --  Name (Node2)
11708         3 => False,   --  unused
11709         4 => False,   --  Parent_Spec (Node4-Sem)
11710         5 => False),  --  unused
11711
11712      N_Generic_Function_Renaming_Declaration =>
11713        (1 => True,    --  Defining_Unit_Name (Node1)
11714         2 => True,    --  Name (Node2)
11715         3 => False,   --  unused
11716         4 => False,   --  Parent_Spec (Node4-Sem)
11717         5 => False),  --  unused
11718
11719      N_Task_Type_Declaration =>
11720        (1 => True,    --  Defining_Identifier (Node1)
11721         2 => True,    --  Interface_List (List2)
11722         3 => True,    --  Task_Definition (Node3)
11723         4 => True,    --  Discriminant_Specifications (List4)
11724         5 => False),  --  Corresponding_Body (Node5-Sem)
11725
11726      N_Single_Task_Declaration =>
11727        (1 => True,    --  Defining_Identifier (Node1)
11728         2 => True,    --  Interface_List (List2)
11729         3 => True,    --  Task_Definition (Node3)
11730         4 => False,   --  unused
11731         5 => False),  --  unused
11732
11733      N_Task_Definition =>
11734        (1 => False,   --  unused
11735         2 => True,    --  Visible_Declarations (List2)
11736         3 => True,    --  Private_Declarations (List3)
11737         4 => True,    --  End_Label (Node4)
11738         5 => False),  --  unused
11739
11740      N_Task_Body =>
11741        (1 => True,    --  Defining_Identifier (Node1)
11742         2 => True,    --  Declarations (List2)
11743         3 => False,   --  Activation_Chain_Entity (Node3-Sem)
11744         4 => True,    --  Handled_Statement_Sequence (Node4)
11745         5 => False),  --  Corresponding_Spec (Node5-Sem)
11746
11747      N_Protected_Type_Declaration =>
11748        (1 => True,    --  Defining_Identifier (Node1)
11749         2 => True,    --  Interface_List (List2)
11750         3 => True,    --  Protected_Definition (Node3)
11751         4 => True,    --  Discriminant_Specifications (List4)
11752         5 => False),  --  Corresponding_Body (Node5-Sem)
11753
11754      N_Single_Protected_Declaration =>
11755        (1 => True,    --  Defining_Identifier (Node1)
11756         2 => True,    --  Interface_List (List2)
11757         3 => True,    --  Protected_Definition (Node3)
11758         4 => False,   --  unused
11759         5 => False),  --  unused
11760
11761      N_Protected_Definition =>
11762        (1 => False,   --  unused
11763         2 => True,    --  Visible_Declarations (List2)
11764         3 => True,    --  Private_Declarations (List3)
11765         4 => True,    --  End_Label (Node4)
11766         5 => False),  --  unused
11767
11768      N_Protected_Body =>
11769        (1 => True,    --  Defining_Identifier (Node1)
11770         2 => True,    --  Declarations (List2)
11771         3 => False,   --  unused
11772         4 => True,    --  End_Label (Node4)
11773         5 => False),  --  Corresponding_Spec (Node5-Sem)
11774
11775      N_Entry_Declaration =>
11776        (1 => True,    --  Defining_Identifier (Node1)
11777         2 => False,   --  unused
11778         3 => True,    --  Parameter_Specifications (List3)
11779         4 => True,    --  Discrete_Subtype_Definition (Node4)
11780         5 => False),  --  Corresponding_Body (Node5-Sem)
11781
11782      N_Accept_Statement =>
11783        (1 => True,    --  Entry_Direct_Name (Node1)
11784         2 => True,    --  Declarations (List2)
11785         3 => True,    --  Parameter_Specifications (List3)
11786         4 => True,    --  Handled_Statement_Sequence (Node4)
11787         5 => True),   --  Entry_Index (Node5)
11788
11789      N_Entry_Body =>
11790        (1 => True,    --  Defining_Identifier (Node1)
11791         2 => True,    --  Declarations (List2)
11792         3 => False,   --  Activation_Chain_Entity (Node3-Sem)
11793         4 => True,    --  Handled_Statement_Sequence (Node4)
11794         5 => True),   --  Entry_Body_Formal_Part (Node5)
11795
11796      N_Entry_Body_Formal_Part =>
11797        (1 => True,    --  Condition (Node1)
11798         2 => False,   --  unused
11799         3 => True,    --  Parameter_Specifications (List3)
11800         4 => True,    --  Entry_Index_Specification (Node4)
11801         5 => False),  --  unused
11802
11803      N_Entry_Index_Specification =>
11804        (1 => True,    --  Defining_Identifier (Node1)
11805         2 => False,   --  unused
11806         3 => False,   --  unused
11807         4 => True,    --  Discrete_Subtype_Definition (Node4)
11808         5 => False),  --  unused
11809
11810      N_Entry_Call_Statement =>
11811        (1 => False,   --  unused
11812         2 => True,    --  Name (Node2)
11813         3 => True,    --  Parameter_Associations (List3)
11814         4 => False,   --  First_Named_Actual (Node4-Sem)
11815         5 => False),  --  unused
11816
11817      N_Requeue_Statement =>
11818        (1 => False,   --  unused
11819         2 => True,    --  Name (Node2)
11820         3 => False,   --  unused
11821         4 => False,   --  unused
11822         5 => False),  --  unused
11823
11824      N_Delay_Until_Statement =>
11825        (1 => False,   --  unused
11826         2 => False,   --  unused
11827         3 => True,    --  Expression (Node3)
11828         4 => False,   --  unused
11829         5 => False),  --  unused
11830
11831      N_Delay_Relative_Statement =>
11832        (1 => False,   --  unused
11833         2 => False,   --  unused
11834         3 => True,    --  Expression (Node3)
11835         4 => False,   --  unused
11836         5 => False),  --  unused
11837
11838      N_Selective_Accept =>
11839        (1 => True,    --  Select_Alternatives (List1)
11840         2 => False,   --  unused
11841         3 => False,   --  unused
11842         4 => True,    --  Else_Statements (List4)
11843         5 => False),  --  unused
11844
11845      N_Accept_Alternative =>
11846        (1 => True,    --  Condition (Node1)
11847         2 => True,    --  Accept_Statement (Node2)
11848         3 => True,    --  Statements (List3)
11849         4 => True,    --  Pragmas_Before (List4)
11850         5 => False),  --  Accept_Handler_Records (List5-Sem)
11851
11852      N_Delay_Alternative =>
11853        (1 => True,    --  Condition (Node1)
11854         2 => True,    --  Delay_Statement (Node2)
11855         3 => True,    --  Statements (List3)
11856         4 => True,    --  Pragmas_Before (List4)
11857         5 => False),  --  unused
11858
11859      N_Terminate_Alternative =>
11860        (1 => True,    --  Condition (Node1)
11861         2 => False,   --  unused
11862         3 => False,   --  unused
11863         4 => True,    --  Pragmas_Before (List4)
11864         5 => True),   --  Pragmas_After (List5)
11865
11866      N_Timed_Entry_Call =>
11867        (1 => True,    --  Entry_Call_Alternative (Node1)
11868         2 => False,   --  unused
11869         3 => False,   --  unused
11870         4 => True,    --  Delay_Alternative (Node4)
11871         5 => False),  --  unused
11872
11873      N_Entry_Call_Alternative =>
11874        (1 => True,    --  Entry_Call_Statement (Node1)
11875         2 => False,   --  unused
11876         3 => True,    --  Statements (List3)
11877         4 => True,    --  Pragmas_Before (List4)
11878         5 => False),  --  unused
11879
11880      N_Conditional_Entry_Call =>
11881        (1 => True,    --  Entry_Call_Alternative (Node1)
11882         2 => False,   --  unused
11883         3 => False,   --  unused
11884         4 => True,    --  Else_Statements (List4)
11885         5 => False),  --  unused
11886
11887      N_Asynchronous_Select =>
11888        (1 => True,    --  Triggering_Alternative (Node1)
11889         2 => True,    --  Abortable_Part (Node2)
11890         3 => False,   --  unused
11891         4 => False,   --  unused
11892         5 => False),  --  unused
11893
11894      N_Triggering_Alternative =>
11895        (1 => True,    --  Triggering_Statement (Node1)
11896         2 => False,   --  unused
11897         3 => True,    --  Statements (List3)
11898         4 => True,    --  Pragmas_Before (List4)
11899         5 => False),  --  unused
11900
11901      N_Abortable_Part =>
11902        (1 => False,   --  unused
11903         2 => False,   --  unused
11904         3 => True,    --  Statements (List3)
11905         4 => False,   --  unused
11906         5 => False),  --  unused
11907
11908      N_Abort_Statement =>
11909        (1 => False,   --  unused
11910         2 => True,    --  Names (List2)
11911         3 => False,   --  unused
11912         4 => False,   --  unused
11913         5 => False),  --  unused
11914
11915      N_Compilation_Unit =>
11916        (1 => True,    --  Context_Items (List1)
11917         2 => True,    --  Unit (Node2)
11918         3 => False,   --  First_Inlined_Subprogram (Node3-Sem)
11919         4 => False,   --  Library_Unit (Node4-Sem)
11920         5 => True),   --  Aux_Decls_Node (Node5)
11921
11922      N_Compilation_Unit_Aux =>
11923        (1 => True,    --  Actions (List1)
11924         2 => True,    --  Declarations (List2)
11925         3 => False,   --  Default_Storage_Pool (Node3)
11926         4 => True,    --  Config_Pragmas (List4)
11927         5 => True),   --  Pragmas_After (List5)
11928
11929      N_With_Clause =>
11930        (1 => False,   --  unused
11931         2 => True,    --  Name (Node2)
11932         3 => False,   --  unused
11933         4 => False,   --  Library_Unit (Node4-Sem)
11934         5 => False),  --  Corresponding_Spec (Node5-Sem)
11935
11936      N_Subprogram_Body_Stub =>
11937        (1 => True,    --  Specification (Node1)
11938         2 => False,   --  Corresponding_Spec_Of_Stub (Node2-Sem)
11939         3 => False,   --  unused
11940         4 => False,   --  Library_Unit (Node4-Sem)
11941         5 => False),  --  Corresponding_Body (Node5-Sem)
11942
11943      N_Package_Body_Stub =>
11944        (1 => True,    --  Defining_Identifier (Node1)
11945         2 => False,   --  Corresponding_Spec_Of_Stub (Node2-Sem)
11946         3 => False,   --  unused
11947         4 => False,   --  Library_Unit (Node4-Sem)
11948         5 => False),  --  Corresponding_Body (Node5-Sem)
11949
11950      N_Task_Body_Stub =>
11951        (1 => True,    --  Defining_Identifier (Node1)
11952         2 => False,   --  Corresponding_Spec_Of_Stub (Node2-Sem)
11953         3 => False,   --  unused
11954         4 => False,   --  Library_Unit (Node4-Sem)
11955         5 => False),  --  Corresponding_Body (Node5-Sem)
11956
11957      N_Protected_Body_Stub =>
11958        (1 => True,    --  Defining_Identifier (Node1)
11959         2 => False,   --  Corresponding_Spec_Of_Stub (Node2-Sem)
11960         3 => False,   --  unused
11961         4 => False,   --  Library_Unit (Node4-Sem)
11962         5 => False),  --  Corresponding_Body (Node5-Sem)
11963
11964      N_Subunit =>
11965        (1 => True,    --  Proper_Body (Node1)
11966         2 => True,    --  Name (Node2)
11967         3 => False,   --  Corresponding_Stub (Node3-Sem)
11968         4 => False,   --  unused
11969         5 => False),  --  unused
11970
11971      N_Exception_Declaration =>
11972        (1 => True,    --  Defining_Identifier (Node1)
11973         2 => False,   --  unused
11974         3 => False,   --  Expression (Node3-Sem)
11975         4 => False,   --  unused
11976         5 => False),  --  unused
11977
11978      N_Handled_Sequence_Of_Statements =>
11979        (1 => True,    --  At_End_Proc (Node1)
11980         2 => False,   --  First_Real_Statement (Node2-Sem)
11981         3 => True,    --  Statements (List3)
11982         4 => True,    --  End_Label (Node4)
11983         5 => True),   --  Exception_Handlers (List5)
11984
11985      N_Exception_Handler =>
11986        (1 => False,   --  Local_Raise_Statements (Elist1)
11987         2 => True,    --  Choice_Parameter (Node2)
11988         3 => True,    --  Statements (List3)
11989         4 => True,    --  Exception_Choices (List4)
11990         5 => False),  --  Exception_Label (Node5)
11991
11992      N_Raise_Statement =>
11993        (1 => False,   --  unused
11994         2 => True,    --  Name (Node2)
11995         3 => True,    --  Expression (Node3)
11996         4 => False,   --  unused
11997         5 => False),  --  unused
11998
11999      N_Raise_Expression =>
12000        (1 => False,   --  unused
12001         2 => True,    --  Name (Node2)
12002         3 => True,    --  Expression (Node3)
12003         4 => False,   --  unused
12004         5 => False),  --  Etype (Node5-Sem)
12005
12006      N_Generic_Subprogram_Declaration =>
12007        (1 => True,    --  Specification (Node1)
12008         2 => True,    --  Generic_Formal_Declarations (List2)
12009         3 => False,   --  unused
12010         4 => False,   --  Parent_Spec (Node4-Sem)
12011         5 => False),  --  Corresponding_Body (Node5-Sem)
12012
12013      N_Generic_Package_Declaration =>
12014        (1 => True,    --  Specification (Node1)
12015         2 => True,    --  Generic_Formal_Declarations (List2)
12016         3 => False,   --  Activation_Chain_Entity (Node3-Sem)
12017         4 => False,   --  Parent_Spec (Node4-Sem)
12018         5 => False),  --  Corresponding_Body (Node5-Sem)
12019
12020      N_Package_Instantiation =>
12021        (1 => True,    --  Defining_Unit_Name (Node1)
12022         2 => True,    --  Name (Node2)
12023         3 => True,    --  Generic_Associations (List3)
12024         4 => False,   --  Parent_Spec (Node4-Sem)
12025         5 => False),  --  Instance_Spec (Node5-Sem)
12026
12027      N_Procedure_Instantiation =>
12028        (1 => True,    --  Defining_Unit_Name (Node1)
12029         2 => True,    --  Name (Node2)
12030         3 => True,    --  Generic_Associations (List3)
12031         4 => False,   --  Parent_Spec (Node4-Sem)
12032         5 => False),  --  Instance_Spec (Node5-Sem)
12033
12034      N_Function_Instantiation =>
12035        (1 => True,    --  Defining_Unit_Name (Node1)
12036         2 => True,    --  Name (Node2)
12037         3 => True,    --  Generic_Associations (List3)
12038         4 => False,   --  Parent_Spec (Node4-Sem)
12039         5 => False),  --  Instance_Spec (Node5-Sem)
12040
12041      N_Generic_Association =>
12042        (1 => True,    --  Explicit_Generic_Actual_Parameter (Node1)
12043         2 => True,    --  Selector_Name (Node2)
12044         3 => False,   --  unused
12045         4 => False,   --  unused
12046         5 => False),  --  unused
12047
12048      N_Formal_Object_Declaration =>
12049        (1 => True,    --  Defining_Identifier (Node1)
12050         2 => False,   --  unused
12051         3 => True,    --  Access_Definition (Node3)
12052         4 => True,    --  Subtype_Mark (Node4)
12053         5 => True),   --  Default_Expression (Node5)
12054
12055      N_Formal_Type_Declaration =>
12056        (1 => True,    --  Defining_Identifier (Node1)
12057         2 => False,   --  unused
12058         3 => True,    --  Formal_Type_Definition (Node3)
12059         4 => True,    --  Discriminant_Specifications (List4)
12060         5 => False),  --  unused
12061
12062      N_Formal_Private_Type_Definition =>
12063        (1 => False,   --  unused
12064         2 => False,   --  unused
12065         3 => False,   --  unused
12066         4 => False,   --  unused
12067         5 => False),  --  unused
12068
12069      N_Formal_Incomplete_Type_Definition =>
12070        (1 => False,   --  unused
12071         2 => False,   --  unused
12072         3 => False,   --  unused
12073         4 => False,   --  unused
12074         5 => False),  --  unused
12075
12076      N_Formal_Derived_Type_Definition =>
12077        (1 => False,   --  unused
12078         2 => True,    --  Interface_List (List2)
12079         3 => False,   --  unused
12080         4 => True,    --  Subtype_Mark (Node4)
12081         5 => False),  --  unused
12082
12083      N_Formal_Discrete_Type_Definition =>
12084        (1 => False,   --  unused
12085         2 => False,   --  unused
12086         3 => False,   --  unused
12087         4 => False,   --  unused
12088         5 => False),  --  unused
12089
12090      N_Formal_Signed_Integer_Type_Definition =>
12091        (1 => False,   --  unused
12092         2 => False,   --  unused
12093         3 => False,   --  unused
12094         4 => False,   --  unused
12095         5 => False),  --  unused
12096
12097      N_Formal_Modular_Type_Definition =>
12098        (1 => False,   --  unused
12099         2 => False,   --  unused
12100         3 => False,   --  unused
12101         4 => False,   --  unused
12102         5 => False),  --  unused
12103
12104      N_Formal_Floating_Point_Definition =>
12105        (1 => False,   --  unused
12106         2 => False,   --  unused
12107         3 => False,   --  unused
12108         4 => False,   --  unused
12109         5 => False),  --  unused
12110
12111      N_Formal_Ordinary_Fixed_Point_Definition =>
12112        (1 => False,   --  unused
12113         2 => False,   --  unused
12114         3 => False,   --  unused
12115         4 => False,   --  unused
12116         5 => False),  --  unused
12117
12118      N_Formal_Decimal_Fixed_Point_Definition =>
12119        (1 => False,   --  unused
12120         2 => False,   --  unused
12121         3 => False,   --  unused
12122         4 => False,   --  unused
12123         5 => False),  --  unused
12124
12125      N_Formal_Concrete_Subprogram_Declaration =>
12126        (1 => True,    --  Specification (Node1)
12127         2 => True,    --  Default_Name (Node2)
12128         3 => False,   --  unused
12129         4 => False,   --  unused
12130         5 => False),  --  unused
12131
12132      N_Formal_Abstract_Subprogram_Declaration =>
12133        (1 => True,    --  Specification (Node1)
12134         2 => True,    --  Default_Name (Node2)
12135         3 => False,   --  unused
12136         4 => False,   --  unused
12137         5 => False),  --  unused
12138
12139      N_Formal_Package_Declaration =>
12140        (1 => True,    --  Defining_Identifier (Node1)
12141         2 => True,    --  Name (Node2)
12142         3 => True,    --  Generic_Associations (List3)
12143         4 => False,   --  unused
12144         5 => False),  --  Instance_Spec (Node5-Sem)
12145
12146      N_Attribute_Definition_Clause =>
12147        (1 => True,    --  Chars (Name1)
12148         2 => True,    --  Name (Node2)
12149         3 => True,    --  Expression (Node3)
12150         4 => False,   --  unused
12151         5 => False),  --  Next_Rep_Item (Node5-Sem)
12152
12153      N_Aspect_Specification =>
12154        (1 => True,    --  Identifier (Node1)
12155         2 => False,   --  Aspect_Rep_Item (Node2-Sem)
12156         3 => True,    --  Expression (Node3)
12157         4 => False,   --  Entity (Node4-Sem)
12158         5 => False),  --  Next_Rep_Item (Node5-Sem)
12159
12160      N_Enumeration_Representation_Clause =>
12161        (1 => True,    --  Identifier (Node1)
12162         2 => False,   --  unused
12163         3 => True,    --  Array_Aggregate (Node3)
12164         4 => False,   --  unused
12165         5 => False),  --  Next_Rep_Item (Node5-Sem)
12166
12167      N_Record_Representation_Clause =>
12168        (1 => True,    --  Identifier (Node1)
12169         2 => True,    --  Mod_Clause (Node2)
12170         3 => True,    --  Component_Clauses (List3)
12171         4 => False,   --  unused
12172         5 => False),  --  Next_Rep_Item (Node5-Sem)
12173
12174      N_Component_Clause =>
12175        (1 => True,    --  Component_Name (Node1)
12176         2 => True,    --  Position (Node2)
12177         3 => True,    --  First_Bit (Node3)
12178         4 => True,    --  Last_Bit (Node4)
12179         5 => False),  --  unused
12180
12181      N_Code_Statement =>
12182        (1 => False,   --  unused
12183         2 => False,   --  unused
12184         3 => True,    --  Expression (Node3)
12185         4 => False,   --  unused
12186         5 => False),  --  unused
12187
12188      N_Op_Rotate_Left =>
12189        (1 => True,    --  Chars (Name1)
12190         2 => True,    --  Left_Opnd (Node2)
12191         3 => True,    --  Right_Opnd (Node3)
12192         4 => False,   --  Entity (Node4-Sem)
12193         5 => False),  --  Etype (Node5-Sem)
12194
12195      N_Op_Rotate_Right =>
12196        (1 => True,    --  Chars (Name1)
12197         2 => True,    --  Left_Opnd (Node2)
12198         3 => True,    --  Right_Opnd (Node3)
12199         4 => False,   --  Entity (Node4-Sem)
12200         5 => False),  --  Etype (Node5-Sem)
12201
12202      N_Op_Shift_Left =>
12203        (1 => True,    --  Chars (Name1)
12204         2 => True,    --  Left_Opnd (Node2)
12205         3 => True,    --  Right_Opnd (Node3)
12206         4 => False,   --  Entity (Node4-Sem)
12207         5 => False),  --  Etype (Node5-Sem)
12208
12209      N_Op_Shift_Right_Arithmetic =>
12210        (1 => True,    --  Chars (Name1)
12211         2 => True,    --  Left_Opnd (Node2)
12212         3 => True,    --  Right_Opnd (Node3)
12213         4 => False,   --  Entity (Node4-Sem)
12214         5 => False),  --  Etype (Node5-Sem)
12215
12216      N_Op_Shift_Right =>
12217        (1 => True,    --  Chars (Name1)
12218         2 => True,    --  Left_Opnd (Node2)
12219         3 => True,    --  Right_Opnd (Node3)
12220         4 => False,   --  Entity (Node4-Sem)
12221         5 => False),  --  Etype (Node5-Sem)
12222
12223      N_Delta_Constraint =>
12224        (1 => False,   --  unused
12225         2 => False,   --  unused
12226         3 => True,    --  Delta_Expression (Node3)
12227         4 => True,    --  Range_Constraint (Node4)
12228         5 => False),  --  unused
12229
12230      N_At_Clause =>
12231        (1 => True,    --  Identifier (Node1)
12232         2 => False,   --  unused
12233         3 => True,    --  Expression (Node3)
12234         4 => False,   --  unused
12235         5 => False),  --  unused
12236
12237      N_Mod_Clause =>
12238        (1 => False,   --  unused
12239         2 => False,   --  unused
12240         3 => True,    --  Expression (Node3)
12241         4 => True,    --  Pragmas_Before (List4)
12242         5 => False),  --  unused
12243
12244      N_If_Expression =>
12245        (1 => True,    --  Expressions (List1)
12246         2 => False,   --  Then_Actions (List2-Sem)
12247         3 => False,   --  Else_Actions (List3-Sem)
12248         4 => False,   --  unused
12249         5 => False),  --  Etype (Node5-Sem)
12250
12251      N_Compound_Statement =>
12252        (1 => True,    --  Actions (List1)
12253         2 => False,   --  unused
12254         3 => False,   --  unused
12255         4 => False,   --  unused
12256         5 => False),  --  unused
12257
12258      N_Contract =>
12259        (1 => False,   --  Pre_Post_Conditions (Node1)
12260         2 => False,   --  Contract_Test_Cases (Node2)
12261         3 => False,   --  Classifications (Node3)
12262         4 => False,   --  unused
12263         5 => False),  --  unused
12264
12265      N_Expanded_Name =>
12266        (1 => True,    --  Chars (Name1)
12267         2 => True,    --  Selector_Name (Node2)
12268         3 => True,    --  Prefix (Node3)
12269         4 => False,   --  Entity (Node4-Sem)
12270         5 => False),  --  Etype (Node5-Sem)
12271
12272      N_Expression_With_Actions =>
12273        (1 => True,    --  Actions (List1)
12274         2 => False,   --  unused
12275         3 => True,    --  Expression (Node3)
12276         4 => False,   --  unused
12277         5 => False),  --  unused
12278
12279      N_Free_Statement =>
12280        (1 => False,   --  Storage_Pool (Node1-Sem)
12281         2 => False,   --  Procedure_To_Call (Node2-Sem)
12282         3 => True,    --  Expression (Node3)
12283         4 => False,   --  Actual_Designated_Subtype (Node4-Sem)
12284         5 => False),  --  unused
12285
12286      N_Freeze_Entity =>
12287        (1 => True,    --  Actions (List1)
12288         2 => False,   --  Access_Types_To_Process (Elist2-Sem)
12289         3 => False,   --  TSS_Elist (Elist3-Sem)
12290         4 => False,   --  Entity (Node4-Sem)
12291         5 => False),  --  First_Subtype_Link (Node5-Sem)
12292
12293      N_Freeze_Generic_Entity =>
12294        (1 => False,   --  unused
12295         2 => False,   --  unused
12296         3 => False,   --  unused
12297         4 => False,   --  Entity (Node4-Sem)
12298         5 => False),  --  unused
12299
12300      N_Implicit_Label_Declaration =>
12301        (1 => True,    --  Defining_Identifier (Node1)
12302         2 => False,   --  Label_Construct (Node2-Sem)
12303         3 => False,   --  unused
12304         4 => False,   --  unused
12305         5 => False),  --  unused
12306
12307      N_Itype_Reference =>
12308        (1 => False,   --  Itype (Node1-Sem)
12309         2 => False,   --  unused
12310         3 => False,   --  unused
12311         4 => False,   --  unused
12312         5 => False),  --  unused
12313
12314      N_Raise_Constraint_Error =>
12315        (1 => True,    --  Condition (Node1)
12316         2 => False,   --  unused
12317         3 => True,    --  Reason (Uint3)
12318         4 => False,   --  unused
12319         5 => False),  --  Etype (Node5-Sem)
12320
12321      N_Raise_Program_Error =>
12322        (1 => True,    --  Condition (Node1)
12323         2 => False,   --  unused
12324         3 => True,    --  Reason (Uint3)
12325         4 => False,   --  unused
12326         5 => False),  --  Etype (Node5-Sem)
12327
12328      N_Raise_Storage_Error =>
12329        (1 => True,    --  Condition (Node1)
12330         2 => False,   --  unused
12331         3 => True,    --  Reason (Uint3)
12332         4 => False,   --  unused
12333         5 => False),  --  Etype (Node5-Sem)
12334
12335      N_Push_Constraint_Error_Label =>
12336        (1 => False,   --  unused
12337         2 => False,   --  unused
12338         3 => False,   --  unused
12339         4 => False,   --  unused
12340         5 => False),  --  unused
12341
12342      N_Push_Program_Error_Label =>
12343        (1 => False,   --  Exception_Label
12344         2 => False,   --  unused
12345         3 => False,   --  unused
12346         4 => False,   --  unused
12347         5 => False),  --  Exception_Label
12348
12349      N_Push_Storage_Error_Label =>
12350        (1 => False,   --  Exception_Label
12351         2 => False,   --  unused
12352         3 => False,   --  unused
12353         4 => False,   --  unused
12354         5 => False),  --  Exception_Label
12355
12356      N_Pop_Constraint_Error_Label =>
12357        (1 => False,   --  unused
12358         2 => False,   --  unused
12359         3 => False,   --  unused
12360         4 => False,   --  unused
12361         5 => False),  --  unused
12362
12363      N_Pop_Program_Error_Label =>
12364        (1 => False,   --  unused
12365         2 => False,   --  unused
12366         3 => False,   --  unused
12367         4 => False,   --  unused
12368         5 => False),  --  unused
12369
12370      N_Pop_Storage_Error_Label =>
12371        (1 => False,   --  unused
12372         2 => False,   --  unused
12373         3 => False,   --  unused
12374         4 => False,   --  unused
12375         5 => False),  --  unused
12376
12377      N_Reference =>
12378        (1 => False,   --  unused
12379         2 => False,   --  unused
12380         3 => True,    --  Prefix (Node3)
12381         4 => False,   --  unused
12382         5 => False),  --  Etype (Node5-Sem)
12383
12384      N_Unchecked_Expression =>
12385        (1 => False,   --  unused
12386         2 => False,   --  unused
12387         3 => True,    --  Expression (Node3)
12388         4 => False,   --  unused
12389         5 => False),  --  Etype (Node5-Sem)
12390
12391      N_Unchecked_Type_Conversion =>
12392        (1 => False,   --  unused
12393         2 => False,   --  unused
12394         3 => True,    --  Expression (Node3)
12395         4 => True,    --  Subtype_Mark (Node4)
12396         5 => False),  --  Etype (Node5-Sem)
12397
12398      N_Validate_Unchecked_Conversion =>
12399        (1 => False,   --  Source_Type (Node1-Sem)
12400         2 => False,   --  Target_Type (Node2-Sem)
12401         3 => False,   --  unused
12402         4 => False,   --  unused
12403         5 => False),  --  unused
12404
12405    --  Entries for SCIL nodes
12406
12407      N_SCIL_Dispatch_Table_Tag_Init =>
12408        (1 => False,   --  unused
12409         2 => False,   --  unused
12410         3 => False,   --  unused
12411         4 => False,   --  SCIL_Entity (Node4-Sem)
12412         5 => False),  --  unused
12413
12414      N_SCIL_Dispatching_Call =>
12415        (1 => False,   --  unused
12416         2 => False,   --  SCIL_Target_Prim (Node2-Sem)
12417         3 => False,   --  unused
12418         4 => False,   --  SCIL_Entity (Node4-Sem)
12419         5 => False),  --  SCIL_Controlling_Tag (Node5-Sem)
12420
12421      N_SCIL_Membership_Test =>
12422        (1 => False,   --  unused
12423         2 => False,   --  unused
12424         3 => False,   --  unused
12425         4 => False,   --  SCIL_Entity (Node4-Sem)
12426         5 => False),  --  SCIL_Tag_Value (Node5-Sem)
12427
12428    --  Entries for Empty, Error and Unused. Even thought these have a Chars
12429    --  field for debugging purposes, they are not really syntactic fields, so
12430    --  we mark all fields as unused.
12431
12432      N_Empty =>
12433        (1 => False,   --  unused
12434         2 => False,   --  unused
12435         3 => False,   --  unused
12436         4 => False,   --  unused
12437         5 => False),  --  unused
12438
12439      N_Error =>
12440        (1 => False,   --  unused
12441         2 => False,   --  unused
12442         3 => False,   --  unused
12443         4 => False,   --  unused
12444         5 => False),  --  unused
12445
12446      N_Unused_At_Start =>
12447        (1 => False,   --  unused
12448         2 => False,   --  unused
12449         3 => False,   --  unused
12450         4 => False,   --  unused
12451         5 => False),  --  unused
12452
12453      N_Unused_At_End =>
12454        (1 => False,   --  unused
12455         2 => False,   --  unused
12456         3 => False,   --  unused
12457         4 => False,   --  unused
12458         5 => False)); --  unused
12459
12460    --------------------
12461    -- Inline Pragmas --
12462    --------------------
12463
12464    pragma Inline (ABE_Is_Certain);
12465    pragma Inline (Abort_Present);
12466    pragma Inline (Abortable_Part);
12467    pragma Inline (Abstract_Present);
12468    pragma Inline (Accept_Handler_Records);
12469    pragma Inline (Accept_Statement);
12470    pragma Inline (Access_Definition);
12471    pragma Inline (Access_To_Subprogram_Definition);
12472    pragma Inline (Access_Types_To_Process);
12473    pragma Inline (Actions);
12474    pragma Inline (Activation_Chain_Entity);
12475    pragma Inline (Acts_As_Spec);
12476    pragma Inline (Actual_Designated_Subtype);
12477    pragma Inline (Address_Warning_Posted);
12478    pragma Inline (Aggregate_Bounds);
12479    pragma Inline (Aliased_Present);
12480    pragma Inline (All_Others);
12481    pragma Inline (All_Present);
12482    pragma Inline (Alternatives);
12483    pragma Inline (Ancestor_Part);
12484    pragma Inline (Atomic_Sync_Required);
12485    pragma Inline (Array_Aggregate);
12486    pragma Inline (Aspect_Rep_Item);
12487    pragma Inline (Assignment_OK);
12488    pragma Inline (Associated_Node);
12489    pragma Inline (At_End_Proc);
12490    pragma Inline (Attribute_Name);
12491    pragma Inline (Aux_Decls_Node);
12492    pragma Inline (Backwards_OK);
12493    pragma Inline (Bad_Is_Detected);
12494    pragma Inline (Body_To_Inline);
12495    pragma Inline (Body_Required);
12496    pragma Inline (By_Ref);
12497    pragma Inline (Box_Present);
12498    pragma Inline (Char_Literal_Value);
12499    pragma Inline (Chars);
12500    pragma Inline (Check_Address_Alignment);
12501    pragma Inline (Choice_Parameter);
12502    pragma Inline (Choices);
12503    pragma Inline (Class_Present);
12504    pragma Inline (Classifications);
12505    pragma Inline (Cleanup_Actions);
12506    pragma Inline (Comes_From_Extended_Return_Statement);
12507    pragma Inline (Compile_Time_Known_Aggregate);
12508    pragma Inline (Component_Associations);
12509    pragma Inline (Component_Clauses);
12510    pragma Inline (Component_Definition);
12511    pragma Inline (Component_Items);
12512    pragma Inline (Component_List);
12513    pragma Inline (Component_Name);
12514    pragma Inline (Componentwise_Assignment);
12515    pragma Inline (Condition);
12516    pragma Inline (Condition_Actions);
12517    pragma Inline (Config_Pragmas);
12518    pragma Inline (Constant_Present);
12519    pragma Inline (Constraint);
12520    pragma Inline (Constraints);
12521    pragma Inline (Context_Installed);
12522    pragma Inline (Context_Items);
12523    pragma Inline (Context_Pending);
12524    pragma Inline (Contract_Test_Cases);
12525    pragma Inline (Controlling_Argument);
12526    pragma Inline (Convert_To_Return_False);
12527    pragma Inline (Conversion_OK);
12528    pragma Inline (Corresponding_Aspect);
12529    pragma Inline (Corresponding_Body);
12530    pragma Inline (Corresponding_Formal_Spec);
12531    pragma Inline (Corresponding_Generic_Association);
12532    pragma Inline (Corresponding_Integer_Value);
12533    pragma Inline (Corresponding_Spec);
12534    pragma Inline (Corresponding_Spec_Of_Stub);
12535    pragma Inline (Corresponding_Stub);
12536    pragma Inline (Dcheck_Function);
12537    pragma Inline (Declarations);
12538    pragma Inline (Default_Expression);
12539    pragma Inline (Default_Storage_Pool);
12540    pragma Inline (Default_Name);
12541    pragma Inline (Defining_Identifier);
12542    pragma Inline (Defining_Unit_Name);
12543    pragma Inline (Delay_Alternative);
12544    pragma Inline (Delay_Statement);
12545    pragma Inline (Delta_Expression);
12546    pragma Inline (Digits_Expression);
12547    pragma Inline (Discr_Check_Funcs_Built);
12548    pragma Inline (Discrete_Choices);
12549    pragma Inline (Discrete_Range);
12550    pragma Inline (Discrete_Subtype_Definition);
12551    pragma Inline (Discrete_Subtype_Definitions);
12552    pragma Inline (Discriminant_Specifications);
12553    pragma Inline (Discriminant_Type);
12554    pragma Inline (Do_Accessibility_Check);
12555    pragma Inline (Do_Discriminant_Check);
12556    pragma Inline (Do_Length_Check);
12557    pragma Inline (Do_Division_Check);
12558    pragma Inline (Do_Overflow_Check);
12559    pragma Inline (Do_Range_Check);
12560    pragma Inline (Do_Storage_Check);
12561    pragma Inline (Do_Tag_Check);
12562    pragma Inline (Elaborate_Present);
12563    pragma Inline (Elaborate_All_Desirable);
12564    pragma Inline (Elaborate_All_Present);
12565    pragma Inline (Elaborate_Desirable);
12566    pragma Inline (Elaboration_Boolean);
12567    pragma Inline (Else_Actions);
12568    pragma Inline (Else_Statements);
12569    pragma Inline (Elsif_Parts);
12570    pragma Inline (Enclosing_Variant);
12571    pragma Inline (End_Label);
12572    pragma Inline (End_Span);
12573    pragma Inline (Entity);
12574    pragma Inline (Entity_Or_Associated_Node);
12575    pragma Inline (Entry_Body_Formal_Part);
12576    pragma Inline (Entry_Call_Alternative);
12577    pragma Inline (Entry_Call_Statement);
12578    pragma Inline (Entry_Direct_Name);
12579    pragma Inline (Entry_Index);
12580    pragma Inline (Entry_Index_Specification);
12581    pragma Inline (Etype);
12582    pragma Inline (Exception_Choices);
12583    pragma Inline (Exception_Handlers);
12584    pragma Inline (Exception_Junk);
12585    pragma Inline (Exception_Label);
12586    pragma Inline (Expansion_Delayed);
12587    pragma Inline (Explicit_Actual_Parameter);
12588    pragma Inline (Explicit_Generic_Actual_Parameter);
12589    pragma Inline (Expression);
12590    pragma Inline (Expressions);
12591    pragma Inline (First_Bit);
12592    pragma Inline (First_Inlined_Subprogram);
12593    pragma Inline (First_Name);
12594    pragma Inline (First_Named_Actual);
12595    pragma Inline (First_Real_Statement);
12596    pragma Inline (First_Subtype_Link);
12597    pragma Inline (Float_Truncate);
12598    pragma Inline (Formal_Type_Definition);
12599    pragma Inline (Forwards_OK);
12600    pragma Inline (From_Aspect_Specification);
12601    pragma Inline (From_At_End);
12602    pragma Inline (From_At_Mod);
12603    pragma Inline (From_Conditional_Expression);
12604    pragma Inline (From_Default);
12605    pragma Inline (Generalized_Indexing);
12606    pragma Inline (Generic_Associations);
12607    pragma Inline (Generic_Formal_Declarations);
12608    pragma Inline (Generic_Parent);
12609    pragma Inline (Generic_Parent_Type);
12610    pragma Inline (Handled_Statement_Sequence);
12611    pragma Inline (Handler_List_Entry);
12612    pragma Inline (Has_Created_Identifier);
12613    pragma Inline (Has_Dereference_Action);
12614    pragma Inline (Has_Dynamic_Length_Check);
12615    pragma Inline (Has_Dynamic_Range_Check);
12616    pragma Inline (Has_Init_Expression);
12617    pragma Inline (Has_Local_Raise);
12618    pragma Inline (Has_Self_Reference);
12619    pragma Inline (Has_SP_Choice);
12620    pragma Inline (Has_No_Elaboration_Code);
12621    pragma Inline (Has_Pragma_Suppress_All);
12622    pragma Inline (Has_Private_View);
12623    pragma Inline (Has_Relative_Deadline_Pragma);
12624    pragma Inline (Has_Storage_Size_Pragma);
12625    pragma Inline (Has_Wide_Character);
12626    pragma Inline (Has_Wide_Wide_Character);
12627    pragma Inline (Header_Size_Added);
12628    pragma Inline (Hidden_By_Use_Clause);
12629    pragma Inline (High_Bound);
12630    pragma Inline (Identifier);
12631    pragma Inline (Implicit_With);
12632    pragma Inline (Implicit_With_From_Instantiation);
12633    pragma Inline (Interface_List);
12634    pragma Inline (Interface_Present);
12635    pragma Inline (Includes_Infinities);
12636    pragma Inline (Import_Interface_Present);
12637    pragma Inline (In_Present);
12638    pragma Inline (Incomplete_View);
12639    pragma Inline (Inherited_Discriminant);
12640    pragma Inline (Instance_Spec);
12641    pragma Inline (Intval);
12642    pragma Inline (Iterator_Specification);
12643    pragma Inline (Is_Accessibility_Actual);
12644    pragma Inline (Is_Asynchronous_Call_Block);
12645    pragma Inline (Is_Boolean_Aspect);
12646    pragma Inline (Is_Checked);
12647    pragma Inline (Is_Component_Left_Opnd);
12648    pragma Inline (Is_Component_Right_Opnd);
12649    pragma Inline (Is_Controlling_Actual);
12650    pragma Inline (Is_Delayed_Aspect);
12651    pragma Inline (Is_Disabled);
12652    pragma Inline (Is_Dynamic_Coextension);
12653    pragma Inline (Is_Elsif);
12654    pragma Inline (Is_Entry_Barrier_Function);
12655    pragma Inline (Is_Expanded_Build_In_Place_Call);
12656    pragma Inline (Is_Finalization_Wrapper);
12657    pragma Inline (Is_Folded_In_Parser);
12658    pragma Inline (Is_Ignored);
12659    pragma Inline (Is_In_Discriminant_Check);
12660    pragma Inline (Is_Machine_Number);
12661    pragma Inline (Is_Null_Loop);
12662    pragma Inline (Is_Overloaded);
12663    pragma Inline (Is_Power_Of_2_For_Shift);
12664    pragma Inline (Is_Prefixed_Call);
12665    pragma Inline (Is_Protected_Subprogram_Body);
12666    pragma Inline (Is_Static_Coextension);
12667    pragma Inline (Is_Static_Expression);
12668    pragma Inline (Is_Subprogram_Descriptor);
12669    pragma Inline (Is_Task_Allocation_Block);
12670    pragma Inline (Is_Task_Master);
12671    pragma Inline (Iteration_Scheme);
12672    pragma Inline (Itype);
12673    pragma Inline (Kill_Range_Check);
12674    pragma Inline (Last_Bit);
12675    pragma Inline (Last_Name);
12676    pragma Inline (Library_Unit);
12677    pragma Inline (Label_Construct);
12678    pragma Inline (Left_Opnd);
12679    pragma Inline (Limited_View_Installed);
12680    pragma Inline (Limited_Present);
12681    pragma Inline (Literals);
12682    pragma Inline (Local_Raise_Not_OK);
12683    pragma Inline (Local_Raise_Statements);
12684    pragma Inline (Loop_Actions);
12685    pragma Inline (Loop_Parameter_Specification);
12686    pragma Inline (Low_Bound);
12687    pragma Inline (Mod_Clause);
12688    pragma Inline (More_Ids);
12689    pragma Inline (Must_Be_Byte_Aligned);
12690    pragma Inline (Must_Not_Freeze);
12691    pragma Inline (Must_Not_Override);
12692    pragma Inline (Must_Override);
12693    pragma Inline (Name);
12694    pragma Inline (Names);
12695    pragma Inline (Next_Entity);
12696    pragma Inline (Next_Exit_Statement);
12697    pragma Inline (Next_Implicit_With);
12698    pragma Inline (Next_Named_Actual);
12699    pragma Inline (Next_Pragma);
12700    pragma Inline (Next_Rep_Item);
12701    pragma Inline (Next_Use_Clause);
12702    pragma Inline (No_Ctrl_Actions);
12703    pragma Inline (No_Elaboration_Check);
12704    pragma Inline (No_Entities_Ref_In_Spec);
12705    pragma Inline (No_Initialization);
12706    pragma Inline (No_Minimize_Eliminate);
12707    pragma Inline (No_Truncation);
12708    pragma Inline (Non_Aliased_Prefix);
12709    pragma Inline (Null_Present);
12710    pragma Inline (Null_Excluding_Subtype);
12711    pragma Inline (Null_Exclusion_Present);
12712    pragma Inline (Null_Exclusion_In_Return_Present);
12713    pragma Inline (Null_Record_Present);
12714    pragma Inline (Object_Definition);
12715    pragma Inline (Of_Present);
12716    pragma Inline (Original_Discriminant);
12717    pragma Inline (Original_Entity);
12718    pragma Inline (Others_Discrete_Choices);
12719    pragma Inline (Out_Present);
12720    pragma Inline (Parameter_Associations);
12721    pragma Inline (Parameter_Specifications);
12722    pragma Inline (Parameter_List_Truncated);
12723    pragma Inline (Parameter_Type);
12724    pragma Inline (Parent_Spec);
12725    pragma Inline (Position);
12726    pragma Inline (Pragma_Argument_Associations);
12727    pragma Inline (Pragma_Identifier);
12728    pragma Inline (Pragmas_After);
12729    pragma Inline (Pragmas_Before);
12730    pragma Inline (Pre_Post_Conditions);
12731    pragma Inline (Prefix);
12732    pragma Inline (Premature_Use);
12733    pragma Inline (Present_Expr);
12734    pragma Inline (Prev_Ids);
12735    pragma Inline (Print_In_Hex);
12736    pragma Inline (Private_Declarations);
12737    pragma Inline (Private_Present);
12738    pragma Inline (Procedure_To_Call);
12739    pragma Inline (Proper_Body);
12740    pragma Inline (Protected_Definition);
12741    pragma Inline (Protected_Present);
12742    pragma Inline (Raises_Constraint_Error);
12743    pragma Inline (Range_Constraint);
12744    pragma Inline (Range_Expression);
12745    pragma Inline (Real_Range_Specification);
12746    pragma Inline (Realval);
12747    pragma Inline (Reason);
12748    pragma Inline (Record_Extension_Part);
12749    pragma Inline (Redundant_Use);
12750    pragma Inline (Renaming_Exception);
12751    pragma Inline (Result_Definition);
12752    pragma Inline (Return_Object_Declarations);
12753    pragma Inline (Return_Statement_Entity);
12754    pragma Inline (Reverse_Present);
12755    pragma Inline (Right_Opnd);
12756    pragma Inline (Rounded_Result);
12757    pragma Inline (SCIL_Controlling_Tag);
12758    pragma Inline (SCIL_Entity);
12759    pragma Inline (SCIL_Tag_Value);
12760    pragma Inline (SCIL_Target_Prim);
12761    pragma Inline (Scope);
12762    pragma Inline (Select_Alternatives);
12763    pragma Inline (Selector_Name);
12764    pragma Inline (Selector_Names);
12765    pragma Inline (Shift_Count_OK);
12766    pragma Inline (Source_Type);
12767    pragma Inline (Specification);
12768    pragma Inline (Split_PPC);
12769    pragma Inline (Statements);
12770    pragma Inline (Storage_Pool);
12771    pragma Inline (Subpool_Handle_Name);
12772    pragma Inline (Strval);
12773    pragma Inline (Subtype_Indication);
12774    pragma Inline (Subtype_Mark);
12775    pragma Inline (Subtype_Marks);
12776    pragma Inline (Suppress_Assignment_Checks);
12777    pragma Inline (Suppress_Loop_Warnings);
12778    pragma Inline (Synchronized_Present);
12779    pragma Inline (Tagged_Present);
12780    pragma Inline (Target_Type);
12781    pragma Inline (Task_Definition);
12782    pragma Inline (Task_Present);
12783    pragma Inline (Then_Actions);
12784    pragma Inline (Then_Statements);
12785    pragma Inline (Triggering_Alternative);
12786    pragma Inline (Triggering_Statement);
12787    pragma Inline (Treat_Fixed_As_Integer);
12788    pragma Inline (TSS_Elist);
12789    pragma Inline (Type_Definition);
12790    pragma Inline (Uneval_Old_Accept);
12791    pragma Inline (Uneval_Old_Warn);
12792    pragma Inline (Unit);
12793    pragma Inline (Uninitialized_Variable);
12794    pragma Inline (Unknown_Discriminants_Present);
12795    pragma Inline (Unreferenced_In_Spec);
12796    pragma Inline (Variant_Part);
12797    pragma Inline (Variants);
12798    pragma Inline (Visible_Declarations);
12799    pragma Inline (Used_Operations);
12800    pragma Inline (Was_Originally_Stub);
12801    pragma Inline (Withed_Body);
12802
12803    pragma Inline (Set_ABE_Is_Certain);
12804    pragma Inline (Set_Abort_Present);
12805    pragma Inline (Set_Abortable_Part);
12806    pragma Inline (Set_Abstract_Present);
12807    pragma Inline (Set_Accept_Handler_Records);
12808    pragma Inline (Set_Accept_Statement);
12809    pragma Inline (Set_Access_Definition);
12810    pragma Inline (Set_Access_To_Subprogram_Definition);
12811    pragma Inline (Set_Access_Types_To_Process);
12812    pragma Inline (Set_Actions);
12813    pragma Inline (Set_Activation_Chain_Entity);
12814    pragma Inline (Set_Acts_As_Spec);
12815    pragma Inline (Set_Actual_Designated_Subtype);
12816    pragma Inline (Set_Address_Warning_Posted);
12817    pragma Inline (Set_Aggregate_Bounds);
12818    pragma Inline (Set_Aliased_Present);
12819    pragma Inline (Set_All_Others);
12820    pragma Inline (Set_All_Present);
12821    pragma Inline (Set_Alternatives);
12822    pragma Inline (Set_Ancestor_Part);
12823    pragma Inline (Set_Array_Aggregate);
12824    pragma Inline (Set_Aspect_Rep_Item);
12825    pragma Inline (Set_Assignment_OK);
12826    pragma Inline (Set_Associated_Node);
12827    pragma Inline (Set_At_End_Proc);
12828    pragma Inline (Set_Atomic_Sync_Required);
12829    pragma Inline (Set_Attribute_Name);
12830    pragma Inline (Set_Aux_Decls_Node);
12831    pragma Inline (Set_Backwards_OK);
12832    pragma Inline (Set_Bad_Is_Detected);
12833    pragma Inline (Set_Body_Required);
12834    pragma Inline (Set_Body_To_Inline);
12835    pragma Inline (Set_Box_Present);
12836    pragma Inline (Set_By_Ref);
12837    pragma Inline (Set_Char_Literal_Value);
12838    pragma Inline (Set_Chars);
12839    pragma Inline (Set_Check_Address_Alignment);
12840    pragma Inline (Set_Choice_Parameter);
12841    pragma Inline (Set_Choices);
12842    pragma Inline (Set_Class_Present);
12843    pragma Inline (Set_Classifications);
12844    pragma Inline (Set_Cleanup_Actions);
12845    pragma Inline (Set_Comes_From_Extended_Return_Statement);
12846    pragma Inline (Set_Compile_Time_Known_Aggregate);
12847    pragma Inline (Set_Component_Associations);
12848    pragma Inline (Set_Component_Clauses);
12849    pragma Inline (Set_Component_Definition);
12850    pragma Inline (Set_Component_Items);
12851    pragma Inline (Set_Component_List);
12852    pragma Inline (Set_Component_Name);
12853    pragma Inline (Set_Componentwise_Assignment);
12854    pragma Inline (Set_Condition);
12855    pragma Inline (Set_Condition_Actions);
12856    pragma Inline (Set_Config_Pragmas);
12857    pragma Inline (Set_Constant_Present);
12858    pragma Inline (Set_Constraint);
12859    pragma Inline (Set_Constraints);
12860    pragma Inline (Set_Context_Installed);
12861    pragma Inline (Set_Context_Items);
12862    pragma Inline (Set_Context_Pending);
12863    pragma Inline (Set_Contract_Test_Cases);
12864    pragma Inline (Set_Controlling_Argument);
12865    pragma Inline (Set_Conversion_OK);
12866    pragma Inline (Set_Convert_To_Return_False);
12867    pragma Inline (Set_Corresponding_Aspect);
12868    pragma Inline (Set_Corresponding_Body);
12869    pragma Inline (Set_Corresponding_Formal_Spec);
12870    pragma Inline (Set_Corresponding_Generic_Association);
12871    pragma Inline (Set_Corresponding_Integer_Value);
12872    pragma Inline (Set_Corresponding_Spec);
12873    pragma Inline (Set_Corresponding_Spec_Of_Stub);
12874    pragma Inline (Set_Corresponding_Stub);
12875    pragma Inline (Set_Dcheck_Function);
12876    pragma Inline (Set_Declarations);
12877    pragma Inline (Set_Default_Expression);
12878    pragma Inline (Set_Default_Name);
12879    pragma Inline (Set_Default_Storage_Pool);
12880    pragma Inline (Set_Defining_Identifier);
12881    pragma Inline (Set_Defining_Unit_Name);
12882    pragma Inline (Set_Delay_Alternative);
12883    pragma Inline (Set_Delay_Statement);
12884    pragma Inline (Set_Delta_Expression);
12885    pragma Inline (Set_Digits_Expression);
12886    pragma Inline (Set_Discr_Check_Funcs_Built);
12887    pragma Inline (Set_Discrete_Choices);
12888    pragma Inline (Set_Discrete_Range);
12889    pragma Inline (Set_Discrete_Subtype_Definition);
12890    pragma Inline (Set_Discrete_Subtype_Definitions);
12891    pragma Inline (Set_Discriminant_Specifications);
12892    pragma Inline (Set_Discriminant_Type);
12893    pragma Inline (Set_Do_Accessibility_Check);
12894    pragma Inline (Set_Do_Discriminant_Check);
12895    pragma Inline (Set_Do_Division_Check);
12896    pragma Inline (Set_Do_Length_Check);
12897    pragma Inline (Set_Do_Overflow_Check);
12898    pragma Inline (Set_Do_Range_Check);
12899    pragma Inline (Set_Do_Storage_Check);
12900    pragma Inline (Set_Do_Tag_Check);
12901    pragma Inline (Set_Elaborate_All_Desirable);
12902    pragma Inline (Set_Elaborate_All_Present);
12903    pragma Inline (Set_Elaborate_Desirable);
12904    pragma Inline (Set_Elaborate_Present);
12905    pragma Inline (Set_Elaboration_Boolean);
12906    pragma Inline (Set_Else_Actions);
12907    pragma Inline (Set_Else_Statements);
12908    pragma Inline (Set_Elsif_Parts);
12909    pragma Inline (Set_Enclosing_Variant);
12910    pragma Inline (Set_End_Label);
12911    pragma Inline (Set_End_Span);
12912    pragma Inline (Set_Entity);
12913    pragma Inline (Set_Entry_Body_Formal_Part);
12914    pragma Inline (Set_Entry_Call_Alternative);
12915    pragma Inline (Set_Entry_Call_Statement);
12916    pragma Inline (Set_Entry_Direct_Name);
12917    pragma Inline (Set_Entry_Index);
12918    pragma Inline (Set_Entry_Index_Specification);
12919    pragma Inline (Set_Etype);
12920    pragma Inline (Set_Exception_Choices);
12921    pragma Inline (Set_Exception_Handlers);
12922    pragma Inline (Set_Exception_Junk);
12923    pragma Inline (Set_Exception_Label);
12924    pragma Inline (Set_Expansion_Delayed);
12925    pragma Inline (Set_Explicit_Actual_Parameter);
12926    pragma Inline (Set_Explicit_Generic_Actual_Parameter);
12927    pragma Inline (Set_Expression);
12928    pragma Inline (Set_Expressions);
12929    pragma Inline (Set_First_Bit);
12930    pragma Inline (Set_First_Inlined_Subprogram);
12931    pragma Inline (Set_First_Name);
12932    pragma Inline (Set_First_Named_Actual);
12933    pragma Inline (Set_First_Real_Statement);
12934    pragma Inline (Set_First_Subtype_Link);
12935    pragma Inline (Set_Float_Truncate);
12936    pragma Inline (Set_Formal_Type_Definition);
12937    pragma Inline (Set_Forwards_OK);
12938    pragma Inline (Set_From_Aspect_Specification);
12939    pragma Inline (Set_From_At_End);
12940    pragma Inline (Set_From_At_Mod);
12941    pragma Inline (Set_From_Conditional_Expression);
12942    pragma Inline (Set_From_Default);
12943    pragma Inline (Set_Generalized_Indexing);
12944    pragma Inline (Set_Generic_Associations);
12945    pragma Inline (Set_Generic_Formal_Declarations);
12946    pragma Inline (Set_Generic_Parent);
12947    pragma Inline (Set_Generic_Parent_Type);
12948    pragma Inline (Set_Handled_Statement_Sequence);
12949    pragma Inline (Set_Handler_List_Entry);
12950    pragma Inline (Set_Has_Created_Identifier);
12951    pragma Inline (Set_Has_Dereference_Action);
12952    pragma Inline (Set_Has_Dynamic_Length_Check);
12953    pragma Inline (Set_Has_Dynamic_Range_Check);
12954    pragma Inline (Set_Has_Init_Expression);
12955    pragma Inline (Set_Has_Local_Raise);
12956    pragma Inline (Set_Has_No_Elaboration_Code);
12957    pragma Inline (Set_Has_Pragma_Suppress_All);
12958    pragma Inline (Set_Has_Private_View);
12959    pragma Inline (Set_Has_Relative_Deadline_Pragma);
12960    pragma Inline (Set_Has_Self_Reference);
12961    pragma Inline (Set_Has_SP_Choice);
12962    pragma Inline (Set_Has_Storage_Size_Pragma);
12963    pragma Inline (Set_Has_Wide_Character);
12964    pragma Inline (Set_Has_Wide_Wide_Character);
12965    pragma Inline (Set_Header_Size_Added);
12966    pragma Inline (Set_Hidden_By_Use_Clause);
12967    pragma Inline (Set_High_Bound);
12968    pragma Inline (Set_Identifier);
12969    pragma Inline (Set_Implicit_With);
12970    pragma Inline (Set_Import_Interface_Present);
12971    pragma Inline (Set_In_Present);
12972    pragma Inline (Set_Includes_Infinities);
12973    pragma Inline (Set_Incomplete_View);
12974    pragma Inline (Set_Inherited_Discriminant);
12975    pragma Inline (Set_Instance_Spec);
12976    pragma Inline (Set_Interface_List);
12977    pragma Inline (Set_Interface_Present);
12978    pragma Inline (Set_Intval);
12979    pragma Inline (Set_Is_Accessibility_Actual);
12980    pragma Inline (Set_Is_Asynchronous_Call_Block);
12981    pragma Inline (Set_Is_Boolean_Aspect);
12982    pragma Inline (Set_Is_Checked);
12983    pragma Inline (Set_Is_Component_Left_Opnd);
12984    pragma Inline (Set_Is_Component_Right_Opnd);
12985    pragma Inline (Set_Is_Controlling_Actual);
12986    pragma Inline (Set_Is_Delayed_Aspect);
12987    pragma Inline (Set_Is_Disabled);
12988    pragma Inline (Set_Is_Dynamic_Coextension);
12989    pragma Inline (Set_Is_Elsif);
12990    pragma Inline (Set_Is_Entry_Barrier_Function);
12991    pragma Inline (Set_Is_Expanded_Build_In_Place_Call);
12992    pragma Inline (Set_Is_Finalization_Wrapper);
12993    pragma Inline (Set_Is_Folded_In_Parser);
12994    pragma Inline (Set_Is_Ignored);
12995    pragma Inline (Set_Is_In_Discriminant_Check);
12996    pragma Inline (Set_Is_Machine_Number);
12997    pragma Inline (Set_Is_Null_Loop);
12998    pragma Inline (Set_Is_Overloaded);
12999    pragma Inline (Set_Is_Power_Of_2_For_Shift);
13000    pragma Inline (Set_Is_Prefixed_Call);
13001    pragma Inline (Set_Is_Protected_Subprogram_Body);
13002    pragma Inline (Set_Is_Static_Coextension);
13003    pragma Inline (Set_Is_Static_Expression);
13004    pragma Inline (Set_Is_Subprogram_Descriptor);
13005    pragma Inline (Set_Is_Task_Allocation_Block);
13006    pragma Inline (Set_Is_Task_Master);
13007    pragma Inline (Set_Iteration_Scheme);
13008    pragma Inline (Set_Iterator_Specification);
13009    pragma Inline (Set_Itype);
13010    pragma Inline (Set_Kill_Range_Check);
13011    pragma Inline (Set_Label_Construct);
13012    pragma Inline (Set_Last_Bit);
13013    pragma Inline (Set_Last_Name);
13014    pragma Inline (Set_Left_Opnd);
13015    pragma Inline (Set_Library_Unit);
13016    pragma Inline (Set_Limited_Present);
13017    pragma Inline (Set_Limited_View_Installed);
13018    pragma Inline (Set_Literals);
13019    pragma Inline (Set_Local_Raise_Not_OK);
13020    pragma Inline (Set_Local_Raise_Statements);
13021    pragma Inline (Set_Loop_Actions);
13022    pragma Inline (Set_Loop_Parameter_Specification);
13023    pragma Inline (Set_Low_Bound);
13024    pragma Inline (Set_Mod_Clause);
13025    pragma Inline (Set_More_Ids);
13026    pragma Inline (Set_Must_Be_Byte_Aligned);
13027    pragma Inline (Set_Must_Not_Freeze);
13028    pragma Inline (Set_Must_Not_Override);
13029    pragma Inline (Set_Must_Override);
13030    pragma Inline (Set_Name);
13031    pragma Inline (Set_Names);
13032    pragma Inline (Set_Next_Entity);
13033    pragma Inline (Set_Next_Exit_Statement);
13034    pragma Inline (Set_Next_Implicit_With);
13035    pragma Inline (Set_Next_Named_Actual);
13036    pragma Inline (Set_Next_Pragma);
13037    pragma Inline (Set_Next_Rep_Item);
13038    pragma Inline (Set_Next_Use_Clause);
13039    pragma Inline (Set_No_Ctrl_Actions);
13040    pragma Inline (Set_No_Elaboration_Check);
13041    pragma Inline (Set_No_Entities_Ref_In_Spec);
13042    pragma Inline (Set_No_Initialization);
13043    pragma Inline (Set_No_Minimize_Eliminate);
13044    pragma Inline (Set_No_Truncation);
13045    pragma Inline (Set_Non_Aliased_Prefix);
13046    pragma Inline (Set_Null_Excluding_Subtype);
13047    pragma Inline (Set_Null_Exclusion_Present);
13048    pragma Inline (Set_Null_Exclusion_In_Return_Present);
13049    pragma Inline (Set_Null_Present);
13050    pragma Inline (Set_Null_Record_Present);
13051    pragma Inline (Set_Object_Definition);
13052    pragma Inline (Set_Of_Present);
13053    pragma Inline (Set_Original_Discriminant);
13054    pragma Inline (Set_Original_Entity);
13055    pragma Inline (Set_Others_Discrete_Choices);
13056    pragma Inline (Set_Out_Present);
13057    pragma Inline (Set_Parameter_Associations);
13058    pragma Inline (Set_Parameter_List_Truncated);
13059    pragma Inline (Set_Parameter_Specifications);
13060    pragma Inline (Set_Parameter_Type);
13061    pragma Inline (Set_Parent_Spec);
13062    pragma Inline (Set_Position);
13063    pragma Inline (Set_Pragma_Argument_Associations);
13064    pragma Inline (Set_Pragma_Identifier);
13065    pragma Inline (Set_Pragmas_After);
13066    pragma Inline (Set_Pragmas_Before);
13067    pragma Inline (Set_Pre_Post_Conditions);
13068    pragma Inline (Set_Prefix);
13069    pragma Inline (Set_Premature_Use);
13070    pragma Inline (Set_Present_Expr);
13071    pragma Inline (Set_Prev_Ids);
13072    pragma Inline (Set_Print_In_Hex);
13073    pragma Inline (Set_Private_Declarations);
13074    pragma Inline (Set_Private_Present);
13075    pragma Inline (Set_Procedure_To_Call);
13076    pragma Inline (Set_Proper_Body);
13077    pragma Inline (Set_Protected_Definition);
13078    pragma Inline (Set_Protected_Present);
13079    pragma Inline (Set_Raises_Constraint_Error);
13080    pragma Inline (Set_Range_Constraint);
13081    pragma Inline (Set_Range_Expression);
13082    pragma Inline (Set_Real_Range_Specification);
13083    pragma Inline (Set_Realval);
13084    pragma Inline (Set_Reason);
13085    pragma Inline (Set_Record_Extension_Part);
13086    pragma Inline (Set_Redundant_Use);
13087    pragma Inline (Set_Renaming_Exception);
13088    pragma Inline (Set_Result_Definition);
13089    pragma Inline (Set_Return_Object_Declarations);
13090    pragma Inline (Set_Reverse_Present);
13091    pragma Inline (Set_Right_Opnd);
13092    pragma Inline (Set_Rounded_Result);
13093    pragma Inline (Set_SCIL_Controlling_Tag);
13094    pragma Inline (Set_SCIL_Entity);
13095    pragma Inline (Set_SCIL_Tag_Value);
13096    pragma Inline (Set_SCIL_Target_Prim);
13097    pragma Inline (Set_Scope);
13098    pragma Inline (Set_Select_Alternatives);
13099    pragma Inline (Set_Selector_Name);
13100    pragma Inline (Set_Selector_Names);
13101    pragma Inline (Set_Shift_Count_OK);
13102    pragma Inline (Set_Source_Type);
13103    pragma Inline (Set_Split_PPC);
13104    pragma Inline (Set_Statements);
13105    pragma Inline (Set_Storage_Pool);
13106    pragma Inline (Set_Strval);
13107    pragma Inline (Set_Subpool_Handle_Name);
13108    pragma Inline (Set_Subtype_Indication);
13109    pragma Inline (Set_Subtype_Mark);
13110    pragma Inline (Set_Subtype_Marks);
13111    pragma Inline (Set_Suppress_Assignment_Checks);
13112    pragma Inline (Set_Suppress_Loop_Warnings);
13113    pragma Inline (Set_Synchronized_Present);
13114    pragma Inline (Set_TSS_Elist);
13115    pragma Inline (Set_Tagged_Present);
13116    pragma Inline (Set_Target_Type);
13117    pragma Inline (Set_Task_Definition);
13118    pragma Inline (Set_Task_Present);
13119    pragma Inline (Set_Then_Actions);
13120    pragma Inline (Set_Then_Statements);
13121    pragma Inline (Set_Treat_Fixed_As_Integer);
13122    pragma Inline (Set_Triggering_Alternative);
13123    pragma Inline (Set_Triggering_Statement);
13124    pragma Inline (Set_Type_Definition);
13125    pragma Inline (Set_Uneval_Old_Accept);
13126    pragma Inline (Set_Uneval_Old_Warn);
13127    pragma Inline (Set_Unit);
13128    pragma Inline (Set_Uninitialized_Variable);
13129    pragma Inline (Set_Unknown_Discriminants_Present);
13130    pragma Inline (Set_Unreferenced_In_Spec);
13131    pragma Inline (Set_Used_Operations);
13132    pragma Inline (Set_Variant_Part);
13133    pragma Inline (Set_Variants);
13134    pragma Inline (Set_Visible_Declarations);
13135    pragma Inline (Set_Was_Originally_Stub);
13136    pragma Inline (Set_Withed_Body);
13137
13138 end Sinfo;